blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
247
content_id
stringlengths
40
40
detected_licenses
listlengths
0
57
license_type
stringclasses
2 values
repo_name
stringlengths
4
111
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
58
visit_date
timestamp[ns]date
2015-07-25 18:16:41
2023-09-06 10:45:08
revision_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
committer_date
timestamp[ns]date
1970-01-14 14:03:36
2023-09-06 06:22:19
github_id
int64
3.89k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
25 values
gha_event_created_at
timestamp[ns]date
2012-06-07 00:51:45
2023-09-14 21:58:52
gha_created_at
timestamp[ns]date
2008-03-27 23:40:48
2023-08-24 19:49:39
gha_language
stringclasses
159 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
10.5M
extension
stringclasses
111 values
filename
stringlengths
1
195
text
stringlengths
7
10.5M
060373b3ee4890570513dba1e860c15d5b81ee9b
aacdd7f3ba3e68db680b282f8a529cff4839520b
/src/robot/Frame.cpp
dd1f60dff785bd5ea90a932ec7bcb76a4b5ae56d
[ "BSD-3-Clause" ]
permissive
jrl-umi3218/tvm
aa6ea9a2c367e993c375f5a8acd4e8dfe38a9487
d3fdb0e4fce11df7642f00c2b230ff11c8322c7c
refs/heads/master
2023-07-20T20:48:03.741249
2023-07-12T05:20:59
2023-07-12T05:20:59
162,399,400
24
10
BSD-3-Clause
2023-07-14T08:54:19
2018-12-19T07:30:06
C++
UTF-8
C++
false
false
2,588
cpp
Frame.cpp
/** Copyright 2017-2020 CNRS-AIST JRL and CNRS-UM LIRMM */ #include <tvm/robot/Frame.h> #include <tvm/Robot.h> namespace { Eigen::Matrix3d hat(const Eigen::Vector3d & v) { Eigen::Matrix3d ret; ret << 0., -v.z(), v.y(), v.z(), 0., -v.x(), -v.y(), v.x(), 0.; return ret; } } // namespace namespace tvm { namespace robot { Frame::Frame(std::string name, RobotPtr robot, const std::string & body, sva::PTransformd X_b_f) : name_(std::move(name)), robot_(robot), bodyId_(robot->mb().bodyIndexByName(body)), jac_(robot->mb(), body), X_b_f_(std::move(X_b_f)), jacTmp_(6, jac_.dof()), jacobian_(6, robot->mb().nrDof()) // FIXME Don't allocate until needed? { registerUpdates(Update::Position, &Frame::updatePosition, Update::Jacobian, &Frame::updateJacobian, Update::Velocity, &Frame::updateVelocity, Update::NormalAcceleration, &Frame::updateNormalAcceleration); addOutputDependency(Output::Position, Update::Position); addInputDependency(Update::Position, robot_, Robot::Output::FK); addOutputDependency(Output::Jacobian, Update::Jacobian); addInternalDependency(Update::Jacobian, Update::Position); addInputDependency(Update::Jacobian, robot_, Robot::Output::FV); addOutputDependency(Output::Velocity, Update::Velocity); addInputDependency(Update::Velocity, robot_, Robot::Output::FV); addOutputDependency(Output::NormalAcceleration, Update::NormalAcceleration); addInputDependency(Update::NormalAcceleration, robot_, Robot::Output::NormalAcceleration); /** Initialize all data */ updatePosition(); updateJacobian(); updateVelocity(); updateNormalAcceleration(); } void Frame::updatePosition() { const auto & X_0_b = robot_->mbc().bodyPosW[bodyId_]; /** X_0_f */ position_ = X_b_f_ * X_0_b; } void Frame::updateJacobian() { assert(jacobian_.rows() == 6 && jacobian_.cols() == robot_->mb().nrDof()); auto partialJac = jac_.jacobian(robot_->mb(), robot_->mbc()); jacTmp_ = partialJac; Eigen::Matrix3d h = -hat(robot_->mbc().bodyPosW[bodyId_].rotation().transpose() * X_b_f_.translation()); jacTmp_.block(3, 0, 3, jac_.dof()).noalias() += h * partialJac.block(3, 0, 3, jac_.dof()); jac_.fullJacobian(robot_->mb(), jacTmp_, jacobian_); } void Frame::updateVelocity() { velocity_ = X_b_f_ * robot_->mbc().bodyVelW[bodyId_]; } void Frame::updateNormalAcceleration() { normalAcceleration_ = X_b_f_ * jac_.normalAcceleration(robot_->mb(), robot_->mbc(), robot_->normalAccB()); } const std::string & Frame::body() const { return robot_->mb().body(bodyId_).name(); } } // namespace robot } // namespace tvm
385c3c9f4807ba9aedc743d5d7069c7756bcdcf7
6fb0a9730e5e43182fb252512f0be0f77dc7f503
/src/CommandError.cpp
5d6d9b67d6106f74d06efd8fee71c2fe24c9d16b
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
eried/SimpleCLI
47c0805a38abb20c1889f4a11fa63c2531879e32
f628eb8a19e176bb41a9435a7903a122785a9e97
refs/heads/master
2022-12-20T20:19:31.126231
2020-09-30T14:41:17
2020-09-30T14:41:17
299,949,463
1
0
MIT
2020-09-30T14:38:43
2020-09-30T14:38:43
null
UTF-8
C++
false
false
5,486
cpp
CommandError.cpp
/* Copyright (c) 2019 Stefan Kremser This software is licensed under the MIT License. See the license file for details. Source: github.com/spacehuhn/SimpleCLI */ #include "CommandError.h" extern "C" { #include "c/cmd_error.h" // cmd_error_create, cmd_error_destroy } CommandError::CommandError(cmd_error* errorPointer, bool persistent) : errorPointer(errorPointer), persistent(persistent) { if (!persistent) this->errorPointer = cmd_error_copy(errorPointer); } CommandError::CommandError(const CommandError& e) { persistent = e.persistent; errorPointer = e.errorPointer; if (!persistent) errorPointer = cmd_error_copy(errorPointer); } CommandError::CommandError(CommandError&& e) { persistent = e.persistent; errorPointer = e.errorPointer; e.errorPointer = NULL; } CommandError::~CommandError() { if (!persistent) cmd_error_destroy(errorPointer); } CommandError& CommandError::operator=(const CommandError& e) { persistent = e.persistent; errorPointer = e.errorPointer; if (!persistent) errorPointer = cmd_error_copy(errorPointer); return *this; } CommandError& CommandError::operator=(CommandError&& e) { persistent = e.persistent; errorPointer = e.errorPointer; e.errorPointer = NULL; return *this; } bool CommandError::operator==(const CommandError& e) const { return errorPointer == e.errorPointer || (errorPointer && e.errorPointer && errorPointer->mode == e.errorPointer->mode && errorPointer->command == e.errorPointer->command && errorPointer->argument == e.errorPointer->argument && errorPointer->data == e.errorPointer->data); } bool CommandError::operator!=(const CommandError& e) const { return !(*this == e); } bool CommandError::operator>(const CommandError& e) const { return errorPointer && e.errorPointer && errorPointer->mode > e.errorPointer->mode; } bool CommandError::operator<(const CommandError& e) const { return errorPointer && e.errorPointer && errorPointer->mode < e.errorPointer->mode; } bool CommandError::operator>=(const CommandError& e) const { return errorPointer && e.errorPointer && errorPointer->mode >= e.errorPointer->mode; } bool CommandError::operator<=(const CommandError& e) const { return errorPointer && e.errorPointer && errorPointer->mode <= e.errorPointer->mode; } CommandError::operator bool() const { return errorPointer && errorPointer->mode != CMD_PARSE_SUCCESS; } bool CommandError::hasCommand() const { return errorPointer && errorPointer->command; } bool CommandError::hasArgument() const { return errorPointer && errorPointer->argument; } bool CommandError::hasData() const { return errorPointer && errorPointer->data; } CommandErrorType CommandError::getType() const { if (errorPointer) { switch (errorPointer->mode) { case CMD_NULL_PTR: return CommandErrorType::NULL_POINTER; case CMD_EMPTY_LINE: return CommandErrorType::EMPTY_LINE; case CMD_PARSE_SUCCESS: return CommandErrorType::PARSE_SUCCESSFUL; case CMD_NOT_FOUND: return CommandErrorType::COMMAND_NOT_FOUND; case CMD_UNKOWN_ARG: return CommandErrorType::UNKNOWN_ARGUMENT; case CMD_MISSING_ARG: return CommandErrorType::MISSING_ARGUMENT; case CMD_MISSING_ARG_VALUE: return CommandErrorType::MISSING_ARGUMENT_VALUE; case CMD_UNCLOSED_QUOTE: return CommandErrorType::UNCLOSED_QUOTE; } } return CommandErrorType::PARSE_SUCCESSFUL; } bool CommandError::hasCmd() const { return hasCommand(); } bool CommandError::hasArg() const { return hasArgument(); } Command CommandError::getCommand() const { return Command(errorPointer ? errorPointer->command : NULL); } Argument CommandError::getArgument() const { return Argument(errorPointer ? errorPointer->argument : NULL); } String CommandError::getData() const { if (!errorPointer || !errorPointer->data) return String(); return String(errorPointer->data); } String CommandError::getMessage() const { if (errorPointer) { switch (errorPointer->mode) { case CMD_NULL_PTR: return String(F("NULL Pointer")); case CMD_EMPTY_LINE: return String(F("Empty input")); case CMD_PARSE_SUCCESS: return String(F("No error")); case CMD_NOT_FOUND: return String(F("Command not found")); case CMD_UNKOWN_ARG: return String(F("Unknown argument")); case CMD_MISSING_ARG: return String(F("Missing argument")); case CMD_MISSING_ARG_VALUE: return String(F("Missing argument value")); case CMD_UNCLOSED_QUOTE: return String(F("Unclosed quote")); } } return String(); } Command CommandError::getCmd() const { return getCommand(); } Argument CommandError::getArg() const { return getArgument(); } String CommandError::getMsg() const { return getMessage(); } String CommandError::toString() const { String s; toString(s); return s; } void CommandError::toString(String& s) const { s += getMessage(); if (hasCommand()) s += String(F(" at command '")) + getCommand().getName() + String(F("'")); if (hasArgument()) s += String(F(" at argument '")) + getArgument().toString() + String(F("'")); if (hasData()) s += String(F(" at '")) + getData() + String(F("'")); } cmd_error* CommandError::getPtr() { return errorPointer; }
fd7afd15f3f48417019c2d11c65d03006191251a
3364697d5507fc120c38b491c88b7d454d039b20
/FileSharing/filesystem.cpp
1c65ee34d2b14fc3a0a54604b3fc95b7fb97a7c1
[]
no_license
andrei-datcu/-homework-IP-File-Sharing-QT
acd98bd120bdfc31c04b57d2c87d1040201e2e59
9216c41d2a5f44595234ec1b14a595acef6a8a51
refs/heads/master
2021-03-12T22:57:10.292830
2014-05-16T21:43:05
2014-05-16T21:43:05
30,667,296
0
0
null
null
null
null
UTF-8
C++
false
false
1,775
cpp
filesystem.cpp
#include "filesystem.h" FileSystem::FileSystem() { nrFiles = 0; fileList = new QJsonObject(); fileList->insert("files", QJsonArray()); fileList->insert("dirName", QString("root")); } void FileSystem::addFile(const QString &file, const QString &relativePath) { QJsonObject newFile, newDir, *temp = fileList; QFileInfo qfi(file); QStringList tokens = relativePath.split("/", QString::SkipEmptyParts); //qDebug() << "fileName: " << qfi.fileName(); for (QString &s : tokens) { //qDebug() << s; if (s != qfi.fileName()) { if (temp->contains(s)) { temp = &temp->value(s).toObject(); } else { newDir = QJsonObject(); newDir.insert("dirName", s); newDir.insert("size", -1); newDir.insert("files", QJsonArray()); temp->insert(s, newDir); temp = &temp->value(s).toObject(); } } } newFile.insert("index", nrFiles); newFile.insert("size", qfi.size()); newFile.insert("name", qfi.fileName()); if (temp->contains("files")) { QJsonArray files = temp->value("files").toArray(); files.insert(files.size(), newFile); temp->insert("files", files); } fileList = temp; filePaths.insert(nrFiles++, qfi.filePath()); //fileList.insert(qfi.fileName(), newFile); } QString FileSystem::getFilePath(int index) { return filePaths.value(index); } QJsonObject FileSystem::getFileList() { //qDebug() << "Blabla1\n"; QJsonObject result = *fileList; //qDebug() << "Blabla2\n"; return result; } QString FileSystem::fileListToString() { return QJsonValue(*fileList).toString(); } QJsonObject FileSystem::fileListFromString(const QString &jsonString) { return QJsonValue(jsonString).toObject(); } QStringList FileSystem::getListOfFiles() { return fileList->keys(); } FileSystem::~FileSystem() { delete fileList; }
d1f975b01e08a0540b93e1803346bff8e4aa5a2d
81b342a6e03dc924dc4ef924e2d6402effbbeecd
/project/source/threecpp/material/Material.h
d26d3e7384019cef31adb97230cbd291192b3653
[]
no_license
geoeo/Engine
19f7674bf97cfa367837db064e3f147e91140d80
5327a4e8a5c2ab349bd3404a5c69c774300b273f
refs/heads/master
2020-04-19T08:21:44.947938
2016-09-23T16:37:54
2016-09-23T16:37:54
67,553,608
0
0
null
null
null
null
UTF-8
C++
false
false
760
h
Material.h
#pragma once #include "common.h" #include "SOIL.h" class Material { private: static const int NUMBER_OF_SUPPORTED_TEXTURES = 3; protected: void compileShaders(); public: static const int DIFFUSE_TEXTURE_INDEX = 0; static const int SPECULAR_TEXTURE_INDEX = 1; static const int NORMAL_TEXTURE_INDEX = 2; // Program Id of compiled and linked shaders GLuint id; // Vertex Array Object GLuint vertexArrayObject; // Texture Object // 0 - diffuse, 1 - specular, 2 - normal GLuint* textures; Material(const char*, const char*, const char*); ~Material(); virtual void setMVP(const mat4&, const mat4&, const mat4&, const mat4&); static GLuint loadTexture(const char*, bool isDepth = false, GLenum edge = GL_CLAMP_TO_EDGE); };
1508a9ab9dcbaa44ce5a851f0531b907068d1c6a
3976b5a7d7c85c7fece8a44508abd3aa25a3abd1
/lib/SSD1306/SSD1306.h
f50cf2b1c2194cd0b1b25cb4511e350dc37a8fe9
[]
no_license
KerbalJeb/cortex-m-base
a98a1b9ffa53af38c93edd8555287099704cd58e
3c6aba4391fdd134b6cc11ff561468d718ec737a
refs/heads/main
2023-03-30T17:57:44.223411
2021-04-13T20:40:05
2021-04-13T20:40:05
350,927,905
0
0
null
null
null
null
UTF-8
C++
false
false
1,118
h
SSD1306.h
/** @file SSD1306.h * @brief Created on 2021-03-15 by Ben */ #pragma once /********************************************************************** * Includes **********************************************************************/ #include <cstdint> #include "i2c.h" #include "fonts.h" /********************************************************************** * Preprocessor Constants **********************************************************************/ /********************************************************************** * Typedefs **********************************************************************/ /********************************************************************** * Function Prototypes **********************************************************************/ #ifdef __cplusplus extern "C" { #endif void ssd1306_init(uint8_t slaveAddress, I2C_Channel i2CChannel); void ssd1306_clear_display(); void ssd1306_write_string(const char* string, uint8_t line, uint8_t charPos); void ssd1306_write_char(const uint8_t *charTable, uint8_t line, uint8_t charPos); #ifdef __cplusplus } // extern "C" #endif
b0ad4aaceea712f37a1ceb836e3a1b3987d4199f
bf1038361627ec02e323515dede62162de08274a
/1000_A+B_Problem.cc
13fc22ec2a1a67b5801fb30203e4ca75cbd6abb3
[]
no_license
minrockli/poj
0861f7c5608e9f6ab2bf9d2a2d649fc663c299e3
73c007d9130a25f6565e3df055769c41b33fe345
refs/heads/master
2020-04-15T06:56:17.556596
2013-02-19T20:23:02
2013-02-19T20:23:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
710
cc
1000_A+B_Problem.cc
#include <iostream> #include <algorithm> using namespace std; int main() { string a; string b; string c; string left; cin >> a; cin >> b; int add = 0; int pos = 0; for (; pos < b.length(); ++pos) { int num = a[a.length() - 1 - pos] - '0' + add + b[b.length() - 1 - pos] - '0'; add = num >= 10; if (add == 1) num -= 10; c += '0' + num; } for (; pos < a.length(); ++pos) { int num = a[a.length() - 1 - pos] - '0' + add; int add = num >= 10; if (add == 1) num -= 10; c += '0' + num; if (add == 0) { left = a.substr(0, a.length() - 1 - pos); break; } } if (add == 1) c += '1'; reverse(c.begin(), c.end()); cout << left << c; }
8c725c1f2f7f795cb5eb0ab63a690bba94e06b9d
8a0a3d2e0a6655d3c2c835e5970b6b44d4b644bd
/score.h
7d922e43a702848276b6390b454415c90e924c04
[]
no_license
cwy990909/codingKing
096c91232a7877da48bb407252ed86ec20378a83
b07629015df5cf2a6b6b28d336d8296f14d6ef31
refs/heads/master
2020-06-25T20:57:26.858459
2019-07-29T09:27:42
2019-07-29T09:27:42
199,420,213
0
0
null
null
null
null
UTF-8
C++
false
false
1,045
h
score.h
#pragma warning (disable : 4996) #include <iostream> #include <io.h> #include <cstring> #include <iomanip> #include <conio.h> #include <iomanip> #include<iostream> #include <iomanip> #include<stdlib.h> #include<fstream> #include<string> #include<string.h> #include<time.h> #include<winsock2.h> #include<Windows.h> using namespace std; static int maxScore_jari, maxScore_codingKing; static char * fileNameArray[100]; static int fileName_count=0; typedef class Jariyeonsup{ public: void main(); void jariyeonsup(); void codingKing(); void home(); void jawon(); void print_exit(); void odap(char *error, int num); void odap(string *error, int num); void fileUpdate(); static void setMaxScore_jari(int score){ if(score>maxScore_jari){ maxScore_jari=score; } } static void setMaxScore_codingKing(int score){ if(score>maxScore_codingKing){ maxScore_codingKing=score; } } static int getMaxScore_jari(){ return maxScore_jari; } static int getMaxScore_codingKing(){ return maxScore_codingKing; } void help(); }Jari;
84ee133167ea5d819a066dc16997ee8539f21bb9
2d1d1c05b3ec78dd6ce2ec6a4fe8158e679b6c52
/AdvancedProgramDesign/函数/2.cpp
106132a5e27c6913e236af0cb80b391dec1721a3
[ "Apache-2.0" ]
permissive
Leon-Francis/NCEPU-CS-COURSES
65e797cae0ae364309470972c937edf9bc840027
65a186c9f5dc88fef4eb3fd7a550500c0d27b38c
refs/heads/master
2023-01-30T13:16:50.076628
2020-12-14T12:46:10
2020-12-14T12:46:10
320,846,194
0
0
Apache-2.0
2020-12-14T12:46:11
2020-12-12T14:13:22
C++
UTF-8
C++
false
false
254
cpp
2.cpp
#include<iostream> #include<cmath> using namespace std; float hanshu(float a) {float b=0; if(a<=0) b=sin(a)+1; if(a>0&&a<10) b=a*a+3/a; if(a>=10) b=pow(a+4,0.5); return b; } int main() { float a; cin>>a; cout<<hanshu(a)<<endl; return 0; }
0f33b36702e784c491ecde40f90f2e39659cfe95
8dbcef241b16387a73090f308e51759c7849c928
/textures/PictureTexture.cpp
60244f97fab7864545a9602df27882c67623e884
[]
no_license
Khallimero/myrt_tuple
0e0974cfbbe48b9a2fb494799063346df99ae730
94d37996d58f6eea709519656a66d6db06a8df81
refs/heads/master
2023-06-07T23:31:01.281161
2023-06-04T12:55:08
2023-06-04T12:55:08
216,005,146
0
0
null
null
null
null
UTF-8
C++
false
false
332
cpp
PictureTexture.cpp
#include "PictureTexture.h" PictureTexture::PictureTexture(SmartPointer<const Picture> p) :Texture(),p(p) {} PictureTexture::PictureTexture(const char* fileName) :Texture(),p(new Picture(fileName)) {} PictureTexture::~PictureTexture() {} Color PictureTexture::getColor(const Point& c)const { return p->getElem(c); }
2b82318612359b1a03c64215b9a04ec1628775ee
05e1f94ae1a5513a222d38dfe4c3c6737cb84251
/Mulberry/branches/users/shared/externals/v4.1d1/XMLLib/Source/XMLAttribute.h
105e0f73624b5940e338da05d1caf05432fe4a3e
[ "Apache-2.0" ]
permissive
eskilblomfeldt/mulberry-svn
16ca9d4d6ec05cbbbd18045c7b59943b0aca9335
7ed26b61244e47d4d4d50a1c7cc2d31efa548ad7
refs/heads/master
2020-05-20T12:35:42.340160
2014-12-24T18:03:50
2014-12-24T18:03:50
29,127,476
0
0
null
null
null
null
UTF-8
C++
false
false
1,795
h
XMLAttribute.h
/* Copyright (c) 2007 Cyrus Daboo. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // Header for XMLAttribute class #ifndef __XMLATTRIBUTE__XMLLIB__ #define __XMLATTRIBUTE__XMLLIB__ #include <list> #include <map> #include "cdstring.h" namespace xmllib { class XMLAttribute; typedef std::map<cdstring, XMLAttribute*> XMLAttributeMap; typedef std::list<XMLAttribute*> XMLAttributeList; class XMLAttribute { public: XMLAttribute(const cdstring& name, const cdstring& value = cdstring::null_str) { mName = name; mValue = value; } explicit XMLAttribute(const XMLAttribute& copy) { _copy(copy); } XMLAttribute& operator=(const XMLAttribute& copy) { if (this != &copy) _copy(copy); return *this; } const cdstring& Name() const { return mName; } void SetName(const cdstring& name) { mName = name; } const cdstring& Value() const { return mValue; } void SetValue(const cdstring& value) { mValue = value; } private: cdstring mName; cdstring mValue; void _copy(const XMLAttribute& copy) { mName = copy.mName; mValue = copy.mValue; } }; inline void XMLAttributeList_DeleteItems(XMLAttributeList& list) { for(XMLAttributeList::iterator iter = list.begin(); iter != list.end(); iter++) delete *iter; } } #endif
ae274aa3382b6c81fb72a1e77e4fdc7d56c742e1
d243d9b7a6e1291e6867cfbca035ca858ba605ca
/Test.cpp
3689ee070f8be280a215248aa3b49154b0b857f5
[ "MIT" ]
permissive
dvirs12345/cpp-iter2
b566930b213f4b2425ca0ebe829dae760d46b1be
8d1ec905bc31418113d5bd3dadccee97c2e121c4
refs/heads/master
2022-11-24T03:09:17.279193
2020-07-26T02:38:58
2020-07-26T02:38:58
282,562,041
0
0
null
null
null
null
UTF-8
C++
false
false
2,148
cpp
Test.cpp
// Author - Dvir Sadon #include "doctest.h" #include "range.hpp" #include "accumulate.hpp" #include "filterfalse.hpp" #include "compress.hpp" #include <iostream> #include <vector> using namespace std; using namespace itertools; TEST_CASE("Test range") { int c = 0; for(int num : range(0, 10)) { CHECK(c == num); ++c; } c = -5; for(int num : range(-5, 5)) { CHECK(c == num); ++c; } c = -10; for(int num : range(-10, 0)) { CHECK(c == num); ++c; } } TEST_CASE("Test accumulate") { int c[] = {5, 5+6, 5+6+7, 5+6+7+8}; int i = 0; for(int num : accumulate(range(5, 9))) { CHECK(c[i] == num); ++i; } int ce[] = {0, 1, 3, 6, 10, 15, 21, 28, 36, 45}; i = 0; for(int num2 : accumulate(range(0, 10))) { CHECK(ce[i] == num2); ++i; } int che[] = {-10, -19, -27, -34, -40, -45, -49, -52, -54, -55}; i = 0; for(int num3 : accumulate(range(-10, 0))) { CHECK(che[i] == num3); ++i; } int chec[] = {-10, -1, 7, 14, 20, 25, 29, 32, 34, 35}; i = 0; for(int num : accumulate(range(-10, 0), [](int x, int y){return x-y;})) { CHECK(chec[i] == num); ++i; } } TEST_CASE("Test filterfalse") { typedef struct { bool operator()(int i) const { return i%3 == 0; } } func; typedef struct { bool operator()(int i) const { return i%3 == 1; } } func2; typedef struct { bool operator()(int i) const { return i%3 == 2; } } func3; func f; for (auto i : filterfalse(f, range(0,20))) CHECK(!f(i)); func2 f2; for (auto i : filterfalse(f2, range(0,20))) CHECK(!f2(i)); func3 f3; for (auto i : filterfalse(f3, range(0,20))) CHECK(!f3(i)); } TEST_CASE("Test compress") { auto v1 = vector({true, false, true, false, true, false, true, false, true, false}); for(auto i : compress(range(0,10), v1)) CHECK(i%2 == 0); }
134e0c6b897105193d11c21f724952743f59364a
e8f43b5cbecf3e49caa89d163d506e8483f40c9d
/大富翁银行系统/CSelectView.cpp
25fb6b97c3153d5aa7e8ea279209ad3a73f7d001
[]
no_license
gugeaini/tiantian
5ef843b2ad2073e1f21cd2b09d73b313bdaf292e
08beb764a1b4caca89d8d7b1948dc15869b10ee2
refs/heads/master
2021-01-05T16:34:52.062516
2020-02-17T10:40:53
2020-02-17T10:40:53
241,076,667
0
0
null
null
null
null
UTF-8
C++
false
false
1,721
cpp
CSelectView.cpp
// CSelectView.cpp: 实现文件 // #include "pch.h" #include "大富翁银行系统.h" #include "CSelectView.h" #include "MainFrm.h" // CSelectView IMPLEMENT_DYNCREATE(CSelectView, CTreeView) CSelectView::CSelectView() { } CSelectView::~CSelectView() { } BEGIN_MESSAGE_MAP(CSelectView, CTreeView) ON_NOTIFY_REFLECT(TVN_SELCHANGED, &CSelectView::OnTvnSelchanged) END_MESSAGE_MAP() // CSelectView 诊断 #ifdef _DEBUG void CSelectView::AssertValid() const { CTreeView::AssertValid(); } #ifndef _WIN32_WCE void CSelectView::Dump(CDumpContext& dc) const { CTreeView::Dump(dc); } #endif #endif //_DEBUG // CSelectView 消息处理程序 void CSelectView::OnInitialUpdate() { CTreeView::OnInitialUpdate(); // TODO: 在此添加专用代码和/或调用基类 m_treeCtrl = &GetTreeCtrl(); //创建图标 //准备资源 HICON icon = AfxGetApp()->LoadIconW(IDI_ICON2); //加载图片进入框架 m_imageList.Create(30, 30, ILC_COLOR32, 1, 1); m_imageList.Add(icon); //安装图标 m_treeCtrl->SetImageList(&m_imageList, TVSIL_NORMAL); //添加节点 m_treeCtrl->InsertItem(_T("首页"), 0, 0, NULL); m_treeCtrl->InsertItem(_T("银行"), 0, 0, NULL); } void CSelectView::OnTvnSelchanged(NMHDR* pNMHDR, LRESULT* pResult) { LPNMTREEVIEW pNMTreeView = reinterpret_cast<LPNMTREEVIEW>(pNMHDR); // TODO: 在此添加控件通知处理程序代码 HTREEITEM item=m_treeCtrl->GetSelectedItem(); CString str=m_treeCtrl->GetItemText(item); if (str == TEXT("首页")) { ::PostMessage(AfxGetMainWnd()->GetSafeHwnd(), NM_A, (WPARAM)NM_A, (LPARAM)0); } if (str == TEXT("银行")) { ::PostMessage(AfxGetMainWnd()->GetSafeHwnd(), NM_B, (WPARAM)NM_B, (LPARAM)0); } *pResult = 0; }
5a1ef15ae5a47562883004abb348148edb9acb13
c20c4812ac0164c8ec2434e1126c1fdb1a2cc09e
/Source/Source/Common/SO3World/Test/TestProject/KMathTest/KMathStressTest/KMathStressTest.h
1aa510ebd74c7975fadf13d500557a06f011e5d0
[ "MIT" ]
permissive
uvbs/FullSource
f8673b02e10c8c749b9b88bf18018a69158e8cb9
07601c5f18d243fb478735b7bdcb8955598b9a90
refs/heads/master
2020-03-24T03:11:13.148940
2018-07-25T18:30:25
2018-07-25T18:30:25
142,408,505
2
2
null
2018-07-26T07:58:12
2018-07-26T07:58:12
null
UTF-8
C++
false
false
1,186
h
KMathStressTest.h
/////////////////////////////////////////////////////////////// // Copyright(c) Kingsoft // // FileName : KMathStressTest // Creator : ChenShiCai // Date : 2008-10-27 // Comment : // /////////////////////////////////////////////////////////////// struct IKG_SocketStream; class KMathStressTest { public: int Init(); void UnInit(); int Run(); private: int GetPara(); //int SendCommand(int nCommandType, int nGetCount); //int RecvCommand(int nCommandType, int nGetCount, void *pvRetData, int nDataSize); int Random_Distance3Array(g_GetDistance3_Para *nRetData); int Random_Distance2Array(g_GetDistance2_Para *nRetData); int Random_DirectionArray(g_GetDirection_Para *nRetData); int Random_SinArray(g_Sin_Para *nRetData); int Random_RandomArray(int *nRetData); int Random_InRangeArray(g_InRange_Para *nRetData); private: IKG_SocketStream *m_piSocketStream; int *m_pnRandomArray; g_GetDistance3_Para *m_pGetDistance3_ParaArray; g_GetDistance2_Para *m_pGetDistance2_ParaArray; g_GetDirection_Para *m_pGetDirection_ParaArray; g_InRange_Para *m_pInRange_Para_ParaArray; g_Sin_Para *m_pSin_ParaArray; };
e63b6afb803c58098f2925f3c8406f9b9e691ef4
6348b3b6ceacd7dac91f44036b3df8ad5192a136
/include/sol/unicode.hpp
3eedb70de002e6d1e48ed54e1a1867d818ec3f66
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
ThePhD/sol2
b0167676fecf9c65f371f6319833393cdbda0bbe
9c882a28fdb6f4ad79a53a4191b43ce48a661175
refs/heads/develop
2023-08-22T21:48:22.328223
2023-08-06T21:47:47
2023-08-06T21:47:47
49,177,547
3,912
572
MIT
2023-07-18T17:46:18
2016-01-07T03:09:13
C++
UTF-8
C++
false
false
9,954
hpp
unicode.hpp
#pragma once #include <sol/string_view.hpp> #include <array> #include <cstring> namespace sol { // Everything here was lifted pretty much straight out of // ogonek, because fuck figuring it out= namespace unicode { enum class error_code { ok = 0, invalid_code_point, invalid_code_unit, invalid_leading_surrogate, invalid_trailing_surrogate, sequence_too_short, overlong_sequence, }; inline const string_view& to_string(error_code ec) { static const string_view storage[7] = { "ok", "invalid code points", "invalid code unit", "invalid leading surrogate", "invalid trailing surrogate", "sequence too short", "overlong sequence" }; return storage[static_cast<std::size_t>(ec)]; } template <typename It> struct decoded_result { error_code error; char32_t codepoint; It next; }; template <typename C> struct encoded_result { error_code error; std::size_t code_units_size; std::array<C, 4> code_units; }; struct unicode_detail { // codepoint related static constexpr char32_t last_code_point = 0x10FFFF; static constexpr char32_t first_lead_surrogate = 0xD800; static constexpr char32_t last_lead_surrogate = 0xDBFF; static constexpr char32_t first_trail_surrogate = 0xDC00; static constexpr char32_t last_trail_surrogate = 0xDFFF; static constexpr char32_t first_surrogate = first_lead_surrogate; static constexpr char32_t last_surrogate = last_trail_surrogate; static constexpr bool is_lead_surrogate(char32_t u) { return u >= first_lead_surrogate && u <= last_lead_surrogate; } static constexpr bool is_trail_surrogate(char32_t u) { return u >= first_trail_surrogate && u <= last_trail_surrogate; } static constexpr bool is_surrogate(char32_t u) { return u >= first_surrogate && u <= last_surrogate; } // utf8 related static constexpr auto last_1byte_value = 0x7Fu; static constexpr auto last_2byte_value = 0x7FFu; static constexpr auto last_3byte_value = 0xFFFFu; static constexpr auto start_2byte_mask = 0x80u; static constexpr auto start_3byte_mask = 0xE0u; static constexpr auto start_4byte_mask = 0xF0u; static constexpr auto continuation_mask = 0xC0u; static constexpr auto continuation_signature = 0x80u; static constexpr bool is_invalid(unsigned char b) { return b == 0xC0 || b == 0xC1 || b > 0xF4; } static constexpr bool is_continuation(unsigned char b) { return (b & unicode_detail::continuation_mask) == unicode_detail::continuation_signature; } static constexpr bool is_overlong(char32_t u, std::size_t bytes) { return u <= unicode_detail::last_1byte_value || (u <= unicode_detail::last_2byte_value && bytes > 2) || (u <= unicode_detail::last_3byte_value && bytes > 3); } static constexpr int sequence_length(unsigned char b) { return (b & start_2byte_mask) == 0 ? 1 : (b & start_3byte_mask) != start_3byte_mask ? 2 : (b & start_4byte_mask) != start_4byte_mask ? 3 : 4; } static constexpr char32_t decode(unsigned char b0, unsigned char b1) { return (static_cast<char32_t>((b0 & 0x1Fu) << 6u) | static_cast<char32_t>(b1 & 0x3Fu)); } static constexpr char32_t decode(unsigned char b0, unsigned char b1, unsigned char b2) { return static_cast<char32_t>((b0 & 0x0Fu) << 12u) | static_cast<char32_t>((b1 & 0x3Fu) << 6u) | static_cast<char32_t>(b2 & 0x3Fu); } static constexpr char32_t decode(unsigned char b0, unsigned char b1, unsigned char b2, unsigned char b3) { return static_cast<char32_t>(static_cast<char32_t>((b0 & 0x07u) << 18u) | static_cast<char32_t>((b1 & 0x3F) << 12) | static_cast<char32_t>((b2 & 0x3Fu) << 6u) | static_cast<char32_t>(b3 & 0x3Fu)); } // utf16 related static constexpr char32_t last_bmp_value = 0xFFFF; static constexpr char32_t normalizing_value = 0x10000; static constexpr int lead_surrogate_bitmask = 0xFFC00; static constexpr int trail_surrogate_bitmask = 0x3FF; static constexpr int lead_shifted_bits = 10; static constexpr char32_t replacement = 0xFFFD; static char32_t combine_surrogates(char16_t lead, char16_t trail) { auto hi = lead - first_lead_surrogate; auto lo = trail - first_trail_surrogate; return normalizing_value + ((hi << lead_shifted_bits) | lo); } }; inline encoded_result<char> code_point_to_utf8(char32_t codepoint) { encoded_result<char> er; er.error = error_code::ok; if (codepoint <= unicode_detail::last_1byte_value) { er.code_units_size = 1; er.code_units = std::array<char, 4> { { static_cast<char>(codepoint) } }; } else if (codepoint <= unicode_detail::last_2byte_value) { er.code_units_size = 2; er.code_units = std::array<char, 4> { { static_cast<char>(0xC0 | ((codepoint & 0x7C0) >> 6)), static_cast<char>(0x80 | (codepoint & 0x3F)), } }; } else if (codepoint <= unicode_detail::last_3byte_value) { er.code_units_size = 3; er.code_units = std::array<char, 4> { { static_cast<char>(0xE0 | ((codepoint & 0xF000) >> 12)), static_cast<char>(0x80 | ((codepoint & 0xFC0) >> 6)), static_cast<char>(0x80 | (codepoint & 0x3F)), } }; } else { er.code_units_size = 4; er.code_units = std::array<char, 4> { { static_cast<char>(0xF0 | ((codepoint & 0x1C0000) >> 18)), static_cast<char>(0x80 | ((codepoint & 0x3F000) >> 12)), static_cast<char>(0x80 | ((codepoint & 0xFC0) >> 6)), static_cast<char>(0x80 | (codepoint & 0x3F)), } }; } return er; } inline encoded_result<char16_t> code_point_to_utf16(char32_t codepoint) { encoded_result<char16_t> er; if (codepoint <= unicode_detail::last_bmp_value) { er.code_units_size = 1; er.code_units = std::array<char16_t, 4> { { static_cast<char16_t>(codepoint) } }; er.error = error_code::ok; } else { auto normal = codepoint - unicode_detail::normalizing_value; auto lead = unicode_detail::first_lead_surrogate + ((normal & unicode_detail::lead_surrogate_bitmask) >> unicode_detail::lead_shifted_bits); auto trail = unicode_detail::first_trail_surrogate + (normal & unicode_detail::trail_surrogate_bitmask); er.code_units = std::array<char16_t, 4> { { static_cast<char16_t>(lead), static_cast<char16_t>(trail) } }; er.code_units_size = 2; er.error = error_code::ok; } return er; } inline encoded_result<char32_t> code_point_to_utf32(char32_t codepoint) { encoded_result<char32_t> er; er.code_units_size = 1; er.code_units[0] = codepoint; er.error = error_code::ok; return er; } template <typename It> inline decoded_result<It> utf8_to_code_point(It it, It last) { decoded_result<It> dr; if (it == last) { dr.next = it; dr.error = error_code::sequence_too_short; return dr; } unsigned char b0 = static_cast<unsigned char>(*it); std::size_t length = static_cast<std::size_t>(unicode_detail::sequence_length(b0)); if (length == 1) { dr.codepoint = static_cast<char32_t>(b0); dr.error = error_code::ok; ++it; dr.next = it; return dr; } if (unicode_detail::is_invalid(b0) || unicode_detail::is_continuation(b0)) { dr.error = error_code::invalid_code_unit; dr.next = it; return dr; } ++it; std::array<unsigned char, 4> b; b[0] = b0; for (std::size_t i = 1; i < length; ++i) { b[i] = static_cast<unsigned char>(*it); if (!unicode_detail::is_continuation(b[i])) { dr.error = error_code::invalid_code_unit; dr.next = it; return dr; } ++it; } char32_t decoded; switch (length) { case 2: decoded = unicode_detail::decode(b[0], b[1]); break; case 3: decoded = unicode_detail::decode(b[0], b[1], b[2]); break; default: decoded = unicode_detail::decode(b[0], b[1], b[2], b[3]); break; } if (unicode_detail::is_overlong(decoded, length)) { dr.error = error_code::overlong_sequence; return dr; } if (unicode_detail::is_surrogate(decoded) || decoded > unicode_detail::last_code_point) { dr.error = error_code::invalid_code_point; return dr; } // then everything is fine dr.codepoint = decoded; dr.error = error_code::ok; dr.next = it; return dr; } template <typename It> inline decoded_result<It> utf16_to_code_point(It it, It last) { decoded_result<It> dr; if (it == last) { dr.next = it; dr.error = error_code::sequence_too_short; return dr; } char16_t lead = static_cast<char16_t>(*it); if (!unicode_detail::is_surrogate(lead)) { ++it; dr.codepoint = static_cast<char32_t>(lead); dr.next = it; dr.error = error_code::ok; return dr; } if (!unicode_detail::is_lead_surrogate(lead)) { dr.error = error_code::invalid_leading_surrogate; dr.next = it; return dr; } ++it; auto trail = *it; if (!unicode_detail::is_trail_surrogate(trail)) { dr.error = error_code::invalid_trailing_surrogate; dr.next = it; return dr; } dr.codepoint = unicode_detail::combine_surrogates(lead, trail); dr.next = ++it; dr.error = error_code::ok; return dr; } template <typename It> inline decoded_result<It> utf32_to_code_point(It it, It last) { decoded_result<It> dr; if (it == last) { dr.next = it; dr.error = error_code::sequence_too_short; return dr; } dr.codepoint = static_cast<char32_t>(*it); dr.next = ++it; dr.error = error_code::ok; return dr; } } // namespace unicode } // namespace sol
0df57ff97eb58764bb1fa62216b8b2cb824cfef6
71cd4b9d45b307227136b4c44f3ab454fa8156ca
/scheduler.h
002f4747718cdea7c14dd675700869b2c1c4ec3a
[]
no_license
newmangonzala/simOS
f701317956f125ec17c8d44da9ac4604bebf39b5
c4dd093633ef9be5592ef1c7e1f8983d03522ad2
refs/heads/master
2020-04-01T00:53:12.117320
2018-12-03T05:02:37
2018-12-03T05:02:37
152,717,383
0
0
null
null
null
null
UTF-8
C++
false
false
2,522
h
scheduler.h
#ifndef SCHEDULER_H #define SCHEDULER_H #include <iostream> #include <string> #include <queue> #include <exception> #include <vector> #include <fstream> #include <iomanip> //#include "rapidxml.hpp" //#include "linkedlist.h" #include "pcb.h" #include "io.h" //class Io; #include <windows.h> void ClearScreen() { HANDLE hStdOut; CONSOLE_SCREEN_BUFFER_INFO csbi; DWORD count; DWORD cellCount; COORD homeCoords = { 0, 0 }; hStdOut = GetStdHandle( STD_OUTPUT_HANDLE ); if (hStdOut == INVALID_HANDLE_VALUE) return; /* Get the number of cells in the current buffer */ if (!GetConsoleScreenBufferInfo( hStdOut, &csbi )) return; cellCount = csbi.dwSize.X *csbi.dwSize.Y; /* Fill the entire buffer with spaces */ if (!FillConsoleOutputCharacter( hStdOut, (TCHAR) ' ', cellCount, homeCoords, &count )) return; /* Fill the entire buffer with the current colors and attributes */ if (!FillConsoleOutputAttribute( hStdOut, csbi.wAttributes, cellCount, homeCoords, &count )) return; /* Move the cursor home */ SetConsoleCursorPosition( hStdOut, homeCoords ); } class Io; enum QState{Queue1 , Queue2 , Queue3}; //Process scheduler //multilevel Feedback Queue class Sched{ public: Sched(DoublyList<PrBkCtr*>* ,DoublyList<PrBkCtr*>* , DoublyList<PrBkCtr*>* ,mem&, ipc&); DoublyList<PrBkCtr*>* servingQ; //serving queue DoublyList<PrBkCtr*>* queue1; //round robin //this is the ready queue DoublyList<PrBkCtr*>* queue2; //round robin DoublyList<PrBkCtr*>* queue3; //first come first serve mem* M1; ipc* MB; //mailboxes PrBkCtr headPr; int numOfProcess; void terminatePr(DoublyList<PrBkCtr*>::node*); //runs the processes in READY bool runRR(int, PrBkCtr *); //void runFIFO(DoublyList<PrBkCtr *>*); void* running(); void fork(PrBkCtr*, int); void insertBackToQ(DoublyList<PrBkCtr *>* , DoublyList<PrBkCtr*>::node* ); int parseTime(xml_node<> *); DoublyList<PrBkCtr*>::node* findProcessNode(PrBkCtr*); pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t mutex2 = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t mutex3 = PTHREAD_MUTEX_INITIALIZER; void yield(PrBkCtr*); bool checkChilds(PrBkCtr*); string updateTime(string, int); void printProcess(PrBkCtr*); void printMainMem(); }; #endif
3a8603bcd65593a164016b4779a925f81d3eb90a
6cf6a03d247e2b730c7ea99a2d6064f8cae4e9a6
/include/core-mesh/meshData.cpp
f7b75c6506ed7044e2da334aac7dae76bd648c3d
[ "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
niessner/mLib
ef21ac961d4c29339b6258f8849e740b475e66e9
fe89d9beeb4905f277e5db769f7f0a31d550c67f
refs/heads/master
2022-10-31T13:40:10.691292
2022-10-11T12:57:16
2022-10-11T12:57:16
65,689,305
89
52
MIT
2023-08-25T14:12:49
2016-08-14T22:31:26
C++
UTF-8
C++
false
false
32,068
cpp
meshData.cpp
#ifndef CORE_MESH_MESHDATA_INL_H_ #define CORE_MESH_MESHDATA_INL_H_ namespace ml { template<class FloatType> std::ostream& operator<<(std::ostream& os, const MeshData<FloatType>& meshData) { os << "MeshData:\n" << "\tVertices: " << meshData.m_Vertices.size() << "\n" << "\tColors: " << meshData.m_Colors.size() << "\n" << "\tNormals: " << meshData.m_Normals.size() << "\n" << "\tTexCoords: " << meshData.m_TextureCoords.size() << "\n" << std::endl; return os; } static inline bool FaceLess(const std::vector<unsigned int>& t0_, const std::vector<unsigned int>& t1_) { if (t0_.size() != t1_.size()) return t0_.size() < t1_.size(); else { std::vector<unsigned int> t0 = t0_; std::vector<unsigned int> t1 = t1_; std::sort(t0.begin(), t0.end()); std::sort(t1.begin(), t1.end()); for (size_t i = 0; i < t0.size(); i++) { if (t0[i] == t1[i]) continue; return t0[i] < t1[i]; } } return false; } template <class FloatType> unsigned int MeshData<FloatType>::removeDuplicateFaces() { //template<> //struct std::hash<std::vector<unsigned int>> : public std::unary_function<vec3i, size_t> { // size_t operator()(const vec3i& v) const { // //TODO larger prime number (64 bit) to match size_t // const size_t p0 = 73856093; // const size_t p1 = 19349669; // const size_t p2 = 83492791; // const size_t res = ((size_t)v.x * p0)^((size_t)v.y * p1)^((size_t)v.z * p2); // return res; // } //}; //struct vecHash { // size_t operator()(const Indices::Face& v) const { // //TODO larger prime number (64 bit) to match size_t // const size_t p[] = {73856093, 19349669, 83492791}; // size_t res = 0; // for (unsigned int i : v) { // res = res ^ (size_t)i * p[i%3]; // } // return res; // //const size_t res = ((size_t)v.x * p0)^((size_t)v.y * p1)^((size_t)v.z * p2); // } //}; struct vecHash { size_t operator()(const std::vector<unsigned int>& v) const { //TODO larger prime number (64 bit) to match size_t const size_t p[] = {73856093, 19349669, 83492791}; size_t res = 0; for (unsigned int i : v) { res = res ^ (size_t)i * p[i%3]; } return res; //const size_t res = ((size_t)v.x * p0)^((size_t)v.y * p1)^((size_t)v.z * p2); } }; size_t numFaces = m_FaceIndicesVertices.size(); Indices faces_new; faces_new.reserve(numFaces); Indices faceNormalsNew, faceTexturesNew; bool hasFaceIndicesNormals = false, hasFaceIndicesTexture = false; if (m_FaceIndicesNormals.size() > 0) { faceNormalsNew.reserve(numFaces); hasFaceIndicesNormals = true; } if (m_FaceIndicesTextureCoords.size() > 0) { faceTexturesNew.reserve(numFaces); hasFaceIndicesTexture = true; } unsigned int count = 0; unsigned int ordered = 0; std::unordered_set<std::vector<unsigned int>, vecHash> _set; for (size_t i = 0; i < numFaces; i++) { auto f = m_FaceIndicesVertices[i]; // same pointer std::vector<unsigned int> face(f.size()); // copy so that m_FaceIndicesVertices[i] remains unsorted for (unsigned int j = 0; j < f.size(); j++) face[j] = f[j]; std::sort(face.begin(), face.end()); if (_set.find(face) == _set.end()) { //not found yet _set.insert(face); faces_new.push_back(m_FaceIndicesVertices[i]); //inserted the unsorted one if (hasFaceIndicesNormals) faceNormalsNew.push_back(m_FaceIndicesNormals[i]); if (hasFaceIndicesTexture) faceTexturesNew.push_back(m_FaceIndicesTextureCoords[i]); } } if (m_FaceIndicesVertices.size() != faces_new.size()) { m_FaceIndicesVertices = Indices(faces_new); } if (hasFaceIndicesNormals && m_FaceIndicesNormals.size() != faceNormalsNew.size()) { m_FaceIndicesNormals = Indices(faceNormalsNew); } if (hasFaceIndicesTexture && m_FaceIndicesTextureCoords.size() != faceTexturesNew.size()) { m_FaceIndicesTextureCoords = Indices(faceTexturesNew); } //std::cout << "Removed " << numFaces-faces_new.size() << " duplicate faces of " << numFaces << " faces" << std::endl; return (unsigned int)faces_new.size(); } template <class FloatType> static inline bool VertexLess(const vec3<FloatType>& v0, const vec3<FloatType>& v1) { if (v0[0] < v1[0]) return true; if (v0[0] > v1[0]) return false; if (v0[1] < v1[1]) return true; if (v0[1] > v1[1]) return false; if (v0[2] < v1[2]) return true; return false; } template <class FloatType> unsigned int MeshData<FloatType>::removeDuplicateVertices() { unsigned int numV = (unsigned int)m_Vertices.size(); //int numT = (int)tris.size(); std::map<vec3<FloatType>, unsigned int, bool(*)(const vec3<FloatType>&, const vec3<FloatType>&)> pts(VertexLess); std::vector<unsigned int> vertexLookUp; vertexLookUp.resize(numV); std::vector<vec3<FloatType>> new_verts; new_verts.reserve(numV); std::vector<vec4<FloatType>> new_color; if (hasPerVertexColors()) new_color.reserve(m_Colors.size()); std::vector<vec3<FloatType>> new_normals; if (hasPerVertexNormals()) new_normals.reserve(m_Normals.size()); std::vector<vec2<FloatType>> new_tex; if (hasPerVertexTexCoords()) new_tex.reserve(m_TextureCoords.size()); unsigned int cnt = 0; for (size_t i1 = 0; i1 < numV; i1++) { const vec3<FloatType>& pt = m_Vertices[i1]; auto it = pts.find(pt); if (it != pts.end()) { vertexLookUp[i1] = it->second; } else { pts.insert(std::make_pair(pt, cnt)); new_verts.push_back(pt); vertexLookUp[i1] = cnt; cnt++; if (hasPerVertexColors()) new_color.push_back(m_Colors[i1]); if (hasPerVertexNormals()) new_normals.push_back(m_Normals[i1]); if (hasPerVertexTexCoords()) new_tex.push_back(m_TextureCoords[i1]); } } // Update faces for (auto it = m_FaceIndicesVertices.begin(); it != m_FaceIndicesVertices.end(); it++) { for (auto idx = it->begin(); idx != it->end(); idx++) { *idx = vertexLookUp[*idx]; } //*it = vertexLookUp[*it]; } //std::cout << "Removed " << numV-cnt << " duplicate vertices of " << numV << " vertices" << std::endl; if (m_Vertices != new_verts) { m_Vertices = std::vector<vec3<FloatType>>(new_verts.begin(), new_verts.end()); if (hasPerVertexColors()) m_Colors = std::vector<vec4<FloatType>>(new_color.begin(), new_color.end()); if (hasPerVertexNormals()) m_Normals = std::vector<vec3<FloatType>>(new_normals.begin(), new_normals.end()); if (hasPerVertexTexCoords()) m_TextureCoords = std::vector<vec2<FloatType>>(new_tex.begin(), new_tex.end()); } return cnt; } template <class FloatType> unsigned int MeshData<FloatType>::hasNearestNeighbor( const vec3i& coord, SparseGrid3<std::list<std::pair<vec3<FloatType>,unsigned int> > > &neighborQuery, const vec3<FloatType>& v, FloatType thresh ) { FloatType threshSq = thresh*thresh; for (int i = -1; i <= 1; i++) { for (int j = -1; j <= 1; j++) { for (int k = -1; k <= 1; k++) { vec3i c = coord + vec3i(i,j,k); if (neighborQuery.exists(c)) { for (const std::pair<vec3<FloatType>, unsigned int>& n : neighborQuery[c]) { if (vec3<FloatType>::distSq(v,n.first) < threshSq) { return n.second; } } } } } } return (unsigned int)-1; } template <class FloatType> unsigned int MeshData<FloatType>::hasNearestNeighborApprox(const vec3i& coord, SparseGrid3<unsigned int> &neighborQuery, FloatType thresh ) { FloatType threshSq = thresh*thresh; for (int i = -1; i <= 1; i++) { for (int j = -1; j <= 1; j++) { for (int k = -1; k <= 1; k++) { vec3i c = coord + vec3i(i,j,k); if (neighborQuery.exists(c)) { return neighborQuery[c]; } } } } return (unsigned int)-1; } template <class FloatType> unsigned int MeshData<FloatType>::mergeCloseVertices(FloatType thresh, bool approx) { if (thresh <= (FloatType)0) throw MLIB_EXCEPTION("invalid thresh " + std::to_string(thresh)); unsigned int numV = (unsigned int)m_Vertices.size(); std::vector<unsigned int> vertexLookUp; vertexLookUp.resize(numV); std::vector<vec3<FloatType>> new_verts; new_verts.reserve(numV); std::vector<vec4<FloatType>> new_color; if (hasPerVertexColors()) new_color.reserve(m_Colors.size()); std::vector<vec3<FloatType>> new_normals; if (hasPerVertexNormals()) new_normals.reserve(m_Normals.size()); std::vector<vec2<FloatType>> new_tex; if (hasPerVertexTexCoords()) new_tex.reserve(m_TextureCoords.size()); unsigned int cnt = 0; if (approx) { SparseGrid3<unsigned int> neighborQuery(0.6f, numV*2); for (unsigned int v = 0; v < numV; v++) { const vec3<FloatType>& vert = m_Vertices[v]; vec3i coord = toVirtualVoxelPos(vert, thresh); unsigned int nn = hasNearestNeighborApprox(coord, neighborQuery, thresh); if (nn == (unsigned int)-1) { neighborQuery[coord] = cnt; new_verts.push_back(vert); vertexLookUp[v] = cnt; cnt++; if (hasPerVertexColors()) new_color.push_back(m_Colors[v]); if (hasPerVertexNormals()) new_normals.push_back(m_Normals[v]); if (hasPerVertexTexCoords()) new_tex.push_back(m_TextureCoords[v]); } else { vertexLookUp[v] = nn; } } } else { SparseGrid3<std::list<std::pair<vec3<FloatType>, unsigned int> > > neighborQuery(0.6f, numV*2); for (unsigned int v = 0; v < numV; v++) { const vec3<FloatType>& vert = m_Vertices[v]; vec3i coord = toVirtualVoxelPos(vert, thresh); unsigned int nn = hasNearestNeighbor(coord, neighborQuery, vert, thresh); if (nn == (unsigned int)-1) { neighborQuery[coord].push_back(std::make_pair(vert,cnt)); new_verts.push_back(vert); vertexLookUp[v] = cnt; cnt++; if (hasPerVertexColors()) new_color.push_back(m_Colors[v]); if (hasPerVertexNormals()) new_normals.push_back(m_Normals[v]); if (hasPerVertexTexCoords()) new_tex.push_back(m_TextureCoords[v]); } else { vertexLookUp[v] = nn; } } } // Update faces for (auto it = m_FaceIndicesVertices.begin(); it != m_FaceIndicesVertices.end(); it++) { for (auto idx = it->begin(); idx != it->end(); idx++) { *idx = vertexLookUp[*idx]; } } if (m_Vertices.size() != new_verts.size()) { m_Vertices = std::vector<vec3<FloatType>>(new_verts.begin(), new_verts.end()); if (hasPerVertexColors()) m_Colors = std::vector<vec4<FloatType>>(new_color.begin(), new_color.end()); if (hasPerVertexNormals()) m_Normals = std::vector<vec3<FloatType>>(new_normals.begin(), new_normals.end()); if (hasPerVertexTexCoords()) m_TextureCoords = std::vector<vec2<FloatType>>(new_tex.begin(), new_tex.end()); } removeDegeneratedFaces(); //std::cout << "Merged " << numV-cnt << " of " << numV << " vertices" << std::endl; return cnt; } template <class FloatType> unsigned int MeshData<FloatType>::removeDegeneratedFaces() { Indices newFacesIndicesVertices; for (size_t i = 0; i < m_FaceIndicesVertices.size(); i++) { std::unordered_set<unsigned int> _set(m_FaceIndicesVertices[i].size()); bool foundDuplicate = false; for (unsigned int idx : m_FaceIndicesVertices[i]) { if (_set.find(idx) != _set.end()) { foundDuplicate = true; break; } else { _set.insert(idx); } } if (!foundDuplicate) { newFacesIndicesVertices.push_back(m_FaceIndicesVertices[i]); } } if (m_FaceIndicesVertices.size() != newFacesIndicesVertices.size()) { m_FaceIndicesVertices = newFacesIndicesVertices; } return (unsigned int)m_FaceIndicesVertices.size(); } template <class FloatType> unsigned int MeshData<FloatType>::removeIsolatedVertices() { unsigned int numV = (unsigned int)m_Vertices.size(); std::vector<unsigned int> vertexLookUp; vertexLookUp.resize(numV); std::vector<vec3<FloatType>> new_verts; new_verts.reserve(numV); std::vector<vec4<FloatType>> new_color; if (hasPerVertexColors()) new_color.reserve(m_Colors.size()); std::vector<vec3<FloatType>> new_normals; if (hasPerVertexNormals()) new_normals.reserve(m_Normals.size()); std::vector<vec2<FloatType>> new_tex; if (hasPerVertexTexCoords()) new_tex.reserve(m_TextureCoords.size()); std::unordered_map<unsigned int, unsigned int> _map(m_Vertices.size()); unsigned int cnt = 0; for (auto& face : m_FaceIndicesVertices) { for (auto& idx : face) { if (idx >= m_Vertices.size()) throw MLIB_EXCEPTION("face indices vertices index out of vertex bounds"); if (_map.find(idx) != _map.end()) { idx = _map[idx]; //set to new idx, which already exists } else { _map[idx] = cnt; new_verts.push_back(m_Vertices[idx]); if (hasPerVertexColors()) new_color.push_back(m_Colors[idx]); if (hasPerVertexNormals()) new_normals.push_back(m_Normals[idx]); if (hasPerVertexTexCoords()) new_tex.push_back(m_TextureCoords[idx]); idx = cnt; cnt++; } } } m_Vertices = std::vector<vec3<FloatType>>(new_verts.begin(), new_verts.end()); if (hasPerVertexColors()) m_Colors = std::vector<vec4<FloatType>>(new_color.begin(), new_color.end()); if (hasPerVertexNormals()) m_Normals = std::vector<vec3<FloatType>>(new_normals.begin(), new_normals.end()); if (hasPerVertexTexCoords()) m_TextureCoords = std::vector<vec2<FloatType>>(new_tex.begin(), new_tex.end()); return (unsigned int)m_Vertices.size(); } template <class FloatType> size_t MeshData<FloatType>::traverseNeighbors(const std::vector< std::set<size_t> >& vertex_neighbors, std::vector<size_t>& cluster_ids, size_t cluster_id, size_t vertex_idx) { //recursive version (results in stack overflow for larger meshes) .. it may also have an infinite loop :) //if (cluster_ids[vertex_idx] != (size_t)-1) return 0; //cluster_ids[vertex_idx] = cluster_id; // //size_t cluster_size = 1; //currently it's only myself in the cluster //for (const auto& n_idx : vertex_neighbors[vertex_idx]) { // cluster_size += traverseNeighbors(vertex_neighbors, cluster_ids, cluster_id, n_idx); //} //return cluster_size; //iterative version if (cluster_ids[vertex_idx] != (size_t)-1) return 0; std::set<size_t> active_vertex_indices; //init with current vertex size_t cluster_size = 0; active_vertex_indices.insert(vertex_idx); while (!active_vertex_indices.empty()) { //process until we have no active vertices anymore size_t active_vertex_idx = *active_vertex_indices.begin(); active_vertex_indices.erase(active_vertex_indices.begin()); if (cluster_ids[active_vertex_idx] == (size_t)-1) { //this should never happen -- unless there are duplicates around cluster_ids[active_vertex_idx] = cluster_id; cluster_size++; } //look if we need to process any of the neighbors for (const auto& n_idx : vertex_neighbors[active_vertex_idx]) { if (cluster_ids[n_idx] == (size_t)-1) { //if it doesn't have a cluster active_vertex_indices.insert(n_idx); } } } return cluster_size; } template <class FloatType> size_t MeshData<FloatType>::removeIsolatedPieces(size_t minVertexNum) { //std:vector< std::vector< size_t > is a bit faster but requires more memory and less clean because it inserts duplicates std::vector< std::set<size_t> > vertex_neighbors(m_Vertices.size()); for (const auto& face : m_FaceIndicesVertices) { for (const auto& v_idx : face) { for (const auto& n_idx : face) { if (v_idx == n_idx) continue; //not a neighbor to itself... vertex_neighbors[v_idx].insert(n_idx); } } } std::vector<size_t> cluster_ids(m_Vertices.size(), (size_t)-1); std::vector<size_t> cluster_sizes; size_t cluster_id = 0; for (size_t vertex_idx = 0; vertex_idx < m_Vertices.size(); vertex_idx++) { size_t cluster_size = traverseNeighbors(vertex_neighbors, cluster_ids, cluster_id, vertex_idx); if (cluster_size > 0) { cluster_sizes.push_back(cluster_size); cluster_id++; } } //////////////////// end of clustering Indices newFacesIndicesVertices; for (size_t i = 0; i < m_FaceIndicesVertices.size(); i++) { auto& face = m_FaceIndicesVertices[i]; if (face.size()) { auto& v_id = *face.begin(); //they must be all the same anyway size_t cluster_id = cluster_ids[v_id]; size_t cluster_size = cluster_sizes[cluster_id]; if (cluster_size >= minVertexNum) { newFacesIndicesVertices.push_back(m_FaceIndicesVertices[i]); } } } if (m_FaceIndicesVertices.size() != newFacesIndicesVertices.size()) { m_FaceIndicesVertices = newFacesIndicesVertices; } removeIsolatedVertices(); return m_Vertices.size(); } template <class FloatType> unsigned int MeshData<FloatType>::removeVerticesInFrontOfPlane( const Plane<FloatType>& plane, FloatType thresh ) { unsigned int numV = (unsigned int)m_Vertices.size(); unsigned int numF = (unsigned int)m_FaceIndicesVertices.size(); std::vector<unsigned int> vertexLookUp; vertexLookUp.resize(numV); std::vector<vec3<FloatType>> new_verts; new_verts.reserve(numV); Indices new_faces; new_faces.reserve(numF); std::vector<vec4<FloatType>> new_color; if (hasPerVertexColors()) new_color.reserve(m_Colors.size()); std::vector<vec3<FloatType>> new_normals; if (hasPerVertexNormals()) new_normals.reserve(m_Normals.size()); std::vector<vec2<FloatType>> new_tex; if (hasPerVertexTexCoords()) new_tex.reserve(m_TextureCoords.size()); std::unordered_map<unsigned int, unsigned int> _map(m_Vertices.size()); unsigned int cnt = 0; for (auto& face : m_FaceIndicesVertices) { bool keepFace = true; for (auto& idx : face) { if (plane.distanceToPoint(m_Vertices[idx]) > thresh) { keepFace = false; break; } } if (keepFace) { for (auto& idx : face) { if (_map.find(idx) != _map.end()) { idx = _map[idx]; //set to new idx, which already exists } else { _map[idx] = cnt; new_verts.push_back(m_Vertices[idx]); if (hasPerVertexColors()) new_color.push_back(m_Colors[idx]); if (hasPerVertexNormals()) new_normals.push_back(m_Normals[idx]); if (hasPerVertexTexCoords()) new_tex.push_back(m_TextureCoords[idx]); idx = cnt; cnt++; } } new_faces.push_back(face); } } m_Vertices = std::vector<vec3<FloatType>>(new_verts.begin(), new_verts.end()); if (hasPerVertexColors()) m_Colors = std::vector<vec4<FloatType>>(new_color.begin(), new_color.end()); if (hasPerVertexNormals()) m_Normals = std::vector<vec3<FloatType>>(new_normals.begin(), new_normals.end()); if (hasPerVertexTexCoords()) m_TextureCoords = std::vector<vec2<FloatType>>(new_tex.begin(), new_tex.end()); m_FaceIndicesVertices = new_faces; return (unsigned int)m_Vertices.size(); } template <class FloatType> unsigned int MeshData<FloatType>::removeFacesInFrontOfPlane( const Plane<FloatType>& plane, FloatType thresh /*= 0.0f*/ ) { unsigned int numV = (unsigned int)m_Vertices.size(); unsigned int numF = (unsigned int)m_FaceIndicesVertices.size(); std::vector<unsigned int> vertexLookUp; vertexLookUp.resize(numV); std::vector<vec3<FloatType>> new_verts; new_verts.reserve(numV); Indices new_faces; new_faces.reserve(numF); std::vector<vec4<FloatType>> new_color; if (hasPerVertexColors()) new_color.reserve(m_Colors.size()); std::vector<vec3<FloatType>> new_normals; if (hasPerVertexNormals()) new_normals.reserve(m_Normals.size()); std::vector<vec2<FloatType>> new_tex; if (hasPerVertexTexCoords()) new_tex.reserve(m_TextureCoords.size()); std::unordered_map<unsigned int, unsigned int> _map(m_Vertices.size()); unsigned int cnt = 0; for (auto& face : m_FaceIndicesVertices) { bool keepFace = false; for (auto& idx : face) { if (plane.distanceToPoint(m_Vertices[idx]) <= thresh) { keepFace = true; break; } } if (keepFace) { for (auto& idx : face) { if (_map.find(idx) != _map.end()) { idx = _map[idx]; //set to new idx, which already exists } else { _map[idx] = cnt; new_verts.push_back(m_Vertices[idx]); if (hasPerVertexColors()) new_color.push_back(m_Colors[idx]); if (hasPerVertexNormals()) new_normals.push_back(m_Normals[idx]); if (hasPerVertexTexCoords()) new_tex.push_back(m_TextureCoords[idx]); idx = cnt; cnt++; } } new_faces.push_back(face); } } m_Vertices = std::vector<vec3<FloatType>>(new_verts.begin(), new_verts.end()); if (hasPerVertexColors()) m_Colors = std::vector<vec4<FloatType>>(new_color.begin(), new_color.end()); if (hasPerVertexNormals()) m_Normals = std::vector<vec3<FloatType>>(new_normals.begin(), new_normals.end()); if (hasPerVertexTexCoords()) m_TextureCoords = std::vector<vec2<FloatType>>(new_tex.begin(), new_tex.end()); m_FaceIndicesVertices = new_faces; return (unsigned int)m_Vertices.size(); } template <class FloatType> void MeshData<FloatType>::merge( const MeshData<FloatType>& other ) { if (other.isEmpty()) { return; } if (isEmpty()) { *this = other; return; } ////TODO just delete if non existent in other mesh //assert( // hasNormals() == other.hasNormals() && // hasColors() == other.hasColors() && // hasTexCoords() == other.hasTexCoords() && // hasPerVertexNormals() == other.hasPerVertexNormals() && // hasPerVertexTexCoords() == other.hasPerVertexTexCoords() && // hasPerVertexColors() == other.hasPerVertexColors() && // hasVertexIndices() == other.hasVertexIndices() && // hasColorIndices() == other.hasColorIndices() && // hasTexCoordsIndices() == other.hasTexCoordsIndices() //); if (hasVertexIndices() != other.hasVertexIndices()) throw MLIB_EXCEPTION("invalid mesh conversion"); if (hasNormals() != other.hasNormals() || hasNormalIndices() != other.hasNormalIndices()) { MLIB_WARNING("normals deleted"); m_Normals.clear(); m_FaceIndicesNormals.clear(); } if (hasColors() != other.hasColors() || hasColorIndices() != other.hasColorIndices()) { MLIB_WARNING("colors deleted"); m_Colors.clear(); m_FaceIndicesColors.clear(); } if (hasTexCoords() != other.hasTexCoords() || hasTexCoordsIndices() != other.hasTexCoordsIndices()) { MLIB_WARNING("texcoords deleted"); m_TextureCoords.clear(); m_FaceIndicesTextureCoords.clear(); } size_t vertsBefore = m_Vertices.size(); size_t normsBefore = m_Normals.size(); size_t colorBefore = m_Colors.size(); size_t texCoordsBefore = m_TextureCoords.size(); m_Vertices.insert(m_Vertices.end(), other.m_Vertices.begin(), other.m_Vertices.end()); if (hasColors() || isEmpty()) m_Colors.insert(m_Colors.end(), other.m_Colors.begin(), other.m_Colors.end()); if (hasNormals() || isEmpty()) m_Normals.insert(m_Normals.end(), other.m_Normals.begin(), other.m_Normals.end()); if (hasTexCoords() || isEmpty()) m_TextureCoords.insert(m_TextureCoords.end(), other.m_TextureCoords.begin(), other.m_TextureCoords.end()); if (hasVertexIndices()) { size_t indicesBefore = m_FaceIndicesVertices.size(); //m_FaceIndicesVertices.insert(m_FaceIndicesVertices.end(), other.m_FaceIndicesVertices.begin(), other.m_FaceIndicesVertices.end()); m_FaceIndicesVertices.append(other.m_FaceIndicesVertices); for (size_t i = indicesBefore; i < m_FaceIndicesVertices.size(); i++) { for (auto& idx : m_FaceIndicesVertices[i]) idx += (unsigned int)vertsBefore; } } if (hasNormalIndices()) { size_t indicesBefore = m_FaceIndicesNormals.size(); //m_FaceIndicesNormals.insert(m_FaceIndicesNormals.end(), other.m_FaceIndicesNormals.begin(), other.m_FaceIndicesNormals.end()); m_FaceIndicesNormals.append(other.m_FaceIndicesNormals); for (size_t i = indicesBefore; i < m_FaceIndicesNormals.size(); i++) { for (auto& idx : m_FaceIndicesNormals[i]) idx += (unsigned int)normsBefore; } } if (hasColorIndices()) { size_t indicesBefore = m_FaceIndicesColors.size(); //m_FaceIndicesColors.insert(m_FaceIndicesColors.end(), other.m_FaceIndicesColors.begin(), other.m_FaceIndicesColors.end()); m_FaceIndicesColors.append(other.m_FaceIndicesColors); for (size_t i = indicesBefore; i < m_FaceIndicesColors.size(); i++) { for (auto& idx : m_FaceIndicesColors[i]) idx += (unsigned int)colorBefore; } } if (hasTexCoordsIndices()) { size_t indicesBefore = m_FaceIndicesTextureCoords.size(); //m_FaceIndicesTextureCoords.insert(m_FaceIndicesTextureCoords.end(), other.m_FaceIndicesTextureCoords.begin(), other.m_FaceIndicesTextureCoords.end()); m_FaceIndicesTextureCoords.append(other.m_FaceIndicesTextureCoords); for (size_t i = indicesBefore; i < m_FaceIndicesTextureCoords.size(); i++) { for (auto& idx : m_FaceIndicesTextureCoords[i]) idx += (unsigned int)texCoordsBefore; } } } template <class FloatType> void MeshData<FloatType>::subdivideFacesMidpoint() { m_Vertices.reserve(m_Vertices.size() + m_FaceIndicesVertices.size()); //there will be 1 new vertex per face if (hasPerVertexColors()) m_Colors.reserve(m_Colors.size() + m_FaceIndicesVertices.size()); if (hasPerVertexNormals()) m_Normals.reserve(m_Normals.size() + m_FaceIndicesVertices.size()); if (hasPerVertexTexCoords()) m_TextureCoords.reserve(m_TextureCoords.size() + m_FaceIndicesVertices.size()); Indices newFaces; for (auto& face : m_FaceIndicesVertices) { vec3<FloatType> centerP = vec3<FloatType>(0,0,0); for (auto& idx : face) { centerP += m_Vertices[idx]; } centerP /= (FloatType)face.size(); m_Vertices.push_back(centerP); if (hasPerVertexColors()) { vec4<FloatType> centerC = vec4<FloatType>(0,0,0,0); for (auto& idx : face) { centerC += m_Colors[idx]; } centerC /= (FloatType)face.size(); m_Colors.push_back(centerC); } if (hasPerVertexNormals()) { vec3<FloatType> centerN = vec3<FloatType>(0,0,0); for (auto& idx : face) { centerN += m_Normals[idx]; } centerN /= (FloatType)face.size(); m_Normals.push_back(centerN); } if (hasPerVertexTexCoords()) { vec2<FloatType> centerT = vec2<FloatType>(0,0); for (auto& idx : face) { centerT += m_TextureCoords[idx]; } centerT /= (FloatType)face.size(); m_TextureCoords.push_back(centerT); } unsigned int newIdx = (unsigned int)m_Vertices.size() - 1; for (unsigned int i = 0; i < face.size(); i++) { newFaces.push_back(std::vector<unsigned int>(3)); newFaces[newFaces.size()-1][0] = face[i]; newFaces[newFaces.size()-1][1] = face[(i+1)%face.size()]; newFaces[newFaces.size()-1][2] = newIdx; } } m_FaceIndicesVertices = newFaces; } template <class FloatType> FloatType MeshData<FloatType>::subdivideFacesLoop( float edgeThresh /*= 0.0f*/ ) { m_Vertices.reserve(m_Vertices.size() + m_FaceIndicesVertices.size()); //there will be 1 new vertex per face (TODO FIX) if (hasPerVertexColors()) m_Colors.reserve(m_Colors.size() + m_FaceIndicesVertices.size()); if (hasPerVertexNormals()) m_Normals.reserve(m_Normals.size() + m_FaceIndicesVertices.size()); if (hasPerVertexTexCoords()) m_TextureCoords.reserve(m_TextureCoords.size() + m_FaceIndicesVertices.size()); struct Edge { Edge(unsigned int _v0, unsigned int _v1) { if (_v0 < _v1) { v0 = _v0; v1 = _v1; } else { v1 = _v0; v0 = _v1; } } bool operator==(const Edge& other) const { return v0==other.v0 && v1==other.v1; } bool needEdgeVertex(float thresh, const std::vector<vec3<FloatType>>& vertices) const { if (thresh == 0.0f) return true; else { return ((vertices[v0] - vertices[v1]).lengthSq() > thresh*thresh); } } float edgeLength(const std::vector<vec3<FloatType>>& vertices) const { return (vertices[v0] - vertices[v1]).length(); } unsigned int v0; unsigned int v1; }; struct EdgeHash { size_t operator()(const Edge& e) const { //TODO larger prime number (64 bit) to match size_t const size_t p[] = {73856093, 19349669}; return e.v0*p[0] ^ e.v1*p[1]; //const size_t res = ((size_t)v.x * p0)^((size_t)v.y * p1)^((size_t)v.z * p2); } }; FloatType maxEdgeLen = 0.0f; //maps edges to new vertex indices std::unordered_map<Edge, unsigned int, EdgeHash> edgeMap; for (auto& face : m_FaceIndicesVertices) { for (unsigned int i = 0; i < face.size(); i++) { Edge e(face[i], face[(i+1)%face.size()]); FloatType edgeLen = e.edgeLength(m_Vertices); if (edgeLen > maxEdgeLen) maxEdgeLen = edgeLen; if (e.needEdgeVertex(edgeThresh, m_Vertices)) { if (edgeMap.find(e) == edgeMap.end()) { m_Vertices.push_back((FloatType)0.5*(m_Vertices[e.v0] + m_Vertices[e.v1])); if (hasPerVertexColors()) m_Colors.push_back((FloatType)0.5*(m_Colors[e.v0] + m_Colors[e.v1])); if (hasPerVertexNormals()) m_Normals.push_back((FloatType)0.5*(m_Normals[e.v0] + m_Normals[e.v1])); if (hasPerVertexTexCoords()) m_TextureCoords.push_back((FloatType)0.5*(m_TextureCoords[e.v0] + m_TextureCoords[e.v1])); unsigned int idx = (unsigned int)m_Vertices.size() - 1; edgeMap[e] = idx; } } } } Indices newFaces; newFaces.reserve(m_FaceIndicesVertices.size() * 4); for (auto& face : m_FaceIndicesVertices) { bool allEdgesExist = true; bool noneEdgesExist = true; for (unsigned int i = 0; i < face.size(); i++) { Edge e(face[i], face[(i+1)%face.size()]); if (edgeMap.find(e) == edgeMap.end()) { allEdgesExist = false; } else { noneEdgesExist = false; } } if (allEdgesExist) { std::vector<unsigned int> centerFace(face.size()); for (unsigned int i = 0; i < face.size(); i++) { Edge ePrev(face[i], face[(i+1)%face.size()]); Edge eNext(face[(i+1)%face.size()], face[(i+2)%face.size()]); unsigned int curr[] = { edgeMap[ePrev], face[(i+1)%face.size()], edgeMap[eNext] }; newFaces.addFace(curr, 3); centerFace[i] = curr[0]; //newFaces.push_back(std::vector<unsigned int>(3)); //newFaces.back()[0] = edgeMap[ePrev]; //newFaces.back()[1] = face[(i+1)%face.size()]; //newFaces.back()[2] = edgeMap[eNext]; //centerFace[i] = newFaces.back()[0]; } newFaces.push_back(centerFace); } else if (noneEdgesExist) { newFaces.push_back(face); } else { std::vector<unsigned int> cFace; for (unsigned int i = 0; i < face.size(); i++) { cFace.push_back(face[i]); Edge e(face[i], face[(i+1)%face.size()]); if (edgeMap.find(e) != edgeMap.end()) cFace.push_back(edgeMap[e]); } //centroid based vertex insertion vec3<FloatType> centerP = vec3<FloatType>(0,0,0); for (auto& idx : face) { centerP += m_Vertices[idx]; } centerP /= (FloatType)face.size(); m_Vertices.push_back(centerP); if (hasPerVertexColors()) { vec4<FloatType> centerC = vec4<FloatType>(0,0,0,0); for (auto& idx : face) { centerC += m_Colors[idx]; } centerC /= (FloatType)face.size(); m_Colors.push_back(centerC); } if (hasPerVertexNormals()) { vec3<FloatType> centerN = vec3<FloatType>(0,0,0); for (auto& idx : face) { centerN += m_Normals[idx]; } centerN /= (FloatType)face.size(); m_Normals.push_back(centerN); } if (hasPerVertexTexCoords()) { vec2<FloatType> centerT = vec2<FloatType>(0,0); for (auto& idx : face) { centerT += m_TextureCoords[idx]; } centerT /= (FloatType)face.size(); m_TextureCoords.push_back(centerT); } unsigned int newIdx = (unsigned int)m_Vertices.size() - 1; for (size_t i = 0; i < cFace.size(); i++) { newFaces.push_back(std::vector<unsigned int>(3)); newFaces[newFaces.size()-1][0] = cFace[i]; newFaces[newFaces.size()-1][1] = cFace[(i+1)%cFace.size()]; newFaces[newFaces.size()-1][2] = newIdx; } } } //m_FaceIndicesVertices = std::vector<std::vector<unsigned int>>(newFaces.begin(), newFaces.end()); m_FaceIndicesVertices = newFaces; return maxEdgeLen; } } // namespace ml #endif
25cdb1b002052fef5bd9093e77f90956b100f682
1e89d671e96c9e9890112ef142a7cad77a53bd7a
/CanadianExperience/TimelineDlg.h
d353cd40df68b28cabb4c18afc3fb61be01b7a35
[]
no_license
Hutecker/The-Canadian-Experience
fbf85c4df13b608064aab8bab655cdc869b0a805
b3b92fd0b629f76ca133a9584373d7960d489091
refs/heads/master
2020-05-17T18:07:47.533929
2014-11-15T21:01:52
2014-11-15T21:01:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,199
h
TimelineDlg.h
/** * \file TimelineDlg.h * * \author Stephan Hutecker * * \brief Our timeline dialog */ #pragma once #include "Timeline.h" /** \brief Our timeline dialog */ class CTimelineDlg : public CDialog { DECLARE_DYNAMIC(CTimelineDlg) public: /** * \brief constructor */ CTimelineDlg(CWnd* pParent = NULL); // standard constructor virtual ~CTimelineDlg(); // Dialog Data enum { IDD = IDD_TIMELINEDLG }; /** * \brief Pass a timeline object to this dialog box class. * \param timeline The timeline object. */ void CTimelineDlg::SetTimeline(CTimeline *timeline) { mTimeline = timeline; mNumFrames = mTimeline->GetNumFrames(); mFrameRate = mTimeline->GetFrameRate(); } /** \brief Transfer dialog values to the Timeline object */ void CTimelineDlg::Take() { mTimeline->SetNumFrames(mNumFrames); mTimeline->SetFrameRate(mFrameRate); } protected: /** * \brief DDX/DDV support * \param pDX a CDataExchange */ virtual void DoDataExchange(CDataExchange* pDX); DECLARE_MESSAGE_MAP() private: /// current number of frames int mNumFrames; /// The timeline we are editing CTimeline *mTimeline = nullptr; /// The frame rate of the animation int mFrameRate; };
b747df8e4ba7084671023f428fc7311cca9874c5
c188ce6bb0408f5047a8911e35d7e02951f1807e
/src/session_base.hpp
8c4513539cf576b45357d1862fce463ab757ff60
[ "Apache-2.0" ]
permissive
kspine/poseidon
ee30f3260095c32af23c854ffacc6c8a87932f8d
dced8125095aeea88a66ccbe35920491bba45c56
refs/heads/master
2021-01-21T18:11:45.535961
2016-08-18T04:56:21
2016-08-18T04:56:21
65,966,396
2
0
null
2016-08-18T04:58:35
2016-08-18T04:58:34
null
UTF-8
C++
false
false
1,099
hpp
session_base.hpp
// 这个文件是 Poseidon 服务器应用程序框架的一部分。 // Copyleft 2014 - 2016, LH_Mouse. All wrongs reserved. #ifndef POSEIDON_SESSION_BASE_HPP_ #define POSEIDON_SESSION_BASE_HPP_ #include "cxx_util.hpp" #include <cstddef> #include "stream_buffer.hpp" #include "virtual_shared_from_this.hpp" namespace Poseidon { class StreamBuffer; class SessionBase : NONCOPYABLE, public virtual VirtualSharedFromThis { public: // 不要不写析构函数,否则 RTTI 将无法在动态库中使用。 ~SessionBase(); protected: virtual void on_connect() = 0; virtual void on_read_hup() NOEXCEPT = 0; virtual void on_close(int err_code) NOEXCEPT = 0; // 有数据可读触发回调,size 始终不为零。 virtual void on_read_avail(StreamBuffer data) = 0; virtual bool send(StreamBuffer buffer) = 0; public: virtual bool has_been_shutdown_read() const NOEXCEPT = 0; virtual bool has_been_shutdown_write() const NOEXCEPT = 0; virtual bool shutdown_read() NOEXCEPT = 0; virtual bool shutdown_write() NOEXCEPT = 0; virtual void force_shutdown() NOEXCEPT = 0; }; } #endif
46606d009b93731e142a2e8d25d754a240d03f43
ef768de46808ebdd401c3bfac6e6ef628581d327
/model/PortRequired.h
bae88b9ab7abd7c0db50f315ffb6521631fed530
[]
no_license
cloudiator/cpp-rest-client
bf2bf0d7a3d575ade2d6a26d584a325c4e014256
5a7b4dd2357026c7766c6dd545fed8d8c1a116d7
refs/heads/master
2020-04-01T17:49:48.026257
2018-11-15T13:14:48
2018-11-15T13:14:48
153,453,413
0
0
null
null
null
null
UTF-8
C++
false
false
2,278
h
PortRequired.h
/** * Cloudiator REST Api * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 0.2.0 * Contact: daniel.baur@uni-ulm.de * * NOTE: This class is auto generated by the swagger code generator 2.3.0-SNAPSHOT. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /* * PortRequired.h * * Subtype of port. Represents a communication port that the task requires from other (downstream) tasks. */ #ifndef IO_GITHUB_CLOUDIATOR_REST_MODEL_PortRequired_H_ #define IO_GITHUB_CLOUDIATOR_REST_MODEL_PortRequired_H_ #include <cpprest/details/basic_types.h> #include "Port.h" namespace io { namespace github { namespace cloudiator { namespace rest { namespace model { /// <summary> /// Subtype of port. Represents a communication port that the task requires from other (downstream) tasks. /// </summary> class PortRequired : public Port { public: PortRequired(); virtual ~PortRequired(); ///////////////////////////////////////////// /// ModelBase overrides void validate() override; web::json::value toJson() const override; void fromJson(web::json::value& json) override; void toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& namePrefix) const override; void fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& namePrefix) override; ///////////////////////////////////////////// /// PortRequired members /// <summary> /// A script that is executed if a new instance of a downstream task is available. /// </summary> utility::string_t getUpdateAction() const; bool updateActionIsSet() const; void unsetUpdateAction(); void setUpdateAction(utility::string_t value); /// <summary> /// States if an instance of a downstream tasks needs to be already started (true), or if the task can start without a downstream task (false). /// </summary> bool isIsMandatory() const; void setIsMandatory(bool value); protected: utility::string_t m_UpdateAction; bool m_UpdateActionIsSet; bool m_IsMandatory; }; } } } } } #endif /* IO_GITHUB_CLOUDIATOR_REST_MODEL_PortRequired_H_ */
a97311a80e6efcd830b50fbf3206d93bcc4f7f5f
3fa30972b98e69d62984a55d484875999aaef82a
/include/Application.h
4c12faa401b39fad926e2c34d9d34719154fd7ad
[]
no_license
AdriannaCencora/DataStructuresAndAlgorithms
d378e67afff39850bd524e3ea441f78edf032002
b57124e54efe1e8fc7de756ade144c60f29b58d6
refs/heads/master
2021-01-07T13:59:21.704578
2020-05-24T18:32:25
2020-05-24T18:32:25
241,715,985
0
0
null
null
null
null
UTF-8
C++
false
false
385
h
Application.h
#pragma once #include "GenericStructure.h" #include <memory> class Application { public: Application() = default; ~Application() = default; void run(); private: std::unique_ptr<GenericStructure> structure{}; char userChoice{}; char operationChosen{1}; bool isRunning{true}; void displaySubMenu(); void displayMenu(); void chooseOperation(); };
8c5e003a22bc05a71fd4a778a82a0ad5eb86b657
c3e4a3c56a1db1c344072d303406ac44dc8afc1d
/rat_dungeon/rat_dungeon/calculations.h
2925bb4ec0ee24e78a4da619bfd936f8f4da9fbb
[]
no_license
MorozO2/Zero-Rat-Kingdom-Dungeon
8258d3cddb1234b547ae387109f92542dc263ee2
c89645f8d0d583b2336c024d953c7e5b2c4c5141
refs/heads/master
2020-03-29T21:47:59.986910
2018-11-16T09:47:51
2018-11-16T09:47:51
150,388,127
1
0
null
null
null
null
UTF-8
C++
false
false
2,412
h
calculations.h
#pragma once #include "pch.h" #include "modes.h" #include "encounters.h" #include "calculations.h" #include <iostream> #pragma warning(disable:4996) #define d2 2 #define d4 4 #define d6 6 #define d8 8 #define d10 10 #define d12 12 #define d20 20 int atck(int mod, int ac); int roll(int high); int attack_scale(int lvl); float HP_scale(int lvl); int AC_scale(int lvl); int pl_damage(int attack); int en_damage(int attack); int healing(int dice, int lvl); //ATTACK FUCNTION THAT DETERMINE WHETHER OR NOT THE PLAYER/ENEMY HIT ITS TARGET int atck(int mod, int ac) { int attack; //ROLLS A 20-SIDED DIE AND COMPARES TO THE OPPONENTS AC(IF ROLL IS HIGHER, ATTACK HITS) attack = roll(d20) + mod; if (attack >= ac) { printf("\nThe attack hit!\n"); return 1; } else { printf("\nThe attack missed!\n"); return 0; } } //VIRTUAL DICE ROLLING FUNCTION THAT TAKE IN THE SIZE OF THE DICE int roll(int high) { int num; int low = 1; num = (rand() % (high - low + 1)) + low; return num; } //FUNCTION THAT SCALES AN ENEMY'S ATTACK IN ACCORDANCE WITH THE LEVEL int attack_scale(int lvl) { float scale; scale = lvl; return scale; } //FUCNTION THAT SCALES ENEMY'S AC(ARMOR CLASS) IN ACCORDANCE WITH THE LEVEL int AC_scale(int lvl) { float scale; scale = lvl; return scale; } //FUNCTION THAT SCALES ENEMY'S HP IN ACCORDANCE WITH THE LEVEL float HP_scale(int lvl) { float scale; scale = roll(d4) + lvl; return scale; } //FUNCTION THAT CALULATES THE DAMAGE THAT THE PLAYER DOES int pl_damage(int attack) { int damage; damage = attack + roll(d6); return damage; } //FUNCTION THAT CALCULATES THE DAMAGE THAT THE ENEMY DOES TO THE PLAYER int en_damage(int attack) { int damage; damage = attack + roll(d4); return damage; } //FUCNTION THAT DETERMINES HOW MUCH HP TO HEAL int healing(int dice, int lvl) { int heal = 0; //HEALS PLAYER (IF 8-SIDED DIE VALUE IS PASSED) if (dice == d8) { heal = roll(d8)+lvl * 2; printf("\nYou've used a Rat Potion. It tastes like sewage, but you've regained %d HP.\n", heal); } //HEALS ENEMY (IF 6-SIDED DIE VALUE IS PASSED) if (dice == d6) { heal = roll(d6)+lvl*2; printf("\nYou had a small rest and regained %d HP\n", heal); } //HEALS BOSS (IF 12-SIDED DIE VALUE IS PASSED) if (dice == d12) { heal = 2*roll(d12); printf("\nBlumpy focuses his energy to turn back time and restore himself. He regains %d HP", heal); } return heal; }
64b303d91a1336a506672b4860300b85d8f43aac
6693c202f4aa960b05d7dfd0ac8e19a0d1199a16
/Caribbean-Training-Camp-2017/Contest_2/Solutions/D2.cpp
0ffeda5890badfc20a88ee089fde3d1b9324df4f
[]
no_license
eliogovea/solutions_cp
001cf73566ee819990065ea054e5f110d3187777
088e45dc48bfb4d06be8a03f4b38e9211a5039df
refs/heads/master
2020-09-11T11:13:47.691359
2019-11-17T19:30:57
2019-11-17T19:30:57
222,045,090
0
0
null
null
null
null
UTF-8
C++
false
false
3,427
cpp
D2.cpp
#include <bits/stdc++.h> using namespace std; struct node; typedef node* pnode; struct node{ int v; pnode ls, rs; node( int v ){ this->v = v; ls = rs = NULL; } }; const int MAXN = 400100; pnode roots[MAXN]; void build_st( pnode &root, int l, int r ){ root = new node( 0 ); if( l == r ){ root->v = 0; return; } int mid = ( l + r ) / 2; build_st( root->ls , l , mid ); build_st( root->rs , mid+1 , r ); } pnode new_version( pnode t, int l, int r, int pos, int v ){ pnode clone = new node( t->v ); if( l == r ){ clone->v = v; return clone; } int mid = ( l + r ) / 2; if( mid < pos ){ clone->ls = t->ls; clone->rs = new_version( t->rs , mid+1 , r , pos , v ); } else{ clone->rs = t->rs; clone->ls = new_version( t->ls , l , mid , pos , v ); } return clone; } int get_v( pnode t , int l, int r, int pos ){ if( l == r ){ return t->v; } int mid = ( l + r ) / 2; if( pos <= mid ){ return get_v( t->ls , l , mid , pos ); } else{ return get_v( t->rs , mid+1 , r , pos ); } } int diff[MAXN]; int uni[MAXN]; int main(){ ios::sync_with_stdio(0); cin.tie(0); // freopen("dat.txt","r",stdin); int n, m; cin >> n >> m; diff[0] = 0; uni[0] = 0; build_st(roots[0], 1, m); string op; int x; long long s = 0LL, y; int last = 0; for (int i = 1; i <= n; i++) { cin >> op; if (op[0] == 'a') { cin >> x; int c = get_v(roots[last], 1, m, x); roots[i] = new_version(roots[last], 1, m, x, c + 1); diff[i] = diff[last]; uni[i] = uni[last]; if (c == 0) { diff[i]++; uni[i]++; } else if (c == 1) { uni[i]--; } last = i; } else if (op[0] == 'r') { cin >> x; int c = get_v(roots[last], 1, m, x); if (c == 0) { roots[i] = roots[last]; uni[i] = uni[last]; diff[i] = diff[last]; } else { roots[i] = new_version(roots[last], 1, m, x, c - 1); diff[i] = diff[last]; uni[i] = uni[last]; if (c == 1) { diff[i]--; uni[i]--; } else if (c == 2) { uni[i]++; } } last = i; } else if (op[0] == 'd') { cin >> y; y = (y + s) % (long long)i; roots[i] = roots[last]; diff[i] = diff[last]; uni[i] = uni[last]; s += (long long)diff[y]; cout << diff[y] << "\n"; } else if (op[0] == 'u') { cin >> y; y = (y + s) % (long long)i; roots[i] = roots[last]; diff[i] = diff[last]; uni[i] = uni[last]; s += (long long)uni[y]; cout << uni[y] << "\n"; } else { cin >> x >> y; y = (y + s) % (long long)i; roots[i] = roots[last]; diff[i] = diff[last]; uni[i] = uni[last]; int ans = get_v(roots[y], 1, m, x); s += (long long)ans; cout << ans << "\n"; } } }
291d2ce75664860e1e770995604e6db358a01a9f
a3ba01b16afc2b74b73ca94d5530658574d93e86
/Headers/Volume.h
f360a84e9f7c51a09c10ca62ec26c185da3d9552
[]
no_license
iggalot/Application-Framework
c961e1898f937555a9a1088f91365934f0cd317c
5cf3773ecaf841a3ce2aea35bb008cebf65abb6a
refs/heads/master
2021-10-28T21:30:41.048650
2015-06-09T15:31:06
2015-06-09T15:31:06
183,354,916
2
0
null
null
null
null
UTF-8
C++
false
false
1,550
h
Volume.h
#ifndef _Volume_H #define _Volume_H #define MAX_VOL_MESHES 4 // the number of member meshes to hold in each volume #include "../Headers/Main.h" class Volume { public: GLuint VolumeID; // stores the Volume ID GLuint VolumeType; // stores the type of Volume as defined in Application.h Mesh *MemberMesh[MAX_VOL_MESHES]; // array to hold pointers to the meshes used to create a volume (better to cast this into a std::vector container in the future) int NumMeshes; // stores the number of meshes in this volume int NumVAO; // stores the number of VAO needed by OpenGL int NumVBO; // stores the number of VBO needed by OpenGL GLuint VolTargetWindow; // stores the window # (as defined in Application.h) where this volume (and its meshes) will be drawn Volume(); // a constructor for the volume class ~Volume() {}; // a destructor for the volume class void Initialize(int shape_code); // Initialize the class using a simple shape parameter defined in application.h // void RenderVolume(AppWindow **p_array, GLuint **VolVBO_ID, GLuint **VolVAO_ID); // Render the mesh members of the volume to the appropriate windows void RenderVolume(int target_window, AppWindow **WinID_array); // Render the mesh members of the volume to the appropriate windows void Destroy(); // Destroys the member data protected: GLuint *VolVBO_ID[MAX_VOL_MESHES]; // The VBO Id stored by the VAO GLuint *VolVAO_ID[MAX_VOL_MESHES]; // The VAO Id to bind when drawing }; #endif
745a46345d5971af45596c7e62bd4a3891a05d04
5b95018192cac406366d764c97df948f8808662a
/02-线性结构3 Reversing Linked List/源.cpp
b56b7584f014a7191df6cf9f206f64499ec27893
[]
no_license
Zhmoll/DSA-PTA
724ae526e4e000d63e551ab8471536a435e7d046
46aeeb89a3f52e197b514b3b1da4544e88c692d9
refs/heads/master
2021-01-20T07:36:31.486346
2017-05-13T06:11:54
2017-05-13T06:11:54
90,017,593
0
0
null
null
null
null
UTF-8
C++
false
false
1,633
cpp
源.cpp
#include <stdio.h> #include <stdlib.h> struct TreeNode { int data; int next; }; int q1[100005]; int q2[100005]; int q1_size = 0; int q2_size = 0; void enqueue(int address, int q) { if (q == 1) { q1[q1_size] = address; q1_size++; } if (q == 2) { q2[q2_size] = address; q2_size++; } } int stack[100005]; int stack_size = 0; void push(int address) { stack[stack_size] = address; stack_size++; } int pop() { int result = stack[stack_size - 1]; stack_size--; return result; } int main() { int start, total, reverse; struct TreeNode arr[100000] = { -1,-1 }; scanf("%d %d %d", &start, &total, &reverse); int tmp_address, tmp_data, tmp_next; for (int i = 0; i < total; i++) { scanf("%d %d %d", &tmp_address, &tmp_data, &tmp_next); arr[tmp_address].data = tmp_data; arr[tmp_address].next = tmp_next; } tmp_address = start; int size = 0; while (tmp_address != -1) { enqueue(tmp_address, 1); tmp_address = arr[tmp_address].next; size++; } for (int i = 0; i < size; i++) { push(q1[i]); if (stack_size < reverse) continue; while (stack_size != 0) { enqueue(pop(), 2); } } for (int i = 0; i < stack_size; i++) { enqueue(stack[i], 2); } for (int i = 0; i < size; i++) { if (i + 1 == size) { printf("%05d %d -1", q2[i], arr[q2[i]].data); } else { printf("%05d %d %05d\n", q2[i], arr[q2[i]].data, q2[i + 1]); } } return 0; }
630b16f305ae83543b4c1b3b17ad78e5e719081c
2f29655b4daef4c8d13a0c6563394cf4ee68e01e
/sample/generator.cpp
65d9d7aeeef35d8ce3034653fd6c50824efc835f
[]
no_license
piyushdubey490/Auto-Tester
164ca0249e3a81688b0bd056b788bc361fd542d5
a044611f4b53757a38e591c4f666814d7dec14d0
refs/heads/master
2023-07-13T12:20:33.626889
2021-08-10T08:08:25
2021-08-10T08:08:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
200
cpp
generator.cpp
#include "bits/stdc++.h" using namespace std; const int MAX = 3; int main() { srand(time(NULL)); int l = rand() % MAX + 1; int r = rand() % MAX + 1; if(l > r) swap(l, r); cout << l << " " << r; }
e805094b98fa5d00be498dacac382679122a0658
13dab8a118f8ff847991fd146b2d53530da0bc42
/src/epee/include/misc_language.h
cdcf2cb2f8ca601149f3cea14cca3550b55911bb
[]
no_license
andyspb/private
1bed3a5744aa32835c75137a97ebaa35d2cfb277
6bb4783ee220c3a82c8b942ecdd453d15ad795dd
refs/heads/master
2020-06-14T17:40:17.629769
2013-12-08T20:15:01
2013-12-08T20:15:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,300
h
misc_language.h
// Copyright (c) 2006-2013, Andrey N. Sabelnikov, www.sabelnikov.net // All rights reserved. // #ifndef MISC_LANGUAGE_H #define MISC_LANGUAGE_H #include <limits> namespace epee { #define STD_TRY_BEGIN() try { #define STD_TRY_CATCH(where_, ret_val) \ } \ catch (const std::exception &e) \ { \ LOG_ERROR("EXCEPTION: " << where_ << ", mes: "<< e.what()); \ return ret_val; \ } \ catch (...) \ { \ LOG_ERROR("EXCEPTION: " << where_ ); \ return ret_val; \ } namespace misc_utils { template<typename t_type> t_type get_max_t_val(t_type t) { return std::numeric_limits<t_type>::max(); } template<typename t_iterator> t_iterator move_it_forward(t_iterator it, size_t count) { while (count--) it++; return it; } // TEMPLATE STRUCT less template<class _Ty> struct less_as_pod : public std::binary_function<_Ty, _Ty, bool> { // functor for operator< bool operator()(const _Ty& _Left, const _Ty& _Right) const { // apply operator< to operands return memcmp(&_Left, &_Right, sizeof(_Left)) > 0 ? false : true; } }; inline bool sleep_no_w(long ms) { boost::this_thread::sleep( boost::get_system_time() + boost::posix_time::milliseconds(std::max<long>(ms, 0))); return true; } } // namespace misc_utils } // namespace epee #endif MISC_LANGUAGE_H
a5f28e3733c382ad0220552ecea91e3eccd8a3da
0dc422e71d2b51ea1870baa41a2d0bc6e565b713
/PTA&PAT_note&code/exercise_list/1001_A+B_Format.cpp
c3ddbb3b7646780528fed83a5a708e9f3f441369
[]
no_license
grovekingli/PTA-PAT_note-code
a0e6c071df2e644860244d800678c5078abc8eae
f533c4ceb63379d8418233e950dad7b617e55bf2
refs/heads/main
2023-03-05T07:59:18.034373
2021-02-08T14:15:23
2021-02-08T14:15:23
327,314,623
0
0
null
2021-02-08T14:15:25
2021-01-06T13:08:12
C++
UTF-8
C++
false
false
748
cpp
1001_A+B_Format.cpp
// // 1001_A+B_Format.cpp // PTA&PAT_note&code // // Created by Groveking Li on 2021/1/6. // #include <iostream> #include <string> #include <sstream> using namespace std; string FormatNum (int a, int b) { string res; int resNum = a + b; string sumStr = resNum >= 0 ? to_string(resNum) : to_string(0-resNum); int strLen = sumStr.length(); for(int i=0; i<strLen; i++) { res.insert(0, 1, sumStr[strLen - i - 1]); if((i+1)%3 == 0 && i!= strLen-1 && i!=0 && i+1 >= 3) { res.insert(0, 1,','); } } if(resNum < 0) { res.insert(0, 1,'-'); } return res; } void AB_Format() { int a; int b; cin >> a >> b; cout<<FormatNum(a, b)<<endl; }
9406346717a6b4e513e6f39281627b22332b0857
7ed28dffc9e1287cf504fdef5967a85fe9f564e7
/construction/abc92_d.cpp
bd0c863254eb9be94cb36ca04ff89833582b5d98
[ "MIT" ]
permissive
Takumi1122/data-structure-algorithm
0d9cbb921315c94d559710181cdf8e3a1b8e62e5
6b9f26e4dbba981f034518a972ecfc698b86d837
refs/heads/master
2021-06-29T20:30:37.464338
2021-04-17T02:01:44
2021-04-17T02:01:44
227,387,243
0
0
null
2020-02-23T12:27:52
2019-12-11T14:37:49
C++
UTF-8
C++
false
false
1,362
cpp
abc92_d.cpp
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) using namespace std; using ll = long long; using P = pair<int, int>; using Graph = vector<vector<int>>; // まずどのくらい余裕があるのかを概算 // この問題だと市松模様に塗ることで A = B = 5000が達成できる // A,B <= 500 は余裕があることがわかる // 構築問題 /* 参考リンク ABC 92 D - Grid Components https://atcoder.jp/contests/abc092/tasks/arc093_b */ bool ans[100][100]; int main() { int a, b; cin >> a >> b; rep(i, 50) rep(j, 100) ans[i][j] = true; for (int i = 50; i < 100; i++) rep(j, 100) ans[i][j] = false; int nowa = 1; while (nowa < a) { for (int i = 1; i < 100; i += 2) { for (int j = 1; j < 100; j += 2) { ans[i][j] = false; nowa++; if (nowa >= a) { break; } } if (nowa >= a) { break; } } } int nowb = 1; while (nowb < b) { for (int i = 51; i < 100; i += 2) { for (int j = 1; j < 100; j += 2) { ans[i][j] = true; nowb++; if (nowb >= b) { break; } } if (nowb >= b) { break; } } } cout << 100 << " " << 100 << endl; rep(i, 100) { rep(j, 100) cout << (ans[i][j] ? '#' : '.'); cout << endl; } return 0; }
f7accf7e00a4dc74f855f695286e2c266dea4b55
5823d1e8d579d0d6d4e830794a68c61096c52367
/src/kokkos/PdV.cpp
d0a3b8ab2bf1a02a901e29c3c3eb9969c8ad96f4
[]
no_license
UoB-HPC/CloverLeaf
74a1ab7748be406641f35fb0ddd5f3ae9ce07a92
4306b008eb21b0dbdad7bd241dfb6a5a337609ca
refs/heads/main
2023-08-21T13:32:13.089304
2023-08-13T06:34:39
2023-08-13T06:34:39
61,378,073
4
0
null
null
null
null
UTF-8
C++
false
false
5,923
cpp
PdV.cpp
/* Crown Copyright 2012 AWE. This file is part of CloverLeaf. CloverLeaf is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. CloverLeaf is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with CloverLeaf. If not, see http://www.gnu.org/licenses/. */ #include "PdV.h" #include "comms.h" #include "ideal_gas.h" #include "report.h" #include "revert.h" #include "timer.h" #include "update_halo.h" // @brief Fortran PdV kernel. // @author Wayne Gaudin // @details Calculates the change in energy and density in a cell using the // change on cell volume due to the velocity gradients in a cell. The time // level of the velocity data depends on whether it is invoked as the // predictor or corrector. void PdV_kernel(bool predict, int x_min, int x_max, int y_min, int y_max, double dt, Kokkos::View<double **> &xarea, Kokkos::View<double **> &yarea, Kokkos::View<double **> &volume, Kokkos::View<double **> &density0, Kokkos::View<double **> &density1, Kokkos::View<double **> &energy0, Kokkos::View<double **> &energy1, Kokkos::View<double **> &pressure, Kokkos::View<double **> &viscosity, Kokkos::View<double **> &xvel0, Kokkos::View<double **> &xvel1, Kokkos::View<double **> &yvel0, Kokkos::View<double **> &yvel1, Kokkos::View<double **> &volume_change) { // DO k=y_min,y_max // DO j=x_min,x_max Kokkos::MDRangePolicy<Kokkos::Rank<2>> policy({x_min + 1, y_min + 1}, {x_max + 2, y_max + 2}); if (predict) { Kokkos::parallel_for( "PdV predict=true", policy, KOKKOS_LAMBDA(const int j, const int k) { double left_flux = (xarea(j, k) * (xvel0(j, k) + xvel0(j, k + 1) + xvel0(j, k) + xvel0(j, k + 1))) * 0.25 * dt * 0.5; double right_flux = (xarea(j + 1, k) * (xvel0(j + 1, k) + xvel0(j + 1, k + 1) + xvel0(j + 1, k) + xvel0(j + 1, k + 1))) * 0.25 * dt * 0.5; double bottom_flux = (yarea(j, k) * (yvel0(j, k) + yvel0(j + 1, k) + yvel0(j, k) + yvel0(j + 1, k))) * 0.25 * dt * 0.5; double top_flux = (yarea(j, k + 1) * (yvel0(j, k + 1) + yvel0(j + 1, k + 1) + yvel0(j, k + 1) + yvel0(j + 1, k + 1))) * 0.25 * dt * 0.5; double total_flux = right_flux - left_flux + top_flux - bottom_flux; double volume_change_s = volume(j, k) / (volume(j, k) + total_flux); double recip_volume = 1.0 / volume(j, k); double energy_change = (pressure(j, k) / density0(j, k) + viscosity(j, k) / density0(j, k)) * total_flux * recip_volume; energy1(j, k) = energy0(j, k) - energy_change; density1(j, k) = density0(j, k) * volume_change_s; }); } else { Kokkos::parallel_for( "PdV predict=false", policy, KOKKOS_LAMBDA(const int j, const int k) { double left_flux = (xarea(j, k) * (xvel0(j, k) + xvel0(j, k + 1) + xvel1(j, k) + xvel1(j, k + 1))) * 0.25 * dt; double right_flux = (xarea(j + 1, k) * (xvel0(j + 1, k) + xvel0(j + 1, k + 1) + xvel1(j + 1, k) + xvel1(j + 1, k + 1))) * 0.25 * dt; double bottom_flux = (yarea(j, k) * (yvel0(j, k) + yvel0(j + 1, k) + yvel1(j, k) + yvel1(j + 1, k))) * 0.25 * dt; double top_flux = (yarea(j, k + 1) * (yvel0(j, k + 1) + yvel0(j + 1, k + 1) + yvel1(j, k + 1) + yvel1(j + 1, k + 1))) * 0.25 * dt; double total_flux = right_flux - left_flux + top_flux - bottom_flux; double volume_change_s = volume(j, k) / (volume(j, k) + total_flux); double recip_volume = 1.0 / volume(j, k); double energy_change = (pressure(j, k) / density0(j, k) + viscosity(j, k) / density0(j, k)) * total_flux * recip_volume; energy1(j, k) = energy0(j, k) - energy_change; density1(j, k) = density0(j, k) * volume_change_s; }); } } // @brief Driver for the PdV update. // @author Wayne Gaudin // @details Invokes the user specified kernel for the PdV update. void PdV(global_variables &globals, bool predict) { double kernel_time{}; if (globals.profiler_on) kernel_time = timer(); globals.error_condition = 0; for (int tile = 0; tile < globals.config.tiles_per_chunk; ++tile) { tile_type &t = globals.chunk.tiles[tile]; PdV_kernel(predict, t.info.t_xmin, t.info.t_xmax, t.info.t_ymin, t.info.t_ymax, globals.dt, t.field.xarea.view, t.field.yarea.view, t.field.volume.view, t.field.density0.view, t.field.density1.view, t.field.energy0.view, t.field.energy1.view, t.field.pressure.view, t.field.viscosity.view, t.field.xvel0.view, t.field.xvel1.view, t.field.yvel0.view, t.field.yvel1.view, t.field.work_array1.view); } clover_check_error(globals.error_condition); if (globals.profiler_on) globals.profiler.PdV += timer() - kernel_time; if (globals.error_condition == 1) { report_error((char *)"PdV", (char *)"error in PdV"); } if (predict) { if (globals.profiler_on) kernel_time = timer(); for (int tile = 0; tile < globals.config.tiles_per_chunk; ++tile) { ideal_gas(globals, tile, true); } if (globals.profiler_on) globals.profiler.ideal_gas += timer() - kernel_time; int fields[NUM_FIELDS]; for (int i = 0; i < NUM_FIELDS; ++i) fields[i] = 0; fields[field_pressure] = 1; update_halo(globals, fields, 1); } if (predict) { if (globals.profiler_on) kernel_time = timer(); revert(globals); if (globals.profiler_on) globals.profiler.revert += timer() - kernel_time; } }
bd07d8457d29a276679608740b146985e86f0a0b
dc37fe84633264f6c829d69d3f41b64760584a64
/Dialog/layerattributetabledialog.h
5bb8cbee49fbeeacc534f5e051af3fad565edaee
[]
no_license
Hyperionlucky/SuperGis
fa958be38ed369ab659d9ad778c5e04f4b9f29c6
99fb4ca20a68328745d4c2d6440cdf424154720d
refs/heads/master
2020-12-27T14:30:12.030399
2020-02-03T10:29:50
2020-02-03T10:29:50
237,936,106
0
0
null
null
null
null
UTF-8
C++
false
false
998
h
layerattributetabledialog.h
#ifndef LAYERATTRIBUTETABLEDIALOG_H #define LAYERATTRIBUTETABLEDIALOG_H #include <QDialog> #include <QTableWidget> #include <QTableWidgetItem> #include <QToolBar> #include <QAction> #include "geolayer.h" class LayerAttributeTableDialog : public QDialog { Q_OBJECT public: LayerAttributeTableDialog(GeoLayer* layerIn, QWidget *parent); ~LayerAttributeTableDialog(); signals: void featureSelected(int,std::vector<int>&); void closed(); void unsave(); public slots: void onSelectRows(); public: void createWidgets(); void createActions(); void createToolBar(); void setupLayout(); private: static void readAttributeTable(GeoLayer* layer, QTableWidget* tableWidget); public: GeoLayer* layer; // widgets QTableWidget* tableWidget; // tooBra QToolBar* toolBar; // actions QAction* removeRecorsdAction; protected: virtual void closeEvent(QCloseEvent* event) override; }; #endif // LAYERATTRIBUTETABLEDIALOG_H
7a417ce216e545ca5a1ca302a47dd2403ddb2158
a2637ebf462068a0fc3637246005bafd0b447f07
/StreamlinedMastermind/include/BehaviorTree/Behavior.h
9e41a103afb59209612dc3125edc6e9fd72e76a2
[ "MIT" ]
permissive
DavidtKate/Crime-Engine
08a063e80f4d0073f11365acb3e76d2244ff31d6
128529634011d41a1f7fc1a356245d7f7ef77cb3
refs/heads/main
2023-03-18T23:17:13.235494
2021-03-08T10:52:07
2021-03-08T10:52:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
276
h
Behavior.h
#pragma once #include "BehaviorTree/IBehavior.h" namespace bt { class Behavior : public IBehavior { public: Behavior(); virtual ~Behavior() = default; EStatus Tick(float a_deltaTime = 0); EStatus Status() { return m_status; }; private: EStatus m_status; }; }
f809d85988c93154988aa73bcf20273cd4fcfa37
0114ec2eda509daedd2d8ae80ad02e0384332507
/search.cc
e9b70317f624dd5e8d267231ed8526fd24b33e72
[]
no_license
hkocinneide/chord
5feab22d881e59db7513e838cd73c464c1961c31
528bec0468f1906145e9abcacc4520720f85e3f9
refs/heads/master
2020-05-17T22:50:17.451057
2014-12-16T01:25:59
2014-12-16T01:25:59
27,414,132
0
1
null
null
null
null
UTF-8
C++
false
false
473
cc
search.cc
#include "search.hh" #include "fileshare.hh" Search *Search::search = NULL; Search::Search(QListWidget *list) { search = this; searchList = list; } void Search::searchFiles(QString term) { QMap<QString, quint64> *files = FileShare::share->sharedFiles; QMap<QString, quint64>::iterator i; for (i = files->begin(); i != files->end(); i++) { if (i.key().contains(term, Qt::CaseInsensitive)) { new QListWidgetItem(i.key(), searchList); } } }
40a4df22b494d06e7560e3e65fef744c1d0eafaa
ac0d7292e8921bee1f6f04b02b7f4f8207623ea1
/TRAB2/geradorDeTestes.cpp
539472aae3401db41909b7f1e11cf2ac44fbd295
[]
no_license
dell2duo/Data-Structure
c82329fc8b843553abe5d841966e1ad38713bf5a
323e365a42abbd28093ba2e0e185d82068c0294e
refs/heads/master
2022-12-11T07:46:31.095137
2020-09-14T18:40:25
2020-09-14T18:40:25
191,229,027
0
0
null
null
null
null
UTF-8
C++
false
false
279
cpp
geradorDeTestes.cpp
#include <iostream> #include <fstream> using namespace std; int main(int argc, char* argv[]){ ofstream out(argv[1]); if(!out.is_open()) cout << "-não abriu-" << endl; for(int i=0;i<255;i++){ char temp = (char)i; out << temp; } return 0; }
be8e7000c18b272ce9f6f16afdf07aa6979fdffa
a39b242d3a07b4611c8ca2b050f9ddd51496d2c8
/UVA 10773 - Back to intermidiate math.cpp
e7c9be461f0ffa39180c50428e6431fd9e39bd57
[]
no_license
abdullahalrifat/contest
28b14c92894d5f388fe7182426980a5dc84795a8
063fda623cb9f5f020cc1ac7195e63344497e33f
refs/heads/master
2020-12-20T16:41:16.049119
2019-06-26T11:51:12
2019-06-26T11:51:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
409
cpp
UVA 10773 - Back to intermidiate math.cpp
#include<cstdio> #include<cmath> int main(){ int test; int d, u, v; scanf("%d", &test); for (int i=1; i<=test;i++){ scanf("%d %d %d",&d,&v,&u); printf("Case %d: ",i); if (u>v && v) printf("%.3f\n",d*(1.0/sqrt(u*u-v*v)-1.0/u)); else puts("can't determine"); } return 0; }
0d97b0449e10a431f1a9c5acbe640f4c7a23377b
46529637c8c8a366195a82f09533d51e99ff6cff
/treinos/treino2/respostas_aceitas/G.cpp
5c98c48522355d7c238c2b7d0c2644ddf2d31b53
[]
no_license
GabrielFrizzo/MProg2019
eb90536c90149b0eb8de40ef443d2c39f4362dd0
a7a9e686fa49e016cf9f6463e432e091d49e6ec4
refs/heads/master
2020-06-23T17:22:16.522316
2019-10-03T23:00:06
2019-10-03T23:00:06
198,694,523
1
0
null
null
null
null
UTF-8
C++
false
false
385
cpp
G.cpp
#include <bits/stdc++.h> using namespace std; int main() { set<string> dicionario; string palavra; char c; palavra=""; while(scanf("%c", &c)!=EOF) { c=tolower(c); if(isalpha(c)) palavra+=c; else{ if(palavra!="") { palavra+='\0'; dicionario.insert(palavra); } palavra=""; } } for(auto j: dicionario) printf("%s\n", j.c_str()); return 0; }
ea34696ea6c01bbfe59cef020863dd0c72d6d902
b2feba8c1139f8ef3ad4808afc65085341d33f07
/include/qr.h
1640c4f216978e199a8ea581ad853c33009cfc09
[]
no_license
zrdthu/Parted-QR-Code-Recognition
e8eecaf3137132f757febfca551ebdee807f8318
a7fb0a203952c68afa08e77e2c71c5da881e003b
refs/heads/master
2020-07-05T01:39:28.516547
2019-08-15T06:38:06
2019-08-15T06:38:06
202,485,273
0
0
null
null
null
null
UTF-8
C++
false
false
1,063
h
qr.h
// ------------------------ // zrd: zhangr.d.1996@gmail.com #ifndef _QR_H #define _QR_H #include <iostream> #include <string> #include <vector> #include <zbar.h> #include <opencv2/objdetect.hpp> #include <opencv2/opencv.hpp> // #include <opencv2/core.hpp> #include <opencv2/imgproc.hpp> #include <opencv2/highgui.hpp> #include <opencv2/ximgproc.hpp> class QR_Rec { public: QR_Rec(const std::vector<std::string> &nameList); std::vector<cv::Mat>& getImgList() {return imgList;} std::string doRec(int nbThreshold, const std::vector<double> &cropFactor); private: void preprocess(); std::vector<cv::Mat> extractAll(int nbThreshold); std::string extractCode(const cv::Mat &img); std::vector<cv::Mat> imgList; std::vector<cv::Mat> edgesImg; std::vector<cv::Point2f> extractImg(const cv::Mat &img, int nbThreshold, int imgSize); std::vector<cv::Vec4f> extractLines(const cv::Mat &img, int nbThreshold); cv::Mat assembleImg(const std::vector<cv::Mat> &rectifiedImgs, double cropFactor, int rotateFactor); }; #endif //_QR_H
5908c08071358a615e62523c76a8aabb65a5085e
fd9a7602061b00b009f8a359f388f103f6f85cf6
/src/main/cpp/system.cpp
67239f57123afc2839db85abafd801912da1f509
[ "Apache-2.0" ]
permissive
apache/logging-log4cxx
8d3a7ba683b226695187e0986f62a9407fa78481
c8d9a6a15ae540786260503d98a20926b754a366
refs/heads/master
2023-09-05T08:59:37.739702
2023-08-21T06:05:38
2023-08-21T06:10:27
87,689,450
247
138
Apache-2.0
2023-09-14T07:52:55
2017-04-09T07:00:07
C++
UTF-8
C++
false
false
2,652
cpp
system.cpp
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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. */ #include <log4cxx/logstring.h> #include <log4cxx/helpers/system.h> #include <log4cxx/helpers/transcoder.h> #include <log4cxx/helpers/pool.h> #include <apr_file_io.h> #include <apr_user.h> #include <apr_env.h> using namespace log4cxx; using namespace log4cxx::helpers; LogString System::getProperty(const LogString& lkey) { if (lkey.empty()) { throw IllegalArgumentException(LOG4CXX_STR("key is empty")); } LogString rv; if (lkey == LOG4CXX_STR("java.io.tmpdir")) { Pool p; const char* dir = NULL; apr_status_t stat = apr_temp_dir_get(&dir, p.getAPRPool()); if (stat == APR_SUCCESS) { Transcoder::decode(dir, rv); } return rv; } if (lkey == LOG4CXX_STR("user.dir")) { Pool p; char* dir = NULL; apr_status_t stat = apr_filepath_get(&dir, APR_FILEPATH_NATIVE, p.getAPRPool()); if (stat == APR_SUCCESS) { Transcoder::decode(dir, rv); } return rv; } #if APR_HAS_USER if (lkey == LOG4CXX_STR("user.home") || lkey == LOG4CXX_STR("user.name")) { Pool pool; apr_uid_t userid; apr_gid_t groupid; apr_pool_t* p = pool.getAPRPool(); apr_status_t stat = apr_uid_current(&userid, &groupid, p); if (stat == APR_SUCCESS) { char* username = NULL; stat = apr_uid_name_get(&username, userid, p); if (stat == APR_SUCCESS) { if (lkey == LOG4CXX_STR("user.name")) { Transcoder::decode(username, rv); } else { char* dirname = NULL; stat = apr_uid_homepath_get(&dirname, username, p); if (stat == APR_SUCCESS) { Transcoder::decode(dirname, rv); } } } } return rv; } #endif LOG4CXX_ENCODE_CHAR(key, lkey); Pool p; char* value = NULL; apr_status_t stat = apr_env_get(&value, key.c_str(), p.getAPRPool()); if (stat == APR_SUCCESS) { Transcoder::decode((const char*) value, rv); } return rv; }
6f2123cf7135c0663c1d83b8238ea82b9bc4fbca
f57891c586e6d07cefaac99769d1260895d504a6
/geo_analysis_server.cpp
a37cc225841fbdcb9be1c398f2a2ed417dfd92be
[]
no_license
christophanneser/GeoServer
7315f6d186192344770045982e9c8e5cae7d1621
f6fd37836926b4bc7a41ba8a6b5714fe7d1b143a
refs/heads/master
2022-01-14T00:22:36.565591
2019-02-05T23:04:42
2019-02-05T23:04:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,175
cpp
geo_analysis_server.cpp
// // Created by Christoph Anneser on 10.12.18. // //uncomment for debug output //#define __DEBUG #include <iostream> #include <memory> #include <string> #include <grpcpp/grpcpp.h> #include "geoanalysis.grpc.pb.h" #include "geoanalysis.pb.h" #include <s2/s2contains_point_query.h> #include <s2/s2latlng.h> #include <s2/s2region_coverer.h> #include <s2/s2cell_union.h> #include "data.h" #include "s2/s2edge_crosser.h" #include "s2/s2shape_index.h" #include "s2/s2shapeutil_shape_edge.h" #include <unordered_map> using grpc::Server; using grpc::ServerBuilder; using grpc::ServerContext; using grpc::Status; using geo::geoanalyser; using geo::NeighborhoodCounts; using geo::Point; using geo::PointRequest; using geo::NeighborhoodCountsResponse; using geo::UserLocationsRequest; using geo::UsersResponse; using geo::PolgonRequest; using geo::StatusResponse; using geo::UserLocation; using geo::GranularityLevel; using geo::HeatMap; using geo::S2SquareRequest; using geo::UserIds; struct pair_hash { auto operator () (const S2CellId &cell_id) const { return cell_id.id(); } }; // Server logic and implementation class GreeterServiceImpl final : public geoanalyser::Service { using PositionUserIdType = std::pair<S2CellId, std::string>; using CellMap = std::unordered_map<S2CellId, std::pair<uint32_t ,std::vector<std::string>>, pair_hash >; public: GreeterServiceImpl(std::vector<std::string> neighborhood_names, MutableS2ShapeIndex *index_ptr) { _neighborhood_names = std::move(neighborhood_names); _cell_map = CellMap(); _index_ptr = index_ptr; } Status SetLastUserLocations(::grpc::ServerContext *context, const ::geo::UserLocationsRequest *request, ::geo::StatusResponse *response) override { if (request->location().size() != request->userid().size()) { return Status::CANCELLED; }; _user_location_ids.clear(); // copy user ids into private field _user_ids for (auto i = 0; i < request->location().size(); i++) { auto s2point = S2LatLng::FromDegrees(request->location()[i].latitude(), request->location()[i].longitude()).Normalized().ToPoint(); S2CellId cell(s2point); _user_location_ids.emplace_back(std::make_pair(cell, request->userid()[i])); } //sort user locations std::sort(_user_location_ids.begin(), _user_location_ids.end(), [](const PositionUserIdType &lhs, const PositionUserIdType &rhs) { return lhs.first.id() < rhs.first.id(); }); response->set_status("Latest locations set"); return Status::OK; } Status GetUsersInPolygon(ServerContext *context, const PolgonRequest *request, UsersResponse *response) override { // 1. build a loop of the request's points std::vector<S2Point> points; for (const auto &point : request->vertices()) { auto s2point = S2LatLng::FromDegrees(point.latitude(), point.longitude()).Normalized().ToPoint(); points.emplace_back(s2point); } S2Loop loop(points); // 2. create region covering of this loop -> cell union S2RegionCoverer::Options options; options.set_max_cells(200); options.set_max_level(30); S2RegionCoverer region_coverer(options); S2CellUnion s2cell_union = region_coverer.GetCovering(loop); assert (!s2cell_union.empty()); // 3. get min and max cell ids of the cell union S2CellId min(s2cell_union[0].id()), max(s2cell_union[0].id()); for (const auto &cell: s2cell_union) { if (min > cell.range_min()) { min = cell.range_min(); } if (max < cell.range_max()) { max = cell.range_max(); } } #ifdef __DEBUG std::cout << "#cells in covering: " << std::to_string(s2cell_union.size()) << std::endl; std::cout << "min cell: " << std::to_string(min.id()) << std::endl; std::cout << "max cell: " << std::to_string(max.id()) << std::endl; for (const auto &entry: _user_location_ids) { std::cout << "\tuser cell: " << std::to_string(entry.first.id()) << std::endl; } #endif // 4. binary search -> range from appropriate cells auto comparator = [](const PositionUserIdType &p1, const S2CellId v) { return p1.first.id() < v.id(); }; auto lower_it = std::lower_bound(_user_location_ids.begin(), _user_location_ids.end(), min, comparator); auto upper_it = std::lower_bound(_user_location_ids.begin(), _user_location_ids.end(), max, comparator); std::cout << "#elements found in binary search: " << std::to_string(std::distance(lower_it, upper_it)) << std::endl; for (; lower_it != upper_it; lower_it++) { // 5. exact check if point is in polygon, after 20-30 calls the loop builds its own shape index // for faster containment check if (loop.Contains(lower_it->first.ToPoint())) { UserLocation* user_location = response->add_userlocation(); // set user id user_location->set_userid(lower_it->second); // set user location auto point = user_location->mutable_location(); auto lat_long = lower_it->first.ToLatLng().Normalized(); point->set_latitude(lat_long.lat().degrees()); point->set_longitude(lat_long.lng().degrees()); } } return Status::OK; }; Status GetUsersInS2Square(::grpc::ServerContext* context, const ::geo::S2SquareRequest* request, ::geo::UserIds* response) override { auto cell_id = S2CellId(request->cellid()); // get all users in specific s2 cell auto it = _cell_map.find(cell_id); if (it != _cell_map.end()) { for (auto && value: it->second.second) { response->add_userids(value); } } return Status::OK; } Status GetNeighborhoodsCount(ServerContext *context, const PointRequest *pointRequest, NeighborhoodCountsResponse *response) override { std::vector<S2Point> points; for (auto it = pointRequest->points().begin(); it != pointRequest->points().end(); it++) { auto point = S2LatLng::FromDegrees(it->latitude(), it->longitude()).Normalized().ToPoint(); points.emplace_back(point); } S2ContainsPointQueryOptions options(S2VertexModel::CLOSED); auto query = MakeS2ContainsPointQuery(_index_ptr, options); uint32 hit_counter(0); std::vector<uint32> counts(_neighborhood_names.size(), 0); for (auto point : points) { for (S2Shape *shape : query.GetContainingShapes(point)) { counts[shape->id()]++; hit_counter++; } } std::cout << "queried points: " << std::to_string(points.size()) << std::endl; std::cout << "hits: " << std::to_string(hit_counter) << std::endl; // RESPONSE for (u_int16_t i = 0; i < counts.size(); i++) { auto neighborhood_count = response->add_neighborhoodcounts(); neighborhood_count->set_name(_neighborhood_names[i]); neighborhood_count->set_count(counts[i]); } return Status::OK; } Status GetHeatmap(ServerContext* context, const GranularityLevel* request, HeatMap* response) override { auto level = request->level(); _cell_map.clear(); // 1. convert all latest location points to S2CellID and save them in a dedicated Hashtable. for (auto& cell_id_user_id : _user_location_ids) { auto parentCell = cell_id_user_id.first.parent(level); auto iterator = _cell_map.find(parentCell); // 2. check if this cell already exists or if it must be newly inserted if (iterator != _cell_map.end()) { // CellId already inserted iterator->second.first++; iterator->second.second.emplace_back(cell_id_user_id.second); } else { _cell_map.insert(std::make_pair(parentCell, std::make_pair(1, std::vector<std::string>{cell_id_user_id.second}))); } } // 3. iterate through Hashtable for (auto it = _cell_map.begin(); it != _cell_map.end(); it++) { auto heat_map = response->add_heatmap(); //add vertices of this cell for (uint8_t i = 0; i < 4; i++) { auto point = heat_map->add_vertices(); S2Cell cell(it->first); S2LatLng lat_lng_point(cell.GetVertex(i)); //get latlong from S2Point directly point->set_latitude(static_cast<float>(lat_lng_point.lat().degrees())); point->set_longitude(static_cast<float>(lat_lng_point.lng().degrees())); } heat_map->set_count(it->second.first); heat_map->set_cellid(it->first.id()); } return Status::OK; } private: std::vector<std::string> _neighborhood_names; MutableS2ShapeIndex *_index_ptr; std::vector<std::pair<S2CellId, std::string>> _user_location_ids; CellMap _cell_map; }; void RunServer() { std::vector<std::string> neighborhood_names; std::vector<std::unique_ptr<S2Loop>> loops; data::parse_neighborhoods("../data/muc.csv", &neighborhood_names, &loops); std::vector<u_int32_t> hit_counts(neighborhood_names.size()); #ifdef __DEBUG std::cout << "#polyongs names: " << std::to_string(neighborhood_names.size()) << std::endl; std::cout << "#polyongs loops: " << std::to_string(loops.size()) << std::endl; #endif MutableS2ShapeIndex index; data::build_shape_index(&index, &loops); std::cout << "Shape Index: uses " << std::to_string(index.SpaceUsed() / 1000) << "kB." << std::endl; // loops is now invalidated. loops.clear(); loops.shrink_to_fit(); std::string server_address("0.0.0.0:50051"); GreeterServiceImpl service(neighborhood_names, &index); ServerBuilder builder; builder.SetMaxReceiveMessageSize(INT_MAX); builder.SetMaxSendMessageSize(INT_MAX); // Listen on the given address without any authentication mechanism. builder.AddListeningPort(server_address, grpc::InsecureServerCredentials()); // Register "service" as the instance through which we'll communicate with // clients. In this case it corresponds to an *synchronous* service. builder.RegisterService(&service); // Finally assemble the server. std::unique_ptr<Server> server(builder.BuildAndStart()); std::cout << "Server listening on " << server_address << std::endl; // Wait for the server to shutdown. Note that some other thread must be // responsible for shutting down the server for this call to ever return. server->Wait(); } int main(int argc, char **argv) { RunServer(); return 0; }
b7cd1d884cd7d9bc8998d866e49131cdd1f5503d
b0e126b9ee6f5f36587694ecc5aa3bf34a354888
/Pract_03/Task10.cpp
47be3430149a5e19b0607855bdf483a9889eda05
[]
no_license
Prisadashki/Introduction_to_programming_FMI_2021-2022
14a6661afe4bbaa4fbf16729c84da5911d5d4a18
a3f3bbf6248848f923661fe8ae4b84b277e868ad
refs/heads/main
2023-08-30T22:05:44.987105
2021-11-05T09:26:50
2021-11-05T09:26:50
424,585,504
0
0
null
2021-11-04T12:22:08
2021-11-04T12:22:08
null
UTF-8
C++
false
false
684
cpp
Task10.cpp
#include <iostream> using namespace std; int main() { int n, initialSum; cin >> n; initialSum = n; int oneHundredLeva = 0; int fiftyLeva = 0; int twentyLeva = 0; int tenLeva = 0; int fiveLeva = 0; int twoLeva = 0; int oneLev = 0; oneHundredLeva = n / 100; n %= 100; fiftyLeva = n / 50; n %= 50; twentyLeva = n / 20; n %= 20; tenLeva = n / 10; n %= 10; fiveLeva = n / 5; n %= 5; twoLeva = n / 2; n %= 2; oneLev = n; cout << initialSum << " = " << oneHundredLeva << "*100 + " << fiftyLeva << "*50 + " << twentyLeva << "*20 + " << tenLeva << "*10 + " << fiveLeva << "*5 + " << twoLeva << "*2 + " << oneLev << "*1" << endl; }
45c20a52127c3fe14e302758ea9c082e0937ce8b
d41a540849323acb9e26d6962937dfbbdfed9d88
/serveur/src/ActionCommand.cpp
04bbbff03f86da7f009ed2a3b0e6a5a591f98a41
[]
no_license
alahache/tp-serveur-vod
565344fd96b3d3543d90c5fd3366b9d2443d6a65
6113337a4fb7ecdfd3d5aae41b1dd9d3f1a17b43
refs/heads/master
2021-01-19T18:07:45.032214
2011-04-04T14:16:21
2011-04-04T14:16:21
1,393,249
1
0
null
null
null
null
ISO-8859-1
C++
false
false
1,455
cpp
ActionCommand.cpp
/************************************************************************* ActionCommand - description ------------------- début : ... copyright : (C) 2011 par Arnaud Lahache *************************************************************************/ //---------- Réalisation de la classe <ActionCommand> (fichier ActionCommand.cpp) ------- //---------------------------------------------------------------- INCLUDE //-------------------------------------------------------- Include système using namespace std; #include <iostream> #include <string> //------------------------------------------------------ Include personnel #include "ActionCommand.h" //----------------------------------------------------------------- PUBLIC //----------------------------------------------------- Méthodes publiques void ActionCommand::Execute(epoll_event event) { string cmd; // On récupère la commande de l'utilisateur : cin >> cmd; if(cmd == "quit" || cmd == "exit") { // On arrête le serveur : io.Stop(); } else { cout << "Erreur : Commande '" << cmd << "' inconnue." << endl; DisplayPrompt(); } } void ActionCommand::DisplayPrompt() { cout << endl << "server> "; cout.flush(); } //------------------------------------------------------------------ PRIVE //----------------------------------------------------- Méthodes protégées
44310f43486694f5f2b3ef971a1c82bba5102afe
05f1d96ddb0225755bd072f6d5fa3cec9ce944e9
/utility/CommandDispatcherBase.cpp
e3e60911523579becdc1647c7c8d218b0ca5c3ea
[]
no_license
gstark307/MLP
32a7db3a42d94ed3b5d5df3a9e1493190a20cd91
a9a07eec7c889d116b12f42ff2ad24b72ad88d55
refs/heads/master
2020-12-30T20:52:03.484826
2015-03-08T09:36:21
2015-03-08T09:36:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,127
cpp
CommandDispatcherBase.cpp
#include "CommandDispatcherBase.h" #include <avr/pgmspace.h> using namespace MLP; CommandDispatcherBase::CommandDispatcherBase( CommandCallback *pCallbackBuffer, uint8_t uCallbackBufferLength ) : m_uMaxCommands(uCallbackBufferLength), m_pCommands(pCallbackBuffer) { m_uLastCommand = 0; m_fnDefaultHandler = NULL; } bool CommandDispatcherBase::AddCommand( const __FlashStringHelper *pCommand, void(*CallbackFunction)(CommandParameter &rParameters) ) { if (m_uLastCommand < m_uMaxCommands) { m_pCommands[m_uLastCommand].m_Callback = CallbackFunction; m_pCommands[m_uLastCommand].m_strCommand = (const prog_char*)pCommand; ++m_uLastCommand; return true; } #if defined(DEBUG) Serial.println(F("CommandDispatcherBase::AddCommand: No space for command")); #endif return false; // too many commands stored already. } void CommandDispatcherBase::SetDefaultHandler( void(*CallbackFunction)() ) { m_fnDefaultHandler = CallbackFunction; } void CommandDispatcherBase::ClearCommands() { m_uLastCommand = 0; } void CommandDispatcherBase::DispatchCommand( char *pchMessage, Print &rSource ) const { uint8_t uCommand, uParameterStart; CommandCallback *pCommand; uCommand = m_uLastCommand; pCommand = m_pCommands; while(uCommand--) { uParameterStart = MatchCommand(pCommand->m_strCommand, pchMessage); if (uParameterStart != NO_MATCH) { CommandParameter Parameters(rSource, pchMessage, uParameterStart); pCommand->m_Callback(Parameters); return; } ++pCommand; } // No command matched. if (m_fnDefaultHandler != NULL) (*m_fnDefaultHandler)(); } uint8_t CommandDispatcherBase::MatchCommand( const prog_char *pchCommand, const char *pchTest ) const { char chCommand, chTest; uint8_t uParameterStart = 0; do { chCommand = pgm_read_byte_near(pchCommand++); chTest = *pchTest++; ++uParameterStart; } while (chCommand == chTest && chCommand != '\0' && (chTest != ' ' || chTest != '\0')); if (chCommand == '\0' && (chTest == ' ' || chTest == '\0')) return uParameterStart; return NO_MATCH; // No match. }
acf75e0b83edd887651e0a4f17fcd6dd4806368f
10c14356b27d4ae01c340f1f0d14cba9fbe48f65
/Utilities.h
49be61c3d7e03f2edb89071c369d9c1c3bed68b4
[]
no_license
Zikomo/BerryCam
e8081079adc40fc66e07e6e37317e09d69a3133b
eae712ade92b93c0f9ab9d7065d653603fb0dc1e
refs/heads/master
2020-08-02T03:59:22.063832
2019-10-25T05:38:40
2019-10-25T05:38:40
211,226,759
0
0
null
2019-10-25T05:38:41
2019-09-27T03:15:00
C++
UTF-8
C++
false
false
2,830
h
Utilities.h
// // Created by Zikomo Fields on 2019-03-27. // #ifndef BERRYCAM_UTILITIES_H #define BERRYCAM_UTILITIES_H #include <boost/property_tree/ptree.hpp> #include <cmath> //Camera Keys #define CAMERA_STILLS_WIDTH "camera.stills.width" #define CAMERA_STILLS_HEIGHT "camera.stills.height" #define CAMERA_STILLS_YUV422 "camera.stills.yuv422" #define CAMERA_STILLS_ONE_SHOT "camera.stills.one_shot" #define CAMERA_PREVIEW_WIDTH "camera.preview.width" #define CAMERA_PREVIEW_HEIGHT "camera.preview.height" #define CAMERA_PREVIEW_FRAMES "camera.preview.frames" #define CAMERA_STILLS_CAPTURE_CIRCULAR_BUFFER_HEIGHT "camera.stills.capture_circular_buffer_height" #define CAMERA_PREVIEW_FAST_RESUME "camera.preview.fast_resume" #define CAMERA_ROTATION "camera.rotation" #define CAMERA_HORIZONTAL_FLIP "camera.preview.horizontal_flip" #define CAMERA_VERTICAL_FLIP "camera.preview.vertical_flip" //h264 Encoder Keys #define ENCODER_BIT_RATE "encoder.h264.bit_rate" #define ENCODER_FRAME_RATE "encoder.h264.frame_rate" #define ENCODER_GOP_SIZE "encoder.h264.gop_size" #define ENCODER_MAX_B_FRAMES "encoder.h264.max_b_frames" //Single Image Encoder Keys #define SINGLE_IMAGE_ENCODER_IMAGE_PATH "single_image_encoder.image_path" #define SINGLE_IMAGE_ENCODER_TARGET_FRAMES_PER_SECOND "single_image_encoder.target_fps" //Broadcaste Encoder Keys #define UDP_BROADCAST_ADDRESS "socket.broadcast.address" #define UDP_BROADCAST_PORT "socket.broadcast.port" #define UDP_BROADCAST_MTU "socket.broadcast.max_mtu_size" //Camera default values #define DEFAULT_CAMERA_RESOLUTION_WIDTH 320u #define DEFAULT_CAMERA_RESOLUTION_HEIGHT 240u #define DEFAULT_CAMERA_PREVIEW_FRAMES 3u #define DEFAULT_CAMERA_HORIZONTAL_FLIP 0 #define DEFAULT_CAMERA_VERTICAL_FLIP 0 #define DEFAULT_CAMERA_ROTATION 0 //Encoder default values #define DEFAULT_ENCODER_TARGET_FRAMES_PER_SECOND 25 #define DEFAULT_ENCODER_BITRATE 40000 #define DEFAULT_ENCODER_GOP_SIZE 10 #define DEFAULT_ENCODER_MAX_B_FRAMES 1 //UDP Broadcaster defaut values #define DEFAULT_BROADCAST_ADDRESS "239.255.0.1" #define DEFAULT_BROADCAST_PORT 9999 #define DEFAULT_BROADCAST_MTU 1450u //Default Binary Values #define DEFAULT_FALSE 0u #define DEFAULT_TRUE 1u class Utilities { public: template<class T> static T SafeGet(boost::property_tree::ptree& settings, std::string key, T default_value) { auto iterator = settings.find(key); boost::optional<T> value = settings.get_optional<T>(key); if (!value) { settings.put<T>(key, default_value); return default_value; } return settings.get<T>(key); } template<class T> static T Clamp(double d, T min, T max) { if (d < min) return min; if (d > max) return max; return std::round(d); } }; #endif //BERRYCAM_UTILITIES_H
c51d9c84440b3965d1e6d1ba45dfff6924c9e68f
afa59b7b69f09b924061eade6ecfd77bed61ebac
/controllers/ros44/RosDifferentialWheels.hpp
bf850383d790c696a4cc9684e28643f6bb93e366
[]
no_license
ekuo1/rovey2
a8ead58269be266a7f880c6cac2da7dbc5fc5270
db883dd7ae6b96465a16c83a57394cc2acb9b139
refs/heads/master
2020-04-13T14:25:15.274334
2019-01-05T07:29:52
2019-01-05T07:29:52
163,262,441
0
0
null
null
null
null
UTF-8
C++
false
false
2,503
hpp
RosDifferentialWheels.hpp
#ifndef ROS_DIFFERENTIAL_WHEELS_HPP #define ROS_DIFFERENTIAL_WHEELS_HPP #include <webots/DifferentialWheels.hpp> #include <webots_ros/get_float.h> #include <webots_ros/set_float_array.h> #include <webots_ros/differential_wheels_subscribe_twist_commands.h> #include <webots_ros/differential_wheels_get_speed.h> #include <geometry_msgs/Twist.h> #include "Ros.hpp" #include "RosSensor.hpp" using namespace webots; class RosDifferentialWheels : public RosSensor { public : RosDifferentialWheels(Ros *ros, DifferentialWheels *differentialWheels); virtual ~RosDifferentialWheels(); bool setEncodersCallback(webots_ros::set_float_array::Request &req, webots_ros::set_float_array::Response &res); bool setSpeedCallback(webots_ros::set_float_array::Request &req, webots_ros::set_float_array::Response &res); bool subscribeTwistSpeedCallback(webots_ros::differential_wheels_subscribe_twist_commands::Request &req, webots_ros::differential_wheels_subscribe_twist_commands::Response &res); bool getMaxSpeedCallback(webots_ros::get_float::Request &req, webots_ros::get_float::Response &res); bool getSpeedCallback(webots_ros::differential_wheels_get_speed::Request &req, webots_ros::differential_wheels_get_speed::Response &res); bool getSpeedUnitCallback(webots_ros::get_float::Request &req, webots_ros::get_float::Response &res); void topicCallback(const geometry_msgs::Twist::ConstPtr& command); void rosSetSpeed(int leftSpeed, int rightSpeed) {mDifferentialWheels->setSpeed(leftSpeed, rightSpeed);} virtual ros::Publisher createPublisher(); virtual void publishValue(ros::Publisher publisher); virtual void rosEnable(int samplingPeriod){mDifferentialWheels->enableEncoders(samplingPeriod);} virtual void rosDisable(){mDifferentialWheels->disableEncoders();} virtual std::string deviceName(){return mDifferentialWheels->getName();} virtual int rosSamplingPeriod() {return mDifferentialWheels-> getEncodersSamplingPeriod();} private : DifferentialWheels *mDifferentialWheels; Ros *mRos; ros::ServiceServer mGetMaxSpeedServer; ros::ServiceServer mGetSpeedServer; ros::ServiceServer mGetSpeedUnitServer; ros::ServiceServer mSetEncodersServer; ros::ServiceServer mSetSpeedServer; ros::ServiceServer mSubscribeTwistSpeedServer; ros::Subscriber mSubscriber; int mCommand[2]; }; #endif //ROS_DIFFERENTIAL_WHEELS_HPP
c93f98dcf518067cb3ad9b6e57b223ee382c2dcf
a08a97e327c6d915ce94e2ab9af0ecbcddb14979
/src/WanStemCellCycleModel.hpp
e2e3477c0817d4ee6b2be65d6e17924a3ed3ff8c
[]
no_license
mmattocks/SMME
b415920bde3c4809bda20e394b50573dbe017f09
ae3f1284efde9756c8856fa81fc255745df427b2
refs/heads/master
2022-03-11T10:54:37.404353
2022-02-20T04:28:27
2022-02-20T04:28:27
148,137,706
0
0
null
null
null
null
UTF-8
C++
false
false
6,743
hpp
WanStemCellCycleModel.hpp
#ifndef WANSTEMCELLCYCLEMODEL_HPP_ #define WANSTEMCELLCYCLEMODEL_HPP_ #include "AbstractCellPopulation.hpp" #include "AbstractSimpleCellCycleModel.hpp" #include "RandomNumberGenerator.hpp" #include "Cell.hpp" #include "StemCellProliferativeType.hpp" #include "SmartPointers.hpp" #include "ColumnDataWriter.hpp" #include "LogFile.hpp" #include "HeCellCycleModel.hpp" /*********************************** * WAN STEM CELL CYCLE MODEL * A simple model standing in for the CMZ "stem cells" described in' * Wan et al. 2016 [Wan2016] * * USE: By default, WanStemCellCycleModels consistently divide asymmetrically. * InitialiseDaughterCell() marks offspring for RPC fate * So-marked cells are given HeCellCycleModels for their next division. * * Change default model parameters with SetModelParameters(<params>); * * 2 per-model-event output modes: * EnableModeEventOutput() enables mitotic mode event logging-all cells will write to the singleton log file * EnableModelDebugOutput() enables more detailed debug output, each seed will have its own file written to * by a ColumnDataWriter passed to it from the test * (eg. by the SetupDebugOutput helper function in the project simulator) * * 1 mitotic-event-sequence sampler (only samples one "path" through the lineage): * EnableSequenceSampler() - one "sequence" of progenitors writes mitotic event type to a string in the singleton log file * ************************************/ class WanStemCellCycleModel : public AbstractSimpleCellCycleModel { friend class TestSimpleCellCycleModels; private: /** Needed for serialization. */ friend class boost::serialization::access; /** * Archive the cell-cycle model and random number generator, never used directly - boost uses this. * * @param archive the archive * @param version the current version of this class */ template<class Archive> void serialize(Archive & archive, const unsigned int version) { archive & boost::serialization::base_object<AbstractSimpleCellCycleModel>(*this); SerializableSingleton<RandomNumberGenerator>* p_wrapper = RandomNumberGenerator::Instance()->GetSerializationWrapper(); archive & p_wrapper; archive & mCellCycleDuration; } //Private write functions for models void WriteModeEventOutput(); void WriteDebugData(); protected: //mode/output variables bool mExpandingStemPopulation; boost::shared_ptr<AbstractCellPopulation<2>> mPopulation; bool mOutput; double mEventStartTime; //debug writer stuff bool mDebug; int mTimeID; std::vector<int> mVarIDs; boost::shared_ptr<ColumnDataWriter> mDebugWriter; //model parameters and state memory vars int mBasePopulation; double mGammaShift; double mGammaShape; double mGammaScale; unsigned mMitoticMode; unsigned mSeed; bool mTimeDependentCycleDuration; double mPeakRateTime; double mIncreasingRateSlope; double mDecreasingRateSlope; double mBaseGammaScale; std::vector<double> mHeParamVector; /** * Protected copy-constructor for use by CreateCellCycleModel(). * * The only way for external code to create a copy of a cell cycle model * is by calling that method, to ensure that a model of the correct subclass is created. * This copy-constructor helps subclasses to ensure that all member variables are correctly copied when this happens. * * This method is called by child classes to set member variables for a daughter cell upon cell division. * Note that the parent cell cycle model will have had ResetForDivision() called just before CreateCellCycleModel() is called, * so performing an exact copy of the parent is suitable behaviour. Any daughter-cell-specific initialisation * can be done in InitialiseDaughterCell(). * * @param rModel the cell cycle model to copy. */ WanStemCellCycleModel(const WanStemCellCycleModel& rModel); public: /** * Constructor - just a default, mBirthTime is set in the AbstractCellCycleModel class. */ WanStemCellCycleModel(); /** * SetCellCycleDuration() method to set length of cell cycle */ void SetCellCycleDuration(); /**pro * Overridden builder method to create new copies of * this cell-cycle model. * * @return new cell-cycle model */ AbstractCellCycleModel* CreateCellCycleModel(); /** * Overridden ResetForDivision() method. **/ void ResetForDivision(); /** * Overridden Initialise() method. * Sets proliferative type as stem cell **/ void Initialise(); /** * Overridden InitialiseDaughterCell() method. * Used to implement asymmetric mitotic mode * Daughter cells are initialised w/ He cell cycle model * */ void InitialiseDaughterCell(); /*Model setup functions for standard He (SetModelParameters) and deterministic alternative (SetDeterministicMode) models * Default parameters are from refits of He et al + deterministic alternatives * He 2012 params: mitoticModePhase2 = 8, mitoticModePhase3 = 15, p1PP = 1, p1PD = 0, p2PP = .2, p2PD = .4, p3PP = .2, p3PD = 0 * gammaShift = 4, gammaShape = 2, gammaScale = 1, sisterShift = 1 */ void SetModelParameters(double gammaShift = 4, double gammaShape = 2, double gammaScale = 1, std::vector<double> heParamVector = { 8, 15, 1, 0, .2, .4, .2, 0, 4, 2, 1, 1 }); void EnableExpandingStemPopulation(int basePopulation, boost::shared_ptr<AbstractCellPopulation<2>> p_population); void SetTimeDependentCycleDuration(double peakRateTime, double increasingSlope, double decreasingSlope); //Functions to enable per-cell mitotic mode logging for mode rate & sequence sampling fixtures //Uses singleton logfile void EnableModeEventOutput(double eventStart, unsigned seed); //More detailed debug output. Needs a ColumnDataWriter passed to it //Only declare ColumnDataWriter directory, filename, etc; do not set up otherwise void EnableModelDebugOutput(boost::shared_ptr<ColumnDataWriter> debugWriter); //Not used, but must be overwritten lest WanStemCellCycleModels be abstract double GetAverageTransitCellCycleTime(); double GetAverageStemCellCycleTime(); /** * Overridden OutputCellCycleModelParameters() method. * * @param rParamsFile the file stream to which the parameters are output */ virtual void OutputCellCycleModelParameters(out_stream& rParamsFile); }; #include "SerializationExportWrapper.hpp" // Declare identifier for the serializer CHASTE_CLASS_EXPORT(WanStemCellCycleModel) #endif /*WANSTEMCELLCYCLEMODEL_HPP_*/
549ba67bdb6bd72eed55b502c578bba7f0c14c09
0674e81a160161996251fb4b063c801330ccd1e2
/codeforces/ABBYY cup 3.0/C2.cpp
e1934988483525338d54652c23b6fd718d6ed955
[]
no_license
joshuabezaleel/cp
8a2c9b44605810da4367efeb981f822ae5e1e9a2
57f365458cca38c3c0fb1f5af1c6b44b74f3b53e
refs/heads/master
2022-07-19T00:39:34.395495
2020-05-23T20:37:20
2020-05-23T20:37:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,372
cpp
C2.cpp
#include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <stack> #include <algorithm> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cstring> #include <cmath> #include <cstdlib> #include <ctime> #include <cassert> using namespace std; #ifdef DEBUG #define debug(...) printf(__VA_ARGS__) #define GetTime() printf("Running time: %.3lf second\n",((double)clock())/CLOCKS_PER_SEC) #else #define debug(...) #define GetTime() #endif //type definitions typedef long long ll; typedef double db; typedef pair<int,int> pii; //abbreviations #define A first #define B second #define MP make_pair #define PB push_back #define LLD "%I64d" //macros #define REP(i,n) for (int i = 0; i < (n); ++i) #define REPD(i,n) for (int i = (n)-1; 0 <= i; --i) #define FOR(i,a,b) for (int i = (a); i <= (b); ++i) #define FORD(i,a,b) for (int i = (a); (b) <= i; --i) #define FORIT(it,c) for (__typeof ((c).begin()) it = (c).begin(); it != (c).end(); it++) #define ALL(a) (a).begin(),(a).end() #define SZ(a) ((int)(a).size()) #define RESET(a,x) memset(a,x,sizeof(a)) #define EXIST(a,s) ((s).find(a) != (s).end()) #define MX(a,b) a = max((a),(b)); #define MN(a,b) a = min((a),(b)); /* -------------- end of azaky's template -------------- */ #define INF 1000000 int dp[82][82][82][82], a[82][82]; int n, m; int r1,r2,c1,c2,k; int main(){ scanf("%d%d",&n,&m); FOR(i,1,n) FOR(j,1,m) scanf("%d",&a[i][j]); FOR(sr,1,n) FOR(sc,1,m){ if ((sr*sc)%2) continue; for (r1=1,r2=sr; r2 <= n; r1++,r2++){ for(c1=1,c2=sc; c2 <= m; c1++,c2++){ if (sr*sc == 2) dp[r1][c1][r2][c2] = (a[r1][c1] == a[r2][c2]) ? 0 : 1; else { dp[r1][c1][r2][c2] = INF; if (sc%2){for(k=r1+1;k<r2;k+=2) MN(dp[r1][c1][r2][c2],dp[r1][c1][k][c2]+dp[k+1][c1][r2][c2]);} else for(k=r1;k<r2;++k) MN(dp[r1][c1][r2][c2],dp[r1][c1][k][c2]+dp[k+1][c1][r2][c2]); if (sr%2){for(k=c1+1;k<c2;k+=2) MN(dp[r1][c1][r2][c2],dp[r1][c1][r2][k]+dp[r1][k+1][r2][c2]);} else for(k=c1;k<c2;++k) MN(dp[r1][c1][r2][c2],dp[r1][c1][r2][k]+dp[r1][k+1][r2][c2]); assert(dp[r1][c1][r2][c2] != INF); } // printf("dp[%d][%d][%d][%d] = %d\n",r1,c1,r2,c2,dp[r1][c1][r2][c2]); } } } printf("%d\n",dp[1][1][n][m]); return 0; }
d81e60e6526f5c055b312b43846fa07a00f790eb
526824bfb1341e62b53bc280f7dd85042efce915
/test1/dice.h
5986fa54ba1a5b379a8b12f649ee42ab0b133fae
[]
no_license
improvshark/diceRoller
a3f87c1929b54c9ae427d15c25c1253491b8a690
0bcb62709109d34755daea50f5a2ccb1d099025c
refs/heads/master
2021-01-16T00:27:45.354491
2013-08-29T16:44:02
2013-08-29T16:44:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
357
h
dice.h
#ifndef DICE_H #define DICE_H #include <gtkmm/hvbox.h> #include <gtkmm/grid.h> #include "die.h" #include <gtkmm/textview.h> class Dice : public Gtk::HBox { private: Die m_d3; Die m_d4; Die m_d6; Die m_d8; Die m_d10; Die m_d20; Die m_d100; Gtk::TextBuffer *m_refTextBuffer; public: Dice(); void set_buffer(Gtk::TextBuffer*); }; #endif
f053a9c747410dd42d8dcbd2ddc9ed6e8b711995
9d164088aa2d5a65215b77186c45da093ad68cb1
/src/CGnuPlotContour.h
404f5a5d0aaf8c714be35278239862e49be06e77
[ "MIT" ]
permissive
colinw7/CQGnuPlot
9c247a7ff8afd0060fd99d7f4c12d4f105dfc9d9
c12ad292932a2116ab7fbb33be158adcf6c32674
refs/heads/master
2023-04-14T07:29:43.807602
2023-04-03T15:59:36
2023-04-03T15:59:36
26,377,931
0
1
null
null
null
null
UTF-8
C++
false
false
2,718
h
CGnuPlotContour.h
#ifndef CGnuPlotContour_H #define CGnuPlotContour_H #include <CRGBA.h> #include <COptVal.h> #include <CLine3D.h> #include <CAlignType.h> #include <vector> #include <map> #include <CGnuPlotContourData.h> class CGnuPlot; class CGnuPlotPlot; class CGnuPlotRenderer; class CGnuPlotContour { public: typedef std::vector<double> Reals; typedef std::vector<CLine3D> Lines; typedef std::map<int,Lines> LevelLines; typedef std::vector<CPoint3D> Points; typedef std::vector<Points> Paths; typedef CGnuPlotContourData::DrawPos DrawPos; typedef std::pair<CHAlignType,double> HAlignPos; typedef std::pair<CVAlignType,double> VAlignPos; struct LevelData { double level; CRGBA c; LevelData(double level1, const CRGBA &c1) : level(level1), c(c1) { } }; public: CGnuPlotContour(CGnuPlotPlot *plot); CGnuPlot *app() const; CGnuPlotPlot *plot() const { return plot_; } bool solid() const { return solid_; } void setSolid(bool b) { solid_ = b; } const std::string &palette() const { return palette_; } void setPalette(const std::string &v) { palette_ = v; } void reset(); void setData(double *x, double *y, double *z, double *c, int no_x, int no_y, bool has_c); int nx() const { return int(x_.size()); } int ny() const { return int(y_.size()); } double x(int i) const { return x_[i]; } double y(int j) const { return y_[j]; } double z(int i, int j) const { return z_[j*x_.size() + i]; } double c(int i, int j) const { return c_[j*x_.size() + i]; } void setContourLevels(const std::vector<double> &levels); void drawContour(CGnuPlotRenderer *renderer); void getLevelData(std::vector<LevelData> &levelDatas) const; const LevelLines &levelLines() const { return llines_; } CRGBA levelColor(int level) const; double levelValue(int l) const; private: void drawContourLines(CGnuPlotRenderer *renderer); void drawContourSolid(CGnuPlotRenderer *renderer); void calcContourLines(); void getLevels(std::vector<double> &levels) const; void initLevels() const; void fillContourBox(CGnuPlotRenderer *renderer, double, double, double, double, double, double, double, double, const std::vector<double> &); static void getPaths(const Lines &lines, Paths &path); private: CGnuPlotPlot* plot_ { 0 }; bool solid_ { false }; Reals x_, y_, z_, c_; Reals levels_; COptReal xmin_, ymin_, zmin_, cmin_; COptReal xmax_, ymax_, zmax_, cmax_; double min_x_ { 0 }, min_y_ { 0 }, min_z_ { 0 }; DrawPos pos_ { DrawPos::BASE }; LevelLines llines_; std::string palette_ { "subtle" }; }; #endif
5cb2807b257363a92636e699f1ef5df1a8aaef6a
a3878da41a87a3640ace3f2d3e98cfb197ea3b41
/Cylinder.cpp
ec50a9b84ab9e616cdca20f559e3a084805c84c4
[]
no_license
moustafa-mk/Shapes-calc
0b2e598a9c39a102d0e94b2daca12a4ddc22dbe3
b816de8f68f723a4ac05d22ca623d68c087c0f7a
refs/heads/master
2020-04-04T08:03:57.203373
2018-11-01T20:16:11
2018-11-01T20:16:11
155,770,008
0
0
null
null
null
null
UTF-8
C++
false
false
325
cpp
Cylinder.cpp
#include "Cylinder.h" Cylinder::Cylinder() { radius = 0; height = 0; } Cylinder::Cylinder(double r, double h) { radius = r; height = h; } double Cylinder::volume(){ return 3.14 * radius * radius * height; } double Cylinder::surfaceArea(){ return 4 * 3.14 * radius * height; }
c4c6eeeaecff100f11bc68f47c427bb9f79e5859
13f2c704b386a8507f43a6fab34b3aefcf9311c8
/movie_project/movie_project.cpp
4450daf934b1dbd373b550b42e6a2481da21244d
[]
no_license
boldijar/mvc-movie-console-app
3b96439e41a85cd549ca9f74527c5a26b13aa2a4
7fb4287c7c94e238d1105eef870168e62a2fa6e8
refs/heads/master
2021-06-01T06:24:02.551250
2016-05-08T22:47:49
2016-05-08T22:47:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
459
cpp
movie_project.cpp
// movie_project.cpp : Defines the entry point for the console application. // #include <fstream> #include "MoviesFileRepository.h" #include <algorithm> #include "TestApp.h" #include "ViewConsole.h" using namespace std; int main() { TestApp test; //test.runAll(); MoviesFileRepository repo = MoviesFileRepository(); Controller controller = Controller(repo); ViewConsole viewConsole(controller); viewConsole.start(); system("PAUSE"); return 0; }
ee9b60d53ef921dc48075272c63772907ba0eb8e
733828a444a05d99d2f215aa25ad50016aa88c20
/61-A.cpp
ed9a5ae9114d772414672a1ec24d176a6ac62fa8
[]
no_license
razoltheren/codeforces
0cf2f72a015b340fc49d39b8b13cc0563199110f
ecf1744f998f3f9de75533c45df4a9f260789f84
refs/heads/master
2023-02-07T02:36:54.118045
2020-12-27T09:36:21
2020-12-27T09:36:21
268,250,672
0
0
null
null
null
null
UTF-8
C++
false
false
344
cpp
61-A.cpp
#include <iostream> using namespace std; int main(int argc, char const *argv[]) { int x[100]; string a,b; cin>>a>>b; int k=a.length(); for(int i=0;i<k;i++) { if(a[i]!=b[i]) { x[i]=1; } else{ x[i]=0; } } for(int i=0;i<k;i++) { cout<<x[i]; } return 0; }
93b98aebcc3d55dc70106456d23cadb237c7e391
df790a3d2250c270e74b85de7829e6af54314d81
/bubsort.cpp
cd1ea643f8c303405d39da663fcebf887dba944d
[]
no_license
shiks25/1BM18CS149-ADA
38804b0309427e687853423931207cad3b7841ac
1bf815eb15c5cc952f46156e57867d0bae3b26b5
refs/heads/master
2020-12-23T12:43:15.219679
2020-05-02T14:30:42
2020-05-02T14:30:42
237,156,093
0
1
null
null
null
null
UTF-8
C++
false
false
1,259
cpp
bubsort.cpp
/*Sort a given set of N integer elements using Bubble Sort technique and compute its time taken. Run the program for different values of N and record the time taken to sort.*/ #include <bits/stdc++.h> using namespace std; void bubblesort(int arr[],int n) { int temp; for(int i=0;i<n;i++) { for(int j=0;j<n-i-1;j++) { if(arr[j]>arr[j+1]) { temp=arr[j]; arr[j]=arr[j+1]; arr[j+1]=temp; } } } for(int i=0;i<n;i++) cout<<arr[i]<<" "; } int main() { int n,ch; clock_t start, end; ; cout<<"Enter number of elements in the array"<<endl; cin>>n; int arr[n]; cout<<"Enter the elements"<<endl; for(int i=0;i<n;i++) cin>>arr[i]; start = clock(); bubblesort(arr,n); end = clock(); double time_taken = double(end - start) / double(CLOCKS_PER_SEC); cout << "Time taken by this program is : " << fixed << time_taken << setprecision(6); cout << " sec " << endl; return 0; } /* OUTPUT: run1: Enter number of elements in the array 4 Enter the elements 30 -50 7 9 -50 7 9 30 Time taken by this program is : 0.000016 sec run2: Enter number of elements in the array 10 Enter the elements 23 -9 -90 35 6 2 0 3 1 8 -90 -9 0 1 2 3 6 8 23 35 Time taken by this program is : 0.000017 sec */
5c08e70db25d08a8bf28e370bd65d7ef02f6b3b7
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/chromeos/ash/components/network/network_state_test_helper.h
67c0e98a6452ce468f75a6c6742463a2b66e7366
[ "BSD-3-Clause" ]
permissive
chromium/chromium
aaa9eda10115b50b0616d2f1aed5ef35d1d779d6
a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c
refs/heads/main
2023-08-24T00:35:12.585945
2023-08-23T22:01:11
2023-08-23T22:01:11
120,360,765
17,408
7,102
BSD-3-Clause
2023-09-10T23:44:27
2018-02-05T20:55:32
null
UTF-8
C++
false
false
2,210
h
network_state_test_helper.h
// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROMEOS_ASH_COMPONENTS_NETWORK_NETWORK_STATE_TEST_HELPER_H_ #define CHROMEOS_ASH_COMPONENTS_NETWORK_NETWORK_STATE_TEST_HELPER_H_ #include "chromeos/ash/components/network/network_test_helper_base.h" namespace ash { class NetworkDeviceHandler; class NetworkStateHandler; class TechnologyStateController; // Helper class for tests that use NetworkStateHandler and/or // NetworkDeviceHandler. Handles initialization and shutdown of Shill and Hermes // DBus clients and handler classes and instantiates NetworkStateHandler and // NetworkDeviceHandler instances. // // NOTE: This is not intended to be used with NetworkHandler::Initialize() // which constructs its own NetworkStateHandler instance. When testing code that // accesses NetworkHandler::Get() use NetworkTestHelper directly. // // TODO(khorimoto): Rename this class since it now deals with more than just // NetworkStates. class NetworkStateTestHelper : public NetworkTestHelperBase { public: // If |use_default_devices_and_services| is false, the default devices and // services setup by the fake Shill handlers will be removed. explicit NetworkStateTestHelper(bool use_default_devices_and_services); ~NetworkStateTestHelper(); // Calls ShillDeviceClient::TestInterface::AddDevice and sets update_received // on the DeviceState. void AddDevice(const std::string& device_path, const std::string& type, const std::string& name); NetworkStateHandler* network_state_handler() { return network_state_handler_.get(); } NetworkDeviceHandler* network_device_handler() { return network_device_handler_.get(); } TechnologyStateController* technology_state_controller() { return technology_state_controller_.get(); } private: std::unique_ptr<NetworkStateHandler> network_state_handler_; std::unique_ptr<NetworkDeviceHandler> network_device_handler_; std::unique_ptr<TechnologyStateController> technology_state_controller_; }; } // namespace ash #endif // CHROMEOS_ASH_COMPONENTS_NETWORK_NETWORK_STATE_TEST_HELPER_H_
b9805fd0ac5a4b6158a096bae4283b2e896ec184
87f4cac7090ef2b71af287f02a1d3519bca0cbfd
/src/waylandintegration.h
1982ac108a1bf2b09ab88f8518cdc6640c83189f
[]
no_license
KDE/xdg-desktop-portal-kde
58241c227539c4b2ac686d5c54517c4fcd385582
0a4237549debf9518f8cfbaf531456850c0729bd
refs/heads/master
2023-09-01T15:51:53.597549
2023-08-31T19:58:12
2023-08-31T20:09:38
81,065,519
43
11
null
null
null
null
UTF-8
C++
false
false
2,704
h
waylandintegration.h
/* * SPDX-FileCopyrightText: 2018 Red Hat Inc * * SPDX-License-Identifier: LGPL-2.0-or-later * * SPDX-FileCopyrightText: 2018 Jan Grulich <jgrulich@redhat.com> */ #ifndef XDG_DESKTOP_PORTAL_KDE_WAYLAND_INTEGRATION_H #define XDG_DESKTOP_PORTAL_KDE_WAYLAND_INTEGRATION_H #include <QDBusArgument> #include <QObject> #include <QPoint> #include <QScreen> #include <QSize> #include <QVariant> #include <KWayland/Client/output.h> #include <screencasting.h> namespace KWayland { namespace Client { class PlasmaWindowManagement; class ScreencastingSource; } } class QWindow; namespace WaylandIntegration { struct Stream { ScreencastingStream *stream = nullptr; uint nodeId; QVariantMap map; bool isValid() const { return stream != nullptr; } void close(); }; typedef QVector<Stream> Streams; class WaylandIntegration : public QObject { Q_OBJECT Q_SIGNALS: void newBuffer(uint8_t *screenData); void plasmaWindowManagementInitialized(); }; bool isStreamingEnabled(); bool isStreamingAvailable(); void acquireStreamingInput(bool acquire); Stream startStreamingOutput(QScreen *screen, Screencasting::CursorMode mode); Stream startStreamingWorkspace(Screencasting::CursorMode mode); Stream startStreamingVirtual(const QString &name, const QSize &size, Screencasting::CursorMode mode); Stream startStreamingWindow(const QMap<int, QVariant> &win, Screencasting::CursorMode mode); Stream startStreamingRegion(const QRect &region, Screencasting::CursorMode mode); void stopStreaming(uint node); void requestPointerButtonPress(quint32 linuxButton); void requestPointerButtonRelease(quint32 linuxButton); void requestPointerMotion(const QSizeF &delta); void requestPointerMotionAbsolute(uint stream, const QPointF &pos); void requestPointerAxis(qreal x, qreal y); void requestPointerAxisDiscrete(Qt::Orientation axis, qreal delta); void requestKeyboardKeycode(int keycode, bool state); void requestKeyboardKeysym(int keysym, bool state); void requestTouchDown(quint32 touchPoint, const QPointF &pos); void requestTouchMotion(quint32 touchPoint, const QPointF &pos); void requestTouchUp(quint32 touchPoint); void setParentWindow(QWindow *window, const QString &parentWindow); void init(); KWayland::Client::PlasmaWindowManagement *plasmaWindowManagement(); WaylandIntegration *waylandIntegration(); QDebug operator<<(QDebug dbg, const Stream &c); const QDBusArgument &operator<<(QDBusArgument &arg, const Stream &stream); const QDBusArgument &operator>>(const QDBusArgument &arg, Stream &stream); } Q_DECLARE_METATYPE(WaylandIntegration::Stream) Q_DECLARE_METATYPE(WaylandIntegration::Streams) #endif // XDG_DESKTOP_PORTAL_KDE_WAYLAND_INTEGRATION_H
8e8e2e15bfff0c11dc075800f6e31e1a7d16ae72
adc45392939a52bb3133b8e7055efa00d399fbd6
/lab3/node.h
daa3345ca20231909fc86a681c3a9b9092d1923b
[]
no_license
YanzheL/hit-compiler-lab
9aa6dfc5f26fddfebc3bfcd04b4c1a2570b9c2aa
7bc47d8829e5882b3eac061de15584c0e4f0fe0b
refs/heads/master
2020-05-24T06:56:14.344666
2020-05-17T17:54:46
2020-05-17T17:54:46
187,149,599
0
0
null
null
null
null
UTF-8
C++
false
false
3,325
h
node.h
// ======================================================================= // Copyright (c) 2016-2020 by LI YANZHE. All rights reserved. // Author: LI YANZHE <lee.yanzhe@yanzhe.org> // Created by LI YANZHE on 5/16/19. // ======================================================================= #ifndef LAB2_NODE_H #define LAB2_NODE_H #include <string> #include <vector> #include <sstream> #include "util.h" /** * 表达式类型 */ class NExpr : public Serializable { public: std::string ToString() override { return {}; }; }; /** * 标识符类型 */ class NIdentifier : public NExpr { public: explicit NIdentifier(std::string &name) : name(std::move(name)) {} public: std::string name; std::string ToString() override { return name; } }; /** * 常整数类型 */ class NConstInteger : public NExpr { public: long long value; explicit NConstInteger(long long value) : value(value) {} std::string ToString() override { return std::to_string(value); } }; /** * 二元算术运算语句类型 */ class NBinaryArithOpExpr : public NExpr { public: std::string op; NExpr &lhs; NExpr &rhs; NBinaryArithOpExpr(NExpr &lhs, std::string op, NExpr &rhs) : lhs(lhs), rhs(rhs), op(op) {} std::string ToString() override { std::stringstream ss; ss << lhs.ToString() << " " << op << " " << rhs.ToString(); return ss.str(); } }; /** * 可执行语句类型 */ class NExecStmt : public Serializable { public: std::vector<int> nextlist; std::string ToString() override { return {}; }; }; /** * 二元逻辑表达式 */ class NBinaryLogicExpr : public NExpr { public: std::vector<int> truelist; std::vector<int> falselist; std::string op; NExpr &lhs; NExpr &rhs; NBinaryLogicExpr(NExpr &lhs, std::string op, NExpr &rhs) : lhs(lhs), rhs(rhs), op(op) {} std::string ToString() override { std::stringstream ss; ss << lhs.ToString() << " " << op << " " << rhs.ToString(); return ss.str(); } }; /** * 赋值语句类型 */ class NAssignStmt : public NExecStmt { public: NIdentifier &lhs; NExpr &rhs; NAssignStmt(NIdentifier &lhs, NExpr &rhs) : lhs(lhs), rhs(rhs) {} }; /** * 声明语句类型 */ class NDeclStmt : public Serializable { public: NDeclStmt(const NIdentifier &type, NIdentifier &id) : type(type), id(id) {} std::string ToString() override { return {}; }; public: const NIdentifier &type; NIdentifier &id; }; /** * IF语句类型 */ class NIfStmt : public NExecStmt { public: explicit NIfStmt(NBinaryLogicExpr &condition, NExecStmt &s1) : condition(condition), s1(s1), s2(nullptr) {} public: NExecStmt &s1; NExecStmt *s2; NBinaryLogicExpr &condition; }; /** * WHILE语句类型 */ class NWhileStmt : public NExecStmt { public: explicit NWhileStmt(NBinaryLogicExpr &condition, NExecStmt &s) : condition(condition), s(s) {} public: NBinaryLogicExpr &condition; NExecStmt &s; }; /** * 代表整个程序 */ class NProgram { public: NProgram(std::vector<NDeclStmt *> &declStmts, std::vector<NExecStmt *> &execStmts) : declStmts(declStmts), execStmts(execStmts) {} public: std::vector<NDeclStmt *> &declStmts; std::vector<NExecStmt *> &execStmts; }; #endif //LAB2_NODE_H
8e2819af08c335de58f0473dfc85e90d73b8dfba
bab45d092ab55c890f3e76e1cee28ab4442fc286
/SO2/projekt/include/App.hpp
d4b76a291d9ae2b5dd999ebe37b7076b66d0a109
[]
no_license
GrimReaperPL/PwrWekaInf
a798011b4c1bbfc36a272b12fd9a8ff4829c1be1
88aa6d38f91b1f6c0a155dc7f4f86efa69c09c17
refs/heads/master
2021-01-10T17:41:08.547860
2018-05-29T15:39:01
2018-05-29T15:39:01
36,255,701
0
0
null
null
null
null
UTF-8
C++
false
false
590
hpp
App.hpp
#pragma once #include <SDL2/SDL.h> #include <SDL2/SDL_image.h> #include <SDL2/SDL_mixer.h> #include <iostream> #include <string> #include <memory> #include "Timer.hpp" #include "Screen.hpp" class App { public: App(unsigned int width, unsigned int height, unsigned int customers); ~App(); int run(); private: bool init(); void cleanUp(); void render(); unsigned int m_width; unsigned int m_height; SDL_Window *m_window; SDL_Renderer *m_renderer; bool m_shutdown; std::unique_ptr<Screen> m_screen; Mix_Music *m_music; unsigned int m_customers; Mix_Chunk *m_ching; };
7a208fc92606761bbe074be93dce4c04735c2c95
76ca52991ca1a1e50d066e9f7c4827b6a4453414
/cmds/statsd/tests/statsd_test_util.cpp
2c4f3c7692c904cbb28e926d3416c9ab67d231e6
[ "Apache-2.0", "LicenseRef-scancode-unicode" ]
permissive
ResurrectionRemix/android_frameworks_base
3126048967fa5f14760664bea8002e7911da206a
5e1db0334755ba47245d69857a17f84503f7ce6f
refs/heads/Q
2023-02-17T11:50:11.652564
2021-09-19T11:36:09
2021-09-19T11:36:09
17,213,932
169
1,154
Apache-2.0
2023-02-11T12:45:31
2014-02-26T14:52:44
Java
UTF-8
C++
false
false
34,786
cpp
statsd_test_util.cpp
// Copyright (C) 2017 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "statsd_test_util.h" namespace android { namespace os { namespace statsd { AtomMatcher CreateSimpleAtomMatcher(const string& name, int atomId) { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId(name)); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(atomId); return atom_matcher; } AtomMatcher CreateTemperatureAtomMatcher() { return CreateSimpleAtomMatcher("TemperatureMatcher", android::util::TEMPERATURE); } AtomMatcher CreateScheduledJobStateChangedAtomMatcher(const string& name, ScheduledJobStateChanged::State state) { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId(name)); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::SCHEDULED_JOB_STATE_CHANGED); auto field_value_matcher = simple_atom_matcher->add_field_value_matcher(); field_value_matcher->set_field(3); // State field. field_value_matcher->set_eq_int(state); return atom_matcher; } AtomMatcher CreateStartScheduledJobAtomMatcher() { return CreateScheduledJobStateChangedAtomMatcher("ScheduledJobStart", ScheduledJobStateChanged::STARTED); } AtomMatcher CreateFinishScheduledJobAtomMatcher() { return CreateScheduledJobStateChangedAtomMatcher("ScheduledJobFinish", ScheduledJobStateChanged::FINISHED); } AtomMatcher CreateScreenBrightnessChangedAtomMatcher() { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId("ScreenBrightnessChanged")); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::SCREEN_BRIGHTNESS_CHANGED); return atom_matcher; } AtomMatcher CreateUidProcessStateChangedAtomMatcher() { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId("UidProcessStateChanged")); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::UID_PROCESS_STATE_CHANGED); return atom_matcher; } AtomMatcher CreateWakelockStateChangedAtomMatcher(const string& name, WakelockStateChanged::State state) { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId(name)); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::WAKELOCK_STATE_CHANGED); auto field_value_matcher = simple_atom_matcher->add_field_value_matcher(); field_value_matcher->set_field(4); // State field. field_value_matcher->set_eq_int(state); return atom_matcher; } AtomMatcher CreateAcquireWakelockAtomMatcher() { return CreateWakelockStateChangedAtomMatcher("AcquireWakelock", WakelockStateChanged::ACQUIRE); } AtomMatcher CreateReleaseWakelockAtomMatcher() { return CreateWakelockStateChangedAtomMatcher("ReleaseWakelock", WakelockStateChanged::RELEASE); } AtomMatcher CreateBatterySaverModeStateChangedAtomMatcher( const string& name, BatterySaverModeStateChanged::State state) { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId(name)); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::BATTERY_SAVER_MODE_STATE_CHANGED); auto field_value_matcher = simple_atom_matcher->add_field_value_matcher(); field_value_matcher->set_field(1); // State field. field_value_matcher->set_eq_int(state); return atom_matcher; } AtomMatcher CreateBatterySaverModeStartAtomMatcher() { return CreateBatterySaverModeStateChangedAtomMatcher( "BatterySaverModeStart", BatterySaverModeStateChanged::ON); } AtomMatcher CreateBatterySaverModeStopAtomMatcher() { return CreateBatterySaverModeStateChangedAtomMatcher( "BatterySaverModeStop", BatterySaverModeStateChanged::OFF); } AtomMatcher CreateScreenStateChangedAtomMatcher( const string& name, android::view::DisplayStateEnum state) { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId(name)); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::SCREEN_STATE_CHANGED); auto field_value_matcher = simple_atom_matcher->add_field_value_matcher(); field_value_matcher->set_field(1); // State field. field_value_matcher->set_eq_int(state); return atom_matcher; } AtomMatcher CreateScreenTurnedOnAtomMatcher() { return CreateScreenStateChangedAtomMatcher("ScreenTurnedOn", android::view::DisplayStateEnum::DISPLAY_STATE_ON); } AtomMatcher CreateScreenTurnedOffAtomMatcher() { return CreateScreenStateChangedAtomMatcher("ScreenTurnedOff", ::android::view::DisplayStateEnum::DISPLAY_STATE_OFF); } AtomMatcher CreateSyncStateChangedAtomMatcher( const string& name, SyncStateChanged::State state) { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId(name)); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::SYNC_STATE_CHANGED); auto field_value_matcher = simple_atom_matcher->add_field_value_matcher(); field_value_matcher->set_field(3); // State field. field_value_matcher->set_eq_int(state); return atom_matcher; } AtomMatcher CreateSyncStartAtomMatcher() { return CreateSyncStateChangedAtomMatcher("SyncStart", SyncStateChanged::ON); } AtomMatcher CreateSyncEndAtomMatcher() { return CreateSyncStateChangedAtomMatcher("SyncEnd", SyncStateChanged::OFF); } AtomMatcher CreateActivityForegroundStateChangedAtomMatcher( const string& name, ActivityForegroundStateChanged::State state) { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId(name)); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::ACTIVITY_FOREGROUND_STATE_CHANGED); auto field_value_matcher = simple_atom_matcher->add_field_value_matcher(); field_value_matcher->set_field(4); // Activity field. field_value_matcher->set_eq_int(state); return atom_matcher; } AtomMatcher CreateMoveToBackgroundAtomMatcher() { return CreateActivityForegroundStateChangedAtomMatcher( "Background", ActivityForegroundStateChanged::BACKGROUND); } AtomMatcher CreateMoveToForegroundAtomMatcher() { return CreateActivityForegroundStateChangedAtomMatcher( "Foreground", ActivityForegroundStateChanged::FOREGROUND); } AtomMatcher CreateProcessLifeCycleStateChangedAtomMatcher( const string& name, ProcessLifeCycleStateChanged::State state) { AtomMatcher atom_matcher; atom_matcher.set_id(StringToId(name)); auto simple_atom_matcher = atom_matcher.mutable_simple_atom_matcher(); simple_atom_matcher->set_atom_id(android::util::PROCESS_LIFE_CYCLE_STATE_CHANGED); auto field_value_matcher = simple_atom_matcher->add_field_value_matcher(); field_value_matcher->set_field(3); // Process state field. field_value_matcher->set_eq_int(state); return atom_matcher; } AtomMatcher CreateProcessCrashAtomMatcher() { return CreateProcessLifeCycleStateChangedAtomMatcher( "Crashed", ProcessLifeCycleStateChanged::CRASHED); } Predicate CreateScheduledJobPredicate() { Predicate predicate; predicate.set_id(StringToId("ScheduledJobRunningPredicate")); predicate.mutable_simple_predicate()->set_start(StringToId("ScheduledJobStart")); predicate.mutable_simple_predicate()->set_stop(StringToId("ScheduledJobFinish")); return predicate; } Predicate CreateBatterySaverModePredicate() { Predicate predicate; predicate.set_id(StringToId("BatterySaverIsOn")); predicate.mutable_simple_predicate()->set_start(StringToId("BatterySaverModeStart")); predicate.mutable_simple_predicate()->set_stop(StringToId("BatterySaverModeStop")); return predicate; } Predicate CreateScreenIsOnPredicate() { Predicate predicate; predicate.set_id(StringToId("ScreenIsOn")); predicate.mutable_simple_predicate()->set_start(StringToId("ScreenTurnedOn")); predicate.mutable_simple_predicate()->set_stop(StringToId("ScreenTurnedOff")); return predicate; } Predicate CreateScreenIsOffPredicate() { Predicate predicate; predicate.set_id(1111123); predicate.mutable_simple_predicate()->set_start(StringToId("ScreenTurnedOff")); predicate.mutable_simple_predicate()->set_stop(StringToId("ScreenTurnedOn")); return predicate; } Predicate CreateHoldingWakelockPredicate() { Predicate predicate; predicate.set_id(StringToId("HoldingWakelock")); predicate.mutable_simple_predicate()->set_start(StringToId("AcquireWakelock")); predicate.mutable_simple_predicate()->set_stop(StringToId("ReleaseWakelock")); return predicate; } Predicate CreateIsSyncingPredicate() { Predicate predicate; predicate.set_id(33333333333333); predicate.mutable_simple_predicate()->set_start(StringToId("SyncStart")); predicate.mutable_simple_predicate()->set_stop(StringToId("SyncEnd")); return predicate; } Predicate CreateIsInBackgroundPredicate() { Predicate predicate; predicate.set_id(StringToId("IsInBackground")); predicate.mutable_simple_predicate()->set_start(StringToId("Background")); predicate.mutable_simple_predicate()->set_stop(StringToId("Foreground")); return predicate; } void addPredicateToPredicateCombination(const Predicate& predicate, Predicate* combinationPredicate) { combinationPredicate->mutable_combination()->add_predicate(predicate.id()); } FieldMatcher CreateAttributionUidDimensions(const int atomId, const std::vector<Position>& positions) { FieldMatcher dimensions; dimensions.set_field(atomId); for (const auto position : positions) { auto child = dimensions.add_child(); child->set_field(1); child->set_position(position); child->add_child()->set_field(1); } return dimensions; } FieldMatcher CreateAttributionUidAndTagDimensions(const int atomId, const std::vector<Position>& positions) { FieldMatcher dimensions; dimensions.set_field(atomId); for (const auto position : positions) { auto child = dimensions.add_child(); child->set_field(1); child->set_position(position); child->add_child()->set_field(1); child->add_child()->set_field(2); } return dimensions; } FieldMatcher CreateDimensions(const int atomId, const std::vector<int>& fields) { FieldMatcher dimensions; dimensions.set_field(atomId); for (const int field : fields) { dimensions.add_child()->set_field(field); } return dimensions; } std::unique_ptr<LogEvent> CreateScreenStateChangedEvent( const android::view::DisplayStateEnum state, uint64_t timestampNs) { auto event = std::make_unique<LogEvent>(android::util::SCREEN_STATE_CHANGED, timestampNs); EXPECT_TRUE(event->write(state)); event->init(); return event; } std::unique_ptr<LogEvent> CreateBatterySaverOnEvent(uint64_t timestampNs) { auto event = std::make_unique<LogEvent>( android::util::BATTERY_SAVER_MODE_STATE_CHANGED, timestampNs); EXPECT_TRUE(event->write(BatterySaverModeStateChanged::ON)); event->init(); return event; } std::unique_ptr<LogEvent> CreateBatterySaverOffEvent(uint64_t timestampNs) { auto event = std::make_unique<LogEvent>( android::util::BATTERY_SAVER_MODE_STATE_CHANGED, timestampNs); EXPECT_TRUE(event->write(BatterySaverModeStateChanged::OFF)); event->init(); return event; } std::unique_ptr<LogEvent> CreateScreenBrightnessChangedEvent( int level, uint64_t timestampNs) { auto event = std::make_unique<LogEvent>(android::util::SCREEN_BRIGHTNESS_CHANGED, timestampNs); EXPECT_TRUE(event->write(level)); event->init(); return event; } std::unique_ptr<LogEvent> CreateScheduledJobStateChangedEvent( const std::vector<AttributionNodeInternal>& attributions, const string& jobName, const ScheduledJobStateChanged::State state, uint64_t timestampNs) { auto event = std::make_unique<LogEvent>(android::util::SCHEDULED_JOB_STATE_CHANGED, timestampNs); event->write(attributions); event->write(jobName); event->write(state); event->init(); return event; } std::unique_ptr<LogEvent> CreateStartScheduledJobEvent( const std::vector<AttributionNodeInternal>& attributions, const string& name, uint64_t timestampNs) { return CreateScheduledJobStateChangedEvent( attributions, name, ScheduledJobStateChanged::STARTED, timestampNs); } // Create log event when scheduled job finishes. std::unique_ptr<LogEvent> CreateFinishScheduledJobEvent( const std::vector<AttributionNodeInternal>& attributions, const string& name, uint64_t timestampNs) { return CreateScheduledJobStateChangedEvent( attributions, name, ScheduledJobStateChanged::FINISHED, timestampNs); } std::unique_ptr<LogEvent> CreateWakelockStateChangedEvent( const std::vector<AttributionNodeInternal>& attributions, const string& wakelockName, const WakelockStateChanged::State state, uint64_t timestampNs) { auto event = std::make_unique<LogEvent>(android::util::WAKELOCK_STATE_CHANGED, timestampNs); event->write(attributions); event->write(android::os::WakeLockLevelEnum::PARTIAL_WAKE_LOCK); event->write(wakelockName); event->write(state); event->init(); return event; } std::unique_ptr<LogEvent> CreateAcquireWakelockEvent( const std::vector<AttributionNodeInternal>& attributions, const string& wakelockName, uint64_t timestampNs) { return CreateWakelockStateChangedEvent( attributions, wakelockName, WakelockStateChanged::ACQUIRE, timestampNs); } std::unique_ptr<LogEvent> CreateReleaseWakelockEvent( const std::vector<AttributionNodeInternal>& attributions, const string& wakelockName, uint64_t timestampNs) { return CreateWakelockStateChangedEvent( attributions, wakelockName, WakelockStateChanged::RELEASE, timestampNs); } std::unique_ptr<LogEvent> CreateActivityForegroundStateChangedEvent( const int uid, const ActivityForegroundStateChanged::State state, uint64_t timestampNs) { auto event = std::make_unique<LogEvent>( android::util::ACTIVITY_FOREGROUND_STATE_CHANGED, timestampNs); event->write(uid); event->write("pkg_name"); event->write("class_name"); event->write(state); event->init(); return event; } std::unique_ptr<LogEvent> CreateMoveToBackgroundEvent(const int uid, uint64_t timestampNs) { return CreateActivityForegroundStateChangedEvent( uid, ActivityForegroundStateChanged::BACKGROUND, timestampNs); } std::unique_ptr<LogEvent> CreateMoveToForegroundEvent(const int uid, uint64_t timestampNs) { return CreateActivityForegroundStateChangedEvent( uid, ActivityForegroundStateChanged::FOREGROUND, timestampNs); } std::unique_ptr<LogEvent> CreateSyncStateChangedEvent( const std::vector<AttributionNodeInternal>& attributions, const string& name, const SyncStateChanged::State state, uint64_t timestampNs) { auto event = std::make_unique<LogEvent>(android::util::SYNC_STATE_CHANGED, timestampNs); event->write(attributions); event->write(name); event->write(state); event->init(); return event; } std::unique_ptr<LogEvent> CreateSyncStartEvent( const std::vector<AttributionNodeInternal>& attributions, const string& name, uint64_t timestampNs) { return CreateSyncStateChangedEvent(attributions, name, SyncStateChanged::ON, timestampNs); } std::unique_ptr<LogEvent> CreateSyncEndEvent( const std::vector<AttributionNodeInternal>& attributions, const string& name, uint64_t timestampNs) { return CreateSyncStateChangedEvent(attributions, name, SyncStateChanged::OFF, timestampNs); } std::unique_ptr<LogEvent> CreateProcessLifeCycleStateChangedEvent( const int uid, const ProcessLifeCycleStateChanged::State state, uint64_t timestampNs) { auto logEvent = std::make_unique<LogEvent>( android::util::PROCESS_LIFE_CYCLE_STATE_CHANGED, timestampNs); logEvent->write(uid); logEvent->write(""); logEvent->write(state); logEvent->init(); return logEvent; } std::unique_ptr<LogEvent> CreateAppCrashEvent(const int uid, uint64_t timestampNs) { return CreateProcessLifeCycleStateChangedEvent( uid, ProcessLifeCycleStateChanged::CRASHED, timestampNs); } std::unique_ptr<LogEvent> CreateIsolatedUidChangedEvent( int isolatedUid, int hostUid, bool is_create, uint64_t timestampNs) { auto logEvent = std::make_unique<LogEvent>( android::util::ISOLATED_UID_CHANGED, timestampNs); logEvent->write(hostUid); logEvent->write(isolatedUid); logEvent->write(is_create); logEvent->init(); return logEvent; } sp<StatsLogProcessor> CreateStatsLogProcessor(const int64_t timeBaseNs, const int64_t currentTimeNs, const StatsdConfig& config, const ConfigKey& key) { sp<UidMap> uidMap = new UidMap(); sp<StatsPullerManager> pullerManager = new StatsPullerManager(); sp<AlarmMonitor> anomalyAlarmMonitor = new AlarmMonitor(1, [](const sp<IStatsCompanionService>&, int64_t){}, [](const sp<IStatsCompanionService>&){}); sp<AlarmMonitor> periodicAlarmMonitor = new AlarmMonitor(1, [](const sp<IStatsCompanionService>&, int64_t){}, [](const sp<IStatsCompanionService>&){}); sp<StatsLogProcessor> processor = new StatsLogProcessor(uidMap, pullerManager, anomalyAlarmMonitor, periodicAlarmMonitor, timeBaseNs, [](const ConfigKey&) { return true; }, [](const int&, const vector<int64_t>&) {return true;}); processor->OnConfigUpdated(currentTimeNs, key, config); return processor; } AttributionNodeInternal CreateAttribution(const int& uid, const string& tag) { AttributionNodeInternal attribution; attribution.set_uid(uid); attribution.set_tag(tag); return attribution; } void sortLogEventsByTimestamp(std::vector<std::unique_ptr<LogEvent>> *events) { std::sort(events->begin(), events->end(), [](const std::unique_ptr<LogEvent>& a, const std::unique_ptr<LogEvent>& b) { return a->GetElapsedTimestampNs() < b->GetElapsedTimestampNs(); }); } int64_t StringToId(const string& str) { return static_cast<int64_t>(std::hash<std::string>()(str)); } void ValidateAttributionUidDimension(const DimensionsValue& value, int atomId, int uid) { EXPECT_EQ(value.field(), atomId); // Attribution field. EXPECT_EQ(value.value_tuple().dimensions_value(0).field(), 1); // Uid only. EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value_size(), 1); EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value(0).field(), 1); EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value(0).value_int(), uid); } void ValidateUidDimension(const DimensionsValue& value, int atomId, int uid) { EXPECT_EQ(value.field(), atomId); EXPECT_EQ(value.value_tuple().dimensions_value_size(), 1); // Attribution field. EXPECT_EQ(value.value_tuple().dimensions_value(0).field(), 1); // Uid only. EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value_size(), 1); EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value(0).field(), 1); EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value(0).value_int(), uid); } void ValidateUidDimension(const DimensionsValue& value, int node_idx, int atomId, int uid) { EXPECT_EQ(value.field(), atomId); EXPECT_GT(value.value_tuple().dimensions_value_size(), node_idx); // Attribution field. EXPECT_EQ(value.value_tuple().dimensions_value(node_idx).field(), 1); EXPECT_EQ(value.value_tuple().dimensions_value(node_idx) .value_tuple().dimensions_value(0).field(), 1); EXPECT_EQ(value.value_tuple().dimensions_value(node_idx) .value_tuple().dimensions_value(0).value_int(), uid); } void ValidateAttributionUidAndTagDimension( const DimensionsValue& value, int node_idx, int atomId, int uid, const std::string& tag) { EXPECT_EQ(value.field(), atomId); EXPECT_GT(value.value_tuple().dimensions_value_size(), node_idx); // Attribution field. EXPECT_EQ(1, value.value_tuple().dimensions_value(node_idx).field()); // Uid only. EXPECT_EQ(2, value.value_tuple().dimensions_value(node_idx) .value_tuple().dimensions_value_size()); EXPECT_EQ(1, value.value_tuple().dimensions_value(node_idx) .value_tuple().dimensions_value(0).field()); EXPECT_EQ(uid, value.value_tuple().dimensions_value(node_idx) .value_tuple().dimensions_value(0).value_int()); EXPECT_EQ(2, value.value_tuple().dimensions_value(node_idx) .value_tuple().dimensions_value(1).field()); EXPECT_EQ(tag, value.value_tuple().dimensions_value(node_idx) .value_tuple().dimensions_value(1).value_str()); } void ValidateAttributionUidAndTagDimension( const DimensionsValue& value, int atomId, int uid, const std::string& tag) { EXPECT_EQ(value.field(), atomId); EXPECT_EQ(1, value.value_tuple().dimensions_value_size()); // Attribution field. EXPECT_EQ(1, value.value_tuple().dimensions_value(0).field()); // Uid only. EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value_size(), 2); EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value(0).field(), 1); EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value(0).value_int(), uid); EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value(1).field(), 2); EXPECT_EQ(value.value_tuple().dimensions_value(0) .value_tuple().dimensions_value(1).value_str(), tag); } bool EqualsTo(const DimensionsValue& s1, const DimensionsValue& s2) { if (s1.field() != s2.field()) { return false; } if (s1.value_case() != s2.value_case()) { return false; } switch (s1.value_case()) { case DimensionsValue::ValueCase::kValueStr: return (s1.value_str() == s2.value_str()); case DimensionsValue::ValueCase::kValueInt: return s1.value_int() == s2.value_int(); case DimensionsValue::ValueCase::kValueLong: return s1.value_long() == s2.value_long(); case DimensionsValue::ValueCase::kValueBool: return s1.value_bool() == s2.value_bool(); case DimensionsValue::ValueCase::kValueFloat: return s1.value_float() == s2.value_float(); case DimensionsValue::ValueCase::kValueTuple: { if (s1.value_tuple().dimensions_value_size() != s2.value_tuple().dimensions_value_size()) { return false; } bool allMatched = true; for (int i = 0; allMatched && i < s1.value_tuple().dimensions_value_size(); ++i) { allMatched &= EqualsTo(s1.value_tuple().dimensions_value(i), s2.value_tuple().dimensions_value(i)); } return allMatched; } case DimensionsValue::ValueCase::VALUE_NOT_SET: default: return true; } } bool LessThan(const DimensionsValue& s1, const DimensionsValue& s2) { if (s1.field() != s2.field()) { return s1.field() < s2.field(); } if (s1.value_case() != s2.value_case()) { return s1.value_case() < s2.value_case(); } switch (s1.value_case()) { case DimensionsValue::ValueCase::kValueStr: return s1.value_str() < s2.value_str(); case DimensionsValue::ValueCase::kValueInt: return s1.value_int() < s2.value_int(); case DimensionsValue::ValueCase::kValueLong: return s1.value_long() < s2.value_long(); case DimensionsValue::ValueCase::kValueBool: return (int)s1.value_bool() < (int)s2.value_bool(); case DimensionsValue::ValueCase::kValueFloat: return s1.value_float() < s2.value_float(); case DimensionsValue::ValueCase::kValueTuple: { if (s1.value_tuple().dimensions_value_size() != s2.value_tuple().dimensions_value_size()) { return s1.value_tuple().dimensions_value_size() < s2.value_tuple().dimensions_value_size(); } for (int i = 0; i < s1.value_tuple().dimensions_value_size(); ++i) { if (EqualsTo(s1.value_tuple().dimensions_value(i), s2.value_tuple().dimensions_value(i))) { continue; } else { return LessThan(s1.value_tuple().dimensions_value(i), s2.value_tuple().dimensions_value(i)); } } return false; } case DimensionsValue::ValueCase::VALUE_NOT_SET: default: return false; } } bool LessThan(const DimensionsPair& s1, const DimensionsPair& s2) { if (LessThan(s1.dimInWhat, s2.dimInWhat)) { return true; } else if (LessThan(s2.dimInWhat, s1.dimInWhat)) { return false; } return LessThan(s1.dimInCondition, s2.dimInCondition); } void backfillStringInDimension(const std::map<uint64_t, string>& str_map, DimensionsValue* dimension) { if (dimension->has_value_str_hash()) { auto it = str_map.find((uint64_t)(dimension->value_str_hash())); if (it != str_map.end()) { dimension->clear_value_str_hash(); dimension->set_value_str(it->second); } else { ALOGE("Can not find the string hash: %llu", (unsigned long long)dimension->value_str_hash()); } } else if (dimension->has_value_tuple()) { auto value_tuple = dimension->mutable_value_tuple(); for (int i = 0; i < value_tuple->dimensions_value_size(); ++i) { backfillStringInDimension(str_map, value_tuple->mutable_dimensions_value(i)); } } } void backfillStringInReport(ConfigMetricsReport *config_report) { std::map<uint64_t, string> str_map; for (const auto& str : config_report->strings()) { uint64_t hash = Hash64(str); if (str_map.find(hash) != str_map.end()) { ALOGE("String hash conflicts: %s %s", str.c_str(), str_map[hash].c_str()); } str_map[hash] = str; } for (int i = 0; i < config_report->metrics_size(); ++i) { auto metric_report = config_report->mutable_metrics(i); if (metric_report->has_count_metrics()) { backfillStringInDimension(str_map, metric_report->mutable_count_metrics()); } else if (metric_report->has_duration_metrics()) { backfillStringInDimension(str_map, metric_report->mutable_duration_metrics()); } else if (metric_report->has_gauge_metrics()) { backfillStringInDimension(str_map, metric_report->mutable_gauge_metrics()); } else if (metric_report->has_value_metrics()) { backfillStringInDimension(str_map, metric_report->mutable_value_metrics()); } } // Backfill the package names. for (int i = 0 ; i < config_report->uid_map().snapshots_size(); ++i) { auto snapshot = config_report->mutable_uid_map()->mutable_snapshots(i); for (int j = 0 ; j < snapshot->package_info_size(); ++j) { auto package_info = snapshot->mutable_package_info(j); if (package_info->has_name_hash()) { auto it = str_map.find((uint64_t)(package_info->name_hash())); if (it != str_map.end()) { package_info->clear_name_hash(); package_info->set_name(it->second); } else { ALOGE("Can not find the string package name hash: %llu", (unsigned long long)package_info->name_hash()); } } } } // Backfill the app name in app changes. for (int i = 0 ; i < config_report->uid_map().changes_size(); ++i) { auto change = config_report->mutable_uid_map()->mutable_changes(i); if (change->has_app_hash()) { auto it = str_map.find((uint64_t)(change->app_hash())); if (it != str_map.end()) { change->clear_app_hash(); change->set_app(it->second); } else { ALOGE("Can not find the string change app name hash: %llu", (unsigned long long)change->app_hash()); } } } } void backfillStringInReport(ConfigMetricsReportList *config_report_list) { for (int i = 0; i < config_report_list->reports_size(); ++i) { backfillStringInReport(config_report_list->mutable_reports(i)); } } bool backfillDimensionPath(const DimensionsValue& path, const google::protobuf::RepeatedPtrField<DimensionsValue>& leafValues, int* leafIndex, DimensionsValue* dimension) { dimension->set_field(path.field()); if (path.has_value_tuple()) { for (int i = 0; i < path.value_tuple().dimensions_value_size(); ++i) { if (!backfillDimensionPath( path.value_tuple().dimensions_value(i), leafValues, leafIndex, dimension->mutable_value_tuple()->add_dimensions_value())) { return false; } } } else { if (*leafIndex < 0 || *leafIndex >= leafValues.size()) { return false; } dimension->MergeFrom(leafValues.Get(*leafIndex)); (*leafIndex)++; } return true; } bool backfillDimensionPath(const DimensionsValue& path, const google::protobuf::RepeatedPtrField<DimensionsValue>& leafValues, DimensionsValue* dimension) { int leafIndex = 0; return backfillDimensionPath(path, leafValues, &leafIndex, dimension); } void backfillDimensionPath(ConfigMetricsReportList *config_report_list) { for (int i = 0; i < config_report_list->reports_size(); ++i) { auto report = config_report_list->mutable_reports(i); for (int j = 0; j < report->metrics_size(); ++j) { auto metric_report = report->mutable_metrics(j); if (metric_report->has_dimensions_path_in_what() || metric_report->has_dimensions_path_in_condition()) { auto whatPath = metric_report->dimensions_path_in_what(); auto conditionPath = metric_report->dimensions_path_in_condition(); if (metric_report->has_count_metrics()) { backfillDimensionPath(whatPath, conditionPath, metric_report->mutable_count_metrics()); } else if (metric_report->has_duration_metrics()) { backfillDimensionPath(whatPath, conditionPath, metric_report->mutable_duration_metrics()); } else if (metric_report->has_gauge_metrics()) { backfillDimensionPath(whatPath, conditionPath, metric_report->mutable_gauge_metrics()); } else if (metric_report->has_value_metrics()) { backfillDimensionPath(whatPath, conditionPath, metric_report->mutable_value_metrics()); } metric_report->clear_dimensions_path_in_what(); metric_report->clear_dimensions_path_in_condition(); } } } } void backfillStartEndTimestamp(StatsLogReport *report) { const int64_t timeBaseNs = report->time_base_elapsed_nano_seconds(); const int64_t bucketSizeNs = report->bucket_size_nano_seconds(); if (report->has_count_metrics()) { backfillStartEndTimestampForMetrics( timeBaseNs, bucketSizeNs, report->mutable_count_metrics()); } else if (report->has_duration_metrics()) { backfillStartEndTimestampForMetrics( timeBaseNs, bucketSizeNs, report->mutable_duration_metrics()); } else if (report->has_gauge_metrics()) { backfillStartEndTimestampForMetrics( timeBaseNs, bucketSizeNs, report->mutable_gauge_metrics()); if (report->gauge_metrics().skipped_size() > 0) { backfillStartEndTimestampForSkippedBuckets( timeBaseNs, report->mutable_gauge_metrics()); } } else if (report->has_value_metrics()) { backfillStartEndTimestampForMetrics( timeBaseNs, bucketSizeNs, report->mutable_value_metrics()); if (report->value_metrics().skipped_size() > 0) { backfillStartEndTimestampForSkippedBuckets( timeBaseNs, report->mutable_value_metrics()); } } } void backfillStartEndTimestamp(ConfigMetricsReport *config_report) { for (int j = 0; j < config_report->metrics_size(); ++j) { backfillStartEndTimestamp(config_report->mutable_metrics(j)); } } void backfillStartEndTimestamp(ConfigMetricsReportList *config_report_list) { for (int i = 0; i < config_report_list->reports_size(); ++i) { backfillStartEndTimestamp(config_report_list->mutable_reports(i)); } } } // namespace statsd } // namespace os } // namespace android
5b76aa9835121f891a76e816367d2bbf6b9a12e5
5bfb0e4e9af134c70be3f51b494fd01c4acf26cf
/config/acml_version.cc
34668991e86a8bc37ad841e81614c397de2b253a
[]
no_license
haampie/blaspp
cfb081dbe99963fd03d10ddc56eec8683c557311
03516b89f9c0551b2d459df032fe8a3140004710
refs/heads/master
2022-04-23T12:36:54.267376
2020-04-16T16:18:29
2020-04-16T16:18:29
256,492,688
0
0
null
null
null
null
UTF-8
C++
false
false
511
cc
acml_version.cc
// Copyright (c) 2017-2020, University of Tennessee. All rights reserved. // SPDX-License-Identifier: BSD-3-Clause // This program is free software: you can redistribute it and/or modify it under // the terms of the BSD 3-Clause license. See the accompanying LICENSE file. #include <stdio.h> #include <mkl.h> int main() { int major, minor, patch, build; acmlversion( &major, &minor, &patch, &build ); printf( "ACML_VERSION=%d.%d.%d.%d\n", major, minor, patch, build ); return 0; }
1b23cdcedbde008b521b23533d1f6d89a160a9a6
0c141972d779ec44c1f252194514ad9c464aef2e
/mailnews/mime/src/nsStreamConverter.cpp
710709e501ca002bad1d05c8260742ab83d0c34e
[]
no_license
mozilla/releases-comm-central
6a47ae14f6e24b4ff22998ca957078b7956b04e2
d4838a15a8dbad6d5d9b7e6f486e43bf1511f87a
refs/heads/master
2022-02-12T03:24:52.518381
2022-02-12T00:34:15
2022-02-12T00:34:15
4,578,344
137
101
null
2023-07-25T20:56:40
2012-06-06T21:42:18
JavaScript
UTF-8
C++
false
false
34,727
cpp
nsStreamConverter.cpp
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "nsCOMPtr.h" #include <stdio.h> #include "mimecom.h" #include "modmimee.h" #include "nscore.h" #include "nsStreamConverter.h" #include "prmem.h" #include "prprf.h" #include "prlog.h" #include "plstr.h" #include "mimemoz2.h" #include "nsMimeTypes.h" #include "nsString.h" #include "nsUnicharUtils.h" #include "nsMemory.h" #include "nsIPipe.h" #include "nsMimeStringResources.h" #include "nsIPrefService.h" #include "nsIPrefBranch.h" #include "nsNetUtil.h" #include "nsIMsgQuote.h" #include "nsNetUtil.h" #include "mozITXTToHTMLConv.h" #include "nsIMsgMailNewsUrl.h" #include "nsINntpUrl.h" #include "nsIMsgWindow.h" #include "nsICategoryManager.h" #include "nsMsgUtils.h" #include "mozilla/ArrayUtils.h" #define PREF_MAIL_DISPLAY_GLYPH "mail.display_glyph" #define PREF_MAIL_DISPLAY_STRUCT "mail.display_struct" //////////////////////////////////////////////////////////////// // Bridge routines for new stream converter XP-COM interface //////////////////////////////////////////////////////////////// extern "C" void* mime_bridge_create_draft_stream( nsIMimeEmitter* newEmitter, nsStreamConverter* newPluginObj2, nsIURI* uri, nsMimeOutputType format_out); extern "C" void* bridge_create_stream(nsIMimeEmitter* newEmitter, nsStreamConverter* newPluginObj2, nsIURI* uri, nsMimeOutputType format_out, uint32_t whattodo, nsIChannel* aChannel) { if ((format_out == nsMimeOutput::nsMimeMessageDraftOrTemplate) || (format_out == nsMimeOutput::nsMimeMessageEditorTemplate)) return mime_bridge_create_draft_stream(newEmitter, newPluginObj2, uri, format_out); else return mime_bridge_create_display_stream(newEmitter, newPluginObj2, uri, format_out, whattodo, aChannel); } void bridge_destroy_stream(void* newStream) { nsMIMESession* stream = (nsMIMESession*)newStream; if (!stream) return; PR_FREEIF(stream); } void bridge_set_output_type(void* bridgeStream, nsMimeOutputType aType) { nsMIMESession* session = (nsMIMESession*)bridgeStream; if (session) { // BAD ASSUMPTION!!!! NEED TO CHECK aType mime_stream_data* msd = (mime_stream_data*)session->data_object; if (msd) msd->format_out = aType; // output format type } } nsresult bridge_new_new_uri(void* bridgeStream, nsIURI* aURI, int32_t aOutputType) { nsMIMESession* session = (nsMIMESession*)bridgeStream; const char** fixup_pointer = nullptr; if (session) { if (session->data_object) { bool* override_charset = nullptr; char** default_charset = nullptr; char** url_name = nullptr; if ((aOutputType == nsMimeOutput::nsMimeMessageDraftOrTemplate) || (aOutputType == nsMimeOutput::nsMimeMessageEditorTemplate)) { mime_draft_data* mdd = (mime_draft_data*)session->data_object; if (mdd->options) { default_charset = &(mdd->options->default_charset); override_charset = &(mdd->options->override_charset); url_name = &(mdd->url_name); } } else { mime_stream_data* msd = (mime_stream_data*)session->data_object; if (msd->options) { default_charset = &(msd->options->default_charset); override_charset = &(msd->options->override_charset); url_name = &(msd->url_name); fixup_pointer = &(msd->options->url); } } if (default_charset && override_charset && url_name) { // Check whether we need to auto-detect the charset. nsCOMPtr<nsIMsgI18NUrl> i18nUrl(do_QueryInterface(aURI)); if (i18nUrl) { bool autodetectCharset = false; nsresult rv = i18nUrl->GetAutodetectCharset(&autodetectCharset); if (NS_SUCCEEDED(rv) && autodetectCharset) { *override_charset = true; *default_charset = nullptr; } else { *override_charset = false; // Special treatment for news: URLs. Get the server default charset. nsCOMPtr<nsINntpUrl> nntpURL(do_QueryInterface(aURI)); if (nntpURL) { nsCString charset; rv = nntpURL->GetCharset(charset); if (NS_SUCCEEDED(rv)) { *default_charset = ToNewCString(charset); } else { *default_charset = strdup("UTF-8"); } } else { *default_charset = strdup("UTF-8"); } } // If there is no override and a default charset exists, // update the message window. if (!(*override_charset) && *default_charset && **default_charset) { // notify the default to msgWindow (for the menu check mark) // do not set the default in case of nsMimeMessageDraftOrTemplate // or nsMimeMessageEditorTemplate because it is already set // when the message is displayed and doing it again may overwrite // the correct MIME charset parsed from the message header if (aOutputType != nsMimeOutput::nsMimeMessageDraftOrTemplate && aOutputType != nsMimeOutput::nsMimeMessageEditorTemplate) { nsCOMPtr<nsIMsgMailNewsUrl> msgurl(do_QueryInterface(aURI)); if (msgurl) { nsCOMPtr<nsIMsgWindow> msgWindow; msgurl->GetMsgWindow(getter_AddRefs(msgWindow)); if (msgWindow) { msgWindow->SetMailCharacterSet( nsDependentCString(*default_charset)); msgWindow->SetCharsetOverride(*override_charset); } } } } } nsAutoCString urlString; if (NS_SUCCEEDED(aURI->GetSpec(urlString))) { if (!urlString.IsEmpty()) { free(*url_name); *url_name = ToNewCString(urlString); if (!(*url_name)) return NS_ERROR_OUT_OF_MEMORY; // rhp: Ugh, this is ugly...but it works. if (fixup_pointer) *fixup_pointer = (const char*)*url_name; } } } } } return NS_OK; } static int mime_headers_callback(void* closure, MimeHeaders* headers) { // We get away with this because this doesn't get called on draft operations. mime_stream_data* msd = (mime_stream_data*)closure; NS_ASSERTION(msd && headers, "null mime stream data or headers"); if (!msd || !headers) return 0; NS_ASSERTION(!msd->headers, "non-null mime stream data headers"); msd->headers = MimeHeaders_copy(headers); return 0; } nsresult bridge_set_mime_stream_converter_listener( void* bridgeStream, nsIMimeStreamConverterListener* listener, nsMimeOutputType aOutputType) { nsMIMESession* session = (nsMIMESession*)bridgeStream; if ((session) && (session->data_object)) { if ((aOutputType == nsMimeOutput::nsMimeMessageDraftOrTemplate) || (aOutputType == nsMimeOutput::nsMimeMessageEditorTemplate)) { mime_draft_data* mdd = (mime_draft_data*)session->data_object; if (mdd->options) { if (listener) { mdd->options->caller_need_root_headers = true; mdd->options->decompose_headers_info_fn = mime_headers_callback; } else { mdd->options->caller_need_root_headers = false; mdd->options->decompose_headers_info_fn = nullptr; } } } else { mime_stream_data* msd = (mime_stream_data*)session->data_object; if (msd->options) { if (listener) { msd->options->caller_need_root_headers = true; msd->options->decompose_headers_info_fn = mime_headers_callback; } else { msd->options->caller_need_root_headers = false; msd->options->decompose_headers_info_fn = nullptr; } } } } return NS_OK; } // find a query element in a url and return a pointer to its data // (query must be in the form "query=") static const char* FindQueryElementData(const char* aUrl, const char* aQuery) { if (aUrl && aQuery) { size_t queryLen = 0; // we don't call strlen until we need to aUrl = PL_strcasestr(aUrl, aQuery); while (aUrl) { if (!queryLen) queryLen = strlen(aQuery); if (*(aUrl - 1) == '&' || *(aUrl - 1) == '?') return aUrl + queryLen; aUrl = PL_strcasestr(aUrl + queryLen, aQuery); } } return nullptr; } // case-sensitive test for string prefixing. If |string| is prefixed // by |prefix| then a pointer to the next character in |string| following // the prefix is returned. If it is not a prefix then |nullptr| is returned. static const char* SkipPrefix(const char* aString, const char* aPrefix) { while (*aPrefix) if (*aPrefix++ != *aString++) return nullptr; return aString; } // // Utility routines needed by this interface // nsresult nsStreamConverter::DetermineOutputFormat(const char* aUrl, nsMimeOutputType* aNewType) { // sanity checking NS_ENSURE_ARG_POINTER(aNewType); if (!aUrl || !*aUrl) { // default to html for the entire document *aNewType = nsMimeOutput::nsMimeMessageQuoting; mOutputFormat = "text/html"; return NS_OK; } // shorten the url that we test for the query strings by skipping directly // to the part where the query strings begin. const char* queryPart = PL_strchr(aUrl, '?'); // First, did someone pass in a desired output format. They will be able to // pass in any content type (i.e. image/gif, text/html, etc...but the "/" will // have to be represented via the "%2F" value const char* format = FindQueryElementData(queryPart, "outformat="); if (format) { // NOTE: I've done a file contents search of every file (*.*) in the mozilla // directory tree and there is not a single location where the string // "outformat" is added to any URL. It appears that this code has been // orphaned off by a change elsewhere and is no longer required. It will be // removed in the future unless someone complains. MOZ_ASSERT(false, "Is this code actually being used?"); while (*format == ' ') ++format; if (*format) { mOverrideFormat = "raw"; // set mOutputFormat to the supplied format, ensure that we replace any // %2F strings with the slash character const char* nextField = PL_strpbrk(format, "&; "); mOutputFormat.Assign(format, nextField ? nextField - format : -1); mOutputFormat.ReplaceSubstring("%2F", "/"); mOutputFormat.ReplaceSubstring("%2f", "/"); // Don't muck with this data! *aNewType = nsMimeOutput::nsMimeMessageRaw; return NS_OK; } } // is this is a part that should just come out raw const char* part = FindQueryElementData(queryPart, "part="); if (part && !mToType.EqualsLiteral("application/xhtml+xml")) { // default for parts mOutputFormat = "raw"; *aNewType = nsMimeOutput::nsMimeMessageRaw; // if we are being asked to fetch a part....it should have a // content type appended to it...if it does, we want to remember // that as mOutputFormat const char* typeField = FindQueryElementData(queryPart, "type="); if (typeField && !strncmp(typeField, "application/x-message-display", sizeof("application/x-message-display") - 1)) { const char* secondTypeField = FindQueryElementData(typeField, "type="); if (secondTypeField) typeField = secondTypeField; } if (typeField) { // store the real content type...mOutputFormat gets deleted later on... // and make sure we only get our own value. char* nextField = PL_strchr(typeField, '&'); mRealContentType.Assign(typeField, nextField ? nextField - typeField : -1); if (mRealContentType.EqualsLiteral("message/rfc822")) { mRealContentType = "application/x-message-display"; mOutputFormat = "text/html"; *aNewType = nsMimeOutput::nsMimeMessageBodyDisplay; } else if (mRealContentType.EqualsLiteral( "application/x-message-display")) { mRealContentType = ""; mOutputFormat = "text/html"; *aNewType = nsMimeOutput::nsMimeMessageBodyDisplay; } } return NS_OK; } const char* emitter = FindQueryElementData(queryPart, "emitter="); if (emitter) { const char* remainder = SkipPrefix(emitter, "js"); if (remainder && (!*remainder || *remainder == '&')) mOverrideFormat = "application/x-js-mime-message"; } // if using the header query const char* header = FindQueryElementData(queryPart, "header="); if (header) { struct HeaderType { const char* headerType; const char* outputFormat; nsMimeOutputType mimeOutputType; }; // place most commonly used options at the top static const struct HeaderType rgTypes[] = { {"filter", "text/html", nsMimeOutput::nsMimeMessageFilterSniffer}, {"quotebody", "text/html", nsMimeOutput::nsMimeMessageBodyQuoting}, {"print", "text/html", nsMimeOutput::nsMimeMessagePrintOutput}, {"only", "text/xml", nsMimeOutput::nsMimeMessageHeaderDisplay}, {"none", "text/html", nsMimeOutput::nsMimeMessageBodyDisplay}, {"quote", "text/html", nsMimeOutput::nsMimeMessageQuoting}, {"saveas", "text/html", nsMimeOutput::nsMimeMessageSaveAs}, {"src", "text/plain", nsMimeOutput::nsMimeMessageSource}, {"attach", "raw", nsMimeOutput::nsMimeMessageAttach}}; // find the requested header in table, ensure that we don't match on a // prefix by checking that the following character is either null or the // next query element const char* remainder; for (uint32_t n = 0; n < MOZ_ARRAY_LENGTH(rgTypes); ++n) { remainder = SkipPrefix(header, rgTypes[n].headerType); if (remainder && (*remainder == '\0' || *remainder == '&')) { mOutputFormat = rgTypes[n].outputFormat; *aNewType = rgTypes[n].mimeOutputType; return NS_OK; } } } // default to html for just the body mOutputFormat = "text/html"; *aNewType = nsMimeOutput::nsMimeMessageBodyDisplay; return NS_OK; } nsresult nsStreamConverter::InternalCleanup(void) { if (mBridgeStream) { bridge_destroy_stream(mBridgeStream); mBridgeStream = nullptr; } return NS_OK; } /* * Inherited methods for nsMimeConverter */ nsStreamConverter::nsStreamConverter() { // Init member variables... mWrapperOutput = false; mBridgeStream = nullptr; mOutputFormat = "text/html"; mAlreadyKnowOutputType = false; mForwardInline = false; mForwardInlineFilter = false; mOverrideComposeFormat = false; mPendingRequest = nullptr; } nsStreamConverter::~nsStreamConverter() { InternalCleanup(); } NS_IMPL_ISUPPORTS(nsStreamConverter, nsIStreamListener, nsIRequestObserver, nsIStreamConverter, nsIMimeStreamConverter) /////////////////////////////////////////////////////////////// // nsStreamConverter definitions.... /////////////////////////////////////////////////////////////// NS_IMETHODIMP nsStreamConverter::Init(nsIURI* aURI, nsIStreamListener* aOutListener, nsIChannel* aChannel) { NS_ENSURE_ARG_POINTER(aURI); nsresult rv = NS_OK; mOutListener = aOutListener; // mscott --> we need to look at the url and figure out what the correct // output type is... nsMimeOutputType newType = mOutputType; if (!mAlreadyKnowOutputType) { nsAutoCString urlSpec; rv = aURI->GetSpec(urlSpec); DetermineOutputFormat(urlSpec.get(), &newType); mAlreadyKnowOutputType = true; mOutputType = newType; } switch (newType) { case nsMimeOutput::nsMimeMessageSplitDisplay: // the wrapper HTML output to // produce the split // header/body display mWrapperOutput = true; mOutputFormat = "text/html"; break; case nsMimeOutput::nsMimeMessageHeaderDisplay: // the split header/body // display mOutputFormat = "text/xml"; break; case nsMimeOutput::nsMimeMessageBodyDisplay: // the split header/body // display mOutputFormat = "text/html"; break; case nsMimeOutput::nsMimeMessageQuoting: // all HTML quoted output case nsMimeOutput::nsMimeMessageSaveAs: // Save as operation case nsMimeOutput::nsMimeMessageBodyQuoting: // only HTML body quoted // output case nsMimeOutput::nsMimeMessagePrintOutput: // all Printing output mOutputFormat = "text/html"; break; case nsMimeOutput::nsMimeMessageAttach: case nsMimeOutput::nsMimeMessageDecrypt: case nsMimeOutput::nsMimeMessageRaw: // the raw RFC822 data and attachments mOutputFormat = "raw"; break; case nsMimeOutput::nsMimeMessageSource: // the raw RFC822 data (view // source) and attachments mOutputFormat = "text/plain"; mOverrideFormat = "raw"; break; case nsMimeOutput::nsMimeMessageDraftOrTemplate: // Loading drafts & // templates mOutputFormat = "message/draft"; break; case nsMimeOutput::nsMimeMessageEditorTemplate: // Loading templates into // editor mOutputFormat = "text/html"; break; case nsMimeOutput::nsMimeMessageFilterSniffer: // output all displayable // part as raw mOutputFormat = "text/html"; break; default: NS_ERROR("this means I made a mistake in my assumptions"); } // the following output channel stream is used to fake the content type for // people who later call into us.. nsCString contentTypeToUse; GetContentType(getter_Copies(contentTypeToUse)); // mscott --> my theory is that we don't need this fake outgoing channel. // Let's use the original channel and just set our content type ontop of the // original channel... aChannel->SetContentType(contentTypeToUse); // rv = NS_NewInputStreamChannel(getter_AddRefs(mOutgoingChannel), aURI, // nullptr, contentTypeToUse, -1); if (NS_FAILED(rv)) // return rv; // Set system principal for this document, which will be dynamically generated // We will first find an appropriate emitter in the repository that supports // the requested output format...note, the special exceptions are // nsMimeMessageDraftOrTemplate or nsMimeMessageEditorTemplate where we don't // need any emitters // if ((newType != nsMimeOutput::nsMimeMessageDraftOrTemplate) && (newType != nsMimeOutput::nsMimeMessageEditorTemplate)) { nsAutoCString categoryName("@mozilla.org/messenger/mimeemitter;1?type="); if (!mOverrideFormat.IsEmpty()) categoryName += mOverrideFormat; else categoryName += mOutputFormat; nsCOMPtr<nsICategoryManager> catman = do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv); if (NS_SUCCEEDED(rv)) { nsCString contractID; catman->GetCategoryEntry("mime-emitter", categoryName, contractID); if (!contractID.IsEmpty()) categoryName = contractID; } mEmitter = do_CreateInstance(categoryName.get(), &rv); if ((NS_FAILED(rv)) || (!mEmitter)) { return NS_ERROR_OUT_OF_MEMORY; } } // initialize our emitter if (mEmitter) { // Now we want to create a pipe which we'll use for converting the data. nsCOMPtr<nsIPipe> pipe = do_CreateInstance("@mozilla.org/pipe;1"); rv = pipe->Init(true, true, 4096, 8); NS_ENSURE_SUCCESS(rv, rv); // These always succeed because the pipe is initialized above. MOZ_ALWAYS_SUCCEEDS(pipe->GetInputStream(getter_AddRefs(mInputStream))); MOZ_ALWAYS_SUCCEEDS(pipe->GetOutputStream(getter_AddRefs(mOutputStream))); mEmitter->Initialize(aURI, aChannel, newType); mEmitter->SetPipe(mInputStream, mOutputStream); mEmitter->SetOutputListener(aOutListener); } uint32_t whattodo = mozITXTToHTMLConv::kURLs; bool enable_emoticons = true; bool enable_structs = true; nsCOMPtr<nsIPrefBranch> pPrefBranch( do_GetService(NS_PREFSERVICE_CONTRACTID, &rv)); if (pPrefBranch) { rv = pPrefBranch->GetBoolPref(PREF_MAIL_DISPLAY_GLYPH, &enable_emoticons); if (NS_FAILED(rv) || enable_emoticons) { whattodo = whattodo | mozITXTToHTMLConv::kGlyphSubstitution; } rv = pPrefBranch->GetBoolPref(PREF_MAIL_DISPLAY_STRUCT, &enable_structs); if (NS_FAILED(rv) || enable_structs) { whattodo = whattodo | mozITXTToHTMLConv::kStructPhrase; } } if (mOutputType == nsMimeOutput::nsMimeMessageSource) return NS_OK; else { mBridgeStream = bridge_create_stream(mEmitter, this, aURI, newType, whattodo, aChannel); if (!mBridgeStream) return NS_ERROR_OUT_OF_MEMORY; else { SetStreamURI(aURI); // Do we need to setup an Mime Stream Converter Listener? if (mMimeStreamConverterListener) bridge_set_mime_stream_converter_listener((nsMIMESession*)mBridgeStream, mMimeStreamConverterListener, mOutputType); return NS_OK; } } } NS_IMETHODIMP nsStreamConverter::GetContentType(char** aOutputContentType) { if (!aOutputContentType) return NS_ERROR_NULL_POINTER; // since this method passes a string through an IDL file we need to use // nsMemory to allocate it and not strdup! // (1) check to see if we have a real content type...use it first... if (!mRealContentType.IsEmpty()) *aOutputContentType = ToNewCString(mRealContentType); else if (mOutputFormat.EqualsLiteral("raw")) *aOutputContentType = (char*)moz_xmemdup(UNKNOWN_CONTENT_TYPE, sizeof(UNKNOWN_CONTENT_TYPE)); else *aOutputContentType = ToNewCString(mOutputFormat); return NS_OK; } // // This is the type of output operation that is being requested by libmime. The // types of output are specified by nsIMimeOutputType enum // nsresult nsStreamConverter::SetMimeOutputType(nsMimeOutputType aType) { mAlreadyKnowOutputType = true; mOutputType = aType; if (mBridgeStream) bridge_set_output_type(mBridgeStream, aType); return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetMimeOutputType( nsMimeOutputType* aOutFormat) { nsresult rv = NS_OK; if (aOutFormat) *aOutFormat = mOutputType; else rv = NS_ERROR_NULL_POINTER; return rv; } // // This is needed by libmime for MHTML link processing...this is the URI // associated with this input stream // nsresult nsStreamConverter::SetStreamURI(nsIURI* aURI) { mURI = aURI; if (mBridgeStream) return bridge_new_new_uri((nsMIMESession*)mBridgeStream, aURI, mOutputType); else return NS_OK; } nsresult nsStreamConverter::SetMimeHeadersListener( nsIMimeStreamConverterListener* listener, nsMimeOutputType aType) { mMimeStreamConverterListener = listener; bridge_set_mime_stream_converter_listener((nsMIMESession*)mBridgeStream, listener, aType); return NS_OK; } NS_IMETHODIMP nsStreamConverter::SetForwardInline(bool aForwardInline) { mForwardInline = aForwardInline; return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetForwardToAddress(nsAString& aAddress) { aAddress = mForwardToAddress; return NS_OK; } NS_IMETHODIMP nsStreamConverter::SetForwardToAddress(const nsAString& aAddress) { mForwardToAddress = aAddress; return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetOverrideComposeFormat(bool* aResult) { if (!aResult) return NS_ERROR_NULL_POINTER; *aResult = mOverrideComposeFormat; return NS_OK; } NS_IMETHODIMP nsStreamConverter::SetOverrideComposeFormat(bool aOverrideComposeFormat) { mOverrideComposeFormat = aOverrideComposeFormat; return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetForwardInline(bool* aResult) { NS_ENSURE_ARG_POINTER(aResult); *aResult = mForwardInline; return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetForwardInlineFilter(bool* aResult) { NS_ENSURE_ARG_POINTER(aResult); *aResult = mForwardInlineFilter; return NS_OK; } NS_IMETHODIMP nsStreamConverter::SetForwardInlineFilter(bool aForwardInlineFilter) { mForwardInlineFilter = aForwardInlineFilter; return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetIdentity(nsIMsgIdentity** aIdentity) { if (!aIdentity) return NS_ERROR_NULL_POINTER; // We don't have an identity for the local folders account, // we will return null but it is not an error! NS_IF_ADDREF(*aIdentity = mIdentity); return NS_OK; } NS_IMETHODIMP nsStreamConverter::SetIdentity(nsIMsgIdentity* aIdentity) { mIdentity = aIdentity; return NS_OK; } NS_IMETHODIMP nsStreamConverter::SetOriginalMsgURI(const nsACString& originalMsgURI) { mOriginalMsgURI = originalMsgURI; return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetOriginalMsgURI(nsACString& result) { result = mOriginalMsgURI; return NS_OK; } NS_IMETHODIMP nsStreamConverter::SetOrigMsgHdr(nsIMsgDBHdr* aMsgHdr) { mOrigMsgHdr = aMsgHdr; return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetOrigMsgHdr(nsIMsgDBHdr** aMsgHdr) { if (!aMsgHdr) return NS_ERROR_NULL_POINTER; NS_IF_ADDREF(*aMsgHdr = mOrigMsgHdr); return NS_OK; } ///////////////////////////////////////////////////////////////////////////// // Methods for nsIStreamListener... ///////////////////////////////////////////////////////////////////////////// // // Notify the client that data is available in the input stream. This // method is called whenever data is written into the input stream by the // networking library... // nsresult nsStreamConverter::OnDataAvailable(nsIRequest* request, nsIInputStream* aIStream, uint64_t sourceOffset, uint32_t aLength) { nsresult rc = NS_OK; // should this be an error instead? uint32_t written; // If this is the first time through and we are supposed to be // outputting the wrapper two pane URL, then do it now. if (mWrapperOutput) { char outBuf[1024]; const char output[] = "\ <HTML>\ <FRAMESET ROWS=\"30%%,70%%\">\ <FRAME NAME=messageHeader SRC=\"%s?header=only\">\ <FRAME NAME=messageBody SRC=\"%s?header=none\">\ </FRAMESET>\ </HTML>"; nsAutoCString url; if (NS_FAILED(mURI->GetSpec(url))) return NS_ERROR_FAILURE; PR_snprintf(outBuf, sizeof(outBuf), output, url.get(), url.get()); if (mEmitter) mEmitter->Write(nsDependentCString(outBuf), &written); // rhp: will this stop the stream???? Not sure. return NS_ERROR_FAILURE; } nsCOMPtr<nsIInputStream> stream = aIStream; NS_ENSURE_TRUE(stream, NS_ERROR_NULL_POINTER); char* buf = (char*)PR_Malloc(aLength); if (!buf) return NS_ERROR_OUT_OF_MEMORY; /* we couldn't allocate the object */ uint32_t readLen; stream->Read(buf, aLength, &readLen); // We need to filter out any null characters else we will have a lot of // trouble as we use c string everywhere in mime char* readPtr; char* endPtr = buf + readLen; // First let see if the stream contains null characters for (readPtr = buf; readPtr < endPtr && *readPtr; readPtr++) ; // Did we find a null character? Then, we need to cleanup the stream if (readPtr < endPtr) { char* writePtr = readPtr; for (readPtr++; readPtr < endPtr; readPtr++) { if (!*readPtr) continue; *writePtr = *readPtr; writePtr++; } readLen = writePtr - buf; } if (mOutputType == nsMimeOutput::nsMimeMessageSource) { rc = NS_OK; if (mEmitter) { rc = mEmitter->Write(Substring(buf, buf + readLen), &written); } } else if (mBridgeStream) { nsMIMESession* tSession = (nsMIMESession*)mBridgeStream; // XXX Casting int to nsresult rc = static_cast<nsresult>( tSession->put_block((nsMIMESession*)mBridgeStream, buf, readLen)); } PR_FREEIF(buf); return rc; } ///////////////////////////////////////////////////////////////////////////// // Methods for nsIRequestObserver ///////////////////////////////////////////////////////////////////////////// // // Notify the observer that the URL has started to load. This method is // called only once, at the beginning of a URL load. // nsresult nsStreamConverter::OnStartRequest(nsIRequest* request) { #ifdef DEBUG_rhp printf("nsStreamConverter::OnStartRequest()\n"); #endif #ifdef DEBUG_mscott mConvertContentTime = PR_IntervalNow(); #endif // here's a little bit of hackery.... // since the mime converter is now between the channel // and the if (request) { nsCOMPtr<nsIChannel> channel = do_QueryInterface(request); if (channel) { nsCString contentType; GetContentType(getter_Copies(contentType)); channel->SetContentType(contentType); } } // forward the start request to any listeners if (mOutListener) { if (mOutputType == nsMimeOutput::nsMimeMessageRaw) { // we need to delay the on start request until we have figure out the real // content type mPendingRequest = request; } else mOutListener->OnStartRequest(request); } return NS_OK; } // // Notify the observer that the URL has finished loading. This method is // called once when the networking library has finished processing the // nsresult nsStreamConverter::OnStopRequest(nsIRequest* request, nsresult status) { // Make sure we fire any pending OnStartRequest before we do OnStop. FirePendingStartRequest(); #ifdef DEBUG_rhp printf("nsStreamConverter::OnStopRequest()\n"); #endif // // Now complete the stream! // if (mBridgeStream) { nsMIMESession* tSession = (nsMIMESession*)mBridgeStream; if (mMimeStreamConverterListener) { MimeHeaders** workHeaders = nullptr; if ((mOutputType == nsMimeOutput::nsMimeMessageDraftOrTemplate) || (mOutputType == nsMimeOutput::nsMimeMessageEditorTemplate)) { mime_draft_data* mdd = (mime_draft_data*)tSession->data_object; if (mdd) workHeaders = &(mdd->headers); } else { mime_stream_data* msd = (mime_stream_data*)tSession->data_object; if (msd) workHeaders = &(msd->headers); } if (workHeaders) { nsresult rv; nsCOMPtr<nsIMimeHeaders> mimeHeaders = do_CreateInstance(NS_IMIMEHEADERS_CONTRACTID, &rv); if (NS_SUCCEEDED(rv)) { if (*workHeaders) mimeHeaders->Initialize(Substring((*workHeaders)->all_headers, (*workHeaders)->all_headers_fp)); mMimeStreamConverterListener->OnHeadersReady(mimeHeaders); } else mMimeStreamConverterListener->OnHeadersReady(nullptr); } mMimeStreamConverterListener = nullptr; // release our reference } tSession->complete((nsMIMESession*)mBridgeStream); } // // Now complete the emitter and do necessary cleanup! // if (mEmitter) { mEmitter->Complete(); } // First close the output stream... if (mOutputStream) mOutputStream->Close(); // Make sure to do necessary cleanup! InternalCleanup(); #if 0 // print out the mime timing information BEFORE we flush to layout // otherwise we'll be including layout information. printf("Time Spent in mime: %d ms\n", PR_IntervalToMilliseconds(PR_IntervalNow() - mConvertContentTime)); #endif // forward on top request to any listeners if (mOutListener) mOutListener->OnStopRequest(request, status); mAlreadyKnowOutputType = false; // since we are done converting data, lets close all the objects we own... // this helps us fix some circular ref counting problems we are running // into... Close(); // Time to return... return NS_OK; } nsresult nsStreamConverter::Close() { mOutgoingChannel = nullptr; mEmitter = nullptr; mOutListener = nullptr; return NS_OK; } // nsIStreamConverter implementation // No synchronous conversion at this time. NS_IMETHODIMP nsStreamConverter::Convert(nsIInputStream* aFromStream, const char* aFromType, const char* aToType, nsISupports* aCtxt, nsIInputStream** _retval) { return NS_ERROR_NOT_IMPLEMENTED; } // Stream converter service calls this to initialize the actual stream converter // (us). NS_IMETHODIMP nsStreamConverter::AsyncConvertData(const char* aFromType, const char* aToType, nsIStreamListener* aListener, nsISupports* aCtxt) { nsresult rv = NS_OK; nsCOMPtr<nsIMsgQuote> aMsgQuote = do_QueryInterface(aCtxt, &rv); nsCOMPtr<nsIChannel> aChannel; if (aMsgQuote) { nsCOMPtr<nsIMimeStreamConverterListener> quoteListener; rv = aMsgQuote->GetQuoteListener(getter_AddRefs(quoteListener)); if (quoteListener) SetMimeHeadersListener(quoteListener, nsMimeOutput::nsMimeMessageQuoting); rv = aMsgQuote->GetQuoteChannel(getter_AddRefs(aChannel)); } else { aChannel = do_QueryInterface(aCtxt, &rv); } mFromType = aFromType; mToType = aToType; NS_ASSERTION(aChannel && NS_SUCCEEDED(rv), "mailnews mime converter has to have the channel passed in..."); if (NS_FAILED(rv)) return rv; nsCOMPtr<nsIURI> aUri; aChannel->GetURI(getter_AddRefs(aUri)); return Init(aUri, aListener, aChannel); } NS_IMETHODIMP nsStreamConverter::FirePendingStartRequest() { if (mPendingRequest && mOutListener) { mOutListener->OnStartRequest(mPendingRequest); mPendingRequest = nullptr; } return NS_OK; } NS_IMETHODIMP nsStreamConverter::GetConvertedType(const nsACString& aFromType, nsIChannel* aChannel, nsACString& aToType) { return NS_ERROR_NOT_IMPLEMENTED; }
2f70c02f96ec6f32cae393373d72f30c82bedee5
d9a709405ff4501ce562dfeaadee740f0058925d
/tasks/tsdb/src/tasks/multiple.h
4dff51a807f7ba4a2b13aa66fac1e6754f61c7e5
[ "MIT" ]
permissive
solosTec/node
c8682e62ea48cca2917d57f8b7c3e092cbd7ced5
e35e127867a4f66129477b780cbd09c5231fc7da
refs/heads/master
2023-07-21T23:39:22.138190
2019-05-13T14:55:11
2019-05-13T14:55:11
115,028,931
3
2
MIT
2021-08-10T14:48:41
2017-12-21T17:07:59
C++
UTF-8
C++
false
false
1,296
h
multiple.h
/* * The MIT License (MIT) * * Copyright (c) 2019 Sylko Olzscher * */ #ifndef NODE_TSDB_TASK_MULTIPLE_H #define NODE_TSDB_TASK_MULTIPLE_H #include <cyng/log.h> #include <cyng/async/mux.h> #include <cyng/async/policy.h> #include <cyng/intrinsics/version.h> namespace node { class multiple { public: using msg_0 = std::tuple<std::string , std::size_t , std::chrono::system_clock::time_point // time stamp , boost::uuids::uuid // session tag , std::string // device name , std::string // event , std::string // description >; using signatures_t = std::tuple<msg_0>; public: multiple(cyng::async::base_task* bt , cyng::logging::log_ptr , boost::filesystem::path out , std::string prefix , std::string suffix , std::chrono::seconds period); cyng::continuation run(); void stop(); /** * @brief slot [0] * * insert */ cyng::continuation process(std::string , std::size_t , std::chrono::system_clock::time_point // time stamp , boost::uuids::uuid // session tag , std::string // device name , std::string // event , std::string); private: private: cyng::async::base_task& base_; cyng::logging::log_ptr logger_; boost::filesystem::path const out_; std::chrono::seconds const period_; }; } #endif
d0414b2256f7bba07390e32c966dfae4dde32509
a030405173d3ad8a2b6416d970a6caa858111c14
/randomNumberTests/sprng_mpi/sprng_mpi_normal.cpp
fc91cc555a7d11e80d1f5613f955c1876157cee3
[]
no_license
cobalt2000/CompPhysics
0e748ed4bcdd962b08be3426aa7a51eabe428add
fb95c7cff9abf531e3dc6d9067e6b60bf815a45d
refs/heads/master
2021-01-20T18:57:29.719068
2018-04-04T14:18:51
2018-04-04T14:18:51
62,254,053
0
0
null
null
null
null
UTF-8
C++
false
false
2,100
cpp
sprng_mpi_normal.cpp
/***************************************************************************/ /* Demonstrates sprng use with one stream per process */ /* A distinct stream is created on each process, then prints a few */ /* random numbers. */ /***************************************************************************/ #include <iostream> #include <stdio.h> #include <mpi.h> /* MPI header file */ #include "sprng_cpp.h" #define SEED 985456376 int main(int argc, char *argv[]) { int streamnum, nstreams; Sprng *stream; double rn; int i, myid, nprocs; int gtype; /*--- */ /*************************** MPI calls ***********************************/ MPI_Init(&argc, &argv); /* Initialize MPI */ MPI_Comm_rank(MPI_COMM_WORLD, &myid); /* find process id */ MPI_Comm_size(MPI_COMM_WORLD, &nprocs); /* find number of processes */ /************************** Initialization *******************************/ streamnum = myid; nstreams = nprocs; /* one stream per processor */ /*--- node 0 is reading in a generator type */ if(myid == 0) { //#include "gen_types_menu.h" printf("Type in a generator type (integers: 0,1,2,3,4,5): "); scanf("%d", &gtype); } MPI_Bcast(&gtype,1,MPI_INT,0,MPI_COMM_WORLD ); stream = SelectType(gtype); stream->init_sprng(streamnum,nstreams,SEED,SPRNG_DEFAULT); /* initialize stream */ printf("\n\nProcess %d, print information about stream:\n", myid); stream->print_sprng(); /*********************** print random numbers ****************************/ for (i=0;i<3;i++) { rn = stream->sprng(); /* generate double precision random number */ printf("Process %d, random number %d: %.14f\n", myid, i+1, rn); } /*************************** free memory *********************************/ stream->free_sprng(); /* free memory used to store stream state */ MPI_Finalize(); /* Terminate MPI */ return 0; }
9f033873d2c9e1cc84b270cd4b086a479dee61a8
a6df05566f9794c4ae3b54b6b3cdd2a8fba85763
/include/utils/iParms.h
4d09b20c41d15869dfec698152df3f76562804e8
[]
no_license
AlexVaq/Axitons
c128009281ae455557390dfcfea54a16fc4dcc38
f8887fe936f41221f29811529f88a75d791c5067
refs/heads/master
2020-12-04T06:54:14.520641
2020-01-22T20:29:09
2020-01-22T20:29:09
231,666,154
1
0
null
null
null
null
UTF-8
C++
false
false
616
h
iParms.h
#ifndef InitialParametersGuard #define InitialParametersGuard #include <string> #include"enum-vars.h" struct iParms { int procArgs; int nSize; FieldPrecision fPrec; PropagatorType pType; FieldType fMod; double wDz; InitialCond cType; double parm1; int parm2; FieldExpansion fExp; double lSize; double indi3; double nQcd; double zThRes; double zRestore; double zInit; double zEnd; int nNeig; int nSteps; int dump; int fIndex; double wTime; double gamma; std::string outputName; std::string outputDir; std::string wisdomDir; }; #endif
fd56167f14f11b82c583e11ccf40341e48750439
4c22b3fdacaf7b925f0324bf1c54713396237491
/src/ai.h
7f7989e9304adfcfb25972c0c91a9b16c0c77016
[ "MIT" ]
permissive
stjordanis/connect-four
903f83df63d11b9cf858e1cb6e19cfb367ed5517
db8a11f4c6ad18f681dde44b447d53710875b113
refs/heads/master
2022-04-16T10:51:32.777857
2020-04-13T22:53:30
2020-04-13T22:53:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,713
h
ai.h
#ifndef AI_H #define AI_H #include "game.h" #include <memory> #include <random> #include <vector> // A playout can have 3 different results enum class Result { YellowWin, RedWin, Draw }; // A node in the game tree struct Node { Node(Node* parent, int action, Color color); Node* parent; std::vector<Node> children; int action; bool terminal; Color color; int visits; float reward; }; // An artificial intelligence that uses Monte-Carlo Tree-Search class AI { public: AI(int iterations); // Get an action from the AI given the grid and the move color int getAction(Grid& grid, Color color); private: // One iteration of Monte-Carlo Tree Search void monteCarloTreeSearch(Node* root, Grid grid); // Selection: Find a promising leaf of the explored game tree Node* select(Node* node, Grid& grid) const; // Expansion: If a node is not fully explored, generate one of the missing // children Node* expand(Node* node, Grid& grid) const; // Simulation: From the leaf of the game tree, perform a random playout // where moves are picked uniformly at random Result simulate(Grid& grid, Color color); // Back up: Propagate result back up through thre tree void backUp(Node* node, Result result) const; // Choose a child of the node according to the tree policy Node* treePolicy(Node* node) const; // Compute the Upper Confidence Bound for the node float uctValue(const Node& node) const; // Get the action that leads to the child node with the most visits int bestAction(const Node& node) const; int m_iterations; std::random_device m_randomDevice; std::mt19937 m_engine; }; #endif
cf9a696eae08a2ce8af40839486e918c8f08aede
c130fc29c48af4b36bc0c51ea9135e1660e9c318
/API_GAME/my_lib/05_InputMgrC.h
ce2285203c2acd7dfcefd60a5068bbe22acbc92d
[]
no_license
kimisaak0/indi_project
74ba40bb08317a910c8595efa6901120ee31eeca
24a5adf6ad4eca30fc8ff5aec85813a089af3831
refs/heads/master
2020-03-25T17:24:50.839546
2018-10-25T14:07:46
2018-10-25T14:07:46
143,976,532
0
0
null
null
null
null
UHC
C++
false
false
880
h
05_InputMgrC.h
#pragma once #pragma once #include "01_header.h" //싱글톤패턴을 상속받음. class InputMgrC : public SingleMgr<InputMgrC> { //부모 클래스를 Friend지정 //friend class SingleMgr<inputClass>; private: DWORD m_dwKeyState[256]; //키보드의 버튼 각각에 대한 상태를 저장하기 위한 버퍼 POINT m_MousePos; //마우스 위치값. private: DWORD KeyCheck(DWORD dwKey); //키 입력 체크 함수 public: bool Init(); // 초기화 bool Frame(); // 계산 bool Render(); // 드로우 bool Release(); // 소멸, 삭제 public: DWORD Key(DWORD dwKey); // 인자로 넘어온 키의 상태를 반환하는 함수. POINT getMousePos(); // 마우스 위치를 반환하는 함수. protected: InputMgrC(); public: virtual ~InputMgrC(); }; #define I_Input InputC::GetInstance()
916f7934b21e8cfc189ac7ad811b28e6c397bc3e
50c985d4f5d985e4ef283eca80cf292372b8b3b1
/c2021/src/main/cpp/Shooter.cpp
78004ce820b0d4f40587a7c09c77739677ac5691
[]
no_license
Eaglestrike/robot-code
ede7437b34c9aec1fbe0af5c557251fdd7b86739
8986dad7f4cb4bd0ab588b950d9d6a63fda8a97c
refs/heads/master
2022-02-04T18:06:36.224732
2022-01-22T02:19:34
2022-01-22T02:19:34
156,928,307
3
6
null
2021-10-19T22:44:48
2018-11-09T23:14:30
C++
UTF-8
C++
false
false
24
cpp
Shooter.cpp
#include "Shooter.h"
0d528ae5de83c0b2cc44d72bdc413f11ddd72730
fcdd70cdfadd0d5fe8d52e460c99d2421709250b
/GameServer.h
bae205d43dac06d176d15b29fc760a4ed5fa5c55
[]
no_license
YukinoHayakawa/SWCUServerPlugin
254a543b70c3a405f7fa1d2136d4fbbe59cebe4c
8cb90c7ad0387ec899391e117a155f1e6b4fc3f4
refs/heads/master
2020-12-05T08:22:32.189064
2014-08-15T14:52:24
2014-08-15T15:38:20
21,978,568
0
0
null
null
null
null
UTF-8
C++
false
false
1,076
h
GameServer.h
/* * Copyright 2014 Yukino Hayakawa<tennencoll@gmail.com> * * 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. */ #pragma once #include "DataSource.h" #include "AccountManager.h" #include "MapManager.h" #include "DialogManager.h" #include "AreaManager.h" #include "HouseManager.h" class GameServer { public: DataSource datasource; AccountManager accountmanager; MapManager mapmanager; DialogManager dialogmanager; AreaManager areamanager; HouseManager housemanager; static GameServer& getInstance(); protected: GameServer(const std::string& dbhost); };
658d498545eece3bdc81437ec44e30a528f98707
d1895a5024d1a319838fa66c8072379bfb3fb811
/bot/leg/floatLegUnitedStates/floatLegUnitedStatesObject.hpp
f8e46d2c138f8a98236d7e45b129ad1242140c8e
[]
no_license
vermosen/xlObjectTools
9b5b47e4a0176bf34d92567142d26656a5ef7985
e43210c73076b7fb226d70716e9946eba72b1edd
refs/heads/master
2021-07-03T17:43:32.741980
2020-10-28T16:33:15
2020-10-28T16:33:15
18,273,901
4
2
null
null
null
null
UTF-8
C++
false
false
2,238
hpp
floatLegUnitedStatesObject.hpp
/* * xlObjectTools * * Created by Jean-Matthieu VERMOSEN on 31/05/09 * Copyright 2009. All rights reserved. * */ #ifndef float_leg_united_states_object_hpp #define float_leg_united_states_object_hpp #include <qlo/leg.hpp> #include <ql/indexes/IborIndex.hpp> #include <ql/cashflows/cashflows.hpp> #include <ql/utilities/null.hpp> #include <ql/instruments/legs/floatLegUnitedStates.hpp> #include <bot/leg/floatLegUnitedStates/floatLegUnitedStatesValueObject.hpp> namespace QuantLibAddin { class floatLegUnitedStatesObject : public Leg { public : floatLegUnitedStatesObject::floatLegUnitedStatesObject( boost::shared_ptr<QuantLibAddin::ValueObjects::floatLegUnitedStatesValueObject> & valueObject, const QuantLib::Date & effectiveDate, const QuantLib::Date & firstCouponDate, const QuantLib::Date & lastCouponDate, const QuantLib::Date & maturityDate, const boost::shared_ptr<QuantLib::IborIndex> & index, const QuantLib::Natural & fixingDays = QuantLib::Null<QuantLib::Natural>(), const QuantLib::Frequency & legFrequency = QuantLib::Semiannual, const QuantLib::DayCounter & legDaycounter = QuantLib::Actual360(), const QuantLib::Real & notional = 100.0, const QuantLib::Spread & spread = 0.0, const QuantLib::BusinessDayConvention & paymentConvention = QuantLib::ModifiedFollowing, const QuantLib::BusinessDayConvention & terminationPaymentConvention = QuantLib::ModifiedFollowing, const bool & endOfMonth = true, const bool & permanent = true) ; QuantLib::Real accruedAmount(bool includeSettlementDateFlow, const QuantLib::Date& settlementDates) const ; QuantLib::Real currentFixing(bool includeSettlementDateFlow, const QuantLib::Date & settlementDates) const ; void setFixingIndex(QuantLib::Handle<QuantLib::YieldTermStructure> index_) ; } ; } #endif
12252b2832414de23eda2c8c215738f7963ead42
738790ebd457082a5771bffd9d3df6f1e88338ed
/main.cpp
6e22c81c821dcb619516068561f4596712a7296b
[ "MIT" ]
permissive
MatthewDuddington/MG1_01_LSystems
1e17f3345244d107e7b4d240085d1446bce5849f
5aa0f657452705ee4960e4859f04192d121cc960
refs/heads/master
2021-06-08T06:00:11.944774
2016-12-05T23:22:58
2016-12-05T23:22:58
69,477,547
0
0
null
null
null
null
UTF-8
C++
false
false
1,097
cpp
main.cpp
//////////////////////////////////////////////////////////////////////////////// // // (c) Matthew Duddington 2016 // // Using Octet framework (c) Andy Thomason 2012 - 2014 // // Using some code with modifications from: // Octet Invaiderers example (c) Andy Thomason 2012 - 2014 // //#ifdef WIN32 //// This is the "GL extension wrangler" //// Note: you will need to use the right version of glew32s.lib (32 bit vs 64 bit) //#define GLEW_STATIC //#include "GL/glew.h" //#pragma comment(lib, "glew32s.lib") // //// This is the "GL utilities" framework for drawing with OpenGL //#include "freeglut/include/GL/glut.h" //#else // (osx?) //#include "GLUT/glut.h" //#endif #include "octet\src\octet.h" #include <string> #include <vector> #include "recipe_book.h" #include "recipe.h" #include "branch.h" #include "tree.h" #include "l_system_app.h" int main(int argc, char **argv) { // set up the platform. octet::app::init_all(argc, argv); // our application. octet::LSystemApp app(argc, argv); app.init(); // open windows octet::app::run_all_apps(); return 0; }
a6d442ae94e0ab9dfc1714073090b5278bedc314
9ad27673520135821a8aa9b7c4f0127f8fd042ca
/ns3/traffic-control/model/l4s-cred-queue-disc.cc
37d579ab9193f59a1a7828673ae0b5a81052b9b7
[]
no_license
QiuXuHui/ns3-aqm-l4s
ef66cc208cc95bcaf17690848bf969a236b8783d
b7ad27cd4e33c9c8bc175dd6d3484b8a1eb329c5
refs/heads/master
2023-03-16T05:34:32.706507
2017-10-23T20:47:43
2017-10-23T20:47:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,305
cc
l4s-cred-queue-disc.cc
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2016 NITK Surathkal * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation; * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Authors: Shravya Ks <shravya.ks0@gmail.com> * Smriti Murali <m.smriti.95@gmail.com> * Mohit P. Tahiliani <tahiliani@nitk.edu.in> */ /* * PORT NOTE: This code was ported from ns-2.36rc1 (queue/pie.cc). * Most of the comments are also ported from the same. */ #include "ns3/log.h" #include "ns3/enum.h" #include "ns3/uinteger.h" #include "ns3/double.h" #include "ns3/simulator.h" #include "ns3/abort.h" #include "l4s-cred-queue-disc.h" #include "ns3/drop-tail-queue.h" #include "ns3/ipv4-queue-disc-item.h" namespace ns3 { NS_LOG_COMPONENT_DEFINE ("L4SCREDQueueDisc"); NS_OBJECT_ENSURE_REGISTERED (L4SCREDQueueDisc); TypeId L4SCREDQueueDisc::GetTypeId (void) { static TypeId tid = TypeId ("ns3::L4SCREDQueueDisc") .SetParent<QueueDisc> () .SetGroupName ("TrafficControl") .AddConstructor<L4SCREDQueueDisc> () .AddAttribute ("A", "Value of alpha", DoubleValue (20), MakeDoubleAccessor (&L4SCREDQueueDisc::m_a), MakeDoubleChecker<double> ()) .AddAttribute ("B", "Value of beta", DoubleValue (200), MakeDoubleAccessor (&L4SCREDQueueDisc::m_b), MakeDoubleChecker<double> ()) .AddAttribute ("Tupdate", "Time period to calculate drop probability", TimeValue (Seconds (0.032)), MakeTimeAccessor (&L4SCREDQueueDisc::m_tUpdate), MakeTimeChecker ()) .AddAttribute ("Supdate", "Start time of the update timer", TimeValue (Seconds (0)), MakeTimeAccessor (&L4SCREDQueueDisc::m_sUpdate), MakeTimeChecker ()) .AddAttribute ("QueueLimit", "Queue limit in bytes/packets", UintegerValue (10000), MakeUintegerAccessor (&L4SCREDQueueDisc::m_queueLimit), MakeUintegerChecker<uint32_t> ()) .AddAttribute ("QueueDelayReference", "Desired queue delay", TimeValue (Seconds (0.015)), MakeTimeAccessor (&L4SCREDQueueDisc::m_qDelayRef), MakeTimeChecker ()) .AddAttribute ("MaxBurstAllowance", "Current max burst allowance in seconds before random drop", TimeValue (Seconds (0.15)), MakeTimeAccessor (&L4SCREDQueueDisc::m_maxBurst), MakeTimeChecker ()) .AddAttribute ("K", "K for BW division", DoubleValue (2), MakeDoubleAccessor (&L4SCREDQueueDisc::m_k), MakeDoubleChecker<double> ()) .AddAttribute ("DropScale", "Scaling Factor for Classic Drops", DoubleValue (-1), MakeDoubleAccessor (&L4SCREDQueueDisc::m_dropScale), MakeDoubleChecker<double> ()) .AddAttribute ("SmoothingFactor", "Smoothing Factor for Classic Drops", DoubleValue (5), MakeDoubleAccessor (&L4SCREDQueueDisc::m_smoothingFactor), MakeDoubleChecker<double> ()) .AddAttribute ("ByteThreshold", "Byte Threshold for L4S Marks", UintegerValue (7510), // 5 * MTU MakeUintegerAccessor (&L4SCREDQueueDisc::m_byteThreshold), MakeUintegerChecker<uint32_t> ()) .AddAttribute ("L4SThreshold", "L4SThreshold", // Pi2 intends max (1ms, serialization time of 2 MTU) // default 2 ms <=> 6Mbps TimeValue (Seconds (0.002)), MakeTimeAccessor (&L4SCREDQueueDisc::m_l4sThreshold), MakeTimeChecker ()) .AddAttribute ("TimeShift", "Time shift for L4S Classic Priorisation", TimeValue (Seconds (0.04)), MakeTimeAccessor (&L4SCREDQueueDisc::m_tShift), MakeTimeChecker ()) ; return tid; } L4SCREDQueueDisc::L4SCREDQueueDisc () : QueueDisc () { NS_LOG_FUNCTION (this); m_uv = CreateObject<UniformRandomVariable> (); //m_rtrsEvent = Simulator::Schedule (m_sUpdate, &L4SCREDQueueDisc::CalculateP, this); m_qDelayFileL4S.open ("qDelayL4S"); m_qDelayFileClassic.open ("qDelayClassic"); m_actionsFileL4S.open ("actionsL4S"); m_actionsFileClassic.open ("actionsClassic"); } L4SCREDQueueDisc::~L4SCREDQueueDisc () { NS_LOG_FUNCTION (this); m_qDelayFileL4S.close (); m_qDelayFileClassic.close (); m_actionsFileL4S.close (); m_actionsFileClassic.close (); } void L4SCREDQueueDisc::DoDispose (void) { NS_LOG_FUNCTION (this); m_uv = 0; Simulator::Remove (m_rtrsEvent); QueueDisc::DoDispose (); } L4SCREDQueueDisc::Stats L4SCREDQueueDisc::GetStats () { NS_LOG_FUNCTION (this); return m_stats; } bool L4SCREDQueueDisc::DoEnqueue (Ptr<QueueDiscItem> item) { NS_LOG_FUNCTION (this << item); double now = Simulator::Now ().GetSeconds (); // Distinguish Classic L4S int qDist = 1; ns3::Ipv4Header::EcnType ecn = DynamicCast<Ipv4QueueDiscItem> (item)->GetHeader ().GetEcn (); if (ecn == ns3::Ipv4Header::ECN_ECT1 || ecn == ns3::Ipv4Header::ECN_CE) { qDist = 0; } if ((GetInternalQueue (0)->GetNPackets () + GetInternalQueue (1)->GetNPackets ()) >= m_queueLimit) { std::cout << now << " FORCED DROP!\n"; if (qDist == 0) { m_actionsFileL4S << now << ",F\n"; } else { m_actionsFileClassic << now << ",F\n"; } // Drops due to queue limit: reactive Drop (item); m_stats.forcedDrop++; return false; } // time stamp if (qDist == 0) { m_tsqL4S.push (now); } else { m_tsqClassic.push (now); } bool retval = GetInternalQueue (qDist)->Enqueue (item); NS_LOG_LOGIC ("\t packetsInQueue " << GetInternalQueue (1)->GetNPackets ()); return retval; } void L4SCREDQueueDisc::InitializeParams (void) { // Initially queue is empty so variables are initialize to zero except m_dqCount m_dropProb = 0; m_burstState = NO_BURST; m_qDelayOld = Time (Seconds (0)); m_stats.forcedDrop = 0; m_stats.unforcedDrop = 0; m_stats.l4sMark = 0; m_stats.classicMark = 0; m_alphaU = m_tUpdate.GetSeconds () * m_a; m_betaU = m_tUpdate.GetSeconds () * m_b; m_wQDelayAvg = 0; m_dropScaleL4S = pow (2, m_dropScale) / m_k; // 2^(S_C + k') = 2^(S_C) * 2^(k') = 2^(S_C) * k m_dropScaleClassic = pow (2, m_dropScale); m_a = pow (2, -m_smoothingFactor); m_throughputClassic = 0; m_throughputL4S = 0; } void L4SCREDQueueDisc::CalculateP () { // update drop probability NS_LOG_FUNCTION (this); double now = Simulator::Now ().GetSeconds (); double qDelay = 0; if (!m_tsqClassic.empty ()) { qDelay = now - m_tsqClassic.front (); } else if (!m_tsqL4S.empty ()) { qDelay = now - m_tsqL4S.front (); } m_dropProb += m_alphaU * (qDelay - m_qDelayRef.GetSeconds ()) + m_betaU * (qDelay - m_qDelayOld.GetSeconds ()); m_qDelayOld = Time (Seconds (qDelay)); m_rtrsEvent = Simulator::Schedule (m_tUpdate, &L4SCREDQueueDisc::CalculateP, this); } Ptr<QueueDiscItem> L4SCREDQueueDisc::DoDequeue () { NS_LOG_FUNCTION (this); while (true) { if (GetInternalQueue (1)->IsEmpty () && GetInternalQueue (0)->IsEmpty ()) { NS_LOG_LOGIC ("Queue empty"); return 0; } double now = Simulator::Now ().GetSeconds (); double qDelayClassic = 0; double qDelayL4S = 0; if (!m_tsqClassic.empty ()) { qDelayClassic = now - m_tsqClassic.front (); } if (!m_tsqL4S.empty ()) { qDelayL4S = now - m_tsqL4S.front (); } double u1 = m_uv->GetValue (); double u2 = m_uv->GetValue (); Ptr<QueueDiscItem> item; if ((item = StaticCast<QueueDiscItem> (GetInternalQueue (0)->Dequeue ())) != 0) { m_tsqL4S.pop (); double markProb = qDelayClassic / m_dropScaleL4S; // Mark if L4S Queue Length exceeds threshold or randomly if ((GetInternalQueue (0)->GetNBytes () > m_byteThreshold) || (markProb > u1)) { if (DynamicCast<Ipv4QueueDiscItem> (item)->Mark () == false) { Drop (item); m_stats.unforcedDrop++; m_actionsFileL4S << now << ",D\n"; continue; } else { m_stats.l4sMark++; m_actionsFileL4S << now << ",M\n"; } } m_throughputL4S += DynamicCast<Ipv4QueueDiscItem> (item)->GetPacketSize () + 2; m_qDelayFileL4S << now << "," << qDelayL4S << "," << GetInternalQueue (0)->GetNPackets () << "\n"; return item; } while ((item = StaticCast<QueueDiscItem> (GetInternalQueue (1)->Dequeue ())) != 0) { m_tsqClassic.pop (); // Update drop probability m_wQDelayAvg = m_a * qDelayClassic + (1 - m_a) * m_wQDelayAvg; double dropProb = m_wQDelayAvg / m_dropScaleClassic; // Random Drop if ( dropProb > std::max (u1, u2) ) { if (DynamicCast<Ipv4QueueDiscItem> (item)->Mark () == false) { Drop (item); m_stats.unforcedDrop++; m_actionsFileClassic << now << ",D\n"; continue; } else { m_stats.classicMark++; m_actionsFileClassic << now << ",M\n"; } } m_throughputClassic += DynamicCast<Ipv4QueueDiscItem> (item)->GetPacketSize () + 2; m_qDelayFileClassic << now << "," << qDelayClassic << "," << GetInternalQueue (1)->GetNPackets () << "\n"; return item; } } return 0; } Ptr<const QueueDiscItem> L4SCREDQueueDisc::DoPeek () const { NS_LOG_FUNCTION (this); if (GetInternalQueue (1)->IsEmpty () && GetInternalQueue (0)->IsEmpty ()) { NS_LOG_LOGIC ("Queue empty"); return 0; } Ptr<const QueueDiscItem> item; if ((item = StaticCast<const QueueDiscItem> (GetInternalQueue (0)->Peek ())) != 0) {} else if ((item = StaticCast<const QueueDiscItem> (GetInternalQueue (1)->Peek ())) != 0) {} NS_LOG_LOGIC ("Number packets " << GetInternalQueue (1)->GetNPackets ()); NS_LOG_LOGIC ("Number bytes " << GetInternalQueue (1)->GetNBytes ()); return item; } bool L4SCREDQueueDisc::CheckConfig (void) { NS_LOG_FUNCTION (this); if (GetNQueueDiscClasses () > 0) { NS_LOG_ERROR ("L4SCREDQueueDisc cannot have classes"); return false; } if (GetNPacketFilters () > 0) { NS_LOG_ERROR ("L4SCREDQueueDisc cannot have packet filters"); return false; } if (GetNInternalQueues () == 0) { // create a DropTail queue Ptr<Queue> queue = CreateObjectWithAttributes<DropTailQueue> ("Mode", EnumValue (m_mode)); if (m_mode == Queue::QUEUE_MODE_PACKETS) { queue->SetMaxPackets (m_queueLimit); } else { queue->SetMaxBytes (m_queueLimit); } AddInternalQueue (queue); } if (GetNInternalQueues () != 2) { NS_LOG_ERROR ("L4SCREDQueueDisc needs 2 internal queues"); return false; } if (GetInternalQueue (1)->GetMode () != Queue::QUEUE_MODE_PACKETS || GetInternalQueue (0)->GetMode () != Queue::QUEUE_MODE_PACKETS) { NS_LOG_ERROR ("Queues must be in Packet Mode"); return false; } if ((m_mode == Queue::QUEUE_MODE_PACKETS && GetInternalQueue (1)->GetMaxPackets () < m_queueLimit)) { NS_LOG_ERROR ("The size of the internal queue is less than the queue disc limit"); return false; } return true; } } //namespace ns3
8fba9930af02e05d0b84edb8693acfc688b9d426
029d28fb28e81fe71a2f3b369543ce65bcfb0998
/diff_parser.cpp
f02771f3f7acdae59dd7cf1ab0718e2b656b2022
[ "MIT" ]
permissive
d0k/diffcolor
b0a86a282e1fe334dc38435dd3c39d13845fdb00
fd8a0a5134ffb443ceb4427e1365309f61a79bd3
refs/heads/master
2016-09-06T12:01:45.229550
2009-10-01T17:57:51
2009-10-01T17:57:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,137
cpp
diff_parser.cpp
//===========================================================================// // (c) Benjamin Kramer // This file is distributed under the MIT License. See LICENSE for details. //===========================================================================// #include "diff_parser.h" #include "diff_consumer.h" void DiffParser::handleLine(const std::string& line) { std::string::size_type len = line.length(); if (len >= 1 && line[0] == '+') { for (std::vector<DiffConsumer*>::const_iterator i = consumers.begin(), e = consumers.end(); i != e; ++i) { (*i)->onAdd(line); } } else if (len >=1 && line[0] == '-') { for (std::vector<DiffConsumer*>::const_iterator i = consumers.begin(), e = consumers.end(); i != e; ++i) { (*i)->onDelete(line); } } else if (len >= 2 && line[0] == '@' && line[1] == '@') { for (std::vector<DiffConsumer*>::const_iterator i = consumers.begin(), e = consumers.end(); i != e; ++i) { (*i)->onHunk(line); } } else { for (std::vector<DiffConsumer*>::const_iterator i = consumers.begin(), e = consumers.end(); i != e; ++i) { (*i)->onLine(line); } } }
a5a580a903578eea956f26778f58e185e3659060
51e58e4f240e39fb5770ebe97f194b2478b28db2
/src/Characters/Monsters/States.cpp
2864c6a3b2ba31b9032ed156f3d3e4ebcca29356
[]
no_license
nilkun/wasmGameOfJam
1441f09b4cc813404f40c685b8da4efbf3b14215
f139d146f3b927651748d5ae336c687fec691045
refs/heads/master
2020-07-02T03:03:11.903655
2019-08-09T05:36:13
2019-08-09T05:36:13
201,395,565
0
0
null
null
null
null
UTF-8
C++
false
false
3,515
cpp
States.cpp
#include "../Monsters.hpp" void StateMachine::setState(State* newState, Monster* owner) { // std::cout << "SETTING STATE" << std::endl; state = newState; state -> owner = owner; // std::cout << "setState()" << std::endl; state -> enter(); }; void StateMachine::changeState(State *newState) { state -> exit(); Monster *temp = state -> owner; // std::cout << "DELETING STATE" << std::endl; // std::cout << state -> owner -> position.x << std::endl; delete state; // std::cout << "STATE DELETED" << std::endl; state = newState; state -> owner = temp; // std::cout << state -> owner -> position.x << std::endl; state -> enter(); }; void Patrol::enter() { owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); } void Patrol::execute(const Player &player) { if (abs(owner -> position.x - (owner -> patrolPath[owner -> patrolIndex].x + .5f)) < .1f && abs(owner -> position.y - (owner -> patrolPath[owner -> patrolIndex].y + .5f)) < .1f) { owner -> patrolIndex++; if(owner -> patrolIndex > owner -> patrolPath.size() - 1) { owner -> patrolIndex = 0; }; owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); } // std::cout << "exit!" << std::endl; // switch to chase player state // else if(abs(owner -> position.x - player.position.x) > 3 && abs(owner -> position.y - player.position.y) > 3) { // owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); // } // if(abs(owner -> position.x - owner -> target.x) <= .1 // && abs(owner -> position.y - owner -> target.y) <= .1 // ) { // owner -> patrolIndex++; // if(owner -> patrolIndex >= owner -> patrolPath.size()) // { // owner -> patrolIndex = 0; // } // owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); // } // std::cout << "finished comparing" << std::endl; } void Patrol::exit() {}; void ProjectilePatrol::enter() { owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); } void ProjectilePatrol::execute(const Player &player) { if (abs(owner -> position.x - owner -> patrolPath[owner -> patrolIndex].x - .5) < .1f && abs(owner -> position.y - owner -> patrolPath[owner -> patrolIndex].y - .5) < .1f) { owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); } // switch to chase player state else if(abs(owner -> position.x - player.position.x) < 3 && abs(owner -> position.y - player.position.y) < 3) { owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); } }; void ChasePlayer::enter() { owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); }; void ChasePlayer::execute(const Player &player) { if (abs(owner -> position.x - player.position.x) > 3 && abs(owner -> position.y - player.position.y) > 3) { owner -> setNewTarget(owner -> patrolPath[owner -> patrolIndex].x, owner -> patrolPath[owner -> patrolIndex].y); } else { // switch to chase player state } };
8178537d0baced43fcf38a9b325545686c28d5e9
fc5a9e37bc8d11cf29350757bb59c24cd2591fd6
/Particle5/electron.cpp
4c98066ec1e620877bf1e559b00f42cf9267cbec
[]
no_license
Pfhoenix/ParticleSim_2007
43e18b103f3343136fee5f895d6b94288688486f
a7936a62dc15693424a1ab44a3b8374e14bae37c
refs/heads/master
2023-04-20T03:21:33.847376
2021-05-07T22:44:10
2021-05-07T22:44:10
365,362,508
0
0
null
null
null
null
UTF-8
C++
false
false
162
cpp
electron.cpp
#include "includes.h" Electron::Electron() { Charge = -5500.0f; T = Textures[ELECTRON_TEX]; Init(1.0f, 8.0f); return; } Electron::~Electron() { return; }
855b94c7a5cd48f1251242001b6f26deabc5348a
52bcada7e6ccc55adb2896e9960dcc70d7c9942c
/268. Missing Number.cpp
cc51c2c26c8fc1524a7d2e135b251b61e65c1d11
[]
no_license
RockyYan1994/Algorithm
fab75db170ab59446bf478ad2f9b76bd0d8c4b43
1d0edb009ec566cc917ee732c5d7b3ac281f3a61
refs/heads/master
2021-10-02T18:53:12.273993
2018-11-30T08:16:35
2018-11-30T08:16:35
114,224,825
1
0
null
null
null
null
UTF-8
C++
false
false
994
cpp
268. Missing Number.cpp
/* 方法一:最简单,直接采用排序之后寻找。 方法二:用和桶排序类似的方法 方法三:用异或实现 */ //version 1(20 ms) class Solution { public: int missingNumber(vector<int>& nums) { int miss = -1; sort (nums.begin(), nums.end()) ; for (int i=0; i<nums.size(); i++) { if (nums[i] != i) return i; } return nums.size(); } }; //version 2(16 ms) class Solution { public: int missingNumber(vector<int>& nums) { vector<int> vec(nums.size()+1, -1); for (auto num : nums) { vec[num] = 1; } for (int i=0; i<vec.size(); i++) { if (vec[i] == -1) return i; } return -1; } }; //version 3(16 ms) class Solution { public: int missingNumber(vector<int>& nums) { int res = nums.size(); for (int i=0; i<nums.size(); i++) { res ^= i; res ^= nums[i]; } return res; } };
c4bf137604c9c9d752d31bf815853d39f503789d
21ee682069221c695443427ae4d01629a2ed06be
/Assignment4/transaction.cpp
b661923ba9cce78b1d01be9ea075bb3067120473
[]
no_license
Ali-Omrani/Advanced-Programming
923c213ec56973d366facbee95b338b89728fa82
f97d27b21b4a5b944ff0f0d0c187e29b5bebce99
refs/heads/master
2020-04-05T03:10:59.255958
2018-11-07T09:26:21
2018-11-07T09:26:21
156,504,043
0
0
null
null
null
null
UTF-8
C++
false
false
1,230
cpp
transaction.cpp
#include "transaction.h" #include "account.h" using namespace std; transaction :: transaction (account* _src_account , account* _dest_account,int _amount,int _id) { id = _id; amount=_amount; src_account=_src_account; dest_account= _dest_account; status="pending"; num_of_approved=0; decline_flag=false; } void transaction :: increase_approved_num () { num_of_approved++; update_transaction_status(); perform_transaction(); } void transaction:: update_transaction_status() { if (num_of_approved >= src_account->num_of_owners()-1) { status = "accepted"; } else if (decline_flag==true) status = "rejcted"; else status = "pending"; } void transaction:: perform_transaction() { if (status=="accepted") { if (src_account->get_balance()<amount) { status="rejected"; return; } else { src_account->set_balance(src_account->get_balance()-amount); dest_account->set_balance(dest_account->get_balance()+amount); } } } void transaction:: decline() { decline_flag=true; } int transaction :: get_id() { return id; } string transaction:: get_status() { return status; } int transaction:: get_amount() { return amount; } account* transaction:: get_dest() { return dest_account; }
3258864be8bf8cf77c8130d880dbb8e647da0ebf
053b4c06171c08d4ca77b08b54b4820c40a4812d
/src/IsrUtil.h
7e596c28d68e0014316493ba4aee27be9f6bb3b3
[ "MIT" ]
permissive
mbed-libraries/mbed-extended
e650fa7e3b6f4a7023ce823f1df85f941a74ec3f
2932b2d24f27312763dd03798b1d0756414e1d42
refs/heads/master
2022-11-20T00:30:39.870653
2020-07-20T11:41:07
2020-07-20T11:41:07
280,886,034
0
0
null
null
null
null
UTF-8
C++
false
false
2,711
h
IsrUtil.h
#ifndef _MBED_EXT_ISR_UTIL_H_ #define _MBED_EXT_ISR_UTIL_H_ #include <mbed.h> #include <LinkedList.h> /** * Provides means to easily decouple long running code segments from running in ISRs by executing them in the main loop. */ class IsrUtil { /** * Container for the callbacks */ struct isrutil_func_container { Callback<void()> func; }; public: /** * Constructor */ IsrUtil() {}; /** * Enqueues a function to be executed in the main loop. * @param func the function to be executed */ void runLater(Callback<void()> func){ isrutil_func_container * d = new isrutil_func_container; d->func = func; list.pushBack(d); }; /** * Executes all enqueued ISR functions. Note: call this method in the main loop */ void executeAll() { while (!(list.size() == 0)) { isrutil_func_container * next = list.popFront(); next->func(); delete next; } } /** * Execute a specific amount of functions. If there are less functions enqueued than specified, all available functions are executed. * Note: call this method in the main loop * @param n maximum number of functions to execute */ void executeN(int n) { int numExecuted = 0; while (!(list.size() == 0) && numExecuted < n){ isrutil_func_container * next = list.popFront(); next->func(); delete next; } } /** * Gets the number of enqueued functions * @return the number functions waiting to be executed */ int size() { return list.size(); } /** * Gets the global IsrUtil instance * @return the global IsrUtil instance */ static IsrUtil * global() { if (INSTANCE == nullptr) { INSTANCE = new IsrUtil(); } return INSTANCE; } private: inline static IsrUtil * INSTANCE; LinkedList<isrutil_func_container> list; }; /* macros for easy use */ /** * Shortcut for equeueing a function in the global IsrUtil instance * @param func the function to execute */ #define runLater(func) IsrUtil::global()->runLater(func) /** * Shortcut for executing all function in the global IsrUtil instance */ #define runAllFromIsr() IsrUtil::global()->executeAll() /** * Shortcut for executing n functions in the global IsrUtil instance * @param n maximum number of functions to execute */ #define runNFromIsr(n) IsrUtil::global()->executeN(n) /** * Shortcut for executing a single function in the global IsrUtil instance */ #define runOneFromIsr() IsrUtil::global()->executeN(1) #endif
49eba5ca65cd3eb5389c7b1673cdb1a648305e34
41d1f26a16caa7ece85d96747a9a48fef5d07cd0
/brg_testRoutines.h
1fe1a0852bac08b54aed362a875d6cf97e09aaea
[]
no_license
elligno/Burger1DWaveSimulator
c45c0a8308213a65269f36a2c7c04e0b4da1ea37
b9e1de03f26917275349a4f3bb75e0a12e01094e
refs/heads/master
2022-09-12T18:32:21.275984
2020-06-02T21:52:50
2020-06-02T21:52:50
268,915,686
0
0
null
null
null
null
UTF-8
C++
false
false
559
h
brg_testRoutines.h
#pragma once #include "brg_UtilityFct.h" namespace brg { /** Some test routines for numerical algorithm to test. * */ class testRoutines { // Design Note: // These tests should be in a separate unit test project (Google Unit test) public: // test of reconstruction routine () static void test_reconstr( vector* xcoord, int N); // test of first derivative calculation static void test_derivative(); // test computation of stencil (ENO: Essentially Non-Oscillatory) static void test_stencil(int N); }; } // end of namespace
26c8132f604d25bfac9ce199455192feb227f4fd
ad8271700e52ec93bc62a6fa3ee52ef080e320f2
/CatalystRichPresence/CatalystSDK/PresencePrivacyPermissionServiceData.h
603b65c32219376dc544d48003701c9132537d4d
[]
no_license
RubberDuckShobe/CatalystRPC
6b0cd4482d514a8be3b992b55ec143273b3ada7b
92d0e2723e600d03c33f9f027c3980d0f087c6bf
refs/heads/master
2022-07-29T20:50:50.640653
2021-03-25T06:21:35
2021-03-25T06:21:35
351,097,185
2
0
null
null
null
null
UTF-8
C++
false
false
518
h
PresencePrivacyPermissionServiceData.h
// // Generated with FrostbiteGen by Chod // File: SDK\PresencePrivacyPermissionServiceData.h // Created: Wed Mar 10 19:02:56 2021 // #ifndef FBGEN_PresencePrivacyPermissionServiceData_H #define FBGEN_PresencePrivacyPermissionServiceData_H #include "PresenceServiceData.h" class PresencePrivacyPermissionServiceData : public PresenceServiceData // size = 0x18 { public: static void* GetTypeInfo() { return (void*)0x000000014284DFB0; } }; // size = 0x18 #endif // FBGEN_PresencePrivacyPermissionServiceData_H
0d8a56b1202b44d676b3b9b9291bd69d381520d9
a16f8d76f3f376ae63461b11ff588182b14b3f49
/src/linad99/gradstak.cpp
45dd581b488074acce7172b7a5f8b65e9a7a718b
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
admb-project/admb
2782c74ed8d49c73e9735f8e0ce95f01d581bf2e
f6b42b0846da23f35c6ffbd28e42ec3cc2f306f0
refs/heads/main
2023-08-19T04:23:21.572292
2023-08-08T20:34:10
2023-08-08T20:34:10
29,162,042
90
24
NOASSERTION
2023-08-07T19:17:15
2015-01-12T23:14:31
C++
UTF-8
C++
false
false
13,850
cpp
gradstak.cpp
/* * $Id$ * * Author: David Fournier * Copyright (c) 2008-2012 Regents of the University of California */ /** * \file * Description not yet available. */ #include <iostream> #include <fcntl.h> #include "fvar.hpp" #include <adstring.hpp> #if defined (__WAT32__) #include <io.h> #endif #ifdef _MSC_VER #define read _read #define write _write #define open _open #define close _close #include <sys\stat.h> #else #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #endif #if defined(__TURBOC__) #pragma hdrstop #include <iostream.h> #include <iomanip.h> #include <sys\stat.h> #endif #ifdef __ZTC__ #include <iostream.hpp> #define S_IREAD 0000400 #define S_IWRITE 0000200 #endif #ifdef __NDPX__ #define O_RDONLY 0 #define O_WRONLY 1 #define O_RDWR 2 extern "C" { int LSEEK(int, int, int); int open(const char*, int); int creat(const char*, int); int close(int); int write(int, char*, int); }; #endif #include <stdlib.h> #include <stdio.h> #include <string.h> #include <time.h> #if !defined(OPT_LIB) #include <cassert> #include <climits> #endif #if defined(__MINGW64__) || (defined(_MSC_VER) && defined(_M_X64)) #include <cassert> #include <climits> #endif #ifdef _MSC_VER #ifdef _M_X64 typedef __int64 ssize_t; #else typedef int ssize_t; #endif #ifndef SSIZE_MAX #define SSIZE_MAX INT_MAX #endif #endif char lastchar(char *); char ad_random_part[6]="tmp"; void fill_ad_random_part(void) { /* time_t t,tt; time(&t); tt=t; int div=1; for (int i=0;i<6;i++) { ad_random_part[i]=(tt/div)%10+48; div*=10; } */ } /** Size constructor with filename id. \param size array size of grad_stack_entry \param id filename id */ grad_stack::grad_stack(const size_t size, const unsigned int id) { true_length = size; length = true_length; #ifndef OPT_LIB assert(length > 0); #endif true_ptr_first = new grad_stack_entry[length]; if (!true_ptr_first) { cerr << "Memory allocation error in grad_stack constructor\n" << " trying to allocate grad_stack_entry[" << length << "] array.\n"; ad_exit(1); } #ifdef DIAG test_the_pointer(); #endif ptr_first=true_ptr_first; ptr = ptr_first; ptr_last=ptr_first+(length-1); //table=new lvector(-128,250); _GRADFILE_PTR = -1; // set to illegal value for later checking end_pos = 0; end_pos1 = 0; end_pos2 = 0; char* path = getenv("ADTMP"); // NULL if not defined #if defined(USE_ADPVM) adstring string_path; if (path) string_path=path; int on=0; int nopt=0; adstring currdir; ad_getcd(currdir); if (ad_comm::pvm_manager) { if ((on = option_match(ad_comm::argc, ad_comm::argv, "-slave", nopt)) > -1) { if (nopt ==1) { int ierr=make_sub_directory(ad_comm::argv[on+1]); ad_comm::subdir=ad_comm::argv[on+1]; string_path+=ad_comm::subdir; path=(char*) string_path; } else { cerr << "Wrong number of options to -slave -- must be 1" " you have " << nopt << endl; ad_exit(1); } } } #endif if (path != NULL && strlen(path) <= 45) { #if !defined (_WIN32) if (id > 0) sprintf(&gradfile_name1[0],"%s/gradfil1%u.tmp", path, id); else sprintf(&gradfile_name1[0],"%s/gradfil1.tmp", path); #else if (lastchar(path) != '\\') { if (id > 0) sprintf(&gradfile_name1[0], "%s\\gradfil1%u.tmp", path, id); else sprintf(&gradfile_name1[0], "%s\\gradfil1.tmp", path); } else { if (id > 0) sprintf(&gradfile_name1[0], "%sgradfil1%u.tmp", path, id); else sprintf(&gradfile_name1[0], "%sgradfil1.tmp", path); } #endif } else { if (id > 0) sprintf(&gradfile_name1[0], "gradfil1%u.tmp", id); else sprintf(&gradfile_name1[0], "gradfil1.tmp"); } path = getenv("ADTMP1"); // NULL if not defined #if defined(USE_ADPVM) adstring string_path2; if (path) string_path2=path; string_path2+=ad_comm::subdir; path=(char*) string_path2; #endif if (path != NULL && strlen(path) <= 45) { #if !defined (_WIN32) if (strlen(path) > 0) { if (id > 0) { sprintf(&var_store_file_name[0],"%s/varssave%u.tmp",path, id); sprintf(&gradfile_name2[0],"%s/gradfil2%u.tmp", path, id); } else { sprintf(&var_store_file_name[0],"%s/varssave.tmp",path); sprintf(&gradfile_name2[0],"%s/gradfil2.tmp", path); } } else { if (id > 0) { sprintf(&var_store_file_name[0],"varssave%u.tmp", id); sprintf(&gradfile_name2[0],"gradfil2%u.tmp", id); } else { sprintf(&var_store_file_name[0],"varssave.tmp"); sprintf(&gradfile_name2[0],"gradfil2.tmp"); } } #else if (lastchar(path)!='\\') { if (id > 0) { sprintf(&gradfile_name2[0], "%s\\gradfil2%u.tmp", path, id); sprintf(&var_store_file_name[0], "%s\\varssave%u.tmp", path, id); } else { sprintf(&gradfile_name2[0], "%s\\gradfil2.tmp", path); sprintf(&var_store_file_name[0], "%s\\varssave.tmp", path); } } else { if (id > 0) { sprintf(&gradfile_name2[0], "%sgradfil2%u.tmp", path, id); sprintf(&var_store_file_name[0], "%svarssave%u.tmp", path, id); } else { sprintf(&gradfile_name2[0], "%sgradfil2.tmp", path); sprintf(&var_store_file_name[0], "%svarssave.tmp", path); } } #endif } else { if (id > 0) { sprintf(&gradfile_name2[0], "gradfil2%u.tmp", id); sprintf(&var_store_file_name[0], "varssave%u.tmp", id); } else { sprintf(&gradfile_name2[0], "gradfil2.tmp"); sprintf(&var_store_file_name[0], "varssave.tmp"); } } create_gradfile(); strcpy(gradfile_name, gradfile_name1); _GRADFILE_PTR = _GRADFILE_PTR1; } /// Destructor grad_stack::~grad_stack() { const int repfs = option_match(ad_comm::argc, ad_comm::argv, "-fsize"); if (ad_comm::global_logfile && repfs) { OFF_T pos = LSEEK(_GRADFILE_PTR1, 0, SEEK_END); *ad_comm::global_logfile << "size of file " << gradfile_name1 << " = " << pos << endl; pos = LSEEK(_GRADFILE_PTR2, 0, SEEK_END); *ad_comm::global_logfile << "size of file " << gradfile_name2 << " = " << pos << endl; pos = LSEEK(_VARSSAV_PTR, 0, SEEK_END); *ad_comm::global_logfile << "size of file " << var_store_file_name << " = " << pos << endl; } if (close(_GRADFILE_PTR1)) { cerr << "Error closing file " << gradfile_name1 << "\n" << "in grad_stack::~grad_stack().\n"; } _GRADFILE_PTR1 = -1; if (close(_GRADFILE_PTR2)) { cerr << "Error closing file " << gradfile_name2 << "\n" << "in grad_stack::~grad_stack().\n"; } _GRADFILE_PTR2 = -1; if (close(_VARSSAV_PTR)) { cerr << "Error closing file " << var_store_file_name << "\n" << "in grad_stack::~grad_stack().\n"; } _VARSSAV_PTR = -1; #if !defined (_MSC_VER) unlink(gradfile_name1); unlink(gradfile_name2); unlink(var_store_file_name); #else remove(gradfile_name1); remove(gradfile_name2); remove(var_store_file_name); #endif if (true_ptr_first) { delete [] true_ptr_first; true_ptr_first = NULL; } } /** * Description not yet available. * \param */ void grad_stack::write_grad_stack_buffer(gradient_structure* gs) { #ifdef GRAD_DIAG cout << "Grad_stack size exceeded\n "; cout << "Writing to temporary file -- \n"; #endif ptr--; #ifdef GRAD_DIAG { OFF_T lpos = lseek(_GRADFILE_PTR,0L,SEEK_CUR); cout << "Offset in file before write is " << lpos << " bytes from the beginning\n"; } #endif // if the buffer is really large only write the end of it set_gbuffer_pointers(); size_t nbw = sizeof(grad_stack_entry) * length; //char * ttmp = (char *) ptr_first; ttmp--; // save the current end of file in case we can't write the whole buffer end_pos = lseek(_GRADFILE_PTR,0L,SEEK_CUR); #if defined(__MINGW64__) || (defined(_WIN64) && defined(_MSC_VER)) assert(nbw <= UINT_MAX); ssize_t ierr = write(_GRADFILE_PTR, ptr_first, (unsigned int)nbw); #else ssize_t ierr = write(_GRADFILE_PTR, ptr_first, nbw); #endif #ifndef OPT_LIB #ifdef _MSC_VER assert(nbw <= SSIZE_MAX); #endif #endif if (ierr != (ssize_t)nbw) { cout << "Wrote " << ierr << " not " << nbw << endl; #ifndef OPT_LIB OFF_T offset = LSEEK(_GRADFILE_PTR, end_pos, SEEK_SET); assert(offset != -1); #else LSEEK(_GRADFILE_PTR, end_pos, SEEK_SET); #endif //save the end of file for this file so we can reposition later end_pos1 = end_pos; increment_current_gradfile_ptr(); #if defined(__MINGW64__) || (defined(_WIN64) && defined(_MSC_VER)) assert(nbw <= UINT_MAX); ierr = write(_GRADFILE_PTR, ptr_first, (unsigned int)nbw); #else ierr = write(_GRADFILE_PTR, ptr_first, nbw); #endif if (ierr != (ssize_t)nbw) { perror("Error writing to temporary gradient stack file"); cerr <<" File name: " << gradfile_name << "\n"; #if defined(_MSC_VER) cerr <<" File length: " << filelength(_GRADFILE_PTR) << " bytes.\n"; #endif cerr << " Attempting to write " << nbw <<" bytes; wrote " << ierr << ".\n"; ad_exit(1); } } #ifdef GRAD_DIAG else { cout << "Wrote " << ierr << "bytes into temp. grad. file\n"; } { OFF_T lpos = LSEEK(gradient_structure::_GRADFILE_PTR,0L,SEEK_CUR); cout << "Offset in file after write is " << lpos << " bytes from the beginning\n"; } #endif //keep track of the size of the grad_stack gs->TOTAL_BYTES += nbw; ptr = ptr_first; } /** * Description not yet available. * \param */ void grad_stack::create_gradfile() { #if defined (__TURBOC__) _GRADFILE_PTR1=open(gradfile_name1, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR); _VARSSAV_PTR=open(var_store_file_name, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR); #elif defined (__ZTC__) _GRADFILE_PTR1=open(gradfile_name1, O_RDWR | O_CREAT | O_TRUNC , S_IRUSR | S_IWUSR); _VARSSAV_PTR=open(var_store_file_name, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); #elif defined (__NDPX__) _GRADFILE_PTR1=creat(gradfile_name1, O_RDWR); _VARSSAV_PTR=creat(var_store_file_name, O_RDWR); #elif defined (__WAT32__) _GRADFILE_PTR1=open(gradfile_name1, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR); _VARSSAV_PTR=open(var_store_file_name, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR); #else _GRADFILE_PTR1=open(gradfile_name1, O_RDWR | O_CREAT | O_TRUNC | O_BINARY , 0777); _VARSSAV_PTR=open(var_store_file_name, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, 0777); #endif if (_GRADFILE_PTR1 == -1) { ad_printf("Error opening temporary gradient file" " %s\n",gradfile_name1); ad_exit(1); } if (_VARSSAV_PTR == -1) { perror("Error opening temporary gradient file"); cerr <<" Attempting to open " << var_store_file_name <<"\n"; ad_exit(1); } #if defined (__TURBOC__) _GRADFILE_PTR2=open(gradfile_name2, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR); #elif defined (__ZTC__) _GRADFILE_PTR2=open(gradfile_name2, O_RDWR | O_CREAT | O_TRUNC , S_IRUSR | S_IWUSR); #elif defined (__NDPX__) _GRADFILE_PTR2=creat(gradfile_name2, O_RDWR); #elif defined (_MSC_VER) _GRADFILE_PTR2=open(gradfile_name2, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, S_IREAD | S_IWRITE); #elif defined (__WAT32__) _GRADFILE_PTR2=open(gradfile_name2, O_RDWR | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR); #else _GRADFILE_PTR2=open(gradfile_name2, O_RDWR | O_CREAT | O_TRUNC | O_BINARY , 0777); #endif if (_GRADFILE_PTR2 == -1) { perror("Error opening temporary gradient file"); cerr <<" Attempting to open " << gradfile_name2 <<"\n"; ad_exit(1); } } /** If there is another file set the handle to point to it otherwise we are out of room */ void grad_stack::increment_current_gradfile_ptr() { if (_GRADFILE_PTR == _GRADFILE_PTR2) { cerr << "Attempted to open a third gradient file -- There is\n" "probably no more room on the TMP1 (if defined) device\n" "if possible set TMP1 environment string to a device with more room\n"; ad_exit(1); } strcpy(gradfile_name, gradfile_name2); _GRADFILE_PTR = _GRADFILE_PTR2; } /** If there is a previous file set the handle to point to it otherwise return a -1 */ int grad_stack::decrement_current_gradfile_ptr() { if (_GRADFILE_PTR == _GRADFILE_PTR1) { return -1; } strcpy(gradfile_name, gradfile_name1); _GRADFILE_PTR = _GRADFILE_PTR1; return 0; } #ifdef _MSC_VER int grad_stack::gradfile_handle() #else int& grad_stack::gradfile_handle() #endif { return _GRADFILE_PTR; } /** * Description not yet available. * \param */ char* grad_stack::get_gradfile_name() { return gradfile_name; } /** * Description not yet available. * \param */ void grad_stack::set_gbuffer_pointers() { if (length > 10000L) { //make the buffer end_buf_size unsigned int end_buf_size=5000L; ptr_first+=length-end_buf_size; length=end_buf_size; } } /** * Description not yet available. * \param */ void grad_stack::set_gradient_stack0(void (* func)(void),double * dep_addr) { #ifdef NO_DERIVS if (!gradient_structure::no_derivatives) { #endif if (ptr > ptr_last) { // current buffer is full -- write it to disk and reset pointer // and counter this->write_grad_stack_buffer(); } ptr->func = func; ptr->dep_addr = dep_addr; ptr++; #ifdef NO_DERIVS } #endif }
2aa4b4f063558386bb591977c1b302892ab55f55
a2edddc09740e8c2ff3a483f26c786eba6f14806
/impgears/camera/StrategicCamera.h
d97b4e5b9a292371225fdc4f68c37cbf6207a612
[ "MIT" ]
permissive
BtPht/ImpGears
233c97947a452ac6f17b68a3a3263014564b4e74
199f2648982a0aa555f15d3d4f9414d7033243a0
refs/heads/master
2021-01-18T09:02:20.468306
2015-02-22T22:37:48
2015-02-22T22:37:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
489
h
StrategicCamera.h
#ifndef IMP_STRATEGICCAMERA_H #define IMP_STRATEGICCAMERA_H #include "graphics/GLcommon.h" #include "camera/Camera.h" IMPGEARS_BEGIN /// \brief Defines a strategic camera. class StrategicCamera : public Camera { public: StrategicCamera(); virtual ~StrategicCamera(); virtual void initialize(); virtual void onEvent(const imp::Event& evn); virtual void update(); protected: private: }; IMPGEARS_END #endif // IMP_STRATEGICCAMERA_H
22c6e653886397d0329b0e156b5594ccf3686449
5f7b2dfaa679a7bc32533c0a681d6c7aa6f5301c
/Source/EscapeHouse/Grabber.cpp
631464b4184ccd1e96d8eac8dc7ebdf4fc1ebacf
[]
no_license
teriologia/3D-puzzle
1f97b0dd49adc0a35d04640088b8714fb9de51bd
ca90c268c152e482264c0ff30ce446795ac181b5
refs/heads/master
2020-03-26T14:02:19.681998
2018-08-16T10:04:39
2018-08-16T10:04:39
144,968,726
1
0
null
null
null
null
UTF-8
C++
false
false
3,426
cpp
Grabber.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Grabber.h" #define OUT // Sets default values for this component's properties UGrabber::UGrabber() { // Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features // off to improve performance if you don't need them. PrimaryComponentTick.bCanEverTick = true; } // Called when the game starts void UGrabber::BeginPlay() { Super::BeginPlay(); FindPhysicsComp(); InputCompEvents(); } // Called every frame void UGrabber::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) { Super::TickComponent(DeltaTime, TickType, ThisTickFunction); //add handler to reachable distance end if (!handler) { return; } if (handler->GrabbedComponent) { handler->SetTargetLocation(GetLineEnd()); } } //grab the object void UGrabber::Grab() { auto HitResult = GetObjectInReach(); auto ComponentToGrab = HitResult.GetComponent(); auto ActorHit = HitResult.GetActor(); //if action hit physicbody component ready to run this code if (ActorHit) { if (!handler) { return; } handler->GrabComponent( ComponentToGrab, NAME_None, //no bones needed ComponentToGrab->GetOwner()->GetActorLocation(), true //allow to rotation ); } } //release the object when up to mouse button void UGrabber::Release() { if (!handler) { return; } handler->ReleaseComponent(); } //finding physics handler in the character_bp if we don't add physics handler giving to error void UGrabber::FindPhysicsComp() {//physics handler handler = GetOwner()->FindComponentByClass<UPhysicsHandleComponent>(); if (handler == nullptr) { UE_LOG(LogTemp, Error, TEXT("%s Missing physic handler"), *GetOwner()->GetName()); } } //finding buttons to engine/inputs tab and binding actions and running functions name must be same void UGrabber::InputCompEvents() { //input comp actions handlerInput = GetOwner()->FindComponentByClass<UInputComponent>(); if (handlerInput) { UE_LOG(LogTemp, Warning, TEXT("input comp. found")); handlerInput->BindAction("Grab", IE_Pressed, this, &UGrabber::Grab); handlerInput->BindAction("Grab", IE_Released, this, &UGrabber::Release); } else { UE_LOG(LogTemp, Error, TEXT("%s Missing input comp."), *GetOwner()->GetName()); } } //getting line end for every tick FVector UGrabber::GetLineEnd() { //get character's reachable distance FVector PlayerViewLocation; FRotator PlayerViewRotation; GetWorld()->GetFirstPlayerController()->GetPlayerViewPoint( OUT PlayerViewLocation, OUT PlayerViewRotation ); return PlayerViewLocation + PlayerViewRotation.Vector() * reach; } FVector UGrabber::GetLineStart() { //get character's reachable distance FVector PlayerViewLocation; FRotator PlayerViewRotation; GetWorld()->GetFirstPlayerController()->GetPlayerViewPoint( OUT PlayerViewLocation, OUT PlayerViewRotation ); return PlayerViewLocation; } //Making Ray-cast and setting up to work only on physicsbody const FHitResult UGrabber::GetObjectInReach() { ///raycast setup FHitResult HitResult; FCollisionQueryParams TraceParams(FName(TEXT("")), false, GetOwner()); GetWorld()->LineTraceSingleByObjectType( OUT HitResult, GetLineStart(), GetLineEnd(), FCollisionObjectQueryParams(ECollisionChannel::ECC_PhysicsBody), TraceParams ); return HitResult; }
29bb4a233f5f3ff655ff26b5f68e7b34200b022d
de8472c3d42011f440ccc3dc13474a697a13695f
/HEPGenPlusPlus-1.2-RC1/libhepgen/hMosseGen.cpp
a68e891d120529221a8e886d9d80a0c4117740ac
[]
no_license
drewkenjo/hepgen
17ebfd8c9007662033a1b8c9b9ad57a4fa427d2c
030e2ac23c47d1e3edb4fc6b1900d6aec33eefa1
refs/heads/master
2023-05-25T09:17:33.014437
2023-05-20T06:16:04
2023-05-20T06:16:04
162,611,707
0
0
null
null
null
null
UTF-8
C++
false
false
31,169
cpp
hMosseGen.cpp
#include "hMosseGen.h" #define DEBUG 0 const Complexe me(0.511e-3,0.); const Complexe mmu(0.105,0.); const Complexe i(0.,1.); const Complexe ni(0.,-1.); const Complexe PI(3.14159265359); const Complexe ELEC(0.3028619); const CMatrix g0("gamma0",0); const CMatrix g1("gamma1",1); const CMatrix g2("gamma2",2); const CMatrix g3("gamma3",3); const CMatrix gamma5("gamma5",5); const CM_Lorentz_Tensor sigma("sig",0,"rho",0,"sigma tensor"); const CM_Lorentz_Vector gamm("mug",1,g0,g1,g2,g3); void HPhysicsGenDVCSMosse::generateEvent() { bool eventOK = false; //HPhysicsGen::generateEvent(); //generate Nu while (!eventOK) { event->getStruct()->listOfParticles.resize(6); event->getStruct()->recoil.setParticleAuxFlag(1); //event->reset(); if (!generateNu()) continue; //this will set the beam parameters in the future when beamfilereading is implemented if (!setBeam()) continue; //generate Q^2 if (!generateQSQ()) continue; //meson mass to 0 if (!generateMesonMass()) continue; if(!generatePhiGamma()) continue; //maybe this will be implemented in the futute if (!generateElastic()) continue; //generate the smearing if (!generateSmearing()) continue; //generate the mandelstam t if (!generatet()) continue; //generate the gamma kinematics if (!generateOutgoingParticle()) continue; event->getStruct()->outPart1.setParticleType(hepconst::typeGamma); event->getStruct()->outPart1_Lab.setParticleType(hepconst::typeGamma); //calc the pt and transform outgoing vectors to lab system event->calcPT(); /*do some special stuff here for histogramming */ //get the theta between outgoing and gamma* HLorentzVector gammaVirtLab = event->goToLabSystem(event->getStruct()->gammaVirt.getVector(),event->getStruct()->CMS); //get 3-outvectors in labsystem HVector3 gammaVirtLabThree = gammaVirtLab.getVector(); HVector3 outPart1LabThree = event->getStruct()->outPart1_Lab.getVector().getVector(); //normalize them, we only want some angles! gammaVirtLabThree.normalize(1.0); outPart1LabThree.normalize(1.0); //get the scalar product of them theta_gamma_gammavirt = acos(gammaVirtLabThree.dotProduct(outPart1LabThree)); /* done with special histogramming stuff */ //calculate the phi in DVCS if (!calculatePhir()) continue; //calculate the weights of BH, dvcs calcWeights(); HVector3 incMuon = event->getStruct()->incBeamParticle.getTVector(); //get 3-outvectors in labsystem HVector3 GammaLabThree = event->getStruct()->outPart1_Lab.getTVector(); HVector3 scatMuonThree = event->getStruct()->scatBeamParticle.getTVector(); HVector3 ProtonLabThree = event->getStruct()->recoil.getTVector(); HVector3 pro_pho_cross = ProtonLabThree.crossProduct(GammaLabThree); HVector3 mu_cross = incMuon.crossProduct(scatMuonThree); double scalar = GammaLabThree.dotProduct(mu_cross); mu_cross.normalize(1.0); pro_pho_cross.normalize(1.0); double plane_angle = acos(mu_cross.dotProduct(pro_pho_cross)); double signum=1.; if (scalar<0) signum=-1.; if (scalar==0) signum=0.; double phi_dvcs=plane_angle*signum; if (doDD) ddGotoLab(); eventOK = true; if (paramMan->getKeyContents( "ENABLE_DEBUG" ).at ( 1 ) == "1"){ cout << "WeightsDebug: " << weightresult0 << " " <<weightresult1 << " " << weightresult2 << " " << event->getStruct()->xbj << " " << phi_dvcs << " " << event->getT() << " " << event->getQsq() << " " << event->getTotalPhaseFactor() << endl; } } event->rotXToZ(); setParameters(); setUserVars(); generateListOfParticles(); printf("Event finished! (just for your curiosity about speed ;) \n"); if (DEBUG == 1) { event->getStruct()->listOfParticles.at(0)->printDebugHeader(); for (int i =0; i < event->getStruct()->listOfParticles.size(); i ++ ) { cout << i+1 << " "; event->getStruct()->listOfParticles.at(i)->printDebug(); } } } void HPhysicsGenDVCSMosse::addHistograms() { HPhysicsGen::addHistograms(); bookMan->addHBook1D(&weightresult0,&event->getStruct()->dummyW,100,0,1,"Weightresult0 (DVCS)"); bookMan->addHBook1D(&weightresult1,&event->getStruct()->dummyW,100,0,1,"Weightresult1 (BH)"); bookMan->addHBook1D(&weightresult2,&event->getStruct()->dummyW,100,-100,100,"Weightresult2 (Interference)"); bookMan->addHBook1D(&phir,&weight,100,0,6.5,"Phi_r (weight)"); bookMan->addHBook1D(&phir,&none,100,0,6.5,"Phi_r (no weight)"); bookMan->addHBook1D(&phir,&weightresult0,100,0,6.5,"Phi_r (weight-DVCS)"); bookMan->addHBook1D(&phir,&weightresult1,100,0,6.5,"Phi_r (weight-BH)"); bookMan->addHBook1D(&phir,&weightresult2,100,0,6.5,"Phi_r (weight-Interference)"); bookMan->addHBook1D(&phi_out, &weight,100,0,6.5,"Phi_out"); bookMan->addHBook1D(&theta_out, &weight,100,0,3.5,"Theta_out"); bookMan->addHBook1D(&theta_gamma_gammavirt, &weightresult1,300,0,0.3,"Theta_GAMMA_GAMMAVIRT(BH weight)"); bookMan->addHBook1D(&event->getStruct()->tprim,&event->getStruct()->dummyW,100,0,1,"TPRIM_NOWEIGHT"); } /* maybe this will be added later, lets first see if it works without */ void HPhysicsGenDVCSMosse::setParameters() { paramMan->getStruct()->PARL.at(6)=hepconst::typeGamma; //no decays here so its just 0 and 0 for the decay particles paramMan->getStruct()->PARL.at(7)=0.; paramMan->getStruct()->PARL.at(8)=0.; } bool HPhysicsGenDVCSMosse::generateMesonMass() { m_meson = 0.0; //this sets the PARLD correctly HPhysicsGen::generateMesonMass(); return true; } HPhysicsGenDVCSMosse::HPhysicsGenDVCSMosse(CLHEP::HepRandom* _randGen, HParamManager* _paramMan, HEvent* _event, HBooker* _booker, HBooker* _ddBooker) : HPhysicsGen(_randGen, _paramMan, _event, _booker, _ddBooker) { printf("CAUTION! Ultra-Experimental VGG-DVCS-Generator loading! This might be slow as hell!!!!! \n"); std::cout << "VGG-DVCS-Generator loading!! " << std::endl; myRandom = _randGen; paramMan = _paramMan; event = _event; bookMan = _booker; GaussEngine = new CLHEP::RanluxEngine(); myRandomGauss = new CLHEP::RandGauss(GaussEngine); bookMan->addHBook1D(&phir,&event->getStruct()->dummyW,100,0,2*M_PI,"Phi_r"); none=1; //for (int i =1;i<10;i++) // cout << "random num "<<i<<" " << myRandom->flat()<<endl; event->getStruct()->type = hepconst::DVCS; //build the list event->getStruct()->listOfParticles.clear(); event->getStruct()->listOfParticles.push_back(&event->getStruct()->incBeamParticle); event->getStruct()->listOfParticles.push_back(&event->getStruct()->targetParticle); event->getStruct()->listOfParticles.push_back(&event->getStruct()->gammaVirt); event->getStruct()->listOfParticles.push_back(&event->getStruct()->scatBeamParticle); event->getStruct()->listOfParticles.push_back(&event->getStruct()->outPart1_Lab); event->getStruct()->listOfParticles.push_back(&event->getStruct()->recoil); //now set the sharp-mass-flags event->getStruct()->listOfParticles.at(0)->setSharpMass(true); event->getStruct()->listOfParticles.at(1)->setSharpMass(true); event->getStruct()->listOfParticles.at(2)->setSharpMass(false); event->getStruct()->listOfParticles.at(3)->setSharpMass(true); event->getStruct()->listOfParticles.at(4)->setSharpMass(true); event->getStruct()->listOfParticles.at(5)->setSharpMass(true); //now we set the origins - these mean the (index-number+1) of the particle from which the particle originates //target particles dont have an origin event->getStruct()->listOfParticles.at(0)->setParticleOrigin(0); event->getStruct()->listOfParticles.at(1)->setParticleOrigin(0); event->getStruct()->listOfParticles.at(2)->setParticleOrigin(1); event->getStruct()->listOfParticles.at(3)->setParticleOrigin(1); event->getStruct()->listOfParticles.at(4)->setParticleOrigin(3); event->getStruct()->listOfParticles.at(5)->setParticleOrigin(2); //set the aux-flags of the particles, 3 are dead alreadz 3 are living event->getStruct()->listOfParticles.at(0)->setParticleAuxFlag(21); event->getStruct()->listOfParticles.at(1)->setParticleAuxFlag(21); event->getStruct()->listOfParticles.at(2)->setParticleAuxFlag(21); event->getStruct()->listOfParticles.at(3)->setParticleAuxFlag(1); event->getStruct()->listOfParticles.at(4)->setParticleAuxFlag(1); event->getStruct()->listOfParticles.at(5)->setParticleAuxFlag(1); //set the daughter-line-numbers event->getStruct()->listOfParticles.at(0)->setParticleDaughter1(3); event->getStruct()->listOfParticles.at(1)->setParticleDaughter1(6); event->getStruct()->listOfParticles.at(2)->setParticleDaughter1(5); event->getStruct()->listOfParticles.at(3)->setParticleDaughter1(0); event->getStruct()->listOfParticles.at(4)->setParticleDaughter1(0); event->getStruct()->listOfParticles.at(5)->setParticleDaughter1(0); //set the daughter-line-numbers #2 event->getStruct()->listOfParticles.at(0)->setParticleDaughter2(4); event->getStruct()->listOfParticles.at(1)->setParticleDaughter2(0); event->getStruct()->listOfParticles.at(2)->setParticleDaughter2(0); event->getStruct()->listOfParticles.at(3)->setParticleDaughter2(0); event->getStruct()->listOfParticles.at(4)->setParticleDaughter2(0); event->getStruct()->listOfParticles.at(5)->setParticleDaughter2(0); } void HPhysicsGenDVCSMosse::setUserVars() { HPhysicsGen::setUserVars(); event->getStruct()->USERVAR.at(2)=weight; event->getStruct()->USERVAR.at(15)=weightresult0; event->getStruct()->USERVAR.at(16)=weightresult1; } void HPhysicsGenDVCSMosse::generateListOfParticles() { //we set the particle IDs here and make the list ready. event->getStruct()->incBeamParticle.setParticleType(paramMan->getBeamPart()); event->getStruct()->scatBeamParticle.setParticleType(paramMan->getBeamPart()); event->getStruct()->gammaVirt.setParticleType(hepconst::typeGamma); event->getStruct()->outPart1_Lab.setParticleType(hepconst::typeGamma); } HPhysicsGenDVCSMosse::~HPhysicsGenDVCSMosse() { delete GaussEngine; delete myRandomGauss; } void HPhysicsGenDVCSMosse::calcWeights(hWeightInterface _in, double& BH, double& DVCS, double& INT) { int process,dterm,pipole,grap,ok,prop; double in,lepton,charge=1.,phasespace; double thetm,thetM,dthet; double tm,tM,dt; double phim,phiM,dphi; Complexe Q2,xb,phi,kin,theta,tin,tmin; float dX=0.,Xmin=1e8,Xmax=-1e8,Ymin=1e8,Ymax=-1e8; int tdep=0,DD=0; dterm = 1.0; double tcoef=0.8,Ju=0.34,Jd=-0.03,b=1.; tcoef = _in.alphap; //lab=0, invariant=1 phasespace = 1; //regge type tdep = 1; //pion pole for e tilde pipole = 0; static GpdInfo info(b,tdep,tcoef,dterm,DD,Ju,Jd,pipole); //propagator term of quark with xi' (0) or 2xi'-xi (1) prop = 0; //use muon as lepton Complexe ml = mmu; kin=Complexe(_in.beamE); Q2=Complexe(_in.qsq); xb=Complexe(_in.xbj); charge = _in.clept; tmin=-1.*Q2/xb*(mp*xb+Q2/2./mp/xb-(Q2+Q2.sq()/4./mp.sq()/xb.sq()).sqroot())/ (mp +Q2/2./mp/xb-(Q2+Q2.sq()/4./mp.sq()/xb.sq()).sqroot()); Complexe theta1=acos( pow(1.+4.*0.88*xb.sq().real()/Q2.real(),-0.5) *( 1.+2*0.88*xb*(-1.+Q2)/Q2/(-1.+Q2/xb)).real() ); tin=_in.t; C_Lorentz_Vector k1,p1,k2,p2,q,qp,delta; phi = _in.phir; cinematiqueOZT(&k1,&p1,&k2,&p2,&q,&qp,&delta,ml,kin,Q2,xb,tin,phi); theta =acos( ( q.GetE()/q.GetP()-q.C(qp.Idxd("mu",0))/q.GetP()/qp.GetP()).real() ); // Vecteurs de polarisation: jauge de Lorentz. //************************* C_Lorentz_Vector qp_pol[2]; // attention indice contravariant -> espace opppose qp_pol[0]=C_Lorentz_Vector("nu",0,0.,-1.*cos(theta)/sqrt(2.0),i/sqrt(2.0),sin(theta)/sqrt(2.0)); qp_pol[1]=C_Lorentz_Vector("nu",0,0.,cos(theta)/sqrt(2.0),i/sqrt(2.0),-1.*sin(theta)/sqrt(2.0)); // qp_pol[0]=C_Lorentz_Vector("nu",0,0.,-1.*cos(theta),0.,sin(theta)); // qp_pol[1]=C_Lorentz_Vector("nu",0,0.,0.,1.,0.); C_Lorentz_Vector q_pol[3]; // attention indice contravariant -> espace opppose q_pol[0]=C_Lorentz_Vector ("mu",0,0.,-1./sqrt(2.0),i/sqrt(2.0),0); q_pol[2]=C_Lorentz_Vector("mu",0,0.,1/sqrt(2.0),i/sqrt(2.0),0); q_pol[1]=C_Lorentz_Vector("mu",0,q.GetP(),0.,0.,-1.*q.GetE())/Q2.sqroot(); Complexe epsil=( (k1.GetP()+k2.GetP()).sq()-q.GetP().sq() )/((k1.GetP()+k2.GetP()).sq()+q.GetP().sq() ); //cout<<"epsilon= "<<epsil<<endl; // Calcul des vecteurs de sudakoff // cout<<"cinematique OK"<<endl; C_Lorentz_Vector P=(p1+(C_Lorentz_Vector)p2)/2.; // cout<<q<<qp<<p1<<p2<<P<<endl; Complexe mbar2=P.Mass2(); Complexe Ppq=P.C(q.Idxd("mu",0)); Complexe xip=( (1.-mbar2*q.Mass2()/Ppq.sq()).sqroot()-1. )*Ppq/mbar2/2.; Complexe xin=xip*(Q2-tin)/(Q2+4*mbar2*xip.sq()); Complexe fact=-1.*q.Mass2()/4./xip+xip*mbar2; C_Lorentz_Vector nsud=(2.*xip*P+q)/fact; C_Lorentz_Vector psud=(Q2/4./xip*P-mbar2/2.*q)/fact; // cout<< psud<<nsud<<endl; // real xi in propagartor is 2xi'-xi: // cout<<"Q2="<<Q2<<" xb="<<xb<<" t="<<tin<<" mb="<<mbar2<<" Pdq="<<Ppq<<" xip="<<xip<<" xin="<<xin<<endl; Complexe xi=(prop==1)? 2.*xip-xin : xip ; if (xi.real()<=2e-5) error("2*xi'-xi is too low: < 2e-5\n\t program is no more safe, sorry! ( check that t/Q2 is not >1 )\n"); if (xi.real()>=1) error("t is too high, and I refuse to compute this!!\n"); // BETHE HEITLER: //************** // partie leptonique Complexe pol1=(k2+qp).Mass2()-ml.sq(); Complexe pol2=(k1-qp).Mass2()-ml.sq(); CM_Lorentz_Tensor Obh_mu_nu=ELEC.sq()*( gamm.Idxd("mu",1)* (k1.Slash()-qp.Slash()+CMatrix(ml))/pol2*gamm.Idxd("nu",1) +gamm.Idxd("nu",1)* (k2.Slash()+qp.Slash()+CMatrix(ml))/pol1*gamm.Idxd("mu",1) ); Complexe sbh=(k2+qp).Mass2(); Complexe tbh=(k1-qp).Mass2(); // CM_Lorentz_Tensor Obh_mu_nu= // gamm.Idxd("mu",1)* // (k1.Slash()-qp.Slash())/(-2.*k1.C(qp.Idxd("mu",0)))*gamm.Idxd("nu",1) // +gamm.Idxd("nu",1)* // (k2.Slash()+qp.Slash())/(2.*k2.C(qp.Idxd("mu",0)))*gamm.Idxd("mu",1) // partie hadronique CM_Lorentz_Vector OF_mu=ELEC*( F1p(tin)*gamm.Idxd("mu",0) +i*F2p(tin)/2./mp*sigma.C(delta.Idxd("rho",1) ).Idxd("mu",0) ); // DVCS: //***** //coefficients: Complexe Q2eff=Q2; if ( Q2.real()<1.25) { cout<<"replacing Q2 by 1.25 in parton distributions"<<endl; Q2eff=1.25; } info.SetM(Q2); Complexe GpIHPa= Integrate(Dpos,H,"4aPa",xi,tin,Q2eff,info,0,xi.real(),10) +Integrate(Dpos,H,"4aPa",xi,tin,Q2eff,info,xi.real(),1,10) +Integrate(Dneg,H,"4aPa",xi,tin,Q2eff,info,0,xi.real(),20) +Integrate(Dneg,H,"4aPa",xi,tin,Q2eff,info,xi.real(),1,20) +H("4aPa",xi,xi,tin,Q2eff,info)*log( ( (1.-xi)/xi ).real() ) -i*PI*H("4aPa",xi,xi,tin,Q2eff,info); Complexe GpIEPa= Integrate(Dpos,E,"4aPa",xi,tin,Q2eff,info,0,xi.real(),10) +Integrate(Dpos,E,"4aPa",xi,tin,Q2eff,info,xi.real(),1,10) +Integrate(Dneg,E,"4aPa",xi,tin,Q2eff,info,0,xi.real(),20) +Integrate(Dneg,E,"4aPa",xi,tin,Q2eff,info,xi.real(),1,20) +E("4aPa",xi,xi,tin,Q2eff,info)*log( ( (1.-xi)/xi ).real() ) -i*PI*E("4aPa",xi,xi,tin,Q2eff,info); Complexe GmIHtPs= Integrate(Dpos,Ht,"4aPs",xi,tin,Q2eff,info,0,xi.real(),10) +Integrate(Dpos,Ht,"4aPs",xi,tin,Q2eff,info,xi.real(),1,10) -Integrate(Dneg,Ht,"4aPs",xi,tin,Q2eff,info,0,xi.real(),20) -Integrate(Dneg,Ht,"4aPs",xi,tin,Q2eff,info,xi.real(),1,20) -Ht("4aPs",xi,xi,tin,Q2eff,info)*log( ( (1.-xi)/xi ).real() ) +i*PI*Ht("4aPs",xi,xi,tin,Q2eff,info); // only pi-pole in Et: with xi non prime Complexe GmIEtPs= GmEt("4aPs",xin,tin,Q2eff,info); // cout<<xi<<" "<<Q2eff<<" "<<tin<<endl; // cout<<"intH="<<GpIHPa<<endl; // cout<<"intE="<<GpIEPa<<endl; // cout<<"intHt="<<GmIHtPs<<endl; // cout<<"intEt="<<GmIEtPs<<endl; //operateurs: CMatrix nSlash= nsud.Slash(); CMatrix inDsigma= i*sigma.C(delta.Idxd("rho",1)).C(nsud.Idxd("sig",1))/2./mp; CMatrix nSlashg5= nsud.Slash()*gamma5; CMatrix g5Dn= gamma5*delta.C( nsud.Idxd("mu",0) )/2./mp; // structure de Lorentz: C_Lorentz_Tensor S_mu_nu=0.5*( psud*nsud.Idxd("nu",1) +psud.Idxd("nu",1)*nsud -gT("mu",1,"nu",1) ); C_Lorentz_Tensor A_mu_nu=0.5*i*LeviCita("mu",1,"nu",1, psud*nsud ); // gauge corrections: C_Lorentz_Vector delta_perp=delta+2.*xin*psud-xin*mbar2*nsud; C_Lorentz_Tensor Sg_mu_nu=S_mu_nu -0.5*C_Lorentz_Tensor(delta_perp,psud.Idxd("nu",1))/psud.C(qp.Idxd("mu",0)); C_Lorentz_Tensor Ag_mu_nu=A_mu_nu +0.5*i*C_Lorentz_Tensor(LeviCita("mu",1,"nu",1,psud*nsud).C(delta_perp.Idxd("nu",0)), psud.Idxd("nu",1))/psud.C(qp.Idxd("mu",0)); // cout<<"sym\n"<<S_mu_nu<<endl; // cout<<"symcorr \n" <<-1./2.* C_Lorentz_Tensor(delta_perp,psud.Idxd("nu",1))/psud.C(qp.Idxd("mu",0))<<endl; // cout<<"symcorr \n" <<-1./2.* delta_perp*psud.Idxd("nu",1)/psud.C(qp.Idxd("mu",0))<<endl; // cout<<"asym\n"<<A_mu_nu<<endl; // cout<<"asymcorr \n" <<0.5*i*C_Lorentz_Tensor(LeviCita("mu",1,"nu",1,psud*nsud).C(delta_perp.Idxd("nu",0)), // psud.Idxd("nu",1))/psud.C(qp.Idxd("mu",0))<<endl; // essai de verif avec s: // int pol, polp; // for (int ii=0;ii<3;ii++) // for (int ij=0;ij<2;ij++) { // if (ii==0) pol=-1;if (ii==1) pol=0;if (ii==2) pol=1; // if (ij==0) polp=-1;if (ij==1) polp=1; // // cout<<"s("<<polp<<","<<pol<<")="<<q_pol[ii].C(S_mu_nu).C(qp_pol[ij].Conj())<< // " inv: "<<q_pol[ii].C(Sg_mu_nu).C(qp_pol[ij].Conj())<< // " à la main: "<<-0.5*q_pol[ii].C(qp_pol[ij].Idxd("mu",1).Conj())<< // " premier: "<<0.25*(pol*polp*cos(theta)+1.)<<endl; // cout<<"a("<<polp<<","<<pol<<")="<<q_pol[ii].C(A_mu_nu).C(qp_pol[ij].Conj())<< // " inv: "<<q_pol[ii].C(Ag_mu_nu).C(qp_pol[ij].Conj())<< // " à la main: "<< i/2.*(q_pol[ii].GetX()*qp_pol[ij].GetY().Conj()-q_pol[ii].GetY()*qp_pol[ij].GetX().Conj())<< // " premier: "<<-0.25*(polp*cos(theta)+pol)<<endl; // } Complexe Mbh,Mvcs,Mbv,Mbv_charge; Complexe Mbh_plus,Mbv_plus,Mvcs_plus;// amplitude M+ Complexe Mbh_minus,Mbv_minus,Mvcs_minus;// amplitude M- Complexe MRbh,MRvcs,MRbv,MRbv_charge; // amplitude in radiative gauge // Complexe MFbh,MFbv,MFvcs; C_Lorentz_Tensor H_mu_nu; C_Lorentz_Tensor H[4]; for (int hp1=0; hp1<2; hp1++) for (int hp2=0; hp2<2; hp2++) { // boucle helicite hadron helicity hep1 = (hp1==0)? neg : pos ; helicity hep2 = (hp2==0)? neg : pos ; Spinor up2(part,p2,hep2,mp,spin); Spinor up1(part,p1,hep1,mp,spin); // cout<<"hp1="<<hp1<<" hp2="<<hp2<<endl; // BH: C_Lorentz_Vector F_mu( up2.bar() , OF_mu , up1 ); // C_Lorentz_Tensor SFbh[2]; // SFbh[0]=( (k2+qp)/sbh + (k1-qp)/tbh )* qp_pol[0].Conj().Idxd("nu",1) // +( k2.C(qp_pol[0].Conj().Idxd("mu",0))/sbh + k1.C(qp_pol[0].Conj().Idxd("mu",0))/tbh )* gT("mu",1,"nu",1) // - qp_pol[0].Idxd("mu",1).Conj()*( (k2+qp).Idxd("nu",1)/sbh + (k1-qp).Idxd("nu",1)/tbh ); // SFbh[1]=( (k2+qp)/sbh + (k1-qp)/tbh )* qp_pol[1].Conj().Idxd("nu",1) // +( k2.C(qp_pol[1].Conj().Idxd("mu",0))/sbh + k1.C(qp_pol[1].Conj().Idxd("mu",0))/tbh )* gT("mu",1,"nu",1) // - qp_pol[1].Idxd("mu",1).Conj()*( (k2+qp).Idxd("nu",1)/sbh + (k1-qp).Idxd("nu",1)/tbh ); // C_Lorentz_Tensor AFbh[2]; // AFbh[0]= i*LeviCita("mu",1,"nu",1, ( (k2+qp)/sbh - (k1-qp)/tbh )*qp_pol[0].Conj() ); // AFbh[1]= i*LeviCita("mu",1,"nu",1, ( (k2+qp)/sbh - (k1-qp)/tbh )*qp_pol[1].Conj() ); // // // cout<<F_mu.Idxd("mu",1)<<endl; // cout<<"S0"<<SFbh[0]<<"A0"<<AFbh[0]<<endl; // DVCS: Complexe u_nSlash_u= up2.bar().vscal(nSlash*up1); Complexe u_nSlashg5_u= up2.bar().vscal(nSlashg5*up1); Complexe u_inDsigma_u= up2.bar().vscal(inDsigma*up1); Complexe u_g5Dn_u= up2.bar().vscal(g5Dn*up1); // cout<<"u_nSlash_u= "<<u_nSlash_u<<endl; // cout<<"u_nSlashg5_u= "<<u_nSlashg5_u<<endl; // cout<<"u_inDsigma_u= "<<u_inDsigma_u<<endl; // cout<<"u_g5Dn_u= "<<u_g5Dn_u<<endl; C_Lorentz_Tensor I_mu_nu=-1.*i*( Sg_mu_nu*( u_nSlash_u*GpIHPa + u_inDsigma_u*GpIEPa ) +Ag_mu_nu*( u_nSlashg5_u*GmIHtPs + u_g5Dn_u*GmIEtPs ) ); H_mu_nu=-1.*i*ELEC.sq()*I_mu_nu; // cout<<"H struct="<<-1.*Sg_mu_nu*u_nSlash_u<<"H coef "<<GpIHPa<<endl; // cout<<"E struct="<<-1.*Sg_mu_nu*u_inDsigma_u<<"E coef "<<GpIEPa<<endl; // cout<<"Ht struct="<<-1.*Ag_mu_nu*u_nSlashg5_u<<"Ht coef "<<GmIHtPs<<endl; // cout<<"Et struct="<<-1.*Ag_mu_nu*u_g5Dn_u<<"Et coef "<<GmIEtPs<<endl; // cout<<I_mu_nu/i<<endl; // cout<<"non gauge invariance: "<<H_mu_nu.C(qp.Idxd("nu",0))<<endl; // H_mu_nu=H_mu_nu-1/psud.C(qp.Idxd("mu",0))*psud.Idxd("nu",1)*H_mu_nu.C(qp.Idxd("nu",0)); // cout<<"restored gauge invariance: "<<H_mu_nu.C(qp.Idxd("nu",0))<<endl; if (hp2==1 && hp1==1) H[0]= H_mu_nu; if (hp2==0 && hp1==0) H[1]= H_mu_nu; if (hp2==0 && hp1==1) H[2]= H_mu_nu; if (hp2==1 && hp1==0) H[3]= H_mu_nu; for (int hl1=0; hl1<2; hl1++) { // boucle helicite lepton helicity hel1 = (hl1==0)? neg : pos ; Spinor uk2(part,k2,hel1,ml,heli); Spinor uk1(part,k1,hel1,ml,heli); //cout<<"heli="<<hel1<<endl; //cout<<k1<<k2<<endl; //cout<<uk1<<uk2<<endl; // BH: C_Lorentz_Tensor Lbh_mu_nu( uk2.bar() , Obh_mu_nu , uk1 ); // cout<<Lbh_mu_nu/ELEC.sq()<<endl; // DVCS: C_Lorentz_Vector L_mu( uk2.bar() , -1.*charge*ELEC*gamm.Idxd("mu",0)/Q2 , uk1 ); // cout<<-1.*L_mu.Idxd("mu",1)*charge/ELEC*Q2<<endl; // C_Lorentz_Vector L_mu("mu",0,0.,0.,0.,0.); // if ( hl2==hl1 ) // L_mu=(hl1==0)? charge*ELEC*(1./Q2/(1-epsil)).sqroot()*( // ( ((1+epsil)/2).sqroot()-((1-epsil)/2).sqroot() )*(cos(phi)-i*sin(phi))*q_pol[2] // -(2*epsil).sqroot()*q_pol[1] // -( ((1+epsil)/2).sqroot()+((1-epsil)/2).sqroot() )*(cos(phi)+i*sin(phi))*q_pol[0]) // : // charge*ELEC*(1./Q2/(1-epsil)).sqroot()*( // ( ((1+epsil)/2).sqroot()+((1-epsil)/2).sqroot() )*(cos(phi)-i*sin(phi))*q_pol[2] // -(2*epsil).sqroot()*q_pol[1] // -( ((1+epsil)/2).sqroot()-((1-epsil)/2).sqroot() )*(cos(phi)+i*sin(phi))*q_pol[0]) // ; C_Lorentz_Vector Tbh_nu=-1.*F_mu.C(Lbh_mu_nu)/tin; C_Lorentz_Vector T_nu=L_mu.C(H_mu_nu); C_Lorentz_Vector Tsum_nu=T_nu+Tbh_nu; // cout<<"Tbh"<<Tbh_nu<<endl; C_Lorentz_Vector Tsum_nu_charge=Tbh_nu-T_nu; // Jauge de Feynmann : douteuse car photon virtuel en jauge de Lorentz <- propagateur // Mbh= -1.*Tbh_nu.C( Tbh_nu.Conj().Idxd("nu",0) ); // Mvcs=-1.* T_nu.C( T_nu.Conj().Idxd("nu",0) ); // Mbv= -1.*Tsum_nu.C( Tsum_nu.Conj().Idxd("nu",0) ); // // MFbh=MFbh+Mbh/4.; // MFvcs=MFvcs+Mvcs/4.; // MFbv=MFbv+Mbv/4.; // Jauge Radiative : Mbh=0.; Mvcs=0.; Mbv=0.; Mbv_charge=0.; for (int pol=0; pol<2; pol++) { // cout<<"bh="<<Tbh_nu.C(qp_pol[pol].Conj())<<"vcs="<<T_nu.C(qp_pol[pol].Conj())<<endl; Mbh=Mbh+Tbh_nu.C(qp_pol[pol].Conj()).Norm2(); Mvcs=Mvcs+T_nu.C(qp_pol[pol].Conj()).Norm2(); Mbv=Mbv+Tsum_nu.C(qp_pol[pol].Conj()).Norm2(); Mbv_charge=Mbv_charge+Tsum_nu_charge.C(qp_pol[pol].Conj()).Norm2(); } Mbh_plus=(hl1==1)? Mbh_plus+Mbh/2. : Mbh_plus; Mbh_minus=(hl1==0)? Mbh_minus+Mbh/2. : Mbh_minus; Mvcs_plus=(hl1==1)? Mvcs_plus+Mvcs/2. : Mvcs_plus; Mvcs_minus=(hl1==0)? Mvcs_minus+Mvcs/2. : Mvcs_minus; Mbv_plus=(hl1==1)? Mbv_plus+Mbv/2. : Mbv_plus; Mbv_minus=(hl1==0)? Mbv_minus+Mbv/2. : Mbv_minus; // cout<<"Mvcs = "<<Mvcs<<endl; MRbh=MRbh+Mbh/4.; MRvcs=MRvcs+Mvcs/4.; MRbv=MRbv+Mbv/4.; MRbv_charge=MRbv_charge+Mbv_charge/4.; } // fin boucle helicite lepton } // fin boucle helicite hadron Complexe Mhel[13]; Mhel[1]=q_pol[2].C(H[0]).C(qp_pol[1].Conj());//cout<<"M++++ = "<<-1.*i*Mhel[1]<<endl; Mhel[2]=q_pol[2].C(H[2]).C(qp_pol[0].Conj()); Mhel[3]=q_pol[2].C(H[0]).C(qp_pol[0].Conj()); Mhel[4]=q_pol[2].C(H[2]).C(qp_pol[1].Conj());//cout<<"M+-++ = "<<-1.*i*Mhel[4]<<endl; Mhel[5]=q_pol[2].C(H[1]).C(qp_pol[1].Conj());//cout<<"M+-+- = "<<-1.*i*Mhel[5]<<endl; Mhel[6]=q_pol[2].C(H[3]).C(qp_pol[0].Conj()); Mhel[7]=q_pol[2].C(H[1]).C(qp_pol[0].Conj()); Mhel[8]=q_pol[2].C(H[3]).C(qp_pol[1].Conj());//cout<<"M+++- = "<<-1.*i*Mhel[8]<<endl; Mhel[9]=q_pol[1].C(H[0]).C(qp_pol[1].Conj()); Mhel[10]=q_pol[1].C(H[2]).C(qp_pol[0].Conj()); Mhel[11]=q_pol[1].C(H[0]).C(qp_pol[0].Conj()); Mhel[12]=q_pol[1].C(H[2]).C(qp_pol[1].Conj()); Complexe RT,RL; // Reponse T: //********** for (int i=1; i<9; i++) RT=RT+Mhel[i].Norm2(); // Reponse L: //********** for (int i=9; i<13; i++) RL=RL+2.*Mhel[i].Norm2(); // Reponse TT: //********** Complexe RTT= -2.*( Mhel[1].Conj()*Mhel[7]-Mhel[2].Conj()*Mhel[8] +Mhel[3].Conj()*Mhel[5]-Mhel[4].Conj()*Mhel[6] ).real(); // Reponse LT: //********** Complexe RLT= -2.*( Mhel[9].Conj()*(Mhel[1]-Mhel[7]) +Mhel[10].Conj()*(Mhel[2]+Mhel[8]) +Mhel[11].Conj()*(Mhel[3]-Mhel[5]) +Mhel[12].Conj()*(Mhel[4]+Mhel[6]) ).real(); Complexe sectred=0.5*( RT+epsil*RL+epsil*cos(2.*phi)*RTT +(epsil*(1.+epsil)).sqroot()*cos(phi)*RLT ); // Complexe sectred=0.5*( RT ); //cout<<"epsil = "<<epsil<<endl; //cout<<" RT vcs= "<<RT<<" RL vcs= "<<RL<<" RTT vcs= "<<RTT<<" RLT vcs= "<<RLT<<endl; // espace des phases: Complexe mu=q.GetE(); Complexe s=mp.sq()+2.*mp*mu-Q2; Complexe y=mu/k1.GetE(); Complexe phase=(phasespace==0)? 3.88e5*k2.GetP()/k1.GetE()*qp.GetP()/(mp+mu-q.GetP()*cos(theta))/32./mp/(2.*PI).sq().sq()/(2.*PI) : 3.88e5*y.sq()*xb/Q2.sq()/(1.+4*mp.sq()*xb.sq()/Q2).sqroot()/32./(2.*PI).sq().sq(); // double sect=(ELEC.sq()*2./Q2/(1.-epsil)*sectred).real() // *phase.real(); //cout<<"RT= "<<RT<<" RL= "<<RL<<endl; Complexe SSA=(Mbv_plus-Mbv_minus)/(Mbv_plus+Mbv_minus); Complexe SSAvcs=(Mvcs_plus-Mvcs_minus)/ (Mvcs_plus+Mvcs_minus); Complexe SSAbh=(Mbh_plus-Mbh_minus)/ (Mbh_plus+Mbh_minus); // cout<<phase*Mbv_plus<<" "<<phase*Mbv_minus<<endl; // cout<<phase*(Mbv_plus+Mbv_minus)/2.<<" "<<phase*MRbv<<endl; //cout<<MRvcs<<" "<<ELEC.sq()*2./Q2/(1.-epsil)*sectred<<endl; Complexe BA=charge*(MRbv-MRbv_charge)/(MRbv+MRbv_charge); Complexe BAvcs=0; Complexe BAbh=0; BH=(phase*MRbh).real(); DVCS= (phase*MRvcs).real(); INT= (phase*MRbv).real() - BH - DVCS; } void HPhysicsGenDVCSMosse::calcWeights() { if (phir < 0) phir += 2* M_PI; phir_trento = phir; hWeightInterface myInterface; myInterface.qsq = event->getQsq(); myInterface.t = event->getT(); myInterface.clept = paramMan->getclept(); myInterface.slept = paramMan->getslept(); myInterface.beamE = paramMan->getBeamE(); myInterface.phir = phir; myInterface.xbj = event->getXbj(); calcWeights(myInterface,weightresult1,weightresult0,weightresult2); double jacobianDet = event->getQsq() / (2* pow(event->getXbj(),2)*hepconst::w2prma); weightresult0 *= event->getTotalPhaseFactor() / jacobianDet; weightresult1 *= event->getTotalPhaseFactor() / jacobianDet; weightresult2 *= event->getTotalPhaseFactor() / jacobianDet; weight = weightresult0 + weightresult1 + weightresult2; //set it in PARL-struct event->getStruct()->PARL.at(27) = phir; event->getStruct()->PARL.at(28) = 0.; event->getStruct()->PARL.at(29) = 0.; if (!doDD) weightCounter+=weightresult0; } void HPhysicsGenDVCSMosse::cinematiqueOZT(C_Lorentz_Vector *k1,C_Lorentz_Vector *p1,C_Lorentz_Vector *k2,C_Lorentz_Vector *p2,C_Lorentz_Vector *q, C_Lorentz_Vector *qp,C_Lorentz_Vector *delta, Complexe ml,Complexe Ein,Complexe Q2,Complexe xb,Complexe t,Complexe phi) { // repere du photon* sur OZ // variable transfert t *p1=C_Lorentz_Vector(mp,"mu",1,0.,0.,0.); Complexe nu=Q2/2./mp/xb; if ( nu.real() > Ein.real() ) error("\n\t!!!!!! Impossible kinematic nu>E !!! \n"); Complexe qm=(Q2+nu.sq()).sqroot(); *q=C_Lorentz_Vector("mu",1,nu,0.,0.,qm); Complexe qout=nu+t/2./mp; if ( qout.real() < 0. ) error("\n\t!!!!!! Impossible kinematic qout !!!! \n"); Complexe costh=(t+Q2+2.*qout*nu)/2./qout/qm; if ( costh.real()>1 || costh.real()<-1 ) error("\n\t!!!!!! Impossible kinematic cos th !!!! \n"); Complexe sinth=(1.-costh.sq()).sqroot(); *qp=C_Lorentz_Vector("mu",1,qout,qout*sinth,0.,qout*costh); *p2=*q-*qp+*p1; *delta=*p2-*p1; Complexe Eout=Ein-nu; Complexe kout=(Eout.sq()-ml.sq()).sqroot(); Complexe ki=(Ein.sq()-ml.sq()).sqroot(); Complexe cosin =(ki.sq()+qm.sq()-kout.sq())/2./ki/qm; Complexe cosout =(ki.sq()-qm.sq()-kout.sq())/2./kout/qm; // warning phi->-phi by definition of phi *k1=C_Lorentz_Vector("mu",1,Ein,ki*cos(-1.*phi)*(1.-cosin.sq()).sqroot(),ki*sin(-1.*phi)*(1.-cosin.sq()).sqroot(),ki*cosin); //*k2=k1->Idxd("mu2",1)-q->Idxd("mu2",1); *k2=C_Lorentz_Vector("mu",1,Eout,kout*(1.-cosout.sq()).sqroot()*cos(-1.*phi),kout*(1.-cosout.sq()).sqroot()*sin(-1.*phi),kout*cosout); }
8143dfa63d6514d8f0ad91d8849cace40697856a
c6b5af8587d1d6179bd6cc13889552db4a56a128
/10533.cpp
8d67075a8084b2d269188be69096e830d49e80c7
[]
no_license
mju/acm
b997b1d766e165e092226f57600003cf4f8f8414
b5714c53c5fbfc77852598330ca11fb36feda59f
refs/heads/master
2016-09-06T06:13:50.174023
2012-06-02T03:09:30
2012-06-02T03:09:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,401
cpp
10533.cpp
#include <iostream> using std::cout; using std::cin; using std::endl; void initial(bool *p) { int i; for (i=0;i<1001;i++) p[i]=1; p[0]=p[1]=0; } int summation(int key) { int total=0; while (key) total+=key%10,key/=10; return total; } main() { bool prime[1001]; int record[1000001]; int i,j; int howmany; int n; int k; int temp=0; int judge; int first; int t1,t2; record[0]=0; initial(prime); for (i=2;i<1001;i++) for (j=i+1;j<1001;j++) if (prime[j] && j%i==0) prime[j]=0; cin>>n; howmany=0; first=1; for (i=1;i<=1000000;) { if (temp==10) temp=0,first=summation(i); if (i<1000 && prime[first]) { if (prime[i]) howmany++,record[i]=howmany; } else if (i>1000) { if (prime[first]) { judge=1; for (j=2;j<1000;) { if (i%j==0) { judge=0; break; } if (j%2) { j+=2; if (j%5==0 && j>9) j+=2; } else j++; } if (judge && prime[first]) howmany++,record[i]=howmany; } } if (i%2 && i!=1) { i+=2,temp+=2,first+=2; record[i-2]=howmany; record[i-1]=howmany; if (i%5==0 && i>9) i+=2,temp+=2,first+=2,record[i-2]=record[i-1]=howmany; } else i++,temp++,first++,record[i]=howmany; } for (k=1;k<=n;k++) cin>>t1>>t2,cout<<record[t2]-record[t1-1]<<endl; return 0; }
082ea66f8ba4a1a9e640bee551881e9c1bd2fd92
9f9660f318732124b8a5154e6670e1cfc372acc4
/Case_save/Case20/Case/case8/400/U
3581a0164fcccb37956cad9a19061cfe3c79dbf7
[]
no_license
mamitsu2/aircond5
9a6857f4190caec15823cb3f975cdddb7cfec80b
20a6408fb10c3ba7081923b61e44454a8f09e2be
refs/heads/master
2020-04-10T22:41:47.782141
2019-09-02T03:42:37
2019-09-02T03:42:37
161,329,638
0
0
null
null
null
null
UTF-8
C++
false
false
13,135
U
// -*- C++ -*- // File generated by PyFoam - sorry for the ugliness FoamFile { version 2.0; format ascii; class volVectorField; location "400"; object U; } dimensions [ 0 1 -1 0 0 0 0 ]; internalField nonuniform List<vector> 459 ( (0.0397454 0.0839405 0) (-0.163004 0.0236287 0) (-0.184243 0.0174027 0) (-0.214286 0.0128169 0) (-0.237443 0.00764554 0) (-0.253043 0.00218144 0) (-0.25997 -0.00367759 0) (-0.256685 -0.010006 0) (-0.242834 -0.0167695 0) (-0.218902 -0.023204 0) (-0.186684 -0.0284483 0) (-0.148733 -0.0321057 0) (-0.107867 -0.0347648 0) (-0.0697617 -0.0384691 0) (-0.0519626 -0.0446355 0) (0.00704455 0.0057325 0) (-0.0168559 -0.0189964 0) (0.00869312 -0.0252706 0) (0.0269128 -0.0177005 0) (0.0413692 -0.0113969 0) (0.0509493 -0.00707064 0) (0.0559644 -0.00428085 0) (0.0581272 -0.00284479 0) (0.0589597 -0.00218525 0) (0.0593101 -0.00184632 0) (0.0594377 -0.00163179 0) (0.0593648 -0.00145265 0) (0.0590266 -0.00122541 0) (0.0582216 -0.000791099 0) (0.0564105 0.000221201 0) (0.0524635 0.00232123 0) (0.0451768 0.00435359 0) (0.0399693 0.00526096 0) (-0.0184791 0.0193429 0) (0.216832 0.17223 0) (-0.154597 0.0624904 0) (-0.148596 0.0503543 0) (-0.179713 0.0408426 0) (-0.202374 0.0301115 0) (-0.217868 0.018265 0) (-0.225207 0.00486096 0) (-0.222686 -0.0102805 0) (-0.21004 -0.0261022 0) (-0.188199 -0.0403286 0) (-0.15939 -0.0507594 0) (-0.126687 -0.0562273 0) (-0.0935622 -0.0570058 0) (-0.0646855 -0.0547696 0) (-0.0462449 -0.0492823 0) (-0.0305852 -0.0278902 0) (-0.0101819 0.000633263 0) (0.0785915 0.0245518 0) (0.0383927 -0.018328 0) (0.0414127 -0.0271413 0) (0.0511961 -0.0217744 0) (0.058521 -0.0139882 0) (0.0627255 -0.00732352 0) (0.0640903 -0.00251992 0) (0.0640455 2.97376e-05 0) (0.0638503 0.00116305 0) (0.0638542 0.00172552 0) (0.0639366 0.00209227 0) (0.0639772 0.00240232 0) (0.063949 0.00282121 0) (0.0638041 0.00367903 0) (0.0630083 0.00584708 0) (0.0591671 0.0119531 0) (0.049478 0.0166488 0) (0.046203 0.018634 0) (-0.0546369 0.042384 0) (0.378331 0.257918 0) (-0.17448 0.100506 0) (-0.111705 0.0817529 0) (-0.14218 0.0641564 0) (-0.161942 0.0463704 0) (-0.176033 0.0271868 0) (-0.183115 0.00544403 0) (-0.180399 -0.0190041 0) (-0.167629 -0.04418 0) (-0.146572 -0.0660113 0) (-0.120079 -0.0810333 0) (-0.0913295 -0.0877795 0) (-0.0634202 -0.0865741 0) (-0.0391627 -0.0788504 0) (-0.0207472 -0.064413 0) (-0.0061879 -0.0406037 0) (0.00971506 -0.00877546 0) (0.104805 -0.0521921 0) (0.0666742 -0.0462911 0) (0.06274 -0.0375004 0) (0.0658768 -0.0277965 0) (0.0679171 -0.0184041 0) (0.0686426 -0.0107953 0) (0.067098 -0.00901097 0) (0.0643512 -0.00670822 0) (0.0626842 -0.00549692 0) (0.0621095 -0.00482731 0) (0.0620229 -0.00441759 0) (0.06215 -0.00411266 0) (0.0625501 -0.00376343 0) (0.0636737 -0.00306252 0) (0.0666814 -0.000120313 0) (0.0646402 0.016875 0) (0.0509416 0.0283109 0) (0.0539412 0.0347977 0) (-0.0855624 0.0668008 0) (0.522305 0.326968 0) (-0.211375 0.13495 0) (-0.0726808 0.108312 0) (-0.102282 0.0836569 0) (-0.11626 0.0610601 0) (-0.126719 0.0365476 0) (-0.131936 0.00744078 0) (-0.126877 -0.0265714 0) (-0.112609 -0.0612623 0) (-0.0923081 -0.0898452 0) (-0.069286 -0.108096 0) (-0.0461133 -0.114986 0) (-0.0250602 -0.111483 0) (-0.00698057 -0.0996817 0) (0.00848 -0.0799219 0) (0.0228996 -0.0553558 0) (0.0442479 -0.0303124 0) (0.0744701 -0.00580491 0) (0.08458 -0.0374618 0) (0.0717273 -0.039028 0) (0.0652822 -0.0320247 0) (0.0637355 -0.024752 0) (0.0634099 -0.017333 0) (0.0644084 -0.00906258 0) (0.0678003 -0.00580094 0) (0.0728272 -0.0052791 0) (0.0773791 -0.00496567 0) (0.081184 -0.00456194 0) (0.0840766 -0.00379808 0) (0.0853799 -0.00247227 0) (0.0836596 -0.000370999 0) (0.0776872 0.00273785 0) (0.0648787 0.00736006 0) (0.0530896 0.027502 0) (0.0409533 0.0438485 0) (0.057848 0.0557683 0) (-0.12046 0.0889411 0) (0.644961 0.38086 0) (-0.254221 0.163962 0) (-0.0340779 0.123456 0) (-0.0605371 0.0947409 0) (-0.0664466 0.069617 0) (-0.0708297 0.0420606 0) (-0.071591 0.00725977 0) (-0.0597319 -0.0358922 0) (-0.0432709 -0.0783847 0) (-0.0253397 -0.110663 0) (-0.00845886 -0.129205 0) (0.00641611 -0.134085 0) (0.0178604 -0.127345 0) (0.026744 -0.112607 0) (0.0340052 -0.0921898 0) (0.0414409 -0.0690933 0) (0.0514873 -0.0480037 0) (0.062336 -0.0374223 0) (0.0653902 -0.0405774 0) (0.0601635 -0.0365939 0) (0.0538125 -0.0294577 0) (0.0498836 -0.0228237 0) (0.0479391 -0.0169043 0) (0.0480436 -0.0114896 0) (0.0502455 -0.00771418 0) (0.0540922 -0.00619443 0) (0.0581032 -0.0056214 0) (0.06201 -0.0048347 0) (0.0655605 -0.0030166 0) (0.0681742 0.000436778 0) (0.0687666 0.00553238 0) (0.0664564 0.012245 0) (0.0607455 0.0211233 0) (0.0534814 0.0368483 0) (0.0427656 0.0552514 0) (0.065599 0.075118 0) (-0.0243571 0.102044 0) (0.0446024 0.0285182 0) (-0.0641792 -0.0355907 0) (-0.273789 -0.0582913 0) (0.73204 0.426302 0) (-0.294351 0.184309 0) (-0.00514652 0.119499 0) (-0.0173403 0.0957352 0) (-0.0130409 0.0722278 0) (-0.00940024 0.0437159 0) (0.000983535 0.00173382 0) (0.02241 -0.0508144 0) (0.0387288 -0.0951678 0) (0.0507735 -0.125313 0) (0.058217 -0.140296 0) (0.0613615 -0.141705 0) (0.0611489 -0.132389 0) (0.058789 -0.115714 0) (0.0555183 -0.0947015 0) (0.0527616 -0.0724924 0) (0.0515972 -0.0525826 0) (0.0510462 -0.0393197 0) (0.0476586 -0.0337798 0) (0.0409137 -0.0292158 0) (0.0339044 -0.023915 0) (0.0290457 -0.0191611 0) (0.0265526 -0.0152809 0) (0.0263728 -0.0120983 0) (0.0282058 -0.0101336 0) (0.0314276 -0.0097844 0) (0.0352315 -0.00990904 0) (0.0393531 -0.00940627 0) (0.0436277 -0.00737099 0) (0.0477338 -0.0029369 0) (0.0513912 0.00423108 0) (0.0530249 0.0134739 0) (0.0530265 0.0247201 0) (0.0530488 0.0396026 0) (0.0511952 0.0576698 0) (0.0741314 0.0804957 0) (0.0520314 0.0970763 0) (0.0931176 0.0672436 0) (0.11671 0.0442143 0) (-0.131719 -0.00876292 0) (0.779747 0.467776 0) (-0.313399 0.171136 0) (0.0199036 0.0701336 0) (0.0399594 0.074171 0) (0.053256 0.0637349 0) (0.0660588 0.0326445 0) (0.0938962 -0.0173477 0) (0.11606 -0.0681878 0) (0.127988 -0.10705 0) (0.130513 -0.130764 0) (0.125332 -0.139897 0) (0.114424 -0.136786 0) (0.10001 -0.124565 0) (0.0841434 -0.106481 0) (0.06852 -0.0855722 0) (0.0544935 -0.0646222 0) (0.042827 -0.0462074 0) (0.0333312 -0.0330559 0) (0.0244112 -0.0257059 0) (0.0158601 -0.0213532 0) (0.0087817 -0.0179453 0) (0.00409291 -0.0154219 0) (0.00169811 -0.0137518 0) (0.00132743 -0.0127302 0) (0.00258839 -0.0125263 0) (0.00488912 -0.0131508 0) (0.00772584 -0.0138544 0) (0.0109927 -0.0138334 0) (0.0147997 -0.0122596 0) (0.0193071 -0.00809654 0) (0.0253997 -0.00027267 0) (0.0318773 0.0102213 0) (0.0374099 0.0219035 0) (0.044301 0.0352806 0) (0.0517268 0.0501598 0) (0.0742117 0.0686296 0) (0.0870021 0.0753632 0) (0.119474 0.0518056 0) (0.159406 0.0433874 0) (-0.0347478 0.0937532 0) (0.883261 0.472177 0) (-0.0758252 0.151302 0) (0.103427 -0.00538605 0) (0.16676 -0.012227 0) (0.175157 -0.0101124 0) (0.18768 -0.0350574 0) (0.21473 -0.0664496 0) (0.227515 -0.093991 0) (0.224196 -0.11376 0) (0.208224 -0.123826 0) (0.183665 -0.124047 0) (0.154215 -0.115884 0) (0.123137 -0.101684 0) (0.0928974 -0.0837976 0) (0.065225 -0.0646301 0) (0.0412551 -0.0463854 0) (0.0215502 -0.0309362 0) (0.00663579 -0.0205329 0) (-0.00495312 -0.0153067 0) (-0.0130032 -0.0133846 0) (-0.0188274 -0.0125158 0) (-0.0227134 -0.0122532 0) (-0.0250608 -0.0124576 0) (-0.0261974 -0.0130191 0) (-0.0264564 -0.0139475 0) (-0.0262338 -0.0151491 0) (-0.0258095 -0.0162715 0) (-0.0252017 -0.0168764 0) (-0.0242001 -0.0164682 0) (-0.0223721 -0.0144546 0) (-0.0186851 -0.010118 0) (-0.00930846 -0.00267383 0) (0.000330772 0.00693498 0) (0.0112211 0.0159582 0) (0.0231053 0.0232057 0) (0.0434303 0.0304943 0) (0.061946 0.0227507 0) (0.0810576 -0.00566758 0) (0.14013 0.0401935 0) (-0.41817 0.208256 0) (1.0273 0.426908 0) (0.490573 0.282583 0) (0.502271 0.193819 0) (0.513772 0.133582 0) (0.480416 0.0911178 0) (0.444245 0.0478502 0) (0.405922 0.00262595 0) (0.361152 -0.0363537 0) (0.311167 -0.0636755 0) (0.258486 -0.07787 0) (0.205984 -0.0804672 0) (0.155931 -0.0745488 0) (0.110206 -0.0633673 0) (0.0697168 -0.0492405 0) (0.0351523 -0.0343992 0) (0.00675615 -0.0208486 0) (-0.0150569 -0.0110145 0) (-0.0276905 -0.00728013 0) (-0.0360711 -0.00663797 0) (-0.0420151 -0.00727267 0) (-0.0466387 -0.00819497 0) (-0.0503428 -0.00923136 0) (-0.053423 -0.0103537 0) (-0.0561252 -0.0115433 0) (-0.0587164 -0.0127908 0) (-0.0615015 -0.0139961 0) (-0.0647624 -0.0149024 0) (-0.068744 -0.0151169 0) (-0.0737308 -0.0140985 0) (-0.0801399 -0.0111412 0) (-0.0884895 -0.00543951 0) (-0.0991073 0.00364566 0) (-0.109418 0.0153227 0) (-0.124498 0.0296224 0) (-0.148789 0.0465495 0) (-0.184775 0.0649009 0) (-0.235874 0.0805272 0) (-0.293753 0.0908775 0) (-0.362395 0.0960868 0) (-0.624355 0.0969733 0) (-0.190668 0.0268575 0) (0.141234 0.0545038 0) (0.234439 0.030942 0) (0.227368 0.00470097 0) (0.212033 -0.0158988 0) (0.195127 -0.0293384 0) (0.168933 -0.0366889 0) (0.135986 -0.0384892 0) (0.0998458 -0.0357344 0) (0.063344 -0.0296646 0) (0.0290506 -0.0212708 0) (-0.00334304 -0.0106587 0) (-0.0296693 -0.00178392 0) (-0.0463712 0.00247939 0) (-0.0562104 0.00340583 0) (-0.0617695 0.00245004 0) (-0.0658458 0.00101816 0) (-0.0695648 -0.000605979 0) (-0.0731641 -0.00214301 0) (-0.0767921 -0.00353568 0) (-0.0805567 -0.00478129 0) (-0.0845607 -0.00585605 0) (-0.0889271 -0.0067041 0) (-0.0937751 -0.00719271 0) (-0.0991703 -0.00708624 0) (-0.105084 -0.00606038 0) (-0.111373 -0.00373127 0) (-0.11776 0.00030191 0) (-0.123682 0.00641259 0) (-0.127971 0.0151656 0) (-0.131348 0.0277405 0) (-0.134151 0.0444207 0) (-0.137345 0.0641654 0) (-0.141519 0.0831471 0) (-0.143473 0.0913015 0) (-0.125738 0.0677828 0) (-0.0795889 -0.0271992 0) (-0.281129 -0.206351 0) (-0.0349796 0.212448 0) (0.0553903 0.100999 0) (0.0284304 0.0324953 0) (0.0270049 0.017214 0) (0.0269775 0.00935523 0) (0.0228084 0.000572444 0) (0.0117473 -0.00553613 0) (-0.008088 -0.00612851 0) (-0.030129 -0.00331381 0) (-0.0506797 0.000155607 0) (-0.0670885 0.00291471 0) (-0.0778322 0.00386769 0) (-0.0825592 0.00229684 0) (-0.0847636 -0.000701775 0) (-0.0857885 -0.00415664 0) (-0.0867547 -0.00750336 0) (-0.0881023 -0.0101165 0) (-0.0897682 -0.0118396 0) (-0.0918941 -0.0128463 0) (-0.0944284 -0.0133774 0) (-0.0973596 -0.0136918 0) (-0.100673 -0.0138398 0) (-0.104329 -0.0138208 0) (-0.10825 -0.0135729 0) (-0.112282 -0.012952 0) (-0.116163 -0.0117141 0) (-0.119491 -0.00949824 0) (-0.1217 -0.00578614 0) (-0.122082 -2.90407e-05 0) (-0.119689 0.00824612 0) (-0.113053 0.0199246 0) (-0.100933 0.0357268 0) (-0.0832064 0.0551229 0) (-0.0609057 0.073762 0) (-0.0370756 0.0843715 0) (0.00385264 0.0678813 0) (0.143411 -0.003687 0) (-0.208211 -0.117276 0) (-0.0659854 -0.330267 0) (-0.42114 -0.12001 0) (-0.30763 0.0783062 0) (-0.228193 -0.0208742 0) (-0.179886 -0.0397022 0) (-0.154067 -0.0332902 0) (-0.141992 -0.0270044 0) (-0.13792 -0.0208247 0) (-0.137309 -0.013245 0) (-0.137346 -0.00533457 0) (-0.135615 0.00168391 0) (-0.131944 0.00804477 0) (-0.126339 0.0139791 0) (-0.119372 0.0193502 0) (-0.112075 0.0238949 0) (-0.105574 0.0276913 0) (-0.100432 0.0307784 0) (-0.096868 0.0330824 0) (-0.0947554 0.034462 0) (-0.0938334 0.0348368 0) (-0.0938603 0.0343448 0) (-0.0946507 0.0333008 0) (-0.0960698 0.032066 0) (-0.0980078 0.0307359 0) (-0.100359 0.029376 0) (-0.10299 0.0280465 0) (-0.105702 0.0268117 0) (-0.108192 0.0257399 0) (-0.110006 0.0249 0) (-0.110443 0.024372 0) (-0.10828 0.0245801 0) (-0.101506 0.0263723 0) (-0.0876038 0.0304967 0) (-0.0647572 0.0378269 0) (-0.0338169 0.0488281 0) (0.0164479 0.063344 0) (0.0617064 0.0642824 0) (0.105096 0.0485342 0) (0.165369 0.0180063 0) (-0.212663 -0.0389983 0) ) ; boundaryField { floor { type noSlip; } ceiling { type noSlip; } sWall { type noSlip; } nWall { type noSlip; } sideWalls { type empty; } glass1 { type noSlip; } glass2 { type noSlip; } sun { type noSlip; } heatsource1 { type noSlip; } heatsource2 { type noSlip; } Table_master { type noSlip; } Table_slave { type noSlip; } inlet { type fixedValue; value uniform (0.277164 -0.114805 0); } outlet { type zeroGradient; } } // ************************************************************************* //
c8e27f2bac717560561c08306812fccd47467b1b
4610baf9a7e81cad6e52fe49289a5f234861732b
/planner/rndf_edit/src/RELane.cpp
da9f505e6bdbe77e2f6e2b1061e61063ff5c015c
[]
no_license
kuasha/stanley
07f924f6ff61413f5baabd5b6605d4289e93c68d
b6b6d3a9efd4611258b2a6337ef25007f406bd80
refs/heads/master
2021-01-19T00:57:09.752337
2016-08-15T02:36:18
2016-08-15T02:36:18
65,698,509
6
0
null
null
null
null
UTF-8
C++
false
false
5,720
cpp
RELane.cpp
/******************************************************** Stanford Driving Software Copyright (c) 2011 Stanford University All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The names of the contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ********************************************************/ #include <QtGui/QtGui> #include <rndf_edit_gui.h> #include <RELane.h> namespace vlr { RELane::RELane(Ui::RNDFEdit* ui, rndf::RoadNetwork* rn, REWayPoint& re_wp) : REElement<rndf::Lane>(ui, rn), re_wp_(re_wp) { connect(ui_->laneWidth, SIGNAL( valueChanged(double) ), this, SLOT(on_laneWidth_valueChanged(double))); connect(ui_->leftBoundary, SIGNAL( currentIndexChanged(int) ), this, SLOT(on_leftBoundary_currentIndexChanged(int))); connect(ui_->rightBoundary, SIGNAL( currentIndexChanged(int) ), this, SLOT(on_rightBoundary_currentIndexChanged(int))); }; RELane::~RELane() { }; rndf::Lane* RELane::create(rndf::Segment* s, double utm_x, double utm_y, const std::string& utm_zone, double theta, double length, double width) { if (!s) {return NULL;} rndf::Lane* lane = rn_->addLane(s); lane->setLaneWidth(width); re_wp_.create(lane, utm_x + cos(theta - M_PI) * length * 0.5, utm_y + sin(theta - M_PI) * length * 0.5, utm_zone); re_wp_.create(lane, utm_x + cos(theta) * length * 0.5, utm_y + sin(theta) * length * 0.5, utm_zone); // add waypoints // for (int wp = 0; wp < 2; ++wp) { // re_wp_.create(lane, utm_x + cos(wp)*length - length*0.5, utm_y); // } elem_ = lane; return lane; } rndf::Lane* RELane::copy(rndf::Lane* source_lane, rndf::Segment* dest_segment, double delta_x, double delta_y) { if (!dest_segment) { std::cout << "select a segment before copying" << std::endl; return NULL; } if (!source_lane) { std::cout << "select a Lane before copying" << std::endl; return NULL; } // add the Lane std::string strLaneName = dest_segment->nextLaneStr(); rndf::Lane* dest_lane = rn_->addLane(dest_segment, strLaneName); dest_lane->setLaneWidth(source_lane->laneWidth()); dest_lane->setLeftBoundaryType(source_lane->leftBoundaryType()); dest_lane->setRightBoundaryType(source_lane->rightBoundaryType()); rndf::TWayPointVec::const_iterator wpit = source_lane->wayPoints().begin(), wpit_end = source_lane->wayPoints().end(); for (; wpit != wpit_end; ++wpit) { re_wp_.copy(*wpit, dest_lane, delta_x, delta_y); } elem_ = dest_lane; return dest_lane; } void RELane::move(rndf::Lane* l, double delta_x, double delta_y) { if (!l) {return;} rndf::TWayPointVec::const_iterator wpit = l->wayPoints().begin(), wpit_end = l->wayPoints().end(); for (; wpit != wpit_end; ++wpit) { re_wp_.move(*wpit, delta_x, delta_y); } } void RELane::rotate(rndf::Lane* l, double center_x, double center_y, double theta) { if (!l) {return;} dgc::dgc_transform_t t; dgc::dgc_transform_identity(t); dgc::dgc_transform_rotate_z(t, theta); rndf::TWayPointVec::const_iterator wpit = l->wayPoints().begin(), wpit_end = l->wayPoints().end(); for (; wpit != wpit_end; wpit++) { rndf::WayPoint* wp = *wpit; double x = wp->utmX() - center_x; double y = wp->utmY() - center_y; double z = 0; // const double z = 0; dgc::dgc_transform_point(&x, &y, &z, t); wp->setUtm(x + center_x, y + center_y, wp->utmZone()); } } void RELane::updateGUI() { const QString baseTitle("Current Lane: "); if (!elem_) { ui_->laneBox->setTitle(baseTitle + "-"); return; } ui_->laneBox->setTitle(baseTitle + elem_->name().c_str()); ui_->laneWidth->setValue(elem_->laneWidth()); ui_->leftBoundary->setCurrentIndex((int) elem_->leftBoundaryType()); ui_->rightBoundary->setCurrentIndex((int) elem_->rightBoundaryType()); } void RELane::on_laneWidth_valueChanged(double laneWidth) { if (!elem_) {return;} elem_->setLaneWidth(laneWidth); ui_->glWindow->requestRedraw(); } void RELane::on_leftBoundary_currentIndexChanged(int index) { if (!elem_) {return;} elem_->setLeftBoundaryType(rndf::Lane::eBoundaryTypes(ui_->leftBoundary->itemData(index).toInt())); ui_->glWindow->requestRedraw(); } void RELane::on_rightBoundary_currentIndexChanged(int index) { if (!elem_) {return;} elem_->setRightBoundaryType(rndf::Lane::eBoundaryTypes(ui_->rightBoundary->itemData(index).toInt())); ui_->glWindow->requestRedraw(); } } // namespace vlr
6b16bc889079406373b99117ff55b344fbea9c98
92b6a07d9afeba475693ad4bb7b73ad5542e6be8
/wumpus_expressions/autogenerated/src/Plans/Reset.cpp
5b83c1d332f402bb386269cdb8967aba3368de88
[ "MIT" ]
permissive
dasys-lab/wumpus-ai
60935d809ed6f1c88ca52650fe53dee4f2d1a216
da5c3b56f9dd6ef852c7fe5195ec6455d50d6142
refs/heads/master
2021-06-28T14:24:29.318165
2020-02-23T10:56:02
2020-02-23T10:56:02
145,139,339
0
0
null
null
null
null
UTF-8
C++
false
false
3,860
cpp
Reset.cpp
using namespace std; #include "Plans/Reset.h" /*PROTECTED REGION ID(inccpp1572878618173) ENABLED START*/ // Add additional includes here #include <asp_solver_wrapper/ASPSolverWrapper.h> #include <aspkb/TermManager.h> #include <engine/AlicaEngine.h> #include <reasoner/asp/Solver.h> #include <wumpus/model/Agent.h> /*PROTECTED REGION END*/ namespace alica { /*PROTECTED REGION ID(staticVars1572878618173) ENABLED START*/ // initialise static variables here /*PROTECTED REGION END*/ Reset::Reset() : DomainBehaviour("Reset") { /*PROTECTED REGION ID(con1572878618173) ENABLED START*/ // Add additional options here this->resetPerformed = false; /*PROTECTED REGION END*/ } Reset::~Reset() { /*PROTECTED REGION ID(dcon1572878618173) ENABLED START*/ // Add additional options here /*PROTECTED REGION END*/ } void Reset::run(void* msg) { /*PROTECTED REGION ID(run1572878618173) ENABLED START*/ // Add additional options here // if (!this->resetPerformed) // { // auto agents = this->wm->playground->getAgentsForExperiment(); // agents->erase(essentials::SystemConfig::getOwnRobotID()); // for (auto a : *agents) // { // std::cout << "Reset: Exited" << a.second->exited << ", died:" << a.second->died << std::endl; // if (!a.second->exited && !a.second->died) // { // allExitedOrDied = false; // } // } // } if (!this->resetPerformed) { wumpus_msgs::AgentPerception perception; wumpus_msgs::Coordinates pos; pos.x = -1; pos.y = -1; perception.initialPosition = pos; perception.position = pos; perception.senderID = sc->getOwnRobotID(); perception.died = this->wm->localAgentDied; perception.exited = this->wm->localAgentExited; // FIXME hack send(perception); bool allExitedOrDied = true; // std::cout << "In Reset!" << std::endl; // if not planning and all info integrated if (!this->wm->planningModule->getIsPlanning() && !this->wm->changeHandler->getIsIntegrating()) { std::cout << "***********Time to reset!" << std::endl; auto* solverWrapper = this->getEngine()->getSolver<alica::reasoner::ASPSolverWrapper>(); solverWrapper->reset(); this->resetPerformed = true; aspkb::TermManager::getInstance().clear(); // std::cout << "Reset: Cleared TermManager" << std::endl; aspkb::TermManager::getInstance().initializeSolver(solverWrapper->getSolver()); // std::cout << "Reset: Re-Initialized solver for TermManager!" << std::endl; // std::cout << "Reset: Cleared WorldModel - re-initializing" << std::endl; // this->wm->init(); // std::cout << "Reset: Re-Initialized WM" << std::endl; // if (solverWrapper->resetted) // { this->wm->reset(); std::cout << "RESETTED!" << std::endl; this->setSuccess(); } // } } // TODO experimental... // if(this->wm->localAgentDied || this->wm->localAgentExited) { /*PROTECTED REGION END*/ } void Reset::initialiseParameters() { /*PROTECTED REGION ID(initialiseParameters1572878618173) ENABLED START*/ // Add additional options here // std::cout << "Reset:Initialize Parameters " << std::endl; this->resetPerformed = false; /*PROTECTED REGION END*/ } /*PROTECTED REGION ID(methods1572878618173) ENABLED START*/ // Add additional methods here /*PROTECTED REGION END*/ } /* namespace alica */
8b0844872fa6e7b428c3ac35dd42cb267de6d5a2
effd304753cf7791ebe73e4a5d09e2bc2eb86995
/10082_WERTYU.cpp
a68efd715f1f857dbb3862b451c24603103c6711
[]
no_license
leo2105/UVa
06cff58cbfde0009ac2c92162a03ed0a51ddd0b5
4303a88c832e1b4d840d79bf5d2b5f00fa080784
refs/heads/master
2021-01-23T03:03:55.795973
2017-03-24T08:03:38
2017-03-24T08:03:38
86,042,060
0
0
null
null
null
null
UTF-8
C++
false
false
194
cpp
10082_WERTYU.cpp
#include <bits/stdc++.h> using namespace std; static const string kb = "`1234567890-=QWERTYUIOP[]ASDFGHJKL;'ZXCVBNM,./"; int main(){ string S; while(getline(S, cin)){ } return 0; }
d796fe24bd1a493a090b9b9a02ee3aa659095a88
35db28b0c22eb3a4a4502e60636c88b7d72befe3
/客户端组件/游戏广场/PlatformEvent.h
683e5cfba9028f4f5055435d051e6ff56f797d6d
[]
no_license
lemontreehuang/system
9ca091bcc89c421be6a9a5827617414a6e400636
55d33f6c5c65f93c018af37aa15a3da589dbb2b1
refs/heads/master
2020-05-19T14:43:48.703852
2019-04-24T08:29:43
2019-04-24T08:29:43
null
0
0
null
null
null
null
GB18030
C++
false
false
2,577
h
PlatformEvent.h
#ifndef PLAT_FORM_EVENT_HEAD_FILE #define PLAT_FORM_EVENT_HEAD_FILE #pragma once #include "Stdafx.h" ////////////////////////////////////////////////////////////////////////////////// //事件定义 //用户事件 #define EVENT_USER_LOGON 1 //登录成功 #define EVENT_USER_LOGOUT 2 //注销成功 #define EVENT_USER_INFO_UPDATE 3 //资料更新 #define EVENT_USER_MOOR_MACHINE 4 //绑定机器 #define EVENT_USER_SHOW_CHECKIN 5 //显示签到 #define EVENT_USER_SHOW_TASKVIEW 6 //显示签到 #define EVENT_USER_SHOW_MY_SPREAD 7 //显示推广 #define EVENT_USER_SHOW_RECHARGE 8 //显示充值 #define EVENT_USER_TRACK_ACCOUNTS 9 //追踪帐号 #define EVENT_USER_SHOW_PERSONER 10 //个人中心 #define EVENT_USER_SHOW_BASE_ENSURE 11 //领取低保 #define EVENT_USER_SHOW_BAG 12 //显示背包 #define EVENT_USER_SHOW_SHOP 13 //显示商城 #define EVENT_USER_SHOW_EXCHANGE 14 //显示兑换 #define EVENT_USER_SHOW_MY_INSURE 15 //显示银行 #define EVENT_USER_SHOW_REAL_TIP 16 //显示实名 #define EVENT_USER_SHOW_UPDATE_BUFF 17 //更新BUff #define EVENT_USER_HIDE_REAL_TIP 18 //隐藏实名 #define EVENT_USER_SHOW_BAG_RECORD 19 //显示记录 #define EVENT_DOWN_LOAD_FINISH 20 //下载成功 #define EVENT_SKIN_CONFIG_UPDATE 21 //资源更新 #define EVENT_USER_CLOSE_GAME_AD 22 //游戏活动 ////////////////////////////////////////////////////////////////////////////////// //通知消息 #define WM_PLATFORM_EVENT (WM_USER+1000) //平台事件 ////////////////////////////////////////////////////////////////////////////////// //事件管理 class CPlatformEvent { //变量定义 protected: CWHArray<HWND> m_EventWndArray; //事件窗口 //静态变量 protected: static CPlatformEvent * m_pPlatformEvent; //对象指针 //函数定义 public: //构造函数 CPlatformEvent(); //析构函数 virtual ~CPlatformEvent(); //注册窗口 public: //注册窗口 bool RegisterEventWnd(HWND hEventWnd); //注销窗口 bool UnRegisterEventWnd(HWND hEventWnd); //发送事件 public: //发送事件 VOID SendPlatformEvent(WORD wEventID, LPARAM lParam); //发送事件 VOID PostPlatformEvent(WORD wEventID, LPARAM lParam); //静态函数 public: //获取对象 static CPlatformEvent * GetInstance() { return m_pPlatformEvent; } }; ////////////////////////////////////////////////////////////////////////////////// #endif
59e0262d70f1bb38999cf66dd3475346b808d8f9
ef3fa8e089c53422db4a5bbff9721268976bae53
/project/mfr/79/p
c5eec7fab4e953e6ce7eb3fde391063cc23ffd3e
[]
no_license
will214/CFDcourse
6b22f00a86f5ac83378e059074eb907e288693f2
37bd665013d77095f85ea4e6bc464caa11f91db1
refs/heads/master
2021-05-09T18:51:12.192394
2016-11-20T10:02:50
2016-11-20T10:02:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,236,396
p
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "79"; object p; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField nonuniform List<scalar> 146404 ( -7.93973 -3.78016 -10.7317 -6.66232 -12.8035 -8.0116 -4.01308 -2.67581 -6.46836 -21.6108 -2.37696 -6.99601 -3.68718 -10.7487 -6.53548 -3.45647 -7.21167 -6.229 -4.08096 -10.0612 -8.09504 -11.5185 -8.5213 -4.21826 -5.79579 -7.90033 -11.909 -10.3768 -4.69573 -1.64843 -8.24189 -19.0707 -13.8661 -4.37682 -0.724925 -7.19685 -16.1568 -11.2922 -4.40883 4.74663 -1.07427 -21.155 -4.21044 3.83251 -5.48644 -15.6189 -11.3127 -4.7212 2.08787 -3.74937 -10.3312 -9.49131 -4.82085 0.975185 -2.34883 -8.41387 -7.90031 -3.9242 -0.906939 -1.52872 -7.22215 -5.78231 -3.1769 -3.85692 -8.53213 -3.18148 -2.73329 -8.57296 -17.609 -12.0483 -5.67101 2.31794 -8.78605 -24.5153 -19.2487 -7.29913 5.32612 -12.181 -33.0058 -25.8672 -8.09969 7.90032 -7.86517 -26.3113 -20.1154 -9.49146 15.3331 -6.62516 -36.1645 -9.48747 12.8385 -7.6932 -27.2066 -25.7703 -10.6882 15.891 -5.6143 -26.3102 -23.0908 -10.9283 10.1886 -1.30379 -16.0163 -15.7736 -7.43313 8.30925 -2.91358 -12.8054 -7.90271 -4.38183 9.66442 -5.93278 -9.17972 -1.45761 6.78434 -4.00636 -2.31114 -1.33069 -9.13503 -11.9786 -15.9411 -10.369 -4.00046 -2.24567 -11.1351 -23.7114 -12.6102 -5.27338 6.73476 -1.95925 -29.2326 -12.3108 -9.40766 13.6337 -12.1735 -34.2043 -31.0458 -11.6714 23.8173 -31.4693 -54.4257 -54.0098 -10.7357 37.7615 -33.4346 -72.4954 -48.2909 -10.8875 50.0121 2.97455 -87.465 -10.8347 39.5456 -23.528 -76.3653 -57.4309 -15.7053 30.3876 -18.1834 -56.1653 -55.2773 -18.8204 26.7044 -3.72695 -32.4558 -36.5951 -14.7461 22.2408 4.5696 -26.1722 -11.4371 -8.86516 15.0726 6.99558 -10.0296 -8.69398 -5.04498 9.46266 6.1521 -2.36005 -4.19054 -2.85076 6.96898 1.20046 -1.56823 -1.98507 -11.0116 -12.0547 -14.4574 -10.577 -4.51148 -4.79388 -13.4223 -25.7064 -15.2523 -5.04422 1.42776 -15.0673 -33.4183 -24.1398 -8.91889 24.0517 -12.8161 -57.8293 -28.1175 -12.0628 56.8972 -24.1902 -90.0193 -123.656 -20.0391 100.034 -85.7132 -163.742 -136.952 -23.4177 118.014 -96.8897 -166.626 -139.054 -26.7458 149.469 -70.8765 -151.698 -19.7968 121.343 -97.6189 -160.281 -162.496 -39.8067 96.8693 -81.3974 -129.577 -171.447 -53.9273 64.5048 -3.94541 -88.2705 -142.63 -39.3845 42.1873 19.1012 -42.3595 -54.6626 -21.8564 24.0788 8.12901 -17.4247 -20.7679 -9.98041 16.0417 6.5935 -6.22667 -8.97291 -4.52955 9.56885 7.88003 -0.328386 -4.1603 -2.87468 -13.7047 -11.9958 -14.8141 -9.14284 -4.18726 -5.89397 -14.245 -19.3424 -14.7536 -5.12727 -1.2194 -14.9605 -39.2122 -23.7983 -7.36004 12.5312 -29.2566 -91.2865 -44.0185 -10.3944 58.3799 -106.606 -180.11 -118.793 -15.54 140.365 -97.2943 -142.977 -177.494 -19.5109 309.624 435.028 -123.871 -15.3206 381.879 433.594 434.742 409.763 385.33 430.569 434.213 428.144 305.938 371.906 430.052 433.437 421.475 304.895 428.809 -144.006 -40.9697 180.842 -134.393 -65.5527 77.4062 -18.3983 -79.6716 -133.698 -41.843 35.1029 5.07523 -39.8782 -52.8728 -17.9134 22.6019 12.9408 -12.9868 -20.6886 -7.45625 15.4199 7.20538 -3.95665 -6.59308 -4.34343 8.0693 7.33611 -0.926467 -1.92845 -1.84568 -5.25399 -11.0735 -21.5136 -7.45647 -3.18031 -2.20557 -13.9836 -25.8793 -14.9611 -5.10829 5.97931 -17.6493 -44.6755 -29.1408 -9.12125 37.4609 -76.0026 -130.291 -64.3217 -13.3191 126.529 -129.09 -224.716 -127.575 -15.0637 373.343 436.458 437.445 -11.9286 412.136 429.869 433.542 404.959 303.706 413.484 426.449 431.074 436.891 331.361 412.288 425.054 431.261 424.071 283.585 408.68 424.864 429.653 415.545 331.883 390.494 425.404 430.568 398.325 294.186 348.432 431.484 432.191 423.192 -50.4005 179.817 -39.6876 -82.3325 -146.357 -71.6729 61.5047 -4.02823 -74.4557 -117.428 -28.5011 33.8836 14.1458 -23.3831 -28.6642 -11.214 20.4649 11.1605 -11.1438 -10.5842 -4.60185 13.9831 8.83049 -8.04105 -0.901117 -1.96826 -4.07555 -9.08094 -18.1328 -10.3671 -4.7206 3.55466 -4.07509 -27.5445 -13.5048 -7.15026 24.5682 -36.4418 -12.0563 82.7082 -82.2531 -167.326 -103.515 -14.7641 303.044 -209.542 -114.912 -5.49504 413.047 430.712 435.458 390.873 274.118 416.371 427.066 434.589 378.203 265.09 414.504 423.418 433.342 430.181 328.651 412.725 420.768 429.393 430.774 211.376 412.397 422.007 431.353 453.518 314.991 408.462 423.118 430.932 350.518 296.105 387.159 426.061 427.175 428.593 311.987 306.827 428.771 431.929 -129.837 -59.3071 102.526 -7.26954 -83.9676 -138.329 -35.1914 46.1647 86.7545 -141.559 -15.4402 23.5961 15.0345 -18.5952 -13.0202 -5.90216 13.3649 6.28216 -6.86616 -5.19725 -3.57494 7.56478 -2.78547 -2.38057 -1.75421 -7.73168 -10.9179 -8.53264 -4.68829 -2.06224 -8.45826 -19.6013 -13.2091 -4.58243 5.22902 -12.8434 -37.1499 -25.3197 -8.20224 28.9746 -30.392 -68.1592 -49.2334 -11.5461 96.6742 -69.1419 -179.585 -111.712 -28.0662 379.927 436.238 436.975 437.348 -7.74783 416.279 429.45 434.196 387.036 259.675 416.179 425.09 432.921 457.471 171.008 413.72 420.127 424.379 289.806 231.021 407.409 416.216 413.656 335.519 257.509 409.999 417.688 419.582 288.934 225.621 411.167 421.469 429.893 438.66 175.488 399.032 422.688 427.46 411.608 256.065 350.018 430.365 432.733 384.948 311.367 136.25 -38.9595 -88.5226 -151.391 -60.6609 36.4958 8.573 -45.9443 -47.7664 -16.7298 21.1012 6.24346 -12.5862 -17.5735 -8.06877 13.8373 7.9015 -3.93259 -8.77601 -4.70392 6.03608 7.24691 0.162514 -2.95685 -2.75457 -14.2715 -7.48874 -10.6627 -8.58846 -4.56913 -1.70279 -8.26659 -19.2536 -13.3267 -4.71159 5.81695 -13.2205 -37.2238 -25.9066 -8.58178 29.7874 -34.2684 -73.0169 -52.9852 -11.4733 115.509 -78.7644 -169.333 -120.619 -27.8359 384.921 436.976 436.624 420.176 416.856 430.139 435.107 440.833 335.555 416.889 425.306 441.37 448.64 201.788 411.435 419.921 418.185 329.313 276.826 407.245 415.217 404.116 337.598 265.681 405.907 417.658 412.312 332.753 261.551 412.13 421.822 427.849 454.118 208.574 401.787 423.219 428.335 441.441 262.2 354.485 429.654 431.344 414.913 315.117 144.902 -46.5422 -104.84 -151.201 -51.5935 32.3076 0.657855 -42.7123 -46.9095 -16.9014 21.0436 6.48554 -14.8895 -18.8216 -8.5452 13.3556 7.72592 -4.32108 -9.59461 -4.92843 5.61466 6.8539 -0.245458 -3.61089 -3.18304 -7.32787 -10.4436 -7.94829 -4.61638 -3.46025 -7.2011 -15.4692 -11.6291 -4.45436 5.51164 -6.99046 -26.7284 -21.9581 -8.39912 32.8929 -14.8425 -62.9765 -58.6453 -12.2662 126.64 -48.7731 -156.81 -156.382 -33.4479 374.587 436.137 437.065 412.974 -16.5276 414.875 430.909 434.885 426.25 277.481 418.005 427.584 437.784 437.712 203.355 415.934 422.386 426.737 320.044 231.049 413.002 419.248 417.813 329.436 269.056 414.124 420.336 423.78 327.872 259.472 411.41 424.398 432.803 440.171 142.552 398.068 426.144 429.519 351.239 264.385 337.117 433.303 433.344 421.806 317.508 110.453 -50.9858 -104.43 -151.639 -25.3114 39.7811 9.58304 -48.2991 -64.932 -13.6397 20.4962 9.44343 -14.0076 -18.8703 -5.91957 10.6395 5.96259 -5.31322 -7.74102 -4.6347 4.23531 6.10245 -0.612137 -3.72337 -2.99118 -1.45592 -7.3577 -17.0508 -8.16644 -3.78136 6.864 -5.02146 -26.8305 -7.67939 -6.99251 25.6516 -18.0913 -10.8782 73.6756 -49.7696 -140.176 -162.001 -21.6754 286.603 -142.502 -154.159 -22.7719 396.404 432.56 435.554 436.685 291.529 414.897 429.245 434.843 432.597 227.316 417.176 427.681 432.588 450.918 322.364 416.998 431.306 438.261 440.432 229.771 413.322 426.163 432.883 429.241 260.334 406.881 426.181 430.572 373.378 259.124 383.421 430.764 430.3 372.347 299.72 289.06 431.448 433.578 -166.09 -24.5715 64.1317 -49.4433 -120.121 -231.623 -15.0269 26.2725 -3.20899 -73.8047 -9.83035 13.9885 16.958 -22.726 -17.917 -5.3584 7.90182 8.95868 -9.71441 -8.78568 -3.93728 5.12998 -4.27665 -4.36321 -2.73767 -4.76482 -9.42505 -19.0846 -8.27187 -3.55708 -0.200037 -10.13 -19.8001 -14.0536 -5.8981 8.28848 -12.8195 -35.7536 -31.2488 -9.31947 34.6787 -36.9577 -88.3261 -73.5928 -15.3531 127.111 -71.4075 -150.793 -156.244 -32.2309 331.938 437.997 438.639 -32.0011 392.012 432.977 434.821 429.015 263.75 404.346 428.922 433.257 446.017 252.442 406.301 428.55 437.444 357.797 167.582 401.136 428.207 431.993 440.508 263.064 383.111 432.012 430.761 402.49 289.111 335.949 433.663 434.289 339.855 -7.34904 91.1266 -106.955 -195.61 -158.745 -16.7576 9.78924 -18.0871 -48.5429 -39.6757 -12.7263 3.71627 -8.34999 -33.2771 -27.9012 -7.29131 2.5974 -9.64523 -19.7321 -12.5484 -5.3286 0.929102 -6.99122 -18.7085 -6.54343 -3.03089 -12.7863 -8.67367 -12.0763 -8.2836 -4.25931 -4.87436 -9.06993 -13.8158 -11.1508 -5.1145 1.26792 -8.45837 -23.639 -17.6986 -6.30565 16.0063 -11.5545 -39.4035 -40.9675 -12.0886 49.7564 -37.0587 -111.948 -116.903 -18.1267 119.332 -68.3159 -112.077 -183.673 -44.6078 280.981 434.467 -122.719 -147.403 -29.3266 351.961 434.013 436.685 392.408 360.311 434.598 437.394 401.307 317.522 349.268 434.087 435.687 421.531 279.575 434.548 -153.38 -19.8682 93.7552 -195.091 -15.2394 32.6049 -37.4283 -91.3372 -75.8563 -12.1418 2.97373 -9.82029 -29.3661 -21.4835 -6.90293 -2.10358 -9.61707 -18.0898 -12.8654 -4.92373 -3.65662 -8.02994 -13.9039 -10.7429 -4.76619 -6.87853 -7.21744 -11.6623 -7.96358 -3.90166 -8.85078 -8.20036 -11.1682 -8.83947 -3.94888 -3.38862 -7.90064 -15.8297 -11.31 -4.63725 4.17652 -8.04241 -24.6355 -20.7453 -7.08289 21.1976 -1.95886 -47.8767 -31.5513 -10.497 36.6381 -23.3938 -87.4099 -85.1522 -14.2611 52.7195 -61.5832 -144.891 -113.012 -14.762 73.0677 -116.037 -157.847 -112.959 -22.6181 81.4172 -122.232 -167.284 -19.4435 71.3943 -111.382 -168.895 -113.841 -9.31589 46.8347 -62.0112 -139.546 -106.327 -12.9682 28.7469 -16.4724 -86.6785 -87.7332 -10.4331 12.6891 -10.3811 -55.3891 -28.3064 -7.09086 0.996154 -8.92436 -24.1055 -18.6508 -5.25881 -3.9812 -8.84065 -15.4977 -12.1879 -5.21364 -7.18909 -7.89548 -11.8856 -9.94616 -4.80001 -6.31393 -8.55136 -13.6237 -9.08137 -4.11966 0.131686 -6.73795 -20.737 -11.8097 -4.95885 3.88677 -6.97884 -28.1045 -12.1098 -6.17943 3.7414 -9.69349 -26.6917 -22.8591 -8.71976 5.64658 -14.4324 -37.8648 -28.3973 -9.57469 19.8767 -18.8513 -49.7474 -43.5283 -10.3109 25.7335 -24.7817 -51.9724 -10.0762 6.44667 -21.3553 -52.0535 -26.9195 -8.85256 2.8781 -11.4973 -29.6018 -23.679 -8.87143 4.72909 -9.81679 -28.7121 -26.009 -6.39963 1.7273 -4.91767 -29.796 -17.0952 -4.6685 -2.62461 -7.41729 -21.5533 -11.1791 -4.15832 -7.16583 -8.54808 -13.4905 -9.55973 -4.72304 -7.9495 -10.6283 -8.22326 -4.68799 -4.17284 -2.43293 -3.32442 -4.34479 -8.53276 -15.1304 -10.2273 -4.93446 -1.72494 -7.48119 -16.8984 -14.408 -6.2112 -1.93903 -8.54159 -20.3963 -14.1901 -4.86124 1.91122 -8.63446 -23.8359 -18.8483 -5.01862 5.69686 -10.5542 -20.7436 -4.71851 -1.76265 -12.9494 -25.3551 -12.7097 -4.74578 -0.916881 -9.41286 -17.6336 -12.7522 -4.82989 -4.30528 -9.81249 -17.1535 -13.3202 -5.62544 -5.90182 -9.7557 -16.2454 -10.4894 -4.5894 -4.869 -1.80799 -23.2386 -12.6552 -3.471 -14.7814 -6.79942 -3.79064 -11.8212 -7.98795 -11.5476 -7.85378 -4.13666 -8.12109 -7.98315 -11.1795 -9.597 -4.84587 -6.2769 -7.69452 -13.6605 -10.8524 -4.85623 -4.52966 -8.49406 -15.8877 -10.6576 -4.73833 -1.25497 -10.3862 -11.8845 -4.67814 -5.21819 -11.4427 -16.4777 -10.5123 -4.68731 -8.13551 -10.3502 -13.4334 -10.6395 -4.69127 -9.47097 -9.61588 -12.7916 -10.4427 -5.09078 -11.5895 -9.21428 -12.5533 -8.8493 -4.46047 -13.1121 -7.67943 -12.5705 -8.86275 -4.40371 -10.3641 -10.4391 -6.10065 -3.34722 -13.5047 -9.72967 -14.8555 -9.11715 -4.35314 -8.74528 -4.7532 -11.0334 -11.6241 -9.26479 -8.20772 -4.9559 -4.08794 -0.225166 -7.77141 -0.0359871 -11.7101 -11.1612 -19.6639 -12.1479 -9.38874 -20.1594 -10.2444 -8.07898 -4.83362 -10.4346 -3.22996 -4.01834 -0.280193 -2.9125 -0.348165 -7.36251 10.3365 -2.01297 -6.25617 -3.20473 -10.5546 -11.0207 -7.75555 -22.0469 -2.89702 -6.22296 -3.92301 -2.62423 -0.323637 -3.36619 -0.3529 -2.73469 -3.63915 -9.82165 -10.3798 -7.69384 -6.25404 -4.06327 -3.46701 -0.365697 -7.72927 -7.99012 -11.0588 -11.4336 -9.20674 -8.11567 -4.95118 -4.15141 -0.300336 -13.9416 -7.80018 -9.18069 -7.4713 -7.99795 -10.8501 -7.8478 -9.75947 -11.196 -9.18585 -10.7618 -9.86162 -8.1156 -5.05564 -8.834 -5.90713 -4.25797 -0.280954 -4.48224 -0.739392 -8.36058 -7.21618 -6.1855 -6.57798 -7.60418 -9.70545 -7.33647 -10.411 -10.6876 -10.1776 -11.948 -11.0694 -9.21469 -6.25772 -10.2474 -6.74751 -4.70179 -0.810092 -5.02679 -0.953889 -11.2027 -6.40918 -5.82212 -6.03374 -4.56194 -5.15902 -6.78446 -10.8523 -7.17809 -9.7373 -7.11462 -11.0121 -9.81772 -11.7622 -10.0333 -12.7265 -11.9008 -14.3901 -13.3609 -5.74404 -7.97628 -5.32002 -9.98697 -7.39379 -10.6907 -7.6717 -4.00705 -0.645231 -4.33184 -1.69718 -4.44321 -1.74453 -6.11305 -3.71271 0.197743 -3.12897 -3.94449 -0.121892 0.966663 -11.9786 -7.90631 -20.0153 -7.46804 -12.0945 -12.7391 -23.3301 -10.3485 -20.408 -11.5448 -14.1309 -12.4533 -24.3072 -14.3711 -5.25991 -5.86958 -4.00705 -9.04382 -7.19727 -6.46082 -4.25764 -0.779084 -3.1508 -0.654077 -4.61432 -1.96536 -3.42545 -1.56216 5.38725 -6.62717 -1.88464 2.23522 10.9273 0.729668 -0.0326537 -3.47058 -10.2631 -1.97507 -3.16858 -11.5878 -11.0239 -8.42157 -16.4684 -12.6597 -11.5716 -2.98817 -6.09774 -4.30729 -20.4872 -5.30171 -9.00049 -5.88928 -0.536264 -3.34649 -0.639703 -3.95741 -1.58095 -4.38349 -1.94725 -2.83239 -2.81957 0.115319 -1.29763 -0.48891 -1.7071 -9.75169 -3.1039 -6.94659 -4.7169 -9.59291 -4.50878 -7.52348 -8.75154 -7.57237 -7.0981 -12.6709 -11.7694 -9.88539 -9.4246 -4.48303 -6.33547 -4.41704 -8.18694 -5.9599 -8.40678 -6.42164 -0.63724 -3.86524 -0.375618 -4.25533 -1.82655 -4.3536 -1.88482 -0.279904 -1.51645 -1.21477 -1.37879 -6.51409 -3.43725 -5.85528 -2.36288 -5.85687 -6.85529 -8.46477 -8.88758 -7.2895 -8.02172 -4.4914 -7.76714 -6.0101 -7.50251 -5.41219 -0.357936 -3.86797 -1.66805 -4.19905 -0.823374 -1.53723 -1.35732 -3.03274 -1.03292 -2.22268 -5.58369 -1.43203 -5.23942 -6.99663 -7.51395 -6.65525 -6.5212 -7.0447 -5.00599 -5.66138 -4.1774 -3.95863 -0.759802 -3.37387 -0.640261 -3.63023 -0.908195 -1.30564 -6.02773 -6.71084 -6.33904 -5.72447 -3.78133 -3.31238 -0.32796 -8.31172 11.8754 -5.40378 -3.73753 -3.03922 -0.545672 -12.2687 -7.66789 -6.54845 -2.29826 -6.11409 -5.93717 -7.93905 -11.5378 -9.3121 -8.8808 -13.8538 -12.054 -10.057 -13.9161 -15.4254 -13.3524 -7.97582 -5.171 -2.90382 -4.6286 -8.51503 -5.74554 -3.892 -0.588217 -3.46278 -0.640368 -3.75431 -1.50982 -7.55527 -7.09625 -6.81267 -5.61861 -5.70409 -4.38581 -5.46296 -10.8592 -8.15155 -10.0747 -8.54625 -12.5978 -8.26373 -12.0218 -10.2028 -11.8224 -11.6478 -14.5388 -13.6273 -14.5668 -14.0656 -5.69072 -9.25065 -7.272 -10.0482 -7.33171 -11.4212 -8.36419 -0.716426 -4.10986 -1.68105 -4.72625 -2.03413 -5.04319 -2.07364 -13.5187 -12.6934 -24.1652 -7.27911 -16.4117 -5.23273 -33.3384 -15.1396 -25.4384 -15.5137 -20.5132 -19.4581 -34.4073 -23.6111 -3.02809 -12.8975 -6.77489 -1.54341 -17.8987 -17.9573 -14.1153 -13.269 -26.578 -20.6667 -20.1877 0.203691 -0.707302 -0.494783 5.01623 2.44052 3.99948 2.68486 -0.260364 4.03408 2.91643 6.26099 6.21289 -6.04089 -2.54072 -8.37934 0.0456747 -14.9805 -6.95992 -10.7824 -9.73974 -14.8671 -7.79647 -3.98043 -6.66259 -4.62659 -3.1119 -3.65369 -0.666099 -3.39813 -1.55522 -2.43705 -0.580509 6.64443 9.34163 1.58476 -16.7505 7.19106 -4.62408 -16.9427 -7.8272 -5.99354 -4.16251 -5.54481 -1.17516 -2.61447 -0.971077 -1.28278 -0.407548 -0.844486 -0.175916 -12.4901 -10.9181 -11.5602 -13.688 -14.2273 -11.2546 -9.41448 -5.67111 -4.29917 -0.73489 -6.75914 -2.24583 -10.8139 -10.2825 -6.68201 -7.54549 18.1692 -11.9128 -14.5132 -11.6271 -19.9374 -36.7749 -15.302 -13.1016 -20.246 -13.9173 -1.28738 -4.41318 -8.8304 -6.22114 -8.57483 -6.26537 -3.29545 -0.598862 -3.81011 -1.54583 -4.00816 -1.67407 -7.59624 -17.1759 -10.9744 -23.1919 -3.35488 -29.3715 -17.9734 -14.4452 -23.1627 -13.9442 -28.1278 -20.8608 -21.3284 -5.36736 -35.8828 -13.4424 -32.8704 -7.51961 -67.2928 -27.091 -36.833 -26.6591 -41.1148 -41.8689 -62.4409 -53.9879 -1.62133 -21.2385 0.397461 -1.15082 -40.0788 -29.9344 -24.4738 -25.5993 -60.5727 -46.6425 -47.3477 -11.6312 0.20185 -15.9769 2.86554 -20.0724 13.3313 -11.5021 -11.893 -16.0974 -7.69656 -22.4433 -18.9875 -13.4021 -11.8138 10.8452 2.53866 7.97205 12.0062 13.186 9.53392 9.36834 6.96319 -3.33186 10.2503 -6.79734 6.04104 -0.34311 -8.27976 -5.78014 -4.72072 -10.921 -10.5979 -5.27158 -6.05124 -1.91428 -2.26126 -1.59426 -7.07116 -4.00702 -4.32687 -3.42084 -0.853108 -1.28839 -0.44727 -3.06931 -1.38146 -2.77141 -1.35317 7.73952 8.20977 7.87733 7.18062 -2.67821 6.48186 0.0935759 6.74827 2.01112 -3.66314 -2.40838 -4.08799 0.841992 -1.92444 -1.63054 -3.8394 -2.79076 -1.66852 -2.33319 -0.364455 -2.5065 -0.61244 -1.93731 -0.360874 -14.9764 -11.8254 -11.6435 -12.6772 -13.0423 -10.9463 -9.47893 -6.11785 -4.58724 -0.676922 -11.5509 -10.8964 -13.1672 -11.6247 -10.1002 -10.5553 -11.8608 -13.0869 -11.8036 -13.0741 -12.1523 -14.1839 -14.0547 -12.6126 -13.3358 -11.4868 -15.25 -13.8441 -9.6761 -7.21953 -9.89745 -6.41163 -10.7199 -7.77834 -4.21495 -1.68511 -4.65467 -0.763497 -4.38081 -1.71363 -23.8223 -5.78713 -33.7191 -13.1259 -23.8962 -10.3155 -39.7403 -17.6904 -30.2944 -27.4656 -27.4441 -24.8317 -41.9597 -33.5476 -30.2853 -10.3926 -27.5095 -7.04503 -49.4787 -7.79243 -52.2166 -21.9916 -30.1771 -31.4563 -49.63 -36.888 -59.3059 -63.7832 -56.8565 -5.67191 -78.9666 -96.8082 -141.501 -71.7659 -154.54 -71.5694 -73.1129 -68.983 -155.64 -138.079 -163.217 -165.476 -6.81937 -53.8346 -32.8851 -74.0042 -141.418 -75.745 -64.3799 -67.4782 -158.932 -163.394 -171.096 -20.9973 2.843 -23.1307 0.237056 -60.5161 58.8317 -37.7507 -26.9302 -25.7096 -73.059 -103.245 -80.7263 -24.6541 12.4613 -10.1757 28.4838 -42.8919 12.6799 -8.9211 -19.1766 -14.4931 -14.2237 -40.6672 -56.5484 -15.0863 -21.3502 9.30765 2.28232 7.61656 12.3048 10.5455 9.56987 9.19164 2.21174 6.68969 2.74836 7.4114 1.96241 7.37906 3.96018 -4.24293 0.46337 -2.10112 -3.5299 -6.03813 -0.886665 -3.26502 -3.6595 -1.90538 -2.5421 -6.92948 -5.295 -4.71093 -4.24554 -1.41536 -2.06414 -0.583581 -4.02934 -1.84929 -3.08789 -1.48825 7.31403 8.16626 8.25104 2.3765 7.50098 2.9154 -1.73686 0.262421 -2.54907 -2.39568 -3.3871 -2.81781 -0.425979 -2.51828 -0.64921 -12.2107 -14.2223 -14.2753 -10.1685 -9.62183 -5.14417 -4.75086 -0.145209 -13.6512 -11.7259 -17.2769 -11.7341 -10.3627 -11.2189 -11.832 -13.0275 -11.9256 -14.0675 -12.3527 -13.9026 -13.37 -11.4786 -14.1182 -10.2699 -14.6421 -13.1703 -9.91704 -6.40541 -9.42502 -5.24756 -10.0183 -7.11405 -4.72891 -0.76219 -4.57428 -0.208773 -4.05595 -1.54339 -55.0804 -11.5994 -69.5276 -43.8169 -96.2782 -81.4073 -123.751 -48.7461 -74.7282 -102.888 -115.055 -120.137 -129.117 -203.677 -80.2264 -93.6396 -104.906 9.39577 -102.173 -126.88 -111.889 -126.639 -158.119 -197.688 -127.873 -136.208 -125.863 -88.7426 -146.279 -131.847 433.738 435.909 -179.104 -165.004 -159.152 -134.348 -140.779 435.22 -67.98 -128.984 -58.8152 -124.935 -45.2883 -36.193 -4.67363 -24.115 -6.902 -22.9562 -4.39955 -22.0049 -1.13001 -97.2374 148.647 -136.56 334.992 429.391 348.208 425.272 -150.088 -102.379 -152.186 434.91 435.879 432.202 434.945 -160.32 -161.603 -167.062 435.208 386.808 434.561 364.141 -56.5666 -147.65 -43.39 417.534 -31.7888 441.707 -6.87168 -19.9215 -4.10136 -22.5446 -0.474585 1.77621 -95.7769 128.791 -118.394 348.29 425.485 340.338 423.373 -107.587 -139.567 432.019 434.252 431.712 434.28 -161.07 -163.187 -185.49 434.011 400.687 433.802 358.917 -43.557 -161.257 -70.0262 427.083 404.823 -38.2223 -3.9348 -30.2352 -6.30479 2.85136 -23.2883 -0.00761244 -137.895 -71.4946 -115.425 431.953 434.453 430.544 -182.726 -138.26 -181.727 433.949 384.496 -153.682 -85.7027 -162.01 -100.07 415.778 -44.6571 -150.525 -75.2875 -7.64971 -47.3953 -10.0171 -26.5845 -0.748364 -38.4723 -1.90277 -89.8493 -56.4028 -93.8362 -114.933 -82.6135 -102.627 -171.165 -112.514 -148.811 -121.641 -147.813 -104.813 -124.404 39.9479 55.4075 45.4056 110.134 33.4634 79.3228 40.5292 -77.8903 32.9446 -56.0716 2.63719 -68.9319 -122.274 -52.348 -88.438 -90.4304 -119.91 -140.526 -93.0979 -90.5292 -110.902 -144.813 -126.918 -143.031 -28.3108 11.1524 -8.19536 0.694333 -38.4709 5.93395 -17.4122 -62.3517 -22.7028 -32.4143 -74.8329 -111.72 -41.936 -57.4036 8.70664 12.1183 10.3074 8.66055 8.80294 4.45138 7.73671 3.26547 7.55789 2.18768 -2.5999 -1.74571 -3.99914 -0.0213102 -2.30941 -3.49281 -5.13726 -4.22508 -2.21168 -2.25844 -1.41771 -3.25058 -1.52882 -1.93862 -0.582107 7.39824 8.37955 7.71695 1.50749 0.297419 -1.83633 -1.4246 -1.81019 -1.8189 -0.282613 -17.8676 -12.3234 -9.86649 -8.09661 -12.4981 -14.6498 -13.1861 -19.6902 -14.6354 -10.0014 -19.293 -11.3085 -9.12743 -4.89499 -7.11351 -4.72929 -5.23237 -0.143993 -3.63749 -0.591771 -11.3801 -9.29854 -10.2534 -8.57873 -9.34839 -6.88881 -9.06446 -14.8624 -13.0623 -15.6957 -13.8212 -18.5566 -13.9885 -18.3697 -11.5092 -16.7309 -14.759 -17.9658 -14.2543 -19.2173 -16.4291 -5.73808 -11.0437 -7.88415 -7.91828 -6.04411 -10.5696 -7.40744 -0.592127 -4.49861 -1.76753 -3.63424 -1.4783 -4.51489 -1.84239 -146.82 -112.935 -126.907 -116.408 -209.074 437.905 -185.341 -148.979 -205.334 -229.347 -188.083 -179.057 -128.145 -128.748 437.699 438.163 431.658 435.773 -190.739 -128.889 -130.877 437.949 -168.587 434.038 374.793 -57.5059 -122.772 -37.8187 -131.424 -31.1865 422.269 317.102 -4.18607 -16.5871 0.0208707 -12.5965 0.385205 314.503 433.269 436.194 432.183 434.665 429.529 432.868 -134.697 435.309 460.307 432.881 404.879 432.066 414.664 -37.8138 424.13 405.886 314.667 418.337 345.467 0.770166 -21.5954 0.615158 316.544 19.0259 275.035 8.03187 435.315 431.233 433.068 426.812 431.599 425.999 430.254 401.63 434.561 342.748 431.745 412.077 430.95 440.908 450.743 348.954 438.307 311.632 443.293 247.238 0.600877 326.805 1.74418 244.677 2.26516 304.411 1.64605 432.367 430.542 433.939 425.308 429.719 424.852 429.543 402.849 433.11 391.416 430.951 433.065 429.25 473.843 320.622 411.161 323.505 424.357 298.904 371.13 292.903 1.96421 1.81896 296.944 293.847 6.01089 434.024 430.53 434.04 425.92 430.266 428.165 431.459 373.081 433.382 -154.943 429.731 414.531 429.245 376.428 -147.425 -62.0936 352.252 225.641 410.094 278.509 1.53433 -42.6389 -0.700246 238.998 6.0866 311.048 -7.80138 433.822 -88.4717 426.103 431.838 432.096 432.88 -152.492 -111.613 431.269 548.14 431.994 410.004 -69.0063 -90.8193 -100.988 403.243 319.179 394.725 -72.0462 -1.95631 -70.7027 -12.6512 300.904 -13.6007 -51.3414 -11.1252 -60.8322 -66.9142 429.669 433.118 -45.9017 -76.4886 -92.1458 -119.084 432.581 409.423 -84.9877 -130.171 -125.657 -136.513 -131.925 -79.7945 -137.819 -128.293 8.93125 12.4623 11.5039 1.26583 7.77384 -4.46023 -2.32962 -6.18014 -4.17183 -1.84317 -1.6897 -1.45777 -0.514574 -1.71294 -0.514934 -7.8585 -7.26787 -5.77403 -4.11503 -12.6158 -22.058 -6.1295 -17.6263 -21.1575 -9.11295 -18.2908 -14.0268 -4.00977 -4.43761 -9.77705 -5.26884 -3.34725 -0.611515 -4.11645 -0.747274 -6.13088 -3.94685 -7.60871 -3.27286 -2.98562 -0.691372 -0.0291063 -22.1359 -12.9874 -24.3006 -5.78125 -18.1788 -5.89766 -26.7362 -11.2904 -23.9297 -17.4985 -19.0353 -15.4965 -28.2163 -13.5272 -5.56797 -13.4709 -6.68603 -11.9858 -6.00745 -6.98347 -8.50685 -25.4525 -16.4798 -33.186 -6.95756 -28.9933 -22.4744 -20.3523 -35.6971 -31.1213 -30.1129 -14.6861 -41.7966 -37.6665 -33.3229 -56.8763 -22.8356 -64.9426 -43.2207 -123.79 -42.3509 -68.2876 -62.4383 -60.8529 -50.5666 -134.405 -99.8925 -122.309 -139.776 -189.434 -75.0135 -165.096 -143.251 -200.561 -108.225 -206.437 -166.287 -186.52 -172.394 -224.946 -163.328 -217.159 437.723 438.46 -208.383 432.999 437.176 -165.142 438.058 -163.866 -216.545 -144.518 436.487 457.825 -38.4395 -126.978 -28.4067 -100.809 -20.7571 405.254 292.705 -3.0132 -8.79321 0.519151 -11.704 2.16421 304.614 -2.47107 435.142 416.443 435.861 370.295 435.543 386.839 -25.7141 431.76 314.649 352.319 273.211 380.688 154.003 0.807882 304.335 301.706 -5.12886 286.402 -0.301474 421.778 432.28 361.044 435.575 411.066 432.927 450.483 309.884 416.903 300.147 419.361 273.755 438.229 258.435 1.57612 334.554 7.1512 293.529 -1.68846 256.372 -79.8241 413.491 430.997 439.009 431.653 556.798 430.534 619.207 318.916 442.312 223.504 422.744 259.424 433.404 274.849 -0.439447 304.071 4.18044 146.279 269.735 -37.5744 429.217 429.307 416.074 431.585 466.246 431.172 427.183 274.499 364.944 305.635 428.105 2.34523 436.644 195.585 268.136 1.14342 194.366 -79.2728 376.226 430.107 441.629 430.838 442.287 430.855 424.726 275.707 422.683 297.711 451.191 231.236 383.669 228.692 5.40843 334.797 -2.55835 162.077 264.956 -1.56724 411.906 431.965 407.83 430.407 209.132 428.554 408.04 290.744 416.582 399.381 146.317 429.945 285.575 -25.0187 -7.66053 273.242 -0.708215 256.92 -2.8185 433.044 -38.8568 -75.2542 429.946 429.192 429.414 432.596 419.326 -85.5442 -130.142 428.875 408.211 431.72 -72.7661 -139.273 -114.907 430.537 284.624 -131.385 -87.659 -14.9525 -80.527 -11.8715 312.41 -4.89045 -67.4649 -8.86965 -74.4347 -34.522 -64.9931 428.391 -27.3845 -69.9222 -136.559 -82.7947 -124.84 -127.606 -89.6028 -125.176 -130.153 -152.005 -134.098 -130.674 -100.107 -153.448 -143.455 -37.6245 5.13344 -15.9102 -10.7633 -65.6465 24.0218 -43.9723 -113.088 -38.7938 -54.2095 -73.3284 -132.015 -46.3334 -68.5323 -8.11396 10.3666 -7.92054 30.6751 -37.501 18.1692 -29.1119 -12.1283 -15.638 -40.3938 -49.2043 -27.5067 -7.61937 11.4756 -6.10576 12.3458 -24.1024 12.5446 -9.29074 -13.0172 -7.60805 -6.25575 -22.193 -22.1118 -12.66 -10.3245 13.999 14.4049 14.2846 6.35667 9.88047 -7.63888 10.7389 -6.06285 8.23609 -2.75932 -5.32243 -9.0381 -8.8029 -5.01981 -4.47308 -1.19934 -6.08503 -1.58895 -2.11995 -1.44549 -1.00867 -2.23539 -1.07619 -1.32336 -0.396486 9.58105 8.05945 -2.29625 -3.62755 -3.65519 -2.3409 -1.53575 -1.36597 -0.312809 -6.06381 -5.97954 -7.71691 -6.92914 -6.83522 -9.1618 -13.1064 -7.71933 -10.6211 -8.43597 -11.4638 -14.9064 -13.0778 -11.1523 -9.32691 -13.8703 -12.8152 -8.59385 -6.00204 -8.44801 -5.33898 -9.66796 -6.99684 -3.91439 -1.63261 -4.61487 -0.156587 -4.42699 -1.8154 -17.4211 -5.94856 -21.9619 -7.66598 -12.7083 -8.18538 -15.4113 -16.1391 -23.2097 -17.4416 -16.1803 -15.7031 -20.1786 -18.9756 -25.5814 -7.44596 -20.1036 -11.667 -29.2761 -18.7477 -26.4154 -25.8855 -37.5689 -34.3994 -43.6755 -143.704 -15.0116 -51.352 -56.0925 -146.729 -147.611 -105.549 -57.7177 -56.3176 -157.783 -142.11 -37.1316 231.859 -140.798 111.882 -57.1254 311.211 431.606 -160.946 -143.045 -197.501 -81.7961 -162.696 435.764 438.497 -163.873 -206.204 -158.763 -172.118 -154.608 438.008 -43.0658 -109.937 -23.9241 -142.656 -62.6346 -26.0207 -3.61933 -12.7728 -0.293249 -17.454 -3.33823 -10.2933 0.777516 -201.88 434.572 436.183 435.779 437.895 432.646 435.354 -141.745 435.866 401.934 437.104 419.873 434.5 419.664 -17.3095 404.81 290.489 428.914 -12.9078 425.973 215.718 2.67975 292.851 2.51466 -6.70976 2.38399 270.32 1.29665 556.867 434.171 426.281 434.508 357.131 433.98 362.366 268.016 414.317 252.978 415.175 276.952 442.793 24.6383 2.441 318.487 308.67 4.48213 227.668 -114.38 383.737 435.74 417.837 434.127 438.965 428.236 490.323 203.182 437.718 264.591 436.875 138.916 401.819 166.028 0.182491 354.065 -34.8681 207.902 325.83 581.769 429.544 592.824 425.693 436.017 420.054 371.86 221.43 431.071 209.676 340.787 162.965 325.391 269.443 -40.5446 232.69 -24.9881 225.63 271.191 526.264 415.761 412.071 415.561 409.479 413.813 410.952 413.223 427.815 420.939 428.324 417.504 420.239 418.192 421.141 470.883 430.152 490.329 419.197 372.846 420.476 349.073 173.113 450.836 69.8094 328.215 267.76 274.911 242.189 164.692 267.764 490.414 240.378 754.564 453.05 432.281 209.765 423.668 393.403 427.978 429.573 209.875 394.081 192.014 264.637 182.328 440.212 233.99 374.548 -3.15337 210.633 713.377 262.015 390.215 427.713 409.098 429.676 547.279 428.055 401.844 180.895 427.079 326.378 437.599 230.322 425.243 209.633 -30.8408 284.034 -1.74944 313.133 233.325 -3.29174 429.209 431.307 432.542 424.438 428.116 430.282 431.412 438.821 431.679 427.633 442.955 430.523 356.734 301.849 -82.6257 423.228 234.203 342.633 295.835 -8.64954 -64.3364 -5.01932 259.495 -25.5926 297.545 -0.349888 420.457 183.413 20.7954 335.015 419.49 197.041 -47.1962 432.849 -43.9206 -73.6805 432.328 433.135 -54.1596 -59.1365 -128.945 -91.1564 -129.088 431.831 324.24 -65.2432 -122.53 -93.3118 -134.842 -130.198 388.052 300.126 -134.214 -108.307 -7.08627 -69.8871 -18.4604 -1.42685 -63.1162 -14.4696 -82.2299 46.2217 -35.1583 -58.3755 18.9734 -48.6009 -132.833 -93.6294 -77.0211 -143.234 -63.2907 -119.799 17.086 -21.9917 21.3775 -31.0217 11.3827 -8.57967 -22.7565 -25.0097 -44.309 -76.0267 -22.1332 -29.6984 -12.7391 9.48744 -6.7021 10.0047 -2.28803 8.68473 -0.528278 -18.4874 -9.7215 -10.4098 -13.3347 -17.0874 -8.34769 -11.6807 12.1346 6.42726 9.51462 13.1924 11.4748 8.23163 8.39038 -1.68872 7.10347 -1.54379 7.20789 0.707567 7.00047 1.51314 -7.3661 -3.76221 -4.25209 -4.68023 -6.7545 -0.877928 -3.61662 -4.04151 -2.86778 -2.29915 -6.72739 -5.35102 -3.50302 -3.17505 -1.73121 -1.90106 -0.544762 -4.06147 -1.80814 -2.61577 -0.662814 8.91019 5.31402 7.93903 -1.46025 7.25683 1.17555 -3.28635 -0.0656711 -2.97922 -2.01749 -2.95396 -3.02385 -0.386558 -2.70061 -0.424709 -9.73636 -10.5235 -9.08083 -8.40064 -5.61858 -4.74185 -0.245806 -7.70958 -6.28876 -6.59411 -14.287 -7.5722 -5.91914 -6.36857 -10.349 -7.64321 -10.5767 -7.52201 -9.80423 -7.36958 -10.2073 -9.39606 -13.7523 -12.8407 -10.7942 -9.90917 -13.5897 -12.8624 -5.4633 -10.6226 -7.88847 -8.64498 -6.09605 -10.9001 -8.16042 -0.178456 -4.76757 -1.91956 -4.53397 -0.713726 -4.86063 -1.94086 -165.794 436.343 438.296 -79.0671 -150.884 437.914 437.98 -152.014 437.851 -170.884 -145.192 437.442 429.73 -60.5547 -27.3971 -118.794 -62.4918 433.578 -32.6705 -4.40194 -14.5011 0.899658 -29.0694 -4.6732 -21.5945 -0.72501 437.926 431.418 434.792 436.96 437.325 431.04 433.978 418.835 434.293 452.359 436.744 427.628 435.104 408.942 -16.1571 424.809 252.372 434.122 356.335 407.939 323.932 1.62827 202.183 2.41163 356.292 -12.0049 404.836 433.565 525.434 436.44 384.25 438.338 370.804 233.399 443.468 226.053 436.236 295.641 447.377 228.693 44.0825 -18.3571 360.928 -20.1169 224.521 -42.7077 378.681 425.512 432.653 438.733 379.98 425.024 365.845 217.235 328.069 237.572 461.737 210.127 331.692 265.431 -82.7168 209.678 218.486 -36.2057 261.587 549.406 417.026 407.682 413.763 411.678 415.455 406.446 410.96 424.596 416.349 418.365 419.477 421.469 418.62 415.917 393.29 414.598 376.428 418.002 373.615 408.424 386.728 209.693 331.56 280.98 329.333 278.431 335.436 296.637 735.205 254.936 504.685 278.871 512.983 263.754 444.221 413.681 408.747 413.394 405.473 410.374 403.307 414.802 418.289 417.191 418.974 417.662 414.671 417.006 416.149 379.003 417.072 366.604 405.538 383.905 408.398 382.038 280.162 320.823 259.318 337.372 295.467 328.452 287.408 482.555 267.711 607.336 264.889 439.587 255.78 476.534 412.755 411.281 414.471 405.772 413.501 411.45 413.778 417.771 419.374 426.227 417.278 416.81 419.292 424.553 348.235 427.343 465.803 413.242 373.244 425.776 397.633 224.195 440.18 247.141 333.345 265.847 474.439 203.423 681.508 249.864 260.822 566.147 215.599 -5.60874 460.223 427.236 423.145 430.23 405.696 429.742 425.3 252.057 403.879 280.875 448.867 209 430.667 251.46 -30.7405 148.763 -54.4993 206.327 -5.56143 241.982 2.3271 424.429 431.345 311.782 428.989 421.005 430.456 409.394 272.321 392.283 296.397 432.859 263.465 383.992 289.486 308.999 246.925 2.62151 304.341 -11.3723 433.886 -50.9433 -60.8624 429.573 433.182 -36.4612 -67.9136 356.143 -72.0122 -127.764 431.757 406.93 -81.841 -131.427 300.693 -137.652 -101.538 380.794 298.79 -131.516 -82.4659 0.510828 -72.1414 -13.9784 312.745 -56.9051 -15.1827 -46.9513 -4.94233 -59.5274 -43.3858 -63.8203 -13.1467 -70.7396 -142.615 -86.0206 -125.974 -96.4181 -145.469 -88.8793 -129.351 11.2038 8.28572 8.31483 13.7667 10.94 7.91337 7.97731 2.00441 6.95317 2.00698 7.63154 1.9675 6.93372 3.22089 -6.77973 -0.530912 -3.58005 -3.9659 -7.16048 -1.533 -3.89937 -6.73027 -3.7254 -3.70301 -9.29923 -7.03927 -4.81693 -4.51591 -2.12992 -2.94476 -0.771995 -4.87062 -2.21492 -3.14602 -1.58216 7.90605 5.726 7.6215 1.44277 7.18702 2.47363 -2.95413 -0.176048 -3.04943 -3.15678 -3.48768 -3.658 -0.458237 -3.09315 -0.72577 -9.62244 -10.2164 -9.02352 -8.35667 -5.59162 -4.73003 -0.244907 -7.53076 -5.76402 -6.22055 -14.6582 -7.34002 -5.82021 -6.14654 -9.56086 -7.22086 -10.0742 -7.34094 -9.80302 -7.22904 -10.1359 -9.83975 -13.4555 -12.7518 -10.3104 -8.92825 -13.1877 -12.3693 -6.08346 -10.8874 -8.16902 -7.9391 -5.34883 -10.4482 -7.85805 -0.693606 -4.87805 -1.94343 -4.8668 -0.129397 -4.77182 -1.91605 -149.197 439.541 438.065 -58.4378 -136.712 436.994 437.918 -147.555 437.513 395.632 -155.401 -168.882 437.497 -63.7845 398.412 -33.1371 -119.884 -67.79 -41.3301 -3.9919 -21.2808 -0.234676 -28.6405 -5.53471 -28.0847 0.386484 437.223 431.172 434.128 436.332 437.783 431.583 434.897 399.208 434.127 501.301 436.793 392.582 434.967 430.338 316.596 431.247 354.47 386.213 419.557 351.131 2.31647 386.438 5.44744 -19.8304 1.5816 244.547 7.60628 437.47 439.921 442.395 434.604 418.468 437.956 422.513 323.498 438.889 137.707 405.299 315.065 436.057 308.843 -0.178624 208.693 -32.2902 318.59 8.31357 395.142 -59.849 420.015 415.453 418.008 417.135 420.368 416.373 418.61 436.141 421.901 425.894 426.217 432.626 422.483 427.538 541.657 425.142 361.415 436.956 391.673 426.645 400.325 -30.2402 335.061 257.065 441.845 272.131 305.737 237.08 -35.0923 264.36 485.787 267 -38.5351 266.934 601.495 416.113 406.121 409.268 414.78 418.953 412.638 416.419 421.878 416.54 415.533 421.713 424.936 417.669 418.479 371.993 407.137 385.031 428.044 349.133 412.684 376.822 274.363 335.692 295.042 305.949 234.448 338.486 285.788 476.011 263.315 455.473 278.213 576.101 256.505 517.67 408.85 404.114 415.455 411.479 415.815 409.285 415.791 412.936 417.522 416.134 417.686 418.825 418.22 419.824 384.233 406.097 384.182 409.373 382.056 416.238 369.994 293.949 328.957 289.018 332.897 292.311 320.531 275.003 414.454 411.842 414.154 411.097 416.086 412.74 415.939 416.331 419.384 424.367 418.88 419.758 420.94 428.046 375.025 425.133 423.196 417.625 348.078 430.215 477.104 266.098 459.854 217.6 330.062 272.629 431.587 239.748 518.404 224.868 -10.3017 264.625 575.903 246.798 507.931 429.484 433.955 431.842 438.11 431.37 392.425 207.148 439.188 242.516 435.484 247.084 385.66 21.3611 -10.2842 267.723 -0.640473 260.65 -22.9241 362.76 436.523 430.323 422.122 430.628 333.425 431.746 403.334 246.601 420.677 265.71 412.446 220.919 427.076 317.991 -3.89896 306.657 -29.6689 296.127 316.569 432.343 -38.0083 -71.8111 431.236 434.685 -60.8709 -85.4931 418.693 -85.8025 -133.183 432.516 401.55 -96.1408 -139.309 278.026 -132.534 -81.244 429.4 311.12 -142.155 -89.1539 -56.2614 -11.881 314.841 3.48497 -60.6774 -5.64361 -68.3388 -17.9465 -78.2088 -62.7357 -67.8755 -15.9425 -73.7293 -150.003 -95.9619 -131.399 -109.718 -151.715 -105.29 -135.39 10.6559 7.7018 7.8214 12.5318 10.1917 6.77581 7.27478 1.95193 6.84891 3.20219 7.56863 1.71714 6.15267 1.61262 -7.53776 -1.65828 -4.10941 -4.64383 -7.5625 -0.994892 -4.29177 -7.20921 -5.14292 -4.78291 -9.4257 -7.09389 -4.84287 -4.5782 -2.22279 -3.36849 -1.69398 -5.03036 -2.21956 -2.3868 -0.724506 7.66614 4.56149 6.79137 2.43875 6.27938 0.982317 -3.16778 -0.339091 -3.51519 -3.73104 -3.27842 -3.64896 -0.748254 -2.70967 -0.34005 -7.2683 -6.2099 -6.15583 -4.97067 -5.70579 -9.94961 -7.94685 -10.7879 -8.39863 -11.6986 -8.8548 -13.0039 -11.9819 -13.196 -11.5963 -5.12013 -9.31414 -6.88326 -8.11983 -6.01346 -0.0972647 -4.38369 -1.77318 -4.07128 -1.73169 -12.3823 -7.60281 -15.2018 -8.62762 -13.9502 -6.9788 -21.0583 -14.9512 -19.8142 -19.303 -15.792 -14.2265 -22.9578 -17.5529 -19.8595 -11.5206 -29.8347 -5.07312 -24.8219 -5.71739 -48.5156 -27.4755 -41.1363 -40.1818 -27.7531 -22.6429 -50.0278 -55.3102 -54.4381 -49.5489 -123.711 14.1447 -34.6805 -122.667 -76.2055 -143.925 -193.089 -98.6099 -127.574 -161.485 -52.4775 320.583 433.303 96.7816 5.53951 248.626 -142.325 436.146 437.87 -48.7781 -131.67 -129.831 -192.967 437.521 -138.416 -162.056 -138.872 -168.7 -77.2885 -42.3753 -151.902 -77.1337 -149.335 -48.217 -6.82434 -22.012 0.677732 -25.8684 -5.45836 -27.0939 -2.29695 437.956 432.642 435.36 437.534 434.198 436.426 408.279 434.433 411.473 -164.877 435.537 462.223 -29.7656 440.39 280.211 -150.129 -36.8385 417.915 299.819 1.80759 215.202 5.08965 -15.8977 1.82068 282.013 411.85 437.46 626.412 435.372 454.308 435.449 518.104 282.009 419.292 226.296 415.58 297.115 403.941 269.626 156.054 -33.3822 286.223 226.061 1.19555 439.44 429.782 487.511 434.867 446.373 433.586 504.749 38.2704 381.69 217.396 407.267 255.311 445.747 175.33 -25.8893 232.901 291.185 69.933 418.311 414.554 415.879 417.086 419.897 416.541 419.699 426.447 419.518 420.336 425.173 429.477 424.96 430.195 385.455 416.283 374.692 432.535 428.799 427.821 607.692 229.903 325.703 280.305 443.046 307.024 451.086 247.293 801.894 268.617 580.566 387.7 -29.2303 244.282 -28.9656 416.454 412.222 417.257 416.318 419.381 415.656 418.646 419.955 419.828 419.597 424.683 433.846 423.844 429.76 369.34 416.705 375.249 429.208 480.533 429.949 495.584 274.786 328.705 253.471 449.67 238.589 440.686 235.661 502.355 267.436 480.862 236.467 -27.1917 199.55 361.84 432.356 432.253 431.584 432.588 431.146 453.482 255.481 440.066 127.842 441.738 260.082 434.366 236.395 687.294 127.137 240.281 233.093 -8.04573 514.003 430.945 760.379 430.853 520.941 430.611 377.942 196.763 310.279 280.927 380.504 219.791 390.739 295.782 209.401 -2.35711 236.245 -1.54833 271.104 -3.332 430.062 430.81 432.858 427.639 431.146 432.246 433.961 409.305 431.878 455.63 430.55 332.518 432.999 380.132 294.367 428.265 330.556 394.494 279.404 411.134 -38.2467 309.719 278.927 3.61949 -20.7016 2.64947 419.961 193.528 -54.403 313.559 428.904 127.073 -68.826 434.972 -70.5341 -89.4628 432.231 434.132 -75.0447 -113.02 411.132 -105.231 -142.421 433.417 -126.252 -216.247 335.395 -144.64 -87.8701 -162.185 -46.4786 -204.135 -98.6404 3.44183 -44.0251 -6.49738 -21.1524 1.35039 -39.3429 -8.18228 -85.3586 4.10803 -59.3001 -53.9729 -109.472 -152.852 -79.9131 -129.106 -121.355 -245.588 -24.5986 12.6113 -5.85869 18.5115 -15.5041 -66.469 -24.8514 -32.8111 -23.0018 -26.6426 -1.99143 7.64972 -0.988617 14.6613 -10.8444 6.60901 -3.45881 -18.047 -8.8076 -12.5588 -17.2031 -21.0671 -11.3272 -13.0563 9.32881 6.21057 6.86734 9.046 8.90984 4.27027 6.71036 0.304039 5.80429 0.93128 5.30479 -1.52578 5.37801 -1.56228 -7.51199 -1.46107 -4.29948 -7.34855 -8.40596 -3.85397 -5.41763 -6.13196 -4.26655 -3.7226 -6.96314 -5.51271 -4.41006 -3.45588 -2.05543 -2.94812 -0.734345 -4.29437 -1.97275 -2.88151 -0.701424 6.60773 0.680221 6.1842 0.652623 5.37116 -1.81197 -3.69086 -3.24689 -4.59256 -3.29306 -3.97532 -3.30139 -0.396905 -2.85132 -0.3811 -4.35469 -4.10465 -4.26771 -5.41164 -7.53694 -15.6675 -14.0793 -21.6644 -15.8783 -10.9081 -22.79 -16.2085 -7.85289 -4.65963 -7.94608 -3.78264 -3.88844 -0.736918 -3.01137 -0.553734 -3.44355 2.1113 0.251687 -1.25493 -3.62828 0.662556 -2.38186 -16.7434 -7.80645 -24.2578 -10.9656 -22.6096 -7.95375 -22.8954 -11.1206 -24.8551 -16.1546 -23.4732 -11.5613 -23.696 -17.7228 -5.76111 -11.2751 -8.75436 -4.46992 -5.54857 -13.146 -7.40353 -25.972 -7.21456 -22.8645 -7.25417 -28.2744 -15.9349 -24.1092 -19.6275 -31.2863 -28.6848 -13.598 -98.5351 -11.3197 -34.1833 -27.7689 -50.5072 -112.2 -122.272 -41.7542 -43.5068 -65.2098 -71.0278 -120.727 -106.311 -126.942 -61.5944 -109.225 -85.1644 -116.705 -175.872 -140.008 -180.459 -136.253 -138.307 -158.103 -188.44 -131.453 432.517 437.024 -82.3072 -128.56 438.738 438.779 -169.647 436.126 415.216 -149.574 -186.212 437.626 -47.5164 425.465 308.645 -165.673 -59.8461 -47.6418 1.07434 288.606 -160.1 -27.5684 -5.87396 -32.524 0.230987 373.428 434.999 434.436 436.793 410.81 434.891 342.89 316.1 413.196 247.647 419.317 -44.455 417.546 286.772 -33.8881 290.957 -30.9995 0.995242 288.104 6.00331 432.158 433.699 427.289 435.324 415.365 433.262 413.646 79.3462 444.171 67.2411 431.352 258.004 433.178 219.953 -87.2085 278.196 -21.0503 248.255 309.729 374.221 440.888 412.894 432.939 374.396 435.889 476.574 244.905 446.794 252.724 442.859 281.092 403.531 291.24 -22.8925 246.406 -28.6536 413.327 -27.0907 189.764 3.35551 501.069 431.109 431.694 436.924 984.993 431.77 430.436 233.874 428.141 130.636 354.686 212.259 436.24 227.181 -19.4295 228.003 -17.5466 -205.077 -0.0461993 274.076 -17.285 572.182 430.977 383.819 432.144 382.762 430.825 375.487 246.793 414.412 203.376 435.716 290.389 380.885 297.559 332.426 -10.8759 349.636 3.30672 282.721 -2.03067 455.343 430.471 605.14 430.24 349.64 435.408 604.509 240.511 429.922 310.57 405.298 280.39 378.371 272.528 -3.26398 295.697 -1.43395 273.88 3.73375 320.962 4.13771 432.506 432.623 434.196 432.824 434.426 -115.219 -158.201 377.463 433.445 434.056 350.137 -171.929 -196.393 298.389 -41.0398 363.862 -162.195 -57.8034 -0.965067 -21.1417 3.23678 3.58161 -34.266 0.362855 434.285 -92.774 -117.427 -113.349 -156.171 -96.3097 -122.758 -187.252 -146.201 -224.069 -190.641 -205.53 -176.643 -209.508 -55.4082 -181.558 -99.3846 -159.324 -82.3675 -159.072 -77.6159 -98.394 -18.4758 -85.8327 -36.9612 -70.2886 -17.2646 -41.2496 -237.385 -76.3946 -82.532 -111.269 -132.268 -56.1712 -68.1089 20.7369 -21.3381 -5.2327 -32.6648 -9.09277 -25.9755 -71.4494 -25.8612 -24.7932 -37.6106 -39.9086 -27.2163 -24.4493 19.4922 10.6037 11.9777 7.43205 0.955724 6.04583 0.551055 -18.2421 11.5588 -7.23324 -8.69407 -23.6989 -8.19778 -21.9497 -22.0509 -10.5824 -12.6554 -24.8261 -19.7733 -21.3628 -13.0688 -10.0431 -10.4939 -6.28457 -15.4107 -8.24748 -6.58901 -5.98597 10.2881 2.21977 6.65016 3.70981 -0.0225424 -6.41896 5.8298 -3.29035 -6.96052 -21.8156 -11.0263 -5.58898 -6.62104 -21.0708 -9.78908 -4.0668 -4.71364 -3.2048 -7.1815 -4.06938 -1.85235 -2.78005 -0.530676 -3.41442 -1.35625 6.47942 -2.6892 -5.37325 -3.18803 -0.34127 -5.94181 -3.71168 -14.1165 -8.14195 -7.93406 -18.7497 -8.72695 -12.5754 -19.2032 -12.7571 -12.7758 -9.88321 -7.71366 -4.64138 -8.52776 -4.84556 -3.63472 -0.660311 -4.11104 -0.23599 -4.84095 -2.97067 -4.40814 -9.80494 -7.81687 -5.46423 -6.01233 -18.7764 -10.4193 -16.7553 -8.73388 -12.6631 -9.05163 -12.7727 -13.0234 -18.9215 -16.5363 -13.1744 -11.0373 -14.8662 -13.9412 -5.56918 -11.0955 -7.86225 -8.78649 -5.44125 -10.7542 -7.78513 -1.54857 -5.18253 -2.21793 -4.12908 -0.686447 -4.9642 -2.10186 -127.461 437.531 439.094 -73.1394 -99.5514 -87.2372 -102.548 -188.284 438.528 -165.723 -139.437 -174.642 -119.28 -172.29 439.257 432.781 437.171 -89.6277 -98.1031 434.624 436.336 376.243 -106.237 -167.846 -152.484 -49.9294 395.132 292.113 -162.734 -77.4052 -144.046 -54.5672 0.043994 281.367 -53.191 -6.72862 -28.1342 0.895146 435.628 430.529 434.265 434.378 437.97 433.621 437.143 438.605 433.568 386.166 437.091 -154.073 436.034 400.839 287.618 450.648 212.733 -142.642 -46.5743 401.892 286.023 296.301 -94.9413 -30.0247 0.937858 337.184 2.35323 432.939 428.314 433.546 434.006 435.689 432.558 435.746 474.56 437.81 570.256 436.38 398.32 438.551 520.343 241.358 396.776 281.139 404.988 300.275 396.089 311.706 -0.269232 234.488 1.97517 332.466 2.64795 312.477 930.462 431.943 420.921 437.292 396.122 435.441 422.546 244.258 445.656 249.344 405.535 309.68 423.069 306.421 1.11373 240.878 -19.1209 303.656 299.142 5.75423 431.948 429.503 432.369 433.503 435.279 434.672 435.686 427.028 431.193 330.268 435.103 421.858 434.575 144.36 431.097 285.936 425.493 310.121 -34.5801 4.50943 316.519 -5.16193 299.549 5.6039 -17.5463 3.51672 433.634 433.529 434.701 434.318 435.28 382.366 434.011 418.698 434.626 288.389 345.63 -38.5359 -167.568 -57.2055 1.53465 3.64378 -20.4092 3.18801 -33.4654 1.50925 434.491 -118.476 -158.591 -140.358 -134.685 -138.24 727.114 -175.864 -198.954 -195.959 -165.788 -197.588 -33.0339 -169.983 -84.406 -195.143 -83.7851 -186.111 -86.8782 -16.6056 -9.87001 -18.5663 -8.86801 -13.5959 -8.10905 -12.5985 -17.9069 -18.6883 -14.6074 -16.2632 -15.684 -14.0836 -12.8707 -1.17681 -5.6497 -5.50914 -18.2922 -7.29896 -12.1259 -11.1089 -12.7437 -10.1003 -3.72125 -8.13719 -4.99436 -0.626504 -3.82633 -0.708095 -8.15875 -9.20019 -12.088 -12.3503 -9.90299 -8.28949 -4.85565 -4.30723 -0.0955851 -8.24804 -7.47929 -7.14664 -9.35082 -8.0085 -11.5696 -8.77183 -11.0329 -8.31554 -10.2943 -10.1819 -12.8455 -12.1377 -11.0535 -10.3619 -5.42406 -9.6859 -7.20914 -9.29485 -6.27173 -0.578729 -4.4441 -1.80305 -4.76936 -0.835176 -73.6715 -65.5097 -108.313 -5.95064 -48.6242 -0.978285 -76.8481 -132.686 -114.276 -179.495 -57.0007 -60.5042 -81.8913 -117.171 -103.289 -107.914 -13.8803 -78.3108 -77.7888 -81.3227 -175.842 -117.556 -152.867 -102.114 -161.832 -140.723 -186.885 434.995 437.387 -67.1344 -123.713 -88.3574 -151.148 -154.019 436.842 349.865 -150.13 -189.258 -170.913 -169.44 -58.7654 396.522 -34.7892 -152.793 -82.1973 -145.664 -76.5184 -0.758881 -19.8129 -0.553208 -33.769 -6.27745 -32.1172 -6.38759 427.152 356.603 426.661 134.809 -100.481 177.515 -120.186 437.164 434.637 438.486 -94.5356 -151.037 -122.584 -170.995 390.141 439.481 531.322 -172.027 -165.409 -168.299 -168.385 381.949 320.875 -142.472 -56.1545 -158.558 -45.15 1.64034 321.828 3.59294 -25.2084 -4.75239 -24.1764 -3.22257 438.038 434.408 437.256 -121.428 -105.365 -149.127 407.496 436.237 453.462 -164.111 -173.44 -183.48 324.51 416.941 -161.834 -41.2212 -149.514 -44.6866 4.42645 3.00804 -22.5678 -1.24917 -29.3046 -1.23363 427.761 305.566 431.217 133.916 -108.891 93.7263 -59.1441 437.191 435.007 436.653 -97.1219 -157.945 -88.6931 -146.921 415.543 435.316 -164.268 -187.706 -177.219 -172.9 -185.175 -147.215 -45.681 -143.634 -48.9889 -139.764 -73.6057 3.26026 -15.4026 1.48377 -23.9858 -1.62448 -28.5291 -3.29773 -115.847 -94.0999 -133.74 -45.1598 -103.8 -164.943 -171.996 -172.162 -204.653 -115.028 -190.086 -50.3895 -189.117 -86.3093 -159.763 -76.3284 -187.892 -72.9716 -61.7893 60.2612 -20.9888 54.7472 12.1587 36.762 11.4681 -57.6203 -127.786 -18.6342 -94.7382 -15.1241 -71.8307 -146.209 -151.313 -114.147 -151.629 -64.1962 -50.3469 -87.093 -135.943 -62.9312 -130.921 -61.5173 -39.0395 -41.5895 -67.8655 -18.4479 -40.896 -13.4683 -52.9634 -14.5538 -28.9795 -95.5657 -51.1338 -56.8703 -58.7847 -55.1347 -36.6549 -38.8774 -5.34859 -6.04785 -6.14996 -5.94546 -6.24054 -11.3096 -7.31331 -11.2573 -7.62017 -9.98665 -9.82799 -13.1503 -12.0438 -10.3789 -12.588 -11.9517 -10.3573 -9.10313 -8.10257 -8.71083 -5.73294 -10.1044 -7.59914 -8.06733 -5.41971 -1.95559 -4.2112 -0.746861 -4.50482 -1.8345 -4.52645 -0.376758 -6.23089 -10.9127 -9.69367 -5.20808 -0.510103 -10.6672 -8.15525 -8.21398 -9.90822 -10.696 -9.74918 -8.70022 -5.90475 -4.50454 -0.74726 -7.88897 -5.49533 -6.5963 -7.35503 -7.13328 -9.87682 -8.26259 -11.0683 -9.68191 -8.40355 -10.2759 -11.0511 -13.1242 -12.596 -10.2808 -8.79332 -12.0713 -11.343 -6.85085 -10.9423 -8.05742 -7.9203 -5.40849 -9.47291 -7.32605 -1.61784 -4.79425 -1.92769 -4.61251 -0.141708 -4.49281 -1.86213 -19.5563 -5.51971 -35.1798 -7.33015 -19.2291 -24.3137 -39.5228 -39.0637 -20.3862 -17.6877 -45.6306 -44.516 -7.70349 -59.8854 -6.21861 -33.7546 -7.51277 -28.7079 -50.575 -70.4883 -77.7563 -33.9182 -35.3355 -32.1909 -34.7425 -139.155 -109.486 -159.66 -38.7707 -66.9642 -11.9617 -94.8048 -154.714 -161.96 -166.367 -89.9974 -89.1322 -93.9354 -94.5216 -106.018 -147.48 -32.5832 -28.9428 -81.6224 -167.589 -166 -186.973 -81.2811 -92.5134 -85.3415 -73.5338 -21.0194 -13.2144 -30.1527 -6.63123 -31.4068 -102.939 -57.569 -43.5599 -39.9352 -40.6637 -34.6005 -31.3223 -53.0207 -11.3933 -28.2315 -4.00716 -33.874 -5.71678 -25.0016 -43.3986 -30.0554 -28.9403 -34.3772 -26.6457 -25.4224 -18.6564 -5.78844 -5.88563 -6.57514 -6.33404 -6.67727 -10.1599 -7.75615 -7.19832 -13.5756 -8.60347 -10.5306 -8.22247 -10.1954 -10.7899 -10.6061 -9.23354 -6.41427 -8.35947 -5.48195 -0.894735 -4.74616 -0.319632 -8.36802 -7.44382 -8.18076 -11.2538 -12.2171 -10.463 -9.21382 -5.83089 -4.50241 -0.809052 -6.36712 -3.12497 -4.60657 -4.13193 -1.79508 -11.9617 -9.16039 -15.3946 -7.45741 -12.8617 -6.70813 -23.6645 -12.4073 -17.176 -14.8764 -13.1205 -9.27015 -21.1873 -13.8194 -6.60255 -9.9597 -6.91805 -7.31939 -4.55198 -4.68583 -5.53407 -1.71297 -4.44382 -1.82809 -3.77392 -0.111298 -3.40113 -1.41622 -1.94927 3.19562 4.78567 -1.29053 9.95978 -0.808289 -3.00614 -19.9308 -14.9134 -29.8721 17.8273 -7.20285 -18.2157 -16.053 -31.1279 -28.1513 -29.7265 -18.9912 -14.6621 -7.78659 -5.75002 -10.0882 0.457955 -6.19043 -11.1455 -7.84974 -26.0467 -8.26389 -19.2645 -8.83007 -16.2543 -7.18441 -15.3463 -22.8956 -26.0386 -25.5035 -18.9026 -17.5797 -19.8828 -19.8338 -38.7468 -4.88801 -80.4871 -8.77323 -24.5617 -2.12557 -39.705 -51.1577 -78.1433 -63.2287 -31.3235 -32.1883 -37.6515 -34.2482 -18.258 -56.8937 -10.918 -11.605 -30.247 -64.4537 -62.9378 -60.3135 -30.2138 -32.6598 -31.7826 -27.4891 -5.24294 -24.9628 -8.86311 -17.966 -2.57242 -28.0877 -24.4189 -25.3869 -15.3077 -18.934 -16.5374 -24.6754 -15.5475 -3.12991 -5.50938 -5.9652 -3.38115 6.87724 -8.43423 -6.10401 -21.456 -9.41864 -13.8216 16.0745 -8.41007 -15.7022 -15.7949 -15.5772 -13.5527 -17.1211 -15.714 -10.1668 -7.3214 -13.6774 -8.06889 -12.3983 -7.0659 -12.544 -8.00092 -10.3814 -8.00795 -14.2183 -11.2428 -10.7611 -9.20098 -14.3232 -8.8167 -6.07081 -8.31986 -5.38981 -7.25759 -4.47174 -0.912575 -4.66863 -0.300933 -3.90016 -0.259844 -10.2525 -9.06929 -5.3635 -0.303981 -5.38343 1.61113 -15.0764 -10.2985 -0.347038 -3.60312 -3.12729 -0.568923 15.9775 -4.46714 -4.69645 -9.53871 -7.09114 -9.34658 -15.9943 -8.0471 -11.6954 -16.4699 -13.1594 -12.1685 -9.87958 -4.1988 -7.73584 -5.75772 -7.90719 -5.18477 -0.671323 -3.86719 -1.61537 -3.94911 -0.735099 -4.88759 -3.38209 -4.82069 -8.78564 -7.25857 -6.51563 -6.53289 -12.8633 -8.34754 -12.6679 -8.09225 -11.0511 -8.26895 -10.5852 -18.6025 -3.05358 -36.6736 -8.15819 -15.5369 -4.07322 -27.5211 -22.6867 -34.7184 -27.789 -18.6 -17.6968 -25.6205 -19.5218 -10.6985 -26.1572 -10.1723 -11.3971 -20.0477 -27.2617 -27.9862 -25.1261 -17.798 -20.313 -17.253 -6.28471 -5.45252 -5.23265 -9.93616 -8.60013 -14.6599 -6.51776 -19.7986 -9.35805 -12.4419 -14.6392 -20.2618 -14.223 -13.0133 -11.3723 -10.2141 -7.61939 -7.91652 -6.14935 -9.57512 -6.17939 -8.70017 -1.90038 -4.0539 -1.72901 -4.5569 -0.796488 0.104485 -11.7414 -6.22833 -25.2776 -7.99777 -15.6762 -16.7664 -15.5593 -8.55139 -4.61651 -6.70966 -4.25219 -0.734114 -3.7414 -0.280582 -14.6836 -8.45891 -4.31216 -0.202534 -12.782 -7.45653 -7.67447 -11.0874 -11.5106 -9.04554 -8.09393 -4.9571 -4.23437 -0.307895 -7.78711 -8.69666 -7.58233 -10.6821 -7.97489 -10.1793 -9.42532 -11.148 -10.1793 -5.39687 -9.18284 -6.08351 -0.611754 -4.60426 -0.77943 -7.47468 -6.38429 -7.0567 -7.69979 -10.1738 -8.22434 -9.90897 -8.15522 -10.0677 -10.64 -12.042 -11.5559 -10.636 -9.05613 -6.47249 -9.69227 -7.33658 -8.23888 -5.43969 -0.852061 -4.34984 -1.71804 -4.6781 -0.118178 -6.57024 -5.37485 -6.01175 -7.72546 -9.91824 -7.35406 -10.5385 -7.80951 -11.6795 -7.85453 -10.0517 -7.97009 -11.4415 -12.8164 -15.0979 -14.0567 -10.645 -9.28553 -12.1824 -10.4333 -8.06589 -11.1951 -7.90942 -8.36217 -5.54792 -8.72908 -5.60562 -1.95981 -4.77361 -1.89555 -4.74189 -0.163303 -4.23171 -0.614179 -5.09364 -2.58695 -1.03918 -8.89339 -6.98332 -6.29392 -2.6087 -13.5868 -4.5802 -26.6482 -7.9737 -12.5689 -5.59755 -22.621 -14.2004 -24.6505 -17.3356 -13.3348 -10.9176 -20.3924 -12.6105 -7.2864 -10.5825 -5.62173 -8.95985 -5.38702 -7.99118 -4.67004 -2.00935 -4.10077 -1.73035 -4.06295 -0.618906 -3.52857 -0.689155 2.77817 -3.6975 -5.01079 -5.7645 1.0068 -8.75051 -7.63749 -11.1762 -18.4039 -10.8981 -10.4623 -15.8101 -16.8479 -18.4947 -15.1128 -11.2341 -15.936 -11.2478 -6.68809 -11.3086 -6.51113 -7.33031 -3.7768 -8.59833 -4.94854 -1.7494 -4.54471 -1.936 -2.99207 -0.590486 -3.77202 -0.614957 -7.20771 -6.60035 -7.8349 -9.61414 -8.63531 -14.8691 -9.54687 -14.9346 -10.9609 -13.4149 -10.0885 -14.5335 -9.62674 -12.118 -14.9555 -14.7111 -13.3262 -14.878 -11.5035 -12.5483 -10.8052 -7.11886 -11.0674 -8.05809 -9.12714 -5.62182 -9.05871 -6.10366 -1.92893 -4.9753 -2.01125 -4.24812 -0.693159 -4.54329 -0.712751 -8.46206 -8.94554 -8.82678 -15.2125 -9.536 -12.0004 -9.66005 -11.7418 -9.67769 -11.8036 -12.5553 -12.6756 -11.8207 -12.004 -9.83391 -7.8061 -10.1822 -7.67204 -8.87661 -5.59188 -1.87297 -4.61658 -1.84141 -4.78431 -0.30387 -8.99398 -11.5063 -9.00582 -11.7445 -9.37174 -11.6375 -11.3794 -12.3432 -10.7502 -6.74972 -9.33219 -6.22414 -0.939353 -4.7264 -0.787912 -8.9781 -11.9554 -10.6014 -5.87628 -0.653536 -13.1754 -7.49246 -7.7487 -11.5901 -12.0482 -9.62507 -8.89027 -5.0852 -4.40052 -0.211294 -7.21931 -10.4917 -2.09929 -12.1426 -5.91016 -22.2242 -9.8681 -20.4517 -10.1587 -5.07208 -8.18373 -4.02415 -0.251391 -3.62842 -0.404308 0.951878 -13.1171 -8.41323 -9.93505 -15.474 -10.946 -15.505 -10.3305 -3.64772 -9.01432 -4.82749 -0.365489 -4.19757 -0.296554 -8.91572 -14.717 -12.1998 -10.402 -12.2653 -9.91737 -5.02733 -8.91364 -5.62619 -0.305922 -4.7341 -0.292759 -9.70925 -5.55793 -0.281172 -8.46 -12.5543 -7.45574 -7.49762 -6.66969 -7.45773 -10.272 -9.79767 -10.2341 -9.91266 -7.19685 -8.10969 -6.85202 -8.41939 -3.21761 -4.77329 -3.12056 -4.73687 -6.78066 -9.24661 -7.28892 -8.24079 -7.69322 -6.99285 -7.05782 -6.81941 -7.53398 -7.05841 -11.4322 -10.5531 -10.7068 -11.0877 -11.0644 -11.0758 -7.88585 -6.71325 -8.35638 -8.80602 -6.9607 -7.79186 -8.91542 -3.20644 -4.47068 -4.42287 -2.78174 -3.24499 -4.31672 -4.37587 -6.00772 -8.66861 -5.78684 -4.3427 -5.4133 -4.64618 -9.59344 -8.25545 -7.14406 -6.75175 -9.29369 -8.58523 -6.78866 -13.4982 -12.8398 -13.3972 -13.1017 -13.2088 -13.1376 -13.7684 -6.34872 -6.93067 -7.34619 -8.85641 -6.03452 -7.36524 -8.13429 -2.8242 -3.11673 -3.71845 -4.06356 -2.88456 -3.06746 -3.70343 0.0673069 0.171882 -2.60746 -0.559889 -0.163529 0.620956 -0.48602 -9.35801 2.37901 -6.60665 -8.57346 2.4811 -16.4463 -15.1972 -15.633 -15.6036 -2.73945 2.57786 -4.05268 -20.0322 -2.82689 3.26547 -4.6605 -2.51127 -2.07352 -3.04934 -2.2806 -2.46186 -1.86748 -3.20559 -2.57581 -2.63903 -7.75576 -2.45875 -3.033 -2.24029 -2.87705 -5.1354 -5.44536 -3.48138 -3.37685 -4.53942 -5.71612 -3.6263 -10.1139 -10.9457 -9.36435 -11.267 -9.63498 -11.4647 -9.81846 -6.17176 -5.63186 -6.38305 -7.40836 -5.99136 -6.08862 -7.20482 -2.89339 -2.66591 -3.52906 -3.68868 -2.73606 -2.81089 -3.77528 -2.4383 -3.97943 -2.47846 -4.44838 -3.38593 -2.93605 -3.09227 -3.77041 -2.9674 -7.64595 -8.60287 -7.577 -8.00744 -7.29507 -5.98169 -5.4581 -6.78387 -5.95411 -6.61393 -3.04004 -2.47079 -3.73928 -2.90509 -3.90951 -7.7217 -2.15885 -2.20861 -2.24859 -6.08904 -6.6168 -5.88831 -5.15154 -3.91305 -3.60879 -6.7611 -9.36627 -10.8873 -6.60956 -10.7281 -7.5115 -14.2498 -17.2875 -15.7783 -14.6537 -5.55884 -7.40936 -4.41303 -7.73861 -2.45915 -3.40497 -2.23607 -3.95177 -7.13471 -8.09657 -9.06183 -8.05882 -7.99623 -7.47732 -7.445 -5.914 -4.40026 -5.47105 -2.488 -4.6832 -1.01774 -3.80838 -9.84471 -7.89543 -10.2694 -7.52329 -11.6064 -7.27637 -11.9729 -12.6993 -13.2967 -13.1353 -15.6743 -15.5187 -17.5043 -16.6043 -8.52687 -10.7574 -8.5135 -13.3745 -10.0786 -14.2809 -10.5355 -1.94809 -4.64987 -1.85127 -5.79438 -2.41236 -5.90661 -2.39018 -2.23003 2.44376 1.99922 2.91345 0.633832 6.30971 4.64164 -8.6405 -7.56748 -5.76532 -15.2436 -12.025 -12.2307 -7.97939 11.5842 3.69641 2.30266 8.62827 10.2413 7.93049 5.56984 -11.454 3.91942 -5.05668 -10.5087 5.26841 -23.3878 -18.6454 -20.2507 -21.5032 -7.57304 -11.7707 -7.42144 -33.7384 -10.2069 -16.5403 -10.5884 0.450601 1.658 0.66779 7.58041 3.19815 6.97846 2.93037 -5.91556 -1.5869 -5.33898 -2.47341 -7.65869 -2.16763 -7.19072 -9.10151 -7.67797 -8.13902 -11.3067 -11.7896 -10.3179 -10.6041 -6.42645 -6.58364 -5.37598 -10.6643 -8.31357 -8.75304 -6.76245 -1.77631 -3.50049 -1.64068 -5.45849 -2.37015 -4.82003 -2.13817 1.68532 0.313021 -3.96081 1.14337 0.582831 1.30422 1.04777 -3.25626 -2.75005 -0.948895 -1.35564 -2.86071 -3.12437 -1.1152 -8.59919 -7.78232 -7.5924 -8.26987 -8.0399 -8.58611 -8.43726 -4.48269 -4.96227 -4.96522 -6.49269 -4.12821 -5.45252 -5.72088 -2.29708 -2.48414 -2.78232 -3.40919 -2.22112 -2.62315 -2.96978 -0.236366 4.54188 1.07727 -6.57402 -11.8934 -11.1655 -3.1519 -0.420192 -1.33906 -1.10865 -9.1181 -12.1313 -14.1918 -7.79625 -10.3691 -10.2539 -13.706 -10.0712 -11.1855 -14.1633 -12.4872 -11.0823 -15.5067 -16.9194 -14.9749 -16.0461 -14.4956 -16.2165 -6.4091 -6.64563 -7.98907 -5.35408 -6.63032 -7.70965 -2.87455 -3.34334 -3.86538 -2.51669 -2.92151 -3.834 12.3935 -3.23331 -4.90765 -2.87048 -4.84745 -0.109464 0.379237 -6.24522 -9.02192 -15.04 -19.6547 -8.59802 -20.2656 -24.4078 -19.9096 -21.8902 -5.22598 -11.2958 -7.09577 -9.14646 -6.58475 -7.47265 -8.97473 -14.7763 -7.06887 -14.3722 -3.99152 -23.7055 -7.802 -17.5917 -16.6597 -18.6653 -18.5733 -25.8442 -21.008 -23.489 -23.313 5.43594 12.4634 6.54377 18.7858 11.5047 23.7937 14.657 -15.8244 -15.9211 -13.2114 -34.6494 -22.9759 -27.6448 -17.1112 11.4842 14.3509 10.4077 27.3586 20.3819 26.0162 18.1433 -18.39 7.58098 -4.32515 -14.8197 10.1745 -43.1211 -30.1925 -33.6397 -38.7187 -16.1263 -23.4648 -15.9556 -75.4727 -22.4335 -38.691 -22.5416 -10.1746 -1.74655 -9.20164 -1.02564 -13.6358 -2.37398 -13.6671 -17.4761 -13.7666 -15.2432 -22.1459 -24.2626 -19.8551 -19.9089 6.0879 9.5388 7.46686 14.056 11.2066 14.2612 15.7242 -5.88297 -4.81581 -3.8203 -13.7701 -9.25474 -9.29454 -6.44677 1.45283 -11.7184 8.48079 10.8144 -1.02926 -2.25223 8.55495 -11.0994 -11.9733 -14.2561 -18.8977 -9.89304 7.39149 5.96065 7.65734 5.41431 4.13895 6.1871 4.32505 6.42348 -2.86997 -5.58229 -2.91592 -3.96187 -1.12152 -1.32374 -0.50132 -2.45918 -1.48385 -2.06619 -1.43928 -1.22288 -1.66109 -1.36831 -1.48276 -12.5164 -16.1081 -17.0214 -12.3377 -12.6899 -13.6142 -11.6909 -11.2713 -11.4962 -11.4163 -10.9216 -11.4995 -12.929 -13.0306 -12.6787 -12.7772 -12.67 -13.1695 -8.29676 -8.87084 -8.84624 -7.85505 -7.94244 -9.38668 -3.31334 -4.38047 -4.41135 -3.24788 -3.26011 -4.50561 -4.31731 2.97597 4.12764 -1.05333 -3.74381 5.56564 1.13449 -9.72691 -8.70865 -11.4466 -16.5028 -12.6737 -23.9639 -14.0279 3.22537 9.73684 5.64874 14.5789 6.04009 21.3334 12.9571 -18.2572 -19.7333 -3.79183 -15.4158 -3.81494 -37.0881 -32.6045 -29.7023 -30.8824 -37.133 -14.4008 -24.3636 -18.9926 -17.6423 -21.3974 -52.8967 -28.068 -26.987 -20.1705 -33.6462 -21.5123 -49.3652 -42.4687 -66.4421 -37.7658 -42.9514 -48.8024 -63.9539 -72.7082 -89.1895 -102.528 -40.9727 -33.6054 -46.8871 -62.4407 -107.114 -78.3178 -125.72 16.8883 45.7312 18.76 69.3676 8.58678 84.2803 -35.5306 -31.8104 -41.1756 -24.3565 -92.6892 -48.5066 -122.586 -42.2336 23.7514 46.3515 24.7541 85.787 -34.7745 77.7184 21.8689 -61.795 13.4438 7.7779 -34.158 -1.5835 -122.092 -70.9299 -80.3832 -111.977 -32.7178 -64.0193 -33.1451 -153.493 -49.5324 -114.009 -57.9377 -51.9892 -19.0151 -42.3479 -76.3787 -121.525 -52.3708 -101.602 -79.0074 -65.218 -70.8497 -150.007 -154.441 -134.293 -145.827 20.0595 22.9671 13.953 40.8119 32.4343 36.6288 43.6808 -31.7447 -19.1082 -22.5985 -112.118 -63.67 -111.811 -41.6053 15.0498 18.899 16.6846 31.1107 31.8397 24.4423 22.5488 -0.698784 -13.1977 -8.08656 -16.7923 18.2445 -32.796 -28.0493 -40.0238 -22.3794 -14.8402 -10.2748 -8.81636 -49.8546 -23.3719 -19.2625 -17.8345 -2.63085 6.78259 0.434988 9.53094 -1.68076 9.41136 0.960157 -11.3135 -5.32813 -7.81016 -11.705 -14.4034 -6.84369 -10.2521 5.85275 7.40719 6.55846 7.14942 6.33325 0.297393 -0.775794 0.881946 -0.353219 -1.42278 -1.44999 -1.82633 -1.69584 -1.34092 -1.71268 -2.08236 -1.79163 -1.09439 -12.7726 -16.4288 -11.7461 -10.2153 -11.8847 -12.9018 -13.0001 -12.6069 -13.3569 -7.85258 -9.20745 -7.70207 -9.70038 -2.89294 -4.73973 -2.99115 -4.8137 -10.893 -8.33963 -10.037 -9.17057 -10.4912 -6.52141 -9.31308 -13.7381 -12.3953 -15.2071 -13.0748 -14.9608 -12.9666 -17.052 -14.1202 -17.6736 -16.5082 -15.9497 -14.8173 -20.335 -18.3154 -8.44879 -12.9891 -9.66107 -11.7664 -8.7125 -14.477 -10.3932 -1.81734 -5.33649 -2.17827 -4.75931 -1.93077 -5.63688 -2.29757 -27.9581 -18.1427 -39.764 -17.678 -36.074 -27.6714 -51.6427 -34.5618 -44.0633 -43.0293 -44.0114 -42.2769 -64.1388 -60.8586 6.4414 41.0723 14.3978 37.3374 18.685 64.9179 -26.2977 -48.7523 -32.6178 -17.6975 -38.0758 -20.6934 -116.052 -65.2124 -65.5079 -74.6184 -94.7267 -25.5522 -90.6437 -50.8665 -92.7363 -42.9167 -191.673 -69.5077 12.6613 71.9531 18.7453 103.03 -25.3394 207.973 -103.883 -101.451 -98.1559 -99.5959 -108.212 -106.103 -106.746 -112.217 -80.0478 -152.486 -84.0551 -180.456 -90.8836 -130.159 -68.8384 -4.44223 -28.8829 -6.41789 -28.6759 -5.98507 -24.0722 -4.89247 -26.444 107.442 -81.3739 249.548 324.936 431.328 -117.295 -108.414 -100.695 -102.659 -108.685 -111.924 -110.372 -174.253 -184.192 -164.226 -163.902 -177.221 -179.262 -160.524 -118.33 -87.116 -112.654 -186.007 -163.27 -188.856 -155.638 -115.961 -106.791 -153.057 -120.492 -113.07 -100.702 -149.999 -103.185 125.897 -18.788 332.059 424.941 277.842 424.914 -104.296 -105.962 -81.8992 -110.235 -97.8118 -113.759 -103.91 -167.88 -183.812 -153.885 -151.781 -178.914 -172.289 -146.669 36.9337 69.0193 45.6428 250.155 407.131 152.996 -26.9114 -117.762 -167.938 -125.567 -147.968 -87.1061 -133.986 -122.737 -11.6473 -55.0379 -12.9877 -42.0831 -9.79824 -57.0954 -13.1303 -34.6472 2.29791 -23.9947 -32.924 -58.3843 -97.0557 -73.361 -109.942 -93.6136 -106.926 -47.9181 -52.6907 -30.6558 -54.7401 -41.6324 -68.3735 -33.722 7.75325 7.35044 1.63637 -0.524885 -0.874727 -0.823482 -1.4678 -1.23897 -10.2477 -11.5158 -11.9644 -11.9967 -11.2258 -10.8657 -10.5922 -13.6081 -12.8193 -12.2531 -12.2713 -13.0397 -13.5533 -12.0749 -17.6364 -12.8827 -20.0774 -14.5964 -20.1015 -13.5038 -23.1693 -17.8616 -26.1794 -22.8581 -22.4355 -20.126 -30.7557 -26.1332 0.329547 119.216 -96.9171 104.785 -80.967 274.722 434.28 -53.59 -178.192 -76.2181 -118.82 -54.6923 -130.478 -39.8156 -3.66365 -22.9718 -4.59054 -19.3285 -5.15801 -15.0809 -2.25347 -92.9755 282.583 318.769 433.083 369.807 423.119 -133.14 -114.645 -117.412 -113.936 -134.264 433.155 -181.609 -125.611 -163.809 -103.879 -189.1 431.119 372.258 425.582 386.929 414.25 396.131 413.855 435.381 431.886 434.89 436.747 437.038 432.521 433.438 -135.885 435.772 435.173 434.412 431.734 434.83 -82.9421 414.373 -78.6229 332.119 409.984 -8.74236 -24.1177 -16.7537 -9.76828 -6.21827 315.151 413.554 385.641 413.822 399.469 413.023 401.592 412.92 430.95 434.127 434.371 433.509 432.939 432.682 432.417 402.299 338.497 405.454 439.722 382.249 320.922 405.455 265.216 -5.37005 333.038 333.922 310.362 413.015 381.981 412.299 401.149 412.253 398.561 411.208 430.419 434.774 432.683 430.832 430.798 431.78 430.21 365.037 401.418 386.596 374.587 395.591 402.034 336.013 302.405 -108.342 292.073 420.451 353.82 420.439 393.874 409.536 384.521 407.44 429.672 433.172 433.215 431.96 431.926 432.203 431.827 280.914 385.473 411.021 384.929 357.328 433.282 -3.18878 -30.9413 302.555 -9.59812 339.784 314.979 418.134 214.172 -67.3778 370.732 404.007 343.933 419.811 434.957 434.962 432.486 -87.4996 434.071 432.669 430.489 -114.016 432.164 -125.464 428.493 432.817 -109.299 -120.321 -131.755 402.85 -122.778 348.536 -26.964 -22.2702 -47.2668 -26.4696 -11.879 -48.6644 -10.1055 121.266 66.4622 319.79 416.387 190.161 -45.2612 -87.9876 -66.1891 -81.9461 -86.4887 -88.4152 -69.6259 -100.607 -97.2502 -90.8736 -100.715 -94.1515 -98.225 -17.153 -77.7791 -20.3411 -51.1231 -16.3251 -67.7437 -20.6159 -59.8355 -8.04308 -34.3012 -36.0615 -56.463 -7.32453 -47.6378 12.0703 11.3218 10.6653 18.0173 14.2202 13.8153 12.1333 1.72912 7.35426 1.72741 7.01305 -0.715424 6.35292 -1.53628 -6.25528 -2.34063 -3.98422 -7.06776 -8.59235 -5.99149 -6.13331 -5.66886 -3.37117 -2.96984 -7.56207 -6.81499 -3.43249 -2.9211 -2.09546 -2.29148 -1.3866 -4.81675 -2.22111 -2.49642 -1.40279 10.2447 9.53587 9.65674 10.3154 6.3921 4.78225 5.7286 7.40953 5.19149 7.76934 -3.24366 -1.89256 -1.9985 -2.07508 -2.78334 -2.13946 -0.339868 -1.39001 -1.05266 -2.20136 -0.382966 -1.15432 -1.18941 -1.1028 -1.48987 -1.41956 -1.71609 -1.81776 -1.40058 -1.08749 -4.81132 -12.514 -13.052 -16.0142 -18.9916 -19.9106 -2.97687 -3.7609 -2.17744 -7.95177 -1.9281 -3.37926 -2.30392 -2.97762 -27.607 -18.1245 -12.7828 -18.9652 -17.9852 -25.2341 -20.3968 -21.6296 -20.3825 -26.7276 -1.35353 -4.20462 -1.79782 -3.57372 -1.46848 -5.19497 -2.02973 -5.25029 1.19516 -3.10225 2.60384 -0.878762 7.84993 7.17574 -21.8492 -19.8957 -13.3383 -12.7114 -19.6609 -21.6362 -11.7071 -32.5104 -25.9024 -28.0349 -28.9327 -28.3775 -29.1246 -32.2798 -9.59417 -22.5468 -14.3606 -9.68794 -12.3152 -14.9012 -14.4776 1.89961 18.5674 3.98221 15.9399 2.51035 33.0883 15.0763 -20.6453 -40.7557 -23.3566 -24.0596 -21.9204 -49.8708 -23.2673 3.52926 80.7089 -82.1944 57.9499 0.241341 191.457 -141.703 -33.3822 -96.8436 -46.1499 -81.6449 -37.3862 -100.032 -44.1302 -5.52603 -17.8758 -5.01221 -13.7072 -4.49752 -14.373 -2.36663 -135.356 317.036 433.213 273.146 368.623 424.383 -148.686 -130.502 -137.838 -138.966 -152.969 434.117 -199.044 -213.828 -221.533 -226.293 -212.992 -214.006 -216.206 438.038 432.594 436.001 432.975 436.108 430.427 434.61 434.264 436.536 437.312 437.36 435.931 437.308 436.468 378.603 -78.0587 418.76 376.921 329.726 307.339 390.256 312.809 -1.41617 328.941 301.087 307.803 434.498 428.119 432.985 428.491 434.524 426.874 432.395 329.742 393.716 427.806 447.421 297.606 294.223 388.544 228.142 269.385 272.421 357.242 375.097 275.77 431.185 425.681 430.726 425.234 430.557 423.793 429.773 306.762 348.118 428.915 412.085 372.441 435.123 313.395 323.249 299.326 274.04 -81.6194 737.706 430.684 424.564 430.11 423.049 428.938 422.864 428.703 432.245 431.649 432.179 431.092 433.706 432.189 431.339 313.125 382.96 440.135 310.224 471.683 263.884 -54.3338 -27.1848 308.096 289.447 227.965 429.787 424.942 430.126 423.076 429.339 423.709 429.755 331.103 279.352 417.68 411.485 268.634 368.171 43.4635 344.375 267.787 236.997 -124.49 265.612 324.696 430.057 430.108 431.744 424.251 429.263 424.837 429.145 286.368 290.878 422.905 376.148 356.249 339.087 417.628 387.412 293.929 221.595 273.432 -200.89 257.88 417.326 230.274 -49.8455 373.991 403.493 338.411 417.659 432.936 433.111 426.845 429.828 433.738 432.209 430.919 425.05 429.261 431.585 -103.892 433.908 431.525 -126.966 398.01 -122.229 393.087 389.491 -25.2823 -25.0286 -54.1242 287.646 -36.5692 88.8742 -57.7383 -7.29669 94.1456 64.8956 284.115 416.236 138.15 28.5026 -45.3892 -51.3005 -27.4387 -46.7445 -44.8991 -49.0825 -34.4165 -17.7382 -71.0821 -19.3257 -66.4088 -19.0518 -78.4734 -21.901 53.6274 44.293 42.0217 79.5622 62.095 56.674 43.7573 -92.1994 -52.6222 -47.7781 -141.249 -125.744 -53.2304 -59.2098 31.1669 25.2677 23.109 41.3738 39.7699 31.1253 29.4226 -22.0177 -13.4007 -12.5734 -58.6197 -27.6495 -28.0085 -17.3039 16.796 16.9223 14.4074 23.9801 21.688 18.543 16.3157 0.259497 2.77772 10.3896 15.4667 2.18591 3.39805 10.7476 -18.0243 -13.0083 -9.80643 -13.5367 -11.3376 -15.9937 -15.7273 -5.53213 -3.54396 -2.04071 -20.7296 -8.38009 -6.36625 -5.19874 0.732355 8.08615 -0.204368 20.7791 -9.31246 -8.43651 -9.36807 -7.92338 -9.84425 -7.1718 -10.2282 -9.1752 -8.31941 -9.62136 -8.00455 -12.9284 -14.034 -13.702 -12.1693 -13.0254 -7.31747 -8.5183 -8.19679 -7.09704 -6.75891 -8.5801 -3.055 -3.89685 -4.29068 -2.93812 -2.66199 -4.07261 1.6234 10.9307 32.6918 3.82535 1.83896 12.3847 6.94123 -14.1577 -13.2298 -6.25831 -6.47857 -18.3912 -13.9813 -5.36718 -30.773 -28.3842 -32.1332 -24.9019 -34.1487 -26.1968 -29.1662 -11.7435 -35.5817 -14.6986 -19.3791 -13.8664 -26.0959 -16.0605 35.5286 47.8869 -8.52819 28.1772 17.3946 53.8637 -24.0679 -52.2875 -33.1121 -3.85002 -73.4299 -29.0128 -14.0153 -89.4567 -90.9621 -50.8231 -91.8165 -55.3032 -81.0044 -28.4382 -58.4083 -37.1143 -42.4232 -24.0852 -124.52 -39.849 -132.472 -130.638 -141.666 -141.404 -188.123 -192.129 -237.683 430.616 386.627 416.009 369.9 430.121 396.347 416.916 437.683 437.496 434.596 439.164 438.809 435.401 436.27 -209.316 438.075 437.928 437.963 437.35 304.13 -66.6685 422.143 -100.476 -63.4343 417.732 1.4102 -2.37802 -6.81597 5.84438 2.202 305.305 435.449 429.142 434.367 430.239 434.937 428.073 433.726 351.569 364.825 434.315 440.367 274.02 275.997 359.272 -11.598 353.204 269.838 331.921 346.424 145.049 433.218 425.92 432.856 426.095 432.6 423.692 429.853 438.866 436.077 435.845 434.75 439.162 436.309 436.185 252.931 418.688 445.514 455.934 -85.126 255.886 225.169 261.77 311.789 260.777 417.738 413.608 416.657 414.352 416.235 410.229 414.452 429.609 421.641 428.246 421.015 425.675 418.062 420.363 434.328 437.03 432.386 433.503 435.361 438.154 431.477 431.026 450.911 418.642 268.758 275.574 134.278 173.386 364.268 427.913 431.172 429.192 427.205 430.639 428.601 426.798 446.546 406.246 397.276 346.571 249.761 243.687 230.081 428.639 422.32 429.422 419.687 422.931 421.34 427.352 437.101 435.66 432.036 430.517 435.214 434.018 432.283 448.697 437.786 427.44 344.853 139.441 282.971 124.587 429.173 424.002 428.887 422.257 428.195 423.364 428.323 431.958 433.976 430.705 430.517 434.557 436.404 430.399 247.851 222.382 400.069 380.444 321.769 418.736 308.585 274.421 224.554 531.464 -131.951 247.904 405.456 362.799 420.254 395.22 407.251 376.413 402.707 334.371 290.43 417.388 391.464 344.62 377.797 367.059 374.317 281.998 241.524 -225.973 122.836 307.439 -59.1537 433.973 -57.2053 430.717 -58.2358 434.568 -99.9601 -80.4579 431.625 -98.3546 429.819 -77.9741 -131.481 -125.476 -129.587 418.066 -136.887 -128.204 -44.1596 -44.4065 -70.0175 -61.0137 -47.4774 -36.9963 -64.9079 30.8013 69.4112 51.8394 120.193 25.207 70.9866 47.6125 -42.372 -41.9683 13.8472 -30.8481 9.06049 -110.312 -105.491 -78.1295 -110.143 -132.389 -121.891 -75.7996 -151.071 -132.47 -127.535 -104.501 62.0116 32.3347 25.7076 47.302 41.2536 33.1478 28.8367 4.81625 31.7584 21.426 -7.18642 20.5002 -41.7534 -49.4516 -70.7565 -33.7442 -37.5149 -16.1283 -20.992 -60.443 -48.9306 -28.5683 -27.6214 22.1864 17.7758 15.9289 23.7024 20.6343 17.595 15.0148 4.40291 3.5169 13.9735 13.0944 3.75174 3.80526 11.8204 -15.1479 -21.608 -13.8803 -14.8067 -16.4801 -18.2064 -12.3769 -8.36654 -8.41984 -7.17718 -18.4191 -14.9524 -11.3796 -9.02539 9.69618 4.67815 8.95792 5.12431 7.41979 5.78836 -4.43822 -1.32935 -3.17474 -1.09511 -2.96513 -2.40989 -1.49244 -1.94806 -1.57444 -8.46777 -9.17622 -9.44211 -14.4035 -8.14477 -8.88947 -9.1205 -8.23752 -7.10356 -7.85476 -7.60906 -8.29942 -6.80326 -7.90139 -11.6581 -11.268 -11.4908 -10.6682 -11.7513 -11.0305 -11.3476 -8.259 -7.23457 -9.17756 -8.49834 -8.1266 -7.63945 -9.30585 -3.40237 -2.94055 -4.56406 -4.43388 -3.40204 -3.3705 -4.61584 -49.4646 -84.3682 -135.074 -36.0629 -53.5558 -97.1008 -142.767 -68.4165 -149.483 -133.521 -73.2581 -74.6087 -156.145 -136.898 -74.7524 326.1 432.951 114.283 -68.7943 343.689 433.693 -98.8241 -91.2294 -98.9483 -59.4719 -105.163 -91.4024 -98.0762 -168.751 -181.467 -158.477 -172.813 -164.88 -182.273 -156.85 434.652 434.248 436.174 437.699 435.085 437.515 435.875 344.497 313.907 436.847 388.033 298.072 367.92 382.156 373.571 1.02716 290.68 -195.142 -3.47362 314.252 434.194 427.71 432.936 430.211 435.088 428.48 434.22 206.203 390.35 433.547 299.583 255.144 457.854 242.775 -14.7273 268.076 245.675 5.62317 322.028 225.902 419.38 415.455 417.681 416.66 419.587 415.23 417.617 430.213 421.575 426.025 424.946 431.531 421.962 424.736 430.724 433.599 432.054 433.004 433.539 433.91 430.869 467.495 475.036 463.551 255.629 201.387 227.401 -26.5856 239.265 225.679 274.278 420.597 422.216 418.846 419.249 420.781 421.373 418.575 409.569 419.06 420.237 422.949 417.843 415.955 415.947 288.676 192.383 326.534 314.296 262.395 248.273 328.74 255.433 289.297 275.334 268.127 243.906 297.019 270.378 392.164 406.305 407.47 403.799 406.345 399.254 402.425 418.902 419.637 415.926 416.353 418.763 420.426 416.342 420.456 414.33 422.531 415.94 423.108 407.847 420.484 205.072 232.645 458.043 326.93 266.595 300.319 339.095 307.721 211.734 263.023 289.631 248.698 427.682 422.768 427.986 421.357 428.011 423.15 429.021 434.15 433.579 430.49 429.784 434.683 432.593 431.053 423.863 441.528 221.98 434.41 304.963 362.026 261.609 254.911 226.316 427.746 427.805 430.659 422.765 428.269 427.532 430.518 430.092 426.43 428.664 428.513 428.794 428.331 429.248 299.315 358.768 399.667 368.788 256.01 456.118 352.192 300.21 21.4112 165.967 317.471 292.899 416.773 209.088 -39.9986 355.212 414.015 231.336 -35.3489 434.179 433.845 428.514 429.763 436.317 433.672 430.102 430.415 432.625 433.551 433.041 433.013 433.264 -111.642 356.915 -119.325 427.22 -115.215 325.445 -33.2648 -57.9493 310.056 -34.4079 -56.1172 -118.674 -136.957 -101.09 -150.493 -112.622 -139.173 -102.22 8.56498 6.02697 8.32978 5.76223 7.23682 6.00589 -1.83829 -0.058168 -1.38135 -3.08844 -3.1538 -2.98125 -2.07619 -2.62425 -2.22743 -8.333 -8.77919 -8.80949 -14.1905 -8.41511 -8.68368 -8.76697 -7.90377 -6.62767 -7.72038 -7.43057 -7.93615 -6.55281 -7.66413 -11.3106 -10.9811 -11.0924 -10.6475 -11.3959 -10.8766 -10.998 -8.28979 -7.92582 -9.38264 -8.54313 -8.36166 -7.86823 -9.30015 -3.45195 -3.38162 -4.68868 -4.55866 -3.45607 -3.35073 -4.67686 -51.4988 -90.6297 -136.296 -31.4418 -50.0538 -82.5715 -117.148 -75.6178 -154.45 -140.494 -75.1138 -81.1016 -148.102 -151.504 -84.1087 343.282 437.029 107.784 -71.8482 332.698 433.925 -98.2663 -88.8797 -93.8307 -73.9713 -102.146 -85.042 -91.5309 -169.123 -180.257 -159.931 -167.018 -172.493 -180.949 -155.032 433.896 434.823 434.711 437.034 432.816 435.589 435.557 342.011 435.863 341.811 312.081 354.911 192.946 -6.59829 342.238 390.736 -5.1662 307.619 434.783 428.563 435.244 430.231 434.629 429.044 435.254 435.741 434.421 436.513 435.445 437.152 434.891 436.259 278.293 302.419 457.777 448.393 314.108 437.31 309.424 396.477 -115.582 286.997 241.169 275.704 440.904 449.19 435.769 438.867 434.304 442.319 436.218 418.249 444.759 409.422 226.526 286.618 271.982 225.196 409.619 410.262 402.598 411.782 403.658 411.719 407.725 423.198 421.787 419.25 420.109 421.954 422.097 419.182 406.787 412.167 415.221 417.763 407.184 412.006 413.901 306.923 285.678 344.222 331.761 310.224 287.168 340.67 432.465 253.859 472.71 254.852 462.647 243.287 522.088 410.559 405.029 409.132 406.818 409.802 405.981 409.867 419.436 418.221 417.593 417.559 418.962 419.018 417.926 417.612 406.139 413.144 414.043 411.77 407.976 423.817 218.895 288.514 331.065 331.116 266.414 283.004 324.824 282.956 273.19 258.769 263.968 288.692 259.673 257.296 427.631 423.48 429.35 422.982 429.102 424.019 430.325 433.665 427.016 431.266 429.07 432.299 429.422 431.504 466.984 452.596 436.273 166.158 165.31 163.522 213.521 428.1 427.983 430.514 424.076 429.018 428.652 431.472 375.953 250.33 443.904 396.153 263.332 357.889 365.539 -63.8642 301.005 209.19 312.19 342.729 -26.3254 263.105 414.731 230.359 -37.441 350.205 417.996 205.97 -53.1445 435.102 433.768 431.47 429.587 434.559 433.852 431.383 426.941 430.474 431.374 430.999 431.789 434.693 433.63 -106.456 297.94 401.552 -107.174 -21.0094 389.386 -50.8569 280.108 -27.1595 14.4049 -48.1713 -109.065 -132.908 -97.3517 -149.096 -108.455 -128.441 -89.6375 7.89955 5.25988 7.62135 5.51084 6.87815 5.46581 -1.4608 -0.363624 -1.62079 -3.49781 -3.60285 -3.52929 -2.50713 -3.14664 -2.44646 -7.35525 -8.37888 -8.97702 -7.62664 -9.02665 -8.27753 -6.67947 -7.52872 -8.06986 -6.47964 -7.54366 -11.3841 -10.741 -11.196 -10.788 -11.2655 -11.0838 -11.4299 -7.25542 -6.82895 -8.50724 -7.6166 -7.51084 -6.46666 -8.24356 -3.16739 -2.74058 -4.26537 -4.30159 -3.16357 -2.65453 -4.19545 3.52048 15.5487 9.23104 6.18028 2.08628 14.9927 9.07109 -16.0555 -32.0512 -21.06 -17.5514 -13.9671 -14.9713 -17.353 21.891 58.3129 22.1054 30.9198 18.9181 56.7489 9.3791 -32.8169 -127.705 -58.4614 -5.8562 -33.4559 -115.642 -51.892 -93.2116 -74.6227 -81.6892 -66.6862 -88.5379 -85.8589 -84.1402 -139.333 -161.545 -138.468 -143.265 -151.19 -127.746 -140.491 431.212 399.055 417.508 312.544 432.838 390.701 417.197 437.336 438.049 434.053 435.976 436.804 437.97 434.721 434.954 436.318 436.491 437.379 435.22 435.327 437.169 302.532 376.467 393.862 390.306 -78.9537 433.286 -4.9435 316.149 -18.0876 338.936 -3.99563 310.883 435.33 429.285 435.129 431.353 435.973 429.74 435.422 435.436 434.972 435.501 435.588 437.257 435.573 436.154 341.614 455.357 430.408 264.194 288.522 350.51 138.338 -259.189 366.95 343.191 360.44 317.207 434.469 424.805 429.059 427.977 433.911 426.926 433.024 439.892 443.056 437.267 436.98 441.082 439.613 437.381 456.546 420.455 447.074 252.78 90.1427 283.874 300.935 237.183 422.384 422.582 419.636 428.974 412.545 429.287 425.595 216.501 323.129 436.461 263.681 343.787 334.481 263.45 274.038 296.897 202.728 414.508 412.579 411.974 414.767 413.366 414.951 414.33 422.387 421.167 419.416 421.513 420.476 423.589 420.427 420.853 411.258 415.406 421.796 413.431 411.814 422.068 231.966 289.047 323.37 314.105 280.227 252.666 311.177 299.726 282.821 264.792 253.623 293.445 292.4 243.874 422.758 422.384 428.625 423.771 429.534 424.152 429.44 434.247 422.128 426.131 428.239 425.49 435.494 430.332 219.294 376.457 430.656 438.645 287.128 181.471 260.452 215.38 430.24 425.216 430.546 425.396 430.058 425.805 430.418 424.705 435.888 129.991 403.2 246.817 455.838 66.2828 175.145 280.285 252.491 410.349 379.495 405.81 392.804 411.08 370.719 424.579 307.66 326.257 433.941 433.924 213.813 323.455 372.193 -21.515 369.743 234.351 -312.981 382.615 284.626 435.679 434.321 434.152 438.724 436.103 437.493 430.643 433.711 432.709 -121.516 301.756 -140.069 406.864 -112.925 -15.8826 -32.8748 -20.2838 -15.9162 -3.0226 -32.2908 7.2765 59.584 49.7598 91.891 -13.6471 54.6179 61.6509 -44.8947 -62.715 -18.1122 -34.2434 -49.0618 -66.0581 -3.69006 -127.107 -123.805 -101.153 -106.649 -125.215 -130.302 -109.178 -119.564 -123.724 -95.823 -240.724 -101.606 -68.474 37.8488 27.4559 25.7838 34.7763 52.5732 24.0801 20.856 -47.7258 -30.51 -27.8927 -31.7219 -20.3485 -22.2997 6.85372 2.13531 6.18433 4.82906 5.87496 4.32154 -2.60327 -1.46031 -3.40792 -3.59469 -3.79697 -3.66726 -2.18389 -3.05959 -2.12939 -4.65849 -8.73562 -5.97154 -9.67599 -12.0471 -7.09599 -9.68366 -6.81592 -14.6271 -13.579 -13.0547 -16.1309 -4.10837 -6.73781 -5.68331 -6.17448 -2.00933 -3.5216 -2.3036 -3.21055 -21.7264 -11.4707 -7.00482 -10.2038 -12.9271 -17.9854 -6.09167 -23.1548 -16.6513 -19.6582 -19.7069 -19.079 -19.2082 -22.0212 -1.66045 -5.7616 -2.36123 -3.46061 -1.5359 -5.28893 -2.29879 2.41512 14.3031 38.9745 3.39791 -1.73575 8.04108 4.62058 -25.3081 -17.2194 -11.9127 13.3911 -25.4841 -7.95588 -35.7947 -28.3949 -33.4782 -39.8662 -34.8296 -13.6094 -17.9556 -17.8533 -14.6279 -10.0677 -21.9312 -14.5991 40.6688 44.1228 14.3546 15.3911 9.97957 30.316 15.9454 -28.6771 -17.7755 -1.89882 -44.8833 -20.8707 -8.51192 -65.0838 -72.327 -46.4862 -91.503 -51.9165 -58.3273 -29.6545 -97.2348 -35.8692 -33.285 -25.146 -54.5093 -33.0527 26.5563 207.846 -110.384 53.1598 17.8602 100.913 -39.7391 -155.645 -155.424 -138.678 -132.749 -156.854 -150.227 -138.883 -61.3609 -149.132 -74.2917 -103.059 -50.24 -160.188 -79.5557 -6.34944 -29.452 -4.86658 -16.5855 -5.52596 -30.4792 -7.16382 375.255 424.31 147.858 -94.3696 330.098 431.941 438.858 436.728 -97.2583 439.494 -101.796 434.604 -160.491 438.259 -139.641 436.828 -163.923 437.812 -98.5689 -117.877 405.067 -149.93 -120.167 -144.456 -9.00104 -6.33461 -12.6794 -30.3759 -2.42102 -16.3283 -20.7964 436.312 430.669 435.006 437.691 438.383 432.317 435.97 440.566 432.378 437.13 436.665 442.18 434.304 436.225 294.521 421.743 388.296 302.812 340.441 429.755 124.193 323.074 316.193 343.645 368.419 282.345 434.414 427.854 433.708 430.787 435.061 429.279 434.002 434.767 437.709 434.373 434.714 434.235 434.139 434.638 232.611 447.555 424.21 219.719 265.363 419.533 262.331 294.783 171.852 313.283 247.762 433.064 429.077 436.264 428.422 432.958 428.673 433.187 431.068 433.551 432.304 433.734 433.162 436.391 432.809 448.018 405.723 435.451 193.141 56.9615 207.299 269.527 187.428 443.976 427.006 431.058 429.546 433.972 427.491 431.71 423.013 418.043 427.257 441.422 421.446 433.026 427.814 263.517 453.355 413.517 380.862 450.047 217.786 266.812 285.124 250.112 149.113 431.503 425.913 430.672 427.516 431.751 427.236 431.479 431.886 435.674 432.009 433.085 433.265 433.908 432.073 221.817 407.948 425.694 286.057 444.497 252.319 252.466 218.203 257.535 -187.103 224.631 430.176 426.945 430.558 427.846 430.751 431.097 432.975 429.956 431.393 430.153 431.062 428.527 431.788 430.74 318.624 110.081 419.564 406.65 235.833 366.407 324.598 175.126 307.092 42.3614 311.909 246.286 411.728 332.777 426.283 363.628 424.368 234.102 -112.454 322.24 339.236 370.924 418.746 388.357 287.986 408.502 3.73793 355.512 298.01 293.616 183.709 427.056 114.425 -46.3787 166.571 -109.975 74.1636 4.01276 -110.489 434.906 -112.706 -108.502 -117.452 -113.87 -207.661 -152.868 -162.919 -182.6 -198.688 -169.213 -152.193 -133.413 -172.302 -163.264 -150.601 -133.957 -180.976 -3.36506 -37.9711 -8.37669 -35.7251 -5.0903 -26.8744 -5.72594 -12.7609 38.7101 19.5203 41.3865 16.439 23.4178 17.1889 -54.0326 -77.8849 -27.1899 -43.5318 -63.8684 -74.5354 -26.4267 -140.952 -162.797 -128.187 -134.757 -149.695 -167.173 -118.691 -71.8718 -76.8172 -43.3987 -102.501 -56.3035 -55.0555 -35.3869 23.3041 18.8864 19.8702 14.8799 9.48219 9.85483 6.47773 -29.5433 -2.78318 -24.9165 -5.5844 -47.7151 -52.8758 -56.8442 -43.9061 -26.7707 -24.0651 -18.5786 -32.845 -21.5796 -18.8273 -12.4361 -1.33516 15.0886 -21.9539 1.70363 -30.0525 -27.1645 -13.9767 -35.2383 -18.3142 -39.5927 2.53891 3.78529 7.17568 14.2287 2.73521 0.107733 9.56652 -12.1942 -11.4883 -8.24813 -12.8085 -9.42296 -16.3873 -10.393 5.58396 4.12581 -5.86247 -2.6474 -1.94968 -7.47054 -2.85976 -3.05478 -2.03308 -16.6319 -8.05031 -18.9796 -9.05404 -13.6241 -6.67828 -15.359 -18.9174 -26.0697 -24.7323 -16.6502 -16.9861 -22.007 -21.7677 -49.685 290.226 434.568 74.4337 19.8143 129.361 -67.0755 -78.6896 -151.848 -61.5457 -161.972 -85.6295 -165.819 -98.1355 -7.11569 -29.6256 -5.95873 -30.9233 -6.86949 -44.6823 -8.64385 431.22 376.338 424.758 156.284 -107.684 306.612 430.269 439.513 440.003 437.166 438.634 438.151 434.756 433.032 440.575 -117.017 435.048 -145.226 438.214 -99.5373 -102.336 418.604 -153.226 309.114 -115.441 -14.1723 -12.9056 320.914 -32.6439 -17.0438 -30.7409 415.738 400.507 416.017 366.392 428.865 379.953 426.33 433.526 433.688 434.178 436.388 433.41 434.935 434.981 369.929 290.542 426.815 430.296 286.787 303.282 379.034 352.023 -199.095 349.69 313.743 387.298 301.093 416.474 406.135 416.347 389.085 416.686 390.754 415.177 431.399 433.833 432.264 432.852 431.333 431.703 432.735 262.215 418.654 429.564 370.351 299.137 410.354 -45.841 390.683 338.184 316.519 -17.9688 425.569 258.246 433.922 427.681 431.977 432.773 435.507 432.028 434.251 434.469 443.874 434.4 436.569 434.05 440.417 434.702 296.735 406.219 473.486 451.761 276.695 369.608 468.255 359.395 -14.3639 281.679 144.591 351.738 102.861 326.414 414.985 393.855 412.882 384.393 415.919 370.914 427.873 433.283 431.463 431.987 433.041 431.387 433.346 433.153 367.694 267.47 419.338 431.778 363.365 278.383 388.721 307.758 334.744 309.093 302.441 -150.699 289.096 412.627 362.596 425.855 329.076 427.072 222.127 -161.33 428.207 431.139 432.58 431.457 435.083 429.528 433.437 382.639 330.406 417.542 419.163 283.061 416.448 4.92363 319.607 275.081 302.533 -212.103 363.316 427.303 180.785 -111.863 169.073 -148.225 101.46 -20.6048 -151.696 436.104 432.369 432.51 436.356 436.341 -135.765 -172.286 433.049 -180.862 -168.376 -160.094 -143.016 -166.985 -171.771 -115.148 -121.551 -177.16 3.07481 -29.2384 -2.38574 -28.7904 -2.15904 -21.353 -4.25672 -143.685 -63.7224 -108.29 -82.1938 -125.293 -41.2316 -65.6189 -206.802 -135.612 -136.337 -149.919 -153.379 -78.9904 -87.608 -23.3692 -11.1477 -19.9784 -8.13731 -19.4077 -10.6412 -16.9423 -31.8132 -23.7747 -23.7911 -27.9861 -27.4548 -20.3435 -20.9431 -1.26632 0.526731 -2.1521 -0.746571 -3.51654 -3.14902 -3.88074 -9.25942 -8.80876 -6.17749 -11.8265 -9.03491 -8.68326 -6.54327 -2.31876 -3.61453 -1.69531 -5.62944 -2.50356 -3.8164 -1.76591 -1.11575 0.814783 -0.0513831 -1.52391 0.746991 -1.39518 -2.61064 -15.3704 -17.5317 -17.9329 -15.6244 -16.8285 -15.0381 -15.9464 -8.98776 -8.46817 -9.17689 -8.25407 -10.7513 -8.92464 -9.26163 -8.6712 -9.41482 -7.30245 -8.52779 -11.6734 -12.0493 -12.3225 -11.3668 -12.2998 -11.3775 -11.6369 -7.7496 -7.66577 -9.18225 -7.942 -7.85743 -6.96071 -8.86523 -3.31846 -2.82865 -4.37558 -4.67124 -3.14155 -2.7071 -4.56184 -6.09957 -1.28591 -4.00033 -6.59154 -6.71039 -3.40632 -5.17301 -26.8847 -23.8362 -45.8516 -8.60525 -21.917 -11.4834 -31.8289 -47.0404 -64.2945 -74.775 -29.0323 -32.1461 -41.3403 -46.6304 29.0393 76.9469 -17.1115 32.5577 14.2832 49.5596 16.8189 -62.1506 -191.446 -94.6904 -39.4184 -36.5878 -94.4976 -62.5736 -48.0968 241.726 67.4694 11.8986 82.9076 18.4503 -79.8607 -87.6964 -99.1017 77.7922 -82.3404 -68.9215 -134.215 -139.571 -102.158 -135.347 -87.5076 -104.74 -145.926 -63.8533 -156.209 -80.2832 -176.867 -92.1821 -8.21744 -32.2385 -6.17289 -26.8182 -7.41311 -33.0939 -7.04886 427.565 342.031 428.966 117.569 -28.8224 124.425 -90.283 -95.8061 433.951 -84.4355 438.093 -86.9495 -91.0482 -170.419 -147.014 437.081 -132.849 434.633 -155.319 -143.312 -123.478 -118.171 -144.516 -155.087 -100.248 -130.618 -152.325 439.608 437.275 434.755 433.066 437.564 435.587 433.737 436.926 -164.852 434.453 -178.728 -92.1949 379.394 421.807 -139.052 309.931 -94.0775 -132.82 -11.8708 -7.21943 -21.7136 -5.02139 -12.2449 -20.3311 426.434 353.813 427.278 182.377 -121.125 143.352 -116.665 439.566 437.403 434.657 434.799 437.312 439.651 434.284 435.919 436.977 438.37 435.27 437.68 -90.5852 396.848 440.045 -124.319 309.499 -90.7418 -126.742 -5.1806 333.458 -17.1517 -6.27143 -17.748 436.572 433.259 435.304 436.282 438.312 -187.67 436.232 435.592 433.019 -188.449 -168.272 -95.3109 409.362 -136.948 -81.8246 -139.325 -6.05274 0.0447958 -9.74596 -18.5643 2.07416 -5.41462 -22.6646 430.018 153.021 -124.571 99.7808 -43.8702 70.4784 15.8177 -105.723 437.71 -110.108 -109.541 -105.05 -102.54 -157.168 -162.283 -128.359 -144.348 -148.089 -170.074 -138.06 -138.56 -113.896 -151.04 -160.552 -124.535 -128.288 -169.18 -1.97187 -33.5429 -3.47933 -28.2427 -4.75566 -20.4815 -4.10159 -83.7801 -51.5869 -145.466 -82.2718 36.0951 -146.33 -104.812 -160.205 -131.799 -135.764 -181.403 -198.335 -211.234 -169.345 -167.725 -117.793 -5.47732 -10.9434 -6.57996 -8.19149 -7.17175 -7.62654 -11.6094 -10.8161 -11.0015 -6.61706 -7.60323 -8.08348 -5.60101 -6.67844 -3.03007 -4.33936 -2.91737 -6.76984 -10.3286 -10.4579 -7.96335 -6.86702 -4.50171 -2.73083 1.60072 11.4746 6.49357 1.50886 -0.42499 7.03242 21.8422 -16.4442 -29.6397 -18.916 -12.6556 -10.9304 -6.74865 -12.6779 12.6152 27.6653 17.4166 11.1715 7.72459 13.7292 8.63054 -30.3623 -25.2662 33.1719 -0.77518 -28.2291 3.08046 -55.0523 -54.8702 -41.404 -49.9751 -43.663 -26.2098 -59.9693 -33.5394 -9.97332 -16.1722 -28.3228 -21.0058 -55.7806 -44.7167 -76.3705 -12.1923 -32.4215 -24.919 -39.468 -106.745 -125.311 -146.801 -40.3865 -45.1722 -53.7565 -63.814 -109.535 -92.5795 -130.726 -30.3571 -44.7224 -36.2386 -58.0739 -151.861 -158.338 -153.021 -66.1325 -74.2703 -80.6466 -85.1615 2.05939 80.0039 -90.5199 41.6964 13.7307 46.1567 13.334 -59.2873 -163.453 -59.8761 -67.2493 -37.6236 -63.7369 -34.0831 -110.511 74.2179 3.25703 48.6276 3.39819 46.136 13.602 -109.199 -130.95 -74.4979 -139.848 -53.9014 -170.523 -176.639 -176.341 -160.077 -57.6195 -140.837 -56.0513 -61.7239 -37.7593 -77.598 -35.3997 1.22262 59.0546 7.70612 38.1296 4.69154 28.9841 9.0763 -136.581 -86.8505 -128.972 -42.0292 -73.2366 -32.9898 -58.2014 -168.899 -158.886 -156.517 -100.579 -93.9403 -81.8865 -83.9228 18.7697 20.9742 7.69693 13.8489 7.95823 9.85624 2.82339 -33.7688 -29.3174 -26.4673 -33.8962 -23.4203 -22.8428 -18.4908 6.62102 5.29928 2.01848 6.99232 2.89848 2.45568 -0.93313 -21.7123 -35.2422 -10.7488 -23.8395 -6.16027 -38.7621 -60.0771 -42.266 -44.297 -36.767 -19.7634 -22.7512 -15.7912 -14.5039 -14.7357 -12.4369 -9.99244 -18.8455 -7.76204 -14.7012 -9.97606 -17.5208 -9.06188 -13.774 -22.8877 -19.3891 -18.5867 -20.365 -18.4771 -16.2042 -15.6836 -12.7148 -8.22963 -10.438 -9.01789 -11.6297 -7.97752 -10.2673 -14.6325 -13.1287 -12.5819 -13.3049 -12.6962 -11.0188 -10.2003 -8.76513 -10.6753 -8.35987 -9.73489 -7.30464 -8.6969 -6.13921 -2.19407 -4.7932 -1.99212 -4.6429 -2.02675 -4.54643 -0.788562 -8.13114 -7.08066 -8.67865 -8.56682 -7.72671 -7.81159 -13.2933 -7.85525 -8.44047 -7.63912 -7.98651 -8.09157 -8.34804 -7.53428 -10.9251 -11.825 -11.0796 -11.2404 -11.2027 -11.3065 -10.5812 -3.62885 -3.60184 -4.6857 -4.72359 -3.56554 -3.60858 -4.4834 -12.2831 -8.51108 -8.04304 -8.29792 -10.8091 -10.878 -8.54139 -7.16594 -4.62975 -2.89015 -14.0181 -4.96154 -3.36407 -14.0524 -13.0441 35.5824 -20.9196 -25.568 -21.315 -26.2555 -21.665 2.5551 5.46992 1.59351 -0.822281 -2.25281 0.0798923 -1.85908 -12.3842 -16.1162 -6.92675 -5.94744 -15.7014 -14.9733 -6.57933 -24.0086 -29.9128 -26.4385 -24.5318 -27.932 -25.3899 -22.6286 12.5038 22.9801 12.3876 7.58161 5.69486 11.2182 5.62967 -25.7462 -44.084 -22.0395 -24.5559 -18.1654 -23.164 -16.697 6.27994 22.681 15.3434 13.0198 6.71276 10.1694 5.79448 -32.6088 -10.7945 -16.0096 -44.7104 -8.1281 -57.8686 -74.1937 -79.4755 -53.4811 -28.1751 -54.5629 -23.5243 -22.7484 -19.9902 -27.4907 -17.2938 -41.4522 -16.7248 -35.7605 -15.4265 -27.9474 -13.9444 -24.1115 -52.5391 -45.1128 -47.9065 -33.0236 -37.6631 -29.2488 -33.5018 -21.9508 -11.009 -21.8959 -8.77689 -17.1136 -9.72408 -16.6797 -29.3991 -26.3341 -25.1572 -21.9185 -21.8793 -19.7516 -19.9711 0.729138 0.46443 -0.715485 -2.43985 -3.83988 -2.30101 -2.24372 -15.7001 -16.0199 33.2923 -7.49572 -15.0654 -6.63203 -27.822 -30.8887 -25.263 -25.7765 -26.6084 -10.1639 -10.3513 -9.08698 -11.9892 -8.7186 -12.0074 -7.26505 -13.9935 -15.087 -8.14489 -7.02976 -12.3406 -15.7236 -8.37527 -18.44 -21.1836 -18.6709 -23.7752 -18.476 -21.1017 -19.0136 -7.40999 -9.28558 -6.91468 -21.7999 -6.24139 -7.14515 -4.90426 -1.72832 -4.26528 -1.87205 -4.04135 -1.69267 -3.77531 -0.768928 -7.557 -10.8673 -6.88682 -2.92855 -10.1841 -5.15973 -7.50704 -12.0308 -15.9386 -14.9304 -7.71537 -4.85909 -3.6146 -2.33082 -12.1764 -6.6728 -7.71164 -13.7752 -14.1592 -6.25914 -15.7884 -19.8538 -21.1089 -17.985 -16.4427 -16.9958 -14.0396 -15.3855 -14.8316 -12.1512 -11.3209 -12.4332 -12.1464 -7.60181 -12.0137 -8.80019 -8.3698 -6.55037 -9.63607 -7.5433 -2.10618 -5.3754 -2.23558 -3.96222 -1.6691 -4.34017 -1.80244 -4.3013 -0.521396 -3.55874 -5.53772 -5.83653 -4.4195 -5.60828 0.349919 4.40064 3.66322 -1.96142 -3.04719 0.13085 -0.162353 -13.2227 -18.5937 -10.3045 -13.4226 -9.3497 -12.2992 -7.70858 5.89369 3.34638 0.835726 1.48825 3.23537 -0.905182 -2.64848 -20.5494 -8.19765 -9.74884 -22.8662 -8.78666 -29.0146 -34.5704 -35.1476 -29.2292 -12.5897 -20.8933 -12.4507 -12.4965 -9.33586 -14.7502 -8.40798 -20.7026 -11.557 -18.1856 -12.7613 -18.2269 -12.1948 -16.3175 -24.079 -22.9257 -21.8343 -19.8575 -19.4057 -17.5125 -16.8173 -6.01689 -5.50205 -6.41333 -7.48413 -7.74742 -8.32266 -8.14498 -14.2422 -9.79163 -14.1872 -9.87634 -12.2239 -9.69454 -12.1838 -16.253 -15.9607 -15.3976 -14.2032 -13.3938 -13.5141 -13.1005 -9.92413 -11.523 -8.54295 -11.0244 -8.60591 -9.89124 -7.90858 -2.34478 -5.22868 -2.23729 -4.80378 -1.95819 -4.4323 -1.87335 -3.78284 -3.94598 -5.85521 -6.82317 -3.94537 -4.99149 -11.3592 -22.2559 -5.53676 -5.26506 -16.8521 -17.708 -22.6832 -21.2263 -19.6676 -18.4914 -18.4574 -0.705812 -1.47728 -8.53994 -7.39829 -0.545966 -3.68318 -24.0047 -2.84699 -2.68148 -3.42249 -3.77276 -2.65664 -2.98806 -3.37262 -10.759 -13.6472 -5.05714 -2.55057 -8.12491 -10.3845 -8.49203 -6.73475 -8.56866 -8.03329 -8.46182 -7.68685 -10.8008 -11.1473 -11.0441 -10.9705 -10.3505 -6.82282 -6.81027 -8.37131 -7.29767 -7.95312 -2.76972 -3.06703 -4.31675 -3.17127 -4.45543 -8.39132 -7.68677 -7.53526 -10.0275 -7.33403 -8.43994 -9.36584 -17.5546 -9.46615 -10.9456 -18.5215 -9.94823 -19.9817 -23.4152 -22.1677 -21.1025 -10.1692 -9.0696 -10.0631 -11.2276 -9.46067 -9.83042 -12.1522 -9.61519 -10.1471 -9.52734 -9.51562 -10.027 -9.78717 -9.28654 -11.9249 -12.5733 -12.4419 -11.8611 -12.3184 -11.88 -11.7903 -8.40634 -9.23406 -9.98213 -9.64104 -8.79845 -8.50007 -9.27827 -3.66589 -3.77463 -4.93428 -4.85471 -3.63577 -3.58113 -4.82892 -9.20462 -14.5913 -9.12982 -9.69785 -9.12641 -9.3632 -12.5223 -13.1599 -12.8394 -7.62397 -8.96185 -7.2203 -3.20965 -4.56061 -2.91422 -7.6485 -6.94887 -11.0266 -11.755 -8.54326 -7.06133 -4.62419 -2.88561 -7.6361 -12.1226 -6.9382 -8.3189 -7.78381 -10.5228 -12.225 -14.4361 -13.873 -7.19309 -8.65263 -6.30557 -2.69726 -4.13247 -2.61154 -3.55424 -11.2103 -4.92711 -8.78978 -15.7388 -19.4796 -17.7056 -2.68412 -8.47361 -4.62731 -2.28439 -3.58835 -2.31736 -8.44479 -14.2171 -9.22923 -11.4111 -9.6137 -9.67386 -14.1057 -13.4428 -13.0243 -7.12852 -8.64748 -7.17473 -2.6998 -4.53816 -2.8089 -11.6209 -7.35065 -2.85467 -6.8292 -7.65809 -11.951 -11.3268 -6.3504 -5.91387 -2.8018 -1.94579 -4.67318 -5.17871 -4.67728 -1.03152 -3.81544 -4.44046 -0.0284008 -3.42794 -6.98901 -6.68043 -8.79586 -8.51765 -13.6722 -10.0606 -6.3638 -13.6214 -9.68718 -15.3763 -12.3164 -10.9769 -12.4463 -13.896 -13.6133 -11.7981 -9.05174 -12.6488 -15.4964 -18.4158 -14.9908 -9.25321 -18.3585 -13.8027 -6.12251 -7.26065 -5.04195 -5.78575 -4.2787 -4.92595 -7.05317 -1.95998 -4.56756 -3.90054 -2.80717 -4.49576 -2.75755 -3.713 -2.46766 -1.97496 -0.318518 -1.75507 -3.38453 -2.11213 -2.31699 -0.308156 -1.56844 -1.66976 -0.0224589 -6.52552 -0.460065 1.69305 1.29283 0.624381 -7.2852 -0.985128 -0.0408415 -1.82104 -0.448597 1.85511 -7.09975 -14.6412 -8.18997 -1.12684 -5.46648 -9.36124 -15.0455 -6.75137 -10.5681 -14.8741 -15.4458 -7.55171 -13.4437 -15.4821 -11.2203 -14.5705 -7.74979 -10.4851 -13.0514 -0.970202 -4.13152 -2.84508 -2.47862 -3.22297 -3.33185 -5.15404 -4.43027 -3.1563 -3.44849 -4.4808 -3.60209 -1.9507 -2.84076 -1.96044 -1.45799 -0.339866 -1.41051 -3.02549 -2.2767 -2.09652 -0.355513 -1.61641 -1.5238 -5.01178 -6.3405 -8.34931 -10.6061 -9.18181 -9.61967 -10.0279 -8.75921 -9.17531 -4.6346 -6.78254 -5.06417 -4.63637 -4.32018 -4.76076 -5.81085 -5.29503 -2.36007 -3.59093 -2.49551 -1.66268 -0.358615 -1.54909 -8.32936 -7.84445 -7.77207 -8.72806 -11.5152 -11.0651 -6.49765 -6.15823 -2.63114 -1.76942 -8.3196 -10.5453 -8.03575 -7.89597 -7.69839 -7.70656 -13.4701 -10.2911 -8.19149 -8.55394 -8.46331 -7.47509 -7.53213 -7.40553 -8.00655 -7.49958 -6.33952 -9.39276 -6.75602 -7.85097 -7.86458 -7.89339 -8.88209 -10.2604 -8.55129 -7.52208 -7.90316 -8.11775 -6.82373 -8.11299 -9.46284 -9.89133 -8.67414 -7.56462 -8.61645 -9.82173 -10.2254 -8.67052 -10.0725 -11.2763 -10.8535 -10.9025 -10.8973 -9.47609 -10.4964 -10.4543 -9.90381 -10.7868 -10.8464 -10.2714 -10.797 -10.2516 -8.81778 -9.62427 -10.6706 -8.74959 -10.1043 -10.5177 -7.92629 -6.7469 -5.30915 -6.58408 -6.7035 -8.02528 -6.98298 -6.33582 -5.48216 -6.4146 -6.68958 -8.05101 -8.52785 -7.79335 -7.85716 -6.90309 -7.49895 -6.49161 -5.3246 -5.80053 -6.92818 -5.26551 -6.63394 -6.73991 -4.61459 -2.85926 -0.245956 -2.00253 -2.69654 -4.18409 -3.01315 -1.8556 -0.626154 -1.71696 -2.79686 -4.6118 -4.43772 -3.30248 -4.49439 -2.85931 -3.26558 -1.96575 -0.267707 -0.738006 -1.90991 -2.01334 -1.89087 -0.25241 -7.51753 -7.49589 -7.8305 -7.26639 -8.08577 -9.31704 -7.3411 -11.6723 -7.47544 -6.90707 -7.27194 -6.93606 -7.81425 -12.8061 -7.75693 -7.59196 -8.71861 -7.31683 -9.34905 -7.3113 -7.5032 -7.07222 -7.09691 -7.62089 -7.29263 -6.83306 -7.83941 -9.34697 -6.96569 -9.44808 -7.46855 -7.35801 -7.35864 -7.50652 -7.84989 -9.5228 -9.49873 -7.9975 -7.72259 -7.57015 -8.05049 -7.57862 -7.61188 -7.47088 -8.09424 -8.34489 -9.46345 -8.70018 -9.85266 -8.34673 -9.31588 -8.82959 -10.2611 -8.82269 -10.1115 -9.07854 -10.3742 -10.4726 -9.98573 -10.619 -10.2947 -9.61129 -9.1983 -10.3895 -10.4464 -10.1686 -10.9164 -10.9256 -10.3822 -10.2015 -11.1755 -10.3079 -9.57124 -10.9351 -10.4775 -10.0938 -9.75755 -11.1895 -6.90036 -5.42022 -6.73069 -5.4503 -7.34538 -8.47523 -8.51764 -7.56787 -6.9665 -5.9007 -5.57133 -6.87827 -7.70855 -8.37377 -8.22916 -9.54183 -7.59578 -8.6334 -8.54572 -6.81393 -5.99798 -7.36568 -6.43051 -6.77806 -5.95269 -7.62581 -2.20661 -0.245177 -1.972 -0.333717 -3.07039 -4.46993 -4.73514 -3.27307 -2.14956 -0.691137 -1.86023 -0.327726 -3.29752 -4.52392 -3.51565 -4.82094 -3.36795 -4.47571 -3.56944 -1.79956 -0.673928 -2.06504 -0.831539 -1.82512 -2.09963 -0.69101 -6.24372 -7.20287 -6.65111 -6.82067 -6.54047 -6.54526 -6.44168 -6.41838 -6.64218 -7.36305 -6.1751 -7.44556 -5.98058 -6.74636 -6.24574 -6.12809 -6.77979 -6.34732 -5.71794 -8.51391 -9.98365 -9.62536 -7.22544 -8.21864 -9.89723 -7.82426 -6.7992 -7.42484 -7.07732 -6.80357 -7.07752 -8.11498 -8.85843 -10.2145 -8.50531 -11.0223 -7.4284 -10.3901 -9.49454 -11.3433 -9.32519 -10.0656 -10.8993 -11.0429 -10.174 -11.9185 -10.8293 -11.8627 -12.1204 -11.3131 -11.6402 -12.3026 -11.7354 -9.44194 -11.1836 -10.4914 -11.0242 -10.4845 -11.9895 -7.1224 -6.5345 -5.3537 -5.98804 -6.63888 -7.13532 -5.90017 -7.97577 -8.40868 -7.4283 -8.94415 -6.95636 -9.05828 -7.6343 -7.15939 -5.25477 -6.21706 -5.50947 -6.49822 -5.93552 -6.75874 -1.85195 -0.301758 -0.692037 -2.00872 -1.85653 -0.711453 -3.31919 -4.42217 -3.03947 -4.07227 -2.83678 -4.40077 -3.00584 -1.96005 -0.33255 -1.69978 -0.716511 -1.98918 -1.80491 -0.787256 -4.2801 -5.84883 -5.36148 -5.61867 -4.43214 -5.15668 -4.88053 -2.85143 -7.91824 -1.43947 -1.70208 -3.46215 -1.09339 -3.16688 -2.57596 -3.67958 -0.422817 -0.738978 -2.93506 -3.55941 -0.263207 -11.6446 -10.2876 -12.821 -12.1733 -11.2764 -10.5559 -12.9964 -12.8107 -6.62841 -15.1403 -8.30422 -11.7898 -6.93799 -16.5754 -15.1531 -16.7552 -15.6455 -20.9056 -14.1337 -17.2395 -17.2937 -13.905 -12.3008 -7.84939 -18.0984 -7.66486 -17.0072 -14.414 -16.4603 -21.596 -19.8987 -18.9931 -18.8941 -17.7932 -17.3553 -12.5432 -11.8578 -9.8147 -10.9013 -11.8486 -12.6283 -10.448 -17.0574 -17.1046 -18.9098 -21.3567 -16.6378 -17.6169 -20.2077 -15.0797 -11.0332 -18.5744 -12.4178 -14.5195 -11.3943 -19.63 -18.5394 -22.1808 -19.9933 -23.5385 -18.9686 -21.1786 -19.5908 -16.6056 -12.9778 -13.3465 -22.5095 -12.5186 -20.4652 -17.62 -5.69107 -6.0714 -4.79892 -5.38716 -5.37221 -6.55003 -4.78174 -5.69114 -6.9486 -1.91481 -5.36811 -5.60294 -7.34724 -1.30414 -4.96881 -4.38332 -4.08559 -3.79274 -5.02011 -4.22652 -3.75106 -1.72566 -1.84126 -0.651158 -0.751939 -1.65439 -1.86084 -0.70479 -2.5576 -3.35903 -2.54704 -3.11306 -2.62092 -3.33452 -2.51071 -1.58872 -0.663196 -1.56608 -0.70717 -1.57076 -1.6501 -0.647552 1.18888 1.82138 1.72409 5.39081 1.49349 2.96003 1.50353 -0.808343 -5.25665 -2.41817 -1.9608 -1.46591 -1.5829 -1.2609 0.0406746 -0.343386 -1.71648 -1.65097 -0.465437 -0.0403681 -1.05154 -11.356 -15.0961 -10.0698 -15.6907 -10.3455 -0.378398 -6.40022 -3.1814 -9.96079 -1.09495 -6.82028 -14.0351 -14.8036 -8.42584 -10.3896 -12.9294 -15.2103 -8.9 -9.57672 -3.04987 3.61127 2.66501 -10.2616 -11.7534 -17.8465 -16.2439 -12.8855 -14.7651 -7.6856 -13.8053 -9.06168 -15.4283 -15.6184 -11.1545 -11.3908 -14.8717 -16.0959 -11.5561 -13.5742 -9.39442 -9.97664 -9.27933 -12.6927 -10.2134 -10.6854 -17.1689 -17.8126 -16.1603 -19.208 -15.4876 -15.0136 -11.8256 -10.0022 -17.4316 -4.74219 -3.20021 -3.94367 -2.91501 -4.33516 -2.84896 -4.24869 -4.75181 -5.39025 -5.14198 -7.26904 -4.40606 -6.31285 -5.58337 -4.61346 -4.01445 -4.82641 -4.37782 -4.44893 -3.90959 -5.07406 -1.57751 -1.34054 -0.638094 -0.438768 -1.48912 -1.14589 -0.656491 -2.37481 -3.07571 -2.62587 -3.50444 -2.42446 -3.08981 -2.68216 -1.45014 -0.594188 -1.52347 -0.666197 -1.41889 -1.63031 -0.590799 -2.16693 -2.28363 -3.02271 -2.41114 -2.87233 -1.83553 -2.6539 -2.71895 -7.85909 -3.64156 -3.02703 -2.48675 -3.28591 -2.27696 -3.09035 -2.62927 -2.85218 -2.73509 -2.17278 -7.20411 -7.9195 -8.11618 -10.0507 -5.21544 -8.322 -8.68118 -4.72639 -3.46182 -3.22193 -3.44972 -4.07972 -3.61126 -4.34477 -6.36905 -7.65672 -3.81422 -7.0619 -4.75782 -7.65602 -5.74617 -9.83383 -10.0406 -8.33551 -9.45147 -9.0632 -11.0529 -8.66173 -9.15501 -8.38273 -8.55632 -8.19693 -8.88036 -8.78303 -8.67434 -9.0848 -7.55669 -8.10216 -8.01362 -8.75894 -8.22642 -8.6882 -5.60818 -5.10951 -4.52519 -4.70157 -5.17676 -5.53199 -4.76808 -6.3215 -5.86479 -5.34049 -7.12503 -5.97514 -7.21004 -6.29194 -5.79747 -4.4035 -5.28549 -4.97188 -5.4918 -4.95971 -5.76979 -1.73072 -1.52144 -0.630242 -0.692245 -1.54145 -1.68201 -0.711806 -2.9794 -3.86991 -2.56412 -3.88611 -2.53992 -3.87282 -3.0122 -1.7669 -0.418956 -1.80377 -0.714384 -1.80204 -1.76903 -0.715766 -2.21809 -2.57291 -2.27088 -2.5633 -2.38156 -6.64895 -2.22927 -4.8043 -2.16048 -2.0854 -2.32802 -1.99698 -1.95895 -3.22218 -0.924781 -0.967354 -1.74837 -0.77001 -2.8631 -1.75347 -1.7291 -1.43038 -0.691454 -2.04344 -1.52204 -0.63456 -4.56557 -2.97776 -6.37119 -4.93032 -6.04997 -3.28454 -1.94863 -2.54153 -2.54034 -3.88089 -5.49754 -5.96839 -2.90315 -7.80689 -7.94195 -7.61336 -8.07631 -7.32785 -7.44135 -6.19222 -6.75995 -6.75574 -7.60421 -6.66519 -7.01215 -7.24939 -5.57577 -5.39946 -4.78986 -5.5222 -4.94171 -5.5663 -6.20534 -6.79947 -5.48516 -5.4284 -4.50447 -4.56483 -5.38447 -1.78992 -1.71443 -0.651796 -1.66384 -0.724439 -2.65675 -3.98318 -4.01632 -3.20576 -1.98613 -0.29467 -1.47535 -0.413419 -2.01712 -1.95715 -1.84857 -5.4877 -1.17182 -1.99192 -2.01056 -1.24373 -7.22562 -1.99655 -1.78266 -0.842547 -1.28806 -1.76112 -1.62413 -0.824142 -2.6364 -0.582443 -1.05347 -1.1094 -0.426619 -1.56969 -0.702302 -5.39571 -2.56577 -2.0293 -2.28427 -3.1503 -2.02705 -2.92885 -1.9208 -2.85734 -2.57631 -5.30966 -4.24016 -5.357 -3.96906 -5.23326 -3.98865 -1.63316 -1.87954 -2.45155 -1.84792 -2.65028 -2.19211 -5.227 -3.52847 -5.22796 -3.71142 -6.38704 -7.13868 -6.88888 -6.52286 -7.47643 -6.81964 -7.03344 -5.99279 -7.25731 -6.95603 -6.98358 -7.78085 -7.18519 -7.1904 -6.23852 -7.52834 -6.85046 -6.6593 -7.05805 -5.95655 -7.07251 -6.88753 -6.78748 -7.14804 -6.12124 -7.25556 -4.37634 -5.16966 -4.84834 -6.16715 -6.30607 -6.65429 -5.64821 -5.61765 -5.91178 -4.88988 -4.79537 -5.75537 -4.78606 -5.24561 -4.22924 -5.42496 -4.73765 -6.14203 -4.72379 -5.51094 -5.34508 -4.78685 -4.40078 -4.62969 -4.11561 -4.96908 -0.328236 -1.73143 -2.46723 -3.75086 -3.03727 -3.85761 -2.89116 -3.71511 -2.94008 -1.7652 -0.683474 -1.86037 -0.739777 -1.66702 -1.79499 -0.371261 -2.36646 -3.5696 -2.57444 -3.61975 -2.69112 -1.71329 -0.67368 -1.56071 -1.64319 -0.360083 -0.50811 -0.32622 -2.68163 -1.6198 -3.59928 -6.40335 -2.81405 -7.41436 -7.11158 -7.76816 -7.36838 -6.14496 -7.33893 -4.66644 -4.91819 -3.79437 -4.55096 -3.47837 -3.75628 -2.2213 -2.83146 -2.07783 -1.64323 -0.32126 -1.32582 -13.9151 -7.37993 -7.34437 -6.78174 -12.8439 -12.2106 -5.21313 -4.95329 -6.51919 -2.3155 -4.92111 -2.34449 -3.71951 -5.75963 -10.3519 -15.1765 -18.6461 -16.197 -7.11911 -9.41082 -16.0423 -16.0405 -19.8508 -19.285 -16.9983 -17.3022 -17.409 -12.7402 -16.1731 -18.5713 -16.3776 -8.28226 -14.7225 -18.9853 -19.3173 -19.2874 -17.2438 -16.5414 -8.07356 -17.5428 -15.5482 -7.49234 -3.80082 -3.58469 -3.92297 -6.13298 -4.49402 -3.81094 -4.4452 -9.17695 -5.71288 -1.40463 -3.69881 -3.91904 -3.60373 -3.7398 -4.25505 -3.94934 -4.15114 -3.10122 -2.01625 -0.131856 -1.40903 -3.32231 -2.19 -0.236126 -1.56743 -3.16239 -3.26052 -2.37694 -2.09632 -2.19443 -0.25528 -0.311024 -1.42923 -1.4934 -1.54758 -6.33719 -4.99483 -5.11697 -6.65993 -7.51887 -7.99088 -8.55461 -7.66131 -9.34056 -6.72306 -7.747 -7.18977 -6.92954 -6.87267 -6.23425 -11.263 -5.2145 -5.75201 -5.67796 -5.2402 -7.53088 -5.5241 -3.14268 -3.58765 -3.38381 -4.14168 -5.23395 -4.16477 -12.0431 -16.687 -12.9819 -14.374 -9.6296 -8.31805 -8.0404 -8.08762 -9.29747 -11.6836 -11.6736 -10.3173 -12.1916 -13.0565 -11.0485 -12.5963 -6.87938 -6.50894 -12.1626 -7.88415 -12.7836 -14.7655 -17.4803 -18.5126 -15.4912 -16.5652 -16.6798 -13.4044 -10.8714 -14.8828 -10.1305 -13.416 -12.5123 -12.1413 -12.9662 -12.5347 -13.7572 -12.8059 -12.4997 -9.53897 -11.2998 -10.6522 -11.8857 -10.6563 -12.1913 -16.3741 -18.0463 -18.8689 -17.9023 -16.4942 -18.047 -14.3198 -12.8649 -12.7979 -15.4972 -12.278 -15.8455 -5.83568 -3.95969 -4.52183 -4.47785 -6.87595 -8.13619 -6.8249 -8.74274 -6.09284 -8.23574 -7.27963 -6.03144 -4.70689 -5.98952 -5.30616 -5.88896 -5.09201 -6.30389 -1.82805 -0.188088 -1.56475 -0.311039 -2.96633 -4.02473 -2.88838 -4.12606 -2.5363 -3.9788 -3.04838 -1.69703 -0.227599 -1.57325 -0.687821 -1.74681 -1.77403 -0.656133 -6.67294 -7.4961 -7.48844 -7.30666 -7.3621 -6.94604 -7.14294 -14.5185 -7.34987 -18.5166 -6.16378 -14.7433 -6.46863 -19.4041 -18.7146 -21.1795 -19.522 -27.3588 -18.174 -22.4 -20.7508 -14.9592 -5.90748 -6.18195 -21.9813 -6.07492 -19.8936 -15.9273 -19.9861 -28.8654 -27.0283 -24.0942 -24.575 -21.4798 -21.8162 -23.1663 -21.4168 -24.7589 -28.1957 -21.397 -22.9918 -27.8813 -21.4837 -15.2717 -23.6351 -17.6819 -19.6364 -17.1705 -26.8134 -25.9391 -29.79 -28.4932 -35.1346 -25.6441 -29.8381 -29.1141 -23.9895 -19.6095 -22.6987 -33.7112 -19.8427 -28.6655 -27.1197 -14.9767 -18.6854 -13.3287 -21.3252 -12.0225 -6.0059 7.01971 5.21453 -13.8024 -15.7189 -26.8609 -22.6638 -18.4884 -21.4244 -12.6572 -20.5256 -18.4438 -14.8119 -25.1191 -27.6549 -22.9109 -30.5539 -23.0862 -22.5255 -19.8953 -16.3534 -28.3798 1.71676 0.367774 -0.329301 0.22527 0.595826 1.2875 0.560654 2.32979 -3.97766 0.847347 0.958809 4.022 0.805806 2.33636 0.160211 2.40545 1.01814 1.16696 4.11805 -5.61448 -4.39704 -6.48941 -7.04123 -4.56949 -5.48857 -7.26383 -3.64252 -0.842041 0.445798 -2.45099 -0.986069 -5.98074 -6.11463 -7.0334 -10.2366 -3.4839 -8.04063 -7.51084 -8.24749 -7.67012 -6.68591 -7.64309 -7.52865 -8.53146 -7.13572 -9.15348 -7.65146 -10.6756 -8.18204 -9.14223 -10.3145 -8.42904 -6.01801 -6.63396 -7.85903 -6.96827 -9.79149 -3.90516 -4.51163 -3.58176 -4.13412 -3.80851 -4.77243 -3.61058 -3.38413 -4.8689 -3.7574 -3.46563 -5.10588 -1.85923 -3.10856 -3.14004 -2.58366 -3.45266 -2.90241 -2.20138 -1.40166 -1.5161 -0.568766 -0.715631 -1.27745 -1.64993 -0.613451 -1.80253 -2.64065 -1.43467 -1.8487 -2.3859 -1.23289 -1.16342 -0.396395 -0.263624 -1.33489 -0.978223 -0.534497 3.41569 5.00097 2.11267 7.70117 5.9313 6.02054 8.33568 6.86712 9.14224 13.4504 7.01639 18.4112 10.903 5.70569 8.71249 12.6721 9.66447 -11.6814 -8.09814 0.502228 -9.78448 6.58281 -7.96988 -2.666 -13.2264 -12.2836 -10.201 -6.06201 7.91134 2.95067 -1.19748 -9.80802 1.03428 -2.98999 -5.82114 -10.3976 -13.0345 -17.54 -11.4478 -11.9659 -15.0656 -7.09595 -16.2798 -10.4887 -11.4061 -12.3146 -10.4587 -7.7392 -12.6285 -7.44885 -7.31246 -10.4829 -1.53008 -1.14294 5.07754 -1.05058 3.95174 -10.1623 1.0143 5.7078 1.14625 -1.40248 -0.755406 -0.657381 -0.842024 -0.673188 -0.114427 -4.30619 0.239166 1.92292 -0.790092 -0.450641 0.188233 -0.251903 -0.873265 -0.814531 -1.26902 -1.09177 -0.843823 -1.11071 -0.784573 -0.845564 -0.622174 -0.408823 -0.811059 -0.420232 -0.7111 -0.720635 -0.282273 -0.894013 -1.00082 -0.883049 -0.289941 -0.777238 -0.746336 -16.5972 -11.2569 -10.6071 -10.2895 -18.1 -12.3654 -10.9922 -11.9852 -14.7984 -15.8656 -11.3613 -11.2186 -12.0616 -10.7552 -11.0506 -10.7211 -10.4386 -11.6373 -10.9657 -11.7816 -14.261 -12.5759 -11.2125 -11.1113 -12.8916 -11.5627 -11.3665 -11.4966 -12.0024 -11.7865 -11.5444 -13.6339 -13.0151 -12.8166 -12.6544 -12.0603 -14.3039 -13.6366 -10.1038 -12.7674 -13.0664 -12.7239 -10.1659 -12.1533 -14.0561 -13.4257 -13.7012 -13.5224 -13.1 -10.8819 -10.8192 -12.8135 -12.344 -12.1433 -8.8056 -6.89776 -5.04117 -6.28241 -9.08146 -7.51207 -5.53089 -7.05099 -8.51255 -8.92911 -7.97646 -7.73168 -7.69386 -5.51356 -5.75763 -6.79429 -6.50335 -6.71589 -4.19281 -2.7226 -0.248365 -1.89678 -4.56367 -2.92918 -0.293352 -2.012 -4.17588 -4.32029 -3.16651 -3.14501 -3.2195 -0.633844 -0.652343 -1.84854 -1.70412 -1.75472 -8.61767 -8.37625 -10.4871 -7.3621 -10.0131 -9.17442 -15.2361 -17.3271 -15.0126 -15.8916 -13.8185 -16.2796 -15.8989 -9.99325 -10.7177 -17.4963 -11.2515 -18.033 -17.4191 -20.7308 -21.637 -19.1363 -18.4416 -19.8631 -13.8882 -10.652 -10.7897 -13.6 -13.117 -11.0127 -17.1196 -19.664 -21.0013 -18.0747 -18.3854 -19.5019 -15.0706 -11.3045 -11.8418 -15.0193 -11.3169 -17.2748 -5.99736 -4.4536 -5.12502 -5.1112 -6.05712 -5.03721 -1.74023 -0.47297 -0.6279 -1.3648 -1.68595 -0.687414 -20.5516 -24.1842 -17.2716 -19.8115 -17.439 -6.76355 -11.6073 -6.84051 -12.5206 -4.93066 -12.6537 -19.4986 -18.0721 -14.8798 -19.1209 -16.3208 -25.4028 -16.6262 -9.42227 -18.2004 -12.9483 -21.5851 -19.8607 -24.2321 -20.872 -28.1967 -22.026 -22.1842 -20.308 -6.18491 -22.4775 -17.8554 -11.0417 -14.83 -21.9339 -22.1274 -21.7908 -28.3078 -19.566 -21.6536 -11.5537 -8.56691 -18.4189 -20.785 -15.5974 -25.4132 -18.9069 -18.09 -20.4359 -18.9823 -23.1541 -20.6944 -19.1265 -14.7131 -16.4968 -16.2581 -16.9874 -17.0828 -19.1704 -23.8187 -21.7702 -29.6966 -21.7942 -26.7761 -14.5509 -19.4478 -11.852 -20.5388 -25.6258 -27.3574 -23.6807 -30.894 -24.8424 -24.0891 -25.5254 -19.3856 -14.1665 -27.0309 -27.4627 -22.3748 -20.2331 -6.11817 -23.1127 -5.77503 -17.5766 -6.51851 -27.8631 -28.2574 -30.7383 -25.565 -44.2016 -24.5478 -35.3373 -31.3848 -24.2224 -6.49305 -9.90074 -41.1185 -7.18386 -30.5242 -29.9131 -33.9449 -49.3853 -53.2506 -48.4761 -43.0182 -34.8804 -41.5565 -39.9624 -32.3671 -38.5192 -43.3997 -34.2056 -37.3521 -47.8163 -37.9758 -27.6077 -36.9488 -33.6893 -32.5888 -32.2089 -46.0538 -49.1148 -47.9937 -57.0112 -73.23 -45.4396 -54.4316 -61.3276 -45.7165 -40.3393 -47.9671 -71.4727 -39.931 -52.2557 -56.8568 -24.6495 -29.1556 -19.775 -36.7537 -20.8448 -1.501 12.8081 10.194 -29.0483 -27.4763 -57.9283 -41.5795 -38.5341 -40.6003 -22.7081 -37.0595 -31.2848 -29.0945 -49.0601 -60.6489 -43.4726 -68.4451 -45.9446 -43.4891 -44.0104 -34.08 -64.5204 -8.2063 0.973037 -10.0221 -7.28049 1.50212 -13.9613 -13.8087 -11.9313 -11.339 -18.6275 -9.30423 1.10881 -8.48925 -3.8361 -7.31048 -0.0244814 -14.9149 -14.7793 -16.5844 -15.2247 -12.4811 -18.7159 -11.0607 32.3428 -1.10085 1.65179 -13.4566 -4.86575 -19.5077 -18.5701 -14.7089 -16.7638 -14.7934 -19.3137 -18.0413 -10.1519 -16.2325 -13.2779 -11.4783 -20.267 -18.5914 -23.326 -19.3096 -19.9239 -19.1259 -16.1539 -22.3647 -17.9902 -18.5151 -14.8598 -21.2089 -16.3726 -20.4319 -19.7204 -15.8645 -15.3019 -13.4891 8.88689 7.10141 7.90131 7.03786 8.33551 7.96723 8.42705 9.55222 10.2787 8.32798 8.18878 9.55048 9.5235 8.61575 -3.80861 -14.1506 -14.2523 -4.76942 -8.7446 -6.92481 2.57812 7.52415 3.17486 6.46281 1.83324 7.29902 3.63306 -1.03541 -5.06389 -0.00829269 -2.36024 -2.19533 -4.40575 0.539134 2.61378 11.5876 3.30318 7.9858 -1.43498 8.65435 3.50128 -3.01105 -14.7013 -2.92213 -5.03799 -6.06875 -6.15756 -1.18056 -10.3179 -17.174 -8.04819 -14.4224 -12.3873 -14.2095 -8.46197 -10.2857 -13.7378 -12.3277 -8.02651 -18.0483 -9.01026 -9.51175 -9.78554 -10.5991 -12.2876 -8.59641 -14.3833 -8.9969 -9.16568 -1.09974 -0.455821 -0.857104 -0.50858 -0.92946 -1.08709 -0.512937 7.51745 7.5045 7.96409 7.0219 7.38286 6.96551 8.41699 6.91234 7.74491 7.67125 3.2345 7.30489 5.91624 7.17322 7.13453 2.10428 7.39926 7.25269 7.63376 7.01663 7.48948 4.59295 2.47996 -0.758223 2.02952 0.0415657 5.59764 6.38656 6.31429 6.43984 5.54407 5.38716 1.94069 6.23892 0.906903 4.2425 -3.76027 -5.28887 -3.60285 -4.23598 -2.52708 -2.22284 -2.11533 -0.257475 -1.13991 -0.281482 -1.40382 -3.30872 -2.38753 -1.61988 -2.05504 -2.29602 -1.61746 -1.09012 -1.8792 -1.8495 -2.39511 -1.18531 -1.83434 -1.3475 -2.40856 -1.62543 -2.08674 -1.44621 -1.87789 -1.79341 -1.52974 -2.38351 -2.00927 -2.78336 -2.30312 -0.989137 -0.891859 -0.468921 -0.970108 -0.340337 -1.54273 -2.09373 -1.68533 -2.10822 -1.70291 -1.05784 -0.549481 -1.17247 -1.16613 -0.387801 -12.9799 -11.687 -12.3273 -18.4844 -12.8771 -12.9738 -13.4497 -11.7686 -11.8797 -12.0857 -12.4768 -12.5145 -11.5384 -10.2432 -12.9892 -10.8457 -11.607 -11.6887 -11.7022 -10.9818 -10.4107 -12.6538 -12.8541 -12.0855 -11.4012 -10.8913 -12.7509 -12.233 -10.277 -11.8077 -12.6775 -12.7484 -12.7761 -12.3618 -12.4692 -10.2951 -10.2285 -12.1099 -11.9035 -11.9855 -9.02427 -7.41901 -5.62587 -7.54124 -9.01236 -9.18923 -8.3183 -7.69113 -7.71281 -5.64971 -5.7133 -7.33436 -7.72683 -7.26092 -4.76332 -2.92577 -0.253893 -2.01362 -4.80832 -4.78866 -3.2582 -2.91565 -2.95458 -0.256806 -0.266834 -1.83901 -2.07516 -2.029 -11.6529 -10.9407 -11.6204 -11.8941 -12.1901 -11.4784 -12.175 -12.6303 -12.5586 -11.8639 -11.3373 -12.7465 -12.4278 -10.6998 -10.6605 -12.1785 -11.9016 -10.9942 -7.50898 -5.99094 -6.00094 -7.16589 -7.08719 -6.16343 -1.94839 -0.679343 -0.617603 -1.86595 -1.76709 -0.737779 -21.5302 -14.3473 -22.3617 -19.9302 -30.8151 -9.5303 -27.8393 -31.7042 -26.1208 -27.9063 -31.517 -22.4709 -10.6358 -10.7896 -23.8675 -10.7919 -31.5903 -20.4219 -28.8245 -41.472 -33.9516 -34.3906 -32.7105 -33.5955 -28.8392 -31.1049 -32.0591 -34.7396 -30.5469 -32.0267 -28.1761 -21.6352 -30.5231 -49.6855 -30.3746 -21.453 -34.2404 -40.4012 -35.6411 -43.0829 -33.4272 -42.7832 -36.4836 -31.1475 -31.7519 -30.0177 -39.8671 -26.3565 -41.393 -34.7309 -27.8339 -23.2983 -27.0148 -23.4488 -35.439 -26.2529 17.2617 -33.7522 -1.76826 -31.1352 -39.125 -39.9279 -21.0897 -6.44002 -13.1494 -27.5287 -3.0218 -21.447 -36.6059 -33.3707 -39.099 -62.4389 -42.8772 -39.9442 -32.1208 -46.2563 -35.9507 -29.6408 -26.3745 -29.6717 -32.209 -46.3384 -52.9139 -41.5089 -44.4048 -51.4828 -33.6235 -49.5498 -42.7621 -56.8536 -65.1058 -45.4079 -48.5599 -73.1947 -48.985 -49.3117 -90.0504 -69.081 -48.5075 -50.9963 -67.7 -61.7355 -13.1039 -47.1546 -30.984 -42.8189 -25.1912 -82.7761 -81.592 -71.3334 -56.7727 -122.518 -56.929 -101.586 -94.8335 -93.9582 -40.2566 -91.9352 -113.922 -55.5214 -97.3834 -106.26 -115.444 -141.412 -154.216 -122.101 -143.042 -110.663 -121.774 -116.215 -75.6888 -87.4318 -118.482 -84.876 -105.057 -132.787 -108.074 -68.2224 -84.8984 -101.714 -80.2658 -94.4 -130.195 -157.619 -141.197 -176.033 -177.174 -146.941 -155.706 -181.447 -146.376 -121.693 -166.057 -175.92 -127.254 -154.696 -179.502 -75.7983 -67.8794 -44.7994 -106.107 -76.9832 0.836299 -41.9195 -13.7645 -111.295 -90.5613 -145.245 -121.352 -120.232 -116.741 -56.1997 -119.163 -75.939 -90.5305 -141.982 -158.498 -129.081 -182.306 -137.822 -136.875 -158.722 -106.752 -182.698 -10.9554 2.20424 -9.86621 0.213298 -7.75342 3.27636 -12.3237 -19.9148 -21.6747 -18.1695 -32.2055 -15.8411 -26.9357 -21.2375 -14.3734 -0.394938 5.85658 5.99069 -21.1572 -28.955 -25.5927 -38.0996 -59.3877 -34.653 -23.5941 -37.9764 -35.8707 -26.6641 -28.6199 -35.2034 -28.2644 -33.1087 -38.6874 -36.4851 -28.6899 -26.5673 -30.6161 -27.7474 -35.5619 -34.7502 -47.902 -39.4515 -65.9206 -41.8344 -45.6682 -82.7513 -50.1267 -39.6446 -90.9243 -48.0074 -46.7094 -85.7662 -7.11782 -16.7845 -21.8589 -24.8294 3.34394 54.0201 2.275 11.1462 13.6748 4.0821 -7.88003 -5.25476 -8.53225 -18.0871 -3.68992 -0.79056 -2.62833 18.9469 19.1262 5.19821 -7.50446 -16.9741 -17.2488 -20.1315 -9.55243 -30.3637 -26.2023 -29.8383 -39.2636 -25.0738 -21.8306 -17.1761 -13.742 -19.411 -16.2939 -21.8332 -23.2277 -16.2673 -16.6183 -20.0277 -16.5028 -31.2607 -65.8926 -26.6745 -22.1155 -31.657 -29.6742 -54.0408 -35.7477 -25.9939 -36.3492 8.37015 6.81829 7.13632 6.76198 7.64923 7.60771 8.13568 8.72055 7.59271 7.86746 7.81926 8.02867 8.03508 8.23883 7.98869 7.55148 7.84026 7.63815 6.84821 8.60026 6.43797 7.8821 7.97529 7.95563 8.05557 8.69772 8.06466 8.34723 7.79431 8.3551 4.69806 7.83927 7.91492 8.01789 6.69494 3.02966 5.15657 7.22324 7.35502 6.50288 7.49106 6.60218 7.46816 6.78699 7.28093 3.27121 4.94677 3.62986 5.22154 3.02682 5.47487 7.72468 6.60857 2.96489 6.0452 -0.676208 -1.31103 -1.73537 -1.37501 -1.39721 -0.422012 0.823945 -0.815932 1.11923 -0.386068 1.76411 -0.137688 -0.643274 -2.08728 -1.79427 -1.84938 -1.49828 -1.4273 -1.23365 1.60152 -0.301134 -1.49727 -0.936459 -2.07998 -2.0468 -2.41331 -2.41551 -2.51373 -1.63098 -2.62537 -3.07391 -2.3336 -2.53699 -1.43023 -2.32422 -2.15705 -2.70796 -3.00406 -2.66146 -2.70939 -2.43475 -2.53264 -1.71095 -1.8509 -2.25198 -2.07274 -1.24573 -0.55578 -1.17708 -1.59508 -2.34973 -2.0581 -2.31633 -2.04159 -1.38739 -2.02321 -1.20913 -0.622574 -1.38402 -0.596967 -1.31131 -1.24227 -0.41322 -2.0761 -1.67772 -0.349662 -1.29354 -11.1651 -12.3203 -13.4721 -12.8897 -6.35233 -6.86457 -2.60657 -1.85895 -12.1524 -11.9083 -12.7107 -18.7032 -12.5337 -12.4753 -12.9546 -12.0524 -14.063 -11.9346 -11.8344 -11.7514 -11.6054 -12.4475 -11.8532 -11.4194 -12.5653 -12.0457 -13.1648 -12.1159 -15.0222 -11.8714 -11.7271 -11.6834 -11.7995 -11.4864 -12.1453 -12.9039 -11.0711 -13.1551 -11.947 -11.6711 -11.9933 -11.9834 -11.669 -11.9196 -12.2754 -12.4245 -12.8581 -12.4183 -13.5311 -12.075 -13.1223 -12.9156 -11.7918 -11.9602 -12.1882 -11.8761 -12.5176 -12.7636 -12.6944 -14.0006 -13.5039 -13.3729 -12.5819 -10.2766 -12.1897 -10.5594 -13.1868 -12.9644 -13.1785 -14.0034 -12.8076 -13.5093 -13.6764 -12.5181 -11.0023 -12.6888 -11.9534 -11.9956 -11.3222 -13.2404 -13.3641 -13.3759 -14.2157 -13.7639 -13.7282 -12.5791 -12.7342 -11.3163 -11.1922 -12.8194 -7.36385 -5.76223 -7.20604 -5.6307 -7.38108 -6.16204 -7.67227 -6.57837 -7.09584 -6.27092 -7.97103 -8.26831 -7.69059 -9.55598 -9.51116 -8.2445 -7.27236 -7.40966 -5.95097 -6.06594 -7.23197 -2.10031 -0.246647 -1.97593 -0.336669 -3.42701 -4.49117 -3.45274 -4.85454 -3.31895 -4.67966 -3.54252 -1.89751 -0.610229 -1.95613 -0.832482 -1.73997 -2.06033 -0.723548 -3.30011 -2.67006 -4.46049 -4.56163 -3.24065 -1.82833 -1.92045 -0.676896 -1.81252 -0.671173 -73.8828 -45.1562 -62.4336 -51.1403 -92.593 -74.38 -43.5749 -33.8292 -15.0977 -88.7169 -86.5042 -54.1294 -111.052 -109.65 -101.004 -80.2277 72.3905 -53.0991 -119.722 -29.8911 -97.112 -90.4294 -120.624 -127.904 -109.209 -115.77 -117.967 -57.2004 -68.4404 -68.8397 -87.6079 -134.871 -85.9471 -112.407 -102.886 -113.479 -145.738 -158.289 -87.7506 -135.205 -150.848 -108.538 -149.006 -126.382 -175.649 -113.397 -161.227 -161.057 -153.944 -218.165 -191.361 -160.834 -203.017 -103.612 -68.0605 -89.7302 -102.615 -74.6247 -95.0301 -108.767 -109.567 -28.5811 -107.952 -112.659 -71.5231 -115.3 -130.687 -120.177 -134.006 -117.71 -135.01 -124.021 -92.9133 -75.4238 -105.56 -109.699 -83.9991 -104.689 -113.409 -115.182 -123.951 -137.12 -115.719 -136.232 -115.355 -125.009 -103.711 -117.606 -124.321 -109.358 -121.377 -101.993 -100.453 -135.844 -118.598 -109.71 -117.607 -101.764 -106.204 -86.9515 -102.597 -106.129 -96.0681 -95.6763 -110.597 -121.384 -142.594 -123.885 -140.42 -118.063 -139.967 -123.534 -105.742 -83.4574 -109.534 431.269 -101.159 -96.4246 436.847 -117.142 -126.333 -116.579 -114.433 -131.749 436.928 -107.672 -103.794 431.247 436.62 -98.5151 -114.465 436.367 -116.52 -146.448 436.095 436.711 -141.833 -122.863 436.45 -160.958 -139.907 -136.366 -150.973 -147.687 -152.852 -170.627 -161.911 -138.695 -142.925 -162.626 -165.311 -156.64 -171.79 -155.618 435.612 433.666 -150.326 -178.893 -173.37 -155.763 -146.772 430.896 -164.229 -174.652 -106.117 -140.601 -101.991 -129.948 -116.488 -134.48 -97.024 -94.6672 -124.427 -125.651 -70.366 -128.3 -87.4315 -83.6426 -62.5792 -43.801 -42.1745 -56.4811 -46.1172 -59.6838 -64.883 -15.1843 -28.5876 -23.3551 -10.7511 -30.7752 -14.5684 -11.9749 97.9317 47.9485 -102.248 -98.6601 52.1305 50.7913 -108.593 107.271 -104.56 69.5276 72.1649 -109.443 117.735 221.126 392.729 425.511 103.597 393.306 240.892 426.962 425.574 394.101 423.989 262.159 394.149 -123.731 -130.561 -148.945 -142.971 -129.159 -125.054 -140.244 -116.95 -99.0591 -115.81 -108.492 -111.017 -117.615 -123.805 -143.903 -123.656 -151.556 -123.905 -146.167 -123.798 -103.66 436.687 433.561 -114.679 435.823 -147.826 436.727 435.38 -124.145 -150.825 436.352 431.802 432.809 434.05 432.055 434.837 435.564 434.676 -151.113 435.325 -169.445 -179.268 -160.886 -154.532 -177.937 -169.628 -156.059 -170.689 -165.35 -176.524 -160.954 -176.448 -153.698 -167.02 -170.864 -170.616 -177.488 -154.844 -178.202 -160.716 -164.614 -170.577 -157.642 432.622 434.961 -177.123 -159.076 431.985 -168.121 -144.413 431.641 418.534 -173.123 -144.685 428.298 -170.006 434.505 435.117 -156.616 -171.219 432.278 -167.612 -159.867 419.102 429.456 -148.233 -173.662 430.472 -77.3917 -128.26 407.142 -83.6973 -125.956 388.437 -53.8901 -42.3347 -55.3346 -57.3353 -39.2862 -78.1414 -121.386 363.366 340.266 -127.564 -75.0536 365.528 -55.4098 -37.1095 321.226 -38.6038 -59.4627 365.776 -9.76086 -27.569 -8.3175 -16.0019 -12.7797 -23.3095 -1.15684 -4.75963 -1.25283 -3.21078 0.79136 -5.93264 -1.11334 -0.195439 -3.69603 -11.5638 -11.1676 7.34506 -18.2096 0.710913 2.38079 -2.63069 1.08893 1.33275 5.13364 -1.77737 3.28445 0.715163 98.0761 64.1437 -158.349 66.0859 120.391 96.2191 -134.387 46.6815 -113.644 60.4322 -142.404 81.269 248.488 427.454 393.238 424.986 263.667 425.485 392.083 246.884 423.224 390.839 422.438 192.276 394.595 -116.018 -148.68 -124.911 -142.841 -125.673 -117.78 -112.847 -115.562 -114.703 -143.289 -116.953 -123.076 -144.841 -122.615 -131.787 -127.31 -142.76 -117.896 431.912 433.893 431.983 431.071 434.093 434.227 434.169 434.366 431.211 434.682 430.387 434.539 -139.495 434.469 435.156 434.519 -189.193 -167.686 -131.963 -191.217 -171.786 -179.785 -168.425 -183.133 -157.286 -183.222 -154.026 -173.206 -188.461 -184.756 -190.712 -178.279 -190.069 -183.526 -182.48 -185.752 435.006 433.092 430.449 -190.611 -145.478 431.12 410.844 -171.623 430.066 -183.72 -152.871 433.415 432.479 -158.92 -173.808 431.38 -188.331 -169.914 409.775 432.541 -174.647 -176.516 429.749 -87.8061 -102.627 394.486 -73.7131 -153.368 383.514 -66.6377 -33.1054 328.118 -58.439 -35.1718 370.672 -94.3489 -154.665 405.834 -153.964 -103.8 354.112 -64.6052 -50.6453 -45.9047 -69.3555 345.527 -2.49854 -8.65746 7.72019 1.83388 -12.4144 3.34076 -3.69432 1.21433 5.44052 1.24362 -1.2924 3.59696 0.225908 -9.19249 -29.3434 -3.69538 -22.7042 -12.1262 0.696712 -5.69462 -0.357473 0.0525098 -0.747182 -5.14881 2.63224 -0.267842 -110.863 -119.082 -126.958 -126.538 -110.035 -113.853 -122.293 -94.3718 -82.3454 -76.2752 -81.8647 -83.4154 -89.5771 -92.2998 -103.708 435.245 431.21 -112.951 -99.8959 435.591 -107.552 -137.185 434.959 434.578 -117.632 -126.655 435.468 -98.1618 -79.9725 432.08 435.275 -100.356 -90.1359 435.713 -102.555 -114.149 434.86 -123.252 -96.7518 435.445 -165.175 -149.269 432.563 434.192 -173.099 -136.329 432.453 -169.274 -169.496 432.723 -174.061 -172.425 429.735 -160.658 -130.301 434.296 -141.315 -133.347 -149.759 431.901 -162.612 -172.101 -147.052 -171.769 -160.762 -126.828 -155.522 -119.285 -156.723 -109.894 -87.4042 -59.2486 -60.0084 -78.7057 -68.2582 -86.8835 -136.059 -162.02 -153.002 -127.204 -160.866 -141.435 -112.545 -94.3186 -82.6544 -68.6442 -94.1695 -73.9867 -105.455 -95.3576 -16.455 -36.8174 -7.28847 -29.104 -13.2888 -41.2389 -11.5144 -8.0763 -0.933246 -2.97077 -1.36066 -5.86149 -3.72909 -1.93281 -81.4945 -80.7614 -87.7771 -88.9993 -75.9622 -88.2456 -95.7847 -114.262 -105.501 -100.437 -109.868 -92.5831 -70.1162 -47.7984 -81.3123 -82.3507 -49.5028 -85.256 -79.5699 -98.0676 -100.287 -102.437 -90.2803 -111.524 -94.3396 -92.6084 -127.631 -124.865 -136.806 -116.712 -137.484 -119.207 -125.665 -145.503 -170.344 -144.423 -143.554 -156.555 -160.76 -138.07 -119.818 -107.913 -111.303 -116.128 -116.07 -113.048 -117.583 -135.225 -141.263 -133.536 -123.457 -150.504 -125.712 -128.821 89.5976 13.3096 103.408 29.4595 83.8228 100.236 94.4174 -58.5875 -73.0986 -100.454 -46.2957 -84.4797 10.0858 -10.9056 28.852 -38.8621 95.309 -11.694 -76.6322 -30.1281 -55.371 -46.9569 -26.396 -18.0025 -15.8394 -78.0653 -62.729 -110.215 -93.484 -90.7866 -75.7307 -41.1931 11.7727 -6.63581 -23.4197 20.4122 -18.2981 -33.3344 -60.024 -60.2441 -70.3704 -45.7306 -84.2942 -43.1844 -59.9539 -114.842 -114.258 -130.174 -105.778 -111.608 -70.0878 -90.2938 -65.721 -96.8998 -89.6833 -104.226 -77.0558 -103.299 -104.776 -138.939 -95.9525 -112.722 -100.606 -106.74 -106.26 -138.075 -114.938 -106.256 -112.003 -114.451 -83.2336 -97.2146 -103 -91.7128 -100.526 -103.623 -118.791 -119.97 -120.281 -113.988 -129.459 -116.004 -116.563 -156.52 -148.738 -150.391 -119.885 -162.758 -174.159 -150.307 -11.6483 -18.7237 -19.9134 -38.8837 -10.8701 -20.7455 -22.2497 8.64651 5.97518 4.51419 8.11372 8.49828 7.83084 8.88233 8.14616 8.1692 8.28829 8.41485 8.57521 9.36741 7.13408 10.263 9.42562 8.89146 10.2128 8.97949 9.47099 8.78834 9.1593 9.46659 8.73526 9.02131 10.1523 6.62297 7.47342 7.62547 6.90209 7.42057 6.96969 5.38798 3.71533 2.78895 6.00596 3.23598 6.40455 -0.511657 1.15368 1.47003 -0.12681 0.722831 -0.454994 -1.57556 -1.5685 -1.37009 -1.17733 -2.00747 -0.913804 -2.38816 -1.59439 -1.18498 -2.18699 -2.34232 -1.36649 -2.63252 -2.32408 -1.99655 -2.40474 -2.46969 -1.75306 -1.88085 -2.13136 -1.75247 -1.81853 -2.23921 -1.43066 -1.31685 -0.587515 -0.383122 -1.24848 -1.0463 -0.620861 8.16495 3.53328 9.39368 8.64118 8.43672 9.47465 8.82584 2.91494 7.46291 7.79199 5.76297 7.03655 2.51548 4.80235 6.53801 -1.13722 -0.885921 1.19022 -1.29734 -0.78405 -1.53745 -2.08765 -1.17412 -1.77268 -1.51339 -1.24442 -1.02728 -1.34393 -2.06593 -1.6566 -1.78494 -0.457254 -0.862366 -1.68981 -1.19732 -1.32565 -0.407226 -1.00549 -1.02872 -11.4992 -13.7563 -10.665 -11.2741 -11.0892 -10.3698 -12.4471 -14.3968 -8.47155 -10.0813 -7.4809 -10.0169 -8.77847 -7.86902 -9.59648 -7.11558 -11.8292 -11.7035 -13.7877 -12.8531 -16.098 -14.8633 -12.4925 -14.6551 -17.1465 -14.4596 -19.72 -17.4282 -21.6458 -18.9102 -16.3378 -18.9001 -13.7723 -16.1392 -14.8558 -13.1327 -10.4682 -13.9908 -16.9373 -20.7352 -17.8799 -15.9592 -18.2099 -11.2312 -8.99965 -15.0902 -13.8287 -16.1344 -6.94245 -8.96723 -6.72434 -6.77188 -4.87245 -6.30406 -7.91766 -6.42659 -5.56037 -6.17752 -5.25252 -4.84916 -4.08144 -5.38834 -5.62086 -4.8104 -2.67839 -4.25673 -2.48986 -1.8919 -0.256113 -1.84711 -3.74959 -3.49894 -2.65524 -2.74803 -2.30947 -0.554405 -0.203416 -1.5274 -1.56081 -1.62795 -10.0331 -11.1414 -11.2984 -11.1801 -10.8151 -10.5265 -10.8413 -15.418 -13.9607 -14.9836 -15.6008 -14.2607 -15.0867 -15.9545 -149.749 -137.489 -126.834 -147.465 -134.375 -160.787 -136.461 -124.159 -120.138 -127.356 439.361 -115.55 -131.615 -136.767 -144.01 -158.122 -186.336 438.948 -172.941 -137.282 -148.695 -211.877 -159.761 -178.866 -171.652 -189.374 -182.236 -197.468 -220.165 -184.082 -204.836 -202.467 -195.436 -206.416 -227.367 -213.872 -186.647 -187.639 -198.485 -193.557 -201.873 -207.306 -133.504 -132.234 -154.042 -123.491 -137.985 437.841 -114.361 433.034 -115.243 433.127 437.897 437.884 -132.036 436.414 -122.908 437.591 438.326 -119.102 439.201 435.216 -132.909 433.661 437.868 438.572 -159.267 438.686 438.371 -137.585 437.828 438.428 437.822 436.717 437.245 435.518 436.983 437.445 437.135 -190.688 -123.51 -176.88 -107.036 -190.603 -127.369 -131.824 435.323 -107.582 431.475 -124.661 -131.849 425.546 -115.376 429.854 -168.855 438.522 -191.496 435.879 -166.671 413.704 -189.039 426.347 433.266 435.199 436.708 431.914 436.483 431.822 437.938 425.346 413.678 390.143 427.861 429.037 448.194 -83.9929 -120.486 -94.2919 405.493 -99.9674 -99.9358 -58.2793 -44.2338 -60.9382 -31.3629 -68.4776 -39.8911 -84.3731 -136.024 -89.586 445.091 -103.996 -99.2534 331.562 -66.0891 -37.9362 -60.8835 -63.9992 -36.6406 335.451 -77.438 399.647 443.728 395.379 368.324 341.177 -63.0967 339.866 -29.7233 354.688 328.98 -7.88582 -21.2379 -9.67768 -17.9814 -10.9223 -15.5202 -8.96406 -6.15146 -19.8822 -2.28828 -8.27738 -13.8602 -2.81277 -4.90433 326.728 260.172 -18.1427 -5.47758 -3.04291 3.04669 1.98678 237.308 -2.33074 -1.72023 0.355945 435.918 436.389 436.551 436.858 437.063 435.827 434.643 432.27 435.805 430.277 435.995 431.506 433.321 435.268 435.986 436.537 434.498 436.294 435.093 434.295 430.995 -134.802 421.32 434.41 430.694 423.752 433.537 435.454 434.664 433.968 433.954 434.719 433.096 431.465 432.469 409.82 433.435 466.478 430.184 431.445 434.876 432.705 431.824 432.038 433.351 430.96 431.261 412.373 423.721 414.398 429.238 426.631 431.314 432.254 432.675 432.29 432.124 433.407 432.013 432.468 431.033 358.633 357.824 424.469 416.202 434.222 434.956 312.517 -64.0049 -36.0502 -61.3139 324.896 325.364 401.23 328.662 434.807 -75.7953 401.518 335.988 316.097 -35.5368 327.483 321.394 -59.8644 323.559 330.192 308.216 389.786 372.207 440.44 343.287 429.414 290.465 311.58 311.899 271.757 322.797 319.242 280.977 416.712 433.065 375.931 413.676 350.958 297.334 313.147 329.516 289.824 359.452 317.793 339.505 297.207 -4.21459 0.0645633 1.36532 -4.15613 -2.62024 3.46663 239.303 -24.9009 -6.31706 334.131 -8.50785 317.2 385.477 205.593 -0.409822 -2.729 14.3687 -4.93957 4.48935 -206.492 343.448 338.413 303.092 307.358 395.682 -87.6002 3.94922 324.307 -41.0547 -1.4671 100.104 331.082 295.735 302.985 309.461 387.808 94.0999 7.23115 -58.116 244.617 396.171 -183.145 430.624 436.639 407.846 421.773 429.137 435.42 350.795 433.012 434.224 435.189 431.567 432.931 432.094 433.195 429.353 421.087 434.084 347.529 430.816 477.959 432.948 430.724 432.622 431.51 431.756 432.832 431.836 431.56 431.761 458.898 425.71 418.858 429.796 394.355 427.106 432.148 430.804 431.72 429.954 431.633 430.863 432.564 431.467 370.588 410.152 421.045 480.093 432.13 426.149 338.942 328.986 338.654 321.515 319.491 364.767 383.588 316.126 406.357 373.827 322.901 300.888 365.736 321.844 322.022 313.869 369.743 319.781 311.049 397.854 425.441 334.811 412.83 321.854 419.272 334.698 329.629 357.632 314.613 312.581 340.719 369.551 415.869 359.751 294.677 329.892 299.389 353.082 280.71 399.826 273.035 306.178 297.614 251.866 -2.51323 1.32906 -15.9241 0.586669 -118.266 4.0661 357.58 331.643 302.467 319.985 354.292 1.36661 -9.73044 3.59913 -200.118 -0.101836 181.855 338.993 344.875 264.271 394.74 291.979 -414.18 202.046 -3.6148 311.58 -81.6671 1.35619 330.709 281.366 88.4153 363.506 301.317 54.3054 306.977 -9.25327 5.63302 -193.452 119.97 4.46937 428.068 436.384 412.117 479.669 429.755 426.861 383.996 430.616 432.799 432.086 431.197 432.087 430.652 430.394 426.37 413.242 432.748 404.717 429.43 448.62 426.343 433.718 430.8 431.073 432.15 432.037 431.322 433.91 432.532 479.647 428.181 360.245 431.201 348.791 435.294 431.464 430.553 431.473 426.934 430.93 429.992 433.352 424.983 395.932 430.212 423.24 444.745 427.942 433.664 353.849 322.266 323.482 309.633 352.452 311.463 296.789 322.849 422.427 412.095 329.725 409.724 375.856 330.522 317.997 324.807 312.877 319.138 297.959 348.016 375.403 434.407 420.644 319.981 338.229 310.155 292.353 237.369 303.937 259.437 310.564 319.533 403.876 451.74 352.573 424.245 364.481 308.967 319.736 296.772 226.914 282.344 292.044 419.628 1.67697 -27.8705 -10.581 399.538 332.988 -1.83719 291.743 329.799 222.834 1.68304 -1.07316 207.695 -8.75146 388.63 337.905 126.2 -164.141 206.475 336.475 405.703 -174.452 2.23067 -23.7753 351.905 -2.58455 384.966 257.474 290.802 292.003 327.462 243.012 351.757 5.21852 6.01066 256.383 238.466 -6.5901 432.649 432.007 434.767 430.817 434.339 429.298 433.199 433.329 434.218 434.675 432.93 434.611 432.977 433.46 427.054 432.628 400.893 401.468 426.453 427.469 400.742 431.919 433.778 431.943 431.242 432.395 430.489 430.776 403.501 345.33 429.998 374.53 417.612 430.627 430.872 430.042 429.572 431.044 431.068 428.379 430.548 449.508 426.621 453.53 428.154 407.141 426.251 430.991 431.52 429.502 428.293 431.2 429.776 429.495 426.043 398.218 397.427 426.036 410.79 428.237 426.945 295.834 -48.4056 311.063 316.564 296.791 421.453 -116.228 411.451 437.22 356.15 303.793 -52.0588 -99.8455 318.4 318.361 336.185 292.623 369.416 291.166 398.537 359.698 435.934 296.287 289.397 281.646 308.76 343.124 319.264 280.593 402.093 365.01 295.012 428.628 356.291 369.74 306.269 306.316 278.879 293.078 300.994 344.812 -104.89 -2.34911 0.699674 9.08136 -4.65846 321.925 -50.9418 -314.665 -34.9467 -18.9546 311.817 -11.4491 290.488 -94.326 0.136876 -5.14313 1.92925 -4.94041 -3.50225 271.728 360.256 327.476 354.045 307.42 -317.008 -129.831 7.15204 366.213 328.127 -100.064 -62.3748 -252.659 315.663 285.116 393.744 282.222 339.528 24.4149 -87.7721 329.93 50.6787 434.633 434.867 -108.626 433.332 -92.7367 433.95 433.364 435.466 -87.0302 -85.3469 432.144 434.978 -106.123 -90.9861 433.695 434.096 432.649 430.7 433.284 433.027 435.004 432.954 434.112 432.442 433.343 433.67 434.594 432.974 429.005 -133.87 398.999 -130.784 426.581 469.851 430.736 -111.438 -123.389 433.194 -97.3162 -122.566 -160.503 -129.203 -107.913 430.968 432.037 431.708 431.13 431.459 432.048 429.204 427.703 396.09 432.449 386.472 428.025 411.879 428.657 430.602 431.302 429.351 432.653 -98.0728 430.105 428.797 -155.32 399.187 426.811 375.412 -107.943 425.95 -97.3546 -104.809 -80.2697 -100.911 336.883 -65.8287 -108.543 -122.847 -126.445 -137.719 -124.257 -100.368 -115.594 -101.315 -84.9082 -116.085 -87.5543 -107.486 -78.8024 -102.679 388.431 294.576 412.244 337.653 399.191 382.688 303.066 291.91 302.989 318.95 -61.6575 -130.948 419.883 321.828 413.014 -115.036 368.324 -80.1428 303.819 -67.3862 -105.806 -9.83119 -8.97695 -3.63878 -0.789087 -13.4602 -4.08804 -2.84684 -20.5734 321.974 297.66 -45.6356 129.142 -12.0014 0.702223 -159.079 114.652 -1.39086 -27.9763 -51.871 306.61 -26.0572 -52.3067 -37.4854 264.838 -15.5925 -10.4522 -3.4291 -20.1425 -26.0468 -4.30648 -90.2531 -89.3039 -92.2314 -87.2899 -91.6451 -93.937 -76.5427 434.145 -70.7474 -79.7455 -92.0103 434.096 -85.2834 -87.2525 -66.5452 -45.0314 -64.7808 -57.0414 -59.9553 -51.0323 -64.3983 -74.1095 -78.9056 -81.5685 -64.3433 -86.3511 -61.6644 -68.6917 -114.553 -110.781 -120.462 -106.101 -102.248 -119.193 -97.5839 -90.7016 429.761 -88.9909 -94.7725 -91.7411 -104.074 -108.742 -121.846 427.544 -122.423 -102.547 -116.406 -108.997 -125.525 -119.904 -114.067 -123.031 -118.262 -122.933 -121.654 -115.877 -90.0057 -103.649 -93.5597 -106.845 -102.671 -110.515 10.4049 10.0309 9.40745 10.5147 9.07293 9.29536 10.9677 11.0001 12.648 10.9277 11.4289 12.2328 9.21151 11.0006 10.0545 12.6335 12.1758 11.4377 10.3158 12.4973 11.0431 8.73174 12.4332 5.83554 10.8757 12.2379 9.08009 12.7731 3.48378 3.66753 0.0772424 2.5146 -0.967957 4.97422 7.87652 4.29949 -1.35576 4.22531 7.4481 1.85951 7.84304 4.16277 7.49187 2.03101 0.895967 -1.66522 -1.81957 -4.76828 0.997607 -1.88789 -1.6354 4.35497 8.70815 8.1853 0.773839 2.78727 -6.07919 -2.35837 -1.18313 -3.45217 -2.45639 -1.6539 -2.88832 -2.24335 -3.16767 -2.32912 -3.47876 -2.45947 -4.12648 -1.46265 -4.54938 -3.6268 -6.68659 -6.4245 -4.3602 -3.84495 -6.94881 -4.00378 -3.44373 -5.90139 -3.40971 -4.33551 -2.75886 -5.45741 -4.50035 -6.9429 -3.39799 -7.15996 -4.53113 -1.88055 -1.78854 -6.1311 -0.274685 -1.71675 -1.53334 -1.68724 -0.910691 -1.46733 -1.34206 0.537924 -0.618423 -0.101954 -0.841456 -0.535087 -1.73187 -0.819804 -1.14527 -1.4556 -1.38407 -0.0124791 0.816012 -0.0524694 -0.655961 2.0371 0.157891 -0.435512 -0.908517 0.670719 -0.78618 -1.02733 -0.475493 -1.00156 -0.280071 -1.02046 -0.946118 -0.787862 -0.330952 -1.24911 -1.79487 -1.47195 -1.25647 -1.57947 -1.21965 -1.28897 -0.851771 -0.538439 -1.03768 -0.51605 -1.09373 -0.921339 -0.487931 -1.03781 -0.538479 -0.933463 -0.676243 -0.83658 -0.339733 -0.633978 -0.262024 -3.25819 -4.78702 -5.21194 -12.9169 -6.72098 -6.52287 -6.26267 -4.87547 -8.6723 -1.72004 -7.15119 -5.75955 18.0284 -5.53689 -3.73104 -2.11667 -5.37427 -10.0575 -6.67302 -12.0079 -4.22563 -6.41225 -2.48297 -6.17733 -5.4991 -5.7639 -7.70736 -5.25357 -4.78623 -6.50397 -7.6789 -3.94701 -3.1585 -5.55867 -4.39241 -3.79199 -3.32778 -5.44269 -17.0492 -18.7687 -14.3938 -15.384 -19.4874 -25.712 -10.2602 -17.9543 -24.4256 -20.5743 -20.3705 -19.871 -11.3626 -7.21713 -5.03053 -10.6983 -13.1953 -14.8598 -17.4608 -12.1509 -12.6273 -5.42536 -7.87212 -11.9955 -7.6091 -15.6991 -11.6772 -16.1951 -21.5689 -16.0329 -15.2041 -19.361 -18.9234 -13.9326 -18.7871 -9.02687 -10.4184 -18.8907 -22.1714 -18.9349 -20.1464 -21.4975 -18.9388 -8.1218 -16.7741 -16.8048 -12.6416 -17.5353 -15.1726 -18.0908 -14.3388 -16.8895 -11.1073 -10.5575 -12.94 -18.164 -23.9961 -16.4034 -18.0579 -19.8448 -22.2206 -16.2257 -17.5186 -16.5158 -12.0887 -16.6779 -12.7896 -21.6717 -14.5874 -3.54135 -3.82832 -3.57751 -3.40973 0.166276 -2.9593 -3.84568 -10.5809 -3.23102 -8.81014 -1.67519 -3.73584 -4.17134 -4.88517 -4.07152 -4.57017 -3.70682 -4.53308 -4.30331 -7.73465 -7.67569 -5.88663 -4.44287 -4.50494 -3.79951 -5.38415 -1.34272 -0.0794926 -1.64553 -0.229744 -2.438 -3.21544 -2.52693 -3.07204 -2.51178 -3.01713 -2.36818 -1.48573 -0.538616 -1.49621 -0.576095 -1.40685 -1.44647 -0.635555 -2.14711 -3.44577 -3.2795 -2.49719 -1.50314 -0.441476 -1.43741 -0.335647 -26.8653 -20.8809 -22.4837 -21.4435 -30.1393 -25.6303 -11.569 -19.2393 -13.4757 -18.5539 -17.0018 -21.2472 -26.3966 -22.9995 -22.5022 -29.6117 -21.4298 -29.6434 -25.1841 -5.06402 -12.94 -5.68298 -16.3515 -13.2967 -16.0451 -20.6437 -18.971 -17.4869 -15.1525 -5.25117 -17.631 -29.6244 -14.815 -34.5806 -22.008 -20.2346 -30.7793 -17.4549 -22.5367 -16.2566 -13.0324 -16.8179 -10.9601 -25.801 -22.6069 -23.3645 -28.9091 -21.8972 -27.1478 -26.8731 -22.3707 -14.8076 -20.6624 -18.0125 -18.9021 -13.1151 -22.6672 -18.953 -21.3327 -23.9959 -21.6284 -17.6568 -17.7517 -15.5496 -24.1049 -20.6774 -32.0021 -22.5123 -27.2142 -32.0277 -22.5207 -20.7634 -16.2348 -26.0983 -27.9121 -21.7899 -28.3431 -23.0154 -27.1312 -28.2497 -24.036 -26.3664 -30.9085 -27.9424 -10.8323 -17.9798 -29.8649 -9.9577 -31.7932 -35.6223 -21.2199 -31.9668 -36.1009 -25.2051 -11.6078 -48.0574 -13.2799 -27.4215 -33.8915 -41.7826 -38.0318 -37.5605 -29.9991 -23.0578 -22.5141 -21.7959 -25.6288 -25.483 -23.9517 -35.9783 -33.2246 -30.3992 -34.104 -36.1883 -33.4197 -23.3991 -28.1495 -29.9417 -24.5465 -38.1917 -44.7221 -60.298 -38.3267 -45.1687 -37.6344 -36.641 -52.5076 -31.079 -41.2783 -39.9309 -12.872 -47.64 -19.2401 -31.4797 -19.1388 -43.1358 -50.9911 -49.9595 -55.7183 -79.1262 -42.3563 -57.6889 -61.1831 -51.2057 -46.1648 -23.3992 -79.9389 -26.6368 -68.8468 -57.2853 -63.2271 -104.57 -87.4183 -105.596 -75.1989 -85.3419 -70.8004 -63.8739 -52.6587 -65.9527 -81.6256 -56.0076 -61.2129 -85.7316 -59.0585 -44.2203 -59.8325 -57.5292 -51.3489 -52.1676 -70.4699 -84.5505 -109.375 -94.103 -135.699 -78.6079 -114.539 -101.041 -76.8404 -88.9908 -77.4196 -133.159 -69.0967 -109.09 -91.2233 -148.051 -140.286 -134.097 -156.925 -131.134 -160.861 -149.8 -175.976 -214.064 -204.522 -173.875 -207.278 -186.614 -175.183 -181.775 -209.048 -222.362 -173.666 -182.272 -213.038 438.743 -129.074 439.32 435.79 -139.96 434.437 438.328 438.874 -200.625 438.899 438.26 -153.354 438.444 438.621 438.905 -140.168 -160.895 435.472 -157.151 433.849 439.348 439.044 -220.435 -174.628 438.616 -174.595 439.175 437.983 435.094 435.562 436.383 435.517 438.111 437.986 438.686 438.086 438.236 436.864 438.324 438.475 438.367 -181.877 -189.368 -167.033 -158.197 -187.287 -184.355 -160.084 -209.203 436.979 -211.59 435.632 -162.14 416.778 -197.224 -142.03 434.225 -196.728 -223.134 -210.812 438.28 -209.937 438.228 -176.512 -152.533 -198.821 381.132 -181.428 -130.475 438.202 436.282 437.293 437.808 435.405 437.894 434.379 438.292 424.264 396.857 428.464 433.539 437.692 -62.1568 -118.231 -82.5923 411.535 -84.5539 -114.592 306.645 -46.3496 -32.8466 -57.0849 -55.9875 -24.3611 303.252 -59.8731 -104.461 -71.6576 -73.7261 -101.808 -36.4161 -28.2324 -40.1998 -15.5121 -46.9896 -25.0406 -34.5267 -55.8502 426.326 416.336 357.745 -102.601 296.593 -41.2918 321.512 342.527 -20.9528 287.888 -3.31812 -15.5831 -1.64841 -7.17031 -9.84047 -0.262482 -1.54673 -16.62 -1.62625 -3.39862 -7.72218 -12.3302 2.44038 0.509514 304.691 362.654 -12.446 4.8671 2.94641 2.37481 2.14351 363.747 3.2078 5.26685 2.98418 434.52 437.911 383.631 389.622 410.006 434.643 243.743 437.168 439.155 438.748 435.924 442.511 436.452 443.882 439.957 451.436 409.317 437.906 435.254 365.348 432.78 459.834 392.282 431.298 413.831 433.574 405.834 432.032 436.379 435.591 435.657 438.722 436.144 437.416 436.201 436.471 425.001 419.393 444.42 281.013 414.311 430.562 -54.1079 315.6 308.93 323.244 311.291 304.385 359.175 435.534 449.866 326.838 415.41 305.071 342.344 345.257 321.687 323.257 323.252 306.521 300.577 395.671 410.92 332.952 423.186 294.243 369.667 280.265 320.447 320.358 269.762 300.742 298.429 271.407 371.016 435.247 401.34 345.311 404.824 290.307 275.014 270.754 310.292 303.671 288.054 268.434 274.629 -1.32123 1.58682 1.74583 0.733951 7.73324 349.619 334.078 125.28 332.172 315.708 318.843 120.069 -13.6222 -133.254 -9.11651 184.303 297.888 387.753 236.662 295.155 187.932 2.62233 398.967 -19.0749 -134.114 5.8566 298.728 336.84 284.402 35.1734 305.93 401.705 247.31 2.29147 -85.5852 96.2249 -144.527 4.35242 433.39 424.069 374.676 374.098 426.388 454.08 445.233 436.948 405.018 432.54 563.188 432.363 364.531 421.545 444.974 436.515 438.265 435.74 443.937 437.138 442.742 440.23 422.475 437.2 260.897 436.199 500.19 422.169 435.298 432.363 434.009 437.452 434.394 431.94 438.839 427.696 527.493 458.598 449.589 512.469 425.333 419.087 249.004 331.427 288.109 298.168 289.086 293.745 422.588 379.173 413.814 304.247 435.308 287.519 262.285 276.626 288.991 283.833 276.245 364.376 401.075 278.899 430.223 291.587 381.64 321.52 263.654 269.883 289.148 259.354 250.845 319.032 404.885 406.77 412.259 303.999 270.187 80.8803 281.645 266.431 226.613 239.961 0.62601 -113.153 -134.862 6.39734 287.71 222.075 195.551 244.355 442.886 258.061 -18.6903 202.115 -148.296 -29.5391 4.39576 -26.0288 337.158 188.859 483.531 378.376 166.113 271.281 105.333 -9.85897 198.633 -76.5061 -102.409 3.78488 230.949 243.567 285.974 292.013 263.411 221.509 -43.5079 0.515387 430.726 413.708 416.829 338.989 427.197 430.116 402.867 432.859 431.334 430.652 431.053 428.971 431.719 431.741 443.389 411.661 425.06 444.257 418.068 422.28 438.936 432.024 431.807 431.442 432.287 432.166 431.966 435.636 412.955 371.895 426.805 555.883 442.705 381.162 422.108 438.378 431.518 432.13 431.46 432.903 432.943 434.983 439.488 466.995 428.017 436.414 413.428 438.755 426.514 295.923 333.326 245.05 213.442 325.466 331.64 384.39 295.353 452.234 355.966 393.754 278.983 306.236 296.829 276.39 -132.012 30.8105 260.284 306.012 400.966 420.057 364.475 442.17 302.079 275.874 138.369 259.824 323.051 455.706 425.959 400.421 259.502 315.011 1.43859 244.596 40.3492 201.118 308.023 -1.14151 -110.03 46.9509 -33.1815 196.298 345.759 346.562 -107.363 497.787 294.759 -128.481 1.7436 5.97588 43.7747 291.866 473.81 266.049 223.016 528.554 260.711 -1.29168 -28.0136 -20.352 -35.0457 459.751 397.71 245.222 410.568 291.926 275.437 -163.36 -17.5612 285.923 394.827 427.816 785.104 444.435 434.767 413.533 437.764 437.792 432.599 426.153 429.863 439.312 431.802 430.105 424.098 534.084 424.323 411.067 434.448 415.343 442.962 433.884 432.159 435.86 430.666 435.565 431.368 433.09 393.379 442.153 436.506 444.574 424.009 438.008 417.218 424.751 375.82 588.73 439.271 429.752 437.368 438.782 309.704 285.567 345.327 224.197 302.735 267.458 406.262 303.756 426.648 332.785 415.29 305.948 422.145 259.632 294.253 221.026 370.226 288.519 266.965 241.757 308.033 433.34 449.952 465.215 360.216 265.384 162.101 262.135 132.939 365.228 366.872 420.354 440.467 432.618 202.837 227.768 362.994 357.333 313.494 209.179 240.792 -145.531 7.22305 310.133 -18.0306 13.9208 294.524 146.58 283.993 450.864 311.238 454.892 237.717 -10.6806 242.327 -3.79969 231.371 -7.31907 242.432 20.6763 266.119 440.854 291.337 249.989 225.849 232.294 212.459 3.23254 256.365 417.442 413.644 254.078 426.873 233.19 244.76 0.133175 216.606 -84.216 429.619 428.258 462.668 423.418 425.588 439.833 262.7 427.568 354.198 425.643 369.434 430.64 368.37 437.887 435.336 430.974 433.217 430.915 432.167 431.601 432.234 428.709 434.705 421.402 470.83 432.099 373.048 422.205 430.759 430.944 431.237 432.701 430.94 432.011 433.859 402.088 378.987 393.262 427.062 788.478 427.524 432.509 262.707 324.925 -158.012 275.958 234.835 295.234 275.976 412.129 272.964 415.85 358.632 378.443 272.23 279.817 272.04 245.173 294.68 281.639 271.284 394.073 440.689 217.849 380.1 248.303 -254.473 243.607 186.867 124.439 246.58 405.862 418.846 218.561 385.111 251.065 275.379 304.436 201.645 245.005 282.97 285.373 76.5423 356.335 -5.34802 -48.9399 0.60893 285.848 314.264 369.648 272.015 176.364 202.234 318.213 0.202647 183.084 -187.911 1.82876 104.568 184.909 246.274 159.098 289.619 363.999 251.144 142.168 -26.2662 10.8397 214.639 0.827916 281.178 275.318 419.441 196.265 -54.3635 -408.441 238.875 273.424 -55.1318 178.63 -118.469 1.66036 421.452 431.718 354.745 398.651 428.112 422.096 405.682 423.859 381.979 425.367 389.629 421.275 403.649 405.293 434.76 430.826 433.972 430.267 433.647 431.122 431.629 424.933 500.523 428.167 517.248 437.111 387.818 411.52 432.745 430.551 429.474 427.885 430.108 436.795 435.418 433.441 448.264 435.713 414.415 389.749 411.097 422.433 272.332 287.142 294.009 274.788 287.529 180.832 255.083 412.911 291.852 421.079 354.322 434.142 263.728 292.142 291.536 285.705 341.991 251.249 284.067 235.414 336.592 173.355 372.028 350.523 423.226 251.321 272.738 203.803 271.137 207.575 251.701 268.148 410.715 361.859 303.655 414.442 386.074 359.776 262.422 281.917 270.264 298.846 252.051 277.686 378.87 -155.156 248.403 -20.5877 -1.21313 406.687 306.604 -21.1863 270.736 348.23 290.988 -210.524 -17.8628 346.48 -90.311 -42.069 386.766 251.677 259.461 269.615 6.08666 254.677 0.983997 236.002 98.1953 -129.831 -0.162782 276.961 275.139 338.81 288.551 84.7384 -155.393 -151.331 335.733 134.544 -0.794417 -19.5866 433.72 433.36 431.943 433.969 432.057 433.127 433.541 -53.8028 431.456 -52.9334 433.714 -81.5207 -59.7771 -76.409 432.845 -59.3439 433.082 430.529 434.277 432.004 432.678 433.837 -76.4589 432.347 434.248 432.565 432.75 420.533 426.417 -127.33 520.284 -110.534 410.439 352.066 427.09 -86.0207 -98.3485 -82.2456 -100.781 431.777 -99.2015 425.229 -126.95 -113.539 -126.842 -108.67 -107.776 424.684 399.983 419.416 382.69 405.197 385.575 443.018 427.771 -81.4503 430.895 429.258 431.57 -99.711 428.53 424.44 -127.98 334.366 385.984 -109.103 420.938 -86.9858 291.718 -113.909 286.744 -75.8932 -120.582 -128.906 -140.194 -134.787 -126.788 -133.186 -112.909 -99.4861 -129.061 -102.388 -116.215 -91.2775 -121.057 333.866 363.085 301.287 403.512 369.299 371.586 317.058 341.466 287.522 290.417 317.105 305.263 -133.066 407.271 -125.47 386.247 -130.639 -95.4575 319.629 -116.273 -77.9638 -116.029 303.073 -21.0624 -20.6549 -14.6155 -30.4696 89.0727 -15.2754 -21.9811 292.957 382.365 304.456 257.495 -19.5779 253.686 -10.3839 -26.1325 -63.4528 306.997 -39.5291 -63.9206 -42.9586 -21.5131 -13.2789 -4.93392 -23.6347 -30.2524 -16.4369 -14.1288 -47.6105 -49.0436 434.231 -52.294 -53.4993 -44.8519 -56.0429 -57.9167 -74.6232 434.195 -71.3446 -58.1426 -68.8928 -59.3282 -93.2843 -80.2115 -101.205 -82.4788 -95.7659 -81.721 -94.6265 -112.98 -124.908 -110.413 -122.132 -112.11 -126.162 -110.465 -149.981 -135.015 -130.719 -137.442 -134.686 -142.959 -143.482 -2.56284 18.0211 16.2722 -10.2458 12.9869 3.47483 -3.24984 -19.4195 -29.0243 -46.8932 -16.7139 -39.8059 -15.5886 -30.1237 -73.351 -41.2884 -63.7057 -68.0703 -54.4936 -52.9229 -77.8711 -86.0246 -64.1243 -99.8654 -73.0021 -95.6463 -61.0432 -91.9802 4.42233 23.1977 -8.05944 98.2776 5.7177 22.8955 -7.81828 -22.3803 -14.1207 -10.7959 -18.0964 -0.0747249 17.1681 -5.01708 17.3899 -2.93306 -7.56758 -17.2516 -18.5699 -8.03486 -33.4602 -34.1215 -58.4689 -42.3809 -27.5609 -34.1335 -45.2612 -62.6011 -45.9629 -33.3445 -28.7145 -19.4421 -22.5128 -24.5775 -29.2334 -17.4067 -29.8171 -25.2489 -23.8913 -6.18893 -2.96876 -7.0794 -9.73245 -3.20957 -4.51066 -13.3488 -3.3114 10.8085 3.15005 40.9273 2.49778 11.3326 -5.71147 -7.60471 -2.16964 -3.2643 -12.9011 -5.12972 12.2244 -5.2092 14.2034 -5.10862 19.9843 -2.91212 -17.3318 -15.5567 -14.7079 -6.68045 -7.5885 41.9993 14.692 1.81949 34.2652 -0.640418 -11.8758 -5.82848 -4.59181 -17.5701 -13.8081 -10.1929 -14.1375 -11.388 -16.4008 -11.9867 -17.5207 -10.0155 -9.11656 -11.3348 -14.7121 -17.0987 -8.73819 -8.50864 -11.814 -10.7716 -10.5452 -19.6338 -33.1701 -15.9143 -23.1043 -20.9269 -15.9082 -28.3274 -13.2207 -23.0917 -14.0313 -19.0844 -13.9053 -14.1359 -17.8257 -11.6746 -13.3074 -14.8868 -16.4976 13.8502 10.0718 13.2436 10.9422 16.3185 14.7746 13.9338 16.63 12.8781 11.0982 10.6913 12.4543 11.5916 11.3833 13.8288 12.3409 11.4131 10.6609 13.3492 13.2275 11.9181 -2.33964 -7.80067 -2.85045 -4.72866 10.1697 7.62771 -0.24012 12.0376 0.256899 -9.43807 -7.93433 -10.4655 -2.51998 -14.1101 -3.66631 -2.32095 25.8331 2.3503 10.0988 -5.22502 10.8022 2.66364 -5.99443 -3.0915 -5.60907 -11.8678 -2.51718 1.57315 11.9904 8.64787 3.58719 10.8231 3.30169 2.40286 -6.05485 -6.38468 -3.93683 1.46962 -10.2988 0.302663 -1.46564 -9.64241 -2.57637 -7.77978 -11.85 -15.918 -8.76664 -10.6876 -9.47965 -12.889 -12.8292 -13.4035 -2.04697 -4.58752 -7.70324 -10.0281 -12.6125 -15.0444 -10.1316 -8.47416 -12.3087 -9.4148 -12.8637 -13.5823 -9.65273 -7.30247 -9.20748 -8.99607 -13.1457 -7.55934 -6.12722 -6.15145 -10.9186 -9.59461 -6.94965 -10.9799 -3.44826 -5.53987 -5.94295 -6.12301 -8.17992 -6.7905 7.96629 0.134178 -1.84948 6.0112 -9.59465 2.56182 1.84762 -0.477974 -0.101512 0.310987 0.421185 2.2491 2.05116 -1.23846 -3.19728 -0.743255 -1.34367 1.27461 -1.10162 -0.915506 -0.822962 -1.71429 -1.2746 -1.3914 0.353354 -1.63814 -0.494193 -1.05969 -0.425367 -0.843094 -0.273941 -0.709888 -0.62335 -0.473074 -0.425823 -0.792908 -0.607244 -0.401082 -1.47546 -0.917383 -1.71491 -1.23071 -1.53989 -1.00369 -1.43956 -1.13788 -0.45794 -0.486101 -0.850801 -0.76913 -1.05707 -0.595611 4.39271 2.88725 -5.35039 -5.16075 -0.740674 -1.18153 -1.243 -0.870469 -7.16597 -6.92431 -6.75456 -7.30492 -7.85787 -9.69715 -8.12145 -9.84191 -7.19389 -8.30816 -7.64581 -7.41993 -7.41617 -10.8477 -13.3316 -11.8775 -12.2783 -8.81057 -7.20353 -8.10358 -6.76736 -7.99912 -8.6439 -10.0263 -11.3318 -8.3658 -10.8883 -8.68463 -11.3302 -9.60898 -12.2788 -11.194 -9.41493 -12.8486 -11.9741 -10.6588 -12.2967 -11.7696 -11.4514 -11.983 -11.6786 -12.3085 -12.0664 -11.8477 -9.33767 -11.1945 -10.4901 -11.5113 -10.4987 -11.7154 -6.46089 -5.16503 -5.02208 -6.21187 -6.40526 -5.36404 -7.6979 -8.3006 -7.13597 -9.01211 -6.95776 -8.85284 -7.87236 -6.84357 -5.1538 -6.7971 -5.81764 -6.59332 -5.72721 -7.01726 -1.81118 -0.627327 -0.157 -1.7191 -1.87406 -0.682648 -3.25848 -4.43862 -2.83989 -4.38061 -2.72636 -4.32276 -3.26536 -1.92107 -0.17602 -2.04336 -0.738577 -1.93784 -1.91674 -0.758399 -15.5972 -20.1107 -18.7103 -20.4796 -16.9031 -18.4725 -17.0997 -20.097 -21.5818 -23.359 -21.8971 -21.6335 -19.6591 -22.6739 -21.4399 -21.4149 -32.194 -23.6795 -22.7551 -19.5557 -26.6856 -16.3801 -5.46999 -5.19911 -20.45 -4.98906 -21.148 -25.2313 -37.1243 -40.141 -25.5989 -30.9031 -33.0831 -29.8248 -25.2689 -18.8092 -21.6238 -32.6661 -25.4599 -24.6563 -36.173 -35.3601 -43.2551 -38.6939 -34.1893 -46.6793 -33.6303 -19.9927 -32.4458 -37.93 -28.3022 -41.7249 -61.4139 -94.1662 -50.3075 -79.1844 -34.8733 -84.0977 -65.2925 -30.494 -109.106 45.1873 -82.9406 -14.4018 -76.9649 -108.369 -118.225 -87.6047 -103.499 -55.2164 -51.0203 -40.0055 -71.3337 -39.4751 -65.9555 -56.7762 -57.6209 -45.6334 -32.1659 -96.8759 -18.0318 -101.083 -67.6924 -89.7317 -143.259 -108.814 -125.748 -108.813 -120.95 -91.7386 -92.2962 -61.1987 -35.9833 -81.6435 -50.831 -60.8541 -108.837 -106.977 -161.018 -110.366 -99.7833 -112.932 -81.012 -158.859 -228.102 -102.139 -95.022 -77.6397 -56.0125 -61.3495 -80.2046 -61.3964 -73.2963 -84.5563 -120.327 -147.65 -119.694 -154.132 -114.914 -147.628 -120.499 -112.476 -159.112 -104.798 -142.666 -95.0813 -144.866 -113.539 75.3491 -133.98 72.4244 429.5 56.4558 -123.724 260.669 41.8727 -43.9397 35.989 -111.183 35.2934 -83.3676 54.7652 212.569 290.31 231.431 331.921 311.896 248.134 205.834 84.0816 430.497 -126.632 374.607 -118.383 298.646 49.6601 -141.228 -172.011 -162.365 -177.679 -134.512 -158.835 434.807 -157.439 -131.955 -181.704 -186.966 -170.457 -185.981 -160.315 -54.3466 -100.82 -106.304 -107.525 -116.305 -152.703 -137.039 -159.879 -124.633 -140.001 434.483 -113.254 439.16 438.556 -111.756 -155.759 438.976 438.854 -124.26 -222.668 -193.293 -238.146 -175.292 -217.952 -211.872 -220.813 -238.63 -176.106 -205.945 -206.3 -178.156 -197.756 -131.19 -220.943 -160.94 -201.465 -159.113 -165.518 -162.18 -154.031 -153.92 -142.683 -157.361 -147.819 -148.322 -148.991 -159.426 434.827 -156.579 -109.972 -134.724 -153.546 -93.0643 -128.48 -77.8172 -103.05 -91.0015 -128.609 -80.7375 -94.3703 -100.059 -114.513 -69.0298 -126.18 -71.7889 -92.1635 -61.9958 -21.9105 -35.752 -48.8634 -34.1064 -43.3021 -61.107 -7.04685 -9.7616 -19.357 -1.37084 -17.4428 -1.72821 -6.82501 437.979 438.353 438.3 439.279 438.883 438.01 437.557 435.421 438.167 433.32 437.856 435.199 436.456 438.185 438.356 438.442 437.107 438.696 437.828 436.965 432.024 -198.527 350.622 -126.261 438.793 398.269 437.09 437.293 434.707 435.625 436.382 437.074 434.823 430.295 404.431 430.811 428.238 438.373 397.519 460.682 434.735 437.688 434.381 436.658 435.486 436.659 436.388 433.403 433.256 468.397 435.023 392.118 436.527 436.989 447.4 417.785 459.274 345.945 439.583 430.819 299.543 -35.1215 -11.2269 -13.9393 -44.057 284.762 299.192 421.681 368.153 446.552 428.705 278.948 292.504 314.575 309.392 308.379 302.811 284.083 347.378 409.815 -60.4263 407.738 331.135 -12.698 294.457 -41.7249 295.907 296.508 335.99 443.069 422.085 347.728 416.901 275.11 322.475 249.492 287.555 289.564 276.604 289.451 4.61125 0.380059 3.30664 2.85087 5.0463 0.370206 2.34247 296.987 302.384 6.93485 310.735 1.87294 283.362 -39.2579 5.21997 -140.253 -5.91586 3.12243 274.668 3.74532 311.288 -177.723 2.38252 2.80571 3.95318 -88.941 1.70797 368.335 306.995 273.634 166.378 305.909 353.196 -56.366 -6.95549 172.953 11.1658 438.917 433.147 428.912 394.355 432.85 428.776 614.842 435.265 435.447 434.15 434.193 435.747 435.09 434.468 432.723 419.623 437.436 434.175 432.375 671.929 432.38 435.039 424.554 432.683 432.05 433.591 387.318 433.909 435.55 434.083 434.931 436.01 435.216 434.458 436.013 431.351 448.568 518.004 436.315 421.737 434.095 435.864 359.086 148.583 310.154 263.805 276.99 263.422 337.797 420.51 439.981 278.71 375.058 245.108 265.765 269.151 265.429 259.293 371.024 232.201 425.038 333.525 429.538 277.002 413.433 250.752 262.043 295.717 278.595 267.318 184.411 241.209 437.57 435.838 198.898 349.071 252.223 218.159 257.199 243.591 232.822 215.208 273.563 217.002 53.3706 348.91 -0.913381 -97.1245 -141.843 4.12149 67.8732 254.217 -388.746 268.201 351.13 239.941 287.54 103.565 -8.10214 -45.8 -8.11241 244.266 4.92776 311.7 234.526 284.533 339.392 311.487 248.362 -144.8 -17.3938 204.812 -0.857636 -127.208 282.059 -429.839 238.201 -13.1204 249.87 139.996 166.897 266.172 -82.1201 0.471326 2.71493 166.346 269.211 442.07 430.933 464.34 452.126 426.189 435.691 454.471 437.805 435.7 450.142 437.033 441.983 435.956 447.644 440.799 340.152 426.049 437.377 431.142 482.534 432.623 439.103 434.958 439.158 433.012 438.13 435.218 433.42 426.95 451.893 438.676 450.469 440.6 461.947 432.773 435.078 433.262 430.83 431.659 434.22 436.151 430.975 435.185 437.542 452.455 420.456 462.291 431.104 417.987 321.884 204.12 258.71 413.652 452.258 453.112 272.598 303.493 184.766 446.859 473.032 462.931 267.599 231.918 206.32 267.128 450.877 462.66 460.046 319.853 286.286 247.78 17.0612 -56.1604 -21.176 -21.0103 404.847 286.083 286.535 261.624 248.715 -53.797 -24.7823 258.637 349.989 266.119 226.033 217.967 199.343 -3.53157 -11.116 223.388 302.488 304.062 303.125 -39.966 441.039 444.365 435.886 438.615 449.732 439.751 500.342 433.543 431.58 430.778 427.904 435.342 430.089 428.798 434.56 417.434 439.569 208.378 434.803 433.513 422.916 427.72 429.826 426.851 422.202 430.019 426.656 420.986 430.445 436.181 420.408 348.446 428.516 361.126 410.779 425.858 423.25 422.637 417.863 426.684 421.664 419.154 425.519 431.603 375.719 401.412 400.695 417.553 405.787 159.044 89.9577 319.781 438.903 410.256 394.48 218.067 271.299 221.663 438.849 323.609 393.861 241.676 284.704 253.07 182.457 237.885 322.536 320.118 273.567 379.677 220.707 242.043 256.083 253.998 266.121 177.047 222.636 234.83 -7.81243 372.182 236.652 282.27 250.396 223.269 263.612 115.924 302.852 644.451 284.447 249.593 274.479 299.613 164.087 339.195 304.506 591.335 496.355 289.796 307.494 285.292 424.126 426.448 427.685 425.898 426.369 424.55 425.342 420.403 417.91 419.457 417.408 420.056 418.254 419.23 422.884 424.197 420.154 418.953 422.119 422.491 419.394 422.458 424.463 420.551 420.158 423.414 422.972 419.638 428.128 437.304 439.906 350.404 430.415 425.773 434.842 428.2 429.471 432.931 427.923 432.317 427.339 429.542 425.324 445.534 423.846 553.947 437.461 434.345 413.854 422.007 422.756 415.319 418.081 421.264 421.732 415.365 427.361 391.874 400.044 365.356 414.712 428.969 399.862 421.595 424.743 418.469 412.939 423.292 424.146 413.006 417.598 407.478 361.922 392.02 456.932 418.631 406.155 223.19 257.796 137.173 447.225 449.656 421.523 83.976 219.503 229.848 201.005 322.421 275.915 330.83 221.707 278.421 272.549 222.712 229.784 268.079 269.433 226.083 242.018 268.492 434.592 330.985 234.607 339.3 272.422 245.981 268.771 229.65 169.05 269.798 301.904 250.521 253.001 248.33 241.005 266.385 366.466 247.031 293.206 266.489 334.563 253.454 288.83 312.702 565.172 308.103 523.195 299.782 278.729 707.62 244.158 259.284 329.429 239.955 267.539 303.558 564.868 290.613 266.753 433.77 430.311 424.879 447.458 424.771 433.064 400.058 436.214 433.559 442.157 431.55 441.786 432.795 436.515 430.656 422.827 430.374 403.644 445.567 375.772 418.829 432.278 427.591 425.442 425.535 430.823 429.822 425.389 428.545 384.388 401.231 423.09 441.613 326.294 421.978 435.276 430.447 427.258 428.036 431.221 435.342 428.35 437.906 457.101 497.443 421.101 588.377 432.346 428.202 436.184 186.229 170.266 405.749 192.638 397.787 447.94 156.053 165.558 275.889 301.763 425.318 209.296 456.179 444.433 211.05 212.286 218.48 291.929 422.889 464.915 444.729 241.579 215.386 276.699 -33.4106 389.135 231.63 114.918 337.011 184.892 -25.7907 135.435 332.355 304.098 298.626 294.206 -34.7216 245.488 388.255 224.694 236.717 298.048 5.43312 -28.4868 429.602 425.964 395.336 318.078 419.458 436.076 471.713 423.408 345.649 418.447 422.774 421.224 443.32 400.691 433.33 429.607 433.326 430.129 430.579 430.705 432.347 441.202 467.385 433.262 510.235 421.593 377.852 423.709 428.82 423.798 431.962 422.874 366.718 418.236 434.372 246.419 204.177 227.271 218.107 331.367 272.376 404.382 274.385 413.508 339.232 423.881 262.465 260.667 281.969 299.328 237.66 299.584 243.978 424.657 406.656 437.249 211.718 243.733 -351.616 386.009 177.713 215.737 382.415 456.865 245.793 421.898 320.823 243.276 263.885 292.324 331.081 235.598 199.271 227.521 289.91 0.333646 3.57146 -16.8701 -2.27776 336.792 263.305 354.85 264.009 107.413 314.073 -209.539 1.93699 118.855 -48.7992 -15.5852 327.345 407.944 272.306 224.582 280.505 245.52 159.878 9.76125 -15.2063 129.722 -48.8531 265.385 488.583 323.733 381.593 151.602 220.836 -171.421 3.81664 -7.91292 158.47 231.477 -91.0446 430.898 432.18 433.468 432.209 432.678 430.998 433.106 432.726 418.777 354.707 407.793 425.155 421.106 402.268 430.309 431.169 429.052 430.897 429.445 430.562 428.891 429.032 388.67 426.765 323.02 427.327 452.732 430.207 427.948 427.989 427.142 428.66 428.039 429.068 428.395 452.443 460.109 427.511 484.522 424.902 349.404 424.665 424.149 398.141 414.572 428.625 408.831 431.78 430.527 326.17 287.402 298.806 318.051 313.766 258.99 326.564 411.596 -122.081 393.176 365.617 298.49 315.823 300.664 -110.912 311.428 277.067 295.336 277.082 359.058 250.541 392.395 333.845 414.83 276.536 354.363 253.515 282.045 316.626 205.826 286.947 277.345 419.271 410.145 378.287 413.078 299.279 287.293 312.048 288.117 259.137 290.803 288.593 349.863 6.38212 -114.03 125.603 -0.641917 395.463 290.685 -34.1611 105.957 313.848 -22.6315 400.26 -2.14014 -25.0953 -0.309305 -11.9265 -23.3828 414.208 278.75 333.906 314.712 309.667 311.799 -133.379 8.45833 -142.424 249.898 -45.322 -21.7907 415.28 275.166 287.761 313.073 -17.9933 -7.5916 0.799092 -8.91449 51.8393 -39.4257 268.782 341.096 -61.823 420.543 183.246 360.44 112.386 -37.2819 109.612 55.8247 123.573 -67.0594 124.189 282.161 422.918 373.309 423.458 358.472 328.565 235.245 -12.532 104.736 -77.4346 123.149 298.415 -64.4041 433.865 -73.9126 432.438 -61.2194 434.064 -75.1949 -57.6941 -52.8426 -54.0695 -58.2564 -58.8171 -63.5566 -73.189 -58.9421 -66.2146 -74.4847 434.475 434.226 430.831 434.563 436.687 432.579 433.797 434.348 435.958 9.43515 -55.5289 -61.808 -58.3736 -110.212 -119.99 388.671 -108.87 431.02 -127.167 -105.235 -84.8329 -106.299 -101.519 -75.5498 -112.846 -128.254 -123.683 -118.011 -133.925 431.898 429.142 430.743 383.407 427.76 -120.256 431.264 -140.86 -101.648 -65.4382 -90.9642 -91.43 -126.9 -120.703 -109.292 -96.0085 -120.191 -116.745 -105.464 -77.7922 -126.485 -97.3574 -125.241 416.79 375.988 -116.02 -123.405 -116.59 -111.534 -72.4752 -82.4389 -91.9771 -108.336 -131.794 -131.971 -122.851 -139.545 -123.056 -141.634 -127.887 -38.8508 -55.7978 -20.3425 -56.7281 -25.1939 -58.7443 -36.7825 -20.3179 -1.95967 -10.0952 -4.00979 -13.769 -18.2989 -5.03315 -59.4487 -51.9181 -70.9511 -43.1888 -36.4797 15.5057 26.8375 -27.733 17.4071 -9.63665 -53.531 -77.8289 -55.2906 -37.6229 -90.5166 -25.9814 -40.5752 -31.0546 -43.3406 -4.14873 -47.4464 6.77037 -25.0484 -51.0708 -49.4649 -52.732 -47.9297 -68.8255 -38.8339 -17.4917 21.7802 7.54296 -8.40998 18.5788 -6.66283 -20.339 -45.9328 -50.1152 -61.7893 -30.9407 -63.66 -33.0523 -44.992 -123.53 -115.396 -134.192 -118.959 -134.347 -120.43 -77.7979 -60.2908 -111.912 -87.0388 -87.4356 -129.172 -126.705 -86.8714 -119.747 -135.245 -87.1878 -116.384 -100.719 -79.6017 -105.232 -84.4246 -103.974 -124.236 -127.374 -124.976 -144.892 -111.898 -130.768 -131.359 -101.812 -72.0217 -72.1108 -83.009 -87.8794 -87.7825 -88.7844 -117.888 -111.413 -136.303 -105.814 -126.427 -104.788 -116.586 -11.6492 -40.8184 -19.3155 -21.8444 4.60232 27.337 -3.17472 16.4564 -5.9033 19.2436 4.62519 -7.87499 -8.88697 -12.9258 -15.0782 -6.35829 -44.7973 -46.0732 -68.4085 -73.1668 -42.5766 -28.7987 -31.7216 -19.5401 -23.5396 -24.3186 -31.1467 -39.7597 -28.0597 -25.3297 -40.3975 -30.6467 -25.7057 -2.09569 -7.82436 -8.7798 -9.93745 -4.27325 -3.89069 -7.72028 -15.9143 -21.2799 -15.9177 -18.6799 -16.8278 -18.7836 -15.5665 10.4611 10.6958 10.3685 8.38125 10.9505 9.90094 10.4376 10.496 9.89621 10.1438 8.94607 11.1772 9.29766 9.76685 10.2007 8.21864 10.3461 9.14902 9.44082 10.1696 10.3614 10.1411 8.55724 8.94645 9.04479 9.08287 9.31124 10.0212 4.82895 7.75686 4.6251 7.115 4.25065 7.49335 5.10823 1.72042 -2.15008 1.37214 0.030459 0.604429 -0.954083 2.55203 5.30141 6.91049 7.48548 5.6625 7.50728 5.37077 5.54594 2.77761 0.953559 0.704056 3.6365 0.220414 3.19539 3.24139 -4.37574 -4.41111 -4.90001 -2.22477 -5.48813 -3.2051 -3.51282 -5.09738 -4.91461 -4.9685 -3.80532 -5.89653 -4.68548 -3.96753 -3.46167 -3.65274 -2.02244 -3.10628 -2.37006 -4.08491 -2.49672 -3.39396 -2.49571 -2.22647 -2.60304 -2.54165 -3.10578 -2.494 -2.19821 -2.3127 -1.69526 -2.07641 -1.94391 -2.71234 -1.82197 -1.51753 -0.641935 -1.11228 -0.566768 -1.3803 -1.17805 -0.692375 9.92864 8.22217 9.01746 4.6113 8.5367 8.69666 8.13031 8.70683 8.80997 3.30734 -0.0779925 4.19971 7.24414 5.66485 5.74299 0.381682 4.72471 4.24537 -4.53979 -3.1905 -3.54234 -0.848224 -2.08535 -2.76877 -2.92934 -2.63893 -3.2276 -1.58663 -2.13532 -2.70204 -2.80483 -2.96758 -2.50789 -2.72411 -3.18682 -2.74234 -1.13173 -0.33891 -1.22744 -2.37905 -1.9555 -1.79893 -0.392549 -1.55319 -1.41312 -10.8074 -8.89489 -10.5979 -10.1041 -10.7982 -10.9432 -9.0933 -10.6801 -10.7416 -8.36769 -7.19493 -5.62608 -6.8966 -8.47142 -7.16422 -7.19018 -5.65145 -7.00153 -6.98771 -4.62456 -3.08372 -0.792949 -2.2156 -4.70926 -3.00568 -3.05614 -0.355989 -2.08394 -2.15062 -7.61878 -8.32602 -7.55402 -7.67446 -7.39794 -8.34033 -7.65692 -8.47148 -14.3725 -8.80783 -8.86062 -8.83863 -8.47237 -8.95679 -7.63094 -7.64339 -8.23693 -7.60637 -8.2696 -7.61731 -7.64127 -8.87877 -8.16456 -10.2623 -10.0522 -9.04085 -7.80008 -10.0502 -8.08728 -7.56471 -6.68274 -7.80581 -6.8384 -7.81365 -8.03238 -8.64499 -10.1366 -7.57583 -9.78432 -7.75135 -9.81997 -8.61125 -11.5902 -11.0462 -10.4737 -9.65825 -11.6392 -10.771 -10.5021 -11.5322 -10.5695 -11.129 -11.176 -11.2581 -11.1887 -11.499 -11.5588 -9.92562 -10.7826 -10.5551 -10.8786 -10.5443 -11.5334 -7.48613 -6.90955 -6.07267 -5.93974 -7.32356 -6.91859 -6.19923 -8.37236 -8.71451 -7.97295 -9.43326 -7.98633 -9.42008 -8.39613 -7.57886 -6.1182 -7.11714 -6.27158 -7.15809 -6.25874 -7.59729 -2.0627 -2.09375 -0.791371 -1.13759 -1.99958 -1.90604 -0.864605 -3.46916 -4.57292 -3.39893 -4.68922 -3.43389 -4.68076 -3.46965 -2.06709 -0.779539 -1.85646 -0.814549 -1.91799 -2.04619 -0.825281 -121.042 -134.53 -148.273 -158.262 -127.621 -129.937 -140.603 -109.388 -106.617 439.47 436.122 -112.519 -99.6449 439.184 -122.073 -154.588 439.382 437.966 -124.628 -150.399 439.336 -104.824 -70.4416 -90.7257 -93.4969 -90.2711 -90.5068 -103.459 -119.813 -155.292 -122.767 -139.69 -126.881 -141.591 -117.315 -110.231 436.948 438.634 438.723 -109.122 -121.062 438.04 -145.899 438.834 -149.56 439.24 -116.469 -163.07 -160.015 434.14 437.413 -160.313 -158.733 435.73 -156.58 -132.635 435.271 427.01 -155.353 -126.689 432.378 -171.05 -173.235 -179.538 -161.655 -182.308 -160.834 -174.466 -161.19 -140.746 -167.971 -142.641 -166.413 -140.27 -162.89 -162.109 437.414 -156.161 436.007 -158.471 434.799 -164.629 -155.778 418.644 -128.124 434.674 -125.291 432.832 -156.054 -86.1393 -109.692 -69.0873 407.865 -86.6167 -110.323 -58.742 -41.5465 -51.4807 -29.6512 -60.4163 -43.4992 -82.5556 425.071 -112.847 -111.196 -81.3022 -58.3335 -30.206 -41.6127 -42.5843 -58.4707 -11.293 -23.4332 -4.46461 -19.2082 -9.48365 -25.1058 -6.65178 -4.78628 0.277545 -0.039216 1.16916 -3.89069 -1.67531 -0.0722635 -13.6239 -20.5099 -25.2023 -9.96402 -26.1025 -6.54698 -13.2064 -5.75644 -0.252334 -0.711191 -6.00835 -4.31078 -5.89347 -0.790534 435.391 438.209 436.771 437.838 436.615 438.386 435.782 432.46 433.408 426.868 422.526 432.054 437.754 422.334 433.162 420.212 438.084 426.223 431.526 459.769 433.215 434.221 436.917 435.332 434.784 435.782 435.291 433.969 431.638 411.448 433.139 432.672 433.475 420.904 431.858 435.327 435.366 435.069 435.748 435.43 436.003 434.983 432.979 413.717 460.913 438.039 418.606 430.382 433.077 330.916 317.544 298.553 301.746 333.513 433.58 433.483 294.737 373.668 277.079 314.011 314.536 275.997 242.29 290.773 274.378 258.433 359.561 412.158 326.089 436.074 397.477 406.025 309.587 331.416 322.548 302.734 304.693 364.017 406.827 428.284 294.808 394.121 341.053 293.778 266.316 314.408 281.201 287.144 293.31 364.093 1.82806 -62.1148 1.82423 -163.995 -0.240505 9.29557 379.404 286.228 -137.478 259.775 -251.182 294.936 364.152 382.739 -66.8427 -72.321 5.23741 -137.675 378.93 3.82375 292.496 -7.11619 331.727 -5.18686 302.568 258.009 2.01483 -3.1917 -8.44682 -1.75405 -60.7801 6.90231 301.882 238.628 323.802 361.438 285.846 256.54 271.579 3.95288 -11.2457 215.464 -59.5088 9.49379 441.621 432.512 400.894 426.984 442.385 436.025 444.551 435.093 434.526 435.796 432.645 435.37 434.542 430.456 436.045 430.671 420.096 838.454 433.561 449.12 431.603 438.252 436.683 438.498 437.34 439.717 435.877 443.75 439.677 421.463 438.139 383.811 432.425 417.726 447.244 433.874 433.484 438.475 444.891 434.65 431.692 446.65 433.542 473.024 365.671 444.734 413.558 443.717 448.264 220.016 258.552 252.709 225.772 246.624 -203.092 222.173 419.962 89.7195 434.349 242.67 427.342 220.007 -170.08 175.267 119.477 -305.48 227.582 224.424 377.645 305.954 438.977 328.524 435.683 320.272 226.928 267.265 288.529 436.437 261.465 321.88 231.056 427.944 442.537 309.654 425.032 309.072 226.434 29.8727 213.129 305.812 348.364 312.156 -33.6899 -0.00300881 2.28799 72.6172 342.802 -2.1251 262.771 322.94 208.455 37.0696 37.1884 176.177 196.413 0.389908 195.624 96.7909 -9.21033 106.633 219.829 395.543 740.772 211.151 361.894 295.536 157.273 0.548102 -17.24 193.05 4.26626 117.932 326.248 215.305 259.237 505.653 142.51 267.767 149.446 -42.4686 -25.5588 2.0805 410.636 407.765 440.524 483.17 439.535 438.807 572.57 425.202 429.026 423.212 427.872 429.822 426.891 421.096 406.237 461.711 417.734 348.161 433.491 438.648 394.504 432.508 433.623 447.462 433.731 436.147 431.526 440.586 432.591 582.863 445.061 430.175 435.064 475.283 426.506 433.492 423.154 429.231 418.963 428.515 417.514 429.885 420.038 357.179 412.093 412.291 454.855 409.152 424.276 138.914 169.984 241.437 457.328 305.287 423.837 227.312 235.557 257.319 241.308 237.954 462.585 401.813 453.28 178.782 208.793 245.183 334.661 361.808 273.091 416.623 240.711 268.763 64.8884 270.864 263.339 248.889 194.567 222.848 245.799 234.047 260.152 306.818 787.145 286.527 242.56 297.688 259.376 210.881 226.71 240.315 -29.0871 257.725 184.388 297.638 294.867 311.534 704.855 265.399 294.276 404.683 409.349 406.812 402.377 409.284 400.324 406.275 404.954 414.042 407.939 411.332 410.699 411.579 398.034 407.078 412.035 410.19 405.16 411.682 402.284 409.862 407.425 415.899 411.879 414.594 413.201 414.365 401.841 402.764 404.56 400.823 402.399 400.8 400.239 404.901 401.507 408.386 409.181 402.463 412.066 399.464 401.943 419.757 424.362 421.23 422.82 420.781 421.063 420.601 420.144 417.643 419.681 415.978 419.932 415.373 419.794 419.444 420.465 419.864 416.864 420.486 419.254 420.459 420.54 419.42 421.627 418.281 421.405 417.583 420.863 412.989 422.344 423.051 417.289 422.453 418.39 420.756 422.137 416.994 417.771 421.788 416.728 420.397 421.9 394.533 413.746 374.319 366.583 408.823 402.637 375.068 408.102 416.282 409.24 413.5 412.457 413.407 406.228 406.986 419.819 414.228 414.711 414.882 415.881 406.684 274.329 210.46 274.125 262.47 257.209 249.596 275.838 303.906 331.534 298.335 339.509 289.951 334.453 311.786 287.829 279.253 279.174 286.205 273.212 282.456 293.888 300.466 319.778 286.405 342.753 274.365 339.767 309.094 284.557 269.376 276.071 282.056 267.265 281.639 290.691 244.74 278.822 605.868 614.781 221.313 258.651 613.414 391.274 407.547 413.596 411.849 407.705 398.121 412.464 394.515 407.291 408.376 405.833 406.25 404.073 403.015 394.825 412.328 410.09 412.792 408.381 412.477 407.478 395.81 402.875 400.975 403.275 398.497 399.392 399.63 399.56 410.897 402.312 412.324 400.589 410.058 402.949 392.488 403.701 403.219 402.069 402.484 398.711 396.796 393.071 413.963 412.361 404.84 412.25 405.37 403.054 419.465 419.88 418.1 416.768 418.731 420.59 415.97 419.387 416.479 418.869 416.78 418.696 417.085 418.575 420.212 417.588 418.444 416.993 419.387 416.221 417.681 421.348 419.665 419.768 418.701 422.669 418.366 420.344 420.733 416.233 419.319 418.246 417.931 418.631 420.101 403.978 413.787 414.348 414.948 408.257 413.434 406.441 302.905 328.975 254.003 330.672 289.03 335.468 282.691 283.452 273.826 246.98 270.97 273.852 279.733 272.344 409.546 406.452 404.966 409.006 406.191 409.278 409.579 410.944 412.824 408.931 414.142 408.689 413.729 411.297 420.403 419.027 422.796 418.642 421.073 418.526 421.749 418.793 416.509 418.355 417.511 418.374 417.213 419.191 419.158 418.818 417.728 418.55 418.832 424.7 420.276 421.411 424.971 420.777 423.522 423.435 423.52 420.804 418.116 406.865 443.208 364.39 424.553 399.293 351.719 427.254 424.699 428.124 427.299 424.722 424.953 429.393 429.242 416.738 431.57 418.972 429.959 459.054 435.518 418.42 414.224 408.185 417.644 411.641 423.136 412.858 406.632 366.323 394.83 344.534 396.558 348.752 408.153 425.838 426.258 421.171 426.115 423.646 426.44 420.323 418.863 576.246 368.934 428.947 397.414 425.169 426.242 221.398 227.365 201.724 262.432 262.665 241.284 458.071 441.589 339.648 213.608 222.921 105.869 235.743 323.579 287.624 329.42 277.742 325.948 256.839 234.392 264.189 276.244 249.531 269.341 257.177 249.345 208.717 431.774 309.102 284.302 224.212 217.14 229.115 187.018 246.103 225.491 308.049 290.587 548.343 251.614 581.686 117.876 239.258 231.73 357.842 256.2 323.017 260.375 286.188 262.118 297.5 249.24 298.398 292.102 534.826 271.683 486.248 282.942 271.29 754.502 357.913 232.963 222.791 258.243 254.422 326.189 319.603 0.917491 665.649 299.991 740.603 437.297 434.061 358.737 419.773 430.349 434.237 439.535 431.044 428.616 424.769 428.542 428.026 429.74 427.957 437.837 436.971 417.868 767.349 428.784 424.692 399.848 434.715 429.787 433.378 434.15 432.035 431.766 441.226 425.315 431.344 438.121 526.333 438.665 530.727 433.344 429.865 429.295 430.771 430.95 429.944 429.649 431.32 423.581 551.736 577.71 428.558 430.393 413.498 410.249 265.046 265.31 222.164 222.45 240.002 442.665 410.867 244.182 466.895 256.614 -251.146 263.584 274.788 229.282 61.9091 245.815 442.059 452.245 454.093 237.39 169.089 220.303 423.743 449.371 275.698 460.567 250.232 220.163 228.342 258.534 177.973 236.293 -81.4818 246.937 -1.30742 124.568 300.559 278.725 264.844 213.974 259.244 133.039 -30.0143 -114.962 3.5382 263.087 -2.90103 232.24 294.918 -19.6806 164.907 -0.41851 0.735389 -9.60265 222.766 270.426 6.77594 67.5172 54.2064 306.75 -228.972 182.971 -16.393 0.823254 80.1294 -120.783 -9.36609 424.921 423.033 404.766 561.774 431.432 424.899 402.067 436.372 336.73 430.472 424.74 447.739 414.604 430.627 430.768 443.107 428.278 410.713 430.858 414.927 444.733 457.94 424.422 403.698 427.477 439.147 423.057 441.91 290.21 272.064 288.32 262 248.137 265.107 307.553 398.184 354.116 432.872 373.265 459.697 319.2 295.352 290.933 345.574 325.802 273.657 311.397 299.208 409.878 277.317 426.346 257.672 448.266 330.646 291.007 273.525 259.476 305.742 245.102 314.674 310.149 301.676 429.243 412.433 349.078 450.708 335.368 296.021 304.929 225.666 335.713 269.062 309.303 315.062 -152.981 7.2567 2.49106 162.459 356.357 -2.47772 373.319 282.797 345.106 305.554 268.499 259.935 9.8986 344.87 228.247 -167.606 -47.3226 266.237 184.367 127.593 322.756 323.039 317.595 -176.276 -17.3357 180.572 4.93248 310.814 -38.0924 288.657 116.017 380.747 297.121 -136.307 345.557 -219.798 1.85576 391.261 -50.7736 360.148 -71.8541 435.402 434.333 434.454 433.802 435.963 434.62 433.93 434.766 427.194 -51.5466 -37.0053 426.312 -48.3245 435.59 -64.1585 -55.5555 -63.1341 -55.1238 434.053 429.433 433.571 430.701 433.297 430.168 434.329 435.323 433.708 434.256 433.208 434.368 433.576 435.161 435.111 -35.5296 425.742 -50.5064 426.168 -47.8121 435.186 435.883 -64.5291 432.935 -54.7828 -51.4004 435.035 429.723 -122.739 444.9 448.681 -96.9975 -68.7767 -87.3863 -76.3631 -92.3608 -90.543 -106.925 -120.395 -109.609 -131.569 -100.175 -129.516 -113.888 430.611 432.194 430.554 431.712 428.723 432.935 431.471 430.873 429.006 425.938 417.107 432.28 -101.292 -78.1849 -96.7715 -93.4177 -108.836 -130.287 -132.661 -118.028 -131.138 -114.979 -116.802 -101.611 342.274 -72.7472 332.417 -105.41 316.128 -70.9955 -118.819 -122.773 -137.912 -138.707 -120.539 -128.626 -136.901 -99.6547 -92.1336 -118.893 -92.617 -104.807 -82.1226 -116.566 -109.247 431.811 356.541 -107.111 -98.1172 309.886 338.575 -70.6183 315.718 -71.2038 -94.6802 -117.866 -132.099 -128.686 -126.276 -129.302 -130.032 -116.242 -96.0767 -87.8239 -73.0061 -106.489 -77.6917 -111.214 -92.2939 -13.441 -9.01212 -3.83821 0.125575 -16.1313 -3.54167 -30.7392 294.73 379.686 -51.6647 -2.47252 -54.85 -27.7488 -11.4065 0.443952 384.528 -1.20993 -8.5201 -2.31549 10.2954 10.4026 8.95908 8.21474 10.352 8.74151 10.3778 8.63952 7.75002 8.40366 5.97361 8.01506 8.25808 7.68553 8.12809 8.35219 4.83359 2.56165 5.09446 7.27182 5.69973 5.87066 2.3512 4.61223 4.4583 -2.42194 -3.00453 -2.43146 -0.243517 -1.38142 -1.45355 -3.01542 -2.46257 -2.48443 -3.31602 -3.68206 -3.5118 -3.38802 -3.39093 -3.30206 -3.6803 -3.82537 -3.77145 -1.61382 -1.0864 -1.53652 -3.05664 -2.44819 -2.47628 -0.816301 -1.58365 -1.63718 -9.24411 -10.6971 -10.0808 -10.4708 -10.5852 -9.11869 -10.5676 -10.4354 -9.23784 -10.9044 -7.12499 -8.3613 -7.07397 -6.97038 -5.58659 -6.90309 -8.23044 -7.07071 -5.48635 -6.81853 -2.98093 -4.63087 -2.96217 -2.08253 -0.19981 -2.00632 -4.62681 -2.93703 -0.182074 -1.94402 -7.47926 -8.20311 -7.53573 -7.46304 -7.57335 -8.10811 -7.46297 -8.21257 -14.1189 -8.26418 -8.84447 -8.58968 -7.92876 -8.74731 -7.34631 -7.40525 -7.77556 -7.24196 -8.01393 -7.36958 -7.11561 -8.50689 -7.382 -9.77314 -9.52281 -8.53925 -7.48417 -9.66405 -7.90947 -7.37248 -6.6149 -7.52625 -6.51771 -7.59565 -7.93199 -8.55725 -9.61362 -7.72355 -9.77201 -7.51489 -9.66852 -8.64725 -11.3435 -10.6649 -10.4796 -9.85455 -11.4313 -10.6804 -10.4076 -11.2171 -10.2189 -10.6649 -10.9361 -10.5911 -10.9311 -11.1843 -11.1966 -9.76937 -10.4432 -10.0325 -10.796 -10.2445 -11.1152 -7.50292 -7.12724 -6.25269 -5.97816 -7.579 -7.05852 -6.1997 -8.14823 -8.30365 -6.95811 -8.84479 -7.8742 -9.13013 -7.91399 -7.39353 -5.86454 -6.67674 -5.99186 -7.03165 -6.05217 -7.17822 -2.0211 -1.85786 -0.801278 -0.680596 -2.03176 -1.83976 -0.795917 -3.33278 -4.5451 -2.82613 -4.55682 -3.16128 -4.56966 -3.36347 -1.9379 -0.59915 -1.95663 -0.745279 -1.71815 -1.93494 -0.749949 -111.578 -121.037 -138.207 -145.121 -114.047 -116.843 -132.832 -101.081 438.751 439.652 439.245 -111.462 -144.93 438.787 438.504 -115.928 -139.429 439.553 -90.6796 -73.0892 -83.4662 -90.9953 -84.665 -90.2396 -89.6418 -107.961 -139.039 -110.566 -126.273 -111.506 -127.919 -106.117 -98.3333 437.908 -86.0658 439.242 439.782 -97.0528 -108.94 438.5 -134.239 438.928 -137.525 439.477 -106.371 -164.927 -169.307 -145.133 -151.962 -163.073 -172.718 -150.267 -161.526 -156.224 435.941 438.094 -165.823 -151.245 438.219 -157.895 -130.106 431.669 463.28 -158.676 -134.274 440.979 -169.518 -160.757 -182.079 -145.227 -180.417 -150.817 -165.814 -161.068 438.193 -140.828 433.795 -149.174 438.381 -156.596 -158.52 521.57 -140.946 434.142 -135.014 439.12 -156.881 -87.9826 -115.008 334.543 -86.0789 -119.82 -61.7951 -42.633 -32.7311 -59.7273 -44.5957 -92.1474 373.925 -124.905 -84.4951 -117.935 -101.211 -66.2882 -35.2755 -52.3483 -67.8774 -48.0947 -71.3881 -14.2384 -25.2466 -11.1855 -22.4225 -12.9706 -26.5848 -9.51378 -7.44061 -1.062 -4.89046 -0.441125 -6.36726 -3.96151 -1.68159 -16.2455 -24.8492 -31.8994 -11.395 -27.7893 -10.8907 -17.9927 -7.62119 -0.638299 -0.59651 -3.66347 -4.0052 -7.56744 -1.42783 433.423 431.302 420.421 387.858 431.565 436.499 374.566 434.203 434.664 431.149 435.818 432.895 435.528 437.085 434.055 425.322 430.652 429.15 433.109 446.039 441.506 437.769 437.482 434.667 436.275 438.243 436.7 434.092 428.733 517.346 428.452 390.389 436.182 458.377 459.854 434.778 435.056 435.496 435.316 435.865 435.143 434.697 432.893 399.539 401.174 429.684 408.422 438.183 441.035 324.265 338.752 312 324.604 308.536 329.965 315.284 432.61 305.334 446.26 308.311 400.381 317.914 320.061 302.033 289.64 305.384 313.399 310.94 316.157 388.687 355.296 352.336 412.541 362.795 327.148 346.597 305.357 334.102 319.944 353.986 316.436 453.681 355.224 370.479 422.656 308.289 364.087 318.619 314.138 303.428 319.584 295.792 352.601 185.746 -2.60667 -8.70269 2.22297 -1.35232 17.8029 334.102 375.116 250.226 379.08 305.763 -387.106 49.8403 -14.5971 335.506 -97.9426 -158.108 -6.40937 316.661 -5.11739 303.659 379.981 -71.8821 1.81077 -2.16352 -26.5374 -1.71806 391.191 -60.2368 -291.404 234.514 312.85 284.653 302.529 369.033 -120.616 -45.1393 -4.83416 223.072 -99.267 362.292 -70.2459 429.674 432.179 449.36 432.545 438.223 426.403 451.257 438.419 438.644 444.859 438.882 441.516 437.621 441.841 440.003 453.408 447.358 441.977 437.666 412.296 452.764 435.764 435.391 433.966 434.638 434.464 436.287 431.259 427.472 406.557 426.909 416.217 426.258 443.519 420.936 445.023 439.806 437.23 440.891 439.234 446.295 438.985 461.022 386.099 423.12 439.322 412.717 445.517 446.639 272.533 288.892 297.541 348.193 308.955 301.906 261.761 282.984 458.69 310.905 443.102 309.926 427.719 275.627 293.424 257.419 309.922 206.421 304.184 218.488 275.222 283.521 462.661 370.363 451.785 297.741 447.667 276.024 272.556 286.833 285.66 5.44745 275.996 284.1 438.044 437.57 442.798 272.431 295.781 235.795 -294.813 208.585 269.906 284.211 -90.7127 338.834 -0.349849 181.948 -115.11 257.658 -120.526 237.35 199.711 240.026 84.2745 271.185 -2.0892 5.39813 180.936 -40.6015 307.493 244.858 171.537 254.723 344.03 255.344 -22.0612 158.525 -98.9821 -21.7388 -11.669 236.81 223.535 332.52 290.084 254.166 263.427 205.639 -9.29077 6.34136 -7.72624 427.165 429.375 423.349 423.835 426.692 429.52 425.344 427.717 424.362 430.459 426.281 428.87 422.955 428.892 433.88 446.426 469.475 421.567 430.65 448.49 351.97 427.756 429.768 418.118 422.481 428.949 429.41 417.82 422.613 450.871 413.329 363.315 428.241 516.503 411.018 435.075 437.584 438.495 435.786 439.522 434.303 439.209 427.684 424.231 436.563 450.962 437.107 446.691 444.909 428.356 423.149 432.216 424.122 429.216 418.606 433.518 422.762 359.997 520.691 406.763 434.674 411.786 432.564 204.745 198.674 261.107 386.659 271.962 331.831 404.112 260.912 281.117 266.979 270.052 208.036 256.615 446.202 453.232 412.969 236.076 282.54 244.532 331.791 437.13 220.06 363.167 259.739 265.449 319.112 229.618 167.46 256.907 -25.4005 -7.31316 228.368 290.544 273.964 67.1599 299.056 277.023 455.131 301.482 323.446 279.519 278.502 226.216 293.201 -23.7357 1.98802 269.653 324.786 313.445 246.833 311.743 278.776 641.503 290.173 297.464 411.235 412.275 416.16 416.961 403.863 414.098 416.694 404.278 403.029 401.881 406.33 402.748 403.66 402.459 407.591 411.886 402.773 410.759 405.055 414.062 404.84 400.679 401.99 411.941 410.702 399.074 410.84 401.683 405.573 414.525 415.696 413.14 411.631 405.433 413.108 426.311 422.797 418.792 421.328 422.507 423.047 419.406 420.631 419.294 421.068 417.083 422.123 419.026 420.641 420.907 420.425 423.629 419.655 422.786 418.844 421.829 412.478 423.103 424.056 421.846 423.348 420.071 423.446 420.808 418.16 418.941 420.55 416.433 421.551 421.561 422.051 415.403 420.402 422.288 416.76 421.199 421.912 408.719 420.808 421.479 419.346 412.158 415.03 413.901 290.751 274.951 283.569 276.523 293.876 275.672 282.147 300.024 329.767 238.71 326.057 268.257 337.961 279.487 284.277 269.274 235.034 278.691 266.379 279.045 274.287 268.263 273.439 312.804 275 256.145 274.219 320.771 290.266 612.855 253.152 560.522 240.457 277.576 559.487 405.173 400.88 403.201 408.531 399.479 404.912 405.998 406.204 415.048 406.092 416.565 405.933 418.3 408.1 407.345 406.561 409.685 408.969 403.489 409.852 400.149 408.911 414.028 411.6 416.524 406.661 417.061 410.956 407.323 406.384 408.717 410.171 406.588 409.521 398.712 408.565 416.213 415.869 412.825 416.867 409.403 411.272 419.411 421.149 418.303 418.21 420.761 421.661 420.614 418.164 417.103 421.413 417.772 421.001 416.818 420.545 418.952 417.856 417.212 419.54 420.32 419.125 419.236 418.317 416.498 416.344 420.797 414.225 418.246 418.461 402.165 410.965 412.968 409.907 410.684 405.749 403.53 307.41 327.847 339.494 275.341 340.171 295.682 292.389 283.777 276.544 284.279 267.042 283.436 278.744 276.351 412.676 409.504 414.894 414.555 411.989 410.39 415.399 422.134 417.639 417.874 417.057 419.541 419.497 422.527 421.821 419.247 423.464 424.704 420.486 422.817 424.074 420.087 418.263 420.196 419.306 419.318 418.587 421.308 421.922 417.439 421.363 423.897 418.611 417.952 423.2 423.238 426.894 425.845 426.898 424.271 425.886 424.908 410.786 392.206 362.459 370.3 409.148 392.227 363.024 423.173 419.27 426.129 426.043 418.433 422.468 426.675 417.204 369.467 448.808 474.531 410.077 388.517 422.871 417.777 412.856 412.027 422.526 409.405 419.24 421.929 425.037 368.396 406.469 397.583 393.703 356.282 420.67 427.44 429.446 427.678 432.793 425.901 433.446 429.257 425.667 370.542 561.073 443.667 428.367 432.795 429.419 225.36 275.897 261.313 269.609 262.218 271.736 237.463 200.377 295.097 456.742 218.263 331.158 206.827 212.716 201.436 222.247 202.383 211.389 329.809 252.459 358.685 276.069 289.752 222.928 272.885 254.755 139.976 272.058 234.747 192.389 436.88 412.308 303.616 206.938 204.232 166.025 185.316 247.333 272.119 551.634 603.598 261.631 245.972 627.099 310.764 217.887 202.918 313.732 250.747 274.746 654.998 294.186 713.754 285.637 266.289 233.553 204.871 249.164 254.419 281.075 591.043 212.048 250.613 734.865 313.359 220.086 245.274 238.146 251.177 246.355 278.861 742.275 439.073 436.54 408.362 473.905 431.398 426.138 447.386 441.258 400.045 428.011 405.502 426.018 410.256 431.927 436.718 431.753 434.378 432.573 435.992 433.046 435.242 438.217 428.981 442.086 447.869 430.722 474.234 416.324 434.295 431.353 432.278 432.885 432.255 432.806 435.047 432.673 427.934 479.576 432.664 568.782 433.182 424.97 205.198 186.919 197.241 235.596 463.714 241.729 396.032 195.907 417.429 353.725 314.522 238.135 237.829 213.24 189.837 442.196 430.778 445.944 105.057 216.41 253.633 197.564 220.231 442.215 355.423 433.177 277.642 215.822 226.444 262.079 251.545 271.152 185.64 272.25 -133.962 -5.42147 4.8804 46.3639 272.629 267.689 233.685 101.419 195.213 -21.6639 -28.8379 -2.00793 271.302 -0.881955 41.9682 11.9328 3.80695 229.105 317.133 210.438 32.2252 253.57 186.872 93.1789 -1.85739 92.0892 -1.09976 114.98 201.416 126.911 145.798 210.966 39.4914 3.18982 1.09416 -217.065 205.565 21.4976 11.1568 425.644 427.855 442.646 405.563 474.266 430.07 401.985 425.539 436.322 427.121 413.358 474.167 457.099 443.162 427.441 414.146 433.792 409.394 431.648 318.872 430.353 426.682 369.274 469.155 422.626 400.008 473.302 427.137 246.889 159.373 282.271 264.745 270.833 391.8 437.885 291.632 425.666 269.172 398.63 277.833 144.5 296.228 287.301 270.509 277.101 290.294 358.91 429.916 410.575 296.344 410.006 296.834 309.749 285.72 308.701 280.056 277.927 283.188 370.906 426.724 428.877 306.722 404.101 391.458 298.228 292.707 308.392 310.281 279.331 290.432 -33.0874 314.568 0.918898 5.14461 347.167 -25.3371 -52.0767 200.811 391.31 271.971 375.613 272.15 -46.2524 -9.63638 -56.555 43.3578 243.548 277.667 306.595 206.646 285.026 214.767 3.48284 -252.36 -40.5528 204.907 -153.856 8.0474 261.954 290.509 301.326 358.96 281.707 262.539 231.974 -40.0679 223.451 -100.741 5.55326 436.223 434.036 432.102 432.474 435.304 434.362 434.444 435.213 426.713 -52.2019 -43.2688 435.257 427.25 -58.7391 435.569 432.304 -56.392 -75.1515 435.162 -62.6684 435.234 430.218 434.801 431.184 433.862 432.154 438.373 435.869 434.15 435.138 436.882 434.935 438.322 437.905 435.054 -46.6893 433.815 -71.8227 427.453 -60.8613 436.261 -80.9238 -77.4336 -70.1911 427.757 426.622 485.671 432.319 441.089 -99.6658 -90.0677 -103.572 -120.798 -133.61 -120.332 -134.657 -135.851 -122.702 421.581 430.922 428.723 436.32 422.721 438.23 430.716 407.58 422.812 -143.142 468.529 -116.774 -95.0899 -96.6021 -108.563 -107.794 -113.239 -121.613 -136.608 -140.968 -128.336 -137.335 -125.129 -121.408 -92.5819 302.735 -69.3904 292.744 -93.2793 299.258 -65.9702 -118.829 -129.781 -127.025 -133.389 -119.422 -133.752 -127.037 -92.3946 -73.1817 -106.354 -81.9897 -91.8964 -72.7605 -106.247 -109.217 376.206 295.438 -138.077 397.231 -113.202 -95.5854 299.076 296.925 -62.4163 -63.7985 -101.853 -120.418 -135.453 -136.358 -137.218 -134.967 -128.849 -124.97 -93.2956 -85.4861 -80.4329 -111.291 -74.5792 -107.292 -95.7751 -5.3072 -0.567621 4.26446 -7.66817 -0.469573 -19.1194 298.986 -43.0996 275.995 -46.1477 -14.9866 -4.81592 5.54448 -1.00237 0.437178 -4.59988 0.257032 9.31203 7.17275 8.81027 7.53511 7.76527 8.93688 9.26325 8.03374 7.26718 7.74201 5.12232 7.02137 7.50565 7.14217 7.16238 7.60787 4.62243 2.21354 4.50346 6.70413 5.07869 5.43171 1.86449 4.17148 4.66505 -2.55999 -3.22992 -2.67148 -0.280915 -2.37912 -1.76375 -3.3768 -3.03244 -2.89095 -3.93598 -3.7091 -3.93793 -3.47571 -3.54608 -3.49749 -3.6782 -3.7328 -3.97151 -1.65461 -0.724517 -1.67307 -3.04781 -2.13155 -2.32104 -0.639492 -1.74723 -1.76296 -6.73441 -7.72146 -7.13985 -6.94037 -7.01223 -6.86677 -8.72472 -6.179 -8.90282 -6.36813 -6.48689 -6.68223 -6.37352 -9.3631 -7.86196 -10.1696 -10.3925 -8.99041 -8.33202 -10.5202 -8.47677 -7.4067 -7.41281 -8.87532 -9.86639 -10.6865 -11.8267 -11.0352 -10.6134 -10.9635 -10.4755 -9.81715 -8.55481 -10.9655 -10.465 -9.71479 -11.6226 -11.0636 -12.3597 -11.7065 -11.7721 -12.0673 -10.9936 -8.54733 -9.35137 -10.7732 -9.56835 -11.1816 -6.55544 -6.54699 -5.6446 -4.94571 -6.78824 -6.19591 -5.51753 -6.78016 -7.5049 -7.34522 -6.36043 -7.79485 -6.31827 -6.13222 -4.82962 -4.81706 -6.07148 -5.16342 -5.7342 -1.8188 -1.95318 -0.687593 -0.106201 -1.82465 -1.87433 -0.701478 -3.02964 -4.19036 -3.78595 -2.58702 -4.0052 -2.77807 -1.75739 -0.0492758 -0.580506 -1.81844 -1.58158 -0.681834 -15.0168 -6.30767 -14.4439 -5.34581 -13.3377 -6.18088 -15.1505 -22.0779 -22.6358 -21.5173 -27.6702 -18.8688 -27.182 -23.3759 -17.1265 -3.69653 -5.79228 -38.8806 -6.04201 -21.0255 -25.3414 -25.783 -40.2704 -36.3515 -42.0777 -32.2835 -32.5649 -28.9481 -32.4863 -24.7661 -28.4795 -31.8568 -26.5577 -29.9393 -33.5376 -31.9485 -23.0867 -26.8474 -27.9547 -26.3699 -27.8048 -31.8955 -39.9392 -45.284 -37.1923 -63.4399 -36.3548 -49.3525 -43.6378 -37.6652 -42.7995 -34.2687 -59.9121 -34.1592 -47.4535 -40.155 -60.7764 -40.3922 -88.5911 -32.2984 -68.6438 -19.8292 -71.0737 -89.1559 -112.345 -103.711 -127.415 -87.528 -111.198 -101.453 -47.9802 -1.14333 -26.1115 -12.1386 -57.8534 -52.547 -40.8649 -80.192 -55.0207 -39.0162 41.1465 -88.5327 -0.592074 -100.458 -68.1215 -128.257 -99.1222 -95.7375 -111.95 -130.66 -135.179 -159.274 -142.672 -143.603 -126.036 -147.616 -131.096 -148.005 -175.923 -173.253 -148.555 -122.824 -148.432 -94.3249 -60.2737 -65.2857 -88.6109 -81.3366 -57.3274 -66.4858 -60.7648 -78.1733 -114.706 -137.267 -152.798 -106.975 -145.058 -113.565 -188.138 -177.723 -160.612 -102.312 -149.642 66.9751 45.7493 -79.8841 -40.7303 74.1169 41.9714 -90.0183 56.2442 -93.7457 378.653 431.032 92.0996 -109.005 336.52 88.0837 431.469 -100.479 125.253 -102.515 302.659 16.5026 -100.927 -110.998 -125.021 -141.148 -105.646 -115.713 -138.975 -92.0337 -87.3054 438.752 434.862 -95.5466 -92.3196 438.384 -130.949 438.522 438.197 -103.836 438.502 -52.7132 -95.3349 -89.0046 -108.976 -105.84 -138.811 -109.117 -132.667 -102.749 -109.526 435.074 -104.412 -105.857 438.486 -101.597 -134.493 -110.239 438.534 -111.343 -144.696 -183.112 -174.358 -181.037 -172.166 -157.632 -143.037 -138.85 434.626 -151.467 -146.416 -146.073 434.225 -155.931 -123.607 -144.809 -159.805 -139.05 -140.821 -153.722 -181.831 -167.996 -183.687 -149.545 -162.914 -140.984 -160.291 -152.038 -164.124 -174.67 -166.962 -169.766 -120.304 -131.795 -87.4807 -108.377 -111.194 -136.669 -91.2518 -84.355 -55.8883 -70.9002 -43.8024 -78.6554 -53.5685 -61.9614 -130.122 -141.829 -166.379 -125.15 -149.108 -110.36 -141.487 -18.0617 -33.9081 -9.80702 -21.3965 -16.3764 -31.9567 -9.55829 437.531 438.282 437.026 437.888 437.114 438.246 437.357 437.445 436.04 440.224 436.394 438.479 435.423 438.59 437.783 438.095 438.961 438.516 437.842 439.087 433.396 436.952 493.262 438.741 436.187 430.578 436.197 435.325 432.648 435.828 434.367 436.77 436.625 462.721 483.813 429.766 417.173 433.016 366.078 430.274 437.778 437.586 -161.563 438.783 435.783 437.613 436.765 438.32 -164.25 396.631 468.476 436.6 442.334 362.067 349.108 435.922 419.448 435.566 437.545 306.407 310.516 -30.5998 -59.5539 325.313 295.391 401.184 441.466 397.564 435.55 279.865 302.444 306.647 306.697 243.49 328.535 285.075 306.364 -102.552 416.065 -83.2044 428.591 382.344 305.566 -30.7213 -76.7934 -62.1619 321.79 302.817 407.782 412.329 431.57 335.264 388.321 302.564 299.98 311.165 307.583 318.969 323.117 -1.04536 -9.66485 2.22602 331.516 -1.98466 6.8968 308.47 2.8466 324.207 321.522 308.794 364.626 -130.354 7.60094 69.7308 0.911218 293.015 -19.3499 -4.89565 -4.85361 323.113 -0.902143 2.46627 -2.16864 2.53514 -2.40891 1.97812 5.14205 314.975 309.819 -140.781 322.36 360.137 -3.18488 2.74095 -10.7131 362.912 3.38036 432.068 423.767 360.477 454.289 432.275 431.892 361.364 439.06 436.609 442.616 436.895 436.868 437.114 440.547 429.498 423.506 436.078 505.674 440.329 307.263 443.59 441.058 435.496 434.537 436.131 434.144 437.167 437.027 435.747 382.889 433.596 416.946 433.201 329.37 408.941 437.569 436.416 437.173 436.515 436.99 437.911 443.036 427.798 460.161 365.951 425.59 459.613 441.255 432.838 301.881 280.604 297.27 258.641 290.664 199.522 329.454 459.179 427.991 275.398 400.596 260.489 252.047 270.593 91.2265 277.202 394.843 290.965 418.926 342.927 448.687 280.882 289.871 298.813 298.518 253.611 324.735 222.451 281.263 427.375 417.045 334.015 431.858 233.257 289.497 291.815 275.591 266.83 265.428 262.779 282.681 133.563 -41.4287 -60.3421 3.54146 -51.365 2.71427 -83.0245 534.127 272.075 295.557 317.708 332.573 298.873 23.9459 -41.1959 -60.7966 1.3497 -130.154 257.245 -444.296 279.071 330.431 423.103 354.569 -35.4867 4.11707 -107.35 -3.68166 306.943 2.86882 285.621 292.901 13.5163 264.98 305.53 349.935 -146.164 -15.3518 -1.71421 88.6597 311.887 437.222 447.927 404.673 527.666 445.651 442.977 433.626 438.185 434.49 430.765 433.232 437.372 435.815 435.146 445.952 474.463 424.567 473.077 446.93 446.454 439.875 439.212 436.405 436.175 434.849 438.689 436.75 435.683 445.14 454.309 429.573 441.977 441.234 508.872 431.403 437.555 435.346 434.636 434.857 435.969 440.143 436.403 444.882 791.958 437.986 439.173 444.715 442.544 440.143 269.069 217.96 214.364 437.54 429.587 449.849 251.917 236.068 194.406 443.291 449.362 439.888 221.936 257.769 251.618 242.57 -26.6707 242.646 454.232 454.033 451.837 233.002 132.296 324.982 -87.7039 -31.1148 209.035 232.455 274.792 243.91 265.023 260.217 276.027 202.192 245.949 -23.7359 -18.3945 -46.4836 275.714 243.591 231.727 229.574 241.358 267.71 268.362 200.675 -37.5573 217.946 426.399 425.398 424.982 428.667 424.251 428.058 425.5 425.105 420.404 422.132 422.368 422.556 422.518 424.2 428.774 422.364 422.149 426.302 422.027 423.866 425.378 427.518 426.459 430.017 430.195 426.136 427.027 430.381 417.863 421.259 377.92 593.273 406.942 436.062 230.708 415.446 417.007 411.458 424.734 410.938 422.581 416.109 425.792 365.153 397.237 356.895 403.213 434.531 412.297 427.449 432.301 434.398 431.149 434.102 428.36 432.068 421.257 364.373 439.241 442.793 436.91 441.488 435.227 419.316 425.128 426.889 417.08 424.694 422.027 420.362 419.864 448.108 444.264 384.783 561.753 414.379 425.887 222.609 277.158 217.841 262.366 208.14 220.772 320.095 291.867 293.129 273.403 314.288 234.789 240.096 276.814 279.045 281.16 270.282 277.388 249.344 438.051 437.711 418.111 96.043 242.262 299.937 278.641 441.687 366.855 217.104 262.924 231.489 385.147 230.708 286.933 576.785 233.342 289.259 265.435 274.109 255.509 269.925 261.313 296.25 270.634 574.202 280.915 776.611 253.337 292.982 755.264 139.947 335.514 282.44 245.883 274.045 251.163 200.031 208.736 311.342 789.416 290.163 415.694 413.78 417.183 418.177 415.245 415.989 417.336 424.152 422.084 419.111 424.381 421.955 425.689 424.993 424.44 419.263 421.287 425.669 420.292 425.041 423.691 426.7 427.703 432.096 429.92 427.457 426.988 430.897 414.144 394.037 364.67 344.959 394.432 408.346 376.999 423.632 415.737 413.45 423.894 412.27 423.084 421.465 419.365 364.848 406.854 376.025 397.146 378.012 413.233 422.722 424.964 409.002 426.228 418.505 424.683 423.358 421.744 398.031 398.217 432.584 406.333 338.468 441.243 428.972 429.149 429.112 430.097 427.507 428.735 431.042 429.771 421.782 438.72 448.808 418.848 422.756 439.607 244.435 275.52 269.042 265.293 268.795 253.61 222.325 234.846 337.031 236.552 413.035 280.422 302.087 238.158 269.26 234.717 247.462 276.393 220.915 308.323 446.127 218.244 379.756 258.685 225.567 226.953 233.756 421.376 444.389 406.518 211.912 72.2718 186.719 295.642 295.661 527.749 668.692 291.501 292.594 658.846 306.316 253.478 302.162 193.901 290.499 246.538 307.187 547.472 271.63 285.211 563.507 240.14 265.033 243.012 301.236 203.341 684.326 -0.110657 287.947 868.489 260.882 45.4895 258.815 215.703 412.643 416.02 212.984 436.229 435.32 416.772 180.481 438.26 430.213 437.472 432.637 433.527 432.5 436.048 440.04 431.472 441.487 497.055 437.019 516.035 421.211 440.736 434.096 432.126 431.71 442.149 434.759 432.56 426.298 419.348 437.549 414.97 424.676 524.982 432.978 415.618 386.539 423.92 433.626 234.14 435.125 414.372 229.229 174.534 315.496 229.464 424.605 428.478 437.863 219.481 223.17 184.645 433.114 431.004 443.041 238.234 237.811 222.072 423.827 416.866 448.442 262.211 183.064 241.652 276.457 -25.4326 247.994 238.501 252.291 194.121 136.272 258.453 -49.5876 -25.7201 240.806 250.504 310.743 219.145 -27.0253 388.125 206.681 157.082 196.256 252.83 265.901 37.6987 -20.1118 431.88 447.607 390.665 633.618 436.366 423.991 327.29 433.25 431.937 432.066 431.036 435.903 431.727 431.794 423.729 433.283 431.272 403.001 424.499 523.778 433.88 429.459 431.805 432.142 430.617 433.964 430.967 430.997 425.368 435.459 434.026 415.882 431.564 396.365 432.612 433.329 430.691 430.208 430.679 431.326 431.648 429.014 427.133 401.222 430.288 434.11 280.005 429.295 427.042 316.809 130.12 181.481 244.476 430.186 304.709 441.26 172.386 398.282 218.141 221.85 288.758 219.825 179.887 241.82 218.636 241.733 430.314 436.467 434.329 287.23 245.066 256.084 245.374 269.668 314.515 416.847 443.211 337.42 406.139 288.33 286.362 218.568 317.011 223.276 261.901 280.991 -74.7556 -15.173 -57.2924 180.133 282.325 250.215 7.14435 223.462 157.325 269.438 340.07 -66.6053 1.38202 62.9235 -10.3041 156.012 96.6197 199.913 -21.1411 288.179 271.761 238.98 351.354 95.7829 -7.04696 -21.3597 -45.2646 274.705 1.54772 -12.582 165.623 302.669 315.584 303.986 369.322 71.0421 -79.5095 -6.32516 288.882 -184.631 1.35371 429.034 420.188 355.471 418.402 430.34 427.517 389.445 430.761 424.515 428.065 395.202 424.414 429.115 426.1 429.388 404.876 424.791 459.576 426.848 362.974 436.449 430.401 432.819 432.699 431.859 431.688 431.198 431.809 443.981 470.159 407.912 432.208 324.274 432.057 425.604 296.173 319.006 39.9359 303.18 233.696 266.572 337.407 433.273 315.566 382.412 375.177 369.54 316.584 308.024 316.097 311.099 304.926 289.588 268.982 434.691 367.51 399.71 239.41 416.039 272.185 248.284 290.616 252.289 272.565 289.779 287.685 362.087 406.597 406.976 351.573 282.11 293.717 282.452 343.674 297.217 362.575 -10.0285 3.92875 -80.7604 2.47113 360.396 283.11 306.845 -347.998 302.385 356.478 -95.793 3.21293 -69.0721 2.71884 -0.719038 391.451 212.774 261.445 280.064 308.865 -160.103 -40.9404 233.523 -129.301 -55.2588 1.67897 393.683 284.82 -1.48285 313.24 -1.18532 2.81222 -0.401313 2.85603 -103.522 -4.15854 303.887 376.159 425.199 424.737 335.25 370.218 429.149 212.078 424.385 99.9754 -67.4623 316.529 103.644 219.699 424.68 344.621 -112.715 386.795 82.5072 132.789 17.596 -110.271 58.7085 -111.222 80.5587 88.6938 435.724 436.305 434.646 437.779 435.592 -74.9035 -45.5269 -74.1664 -94.0494 -82.5903 -96.3156 -76.7045 432.105 435.105 -108.682 435.894 -107.721 434.88 435.103 -128.069 435.774 -110.659 -106.221 -92.3428 -104.303 -128.284 -94.2172 -108.68 426.417 -144.841 353.794 431.039 -96.9576 -117.718 -107.218 -113.571 -117.957 -142.115 -132.898 -142.746 -122.253 -128.429 433.851 431.553 -140.978 432.446 -178.182 -174.198 411.237 -185.1 431.35 -159.437 -185.637 -141.462 -178.084 -173.686 -207.221 -193.965 -170.91 -200.577 -98.3165 305.5 -62.7913 -98.1136 -59.5293 -140.466 -136.565 -140.718 -150.402 -127.045 -142.423 -149.051 -128.198 395.85 -105.554 -167.821 -140.06 -136.276 -82.5086 -39.0925 -79.8656 -60.7452 -61.5562 -85.6321 -7.17447 -0.0154437 -0.333867 2.4366 -5.88975 1.6264 -0.441852 -14.5733 -20.083 -7.05399 -36.7465 -5.09257 -34.0073 -17.1655 -75.5396 -74.9492 -76.4091 -91.9014 -59.1789 -71.8493 -86.6019 -53.3985 -82.3354 -40.567 -59.4598 -55.8008 -72.4869 -37.1516 -48.0949 135.622 -91.5556 -61.0175 37.4484 -86.8762 -64.776 -93.2897 -122.627 -93.7221 -99.3273 -38.583 20.6303 -48.3097 9.10821 -8.15934 -88.6908 -52.6746 -51.9586 -118.937 -84.6513 -25.3405 -95.7929 -145.102 -143.324 -154.391 -147.259 -147.787 -136.215 -148.237 -115.655 -97.9326 -97.1839 -82.9929 -115.192 -98.8585 -101.623 -135.001 -171.802 -127.177 -101.805 -162.443 -140.967 -153.519 -193.821 -218.311 -146.829 -182.38 -131.241 -61.8189 -116.842 -94.9132 -87.9104 -157.365 -134.747 -112.946 -183.87 -141.812 -95.5137 -156.367 4.43905 21.1077 27.8359 1.05839 20.5471 0.549715 -10.1349 -35.7906 -32.127 -21.4266 -22.0299 -9.91505 5.43933 14.6181 23.0255 5.58994 17.1981 4.41348 -0.233087 -6.51304 -13.3927 -25.6233 -7.77579 -16.3008 -4.43839 -7.42511 -42.5 -49.1818 -37.3035 -64.1125 -34.2567 -51.6787 -46.9678 -66.1598 -45.1584 -70.5912 -47.0479 -53.7718 -32.1676 -20.9977 -31.4322 -28.1816 -27.0042 -25.6509 -41.2566 -36.9923 -27.2742 -36.4308 -29.3323 -35.9109 -28.6195 -44.0084 -2.03034 -9.74524 -5.07308 -9.43796 -3.16566 -7.4426 -3.73522 -15.5308 -16.3407 -20.6354 -14.8196 -19.496 -13.1134 -17.7715 7.65021 8.22408 7.1092 5.64505 8.2536 6.95651 7.62036 7.84341 7.39389 7.25392 6.72476 8.29224 7.09857 7.12895 7.14821 5.10974 6.35462 6.28428 6.6227 6.8375 6.95348 7.50802 6.52543 6.93817 6.95334 6.83863 6.92349 7.44258 4.27531 6.28861 4.74773 5.60034 4.64427 6.04003 4.44423 3.77826 5.33181 5.8243 3.74469 5.74694 3.92054 3.4192 1.30911 -0.611343 -2.23592 1.10703 -1.31033 1.76914 0.603699 -5.18218 -2.9166 -4.66641 -5.11796 -3.7668 -4.28964 -6.0254 -6.18997 -5.12456 -6.33742 -5.63523 -6.00758 -5.02274 -6.85268 -4.95488 -4.52264 -5.45174 -3.66767 -5.56228 -3.9961 -4.38672 -4.72246 -3.54104 -3.88202 -3.601 -4.14428 -3.77111 -4.26992 -2.79106 -2.94336 -3.34346 -2.38654 -3.50184 -2.41151 -2.67928 -1.86359 -0.709227 -0.790958 -1.59157 -1.53701 -1.8026 -0.827511 7.00735 6.16712 6.43488 1.76751 5.7822 5.97539 6.18517 6.5374 6.3257 3.9349 -0.214725 3.42565 5.81703 4.35175 4.31979 -0.746861 3.04049 3.52622 -3.18963 -3.97974 -3.93686 -2.03343 -5.12991 -4.03096 -4.29546 -5.57266 -4.45677 -3.72398 -3.44923 -3.70544 -4.01218 -2.71897 -3.61214 -3.62952 -3.13604 -3.70627 -1.77184 -0.387908 -1.64105 -3.11242 -2.03848 -2.1917 -0.38967 -1.67259 -1.68097 -3.45225 -6.14235 -5.65426 -3.83704 -4.45151 -6.35771 -4.15484 -3.83385 -5.50395 -3.20333 -5.94851 -3.65391 -9.74221 -2.35377 -1.3968 -3.29508 -3.5874 -9.70224 -2.60233 -2.18926 -2.5432 -5.83076 -0.845511 -1.27733 1.58452 -0.521385 -0.804205 0.109115 -0.606952 -13.3817 -13.1047 -10.893 -15.7022 -12.5879 -7.79826 -11.4981 -6.1758 -10.477 -8.25084 -11.4932 -14.8567 -13.8584 -13.768 -16.2531 -12.1903 -16.3682 -14.54 -10.7894 -6.43004 -12.7903 -14.9697 -12.5747 -12.9872 -22.9963 -16.7964 -5.26143 -19.0142 -14.1075 -21.9684 -17.9143 -18.3966 -19.0152 -12.9199 -9.09582 -11.549 -7.81329 -15.4773 -14.0373 -15.4614 -16.7103 -13.6418 -16.2812 -16.0442 -12.664 -9.64576 -13.6734 -9.56206 -12.0151 -9.47354 -13.0561 -15.7151 -17.5289 -13.2651 -7.33599 -16.048 -20.1062 -21.0474 -18.386 -19.2072 -13.5119 -6.54684 -13.3038 -21.5089 -6.45392 -16.1979 -4.17678 -4.24453 -5.04012 -3.61622 -2.90748 -8.40047 -5.36064 -2.11568 -3.39635 -3.25664 -3.19964 -2.99046 -1.5705 -2.66316 -6.41453 -0.936912 -3.15387 -0.713327 -0.792373 -3.60898 -3.56326 -3.70824 -4.23527 -3.63504 -3.76104 -3.95948 -1.44082 -0.438348 -1.30602 -0.308567 -1.78336 -2.96043 -2.82969 -2.06325 -1.26504 -0.240199 -1.54534 -0.299965 -2.26815 -2.92382 -2.98523 -2.32388 -2.85774 -2.29515 -2.40852 -1.36958 -0.60358 -0.592337 -1.44313 -1.45743 -1.47018 -0.598149 -21.1368 -14.8992 -19.1208 -20.9161 -17.095 -18.2901 -24.8519 -5.90824 -16.8095 -12.7503 -1.57197 -19.7111 -19.6484 -17.3167 -8.62803 -17.0979 -12.4191 -21.1602 -15.9241 -23.1606 -19.4419 -21.5205 -19.5335 -17.9706 -11.7502 -5.7434 -15.8586 -20.513 -12.6547 -29.199 -21.8218 -19.9405 -23.9468 -17.7678 -20.4868 -14.6598 -12.6568 -10.756 -16.7964 -16.6981 -8.39951 -20.9219 -25.5902 -20.996 -13.942 -23.8771 -18.0829 -9.57423 -20.1723 -21.5522 -21.7984 -20.424 -21.2129 -7.19901 -21.234 -16.9277 -18.2239 -20.7478 -30.3357 -22.5651 -23.5702 -29.0649 -22.2064 -19.043 -16.4797 -21.5877 -28.3375 -20.2411 -27.1639 -20.7495 -34.1846 -28.3561 -35.0852 -24.5057 -10.9456 -2.24089 -30.6073 -8.61379 -25.4316 -26.8555 -37.4101 -39.5742 -30.2345 -36.7922 -31.069 -14.8719 -9.8641 -15.1287 -7.39457 -21.3943 -4.37848 -15.6667 -23.1019 -28.2612 -19.4672 -24.9935 -23.6464 -27.4257 -20.8966 -26.1877 -32.0224 -26.4528 -23.4043 -29.7485 -28.031 -22.2193 -34.7255 -26.3331 -35.4696 -46.7425 -38.3231 -22.9965 -38.4267 -35.4392 -41.6483 -45.3369 -36.3474 -43.9327 -36.2977 -33.8792 -29.3551 -43.9557 -21.1394 -43.4903 -30.3613 -30.2069 -24.5643 -26.2358 -30.5748 -29.5256 -26.8434 -27.1826 -23.6018 -22.6916 -22.1643 -30.0255 -22.1672 -24.9855 -33.5515 -35.6538 -28.7783 -33.0219 -32.5323 -36.7512 -29.7812 -41.1553 -76.6421 -42.265 -57.1675 -34.7278 -52.2738 -39.9315 -15.0675 -51.064 -28.002 -49.0268 -12.5513 -51.1837 -52.7097 -85.6451 -80.9059 -89.2997 -55.3475 -65.3424 -71.1451 -62.7632 -56.8766 -38.7469 -84.9545 -48.8543 -51.7885 -86.0565 -82.4301 -125.286 -102.484 -101.711 -75.4047 -117.043 -85.1003 -96.43 -132.731 -116.575 -103.935 -76.4787 -121.548 -107.966 -101.627 -119.408 -113.505 -108.403 -92.4366 -120.009 -92.9004 -96.5669 -105.65 -93.4952 -100.464 -80.9801 -101.82 -109.26 -129.531 -109.777 -123.26 -113.041 -124.666 -107.952 -155.713 -142.582 -157.74 -144.445 -154.269 -141.033 -164.258 438.875 438.772 -129.402 439.394 -107.045 438.597 438.03 437.762 436.652 437.738 438.097 437.817 437.966 438.891 -94.3033 -93.617 -89.6039 -99.287 434.634 -92.5226 438.845 -126.563 -109.54 -121.695 -109.778 -100.635 438.731 436.321 440.282 434.2 438.195 -92.8944 438.706 437.762 -125.059 440.062 438.054 438.209 -100.553 -167.242 335.844 -175.962 436.944 -173.574 -163.923 433.878 436.715 435.361 436.685 434.89 437.407 433.82 431.762 380.243 431.312 340.511 434.663 428.632 -166.477 -144.404 -165.659 -146.404 -163.797 -165.949 -173.985 -180.781 -181.176 -178.367 -181.227 -164.73 -182.994 436.25 -133.986 432.903 437.502 434.649 -162.563 489.616 -171.355 434.085 429.464 -171.52 -70.3012 -72.3679 -26.0929 -52.5329 -79.0869 -45.6963 -91.375 380.323 292.231 387.544 325.826 -67.2697 300.35 308.101 -38.4711 322.8 -103.586 395.8 -154.492 -99.7153 -148.863 350.821 -114.946 -76.614 301.761 -51.5178 -79.91 -43.3871 334.449 -76.2526 -8.11057 -342.607 320.749 1.92704 -23.9737 -2.76283 2.40782 -123.231 3.28499 3.35083 2.66075 -13.5131 320.642 -29.8197 -15.082 -23.851 -16.8874 -4.79737 2.51556 -1.33952 -4.4101 -0.801343 -7.89746 0.333028 435.232 438.185 342.224 364.777 442.1 426.158 359.251 436.264 436.177 436.949 435.331 439.903 435.682 438.293 437.495 412.956 420.092 481.628 437.027 405.948 426.775 438.169 460.338 429.314 568.048 426.955 393.146 439.459 435.97 412.785 350.979 427.811 258.823 427.763 426.168 286.925 298.481 269.734 302.22 297.128 328.978 293.38 347.907 438.293 318.297 461.768 234.906 289.057 276.925 253.938 227.852 302.994 296.413 230.482 413.13 433.808 373.58 447.511 294.808 292.863 300.024 322.713 294.829 283.333 280.638 427.899 423.189 361.084 445.121 271.011 303.268 279.523 274.852 304.436 306.233 255.147 283.258 151.656 -119.066 2.6524 322.958 2.78164 -152.562 283.971 311.249 326.597 272.96 384.429 -47.5256 -4.78993 -93.6337 3.84511 264.608 -130.7 311.703 -10.5932 318.673 324.292 283.978 -47.9512 3.46323 -4.28285 -191.936 309.014 318.033 208.629 291.415 380.91 362.479 -130.884 5.58745 -11.3374 192.498 339.073 -95.9086 426.802 439.869 439.643 598.786 431.025 436.45 471.855 433.795 434.483 437.361 434.353 436.383 434.448 435.592 431.076 434.55 439.316 440.741 437.948 525.06 436.822 432.612 434.889 435.396 434.145 434.524 434.3 431.986 427.425 403.43 437.529 426.78 430.559 708.845 431.466 435.256 433.548 434.774 432.049 434.635 432.068 436.198 431.066 511.496 428.929 433.838 430.461 427.786 437.829 256.624 228.411 257.972 278.744 231.727 252.304 254.938 259.393 443.175 433.803 422.917 278.715 235.021 243.002 280.65 197.248 257.78 399.503 445.054 319 417.82 269.098 253.552 280.775 294.184 61.8457 287.443 306.455 266.732 261.2 406.391 433.26 418.806 302.586 295.771 244.389 206.048 209.489 295.714 195.026 281.209 -72.7935 -85.7266 -15.5851 -6.4608 173.615 294.325 329.668 253.204 238.854 237.441 43.5974 50.8863 46.2436 -6.54573 3.4198 77.4871 65.3101 -49.7409 295.573 -65.266 267.06 291.593 291.356 395.087 -60.5773 -1.86723 -31.3717 -1.59029 252.669 -71.7156 329.351 -9.20678 377.165 156.269 -91.2528 335.129 -0.940035 0.265829 -224.886 41.5528 324.809 -8.67644 435.371 424.142 405.916 425.555 428.568 436.975 640.615 421.699 429.932 427.394 445.924 422.392 432.389 429.086 417.813 470.64 373.546 373.722 416.725 326.281 354.403 435.477 438.395 435.894 393.078 443.687 436.88 423.414 423.619 433.097 431.136 442.433 429.797 433.002 424.903 427.504 378.918 448.912 443.364 393.097 371.373 411.866 178.165 22.5046 243.968 -389.951 448.223 420.088 398.716 361.834 100.641 222.722 322.836 352.212 272.487 437.275 287.159 412.685 452.286 346.814 -237.544 272.917 301.97 256.818 -232.247 401.329 428.482 303.149 426.343 326.909 286.402 283.13 300.87 291.03 277.747 301.068 306.297 163.727 -20.874 -120.884 1.91554 266.592 384.049 434.767 146.403 10.0343 -17.0778 -8.32721 173.777 2.98549 128.433 292.329 375.21 298.345 311.095 5.445 124.14 0.521051 -101.428 55.1768 1.53219 603.974 301.709 263.826 521.143 120.798 -102.599 -1.12817 205.647 144.518 -139.812 427.06 361.182 428.694 660.603 435.338 346.492 414.945 433.721 429.523 430.478 432.718 431.598 430.116 434.553 440.474 438.062 431.812 385.223 439.672 352.836 442.16 427.444 434.096 442.163 433.517 442.747 427.793 432.029 418.363 766.587 447.429 445.495 366.861 424.536 423.155 435.137 307.834 422.836 429.483 368.168 439.465 422.114 236.284 113.081 201.777 138.757 300.635 441.73 413.407 407.835 264.773 217.154 246.314 266.041 240.728 265.897 360.296 388.595 468.818 389.713 455.517 274.981 246.889 250.358 316.488 242.187 266.344 298.638 383.168 458.4 270.067 417.18 245.338 300.403 194.129 302.452 258.355 260.981 232.532 218.251 -1.73787 6.65029 151.012 9.73014 352.761 337.898 253.794 309.638 149.848 -19.4598 137.838 5.25593 199.171 274.648 -23.7625 -95.6432 51.8993 296.536 179.192 0.515259 64.2455 5.51458 78.4525 281.922 7.3153 -107.406 325.213 360.371 338.383 294.687 232.695 133.637 8.59946 -9.96556 2.59732 218.858 182.847 3.71071 416.035 440.611 451.659 461.989 443.923 444.319 508.799 388.192 408.68 435.614 515.907 431.114 963.924 423.96 438.526 524.047 459.11 398.838 432.11 380.614 431.086 416.781 429.912 417.753 428.01 430.153 427.264 430.043 221.09 228.905 295.182 356.215 238.217 418.878 79.4722 412.787 420.975 229.505 214.354 211.092 333.602 260.835 265.323 236.609 385.335 271.297 410.169 300.76 448.64 229.642 291.376 262.349 232.587 219.951 266.207 218.962 391.027 438.795 324.45 425.156 256.941 229.604 253.243 24.5086 306.529 280.433 275.528 251.907 200.035 5.39141 -3.97314 -3.60014 -11.8348 173.79 234.385 242.208 176.935 212.182 164.429 208.42 -81.3119 1.33281 268.6 245.735 319.977 296.016 7.07698 195.401 -422.18 -4.17699 290.004 62.928 -126.934 -19.9614 258.913 327.327 268.164 314.773 178.766 -387.998 247.756 -49.3725 275.442 -92.6041 -129.654 6.2243 426.97 430.494 399.972 391.812 426.028 432.89 428.523 429.244 430.23 430.421 432.136 429.648 430.983 431.182 426.344 426.87 437.204 264.138 424.974 380.636 432.116 423.836 495.975 423.877 348.842 430.21 418.202 432.163 433.036 434.091 432.079 436.707 432.114 434.849 427.095 429.899 383.399 394.26 431.855 401.499 435.844 428.119 291.673 219.287 306.94 221.881 288.01 240.722 276.731 339.046 442.159 298.168 429.12 282.501 394.566 248.453 298.047 295.479 277.946 468.036 303.562 289.686 399.805 344.748 425.731 416.131 286.279 277.8 330.339 292.588 271.348 75.2059 283.473 322.724 447.145 434.537 352.158 391.192 279.09 297.626 292.425 313.881 325.821 267.228 297.292 289.813 318.203 152.397 -26.5134 -204.64 2.86983 278.013 394.234 376.417 275.454 81.4511 -322.047 275.686 -76.3799 359.577 -18.8319 -155.48 -119.099 7.0455 356.563 108.931 251.939 274.381 353.109 367.69 -96.8868 199.228 -86.7128 -210.633 -162.842 5.48232 361.378 280.219 296.759 208.789 59.7125 363.808 -47.9381 73.8192 -147.032 -3.78053 434.596 431.182 434.8 432.187 433.648 432.571 435.108 434.608 433.495 434.942 433.976 434.3 435.23 433.642 434.682 434.852 433.456 434.607 435.297 435.719 431.517 -128.551 430.666 436.26 435.486 -157.243 -137.147 434.294 428.845 431.097 391.647 350.781 453.598 454.415 395.949 430.63 432.679 432.201 431.754 433.316 -199.798 429.269 488.119 431.262 -189.495 428.723 403.547 -202.409 431.995 433.139 432.772 434.513 431.243 433.661 428.538 162.465 424.835 -185.186 446.938 414.996 430.904 -176.886 -193.24 433.694 -201.719 -188.131 429.132 -192.953 -187.372 -201.768 421.432 -202.111 -196.619 328.668 323.195 296.559 314.266 302.037 349.667 402.807 -104.822 -166.7 412.137 394.418 -110.347 297.502 -76.5809 -48.2963 303.335 -32.4148 -78.0012 302.019 442.046 374.204 -162.335 414.579 -106.77 303.359 295.377 -48.3201 298.812 -73.2142 -158.595 -168.856 -129.363 408.166 -116.31 -123.002 -69.7269 -53.1619 -52.4544 -84.216 -36.8841 -69.0403 -68.6433 5.33319 358.04 -51.4692 145.448 -202.13 2.9287 2.83307 292.589 -1.00525 -18.9177 -13.8038 -3.23523 4.67273 3.5639 1.05965 1.89493 0.0363643 3.63714 3.80554 282.247 8.59917 -27.9143 -210.558 4.25331 5.33131 8.42061 2.48525 -91.2382 4.5713 2.66639 -117.947 434.962 -128.612 -148.563 -111.662 -122.017 -135.292 -110.155 -116.429 -119.127 -94.6824 -119.718 -106.698 -101.683 -124.062 -142.345 -132.6 -153.706 -123.715 -147.934 -123.995 -222.484 -202.534 -198.311 -200.573 -202.655 -215.7 -74.082 -98.6314 -99.5731 -113.097 -84.8631 -92.0284 -95.9078 -38.4387 -14.1439 -55.0837 -6.58604 -58.5635 -18.0514 -29.0379 -54.3184 -95.0439 -65.2295 -59.5323 -69.0673 -69.7001 -45.8184 -161.739 -202.619 -207.845 -220.825 -180.274 -202.421 -167.3 -103.206 -98.7992 -101.755 -68.6557 -134.995 -86.5785 -81.3784 -113.24 -131.622 -91.6538 -78.5254 -141.665 -114.978 -81.3887 -33.3828 -45.148 -37.2288 -42.0788 -26.0055 53.9789 -1.93678 -15.6899 -1.89189 -30.4536 -29.9191 -7.43854 -40.5079 -38.6086 -33.7641 -19.9066 -6.42301 -7.37439 -18.2098 -6.09874 -18.9512 -16.8767 -28.006 -29.0774 -27.2551 -22.4368 -32.8204 -25.0233 -23.2475 -45.2108 -50.5976 -57.5304 -42.5429 -43.7785 -31.6418 -37.6811 -39.9669 -40.6805 -40.6726 -38.4454 -32.489 -27.4345 -31.5031 -36.4959 -37.8152 -31.0179 -29.4942 -29.0005 -36.1644 -32.4526 -31.2673 -35.601 -25.9282 -27.3603 -27.0962 -31.4005 -29.7079 -30.1771 -5.75804 -11.7237 -40.1928 -2.68543 -33.362 12.9038 4.69853 17.4854 2.72963 -0.293214 -11.0717 -2.1544 -12.1541 -5.10795 -3.7862 -22.6622 -6.37024 -17.8143 -7.70786 -19.0684 -16.9852 -16.573 -27.5267 -32.4027 -21.7212 -22.8617 -25.204 -34.008 -20.0739 -24.6519 -8.15277 -16.023 -12.7356 -16.9691 -29.4342 -21.6898 -20.1819 -20.325 -28.7466 -15.0182 -24.2025 -17.8622 -32.6524 -14.1992 -12.7565 -15.4005 -16.6344 -18.5297 -13.6948 -13.2624 -13.4987 -17.008 -20.0877 -32.7699 -31.4279 -25.0818 -23.9909 -33.5624 -29.4908 -23.9824 -25.6382 -21.6029 -22.639 -17.5961 -26.542 -18.3975 -21.3839 -21.9992 -19.6589 -21.2715 -25.4957 -14.259 -17.8815 -17.9347 -17.8312 6.2439 5.85057 6.29049 -0.0579779 6.48293 5.80566 4.99852 7.88299 7.53737 6.54462 8.32178 7.40586 8.94364 7.29921 5.8939 0.559156 4.10293 3.65363 8.14976 10.0978 0.444695 9.94307 7.22204 4.41676 -3.74105 -1.92841 -5.19693 -10.983 -1.7047 -2.93497 -8.24391 2.69524 6.14747 3.03492 6.59598 2.75579 7.81133 2.34743 -1.80855 -3.8312 0.250324 -6.05904 -0.732838 -5.72127 0.373942 -0.53502 -18.6149 -10.863 11.0899 -20.8177 -2.73624 -20.0848 -25.1796 -10.5782 -23.051 -0.744728 8.21046 -16.8852 10.0083 2.47231 -18.892 -2.62986 -6.84133 -25.5926 -9.87792 0.0689815 -21.0227 -12.4066 -11.7774 -9.03074 -12.4712 -9.63481 -16.6263 -9.60967 -9.6921 -6.51409 -6.93134 -7.28933 -7.84994 -8.08167 -9.74554 -10.0856 -7.62739 -7.29785 -7.61294 -8.3299 -8.74318 -9.63539 -14.9852 -19.5579 -22.0526 -10.9741 -21.6105 -15.1005 -16.7634 -8.08128 -12.0674 -17.2156 -13.7982 -8.29305 -21.9505 -10.542 -10.5305 -20.6938 -14.0748 -7.55388 -6.9209 -10.9491 -10.83 -15.6045 -2.42525 -5.61646 -3.4177 -5.54184 -3.43839 -5.78773 -2.08737 -3.1072 -3.27789 -3.25341 -2.70567 -3.30641 -3.21365 -2.54077 2.66367 -43.056 -0.145418 -4.11939 2.77467 -12.9508 1.72638 2.38495 -5.15647 -3.14103 -9.15365 -1.24362 2.86271 -2.3352 -2.34207 -2.49239 -2.80868 -1.83456 -1.60071 -2.47377 -3.0005 -2.17869 -2.59064 -2.40627 -2.91897 -2.00929 -1.69845 -0.698081 -1.72033 -0.318304 -1.66743 -1.91654 -0.756872 -2.12036 -2.45472 -2.04154 -2.39061 -1.77702 -1.87267 -1.48039 -0.33208 -0.543532 -1.70087 -1.32065 -0.687468 6.38158 2.51085 -6.20889 -2.94007 -1.71383 -11.6215 -4.41276 -8.2295 -3.47233 -6.28522 -4.54155 -3.61934 -6.28926 -2.16661 -5.49491 -9.29534 -7.99578 -6.75752 -7.56792 -7.78981 -6.48467 -9.5759 -13.7324 -9.8296 -15.331 -12.9566 -19.5618 -15.9782 -16.7076 -15.7539 -14.9933 -8.52891 -9.35428 -10.9432 -14.0565 -10.5479 -12.0504 -15.8239 -20.9059 -18.3266 -17.2583 -18.5693 -16.478 -14.4782 -12.661 -16.59 -12.1394 -18.7525 -10.0453 -14.654 -14.4541 -12.6083 -13.9957 -10.7786 -11.9951 -12.7123 -3.38874 -3.42859 -5.25477 -6.48295 -5.32513 -8.61856 -3.27033 -7.50086 -6.03185 -4.89212 -3.48207 -5.37323 -4.48289 -3.75837 -4.04028 -5.2518 -8.09303 -6.74806 -6.44832 -4.84655 -6.23495 -5.71516 -0.170531 -1.49084 -2.18815 -3.10773 -2.73467 -3.52817 -2.04465 -3.48438 -2.5498 -1.53294 -0.186279 -1.65226 -0.533869 -1.49279 -1.46479 -0.116926 -3.72455 -2.44873 -2.67229 -0.537314 -1.73263 -1.51032 -6.47078 -7.99475 -7.84015 -7.96727 -7.16672 -7.45584 -6.53585 -6.22428 -7.41403 -7.53459 -7.61902 -6.94646 -7.07933 -7.10098 -14.4907 -17.2252 -18.4643 -15.9884 -16.6858 -14.5813 -16.0234 -83.7572 -87.6459 440.511 -94.4748 -90.8709 -76.7169 -95.1814 -95.1165 -123.021 440.317 -111.67 -97.9356 -115.477 -94.2915 -157.366 -135.074 -119.447 -155.631 -136.057 -146.925 -174.375 -178.87 -166.607 -168.679 -179.999 -163.079 439.43 439.991 440.038 -109.819 439.185 -93.2308 438.79 439.923 -96.2482 -87.3116 -112.489 -95.961 437.558 439.65 -105.404 -89.4385 -91.6326 438.647 439.854 435.957 -102.17 438.754 437.684 438.618 -83.975 439.416 438.229 -100.762 438.709 438.24 438.901 -85.8387 431.958 423.293 363.432 -159.161 418.76 -153.951 434.438 437.742 434.466 437.029 433.388 437.139 435.759 433.34 304.149 426.862 398.834 431.924 387.915 430.959 -113.394 -146.31 -138.321 -156.767 -148.072 -163.522 -154.378 434.707 436.759 -113.536 -141.087 437.723 433.921 -134.276 422.755 -153.352 -150.13 433.149 -146.805 -85.2256 -79.2412 299.358 -62.0443 291.313 -81.758 -47.8554 401.683 419.284 337.958 405.266 311.799 305.84 290.605 311.462 312.894 -43.8232 305.213 -110.973 -150.878 -144.923 -147.84 -126.421 -108.962 -120.661 -101.351 424.707 -140.387 -108.623 292.073 -116.896 -87.8443 -59.3766 -82.1741 -50.0766 312.987 -81.3775 -3.50746 -3.26996 2.91575 -0.0979716 0.0348717 -6.43202 0.879163 -11.1615 316.579 94.0842 300.397 356.864 -27.5577 -3.56482 4.23312 99.005 5.28006 2.39953 2.06135 -15.3031 -31.4968 -13.1938 -20.7419 -9.87419 -14.9316 -5.60629 3.22213 -0.775354 -5.3038 0.413669 -8.36586 1.89465 436.824 434.488 438.26 434.674 437.421 433.869 437.653 437.297 437.151 438.224 437.545 437.835 436.904 438.114 429.377 430.551 352.123 394.905 459.849 434.907 471.093 434.419 412.445 453.503 461.889 439.303 378.103 429.82 434.213 436.338 436.217 433.386 436.231 433.796 429.072 412.144 402.375 432.48 416.162 434.359 432.843 434.937 436.111 434.553 435.281 434.782 433.729 431.348 451.446 418.527 430.208 408.942 436.937 435.392 294.167 186.557 324.938 283.266 305.992 294.796 392.419 401.725 278.454 432.426 321.573 423.099 285.316 253.783 283.921 302.821 299.33 296.082 280.835 386.005 410.98 -105.477 423.512 303.055 409.499 -82.9133 -38.5891 315.535 299.267 422.139 424.297 326.538 434.051 297.179 301.023 312.037 -37.4601 324.172 301.082 286.874 347.838 -116.944 -7.98754 6.89921 378.541 20.0752 248.864 231.235 312.413 334.022 289.785 408.231 231.276 5.54044 -187.217 -5.49359 322.871 8.86324 319.039 -7.9283 -22.5732 -4.07911 306.136 -6.99978 282.225 4.05284 -1.89357 1.39626 2.90952 -1.96071 194.879 324.272 -22.445 296.395 402.511 -5.83005 156.808 -0.0223 1.36904 -2.02749 -1.84246 429.765 439.282 415.395 390.728 427.194 429.786 459.487 424.877 431.832 444.564 437.333 424.535 432.99 441.158 421.763 420.437 446.601 412.544 418.348 440.002 448.162 433.028 433.293 433.421 434.643 431.822 433.121 433.273 437.846 322.502 430.41 405.606 434.402 406.845 430.26 428.13 437.266 435.653 438.61 432.96 436.974 430.443 423.824 416.532 398.089 436.001 414.085 448.758 431.327 316.895 274.878 321.637 322.191 305.45 293.14 308.319 299.943 431.893 321.3 436.831 423.007 356.143 304.515 287.685 311.605 252.297 306.146 377.116 332.104 392.636 352.146 417.556 335.747 421.133 320.118 323.009 319.683 346.879 316.34 323.606 301.23 322.571 316.444 446.732 435.294 369.952 431.137 361.825 314.625 316.898 216.294 342.755 377.362 321.839 345.662 319.088 -31.2213 0.445049 3.35398 29.622 299.078 271.442 163.508 297.636 322.396 -235.233 204.246 -2.31029 -198.193 300.375 -59.3961 -55.993 326.3 304.314 407.286 293.241 -71.2976 -45.0344 0.356265 5.51334 413.81 176.327 322.03 346.762 304.2 339.792 -225.406 -0.104268 328.491 323.043 -42.6176 428.979 446.306 437.679 359.596 428.115 440.878 412.9 432.869 432.976 431.188 433.302 433.1 433.258 433.583 435.4 431.958 421.385 462.238 426.418 360.63 428.983 434.459 435.871 437.186 435.852 435.34 435.154 433.475 440.313 368.161 425.998 430.857 438.368 423.028 432.363 430.73 433.981 434.568 434.538 433.212 434.034 432.791 432.021 405.288 420.708 439.29 367.697 437.481 431.187 302.44 352.458 378.887 278.682 277.485 316.621 450.809 280.678 411.82 299.347 446.451 309.042 286.432 264.577 296.208 287.533 277.208 296.151 303.17 458.271 407.5 443.764 365.475 471.698 307.341 300.759 344.266 322.954 302.261 307.649 323.413 432.777 433.773 451.657 320.511 314.161 292.116 302.557 301.346 297.083 293.262 315.811 17.9048 5.72802 0.610937 338.001 188.656 3.45574 351.061 268.597 329.495 333.647 258.074 239.397 -334.308 333.136 3.79477 -83.6086 -122.024 261.482 -155.01 6.39257 369.773 150.953 247.814 326.331 180.236 336.314 0.712662 245.518 226.307 -87.021 3.02407 366.123 286.577 328.089 216.766 314.943 -178.944 388.742 369.654 -81.1393 8.4798 433.682 434.692 435.821 436.519 434.013 435.143 436.458 428.223 430.378 394.395 356.988 432.796 434.089 465.89 432.082 431.756 431.48 432.67 431.487 432.899 431.889 433.382 367.51 430.923 467.538 429.18 371.266 436.139 436.458 363.016 432.472 323.362 434.29 408.109 428.926 433.096 433.807 434.668 432.445 433.665 431.465 432.846 430.026 414.226 402.072 431.71 400.01 455.748 427.312 356.663 265.459 275.281 283.988 275.395 280.793 285.364 391.313 440.56 298.72 429.274 420.04 254.758 252.528 291.221 320.782 275.654 286.768 286.07 358.082 434.082 308.388 384.31 290 385.873 327.162 349.016 305.218 307.251 293.881 291.458 319.654 385.762 414.379 402.174 -89.6184 414.29 274.415 348.241 316.354 -66.3742 290.648 288.703 344.995 304.378 -21.2747 -11.9367 -126.944 12.4412 156.264 301.56 353.172 301.681 282.236 196.738 -84.6292 369.697 -55.3212 -165.14 7.79721 343.456 291.379 300.115 3.46487 342.264 -33.5447 2.74577 -148.215 4.24152 24.9073 279.97 300.338 -0.231667 291.774 2.688 242.726 5.89248 2.59727 1.75285 4.08703 18.202 435.441 431.05 435.82 433.723 433.587 433.73 436.089 435.101 433.655 435.328 434.768 433.758 434.369 435.68 436.478 433.103 437.621 435.174 435.41 435.2 435.726 434.546 437.139 435.278 434.715 436.678 434.426 434.944 437.037 435.954 -116.726 434.498 -103.605 416.875 422.284 403.72 400.431 418.96 427.106 407.589 430.649 432.755 430.766 434.236 431.571 432.955 420.876 374.307 439.993 -199.62 433.346 410.788 428.128 433.134 431.985 -128.528 431.354 433.616 -148.703 427.152 473.862 430.85 -159.029 434.614 396.031 -155.026 428.662 -124.857 433.545 -172.903 -145.527 424.945 -225.011 -160.079 416.859 -187.042 -152.672 320.297 289.862 287.56 296.471 291.441 419.974 343.725 -171.359 298.875 414.436 -102.729 313.869 336.768 -46.4701 297.529 -75.3946 422.615 -93.7753 -150.342 281.041 403.813 -105.216 290.818 -71.5387 -44.8274 287.143 -29.0332 -75.7504 -179.606 -147.643 -134.52 -115.092 -120.675 -71.5613 -53.4658 -54.2575 -84.0787 -38.8931 -69.5315 -72.9903 6.51334 287.958 -98.7792 3.54194 4.44084 293.238 9.85248 -25.7198 -9.80419 3.61129 6.33084 8.88677 2.82014 -146.936 5.90673 3.22758 4.20628 299.289 -0.578273 -17.2379 -12.998 -1.88793 5.94047 3.96703 2.07771 2.27197 1.32347 3.38248 -152.221 435.909 435.94 436.03 -154.863 -144.855 -138.766 -126.17 -138.827 -139.376 -148.699 -161.632 -147.197 -157.641 -157.103 -146.409 -168.073 -140.954 -156.22 -155.491 -151.676 -140.553 -137.877 -152.573 -139.841 -145.608 -183.994 430.668 -186.078 -182.017 -188.569 -175.669 -189.495 -176.166 -169.671 -188.546 -170.183 -179.853 -166.046 -183.36 -168.474 -143.144 -142.675 -164.246 -153.703 -158.631 -185.87 -181.196 -197.644 -175.696 -194.659 -175.753 -90.0819 -53.858 -55.525 -69.2372 -71.403 -59.387 -1.8038 0.00453655 -0.892689 -3.35352 0.535993 -2.27269 -2.78822 -1.34318 -0.975312 1.95154 -6.13253 -1.87286 0.614111 2.15082 -4.20746 -2.96401 -3.67451 -4.4608 -3.27103 -5.99447 -3.29247 -4.80416 -4.49175 -5.66148 -3.64908 -5.28654 -2.57483 -7.87998 -2.87387 -5.37799 -14.2394 -16.9141 -18.4388 -15.4595 -17.2636 -13.9539 -16.0167 -10.8251 -6.18339 -15.0725 -6.93979 -12.54 -20.5365 -16.433 -15.4616 -9.68439 -7.21279 -8.91335 -6.83602 -9.94032 -7.05237 -8.16309 -11.5454 -13.3551 -10.5975 -12.0985 -11.9605 -13.3586 -8.45433 -9.96796 -7.2377 -11.1789 -14.3011 -12.8153 -15.099 -9.53338 -10.4264 -13.8024 -13.071 -9.93652 -14.137 -19.7448 -19.0197 -15.4014 -12.7288 -6.3412 -15.5818 -7.87453 -13.1835 -13.8568 -12.5553 -12.3977 -13.4998 -13.5564 -12.1009 -11.4851 -10.3135 -11.7237 -8.73671 -12.3472 -9.43706 -11.4064 -13.3236 -14.2296 -12.1494 -8.19875 -3.7909 -3.14685 -0.795956 -5.83143 -3.74418 -2.56858 -1.96736 -3.35736 -5.14372 -7.93937 -6.59943 -7.45108 -6.21538 -6.63007 -5.50857 -4.80177 -4.70708 -5.79524 -4.28904 -5.49987 -4.33313 -5.5345 -4.29867 -6.34588 -4.25451 -3.74441 -2.03008 -2.3266 -1.73259 -2.91615 -1.50592 -0.350226 -1.30696 -0.337452 -2.54511 -3.64129 -2.91199 -3.62903 -2.75856 -3.26236 -2.51866 -1.48219 -0.675674 -1.74276 -0.335392 -1.68689 -1.6867 -0.594508 -2.22955 -3.20484 -1.69054 -0.184493 -8.36214 -8.08706 -8.56629 -9.97022 -12.2264 -11.6551 -6.71211 -6.28376 -2.5533 -1.74886 -7.98132 -8.18505 -7.94279 -7.61266 -8.11411 -8.76502 -15.3871 -8.90559 -11.3142 -8.28645 -7.94047 -8.23435 -8.59717 -8.85583 -8.30526 -11.2956 -8.5238 -7.95203 -9.01463 -9.93745 -8.04633 -7.70942 -8.15169 -7.86022 -8.10623 -7.36691 -8.1748 -9.86159 -10.4182 -11.6727 -11.0312 -10.5648 -9.10277 -10.9311 -8.66894 -8.56567 -8.38477 -7.12349 -9.18243 -10.071 -10.3567 -8.26512 -11.2076 -11.2244 -10.6329 -9.29471 -11.7015 -10.9834 -10.2198 -11.0809 -10.4764 -11.1375 -10.7256 -10.5463 -9.02089 -9.58153 -10.3459 -6.83191 -6.53215 -5.62984 -5.23729 -6.79316 -6.54657 -5.85011 -7.25298 -8.14126 -8.19826 -7.09423 -6.59177 -5.38221 -5.64811 -6.71889 -1.89319 -1.54259 -0.707336 -0.204755 -1.82449 -1.86794 -0.73698 -3.10158 -4.58152 -4.34015 -2.83387 -1.72281 -0.218057 -2.00238 -0.600563 -64.4823 -42.2107 -87.761 -68.7645 -25.8829 -82.5198 -107.427 -93.2135 -89.1491 -101.535 -38.3959 -7.65598 -19.6365 -10.9898 -26.1662 -10.6597 -40.3587 -59.2087 -55.0206 -38.4293 -72.9418 -43.2153 -73.0952 -49.2765 -56.7126 -41.3638 -18.3955 -67.3073 -53.2038 -93.1835 -140.606 -119.716 -136.384 -136.437 -122.795 -150.409 -174.642 -142.124 -152.049 -159.089 -99.9834 -65.5161 -66.1924 -72.8974 -78.1834 -90.7833 -90.4409 -104.86 -79.882 -64.358 -86.0154 -79.2412 -103.515 -85.3059 -121.983 -111.868 -103.575 -125.514 -211.148 -117.656 -113.516 -70.0724 -89.8432 -91.0665 -82.3656 -80.5222 -82.9042 -101.216 -85.3118 -83.2254 -85.7043 -88.0646 -81.1315 -93.7211 -91.1438 -100.842 -85.497 -89.8622 -88.3748 -63.9794 -26.1907 -47.5941 -30.0014 -66.0445 -41.2643 -53.3972 -72.6874 -77.0568 -65.335 -82.1584 -71.9776 -67.905 -67.0545 -153.368 -144.924 -156.635 -180.557 -148.208 -174.032 -133.372 -110.389 -143.391 -120.179 -129.739 -108.396 -143.451 -160.625 -151.422 -150.341 -182 -148.596 -175.888 -168.914 -131.363 -87.9015 -123.257 -106.161 -132.387 -89.9491 -124.032 -165.626 -196.872 -143.616 -183.867 -151.79 -195.561 -154.153 -102.157 437.85 -112.644 438.112 -97.9007 -129.17 -100.447 434.58 438.239 438.554 -92.9792 -108.035 437.6 437.49 -154.704 438.497 -134.224 -99.2527 -102.219 -75.9706 -102.983 -97.233 -110.247 -92.1437 -113.614 -146.961 -143.046 -124.914 -134.359 -117.937 -116.765 -170.826 -153.965 -174.676 -168.194 -172.313 -174.042 436.934 434.964 -163.864 434.924 -148.832 -179.585 -175.031 434.269 -157.062 438.002 -161.001 -175.208 -184.346 -167.581 -169.855 -188.632 -163.819 -184.399 -194.444 -83.3052 -78.9188 -53.6908 -64.3578 -83.3474 -89.6526 -62.026 -114.769 356.844 -141.432 -95.9074 -141.694 -101.995 -77.9767 -43.0102 -49.9351 -78.5192 -57.1462 -71.9386 -13.9249 -25.3277 -8.14892 -26.2172 -8.84468 -30.8132 -12.3563 -7.39923 -0.557945 -3.83184 -0.927442 -3.13694 -6.17983 -1.45526 320.727 403.904 427.561 425.984 399.954 242.645 430.279 388.585 427.262 397.101 427.385 397.806 430.907 393.38 215.035 -112.123 58.5988 -111.803 92.5882 56.5542 222.099 429.863 -127.284 68.5262 267.082 29.7452 439.476 437.718 437.848 438.119 439.864 434.422 437.482 435.061 437.494 436.176 439.765 439.512 437.85 438.076 438.89 438.001 438.653 439.609 -108.064 -107.318 -96.3693 -112.892 -111.554 -150.528 -127.521 -157.63 -121.066 -157.381 -134.668 434.543 -106.247 -138.377 -126.624 -170.025 -147.049 -161.092 -148.366 -172.145 432.766 411.405 -155.489 430.912 -172.364 -150.648 437.023 438.021 438.63 431.125 410.795 432.209 -148.542 431.173 -152.698 -168.028 -159.467 -183.931 -172.329 -179.484 -163.991 -182.688 -170.692 -158.443 -179.659 -171.58 -172.694 -161.754 -180.388 -165.55 -166.87 -173.05 -144.085 -164.811 -151.843 -167.957 -165.982 -150.779 -176.59 -138.678 -155.74 -154.648 -174.611 -70.6186 334.794 -42.4388 328.038 -74.3882 -36.1021 -93.236 435.078 359.974 -133.02 312.39 -134.816 -93.716 -67.7868 351.869 362.76 -26.4211 328.029 -32.3827 -75.7972 -104.799 -134.781 -112.948 -148.227 -108.221 -132.038 -115.078 -104.575 -137.252 -156.823 -125.465 -134.471 -106.418 -119.52 -67.5998 -38.7113 -50.5101 -85.8767 -42.8887 -65.7304 -81.6286 -5.6949 -2.11523 3.00193 0.0302568 -0.411061 -7.00221 1.32624 -10.5815 334.464 -19.1706 -23.4317 -9.28621 -5.49611 2.84224 2.39044 0.886473 -5.53408 2.36406 439.495 438.102 437.532 438.705 437.885 439.588 438.586 439.86 434.403 436.787 436.231 437.164 435.529 438.757 439.585 437.495 437.556 437.538 438.494 438.683 432.869 -129.95 434.698 -145.062 -163.132 -150.493 -116.499 -121.533 -123.646 -133.613 -156.721 -159.355 -139.459 -159.129 -132.643 -149.996 426.847 431.728 -160.001 431.982 -142.568 436.423 434.341 434.383 437.67 -178.918 424.627 457.197 -153.312 431.106 -146.515 -176.243 -167.432 -165.207 -154.803 -164.772 -170.322 -158.905 -175.305 -148.248 -173.297 -171.864 -164.9 -167.876 -194.088 -160.19 -178.854 -179.605 -173.994 -170.489 -182.371 -194.407 -149.265 -181.659 -187.773 -67.4538 333.478 -24.0348 317.485 -72.3956 -23.5947 -91.8102 432.202 -134.617 327.098 -128.661 -80.0522 -66.4624 301.544 308.483 -27.726 321.45 -27.1812 -57.9118 -101.03 -134.028 -122.44 -157.955 -99.051 -129.947 -119.475 -61.1195 -34.4032 -84.392 -41.0588 -61.3857 -35.2997 -78.05 -98.4739 -127.666 -147.882 -106.78 -125.765 -95.8477 -109.929 -2.15808 4.36299 2.67724 -2.88418 2.78919 -8.53047 331.818 -1.00885 -15.2149 -21.8479 -7.48451 -4.24679 3.90281 3.11577 2.98321 -3.32592 2.47612 121.119 398.396 428.702 429.65 398.249 265.834 115.647 428.699 340.755 -120.947 388.785 54.309 65.7082 56.2468 -105.936 125.531 -114.154 40.6534 92.9558 -111.118 -97.0208 34.99 -109.397 30.9613 45.1598 -123.048 437.457 436.5 437.714 -152.541 -113.301 431.641 437.772 -110.854 437.379 -109.046 -120.783 436.231 437.37 -137.86 437.615 -151.608 -113.963 -113.215 -112.726 -92.4243 -120.7 -112.051 -103.128 -120.549 -156.552 -134.117 -156.51 -129.566 -145.849 -128.072 -106.924 -104.075 -86.3946 -98.4238 -110.337 -104.837 -101.064 -120.255 -135.028 -155.548 -122.934 -141.886 -115.976 -128.857 -183.308 438.055 394.56 -156.285 432.835 -180.342 -157.61 -188.744 435.424 -151.292 431.543 -164.513 -180.831 -185.781 411.285 -175.253 428.267 -163.69 -186.517 -196.511 -164.486 -199.881 -183.506 -189.884 -177.249 -199.192 -187.67 -165.993 -193.221 -171.167 -182.809 -167.747 -193.105 -61.3587 317.425 -23.1128 -35.1418 -59.6073 -43.6192 -105.478 404.777 -99.7659 -147.391 -140.182 -116.318 -67.7607 -27.5021 -73.5729 -53.1796 -62.8803 -49.1713 -73.9598 -0.712053 3.49972 2.01967 2.26363 2.99696 -1.79663 1.16592 -5.95266 -12.1455 -4.03012 -30.9254 -0.768284 -25.6301 -9.41394 -107.291 437.31 -120.371 -126.076 -110.784 -108.366 -119.425 -106.72 -117.694 -105.532 -107.337 -110.246 -95.5876 -97.8547 -106.885 -110.63 -96.9495 -108.148 -111.142 -91.1676 -180.099 -169.385 -165.631 -191.709 -162.321 -189.818 -195.343 -151.984 -125.98 -110.183 -141.886 -129.44 -135.525 -178.576 -169.764 -203.26 -157.683 -200.201 -163.627 47.807 39.6992 -50.7544 -31.4497 33.9682 49.4542 13.9215 -143.543 -101.397 -146.503 -89.4232 -102.352 -85.5318 -83.7978 -31.7976 -105.66 -54.11 -64.4103 -110.965 -133.012 -103.866 -105.321 -120.566 -132.533 -86.7272 -37.6289 -54.4557 -6.28695 -81.2341 -49.1668 -100.906 -76.2019 -95.31 -88.6513 -66.1342 -91.3813 -20.7575 -10.8678 -40.6128 -63.0326 -48.4526 -51.8434 -102.59 -81.9458 -49.8063 -68.7835 -68.2023 -193.398 -210.353 -166.685 -150.726 -159.467 -156.121 -155.046 -151.769 -117.259 -166.952 -130.293 -124.904 -160.304 -180.062 -156.202 -116.91 -177.038 -147.278 -120.814 -111.931 -130.863 -97.3165 -135.039 -121.235 -199.036 -147.439 -106.694 -151.591 -108.655 -150.758 -90.9685 -77.2107 -99.2241 -149.553 -83.9038 -96.0317 -74.719 -106.915 -95.3038 -107.207 -6.91274 -10.4324 -9.15933 -6.8893 -7.45648 -7.59867 -6.4148 -6.82809 -6.73493 -6.69892 -6.70246 -6.72894 -8.13987 -7.23276 -7.34155 -7.43475 -7.82617 -7.84273 -8.93571 -9.96371 -9.7936 -10.191 -8.64618 -8.49777 -11.4794 -10.8031 -10.8293 -10.7801 -11.2152 -11.0895 -11.1918 -11.4422 -9.70447 -10.0765 -10.5095 -10.2915 -10.654 -11.1402 -8.01344 -8.08302 -8.84761 -6.87266 -9.05105 -7.20185 -7.8938 -7.21419 -5.66522 -6.09272 -6.67766 -5.98258 -6.47578 -7.17782 -3.32065 -4.22373 -4.57225 -2.90823 -4.44162 -3.22068 -3.43256 -2.01802 -0.69486 -0.822389 -2.01253 -1.81512 -2.04978 -0.796894 -5.39634 -6.59316 -6.45248 -12.3939 -6.8246 -6.80428 -6.69411 -9.36073 -10.3837 -8.06414 -7.59123 -7.1904 -10.2199 -7.66563 -11.1399 -8.68988 -9.10741 -10.8078 -10.654 -10.9811 -9.03981 -10.6843 -5.95908 -5.13795 -5.83067 -6.37398 -8.0136 -6.59125 -5.18739 -6.36631 -1.38465 -0.308373 -2.03969 -4.36926 -2.91168 -0.26773 -2.00686 -15.1232 -9.01788 -13.1007 -9.14671 -9.01303 -8.17367 -8.17242 -7.9817 -9.11986 -8.66503 -15.1462 -8.86662 -8.00891 -8.82671 -9.93742 -7.81288 -8.32249 -8.39279 -8.1957 -7.61491 -7.98096 -9.96059 -9.01065 -9.82165 -8.45013 -8.98089 -8.01783 -7.6616 -9.89549 -8.42128 -8.78289 -10.3519 -10.3381 -10.7381 -10.5215 -10.4582 -10.5529 -8.94282 -10.4847 -9.28541 -10.4197 -10.1632 -10.3113 -10.2567 -8.85778 -10.0212 -5.30018 -6.585 -8.151 -7.71232 -8.13049 -7.04959 -7.14448 -5.37615 -6.91743 -5.79514 -6.68576 -6.68864 -8.34139 -7.77439 -5.44719 -6.78749 -0.161405 -1.96994 -4.58921 -3.33578 -4.40456 -2.83468 -3.24994 -0.237835 -1.92762 -0.653514 -2.03434 -1.83748 -4.64175 -2.92577 -0.266187 -2.07418 -8.59988 -12.9098 -10.9108 -8.8329 -8.84328 -9.46137 -7.80765 -8.09696 -7.81788 -8.55214 -7.86878 -7.83575 -8.49916 -8.09638 -8.01353 -8.16809 -8.14308 -8.0347 -9.38675 -9.6829 -10.1251 -8.83072 -10.2213 -9.09431 -11.0597 -10.3724 -10.4755 -10.8328 -10.5507 -10.9796 -10.9017 -10.9869 -9.62131 -10.2039 -9.68642 -10.3786 -10.0393 -10.6449 -8.00776 -8.27938 -7.03559 -8.39065 -7.60055 -8.80678 -7.62964 -7.35524 -5.86793 -6.7347 -5.95506 -6.82484 -6.1228 -6.9624 -3.46406 -4.42989 -2.90548 -4.44362 -3.36355 -4.59165 -3.39046 -2.12264 -0.724836 -1.99557 -0.750538 -1.88923 -1.93655 -0.858854 -22.7618 -28.4413 -28.5837 -32.5384 -22.9492 -27.8148 -27.7027 -15.5834 0.482538 -3.99995 -4.202 -26.1495 -20.0476 -22.4559 -38.3785 -27.7792 -26.4161 -29.7076 -22.4215 -33.3834 -31.6667 -43.2365 -36.6537 -34.6344 -30.7635 -38.9591 -29.7045 -35.9586 -26.9965 -28.8222 -40.7441 -28.4638 -27.5531 -34.092 -18.1727 -23.3268 -37.0103 -25.9102 -32.4622 -32.5185 -44.1771 -32.2897 -45.6886 -27.9406 -29.5778 -1.15244 -1.87385 -19.6006 -33.1349 -47.3598 -43.0028 -44.2596 -34.4327 -25.745 24.719 -22.5157 -4.01019 -1.87143 -18.7153 -30.0365 -25.1213 -31.4909 -39.6385 -26.3491 -57.633 -54.7649 -121.228 -44.0568 -44.6927 -45.2773 -55.2856 -84.4142 -51.3823 -45.8923 -59.9375 -55.9392 -91.8313 -61.6775 -52.9005 -64.9309 -47.7564 -37.3784 -34.4437 -41.2387 -36.1175 -47.9912 -66.2397 -37.1423 -29.8512 -34.2346 -33.8185 -108.93 -106.386 -128.61 -51.6564 -120.121 -75.6321 -112.026 -131.729 -164.505 -136.297 -154.105 -142.327 -154.227 -121.262 -71.2509 -28.8113 -29.025 -56.3376 -48.237 -99.935 -43.9129 -92.9073 -137.075 -79.1305 -64.4617 -112.889 -106.986 -61.9333 -161.131 -165.272 -160.404 -157.983 -165.591 -161.683 -159.378 -155.909 -174.394 -154.398 -159.478 -170.189 -150.487 -152.64 -124.712 -139.227 -90.4674 -104.084 -121.231 -143.338 -95.8304 -117.698 -117.231 -80.0771 -94.3417 -107.599 -131.231 -92.054 -121.687 -167.776 -138.159 -154.423 -134.449 -153.637 -129.404 -149.169 -123.938 -153.115 -130.885 -93.4153 -59.4365 -11.7732 -44.9976 -51.2139 -105.447 -85.3226 -136.795 -62.9588 -100.301 -109.498 -91.4354 -67.0685 -115.711 -91.1177 -74.7691 -173.64 -183.942 -147.499 -176.16 -139.665 -168.726 -174.064 -184.394 -161.213 -185.67 -158.378 -175.012 -153.563 -87.8919 -142.279 -95.9302 -151.334 -124.155 -64.6235 -112.983 -91.0327 -138.077 -123.872 -100.805 -97.416 -129.264 -134.733 -107.128 -25.3313 1.90877 -40.6707 -7.16447 -44.1664 -6.19602 -29.7314 -38.2392 -84.7416 -47.4491 -56.8583 -46.5856 -19.7226 -4.88538 -7.21674 -16.7929 -6.11338 -27.2826 -16.5143 -30.2634 -47.1969 -31.1214 -25.5974 -37.0937 -35.0679 -25.0783 -58.5716 -79.5986 -69.7099 -105.319 -54.4875 -56.5799 -79.7665 -67.5903 -41.9175 -97.4844 -51.2516 -49.8723 -45.0609 -43.4295 -34.6828 -37.4122 -41.7334 -51.6294 -37.0576 -42.8339 -41.1761 -33.648 -34.3974 -41.16 -46.4026 -34.7499 -29.1031 -42.5295 -38.4407 -32.6757 -35.9508 -23.9627 26.6963 -20.0782 -6.94993 -27.6372 -24.6068 -35.2989 -17.8959 -6.98869 -7.90549 -15.1758 -6.20403 -16.5492 -20.4701 -25.5192 -26.0243 -20.7958 -29.5696 -22.264 -25.5495 -38.8089 -58.7529 -38.1454 -42.6486 -32.5837 -38.4662 -35.7651 -35.9041 -36.5047 -59.249 -33.4577 -21.6309 -32.0107 -27.0175 -25.4724 -31.4835 -27.4896 -33.4144 -29.3747 -22.4289 -17.5577 -22.9052 -24.1717 -25.9853 -30.6516 -7.77483 -6.80082 -7.24403 -7.50886 -7.14879 -7.36381 -7.73694 -10.5418 -7.60101 -7.24304 -7.19188 -8.61984 -10.0992 -8.35013 -8.27772 -7.90805 -7.73562 -8.0994 -7.6871 -7.65883 -8.50468 -9.31027 -9.9353 -10.1422 -8.80368 -9.0258 -9.71551 -7.08514 -7.47117 -7.85743 -7.38727 -6.88122 -9.92808 -8.19505 -9.80688 -7.28667 -7.90099 -7.80519 -8.05298 -7.56898 -7.19828 -9.97222 -8.2545 -8.56055 -9.83246 -10.8044 -10.6198 -10.9419 -10.2854 -10.5604 -9.52598 -10.848 -9.35274 -11.3714 -10.9163 -10.8654 -11.0097 -10.335 -10.7398 -9.96841 -10.6597 -10.7522 -9.26426 -7.13537 -8.89715 -7.38429 -8.40139 -6.88376 -5.55516 -7.04908 -5.72142 -7.13846 -8.79043 -7.16186 -7.68899 -8.35254 -6.935 -5.96994 -6.85877 -6.98195 -5.64921 -1.86672 -2.14157 -0.77139 -0.827523 -1.97094 -2.0389 -0.712852 -3.24828 -4.76605 -3.00881 -4.7259 -2.09482 -0.391128 -2.21894 -0.38667 -2.78162 -4.5657 -3.00085 -3.42012 -5.11387 -1.91065 -0.707807 -2.17388 -1.86407 -0.384328 -7.78696 -8.05963 -10.3992 -7.7968 -9.87776 -8.61365 -8.13468 -7.55016 -7.17716 -7.40439 -7.7718 -7.32617 -7.39159 -11.3278 -7.61681 -7.31523 -7.32092 -10.3763 -8.85602 -7.14628 -8.21571 -8.89657 -8.079 -8.57753 -7.79448 -8.79174 -8.63233 -10.5204 -10.0395 -11.1887 -9.35614 -10.7592 -10.0369 -7.804 -9.22302 -11.819 -10.0159 -9.17433 -10.6894 -11.1912 -11.3195 -11.981 -12.0449 -11.3514 -11.1772 -11.8938 -10.8353 -9.92453 -11.4984 -10.1027 -10.8119 -9.04477 -11.2693 -12.1831 -12.0782 -9.48032 -11.6837 -5.34646 -6.8215 -6.85971 -8.65086 -7.97061 -8.54377 -7.62657 -8.04798 -7.45045 -6.49977 -5.76329 -6.90408 -5.61633 -6.66001 -5.20674 -6.4366 -8.55442 -6.75307 -4.98904 -6.35183 -0.331905 -2.12973 -2.80489 -4.4394 -3.34519 -4.33658 -3.34475 -4.48842 -3.3047 -1.97042 -0.707825 -1.98777 -0.708413 -1.83874 -1.82712 -0.117187 -4.31662 -2.70537 -0.302635 -1.99868 -6.24432 -9.25627 -8.24542 -7.23466 -6.07468 -7.01179 -5.91538 -7.0266 -6.05794 -6.73575 -6.39277 -5.61812 -10.6985 -7.70109 -9.19864 -8.06857 -9.64864 -7.99728 -10.8118 -12.7407 -12.5985 -9.87066 -14.5281 -11.2969 -13.8352 -13.1305 -11.9922 -7.92308 -7.83983 -19.3693 -8.10703 -13.5997 -12.3983 -14.4996 -18.1161 -16.6128 -20.3727 -15.9388 -16.8256 -15.3403 -14.0983 -12.9571 -13.2717 -14.9043 -13.0322 -14.2005 -14.7408 -12.9173 -10.449 -11.935 -10.8566 -12.1426 -10.9556 -12.7563 -16.0946 -18.6865 -17.3878 -21.8451 -16.2424 -18.4179 -16.9566 -14.3586 -12.6362 -12.2634 -18.2187 -11.9501 -16.5547 -14.489 -6.82585 -8.22847 -6.22976 -7.61315 -7.01021 -8.32826 -5.88416 -6.32169 -5.37018 -5.56861 -4.90715 -6.27859 -5.34745 -5.50574 -3.0833 -4.03295 -2.67311 -3.70263 -3.11319 -4.04464 -2.93034 -1.88878 -0.703221 -1.63214 -0.663162 -1.79477 -1.65486 -0.774314 3.34644 3.47823 5.69916 1.40933 4.58605 17.902 2.49332 1.57979 -0.412013 0.0762937 4.00446 -0.667542 18.5483 0.156314 -17.9452 -26.1672 -20.7574 -21.9673 -17.8926 -0.869477 -18.9635 -4.26172 -20.594 -17.2071 -30.4563 -21.6785 -23.6228 -23.8181 -19.0409 -5.61101 -5.92739 -16.9683 -16.2001 -23.0298 -20.9988 -18.4305 -17.5245 -16.4671 -5.13717 -8.22149 -12.5557 -7.089 -12.8998 -15.1343 -19.2815 -20.5988 -20.0086 -15.9043 -17.371 -17.7216 -18.8186 -18.4655 -16.3089 -21.6111 -19.1656 -50.2717 -28.0019 -31.9912 -24.2559 -29.3858 -24.031 -20.9295 -31.0511 -18.0369 -26.5875 -22.4993 -21.9849 -21.3039 -20.6418 -20.0427 -12.9263 -9.5211 -18.7193 -19.3031 -23.8366 -21.5544 -20.3554 -18.3878 -21.3989 -19.2636 -23.9902 -14.825 -13.7121 -16.9876 -12.0766 -19.3623 -17.4846 -1.92268 -3.17722 -1.69787 0.919014 -4.70625 -4.01306 -3.15483 -17.1694 -22.0769 -24.6944 -23.4921 -20.4566 -20.1711 -20.8496 -25.0901 -18.1887 -48.3141 -3.1146 -31.3446 -13.7509 -33.5717 -35.2963 -57.2271 -54.7546 -55.761 -45.7157 -43.7593 -38.6501 -20.4151 -3.16963 -8.67373 -25.0335 -10.3167 -30.8826 -17.9721 -29.4521 -49.5291 -31.2144 -28.5401 -36.2248 -35.0455 -25.9079 -53.3118 -64.2484 -88.3157 -53.1796 -67.5547 -49.4704 -61.4688 -50.6437 -55.0097 -80.1948 -51.4037 -64.6223 -43.2335 -56.6106 -43.7074 -46.9235 -34.8868 -42.4235 -40.5587 -53.9088 -37.0958 -42.0189 -39.0628 -29.9501 -39.293 -35.6089 -49.4846 -35.8231 -38.7233 -72.148 -53.7229 -52.0488 -42.9444 -65.6978 -46.914 -43.2414 -55.2539 -51.6144 -36.3047 -29.2519 -13.9944 -7.68578 -7.74239 -24.1657 -35.2524 -36.5422 -45.9718 -28.4323 -35.5541 -35.0313 -35.7052 -27.3375 -41.6743 -30.7268 -30.572 -55.5239 -49.8919 -44.8405 -76.3701 -37.1533 -60.1698 -72.2225 -67.4654 -47.7322 -74.6542 -57.0907 -51.2289 -50.3314 -37.4476 -47.4449 -38.8554 -48.7895 -39.8661 -23.3277 -30.6145 -37.0443 -46.0745 -38.023 -38.7342 -33.7964 -45.4512 -40.0996 -39.3299 -21.9979 -23.5937 -23.0315 -20.0243 -27.4349 -18.3942 -17.808 -10.2935 -6.07835 -18.0895 -22.3522 -19.8234 -31.2673 -21.0572 -18.045 -6.4135 -19.7581 -4.53527 -14.1893 -21.252 -20.5372 -23.8149 -26.2202 -18.5775 -24.4291 -29.0947 -57.6492 -21.0245 -24.3044 -21.3807 -29.5737 -24.6014 -28.0097 -25.8904 -25.9597 -22.875 -16.2103 -18.5464 -24.0368 -25.8087 -21.3707 -26.2166 -24.7508 -20.9167 -23.3618 -15.351 -21.7078 -16.1258 -18.8577 -17.0652 -19.2048 -17.8222 -22.8565 -15.6574 -19.4327 -18.9922 -14.6431 -5.99356 -6.58475 -17.8786 -6.36344 -15.6458 -17.4672 -23.3986 -19.9314 -19.9929 -19.6078 -16.862 -18.7056 -24.6495 -19.7765 -23.1459 -19.5747 -18.2585 -16.468 -14.096 -9.33212 -21.9043 -12.4508 -17.2665 -8.92641 -10.1192 -8.51679 -8.43841 -13.4485 -7.83789 -7.92755 -8.40945 -7.78937 -8.0644 -8.70719 -9.35243 -7.09238 -7.63038 -13.2541 -7.61082 -7.40966 -6.87442 -6.91929 -7.95121 -7.72138 -8.0358 -8.63801 -8.3811 -8.04709 -8.84528 -8.29617 -9.16827 -10.7338 -8.44382 -9.63563 -11.2584 -8.96382 -8.53097 -10.637 -9.98773 -8.31082 -9.55367 -12.844 -11.4637 -11.538 -11.771 -8.30114 -8.2876 -8.59632 -11.4278 -11.4979 -11.4997 -10.9633 -11.5387 -11.5737 -11.1028 -9.99588 -10.7151 -11.0598 -9.22246 -11.8351 -13.4079 -13.3018 -13.0198 -12.0359 -11.3262 -10.1016 -12.3312 -11.8968 -9.19502 -11.6247 -11.7484 -11.1731 -9.06379 -6.76136 -8.60908 -7.07475 -7.49753 -8.16988 -6.42904 -5.74785 -6.76381 -6.7073 -5.12763 -6.57556 -8.09763 -5.56626 -6.68197 -8.07867 -6.22247 -5.15083 -5.323 -5.95285 -4.97865 -6.45164 -8.00278 -6.21086 -4.98643 -2.88588 -4.46847 -2.95828 -3.28845 -4.44497 -2.1922 -0.744732 -2.19357 -1.93909 -0.291391 -2.83692 -4.05701 -2.58958 -3.02166 -4.33284 -2.14037 -0.7072 -1.90455 -1.79802 -0.284925 -2.82094 -4.36562 -2.2515 -0.205585 -7.57176 -10.6314 -6.67603 -2.17115 -5.92852 -4.86256 -8.81237 -3.49834 -9.22261 -4.71077 -3.01499 -4.11841 -1.13532 -1.32303 -4.17915 -1.7486 -3.6795 0.710317 -2.48717 -15.7687 -13.3826 -9.28063 -21.2292 -10.8075 -13.8779 -14.9473 -16.9321 -16.1441 -15.9123 -7.16818 -14.8556 -15.3264 -10.0226 -13.6944 -17.4525 -17.3599 -16.3697 -11.5581 -18.6359 -8.92574 -14.4389 -17.0856 -12.9651 -8.70223 -15.3852 -4.11792 -4.94318 -5.18147 -2.79229 -1.70332 -3.20779 -2.31943 -4.07407 -3.75912 -3.53791 -4.2762 -3.61868 -3.80139 -3.14557 -3.51882 -3.5104 -0.293685 -1.69192 -3.71277 -2.40306 -2.94836 -2.59475 -2.31183 -0.529893 -1.43539 -0.479014 -1.46551 -1.27356 -3.06713 -2.11015 -0.206154 -1.42861 -5.72632 -11.2979 -4.16906 -7.61914 -5.13225 -3.04501 -3.32598 -5.40151 -6.4436 -7.24922 -13.3078 -7.49646 -6.63666 -6.91709 -7.57581 -5.82941 -6.7114 -7.18128 -6.8472 -6.35914 -6.07465 -6.72974 -14.8811 -19.8592 -19.8955 -18.0147 -15.3954 -16.7126 -11.0167 -7.20659 -7.11487 -13.9007 -7.4723 -8.45037 -13.037 -23.7532 -13.1877 -14.8939 -15.1473 -10.2886 -10.2172 -8.00019 -7.53716 -9.06261 -8.01696 -9.69865 -8.62322 -12.4248 -12.5283 -12.5666 -10.3489 -13.583 -11.4723 -10.1455 -13.5699 -12.1204 -8.57087 -16.5402 -16.2123 -10.7489 -14.6247 -23.2378 -13.4309 -14.7049 -15.8785 -12.7534 -12.418 -7.61341 -8.63962 -14.7223 -9.82953 -11.6364 -13.3648 -13.2714 -12.7751 -12.05 -14.0451 -13.0189 -12.3023 -11.9244 -10.5969 -9.82397 -11.139 -9.93842 -12.2749 -11.516 -5.32933 -4.23696 -7.076 -3.69936 -6.62506 -5.39167 -5.03213 -3.6607 -4.32245 -3.83845 -4.43493 -5.17922 -6.31622 -8.48087 -7.16263 -6.79892 -7.41349 -7.24476 -6.33056 -5.71846 -5.50475 -4.9695 -6.02819 -5.00188 -6.4408 -5.58825 -2.6259 -3.19078 -3.64354 -2.16644 -3.53174 -2.45626 -1.54346 -0.27711 -0.254008 -1.47451 -1.7601 -0.613131 -2.97053 -4.3471 -3.69802 -3.02059 -3.93331 -3.28745 -2.90937 -1.76415 -0.815982 -0.912545 -1.73438 -1.96565 -1.57193 -0.747069 -14.98 -8.35946 -23.7772 -3.22586 -16.3375 -7.71141 -21.1599 -20.4107 -27.0476 -26.8448 -31.9093 -22.4761 -24.2268 -23.5786 -14.2241 -3.70435 -7.6602 -19.2954 -7.78054 -20.6042 -13.6099 -18.9223 -30.3022 -20.3378 -21.013 -21.996 -22.8054 -17.7409 -27.5026 -30.225 -38.6265 -30.1656 -31.2886 -26.9041 -32.6229 -25.8452 -24.6003 -35.3955 -24.8749 -29.4864 -21.1317 -29.8237 -24.3946 -28.4167 -21.9137 -26.6991 -23.8905 -30.4249 -22.214 -23.1006 -21.3006 -16.3048 -24.3076 -18.3553 -27.6451 -20.8596 -23.2131 -33.6206 -26.7492 -28.5272 -24.6707 -30.7992 -23.3301 -23.8542 -27.0526 -27.9749 -21.5201 -19.857 -9.9009 -8.9183 -8.64045 -18.8798 -22.3083 -24.1576 -26.9394 -20.5676 -22.5907 -21.5638 -23.6881 -18.8818 -25.3963 -19.87 -21.2191 -27.2591 -20.4239 -22.437 -33.6071 -16.517 -29.3494 -33.0306 -28.5601 -25.0355 -32.6555 -29.5449 -25.1846 -26.9266 -24.4067 -27.6033 -23.3676 -25.3663 -20.7313 -12.2601 -14.9232 -21.907 -25.5966 -21.9724 -24.1657 -20.1464 -26.2356 -22.0948 -23.5777 -7.94169 -8.16425 -8.89811 -10.5847 -7.87823 -8.73425 -8.43159 -7.50719 -8.15915 -8.33903 -8.42685 -7.48785 -8.15552 -8.22093 -7.70612 -8.88655 -12.8571 -6.8876 -8.52492 -8.49317 -7.1048 -7.13037 -8.45254 -7.80992 -6.02806 -8.42907 -14.8506 -19.0273 -18.1613 -17.8588 -17.3919 -16.4178 -16.3361 -11.3354 -9.16323 -9.02332 -9.03724 -11.6786 -10.0078 -13.393 -15.711 -13.4369 -14.8789 -14.1218 -11.0238 -16.4816 -19.1387 -19.7961 -18.3921 -18.7568 -16.7753 -18.0276 -15.1571 -16.3043 -13.7847 -15.3701 -15.9918 -13.2859 -13.9578 -11.9922 -11.2601 -11.9912 -14.6571 -13.0417 -7.50453 -8.93217 -8.70404 -5.99062 -9.61639 -6.36933 -7.21663 -6.54096 -5.42642 -5.66734 -6.1322 -5.59295 -6.0627 -6.29033 -3.14447 -4.01263 -4.14345 -4.19981 -3.05733 -3.15342 -1.98183 -0.775424 -1.07116 -1.89781 -1.84992 -0.852859 -2.04299 -1.89262 -0.731083 -2.66186 -1.61469 -3.58806 11.8989 -6.92888 -6.01277 -4.83265 -3.40177 -5.70395 -3.69922 10.4966 -9.62602 -5.56834 -5.57276 -5.06359 -23.0645 -20.5575 -19.7912 -17.8338 -18.2468 -8.05366 -11.5098 -15.7869 -19.2825 -12.473 -16.1738 -8.1372 -15.5428 -18.3515 -16.2602 -20.1765 -10.0052 -13.8954 -18.1792 -17.5636 -17.8269 -19.3412 -14.1427 -16.6998 -9.95714 -12.9947 -15.9865 -18.3704 -17.3749 -12.1633 -16.5774 -21.3776 -4.94834 -5.0211 -4.60591 -4.85861 -5.06211 -5.22391 -4.36407 0.00147535 -4.06128 -4.82829 -3.07673 -3.23858 -4.3401 -4.86364 -4.6228 -3.56442 -2.99053 -9.64082 -5.15116 -13.4835 -4.37363 -4.39911 -5.3925 -4.12873 -1.69966 -1.68572 -0.747442 -0.739649 -1.72442 -1.77543 -0.666804 -2.28227 -3.37427 -2.51631 -2.48779 -3.26881 -1.62567 -0.545035 -1.81682 -1.51115 -0.248365 -2.58463 -3.7837 -2.42782 -3.45363 -1.72815 -0.320729 -1.833 -0.309809 -11.3075 -12.5913 -5.00989 -1.91409 -7.98927 -7.64523 -8.26881 -9.12815 -11.4287 -8.79971 -11.1364 -7.4033 -6.5709 -6.05138 -4.80172 -6.22953 -5.60077 -3.82775 -2.72084 -2.68939 -1.04374 -1.94447 -1.85903 -7.79427 -7.48271 -7.63062 -7.68755 -8.75584 -9.43415 -8.10594 -12.7289 -8.37379 -8.86935 -15.1057 -8.36547 -7.60535 -7.43775 -7.91497 -7.52448 -7.78472 -8.1926 -15.1747 -8.7483 -7.8138 -8.36906 -7.8914 -9.25253 -10.2578 -9.30289 -10.0152 -7.16268 -8.0306 -8.47883 -7.86583 -8.38549 -7.55076 -8.1506 -8.1357 -10.0775 -9.23829 -9.79951 -9.14838 -9.91673 -8.93849 -7.85426 -6.94855 -9.37831 -7.84322 -10.1109 -10.6698 -9.61997 -10.6661 -8.89543 -10.4081 -11.0689 -11.1854 -10.5289 -11.0628 -10.3205 -10.6759 -10.0841 -9.95648 -10.9652 -9.59685 -10.7952 -9.58509 -10.3028 -10.2643 -10.3782 -8.94911 -10.203 -6.36437 -6.18956 -5.63195 -6.51822 -5.18512 -7.33469 -8.84567 -8.10812 -8.30834 -7.73102 -7.63847 -7.57213 -6.27621 -5.98618 -7.18348 -6.01918 -6.87315 -5.14377 -6.72956 -6.89304 -8.13714 -7.69497 -6.96954 -6.74334 -5.37829 -6.73722 -1.95667 -1.73665 -0.704684 -1.84444 -0.172799 -2.80605 -4.52546 -3.36936 -4.41189 -3.33122 -4.42724 -3.26514 -1.96553 -0.758266 -1.98363 -0.663853 -1.93808 -1.79365 -0.19369 -4.57787 -2.81333 -0.217811 -2.00237 -7.7576 -7.19789 -7.28822 -7.66227 -6.89861 -7.75561 -7.72499 -8.47983 -13.7504 -8.73567 -11.3069 -8.01399 -7.57137 -8.29538 -7.70811 -8.89732 -9.98938 -8.28064 -10.8127 -8.04171 -7.60769 -7.81814 -7.49698 -8.07521 -7.71683 -7.29803 -7.82874 -8.40928 -9.4356 -8.05741 -9.62819 -8.17453 -7.85584 -6.89507 -7.90722 -8.22189 -8.81935 -9.82514 -7.96085 -9.72935 -8.84285 -10.5389 -10.2237 -10.4496 -10.3687 -10.2666 -9.08857 -10.2609 -9.39866 -10.8534 -10.9268 -10.7833 -10.7026 -11.1288 -10.6741 -9.98364 -10.586 -9.77225 -10.9307 -7.3128 -8.35344 -7.17535 -8.15838 -6.73807 -5.4685 -6.81239 -5.78129 -7.83162 -8.89531 -7.15019 -8.71218 -7.89031 -7.08322 -5.9389 -6.8545 -6.05312 -7.04177 -3.12662 -4.65089 -2.87146 -4.39703 -1.71 -0.28144 -2.04463 -0.577204 -3.37612 -4.52087 -2.81514 -4.63484 -3.30032 -1.90641 -0.691274 -1.92995 -1.85265 -0.719823 -8.20046 -9.37018 -8.66429 -13.5106 -8.25227 -8.51885 -8.79792 -7.33693 -7.57926 -8.65215 -7.42595 -7.44069 -7.50242 -8.13952 -7.75678 -7.69014 -12.9712 -7.67178 -7.25628 -8.01457 -8.23383 -7.04061 -7.25932 -7.60299 -7.14433 -7.3562 -6.81227 -7.76627 -8.42097 -7.87698 -6.98397 -7.68535 -8.27449 -7.91795 -7.68619 -9.22725 -10.1115 -8.10682 -10.2728 -9.03147 -10.4922 -9.14512 -8.68753 -8.13114 -7.91537 -8.81054 -8.0097 -9.10473 -8.45808 -9.69699 -11.7912 -10.923 -10.159 -11.0814 -10.3317 -9.67635 -12.0445 -11.2832 -10.9322 -11.1373 -11.6061 -11.6224 -11.5196 -11.9557 -10.5015 -10.6518 -10.2679 -11.5652 -10.724 -10.9361 -12.5176 -12.7963 -11.6867 -12.3554 -12.2279 -12.9586 -12.0462 -12.3429 -11.2168 -10.3601 -11.6728 -11.0275 -12.653 -11.4488 -8.37252 -9.30546 -7.27275 -8.70189 -8.33874 -9.45902 -7.92049 -7.53399 -6.2947 -6.96494 -5.96199 -7.53227 -6.16732 -6.97939 -8.4752 -9.64556 -8.79844 -7.70411 -9.61848 -8.41379 -7.92241 -7.56201 -6.14222 -5.81756 -6.58269 -6.15613 -7.4646 -6.91835 -3.41733 -4.71389 -2.91883 -4.45641 -3.51079 -4.6117 -3.33613 -2.00566 -0.789968 -1.93272 -0.68607 -2.01946 -1.83063 -0.780938 -3.43832 -4.66062 -4.35618 -3.12264 -4.62795 -3.48159 -3.20317 -2.02511 -0.825737 -0.621168 -1.7109 -2.07716 -1.74426 -0.78649 -6.06084 -7.04532 -7.00368 -8.15446 -6.75786 -6.4159 -6.28253 -5.80647 -6.95156 -6.64623 -6.5426 -6.45603 -6.43568 -6.02101 -5.04102 -4.30631 -7.27039 -4.11382 -3.77191 -5.32475 -5.29004 -4.59858 -2.47463 -5.17359 -2.94289 -5.08666 -2.81011 -4.63178 -12.9524 -8.05081 -19.0592 -4.84119 -13.3949 -8.04368 -18.4145 -15.9715 -19.1689 -20.5852 -24.8981 -16.8538 -18.0345 -19.0779 -10.4777 -7.91538 -9.37131 -8.0977 -9.63762 -7.85617 -10.1872 -12.7826 -12.9798 -11.1724 -13.6566 -11.5268 -14.3157 -12.1142 -12.7611 -5.48187 -8.33824 -16.6936 -8.46057 -18.1364 -12.1816 -15.2779 -24.2364 -16.0959 -17.967 -17.0353 -18.6944 -14.4367 -18.7909 -20.5446 -25.3839 -22.8598 -20.3476 -19.1529 -23.0133 -16.9349 -14.4547 -22.946 -16.0004 -18.5081 -13.0995 -20.7413 -14.6942 -13.8792 -13.3964 -14.0732 -13.8597 -14.9503 -13.9417 -13.5872 -11.6571 -12.4719 -10.7847 -13.2605 -11.7776 -12.569 -17.3795 -22.1116 -17.0036 -20.6144 -18.0033 -22.2102 -16.3095 -15.3901 -14.6293 -11.1805 -17.6689 -12.1112 -19.7242 -14.2381 -7.75247 -9.84724 -7.44421 -8.61736 -8.18398 -9.78449 -6.85647 -6.90086 -5.87214 -6.28666 -5.25629 -7.09158 -5.94086 -5.96047 -3.50859 -4.48439 -3.02016 -4.01154 -3.35362 -4.62048 -3.03608 -2.1448 -0.810541 -1.66965 -0.671116 -2.02117 -1.7158 -0.891112 -4.22333 -3.67373 -3.00754 -6.52227 -2.57607 -4.45245 -4.34993 -3.95252 1.31437 -0.263004 -5.77096 -0.160047 -5.5329 -3.86045 -5.55208 -6.70314 -7.70736 -6.99573 -6.61585 -5.88102 -5.63013 -5.20762 -7.72606 -5.39086 -6.8596 -5.07584 -6.66106 -5.42044 -18.8439 -23.2445 -20.063 -21.5994 -18.9871 -21.9696 -17.4064 -17.4742 -19.9832 -20.8058 -16.6172 -17.294 -11.3832 -9.93616 -10.5117 -16.1345 -18.3921 -19.6542 -20.9741 -17.0405 -15.9719 -10.8196 -9.53649 -13.2709 -9.32682 -13.9889 -15.7436 -18.2527 -16.4782 -19.0314 -14.6678 -19.7584 -15.5331 -17.3853 -18.5819 -11.3832 -14.8142 -20.7747 -9.63581 -20.0497 -22.149 -18.1339 -17.4885 -21.4406 -20.8679 -16.9002 -19.2358 -19.1723 -20.4444 -17.7762 -17.8011 -14.1608 -8.62802 -9.12171 -16.6019 -18.6871 -16.5945 -18.8969 -15.2559 -19.8103 -15.8889 -18.004 -8.21847 -7.58369 -7.90262 -10.6426 -7.58807 -8.51968 -8.38795 -8.18527 -8.61576 -7.97753 -8.88992 -7.73891 -8.8897 -8.33926 -8.9 -9.86647 -13.1848 -10.0321 -9.34532 -9.35042 -9.15471 -8.46987 -9.10093 -9.41501 -9.5432 -9.0227 -8.73711 -9.11667 -11.6146 -10.0981 -11.8059 -9.91256 -12.1357 -10.0936 -11.0812 -13.0713 -14.9981 -13.3452 -13.4773 -13.96 -13.9214 -12.479 -11.0661 -9.75669 -9.94958 -9.96661 -9.95538 -10.4982 -10.6522 -12.2876 -12.3963 -12.6571 -11.1143 -13.0071 -11.6305 -11.8032 -14.1974 -15.5013 -14.6034 -13.8025 -15.1628 -14.4216 -13.5982 -13.6267 -12.3203 -13.3413 -11.0906 -14.4695 -11.8096 -12.6058 -13.3876 -13.0303 -13.0241 -12.5068 -13.5369 -12.9597 -12.8691 -12.9761 -11.2627 -10.7316 -12.0163 -11.4648 -12.6438 -12.0549 -8.4764 -9.94183 -7.75608 -9.09604 -8.46036 -9.82755 -7.86944 -7.46356 -6.23004 -6.55285 -5.60409 -7.44343 -6.10092 -6.64061 -8.61257 -9.81316 -9.05991 -8.18229 -9.90161 -8.59849 -8.06943 -7.60239 -6.28893 -5.99746 -7.14704 -6.28738 -7.62461 -7.01215 -3.41058 -4.76878 -3.18982 -4.18128 -3.56799 -4.61507 -3.10136 -2.00876 -0.861239 -1.78483 -0.626799 -2.12573 -1.70066 -0.787933 -3.52268 -4.72386 -4.48235 -3.38454 -4.75446 -3.49067 -3.31951 -2.07961 -0.798224 -0.689191 -1.86527 -2.04061 -1.84348 -0.816005 -9.59554 -10.486 -10.1277 -9.76861 -11.1362 -9.03721 -9.36895 -9.64063 -9.15646 -9.22977 -10.1457 -12.8076 -10.0797 -12.1416 -9.40619 -9.38035 -9.2684 -9.69483 -10.0387 -9.84944 -9.27378 -10.3866 -9.54857 -8.56242 -10.6699 -11.8928 -9.96313 -11.4639 -11.17 -11.5237 -9.05307 -9.83586 -9.49057 -9.55858 -9.60124 -10.4467 -11.118 -10.7807 -11.3434 -9.92841 -12.2066 -12.4868 -11.8699 -11.5727 -12.4495 -12.1887 -11.7867 -12.0098 -10.9333 -11.7201 -9.71121 -12.2013 -10.7785 -11.4851 -11.9659 -11.5927 -11.5059 -11.921 -11.6921 -11.593 -11.7863 -10.2737 -9.53238 -10.5377 -11.5058 -11.2389 -8.44604 -9.58792 -7.53696 -8.79348 -8.53644 -9.45724 -7.5822 -7.56676 -6.35412 -7.13776 -5.69833 -7.62597 -6.29013 -7.24242 -8.36765 -8.91346 -8.69697 -9.28102 -7.96004 -7.42518 -7.6134 -6.24317 -5.64617 -6.33952 -7.38158 -7.11937 -3.47636 -4.73128 -2.89935 -4.82197 -3.53033 -4.65857 -2.95435 -2.02655 -0.814461 -2.05907 -0.265729 -2.07633 -2.10525 -0.779381 -3.48281 -4.58306 -4.67713 -4.68101 -3.43457 -2.88907 -2.02932 -0.714006 -0.26969 -1.9378 -1.99208 -0.780742 -9.35528 -8.64008 -9.0405 -9.23243 -8.76673 -9.23337 -9.30055 -10.049 -10.598 -9.75144 -9.66556 -14.6079 -9.79012 -9.06877 -8.83841 -8.90494 -9.27142 -9.85881 -13.8837 -10.1693 -16.0079 -9.57395 -9.35736 -9.72849 -9.85438 -10.2674 -10.8137 -11.6534 -11.2156 -10.7019 -10.3814 -11.281 -9.01302 -9.43243 -9.76752 -9.82397 -9.22069 -9.40948 -11.5971 -10.5941 -10.6244 -11.2514 -8.42947 -9.48719 -9.46313 -9.81487 -9.09411 -11.3057 -9.7165 -11.097 -8.40645 -9.49605 -8.59726 -11.1847 -11.3693 -12.1777 -11.0431 -10.6624 -11.9144 -11.4337 -10.5315 -11.6767 -12.3332 -12.2859 -11.2159 -12.2777 -11.5374 -11.8878 -11.4131 -10.9014 -11.8731 -9.89485 -11.9202 -10.2169 -11.5636 -11.5836 -11.5866 -11.6659 -11.3957 -11.3938 -9.9826 -11.4728 -9.37342 -11.5974 -11.4419 -11.307 -9.15285 -7.32678 -8.05713 -6.52654 -6.33893 -7.6976 -7.39522 -6.45872 -7.87208 -9.6871 -8.14202 -8.82442 -8.38419 -8.93327 -7.35824 -7.01979 -6.29521 -7.26661 -5.70859 -7.42162 -6.08126 -7.04013 -7.38383 -9.30918 -7.868 -8.79307 -7.14256 -5.8611 -7.49174 -5.75313 -7.3563 -8.60761 -7.08294 -5.81695 -1.92961 -2.24435 -0.8298 -0.76794 -2.06781 -1.97203 -0.742482 -2.76651 -4.81481 -3.45741 -4.86106 -3.47783 -4.84479 -2.90492 -2.07904 -0.781824 -2.00081 -0.26628 -1.98608 -2.06876 -0.295436 -3.01689 -4.98705 -3.10274 -4.84602 -2.14159 -0.383938 -2.25341 -0.315704 -2.82255 -4.56246 -2.07541 -0.2747 -8.89497 -8.748 -9.08265 -8.64057 -11.0143 -12.9133 -10.301 -9.07957 -9.31407 -13.1894 -10.0649 -11.867 -10.2348 -12.3403 -13.4493 -13.2434 -10.2299 -12.5364 -6.89152 -5.44669 -6.75443 -8.96744 -6.97482 -5.36192 -6.53888 -1.81349 -0.48446 -2.09309 -4.43245 -2.90545 -0.999784 -2.18291 -7.54782 -7.97458 -8.43773 -7.5953 -7.55504 -7.90744 -10.5035 -8.10799 -7.44548 -7.86565 -7.03898 -10.773 -9.12446 -8.29075 -9.40421 -10.9947 -11.279 -11.7828 -11.7543 -9.55915 -11.7599 -11.4374 -5.42687 -6.76273 -8.70486 -7.54997 -7.09582 -5.40248 -6.50022 -6.74935 -0.143462 -1.98507 -4.62548 -2.66349 -2.84082 -0.140996 -1.87192 -1.97265 -7.29851 -6.62071 -6.3164 -11.7154 -4.16745 -6.20618 -6.12076 -3.13945 -5.60316 -9.42065 -14.13 -11.754 -7.51816 -17.5579 -11.4214 -15.3093 -18.5144 -12.7641 -12.2295 -9.90099 -13.1489 -15.6021 -20.3348 -14.7046 -9.96278 -17.5187 -13.8469 -6.55292 -4.69208 -5.90335 -8.58843 -4.31299 -5.77912 -4.33951 -4.60655 -5.43978 -1.97177 -0.327507 -1.94257 -3.82157 -2.37249 -2.42189 -0.301672 -1.77497 -1.81176 -1.97112 -4.53175 -4.47082 -11.7346 -7.97094 -5.6932 -6.01932 -7.69876 -5.31888 -19.7257 -16.9875 -9.42894 -12.5107 -16.3946 -19.5525 -13.5089 -17.2357 -9.99972 -16.7987 -19.3531 -14.5421 -17.4763 -10.5797 -13.7608 -16.2888 -3.47589 -4.03681 -4.71403 -8.7549 -6.81173 -5.52216 -4.34171 -6.23474 -5.30428 -1.71542 -0.272726 -1.74519 -3.84369 -2.60848 -2.49094 -0.336353 -1.91338 -1.8851 -8.41269 -9.29537 -8.90588 -15.0294 -9.58907 -9.46557 -9.12516 -12.8073 -13.1439 -10.8432 -9.73019 -7.89053 -9.44487 -12.7143 -9.75283 -10.5414 -13.5007 -10.3652 -12.6403 -12.9891 -11.6918 -12.5971 -9.97818 -11.7268 -12.2147 -6.51627 -5.24618 -6.55394 -8.88989 -7.40745 -7.03875 -5.36022 -7.10074 -6.80292 -1.96272 -0.216244 -1.99975 -4.58251 -2.9686 -2.8608 -0.245657 -2.03858 -2.0152 -11.7074 -7.05917 -2.03016 -10.3771 -13.0579 -10.681 -12.3226 -6.89507 -6.85706 -6.90889 -6.85123 -10.5885 -10.2224 -10.1306 -10.5788 -10.4888 -10.2231 -7.8434 -7.04018 -8.16752 -8.27797 -7.32859 -7.47688 -8.50714 -4.63574 -4.81272 -4.01741 -4.21957 -4.41072 -5.08324 -4.17051 26.9873 -5.82629 27.8029 -5.30478 -7.58626 -5.47599 -7.85186 -3.15725 -3.06816 -3.23901 -2.96433 -7.42291 -7.65255 -7.15864 -7.56111 -7.02536 -5.55277 -5.48145 -6.14108 -6.49429 -5.25865 -5.91159 -6.29079 -3.14234 -2.91485 -4.12587 -4.03488 -2.67406 -3.22935 -3.98016 43.6843 0.172254 42.3356 0.892062 -8.00504 -26.3494 -2.91584 -9.24725 -3.06339 0.905647 -7.3785 -2.65147 -6.32372 -2.26687 -9.49408 -1.74168 -8.43798 -11.2717 -9.20421 -10.469 -15.048 -15.5601 -13.5515 -14.2814 -7.90002 -9.07131 -7.81375 -14.3649 -10.7999 -13.2691 -9.88475 -2.25424 -4.65938 -2.22398 -6.62812 -2.94368 -6.00665 -2.64249 -11.8656 -15.2316 -11.3186 -10.7952 -11.4162 -11.3584 -10.5698 -10.589 14.2225 -12.5284 -21.1316 -1.96587 -4.84808 -5.63514 -2.57576 -4.05663 -4.31262 -3.37469 -3.66319 -1.52741 -3.07415 1.12247 -0.942142 2.84841 -0.434072 -8.98144 -15.3427 -10.953 -13.5801 -10.1954 -20.405 -14.5372 40.8449 -7.23073 41.6248 -16.6634 -47.2879 -20.1616 -10.7813 -4.86355 -9.41325 -6.20497 -5.66568 -12.105 31.8419 0.976648 3.97102 -5.46837 -16.8552 3.32371 3.23389 -4.49222 2.57584 5.52154 -14.6767 -18.8748 -11.1936 -11.1886 -11.0804 -11.2369 -12.8035 -12.6891 -12.5458 -12.8048 -12.6971 -12.7047 -8.26423 -8.83421 -8.90139 -7.9367 -7.98502 -8.98238 -4.18472 -4.48396 -4.59811 -4.15986 -4.19517 -4.568 -9.24583 -6.31714 -7.71772 -7.80365 -8.989 -5.14635 -7.17007 -14.6856 -12.3494 -17.1234 -11.622 -15.4193 -11.9645 -18.4317 -14.9883 -18.9557 -16.8206 -17.8239 -16.5154 -21.9252 -19.5437 -19.6377 -17.9386 -8.26053 -11.3941 -17.8415 -16.7212 -11.0117 -32.2401 -30.0282 -29.4295 -31.9348 -30.293 -32.1958 -31.1134 -20.4336 -16.9605 -20.3049 -17.0454 -11.5643 -16.7917 -14.048 13.1754 31.0685 12.8685 47.6995 18.4659 58.774 13.4081 -57.7213 -66.0122 -70.779 -129.739 -117.164 -145.534 -131.073 66.9104 2.3774 68.9681 -44.5579 -140.604 -63.6927 -35.9023 -23.2185 -28.4601 -24.7716 17.4291 30.1914 20.488 67.9726 18.3339 54.0984 24.4324 -36.8172 -58.4384 -40.2522 -112.691 -67.5926 -120.288 -77.9573 -41.0814 -11.2549 -31.8882 -37.4213 -72.8758 -20.8453 -56.5201 -26.0232 -26.5454 -26.9191 -28.9831 -25.6618 -27.7993 -31.0199 -31.5355 -21.1253 -5.34818 -7.33644 -1.65029 -6.09598 2.31248 5.27568 0.560668 0.339157 1.23982 0.451779 1.36509 -1.17739 -1.24574 -1.59758 -1.37265 -1.50349 -2.0407 -2.10586 -2.00265 -2.05591 -1.98605 -1.29167 10.4343 5.07541 6.12189 1.57386 19.6589 7.77611 -18.3302 -26.8446 -18.0767 -32.6913 -25.1438 -47.0901 -26.8474 -33.3792 -49.5962 -59.1266 -51.2345 -30.2693 -29.9393 -40.4013 -88.5414 -46.103 -36.5011 -39.9645 -56.6502 -70.1435 -60.1376 -97.0309 -102.159 -133.849 -130.752 -99.1834 -97.8627 -129.359 -88.679 -35.2987 -112.789 -92.7739 -128.813 -145.395 -130.922 -165.078 -146.469 -130.28 -144.191 -167.153 -138.473 -128.842 -169.438 -156.605 -137.105 -131.645 -161.944 -154.955 -151.421 -127.572 -156.145 -129.825 -167.048 39.8934 31.3421 28.235 56.4668 48.9514 40.8258 38.1488 3.74724 2.71325 15.5249 22.0353 2.44949 -1.27379 19.4278 -50.3215 -30.9463 -32.7112 -107.937 -94.531 -65.2587 -53.8936 -50.6589 -56.0188 -78.1488 -48.5853 -67.9868 -93.0683 -141.262 -120.61 -135.012 -112.833 -114.213 -125.906 -152.742 -149.485 -159.115 -101.496 -135.512 -134.386 -148.05 -116.418 -120.604 -97.9674 436.8 437.102 434.538 435.114 433.695 436.879 437.325 434.998 -131.77 436.102 435.136 436.026 -106.899 -112.016 -125.55 -121.07 -114.569 -110.116 427.286 435.821 425.798 418.797 433.71 442.821 422.482 312.013 -13.4591 336.225 324.689 323.808 418.16 421.553 419.752 409.929 417.558 424.643 363.209 289.584 296.611 313.335 298.033 312.507 265.403 307.836 431.565 433.424 430.64 427.543 433.558 430.657 427.679 366.09 404.637 404.433 408.53 393.398 397.47 387.725 324.651 318.835 -12.931 315.032 319.19 433.509 433.641 429.435 429.529 428.928 433.384 433.384 432.489 432.639 -122.153 432.363 432.712 -134.216 -139.387 -141.491 -138.32 -138.78 -80.2888 -54.245 -69.0652 -67.5239 -83.2138 -77.4629 -86.1198 -92.6453 -90.4427 -90.3524 -133.615 -135.138 -122.193 -125.529 -137.661 -129.246 -126.481 58.2531 51.2852 45.3139 114.859 71.9162 67.0675 53.9471 -121.338 -68.4203 -91.384 -90.8739 -137.856 -79.3823 -118.732 -3.55505 -5.20437 -9.4155 -11.012 -7.38671 -1.27436 -2.52134 -75.6162 -91.9671 -125.064 -116.423 -84.9867 -82.2102 -107.7 429.696 392.171 414.648 392.009 415.076 404.903 416.571 438.178 433.67 433.97 436.854 437.183 435.343 432.521 406.21 389.939 330.718 394.636 422.862 373.291 -5.76778 -6.51966 -6.96479 -4.84309 -2.75113 440.7 432.013 434.121 435.01 434.151 438.367 436.146 383.291 403.505 372.073 417.712 326.811 418.19 395.284 264.347 302.043 291 246.818 316.035 262.326 251.941 430.758 429.421 431.698 430.924 431.688 430.624 431.349 243.364 443.183 395.143 348.774 431.927 334.986 340.81 367.227 347.796 297.901 472.945 205.799 376.37 424.207 411.423 426.489 402.754 421.101 410.629 224.973 264.029 396.059 256.096 228.404 228.611 576.001 430.426 430.236 429.813 429.943 429.919 431.28 430.352 439.559 431.354 437.89 460.563 422.667 409.542 255.527 271.512 273.99 254.759 292.202 225.223 406.141 376.382 404.057 401.714 410.687 391.293 406.017 430.404 431.025 431.112 429.977 431.708 428.812 430.051 416.916 449.132 416.373 417.596 420.183 424.149 425.641 267.602 245.08 274.406 361.305 261.619 297.479 260.46 414.932 420.234 419.381 404.644 -44.6513 -41.621 -56.211 -45.5508 -53.2728 -95.9759 -94.9908 -84.8581 -82.9809 -97.2299 -94.6243 -85.0415 6.44964 3.03456 -0.0893642 4.4721 6.44834 -15.4353 -8.41041 -8.10672 -8.62942 -8.06072 -13.4127 -13.5101 -13.7062 -13.2161 -7.0049 -8.15607 -6.69292 -8.29577 -3.63571 -3.89642 -3.60803 -3.9903 -4.61532 -0.777436 -1.87536 -4.22586 -4.97699 -0.678 -2.60545 -7.40879 -12.372 -8.33256 -12.0559 -8.5279 -14.9494 -10.0186 7.38232 11.1904 43.1352 -36.3868 -33.3693 -25.9097 -15.4584 -21.0549 -19.4486 -17.348 -23.3282 -102.247 -68.9925 -133.874 -151.079 -89.6163 -95.7273 -141.289 438.859 436.946 436.772 436.669 439.064 439.057 438.139 -214.028 438.202 -83.2889 -94.1148 -106.153 -112.653 -89.9299 -93.6117 -100.093 434.343 435.205 435.793 435.108 436.58 433.973 435.319 367.272 349.47 350.78 404.334 219.385 404.621 406.727 256.163 283.452 270.649 263.153 231.154 314.26 312.753 287.467 272.592 390.13 420.03 63.7238 398.15 404.236 255.155 283.336 288.229 244.547 534.161 266.575 224.173 459.254 450.352 431.734 445.734 445.156 450.935 448.042 214.88 386.822 173.114 314.733 231.451 255.568 170.161 476.349 439.183 420.116 452.202 450.883 236.714 228.334 223.529 221.568 235.195 228.71 226.002 460.134 452.614 453.669 450.041 190.798 225.54 297.879 294.802 287.279 270.677 153.703 380.669 400.824 380.451 375.342 404.132 387.262 407.723 125.824 646.452 -14.2533 -354.572 229.874 438.206 94.762 428.641 425.74 429.808 427.322 427.765 425.584 429.31 419.619 458.167 419.308 427.408 435.335 434.104 424.393 292.435 313.331 255.052 326.776 254.779 335.992 282.845 435.031 432.466 428.235 429.496 433.798 432.387 429.74 -81.6952 431.687 -86.6721 431.001 -127.69 -129.751 -127.022 -127.867 -129.115 -127.912 -127.211 -149.681 -132.949 -152.591 -140.923 -141.798 -134 -1.29558 37.7477 26.6034 -14.1806 -64.8405 -55.7352 -33.3814 -24.6324 -17.0848 -16.8246 -31.7235 4.32524 7.51982 6.74759 7.54833 6.7626 -3.46673 -2.37622 -3.13714 -1.44691 -2.65934 -1.74031 -1.78833 -1.73225 -1.78518 -10.8583 -13.3315 -15.1923 -11.7349 -11.6581 -12.6773 10.6027 56.8531 13.8082 28.6444 10.9512 62.6586 14.2872 -30.3748 -91.3421 -50.8626 -52.8408 -33.6747 -97.0217 -55.9948 429.669 400.851 416.844 385.872 418.521 403.193 417.414 435.224 437.763 432.788 436.958 435.791 438.025 432.893 208.062 435.314 413.146 218.326 414.094 323.939 -6.04972 -9.52822 -6.82066 312.005 436.654 434.181 434.242 435.373 434.591 437.536 434.636 426.691 411.22 419.964 429.615 392.205 449.228 440.397 183.72 169.41 303.794 304.196 221.901 239.755 249.119 489.563 451.706 454.281 461.159 465.109 462.101 198.714 212.95 186.875 161.595 339.378 212.403 79.4121 408.845 413.813 411.671 412.703 411.798 412.331 410.034 291.533 106.828 302.078 308.337 230.885 220.133 331.434 270.044 238.822 258.315 244.336 258.335 262.543 264.84 214.124 223.209 274.166 320.933 96.1394 281.237 301.53 256.601 250.932 214.161 261.562 235.139 268.443 249.063 453.535 447.335 449.935 452.946 437.43 243.583 239.996 187.903 225.485 188.372 333.099 337 408.361 383.981 406.14 401.359 409.485 387.79 407.094 333.824 397.611 396.414 399.441 398.833 351.211 404.238 225.054 241.063 249.876 322.39 249.011 230.626 273.907 271.756 362.619 374.79 380.104 345.789 290.691 398.97 -38.1637 -51.3306 322.517 -37.9616 323.263 29.202 66.5193 52.1561 146.363 15.1898 65.348 48.8086 -30.4836 -46.0931 -15.966 -40.3363 -27.7612 -44.3988 -18.5952 -15.2907 -49.846 -15.0732 -54.8162 -15.7373 -51.0076 -12.8456 11.3907 62.7653 13.8139 31.2447 12.2193 61.7221 16.414 -33.3572 -100.714 -58.2395 -57.4326 -35.2581 -105.172 -60.4329 -101.897 -93.9345 -116.382 -127.82 -97.0144 -100.901 -123.239 415.88 403.353 417.228 382.438 430.286 402.419 417.419 372.144 274.248 427.512 386.317 247.814 382.236 386.489 354.119 344.82 355.763 344.224 220.19 448.32 411.504 277.784 440.407 290.99 279.506 280.426 331.962 236.463 362.324 275.679 494.359 432.408 445.346 497 432.845 246.404 243.391 219.632 252.058 232.955 255.782 219.703 280.468 266.5 280.938 280.72 276.024 274.543 280.852 406.141 403.402 407.456 409.385 403.779 406.305 407.655 419.707 418.851 418.607 416.437 419.421 420.715 419.032 461.049 488.414 448.681 450.092 461.518 476.358 452.318 188.255 193.743 200.569 202.974 202.174 192.671 174.08 409.976 388.033 407.543 400.566 410.136 385.222 407.572 427.988 427.874 428.435 429.161 426.334 428.829 428.421 449.233 441.878 440.981 448.917 438.868 310.678 271.841 256.754 269.478 279.038 270.363 289.475 407.634 437.198 444.802 435.708 330.465 305.264 312.294 314.951 319.34 15.1133 61.74 45.0638 129.666 6.14449 58.4703 38.3313 -47.164 -54.6371 -41.4953 -50.1886 -41.7638 -57.2717 -39.5484 -15.0684 -48.5069 -12.549 -54.2748 -12.1836 -43.6269 -12.1828 -11.2087 -12.1217 -12.793 -10.8818 -12.9519 -4.224 0.417183 -1.50133 -2.946 -3.92633 0.873056 -1.14712 -8.58968 -15.481 -10.9414 -9.61239 -7.51381 -12.1005 -9.25061 421.919 401.036 421.701 425.221 409.681 417.146 427.738 -12.5413 -18.0592 -14.0964 438.911 416.579 425.598 443.339 424.957 439.551 449.031 301.838 320.281 278.922 365.976 444.998 284.065 327.61 490.903 456.512 432.696 439.816 268.147 256.439 272.335 367.41 329.346 403.011 239.573 120.354 106.578 328.087 372.422 239.618 325.829 257.14 277.656 263.926 196.213 267.971 359.574 263.491 230.588 305.383 337.542 133.891 143.191 349.443 220.726 251.923 231.008 245.786 223.371 236.715 329.117 433.215 437.032 432.79 432.717 436.446 439.522 431.892 460.564 469.19 419.314 440.348 458.236 469.799 442.985 170.304 211.492 275.548 170.537 357.832 225.417 45.036 431.25 428.441 429.992 430.218 429.781 430.859 430.873 279.56 360.603 386.13 342.135 393.487 214.735 346.922 244.117 255.466 176.313 261.261 228.697 235.278 210.09 436.059 409.371 413.166 418.767 401.923 -22.631 -28.6426 -20.5302 -30.6815 17.5542 15.0627 12.5683 17.4934 15.9989 12.666 11.8194 -14.5227 -12.1717 -9.52756 -16.7969 -10.5099 -10.3204 -8.6625 -7.38381 -7.51109 -13.0857 -12.5564 -12.6277 -13.0904 -4.40596 -7.13864 -5.09552 -7.94694 -3.66819 -3.5513 -3.41785 -3.69772 -11.9205 -9.21707 -5.34703 -10.5415 -9.88736 -9.39199 -13.9398 -8.76719 -2.11138 -11.2002 -6.88188 -11.6112 -6.5979 -9.4746 -28.8674 25.0525 -14.0723 -10.2769 -25.6484 -61.638 -49.2223 -57.0506 -53.573 -17.3718 -27.7458 -41.9202 -35.6078 -25.5918 -33.939 -27.3936 -99.103 -84.9468 -70.387 -46.3202 -101.512 -74.9843 -63.2874 438.812 437.6 437.567 439.462 -100.184 -146.905 -146.028 -138.11 -142.832 416.214 407.713 418.298 381.124 417.693 396.867 415.514 453.629 446.734 446.677 415.012 433.073 442.336 451.524 449.739 460.579 449.391 298.837 291.178 209.874 357.37 295.984 292.96 248.058 478.238 447.394 437.567 431.073 246.013 243.445 191.846 253.855 215.494 200.025 234.324 423.197 431.323 437.143 466.126 396.826 248.182 236.023 225.503 203.379 231.114 237.446 353.85 403.999 429.133 419.937 407.9 452.079 301.933 423.371 255.847 252.331 236.291 244.302 243.446 269.25 235.971 88.0626 331.686 393.155 225.772 356.357 39.8346 159.892 120.546 568.441 274.229 212.852 283.321 432.053 429.378 431.822 432.41 429.74 432.787 433.424 282.619 280.398 408.66 408.975 377.782 394.047 317.952 300.475 299.789 309.189 302.352 306.726 309.869 433.515 431.324 430.242 433.501 -164.706 -155.212 -167.157 -152.749 -159.092 -153.105 -172.173 -167.521 -160.914 -153.133 -169.119 -8.23341 -39.431 -32.1674 -18.6432 -9.73808 -45.3452 -21.0016 -49.4519 -56.7447 60.3731 -15.4611 -15.1094 -32.7707 -40.9836 -29.6144 -21.1555 -28.0661 -18.8028 -32.7187 11.7824 7.32144 15.7928 35.8847 9.92466 6.48129 22.1822 -2.63896 -4.44494 -12.1458 -20.8906 -5.23082 -4.13062 -2.56176 -5.62324 -7.03556 -6.72101 -4.51745 -1.34215 -5.93156 5.14136 5.17585 -5.20039 -4.63056 -6.96265 -3.27209 -4.18716 -3.07935 -2.63601 -2.70265 -2.72822 -61.3981 -80.199 -111.447 -22.5563 -41.1321 -43.0107 -69.1503 -77.0215 -87.8967 -82.8243 -67.4457 -85.9005 -76.7642 -67.1663 438.946 437.453 439.093 439.456 438.103 438.53 439.638 420.335 -150.349 -133.719 -23.8586 -23.6089 -28.8451 -35.6768 -24.0753 -22.8501 -31.5893 441.11 451.504 435.853 453.904 444.43 451.955 296.36 245.393 268.278 283.789 301.328 277.744 291.374 147.911 450.943 439.166 443.611 435.777 277.38 306.095 148.517 311.142 330.246 285.922 214.907 416.251 404.489 415.141 391.638 415.569 389.326 414.144 435.579 337.462 393.831 408.577 438.363 383.426 423.303 175.436 272.613 344.382 140.624 201.44 281.427 226.582 429.637 430.442 137.362 461.317 426.434 265.841 248.02 426.932 243.285 206.238 275.452 288.519 381.449 323.257 416.178 388.019 405.997 241.969 411.338 297.426 287.854 284.349 288.987 282.199 301.772 293.589 434.344 433.918 434.763 434.583 434.23 433.873 434.846 -145.958 354.576 -162.075 6.92705 -24.4665 -25.3618 -0.36776 -1.05678 -33.4639 -9.84169 -132.17 45.401 6.06399 52.1569 15.361 26.0277 11.3467 -81.674 -108.914 -64.0869 -123.903 -64.2667 -73.636 -44.7202 -12.0683 -13.8577 -8.70873 -7.35593 -14.8842 -11.711 -7.62794 -4.12868 -3.8452 -4.97936 -7.41271 -3.37035 -5.20729 -6.20612 -2.46203 -2.29421 -3.06628 -3.52143 -2.37456 -2.75998 -3.07756 -10.681 -10.5394 -10.526 -14.6087 -9.53516 -11.3565 -12.187 -13.9683 -17.9307 -17.4889 -12.1061 -12.6117 -15.3167 -14.99 -8.38081 -15.4436 -11.0337 -10.4267 -8.29703 -13.5742 -10.4541 -2.18448 -6.56381 -2.79152 -4.68466 -2.01499 -6.02375 -2.51385 -89.7258 -2.44857 -123.308 -168.984 -161.768 -189.527 -151.897 -181.056 -161.732 -178.599 248.689 299.115 310.555 198.262 329.066 206.608 233.753 433.52 -88.3739 436.267 -88.3674 -137.136 -130.621 -124.924 -130.681 -129.265 -14.406 -12.8751 -21.7692 -40.3071 -10.6492 -17.7933 -35.4255 436.356 436.054 436.991 436.677 436.368 435.974 436.748 411.336 413.598 402.349 413.172 396.133 -13.0723 -12.6827 -22.0451 -14.294 -19.5891 430.263 417.223 436.394 405.26 434.431 410.481 429.726 -4.80116 315.1 309.374 300.894 -5.59748 435.487 435.626 435.583 436.567 435.286 435.809 436.611 431.838 429.184 416.67 433.309 -10.565 -17.613 -4.61559 -10.6108 -19.026 -105.838 437.445 434.324 -109.847 437.474 -143.177 -136.405 -140.548 -143.847 -149.432 -138.026 -6.48171 -27.1236 -34.0278 -8.59208 -12.048 -37.4509 -17.2245 -169.041 -20.1296 -157.764 -123.076 16.4546 17.1485 10.4958 19.7795 13.0585 9.58278 5.08869 -44.3447 -46.0328 -33.0291 -40.1886 -30.5104 -31.0715 -23.4723 -15.3992 -19.5744 -18.79 -14.2024 -13.7726 -17.1303 -15.9026 -28.1552 -18.3761 -29.3575 -26.3074 -28.9301 -32.2265 -19.2132 22.5763 47.9682 17.4078 16.9571 10.4146 22.9174 11.2138 -47.793 -112.018 -59.5553 -40.1607 -30.079 -52.8258 -34.7955 15.9902 65.8127 5.33118 26.7786 12.3584 32.6717 10.5167 -65.3945 -113.154 -65.5392 -57.6752 -37.145 -64.2657 -39.364 -5.96613 -19.73 -6.06956 -13.6859 -6.11507 -12.2822 -5.49119 -115.49 -101.801 -100.891 -125.006 -161.898 -123.206 -126.522 -129.885 -89.3875 -81.311 -6.41039 -20.399 -5.48678 -16.4151 -5.99279 -9.85866 -4.08924 -57.6768 -114.727 -61.7106 -63.6138 -35.3851 -63.0578 -36.2318 -105.304 -38.5504 -72.4017 -31.3941 -47.3375 -19.9425 -38.0146 -28.2663 -41.2792 -7.44204 -13.3487 -35.177 -28.5735 -11.5739 -24.6352 -28.9244 -21.2349 -19.073 -25.245 -19.3883 -7.64262 -8.76397 -9.19409 -9.40786 -8.12175 -8.29257 -8.50094 -10.4817 -10.6697 -8.02075 -6.978 -4.62064 -4.08426 -10.5876 -21.6391 -15.5093 -12.1946 -9.58634 -16.4772 -12.1508 -29.5882 -21.2791 -25.8444 -35.2042 -35.9145 -29.4591 -16.3869 -18.7839 -18.3755 -17.3388 -7.76137 -10.8879 -7.36822 -4.15256 -14.3761 -14.5098 -7.37081 -6.05881 -3.77636 -3.48839 -4.44699 -2.87333 -3.60256 -6.58937 -3.08933 -3.92933 -5.6482 -20.5495 -14.0982 13.7772 -21.0354 -6.97141 -21.6749 -22.4942 -5.25939 -2.74976 -6.28759 -2.0676 -5.98462 -3.55103 -6.58947 -12.2607 -7.29544 -12.7969 -8.22677 -10.3583 -8.28873 -10.9613 -14.6647 -10.1227 -14.3417 -15.0413 -16.4254 -12.4791 -4.99845 -6.07686 -6.5083 -5.03764 -27.9872 -27.8584 31.98 -7.38766 -15.9369 -11.1284 -8.64801 -14.8352 -5.67676 -3.4322 -8.29392 -8.49305 -7.89437 -7.82879 -8.4664 -8.09367 -8.00304 -13.2874 -10.4823 -13.447 -0.989919 -0.936735 -7.32555 -10.182 -1.39107 -0.489447 -6.53331 -12.2002 -10.6374 -12.728 -13.7866 -11.2683 -11.8373 -15.0786 -8.31471 -7.24729 -4.65286 -4.09797 -10.9302 -12.8705 -10.5802 -8.0177 -7.95813 -7.76329 -7.91647 -9.08502 -7.87858 -10.463 -7.992 -9.02201 -11.2284 -13.0991 -8.86959 1.95368 1.0045 -15.6281 -8.5718 0.966375 2.88817 -16.1841 -11.3066 -13.8507 -11.5679 -10.0278 -9.60268 -10.0889 -10.0648 -7.81576 -4.17768 -10.4634 -11.0439 -11.4419 -11.9366 -12.0285 -9.41407 -10.0656 -10.0411 -8.88116 -6.65654 -7.15618 -5.05418 -5.21406 -5.18742 -4.04966 -3.79639 -3.80533 -0.280752 -0.815436 -0.729914 -5.75961 -7.82986 -5.21832 -5.25928 -2.04343 1.061 -0.757991 -7.23751 -6.9562 -7.31513 -11.3476 -12.1858 -11.552 -5.30842 -18.5281 -9.23128 -16.7377 -22.2426 -16.2317 -12.5155 -12.5407 -12.8412 -10.353 -9.19818 -10.26 -17.0949 -22.742 -18.3051 -8.86706 -13.8324 -11.6987 -6.79311 -7.72713 -6.45379 -5.1369 -4.73886 -5.02056 -6.39912 4.58123 -2.23076 -3.50136 -3.17213 -3.58354 -3.73827 -3.99694 -3.67398 -0.874017 -0.335135 -0.991688 -3.12813 -2.75225 -2.88646 -0.332679 -0.770901 -0.821418 -4.74704 -7.07929 -4.54083 5.51787 18.6011 8.43539 -1.88687 -2.50791 -1.7645 15.4137 -3.03756 -3.8735 -4.1331 -11.3548 -9.75286 -10.4914 -9.62228 -11.749 -11.4511 -12.1679 -7.6118 -8.8034 -8.78922 7.16772 -12.8123 6.76642 -2.85085 -2.83747 -2.73965 -5.95275 -4.89297 -4.44271 -3.80737 -4.09922 -3.9657 -2.50715 -2.59198 -2.50543 -0.745613 -0.36997 -0.782189 -3.30945 -3.13455 -3.07447 -0.326895 -0.818581 -0.768112 -2.42245 -4.02441 -3.51647 -3.89825 -9.13533 -9.35355 -8.60079 -10.7474 -10.0039 -10.4764 -8.61503 -7.88235 -8.71671 -5.01497 -6.49763 -5.27791 -4.24438 -4.15493 -4.33451 -3.23696 -3.5039 -3.28093 -0.812984 -0.358646 -0.760819 -7.62838 -8.04716 -11.3545 -10.5824 -10.827 -11.7013 -11.5933 -11.8209 -9.34643 -9.97488 -9.94603 -7.98969 -7.09483 -7.02914 -4.96323 -5.31934 -5.19562 -4.03162 -3.76915 -3.75007 -0.281822 -0.812006 -0.694712 -11.5054 -12.7391 -11.0164 -11.0668 -7.03883 -6.97358 -7.65955 -7.11742 -6.95011 -6.99276 -6.98835 -8.78965 -9.46899 -9.34848 -8.88803 -10.3124 -10.0368 -10.3823 -9.95605 -9.69835 -9.09139 -9.01177 -9.76657 -7.35854 -8.15127 -7.33399 -8.1638 -5.92212 -5.34579 -5.51605 -5.94616 -4.2785 -4.59876 -4.39406 -4.59598 -0.88227 -0.263151 -0.863398 -0.294698 -6.81037 -6.82181 -6.81932 -6.92037 -9.18797 -9.68329 -9.53579 -9.66422 -9.21522 -8.99793 -10.0974 -10.1351 -9.26285 -9.51448 -9.51439 -9.71985 -10.1148 -6.07161 -6.2015 -5.45706 -5.50034 -5.41631 -6.01736 -6.10337 -0.786659 -0.268423 -0.318019 -0.76373 -0.884847 -0.265269 -1.49192 -2.08823 0.917362 0.0876264 -1.08435 -2.36827 0.366557 -9.65986 -4.48302 -17.2005 -6.85977 -17.1596 -9.49213 -4.67185 -18.3046 -17.2405 -23.0039 -20.3368 -22.5055 -18.4099 -16.9901 7.81127 4.16822 15.8924 4.67644 16.1301 7.93043 3.73078 2.26786 10.4812 5.88425 2.63196 4.86435 2.08534 3.31544 -2.52025 41.7187 41.1498 -11.8441 -12.5654 -16.2009 -17.5272 -16.7232 -1.7074 -19.0195 1.99428 -6.98799 2.16054 -5.82527 -1.84058 -5.34313 -7.33316 -5.37198 -6.92601 -2.63821 -2.79962 -2.74965 -2.74343 -5.64074 -6.0458 -6.50909 -6.31337 -5.97043 -3.40238 -2.45765 -2.51613 -3.31213 -2.79147 -3.11143 -3.49149 -4.42968 -5.37664 -6.2286 -4.47302 -5.77663 -4.10643 -4.74865 -7.42521 -7.30204 -6.64342 -7.0946 -6.84221 -7.06414 -7.62156 -7.68498 -6.72046 -7.83715 -7.87352 -7.22494 -7.35686 -8.32132 -7.80289 -7.4333 -8.35233 -8.20144 -7.59131 -7.51713 -8.65449 -4.74578 -4.68007 -4.37099 -4.52239 -4.42721 -4.45429 -4.90844 -6.36061 -6.67349 -7.94045 -6.86032 -7.00455 -6.1259 -7.23784 -5.71939 -5.05521 -5.57941 -6.24901 -5.15759 -5.51019 -6.55657 -0.899147 -0.835516 -0.310531 -0.792488 -0.402486 -3.11349 -3.87708 -4.39946 -3.26334 -4.04888 -3.01128 -3.37257 -1.84188 -0.708057 -0.912119 -1.95589 -1.67515 -2.10751 -0.770747 -5.72203 -2.22822 -4.50399 -2.21715 -2.70893 3.25521 6.60016 -1.15183 0.459705 10.3393 0.640033 -1.56589 14.0592 -17.362 -21.1127 -32.9636 -9.63228 -12.818 2.33199 -3.04326 -0.843323 3.54412 -5.51851 1.2784 2.5423 -9.97426 -13.6409 -10.5425 -10.1955 -9.2408 -10.9733 -11.3855 -18.5344 -24.6416 -25.0302 -19.338 -21.0551 -19.6044 -5.82256 -6.12206 -3.5678 -8.24415 -3.90249 -8.57376 -6.04631 -6.38075 38.3032 37.1728 -18.6534 -18.2931 -19.3455 -25.6389 -27.0449 -25.7293 1.63997 0.724174 -1.60977 -0.56185 -7.77725 -8.57989 -7.24815 -11.4863 -11.6299 -12.7501 -9.29078 -9.90572 -9.46272 -9.36783 -9.07592 -6.73428 -5.8154 -5.7722 -6.70787 -10.4271 -11.7731 -12.7583 -14.2258 -10.4076 -11.4271 -12.4577 -3.20291 -4.04077 -2.88861 -4.46594 -2.16082 -2.97072 -2.77395 -1.74612 -1.93933 -2.05731 -0.647365 -0.390945 2.41772 5.69953 9.12138 9.46968 6.94449 6.42056 5.99627 -4.68648 -5.76124 -3.00594 -7.16383 -3.97006 -8.83191 -6.95455 -7.06148 -8.32797 -7.89478 -5.02655 -4.46898 -5.24246 -3.89955 -5.56191 2.06305 -2.64643 -0.488335 -1.8601 -0.320661 -0.510546 -0.247009 -0.441006 -0.44834 -0.366043 -9.5562 -9.67701 -9.42013 -7.48076 -8.86245 -5.3984 -6.07278 -6.93602 -5.78859 -8.15513 -7.20966 -5.74798 -3.59066 -5.08664 -5.95841 -7.63364 -5.0993 -9.26171 -11.5947 -10.1318 -9.1349 -10.3415 -9.01717 -9.64254 -5.76349 -6.65651 -3.64906 -5.36242 -5.4875 -7.12821 -5.45053 -13.3244 -17.7007 0.35318 57.3506 53.8986 -29.9768 -31.1508 -31.905 -55.0998 -59.3294 -54.7399 3.49849 13.2788 14.6019 9.29508 14.4278 5.62579 10.0736 -17.6566 -12.9082 -13.6326 -13.5571 -17.2226 -14.6208 -16.4382 10.944 11.0311 11.6795 16.7499 10.5084 12.5667 11.7593 6.6821 4.40093 5.63046 4.40128 6.34874 6.49785 6.04769 8.94465 8.2355 8.67392 7.93782 9.00154 8.60569 8.62374 -11.7153 -13.8898 -8.10648 -8.04268 -6.84012 -4.59173 -8.75661 -6.68219 -5.68872 -7.51467 -6.14572 -6.22558 -4.74216 -8.01182 -6.44029 -5.61649 -1.30769 -2.54121 -0.38761 -3.31913 0.0668871 -3.8607 -1.84347 7.94564 8.2692 7.56763 7.49145 8.23915 2.18645 4.5615 -11.3944 -11.7092 -11.013 -11.1567 -10.5915 -10.6986 -11.1854 -11.2127 -10.2943 -12.3631 -12.7043 -12.6443 -12.5702 -12.3215 -12.29 -10.9176 -10.1063 -10.0577 -10.1636 -10.8551 -10.7929 -6.21945 -5.72299 -5.72796 -5.73084 -6.17136 -6.12318 -0.881274 -0.305954 -0.275278 -0.877877 -0.884459 -0.313318 -22.5201 22.0937 -27.5177 -24.881 -20.8334 -18.3486 -18.9467 -23.3233 -21.899 -19.9463 -29.2123 -32.4775 -50.5398 -26.5524 -9.77102 -18.1508 -5.76263 -15.4389 -30.0078 -20.3637 -43.2616 -30.1893 -41.9716 -45.8331 -38.1009 -36.5706 -51.1416 -31.2074 45.5509 79.1688 -74.9581 -85.8241 -84.4535 -153.08 -162.777 -156.821 -30.2133 -44.9128 -42.4809 -55.0068 -28.5451 -43.1511 -41.0713 -18.2921 -5.06421 -7.41593 -65.5518 -86.6049 -63.8581 -22.8088 -14.9327 -19.1494 -19.371 -19.2722 -18.1309 -24.4341 6.23848 4.04195 4.88176 4.07455 5.90409 5.75232 5.67758 5.75415 6.72392 6.11633 6.8616 5.6408 6.9243 6.04174 4.21208 2.1784 4.89446 2.79944 4.17244 2.21784 4.85909 -1.64402 -0.0725741 -0.7891 0.412109 -1.31659 -0.21433 -0.932407 -2.84588 -2.62783 -1.70324 -2.44867 -2.41456 -3.15191 -1.99465 -3.40442 -2.70709 -1.95523 -2.68358 -2.71541 -3.44888 -2.67978 -3.58479 -2.84819 -2.40329 -2.82884 -2.9435 -3.17164 -3.04229 -2.22728 -2.39221 -1.8995 -2.40782 -2.07659 -2.68234 -2.07326 -1.59975 -0.678354 -1.186 -0.64525 -1.43647 -1.38873 -0.731311 7.69 7.57012 7.70265 7.61094 3.54577 3.43753 2.37911 2.51435 3.37138 -1.58795 -1.75284 -1.69579 -1.62112 -1.66151 -2.21568 -2.26775 -2.37942 -2.3593 -2.293 -0.428539 -0.660482 -0.766056 -0.343199 -0.692958 -0.382479 -11.6865 -14.0138 -14.2231 -11.3359 -7.90352 -7.79833 -5.63507 -3.91699 -0.726669 -8.5157 -9.1375 -8.7144 -10.3987 -8.15679 -9.74836 -9.12583 -64.3336 -29.7665 -61.0852 -55.6549 -48.8581 -35.2373 -77.0718 -96.6885 -81.0908 -97.2592 -103.082 -120.935 -116.122 -113.974 -107.316 -125.609 -104.05 -109.708 -121.229 -130.52 -128.51 -126.415 -135.174 -133.919 -114.659 -119.922 -156.84 -124.281 -132.58 -136.34 -146.358 -118.611 -96.6254 -100.762 -102.249 -97.7015 -98.9897 -129.222 -129.901 -129.931 -133.354 -125.102 -131.26 -131.194 435.271 434.471 433.96 435.374 434.041 435.637 435.444 436.521 436.52 435.987 436.083 436.632 436.184 -176.909 -160.187 -185.492 -161.558 -180.433 -157.074 -180.39 -141.558 -134.339 -133.951 -137.429 -139.35 -136.789 -137.579 435.619 435.498 434.776 435.175 -157.079 -145.858 423.587 -145.504 -158.313 -69.7862 -51.2066 -63.721 -44.4643 -77.2073 -47.8283 -60.6653 -109.957 -123.499 -125.616 -106.118 -16.117 -29.7219 -11.8165 -23.1091 -15.8989 -32.1018 -13.1232 436.735 436.549 436.234 435.737 436.806 436.305 435.938 435.048 435.673 434.847 435.145 434.668 435.582 435.554 -140.667 426.275 396.46 439.739 426.879 402.407 391.484 395.961 417.093 427.32 483.179 -98.2824 -145.705 -104.862 -134.807 -108.521 -133.185 -99.5576 -102.771 -120.208 423.54 432.21 -105.175 -41.2682 -35.7786 -39.8455 -30.5415 -42.9433 -35.2515 -37.6082 435.674 435.402 436.214 443.559 -28.6822 -15.87 -18.3663 -27.2437 -17.4477 -25.3104 -16.8594 -20.0157 -15.4445 -18.2537 -23.9344 -1.1358 -4.42634 -7.29075 1.73861 1.5736 -160.065 -71.8804 -81.3053 -144.859 -71.2103 -158.492 -155.389 434.841 434.488 434.253 434.495 434.233 435.051 434.406 -171.975 -159.13 -179.022 404.62 414.258 354.213 418.388 408.223 420.788 373.21 433.549 433.987 433.727 433.43 433.837 433.658 433.334 440.207 416.546 438.54 447.373 -118.955 -164.497 -121.504 -154.122 -119.4 -155.351 -122.641 432.335 418.07 419.316 413.3 425.431 -22.2844 -12.5531 -23.522 -12.1738 391.929 418.782 418.271 -46.3517 -45.9441 -41.4798 -50.9927 4.49641 -2.00563 4.3262 -1.43752 -14.6535 -29.1499 -20.8479 -15.8671 -24.385 -18.1024 -11.5986 -102.745 -117.069 -91.4484 -116.155 -95.5704 -115.604 -102.684 435.091 434.664 434.715 434.565 435.047 434.743 434.837 431.728 434.104 -89.224 434.898 -117.691 -118.166 -121.489 -114.168 434.578 -178.857 -189.576 -182.37 -177.187 -185.476 -182.428 -177.993 -165.059 -145.999 -161.52 -133.856 -168.092 -139.584 -157.632 433.847 434.123 433.545 433.901 433.609 433.706 434.108 473.761 396.819 -167.554 402.214 -134.734 -126.011 -129.491 -129.836 -131.685 -138.431 412.833 407.012 -137.867 -152.873 -59.9372 -50.5528 -52.5339 -45.8436 -54.7173 -52.2246 -57.2634 -21.2829 -32.5013 -19.6151 -28.6789 -20.486 -19.6762 -34.9225 -19.8254 -52.3845 -32.8674 -20.9527 -45.0593 -26.6098 -15.6771 -8.99299 -3.24317 -1.32299 -7.78055 -12.5068 -4.9699 -2.40362 -90.5424 -90.7593 -91.1536 -88.9626 -108.283 -114.955 -112.027 -112.001 -111.677 -109.552 -100.858 -102.099 -101.824 -100.679 -102.983 -101.629 -98.3242 -123.627 -122.01 -125.298 -120.175 -123.404 -126.908 -120.005 66.2624 52.3209 35.1842 26.4401 47.0927 63.0793 77.1432 62.5572 32.5569 45.7294 47.7993 51.8703 63.7827 53.3209 10.2242 103.631 -7.97957 30.0186 12.1565 38.8091 -57.0128 47.2662 -59.1624 -115.523 -88.1029 -87.4657 -110.499 -82.7087 -129.83 -116.91 -127.197 -132.83 -119.862 -55.5376 -107.553 -99.8848 -175.103 -109.775 -57.5614 -58.0262 -48.943 -83.9501 -44.6398 -81.2485 -60.6954 6.06883 3.27055 8.27453 8.05826 8.32849 8.02541 7.44513 7.6299 7.39188 7.62601 3.97527 3.0502 2.95552 4.26486 2.94086 3.90241 0.841796 1.71553 1.6533 0.853247 0.798372 1.61806 -0.705624 -0.427967 -0.400316 -0.752989 -0.692775 -0.376074 -14.5441 -16.5623 -13.9584 -11.3482 -11.5355 -11.198 -11.7864 -11.551 -11.5412 -11.7468 -11.7552 -128.913 -98.9037 -122.87 -122.699 -142.342 -106.531 -131.107 -129.552 -103.372 -134.996 -124.259 -136.045 -113.672 -131.14 -157.263 -192.312 -173.501 -205.689 -161.806 -200.09 -161.865 -125.321 440.198 -126.016 -161.659 -170.649 -182.988 -173.778 -165.955 -174.07 -220.867 -214.79 -199.435 -198.865 -212.699 -207.406 -206.462 -193.166 -188.632 -197.412 -186.1 -199.239 -206.586 -186.284 -174.136 -171.606 -185.861 -174.034 -181.63 -183.225 438.285 -108.373 435.412 435.846 437.977 -107.024 -129.492 -131.219 -129.822 437.499 438.512 438.318 438.251 438.431 438.361 437.615 434.24 433.27 434.926 434.654 437.29 436.791 -175.626 -189.888 -183.384 -162.534 -188.374 -122.895 -129.34 -127.836 -126.442 -126.54 437.915 437.545 438.043 437.502 438.323 -166.938 -176.953 -160.443 453.994 397.766 423.729 426.008 390.937 426.099 354.543 460.554 -64.2042 -92.0139 -52.6837 -45.9589 -78.9196 -78.5791 -45.77 -119.418 -137.798 -110.775 -117.951 -132.574 -4.06456 -0.726932 -4.79164 -0.307941 -6.86531 -3.76049 -0.218675 -2.25994 -0.31502 -1.71217 0.182713 -3.91765 -1.53238 -0.151838 312.364 324.291 309.623 305.381 315.135 324.974 288.549 1.95622 1.57635 436.786 436.322 436.429 436.842 436.598 -136.664 -139.569 -133.641 -144.582 413.711 408.415 416.253 404.048 333.659 376.847 372.046 422.339 474.048 353.493 466.513 409.66 406.584 399.297 380.23 415.128 374.871 467.717 414.362 431.244 401.621 313.981 412.839 420.717 404.609 -31.9698 331.729 298.521 262.523 395.452 400.292 384.712 311.288 372.376 353.293 302.416 319.537 318.033 289.689 317.391 309.433 295.488 414.263 410.429 424.795 353.166 423.278 334.554 422.011 317.216 336.983 313.625 327.526 317.128 320.824 319.647 -22.0767 -15.9952 338.756 -16.2122 -19.321 11.4553 4.23416 33.3555 289.212 255.398 335.969 224.738 307.18 288.872 258.774 -3.46826 5.48413 -15.8854 11.2193 432.778 435.324 434.928 433.972 434.372 433.649 433.269 418.309 428.301 384.318 464.631 416.743 418.691 415.105 493.928 380.686 436.94 330.169 514.264 373.031 423.21 410.068 424.665 437.714 432.38 390.927 443.937 383.65 374.533 423.394 436.298 417.321 346.537 418.379 374.228 329.218 347.666 332.592 329.572 345.468 438.281 451.681 437.951 451.625 417.734 269.886 341.556 348.62 334.535 284.213 327.311 329.756 452.942 430.784 442.347 430.983 232.199 416.228 328.708 286.405 276.354 220.99 442.655 443.087 452.659 429.987 455.905 257.663 164.83 145.297 186.684 180.724 0.850689 -0.19105 0.82559 0.935199 0.892872 0.357048 1.17281 329.261 338.722 310.85 313.152 300.664 326.556 328.044 10.4225 2.28792 7.90548 4.74212 42.1881 350.647 286.939 283.597 305.503 283.823 330.849 275.677 -59.6188 -3.16651 3.04738 6.05556 -25.3207 -26.6905 -2.95531 286.154 296.064 238.916 307.702 244.131 297.166 302.915 30.0546 -0.471727 10.2762 17.7957 23.6701 20.6759 12.4689 430.202 433.069 434.554 431.433 433.327 430.784 430.651 441.177 326.237 450.684 441.042 383.721 358.417 328.057 422.647 370.011 469.714 412.639 420.001 417.282 412.107 417.701 412.96 427.543 397.705 418.699 331.361 412.835 396.23 397.693 430.64 431.524 411.875 376.886 387.497 314.568 323.727 315.624 312.139 312.282 317.025 313.32 422.598 417.628 419.841 415.058 413.294 424.55 420.65 327.292 339.938 324.631 313.698 334.413 326.585 322.359 406.232 413.041 429.154 414.379 412.479 435.667 389.297 323.936 313.224 276.159 345.528 312.538 331.127 322.483 407.762 395.278 409.542 317.203 414.545 367.345 402.526 333.16 411.705 304.508 352.343 322.854 367.898 323.676 8.47359 1.93864 8.51913 26.0068 274.331 323.206 309.828 295.018 303.705 1.81689 0.0863766 4.32704 0.753854 193.999 298.98 269.006 365.469 183.657 226.159 355.956 5.27227 0.185369 14.4696 2.26429 241.314 192.944 277.654 234.057 200.869 266.315 328.659 75.357 4.09198 81.8292 432.365 434.34 433.869 432.041 434.395 431.423 432.512 432.841 430.414 433.183 429.254 428.944 433.003 434.056 433.55 434.177 434.302 433.305 434.422 433.293 433.485 394.839 391.747 403.273 402.576 410.643 350.036 343.437 432.165 433.758 432.795 432.753 432.29 433.104 432.533 407.062 473.167 421.708 423.681 381.824 438.116 446.618 368.122 408.474 423.983 413.292 449.659 350.113 388.742 358.149 394.23 403.549 462.632 307.009 322.09 316.637 300.974 319.067 414.975 -138.153 370.864 -140.061 399.313 -67.8151 -59.8925 -77.8157 -57.2652 -72.8361 -52.4707 -72.5728 379.839 131.49 425.513 241.352 431.465 273.133 340.291 207.611 409.894 188.006 326.207 403.217 391.152 393.242 140.761 277.211 295.293 297.198 298.453 297.623 291.985 0.466537 -0.318972 1.45242 2.55371 -0.868184 2.64139 1.83622 -33.1226 -42.729 -32.0075 -44.0362 -35.4485 -31.2963 -40.2751 293.965 164.107 227.024 280.427 298.833 293.281 247.77 1.40589 5.27125 29.0388 9.91169 23.3893 -11.716 11.1522 303.323 317.1 285.704 335.066 296.872 327.914 300.747 0.572332 -13.3439 -8.46219 -14.6651 -3.96579 4.01334 -2.10932 433.778 434.237 433.155 433.211 433.657 -82.1198 -92.559 -83.2977 -92.428 -83.5873 -103.454 -98.6875 433.373 429.56 430.26 428.984 432.207 432.225 431.265 433.295 433.045 431.393 432.103 433.024 433.072 431.977 -151.105 -146.102 -144.463 -143.309 -109.469 -114.419 -118.43 -123.883 -126.522 -106.424 409.291 386.641 414.841 403.295 360.842 484.71 420.704 414.626 417.141 403.521 420.375 401.198 420.4 413.019 -80.6773 -80.3106 -75.4472 -62.5458 -84.1257 -67.9737 -75.8214 468.04 405.151 480.381 389.592 441.743 410.126 371.24 376.972 364.986 294.637 -82.445 -74.3585 -66.7678 -86.3907 -40.9418 -55.5126 -46.7936 -60.2211 -36.953 -51.4388 -46.2173 -58.871 -25.3574 -72.5432 -76.1576 -46.7805 -54.2427 -59.1498 -44.6754 -55.9798 -43.1796 -46.3875 -52.3915 -91.4578 -90.6994 -91.2707 -89.5833 433.551 432.847 433.527 433.14 433.267 433.578 -111.095 -117.105 -133.45 -117.495 -110.963 -113.21 432.475 432.012 432.65 432.309 432.112 -119.164 424.504 -126.981 -99.8538 -85.1936 -87.3004 -96.2936 -89.6401 -95.8977 -98.5725 -120.547 -122.33 -123.093 -121.444 -121.432 -122.646 -0.744204 -2.77808 1.0517 5.07921 -0.170249 -0.198512 0.415803 -0.888073 -14.1097 -13.5549 -14.4547 -14.5664 -11.0577 -9.83865 -9.88563 -11.0521 -6.11414 -8.13416 -6.52654 -7.86037 -4.3969 -4.40664 -4.28751 -4.76301 -3.21036 -3.6567 -3.34039 -3.51891 -0.560214 -0.112298 -0.67578 -0.0997889 -3.48549 -6.06135 -6.41559 17.6701 -6.13613 -2.53967 -4.42237 -0.896717 1.27309 -3.33015 -1.88567 -1.50334 19.8082 -2.18545 0.27504 -3.39193 -1.27188 0.925781 19.8627 1.09775 -0.891514 -11.6416 -7.68635 -5.04724 -11.4686 -6.53024 -12.2093 -10.0573 -20.5533 -17.1245 -12.3923 -19.6152 -15.6112 -22.5095 -18.8916 -2.32731 -3.79959 -7.57234 -9.54352 -4.1782 -14.3809 -5.41793 -5.01152 -13.8669 -10.1773 -5.13182 -12.7173 -4.26263 -5.92927 -11.8112 -7.25124 -11.8683 -28.0216 -29.7933 -28.4423 -40.144 -18.4895 29.696 -42.5168 -18.4527 -30.4094 -26.5494 -30.5964 -25.3813 -20.8586 -16.4008 -23.0942 -46.6272 -31.427 -72.5641 -53.6038 -40.5414 -46.5042 -67.9388 -146.673 -142.8 -143.242 -147.128 -140.445 -145.71 -150.028 -223.546 -225.727 -223.447 -227.654 -223.053 -218.401 -233.351 -201.325 -160.091 -170.938 -197.803 -155.835 -192.751 -217.255 439.122 438.068 439.633 435.93 436.962 438.337 439.989 438.678 438.618 438.292 438.442 438.412 -144.23 437.307 439.686 -146.301 -207.228 -207.882 -210.194 -198.459 -214.27 437.708 437.677 437.988 437.458 438.396 -165.382 -181.01 -156.903 435.049 -216.705 -216.318 -221.438 -219.897 -216.427 -156.126 -143.238 -164.199 -135.73 -162.453 -139.349 -152.995 415.557 388.419 415.914 411.056 402.443 412.988 370.847 -106.397 -132.091 -113.19 -113.612 -121.961 363.487 385.785 415.592 363.033 406.065 227.075 399.869 292.416 290.724 302.452 290.301 308.408 282.673 287.02 -0.0441035 -0.758364 0.035561 1.99254 -4.16396 0.894558 1.56244 -0.00400371 0.242988 0.122633 2.64763 -4.63927 3.56894 1.18418 317.702 305.123 301.769 312.042 305.281 322.22 306.276 4.6333 2.24531 412.023 481.579 349.049 445.605 113.26 491.142 457.645 357.742 372.529 453.73 417.961 407.874 404.119 405.027 438.323 437.288 435.219 435.364 437.274 436.629 434.804 517.223 320.185 455.411 186.905 413.581 402.681 395.726 499.886 384.431 413.37 516.299 342.531 504.177 389.462 -33.9715 -21.6352 -20.2843 437.504 440.964 433.007 426.659 429.239 436.634 436.603 408.676 215.586 429.003 447.751 227.964 280.057 275.155 262.057 171.21 298.685 383.651 374.906 431.47 331.406 393.82 261.201 409.719 294.251 290.57 256.359 274.809 282.777 302.382 276.987 -65.6761 97.0005 39.0552 0.827071 -82.3477 -96.6359 -23.3716 -39.8967 -8.90559 -75.9998 -38.1409 -14.0904 285.338 297.345 272.612 286.398 284.711 296.837 270.606 -0.21684 20.5508 6.12711 -0.18391 359.542 404.373 473.252 424.837 415.721 411.892 430.273 436.157 433.045 433.091 432.193 431.299 434.298 432.389 393.211 448.741 528.907 417.82 298.062 491.119 411.075 161.583 529.724 501.512 731.32 456.619 436.546 436.099 360.216 451.315 384.857 567.489 341.498 757.468 348.015 416.725 408.864 374.958 423.383 407.876 425.989 419.432 284.531 283.737 315.593 249.09 293.041 283.717 296.647 456.14 426.397 100.229 437.318 452.446 285.286 289.404 263.522 324.213 225.192 306.45 425.858 440.165 478.826 431.593 485.285 328.653 168.145 271.706 269.82 275.724 260.984 -3.57954 -2.29756 62.213 -1.25845 246.552 270.552 255.581 291.821 271.455 214.012 271.965 -25.2286 4.79492 11.6496 241.782 318.396 364.584 218.691 290.205 309.55 301.106 -2.57431 -0.906238 7.60157 -0.832564 12.218 -6.01064 -3.57303 272.684 214.275 262.48 360.66 365.078 311.112 270.39 -4.52277 -58.1572 -17.8693 21.361 -26.1762 433.192 478.184 436.497 393.189 540.971 433.218 451.182 419.136 434.591 416.968 439.779 399.003 433.921 429.045 454.576 521.647 430.698 377.979 436.112 385.899 319.552 427.602 450.91 443.291 447.811 439.891 448.999 432.799 328.572 304.374 307.253 302.69 330.563 314.322 442.421 452.337 446.257 451.69 443.064 314.644 251.283 128.732 148.222 342.345 193.908 109.703 312.897 431.962 429.266 406.703 387.098 404.234 365.757 223.356 230.345 261.931 228.881 218.259 249.128 433.856 446.785 468.077 441.838 449.936 332.918 419.487 228.555 308.378 345.985 380.513 278.788 23.5136 14.8323 4.97612 1.85101 -0.0731416 19.8035 2.19831 256.937 262.193 299.904 251.761 263.432 288.866 241.032 28.393 7.55711 18.0357 6.21252 23.4081 28.085 7.16233 228.924 228.614 271.311 221.811 184.467 220.119 234.248 -29.4915 -0.0976262 177.762 455.698 21.9883 235.726 189.497 267.674 135.757 -48.4219 -31.7964 -39.0714 422.945 427.312 401.368 434.79 407.535 411.197 432.22 521.488 415.133 406.282 497.723 420.115 422.94 374.592 443.551 443.123 403.942 373.008 428.286 391.306 440.993 433.017 431.117 430.817 434.22 431.464 433.394 432.837 343.082 423.166 383.237 681.118 425.301 450.304 395.638 316.781 247.988 348.081 286.836 420.252 308.444 271.891 336.372 409.016 265.928 415.004 142.977 391.126 359.861 342.445 292.73 359.461 297.101 336.563 296.578 341.696 349.604 425.908 441.968 440.259 397.103 422.885 219.606 -20.2128 212.375 183.683 229.662 415.315 447.87 457.739 427.062 432.274 460.648 254.651 122.065 250.582 234.631 272.734 279.329 4.17456 2.66868 8.2867 0.121809 340.197 270.615 190.836 276.028 261.75 272.193 289.268 -1.31961 96.4818 0.860151 -2.61409 434.55 184.808 231.193 222.803 404.916 235.743 238.857 -31.2295 -20.5132 266.707 229.499 225.089 268.881 394.583 414.48 423.576 -113.025 -32.0018 -29.2782 421.595 415.821 409.807 428.213 435.681 456.246 408.139 430.461 429.639 430.444 430.834 429.616 430.619 432.523 353.675 355.495 363.824 409.816 404.583 385.581 389.576 414.397 436.477 430.267 445.071 397.9 393.636 433.363 425.617 716.54 640.631 296.31 487.186 390.341 378.691 137.422 364.622 226.011 232.553 217.534 135.751 316.113 419.04 428.678 444.605 421.865 298.123 177.307 270.326 308.699 381.357 233.95 324.018 421.028 443.149 446.862 395.072 409.577 210.955 163.214 197.917 373.907 188.062 300.228 213.253 362.973 343.297 364.018 369.554 207.828 219.195 294.086 351.155 242.94 309.251 236.996 346.392 304.851 -37.558 10.4597 5.68979 4.63215 -31.5629 4.7083 -11.8506 307.05 237.313 304.268 257.786 270.038 320.317 273.496 -9.01542 -0.334655 -36.124 -14.1119 13.6298 -77.9307 4.42236 267.103 16.064 150.045 673.886 511.666 170.714 324.927 -1.35082 -24.931 29.4041 -11.111 270.672 250.32 255.287 239.573 217.689 280.493 234.746 -6.32196 -2.77855 1.31389 -9.96967 452.089 440.464 315.72 357.876 391.449 416.059 383.565 428.313 431.242 430.889 429.763 434.585 429.246 428.527 385.894 406.346 418.503 405.956 402.362 405.347 489.772 463.994 504.289 369.901 401.802 311.047 268.424 587.601 365.835 397.218 383.949 418.237 353.239 387.27 473.964 401.774 424.505 448.964 136.549 420.487 228.875 289.701 324.185 319.586 280.204 367.573 413.374 385.507 423.652 387.937 269.865 318.288 191.55 397.348 126.616 165.24 370.782 400.325 414.19 189.455 409.067 323.719 272.629 286.32 290.974 309.011 284.622 285.056 281.669 293.035 5.3642 -74.5485 -73.9131 -88.7819 -35.5588 -78.5959 305.325 320.371 303.951 287.067 321.097 314.567 -5.46963 -16.5027 -9.21694 -12.4118 -14.9088 282.009 158.349 269.415 234.303 314.562 277.364 224.794 -15.3789 -2.11623 -9.67325 -13.7141 -4.00332 -27.5591 3.35672 247.775 286.726 273.274 288.325 295.95 284.547 235.234 -2.20259 -1.0407 -1.22677 -2.06794 -0.0268611 2.04284 433.794 430.783 427.861 430.785 430.605 432.255 431.32 433.343 433.237 432.507 433.064 433.007 433.434 432.952 402.882 419.996 429.615 412.978 422.328 427.164 402.887 428.848 430.622 427.644 430.1 434.513 430.675 429.088 413.617 379.482 397.826 427.853 442.082 336.139 358.046 431.284 432.193 431.562 430.997 432.029 430.901 -133.396 355.795 -124.637 449.234 -78.272 -75.3634 -87.8513 287.753 385.604 433.073 296.962 428.154 292.28 314.861 284.534 292.243 210.528 -131.994 404.191 -132.321 -132.096 -95.3107 -86.5331 -82.1137 -95.3977 -81.8572 -95.6303 -92.4036 -37.8824 -67.0608 -53.1789 -70.0116 -46.4678 -57.8676 -47.7634 -0.81625 -3.74083 -25.077 10.1451 8.05412 -38.3565 6.28183 -62.2934 -63.71 -74.0776 -71.1357 -57.5456 -59.7216 -74.7956 -52.4997 428.261 432.156 -51.5736 -70.278 -75.444 -74.77 -71.6959 -43.187 -15.7186 -48.5921 -44.4587 -27.5929 -44.1313 -51.8377 -58.1879 -63.1759 -68.077 -55.7766 -70.1028 -49.0412 -60.6103 -115.999 -119.083 -132.977 -132.002 -117.234 -115.915 -130.222 -84.7177 -81.6647 -81.1837 -86.3694 -87.313 -80.6375 -120.051 -127.905 -122.086 -123.017 -120.656 -124.435 -118.002 -134.453 -130.743 -131.519 -128.939 -132.609 -133.348 -130.671 -138.801 -110.451 -118.89 -115.045 -126.294 -126.111 -133.084 14.2777 29.3053 -3.81649 26.2327 24.8438 6.40342 17.3196 30.6487 -4.69075 58.1921 -30.824 -31.5593 3.26488 12.6937 32.4433 3.13388 -10.6907 -21.3243 -12.6013 -19.7547 -21.0488 -19.8875 -24.642 -19.0376 -23.7744 -22.0164 16.6011 14.5701 13.6621 30.9896 14.2454 17.5099 22.0409 9.14959 21.0433 26.9279 14.9354 17.2111 15.3269 12.7403 17.064 14.3916 13.3216 10.2071 6.35701 8.81151 8.48988 8.99128 9.86254 8.76854 -0.363831 -2.4221 5.5369 0.303766 7.68097 0.411726 -0.133103 0.209112 -0.0604302 -0.733921 0.233761 -0.29862 -0.22359 -0.564228 -0.440283 -0.52865 -0.397371 6.82347 -2.98115 -1.18288 -1.45742 -4.23926 -4.2497 -4.88999 -3.77395 -4.345 -4.19617 -2.03741 -1.31307 -1.13314 -1.37105 -1.45037 -1.18354 -1.30678 -1.40006 -1.28804 -0.237747 -0.482789 -0.360261 -7.72575 -7.176 -7.37315 -11.8056 -13.5915 -11.741 -13.8837 -12.2197 -13.0446 -12.8255 -12.5137 -11.0527 -9.71607 -9.7402 -11.029 -5.31724 -4.73714 -4.78705 -5.18142 -0.787242 -0.163827 -0.7983 -0.119372 -12.2772 -6.10641 -13.2165 -7.32717 -11.8817 -7.862 -13.0448 -19.1969 -17.5988 -21.3683 -18.6129 -20.5041 -17.3978 -21.6844 -13.65 -4.64945 -6.89541 -19.06 -42.7925 -45.2736 -42.756 -45.7357 -43.8953 -41.3683 -44.9092 -41.6337 -32.9623 -28.7497 -24.8887 -36.9439 -95.0153 -27.2101 -69.2097 -46.9085 -43.3057 -133.513 -52.1389 -36.8799 -10.1935 -28.1542 -20.7578 -27.576 -10.9408 -42.5991 -96.9359 -35.2427 -43.5606 -137.962 -89.9093 -125.492 -142.714 -114.736 -114.425 -155.598 -71.2006 -51.8864 -56.7916 -71.2768 -53.035 -62.3701 -79.8874 31.2 29.2765 -88.0709 44.0825 20.0562 41.4213 -113.543 182.484 147.261 240.191 267.974 134.828 295.24 182.036 -127.582 -143.369 -133.861 -125.753 -149.394 422.345 431.58 433.375 428.681 428.89 423.381 431.721 -142.865 -141.643 -146.384 -144.003 -141.954 -182.832 -193.956 -189.004 -195.778 -186.178 -188.091 -190.62 438.275 434.926 437.818 438.348 436.171 437.473 439.255 438.527 438.82 438.772 438.178 437.355 437.261 -165.029 -138.454 -188.743 -147.363 -62.1803 -30.7228 -48.8379 -22.4382 -56.8914 -32.1637 -45.7654 -113.434 -142.628 -113.688 -127.316 -110.024 -130.346 -108.285 -108.834 -110.72 -122.357 -97.7394 -132.217 -94.3493 -111.432 439.182 439.052 438.594 439.55 436.732 437.872 435.911 435.467 438.28 436.921 434.888 -159.141 -131.871 -139.198 -152.504 -158.299 467.326 383.935 368.461 414.761 415.652 405.505 418.586 418.789 427.839 423.591 416.391 424.272 421.711 417.671 436.183 435.303 435.407 434.181 436.721 435.274 434.234 435.962 405.085 409.487 377.245 394.642 422.277 397.705 426.336 419.699 427.867 442.567 415.018 -13.8672 -17.7181 -18.1363 311.418 380.624 404.183 422.613 405.8 403.338 334.136 414.074 282.119 289.251 261.207 271.917 286.458 287.512 280.417 6.88289 86.2128 1.98678 -7.62947 -4.33738 -2.83792 278.323 288.445 263.385 274.757 285.471 293.19 252.556 -1.2117 5.65906 -1.66799 61.7037 11.8896 364.192 426.291 373.115 416.65 458.936 426.229 403.927 458.984 414.984 402.88 418.614 269.199 372.566 379.704 437.207 435.51 434.227 434.6 436.109 435.822 434.472 411.21 395.367 416.048 386.966 464.888 373.17 456.981 427.629 410.217 446.84 381.489 428.991 580.755 392.273 312.353 292.886 233.547 282.631 413.905 293.846 295.142 454.121 447.061 392.339 440.291 414.152 426.367 454.521 146.912 280.739 291.994 269.252 258.205 226.536 228.68 107.812 384.682 388.106 407.062 283.928 257.458 446.489 306.314 301.575 282.176 295.338 294.297 284.743 297.716 426.373 415.393 442.885 433.795 419.045 380.859 445.501 79.0025 76.6948 232.276 161.319 139.72 241.17 -15.5045 -7.70066 9.94794 -13.5008 9.36332 287.444 270.174 285.705 246.119 271.131 286.057 205.364 -32.6596 -54.8105 -45.3078 -29.6345 -40.8559 321.952 296.246 262.105 277.385 403.358 322.586 185.444 19.4153 2.07471 0.856295 4.79755 2.56477 204.885 220.126 213.17 220.84 217.67 246.681 201.743 -25.8392 -25.0182 -56.725 -24.1699 -9.38957 442.108 409.375 439.433 421.679 409.193 516.224 418.602 488.311 443.574 458.15 415.163 406.764 477.539 347.131 216.122 639.838 600.351 663.52 526.537 532.524 870.284 388.622 452.08 471.697 301.945 453.748 422.94 464.26 246.375 266.718 257.724 236.188 220.738 267.353 237.323 465.987 432.608 443.61 447.258 255.506 208.05 275.933 230.923 275.94 11.2555 265.657 438.803 460.174 451.805 483.816 449.084 455.394 242.084 197.889 208.606 206.389 233.059 219.513 245.867 440.875 452.962 451.46 278.095 218.918 160.38 276.664 258.487 256.334 -1.54816 -11.5151 -15.5256 -1.76667 237.414 274.357 266.656 252.263 206.105 249.607 222.563 -17.206 -43.1045 149.397 202.102 418.947 173.288 235.375 235.755 235.874 -6.01874 14.8769 3.24838 -15.8458 248.291 257.151 149.93 236.172 403.944 247.576 182.345 472.826 497.029 451.794 443.34 486.472 390.776 422.693 488.768 420.411 425.713 455.333 390.256 451.38 294.37 488.461 371.918 371.598 365.862 441.415 501.071 397.833 268.224 277.486 240.544 262.261 206.061 250.156 269.276 442.585 467.296 430.024 452.904 451.409 240.615 45.9063 233.309 217.465 230.481 230.869 233.788 412.004 257.888 98.5063 340.578 207.431 211.888 258.211 329.579 228.082 -38.5112 238.038 108.249 236.985 225.578 235.232 209.478 223.292 -22.4656 -18.3752 -18.5618 256.013 100.334 258.597 229.013 253.732 237.273 200.994 697.017 248.698 420.839 421.82 420.523 419.857 422.207 421.194 420.379 421.715 421.501 421.369 421.39 421.616 421.474 421.678 450.211 441.057 404.035 420.758 553.597 440.767 372.849 454.701 446.082 494.51 454.012 519.631 461.248 425.507 402.822 392.61 353.537 382.854 369.385 397.882 380.744 235.995 224.171 204.574 225.36 236.143 225.558 459.519 448.449 458.304 455.783 458.169 464.26 453.858 312.8 255.212 42.6502 326.869 225.074 219.423 317.805 323.327 212.873 314.921 81.1058 286.207 250.943 225.004 261.819 232.994 263.595 230.807 247.57 -35.4004 -25.3783 213.145 267.983 172.934 171.768 170.425 255.064 230.734 -24.0408 268.86 234.993 259.644 251.587 261.704 262.06 261.06 284.92 696.436 702.972 224.992 295.15 282.686 674.483 507.199 403.448 445.944 442.427 436.086 426.984 435.504 404.438 453.899 434.577 429.124 236.858 272.427 743.315 487.901 435.405 419.967 424.149 411.469 356.203 445.602 509.02 445.819 408.032 439.409 520.837 434.877 392.953 214.256 208.462 3.82986 235.061 174.164 207.954 215.503 436.326 411.141 423.433 367.661 412.727 441.282 496.927 299.353 333.282 -37.8195 350.898 233.755 384.406 101.397 351.871 413.289 193.098 222.293 199.824 176.612 463.024 435.416 451.646 459.342 447.365 465.675 458.745 217.663 195.865 206.063 126.631 203.174 214.029 -36.9314 224.14 219.345 202.738 222.473 768.002 140.443 520.065 -71.7251 7.35141 -18.3934 -55.2225 -94.5957 -32.5734 257.357 201.323 246.086 186.036 233.719 205.25 204.437 262.104 241.106 213.102 212.612 233.628 227.473 205.491 235.34 -5.5831 -2.11892 -375.117 681.058 646.581 1014.31 617.172 488.789 525.878 427.92 429.284 425.778 428.238 430.542 429.151 428.704 227.504 387.406 354.047 439.507 486.128 493.868 402.523 438.547 402.438 454.742 449.457 447.582 431.846 440.298 429.614 427.953 428.954 429.25 429.25 425.969 430.864 416.392 408.268 343.974 432.519 378.94 400.61 733.299 215.347 216.229 166.052 290.555 172.321 137.803 457.281 423.293 430.365 442.861 422.189 285.534 288.023 293.988 359.897 220.14 389.843 436.082 469.968 441.756 443.21 424.979 226.559 340.594 248.886 128.215 463.916 245.213 419.255 394.119 439.262 396.39 434.661 428.599 213.853 -115.51 71.9204 312.454 335.867 -98.5894 -20.8812 -94.5745 -118.383 -45.5235 -82.9964 321.725 238.324 297.298 302.08 303.691 278.147 299.59 -61.0995 8.08622 -41.5956 -18.6513 14.3907 -101.361 13.6481 438.298 344.127 389.82 -22.7976 251.031 209.36 812.599 -16.132 226.772 294.305 248.179 362.364 475.789 275.407 243.748 23.8094 5.4985 8.65216 0.314072 25.0129 0.330827 5.33282 430.981 429.323 433.196 430.926 432.503 427.424 433.196 429.988 432.032 429.671 432.132 429.957 433.691 429.299 405.32 398.227 390.91 409.227 360.579 434.113 401.022 430.598 431.443 430.955 431.086 430.619 430.779 431.187 376.807 367.779 404.885 438.454 403.354 406.17 404.489 455.937 371.822 454.811 552.014 418.216 396.381 438.682 426.993 430.823 429.372 429.02 429.534 428.687 428.166 388.726 473.832 368.346 455.471 462.259 422.112 448.095 386.709 411.936 347.398 357.39 406.191 395.229 -78.9198 -92.4406 -76.4946 -89.6471 465.863 423.974 432.468 381.06 421.177 450.663 422.496 124.051 218.522 170.82 253.978 254.992 249.721 417.356 387.722 332.667 405.439 390.879 410.205 413.35 294.233 295.849 292.727 288.739 294.09 294.084 289.67 -31.9207 -72.3046 -9.0229 -49.9535 -60.3176 -71.8362 -69.2583 -44.5377 -60.6892 -52.3736 -60.2172 -48.4484 -48.427 391.388 302.8 278.92 164.207 297.489 303.749 267.913 -43.1156 5.48477 -25.3757 -55.6808 -12.9209 -47.0367 -5.3268 268.422 290.354 291.939 294.415 284.04 283.954 277.265 0.81221 0.762782 0.672526 390.85 401.864 415.772 427.209 401.942 412.744 420.599 251.45 183.11 262.605 188.694 174.354 269.43 245.501 -35.0346 -46.7755 -68.1897 -4.80741 -20.5745 -41.508 -67.7513 433.094 432.546 432.819 -62.0083 -60.7325 -60.9163 -57.1528 -60.3771 -60.6092 -59.793 -122.521 -123.044 -123.014 -126.983 -120.138 416.493 412.901 398.719 360.761 414.508 405.703 421.876 -139.222 -136.122 -145.431 -130.255 -144.613 -131.995 -143.547 410.975 396.71 393.387 382.719 426.758 407.737 -88.6924 287.419 -72.1942 -75.304 -85.2909 -122.863 -112.293 -104.081 -123.705 -109.036 -130.63 -115.308 -24.0136 -24.0563 -7.50763 -4.43405 -27.4146 -15.8548 -5.98979 -45.3876 -55.2028 -41.2982 -40.0982 -60.0474 19.7612 -12.1177 6.31582 -60.1161 -65.726 -54.7162 -69.709 -95.6508 -92.3943 -97.9597 -79.7142 -85.1405 -71.4317 -3.49816 -1.37539 -1.71194 -2.26759 -2.1427 -2.75398 -3.14029 -2.46934 -2.48907 -3.28433 -2.20826 -3.06781 -2.13417 -2.63251 -1.67426 -0.657161 -0.801707 -1.40157 -1.37202 -1.7767 -0.76565 8.89487 8.76672 9.03641 -0.354659 -1.04428 0.174909 -3.90634 -3.38295 -3.88078 -1.95752 -1.93768 -2.14243 -0.635051 -0.366185 -0.624563 -9.57719 -9.05275 -10.6136 -10.5802 -10.5344 -9.08051 -9.75821 -9.79959 -8.39585 -7.16965 -7.13954 -5.61724 -6.05078 -6.04552 -4.73194 -4.28171 -4.2801 -0.228381 -0.919742 -0.906999 438.573 437.676 438.352 435.811 437.04 437.985 439.149 439.145 438.539 438.907 438.226 439.224 438.577 438.765 -165.017 -169.476 -154.754 -142.377 -164.43 -170.397 -144.795 437.228 437.527 437.077 437.956 -144.084 -128.287 -146.262 -131.434 433.884 437.287 437.403 437.717 436.989 437.728 436.884 437.286 427.103 397.064 421.041 -101.462 -112.819 -105.214 -112.221 -37.9867 -29.6476 -36.0101 -34.9661 -37.6352 -33.234 -37.8094 -95.2018 -118.793 -92.9194 -115.183 -94.4853 -115.268 -94.1407 -98.7314 432.733 437.409 -94.1378 -44.9597 -32.2174 -38.2051 -37.057 -39.4655 -45.2405 -16.894 -22.3806 -24.001 -16.5236 -24.9951 -17.2958 -15.9841 424.738 444.624 411.929 408.731 358.495 472.844 433.664 435.484 435.513 434.799 434.778 434.743 435.63 435.042 409.756 419.505 403.214 411.869 357.123 376.41 377.443 427.56 428.243 419.821 428.488 423.848 431.453 425.69 429.81 345.713 418.399 476.411 358.322 470.711 483.796 247.535 327.955 302.218 316.492 444.006 432.254 427.93 438.415 451.074 436.121 436.684 227.737 331.662 319.554 295.373 294.164 275.457 229.164 440.107 433.822 436.822 438.412 435.98 329.709 346.061 326.188 349.293 347.513 334.65 323.197 424.896 415.302 401.141 448.198 423.879 418.81 456.999 302.952 318.719 316.063 199.639 306.911 284.817 198.978 2.2373 1.04206 1.56398 1.67758 1.40153 1.67484 1.99153 273.562 247.061 246.062 255.546 301.337 264.455 226.479 -77.3271 -2.7676 -75.1886 -27.966 -79.1106 -52.9628 302.761 341.622 339.87 316.966 2.46012 2.44296 3.15524 1.81192 4.21143 284.49 232.02 314.365 221.208 318.669 190.162 247.888 -86.1936 -2.57741 -31.3674 -34.0283 -56.9136 -109.677 415.386 452.045 358.141 461.756 426.141 416.928 426.492 613.355 627.928 100.017 758.625 510.766 468.868 747.243 475.223 341.607 425.366 422.79 475.767 375.936 417.541 633.519 444.865 415.559 391.709 683.106 569.132 441.689 209.261 268.483 277.016 258.093 235.734 277.525 218.204 -14.5997 439.403 450.036 420.295 412.279 228.821 226.172 222.374 69.7593 237.156 222.068 214.821 418.374 429.92 442.732 445.326 441.642 425.983 413.692 225.818 283.313 179.224 355.86 227.138 -56.4956 22.0501 374.382 455.778 426.426 455.362 399.894 457.975 410.786 245.917 211.758 224.755 231.839 207.458 238.908 -34.1244 17.77 0.422049 -95.5377 44.9571 -73.3133 384.238 183.074 154.587 286.081 367.476 285.47 251.7 5.74067 -112.727 -0.0852169 3.42648 3.07341 651.195 225.108 147.171 610.306 223.545 153.531 229.443 -9.46352 -15.6457 -18.6038 -27.1748 -21.2178 253.664 187.669 232.668 402.907 155.55 219.291 535.838 -42.6428 -41.2019 -46.3506 -44.4691 -39.8459 415.443 409.434 391.511 524.626 458.664 472.645 630.314 364.462 409.209 462.352 406.529 576.722 259.035 414.719 572.039 451.806 256.252 408.927 527.918 541.359 459.648 207.242 218.955 225.057 200.921 28.9662 199.878 215.119 433.033 332.4 118.518 425.989 273.92 220.995 267.679 161.99 246.66 468.147 485.681 448.978 490.5 463.047 228.75 235.571 222.724 219.524 244.926 234.924 221.667 229.257 323.177 254.952 312.742 305.611 285.596 234.244 240.845 261.227 252.378 272.185 247.201 254.755 216.308 -28.584 -28.8267 283.947 218.493 176.291 239.369 266.276 240.338 218.077 735.671 246.005 238.287 227.235 240.986 222.211 235.559 231.006 229.143 -45.397 -43.6935 -28.4568 410.824 414.953 415.66 415.807 413.179 413.556 414.431 424.383 424.805 424.954 422.91 425.411 423.349 423.908 418.692 418.598 419.864 417.748 419.916 417.96 419.162 420.956 421.739 421.987 420.136 421.714 420.531 420.902 422.266 415.507 417.467 421.01 417.529 419.7 420.904 385.176 391.407 360.233 360.597 362.659 395.222 393.861 392 381.057 393.464 373.603 396.883 374.41 392.326 396.076 373.001 396.059 373.107 398.779 373.497 394.702 237.801 229.68 238.745 232.446 261.375 234.049 229.423 270.992 279.164 750.159 690.82 198.378 243.782 747.734 265.372 275.627 309.147 278.551 301.944 275.437 277.977 263.029 534.029 290.576 517.076 276.989 298.823 535.411 399.406 403.047 398.465 402.94 402.96 395.614 401.37 410.664 414.238 415.292 412.106 414.481 411.625 411.14 418.746 419.642 420.4 419.702 419.773 418.499 419.774 419.558 418.253 419.195 414.776 420.866 416.877 418.918 418.701 416.424 418.487 418.427 417.859 417.808 419.209 420.445 416.95 414.596 416.833 415.152 418.617 417.947 393.988 376.976 402.996 368.1 395.686 367.883 394.811 303.531 317.875 292.28 326.245 294.664 286.289 332.609 265.15 265.523 241.893 260.78 263.347 269.026 256.515 272.069 267.619 300.454 260.612 312.64 269.969 261.449 304.968 521.621 270.548 590.521 299.788 260.065 531.255 422.415 424.402 425.232 425.733 423.237 423.887 424.572 382.023 387.052 372.383 360.326 356.544 389.289 383.09 480.683 418.219 443.826 455.29 486.522 495.918 430.13 421.481 420.735 395.596 327.535 423.356 301.873 344.443 231.397 223.654 207.066 250.46 238.598 224.641 234.782 444.236 445.388 459.633 444.338 254.598 225.101 278.125 238.701 204.401 257.997 457.861 482.934 446.244 236.673 216.787 215.894 217.346 154.482 233.495 205.431 268.62 716.996 691.084 283.109 257.955 730.619 243.839 242.638 239.607 240.344 254.029 243.879 212.529 216.18 210.611 234.915 212.48 215.82 215.157 221.455 -3.14711 545.907 377.355 378.277 430.624 449.148 421.016 431.103 111.806 756.557 369.324 333.024 648.507 484.209 370.982 446.598 560.865 399.583 399.464 426.69 604.467 345.804 433.165 395.092 425.875 413.34 394.498 418.688 410.644 290.944 258.795 286.46 252.366 283.588 276.626 256.817 418.863 383.227 412.322 414.692 399.467 422.753 407.544 240.926 197.787 235.587 264.374 142.027 262.624 283.139 489.357 458.151 437.589 451.477 205.101 213.341 123.673 242.553 207.842 308.665 397.532 424.901 382.297 329.495 251.796 255.932 242.6 285.577 241.568 281.629 282.764 -34.3712 -29.005 -31.9607 227.521 205.018 248.463 316.279 171.809 306.272 217.05 18.6496 -23.7912 -23.4218 -0.977883 -7.89959 201.03 194.793 206.909 190.082 196.142 207.23 217.689 -4.24944 235.881 248.411 227.312 229.578 241.649 239.537 226.983 -41.9178 1.82124 -24.1347 393.458 407.383 442.994 383.494 390.366 312.457 393.898 431.592 429.05 431.206 431.435 427.925 429.659 431.352 472.345 276.652 461.373 347.095 406.456 374.941 424.354 430.079 429.406 429.291 429.787 430.244 429.44 433.465 432.869 414.106 407.946 410.378 432.139 372.156 325.913 427.161 430.327 429.215 429.427 428.818 427.266 430.733 413.292 415.187 411.623 410.671 415.472 415.757 405.587 288.392 272.2 257.484 263.867 285.754 266.639 283.44 309.633 393.046 382.884 384.223 320.31 389.23 389.112 287.683 295.023 294.979 293.811 290.544 293.128 354.832 398.319 167.541 431.794 237.181 332.593 414.787 312.134 262.545 290.826 272.783 291.048 277.713 310.979 396.805 415.005 395.588 300.577 417.309 395.747 300.763 -3.17066 5.6011 21.2395 9.15054 312.924 301.777 309.726 316.974 323.476 299.811 310.345 -29.9036 -10.4567 -21.9464 256.224 251.796 244.981 241.978 263.335 242.112 258.819 2.43645 -1.62007 32.425 4.82673 2.13848 4.58222 0.430183 -33.2605 -30.3073 11.9268 -46.1037 -35.9984 -41.7394 -46.3565 -41.5253 -46.1665 -46.4318 340.184 490.711 352.669 342.787 384.749 410.876 417.992 411.478 416.074 407.066 407.915 415.696 411.863 405.899 296.137 295.444 399.849 415.065 308.531 376.271 316.624 400.662 405.164 305.301 303.793 294.051 297.775 301.787 306.174 304.755 -3.65379 -1.11437 -0.58887 0.679745 -3.73682 -0.649821 -0.543694 -44.4663 -60.6006 -47.3792 -64.5261 -44.8351 -56.4355 -45.1344 309.914 325.416 307.654 312.781 0.0509751 0.898787 0.885358 0.55241 0.797627 -41.8697 -60.5288 -49.5951 -41.1871 -53.0026 -42.7418 -39.6019 -36.0691 -40.2896 -49.4542 -36.0063 -44.9436 -29.5675 -35.8664 -9.48711 -9.58856 -9.69673 -10.5139 -10.2376 -10.6009 -9.68538 -9.01493 -9.70921 -7.10969 -8.34871 -7.09694 -6.02268 -5.60593 -6.01757 -7.70383 -6.4476 -4.65724 -6.1737 -4.26856 -4.72678 -4.28373 -0.907578 -0.229488 -0.900289 -5.41164 -9.56668 -13.8746 -11.2151 -12.248 -10.4367 -10.9759 -11.2685 438.557 438.051 438.182 438.348 438.301 438.378 438.61 437.623 437.829 437.087 437.639 437.422 437.379 437.936 275.819 352.576 496.458 -169.017 -153.563 -186.519 -166.686 -176.595 -154.262 -174.006 437.487 437.646 436.909 438.048 436.888 421.744 -141.104 441.791 -140.427 437.263 -149.242 347.877 392.026 391.027 -45.5582 -39.5252 -33.5955 -45.3362 -39.825 -50.2295 -39.7435 -42.9062 -47.4577 -42.2998 -46.6576 -49.8527 -15.3879 -23.6651 -16.1787 -21.1817 -15.918 -15.4687 -23.6815 -23.0299 -29.6591 -30.2177 -18.8239 -30.1371 -23.3312 -22.7227 435.77 437.204 437.79 433.314 438.161 433.265 436.234 435.965 437.554 438.111 436.728 438.053 436.239 436.749 440.634 397.631 407.833 369.922 387.069 417.15 469.986 410.092 503.264 453.263 416.647 456.915 406.643 401.457 425.545 424.633 439.29 406.466 443.518 419.683 426.164 380.204 415.89 432.974 378.516 427.717 394.149 417.234 322.42 290.001 320.621 319.952 324.036 279.125 327.239 338.61 431.597 394.939 330.321 391.501 326.362 350.309 346.326 323.853 343.931 334.722 329.4 434.064 310.473 390.778 322.706 429.404 282.873 319.512 331.947 238.912 437.182 403.428 352.837 435.111 236.584 345.555 334.977 284.903 279.126 329.689 238.953 329.805 335.852 2.76418 1.89814 2.36552 406.474 398.65 299.153 368.886 389.377 322.114 371.68 -7.97784 -2.69114 -6.37499 2.70338 -18.8573 10.9297 -1.44749 323.826 -13.7453 326.793 -15.1559 329.216 2.40528 1.52488 1.83092 2.20173 2.25443 2.09115 2.09056 309.2 330.477 225.612 195.397 271.937 266.595 292.159 -2.21489 4.48166 -2.14255 11.3495 -7.18273 -0.0877408 424.533 434.111 441.212 428.141 441.112 436.418 403.675 423.9 439.816 345.904 649.742 424.59 429.191 434.255 340.437 366.781 428.915 563.1 409.547 471.9 452.683 471.404 689.037 372.499 336.597 694.375 460.069 407.579 353.397 346.451 416.999 310.522 284.693 397.113 340.517 444.106 476.863 450.057 436.274 443.122 210.506 200.504 227.936 269.55 229.713 -110.763 237.467 314.03 423.3 360.415 398.331 390.634 251.43 384.592 333.037 263.53 310.842 355.878 300.504 257.427 307.09 392.267 429.431 442.14 440.685 420.121 453.37 418.727 253.656 29.2766 246.672 313.904 56.8441 209.126 -7.76813 6.25841 -4.30464 -0.00358317 -10.4925 10.1698 -3.24798 331.375 40.9143 258.914 337.342 277.989 256.811 304.119 -20.3149 -47.164 -11.7262 -32.9756 -6.35332 185.302 418.715 226.669 168.682 297.028 219.007 189.266 15.0457 2.56103 5.88641 18.1552 -0.926556 274.654 308.619 322.042 295.457 215.919 349.899 296.04 -78.0644 -57.6316 -76.321 -72.0067 -84.094 429.893 432.613 432.878 435.582 430.006 432.532 432.935 424.668 422.707 423.361 421.879 424.631 422.897 423.374 426.712 427.794 424.947 425.669 427.902 426.717 424.967 588.625 384.484 491.747 766.363 655.689 456.989 529.381 346.31 468.854 385.069 481.718 554.759 418.247 449.141 418.652 368.921 445.801 392.555 372.19 397.1 423.533 229.001 226.766 202.821 240.686 211.502 221.911 234.839 283.704 336.585 315.562 324.676 288.749 275.365 388.451 467.034 439.196 465.922 458.461 469.645 464.605 458.566 301.062 272.321 297.671 152.751 260.693 284.936 75.9969 307.231 401.044 100.968 277.911 226.259 231.033 253.884 253.728 238.02 264.873 227.284 247.306 -48.4776 -36.1456 -28.9365 -39.2351 374.929 282.023 239.907 253.054 239.937 257.212 254.627 -32.6515 259.587 279.183 287.15 262.583 257.767 287.546 289.057 322.306 649.619 454.442 368.953 695.173 409.722 413.147 414.981 412.657 412.764 411.485 409.936 412.624 416.994 416.643 416.257 414.626 415.199 413.381 419.95 417.954 420.147 416.788 421.447 418.067 419.986 422.859 427.766 424.333 421.166 429.193 422.046 421.231 394.608 396.585 373.876 375.262 394.011 397.663 372.538 422.51 423.374 424.491 421.386 422.438 424.416 422.105 394.489 367.64 421.49 373.99 403.308 375.134 396.605 293.648 313.672 214.984 336.316 296.841 272.68 325.954 271.583 269.129 244.877 273.843 239.082 282.931 258.602 408.792 403.394 413.396 411.75 406.155 406.73 415.322 394.865 399.238 403.465 405.344 403.708 395.251 399.773 412.588 416.062 412.984 415.993 411.776 417.023 413.509 419.259 418.859 418.494 417.907 418.607 419.294 419.378 418.15 415.484 417.778 415.312 419.679 413.745 427.602 418.792 415.326 422.565 418.142 419.465 415.385 422.041 391.422 368.526 364.933 395.726 367.43 390.364 390.617 418.813 418.782 420.099 421.515 421.96 420.285 418.46 485.77 314.62 658.592 507.671 560.907 464.165 550.998 508.028 448.19 456.022 479.565 576.665 456.648 459.907 450.061 466.763 437.749 231.599 168.947 217.331 214.346 222.277 219.978 212.785 274.727 325.823 282.242 324.117 242.193 284.582 320.921 263.558 279.114 254.189 239.414 268.593 268.961 248.818 435.989 432.154 423.475 448.947 418.875 453.25 435.522 239.827 247.725 187.363 256.494 235.517 242.147 241.332 211.354 222.153 215.854 219.628 207.016 221.069 229.561 -5.26885 252.541 325.009 165.245 249.868 281.524 233.571 212.241 540 743.324 415.71 531.99 505.464 603.618 621.037 432.811 430.164 429.748 430.475 430.101 431.35 431.149 428.003 431.849 422.005 437.055 426.407 441.349 424.449 487.366 446.482 521.054 444.366 401.2 494.421 402.38 433.234 396.837 386.699 458.103 410.859 428.832 418.182 211.906 204.909 208.646 213.469 205.731 211.943 451.064 439.463 441.771 454.293 447.989 436.336 195.419 276.984 184.291 254.686 125.008 117.584 443.857 463.4 436.411 456.069 454.652 230.47 98.337 244.411 229.473 238.149 132.122 236.793 409.479 437.322 383.814 392.005 426.28 422.928 337.432 157.649 294.139 237.163 226.256 213.413 143.289 286.133 -16.1463 -10.5492 -14.0383 -14.4383 243.327 260.214 272.455 250.137 270.271 245.661 242.942 -18.7948 -0.96427 -2.22421 -27.7724 -4.18944 -22.401 -23.9959 177.83 52.5697 215.722 348.209 222.501 180.683 197.971 -22.9712 -24.434 -23.6797 282.679 467.167 237.631 298.359 246.308 270.196 415.4 -4.26586 -21.8764 -9.67033 -5.55712 15.0116 -19.5534 399.432 412.586 439.8 440.258 438.707 381.921 417.197 427.791 428.035 427.469 431.545 425.878 428.171 432.981 415.504 426.621 412.714 432.363 404.369 437.616 416.363 429.409 430.107 433.777 429.812 431.061 429.326 430.657 296.845 413.462 457.621 429.862 428.989 472.082 356.569 426.112 431.271 429.732 431.133 428.215 426.594 429.358 395.918 359.367 452.115 354.089 329.709 413.281 371.752 164.89 290.321 239.064 227.244 242.517 322.492 142.812 446.186 424.147 435.916 444.691 436.249 443.403 410.358 404.609 440.703 416.5 431.157 441.99 170.237 279.484 238.274 281.419 164.556 225.951 235.12 408.721 430.676 427.227 319.563 298.618 312.899 260.521 292.651 256.274 -38.2262 -2.68925 -0.358652 -23.9238 9.84316 -27.1304 -18.6673 -68.8144 -19.7216 -58.8758 -21.1872 -54.7798 -80.6008 -21.9895 285.407 197.831 272.12 285.438 262.601 232.286 293.067 -33.3103 -16.1196 -21.0015 -64.6751 -19.4926 -45.602 -4.62478 321.308 314.995 311.055 318.002 314.69 323.049 314.137 -30.4242 -3.62152 -74.6803 6.9988 -50.3952 -43.3257 -48.1725 -38.6245 -45.1904 -49.9655 -48.175 -65.2749 -56.2024 -68.1088 -69.1422 -64.9143 -68.4492 -69.4595 422.659 412.057 409.994 433.44 423.509 404.966 423.553 428.389 389.232 404.788 403.369 464.912 396.366 407.112 268.271 221.222 274.54 321.52 330.326 223.431 279.747 336.112 404.375 411.423 350.479 389.16 312.315 245.293 0.972167 0.761458 0.644694 1.06661 -33.1734 -48.0699 -39.5605 -54.8202 -36.5905 -48.1416 -36.6708 -23.0915 316.803 318.522 -31.1968 -19.8268 323.61 0.745861 3.59473 3.10418 1.534 3.72561 0.375521 2.02434 -28.8121 -55.3467 -46.6702 -32.7186 -46.0808 -33.8349 -23.5973 -49.5631 -54.8604 -64.5643 -28.4324 -61.3131 -34.0397 -47.1387 -9.88538 -13.7388 -6.57037 -7.17125 -6.99632 -6.12819 -7.46152 -7.80203 -7.43084 -7.36564 -10.8394 -11.6065 -11.3094 -11.1686 -11.8596 -11.9256 -12.0458 -11.6801 -9.69149 -8.48699 -8.47061 -9.52931 -6.09111 -7.37273 -5.8115 -7.33914 -4.92871 -4.50985 -4.49399 -4.90876 -3.49896 -3.84796 -3.61241 -3.81118 -0.752729 -0.200092 -0.801407 -0.104916 -33.3316 -6.92317 -42.9599 75.3167 0.291673 -27.528 129.242 -49.2086 -109.652 -86.4255 -117.116 -123.766 -124.394 -74.1567 -52.3346 -67.8425 -173.553 -77.3817 -61.6833 -115.347 -146.942 -142.942 -239.579 -129.438 -158.623 -136.616 234.98 247.013 340.704 300.251 267.176 322.893 220.197 425.02 433.379 430.792 432.886 425.389 431.024 432.979 54.6287 -29.5616 49.6792 -52.1193 54.9074 -64.9167 43.4575 202.831 280.349 162.099 261.929 307.857 145.984 196.595 -138.42 -115.21 -122.625 -118.945 438.018 437.14 437.823 435.574 437.205 438.573 436.51 438.038 438.045 438.274 438.18 -104.484 13.2839 -98.2141 -50.1227 -80.4778 -127.995 -55.7593 -106.91 -108.932 -110.274 -107.281 -122.023 -130.736 -130.024 -123.192 -128.971 -123.924 -122.197 437.025 437.718 437.301 -148.975 -146.448 -151.232 -145.206 -176.059 -202.132 -170.652 -176.832 -184.719 -184.411 -174.614 -143.688 -137.584 -139.254 -144.745 -138.083 -142.582 -145.503 -127.792 -131.686 -115.088 -123.285 -136.252 -148.335 -176.749 -127.688 -171.2 -144.729 -159.205 -154.427 -89.0126 -43.8143 -59.4298 -78.0239 -54.0073 -64.5198 -96.1701 -9.06453 -0.13954 -2.52589 1.09767 -7.61925 -3.68724 -0.490939 -17.0777 -24.0834 -35.9393 -12.4327 -31.69 -10.6619 -18.0351 437.677 436.269 438.746 436.92 435.401 438.926 437.906 439.941 439.933 439.787 439.885 440.163 363.178 389.877 417.114 420.038 415.535 410.198 395.343 445.127 435.838 467.431 428.329 380.896 435.562 495.078 439.327 -146.172 439.304 439.105 439.464 -163.054 -168.511 -166.321 -173.714 436.796 435.227 437.326 434.896 436.765 435.227 435.128 420.947 345.36 391.269 405.041 350.176 414.112 423.014 -29.1265 -39.7854 299.487 350.939 301.321 346.51 313.764 310.028 293.265 -145.218 -140.343 -145.717 -134.646 -134.843 -42.1056 -35.6217 -46.9419 -34.3449 -44.8988 -32.1651 -44.9708 420.692 419.818 380.581 432.248 419.031 426.085 430.425 262.378 266.619 237.335 249.22 229.982 280.718 147.445 13.2178 7.93489 41.4968 -28.5123 10.0793 -16.5129 52.9285 18.729 401.132 468.467 410.173 394.813 422.213 440.383 512.707 530.617 465.861 449.2 447.702 61.5904 690.803 565.15 415.072 391.811 361.203 421.854 447.598 481.323 357.299 421.411 456.871 446.043 446.394 377.557 359.25 427.853 157.353 302.532 214.459 312.222 205.306 249.174 258.611 427.653 423.916 494.773 412.258 295.36 301.911 295.697 170.247 306.154 279.219 278.201 423.745 378.135 447.071 435.118 459.606 429.806 413.164 327.691 271.508 297.939 331.663 290.753 257.667 288.222 410.023 395.07 317.439 441.744 43.609 220.148 317.368 294.721 292.82 278.181 328.847 304.356 305.785 -26.0736 11.7703 -89.4237 -3.32906 -45.2769 -33.3921 312.553 265.34 221.488 273.606 403.048 261.131 209.188 -27.7129 -29.7163 -56.561 -7.02928 -56.445 -6.36962 156.923 282.313 282.841 272.898 284.662 263.842 238.659 -7.38367 -39.5461 -83.4723 25.2112 -65.7284 244.956 253.946 270.708 296.418 380.296 183.997 226.157 -7.60979 -0.797589 2.99305 -0.531207 380.857 716.26 591.936 385.593 408.77 560.975 428.825 477.571 518.64 460.647 375.433 311.487 466.014 554.364 441.445 513.334 453.511 436.259 448.956 439.531 436.292 443.298 457.037 467.257 508.699 410.944 428.802 410.905 257.213 289.953 273.249 280.833 303.226 283.389 277.437 432.172 407.48 433.883 246.661 189.645 290.894 244.168 236.271 285.898 390.658 389.897 432.978 425.431 203.727 408.526 232.277 272.371 217.806 199.83 276.805 259.793 119.256 446.112 453.514 471.876 450.515 471.811 466.766 227.202 56.5311 264.368 263.147 355.691 226.943 -33.1626 -10.3503 167.461 264.304 169.944 220.984 282.997 289.295 226.615 275.81 276.215 384.464 271.232 299.051 282.729 273.744 -0.651388 -50.5589 -85.8789 -120.89 210.792 22.2852 211.71 267.811 433.045 90.7967 170.02 421.07 419.568 420.501 421.283 420.126 420.447 422.26 385.989 398.254 377.853 193.536 424.424 383.187 364.808 349.459 622.977 411.756 405.262 508.144 349.611 364.33 501.36 446.624 509.985 508.537 483.046 474.44 612.92 258.536 243.479 263.88 205.782 228.267 263.398 447.279 463.136 440.985 459.988 443.492 279.683 239.598 271.411 94.9992 285.107 287.472 269.749 409.817 444.405 473.611 438.102 480.08 248.622 244.445 245.745 255.536 242.432 250.355 250.556 399.464 297.685 758.84 263.883 708.027 364.809 286.115 435.372 86.0436 158.31 295.951 437.803 -27.6388 -28.6345 -32.775 243.61 240.174 243.412 246.21 242.031 242.924 247.648 -23.1247 421.788 420.506 419.661 421.533 420.588 420.143 422.716 425.55 417.9 420.083 422.435 423.523 419.632 423.588 550.57 464.329 485.106 449.438 496.145 436.885 669.565 394.245 444.039 440.462 470.457 419.453 434.638 437.113 425.995 442.174 470.516 434.911 237.086 239.492 258.807 230.234 248.751 227.307 234.973 436.49 438.468 429.419 269.634 214.457 280.488 268.563 221.679 279.539 239.165 234.088 244.582 235.37 241.539 236.726 233.927 -20.3481 192.38 231.196 345.398 215.092 171.206 235.163 406.196 296.693 395.628 407.093 411.291 419.54 408.777 387.801 528.25 394.238 391.314 437.034 396.213 634.071 417.489 517.079 444.554 453.125 467.443 439.78 493.526 412.389 435.293 432.314 431.789 432.524 432.665 436.573 434.001 406.034 422.69 461.123 452.53 456.368 443.779 449.846 252.714 213.576 203.189 102.689 239.209 239.364 429.074 465.249 434.892 439.367 219.808 252.899 231.014 246.546 215.441 203.638 466.007 443.243 456.131 430.119 459.604 468.43 436.329 250.044 236.708 220.071 246.252 226.011 232.626 441.014 442.137 448.757 458.8 240.335 190.809 219.449 218.725 311.971 218.406 289.319 251.485 674.587 715.287 407.831 286.072 234.958 212.797 220.179 177.586 368.977 323.207 221.464 -35.41 -32.5466 236.84 331.62 232.706 176.289 224.399 318.331 228.69 250.987 169.327 248.648 244.093 217.609 236.95 255.285 -4.67729 -17.4015 -69.72 -10.1961 68.3684 523.795 678.439 371.093 601.661 596.304 290.087 393.493 413.071 494.056 509.606 350.233 380.423 225.547 445.973 444.396 448.519 447.352 445.84 442.564 446.888 493.791 349.766 386.969 570.723 392.514 394.778 463.974 180.45 29.7734 204.917 141.466 232.147 195.373 357.26 266.463 365.094 52.9256 180.283 402.963 366.629 365.179 321.265 359.6 334.726 276.222 344.929 408.578 412.305 321.816 382.652 380.573 368.942 432.196 177.219 174 232.07 235.829 223.642 157.424 239.058 297.426 424.807 436.569 267.296 412.772 399.472 255.668 227.647 310.086 289.222 214.64 260.133 290.664 -31.7787 181.534 177.489 321.107 215.242 225.293 243.19 330.234 15.7951 -2.13113 -0.554672 14.3249 -1.58622 252.404 216.459 216.175 267.131 405.779 201.992 237.105 -27.4987 -41.1701 -19.6031 258.737 331.342 231.484 291.325 300.656 238.466 476.7 0.345983 0.414987 5.6546 13.7811 6.13853 431.367 431.582 429.449 434.372 428.332 433.191 432.613 432.509 433.708 433.426 434.667 432.637 433.777 433.634 408.93 456.737 416.586 482.668 543.689 416.993 432.261 429.649 429.75 429.539 432.884 427.428 430.501 431.076 414.611 401.229 405.892 414.274 399.005 370.729 409.488 430.339 429.789 430.831 432.023 428.732 431.054 432.439 380.526 396.404 390.351 407.194 419.153 443.409 362.597 457.633 303.852 386.654 481.467 396.159 416.495 403.832 340.492 319.989 290.661 310.129 365.162 300.439 334.485 427.768 417.909 446.624 420.889 424.686 437.153 437.13 306.421 322.513 330.585 308.041 321.01 300.87 314.098 427.934 368.684 380.83 416.587 410.635 417.081 412.545 286.194 253.733 275.886 285.704 272.893 280.099 281.963 408.5 412.091 416.006 420.083 267.907 -35.6952 -48.0718 326.965 55.6319 3.02612 53.012 5.65546 254.347 301.047 303.134 300.051 290.399 292.179 283.888 5.41144 -59.081 6.42001 -49.2807 250.001 263.058 280.461 283.475 280.159 249.456 268.245 -12.6145 5.78168 33.2664 -16.7575 -11.6428 -8.43028 -8.05922 4.95318 2.87958 3.76182 2.46394 2.76727 5.67555 3.87156 243.159 263.582 179.917 175.137 265.717 159.24 243.883 -1.81046 -83.2127 -12.7782 -57.3704 -68.2072 -12.2014 -93.677 304.323 332.572 328.177 258.034 347.483 279.086 286.229 415.983 428.361 424.152 427.018 422.396 417.098 427.492 433.722 431.737 433.648 432.187 433.243 433.509 432.583 434.64 433.824 434.465 434.148 434.49 -98.1275 -81.5178 -94.3603 -94.1704 -95.6227 -94.6315 -95.3187 447.436 409.786 476.323 360.187 405.895 417.21 409.431 433.029 432.83 432.649 433.628 -192.894 -185.219 421.274 -188.257 -190.523 -55.8531 322.441 -44.5116 319.48 -43.3163 316.324 -103.919 -82.2645 -110.923 -88.7259 -96.6478 -77.9665 -119.165 -152.697 -145.592 -169.143 -155.065 -167.015 -54.3965 -47.0926 -54.1364 -48.5148 -53.6525 -48.1567 -58.2842 -152.773 -152.657 -180.557 -162.234 -152.317 -159.825 -152.066 -6.60646 1.80823 -1.90658 -1.92484 0.20428 -9.96175 -0.53603 -27.3687 -10.7583 -16.5582 9.19477 -30.8697 7.04335 -10.6336 -85.4932 -98.0028 -70.3311 -40.5535 -98.1871 -57.7286 -98.0373 5.88658 38.0507 53.7062 68.3329 0.591669 -228.796 -241.573 -229.509 -250.591 -251.285 -219.184 -232.355 -143.611 -102.509 -132.212 -108.71 15.879 24.1907 54.0793 23.3623 12.0253 -38.1712 -53.7711 -45.9443 -43.7881 -53.8029 -56.7376 -61.8219 -49.1622 -69.6421 -79.3886 -67.7228 -64.8216 -80.9355 3.87107 11.7004 5.39506 12.395 4.37026 9.11704 4.79226 1.19769 3.40862 3.42955 6.16113 6.50309 6.35703 5.56497 5.03271 5.10961 -1.512 -0.652687 -0.336452 -2.92772 -4.02363 -3.67888 -4.72166 -4.69548 -5.19614 -5.04015 -4.47204 -2.90204 -4.01391 -3.04097 -3.16677 -3.7763 -2.26216 -4.4482 -2.85981 -2.76628 -3.9656 -2.89258 -2.54495 -2.58632 -0.407506 -0.777242 -0.816867 -12.3764 -12.211 -12.8497 -11.6871 -19.1753 -18.3131 -17.0278 -19.4225 -19.0527 -22.2718 -22.936 -26.4524 -9.24503 -8.64804 -9.59773 -9.4978 -24.2318 -22.8576 -22.2391 -33.272 -13.0886 -17.085 -23.8673 -15.6078 -4.50885 -4.08464 -3.94974 -4.39975 -0.659346 -0.0966167 -0.618071 -0.0229401 2.88269 -0.230712 2.51664 31.6999 1.02282 4.01248 5.29118 2.81427 4.16475 -1.26909 -3.60046 1.88624 -1.93291 2.7539 4.26857 -2.04772 -0.709737 39.3098 3.01771 -1.24546 -3.74231 -9.67035 -8.2454 -14.8312 -7.24008 -5.5893 -4.67378 -1.9785 -5.69782 -2.00699 -9.78898 -2.00443 -14.785 -5.59612 -3.6901 -7.32934 -11.2427 -9.95127 -13.226 -6.58808 -7.73032 -12.2195 19.003 -33.6592 -18.3131 -5.89116 -7.93082 -15.9289 -6.90505 -19.1158 -15.9579 -23.1331 -20.0101 -18.7426 -19.4215 -25.6168 -23.5406 -19.6885 -81.0535 -37.3544 -50.8999 -42.0573 -54.822 -53.7555 -57.8725 -54.8447 -48.5826 -77.5216 -35.6027 -43.4747 -44.6507 -105.007 -108.74 -105.97 -103.399 -104.774 -101.874 -108.739 -121.02 -126.999 -121.623 -126.674 -120.681 -126.762 -120.089 -93.1059 -90.3496 -76.8024 -100.229 -89.5369 -101.575 -88.4671 -170.242 -169.185 -189.448 -158.829 -172.041 -160.522 -187.114 -176.629 -192.195 -177.22 -191.685 -174.789 -189.18 -183.95 -124.995 -129.507 439.983 -123.315 437.502 435.761 435.82 434.804 437.756 435.139 437.464 331.178 478.652 313.923 398.79 410.761 417.83 404.404 436.699 437.062 437.54 436.03 436.927 436.305 418.212 -168.178 407.985 -173.999 439.757 408.394 436.506 432.404 438.112 433.13 421.21 -122.862 -155.05 -129.056 -149.384 -127.399 -146.646 -123.563 -75.03 -57.3081 -90.6223 -56.4238 -90.4493 -53.7757 -84.9458 412.403 -151.16 -139.923 416.953 -2.56737 -2.35245 2.75822 0.0252532 1.59157 -6.71888 0.844843 286.702 286.609 284.963 304.859 298.201 274.233 298.406 -112.74 -48.0923 22.8838 -113.929 -22.4249 -31.8912 -31.1518 -24.5626 -23.793 -30.1369 -24.5516 401.235 425.94 411.7 403.13 340.916 496.346 541.716 514.024 435.845 445.205 449.637 429.417 445.22 509.025 435.378 436.121 431.158 437.031 433.872 436.036 434.19 481.74 421.063 439.75 351.256 421.702 414.2 448.301 434.278 434.548 436.744 432.039 435.036 432.978 434.872 411.504 420.484 381.239 409.215 391.384 418.299 465.979 304.582 297.228 311.369 290.016 233.782 200.89 269.562 268.349 227.92 188.578 289.606 270.477 156.715 450.693 422.17 433.361 420.127 444.505 430.056 435.598 309.938 -57.2902 312.641 235.79 409.982 408.299 402.976 396.34 361.698 372.821 297.31 284.611 296.244 291.992 294.175 284.217 294.213 292.062 278.691 378.464 286.213 305.854 271.568 281.219 -112.671 3.1038 -2.92535 -95.8152 -38.2322 286.863 -23.3509 -20.9202 299.554 306.136 300.183 300.462 286.122 300.964 294.299 301.609 -10.4342 11.7812 -0.166983 -11.3106 -8.01031 289.226 491.559 432.432 450.548 417.507 407.266 412.709 496.38 498.138 570.869 390.271 479.472 431.035 398.738 395.601 418.657 392.137 415.612 367.708 414.823 382.084 415.283 417.967 413.551 502.462 506.65 424.77 463.511 338.019 130.566 54.6302 264.796 396.762 129.035 448.595 447.673 466.328 446.545 457.785 445.29 259.938 178.673 261.841 248.418 102.019 263.535 418.682 424.107 421.918 440.173 443.845 396.858 427.372 309.419 209.153 285.243 365.808 278.93 239.751 290.661 354.61 422.303 411.039 428.648 402.577 423.699 410.954 318.917 283.836 286.924 226.902 354.814 283.883 297.559 10.9767 -31.9289 -3.71668 -11.2356 8.30208 -12.1619 8.49175 205.101 158.842 336.645 354.657 217.764 210.461 195.047 -25.1741 -77.0161 211.829 254.232 219.993 270.384 237.685 274.703 192.286 -52.8721 5.13282 -10.701 -87.5658 -76.6612 294.657 235.591 231.007 289.223 108.737 411.571 349.243 -38.9794 -19.689 51.4516 -0.171698 896.96 294.062 532.567 610.989 767.954 515.647 186.739 676.476 551.198 423.087 362.646 570.756 475.905 142.648 428.96 433.16 432.433 432.281 433.348 431.411 430.607 399.049 440.843 408.594 414.298 391.344 523.735 422.64 878.825 333.821 325.599 -86.2672 397.406 -92.7423 691.175 231.188 254.263 154.229 247.526 222.644 237.333 240.842 481.056 450.589 474.275 450.389 474.013 488.193 465.572 259.757 248.685 258.99 240.79 263.154 241.952 248.32 477.43 451.32 436.364 435.624 439.714 444.213 311.795 291.829 158.099 322.128 172.253 305.946 330.86 474.416 404.543 444.631 121.082 411.789 341.182 316.84 302.699 312.27 347.059 317.252 340.645 -17.6232 -10.1897 209.389 242.831 243.682 255.882 360.233 240.273 186.705 -38.5678 -28.0826 -38.0573 -28.5503 -34.6551 -37.4727 -30.4214 286.252 305.998 253.678 325.624 281.998 315.458 300.672 2.92745 -41.8331 -48.4769 2.83142 -27.6161 6.95884 -3.10838 570.051 191.483 291.904 146.723 350.662 75.0983 237.084 9.4056 1.63567 5.48418 12.6544 8.98854 14.2623 -1.69933 769.474 450.074 683.822 550.169 727.753 699.987 459.792 543.464 394.648 368.574 403.551 451.246 444.739 421.519 713.012 821.738 627.625 372.243 581.617 409.263 451.069 437.66 431.77 433.191 430.416 431.991 432.504 436.148 392.705 416.889 433.712 460.249 430.742 444.841 408.671 262.606 238.53 -3.39743 344.424 238.709 447.434 440.915 425.253 444.742 428.59 322.749 236.353 251.761 269.618 274.386 232.012 269.009 405.689 397.319 312.124 366.972 429.338 304.254 374.174 145.314 214.54 256.758 5.72098 262.63 54.7683 207.822 422.254 426.178 426.193 443.505 415.981 438.636 412.387 234.694 150.726 268.754 165.036 269.494 239.903 -19.1977 240.32 230.304 248.869 246.602 224.981 365.155 325.495 -24.6794 -15.7863 -33.7688 885.204 -122.469 492.92 509.1 814.161 538.959 442.754 -5.44364 -1.09862 -2.29147 215.631 214.951 262.143 274.869 232.553 322.142 218.704 -40.11 -5.19386 -1.75443 -7.8907 -6.37612 -85.3791 406.191 442.42 404.801 437.364 366.806 325.606 702.125 435.51 431.655 432.4 431.448 432.864 432.042 432.821 490.812 448.671 452.365 427.155 499.205 651.894 662.522 433.104 432.053 432.584 431.395 432.625 431.968 430.044 382.399 411.108 379.656 470.91 384.815 492.316 345.504 429.93 431.216 431.502 429.919 431.379 431.895 431.803 434.95 385.357 406.99 445.121 412.977 412.613 405.037 263.531 247.802 226.541 235.12 236.43 267.785 433.84 416.194 397.096 498.698 448.816 385.631 216.274 142.005 236.314 98.4575 225.666 236.003 420.303 410.171 203.333 386.478 312.698 191.952 327.392 292.985 303.673 261.385 318.034 120.716 395.55 424.395 239.334 420.699 322.901 312.452 262.825 310.899 299.14 312.56 280.311 321.417 276.624 192.825 256.734 284.82 484.984 295.774 -9.441 -58.2884 -23.966 -26.8475 -21.4338 -45.4787 -27.5609 -75.1448 210.064 281.092 254.556 280.229 218.021 258.409 249.146 -3.28557 30.3845 1.43979 12.6583 27.5262 -0.939926 342.649 294.799 282.21 295.325 211.96 288.35 352.24 9.0281 5.73255 -1.31071 10.0746 14.2418 1.66909 388.945 361.029 694.016 243.076 447.984 455.372 442.572 395.038 485.794 475.989 645.193 264.08 453.124 313.064 429.496 430.521 429.371 430.958 430.093 430.709 429.05 414.366 396.409 408.354 385.595 406.632 444.644 430.831 411.346 346.209 397.952 424.288 605.602 238.818 420.254 300.042 258.68 243.308 235.165 273.422 279.327 294.147 478.128 443.018 434.055 435.615 227.929 389.439 307.283 296.4 298.408 175.351 418.523 407.025 384.567 369.237 417.83 402.057 400.142 266.687 177.72 284.818 277.788 269.553 259.072 281.096 339.797 374.1 339.97 338.351 373.16 383.855 222.791 284.087 279.257 289.715 279.607 291.221 -1.6125 -17.054 0.820944 -5.18287 -14.6399 -2.34843 250.737 323.458 357.439 314.268 299.263 296.934 334.358 244.14 235.969 276.441 267.167 262.344 252.866 248.697 -5.60898 3.25288 63.2222 47.7137 316.631 306.055 317.344 318.782 305.899 305.895 325.669 5.63384 434.224 433.932 434.444 434.124 434.173 434.049 434.337 435.153 429.942 435.072 432.787 432.734 432.773 435.404 -118.224 -117.972 -116.891 -116.981 -120.665 400.836 459.386 413.353 377.202 354.054 450.445 314.036 432.935 433.398 432.849 433.62 433.242 432.856 433.551 376.11 412.024 344.736 416.663 483.331 324.013 344.06 362.136 492.741 391.742 394.277 -178.335 -171.863 -169.741 -181.146 -171.82 -180.874 -177.876 283.04 290.203 296.172 289.406 289.47 291.611 414.461 -160.598 -143.975 418.79 410.895 -48.7027 -33.2372 -50.8801 -44.8419 -37.2099 -54.4658 399.862 382.669 389.879 373.346 387.466 393.276 393.729 284.617 -35.6213 294.259 -48.5169 -15.0417 10.2634 4.73577 -8.13055 -0.640575 -20.1925 -19.0052 -9.7777 -17.0306 -13.6918 -24.2993 -13.1061 -10.9527 -19.8607 295.904 -9.58288 1.3605 288.721 0.515194 -26.4537 -25.6373 -14.8939 -16.9848 -5.14007 -3.96433 2.72357 1.12268 1.42991 -4.77727 -0.00285981 1.39439 2.00311 -132.179 434.519 -139.765 -141.13 -108.611 -104.403 -91.2783 -79.0428 -107.834 -97.8839 -105.064 -122.246 -125.691 -96.2983 -128.912 -112.489 -135.747 -107.822 -196.561 -195.084 -188.79 -189.172 -188.538 -195.201 -197.887 -203.509 -154.47 -184.714 -155.615 -193.748 -162.318 -190.63 -209.727 -174.908 -214.753 -186.351 -200.767 -182.797 -211.615 -218.181 -209.611 -217.381 -203.842 -212.941 -210.853 -215.729 -106.218 -74.764 -62.6811 -57.3755 -96.8542 -81.0642 -71.3686 -92.1903 -95.733 -92.4118 -76.2545 -83.7356 -107.943 -83.7293 24.3058 11.8765 51.2552 15.4535 -22.5334 -20.0231 -20.8381 -62.5045 -79.1633 -61.9022 -60.1095 -66.2209 -28.2413 -22.5109 -21.4134 -28.2098 -29.0215 -28.1648 -31.3536 13.6666 17.8341 15.8356 -0.925724 15.1546 14.2851 26.3077 12.3472 13.5076 11.5565 13.8297 13.3509 27.5838 11.1155 8.05588 25.969 0.841594 3.17848 3.84101 8.84337 3.28898 -0.0561983 -10.1726 -6.44028 -14.527 -4.81887 -1.64309 -0.240995 -10.4558 -2.66035 -16.3257 0.157205 -5.81922 8.4347 25.7984 3.51131 3.5797 8.89341 10.9049 4.92034 1.49849 -2.31423 15.3411 13.0226 26.6112 11.2417 -20.4099 -8.42118 -13.3032 -8.04068 -13.1649 -23.0282 -12.5674 -4.03667 6.72228 -11.3554 -6.48738 -26.5316 6.27891 8.8593 -3.83711 -2.05041 -1.99486 -2.84583 -2.203 -1.90542 -1.88091 -1.67531 -1.98846 -0.530071 -0.302676 -0.61369 -0.233371 6.65351 -1.55531 -3.17499 -1.96408 -6.08374 -5.31656 -6.09053 -2.91205 -2.95614 -2.9436 -0.734043 -0.311829 -0.581768 -12.4225 -11.1474 -10.4826 438.203 439.568 438.048 439.488 439.951 -111.754 439.453 -118.946 -82.1459 -91.0437 -72.3175 -84.6154 -66.7346 -96.3427 -82.161 -98.4477 -106.733 -104.404 -89.4088 -112.815 -94.6246 -82.7114 -136.186 437.033 -141.937 -127.161 -150.981 -124.977 -128.753 -141.004 -131.768 -143.994 -149.028 439.803 439.508 439.424 439.588 439.556 439.776 439.68 438.715 433.846 435.918 434.641 437.067 437.056 437.196 438.709 438.533 436.744 437.758 438.105 438.299 437.855 -100.352 -103.946 -91.2349 -98.5256 -102.566 -93.3769 -102.086 -95.3247 -101.692 -93.7878 -95.4504 -100.579 437.517 435.204 436.307 435.573 436.745 438.571 438.069 -103.76 438.066 438.465 376.018 424.659 410.83 -161.827 389.734 416.184 209.348 431.739 522.435 406.031 382.025 402.19 -118.519 -110.616 -120.1 -119.033 -107.344 437.758 -113.708 436.762 -120.027 -154.519 -149.153 -155.597 -154.091 -151.162 -62.9135 -62.0073 -45.4762 -56.8391 -65.2625 -49.8282 -56.8098 423.885 414.586 422.85 404.17 431.064 412.061 380.248 -81.3482 -70.3407 -101.702 -69.854 -90.5532 -64.9658 -89.3833 -129.648 -139.991 -140.748 -132.102 -130.922 -142.881 -125.688 43.2926 -14.8992 436.009 434.724 436.177 434.24 433.303 436.346 436.581 437.581 437.753 438.028 437.475 438.021 437.23 437.772 435.109 430.966 434.803 436.306 431.817 434.241 437.292 436.156 435.416 437.181 437.295 436.213 435.109 437.926 486.134 368.323 390.893 396.645 406.858 415.629 351.282 433.539 434.165 433.777 433.904 434.429 434.985 432.593 447.603 409.53 373.553 371.261 467.536 406.939 404.92 435.929 437.01 436.699 436.087 436.132 436.608 399.078 -158.533 430.992 417.529 420.259 404.986 423.209 335.734 429.739 406.118 406.851 425.175 432.541 438.293 448.418 439.854 418.695 433.885 316.089 293.15 238.112 298.802 299.491 341.076 224.704 372.793 -129.813 -131.164 410.687 -48.5343 -41.1499 -57.4982 -45.8906 -50.814 -39.3675 -55.1072 421.366 429.22 251.259 427.851 166.902 257.008 299.964 327.558 -105.166 -48.6327 -39.2967 -189.67 -83.2865 -113.026 -6.50268 206.983 191.263 297.529 340.027 294.095 255.967 246.618 -25.8901 -90.9714 -41.5747 -14.1676 -70.0282 -18.8158 -26.9257 -20.0184 -26.9363 -18.196 -19.3347 -23.8493 326.707 335.818 331.521 345.635 3.09599 3.62046 1.95558 1.57361 1.36833 2.65305 399.064 274.295 539.553 459.149 354.942 409.672 373.053 338.244 356.431 23.4622 428.214 284.945 416.61 346.53 412.564 378.82 410.066 399.425 473.469 308.598 409.82 395.968 467.611 435.618 433.743 371.283 361.107 435.588 308.407 202.831 345.857 292.846 281.852 358.135 443.868 160.987 424.143 250.594 436.262 327.718 265.757 328.621 330.122 355.222 249.538 324.29 415.088 402.234 379.786 411.496 411.959 342.847 419.612 316.063 309.603 316.973 312.117 314.63 314.316 317.568 255.255 383.455 353.482 391.188 330.272 369.139 312.226 311.234 314.458 306.987 305.979 307.641 312.259 305.875 11.3459 -62.2192 4.85489 8.98947 -1.22579 -43.1658 8.57648 318.991 274.995 268.044 206.922 286.875 301.429 248.618 19.0542 6.21047 19.103 -2.9462 23.9103 11.468 5.76002 327.159 333.537 333.355 322.571 323.553 342.604 326.623 3.67367 4.07203 4.92149 327.089 308.406 315.492 318.306 313.339 316.042 329.968 37.1296 5.00462 20.8895 23.1606 449.618 574.394 372.116 353.59 371.701 449.56 395.558 412.105 434.797 453.837 419.901 372.075 446.881 389.075 490.106 364.312 362.576 425.71 399.918 409.024 417.211 408.875 416.759 412.23 403.442 416.32 408.686 410.579 289.346 288.837 -1.33052 260.066 288.559 200.407 304.228 408.252 429.529 451.844 427.509 435.639 412.848 410.224 320.674 318.126 187.652 292.802 269.229 265.413 238.267 402.633 421.163 414.389 416.598 415.915 419.01 401.674 296.939 297.251 305.855 302.512 298.734 294.199 302.915 8.19933 -2.10509 -5.24211 261.757 261.224 279.748 268.453 303.363 277.464 222.514 -19.239 0.366601 -47.0693 -3.8443 -32.6573 265.43 299.833 288.392 297.538 269.103 285.698 299.61 57.4561 -6.96858 15.3237 291.817 288.278 310.681 288.808 300.641 270.966 306.53 5.13048 63.9737 41.8431 433.208 431.671 433.165 436.48 430.342 434.877 435.627 410.938 502.929 380.337 416.961 419.935 417.533 426.092 409.604 454.932 387.157 385.019 372.59 452.024 364.439 433.505 433.513 434.629 434.707 433.598 433.786 432.369 473.715 419.954 358.268 394.766 413.867 412.227 399.424 420.504 413.201 411.802 430.342 418.681 431.884 426.674 327.537 277.986 228.292 258.186 340.281 175.341 465.76 430.419 108.818 432.042 439.01 207.983 225.197 298.196 279.131 110.676 271.234 461.885 431.778 424.601 423.942 428.773 441.337 434.811 307 300.757 310.739 333.819 301.087 319.817 330.834 429.421 428.405 422.699 425.338 429.771 425.797 -30.3772 -45.6443 -42.9153 19.8537 13.3474 2.15557 5.85842 31.1662 -10.6137 7.235 265.83 364.677 349.282 296.545 300.882 326.011 290.791 -61.3736 -2.65837 7.63594 -7.81684 -32.1095 -36.7111 -3.32105 300.202 291.051 287.609 312.6 298.498 272.325 304.268 10.4997 3.94389 -12.185 6.57171 -15.4345 -14.7729 -7.95731 -6.15201 -6.43249 436.459 432.328 436.953 434.594 433.265 436.943 436.084 435.671 435.403 435.936 435.26 435.975 435.153 435.734 -126.191 -124.276 -108.827 -104.141 411.846 444.788 336.247 378.811 333.598 366.882 413.49 454.095 158.91 435.047 162.206 416.319 384.416 428.657 433.245 434.502 433.642 434.685 433.541 433.41 434.423 419.168 432.191 -162.5 427.968 430.438 -167.431 -118.445 -128.488 -160.556 -159.141 288.288 299.364 288.122 284.369 289.999 289.471 290.329 393.064 265.69 380.228 406.712 307.675 -34.187 -48.3211 431.067 -132.542 -146.421 -131.697 -46.7264 -32.4817 -47.6294 -39.4529 -42.3417 -36.759 -49.383 -146.638 -161.085 -164.055 -180.14 -138.901 -168.626 -164.035 -2.25546 3.24444 -3.66029 -19.1587 10.4654 -0.945709 324.643 -11.8295 -1.9803 320.328 -8.94306 -17.3501 -10.6589 -19.4355 -10.8638 -10.2984 -17.1914 1.80316 -23.6398 -26.9208 -13.5056 -10.9485 -2.56965 -2.14087 4.02109 2.34047 1.76719 -4.16889 2.0168 1.54001 2.11945 436.768 434.481 435.079 434.997 435.6 435.396 435.41 -163.411 -159.634 -170.262 -153.999 -156.899 -154.696 -165.309 -131.589 -134.87 -132.355 -133.174 -131.773 -137.733 418.891 413.512 428.619 -191.59 -194.55 -199.639 -196.604 -196.32 -195.484 -193.626 -56.0351 -42.4767 -44.4524 -51.816 -52.2472 -54.5402 -153.024 -168.41 -137.704 -181.569 -144.419 -180.791 -147.996 -165.599 -187.18 -166.219 -201.762 -157.493 -187.12 -171.671 -8.56249 -3.85958 -9.15992 -5.78985 -3.99977 -3.85863 -3.768 -4.40361 -3.59635 -4.90481 -3.93733 1.1116 -1.61893 3.82985 -2.20615 -2.47063 -2.52022 -1.41449 -1.39904 -0.61664 -0.729088 -1.36183 -1.67683 -0.624318 -2.18077 -2.12202 -0.348288 -0.605484 -11.6773 -8.01295 -8.91297 -8.44926 -11.588 -11.825 -11.3807 -12.5346 -12.1193 -12.3282 -10.4649 -10.626 -10.3367 -6.76675 -8.67074 -6.27732 -5.49164 -4.65254 -5.71452 -3.89476 -4.27742 -3.7406 -0.747195 -0.10562 -0.760352 -11.2542 -11.6655 -10.7213 -11.2517 -11.2964 -11.7339 -10.909 -10.9236 -10.7888 -9.99118 -11.0866 -10.1839 -11.6307 -10.5006 -7.99383 -9.77413 -8.657 -8.30742 -9.03535 -8.69836 -7.87752 -7.00698 -6.44756 -6.10513 -7.37043 -6.03944 -7.68317 -6.88084 -3.4315 -4.95238 -4.54411 -3.57254 -4.61579 -3.70257 -3.46883 -1.94178 -0.917363 -0.738431 -2.07817 -2.21776 -1.87195 -0.760724 -106.388 -108.396 -103.085 -111.611 -102.136 -112.182 -107.165 -33.4392 -17.1744 -10.8149 -14.7641 -27.3906 -26.461 -32.007 -128.409 -134.339 -124.057 -120.132 -126.554 -136.404 -114.036 -98.3862 -90.3028 -94.2618 -92.3661 -95.291 -88.3332 -89.9389 -98.4999 -103.052 -102.567 -106.354 -97.8822 -102.634 -102.023 -163.427 -170.764 -120.046 -113.091 -124.482 -118.385 -123.799 -120.154 -113.459 -112.181 -113.273 -117.049 -108.073 -88.8558 -78.3829 -71.0046 -70.5256 -87.1109 -83.1079 -78.569 -102.879 -116.811 -91.8007 -131.522 -96.708 -123.564 -102.216 436.516 437.023 436.162 437.358 436.579 436.254 437.573 424.718 423.495 379.202 -180.812 -141.498 -176.498 -163.193 -171.296 -154.082 -188.168 -184.678 -166.107 -178.08 -187.319 -171.442 -179.72 -198.726 -125.436 421.934 345.408 -52.6024 -37.9879 -40.811 -47.12 -42.5279 -49.6504 -128.446 -141.782 -155.54 -116.922 -149.175 -119.3 -126.681 -7.67404 -4.60539 -0.208137 -0.973066 -4.4224 -8.71075 -1.52299 -14.9473 -21.729 -14.3658 -24.142 -15.367 -15.6337 -25.1149 255.86 230.273 131.074 147.683 245.483 138.747 244.19 268.086 276.574 164.903 171.627 290.799 144.697 263.116 -141.359 -130.181 -122.54 -124.887 -139.873 -112.828 -135.988 -126.738 -125.608 -125.517 -131.236 -127.351 -130.852 -130.916 414.472 478.858 395.328 420.577 421.932 413.482 434.989 399.654 425.426 439.732 428.675 440.081 455.869 416.517 -40.6047 -34.6739 -30.9575 -44.85 347.685 344.892 379.713 376.108 393.779 314.96 348.638 307.261 316.295 310.752 -71.5572 -53.5923 -83.1637 -52.02 -74.9765 -48.9399 -81.911 -11.4346 324.114 323.575 -8.44167 330.706 3.49154 3.29294 4.42185 2.557 4.13819 3.48596 2.71289 -14.9591 -23.2883 -31.02 -13.8191 -25.2912 -14.1862 -16.68 -122.657 -128.134 -127.631 427.51 403.413 430.515 409.534 427.262 425.067 406.907 429.91 414.898 386.613 428.97 418.434 323.455 445.067 -159.092 -160.992 -159.728 320.174 318.472 319.452 410.826 422.05 422.676 387.959 424.311 411.02 425.473 305.238 304.038 -26.1692 305.939 -23.9709 -33.2504 -145.958 -153.949 -152.449 -156.853 -153.192 -147.687 -147.326 -60.394 -35.3277 -43.0079 -72.1971 -36.5684 -59.5089 -72.3409 5.74864 6.63701 4.39923 3.07081 7.16578 4.98398 3.08095 -9.05564 -16.5797 -9.75943 -14.4656 3.65649 3.53536 4.19344 2.80616 4.29622 3.87368 2.96475 -11.2628 -20.9527 -12.7406 -23.6046 -11.4365 -20.5049 -12.8052 -14.8228 -20.9578 -26.2377 -14.8444 -22.8073 -12.0776 -14.3541 297.548 327.877 323.705 239.011 348.574 242.406 272.864 422.672 431.326 426.369 431.579 427.303 417.532 431.078 437.611 434.797 437.134 435.158 437.311 437.014 435.693 436.599 436.724 436.769 414.259 396.383 418.928 471.717 430.666 345.561 414.105 435.609 -146.02 -155.472 434.753 -171.165 -172.629 -162.066 -159.652 -171.163 -201.891 -165.722 -183.177 -202.755 -175.039 -194.397 -207.08 -36.7966 311.759 -26.5401 -29.929 -33.2114 -130.731 -133.201 -148.513 -134.905 -126.506 -145.21 -109.98 -132.087 -109.145 -144.481 -102.076 -137.125 -117.691 -0.986287 1.75528 -0.119607 -0.223945 2.36757 -3.64157 0.67831 -121.272 436.431 -130.668 -128.47 -123.642 -130.631 -121.559 -120.532 -113.344 -119.919 -126.436 -125.161 -103.671 -103.204 -90.5997 -84.4431 -101.864 -100.565 -93.4155 -90.3631 -67.51 -53.3894 -54.3837 -73.2544 -80.1787 -59.4385 -148.601 -168.221 -156.349 -196.04 -147.704 -177.856 -152.099 41.5929 -3.86097 33.2927 13.6308 38.6746 66.437 27.5025 35.7845 10.8089 14.1998 19.5612 3.28058 23.2606 31.0693 -206.113 -178.6 -185.823 -111.101 -207.924 -107.623 -69.0964 -163.257 -117.303 -80.4672 -61.5291 -67.0571 -67.6106 -42.807 -73.7506 -53.5395 -47.5315 -9.70266 -12.5233 -10.1115 -11.2898 -6.81858 -6.91186 -6.60077 -6.827 -6.82413 -6.91469 -7.27478 -7.05482 -7.00494 -7.10844 -7.23877 -7.19692 -9.5112 -9.84228 -9.9557 -9.43754 -10.0493 -9.4528 -9.57237 -10.7803 -10.3719 -10.3879 -10.6295 -10.4867 -10.6892 -10.7009 -10.0468 -9.20062 -9.20017 -9.97762 -9.37597 -9.94011 -9.92794 -8.0111 -8.14136 -8.27249 -7.4296 -8.44494 -7.53671 -7.64103 -6.11535 -5.45406 -5.44409 -5.98155 -5.5281 -5.9332 -6.01822 -4.1686 -4.53018 -4.58467 -4.14868 -4.60112 -4.12229 -4.16255 -1.00034 -0.393796 -0.371369 -0.902396 -0.928127 -0.914426 -0.423312 -8.83122 -9.42564 -7.91001 -6.72225 -5.39647 -5.87553 -4.61617 -4.12611 -0.159896 -0.820823 -15.0538 -4.92127 -18.5959 -6.10762 -13.9268 -5.25659 -17.7853 -13.8945 -10.894 -31.8216 -34.3206 -31.3328 -32.3371 -41.9842 -31.0638 -34.2178 -29.3663 -35.559 -25.2922 -20.4899 -21.3044 -23.6931 -21.676 -23.9486 -24.0377 -33.1156 -31.8798 -27.2477 -19.4735 -101.858 -120.399 -109.908 -73.225 -113.721 -69.1901 -100.453 -39.0297 -37.7111 -42.3176 -76.5243 -53.4818 -20.3863 -49.5234 -44.365 -71.4634 -53.1593 -161.937 -169.039 -164.411 -93.4686 -105.65 -123.83 -28.6702 34.744 -67.8693 -66.7242 -53.6464 -11.0024 -3.2595 -9.14614 -5.9305 -6.35859 -10.4745 -10.4523 -35.7768 -29.2009 -29.9628 -30.701 -30.7969 -34.2625 -33.3348 -6.90551 -6.85523 -7.19463 -7.33117 -9.81272 -9.42772 -10.4665 -11.4904 -10.202 -10.3642 -10.8923 -11.0017 -9.94347 -10.274 -10.6172 -9.06529 -9.75093 -6.81596 -7.63425 -6.22036 -6.2746 -7.11132 -7.29216 -6.13337 -8.251 -7.41899 -5.44287 -5.93292 -4.71199 -4.196 -0.359663 -0.901178 -10.0662 -9.65882 -7.45123 -7.83326 -12.3041 -11.9377 -8.77227 -9.4602 -12.6218 -12.8745 -9.17289 -10.2785 -5.33151 -5.84378 -7.93441 -6.65901 -4.76317 -5.26185 -0.141763 -0.80559 -4.09008 -3.67808 -0.109604 -0.766371 -8.72252 -13.0263 -12.4325 -9.75314 -10.0802 -10.5596 -6.35194 -7.73431 -7.01393 -6.63143 -6.83875 -6.29938 -8.17413 -7.50814 -8.02455 -7.61034 -8.12251 -7.87891 -7.38024 -13.0342 -12.6948 -13.1936 -13.5629 -12.5598 -13.2772 -13.4085 -13.8045 -12.9595 -13.8997 -13.8193 -14.1359 -13.3559 -13.5461 -11.0979 -9.31977 -10.8197 -9.37684 -10.6461 -9.71202 -10.8335 -7.42209 -7.87444 -6.67833 -7.68663 -6.87516 -7.1145 -8.28847 -5.30718 -4.70378 -5.37151 -4.5504 -5.36041 -4.67438 -5.14414 -3.60109 -3.9673 -3.76928 -3.81784 -3.6116 -3.70584 -3.90408 -0.88962 -0.202797 -0.934978 -0.211673 -0.824454 -0.800601 -0.322595 -18.6463 -17.6475 -6.00217 -11.2942 -14.7422 -28.5601 -27.5177 -26.9157 -4.33878 -34.5562 -19.1115 -25.0038 -22.9807 -25.4514 -29.3333 -26.2399 -19.9011 -27.525 -18.0205 -16.4305 -19.2922 -22.2628 -21.9217 -14.045 -21.756 -17.691 -4.81805 -10.0635 -9.60571 -9.55691 -8.25709 -8.57107 -7.19181 -22.9065 -27.7192 -23.7381 -20.8034 -26.8069 -23.5335 -20.637 -30.0357 -13.537 -35.8513 -14.048 -39.742 -9.2379 -27.3896 -12.0099 -15.3819 -16.2717 -25.4223 -11.962 -6.92174 -21.8735 -7.65488 -23.9801 -22.3447 -79.0081 -56.3459 -64.9077 -33.4891 -37.3557 -41.7298 -45.187 -37.232 -32.5571 -34.2275 -37.9904 -40.5698 -37.531 -20.054 -20.1777 -15.6611 -19.3766 -17.4982 -21.4481 -17.1186 -3.02381 0.638738 -1.2288 -2.61068 -0.763771 -2.58063 -2.82554 -4.78712 -6.61788 -4.30186 -5.92093 -5.16102 -6.22012 -4.49765 -17.646 -27.3615 -11.2786 -12.576 -8.30248 -8.81253 -11.4276 -8.19397 -10.8612 -13.2473 -15.3062 -14.3195 -17.9768 -13.8183 -16.7639 -12.9408 -15.5195 -16.6365 -19.4081 -14.5898 -14.7642 -17.0607 -18.9011 -14.0153 -15.8125 -13.2908 -16.1302 -14.6308 -17.7085 -14.745 -17.0908 -14.0909 -16.4795 -14.4043 -10.6751 -10.144 -12.758 -11.773 -12.848 -13.9448 -6.87976 -7.33656 -6.76193 -7.13146 -6.61181 -7.4702 -6.7896 -10.2116 -10.4996 -9.98868 -10.4662 -10.0709 -10.5976 -10.0508 -8.74428 -8.20849 -8.66884 -8.1767 -8.62166 -8.94985 -8.27165 -12.7379 -13.8056 -13.7281 -13.6515 -13.4349 -13.2791 -13.0646 -11.1415 -10.9336 -10.9745 -10.853 -11.1104 -11.0385 -10.985 -9.88272 -9.42267 -9.89357 -9.15449 -10.0769 -9.21447 -9.82077 -13.4605 -14.0075 -14.3197 -13.8323 -13.8373 -13.9301 -13.4598 -10.1057 -9.17978 -10.1386 -8.90535 -10.4141 -9.01762 -10.0243 -7.56297 -8.5896 -7.61259 -8.16218 -8.09447 -7.42354 -8.32024 -5.78906 -5.37315 -5.90023 -5.36473 -5.94382 -5.32524 -5.79256 -6.73229 -7.78386 -6.33821 -7.27389 -6.91044 -6.35868 -7.67973 -5.01624 -4.5171 -4.8144 -4.5699 -4.93276 -4.64316 -4.89837 -4.13573 -4.6446 -4.15825 -4.66164 -4.12702 -4.16889 -4.64388 -0.896779 -0.387559 -0.865421 -0.318984 -0.989742 -0.858762 -0.300568 -3.65638 -3.94645 -3.51973 -4.01062 -3.53565 -3.61018 -4.07651 -0.844045 -0.331441 -0.765867 -0.269024 -0.870844 -0.836095 -0.284119 -9.79531 -9.80851 -5.85606 -0.858163 -14.256 -13.8153 -28.1971 -6.19445 -14.2386 -10.9999 -10.6179 -20.4139 -21.6101 -18.8381 -22.6602 -9.15869 -10.7267 -19.8956 -19.8998 -19.9415 -20.1714 -18.5912 -9.77213 -15.5392 -12.4561 -16.0883 -4.38193 -4.79209 -0.0921412 -0.748383 -3.70389 -0.783851 -1.9794 -1.82885 -2.42065 -2.23964 -3.08533 -21.5845 -20.9438 -14.172 -15.1753 -13.6687 -9.58731 -26.1124 -11.7126 -13.2492 -18.6621 -15.3001 -15.378 -9.59691 -7.70005 -4.74552 -5.9021 -4.31466 -4.09951 -3.24085 -3.58452 -0.739806 -0.0422005 -6.13666 -6.8627 -7.05534 -7.30176 -6.2017 -6.79691 -7.08606 -19.0105 -7.49776 -19.1108 -11.1998 -20.0264 -8.08789 -18.1568 -10.0877 -13.4726 -13.5389 -17.643 -10.959 -8.35819 -16.8028 -7.85728 -17.3107 -17.1786 -33.7949 -25.6714 -30.3615 -27.4299 -25.9111 -27.9309 -22.2664 -31.6702 -23.0127 -24.1477 -18.9483 -21.7372 -22.9991 -23.8497 -19.1131 -17.8379 -19.0945 -19.8003 -21.0038 -21.674 -10.0881 -13.0298 -10.1571 -12.1081 -7.49166 -7.92766 -8.12288 -7.98903 -7.51374 -8.03962 -12.4682 -8.6219 -14.2605 -8.85876 -14.6463 -9.24628 -14.0607 -9.40799 -8.61928 -8.833 -8.59878 -9.93762 -9.41884 -14.3693 -15.1314 -14.3671 -14.7895 -14.5768 -13.8546 -15.0136 -14.1583 -17.3704 -13.8038 -16.6337 -12.8716 -16.3678 -15.2355 -15.4496 -14.6794 -15.154 -15.6022 -14.9367 -12.316 -10.5744 -10.9861 -10.6898 -12.3351 -12.3814 -8.23173 -9.16966 -9.15906 -6.67618 -9.40077 -7.66118 -7.72857 -5.87987 -4.86965 -4.95376 -6.41843 -4.86509 -6.01027 -5.67634 -3.75549 -3.92124 -4.1005 -3.96026 -3.74008 -3.811 -1.06404 -0.37817 -0.388929 -0.976821 -1.22509 -0.380169 -18.4657 -16.6747 -15.0335 -16.9369 -16.2758 -18.468 -16.2785 -16.2921 -15.5908 -17.9755 -19.2631 -14.0441 -16.0847 -15.8952 -18.0769 -16.4691 -15.5862 -16.7014 -16.5731 -16.9051 -18.4155 -9.90342 -8.89908 -10.017 -8.20585 -10.7467 -7.94269 -9.59445 -16.49 -16.5221 -10.9903 -12.3869 -8.93598 -6.57107 -4.50974 -4.98773 -3.89476 -3.59384 -0.341796 -0.864308 -13.955 -9.99685 -4.6196 -0.757272 -13.923 -10.5287 -10.7277 -7.69865 -7.29482 -7.55659 -7.70503 -7.48621 -7.61576 -7.62562 -7.68283 -7.62607 -7.68088 -7.51499 -7.48203 -11.6014 -13.4927 -11.7149 -14.0191 -7.78964 -7.76178 -7.71008 -7.74916 -7.73846 -7.44258 -7.90045 -7.7708 -7.76083 -7.5434 -7.62617 -9.42937 -10.0436 -9.77903 -9.55125 -9.82899 -9.6306 -9.42889 -10.3306 -10.5358 -10.9283 -10.6151 -10.3633 -10.6651 -10.7369 -9.9005 -9.32524 -9.00739 -9.80468 -9.21648 -10.034 -9.71047 -6.15405 -5.52017 -5.49343 -5.94692 -5.56243 -6.13592 -5.99938 -4.21095 -4.68946 -4.69695 -4.13039 -4.71881 -4.1661 -4.17549 -0.835625 -0.256391 -0.133191 -0.726011 -0.80817 -0.739234 -0.264992 -5.92138 -8.8583 -7.9079 -3.82884 -8.85467 -4.56906 -5.30239 -3.10498 1.94191 -4.49614 1.84565 -2.06812 0.831224 -4.9777 -15.9163 -8.73991 -15.7495 -11.0909 -16.5034 -8.74876 -15.0703 -11.3591 -12.9552 -13.5744 -20.5286 -16.1599 -19.6388 -18.0046 -15.6518 -16.8773 -13.905 -19.3282 -14.3746 -15.6611 -12.5193 -15.2992 -16.9843 -16.6503 -12.2609 -11.9235 -13.5971 -12.7913 -14.5438 -15.5751 -2.57158 -9.79963 0.646811 -5.08622 0.257431 -5.9264 -2.13653 -9.66037 -9.3199 -9.34878 -9.40658 -10.7321 -11.1317 -11.0066 -10.5607 -11.6296 -11.4227 -11.3589 -11.6096 -10.3915 -9.82945 -9.71504 -10.2965 -8.02448 -8.81425 -8.83105 -8.06018 -6.40754 -5.92161 -5.83992 -6.29735 -4.34148 -4.61491 -4.67588 -4.36026 -0.947851 -0.314362 -0.855834 -0.265439 -13.8755 -11.0578 -11.2183 -7.55852 -7.47534 -7.51152 -7.69991 -7.94091 -7.85853 -11.316 -11.0313 -10.697 -9.20493 -9.97423 -11.8099 -12.2127 -12.0406 -9.73256 -10.4174 -9.61584 -10.508 -10.3642 -5.43101 -5.96171 -6.77931 -8.91619 -7.4892 -8.82044 -6.99655 -7.07501 -5.23715 -5.56872 -5.02767 -5.70348 -5.51293 -0.197824 -0.719285 -4.55943 -3.86638 -4.36574 -3.83237 -3.98806 -0.137017 -0.68952 -0.173311 -0.728676 -0.647016 -7.23196 -7.0961 -7.00461 -10.8506 -8.42265 -8.78835 -2.95968 -3.74291 -1.62023 -1.68407 -3.29135 -3.46276 -1.33256 -8.74394 -6.49524 -8.50035 -6.62357 -8.29854 -9.08256 -6.9657 -15.8148 -17.8225 -18.975 -20.0028 -16.9411 -16.8115 -18.2126 -16.9903 -17.5098 -19.59 -19.2387 -18.8584 -17.5986 -16.72 -11.6966 -10.7783 -13.1846 -8.84269 -12.5805 -9.86207 -11.7638 -5.3813 -8.59345 -5.00863 -7.48628 -4.28763 -5.89332 -7.8018 8.57199 1.59946 18.2698 2.74103 18.2523 7.82454 2.57413 -12.6022 -10.8459 -10.4192 -7.88135 -8.20973 -7.90403 -8.13054 -7.29433 -8.31356 -11.014 -9.889 -10.45 -10.631 -10.1292 -11.2478 -10.005 -15.5933 -10.9188 -14.6461 -8.51419 -8.9972 -8.77491 -9.74413 -9.69321 -9.73458 -10.5711 -12.2374 -11.7749 -11.8353 -12.5296 -13.6255 -12.9151 -9.89318 -10.7127 -10.7586 -8.91417 -7.90543 -7.78763 -5.55135 -6.09859 -6.00719 -4.69488 -4.24702 -4.20661 -0.274718 -0.853177 -0.91384 -10.5484 -6.11034 -0.76562 -8.29445 -9.02537 -8.91977 -14.4202 -10.7844 -8.73562 -9.04392 -10.5604 -13.2948 -10.5822 -7.19416 -6.62625 -7.10345 -7.33992 -6.56928 -7.11864 -7.24439 -7.3572 -7.37738 -7.27423 -6.71257 -7.90873 -7.34678 -6.90624 -7.09105 -7.73192 -7.37395 -7.39487 -6.92288 -10.1633 -10.2707 -10.1678 -10.2764 -10.1189 -10.2081 -10.1826 -10.0515 -9.78562 -10.026 -10.1081 -10.2072 -10.1641 -9.98072 -10.1298 -9.7817 -9.80004 -9.73091 -10.0543 -10.0239 -6.49962 -6.83471 -7.21219 -7.40594 -6.89969 -6.45586 -7.33848 -7.05261 -7.26244 -8.15402 -8.02242 -7.35755 -6.18034 -6.99172 -6.6101 -6.7861 -6.96315 -7.24587 -7.80833 -8.06597 -8.42411 -8.06891 -7.26583 -7.73967 -3.01173 -3.11706 -3.54452 -3.40992 -3.22863 -3.35034 -3.12599 -4.32093 -4.11152 -4.73735 -4.77779 -4.17682 -2.96908 -4.08911 -3.49673 -3.91129 -3.15596 -4.23345 -4.13097 -4.69206 -4.78235 -4.78919 -4.05809 -4.19712 -8.48634 -7.46156 -8.43167 -7.48068 -10.1578 -11.473 -9.90226 -11.9967 -8.38285 -7.23512 -7.37584 -8.09591 -6.86552 -6.40595 -6.93086 -6.6975 -10.8433 -10.7509 -10.7517 -10.8355 -10.7653 -10.7778 -7.5791 -6.14182 -6.9279 -7.05837 -6.57146 -7.13638 -7.35347 -3.15351 -2.67576 -2.72534 -3.25039 -3.5058 -2.58565 -18.3845 -3.89529 -1.16897 2.5912 -17.7014 -3.58165 -0.888997 -6.08366 31.3383 29.8402 5.13452 -20.1579 1.96415 -16.2368 2.63557 -14.4431 4.95158 -3.49747 -3.06883 -3.71438 -2.93273 -5.17239 -8.59915 -3.30972 -2.87453 -3.23679 -3.18112 -3.41569 -3.04131 -3.09449 -2.90204 -2.90246 -3.04091 -3.25808 -2.5012 -2.61507 -3.89808 -7.70939 -7.79423 -8.08629 -7.79765 -7.85721 -7.28378 -6.80911 -6.87951 -7.244 -7.55516 -7.62799 -7.63016 -7.51146 -5.10773 -4.63849 -5.66663 -5.79944 -3.74133 -5.72035 -5.58177 -5.46779 -6.60692 -6.27969 -5.26692 -4.73704 -5.09265 -5.21392 -4.46512 -4.03033 -3.45499 -2.31687 -3.71807 -3.69572 -2.57951 -3.5123 -3.93216 -3.88595 -3.64869 -3.31 -2.65416 -2.55263 -3.10941 -4.94772 -2.06607 -2.78544 -2.84063 -1.82923 -2.04608 -2.27088 -2.67623 -2.40101 -1.83814 -2.29658 -2.07765 -2.04826 -6.85107 -6.77251 -6.50779 -6.10188 -6.58184 -6.86552 -6.06416 -6.77432 -6.84675 -6.00705 -6.44827 -4.84771 -4.05488 -5.83694 -5.26013 -5.78277 -5.06155 -5.20052 -4.99136 -4.9406 -4.89262 -3.89899 -4.47966 -5.6116 -5.03731 -2.50242 -2.87297 -3.97008 -3.46493 -3.90947 -3.65719 -3.41871 -2.75043 -3.46983 -2.4983 -2.22388 -2.94404 -3.75719 -3.43242 -12.3255 -8.95238 -6.48879 -7.03039 -7.73031 -8.30762 -7.89704 -6.56971 -7.92879 -8.84562 -8.92052 -9.77838 -11.4565 -11.2087 -9.91935 -10.6191 -13.8653 -14.0278 -13.4025 -13.7821 -6.24995 -8.23609 -8.00489 -6.49005 -5.54047 -5.12187 -4.42613 -5.8326 -3.90298 -3.45136 -2.3911 -2.91698 6.91731 3.5143 8.36707 4.91764 5.05444 6.02964 7.51725 8.94355 7.55798 6.27709 7.45525 11.8316 9.30722 9.72277 -3.53547 35.1436 35.233 -27.7903 -13.5276 -11.373 -5.03576 -1.6675 -0.826857 -6.23377 -0.300142 -2.94032 -1.32637 -1.41769 -0.97841 -0.137088 -0.809712 0.544658 0.962772 0.329244 0.243452 0.145644 0.634374 0.8799 2.67406 2.95305 5.28352 3.93285 4.48199 0.359285 -1.8366 1.16274 -1.45327 -1.30133 -12.6393 -13.4028 -11.1044 -12.0861 -12.2441 -11.2927 -12.6942 -11.5913 -10.6757 -11.7801 -11.0101 -12.2705 -13.5157 -14.4974 1.5974 3.38927 -2.91463 2.84878 -1.03381 -1.1232 -1.1968 -1.22321 -9.96709 -9.51089 -10.5205 -14.4615 -9.85779 -10.6341 -11.0714 -9.89975 -12.7559 -9.15078 -8.32635 -8.49441 -8.32596 -9.00253 -8.82715 -8.79676 -11.6226 -10.574 -12.1601 -10.1443 -11.6595 -10.4967 -11.7078 -2.27218 -2.51274 -4.77969 -2.91661 -2.60534 3.31973 -1.45231 -3.90528 -4.36735 -3.13588 -3.85969 14.6402 -0.770489 -1.79453 -0.738063 0.609178 2.42879 0.191596 1.35495 -0.264016 1.25888 -20.2109 -15.9646 -14.9756 -18.5425 -14.7443 -11.5947 -14.172 -15.4899 -30.9523 -19.8547 -22.7542 -21.1884 -18.0508 -25.7169 -21.7099 -28.1688 -12.8759 -1.37981 17.1456 -13.466 -25.9175 -24.0791 -22.6044 -22.2065 -25.0841 -23.7688 -24.0079 -22.1789 -21.736 -21.2203 -23.7606 -22.7977 -6.71555 -6.54888 -3.30067 -5.4559 -6.93439 -3.30251 -5.80481 -12.1285 -1.05023 -0.569697 -4.8451 -8.20848 -8.84098 -4.2616 -22.2618 -26.413 -24.5664 -23.2279 -25.8762 -22.2742 -21.0383 10.02 14.3648 11.7929 16.5545 14.6575 12.8144 18.4361 17.0545 17.0707 14.7931 21.2477 27.838 22.6789 27.0775 -6.12382 46.9279 43.8275 -50.7308 -31.773 -26.0359 -15.8025 -12.5628 -11.4462 -17.5578 6.47403 8.86223 26.8487 7.20109 8.15071 12.0636 10.0446 22.0605 31.5024 15.3951 7.85591 14.3123 13.7632 17.2914 -5.79316 0.929788 -2.20242 -6.08547 3.64295 -1.44303 -22.1898 -1.87233 -11.0885 2.28102 -0.18498 1.07304 -12.8572 1.97501 10.5414 6.38362 9.08423 7.06706 13.3844 5.34496 0.762328 7.31199 12.0087 13.6738 8.33544 -12.2375 -12.3727 -12.163 -16.0071 -10.7839 7.19529 6.93931 4.764 2.28604 5.04215 -12.9532 -13.0124 -10.8356 -10.2507 -9.84734 -10.9855 -10.8183 -10.8619 -12.7487 -12.6545 -12.5276 -12.5926 -12.6845 -12.6247 -7.9152 -7.62353 -7.59616 -7.32135 -7.39328 -7.77967 -3.52852 -3.05407 -3.03314 -3.47628 -3.46231 -3.0425 2.2848 4.01978 -1.11542 0.582368 3.9395 1.68649 4.93085 1.71465 -2.21504 -1.45422 0.262417 5.92517 4.37218 1.90762 -2.48619 -9.65273 -13.7732 -12.239 -7.62379 -6.02968 -11.731 2.02783 20.9959 4.84014 7.48612 3.57961 3.30876 7.03668 16.5211 31.4847 10.5036 12.4565 10.8905 9.56531 17.5419 -10.9611 19.4214 -7.46772 0.684413 -24.6037 -12.876 -18.832 -24.3279 -23.0286 -22.0382 -17.757 -36.0327 -35.8748 -38.88 -37.5903 -41.1925 -38.0212 -41.4026 -23.6707 -31.4428 -15.1148 -18.1418 -21.4751 -15.1442 -21.2859 20.4914 22.3593 11.4479 43.2743 34.7852 33.1265 46.9467 14.9032 54.4743 -28.3427 -5.31297 52.5934 46.9993 48.6929 5.94178 91.212 79.3277 -157.942 -82.0842 -127.206 -91.2719 -91.2101 -59.0103 -45.4081 25.5575 27.3226 39.3225 22.1796 39.5454 29.9803 30.5073 -30.9494 -86.952 -27.1827 -42.5306 -62.1519 -39.471 -18.3243 32.1204 18.4222 24.3133 23.6495 19.1847 20.0244 25.9678 41.2318 36.0097 27.935 25.8085 26.4591 31.0757 31.6924 -1.26347 5.44247 5.91754 3.54225 -3.2194 25.6007 -24.4767 -29.3953 6.24776 -14.7853 22.5525 -7.64671 -17.0462 -18.5009 -23.1735 -14.5558 -17.4886 -14.0392 13.9636 15.579 15.9979 12.3532 10.4752 -34.1743 -28.9853 -25.7094 -28.273 -24.2238 -35.16 -29.552 -30.0406 -28.6899 -36.8714 -37.6852 -22.6144 -38.1959 -24.9288 -32.32 -18.1066 -14.5728 -11.4992 -22.0018 7.46802 6.96453 6.42855 6.30465 2.55697 5.10516 7.37255 7.72685 6.45284 6.68981 6.2737 6.36682 6.48558 6.8081 7.40019 7.2458 0.054258 -0.231691 -0.43546 0.177614 -0.141705 -0.292162 -0.712721 -0.203268 -0.666049 0.723825 1.67614 1.59348 0.873698 -0.253476 -0.355974 -1.74392 -1.22725 -1.38748 -1.80674 -1.53164 -1.65212 -1.92755 -1.71645 -1.732 -1.7185 -1.77515 -1.68934 -2.22709 -2.84375 -1.5739 -2.10685 -2.93473 -19.179 -15.4964 -12.9694 -13.6137 -11.2568 -12.2074 -11.3798 -10.6773 -11.2811 -11.1753 -10.5544 -10.9063 -12.934 -12.9371 -13.0721 -13.3639 -13.4015 -12.5078 -12.7118 -12.8499 -12.4627 -12.808 -12.8177 -13.1799 -9.13906 -8.05981 -7.50163 -7.39411 -4.20998 -4.2652 -4.77921 -4.77296 -4.22584 -4.69963 -4.11729 -3.45147 -2.91139 -3.4556 -2.86032 -3.47906 -2.76978 -3.42998 31.8529 7.80327 10.4788 23.9883 10.8155 17.846 18.1264 40.3497 15.3534 13.4167 34.8675 24.3896 26.691 42.236 47.8525 -13.8331 0.998154 34.6167 37.7908 53.5047 28.5598 -25.6227 -13.4611 -30.6535 -14.0325 -42.359 -38.4416 -35.5966 -47.6809 -43.3005 -44.8699 -40.797 -46.7054 -25.1678 -121.602 -93.6235 -74.5949 -77.4012 -47.3709 -132.097 -137.118 -183.901 -161.981 -130.826 -101.407 -156.515 -135.297 4.57224 -98.892 -32.0099 48.2717 51.1924 57.5661 40.5904 -74.5167 -112.201 -57.0012 46.6575 99.8258 64.4555 38.7833 -160.711 -156.477 -144.795 -152.836 -138.593 -150.332 -157.278 -58.1366 43.1972 -93.7763 -96.1499 47.9809 67.8464 33.1264 -103.804 426.63 -97.3444 78.2128 134.825 35.8065 301.23 -100.707 426.318 384.957 -105.243 82.9774 57.0286 341.307 -112.693 -113.795 -116.012 -114.544 -114.023 -113.634 -112.92 -116.285 -107.282 -105.332 -106.682 -114.953 -109.326 -109.52 -113.086 -114.428 -113.153 -109.206 -111.644 -114.58 -111.931 -116.161 -113.741 -113.754 -107.528 -109.151 -117.147 -111.392 -119.141 -118.84 -109.272 -124.673 -108.546 -126.954 -113.734 -132.925 -121.433 -145.509 -141.646 -138.59 -153.304 -146.765 -144.323 -133.241 -191.605 -192.939 -187.636 -179.206 -196.445 -187.77 -181.472 -180.359 -167.528 -162.193 -163.086 -163.901 -177.941 -173.964 51.6145 -81.6254 -106.46 63.0856 -96.6768 94.4157 45.9286 -44.2853 -42.9038 -87.1389 57.5285 53.953 44.797 71.1521 390.681 426.27 126.82 -99.4818 82.0566 380.554 256.729 202.873 304.404 294.623 199.477 326.617 238.318 -85.5733 427.036 -110.662 77.305 290.475 35.2483 358.401 -115.15 -116.423 -112.618 -102.018 -110.932 -121.358 -105.507 -110.375 -107.43 -112.437 -113.7 -115.135 -108.304 -108.282 -95.658 -84.8954 -61.3377 105.177 274.381 70.8454 117.639 12.6931 -78.2885 113.322 -3.87776 86.5626 97.8361 109.123 -167.218 -134.416 -144.58 -151.248 -164.593 -136.443 -158.014 -89.7916 -105.992 -94.4735 -115.976 -112.059 -125.693 -97.8138 -39.6592 -53.132 -68.7795 -50.95 -53.1615 -79.6427 -21.0343 -31.8441 -29.4007 -8.14159 -45.7081 -121.021 -105.9 -111.043 -109.56 -110.712 -100.589 -100.806 -97.2722 -110.961 7.50152 6.62215 0.703972 -0.813117 -0.475825 -0.375277 -1.8016 -2.07396 -118.986 -131.524 -121.723 27.6362 310.036 75.8973 67.7264 -152.035 -139.99 -96.6995 -159.423 -114.815 -92.1947 -112.174 -42.9584 -39.0269 -60.3099 -72.3347 -67.934 -75.8728 -46.4188 -119.997 -112.612 427.738 259.011 46.1626 82.4321 94.2084 -120.621 427.848 427.987 321.327 202.561 83.1339 389.941 -114.145 429.462 428.479 340.281 379.24 84.8948 397.553 -126.208 -132.429 -134.205 -131.195 -132.749 -118.124 -110.957 -113.15 -109.413 -118.059 -112.06 -120.618 -117.052 -116.449 -119.582 -117.239 -110.127 -109.507 -124.6 -137.708 -132.23 -126.779 -126.81 -133.082 -126.457 436.144 -178.495 -169.498 -119.479 -175.343 -157.738 -171.521 -169.984 -167.191 -167.961 -176.345 -108.939 -181.78 -181.106 -186.684 -179.957 -178.726 -186.391 -174.909 426.522 428.585 425.929 401.668 268.862 398.103 393.354 437.517 437.485 437.577 437.661 437.39 437.644 437.694 435.47 432.829 434.713 430.125 431.747 435.531 434.086 436.861 436.383 437.189 436.218 436.748 437.389 435.851 434.383 -134.513 433.958 435.099 436.247 434.954 435.515 435.203 436.047 434.844 434.388 434.153 434.699 434.017 434.386 318.919 417.028 419.703 -90.4371 -96.2768 -86.4275 -84.6105 -98.4057 -97.0731 -80.3712 -121.133 -108.587 409.168 -108.922 434.445 430.954 434.089 -83.1853 -91.5818 -95.0215 321.66 -77.8033 270.139 282.046 431.636 429.499 400.734 427.847 417.629 425.733 443.363 -9.03503 -4.43068 264.404 -6.25796 -7.90684 -14.1558 -21.5222 -17.1398 -19.755 -15.6582 -19.9903 -15.5323 -11.7502 -17.7686 -11.3491 -12.25 -15.7534 -9.32611 -5.59119 -7.59936 -8.76946 -9.45335 -7.40334 -8.37459 -11.8798 310.319 325.168 -17.0094 416.945 394.49 406.637 400.685 422.219 422.677 333.459 424.084 331.011 435.119 431.358 441.027 447.625 431.849 441.019 413.168 382.516 397.579 414.855 394.546 331.412 309.411 298.714 294.966 322.623 179.045 265.348 -47.0367 299.903 -21.336 304.869 182.922 252.511 -8.75902 -5.11954 -7.39477 308.801 330.844 319.805 325.213 306.214 335.347 331.616 319.083 332.873 318.528 310.582 255.589 322.105 -2.28253 145.276 330.661 211.914 348.903 341.003 253.778 402.642 414.11 397.167 404.193 418.996 395.511 419.708 424.145 351.195 399.389 412.218 418.178 349.414 417.349 399.24 423.422 351.105 429.4 364.43 419.576 403.623 389.189 423.485 421.427 391.976 404.411 418.421 359.432 401.993 414.538 412.522 373.596 423.226 288.299 215.466 -125.332 294.438 147.765 253.274 322.736 326.276 343.035 327.979 331.902 322.499 338.365 340.261 398.676 353.617 339.549 351.889 363.446 286.986 241.986 -123.486 140.756 148.019 235.889 288.865 421.659 419.409 417.815 394.271 376.665 383.952 387.238 283.5 305.113 308.08 259.086 323.348 265.007 248.256 372.156 399.088 375.507 375.356 388.549 384.669 359.976 252.333 376.065 414.239 327.698 377.093 315.668 382.948 384.488 370.373 382.053 356.978 314.11 302.831 312.738 363.304 343.844 340.01 233.526 343.073 351.172 371.642 370.806 376.338 355.752 324.073 176.77 449.104 415.777 404.629 330.42 370.281 385.586 317.883 378.908 351.29 361.062 -5.18923 -5.08635 -6.76405 311.864 -28.3443 -20.5804 -18.0496 318.856 335.231 311.872 315.925 311.394 316.483 321.683 329.842 -9.10647 -7.14135 -14.1408 -11.3466 354.156 386.366 315.518 332.097 320.011 367.642 355.504 346.04 310.603 327.181 318.286 325.996 330.587 332.027 419.378 420.455 354.164 336.499 244.564 375.691 214.361 310.045 249.757 270.909 253.437 279.517 302.161 -90.2487 121.103 429.238 302.03 193.804 282.876 418.862 416.491 420.622 362.225 371.531 329.612 387.444 434.45 435.667 434.398 434.127 435.188 434.793 433.575 434.359 434.414 434.954 434.703 434.367 434.281 434.904 433.074 -86.6818 430.282 428.734 433.407 434.535 -85.6038 435.256 434.742 431.325 430.37 431.392 430.503 431.227 431.473 -132.11 430.558 -127.502 431.441 -114.772 -117.921 -117.931 -118.606 -124.269 -129.381 -122.052 -124.064 -122.129 432.088 432.03 433.076 432.649 432.883 432.221 431.928 -117.28 -112.463 -110.043 -116.547 -129.896 -130.725 -122.319 -114.498 -130.972 -125.909 -118.879 408.575 351.27 419.986 389.89 337.107 316.323 365.366 256.789 -124.538 -121.155 407.232 -120.071 -36.5073 -43.7993 -45.213 -33.4299 -47.5994 -32.2782 -27.6363 -15.8363 -16.0099 -20.9995 -23.5807 -18.3442 -24.416 -38.9431 -40.9218 -52.3162 -43.6756 -51.2856 -42.8107 -35.3686 119.463 -3.06859 -91.5677 96.4749 -63.6594 118.642 257.491 402.489 -74.9193 174.806 354.498 311.461 325.059 10.3819 -59.6216 123.035 117.629 103.357 279.295 -83.0224 -82.209 -83.8232 -81.5245 -78.2233 -84.3226 -81.5516 -87.7314 -87.4615 -89.8057 -85.9754 -87.9085 -89.995 -85.1659 -84.869 -101.039 -91.2896 -91.9683 -84.4703 -90.3031 -89.8199 -93.45 -85.0072 -92.6822 -89.8902 -81.7454 -97.3652 -92.7933 -92.1155 -85.495 -91.1688 -90.0979 -60.1938 -37.6741 -62.46 -41.1886 -70.2417 -42.5588 -48.2314 -13.6721 -32.4059 -15.7808 -33.9886 -37.054 -36.686 -14.1124 9.49488 9.6758 10.4319 9.88949 9.84265 9.5038 10.3209 7.70172 4.40649 7.35902 5.6815 9.13094 8.92691 8.9376 9.64103 8.42356 8.59636 4.87104 8.36824 7.95923 9.3818 6.84555 -4.66194 -6.55474 -6.37825 -9.41324 -13.6411 -9.6205 -14.2462 -15.7162 -17.931 -19.9988 -19.0907 -21.4644 -18.1387 -20.3996 -1.01881 -6.20257 2.08777 -3.23341 -1.98882 -0.616967 -1.32597 -13.2226 -3.47789 1.86138 -1.98133 -3.08525 -3.37019 -3.05872 -2.23818 -2.86564 -2.6775 -21.7652 -21.224 -21.26 -19.8693 -22.1199 -27.1017 -22.9874 -25.5976 -20.6361 -21.5655 -11.4099 -24.234 -15.0349 -17.4176 -23.5848 -23.9307 -24.1692 -22.6125 -25.2382 -24.3674 -22.4477 -23.6076 -23.3224 2.02202 3.44605 23.2171 1.54689 -2.82851 1.45095 6.04577 -0.210727 26.4638 -1.6489 2.64111 9.65157 4.68373 7.85306 -7.80906 -6.9202 -23.5165 -6.28029 -13.6095 -10.9815 -8.77494 -28.0538 -27.3726 -18.9515 -14.3035 -15.924 -20.8196 -10.1438 -137.273 -123.118 71.5694 -88.0819 37.4746 23.6806 23.3668 -131.871 -132.99 428.504 244.065 31.5654 97.9819 97.5392 -131.331 429.866 429.431 329.684 379.352 84.1822 397.558 -139.031 136.458 431.316 428.413 310.253 67.0101 387.55 -144.473 -152.293 -159.052 -152.841 -143.193 -149.08 -140.476 -136.515 -133.55 -137.992 -141.964 -217.995 -200.51 -207.674 -212.242 -208.09 -210.8 -216.131 -224.054 -212.947 -214.748 -218.581 -219.858 -215.401 -218.692 438.42 437.882 437.722 437.693 437.818 436.725 436.327 436.945 436.928 435.993 436.874 437.012 436.907 436.455 390.245 369.948 406.469 379.935 389.099 369.256 414.275 406.357 391.686 419.264 397.611 416.139 394.22 294.167 388.547 353.72 406.16 327.399 428.217 349.171 429.03 377.194 429.988 358.28 431.676 389.521 357.446 376.141 320.836 352.6 382.991 322.542 413.588 425.149 424.15 409.101 430.401 411.055 400.553 411.46 373.785 387.672 397.005 428.551 322.87 356.151 246.493 317.882 320.513 336.738 303.047 319.698 329.881 320.673 316.341 330.486 298.398 290.657 294.907 312.607 279.47 363.368 -1.92981 -2.02455 352.948 111.577 -0.447098 -0.912022 262.808 338.453 313.92 357.889 310.494 342.299 290.248 373.904 382.064 391.061 364.405 354.836 403.687 371.596 251.61 331.015 414.966 123.91 387.842 399.182 430.3 434.952 413.466 417.953 409.049 415.877 318.914 308.719 327.134 275.705 289.961 337.535 273.999 379.363 405.543 360.841 390.484 312.342 236.545 387.711 380.539 390.869 200.095 365.99 195.484 315.438 -85.8601 267.895 226.17 307.874 150.259 217.189 278.866 310.833 317.193 318.89 221.473 293.589 302.7 255.363 283.652 267.673 220.619 241.318 275.992 327.765 352.001 372.151 339.641 341.45 339.537 331.68 188.896 -482.216 -275.961 281.209 97.8274 5.98064 217.569 226.722 186.507 279.54 285.044 301.724 226.792 317.322 309.624 290.196 307.595 394.811 264.126 216.404 302.231 310.131 368.939 254.722 325.581 316.846 466.859 445.171 407.142 437.516 441.096 436.112 412.861 414.115 347.159 441.638 349.933 449.065 312.247 407.296 301.024 398.999 221.021 310.345 380.688 329.305 333.746 321.094 263.756 452.645 432.058 434.463 438.335 445.062 410.843 473.383 323.911 358.171 270.197 278.272 334.814 335.8 292.163 284.443 299.303 356.904 213.567 297.494 232.699 345.304 254.907 418.381 271.948 318.504 247.498 245.399 300.544 385.775 306.752 266.907 253.368 319.177 310.77 303.352 324.174 347.496 295.376 312.531 339.481 326.62 293.973 173.663 64.6538 161.23 207.783 279.163 240.784 309.042 277.282 335.85 265.201 283.604 285.193 196.526 278.598 295.864 329.845 319.946 275.036 252.992 367.84 410.472 376.093 381.547 395.322 378.145 233.111 345.635 414.599 332.077 411.755 361.421 429.679 435.53 410.811 422.979 409.29 381.822 302.221 304.04 346.65 215.295 312.474 322.108 268.06 348.767 381.507 413.26 399.262 374.882 354.096 465.083 462.091 473.411 452.471 470.356 173.432 260.211 166.528 263.885 160.044 253.837 222.465 5.826 280.971 -23.348 114.019 262.888 -77.9914 945.294 417.625 257.251 13.6507 626.564 587.221 343.671 271.2 178.348 236.68 278.283 207.585 628.473 274.131 165.45 301.397 250.983 256.303 215.56 205.42 246.478 240.178 264.459 265.062 -213.267 266.98 586.327 246.369 -81.2277 246.647 343.689 233.619 252.147 414.946 342.793 266.746 326.12 364.993 173.88 267.92 260.406 203.661 269.022 420.101 418.739 422.42 412.498 439.758 411.253 413.568 423.935 424.45 446.034 399.846 443.837 408.046 406.21 419.914 375.97 268.381 410.265 390.623 239.525 215.513 258.835 425.663 419.8 238.245 425.845 401.326 423.482 352.259 377.328 254.428 21.876 113.069 191.733 271.256 283.662 300.846 362.447 328.371 307.771 307.478 343.88 273.27 209.679 180.993 358.511 299.795 145.862 151.117 285.249 231.825 488.302 25.7932 244.111 219.177 284.852 251.109 -27.2762 179.939 288.732 185.526 247.158 272.024 269.567 247.179 229.348 294.25 248.408 228.82 250.39 313.625 180.924 255.89 230.123 183.44 381.002 287.92 389.149 401.489 410.288 421.208 412.231 425.274 422.066 425.013 363.943 393.821 404.258 389.911 387.22 399.669 401.569 347.613 361.873 358.782 372.267 376.925 363.383 339.396 350.804 336.414 355.995 369.947 355.727 324.1 357.588 391.496 383.291 409.327 235.529 248.459 291.289 357.512 339.373 338.139 271.708 320.125 326.341 178.134 303.41 -304.332 130.891 290.269 -85.7087 274.404 296.171 277.387 238.809 264.483 214.152 268.464 156.914 163.535 -454.859 100.79 196.29 -7.25881 216.642 276.592 310.15 259.728 198.248 234.359 305.299 307.148 415.215 417.312 421.754 373.334 374.482 352.602 389.816 321.877 281.062 228.823 272.538 288.758 282.825 315.862 400.335 430.306 333.318 117.796 315.76 260.282 414.777 417.528 361.713 422.568 362.201 297.366 381.563 431.893 428.678 431.866 428.835 429.953 432.28 431.856 432.735 433.575 433.877 433.169 433.291 433.46 433.021 431.733 432.757 432.3 432.138 432.294 431.912 430.888 431.116 430.69 430.762 404.258 -120.392 393.395 347.932 382.095 -115.847 -126.356 -125.993 -129.539 -123.058 -127.679 412.311 390.446 418.617 359.46 423.189 383.396 412.563 -122.413 -118.767 -124.347 -122.971 -116.741 -125.795 411.623 387.185 396.059 414.265 386.245 427.794 354.747 400.251 382.898 402.734 292.371 268.466 298.416 280.756 288.074 -32.561 243.254 -21.8215 -44.5612 -47.3781 -59.4894 -54.2118 -48.755 21.3211 -43.666 -11.7319 109.147 124.86 100.807 130.778 -48.205 328.781 -54.5663 -40.7916 106.276 117.41 245.02 -46.273 -45.2844 -50.1467 -47.0145 -42.6929 -47.8081 -49.8918 36.5334 39.0303 31.945 35.3297 43.9158 40.5499 39.438 25.4791 51.1132 27.6756 30.7715 31.432 27.4135 35.4946 -40.51 -63.4826 -27.2167 -21.6918 -22.0556 -26.9857 -14.5314 -13.5866 -17.8829 -10.2393 -4.41931 -5.28834 -4.97924 15.1249 15.1724 17.5298 16.9579 17.9371 18.5019 15.9828 25.2473 21.0751 24.6435 23.2037 26.8449 25.2917 22.5758 29.1765 17.8822 17.6416 29.9444 18.9281 21.1445 19.9195 -5.71254 -1.1706 -18.5687 -8.28767 4.4075 0.660744 -2.77524 -12.3672 -10.3283 -17.1723 2.65965 0.500048 0.215215 0.474046 -25.2749 -6.79181 -0.717891 -23.3943 4.52179 3.89805 0.674826 -5.25584 -0.0374605 9.86178 5.19785 5.38591 6.9882 7.74437 2.15896 -6.16543 6.62329 -0.0652252 12.7951 -4.60076 -4.10878 -2.98138 -3.61599 -6.75092 42.6564 20.0005 -12.3377 -14.6845 -14.0928 -10.6315 -11.3092 -14.0365 -11.5477 -14.3168 -8.91088 -8.32691 -8.72118 -9.13535 -8.68853 -8.14234 -9.67275 -8.09965 -8.22075 -7.84927 -7.97331 -8.06036 -8.43309 -7.82829 -7.96666 -8.1689 -13.4523 -13.5248 -13.7012 -13.1452 -12.9234 -12.2866 -12.5169 -12.7802 -12.8795 -12.4595 -11.9848 -12.5659 -12.3406 -6.50534 -6.30805 -6.12996 -6.50094 -7.07274 -7.0493 -8.37293 -8.25782 -7.52812 -6.6208 -6.87033 -6.54906 -6.57701 -7.04627 -3.14574 -2.60075 -3.06809 -2.5744 -3.76659 -3.834 -4.26112 -4.16578 -3.82366 -3.29244 -2.68885 -3.242 -2.6867 -3.28858 4.40388 5.70758 3.67514 6.46105 11.9079 6.9775 10.5696 -11.3672 -25.3046 -22.1128 -18.0163 -12 -13.1221 -17.234 1.61449 7.8364 12.8498 24.0256 16.399 21.6037 16.4733 17.5521 36.3056 25.5296 -0.927708 43.7796 29.8953 24.9727 -38.1145 -49.8426 -39.9784 -44.701 -39.3475 -55.2579 -29.6866 -35.8312 -13.0381 -59.0378 -65.058 -23.9658 -4.91484 -13.1196 -4.07141 -5.83148 -22.4136 -14.7625 -66.5372 -64.5213 -63.0318 -25.1601 -38.2692 5.42281 -6.98238 -5.5431 -55.5729 -18.266 -94.226 -97.9241 -12.0366 -51.4106 -73.9171 -33.9193 -66.1474 -41.8517 -36.466 -163.221 -175.729 -157.936 -166.691 -158.401 -155.271 -36.4957 -203.776 -121.41 -151.582 -162.369 -165.593 -158.108 -145.292 -132.784 -140.645 -145.134 -207.543 -224.471 -223.769 -213.349 -182.624 -175.069 -194.793 -220.721 215.297 430.189 430.024 392.054 429.439 401.287 392.874 430.533 405.829 426.824 404.932 429.229 405.914 407.825 439.262 439.382 439.624 439.29 439.261 439.387 437.183 -214.574 -213.364 -218.064 438.023 438.613 437.946 437.763 438.292 438.278 437.537 437.756 437.27 437.772 438.16 437.183 437.251 437.037 438.106 437.611 437.879 437.644 437.015 436.619 435.635 435.933 436.564 289.492 339.562 281.557 280.018 335.159 429.372 404.215 402.408 445.986 -108.514 -86.7099 399.459 -91.9146 297.258 -52.9923 -67.2928 -69.5995 -65.4835 -75.7348 -79.2179 -52.7765 103.025 423.655 389.962 413.405 272.495 4.64986 5.55136 5.31217 5.23685 4.95468 0.234481 -5.98974 0.710294 -0.66518 -4.6386 1.79664 3.56765 5.85741 4.28244 4.344 2.28189 4.61615 5.32193 1.76226 314.091 -2.21742 2.29125 363.753 325.036 375.101 330.047 325.061 385.744 363.776 341.578 329.281 370.59 274.885 385.829 356.317 255.858 427.369 417.737 103.454 399.781 134.934 401.337 426.779 437.672 438.395 422.97 426.258 428.852 306.504 285.539 287.202 270.307 238.348 313.259 260.728 391.179 408.022 378.823 408.56 364.003 359.063 386.63 410.603 402.201 259.689 404.818 188.779 285.865 -178.054 144.237 218.458 291.103 62.6114 169.263 320.947 266.527 362.44 260.579 248.526 268.493 488.937 235.757 266.876 262.122 243.632 217.232 257.964 294.175 338.388 342.4 311.04 310.732 328.211 316.524 135.316 -348.181 -73.1832 220.639 151.609 -8.91386 191.108 280.848 277.636 234.25 215.112 81.1151 188.891 375.708 426.14 434.159 299.211 308.691 116.043 184.717 373.85 414.064 491.239 428.305 392.968 407.379 442.278 451.793 449.153 432.911 439.059 443.361 378.44 420.368 424.989 422.308 450.015 453.042 442.586 444.252 253.389 257.15 264.349 269.09 254.091 205.457 125.818 113.348 201.222 246.203 -132.749 292.026 205.972 212.857 226.578 238.181 226.854 246.633 258.176 237.508 218.147 189.94 265.274 231.717 252.034 214.001 237.822 219.104 261.354 247.214 59.102 270.71 266.994 296.846 318.712 268.973 271.007 252.419 247.661 244.927 218.654 214.48 287.491 234.723 238.102 428.153 424.586 422.064 425.432 420.362 424.644 426.678 424.712 423.019 420.282 425.862 420.41 421.822 424.018 443.177 457.01 431.524 447.871 451.871 453.567 442.431 453.209 446.401 425.748 418.195 439.689 263.721 281.633 266.472 262.531 281.001 263.274 257.375 263.092 263.904 272.662 273.275 255.51 262.995 281.223 394.815 228.349 199.114 260.289 229.357 380.249 254.483 248.964 366.65 242.285 348.338 373.278 277.355 298.017 276.681 245.317 258.652 288.163 260.273 248.979 273.563 269.216 292.626 265.075 206.097 243.806 313.217 190.451 80.3735 278.824 183.722 458.524 443.407 465.177 446.456 466.165 439.924 458.984 421.344 391.775 431.102 430.394 409.981 429.957 246.175 246.794 260.431 236.599 249.056 250.074 253.313 254.139 247.655 231.538 208.474 243.378 224.044 210.836 218.45 230.514 229.758 243.438 260.874 227.545 231.583 219.072 229.296 246.848 250.536 244.657 242.04 239.825 251.759 243.17 245.167 248.902 220.94 219.405 220.907 245.58 206.994 225.728 260.758 425.479 421.443 425.135 424.629 427.757 423.524 426.337 457.278 453.088 448.537 433.534 455.123 453.263 449.665 454.332 444.015 453.667 442.863 456.525 445.861 454.075 453.023 429.449 443.362 439.687 243.752 277.828 293.49 233.272 270.092 229.491 231.794 238.568 245.879 237.58 244.369 222.517 64.9767 202.241 355.983 134.425 191.169 488.984 133.19 222.785 151.484 326.826 209.975 116.027 607.989 236.031 266.336 250.742 220.225 227.918 241.546 253.522 227.311 303.357 217.359 211.918 284.949 234.563 431.957 126.335 186.264 269.117 289.664 213.112 346.195 227.587 267.001 235.08 288.071 193.011 117.376 358.738 396.424 363.773 347.451 394.223 363.932 387.786 399.778 412.962 286.98 217.162 375.975 396.015 271.436 385.138 301.349 313.738 327.042 362.454 330.117 262.686 222.3 211.127 166.285 297.332 63.3092 174.548 484.556 405.076 386.587 385.882 171.465 261.559 236.838 284.251 86.5087 247.981 220.009 253.715 249.143 305.845 311.933 236.221 257.262 183.859 218.384 235.187 283.139 172.692 449.904 268.613 201.961 85.2151 242.598 432.91 -14.1408 545.345 577.714 168.448 113.726 178.531 247.507 -118.412 207.537 209.245 101.262 224.112 256.375 -147.861 149.81 186.089 281.23 234.558 18.7415 281.513 345.709 246.299 415.712 376.877 417.636 414.566 382.366 395.396 389.156 376.831 360.957 341.966 289.414 363.954 363.11 320.83 396.394 301.213 286.042 420.018 423.361 424.363 413.114 432.661 411.719 415.481 404.019 410.929 389.61 385.222 405.76 400.021 363.98 393.641 384.329 303.837 399.27 413.037 387.891 385.824 344.525 345.204 396.592 377.086 344.764 401.726 276.225 407.426 373.508 392.422 390.621 321.378 131.493 307.401 256.363 246.612 -287.206 259.047 300.101 306.043 252.906 246.92 224.921 278.232 189.168 128.332 -412.171 137.728 220.634 -45.3109 233.164 250.378 262.505 -242.556 217.592 81.2699 84.1103 276.714 -58.9377 435.713 -58.915 436.185 434.195 433.509 433.703 433.047 434.101 -55.9902 -57.9226 -59.4468 -55.914 -59.8869 -58.7012 -58.385 -57.5978 -56.9873 -58.4786 -57.0821 436.955 434.963 -58.5879 438.27 -91.3691 -99.2169 -104.031 -90.8196 -99.1131 -90.7386 -91.9722 -98.0039 429.111 -92.9684 430.357 -100.495 431.528 431.086 432.304 431.029 432.043 431.954 429.564 430.197 430.533 430.641 -84.9472 -85.7995 -77.6687 -79.7187 -83.7066 -125.202 -124.805 -124.593 -126.621 -125.561 -121.071 -120.878 -126.101 -123.306 -125.558 -125.154 -127.217 -124.951 -121.76 -122.136 -128.726 -123.211 -52.5695 -60.6212 -50.3322 -63.0023 -50.8764 -64.0399 -51.8554 85.5309 42.8508 100.195 102.696 45.1381 100.748 83.5049 42.204 43.5304 37.1941 77.9157 61.373 71.8357 57.4497 14.5154 103.038 30.4399 98.7961 35.0962 85.4701 85.4138 -37.4229 -32.4504 -33.1364 -39.1554 -39.5763 -51.9592 -49.9231 -51.7054 -53.158 139.988 -65.0375 -83.8739 -91.4225 -106.819 -100.237 -124.391 -84.9882 -135.209 -118.352 -35.2455 -78.8038 -73.6475 34.445 38.897 34.0609 40.2657 51.4525 40.8921 49.2166 -3.65313 -9.12009 5.74226 -3.60324 22.4887 19.2141 9.32565 0.215487 -4.42846 -6.27414 3.36391 -43.3519 -33.4979 -37.4429 -36.5193 -48.7708 -48.5364 -66.9546 -42.5978 9.72177 8.90224 4.76541 6.66532 7.10479 9.14597 8.39298 8.66572 5.64724 5.44063 5.87859 7.45657 6.84972 6.84558 6.33939 5.71019 6.16159 6.03461 -4.10317 -4.21191 -3.75673 -1.58107 -2.04675 -1.10784 -2.32011 -1.83896 -3.01941 -3.51443 -2.73685 -2.96815 -2.55859 -0.287073 -1.3784 -0.732315 -1.54039 -1.4376 -1.53634 -1.97023 -1.99281 -1.97841 -2.04042 -1.99703 -1.57782 -1.63104 -1.74911 -1.79825 -1.74222 29.201 -93.6419 -74.7728 36.509 -81.8087 80.5231 43.4327 -112.949 392.733 432.339 69.4094 107.606 401.696 -78.4821 -84.1313 -83.4085 82.0285 60.1414 50.3847 -4.09218 432.555 121.623 400.47 401.755 158.859 268.669 298.326 303.363 322.548 294.191 300.058 298.019 437.828 449.412 443.485 445.96 428.401 301.032 348.954 395.409 388.723 331.712 346.778 382.364 241.261 289.948 301.234 296.242 269.19 317.558 357.694 342 385.264 352.581 333.82 368.918 230.247 323.525 410.661 404.097 381.046 142.868 363.67 372.507 381.611 362.532 353.828 380.253 367.333 350.362 -1.55645 4.46246 -0.991041 -2.03873 324.411 312.428 282.888 301.919 307.198 313.947 308.798 328.066 317.52 -7.97278 315.685 323.493 363.577 229.224 296.945 345.312 -2.61507 -2.57287 -3.31502 332.427 332.659 321.156 311.483 315.856 317.088 323.629 325.048 220.231 227.296 187.096 266.49 222.327 411.223 387.274 262.778 376.818 424.789 404.395 229.48 424.404 312.268 453.775 389.897 469.619 448.37 442.78 466.433 458.001 399.839 329.238 288.038 328.179 377.96 242.704 260.37 154.704 263.336 207.357 478.93 478.87 449.739 450.618 469.204 446.029 240.696 258.462 223.683 239.467 260.195 236.089 223.851 253.207 202.109 -49.4244 196.139 196.773 278.023 236.275 253.885 197.058 242.76 252.333 184.25 222.589 260.524 262.243 165.594 301.245 211.396 213.667 261.626 -2.39921 137.161 172.645 256.796 266.822 259.87 345.777 289.919 263.118 296.157 265.385 250.844 485.525 12.3043 165.53 194.648 280.087 199.025 428.234 425.367 423.002 426.508 423.679 426.291 427.398 424.201 427.38 423.674 426.929 424.237 426.929 426.639 488.635 460.15 468.251 478.598 469.288 444.93 494.787 467.035 464.437 482.101 463.136 474.603 237.504 248.686 240.954 240.831 239.118 231.326 232.522 235.84 165.171 232.423 240.869 217.868 217.166 258.039 252.604 212.16 248.045 191.86 279.02 269.457 244.943 172.199 312.732 213.653 276.759 227.417 235.138 239.436 239.818 244.549 239.983 236.407 242.214 239.448 231.694 229.485 245.777 235.981 216.698 223.185 217.084 238.218 182.403 217.91 231.636 417.925 422.41 420.514 420.183 420.096 420.818 418.719 260.752 133.882 226.053 195.654 221.147 196.68 244.392 297.659 329.435 294.116 332.42 292.426 321.306 307.288 275.951 318.963 290.513 326.036 276.893 317.044 298.573 272.1 274.051 257.957 269.729 269.484 255.748 285.004 257.035 263.15 236.117 259.206 247.799 246.275 280.309 276.413 263.376 276.729 294.594 264.887 276.678 280.92 398.136 398.527 395.255 392.98 396.762 399.083 395.921 403.997 403.157 403.432 403.106 404.862 401.024 402.671 397.268 397.761 398.717 399.653 399.689 396.786 397.604 404.805 400.092 406.057 401.329 404.656 399.842 404.289 419.995 418.71 420.164 419.45 419.64 418.664 419.976 418.803 416.972 418.415 416.873 418.694 417.127 419.058 420.695 420.728 420.856 420.512 420.466 420.712 420.988 418.37 417.958 415.873 415.995 416.768 417.509 418.212 419.309 418.952 415.913 420.465 415.381 422.641 415.029 415.991 412.936 410.355 410.667 411.581 414.362 415.117 191.04 200.461 239.431 163.234 221.713 163.354 233.91 221.849 229.258 205.052 251.53 163.79 261.662 224.936 119.366 389.264 396.488 298.65 266.902 312.918 301.828 324.579 281.376 323.047 278.433 178.156 210.498 243.48 246.482 255.773 274.177 261.339 237.402 256.775 213.611 173.835 330.523 347.773 322.376 91.6284 257.111 279.756 338.688 307.224 281.182 315.19 280.791 279.994 274.788 267.462 315.284 319.227 276.511 282.811 315.523 239.633 318.885 174.857 178.224 212.128 258.63 335.438 278.613 244.678 279.268 332.753 291.31 249.408 246.217 232.884 247.554 239.888 253.271 264.875 288.299 438.602 427.075 434.935 412.825 436.851 405.086 407.972 444.579 438.474 435.005 446.202 426.97 369.948 425.551 416.832 428.839 415.69 355.518 233.74 210.524 268.293 228.13 228.808 247.988 241.219 246.658 243.595 261.933 364.505 326.261 417.219 7.474 257.691 314.054 265.028 197.232 188.122 268.033 353.313 214.486 200.512 489.746 246.722 269.405 245.462 239.925 241.53 269.838 230.223 242.817 294.424 250.416 246.496 233.07 258.508 253.225 214.431 194.163 188.761 229.928 141.756 150.594 393.802 238.521 305.36 265.358 297.489 222.852 239.873 327.598 393.572 341.688 387.037 340.999 347.736 337.855 355.217 410.225 398.966 416.207 409.856 324.885 188.773 387.611 408 204.175 412.781 312.023 347.1 359.889 367.76 367.204 350.979 309.524 261.471 271.786 305.5 149.95 262.391 302.049 224.707 463.836 453.155 445.836 442.84 469.977 296.55 354.621 357.043 316.404 340.782 329.448 289.934 187.08 236.416 -167.67 -92.3169 180.48 160.315 127.956 235.977 255.372 188.427 271.712 180.117 322.821 215.441 355.51 366.68 324.901 280.935 611.226 273.462 291.251 272.615 304.046 7.62422 259.026 242.747 253.137 303.573 245.581 356.433 206.962 252.861 170.994 308.286 283.011 325.586 265.737 242.707 347.238 318.17 269.293 269.425 379.713 415.837 416.202 360.75 419.366 374.359 386.424 423.421 85.6241 -32.7801 323.482 415.97 339.288 109.51 415.66 419.655 419.142 375.954 386.975 388.188 370.771 302.07 225.121 297.518 234.494 223.178 309.629 292.12 -35.0179 417.604 415.681 336.895 134.678 106.807 308.579 431.976 429.41 433.123 428.791 427.769 432.884 432.424 433.604 435.612 435.542 435.167 434.321 434.954 434.478 431.501 429.516 431.918 430.431 431.96 431.502 432.282 433.021 433.486 432.569 433.099 432.705 431.642 431.598 432.05 430.676 432.469 432.527 433.516 433.17 433.289 432.84 432.391 -111.663 -117.304 -117.272 305.394 359.468 349.481 342.129 346.805 312.645 338.628 -120.776 -124.174 425.599 -122.596 428.146 437.084 422.816 434.537 432.29 -113.727 -110.685 -118.655 -117.937 289.348 327.89 318.381 285.644 320.894 -123.204 -123.017 434.257 440.197 -119.679 435.068 -27.5092 -21.9181 -30.3767 -18.8696 -51.4622 -60.0173 -50.1968 -58.0855 -47.734 -59.7238 -49.9217 -40.037 320.403 296.013 315.391 -28.312 -18.6635 262.291 315.3 -19.6327 -27.3962 -51.0951 -47.8209 -57.1276 -53.3558 -59.8021 -49.1578 -45.8209 7.94539 -1.00103 -1.58591 -1.62027 -0.956263 -0.294711 0.624085 0.952667 -0.287585 -1.27348 -2.0769 -2.14561 -1.28071 -1.97656 -2.53958 -0.938715 -2.22355 -2.09811 -2.67075 -2.55402 -2.16451 -2.2908 -2.16632 -2.17444 -2.37224 -2.57994 -2.72299 -2.60974 -2.62529 -87.6055 -85.2691 -84.5891 93.274 54.898 59.9802 46.7493 436.491 150.045 396.196 147.533 396.353 -83.3246 43.5174 -76.3918 -83.2312 92.496 94.3172 44.4778 433.199 -83.0425 399.006 90.0123 137.912 403.121 -102.813 -97.2619 -97.5441 -93.6686 -97.461 -102.858 -97.8814 -102.533 -96.2333 -92.1441 -96.4799 -96.7797 -96.2224 -101.76 386.05 380.8 403.043 377.217 377.869 403.609 381.979 337.093 331.514 379.403 328.116 389.33 369.556 366.408 435.284 187.312 403.157 226.577 399.849 344.918 400.479 388.45 400.006 334.14 404.569 382.469 398.028 389.41 374.051 400.524 393.968 373.849 391.97 409.866 427.275 412.809 338.109 389.023 421.88 424.002 334.465 323.692 220.905 275.748 327.066 331.956 292.514 375.575 388.085 -6.55851 379.65 386.012 337.456 320.759 332.432 316.351 368.077 385.272 392.792 373.416 378.03 390.909 363.954 347.812 284.478 -6.1224 335.208 315.602 387.373 406.632 379.904 408.078 325.816 217.405 312.942 353.651 271.827 314.413 340.37 245.439 443.773 454.991 443.487 255.232 377.94 430.093 427.797 439.876 404.455 420.093 424.646 327.855 328.196 316.542 312.398 297.872 333.246 331.341 388.364 382.882 415.367 389.706 376.58 408.939 376.344 421.723 418.718 435.692 418.248 378.07 421.217 254.027 291.78 -329.461 245.203 290.508 272.847 261.155 355.777 286.912 315.535 259.536 219.12 281.39 260.473 204.159 333.188 258.441 254.03 497.317 281.403 286.9 316.589 294.831 278.737 297.668 292.329 194.128 45.5864 290.783 243.567 273.224 67.7998 158.449 206.432 -23.6822 294.093 201.749 -111.76 287.762 267.698 267.797 553.434 277.926 291.427 278.717 278.235 442.65 420.545 484.863 429.272 431.11 414.353 447.169 445.741 432.73 415.439 442.299 425.573 404.55 433.682 416.587 440.544 260.309 267.963 261.8 260.203 267.37 261.043 258.681 270.819 235.462 221.621 359.988 215.935 220.964 225.827 226.72 218.161 75.8813 319.21 346.312 221.258 56.871 334.918 262.494 258.046 250.705 256.997 261.987 267.366 263.959 262.441 263.664 235.856 246.129 237.411 241.989 207.733 238.515 248.343 408.768 410.402 401.131 404.225 409.236 401.857 409.557 408.754 405.063 409.074 402.924 408.656 409.645 403.272 420.928 422.362 422.152 421.557 421.258 421.376 421.559 420.071 418.277 421.121 418.212 419.825 418.499 420.217 421.089 422.051 420.728 421.946 420.803 421.319 421.647 419.088 418.336 418.936 418.269 419.046 418.403 419.02 407.896 374.722 430.996 459.487 452.933 446.943 454.71 445.123 436.878 450.403 454.869 451.017 449.038 452.964 427.737 426.799 372.33 415.105 443.729 437.573 373.919 213.562 216.206 218.232 204.354 232.78 216.107 220.336 244.227 218.52 219.388 230.403 177.929 171.342 514.216 74.2073 423.404 -8.65209 295.471 348.955 209.252 188.411 235.616 213.979 345.675 256.058 205.566 196.904 215.23 198.115 219.851 199.002 186.524 237.038 251.39 222.544 230.766 251.392 225.039 67.8625 192.605 167.332 342.873 376.811 151.355 422.883 423.075 364.906 388.811 436.465 378.617 238.864 259.258 267.602 194.28 272.858 449.708 440.704 429.722 430.956 462.515 424.988 423.561 347.798 390.209 417.01 416.679 391.472 269.769 256.965 142.598 148.436 267.037 412.121 362.511 352.277 398.492 371.522 429.368 421.693 398.447 360.541 400.044 429.573 415.027 216.145 -42.3214 185.855 246.025 212.169 298.62 296.363 325.51 311.421 306.837 297.803 334.087 300.475 235.455 280.858 284.348 281.042 281.138 294.997 241.205 267.399 178.168 291.05 204.086 306.273 148.151 293.596 330.348 332.595 306.233 306.11 330.414 291.521 236.199 -25.1373 136.885 236.218 190.385 232.001 226.699 297.617 247.463 298.933 297.481 165.104 419.293 416.166 419.912 374.341 386.817 367.112 388.778 298.814 296.497 233.318 223.264 308.491 221.234 290.305 420.661 -42.9628 416.333 333.69 131.69 304.142 95.0364 416.402 383.678 416.803 419.023 363.779 373.334 387.739 275.343 201.773 281.813 296.382 217.123 217.129 285.521 -44.6915 427.143 86.5753 417.27 322.724 336.36 107.148 429.727 432.296 425.13 429.86 432.027 430.424 431.817 430.808 431.181 431.338 431.226 431.317 430.697 431.064 431.117 431.003 432.297 431.532 431.551 430.832 431.317 429.697 432.117 430.165 432.202 429.815 430.309 431.718 -105.746 -113.788 -110.938 428.558 242.183 232.198 304.024 269.228 241.879 248.811 269.215 408.626 447.257 431.808 413.545 428.518 419.162 435.116 425.029 428.738 258.919 -106.069 333.159 -115.645 257.961 299.163 -112.382 289.009 433.477 283.576 426.146 436.701 429.8 433.423 427.955 -28.6429 -23.3342 -17.8107 -28.7991 -20.6475 -30.0082 -27.4517 357.018 341.133 -37.4096 -47.2375 -41.0427 -50.1415 -38.0324 -46.298 -39.8266 291.622 265.926 286.819 -29.1494 -25.0931 -22.1357 -33.4026 -29.452 -22.7803 -31.5406 -8.73365 174.099 185.17 -8.70164 -36.1235 -37.5505 -48.463 -43.746 -43.7641 -37.974 -36.0291 6.16296 7.25792 6.71452 5.38982 6.69515 7.12941 6.71323 7.06948 6.34858 6.67867 6.39394 6.64062 6.48487 6.95317 6.48445 -0.995094 -1.66495 -1.63554 -1.098 -0.279353 0.468334 -0.259038 0.440754 -0.890764 -1.52812 -0.868836 -1.55107 -0.358821 0.373228 0.328066 -0.391129 -1.51442 -2.45249 -2.44764 -1.48024 -2.35849 -2.84158 -2.37632 -2.85606 -1.45237 -2.39303 -1.45691 -2.38382 -2.38834 -2.88882 -2.89466 -2.36801 -2.53192 -2.18859 -2.20821 -2.52091 -2.94047 -2.93589 -2.95703 -2.93676 -2.53611 -2.24848 -2.53274 -2.22764 -2.941 -2.93908 -2.93569 -2.92869 -9.24375 -9.51605 -8.07681 -8.4136 -9.08987 -7.78673 -11.1647 -13.2594 -10.8616 -13.0964 -9.13988 -7.90275 -7.95923 -8.84193 12.1337 52.8296 14.6358 29.5456 21.8203 21.719 31.383 5.06843 37.5079 47.5017 12.2884 47.1852 34.183 38.9502 -44.7019 -37.3481 -54.7271 -40.1026 -34.6582 -38.1038 -34.7071 -122.66 -9.26411 -83.3533 -74.8711 -120.515 -71.5841 -58.8671 408.319 427.777 431.068 407.722 429.433 409.781 409.881 430.584 270.197 430.109 402.101 430.018 405.996 396.561 440.525 313.939 434.515 411.94 384.264 383.311 392.145 397.514 419.845 411.183 400.653 415.572 399.727 418.053 425.754 432.317 428.046 430.025 429.884 434.446 411.112 409.938 377.708 389.203 381.662 398.986 419.219 430.22 438.376 436.077 433.472 426.826 427.457 435.597 434.635 -16.0769 206.721 205.474 -2.62663 -7.87377 -1.04204 -3.23873 -7.08267 -0.245256 312.176 323.087 315.641 305.489 327.179 319.084 294.063 -6.7315 -18.1413 -11.3089 -12.494 -12.1223 -7.22854 318.581 270.1 347.442 334.669 345.309 300.813 -2.0261 -0.540162 -3.19999 -6.31813 -5.99842 -0.0614127 -2.68163 300.172 301.336 298.36 310.212 284.868 219.631 261.897 304.004 291.268 267.687 216.846 283.701 391.453 274.33 397.663 277.367 439.038 436.733 442.915 449.575 429.619 439.471 516.067 408.653 432.83 441.08 440.865 157.767 250.545 408.183 270.377 230.238 248.509 295.748 254.449 210.737 230.686 268.011 251.58 247.981 425.356 397.293 434.478 176.494 283.245 304.42 288.946 207.593 340.532 276.169 249.58 299.501 56.912 196.998 262.161 251.222 416.131 296.443 289.128 306.929 685.646 265.908 258.498 304.296 304.743 215.598 253.455 296.526 357.033 285.22 329.844 322.254 291.705 329.707 300.238 324.135 349.822 347.5 302.24 317.664 355.488 299.791 269.18 413.497 148.644 215.636 325.505 330.941 293.81 464.895 458.416 457.761 447.589 458.649 480.801 412.601 455.722 429.237 447.347 423.543 467.988 461.723 450.444 443.016 434.853 456.183 266.446 272.404 285.016 269.807 266.883 268.112 252.737 271.227 264.049 284.349 262.04 249.037 261.527 257.078 329.431 208.724 256.819 248.138 229.709 283.018 307.507 241.32 83.9605 478.432 270.1 272.3 283.759 276.655 283.646 275.022 272.467 265.491 291.347 294.318 260.794 272.273 296.135 261.522 326.307 234.711 286.259 417.386 295.452 257.451 277.084 423.872 425.199 418.072 428.623 422.172 428.972 421.808 172.318 240.529 225.055 211.501 160.669 173.038 239.701 232.57 214.061 462.609 414.006 386.579 87.0555 345.445 387.874 307.202 175.656 281.432 303.346 267.653 328.658 255.14 291.01 262.785 272.393 309.235 274.741 273.991 309.21 214.591 263.332 234.011 170.579 263.556 328.704 197.866 269.3 268.054 261.868 267.611 251.397 311.958 281.694 269.748 268.835 251.934 259.667 260.627 262.29 207.377 196.464 258.176 262.847 181.826 304.751 331.259 274.37 311.732 303.07 333.165 274.033 275.814 236.698 266.253 257.123 279.997 262.389 252.888 281.514 186.812 336.708 306.49 328.455 277.269 200.638 277.34 295.315 298.762 273.105 297.118 274.556 272.015 269.094 259.013 263.828 244.479 264.468 258.755 261.841 275.903 291.356 287.611 276.259 275.931 289.118 273.965 271.209 261.412 263.313 253.997 261.869 272.292 266.717 422.308 425.684 427.071 424.709 425.11 428.415 426.803 216.073 199.418 207.415 150.163 184.624 336.093 428.983 400.163 389.991 444.532 412.88 458.477 444.264 444.668 423.393 453.573 253.201 255.507 251.15 247.37 278.812 255.216 262.055 303 250.698 253.051 68.3102 185.469 388.347 205.541 267.684 205.912 266.733 246.141 155.278 229.485 152.268 256.622 248.761 191.886 253.511 248.666 273.355 242.599 258.23 246.045 266.942 244.249 306.51 294.756 226.398 208.643 291.666 181.323 224.916 359.275 315.188 389.162 350.714 441.131 403.734 419.518 458.401 430.118 459.903 422.712 473.312 425.997 423.12 159.88 76.384 350.229 330.159 431.082 420.181 411.782 404.341 297.161 242.609 269.798 141.649 253.992 234.534 232.623 248.95 238.036 223.766 242.61 246.994 237.399 251.613 314.789 672.289 241.119 256.41 493.913 -120.231 344.878 247.226 353.084 275.406 266.16 452.154 314.688 455.64 230.505 247.959 208.341 211.842 214.586 282.093 228.677 242.169 242.382 220.106 230.514 208.854 211.424 264.579 146.729 294.151 148.289 232.337 266.361 422.606 420.156 395.652 418.621 396.258 402.304 400.815 323.306 341.942 306.57 372.023 273.483 345.694 31.6376 405.919 467.739 415.876 361.388 362.054 365.05 408.721 387.266 355.979 381.889 220.214 239.779 243.717 185.29 168.711 272.925 187.669 197.617 205.521 362.066 408.246 361.06 327.72 321.306 280.907 384.673 330.753 324.116 293.546 326.341 266.791 153.976 -62.6641 227.333 122.75 253.149 224.698 236.946 220.219 218.666 224.821 159.704 165.861 242.224 276.517 385.778 263.494 280.736 255.509 188.483 274.905 226.478 35.6076 -186.53 149.207 21.5054 141.567 129.383 310.627 391.858 323.782 293.38 276.265 348.008 325.016 311.703 306.655 259.82 256.906 229.556 287.525 295.569 437.982 439.114 438.839 438.267 439.91 438.288 437.224 431.84 437.359 435.56 435.342 433.94 438.725 437.43 438.584 437.865 437.989 437.123 437.872 438.28 438.159 440.359 438.008 434.099 434.612 441.618 437.774 432.685 431.925 433.525 434.378 433.131 434.565 432.271 428.697 430.932 431.006 433.377 434.303 434.221 -117.669 -113.803 -108.625 -126.316 -109.247 -127.221 -115.445 417.188 -133.961 -134.794 -145.564 -139.357 416.358 408.253 423.341 419.809 -119.81 -111.946 -105.94 -126.003 -118.989 -107.697 -127.107 -98.285 397.993 413.448 -131.066 -129.013 -174.757 -151.606 -114.873 -14.8327 -10.0199 -6.4515 -13.4292 -11.2546 -19.76 -11.1102 -28.0092 -12.9648 -29.6212 -17.1311 -12.0339 -7.13773 -4.44874 -5.9948 -6.78074 -8.47173 -10.2401 95.5897 16.3171 18.7362 92.8605 26.592 65.1983 71.1411 33.365 58.7764 -16.2071 79.5377 26.5747 68.5242 61.8577 34.945 -4.02951 34.8618 57.6811 43.71 45.4883 55.8317 -161.186 -154.908 -208.59 -161.501 -149.112 -150.821 -128.361 -106.063 -176.738 -140.878 -132.112 -56.2066 -83.0378 -100.045 31.9553 29.2621 27.0432 32.0331 37.0453 39.4245 29.7228 -65.8701 -46.3484 -41.1663 -34.8481 -31.471 -45.0915 -25.5391 2.537 3.78965 3.94569 5.2275 6.29959 5.41834 5.88507 6.18096 -1.48171 -2.26392 -8.03292 -7.45139 -9.31728 -7.01818 -12.1417 -7.72292 -8.14734 -12.619 -12.1453 -12.352 -12.5434 -4.59652 -5.22693 -5.00283 -5.10282 -4.12729 -6.11762 -4.10153 -4.57942 -2.66281 -2.19046 -2.64339 -2.20237 -3.90639 5.34131 1.41475 17.2183 7.17628 3.10399 8.22617 9.31152 5.13682 7.0128 5.85927 9.42674 17.3553 13.4315 12.3315 -22.0348 -26.167 -21.7834 -16.6454 -8.8042 -16.3021 -19.2649 -11.8784 -11.6258 -29.8348 -18.9496 -23.0343 -18.8438 -16.9294 -22.5779 -25.2758 -24.3508 18.1122 -10.0915 -19.0268 -34.0039 -36.769 -37.2971 -37.5924 -40.4878 -37.6219 -33.5728 -33.2508 -33.6142 -31.5987 -11.771 -19.4133 -9.0498 -12.3997 -19.0843 -12.9543 -21.5996 18.6633 9.36406 13.0863 18.8449 20.0181 23.7019 15.1523 -33.89 -31.8287 -31.3902 -34.8397 -66.6416 -63.3826 -62.5456 -63.5317 -104.208 98.7695 -104.495 56.0947 -63.9172 42.4265 44.1397 226.994 429.705 -108.364 429.866 342.927 396.527 79.4298 -100.188 -100.513 429.583 294.815 28.9963 83.8455 93.2748 430.645 429.611 393.323 387.867 401.503 143.784 439.051 438.631 438.199 439.586 437.678 439.876 440.56 -105.276 440.067 -102.608 -97.3125 -96.7071 -97.0554 -96.311 -101.786 -103.812 -98.5685 -100.416 -98.0633 437.79 436.866 433.572 434.533 434.648 436.97 436.998 435.336 -167.053 436.157 -156.823 -156.735 -154.751 -159.694 -153.401 -162.847 437.76 439.107 437.451 438.166 438.343 438.804 437.267 435.91 437.601 436.773 438.173 436.522 -156.172 -163.245 -163.036 -156.039 -155.412 -162.017 -156.553 437.901 -141.463 437.339 -148.726 -116.471 -91.7537 -105.901 -113.347 -100.454 -105.839 -121.306 -135.039 415.895 -147.988 -116.226 -97.0446 401.754 -114.066 -98.412 -136.449 -130.417 -153.729 -150.349 -125.751 -139.615 -10.4569 -16.5623 -8.39523 -14.0051 -8.63593 -20.3391 -8.92454 437.283 438.812 438.357 437.295 436.637 437.886 436.242 350.034 370.211 356.061 398.385 354.578 382.6 384.093 283.271 289.557 293.6 283.553 290.061 301.891 119.382 442.943 175.604 407.61 429.833 300.732 262.387 427.108 322.313 406.461 188.784 354.327 391.022 288.396 336.333 292.161 276.49 282.871 312.606 334.251 333.426 417.569 408.853 412.706 404.175 387.65 408.253 342.519 276.355 371.867 321.392 331.643 373.697 290.743 310.11 289.757 273.761 287.375 315.048 84.3612 339.386 338.924 375.972 330.838 342.656 364.721 301.094 342.154 335.692 392.666 349.324 359.261 374.586 327.076 269.465 277.932 325.222 293.349 299.011 216.533 287.017 219.069 314.353 345.172 396.314 308.218 282.248 295.633 117.705 404.681 231.632 242.517 208.905 443.52 416.192 444.554 252.783 447.282 409.045 437.842 228.565 117.482 285.999 212.957 76.4456 108.517 256.147 181.038 136.992 318.661 219.133 148.238 136.455 261.552 234.389 244.154 443.564 417.498 434.966 416.498 357.407 382.546 200.656 -263.396 -79.8684 286.688 80.432 257.161 198.953 313.944 295.917 325.137 341.515 307.187 311.465 323.791 285.684 273.765 258.143 267.819 300.901 168.891 237.221 302.317 261.287 299.371 273.136 290.855 184.329 274.498 254.478 4.1071 260.212 255.235 298.095 220.745 174.375 293.687 200.169 339.912 323.19 330.287 270.756 257.336 367.628 124.535 333.437 329.979 291.917 245.34 243.641 154.308 460.049 443.024 472.566 457.047 474.126 446.612 505.995 398.187 395.974 356.404 449.031 232.262 422.681 448.882 354.17 232.322 349.411 256.956 421.707 425.677 459.451 451.849 459.588 448.526 247.844 233.347 267.868 231.21 271.27 219.184 253.443 259.925 239.878 252.432 255.688 266.142 222.651 251.139 201.649 84.4223 260.858 193.103 136.689 355.262 197.105 319.628 414.424 228.293 212.567 287.894 257.657 255.192 271.743 245.541 255.33 270.092 249.304 248.244 294.537 251.243 225.245 275.367 251.336 187.48 256.185 156.872 192.948 193.526 236.444 238.269 292.822 243.401 289.317 281.941 345.105 345.368 433.811 416.567 458.917 445.191 418.093 376.395 434.896 331.834 364.151 248.72 364.062 427.745 396.027 347.078 368.927 345.471 460.233 432.272 448.436 436.992 429.47 453.26 269.375 254.774 289.816 213.471 283.835 219.587 281.886 260.971 258.974 264.325 253.998 249.795 284.669 220.011 155.143 264.152 286.717 219.307 81.4415 397.968 254.228 220.208 240.441 261.425 236.069 347.125 243.895 252.864 249.315 235.624 280.403 245.352 270.198 305.805 244.133 248.262 297.023 289.268 187.62 268.903 141.882 228.271 218.737 205.445 193.491 219.471 230.387 240.166 183.59 366.723 364.352 289.401 464.065 404.189 419.581 474.508 404.172 362.456 430.798 195.954 373.249 164.136 415.989 347.232 196.765 222.605 129.081 357.702 246.606 261.43 244.352 328.242 435.762 460.078 439.315 414.697 424.515 407.413 246.195 196.522 307.473 283.499 237.7 215.805 265.441 242.899 244.84 239.328 242.344 238.888 239.53 243.025 214.508 205.18 220.336 220.589 235.727 271.054 300.091 223.289 212.282 263.085 236.344 241.65 256.289 235.404 73.8433 228.263 212.293 232.218 225.276 205.84 238.468 241.11 209.089 265.162 253.217 211.903 256.226 63.6153 314.836 225.698 254.466 266.928 247.937 326.788 274.991 253.888 279.962 321.764 200.36 220.39 57.9187 269.661 247.613 260.282 139.568 266.591 233.421 361.505 412.675 346.623 375.186 346.514 376.482 405.076 427.3 418.669 479.28 403.936 427.305 313.882 361.66 348.658 382.59 374.53 313.717 382.489 181.902 239.895 220.775 249.695 199.876 91.2366 241.634 361.13 403.627 368.467 302.102 239.75 178.498 285.658 278.823 258.071 182.298 252.619 223.43 200.38 -71.5998 262.743 144.415 210.411 208.216 360.485 294.027 315.974 222.732 560.619 159.4 534.758 233.377 318.384 372.845 291.161 437.064 503.103 281.644 179.633 -182.017 -393.841 192.297 182.639 89.1382 -17.102 238.646 309.601 293.567 263.911 253.641 252.975 266.022 139.681 139.142 66.117 545.267 246.376 370.93 239.941 423.587 394.239 426.692 425.226 390.044 399.204 274.199 428.459 425.99 380.654 95.3217 213.644 268.409 294.784 352.181 296.821 282.704 338.879 342.391 242.066 382.942 404.574 414.452 406.468 410.52 407.495 401.878 426.406 437.053 414.59 415.112 493.203 352.948 369.385 377.33 398.246 383.608 359.928 370.663 224.71 277.867 263.752 229.087 302.926 238.452 292.275 154.013 395.261 409.673 399.953 341.585 358.72 366.808 328.294 342.39 303.633 342.95 401.416 317.684 323.716 386.996 316.179 294.299 292.836 308.528 289.759 308.145 316.027 340.746 293.524 279.596 271.928 303.36 357.47 327.177 343.796 377.326 212.802 310.719 378.057 295.349 324.288 315.874 319.132 312.852 320.276 315.539 332.175 -120.996 76.843 -119.438 81.278 149.129 -105.969 46.582 -30.6381 53.6249 -91.1484 46.814 42.9866 -118.341 -84.6988 -115.073 63.3678 55.4566 113.835 37.8247 434.445 434.832 434.489 -113.715 -111.834 -112.669 -110.057 -113.578 -113.735 -110.881 -110.676 -113.413 431.054 -114.012 -114.145 -112.611 -111.191 -110.328 -111.421 -108.695 -110.351 -112.078 -110.092 -113.516 -114.388 -114.455 -112.589 -179.047 -186.333 -193.312 -181.171 -184.856 -189.112 -166.943 -162.036 -175.522 -159.58 -174.38 -155.549 -174.618 -183.302 -201.453 -196.868 -188.346 -188.056 -196.098 -191.058 -95.9821 -59.8061 -95.496 -72.3299 -52.4191 -78.2409 -48.6095 40.3225 13.8462 9.99073 17.4371 29.5749 27.1056 20.4885 33.7254 20.5016 10.1216 9.04807 15.1555 16.1518 24.104 -43.4511 -48.7096 -40.9279 -39.3509 -44.4065 -41.1146 -0.151705 -17.6992 -55.0691 -37.4014 -47.6632 -42.4856 -66.6369 -78.3516 -71.9459 -72.1829 -57.4564 -54.6971 -62.4899 -64.8592 -70.8596 -8.73126 -22.8081 -27.858 -7.68785 -12.3852 -11.3259 -1.06743 2.5551 3.10361 -0.377345 -1.65936 4.70753 0.0462386 -0.954191 9.61153 16.3473 12.1342 15.2081 12.3438 18.9437 7.19465 -31.6889 -14.5099 -34.7188 -28.9423 -28.8823 -31.7267 30.4983 -12.6195 51.2201 6.37924 -48.9837 -32.6938 -35.4803 4.37853 4.07601 4.08028 -5.85421 -6.01913 -7.38992 -7.37523 -6.87063 -2.12485 -2.42488 -1.79974 -4.461 -2.93834 -2.19598 -1.40405 -2.23882 -1.436 -2.48469 -2.62959 -2.66697 -0.903707 -2.60095 0.259237 -1.30012 -2.78272 -2.3826 -100.237 -110.92 -103.007 49.7251 340.891 106.078 93.8194 -157.344 -108.874 -157.426 -125.513 -165.906 -130.673 -139.445 -58.783 -76.7483 -64.6408 -81.7646 -86.2609 -95.5743 -66.1255 -38.6033 -17.4304 -39.893 -18.8035 -19.7096 -23.0901 -42.7927 430.529 432.623 393.732 391.271 402.483 135.905 -111.243 -131.708 434.6 338.722 45.8059 86.5288 80.0383 430.619 -113.546 434.438 386.603 292.336 398.529 86.899 439.061 437.024 437.47 436.699 439.482 439.169 439.974 440.358 440.087 440.287 440.031 438.216 434.107 436.615 434.98 437.164 437.336 435.87 434.727 437.105 435.13 -124.954 439.733 -125.363 -144.416 -149.108 -136.184 -141.79 -138.36 440.021 438.329 438.884 439.073 439.682 438.851 -118.276 -104.82 -112.325 -102.091 -119.521 -109.152 -125.205 -101.932 424.058 151.393 401.191 404.305 306.954 337.832 296.535 290.649 291.088 324.315 -122.524 408.406 -141.763 386.737 -131.969 -21.8322 -29.1341 -20.0893 -13.9884 -5.81817 -7.01434 -11.9361 -8.55483 -11.7482 427.788 429.414 427.19 406.851 395.744 401.261 405.738 282.453 344.015 341.546 376.256 315.549 339.66 329.288 271.571 431.686 288.359 293.425 281.588 444.239 145.476 342.847 423.384 244.437 433.776 409.269 439.156 434.076 179.226 255.216 326.047 269.937 253.605 253.176 294.78 297.49 285.264 307.635 303.898 271.359 296.64 272.334 114.16 368.349 386.787 323.42 402.07 315.231 284.492 262.578 157.876 -273.926 200.767 220.462 303.251 271.028 264.018 276.086 284.956 293.745 290.098 313.354 300.649 308.464 314.911 289.479 304.717 320.468 337.444 378.7 377.685 329.22 316.689 396.614 323.458 316.53 382.657 314.166 233.079 379.505 355.534 364.675 368.873 420.232 361.069 406.216 377.754 283.513 244.215 283.679 283.497 243.841 243.2 306.782 353.817 392.602 402.553 417.13 274.474 402.873 419.229 286.116 427.929 158.237 402.024 386.105 346.445 347.275 343.51 383.256 321.291 352.181 393.385 311.547 346.592 291.242 251.487 204.19 337.29 334.78 400.152 424.858 376.299 413.485 405.781 423.036 410.284 308.835 -11.6132 274.442 233.48 280.17 270.159 306.018 338.596 335.617 383.833 384.789 316.837 346.121 379.276 226.077 260.748 230.893 333.924 317.959 263.635 190.12 343.387 361.496 340.098 307.823 326.096 315.853 312.668 309.758 -8.05162 268.725 211.782 261.83 306.81 248.442 322.912 381.013 410.847 339.304 308.236 380.577 327.647 278.283 271.147 287.841 303.269 328.728 213.23 291.996 292.208 308.252 292.99 301.872 287.597 412.68 381.138 383.841 430.114 374.045 454.344 477.014 462.822 483.981 451.556 284.725 287.823 275.509 291.857 277.939 393.166 364.645 375.944 365.42 403.232 444.507 462.359 463.052 451.737 459.206 338.475 359.363 357.072 344.243 321.304 298.691 236.928 11.6134 262.967 257.45 175.038 647.41 228.362 314.259 179.836 327.151 250.133 200.346 148.797 256.507 249.84 260.923 258.834 197.297 300.128 358.033 331.694 200.969 271.433 334.089 286.709 312.599 -278.584 40.9458 255.381 250.273 -315.106 275.431 266.82 323.128 308.771 363.657 359.82 241.339 267.459 423.434 426.432 397.062 422.159 399.457 406.227 402.669 291.924 365.914 337.907 368.022 345.108 368.357 288.46 209.909 223.017 293.318 239.242 247.044 220.519 284.262 299.829 393.934 406.692 429.727 309.837 393.751 406.42 427.113 451.258 423.816 465.642 415.26 306.309 372.8 350.546 383.145 334.701 341.9 377.518 152.697 284.554 278.535 281.453 178.432 293.05 379.097 416.839 320.11 370.325 397.989 274.378 315.233 337.66 311.662 346.396 264.271 345.751 337.119 188.953 341.545 333.952 281.656 207.785 273.661 253.323 314.073 289.771 326.158 301.87 334.612 285.532 309.811 276.681 89.3461 226.79 121.788 141.977 299.359 219.944 331.749 358.664 354.07 259.3 318.532 358.722 325.293 292.535 295.828 280.572 295.851 281.975 283.554 301.8 425.484 393.745 429.619 428.535 389.806 399.881 237.459 429.849 88.7503 430.978 376.729 229.133 153.521 383.297 387.505 367.577 399.728 369.714 395.567 373.597 363.99 324.968 373.122 327.172 375.762 294.448 362.84 423.611 415.579 436.243 415.863 425.271 389.823 427.818 329.456 417.756 385.648 100.743 403.746 310.107 397.477 425.938 419.339 398.854 425.672 407.518 416.263 416.182 412.99 411.467 412.248 395.85 306.519 3.13662 311.182 273.446 312.392 305.992 316.176 302.232 316.584 303.06 320.291 288.632 -3.51567 84.6888 136.729 250.236 240.166 221.336 335.465 350.993 380.692 319.397 337.607 348.012 334.955 301.733 293.859 301.945 298.47 292.251 308.724 425.991 429.926 -126.535 100.971 387.65 301.501 268.692 -128.2 -129.389 100.736 103.887 198.295 42.553 72.7153 -130.692 -122.489 42.0162 96.3927 146.368 -149.941 -156.258 -149.077 -148.558 -154.293 435.298 431.497 434.309 432.966 434.215 434.904 432.503 434.91 433.04 434.851 436.432 436.139 435.842 435.511 437.066 436.447 436.449 435.949 436.062 436.831 -143.063 -136.621 -141.931 -142.566 -147.714 433.343 432.942 433.488 432.419 433.563 432.765 435.013 -164.592 434.123 -168.232 434.748 -154.694 433.735 -159.316 -176.308 -176.263 -174.529 -172.361 -167.669 -162.259 -170.633 -164.44 -162.926 -164.59 -161.795 -158.426 -160.663 -166.048 -161.874 -131.776 350.018 -100.864 -102.835 -108.695 -156.208 -165.138 -150.665 -173.247 -149.039 -170.758 -161.539 -155.282 -169.6 -159.879 -170.539 -157.966 -171.381 -161.441 -136.957 -127.445 -113.746 -142.634 -139.706 -117.154 -144.399 6.8345 1.803 1.92697 3.03753 2.61899 -1.89883 0.683417 -9.24508 -8.91483 -8.17907 -8.69287 -8.50151 -9.43218 -8.70576 -11.11 -14.6051 -12.0162 -12.1114 -13.2248 -9.4356 -9.15229 -8.90366 -9.91052 -8.76864 -10.2929 -6.22696 78.8954 1.39158 34.0061 47.1431 36.8153 53.9224 77.8387 49.0295 21.775 39.6736 30.3286 51.9019 32.1121 -185.168 -176.071 -181.931 -155.386 -135.629 -157.201 -166.962 -160.645 -53.2666 -83.5337 -94.4848 -87.1782 -128.954 -55.2111 -122.922 25.5138 -52.9031 41.8308 51.1461 54.024 54.1479 -108.169 -92.2276 -87.4381 48.1584 177.196 100.244 35.4204 -84.4973 -83.9005 -72.2799 -83.0877 -90.6324 -80.7296 -83.8745 -61.6851 -130.683 -14.9779 -42.4273 -54.7065 -83.6408 -83.2972 -80.824 -81.651 -83.4667 -79.3014 -70.2106 -69.7396 -71.0206 -135.814 -81.2755 -95.2306 -125.94 -128.816 -112.064 -152.468 -126.3 -164.601 -139.293 -169.914 -143.793 -152.581 -71.7087 -82.4573 -66.0691 -94.4536 -98.784 -110.518 -73.9664 429.431 -87.092 -101.713 82.0742 237.902 368.869 98.4438 430.889 398.49 -95.9612 214.168 89.2562 390.662 -68.1927 -44.9794 -86.2696 59.4724 39.053 59.0703 42.6478 -104.679 -76.9924 52.0751 -96.3655 80.9722 90.4694 48.3701 -91.8417 -96.6585 -91.1569 -92.7661 -94.3054 -89.2984 438.216 -90.5854 437.788 -89.026 433.919 436.522 435.896 434.443 436.217 437.972 439.237 438.106 437.655 437.676 438.78 -88.576 -89.6386 -89.2577 -88.461 -87.6243 -152.267 -162.989 -165.547 -163.739 -158.474 -159.324 -158.839 -148.826 -140.117 -151.313 -148.823 -141.741 -156.616 -141.632 437.108 436.548 -133.405 -150.407 -162.966 435.748 -157.543 -155.579 -141.893 -153.638 -141.56 -137.578 -133.336 -150.824 -147.37 -135.94 -146.517 -128.769 -150.908 -131.849 -149.332 -136.23 -120.609 -104.736 -105.247 -116.661 -119.618 -106.368 -121.2 438.134 439.091 439.39 439.091 438.868 438.46 438.725 436.368 433.414 435.717 433.347 436.37 433.343 435.993 437.649 438.799 438.368 437.622 438.399 437.902 436.773 437.849 434.489 435.301 434.34 437.096 437.192 436.106 434.405 -174.365 435.02 435.63 434.945 434.721 433.524 434.188 434.804 435.148 434.039 436.884 437.035 -169.464 436.431 437.312 -169.424 435.917 -177.988 -176.253 -180.92 437.006 437.53 437.594 436.901 -98.7176 -83.775 -90.032 -108.892 -84.8282 -98.2168 -106.814 397.979 397.31 408.395 419.815 412.439 433.911 420.64 420.912 413.291 428.367 -115.768 -134.842 -124.26 -138.062 -119.952 -129.635 -123.372 414.201 -99.2536 -89.6747 -91.424 -108.563 -102.894 -86.3366 -105.375 -114.862 -122.172 -136.807 -124.469 -10.0179 -9.10051 -6.56508 -8.78832 -8.69898 -10.5371 -8.75932 -12.4504 -16.9201 -19.0623 -12.2629 -9.85356 -8.63135 -6.59053 -9.18905 -10.0065 397.979 426.338 427.229 396.47 426.662 394.503 398.399 426.639 395.685 431.495 427.318 290.208 390.029 396.951 430.415 65.9523 -124.092 272.894 435.465 252.532 70.2773 -131.91 54.8 433.699 146.141 229.739 20.856 436.235 435.254 435.105 436.347 436.936 438.058 437.455 438.235 437.101 437.901 437.359 436.374 434.561 436.355 435.196 436.762 437.298 438.117 437.646 436.796 437.311 -88.9093 -100.552 -98.3508 429.885 411.492 402.994 431.689 414.036 437.446 438.357 437.369 441.284 435.428 408.798 -108.389 -99.4091 429.71 -99.6429 309.767 315.371 301.039 327.636 315.888 -89.1842 -98.1633 -96.5494 -110.554 -130.455 433.093 -107.239 -2.28502 300.606 -1.49537 247.36 -2.77537 -0.482767 -4.02914 320.251 321.212 309.621 -5.41556 -7.55951 -13.1425 -10.312 -15.5363 -8.72905 -11.9408 -9.19293 -7.23297 -12.2961 -14.1124 -15.214 -11.896 -9.20726 -9.10504 436.296 437.067 437.136 436.704 435.133 433.686 437.315 433.162 436.479 432.438 435.925 436.871 437.92 437.941 437.376 437.547 434.087 431.849 431.405 434.581 -185.518 -188.85 -183.499 -188.066 434.794 435.343 434.296 434.165 434.745 434.987 434.323 435.583 435.545 434.933 436.052 434.959 435.868 435.596 435.816 436.903 -176.583 -174.643 436.302 436.818 -178.612 434.769 434.248 433.23 433.896 434.062 434.507 434.631 -188.274 -191.395 435.459 -185.391 -177.375 -174.709 -180.913 419.482 436.713 -117.643 -112.807 -125.05 -117.863 -137.732 -107.495 -130.358 -117.984 -83.8333 -78.4427 -99.1796 -118.47 -123.657 -138.555 -139.354 -133.451 -124.396 -121.772 -4.46527 -1.68684 0.670149 -2.44231 -0.896548 -4.61981 -1.72012 -9.11748 -10.2002 -4.29898 -17.4231 -4.18602 -17.009 -8.36039 -3.35468 1.13817 1.30782 0.561875 0.114527 -0.0686773 -2.52891 324.274 -114.85 68.4485 -117.262 26.0386 106.988 -115.234 33.1486 -70.7545 -88.1303 39.1969 56.542 91.3316 -106.954 437.734 -107.985 -106.354 -112.294 -113.128 -111.62 -108.561 -106.37 -108.92 -108.447 -106.895 -109.138 -107.1 -106.79 -107.02 -107.474 -109.735 -107.743 -107.55 -152.883 -157.881 -165.957 -152.016 -160.543 -158.011 -140.169 -132.432 -135.488 -130.604 -139.008 -132.894 -137.768 -146.751 -148.227 -153.37 -143.468 -147.383 -150.793 -144.415 -128.464 -137.706 -158.586 -160.178 -74.1474 -66.4584 -58.7195 -96.2747 -66.673 -193.085 -50.9716 12.8566 -155.981 -164.281 -163.785 -147.385 -160.256 -10.7603 -7.43145 -5.45716 -5.71317 -7.40893 -7.03081 -7.40564 -6.97816 -7.71965 -7.90045 -7.79239 -7.67358 -10.461 -11.8382 -11.8721 -12.0732 -11.6727 -12.7724 -11.4159 -12.1658 -11.6825 -5.5238 -6.13632 -6.78301 -7.97413 -6.40928 -6.84737 -7.90125 -5.77111 -6.05073 -5.02228 -6.04913 -6.02399 -6.79229 -7.85387 -2.61867 -3.66972 -3.68653 -4.0139 -3.57057 -4.2031 -2.65251 -2.95016 -2.99068 -2.97203 -3.87676 -4.3278 -7.72528 -8.03092 -10.5361 -10.9913 -6.83296 -6.8965 -4.06098 -3.54614 7.00075 2.72645 8.16106 3.8844 4.71995 5.26173 8.74588 -7.58153 -8.45151 -10.3231 -17.5361 -8.81966 -15.7703 -14.5461 31.419 8.96484 12.0897 18.018 15.8171 22.6923 13.8425 37.5816 12.5371 11.7064 16.0899 24.6538 24.0382 17.8491 17.4988 8.87384 5.24867 7.66116 12.6959 11.8098 8.83378 -31.5031 -36.853 -21.7724 -3.3804 -12.6838 -23.6366 -15.0142 -0.470262 -21.6401 -11.1057 -9.94394 -26.2135 -40.5476 -27.9875 -28.354 33.6469 30.1329 -39.1538 -57.318 -57.8308 -64.8835 -71.4114 -72.4665 -50.2539 -41.1086 -52.2881 -38.1122 -43.0998 -56.0081 -42.1462 -50.2502 -11.4029 -13.1921 -24.6377 -17.5683 -20.7679 -15.8412 -19.7992 -61.7911 25.77 -20.0206 26.8134 -24.0253 31.8807 35.0688 26.8569 -101.015 -30.4152 -28.8154 39.0575 24.9257 46.2261 -15.6403 -1.86861 -19.0033 41.2598 38.7976 50.6165 30.3665 -118.659 -107.029 -109.074 -124.305 -133.904 -103.644 -96.9011 -126.313 -115.955 -88.1049 -76.6069 -85.2726 -96.3919 -102.88 -94.0678 -75.6106 -64.8084 -73.0619 -74.3293 -90.2207 -91.4605 -103.568 -43.8251 -77.8606 -52.9116 -34.477 -45.6651 -33.366 18.4347 18.9934 9.58304 23.2723 11.3515 15.6512 13.5547 -51.9653 -32.4991 -34.3364 -32.4814 -37.5139 -30.1424 -24.855 13.9041 4.95263 24.8604 3.9669 6.89924 8.978 12.0478 17.3048 19.6896 6.01371 7.07493 5.58397 10.0817 5.02761 -23.687 22.0027 -14.1907 -3.59126 -48.5192 -25.8207 -24.1422 -32.7273 -30.386 -24.9133 -46.2499 -46.0126 -53.7796 -50.9645 -18.2709 -9.98937 -6.6583 -13.4297 -14.9299 -14.7034 -9.68711 -10.4463 -10.7967 -9.23591 -9.3523 -9.89366 -9.95993 -10.9188 -11.2956 -11.5941 -11.416 -11.6244 -11.8051 -12.2138 -11.9614 -10.5677 -10.4835 -10.9365 -11.5242 -11.5559 -12.3109 -11.1972 -9.28967 -9.15061 -7.94607 -8.35891 -8.20423 -8.92036 -9.85862 -6.31315 -6.19177 -6.93701 -7.52803 -7.32659 -8.10849 -6.65983 -4.61565 -4.62692 -3.57934 -3.60304 -3.58292 -3.76821 -4.85743 -0.858459 -0.896475 -1.9915 -2.11924 -2.17211 -2.37072 -1.00189 -7.11977 -7.81099 -6.63629 -7.87216 -8.07124 -10.9349 -11.083 -10.6602 -10.7463 -10.8691 -11.0721 -6.88777 -6.72576 -6.98809 -6.76442 -8.10234 -7.07104 -2.80426 -3.42384 -2.84777 -3.48409 -4.54987 -4.01963 1.41017 7.92638 2.22333 16.7093 29.7863 23.1643 22.7752 7.36254 -0.07622 0.785491 12.1533 13.3325 17.8276 8.18384 -42.4819 -37.7079 -36.2547 -33.6766 -21.1962 -9.93896 -32.5529 -37.6066 -18.9691 -17.8455 -20.8063 -22.9507 -29.7898 -33.2453 -30.3289 -16.1362 -8.74295 -23.3694 -26.7536 -17.1185 -28.1903 -31.534 -18.5496 -22.6921 -10.9906 -9.85624 -10.8947 -9.60601 16.2968 0.509917 2.99956 0.616864 0.602251 1.25419 3.07595 15.5743 -2.99783 -2.28875 -1.18672 -0.118457 -3.06152 -0.931667 -22.9428 -17.1186 -15.0736 -4.42856 -6.10328 -2.98502 -4.33916 -24.5645 -10.6967 -3.75549 -8.25939 -6.66122 -4.69314 -2.50561 -12.7749 -1.53988 -4.59714 -8.02229 -2.51729 -5.01192 -3.4026 -8.32997 -6.08023 -5.502 -8.18401 -6.67671 -4.86584 -6.23103 -5.32078 -4.54524 -5.17792 -6.13503 -4.86174 -6.03445 -5.34744 -4.05523 -3.52312 -3.06752 -3.1499 -2.77559 -3.16502 -4.05758 -0.814068 -0.737045 -1.78403 -1.95432 -1.73012 -2.05093 -0.881329 -7.86599 -10.9619 -6.52522 -3.52044 -11.8299 -8.17426 -8.77553 -5.01063 -5.64651 -5.87345 -6.74369 -6.28709 -9.53755 -13.7403 -14.3896 -16.0472 -15.0602 -16.2363 -16.6652 -15.2614 -15.8279 -16.9063 -3.92825 -3.3751 -5.54944 -5.57583 -7.23011 -3.83986 -2.46403 -2.99824 -2.6447 -3.49144 -19.1883 -16.3312 -20.0115 -17.3415 -15.7609 -10.8618 -12.1517 -6.59083 -24.7525 -8.87482 -9.83747 -16.4415 -13.6451 -16.5203 -13.8495 -20.1961 -14.9848 -12.5757 -18.813 -20.6604 -19.5219 -22.0407 -20.9818 -18.5309 -22.2038 -19.4866 -18.5599 -17.8752 -15.7517 -18.1039 -17.2813 -18.15 -17.5556 -16.794 -1.6805 4.91338 -2.42698 2.93993 10.1774 5.19938 7.30957 4.37406 3.27554 -3.78991 -3.04629 -0.666114 1.02503 5.30157 -19.9684 -19.1992 -22.5398 -20.6293 -13.0083 -8.42786 -20.5025 -22.7371 -12.7417 -10.0634 -13.614 -14.1659 -18.1384 -18.7102 -21.7238 -12.814 -8.70591 -19.3612 -19.5586 -12.8809 -21.5652 -15.1573 -2.45862 -8.55189 -10.0462 -2.44993 -3.0124 -2.95473 -5.10441 -3.60322 -4.09584 -4.86921 -4.09279 -4.63558 -5.09411 -6.60759 -7.5811 -9.0719 -9.56952 -6.68728 -6.92144 -7.29957 -14.5492 -21.9162 -14.8023 -19.498 15.731 -33.1572 -19.0303 -12.3477 -16.8163 -17.0446 -15.5836 -14.6192 -15.687 -12.6098 -14.4428 -18.4483 -19.458 -13.9556 -22.0114 -21.917 -22.5836 -21.3388 -20.8783 -19.2622 -20.1744 -20.2177 -22.3256 -20.0868 -19.4623 -21.5245 -20.4808 -19.5909 -18.8131 -19.758 -21.8124 -20.1902 -21.8346 -20.7661 -10.0304 -14.3448 -4.94084 -2.97148 -9.31842 -8.6508 -8.52586 -9.40292 -11.5459 -13.4617 -11.3422 -14.6496 -7.79799 -7.80964 -7.79792 -6.99296 -7.78157 -7.71281 -7.61622 -7.72212 -7.77584 -10.9222 -11.0428 -11.2204 -10.7003 -10.8874 -10.8909 -11.0456 -10.6923 -6.84048 -7.79873 -6.74762 -7.84764 -6.45201 -6.54542 -6.20743 -6.56163 -3.9142 -4.16231 -3.93881 -4.24358 -3.32715 -2.83461 -3.19473 -2.79469 -16.5789 -16.6903 -21.7081 -19.4658 -13.3536 -9.56426 -21.7818 -19.35 -13.303 -10.6722 -13.2596 -13.269 -16.2991 -16.3966 -21.3184 -13.3745 -9.73474 -19.0471 -18.9718 -13.4027 -21.2399 -10.3743 -9.5935 -9.31439 -9.49042 -9.88601 -10.3835 -9.60687 -13.467 -11.7159 -11.6597 -8.99012 -10.0048 -10.0423 -9.84298 -10.2433 -9.18591 -9.14198 -8.50233 -9.61466 -8.13079 -12.3954 -12.0031 -12.2504 -12.1557 -12.3146 -12.0937 -12.2432 -12.252 -7.93046 -8.86699 -7.94412 -8.76846 -6.95983 -7.29284 -7.19926 -7.28646 -4.23801 -4.69849 -4.24914 -4.57927 -3.33374 -2.9087 -3.45224 -2.96175 -7.676 -6.78905 -8.25815 -10.9091 -11.3876 -11.3286 -12.6561 -11.5055 -11.2282 -7.12003 -6.70712 -8.48191 -7.30599 -7.38087 -7.19092 -6.76821 -6.89008 -2.80906 -3.43294 -4.65107 -4.11734 -4.17294 -2.929 -3.41685 -3.44023 -8.58363 -7.4686 -8.34542 -12.5659 -9.81536 -10.2542 -7.18656 -7.83067 -8.02951 -8.43188 -8.28863 -8.90137 -8.5553 -8.1888 -7.94592 -7.77269 -8.46378 -7.87303 -8.09966 -8.45838 -8.32743 -8.65294 -9.68989 -9.87086 -9.56569 -9.10292 -9.03725 -9.26328 -5.20652 -5.21357 -3.57646 -3.4836 -5.21796 -5.25641 -3.32904 -10.7266 -9.09475 -8.61952 -6.48854 -5.32404 -4.37295 -6.7736 -5.82865 -4.71791 -15.2008 -12.3171 -23.491 -21.8318 -13.571 -9.2601 -22.5194 -23.5609 -13.0957 -19.8229 -14.2664 -18.8016 -14.783 -20.8722 -17.0404 -13.5734 -23.3074 -22.5929 -20.124 -19.0429 -23.6257 -22.093 -20.0639 -20.5573 -17.5374 -19.8882 -18.6027 -20.9451 -19.2807 -18.4503 0.867046 -0.458139 -2.53509 -2.31049 0.758315 0.369281 -2.49395 -0.40848 -8.923 -5.93271 -7.89434 -1.3048 -10.6837 -4.65855 -1.48657 -4.27677 -3.65834 -4.55692 -1.97917 -3.28174 -4.04259 -9.18074 -8.68151 -9.44722 -14.1401 -12.0254 -11.985 -8.94832 -10.0555 -9.75147 -11.0617 -10.5869 -10.7992 -10.5376 -11.0726 -10.1111 -9.71262 -9.89903 -9.98226 -10.1324 -10.1179 -10.2628 -13.7225 -13.4641 -13.7755 -13.2476 -13.2744 -13.3001 -13.3063 -13.2086 -3.90371 -4.41667 -4.0408 -3.92631 -4.39646 -3.22109 -2.71191 -3.39617 -3.2706 -2.67678 -11.8271 -7.05979 -3.49058 -7.4168 -9.53569 -11.8724 -12.0511 -11.5436 -10.9872 -11.3397 -11.0876 -6.24307 -5.74187 -6.28492 -5.45545 -5.84114 -5.85182 -6.08371 -6.11094 -3.07216 -2.93753 -2.92226 -1.51373 -1.86001 -1.56083 -5.3769 -4.75288 -5.86544 -4.46557 -4.89277 -9.15968 -6.6857 -5.68736 -2.4214 -1.94308 -3.03298 -4.61988 -2.93281 -3.59333 -3.81642 -3.61757 -2.80297 1.01286 -1.08066 -0.653484 -3.19699 -2.64359 -2.40702 -7.86697 -7.64564 -7.80893 -6.67566 -7.69311 -7.19465 -8.22223 -8.65729 -8.04645 -10.0643 -8.93081 -10.3083 -13.0064 -12.9081 -12.2445 -9.46186 -11.6775 -10.992 -6.03184 -8.15156 -8.97443 -17.5369 -10.176 -10.1596 -9.62301 -11.1568 -10.785 -16.819 -14.5836 -16.1237 -18.338 -11.4239 -14.7708 -12.9838 -12.127 -14.1381 -12.5101 -12.5558 -12.7301 -13.3051 -14.2543 -13.6187 -13.1984 -13.8881 -13.3745 -11.3627 -11.8694 -11.3066 -9.23286 -10.4379 -10.435 -12.3661 -11.8666 -11.695 -16.9531 -15.9173 -17.4159 -19.925 -16.3976 -16.9974 -15.442 -16.108 -16.8132 -9.19036 -11.0762 -11.6656 -17.773 -15.5501 -14.3786 -12.8647 -14.8598 -13.7182 -5.80189 -5.83673 -5.46801 -7.57995 -5.72855 -6.201 -5.46035 -4.68796 -5.13632 -5.68328 -5.61142 -5.49239 -4.41444 -4.51907 -4.71525 -5.25381 -4.85143 -5.10205 -6.78947 -5.12298 -4.22302 1.46707 -3.1489 -2.42988 -4.11898 -3.95407 -3.32341 -3.81076 -4.12366 -3.94236 -3.148 -3.60284 -3.75999 -4.44913 -4.13012 -4.21 -3.05168 -2.78572 -3.13595 -3.78879 -3.38914 -3.46912 -2.56689 -2.85714 -2.97424 -1.45351 -2.02227 -1.47588 -0.296412 -0.801185 -0.866578 -1.85873 -1.24977 -1.31492 -3.3815 -3.11673 -3.10848 -2.37174 -2.18332 -2.50438 -2.6295 -2.33336 -2.66214 -0.383852 -0.793014 -0.887436 -1.20258 -1.63474 -1.23417 -1.23758 -1.75404 -1.31448 -1.59907 0.202078 -1.37037 -6.96707 -4.1295 -4.4329 0.0598231 -1.70137 -1.36802 3.84645 2.31311 4.83713 1.86161 1.84843 3.67859 1.38575 1.42203 2.82483 -4.1001 -5.12687 -2.24508 -2.85716 -1.95573 -1.12255 -2.45775 -1.05525 0.392983 -0.712152 -1.8831 -1.55836 -1.18921 0.0653249 -0.792362 -0.486211 -3.79477 -1.69664 -18.2622 -14.1567 -6.19554 -17.1858 -20.828 -12.912 -16.6021 -12.5245 -10.6952 -13.9847 -2.55247 -4.69499 -4.32892 -5.04077 -6.2017 -5.65544 -8.41448 -7.25765 -6.43729 -13.1372 -13.8044 -12.0184 -8.45667 -7.46961 -9.17822 -12.2944 -8.68741 -10.5696 -18.8188 -15.4812 -17.6392 -18.6163 -15.1576 -18.3895 -9.93494 -9.61747 -10.7328 -15.836 -11.377 -12.6224 -13.4944 -15.4426 -13.751 -11.3224 -11.7534 -11.9046 -14.8751 -13.0763 -13.2943 -7.70789 -9.38778 -9.12805 -9.88952 -10.8319 -10.076 -11.5598 -11.9309 -10.8465 4.411 -0.376816 4.54473 -3.45365 -1.44616 4.12725 -2.07443 -2.17214 0.851148 -2.81893 -2.23222 -2.67044 -3.20746 -3.3179 -3.15918 -2.93742 -3.48486 -3.22604 -5.55358 -2.77777 -3.691 -3.9827 -4.13038 -3.61443 -2.47552 -3.68973 -3.05922 -3.51894 -3.52971 -3.66932 -4.43629 -4.25695 -4.24843 -3.73638 -3.89868 -3.9251 -2.16734 -1.98099 -2.18042 -2.83649 -2.62349 -2.7181 -2.03336 -2.23054 -2.25617 -1.13616 -1.4989 -1.18054 -0.372594 -0.671634 -0.73619 -1.47577 -1.07684 -1.16943 -3.03866 -2.80948 -2.80648 -2.58176 -2.26945 -2.57002 -2.38191 -2.04025 -2.3288 -0.282864 -0.738908 -0.659889 -1.21203 -1.62663 -1.2147 -1.12757 -1.43625 -1.09418 -4.85222 -4.50733 -4.66815 -4.29659 -4.07739 -7.92477 -6.03944 -7.67064 -8.40186 -7.22798 -7.8213 -5.36126 -7.53245 -10.7004 -10.4664 -10.4657 -9.25362 -9.54613 -9.66313 -9.734 -9.64193 -9.64944 -9.52531 -9.91815 -9.48293 -7.85321 -8.51165 -8.40323 -9.2728 -8.96588 -8.929 -4.11498 -4.88602 -4.31603 -6.1588 -4.78571 -4.82104 -5.04697 -3.63123 -4.04162 -4.61122 -4.73114 -4.73034 -4.23302 -4.58992 -4.4096 -4.79209 -4.96643 -4.83929 -5.10637 -3.61773 -2.66685 -2.37609 -2.66481 -3.56121 -3.39688 -3.35602 -2.45547 -2.78321 -2.73796 -1.23358 -1.61086 -1.24333 -0.374738 -0.719997 -0.784681 -1.64776 -1.31112 -1.3055 -9.49789 -7.69966 -8.42987 -7.50353 -9.69889 -8.73739 -9.93085 -11.5899 -11.7761 -11.7544 -10.7155 -11.1292 -10.9218 -6.36143 -6.47515 -6.07149 -5.88816 -6.04224 -5.86636 -3.0647 -2.66629 -2.96117 -1.35221 -1.64923 -1.33562 -8.48445 -9.40979 -7.95493 -9.25009 -8.67861 -8.327 -7.91506 -7.70919 -7.74781 -9.39472 -8.43069 -9.94381 -8.47636 -11.0208 -14.2972 -11.4883 -13.1087 -7.77374 -7.88048 -7.666 -7.89259 -7.33321 -7.51202 -7.6001 -7.64547 -7.56718 -7.46072 -8.9734 -8.07303 -7.71357 -7.64908 -7.74781 -7.7653 -8.36745 -7.75443 -7.07233 -8.20469 -9.47992 -9.97715 -9.36185 -10.1447 -7.57114 -6.82304 -7.35816 -7.45086 -7.68832 -7.42032 -7.63284 -7.61963 -7.69993 -7.64326 -7.60719 -7.71983 -8.52421 -7.00565 -7.40863 -8.31806 -8.27912 -7.83861 -9.20345 -9.617 -9.83337 -9.10462 -9.19967 -9.7104 -10.0735 -10.2046 -9.41296 -9.7779 -10.7723 -10.5895 -10.7405 -10.7044 -10.6669 -10.3051 -10.4433 -10.6549 -10.2335 -10.2943 -10.3048 -10.055 -9.44241 -8.83832 -9.49685 -8.94172 -10.4571 -10.2522 -10.265 -10.6463 -10.1924 -10.7463 -10.509 -10.1474 -9.79826 -10.6983 -10.1384 -10.1321 -10.6071 -10.2611 -10.0021 -9.88109 -10.172 -10.3758 -9.85384 -10.0421 -10.3214 -9.60984 -9.39427 -8.74903 -8.88681 -9.35989 -9.54099 -8.98018 -7.10339 -6.35269 -5.79112 -6.24964 -6.2245 -6.667 -6.66421 -6.48784 -7.12221 -7.9985 -7.92343 -7.12957 -6.22675 -6.42443 -6.36948 -6.18093 -5.52575 -5.2083 -5.63555 -5.24958 -7.30975 -6.23695 -6.80596 -6.85392 -6.5424 -6.92459 -7.06251 -7.69842 -7.07998 -7.91338 -8.03803 -8.21641 -7.22591 -7.32415 -6.35245 -6.21829 -6.55958 -6.54049 -6.25139 -6.25668 -6.66394 -5.91026 -5.73182 -5.28988 -5.28279 -5.76581 -5.78905 -5.34671 -4.0975 -3.41115 -0.734153 -1.36738 -3.13941 -2.76291 -2.80672 -3.25954 -3.98 -4.39074 -4.29666 -3.96739 -1.44455 -1.89653 -1.821 -1.39767 -0.760131 -0.262852 -0.8301 -0.281558 -3.47859 -3.35741 -2.8134 -2.81513 -3.38475 -3.39864 -2.83008 -4.0637 -4.03902 -4.54804 -4.46975 -4.53124 -4.07119 -4.02876 -1.45558 -1.99027 -1.98288 -1.36597 -1.38702 -1.42328 -2.01435 -0.839452 -0.759264 -0.257869 -0.267013 -0.790062 -0.803078 -0.307365 -7.8849 -7.75807 -7.45339 -7.48313 -7.41026 -7.39965 -7.42238 -7.38961 -7.95597 -7.43911 -7.43687 -7.35446 -7.2057 -7.30654 -7.34823 -7.33226 -7.68666 -8.55007 -7.24092 -6.97833 -7.98509 -7.09953 -7.48846 -8.3824 -6.64531 -8.07067 -8.18221 -8.87911 -9.33774 -8.83179 -7.12509 -8.00135 -8.01142 -8.89714 -9.00332 -9.31182 -9.35597 -9.30097 -8.89929 -8.89913 -7.15156 -6.45999 -6.98761 -6.45962 -8.68041 -9.39063 -8.07366 -7.10563 -7.29865 -7.85746 -7.32318 -9.81662 -10.3717 -10.3592 -9.70384 -11.0339 -9.61865 -9.47679 -9.40638 -9.43628 -9.00716 -8.91018 -9.48326 -9.01688 -10.1697 -9.71433 -9.38016 -9.1027 -9.47382 -8.82503 -9.20197 -8.81452 -9.15781 -9.56608 -10.1531 -9.92922 -10.4798 -10.5381 -10.5722 -10.4719 -10.2955 -10.3341 -9.49764 -8.83158 -10.0255 -10.3348 -10.3446 -9.97636 -9.91974 -10.2528 -6.36412 -6.67267 -6.93968 -6.48057 -6.74412 -6.28555 -6.51296 -5.82117 -5.85799 -5.41853 -5.40396 -5.84947 -6.31921 -6.78151 -6.34224 -6.69163 -6.37454 -5.87389 -5.95692 -5.35524 -5.49569 -5.42414 -5.82729 -5.97671 -7.2414 -8.05442 -6.64403 -6.8378 -6.6643 -6.91642 -6.38282 -6.81492 -5.81977 -5.36806 -6.49418 -6.65354 -6.73645 -6.44847 -6.36779 -6.65226 -1.30471 -2.06071 -1.65518 -1.5222 -1.74921 -1.42121 -1.18353 -0.746382 -0.244343 -0.700093 -1.89716 -1.36072 -1.14257 -0.698337 -0.880963 -0.264982 -0.257468 -0.777435 -0.716507 -0.234174 -4.13714 -4.57299 -3.39507 -2.77627 -3.32974 -2.8966 -3.35829 -2.79029 -0.777617 -0.264732 -1.4386 -1.97826 -2.03076 -1.37732 -1.40196 -2.02275 -6.81208 -7.00286 -6.95956 -6.8361 -6.6699 -6.43257 -6.52063 -6.78235 -6.5191 -8.18617 -6.54855 -7.09625 -6.93774 -8.05997 -8.01832 -10.0923 -9.47238 -11.2952 -10.6007 -10.8187 -10.3843 -9.84628 -6.63768 -6.79243 -6.78311 -6.76922 -6.96484 -6.58378 -6.65783 -1.4076 -1.94962 -2.02083 -1.92648 -1.38624 -1.43998 -8.79242 -5.64711 -8.81286 -6.45388 -8.27843 -8.83247 -5.79047 4.41617 3.44458 2.50328 1.43158 1.971 4.7861 2.92888 3.07442 2.91265 1.89951 1.65403 2.97826 3.89847 1.25297 8.03319 4.76046 4.5685 17.9957 17.5695 3.7433 8.31645 -4.26713 -2.67096 -4.31868 -0.22906 -3.98225 -4.78981 -2.23534 -2.64703 40.4796 40.9563 -14.4876 -13.5499 -15.3744 -15.4352 -16.0297 -3.82481 -3.35456 -3.00474 -3.7288 -2.71189 -2.66698 -2.8657 -2.71909 -2.66817 -2.69635 -2.63626 -2.70701 -2.86834 -2.8647 -2.75987 -2.50441 -2.63439 -2.68709 -2.41703 -2.36626 -3.20231 -2.52307 -4.72427 -6.31992 -4.86535 -3.58784 -2.45208 -2.88389 -2.66214 -2.84707 -1.9626 -2.24395 -1.84718 -1.91692 -2.71936 -2.08252 -2.14658 -1.93825 -2.24449 -2.00653 -4.52711 -4.86459 -3.91589 -3.4314 -5.00067 -5.46915 -6.07368 -6.14203 -5.40085 -4.29992 -2.92913 -3.08615 -4.2235 -2.50822 -1.88854 -2.13512 -2.34761 -2.50876 -2.57282 -2.51074 -1.9841 -2.57807 -2.93493 -2.19214 -2.52165 -2.5689 -2.30817 -2.76918 -5.87962 -5.29231 -5.03912 -5.49042 -5.66106 -4.90202 -5.07101 -5.60827 -4.89294 -2.31648 -4.1544 -3.96965 -3.48981 -1.99645 -3.86679 -2.5822 -4.26612 -3.67522 -7.91067 -7.70953 -7.07617 -7.71655 -7.47301 -8.70201 -7.84708 -7.31801 -6.89278 -6.79285 -7.32712 -7.58831 -7.64777 -7.5907 -7.53409 -6.59122 -7.0099 -6.7801 -6.23341 -6.35978 -6.58513 -6.63465 -6.32598 -6.72864 -7.42335 -7.26886 -7.19705 -6.97856 -6.90991 -7.01569 -7.83944 -6.86616 -7.00255 -6.60465 -7.09502 -6.92675 -6.53492 -6.70544 -7.08084 -7.07587 -6.58814 -6.87739 -7.45521 -7.31236 -7.10332 -7.23535 -6.95689 -7.31621 -7.01915 -7.25385 -7.05005 -5.23041 -5.17693 -5.60462 -5.56804 -5.43563 -5.42027 -5.29098 -4.81722 -4.53399 -4.47894 -4.88344 -5.16474 -5.18517 -5.23164 -5.18762 -4.45416 -6.91484 -5.11861 -5.17166 -6.0177 -6.28359 -5.65681 -5.24457 -6.04537 -5.79101 -4.01952 -4.89843 -4.33169 -4.55901 -5.54081 -5.18349 -5.43846 -4.4004 -5.10509 -5.60011 -4.4511 -4.77807 -4.73474 -4.47929 -4.48929 -4.83522 -4.86135 -4.39788 -4.77368 -5.13334 -5.10536 -4.97275 -5.39868 -5.23809 -5.1338 -5.14544 -5.16262 -5.00807 -1.37742 -1.36972 -1.60725 -1.7363 -1.30637 -0.860847 -0.401342 -0.874865 -0.375997 -1.34349 -1.85141 -1.76374 -1.44382 -3.90905 -3.53009 -3.43008 -4.02314 -3.9686 -3.53275 -3.61635 -3.93581 -3.49679 -2.55732 -2.99299 -2.87902 -2.86551 -2.79086 -2.6052 -2.42278 -2.74729 -2.9411 -0.380993 -0.879133 -0.815866 -0.340196 -0.750382 -0.343673 -0.853527 -0.803047 -0.362924 -1.86351 -1.41541 -1.42789 -1.97419 -1.5172 -1.18002 -1.88657 -1.42305 -1.44445 -1.90494 -1.94187 -1.87207 -1.83294 -1.93954 -1.88604 -2.08873 -1.63287 -2.23979 -1.45294 -3.65454 -2.2581 -1.38447 -3.64746 -5.5976 -3.72375 -7.12806 -1.07911 -1.30004 -1.35263 -0.934543 -1.1169 -1.09557 -1.36191 -1.17362 -1.32273 -1.47123 -1.13467 -1.47167 -1.02179 -1.077 -1.82069 -3.52538 -4.73438 -5.38471 -4.72472 -2.37968 -3.55604 -3.63167 -5.30285 -4.64555 -2.01276 -2.07678 -2.08679 -2.10687 -1.73086 -2.50189 -1.6804 -2.12859 -1.98588 -1.7646 -1.78837 -1.98272 -2.2321 -0.886643 -1.24397 -2.06166 -3.34268 -3.70911 -2.70131 -2.58979 -3.44681 -2.18814 -4.67231 -5.49999 -5.32668 -4.63196 -4.72203 -4.53622 -5.25176 -5.42375 -4.45633 -4.70247 -5.39065 -3.60591 -1.99208 -2.21024 -3.28903 -6.9657 -6.90317 -6.34182 -6.81769 -6.30058 -6.77852 -6.76486 -7.02767 -7.07605 -7.14896 -7.14159 -6.98725 -6.16794 -6.65497 -6.77465 -6.69789 -6.8571 -6.8975 -6.71877 -6.76222 -6.90214 -6.47941 -6.1924 -6.05838 -6.58997 -6.48729 -6.36656 -5.98286 -6.09153 -6.09 -6.3948 -6.44934 -6.75097 -7.00169 -6.91559 -6.83631 -6.87729 -6.81288 -6.88774 -6.94219 -6.82606 -6.88508 -6.91693 -6.56545 -6.15928 -6.09714 -6.4923 -6.60865 -6.56462 -6.07202 -6.29157 -6.55103 -6.71024 -6.15287 -6.88291 -6.93804 -6.884 -7.01241 -4.97105 -4.77973 -4.39498 -4.63881 -4.34344 -4.64832 -4.59344 -5.12536 -5.09969 -4.92629 -4.88841 -4.88809 -4.2561 -4.52286 -4.53728 -4.13425 -4.56549 -5.05264 -3.73424 -5.08271 -4.72613 -4.82842 -5.44019 -5.47238 -4.85213 -4.94561 -4.97806 -5.42833 -5.77732 -5.57006 -4.80669 -5.31816 -4.07559 -4.36597 -4.42223 -3.71095 -4.60392 -4.68251 -4.66359 -4.88659 -4.58672 -4.74999 -4.68306 -4.29534 -4.04689 -4.04037 -4.20036 -4.36703 -4.40343 -4.06667 -4.15842 -4.33811 -4.51109 -4.0641 -4.54941 -4.46396 -4.51908 -4.57452 -1.80043 -1.30846 -0.742894 -0.355774 -0.806117 -1.78475 -1.10796 -1.31116 -0.329205 -0.785915 -2.77019 -2.79648 -2.33246 -2.3927 -2.74366 -2.86074 -2.34732 -3.23196 -3.35064 -3.41966 -3.2538 -3.26322 -3.31427 -3.54207 -3.60478 -3.50766 -3.269 -3.29614 -2.74826 -2.41381 -2.35245 -2.65449 -1.2921 -1.66497 -1.70956 -1.29444 -1.27786 -1.30251 -1.65258 -0.841944 -0.354117 -0.744367 -0.396218 -1.29178 -1.55854 -1.61407 -1.31721 -0.804146 -0.766253 -0.342328 -0.341738 -0.762382 -0.802432 -0.334081 -5.38693 -2.03292 -0.0116769 -0.344117 -0.608544 -0.281267 0.120468 0.114227 -1.59205 -1.69075 -1.43909 -1.91558 -2.05346 -1.82809 -6.18719 -5.66318 -5.51271 -2.92775 -4.38993 -4.25242 -6.8733 -7.44035 -7.27408 -7.57448 -7.66586 -7.50202 -6.05539 -6.57474 -6.63475 -7.31389 -7.29522 -7.14474 -5.09859 -4.2465 -4.32344 -3.90788 -3.11366 -3.53054 -3.48542 -3.5054 -3.5954 -3.89794 -3.80597 -3.88016 -2.96433 -2.73457 -2.76898 -2.05171 -2.21306 -2.29817 -0.357408 -0.646317 -0.730584 -1.42467 -1.11547 -1.11003 -10.3916 -8.35599 -6.61576 -6.4434 -8.97558 -10.3373 -8.63661 -7.83583 -12.7476 -10.1027 -10.5266 -10.0395 -9.07984 -12.986 -5.97056 -6.26753 -4.5688 -4.53121 -5.79334 -7.14579 -6.17692 -7.46748 -5.86997 -7.54617 -5.67079 -6.92682 -0.376936 5.22851 -1.09272 -1.68299 13.8556 0.34328 -1.43857 -4.39759 -5.57771 -5.54502 -4.52768 -5.2339 -4.03876 2.41522 5.80603 0.704766 -2.38257 -3.14153 -3.08315 -1.40281 -1.68259 -4.85453 -5.29124 -4.90846 -4.0759 -4.05971 -4.11891 -12.6995 -13.7697 -14.2306 -13.5566 -18.4937 -18.6708 -18.6738 -17.7328 -15.2067 -18.0598 -16.8554 -11.4263 -13.4 -24.6723 -19.4097 -12.0478 -12.9794 -12.916 -25.7489 -14.7729 -15.2801 -18.6416 -20.5276 -15.6892 -18.5889 -18.5687 -19.1787 -14.8434 -14.797 -17.4279 -14.8377 -20.3874 -16.6939 -23.0228 -17.5547 -17.4461 -25.1235 -20.5124 -18.7475 -21.0301 -25.4238 -20.4406 -21.9667 -20.569 -17.4642 -19.1224 -17.2897 -22.097 -15.9808 -19.8504 -17.5481 -22.6462 -14.9767 -20.601 -19.7459 -14.5252 -15.0577 -17.79 -18.8921 -18.7062 -17.6731 -19.9362 -16.9696 -16.0299 -17.3799 -16.7144 -18.1678 -8.83732 -7.24678 -10.459 -9.74154 -10.7188 -15.1776 -14.3242 -12.9707 -13.0044 -13.0224 -20.5026 -17.8898 -18.9372 -23.1931 -20.4501 -18.9199 -20.1536 -20.7776 -21.6055 -22.5374 -20.6483 -21.2037 -20.6371 -20.9383 -20.2607 -18.353 -18.5622 -18.8542 -19.6595 -18.9022 -20.2426 -19.1229 -16.4894 -18.9141 -8.1543 -7.48353 -6.08591 -11.02 -10.4214 -7.05925 -10.3559 -19.6519 -17.5046 -16.757 -17.6812 -17.5917 -14.2916 -16.6161 -13.7779 -16.7896 -14.4991 -16.8092 -14.3036 -2.44226 -3.3688 -4.1378 -4.06707 -6.5334 -5.16341 -4.86043 -4.9158 -2.80081 -0.0608544 -3.23248 3.08889 -4.8728 -12.1819 -1.4492 -8.3007 3.36452 -0.680111 0.502556 -4.37119 -4.56903 -3.8267 -5.62035 -1.77531 -2.65643 2.19489 -7.76131 -3.55295 -3.46294 -3.58639 -3.45897 -2.93027 -2.69994 -0.787531 -1.05398 -2.15019 -2.18384 -2.54717 -2.58755 -2.50057 -0.0239215 -0.653246 -0.227834 -0.615372 -0.644057 -1.52997 -1.55903 -1.15292 -1.11202 -1.13012 -2.40417 -2.0107 -2.82461 -3.12485 -1.06752 -1.48633 -0.60504 -0.206822 -7.08707 -7.43634 -4.8328 -5.59264 -5.09925 -5.48449 -4.55948 -5.16277 -10.3649 -13.3893 -10.4432 -12.203 -8.61393 -8.71072 -7.86184 -7.78355 -8.18445 -9.14044 -7.85423 -8.73283 -7.78379 -8.07422 -8.66678 -7.52902 -7.52981 -7.60697 -7.70089 -7.45212 -7.54582 -7.61316 -7.40349 -7.33124 -7.0742 -7.84787 -7.5296 -7.7 -7.27493 -7.38291 -8.9195 -8.18625 -10.0272 -8.03302 -7.37782 -7.97781 -13.4606 -12.8076 -10.1858 -11.8848 -13.7196 -13.1426 -14.7573 -11.8691 -14.5387 -10.3651 -11.1213 -12.6393 -11.9396 -4.45696 -4.80157 -5.8904 -5.7296 -5.17279 -0.196983 -0.718625 -1.73301 -1.18968 -6.65907 35.9944 36.3665 -19.92 -20.7453 -20.2154 -23.3158 -22.4228 -23.5739 -0.435831 -0.851298 -1.94873 -0.304337 -3.17528 1.23125 1.18159 0.461455 0.975508 1.12929 2.10419 1.711 -2.89484 -3.22756 -6.49846 -4.36888 -9.29804 -9.16851 -7.77846 -9.06989 -7.4198 -2.03717 -1.94429 -1.12991 -2.35818 -2.89814 -2.41964 -2.70275 -2.7959 -1.71567 -1.49535 -0.889296 -1.15 4.40365 4.18277 5.16519 5.88479 4.87693 5.84806 10.246 8.81451 10.059 9.05695 9.29661 12.3088 12.7264 24.1287 22.892 12.3974 15.9108 18.3342 13.6668 10.7747 14.0437 2.18696 24.3958 9.73955 16.9218 8.29881 8.57479 6.72786 5.46524 4.1925 6.64845 3.44778 5.50607 6.37733 1.91402 8.2695 7.58681 7.76606 8.84506 7.9072 8.55506 7.70598 8.62863 7.90991 10.3735 12.8618 11.05 11.38 11.6923 11.4695 13.2131 10.9737 10.473 8.85772 9.27938 20.9121 16.6067 10.7702 10.2579 10.6594 9.32874 11.9047 9.75215 10.0904 -11.5516 -10.805 -11.0517 -11.605 -9.9904 -10.2065 -13.0638 -12.034 -18.03 -10.9066 -12.6996 -11.8878 4.65924 22.1999 -26.3381 -6.78792 -12.0019 -6.43456 2.07713 -13.7502 -8.98568 -14.3048 -11.1993 -14.754 -14.1679 -12.7204 -12.7895 -13.8116 -11.2812 -14.4053 -7.63927 -17.1021 -13.8698 -13.6677 -14.4927 -4.75012 5.09352 7.85685 -2.21883 5.4509 5.84757 2.91491 5.99738 4.09529 1.86093 1.75901 3.81505 3.24028 -7.92754 3.30175 1.19842 3.55303 0.335577 3.82391 -5.80406 -7.49092 -11.8223 -6.19004 -5.40273 -10.0925 -5.44051 -2.25448 -0.756448 -0.431127 -0.414341 -1.98466 -1.35555 -3.08913 -2.5355 -0.842356 0.0164272 0.861712 -2.85782 -11.5708 -10.5846 -5.76259 -8.00395 -15.4309 -13.8124 -14.4448 -14.0986 -16.278 -13.9501 -13.1832 -13.5665 -14.1857 -14.8098 -14.5806 -11.1392 -14.3512 -12.8918 -12.7557 -13.2696 -13.4349 -13.8447 -13.7725 -18.9889 -14.6988 -16.3131 -14.866 -12.9465 -13.6634 -13.0103 -12.3092 -13.9654 -10.9699 -10.2239 -7.13052 -9.41193 -7.68101 -10.3171 -10.4965 -8.53073 -11.575 -10.2077 -10.6273 -10.7341 -9.1381 -9.36488 -7.29247 -8.71788 -10.1317 -8.22123 -11.5083 -14.1891 -10.8308 -10.4839 -12.3684 -13.3036 -9.56033 -6.68322 -5.5609 -8.77246 -7.93248 -6.506 -5.77295 -6.55378 -7.23491 -6.64588 -7.9706 -8.7806 -6.94407 -8.41837 -9.60005 -8.16304 -5.66857 -10.5454 -11.5844 -9.20548 -9.42228 -9.7574 -11.9981 -7.99572 0.0600136 -0.561985 -1.21811 -0.972084 12.0423 -20.5688 10.1783 8.00312 -13.4716 11.9312 10.1076 2.77585 -4.91184 4.20505 -7.33926 5.72067 3.24921 3.09383 6.20003 2.25255 -3.4866 -7.23673 2.92755 -3.87602 6.63954 -0.0378394 5.63792 -9.79845 -4.32451 6.75965 0.614957 -0.143863 -0.786207 -0.553268 -0.833952 -0.65293 -0.291428 -0.492918 -0.891531 -0.949007 -0.89024 -1.0017 -0.722584 -0.669821 -0.63026 -0.711118 -0.744918 -0.689852 -0.66016 -0.353909 -0.536612 -13.2071 -11.5087 -10.3793 -10.1949 -10.2535 -14.7081 -12.8308 -11.1218 -11.0584 -11.4882 -11.3082 -11.7769 -12.4173 -11.9384 -13.064 -13.235 -12.6418 -17.1053 -13.6859 -12.5277 -15.2631 -11.9417 -12.5465 -11.4984 -10.9943 -12.2068 -11.6143 -11.5573 -14.1206 -17.5149 -6.77933 -6.96873 -8.98967 -9.18476 -8.60739 -8.84146 -7.22592 -8.46667 -9.18571 -8.24439 -7.64805 -8.31892 -7.93652 -8.07856 -7.15057 -8.54834 -7.87138 -7.64127 -21.6835 -19.3612 -21.5125 -25.1272 -19.4283 -25.2133 -21.1236 -20.3656 -20.1179 -20.8477 -24.0262 -24.8613 -26.2077 -26.5521 -21.8484 -25.8168 -22.895 -26.2719 15.1155 -9.29652 -41.6154 -28.1592 -23.9295 -27.9571 -27.3113 -26.6327 -26.809 18.8718 -19.3636 -12.3454 -3.85493 -2.84264 -8.95771 -28.648 -21.409 -20.0157 -19.9631 -19.4164 -17.6454 -10.6935 -12.3135 -9.34841 -13.7038 -14.3207 -26.6184 -20.2564 -16.7133 -32.6521 -19.3261 -24.87 -24.9603 -26.1304 -27.7544 -22.5352 -24.1672 -17.2948 -31.1043 -14.2651 -21.9993 -33.8893 -19.5103 -41.4774 -26.6213 -2.21746 51.3454 52.172 -34.9018 -38.0325 -35.7794 -47.0571 -43.2831 -46.5033 -13.1117 19.3335 -11.0203 -0.250359 -14.1387 -14.3774 -12.5149 -13.5721 -15.0617 -15.5137 -13.6748 -11.9126 -13.8583 -14.1221 -12.6387 -16.6853 -21.8382 -18.9036 -18.5664 -16.6728 -9.41274 -12.3375 -13.9444 -13.8916 -17.6023 16.8101 -2.47399 38.4167 -0.481767 13.843 23.2622 -30.1606 7.24363 -4.67508 -11.8555 0.973224 -11.9544 -18.5327 -2.09781 -7.08955 -2.04455 -4.06304 3.12509 -16.3545 -9.30506 -9.03275 -7.65254 -20.4944 -20.107 -17.0356 -20.0342 -13.3476 -9.68217 -11.8068 -9.07816 -14.6951 -17.7749 -20.3552 -19.8094 -14.651 -14.2028 -20.2075 -16.0617 -13.9996 -16.4524 -15.205 -18.4244 -18.1848 -20.6711 -14.6587 -15.1627 -16.413 -17.2659 -19.6554 -16.9586 -15.6116 -21.5277 -19.0961 7.65262 7.45734 8.19374 7.87535 7.53836 7.74879 8.0605 8.86575 8.2436 8.75016 8.27432 9.0259 8.54984 8.42981 -18.0579 -14.4821 -15.4788 -10.8686 -13.5014 -10.8044 -11.9949 -12.6571 -12.9976 -14.0286 -11.5039 8.08107 8.00902 7.94508 8.16572 6.42397 5.37628 4.34404 4.91909 5.71568 6.13104 6.01749 6.33727 7.5114 7.33513 6.52237 4.4912 4.77224 3.21364 5.4344 -2.33321 -3.27981 -1.03239 -0.99012 -2.28589 -2.04027 -14.075 -11.8113 -11.9736 -15.772 -17.6 -15.5585 -19.0012 -13.7555 -12.744 -13.1652 -13.8041 -11.3207 -11.001 -12.2543 -11.6972 -10.7725 -10.1187 -11.3329 -11.7863 -11.3434 -12.6418 -11.3147 -11.0964 -10.6613 -11.1248 -10.9694 -10.3651 -11.1165 -11.8218 -10.8443 -12.3789 -12.4311 -11.957 -12.816 -12.3423 -12.4057 -12.2815 -12.4708 -11.9289 -11.88 -11.5071 -11.0939 -11.9815 -12.3937 -12.3647 -12.4259 -12.3763 -12.3782 -12.5327 -10.1055 -10.9309 -10.9599 -11.7663 -11.4152 -11.4502 -12.5766 -12.2778 -12.8375 -12.8396 -12.7309 -12.7696 -12.8343 -12.8617 -12.9187 -12.7371 -12.6923 -12.6596 -12.365 -12.7116 -12.5195 -12.6961 -12.3699 -12.8105 -11.4001 -11.8604 -10.8864 -10.3643 -10.1495 -10.9628 -10.8403 -10.1997 -11.0903 -10.7871 -10.0992 -11.5232 -11.9295 -11.616 -12.0924 -11.552 -11.9388 -11.6629 -9.10705 -8.97762 -8.23494 -7.81646 -7.66583 -6.86276 -7.51939 -7.89157 -7.39702 -7.50736 -5.68976 -6.03037 -6.01407 -7.457 -7.10969 -7.04053 -7.04162 -7.45043 -7.50961 -8.38748 -9.44215 -9.10312 -8.3166 -9.20763 -8.15175 -8.81847 -8.04391 -9.16821 -7.86805 -7.63239 -7.73621 -7.84983 -7.40734 -7.70205 -8.231 -6.80914 -7.21036 -6.2094 -5.71786 -5.67903 -6.22289 -6.18418 -5.65684 -6.31116 -6.17455 -5.62438 -6.86309 -7.24495 -6.86952 -7.34945 -6.85162 -7.28424 -6.91318 -4.66358 -4.21751 -4.24053 -2.98338 -3.46179 -3.38753 -0.269919 -0.82975 -0.789631 -1.94007 -1.38848 -1.42824 -3.50968 -2.86956 -4.22831 -4.82196 -4.8047 -4.24237 -4.82054 -4.24247 -4.23604 -4.21774 -4.83702 -3.504 -2.90659 -3.50495 -2.94472 -3.47674 -2.89111 -3.56068 -1.38409 -2.06085 -0.808092 -0.314008 -0.856367 -0.249177 -0.835381 -0.866792 -0.242065 -1.43214 -2.02025 -1.41329 -2.09442 -1.43253 -2.06823 -1.49266 -0.821516 -0.228171 -12.2374 -12.4807 -11.5289 -11.3675 -11.4824 -11.2524 -11.427 -11.5608 -11.6155 -11.8386 -11.9026 -12.1237 -11.6501 -12.1174 -11.7961 -11.7337 -11.9394 -10.9358 -10.9075 -11.3836 -11.8103 -11.7178 -11.6834 -12.0084 -11.865 -11.9792 -11.7661 -11.6595 -6.93057 -7.12333 -7.10619 -7.20922 -6.90247 -6.87888 -1.49524 -1.94484 -1.96576 -1.99876 -1.4738 -1.44687 -39.3761 35.8002 -30.2215 -13.8066 -14.3654 -24.2033 -18.6009 -23.8324 -9.64176 -25.9987 -19.5959 -15.7172 -25.2996 -24.0336 -30.0712 -24.6794 -22.2856 -24.458 -38.3433 -38.685 -29.0268 -29.5977 -35.0861 -16.1763 -11.9301 -7.69 -26.9847 -9.11036 -14.6781 -23.1261 -32.8803 -38.3501 -34.8977 -37.2822 -37.4713 -41.036 -29.7798 -54.042 -23.7144 -14.7236 -25.564 -22.7279 -28.6163 -26.1714 -26.0241 -40.637 -20.2517 -29.1825 -34.2566 -36.5787 -35.6885 -35.2719 -33.7587 -38.43 -29.0446 -28.8839 -25.4819 -30.0507 -13.5405 -35.0338 19.0623 -7.68087 -55.7681 -15.5191 -30.9945 -31.7716 -37.8539 -15.3298 -1.97582 1.96947 42.953 -24.591 -16.9066 -24.6688 -47.5983 -47.5904 -35.5111 -44.0875 -30.2548 -26.0639 -27.6146 -23.1836 -33.4767 -35.3322 -31.6788 -37.3311 -35.1683 -32.7632 -33.776 -45.1689 -45.1006 -49.2707 -52.4325 -28.4884 -35.1951 -78.049 -49.8143 -57.5515 -71.268 -46.3754 -42.3085 -67.378 -44.0291 -48.3374 -45.5802 -101.918 -50.6304 -51.2689 -56.0531 -55.4799 -8.05318 96.7361 88.1873 -105.357 -116.338 -103.746 -146.649 -133.607 -145.622 -14.266 43.9047 5.6185 -25.8041 9.20397 -10.3982 -45.0756 -23.0398 -27.0495 -49.7622 -60.6921 -46.6942 -57.2112 -43.2084 -49.7448 -61.7375 -79.1266 -10.1165 -10.929 -11.5724 -26.9908 -28.7086 -32.6151 -32.9085 -18.3214 -23.1209 -19.4937 -26.0878 -15.1786 8.29285 49.0367 22.9954 4.48617 -3.19736 -18.3963 -33.2108 -14.7506 -14.1104 -29.1576 -27.6561 -26.7486 -32.3651 -20.4617 -24.0301 -30.9148 -25.2874 -33.5123 -26.9944 -28.1379 -29.4214 -29.8678 -33.9845 -39.3166 -35.0113 -26.1537 -27.9465 -30.6876 -28.5727 -34.9398 -19.4737 -27.4341 -27.065 -23.6562 -20.1095 -22.2857 -33.0055 -30.271 -39.4786 -46.9097 -28.6608 -24.386 -26.0123 -23.5854 -26.4525 -26.2103 -25.6062 -44.268 -40.3971 -35.7953 -38.6641 -41.6731 7.12897 6.53164 7.65179 7.17295 6.88324 6.98132 7.57331 7.76678 7.87481 7.80398 7.95567 7.88593 7.63465 7.79701 8.31185 7.87782 8.06037 8.20986 8.36428 8.07543 7.87666 8.22225 5.18933 6.67115 6.8655 5.30117 5.13176 4.97688 5.75948 6.85402 4.68002 3.86234 2.85917 2.78246 3.89984 7.37772 6.91269 7.78676 7.72627 7.37491 7.47243 6.96349 7.61381 7.55585 7.50742 7.08298 7.21764 7.50779 7.293 7.76894 7.06238 7.49143 5.55976 3.99366 3.1305 3.07459 3.95345 3.96368 3.18377 4.01398 3.07374 4.03585 5.6438 6.53402 5.19308 6.91689 5.33358 7.49674 5.59882 -1.46499 -1.07765 -1.28564 -1.023 -1.4519 -1.48455 -1.65923 -1.22814 -1.16803 -1.52883 -1.59371 -1.45591 -1.57709 -1.57034 -1.58578 -0.192646 0.281938 1.06429 1.84103 1.81204 0.882867 1.84424 1.05313 1.02439 1.81139 1.00294 0.286447 -0.210523 0.219416 -0.253709 0.30883 -0.218004 0.286684 -0.702359 -1.15369 -1.36952 -1.25515 -1.39045 -1.3999 -1.35476 -1.43004 -1.34346 -1.34297 -1.34749 -1.13788 -0.785116 -1.22442 -0.772738 -1.15644 -0.735118 -1.14175 -2.46731 -2.20196 -2.36402 -2.11719 -2.42568 -2.33424 -2.3706 -2.18002 -2.05811 -2.44162 -2.29348 -2.45339 -2.33312 -2.36566 -2.45217 -1.39778 -0.135754 -0.769188 -1.55232 -1.40035 -1.51131 -1.2579 -1.14765 -0.570118 0.364145 -1.34304 -0.971414 -0.261863 -1.80993 -1.62122 -1.93611 -0.994435 -1.59375 -0.998522 -1.94401 -2.17752 -2.20466 -2.28705 -2.30494 -2.22868 -2.2461 -2.29511 -2.18227 -2.26275 -2.23943 -2.21279 -2.11969 -2.20566 -2.01352 -2.26261 -2.02047 -2.19559 -1.03845 -1.21375 -1.20015 -1.0358 -1.0345 -1.11077 -1.23904 -1.21165 -1.07936 -0.654371 -0.389596 -0.720742 -0.391474 -1.64483 -1.8822 -2.0776 -2.05852 -2.04643 -2.05244 -2.05625 -2.09929 -2.0649 -1.98686 -2.1463 -1.79644 -1.67142 -1.86746 -1.68282 -1.84503 -1.67376 -1.78347 -1.26208 -1.01715 -0.682235 -0.392082 -0.720856 -0.337251 -0.688289 -0.702224 -0.385811 -1.02297 -1.24363 -1.05752 -1.27551 -1.02642 -1.24069 -1.02147 -0.412602 -0.734152 -11.844 -13.453 -13.9509 -12.3419 -7.1289 -6.1506 -7.63685 -6.06007 -7.02757 -3.17592 -1.23494 -11.7518 -11.9495 -12.4152 -12.1161 -15.081 -15.4912 -18.4125 -13.2809 -12.4491 -13.4102 -12.4801 -11.7821 -12.0393 -11.7151 -11.8 -11.8753 -12.0663 -11.9114 -12.0744 -12.6016 -12.8429 -12.6065 -13.2092 -12.9743 -11.3603 -12.0735 -12.1111 -11.3789 -12.4224 -11.7504 -11.8922 -12.5912 -11.6683 -11.854 -10.8628 -10.9653 -10.3112 -10.1445 -11.0209 -10.1127 -10.9983 -11.7244 -12.3404 -11.7794 -12.2213 -11.8027 -12.3113 -11.7452 -6.1326 -6.18346 -5.67674 -5.6136 -6.19868 -5.47311 -6.04356 -7.11092 -6.66619 -8.30479 -9.12878 -9.22429 -8.23768 -7.91691 -9.18808 -7.97577 -7.53532 -7.51976 -7.66634 -7.23271 -7.6914 -6.68821 -7.08284 -7.02841 -6.58854 -6.67201 -7.16937 -0.748431 -0.841489 -0.24009 -0.784374 -0.188171 -0.18526 -0.758114 -1.35926 -2.01481 -1.40854 -1.98459 -1.41397 -1.96854 -1.30932 -72.1561 -69.228 -70.0235 -69.7694 -4.95113 44.9511 -41.6862 -44.297 -16.3297 -125.748 -31.8445 -27.8592 -46.2201 -39.3225 -59.1835 -35.4686 46.8129 -54.1049 -115.633 -102.553 -75.9727 -65.2705 -99.0128 -100.927 -91.4713 -56.751 -55.6659 -115.404 -89.0212 -74.3754 -89.6761 -87.9557 -94.0312 -76.3486 -94.6153 -85.5312 -81.0267 -100.807 -106.485 -118.542 -67.8471 -57.7695 -53.2103 -54.1027 -68.3882 -76.27 -140.451 -70.5444 -78.1314 -102.452 -112.207 -102.698 -93.8929 -89.8095 -123.802 -146.892 -143.141 -150.132 -107.77 -217.88 -109.447 -120.69 -124.12 -119.271 -119.947 -112.754 -85.138 -94.1786 -147.204 -101.108 -290.788 -116.166 -109.734 -105.691 -109.715 -106.265 -109.976 -162.271 -229.696 -228.976 -206.385 -183.147 -107.681 -116.998 -127.219 -124.163 -134.919 -133.309 -136.54 -138.118 -138.393 -132.075 -135.696 -104.307 -102.76 -102.562 -103.257 -105.437 -107.54 -103.854 -107.589 -97.0566 432.873 434.491 -97.2995 435.587 -103.383 436.095 436.735 -108.838 -121.232 -126.461 -113.975 -119.243 -115.398 -132.466 -136.59 -135.931 -134.018 -123.134 -117.401 436.854 -116.996 -125.246 -106.771 -103.416 -109.008 -111.138 -105.833 -105.399 -111.715 434.405 -103.811 -105.071 -104.679 434.689 432.685 431.126 434.251 432.136 434.843 436.166 436.115 437.049 436.525 436.666 436.421 436.172 -99.3261 -102.216 -98.815 -102.301 -100.868 -112.758 -110.331 -108.434 436.006 435.64 436.389 436.479 435.95 -127.101 -123.178 -117.548 -119.636 -123.355 -125.639 -121.457 -141.36 -148.029 -143.594 -139.381 -135.61 -145.989 436.04 -139.636 436.105 436.272 436.979 436.608 437.145 436.76 436.95 437.057 436.753 -137.925 -133.698 -142.851 -139.439 -134.808 -135.08 -143.167 -130.051 -120.575 -128.561 -126.873 436.29 436.643 436.827 436.562 -145.079 -136.696 -139.467 -145.192 -143.22 -138.388 -147.629 -145.634 -145.52 -143.499 -140.979 -150.511 -148.791 -156.414 -148.829 -148.249 -150.445 -154.517 -155.041 -137.451 -142.918 -145.568 -145.424 -151.84 -146.867 -157.209 -159.422 -150.697 -156.179 -155.11 -160.661 -151.489 -160.622 -165.724 -176.221 -162.932 -169.885 -158.709 -165.107 -160.136 -156.012 -153.515 -164.649 -154.082 -162.234 -160.19 435.523 -148.677 -153.431 435.271 434.289 434.323 434.544 -155.966 -157.163 -151.963 -146.826 -150.422 -160.506 -151.99 -164.331 -177.597 -172.764 -168.958 -170.478 -168.777 -167.184 -160.685 -158.695 -157.205 -167.169 434.549 -158.068 -148.564 -154.266 -155.688 -148.444 -162.813 431.555 432.009 -168.017 441.415 -165.705 -161.845 -162.758 -167.546 -112.337 -123.22 -131.017 -110.319 -129.771 -112.76 -106.159 -95.5771 -78.3344 -75.6411 -80.493 -91.2654 -89.0737 -97.1028 -82.2013 -98.1587 -77.1921 -95.9066 -79.9746 -91.9838 -49.5918 -48.5176 -61.174 -58.5889 -61.0244 -49.7435 -50.2593 -50.7324 -63.5151 -56.8213 -62.4547 -52.498 -61.1075 -52.9851 -90.5013 -98.6609 -110.274 -103.091 -68.5625 -102.668 -104.62 -91.5944 -97.3829 -109.45 -104.433 -102.239 -92.2822 -99.8422 -109.771 -140.744 -135.102 -122.491 -101.497 -101.64 -113.846 -118.761 -98.397 -125.495 416.744 429.912 415.963 429.748 415.065 401.165 426.98 421.291 426.633 424.976 428.948 426.496 414.073 414.037 429.156 424.613 424.911 412.446 425.747 427.785 412.166 423.662 428.661 -113.917 -113.312 -114.41 -117.279 -113.048 -113.125 -115.46 -123.156 -133.03 -121.831 -123.74 -124.989 -126.332 -118.07 -116.767 -112.854 -112.39 -116.222 -113.761 -118.7 -115.57 -112.786 -117.485 -113.415 -116.121 -114.863 -113.44 -115.066 -127.167 -120.045 -131.054 -123.594 -127.95 -119.252 -130.575 -136.202 -146.988 -148.546 -138.058 -139.876 -146.159 -133.925 -137.422 -139.86 -146.486 -147.855 -137.549 -140.664 -147.68 -126.73 -123.619 -117.936 -129.481 -119.273 -130.745 -125.273 435.941 436.278 436.671 435.658 435.505 433.809 -106.919 436.181 433.302 436.593 -117.259 -111.074 436.782 437.554 435.006 431.914 432.653 434.31 437.113 436.417 -135.772 436.791 436.52 -141.772 -150.151 -144.338 437.049 436.67 437.474 436.336 437.231 437.289 436.361 436.825 435.488 436.002 435.246 436.4 436.277 435.426 -128.528 -130.457 -133.23 437.31 436.827 -146.906 -148.91 436.214 -143.863 436.554 434.689 435.455 434.935 435.057 433.91 431.848 431.685 433.382 432.117 433.404 433.763 433.618 431.389 431.453 431.781 433.42 433.682 434.567 434.427 434.627 434.731 434.838 434.383 435.484 435.577 435.629 435.325 435.279 435.102 435.215 435.091 435.62 435.55 435.748 435.44 435.245 434.92 435.095 435.095 -173.804 -174.139 -178.433 -175.275 -172.994 -175.329 -176.54 -163.984 -160.025 -155.863 -161.127 -166.206 -156.499 -159.677 -163.215 -163.407 -155.016 -155.575 -161.729 -156.627 -162.4 -168.671 -167.561 -170.971 -164.228 -168.348 -170.836 -164.745 -167.262 -163.514 -171.58 -154.527 -169.316 -158.81 -166.145 -172.754 -170.013 -169.874 -163.812 -159.729 -165.946 -165.131 434.299 433.988 432.523 433.865 434.375 433.306 434.997 434.971 435.479 434.382 434.526 435.553 434.982 -171.104 -176.625 -170.653 -171.987 -171.078 -170.9 -172.613 -163.677 -158.666 -163.553 434.406 432.818 433.336 433.497 433.892 433.672 433.983 -160.87 -168.884 -164.363 -165.663 -166.335 -157.819 -149.234 -142.269 -155.465 -141.893 -153.816 -153.097 -137.486 421.205 431.567 430.834 389.083 350.494 391.424 431.746 -160.4 -172.209 -167.085 -169.22 -162.974 -165.54 -168.529 -150.495 -155.916 -142.672 -138.17 -154.022 -148.67 -139.032 442.016 429.552 433.351 419.259 432.512 423.697 447.868 -167.982 -170.471 -168.98 434.641 434.777 -165.116 434.888 -164.254 434.942 433.656 433.926 432.999 433.501 433.182 432.881 433.767 434.954 -162.856 -160.183 435.254 435.25 -164.563 434.048 -168.348 -169.1 -166.892 433.588 434.043 432.717 433.314 432.725 434.028 432.845 433.413 -164.06 -167.919 -162.904 -147.823 -152.923 -153.476 -134.577 423.17 392.297 430.309 418.478 422.145 411.801 411.836 426.865 458.812 428.204 432.604 431.415 428.003 431.788 -156.986 -148.243 -141.29 -156.409 -151.178 -140.493 -165.965 -158.466 -159.549 427.976 430.885 430.277 431.445 430.327 431.354 418.055 -113.508 -125.248 -110.92 -125.786 -111.065 -111.507 -123.746 426.276 404.311 426.15 -110.011 -109.585 -126.563 -116.8 -111.123 -120.161 -103.734 -81.3417 -65.181 396.393 415.866 -64.6841 -46.2022 -46.4008 -58.245 -48.6947 -54.7113 -38.6346 -27.8391 -31.8607 -37.1845 -33.3538 -42.2318 -49.7803 -51.5958 -41.104 -90.0952 -92.2757 -81.1126 -81.5742 -94.1255 -90.2278 -81.1169 -105.613 -113.366 -125.261 -114.848 -116.772 -115.358 -103.86 399.984 355.492 414.289 262.549 317.408 304.659 -105.635 -110.402 -126.883 -117.897 -118.488 -113.88 -103.918 -86.0624 -77.138 -92.9535 -72.172 -91.9507 -73.2071 -86.7241 -66.1729 371.693 330.851 323.418 -30.5351 -27.6944 -34.1179 -21.8292 -39.6952 330.485 322.023 -41.208 322.668 -36.044 -50.2188 329.187 -41.087 -44.0607 313.689 -15.81 -18.1587 -19.5645 -8.93228 -13.063 -21.6836 -11.749 -3.58357 -15.3772 -5.49023 -10.9293 -7.3723 -2.38179 3.55891 7.98508 5.44537 5.93283 3.63411 6.67379 5.67695 0.91469 0.297369 -0.182964 3.69435 -2.3845 2.59676 2.8617 -145.653 -152.765 -158.744 -138.037 -135.875 -154.067 -155.343 -134.367 -106.014 -115.042 -120.506 -109.024 -102.55 -105.522 -123.259 -124.034 -150.06 -131.856 -132.027 -120.205 -135.401 424.817 429.043 415.097 427.281 424.615 415.182 429.062 424.239 412.402 426.698 427.547 414.102 422.81 428.64 420.064 422.644 420.106 392.989 414.134 405.302 424.357 421.283 407.078 421.898 425.01 405.346 420.904 424.646 -112.777 -113.532 -110.882 -121.432 -108.811 -115.057 -117.304 -127.895 -131.261 -144.521 -146.357 -145.816 -128.585 -131.803 -132.895 -128.549 -131.214 -123.322 -134.353 -126.7 -127.292 -132.669 -120.582 -122.486 -117.423 -125.847 -128.332 -124.478 -138.556 -139.713 -146.949 -131.444 -144.12 -137.732 -131.814 -128.462 -120 -116.845 -117.178 -120.897 -122.372 -122.501 -122.161 -122.877 -125.803 -122.401 -119.904 -121.782 -125.295 -133.703 -134.391 -144.017 -141.209 -131.036 -133.017 -145.126 434.208 433.939 434.557 434.143 434.463 434.234 433.555 432.792 431.572 431.245 433.054 431.65 433.496 434.75 434.792 434.719 434.811 434.511 434.577 434.618 434.435 434.409 434.822 434.402 434.881 433.399 430.08 429.793 433.528 433.263 432.505 429.715 430.25 429.761 433.27 434.367 435.067 434.858 434.675 434.891 434.957 434.94 434.952 434.895 434.616 -144.345 -134.696 -138.095 434.487 435.064 434.803 -147.783 434.747 434.835 434.739 435.074 -126.099 435.316 435.072 435.232 -191.713 -195.246 -189.814 -187.399 -197.491 -194.021 -188.63 -138.146 -179.853 -174.444 -166.241 -162.682 -158.015 -151.457 -168.996 -157.473 -160.045 432.339 -190.194 -180.121 -184.23 432.801 434.087 434.312 434.353 434.177 432.806 433.005 433.845 -170.971 434.084 434.039 433.979 430.95 430.255 428.012 431.949 431.633 428.985 431.465 -193.61 -189.65 -192.124 -224.248 426.908 467.4 423.78 445.16 424.01 426.382 433.345 417.564 420.571 419.27 423.308 422.965 421.916 415.282 -184.401 -173.978 -161.317 -179.639 418.847 429.275 419.324 425.336 425.302 425.239 382.465 -177.242 -178.957 -174.474 -157.252 -160.068 -163.696 433.029 433.013 432.621 432.41 432.554 433.247 432.878 -166.939 -156.536 434.412 434.242 -163.305 433.682 -177.612 -169.492 -173.541 432.722 431.369 432.516 432.021 432.148 432.08 432.713 -188.356 -183.571 -182.202 -173.916 -168.545 -169.911 -174.696 -175.053 -169.45 -176.116 431.477 477.84 414.981 418.482 423.13 452.451 427.33 432.374 430.712 432.36 432.475 432.393 431.755 431.732 -174.521 -183.469 -170.692 -165.348 -178.71 -167.744 -177.523 -180.622 -177.099 -176.619 -180.675 -177.624 431.906 430.197 426.056 431.275 428.275 431.558 432.222 -97.2182 -81.4557 -109.829 -80.1963 -105.95 -77.367 -99.4011 -107.471 -82.7067 -113.444 -148.225 -123.218 -95.5489 -116.943 412.91 399.552 405.377 419.188 405.973 358.547 407.356 420.081 -89.3552 -76.8768 -92.3145 -71.3821 -97.3229 -85.4791 -71.7693 -117.831 -139.563 -154.013 -144.008 -133.117 -144.995 -124.606 389.486 351.945 396.133 -34.7911 330.936 -37.8221 -24.2837 -19.8979 -28.8447 -14.1993 -36.2683 385.892 -38.1117 -110.237 -113.634 -95.0196 -93.0208 -114.142 -105.812 -97.8979 -131.279 -149.115 -152.605 -140.449 -148.255 -137.541 -137.029 401.131 401.266 -90.5107 -86.787 -109.284 -128.981 -140.666 -153.124 -144.091 -146.903 -137.866 -127.582 278.477 339.101 -77.6579 298.77 -41.6965 -28.5422 -38.2728 -34.9755 -50.3364 -69.8763 -62.7693 -56.3044 -47.6013 -55.1999 328.055 -43.8611 -58.2885 8.61079 9.57358 6.29677 7.00733 9.63627 8.57297 5.75798 3.29729 -6.58432 2.81918 -1.85802 0.235022 7.27605 2.40599 5.18832 4.66018 7.40533 4.81896 4.35034 3.01135 2.74233 3.38916 5.25902 3.60073 2.87365 2.60866 -11.1073 -14.5852 -13.925 -5.24885 -19.1033 -6.50019 -8.8211 -4.10459 -0.157366 0.546666 -0.227664 -1.40689 -0.898494 -2.36868 -106.585 -101.49 -104.13 433.222 430.437 430.229 -104.289 433.312 433.983 429.965 431.847 433.818 431.662 433.189 433.883 434.986 -108.603 435.296 -108.383 434.771 435.54 -100.027 -100.851 430.93 -101.975 435.297 435.883 435.201 434.924 434.428 435.92 435.407 -111.049 -112.507 -115.726 -113.594 -131.653 -133.72 -127.765 435.439 435.035 435.556 435.047 435.328 435.687 435.135 435.213 434.562 434.744 435.001 435.154 434.783 434.974 -114.446 -121.55 435.53 435.343 -118.537 -118.603 -130.924 -127.811 -123.235 -123.284 -131.606 435.495 435.66 435.276 435.325 435.687 435.449 435.279 -93.3178 -97.5831 -94.6236 -98.4217 -93.9209 -95.218 434.853 431.638 432.524 434.736 432.071 434.481 434.972 434.911 -92.8597 435.846 -90.2187 435.441 -91.4108 -97.2014 -94.3053 -91.0709 -92.9386 435.894 435.306 435.789 435.448 435.407 -107.623 -107.912 -100.134 -105.439 -104.953 -110.371 -101.637 434.578 435.077 434.836 -106.694 -99.0769 435.239 -104.722 434.987 -116.247 -115.583 -120.919 -125.118 -113.309 -119.099 -122.351 435.639 435.311 435.441 435.196 -158.126 -167.492 -156.451 -161.28 -159.265 -164.43 -153.524 -152.668 -157.177 -143.102 -153.064 433.192 433.033 432.753 432.459 432.927 433.252 434.013 433.765 433.771 434.249 -163.246 -168.105 -167.107 -172.71 -161.048 -167.573 -148.508 -146.535 -139.006 -137.654 -149.179 -141.828 -145.405 432.779 432.911 433.107 -172.553 -165.823 -174.455 -168.719 -173.218 -175.25 -166.522 434.082 431.26 426.006 -175.375 429.243 -167.237 -170.553 -172.836 415.512 -173.792 -172.884 -177.928 -175.37 -176.678 -176.532 -171.703 -166.237 430.78 434.416 -169.212 432.86 -145.238 -153.679 -157.3 -153.834 -151.435 -148.123 -151.025 -139.422 434.032 433.676 -131.978 -142.941 -137.404 -142.902 -149.492 -138.026 -136.143 -143.443 -131.697 -133.303 -130.116 -139.146 -141.645 -144.831 -157.471 432.969 -148.225 -151.68 -162.67 -164.784 -166.087 -168.651 -162.132 -161.437 -156.611 -151.38 -147.94 -151.276 -154.396 -151.958 -154.867 -159.571 -161.571 -166.103 -156.771 -144.875 -154.677 -145.416 -155.705 -146.425 -146.528 -154.871 -119.217 -100.273 -115.483 -104.575 -141.392 -153.672 -155.404 -144.259 -125.219 -114.839 -99.5534 -124.281 -110.737 -129.305 -67.931 -76.8302 -79.7225 -62.5435 -81.6393 -66.2154 -71.912 -90.4662 -82.2145 -75.2736 -87.3272 -75.9246 -71.3949 -146.846 -153.757 -157.329 -142.466 -154.547 -148.45 -141.378 -132.623 -118.296 -129.178 -117.285 -134.38 -117.865 -130.919 -85.1028 -95.4195 -83.3386 -97.496 -81.7911 -96.3342 -86.9904 -90.0953 -92.2869 -90.2588 -89.4796 -90.7784 -90.5638 -93.5279 -90.4149 -88.3893 -89.1595 -90.8998 -90.0902 -93.3467 -100.533 -98.4675 -95.8325 -103.774 -95.9947 -101.216 -129.143 -132.545 -136.829 -132.546 -128.831 -133.231 -132.24 -143.74 -146.88 -144.04 -138.397 -147.98 -139.977 -140.748 -96.8166 -100.026 -95.9444 -104.555 -10.784 -34.6893 -18.2826 35.7342 -44.6908 61.1091 -68.4762 -43.4018 3.9605 -46.7404 29.1265 11.125 -5.37587 -55.182 -52.598 -81.4658 -60.527 -87.346 -65.6691 -63.0898 -41.355 -85.1983 -76.4622 64.7501 -23.5388 -35.2401 -78.6705 -75.9897 -93.6436 -96.9095 -118.647 -125.771 -126.52 -123.373 -122.104 -125.925 -114.624 -103.164 -78.9265 -102.951 -84.7847 -90.7482 -115.722 -112.655 -115.936 -102.778 -117.199 -113.175 -110.651 -138.362 -134.25 -128.465 -133.9 -112.775 -109.866 -110.137 -119.2 -118.524 -113.045 -119.928 -131.095 -129.219 -124.469 7.73299 8.03394 8.4687 8.16149 7.88388 7.29478 7.63631 7.76019 7.42123 7.31685 5.33264 7.28223 7.64576 5.87115 6.58739 5.53987 -1.7905 -1.72901 -1.53091 -1.74604 -1.8662 -1.60267 -1.01742 -1.23801 -1.13958 -1.05572 -1.169 -0.984507 8.27966 4.81346 6.34561 6.73146 8.17555 8.7216 8.26514 8.62164 8.37603 8.20861 8.72137 8.31679 8.36448 8.85031 8.72218 8.18548 8.81969 9.08047 9.19189 9.32148 2.97656 5.27448 7.67568 7.18272 6.40601 6.64725 1.18412 2.23753 6.33961 4.13117 -2.23775 -1.05386 0.0949261 -0.598288 -1.60607 -1.74376 -1.0521 -1.81637 -1.52243 -1.54498 -1.81477 -1.96198 -1.92211 -1.69772 -1.88215 -2.54223 -1.72718 -0.655523 -1.07504 -0.600706 -1.10518 0.617632 -0.605952 0.139702 -0.58672 -1.59891 -1.6484 -1.83399 -1.50562 -1.63997 -1.2426 -1.3425 -1.4769 -1.07434 -0.864621 -2.15277 -0.948774 -1.67877 -0.823109 -1.2886 -1.12934 -0.341967 -0.523655 -0.957047 -0.684735 -12.2009 -11.4022 -11.9615 -13.3782 -15.097 -12.0695 -16.2982 -13.2544 -13.021 -17.0113 -11.6976 -10.7941 -11.2712 -11.0157 -11.8185 -11.1678 -11.2903 -11.3178 -11.2036 -11.14 -10.9159 -11.496 -11.1698 -10.6135 -10.6359 -11.9829 -11.0747 -10.7707 -10.5835 -11.0037 -10.4349 -10.9031 -10.4324 -10.8952 -10.0895 -9.66891 -10.9389 -12.047 -10.4089 -9.91427 -13.8084 -9.22935 -8.07911 -7.89817 -8.54007 -8.33743 -11.8941 -15.693 -8.80899 -9.88514 -9.30417 -9.26518 -9.2584 -10.2503 -9.52074 -10.1509 -12.6054 -12.0797 -11.9331 -12.6208 -12.266 -12.075 -11.9416 -11.5818 -11.6417 -12.2968 -12.2206 -11.9845 -12.3393 -12.5804 -12.9964 -13.3729 -13.2383 -12.884 -12.7 -12.9252 -14.1582 -15.4954 -14.2687 -13.8527 -13.4192 -13.1569 -14.2038 -16.5403 -16.3988 -14.4096 -13.9636 -14.4808 -14.4879 -13.9727 -12.9197 -13.3184 -16.465 -12.7369 -14.6776 -15.2605 -13.4315 -12.2679 -12.5615 -13.0842 -15.3193 -15.886 -18.0327 -18.5223 -15.9052 -15.9884 -17.1293 -17.0733 -14.8342 -16.3145 -15.5855 -18.8588 -21.1102 -19.8026 -20.8757 -19.3717 -19.1502 -20.7334 -17.766 -17.6669 -17.262 -18.0639 -18.2273 -17.2896 -19.7702 -19.1952 -18.5754 -17.1164 -19.9677 -14.8464 -15.7296 -16.4388 -16.2044 -13.7762 -12.7882 -9.93077 -11.5096 -17.1231 -15.7104 -16.4284 -16.7092 -17.1486 -16.1194 -18.1367 -20.3671 -20.0169 -19.8451 -18.9169 -18.9936 -19.7978 -17.3256 -17.1722 -17.6774 -17.0454 -17.4363 -17.9263 -17.5039 -19.2763 -18.1211 -18.1304 -16.9779 -19.2885 -13.2471 -14.1883 -14.4762 -13.1626 -13.433 -14.3723 -12.1783 -9.0152 -9.83826 -12.5816 -12.3512 -9.71361 -12.2061 -11.7472 -10.0776 -9.68933 -11.8941 -11.6373 -9.72048 -13.811 -15.4133 -15.3863 -16.1303 -14.3006 -15.1399 -14.3762 -6.14604 -5.96262 -8.19652 -6.63475 -5.8453 -5.51213 -4.56325 -5.06343 -1.93553 -3.31678 -5.17831 -5.59336 -5.22905 -5.32936 -5.05232 -5.40522 -4.76999 -4.44564 -4.24038 -4.93039 -4.64447 -4.29006 -2.41508 -2.92927 -3.98667 -3.45628 -1.76966 -1.23045 -0.0751041 -0.592666 -2.88812 -2.5853 -2.31852 -2.99693 -2.79191 -2.37855 -3.39337 -3.81315 -3.70876 -3.75449 -3.38136 -3.33964 -1.22744 -1.87482 -1.63539 -1.40895 -1.17925 -1.67639 -0.693044 -0.00673141 -0.123663 -0.683247 -0.64809 -0.176444 -124.83 -126.959 -124.554 -126.232 -127.637 -121.876 -126.222 -129.019 439.626 -133.651 -128.822 -135.531 -130.739 -136.201 -128.026 -133.952 -131.244 -148.489 -140.805 -150.555 -155.707 -146.604 -145.97 -161.996 -148.701 -156.191 -142.073 -152.909 -136.835 -147.115 -146.597 -145.394 -157.082 -153.022 -139.73 -150.101 -133.825 -142.501 -140.921 -135.574 -140.692 -138.284 -137.286 -142.559 438.225 437.37 438.067 438.785 437.491 -113.26 -113.862 -111.576 -111.9 -108.553 -112.692 438.845 438.459 -110.407 437.904 434.839 433.255 436.22 435.134 437.413 436.73 -112.563 -113.985 -110.967 -111.418 437.072 436.283 433.273 434.205 436.249 438.636 438.185 438.554 437.204 438.252 439.163 437.647 437.908 437.91 438.6 437.853 -133.079 -131.772 -136.995 -131.224 -134.456 -134.746 -129.382 -125.863 -117.555 438.705 -124.57 438.478 437.766 437.14 436.959 436.78 437.389 437.401 437.443 -130.034 -117.579 -134.983 -118.672 -129.328 -129.362 -120.855 437.593 436.976 437.493 438.904 437.794 438.342 437.454 439.066 437.837 438.209 439.058 -121.995 436.776 439.074 -127.165 439.282 437.705 436.199 435.077 433.158 435.57 436.982 436.245 438.623 438.507 438.303 438.705 438.322 -163.082 -149.185 -159.615 -156.492 -152.138 438.767 438.429 438.824 438.714 438.62 438.871 -141.452 -145.752 -144.115 438.941 438.412 438.116 437.999 438.013 438.302 -190.899 -184.096 -114.608 -120.58 -144.16 -115.109 -129.698 -176.313 -173.512 -182.282 -159.56 -155.541 -181.689 -174.445 -113.485 -114.233 -120.924 -182.519 -186.395 -189.896 -188.219 -189.273 -187.463 -182.401 -177.943 -146.158 -114.61 -171.028 -116 -120.816 433.878 -123.524 -128.734 -121.299 -126.735 -124.323 -125.167 -126.256 -120.746 -129.789 -124.913 -126.324 -124.774 -120.625 436.006 436.07 434.691 435.436 436.203 435.118 -120.076 -113.958 -111.415 -118.68 -119.673 -120.06 -117.683 436.445 435.639 431.226 432.314 433.755 434.53 433.507 -135.359 -121.912 -135.079 -124.277 -126.946 -133.7 -126.37 -128.196 -128.857 -123.939 -130.912 -137.499 421.125 417.005 -134.286 -124.733 -116.901 -119.318 -121.04 -124.1 -122.478 -119.31 -143.492 -168.438 -156.766 -141.196 430.243 426.976 427.04 -184.137 434.045 -173.736 439.7 -176.488 -175.507 -170.238 -175.475 -183.917 -197.414 434.997 436.805 -197.35 -182.21 -182.311 -180.958 -193.577 -176.36 -189.315 -186.613 438.023 438.085 438.189 437.55 438.561 436.563 431.438 440.301 436.035 432.415 441.143 -195.178 392.909 -195.98 365.624 -174.542 -166.083 -173.786 -151.883 -174.596 -165.85 -162.712 -191.704 431.428 -184.275 446.968 339.477 379.947 429.931 357.026 335.16 291.696 -182.219 -184.927 -183.259 -189.833 -183.895 -179.496 -187.233 -148.806 -161.025 -152.04 468.694 408.543 421.704 703.242 418.043 296.53 441.747 400.53 431.952 408.999 422.927 371.951 422.362 417.335 418.968 422.401 416.852 420.752 419.6 417.82 430.489 355.374 421.088 349.922 401.707 424.526 400.957 385.903 420.18 426.015 399.463 422.435 404.58 350.587 419.428 423.346 415.405 407.98 403.963 419.554 411.744 428.738 422.952 426.285 421.653 426.095 420.09 349.518 365.565 331.707 361.139 -32.0068 398.045 -13.6244 -100.493 -86.792 -95.7126 -82.4345 -101.116 -88.5959 -95.7945 -109.091 -106.849 -121.516 -114.685 -101.038 -131.513 -114.196 -113.411 -127.756 -105.04 -96.9054 -77.2513 -80.0231 -92.2473 -85.1739 -44.2005 -33.6205 -31.8535 -38.6952 -40.9593 -35.0671 -41.4352 -104.864 -91.322 -99.3702 -79.6365 -107.089 -86.1952 -96.0841 -106.428 -101.42 -92.9737 -83.0123 -104.664 -91.8445 417.71 429.633 -117.913 -101.921 -129.035 -118.634 -130.784 -80.4866 -52.9232 -67.9189 -56.958 -60.8071 -55.4307 -62.9932 -52.982 -39.6344 -26.7959 -23.0017 -35.1868 -28.4332 -35.6997 -50.0234 325.961 -57.6634 412.32 -92.6084 412.733 408.913 398.76 357.007 411.891 406.223 394.273 431.874 441.344 436.862 444.361 436.737 436.801 437.489 414.008 403.611 387.347 406.372 393.921 436.815 419.696 -98.826 429.008 420.592 435.611 400.634 396.3 354.624 374.908 403.045 387.28 379.246 426.1 327.938 -52.7533 -58.6821 -48.5945 -48.4749 307.281 326.688 -27.7149 331.993 328.153 325.194 326.349 335.715 325.192 326.077 337.78 328.193 326.334 332.43 326.714 327.007 -39.8454 -30.4535 -24.9041 -38.7226 -34.8019 357.564 340.98 331.959 343.38 325.905 354.528 343.878 333.721 -13.3734 -19.7813 -18.1307 -13.0891 -13.2231 -20.8964 -12.955 -7.4017 -9.5021 -9.45142 -3.99085 -13.4407 -6.41139 -4.48443 -3.76798 -2.09567 -3.71741 -2.78392 -3.55933 -4.7635 333.531 -16.7836 -11.9855 334.359 312.074 315.717 -7.27139 307.828 294.663 305.944 333.173 14.1301 328.319 240.64 -10.178 -11.6847 -17.8755 -15.5188 -15.1068 -11.9225 -10.0483 -5.20226 -7.73525 -8.17217 -4.31164 -4.07266 -5.28547 214.358 -0.16052 3.25542 1.51859 1.81649 -0.466758 1.71568 1.98777 1.57555 2.88091 1.3172 0.912473 -0.407276 1.71429 198.294 305.705 115.947 138.855 -2.06509 -2.32211 -1.17794 -2.06997 -2.38852 -1.00648 -1.12447 -2.18216 -1.5842 -1.77626 -2.06566 437.389 437.353 437.343 437.494 437.411 437.218 436.815 436.753 436.601 436.135 436.612 436.749 436.326 437.353 436.365 437.227 436.963 437.422 437.247 436.573 430.967 432.834 431.545 429.193 432.444 432.789 428.089 -135.681 -140.136 432.968 -143.539 427.136 -139.892 424.928 426.215 424.959 425.772 419.246 423.194 426.813 422.657 425.876 425.103 432.563 433.867 432.899 433.667 433.159 431.723 432.196 427.953 432.536 431.44 427.561 425.565 423.772 472.595 426.456 426.189 431.501 426.191 426.94 433.341 431.463 431.75 435.02 434.045 428.915 472.046 401.669 431.865 329.031 430.155 427.547 394.918 458.006 453.922 432.266 429.391 434.822 434.069 425.914 476.316 412.199 399.078 354.933 415.988 394.305 411.546 436.558 434.004 432.967 432.653 435.304 428.471 434.225 420.873 432.46 368.906 402.226 455.786 426.868 349.771 436.069 432.03 430.868 428.53 435.037 428.962 427.797 409.163 431.75 427.325 429.84 423.614 427.447 420.826 420.92 411.564 420.974 424.926 415.922 426.921 362.289 417.98 406.404 432.74 431.945 469.779 453.365 473.011 417.194 336.671 420.698 457.631 422.144 344.437 403.362 340.796 430.73 421.843 424.833 415.643 421.58 423.489 430.67 428.045 428.516 426.269 427.5 423.931 425.972 342.864 429.296 426.298 428.083 428.88 411.34 409.627 426.444 427.747 431.431 430.659 425.672 429.188 429.92 409.474 393.067 399.318 398.219 462.206 340.386 452.942 404.19 410.659 411.204 414.322 382.127 447.447 384.634 431.839 369.648 421.459 433.458 452.029 375.599 476.572 451.509 424.024 356.952 464.765 428.185 427.788 389.144 379.195 433.684 458.875 430.291 434.282 431.398 424.73 472.391 430.859 445.822 429.863 423.2 435.698 429.799 310.377 314.467 317.059 316.412 -55.8674 -54.7448 -68.0421 -65.4427 -64.0092 -56.9184 -56.66 -40.2917 -34.4779 -43.8433 -29.372 -31.3108 -44.1342 -39.1561 -36.7685 -29.6541 -25.9047 -38.8481 295.271 -49.8738 -64.7071 -51.2326 -59.8422 -52.5549 313.583 -59.8202 -49.9851 317.897 323.143 342.771 331.977 327.355 385.383 399.449 409.704 379.168 404.492 381.086 389.398 397.627 429.211 408.577 416.113 417.627 323.466 331.066 284.557 359.428 357.96 430.958 407.611 222.82 410.061 348.382 372.066 395.713 402.14 372.003 412.71 416.985 373.721 411.674 419.292 409.178 408.897 319.268 329.657 366.985 321.261 -33.1889 -42.9204 -42.0107 320.048 357.216 297.298 327.901 330.403 324.877 321.402 332.852 252.02 -51.3649 -50.6458 366.145 333.687 322.766 328.319 323.667 331.511 323.441 327.642 356.832 322.47 316.168 353.385 302.792 277.44 307.612 313.62 306.613 186.706 403.118 273.908 425.407 332.334 419.406 301.007 390.166 367.162 351.293 329.195 371.689 337.723 414.917 441.07 424.311 464.26 278.614 315.527 303.433 349.765 263.144 333.197 317.45 442.414 431.661 432.026 447.288 436.566 459.653 233.987 305.283 312.312 269.011 261.058 306.739 220.908 311.348 334.59 310.252 280.097 303.017 309.123 325.565 351.11 333.164 324.833 306.272 307.73 335.529 295.443 313.215 276.004 303.455 297.582 262.248 289.909 298.463 269.175 404.408 422.587 387.399 399.067 429.312 393.628 407.978 394.474 413.672 269.792 421.062 375.12 310.313 426.135 419.806 425.124 448.59 415.632 441.863 424.464 384.866 344.628 365.802 386.73 389.414 329.308 389.236 424.495 423.402 412.013 408.23 377.979 417.115 429.863 385.093 374.12 324.263 361.485 377.546 380.749 321.455 415.419 301.82 428.303 422.883 311.817 309.124 310.592 315.776 303.563 308.176 306.728 347.896 299.714 309.758 366.232 324.532 350.696 302.502 308.494 290.322 306.477 302.556 310.306 292.004 -0.949753 -1.80945 -0.854974 -2.04308 -0.7212 1.18066 -1.36864 -1.71936 -3.86487 -1.57041 -3.16829 -2.06629 -0.392078 0.765457 3.60923 2.3893 2.74526 2.07311 3.60168 1.79091 299.625 334.111 324.972 -14.1373 -23.659 -17.381 -20.0476 -14.4294 -16.8252 -10.2827 -7.09593 -10.9801 -5.03621 345.939 338.506 330.773 344.205 344.595 334.964 338.028 -9.23302 -7.46877 -11.3657 -8.19211 -10.1892 -10.8896 -6.5877 331.306 307.556 322.808 322.886 327.073 322.189 360.286 379.405 379.563 366.236 356.704 374.834 358.994 -0.648178 -1.52214 318.253 -0.716614 -47.7023 12.3694 -0.52911 2.80306 390.112 -61.2147 2.86978 2.58815 1.81211 2.62435 309.903 189.328 -294.533 267.549 251.733 338.057 330.637 334.823 328.089 342.332 331.273 362.009 377.424 324.758 362.773 391.73 319.382 295.562 325.488 303.523 320.532 324.158 300.522 362.462 405.501 331.296 352.212 401.633 298.843 -101.852 -208.235 -18.7361 -123.15 -52.4871 4.60494 2.81125 2.97701 6.66422 -53.4121 282.334 358.337 364.571 -66.7065 -0.475326 -79.3663 -155.525 -51.5063 -111.564 -53.7708 -108.655 12.1372 -132.819 -75.7571 -99.3039 253.008 236.596 289.722 -176.629 317.301 162.705 166.336 265.963 291.719 302.739 298.489 298.236 295.742 131.916 219.517 -412.577 295.602 -236.54 257.382 -27.9039 199.654 173.5 258.572 -63.6766 114.121 232.534 35.2579 189.249 -3.76991 -24.7099 12.8755 -6.52642 -14.9983 13.7214 30.2665 -40.2731 -110.476 -40.9207 6.8695 181.719 187.327 292.786 122.904 202.919 146.847 232.254 359.001 -57.4591 340.981 268.874 86.647 14.1596 22.4805 8.03545 425.632 429.522 426.845 446.996 429.856 426.964 383.998 424.957 438.448 429.356 432.078 429.727 405.55 467.529 422.767 405.227 411.137 406.409 411.787 461.046 412.825 424.178 429.227 408.585 371.73 427.513 419.428 393.498 425.481 428.914 432.079 421.934 430.258 427.6 423.97 380.015 453.679 429.789 475.4 428.1 427.447 410.57 429.724 389.824 404.758 403.553 421.422 366.626 458.431 417.281 434.857 425.696 435.607 478.982 450.709 468.633 416.142 385.212 427.492 398.06 411.55 417.673 334.872 443.336 482.757 435.358 433.674 439.454 434.846 485.801 494.89 336.08 310.422 407.011 463.154 323.763 420.523 374.51 429.292 430.048 432.469 416.616 423.446 430.616 456.684 382.036 506.369 398.908 427.194 485.833 378.991 423.428 433.08 434.614 467.835 433.928 439.293 477.655 369.231 430.247 431.172 429.862 419.715 428.752 424.953 459.747 470.78 377.369 413.498 428.87 458.05 415.743 468.999 426.113 426.001 426.481 412.853 436.684 416.414 390.007 429.78 422.967 418.429 425.858 425.614 403.524 428.718 435.306 427.337 429.861 426.678 473.862 431.616 419.775 464.564 363.27 410.446 416.368 434.008 366.429 416.809 422.05 433.13 429.938 451.852 379.548 466.636 430.458 429.524 434.998 431.37 434.858 428.339 433.376 408.482 399.134 287.872 455.594 408.707 321.162 422.974 447.949 436.783 472.247 390.036 430.286 405.897 401.725 414.831 372.131 426.096 455.972 455.074 388.141 407.85 484.112 436.955 424.637 485.536 491.711 443.72 430.616 385 433.613 427.465 431.357 414.945 432.749 420.834 484.6 427.558 418.863 437.031 415.586 439.512 471.168 320.01 327.35 325.78 327.961 322.428 321.424 330.294 338.599 335.793 330.131 332.139 329.168 336.064 326.667 329.434 327.049 325.836 327.501 327.736 324.785 325.055 333.101 324.244 330.217 327.602 325.947 219.495 398.505 345.978 359.687 332.36 209.344 366.147 285.888 309.587 314.43 291.468 307.776 418.608 399.874 428.059 438.157 400.418 314.287 363.297 381.924 331.269 371.206 318.183 327.454 213.629 311.564 334.399 284.815 317.009 282.22 219.958 277.335 301.052 309.864 303.317 267.61 317.649 363.681 330.696 326.025 313.208 317.33 318.977 322.42 310.149 298.347 323.345 319.007 319.313 307.836 309.289 317.711 316.397 360.715 334.451 321.499 325.293 326.275 316.678 308.975 318.922 317.117 310.186 410.365 411.282 420.065 399.239 437.804 423.866 412.251 437.939 408.428 275.284 327.651 303.054 274.687 245.241 320.666 437.369 443.155 417.547 401.745 439.585 438.01 410.69 323.712 259.237 322.772 225.417 319.346 317.611 407.061 318.783 410.265 321.055 325.524 323.4 332.285 318.621 330.512 322.802 301.404 322.697 315.152 304.32 314.311 301.045 300.833 343.779 325.943 351.451 346.393 300.99 277.746 302.476 325.665 299.612 320.225 303.883 316.4 315.429 328.785 324.433 327.747 318.349 324.996 334.777 331.682 315.909 337.453 320.902 339.278 319.228 333.467 311.18 301.662 378.865 323.792 367.581 311.263 367.352 315.531 428.003 409.516 457.869 420.929 453.686 218.932 417.914 327.371 323.62 307.788 316.25 209.327 253.462 297.74 279.462 283.649 257.452 213.719 311.875 288.932 325.964 289.305 196.676 313.502 258.823 294.964 298.26 263.611 287.822 299.988 361.539 370.355 311.893 365.795 313.363 296.564 323.881 320.655 327.468 308.408 265.974 262.352 251.986 225.568 216.003 212.063 424.7 339.417 413.343 384.737 375.107 292.904 420.792 261.498 247.808 279.471 274.027 282.49 261.751 258.199 301.385 325.35 293.578 290.606 318.2 333.566 220.073 267.257 294.073 278.739 286.406 280.503 286.689 267.065 350.833 291.396 346.551 299.193 129.143 246.983 3.97193 230.877 -3.52438 220.595 75.9405 -1.28447 -2.36757 -0.567421 -0.961813 1.44512 1.76077 1.42415 1.73908 18.0955 -98.4163 -83.3747 -62.8724 307.191 -1.26479 0.909922 0.239697 -30.3989 -170.3 -115.755 -73.7195 -161.237 -68.7813 -71.3289 87.5991 16.1115 38.544 362.372 359.237 333.07 402.267 344.885 411.282 356.422 337.915 335.884 334.568 332.947 338.206 333.954 333.994 346.835 266.13 246.274 345.035 369.247 366.417 364.777 396.712 341.798 396.041 271.466 258.877 402.902 341.05 358.509 416.628 314.753 1.74774 2.15877 2.32073 -2.04783 -184.326 3.87306 -26.5586 -12.6811 -0.494682 -17.8844 9.3977 -11.8774 -3.83518 3.72728 358.056 2.68154 3.04519 -2.52933 -238.556 -19.2836 -2.93116 -38.6897 18.6184 14.2076 1.91885 11.5812 7.4901 26.2887 12.0271 269.73 -214.179 233.326 10.6998 135.53 -410.98 163.69 355.469 348.146 376.104 360.317 344.887 372.504 402.453 323.868 356.874 273.489 395.769 296.345 322.995 329.443 332.528 347.699 372.95 287.574 365.072 314.239 271.973 299.404 310.095 276.015 339.994 347.494 277.189 -175.446 250.293 322.962 125.973 -71.5599 -54.1109 -29.8434 -65.0733 -39.4821 -20.81 23.6223 -44.0194 -56.6664 -78.5875 -200.171 -81.4023 -66.6904 -73.3848 -134.161 -52.7842 -7.71091 -87.4568 -3.38004 -193.611 57.4897 -50.7287 -72.6227 122.047 25.0109 50.8138 -119.397 304.264 291.334 373.924 301.63 328.863 214.138 342.705 313.62 309.55 297.324 323.649 283.987 277.704 331.288 262.769 167.615 242.753 353.202 200.747 287.365 295.621 321.997 321.535 344.349 375.864 339.771 321.813 339.363 266.267 296.274 316.47 306.579 237.533 296.176 268.836 326.33 379.268 284.293 333.031 345.143 310.359 299.429 242.028 205.054 330.061 210.865 319.986 310.525 388.414 268.35 266.289 260.418 351.029 4.62982 -5.39202 -25.7407 5.13001 -20.53 -8.1723 10.7305 26.3735 4.8076 8.87505 18.7584 5.64991 50.3442 48.1428 -89.6831 374.921 -35.0509 46.3679 21.1718 -26.0364 -112.107 -14.6077 -36.3339 224.915 138.216 306.919 193.911 290.609 19.8214 10.3006 6.92701 10.7922 10.0639 417.635 427.851 431.373 425.17 429.72 423.997 418.268 467.169 487.229 452.77 425.805 430.772 436.434 418.826 401.523 418.371 423.856 408.209 325.379 410.199 425.906 466.091 452.595 362.379 414.693 399.292 347.826 467.412 404.693 427.905 415.044 421.793 423.816 351.422 422.943 438.358 432.566 427.255 422.312 432.005 422.046 436.019 400.566 452.917 398.447 329.683 328.721 424.497 404.228 428.751 427.649 423.683 429.043 423.883 429.795 429.798 427.141 412.073 419.455 416.325 420.805 421.102 426.565 421.846 416.831 371.385 421.551 417.128 413.972 422.784 427.878 428.173 423.001 430.461 430.001 423.854 429.394 428.729 415.797 409.712 404.264 415.329 453.854 459.43 427.859 428.064 428.625 423.709 429.681 421.924 428.462 460.153 436.085 468.352 436.121 447.212 437.949 481.732 476.04 466.594 427.338 406.375 429.686 482.346 384.952 427.842 417.132 430.646 433.699 419.538 433.654 428.68 478.945 349.47 327.119 421.376 400.076 350.555 475.43 437.284 435.284 425.364 432.633 424.406 437.096 436.181 494.667 416.824 323.596 361.584 468.96 458.726 331.171 453.229 435.514 436.661 456.636 436.034 474.633 451.088 428.048 419.384 429.253 424.479 434.504 415.704 427.886 435.726 353.36 361.057 452.373 410.75 408.875 397.201 395.281 420.125 405.752 355.478 313.794 422.636 367.059 403.254 415.271 426.338 408.139 419.081 421.501 347.758 394.524 330.906 416.709 397.903 452.541 313.321 367.949 422.757 428.455 426.689 427.4 419.069 426.6 434.048 469.359 422.353 473.402 450.914 411.17 427.269 431.193 311.225 355.041 368.489 368.325 305.796 317.875 317.296 317.934 316.945 314.056 313.225 322.11 317.756 320.14 317.904 319.404 313.581 316.433 358.733 375.323 375.871 319.259 313.293 315.459 306.968 311.81 305.073 310.069 296.787 311.115 309.887 316.968 305.283 309.914 325.647 246.63 324.692 248.57 331.361 435.683 419.943 422.741 424.138 422.854 319.928 414.213 322.5 422.853 412.06 422.02 406.325 409.064 417.342 425.114 326.732 269.415 309.183 226.291 278.407 322.058 441.429 413.67 400.058 413.641 438.164 423.379 389.066 408.256 400.657 313.253 355.945 262.018 323.125 313.824 264.259 346.998 321.233 322.353 329.894 326.233 324.529 326.675 323.409 311.494 332.866 305.532 315.066 313.84 321.403 325.848 320.022 329.164 326.631 324.384 330.791 319.26 318.974 412.441 379.395 427.432 335.494 421.792 427.657 328.929 382.73 418.193 377.088 381.384 427.403 375.929 350.077 381.368 447.858 374.983 389.969 387.909 384.85 436.728 400.159 430.231 380.64 363.305 277.831 408.481 430.304 384.09 399.028 328.159 328.058 364.34 202.115 321.428 369.452 232.795 311.502 369.308 328.46 307.852 357.446 325.632 319.79 312.86 321.333 319.825 316.698 339.628 308.248 284.265 296.077 296.538 303.556 319.133 333.384 226.775 271.209 264.513 343.481 322.453 309.268 303.502 298.16 298.874 306.495 325.437 290.786 350.185 240.366 319.714 282.75 368.45 306.258 320.744 349.168 354.017 305.714 276.865 327.062 311.434 288.452 322.93 426.707 440.019 445.478 483.639 438.725 454.008 414.211 395.317 337.391 362.516 368.67 358.211 380.609 436.173 407.641 441.72 435.16 427.7 447.484 397.726 384.389 361.138 401.565 364.047 417.34 316.623 315.954 412.321 336.848 373.146 320.035 315.664 321.806 351.966 353.065 292.986 289.696 238.81 192.901 168.113 317.584 244.435 332.316 335.718 318.297 324.431 344.828 322.42 298.195 256.805 334.493 258.319 297.845 211.918 334.662 329.509 326.765 324.694 319.885 329.874 337.369 311.079 305.331 285.988 309.2 305.787 312.066 294.182 294.909 415.903 318.012 327.911 293.287 205.37 -35.1802 252.531 60.2364 1.6116 3.31751 7.09924 64.2382 2.11955 69.3103 8.4579 301.653 404.474 1.89403 334.35 193.889 221.839 -52.7064 78.8664 224.949 79.805 191.274 -6.73992 -0.517696 5.9314 8.78421 19.767 312.135 400.042 354.18 357.534 307.18 321.374 335.426 338.427 328.318 341.908 329.367 323.962 147.398 183.945 282.462 -218.998 334.005 394.279 363.639 120.834 -115.075 193.081 274.435 257.557 -188.728 106.762 -45.3166 -250.432 -21.96 -20.1272 -216.641 -47.0597 1.73329 1.27473 1.22319 -1.7009 0.250821 -0.49236 28.8171 166.568 -8.92522 52.8536 110.278 -11.3473 1.2186 1.92442 0.369763 34.2608 -63.192 147.865 198.882 -99.5109 62.1045 130.655 -36.526 -13.9455 -2.09434 -21.7333 -20.5177 -23.461 -6.02882 326.677 346.328 359.5 379.214 344.099 326.815 345.711 172.615 348.654 216.118 347.666 173.26 256.054 371.544 196.23 299.465 -14.1167 166.722 293.154 12.763 161.224 225.33 162.168 224.627 124.259 237.125 253.857 220.206 213.991 57.3087 -395.08 252.291 200.373 85.6241 187.748 273.519 251.552 172.787 195.534 284.954 252.582 332.819 388.268 271.615 284.335 245.519 320.818 345.372 230.966 316.052 371.128 291.816 272.984 70.3627 -0.304854 27.0476 0.680696 158.669 37.594 -123.783 64.7467 31.2429 79.4463 145.707 0.393926 21.4108 5.49599 25.4723 3.78422 156.853 221.398 79.006 -65.6363 42.5417 201.416 123.785 291.08 400.419 262.133 285.644 266.345 -0.662639 1.80082 4.47165 14.9282 2.35847 268.139 343.51 371.522 286.387 341.013 199.654 165.537 293.245 274.751 226.485 249.997 237.229 305.127 284.986 326.868 300.702 311.067 333.32 304.754 72.5959 177.314 271.944 -15.4074 -53.8055 249.892 44.9993 316.251 335.457 333.428 337.874 374.593 319.734 331.064 61.1051 -96.0994 279.59 258.361 110.268 -82.6094 273.495 273.57 383.396 315.725 335.368 287.914 -31.2242 -268.319 -14.6486 -33.534 -5.19493 -236.359 78.0118 2.26129 81.8023 -16.7111 -81.135 -9.77571 12.1623 -11.2188 -10.9328 -62.5799 84.9645 235.11 253.521 -1.17435 -12.7587 245.285 113.608 88.3229 -43.2254 233.012 251.992 91.2596 -20.022 255.583 -30.9171 5.67758 -261.716 1.65899 -228.952 -21.9697 -22.6691 -18.5755 -35.5703 3.19451 -18.3481 -19.4087 -49.6476 433.734 434.412 435.317 434.273 434.087 434.621 434.322 433.964 434.654 435.003 434 434.97 434.108 433.787 478.912 452.817 429.448 428.265 438.43 422.97 419.576 384.254 417.674 404.455 417.706 482.355 394.799 415.836 417.063 406.664 408.308 465.145 501.306 400.893 426.162 414.815 418.315 433.265 412.715 457.233 479.948 373.128 493.119 428.669 428.526 420.286 438.621 425.797 421.507 410.979 453.946 363.766 373.951 418.883 411.062 421.021 431.417 431.707 431.681 430.601 431.16 432.116 431.059 422.062 429.468 463.807 434.571 428.407 427.142 471.672 414.213 424.111 413.961 425.836 430.478 410.38 438.938 430.149 427.52 429.447 427.065 407.17 407.819 409.635 414.475 372.401 477.784 438.599 427.771 429.102 426.891 430.244 430.45 428.252 428.854 400.65 392.016 405.451 402.052 472.197 356.779 404.887 465.486 448.655 424.764 355.573 430.689 411.891 418.022 425.435 430.455 429.13 430.808 419.779 428.8 455.66 400.454 391.832 421.899 380.937 376.962 449.889 340.945 412.053 422.304 432.392 425.862 465.294 441.529 392.222 414.655 417.697 403.874 416.132 353.28 421.94 450.454 451.331 430.694 425.528 426.107 419.715 431.895 430.87 447.231 460.952 366.442 374.285 420.265 407.817 401.895 402.964 427.172 427.807 423.931 425.041 422.86 427.956 481.294 418.367 427.637 425.954 421.678 421.518 432.266 403.808 388.225 413.371 421.507 411.155 399.061 472.135 371.448 354.16 444.26 440.635 391.333 398.786 402.664 377.841 420.257 428.783 428.331 423.846 442.605 426.175 394.589 355.677 419.901 414.139 403.861 354.091 413.639 413.39 432.148 424.196 425.592 466.929 452.486 369.769 311.728 308.27 306.363 285.183 318.518 288.642 298.895 325.845 371.367 353.945 324.837 288.981 299.624 309.604 319.113 298.186 299.73 312.349 311.995 294.76 319.016 352.375 322.426 315.614 340.516 321.738 356.817 320.423 270.746 316.816 282.68 292.163 233.413 420.305 314.511 410.523 425.245 422.839 434.234 414.449 -126.642 -114.009 -126.306 408.899 383.558 415.92 401.36 413.535 398.473 409.72 308.312 -111.35 421.064 443.261 431.728 422.49 443.197 411.621 421.993 409.735 379.191 388.917 363.189 395.845 393.656 391.524 299.09 311.967 298.499 306.063 303.724 315.814 299.77 -57.4476 -64.7804 -68.2058 -88.2561 -94.2425 -97.3002 -83.6212 -84.3364 307.049 307.738 300.506 293.073 310.717 -78.4413 -92.9029 -80.6757 298.76 314.031 316.698 340.711 301.601 334.974 302.246 313.829 295.995 304.204 225.812 292.346 284.431 220.459 258.187 393.325 346.769 320.918 248.015 309.935 416.16 175.671 238.649 325.279 267.627 201.933 278.21 280.62 464.003 431.744 421.562 425.339 452.987 437.449 442.74 448.291 416.299 427.941 431.573 436.438 282.992 279.568 421.825 284.141 426.288 232.191 285.719 241.443 403.975 213.719 186.373 255.288 309.576 259.37 277.811 239.845 182.367 268.129 307.295 295.071 294.417 260.198 194.091 268.186 324.832 317.942 287.064 251.855 285.594 259.982 280.416 271.633 278.849 251.335 393.913 415.939 406.261 407.853 389.751 374.876 392.284 413.671 363.665 402.684 398.262 272.004 400.98 405.957 413.167 414.62 414.559 425.181 379.054 409.866 427.59 417.736 422.773 416.885 414.496 422.86 366.823 374.343 347.051 346.038 379.853 367.869 304.53 375.877 380.378 356.955 406.909 358.193 344.417 295.719 292.469 302.824 293.702 291.406 284.828 294.598 298.951 303.229 304.05 299.511 298.488 294.954 292.318 296.812 292.465 294.958 292.521 293.713 295.426 278.652 298.293 316.355 331.147 285.557 294.797 328.109 291.499 357.662 288.632 289.624 288.238 283.392 291.455 -63.323 -34.7581 -1.39173 -2.24151 -2.54835 -2.32405 -0.470576 1.33641 -1.82519 1.35974 -1.28484 -1.26644 1.65657 1.64131 -0.242193 -2.17269 -3.95329 -3.16284 -3.04148 -2.98773 -2.36621 -2.97667 392.944 283.975 283.065 356.244 247.797 -58.1093 3.66059 -11.5868 -22.3544 175.276 10.6817 249.89 174.881 -26.952 -38.6317 -23.5139 -23.2964 -26.8 -36.7542 302.738 -29.4402 296.599 -17.8624 -10.1404 -15.3848 -12.3893 -13.7268 -17.7703 -13.3967 277.746 315.109 284.205 312.808 302.503 274.014 -17.7241 -12.7812 -20.6619 -5.74897 271.055 -1.90034 86.4543 -35.0469 -2.41923 -2.72761 0.748372 0.829481 1.0518 3.95611 4.85502 -0.897679 2.40271 -3.29271 -4.07702 -2.70402 -5.34415 -2.68479 -3.6242 -3.84831 -1.44116 -4.17284 -0.509688 -2.01679 -2.81651 1.30817 3.44817 5.07352 2.26276 2.89945 321.563 394.726 283.506 344.458 397.971 261.799 305.769 135.902 316.667 287.237 323.126 325.239 252.086 328.717 314.389 369.634 404.925 324.866 333.075 417.364 300.262 294.909 299.54 214.088 322.184 293.908 309.868 296.72 154.597 272.577 383.621 225.548 -69.8907 -153.973 -69.4679 -64.1213 -61.9942 24.8173 0.654081 5.5469 15.322 19.3566 6.6798 -44.3872 381.015 -38.5184 -69.799 -35.3442 -9.3792 -68.4296 -49.7131 -49.4356 -5.43694 408.727 287.064 369.346 427.451 -89.4356 -135.315 -123.996 -17.5997 -116.98 -56.8871 -88.3935 -48.1013 -49.8279 2.30585 -37.6411 -42.9092 -42.1722 -0.158921 275.814 104.504 88.0031 -116.642 197.558 171.201 196.351 304.526 313.971 305.578 321.767 304.17 304.427 323.928 270.526 345.913 282.485 209.005 293.525 243.064 261.6 321.088 336.731 387.161 352.365 346.51 347.849 330.051 280.694 269.506 287.218 279.837 290.732 271.835 264.401 313.365 286.014 331.059 370.36 309.331 312.355 339.46 274.499 -40.3991 226.511 274.838 199.952 236.584 300.517 167.535 149.135 -43.3328 14.4566 118.206 30.5578 187.3 -2.02626 13.9736 3.88544 48.3916 38.8657 4.85842 -65.555 374.978 338.776 332.967 253.177 247.151 366.655 204.824 294.572 195.003 1.07199 92.6396 239.862 48.6788 220.379 197.28 135.266 58.6795 108.744 49.0404 6.10171 434.328 435.044 434.169 434.265 434.755 434.561 433.92 434.241 434.678 434.418 434.52 434.092 433.908 -109.982 -104.646 -106.043 434.414 -98.4066 434.843 433.706 433.701 433.475 433.191 433.343 433.809 433.474 435.991 434.602 435.839 434.923 435.236 -83.1776 -90.5437 -84.3854 -89.2793 -87.4746 -82.6156 -85.4362 -82.5992 -84.582 431.835 434.57 -82.4073 -83.8588 -84.2531 -83.5626 -84.3915 433.52 431.132 431.808 430.755 433.519 434.045 435.11 435.183 434.686 435.119 434.744 434.856 -98.8594 -104.315 -101.385 -107.417 -98.9141 -103.008 -106.268 -89.4298 -93.253 -92.6837 -96.3022 -90.837 -93.5347 -98.1022 434.24 433.588 434.148 434.522 432.839 430.258 432.123 433.982 432.209 433.954 433.256 432.867 435.312 434.361 434.074 434.458 433.804 433.504 433.154 433.349 434.128 433.998 433.03 433.485 433.39 434.909 433.769 434.375 433.475 433.794 428.405 432.152 428.514 431.353 -146.932 -137.01 428.135 -139.434 426.902 421.752 304.99 424.396 413.06 350.903 420.933 420.52 -134.545 -127.911 -134.658 -133.91 -131.489 -137.48 -130.88 424.505 428.083 427.204 420.012 427.416 422.317 423.381 425.594 -131.541 411.885 -135.389 419.461 -122.478 431.679 -119.937 -119.583 -110.277 -115.511 -113.581 -117.58 -114.829 -114.27 -120.932 -117.406 -122.812 -122.402 -119.594 -121.338 -120.486 -118.547 -121.144 432.305 -94.3315 -130.811 -125.036 -132.99 -118.83 -123.535 -128.055 -128.762 -173.712 -141.151 -136.523 -122.057 -125.23 -130.8 -126.966 -128.82 -128.691 -117.457 -146.992 -128.259 -135.86 -119.867 -126.045 407.65 430.115 428.101 421.32 460.384 443.639 374.037 401.593 398.968 417.11 405.986 399.025 408.308 407.864 474.018 473.624 424.959 445.93 418.512 429.295 424.009 420.057 375.238 404.467 479.025 429.965 420.881 422.051 465.469 427.387 420.603 427.109 418.828 423.591 432.683 393.712 445.903 471.05 365.123 420.568 424.016 414.286 355.138 428.495 425.631 424.094 424.516 419.152 381.492 431.669 432.658 432.914 432.284 432.1 429.885 430.594 429.351 428.61 429.379 430.402 430.281 430.932 -94.1883 430.495 430.892 427.48 422.188 429.339 427.447 424.721 428.982 427.898 -138.475 -142.825 414.564 402.062 407.366 405.184 418.13 404.761 404.958 426.297 423.28 428.167 425.001 427.624 423.669 423.268 415.438 424.246 403.381 424.657 396.175 429.703 -122.364 429.179 425.783 428.31 420.128 423.83 423.774 427.91 424.216 -89.1734 -102.301 -88.7113 -98.0648 -94.2838 -92.6286 -91.8807 -105.153 -100.497 -94.9502 -103.366 -91.2034 -76.9812 -57.2851 -62.0259 -74.8971 -87.2813 324.119 -99.5639 -78.9813 -78.9052 -69.3402 -58.4893 -66.6984 -82.0557 -73.2175 -113.575 -113.939 -111.736 -107.572 -115.928 -113.225 -108.222 -104.233 -143.091 -96.6291 -123.305 -126.035 -104.533 -108.853 -107.887 -115.628 -64.3206 -119.728 -96.0147 -87.5891 -100.412 -104.858 -93.1336 -102.365 -98.621 -106.279 -95.0221 303.718 305.232 407.507 422.372 257.836 416.467 418.474 287.211 292.654 249.134 294.74 434.629 411.416 412.558 409.189 419.57 418.271 410.626 248.409 304.413 295.706 307.111 250.701 241.947 275.198 436.63 425.227 408.75 417.105 433.106 419.781 419.489 386.604 394.907 297.596 401.822 309.35 319.241 314.838 317.525 317.211 311.405 286.127 296.762 310.526 253.253 328.05 297.869 304.502 301.695 309.328 297.265 300.959 301.91 320.658 325.693 296.057 319.831 336.108 295.195 306.714 304.315 303.481 303.376 303.508 298.094 -107.655 -109.474 404.911 -127.427 -113.254 -119.794 -108.789 -120.738 394.343 400.306 411.004 404.411 400.967 402.43 374.618 358.122 250.346 -113.024 332.818 294.406 409.787 417.978 413.375 423.614 -111.727 -117.295 -115.118 -113.557 -109.088 -120.22 380.43 375.719 373.738 338.545 385.376 375.238 343.475 -89.4998 -99.7375 -91.601 303.569 297.763 292.605 300.979 289.106 -101.712 335.522 -94.8074 -77.3757 -76.9428 -68.8606 -79.4967 -66.5882 -93.2645 -103.587 -98.8365 -105.23 -96.9485 -98.7556 -98.7171 301.011 310.08 305.143 -11.5056 -28.4161 -19.3693 -24.1057 317.345 325.666 328.089 324.277 330.034 326.549 275.574 315.426 382.912 239.356 336.131 273.345 283.951 290.539 285.87 260.518 288.564 296.595 337.395 344.348 383.018 361.403 301.04 -34.8004 328.317 133.201 -192.934 253.974 123.118 230.654 -5.5194 -6.574 -9.96993 -7.95434 -4.60581 -8.76947 1.97566 -0.00442805 -1.78761 0.239869 -93.3146 -119.072 -195.602 -73.9199 -167.385 -111.422 -0.841598 -2.95608 26.8845 -5.90038 -3.18258 -1.97047 -73.0695 188.871 -148.607 48.6764 -2.65409 -4.46306 -0.887983 -1.12363 -3.27942 -3.36894 -0.44769 -41.4697 312.652 296.535 311.264 322.419 -33.5829 -34.8126 -31.5071 -20.1949 -37.0854 -24.7861 -30.8927 -44.7278 -40.8983 -55.4452 -51.8125 -55.6666 -44.6155 -39.9386 -30.1183 311.896 -21.2311 -10.0099 -5.33682 -1.3888 -4.87169 -9.28739 -4.29325 -12.4995 -13.6227 -6.18738 -15.4025 -11.4161 -95.5102 -93.6374 -93.2791 -94.5041 -95.0643 -94.3759 -95.2057 -93.9837 -90.9677 -92.5348 -93.8541 -92.6242 -93.6314 -93.273 430.119 -77.6791 -78.1391 433.019 427.306 -68.1798 433.188 -64.3426 -84.1556 434.339 -81.9814 433.724 -69.9184 -68.7372 -75.1684 -69.9842 -72.4743 -74.1361 -66.6424 -69.9732 434.448 433.611 -67.5535 -91.5246 -93.2076 -92.7 -92.5654 -90.8458 434.127 434.066 434.242 434.327 433.908 434.335 434.259 -87.1944 -83.3635 -89.3876 433.837 -87.2084 434.075 433.952 -89.2339 -73.8156 434.328 -77.8922 434.435 -60.9008 -63.9228 -65.9092 -60.3166 -63.5198 -62.5195 -59.3906 -61.8576 -65.9934 -63.2322 -61.2744 -64.3289 -62.804 -60.845 -70.907 -69.8898 -72.7247 -65.8037 -73.3585 -67.1054 -69.1279 -107.588 -107.532 -104.943 -103.969 -108.319 -108.795 -113.527 -129.841 -113.577 -115.707 -116.422 -116.558 -114.344 -109.429 -106.451 -104.035 -108.595 -100.758 -110.028 -111.432 -93.0239 -88.1927 -92.5172 -92.3926 -91.3614 430.663 431.117 430.785 -102.564 -95.8734 -89.3166 -93.0166 -91.7945 -93.006 -98.3009 -98.7638 -90.7563 -99.1028 -95.1243 -100.641 -97.8923 -102.037 -103.987 -100.315 -101.903 -97.9659 -117.861 -131.173 -118.048 -117.808 -120.538 -117.284 -123.094 -113.291 422.813 -108.424 -111.334 -107.069 -108.79 -104.34 -110.224 -112.889 -106.526 -119.69 -117.038 -118.345 -122.054 -123.074 -117.515 9.74787 10.1676 10.5426 10.2413 10.1486 9.89347 10.29 9.21256 8.54427 8.62756 8.61522 9.11301 9.02825 9.77376 10.222 9.3359 10.251 9.73644 9.23842 9.32716 9.75447 8.89717 9.09026 8.73263 9.39685 9.92036 11.2696 10.4673 10.6204 8.7392 7.0437 8.93673 10.9072 11.2188 11.3296 9.44531 9.93741 10.6478 5.39958 6.78813 1.64545 -0.274467 5.02467 3.57133 4.55242 3.22299 5.57 7.85685 8.24235 4.73788 8.31082 6.16982 3.04868 6.99858 8.12586 6.55544 2.09002 2.59936 1.89567 0.842031 3.41349 2.2272 -0.0556934 -0.560484 0.709752 2.08468 -0.163864 2.78399 -4.3766 -6.32637 -4.73196 -5.14562 -3.68894 -5.48749 -5.46474 -2.69784 -1.20136 -3.05599 -2.05626 -3.70089 -1.93432 0.53934 -3.60066 -0.371574 -1.75734 0.95194 -3.44872 -3.50775 -3.07256 -2.99288 -2.52268 -2.2433 -1.84194 -2.31726 -7.36014 -7.37443 -5.53784 -8.08759 -6.2849 -6.36612 -9.02183 -9.30189 -5.45622 -4.07915 -4.00966 -4.64683 -4.72324 -7.33824 -6.19292 -7.75936 -7.93644 -6.60486 -7.22284 -8.78951 -3.29958 -1.14499 -1.82337 -4.11944 -3.44258 -1.50848 -3.01765 -5.51189 -5.20174 -4.87324 -5.40712 -5.65159 -6.03938 -4.68573 -5.83633 -5.11959 0.280208 1.16058 1.26065 0.228901 -0.911764 -0.102575 -0.319274 0.426809 0.768006 -1.18877 -1.31354 3.08308 4.97473 1.4157 0.418836 -1.03278 -1.19507 -0.640917 -0.509917 -0.922358 -1.03772 -0.914751 -0.938431 -0.916928 -0.659697 -0.692881 -0.675543 -0.627127 -0.725151 -0.502831 -0.483782 -0.271786 -0.440016 -0.362681 -2.56809 -1.73826 1.13386 7.29887 2.98063 -2.92842 -0.845372 -0.599242 14.4301 6.30867 -8.09755 -10.3713 -9.38574 -11.8442 -9.13309 -8.67248 -9.18048 -6.47575 -5.73794 -7.07093 -6.69927 -6.90116 -7.23161 -5.57121 -2.9112 -6.56215 -5.17762 -2.82678 -6.6733 -0.520455 -4.34971 -7.72586 -5.91169 -6.98994 -6.39898 -7.02558 -10.1301 -12.775 -8.46369 -10.9646 -9.6526 -9.05668 -13.7821 -7.401 -6.53701 -7.13064 -7.24071 -7.79167 -6.73849 -7.29982 -9.44438 -11.4486 -9.51422 -4.78307 -3.57782 -4.98628 -5.44466 -4.40921 -5.78205 -5.84933 -6.6289 -5.95188 -6.18555 -5.4534 -6.22542 -10.9235 -19.465 -20.9394 -20.8767 -16.2762 -22.9182 -14.4896 -15.4715 -18.3877 -20.2106 -12.0056 -13.8043 -35.0316 -19.2596 -14.4191 -21.2213 -30.1083 16.7343 -25.6455 -19.9026 -15.7953 -20.8875 -16.1885 -17.108 -26.7074 -14.0345 -7.43863 -24.2329 -23.5247 -18.3487 -24.0887 -23.4255 -22.2957 -22.0639 -25.917 -22.0267 -20.0118 -20.4924 -20.9188 -23.2762 -21.8743 -10.2463 -10.6554 -10.327 -12.5063 -10.0938 -11.1191 -11.3285 -8.46048 -8.66839 -8.79528 -6.34983 -6.68153 -8.61018 -7.08009 -9.32706 -15.4044 -12.3469 -16.9203 -14.2845 -16.46 -13.0856 -16.1039 -10.8117 -12.4435 -16.4965 -17.8936 -16.0696 -17.0149 -17.5731 -17.0282 -16.4689 -13.4258 -11.1083 -14.8957 -13.3657 -16.0064 -11.9198 -14.4558 -17.1424 -19.0159 -17.4663 -14.7049 -18.844 -16.5932 -15.766 -18.2751 -19.7461 -19.8862 -17.7725 -19.9041 -17.7728 -18.5511 -17.4709 -17.1945 -14.4532 -8.61078 -15.5564 -11.3911 -16.1602 -20.4316 -20.7025 -21.8006 -21.6453 -21.1953 -21.173 -22.8089 -23.1427 -21.451 -19.6947 -20.9401 -20.9075 -22.0681 -17.4822 -21.7524 -21.6044 -13.8588 -7.20541 -15.9708 -9.53231 -13.1852 -15.5551 -9.06493 -10.1253 -30.258 -23.4251 -16.7195 -15.9112 -19.443 -17.6028 -15.7365 -16.8187 -19.292 -15.0831 -14.2859 -17.2999 -17.2128 -16.486 -16.5667 -17.9707 -16.5286 -17.0535 -16.091 -17.0823 -15.0034 -14.4567 -16.9499 -19.1012 -17.0992 -17.2244 -18.0387 -16.6915 -17.5422 -14.2455 -15.8001 -15.471 -16.1924 -14.1551 -15.5597 -14.7479 -12.7146 -13.3886 -12.3785 -11.7742 -12.4377 -13.7788 -9.77512 -11.0967 -13.3509 -13.467 -10.2654 -18.3984 -19.0511 -20.0491 -17.0221 -19.9443 -17.7348 -18.0576 -19.0283 -20.4498 -20.9362 -17.7917 -18.6721 -21.4156 -18.2201 -15.8333 -16.1198 -19.6137 -16.3832 -18.0287 -14.7902 -17.4134 -4.2564 -3.77774 -4.01382 -3.93077 -4.23607 -4.15143 -5.20957 -6.0493 -5.85164 -6.08706 -5.46275 -5.58437 -5.51655 -5.40115 -0.966816 -0.172594 -0.823697 -1.61955 -1.25757 -1.21815 -2.48366 -2.43308 -2.75587 -2.58017 -1.27385 -1.60007 -1.61665 -1.18745 -25.4678 -27.7499 -28.1885 -24.4826 -24.3193 -25.1921 -25.2329 -22.9826 -16.8121 -15.8738 -17.1202 -16.7295 -16.7164 -6.53226 -18.1463 31.122 -29.8766 -14.2349 -4.41974 -17.3193 -18.2337 -16.0772 -16.2772 -17.4753 -13.3414 -6.79067 -6.82259 -12.5784 -25.9259 -19.3145 -19.9007 -23.5422 -23.3658 -13.3017 -24.9153 -29.7546 -10.7888 -5.18198 -6.30165 -8.80103 -6.61676 -11.6676 -8.82097 -17.2969 -15.4506 -16.6502 -17.0688 -14.5155 7.93055 -9.88178 -44.8878 -14.6264 -28.9615 -26.7996 -28.8195 -35.2182 -29.8414 -30.8874 -29.1383 -16.4427 -20.4494 -18.6991 -20.1863 -16.9429 -19.9505 -14.8826 -9.98435 -9.73848 -15.4885 -16.7534 -19.4292 -19.7709 -17.2245 -14.2066 -16.8835 -8.58464 -12.7302 -9.44541 -14.7107 -18.2501 -22.628 -23.9562 -23.5256 -23.4914 -22.1456 -25.5462 -23.3942 -23.1652 -25.1028 -23.593 -27.2384 -20.1401 -11.5301 -20.0566 -42.8529 -17.9396 -27.5885 -18.8953 -19.5472 -19.1669 -21.4959 -18.0614 -29.0103 -30.2048 -31.1956 -31.4772 -31.1699 -17.4537 -23.8895 -22.7043 -19.7115 -14.3045 -23.3052 -17.8139 -22.0098 -17.6407 -18.1567 -15.8806 -39.6176 -22.7345 -27.8193 -27.1882 -25.3745 -24.6261 -28.8244 23.4268 -27.0068 -11.6039 -12.772 -22.0932 -45.3791 -15.8118 -18.6257 -18.6816 -11.2807 8.98422 -14.1435 -47.8722 -23.8687 -17.3158 -11.0561 -9.58486 -14.0605 -17.8369 -28.3474 -20.0973 -27.2385 -20.7566 -27.1036 -32.8206 -15.4382 -20.824 -35.5568 -37.7031 -39.3826 -39.5025 -41.8482 -31.285 -32.5731 -38.5971 -32.3408 -37.9902 -48.1317 -49.4463 -45.4838 -43.0292 -43.2967 -45.3876 -45.289 -40.6121 -40.9457 -32.4634 -34.7784 -33.5432 -31.2106 -31.7452 -32.1052 -32.5565 -49.5663 -27.2113 -17.5589 -25.7225 -42.2671 -27.256 -25.7489 -30.4223 -27.9919 -19.1415 -49.9349 -45.9957 -24.259 -30.9528 -30.6856 -28.0873 -29.2755 -32.3883 -33.4506 -29.1366 -21.5209 -33.1313 -29.2179 -27.3915 -35.6669 -47.9509 -45.6532 -51.4462 -46.6005 -46.8704 -41.3906 -34.785 -37.1298 -41.871 -46.9888 -51.4546 -50.323 -48.4377 -49.1848 -42.2962 -41.8801 -40.5408 -43.8442 -150.352 -151.756 -157.557 -153.385 -154.084 -150.934 -150.504 -182.63 -171.919 -179.037 -170.384 -186.204 -186.389 -202.485 -213.231 -215.41 -212.998 -209.366 -205.794 438.782 438.201 438.766 439.023 437.962 439.265 -129.652 436.818 439.524 439.507 439.451 438.958 438.853 439.732 439.427 439.426 -145.206 -133.873 439.389 437.99 436.868 434.809 434.304 435.482 437.292 436.87 438.844 438.855 438.788 438.858 438.798 -198.647 -188.553 -209.44 -192.776 -202.294 438.947 438.876 439.081 438.766 438.69 439.147 -162.91 -169.016 -167.934 -178.242 438.635 438.662 438.424 438.605 438.431 439.242 438.146 438.868 438.096 -144.431 -144.243 -140.714 -140.33 -142.42 -144.528 -157.485 439.924 439.703 -150.777 -151.924 -159.448 -148.322 -157.18 -151.545 -150.534 -158.821 438.883 436.675 433.634 436.476 436.945 438.993 438.907 -192.611 439.043 -188.236 -169.901 -183.609 439.216 439.543 438.541 438.676 438.706 439.69 -217.392 438.488 -211.682 438.782 439.459 439.221 439.946 439.182 439.688 439.179 439.8 438.499 438.731 438.562 438.116 438.647 438.34 438.308 438.417 438.526 438.251 438.28 438.389 438.416 438.124 -172.81 -184.672 -185.612 -173.12 -188.475 -173.02 -173.434 -199.546 436.158 -210.336 436.699 -210.889 -210.463 -215.544 -211.529 -214.835 -213.725 437.098 -205.122 436.936 437.038 -208.57 -210.964 438.02 -214.258 438.227 437.38 -184.361 -171.013 433.697 -172.754 -194.849 437.061 -185.224 436.191 449.513 413.016 420.782 426.264 419.132 -167.032 -158.534 -147.601 -162.236 -147.766 435.339 434.62 435.825 431.703 435.792 429.605 435.869 -205.98 -201.543 -209.617 -198.435 -213.085 -219.009 -210.426 -197.614 -209.598 -218.586 -200.501 438.683 438.356 438.119 438.398 438.163 -212.37 -218.424 438.251 -215.792 437.795 438.02 437.903 437.909 438.211 -169.01 -182.464 -166.6 -173.223 -177.53 -172.579 -187.016 -195.867 -188.632 -183.176 -185.498 -174.864 -152.55 474.601 -129.138 -153.156 -149.446 -137.44 -124.19 -158.275 -147.086 -129.833 -167.692 437.107 444.559 -180.64 437.181 437.173 434.455 437.593 436.705 437.402 436.261 437.355 437.5 437.882 437.903 437.771 437.375 437.347 420.065 432.463 440.498 381.179 457.495 446.678 425.228 407.555 418.376 425.157 431.573 403.287 426.274 413.699 406.762 421.637 418.882 349.649 423.042 343.576 412.318 422.963 429.642 429.337 427.454 417.921 420.525 401.778 411.375 434.952 383.333 427.552 305.873 432.774 429.88 431.697 420.99 423.689 422.535 468.77 436.275 459.641 432.39 449.82 436.059 415.691 -90.8335 -97.3136 -83.0935 -71.9912 -96.6736 -74.8702 375.04 420.088 441.09 422.844 -101.065 -94.1673 -121.332 -101.477 -116.827 -92.1149 -82.3528 -65.8368 -45.0198 -47.4307 -61.8472 -51.343 -49.1557 -54.3491 -46.0686 -29.2961 -18.5487 -13.9213 -22.0628 -18.7707 -28.7132 -40.7417 294.116 -49.9193 -36.7405 -84.3955 -98.388 -83.3997 -103.254 -79.9576 -83.476 -85.3674 -105.125 -94.3161 -87.593 -101.723 -82.0853 -70.8593 -52.9649 -59.5896 -71.2429 -60.6764 -64.602 -22.6701 -18.3637 -18.635 -20.1621 -22.4638 -20.4957 -20.8508 -27.7537 -36.1464 -39.7428 -24.9458 -40.8235 -27.3603 -26.3067 345.021 -69.3316 -53.1234 350.633 211.79 405.903 418.532 374.112 408.367 414.544 419.017 421.344 417.441 420.691 407.021 338.283 -81.8551 407.431 389.328 285.569 320.165 255.14 295.433 255.954 333.728 231.422 380.646 413.677 384.085 405.644 376.869 387.822 -31.2402 -36.046 -32.2875 -27.4121 301.71 299.373 230.839 296.833 -14.6145 -20.7832 294.234 311.089 323.931 293.694 296.389 -24.7798 -16.9174 -17.9091 -22.3787 -22.9975 309.154 295.172 281.841 327.84 259.003 297.199 -4.60552 -9.41129 -7.9117 -3.90463 -5.22394 -9.34628 -4.20296 1.83938 -1.3299 1.25602 3.02097 -0.473676 1.44349 3.30277 316.608 -2.84246 313.319 296.359 -4.41109 1.98632 0.943052 333.946 334.605 372.701 295.012 354.795 318.79 -1.86763 -6.34863 -8.10891 -8.38604 -5.95544 -3.89334 -2.36184 1.7206 0.458508 3.26503 323.322 4.04855 4.5665 3.74233 3.25699 5.43921 3.73426 2.31639 3.392 1.70781 2.23746 3.34238 2.11948 307.042 2.6057 2.72193 2.6152 1.65942 3.47662 4.30676 4.95006 4.14451 5.32342 3.91579 5.67357 3.87004 376.609 439.375 458.737 237.402 440.791 445.414 474.711 426.965 434.395 436.801 437.334 438.498 437.272 437.096 630.525 360.765 137.399 325.972 369.525 380.166 385.996 456.872 598.827 402.705 685.409 405.239 431.906 416.602 449.939 435.878 430.281 409.154 442.284 468.272 482.354 435.919 437.28 436.943 437.043 436.154 441.212 490.451 414.008 438.999 349.764 408.074 270.448 559.832 439.549 420.832 434.038 440.704 433.569 488.468 418.205 456.5 391.702 386.862 376.791 373.238 395.864 225.763 464.229 416.18 354.77 368.72 381.423 162.622 442.357 200.243 366.651 414.138 378.293 399.787 260.303 419.585 368.005 603.777 418.9 664.03 439.445 396.693 415.169 432.352 247.421 569.176 328.224 333.209 391.365 404.921 380.856 593.377 421.289 436.238 564.221 435.298 409.637 412.304 417.297 443.095 456.74 437.302 564.146 430.239 470.371 422.635 392.55 413.958 367.585 484.133 337.032 347.824 444.424 429.409 433.565 433.444 421.522 436.365 407.085 409.929 409.8 397.262 432.058 345.854 380.649 443.959 448.893 429.277 429.84 435.577 431.46 427.082 435.425 262.791 433.187 588.678 586.477 418.451 420.888 386.88 472.829 433.624 435.674 424.604 437.435 431.478 367.422 417.125 372.941 438.883 433.106 441.426 430.14 434.588 553.961 597.461 337.239 194.24 426.12 356.629 458.243 420.152 501.243 541.026 416.489 430.027 394.16 325.603 413.621 430.085 436.8 440.965 445.652 141.032 476.543 408.05 435.137 372.808 405.453 538.704 459.579 240.532 369.83 427.799 405.826 432.487 440.843 433.704 459.844 460.683 434.937 413.332 429.901 432.837 436.985 411.822 292.084 349.028 297.971 296.273 -43.5532 300.146 313.863 315.377 293.625 305.57 303.379 303.492 311.806 310.336 300.6 338.054 370.886 274.161 364.382 307.591 294.638 289.614 287.881 295.223 297.529 298.021 310.573 302.015 309.744 299.849 298.219 418.902 423.522 430.54 432.725 423.709 324.417 416.294 433.266 320.565 456.645 436.334 438.001 467.142 437.526 439.785 297.432 338.278 315.213 327.612 297.307 315.357 357.902 404.925 439.005 301.894 436.632 189.182 301.237 308.236 305.479 310.018 302.27 314.312 335.549 317.559 314.994 285.295 324.321 294.366 224.173 324.349 311.46 260.154 299.89 306.71 305.809 300.544 304.347 306.977 408.487 426.323 283.479 429.104 440.183 420.714 445.46 394.246 433.061 430.161 234.604 259.511 295.261 296.761 230.789 228.677 272.607 449.986 443.28 397.984 454.765 438.592 440.42 286.702 273.748 232.375 285.865 441.722 425.892 391.27 390.731 436.394 412.693 434.599 279.035 272.326 256.369 282.342 279.638 287.587 298.196 287.092 286.779 286.956 286.045 271.713 295.869 284.187 284.232 283.01 279.24 248.146 249.544 307.744 208.902 273.788 283.753 179.248 359.919 373.993 339.22 384.36 338.494 398.925 345.038 294.748 428.273 432.943 405.388 179.208 423.318 410.845 381.074 436.275 365.735 427.815 411.96 351.364 324.614 327.649 352.225 297.143 366.996 394.863 395.6 436.599 362.297 419.496 317.094 423.172 320.406 314.242 264.011 305.786 283.367 340.194 248.691 385.8 419.006 398.763 282.154 294.786 326.537 288.275 284.835 304.256 284.147 307.659 309.493 299.921 306.879 279.673 276.586 265.236 266.299 318.92 235.223 274.681 273.31 264.743 311.953 279.802 270.966 285.375 292.071 307.299 248.487 306.317 281.323 284.428 305.219 266.152 293.33 315.427 272.566 292.618 273.946 280.788 287.243 283.896 273.653 353.45 229.179 237.229 298.665 192.225 2.06569 1.02793 0.924896 0.210946 1.94968 1.74043 1.09922 2.11242 1.05696 1.20233 0.407466 -1.00685 -0.0564903 0.111523 0.690905 97.162 0.439567 1.1687 0.947198 329.52 379.46 326.364 373.525 342.728 385.242 329.258 312.645 316.005 328.053 323.827 331.266 305.817 319.894 260.349 275.693 -193.644 -251.245 170.503 171.763 274.08 345.367 387.851 274.464 292.76 323.303 316.936 299.742 374.197 329.44 351.974 237.906 309.53 381.034 312.981 279.603 312.752 -110.385 374.606 355.717 -74.4558 -84.2282 -30.9303 -18.7037 -69.4628 -35.3729 -103.719 -140.974 -63.0602 -88.551 -137.732 -127.756 -144.339 -117.882 -144.776 -99.179 -68.7026 -73.0072 -8.52459 -9.58031 8.18026 -26.8331 22.7091 5.34571 222.182 18.0026 260.331 -139.204 213.669 -364.508 191.231 295.196 308.153 289.013 286.754 263.53 299.979 295.566 279.297 255.499 269.104 284.559 285.598 275.99 281.64 224.395 -181.728 202.845 144.611 276.469 265.241 386.04 310.669 320.079 250.348 -92.616 -91.7966 -2.37497 -100.788 -110.839 -94.3328 -123.21 -80.3112 -84.0845 -71.826 -89.2246 -9.19479 -145.779 -95.7816 -141.557 -113.038 -123.88 -75.0871 -89.6755 -63.9657 -3.171 -4.2902 -85.9172 306.901 319.801 345.175 311.167 311.944 364.242 315.986 282.291 286.895 233.843 297.713 280.013 268.089 293.056 250.545 168.988 266.962 -106.909 191.618 284.153 177.733 302.413 302.632 315.645 282.605 300.738 315.2 283.229 301.968 371.317 331.392 323.383 329.011 304.869 317.157 238.999 -179.84 276.671 -297.467 201.616 40.2264 280.582 160.829 304.12 99.509 196.915 125.371 180.734 15.4392 2.95709 -26.4229 4.41146 21.8284 23.8714 -1.31876 15.162 -78.4542 -15.9104 -46.984 1.2342 148.531 109.795 228.333 -3.74276 162.258 54.5619 356.524 -71.0491 299.19 252.114 84.5701 -51.1033 -84.3566 -100.655 17.5106 52.8139 -40.0059 -3.78096 3.6685 9.56393 57.8682 4.53964 357.687 450.284 423.416 407.961 417.819 546.985 382.714 386.668 384.285 429.738 408.998 420.049 416.359 369.388 396.592 386.959 407.137 355.598 462.08 444.145 353.158 475.697 423.071 403.149 435.969 405.2 506.149 632.914 471.205 465.973 426.165 359.675 435.282 420.534 428.73 248.58 406.789 392.339 467.13 398.977 204.058 156.047 261.895 313.242 417.763 575.175 476.188 417.753 427.825 352.705 442.758 452.711 430.079 436.1 423.026 448.046 431.428 546.318 476.855 414.483 423.353 449.271 415.111 421.504 448.226 434.605 431.843 462.033 427.823 466.053 394.587 368.155 738.805 85.1173 529.114 441.814 392.931 430.531 432.902 419.594 430.772 430.391 237.474 429.957 456.69 379.354 362.824 383.176 541.11 508.253 396.706 415.692 432.723 435.954 378.057 427 372.114 471.444 408.437 433.818 405.214 430.462 168.83 449.693 152.658 394.882 516.86 415.524 412.723 192.118 545.802 423.944 441.435 322.056 446.594 445.358 484.812 418.866 484.445 317.512 579.756 406.935 347.242 694.808 351.09 -215.234 555.058 430.001 609.517 428.962 449.608 420.656 427.334 404.233 386.701 445.113 392.851 402.48 329.24 416.38 580.222 423.342 424.321 551.119 421.711 444.095 413.543 443.375 370.586 430.554 413.091 423.095 305.48 444.078 717.905 768.741 436.874 419.023 520.041 445.107 692.837 -23.0054 768.022 869.21 971.085 792.859 639.576 673.61 462.419 475.323 429.325 408.915 440.567 528.035 287.556 361.257 297.966 363.342 554.604 377.198 381.777 373.149 459.804 430.234 362.788 397.192 410.339 439.359 -431.858 261.831 387.644 625.976 391.335 -285.848 408.432 -24.0737 317.181 286.74 303.448 306.046 318.379 326.886 354.513 321.373 321.938 312.484 386.034 229.072 230.966 258.22 378.07 370.819 326.859 336.147 300.636 308.76 314.249 327.068 313.81 296.031 312.925 261.996 315.064 314.393 312.115 321.397 305.44 318.943 316.786 308.539 350.731 331.123 248.047 310.048 376.338 339.115 327.628 293.926 249.561 268.076 277.824 284.83 244.591 423.271 404.432 463.413 415.909 434.587 423.407 414.794 408.589 362.64 371.226 378.73 414.719 416.12 415.582 388.834 446.836 410.641 406.849 447.589 288.625 272.133 443.766 294.992 424.725 418.763 393.978 416.139 444.844 415.835 266.969 434.749 389.015 247.545 281.143 263.653 268.469 272.575 236.204 257.017 284.97 221.437 259.104 274.747 209.234 285.055 287.082 291.424 298.403 286.689 295.636 280.112 275.124 274.596 247.792 242.08 150.591 325.678 298.274 142.119 322.87 247.571 125.978 274.536 283.347 262.052 292.211 260.783 292.484 242.425 274.969 402.345 351.176 375.16 385.639 417.875 415.476 427.625 413.123 415.939 413.113 253.523 277.294 283.629 247.481 256.104 241.424 264.335 437.949 450.562 402.965 435.575 544.129 465.473 400.429 285.698 268.505 393.647 246.092 274.973 411.001 331.901 378.596 380.831 389.365 405.402 398.879 180.991 251.967 366.957 286.534 299.719 286.78 287.537 294.307 285.681 281.284 199.782 239.007 218.926 313.87 285.997 300.863 249.179 274.973 273.707 256.688 268.334 213.728 227.035 162.504 253.521 248.793 295.2 273.947 306.772 295.721 276.469 302.636 290.887 301.741 264.969 283.886 236.447 268.976 272.631 280.612 246.035 220.028 291.963 283.173 352.554 236.762 314.894 271.747 480.827 393.179 403.214 437.903 403.191 435.952 461.962 148.752 429.366 377.896 427.004 429.247 344.495 330.599 154.788 414.543 380.772 423.746 254.569 270.342 434.275 246.074 243.857 366.546 403.418 360.61 205.89 386.029 274.667 283.125 274.878 348.253 184.312 174.267 198.624 -249.004 149.332 280.014 216.289 253.145 258.263 272.093 310.742 258.374 245.034 241.97 265.085 311.987 294.027 204.924 318.455 296.26 301.603 331.661 261.574 255.008 252.437 233.642 272.424 249.181 274.209 274.568 277.195 274.8 254.801 274.758 86.4091 182.828 245.419 123.607 187.524 196.097 314.201 106.569 219.226 255.756 108.37 12.1791 2.11994 -16.2697 -0.268813 8.13424 23.2182 -4.25128 65.1554 -68.4046 8.91169 -29.2539 -0.295416 360.122 383.601 -49.4006 320.62 111.321 -97.3479 -45.4728 -76.2994 93.8438 18.9114 -14.7095 1.54742 2.74606 16.3849 0.399511 297.22 333.935 287.194 317.042 318.192 336.188 298.899 339.529 301.508 354.371 328.941 432.84 259.607 191.476 283.978 259.386 -132.421 -61.6975 222.29 256.203 -363.568 279.957 377.708 194.805 263.378 193.848 298.467 329.853 274.9 345.346 313.132 293.268 232.842 337.033 249.425 339.04 291.484 295.24 238.122 357.317 279.151 311.63 -321.691 268.562 273.368 291.688 -1.75665 -11.1941 11.9177 -31.4406 -82.8838 -46.4963 -1.19153 -51.3413 -9.55756 -31.728 -28.0459 173.468 -13.4468 86.4161 55.2649 -109.367 103.93 -15.1478 -8.26432 -41.8705 -9.50316 -25.9444 -71.7385 -89.6325 -178.753 -61.34 -37.8069 -132.236 -22.4639 -40.9906 -15.2226 2.44622 -56.8046 -5.54075 9.07108 -7.71503 15.213 3.09744 -2.17198 -3.5488 0.837235 -14.3079 269.328 -384.861 159.337 -267.98 204.515 227.557 302.327 340.289 313.196 314.683 299.637 313.276 318.646 312.665 215.414 293.242 261.188 248.751 298.7 327.158 267.284 287.077 321.898 261.236 161.042 379.462 510.828 323.844 332.805 360.947 277.523 328.319 373.338 290.66 286.591 281.795 191.393 378.551 311.5 395.571 275.744 272.485 242.736 275.965 334.247 238.44 -20.0914 -83.8373 2.85801 118.967 -9.14413 -44.972 28.4524 -11.409 3.61905 -39.3074 -89.5307 0.584084 -58.0082 -15.624 29.1745 273.356 242.055 -27.8622 -21.906 -42.2328 -25.3588 -24.9349 -56.7663 10.7998 -98.3753 -74.2861 -14.8402 -64.689 28.6478 46.8865 -18.7924 11.5433 11.9006 -31.8227 -69.1999 -12.9611 246.631 259.534 290.398 46.6154 292.472 232.898 237.587 580.473 29.5132 228.785 237.244 419.523 271.762 292.482 168.775 168.146 -277.915 575.995 180.977 388.334 246.927 288.938 276.902 277.158 292.022 270.281 291.479 280.689 217.605 166.135 371.945 235.794 514.357 221.356 198.456 269.455 304.36 280.992 333.914 291.466 301.246 270.498 261.961 -103.644 250.381 259.408 131.853 253.951 280.844 107.67 74.1164 235.928 -0.235784 -63.7302 -2.31773 -15.0494 5.62452 -15.2328 -13.8591 -6.9808 -2.34812 -6.78417 240.21 25.6842 11.4953 -3.25348 23.9511 293.197 12.2105 30.3001 -15.6373 151.41 15.4652 14.6818 5.16745 -1.61789 20.5707 -0.81713 390.394 426.718 426.18 461.504 417.821 439.117 415.559 404.412 306.617 423.111 424.378 420.512 400.279 410.992 361.442 388.337 494.552 372.671 450.383 412.358 385.652 532.739 403.352 367.559 401.608 445.715 655.109 460.565 469.985 447.052 429.084 436.756 433.261 428.664 411.678 198.897 421.405 429.476 463.398 396.226 489.281 419.16 368.831 393.617 413.765 437.803 482.728 379.53 391.676 398.788 421.109 503.711 413.952 399.255 422.82 192.239 425.369 436.081 450.214 421.525 375.587 454.482 439.605 428.382 416.929 433.158 427.405 456.626 429.921 422.535 413.259 425.189 427.621 664.063 405.575 426.994 436.679 416.168 422.031 366.964 425.943 413.502 383.595 426.645 429.869 660.913 417.778 447.68 425.817 426.708 440.84 426.838 426.786 425.654 550.281 426.401 439.316 423.728 424.29 415.238 392.763 435.547 292.367 433.24 414.845 428.945 512.805 425.718 405.301 303.402 616.344 334.158 451.775 284.446 404.987 428.223 203.913 434.982 398.679 654.098 455.41 484.482 468.642 219.548 786.394 566.779 449.709 436.259 454.192 412.628 310.987 452.16 440.553 535.232 171.483 654.786 399.691 518.586 317.272 645.297 533.911 421.431 442.654 212.024 440.115 83.2386 474.837 -84.4909 471.493 427.006 448.794 254.795 470.386 404.647 317.892 452.922 445.384 576.558 191.359 449.526 424.488 653.056 451.457 368.003 340.664 399.169 454.023 442.344 328.606 450.669 431.981 431.488 416.72 432.274 429.463 606.135 655.563 558.321 394.628 430.83 668.087 536.486 360.036 425.59 506.871 437.584 462.049 405.457 447.515 500.387 440.103 421.686 438.962 449 431.492 442.773 293.039 306.445 287.084 289.402 298.906 297.474 309.625 358.172 317.116 298.867 291.305 270.119 323.74 297.977 256.689 260.13 219.03 282.336 305.074 156.387 255.779 241.795 298.32 273.848 251.965 296.1 318.972 308.79 319.184 305.006 294.378 315.76 294.356 242.617 313.294 266.257 239.531 284.049 304.853 283.425 223.007 281.222 310.958 393.655 335.664 383.894 331.831 305.373 226.795 422.514 333.72 392.506 346.444 202.42 428.344 253.538 278.9 300.006 252.241 283.279 441.635 440.929 477.061 454.035 441.839 309.2 359.211 378.924 309.095 380.319 297.747 325.094 255.1 359.396 393.137 424.034 353.149 428.146 263.019 255.941 286.979 289.499 283.111 235.795 353.876 319.95 300.823 328.655 346.388 348.91 356.085 351.138 298.334 365.835 346.975 284.032 261.187 274.561 276.712 264.334 267.949 470.633 -184.669 407.824 507.34 329.583 336.449 333.596 289.074 334.899 394.097 271.766 286.204 363.143 323.829 396.336 413.602 258.34 269.068 256.29 265.772 255.306 221.421 293.843 207.87 257.053 253.389 281.665 385.462 368.027 433.089 198.916 400.854 390.645 292.167 396.318 334.599 394.532 303.266 413.949 413.5 466.007 386.241 513.044 287.615 322.011 357.716 286.922 430.851 326.13 441.496 448.914 416.951 421.585 478.968 210.087 289.698 282.3 289.026 246.034 224.378 264.889 212.664 235.843 255.299 -308.091 225.059 193.692 199.384 250.652 242.519 237.76 265.663 224.454 250.174 235.475 232.289 230.603 187.106 233.219 246.717 253.07 264.474 258.844 232.871 226.031 210.796 245.098 241.12 241.025 214.606 258.152 272.887 320.323 392.377 341.585 300.544 384.571 339.326 449.322 440.999 467.663 437.005 456.77 409.288 446.716 424.602 429.545 436.115 423.394 423.816 231.047 310.46 370.901 391.203 422.068 415.529 406.914 311.612 406.353 233.822 281.063 245.113 209.673 285.255 334.651 400.814 383.9 330.636 364.453 325.889 299.835 272.93 335.486 299.648 337.017 72.5372 395.352 334.77 387.719 322.896 324.593 332.292 154.289 267.858 221.783 320.914 316.141 319.202 278.833 224.515 276.774 274.211 337.486 233.759 260.552 326.032 242.673 165.113 266.552 244.477 341.594 331.069 3.82289 -80.2594 223.199 4.35894 -61.2003 259.979 335.733 -23.2955 215.387 8.81719 -15.071 -16.177 -4.92805 -11.7516 -8.89589 22.5041 -0.689007 -2.13194 15.808 -1.62766 20.2763 -84.7905 -84.2509 -56.2251 -58.1634 -44.8089 164.646 134.676 102.567 291.383 121.223 13.1323 1.97069 -65.1837 3.28131 -8.18413 16.7151 -4.47611 229.706 273.873 -21.0101 285.798 63.7917 215.774 249.389 222.617 304.489 281.886 299.435 280.359 223.821 280.881 315.626 343.18 321.612 290.533 320.408 299.386 212.121 215.002 697.939 445.545 252.477 411.874 254.867 240.42 -369.012 226.202 234.785 284.065 286.11 95.0512 225.187 656.571 264.913 -113.566 292.041 201.075 217.102 258.101 230.244 283.5 267.903 272.081 260.516 228.917 100.022 -84.1935 57.0006 6.89299 -20.5386 83.2424 115.556 2.94983 0.562245 19.0992 -35.4344 2.00588 59.5609 362.325 302.957 62.1721 25.4671 -0.0499688 45.8473 4.61922 47.1166 25.9812 1.95221 130.803 -65.905 107.505 239.911 205.927 12.2337 112.48 275.997 104.83 263.359 67.8855 -17.2272 -0.0192361 -23.5522 -0.230919 239.423 253.919 258.459 249.957 249.193 213.688 234.397 496.016 225.212 289.386 337.133 726.051 193.842 257.72 277.038 241.997 264.809 260.089 247.771 272.993 267.734 294.498 255.719 252.97 228.932 248.065 235.191 237.863 28.557 239.166 177.227 258.699 -67.7417 288.813 177.864 -162.833 228.209 314.129 96.0726 150.638 268.762 260.839 249.119 254.772 272.013 236.953 231.797 215.839 -7.59999 176.336 -19.881 24.4015 -4.58551 -32.371 -2.55964 -109.986 -12.6866 -48.4924 -6.87968 30.0487 121.064 55.6802 -22.3399 -40.7152 128.907 20.4129 261.929 223.903 -7.89407 -18.0092 -10.9301 -47.5427 -0.673103 -16.245 -18.7191 230.355 257.855 267.896 222.702 243.649 169.534 360.462 707.912 503.945 469.825 241.465 289.196 292.238 372.338 319.908 512.718 -48.6495 527.823 346.76 250.075 249.993 234.978 208.434 248.091 236.927 228.898 429.628 44.2668 301.576 32.76 187.578 489.783 233.874 168.326 255.659 248.026 216.368 195.539 241.476 234.986 274.647 243.109 283.985 235.164 240.747 -102.896 -79.3519 33.0481 -172.209 -57.9478 5.62264 -3.58658 18.7619 -24.0507 244.909 231.398 117.507 54.5685 254.357 179.403 -59.7266 -2.91526 -53.1807 -8.04768 436.067 420.853 437.29 201.111 432.08 400.831 500.738 429.767 421.293 434.462 426.89 432.851 433.244 418.01 421.959 377.984 447.594 419.592 391.042 477.391 401.542 421.568 432.208 451.554 381.738 402.261 436.339 440.678 431.686 426.88 438.672 450.862 433.977 456.1 414.918 427.043 439.79 423.587 233.627 434.141 402.577 477.916 443.256 429.233 444.275 411.22 424.795 433.786 619.102 532.382 439.858 418.007 428.965 489.493 432.986 426.681 674.26 360.063 99.8167 348.229 312.554 365.376 394.6 190.41 418.519 409.818 421.727 358.974 389.8 401.955 519.008 455.497 455.294 407.097 393.921 713.942 120.379 517.157 439.891 464.742 444.216 426.639 503.871 431.184 794.657 414.716 392.01 420.048 424.118 433.285 405.953 162.016 420.706 428.736 478.381 389.58 387.262 445.442 564.01 438.701 200.935 388.408 546.178 435.31 171.439 445.413 434.182 437.595 379.04 419.805 439.121 384.577 473.835 421.24 438.052 437.328 419.233 444.754 453.882 615.385 445.197 448.712 454.899 440.247 469.008 528.748 488.897 444.055 269.027 433.05 404.167 483.08 445.807 701.84 424.432 430.16 428.067 650.018 334.8 668.034 512.189 406.148 432.922 300.34 436.858 245.413 446.223 453.851 421.788 434.065 426.008 449.597 417.774 434.385 425.787 428.955 451.16 403.186 354.96 424.731 556.763 496.36 487.667 470.401 486.438 568.495 606.514 186.381 415.274 504.467 441.39 438.648 428.081 472.195 447.222 473.489 434.298 546.382 357.492 458.991 427.416 429.006 425.533 426.329 435.808 445.504 418.094 429.484 455.125 348.434 433.753 448.126 434.849 441.451 427.339 400.578 272.33 305.137 316.917 312.858 281.657 298.378 277.411 284.741 296.512 288.081 286.375 337.344 332.335 343.202 104.368 326.911 327.486 306.278 264.428 162.06 278.768 491 210.813 272.579 296.889 301.153 329.904 309.625 304.275 279.002 263.47 257.15 258.449 272.193 263.933 331.781 335.576 97.7239 51.3952 335.264 265.643 370.399 300.673 381.496 353.718 391.635 438.7 479.544 439.023 435.658 410.916 407.483 350.419 296.082 373.549 283.815 257.813 372.559 352.541 290.681 393.688 411.338 347.681 259.272 376.658 312.667 408.276 378.427 407.524 438.995 384.724 432.148 377.7 358.429 327.058 321.427 264.148 240.218 220.43 337.324 298.233 268.484 287.063 282.873 296.858 268.339 285.292 280.986 220.294 218.943 209.769 245.097 216.479 209.105 238.62 323.637 340.549 266.942 326.999 334.809 362.534 354.893 443.449 365.578 238.544 372.9 276.886 290.407 274.775 302.349 281.614 273.442 296.64 205.933 185.568 301.93 -29.3955 164.293 231.792 5.72097 312.374 250.839 341.51 327.12 329.385 363.823 265.558 361.96 342.097 423.397 432.387 404.269 381.1 410.605 389.504 349.989 351.175 349.421 389.264 356.524 462.014 456.598 459.421 480.991 443.23 459.436 365.892 377.76 412.853 356.843 409.99 374.805 477.611 442.872 442.265 417.202 463.585 330.197 363.106 355.239 348.88 356.507 232.46 308.562 360.42 251.631 364.82 200.561 170.549 146.895 220.364 205.9 193.725 187.806 262.677 271.748 248.124 199.736 254.553 240.609 247.145 196.278 249.153 250.091 226.992 251.614 218.05 333.231 253.482 329.079 277.707 273.972 205.781 257.456 380.265 358.914 361.515 270.626 305.111 397.298 340.492 332.165 350.865 344.12 404.805 426.395 426.382 431.515 425.922 446.096 432.908 459.637 442.266 443.898 292.042 322.544 307.195 426.455 398.627 432.736 385.118 348.96 389.652 247.486 271.982 195.276 253.237 315.024 269.674 319.999 160.656 262.633 252.053 238.432 255.223 182.18 358.707 424.383 328.12 248.164 272.333 238.606 125.434 341.601 311.803 271.852 85.9077 270.052 239.572 235.645 -37.1043 345.261 254.65 264.52 -1.93521 239.598 307.116 215.038 233.736 171.877 191.499 211.347 100.799 40.1249 47.7982 -131.939 30.4125 128.461 17.898 4.05819 25.2444 10.2307 22.8889 2.24574 16.667 -1.23961 -8.02278 -2.94126 293.838 318.152 275.338 273.89 284.757 59.4455 14.315 -56.2138 45.9877 25.5279 6.13285 118.537 37.1004 4.16008 1.40762 21.4902 -3.62599 217.521 317.777 261.61 270.293 263.31 309.021 219.133 239.218 177.822 201.282 302.175 298.442 151.867 252.086 67.4908 258.156 260.381 133.637 97.0668 271.989 215.786 227.942 256.518 194.886 -50.572 219.884 237.867 306.255 306.198 294.343 283.286 590.821 241.837 539.915 232.2 266.546 375.08 239.959 158.829 158.069 250.931 235.305 239.763 146.071 214.848 51.1278 -44.1955 59.1011 35.4505 -136.889 63.9621 -6.20952 -2.4933 -16.1836 11.63 7.90679 187.195 233.541 23.5212 247.236 150.261 72.7877 240.568 1.63555 -0.564292 -2.9719 -5.63333 -0.446541 35.6761 9.43014 -252.219 11.3219 38.5021 -195.725 177.485 104.495 239.418 89.2138 148.921 15.8594 17.2978 -14.3682 6.40708 10.9884 242.573 200.245 249.166 240.195 250.655 207.034 249.868 251.423 38.387 238.406 232.836 277.917 219.744 200.352 250.742 256.07 245.681 260.022 247.185 254.088 141.07 210.281 224.716 197.334 119.692 169.523 252.034 256.373 252.563 265.275 241.581 253.407 238.27 242.678 249.535 262.715 227.423 231.378 234.316 234.025 191.186 254.299 228.572 201.024 264.024 205.979 188.501 232.236 196.34 199.48 -54.5238 -0.692763 -5.55947 206.859 200.022 194.645 209.786 -27.5948 -33.2135 -26.7053 158.16 53.7259 -31.1 77.7266 134.011 213.068 229.772 202.117 209.648 211.427 -52.0218 -0.417146 -42.9937 -14.7262 182.601 231.833 239.179 241.159 217.294 184.119 265.979 247.443 245.602 248.867 219.595 419.955 210.922 110.248 407.822 290.739 255.332 246.362 188.436 216.503 233.799 234.218 214.605 183.752 235.557 230.024 215.678 243.779 258.057 425.081 234.488 263.031 344.678 224.763 187.876 224.696 236.65 223.082 194.753 226.87 214.973 241.93 239.576 233.186 221.323 89.7882 18.7658 54.5198 84.2058 64.6226 58.0935 -31.7386 6.70931 0.55321 -106.089 -6.91667 -22.949 -4.41669 137.212 226.82 131.321 150.66 142.829 238.734 152.033 137.171 128.115 70.1371 60.9253 -14.7801 28.566 61.2575 -2.96435 413.569 426.199 419.089 445.922 423.431 419.857 386.359 413.338 421.643 428.29 431.098 423.355 430.844 443.063 400.627 388.955 372.566 437.021 549.783 403.545 290.056 430.836 340.21 677.233 687.051 433.006 464.123 480.722 424.178 428.492 429.629 423.294 424.973 441.157 450.289 354.511 408.838 433.945 517.319 416.628 478.604 298.41 420.55 367.851 354.892 481.675 490.08 416.492 211.257 449.372 427.565 438.986 427.188 381.836 429.468 427.968 450.735 387.902 419.237 329.72 450.812 506.07 381.123 406.774 420.416 431.171 433.611 458.374 421.645 463.549 368.549 403.164 407.564 493.002 284.764 474.367 403.733 325.316 431.63 461.589 426.731 428.375 438.012 412.881 387.779 488.603 363.452 641.009 473.325 418.546 361.425 420.137 432.285 432.599 460.333 424.849 448.052 457.61 485.075 435.485 478.649 421.493 472.247 434.068 418.042 198.445 754.793 505.294 493.7 470.414 410.718 524.469 464.017 333.311 434.952 434.146 431.789 439.691 437.605 688.87 498.822 651.233 299.339 584.561 439.354 455.925 423.361 427.81 424.721 434.296 336.581 422.906 430.441 375.322 696.857 354.875 396.13 425.095 488.171 327.377 515.989 404.772 430.888 405.755 435.255 270.189 423.088 471.755 218.004 417.973 424.158 387.904 413.154 436.195 709.237 403.269 291.186 579.919 345.727 412.756 558.363 413.171 439.624 439.713 401.114 374.08 444.018 480.208 356.774 409.484 422.832 443.59 430.16 390.441 460.279 388.162 625.057 486.738 424.084 141.351 364.037 380.922 454.135 432.741 401.792 403.94 465.666 432.905 207.779 404.86 424.761 430.985 439.371 406.153 428.701 455.118 252.142 261.907 248.672 265.719 255.596 242.513 219.08 253.014 253.169 241.92 242.468 227.022 270.154 291.03 285.577 303.355 230.093 298.511 142.358 125.489 168.344 227.502 133.244 260.25 273.61 257.162 280.022 266.697 255.552 271.26 217.243 250.06 238.114 208.099 244.125 215.176 224.147 249.06 278.083 240.346 293.244 266.852 287.923 257.217 179.192 319.058 184.324 244.468 246.974 278.339 192.807 134.784 401.42 395.784 402.136 335.429 287.459 418.312 225.74 223.337 305.306 284.248 225.187 270.976 438.332 421.9 419.054 419.416 421.723 412.872 427.621 247.181 349.884 356.968 338.474 329.235 303.075 297.79 365.938 404.001 232.384 390.428 463.855 259.455 277.179 390.78 274.032 299.864 257.175 276.714 248.883 285.77 321.726 288.843 171.43 310.666 270.16 320.025 267.058 256.212 294.592 276.761 276.336 273.336 265.092 148.218 261.956 256.527 258.642 202.066 253.956 222.751 278.571 310.761 275.818 287.755 306.236 294.782 302.173 390.822 302.421 280.636 258.961 261.02 271.806 275.02 271.118 255.376 265.805 179.062 282.441 219.117 196.035 283.679 181.085 182.457 365.883 387.952 418.052 401.156 387.288 405.194 382.306 316.915 388.899 441.521 427.51 437.321 421.339 478.665 341.305 402.143 409.416 102.98 370.694 401.438 250.43 399.76 96.4193 228.066 225.503 216.145 233.561 181.079 146.417 206.812 163.399 156.607 189.32 215.861 207.056 208.564 213.316 223.84 117.387 221.513 223.762 231.039 212.784 214.427 234.484 236.722 197.846 87.8372 209.347 234.665 220.473 208.02 221.854 214.507 230.998 238.157 235.266 179.563 224.254 177.749 370.797 205.029 268.382 242.778 253.576 416.491 354.752 426.002 420.529 408.149 427.37 357.437 402.452 332.274 430.27 422.06 411.608 448.358 265.982 307.842 83.857 306.772 315.705 349.705 231.077 195.356 424.661 400.98 422.127 411.78 502.515 443.168 331.707 379.13 329.914 388.438 313.153 321.995 240.447 118.627 234.758 261.213 251.352 235.486 233.752 245.294 189.477 251.242 200.962 295.057 185.043 -41.4217 308.231 178.378 190.222 264.177 242.068 173.576 251.136 281.577 294.645 272.768 96.6578 284.382 268.079 311.452 324.657 252.168 270.524 281.454 260.157 268.099 283.085 238.063 266.725 284.027 274.185 251.156 240.137 265.92 15.4302 56.5803 -83.3238 163.629 -194.199 147.847 20.3697 -22.7777 363.641 -28.8942 -44.4812 -73.1263 12.4607 -56.5786 53.4998 -93.8073 -29.1223 1.01545 -2.86675 -73.2189 -3.28881 -34.6417 -44.6598 -13.0264 -5.89904 -197.95 48.1173 -259.179 -51.0084 95.9011 -2.73923 -82.927 303.358 9.23811 5.43083 -35.9466 -17.5106 1.78425 -3.13704 313.443 270.914 270.821 351.584 241.594 341.508 283.926 280.301 268.687 235.297 318.914 256.862 233.427 232.814 351.649 317.386 362.814 366.201 337.099 339.834 370.952 314.7 380.667 259.377 287.975 303.181 290.884 251.284 335.983 257.868 231.654 319.543 288.352 318.567 338.276 330.162 465.594 255.236 325.803 397.37 157.415 305.198 341.507 370.095 281.263 320.961 383.667 323.04 265.51 227.091 324.917 6.51502 12.6667 -0.209639 4.51814 6.61837 2.47271 -49.9616 -75.3584 351.795 -124.294 -100.615 -22.3499 -56.2749 -45.0482 -27.3768 -19.3238 -57.3764 -2.30773 233.652 173.586 290.67 234.525 210.772 318.056 -28.1416 -130.311 -61.2079 8.17682 -81.0052 12.081 -0.713905 2.36581 -0.283569 7.65043 -8.92618 2.54753 189.373 -146.604 179.218 203.138 235.696 96.8889 228.213 198.608 106.389 274.046 202.746 223.195 241.126 166.208 247.079 239.197 234.171 220.099 240.604 410.594 -71.535 140.369 182.965 295.579 279.007 231.374 257.423 249.561 261.079 256.45 237.313 206.998 622.192 345.243 154.92 247.906 222.014 203.537 184.428 244.477 194.825 236.289 210.922 139.803 226.526 97.2364 -1.55421 176.748 169.145 79.5491 83.2681 -6.46162 -108.287 -7.74443 -46.5953 -60.0963 3.68355 38.9481 -43.3526 -42.771 60.8138 11.4678 19.3141 -15.2689 38.0907 -94.8272 33.3177 28.5684 -8.33112 -23.0823 52.3286 217.165 142.704 55.3009 -0.108577 2.49184 -13.6317 -1.12593 296.083 284.055 338.576 261.643 293.382 267.908 332.04 261.818 223.615 347.566 268.175 304.854 269.247 283.149 239.643 271.724 229.623 242.613 255.105 208.904 286.235 286.144 216.567 74.1732 84.261 -179.897 246.426 220.497 228.671 417.603 266.232 207.397 482.319 119.762 198.052 329.387 267.253 -171.435 326.57 197.726 265.078 259.202 216.895 227.576 231.274 -5.70804 220.818 12.0354 -7.65194 -29.6351 -0.32686 -90.0509 -82.6808 -48.2083 -26.4046 -44.2712 -23.4389 -7.10118 -73.1758 9.82475 106.844 17.5211 -45.3775 131.062 60.4481 -27.9955 -125.277 -38.9072 3.31829 -57.0764 -168.148 102.118 -27.3728 -92.6897 -76.5457 3.16456 -82.8777 -70.9835 -28.4779 -7.14388 -14.9582 -9.84758 -15.5276 -19.6545 -59.2257 425.034 432.991 425.517 414.103 427.141 478.208 417.728 383.676 482.699 427.108 450.567 424.063 381.954 413.004 381.44 374.95 406.849 393.605 351.435 514.037 259.941 424.294 400.022 479.601 407.19 395.004 415.846 405.225 462.836 422.186 430.356 449.422 430.235 430.97 417.287 420.869 423.985 428.836 343.854 425.634 393.241 411.325 339.791 387.064 403.774 400.872 379.274 372.858 398.685 347.982 400.969 352.503 408.906 388.349 373.858 415.245 537.78 341.158 364.477 277.505 407.303 395.08 413.504 415.416 433.607 415.396 425.886 470.452 570.683 427.331 369.507 363.025 423.791 399.008 336.416 544.754 415.228 428.313 420.054 420.192 429.87 426.704 448.685 453.052 444.462 430.903 390.297 428.525 461.473 437.986 391.303 389.675 715.285 419.235 446.491 268.887 325.306 419.694 429.391 439.485 429.247 433.485 462.615 444.034 314.421 600.093 570.251 597.175 64.6666 501.781 414.599 461.956 513.511 425.062 447.261 418.724 400.769 417.653 440.413 458.13 400.149 399.479 406.805 383.633 593.402 328.852 237.309 426.549 440.77 400.809 431.03 410.357 430.479 407.018 425.34 422.919 433.481 444.387 446.079 407.383 399.083 412.728 392.805 371.507 287.547 426.068 354.114 367.744 226.717 780.817 298.737 22.1371 468.729 342.637 450.517 388.934 392.688 395.171 436.646 301.644 285.068 151.203 538.111 374.666 653.389 404.295 525.729 454.303 579.821 412.24 606.84 404.026 430.209 416.463 453.91 558.298 413.925 572.927 409.26 405.287 424.372 402.875 310.854 301.171 279.302 255.766 287.792 282.431 299.945 289.829 293.016 294.477 282.149 310.674 169.434 306.992 360.686 293.993 277.81 348.95 295.171 339.162 300.719 299.593 298.256 305.838 284.459 291.926 281.911 311.041 323.748 239.073 250.866 357.605 284.527 388.643 205.994 288.311 193.163 276.511 198.542 258.958 379.671 366.967 400.725 235.67 249.587 417.434 225.871 263.897 297.061 284.506 249.54 267.822 462.03 434.727 442.052 428.891 446.655 436.523 445.863 424.957 441.812 429.727 487.194 274.561 280.398 400.054 278.061 292.152 294.16 285.347 283.734 290.781 288.031 275.613 308.625 292.171 282.767 267.341 276.434 290.124 272.568 312.267 310.319 301.086 289.92 287.65 277.205 284.122 283.714 284.706 277.557 284.417 159.738 275.785 181.248 253.31 170.593 226.22 348.905 339.386 364.955 263.321 245.266 359.161 127.287 95.9143 255.148 203.337 111.391 203.085 436.928 376.559 354.835 405.078 434.761 401.782 436.857 140.766 316.237 319.865 318.232 241.505 237.361 263.414 416.049 396.63 412.908 508.517 237.116 384.929 458.551 235.028 458.304 207.964 259.196 227.772 238.652 225.792 213.044 347.629 331.792 328.73 269.914 346.864 327.993 212.119 178.906 184.101 234.93 212.845 212.546 194.722 50.0254 244.276 267.856 262.513 236.165 224.58 192.373 288.545 293.19 294.447 300.417 244.107 191.772 235.567 343.63 89.0294 210.899 188.535 240.322 234.719 238.597 219.499 238.844 218.462 407.63 269.467 256.852 466.484 399.032 417.907 416.492 418.089 411.989 416.494 396.482 414.91 436.969 379.928 403.762 412.919 406.772 374.28 354.18 250.498 340.632 327.796 349.257 323.02 290.618 419.803 495.535 433.269 372.582 413.052 458.898 452.415 382.596 392.054 355.238 396.015 359.096 363.252 393.597 351.742 354.997 442.754 391.093 328.3 264.48 240.839 269.726 254.975 265.825 254.958 266.416 284.301 291.676 279.492 280.609 275.616 275.445 285.615 273.937 314.519 317.547 279.387 187.008 294.117 277.445 270.545 251.927 289.917 274.315 277.489 275.575 271.313 278.112 266.961 263.039 251.9 254.452 266.363 234.377 365.999 333.153 251.31 43.0214 -89.3025 -103.571 -139.583 5.54982 -13.1276 -65.9964 -15.1396 89.5441 -2.80981 54.7509 8.72786 1.03027 -29.4653 198.653 335.643 92.2976 211.534 211.838 135.603 290.628 126.132 217.303 -109.858 51.4979 77.0899 -22.1702 187.075 9.1358 -2.14918 0.193292 -7.71848 9.16412 3.4046 323.7 398.81 330.277 338.336 374.54 272.489 309.674 -31.45 348.957 370.862 345.486 360.546 340.655 351.669 365.926 262.522 -327.618 111.513 129.958 196.718 -80.7949 -141.44 -90.4717 -74.0359 -95.1258 -21.6511 0.0704517 -7.49755 -7.96382 -19.2501 -15.6261 -18.8826 -99.1426 50.9961 -151.674 -66.4477 -73.86 388.345 -97.8198 -186.561 3.69421 -100.78 324.198 362.373 328.583 366.145 338.121 381.421 292.998 283.126 192.406 252.591 251.663 282.117 272.164 229.682 298.827 229.312 274.41 338.839 247.569 279.099 360.232 277.373 269.544 276.361 269.166 274.522 269.941 271.141 305.856 288.683 188.608 156.752 297.551 245.732 318.709 287.178 296.387 252.602 280.311 301.872 245.953 287.878 285.653 242.348 261.736 376.238 247.818 -43.5012 350.461 -84.8555 -65.7464 9.48415 0.406791 -0.514805 7.60099 0.479507 -22.4589 248.984 343.214 -15.7057 -30.5464 -109.771 -30.0294 -98.3099 -55.8501 -56.868 -10.8258 281.818 128.379 202.468 206.363 225.526 334.039 -31.9634 -126.16 -129.479 -20.2935 -97.3777 -51.6931 -17.9982 -29.8574 -1.23214 -11.5118 14.1805 -36.55 0.728504 63.71 302.235 208.729 249.9 -280.472 197.292 335.659 275.914 254.748 274.992 254.285 237.041 285.184 335.28 318.604 309.345 242.467 308.403 326.895 203.715 294.077 287.249 289.731 323.195 306.068 309.867 231.558 -246.873 208.802 246.354 131.376 65.3212 289.376 203.529 -393.278 164.157 159.998 231.525 -9.83 228.653 -24.8581 -160.919 -154.734 -126.654 -131.464 -123.909 -88.9428 56.3331 10.8305 68.1941 -6.59454 29.7471 2.97948 1.7613 -44.4972 159.737 294.311 266.018 196.959 251.555 80.2847 -84.32 104.939 218.864 -18.8393 77.18 184.328 80.3486 -130.087 59.6429 182.758 -69.8842 59.0723 178.576 -1.65515 -95.0513 -82.9626 -97.8054 -69.5662 -67.4716 433.298 433.351 433.676 432.996 432.978 433.651 433.355 433.649 433.801 434.069 434.133 433.661 434.158 433.856 432.881 433.482 432.857 433.657 432.839 433.503 433.134 -54.3438 427.477 431.531 -55.1168 -47.5899 431.381 -49.8808 -49.4488 433.227 433.457 -59.6328 432.79 -57.5749 -54.4887 -50.3259 -50.3725 -55.9152 433.297 433.807 433.877 433.919 434.04 434.021 -76.2738 -79.1847 -78.9859 -76.3386 -80.126 -74.2686 -75.4172 -72.9478 -78.0012 -71.6598 -69.1919 433.776 -64.4596 -69.9465 433.317 432.993 433.094 433.504 433.521 -66.7146 -59.3242 -65.8363 -60.4233 -64.7203 432.765 429.697 430.752 430.287 433.486 433.43 433.215 434.213 434.885 433.357 434.241 433.791 433.803 -72.583 433.801 433.329 433.985 433.786 434.386 433.72 434.095 434.136 433.591 433.028 432.998 432.868 432.376 433.442 432.657 432.675 434.467 434.368 434.525 434.361 434.424 434.423 414.788 387.689 396.514 425.586 379.751 213.535 435.387 424.649 426.295 421.108 418.397 439.667 421.163 399.585 -120.963 -130.279 427.147 392.894 396.691 403.244 397.911 480.155 341.873 411.899 468.241 -113.672 419.428 635.822 428.591 410.073 591.99 422.474 428.226 458.6 381.774 402.558 321.18 405.35 396.551 425.326 -94.8608 429.962 -101.538 -88.5016 -84.204 -88.7172 -86.8825 -85.8875 -87.3707 -82.1238 -83.6014 -86.5212 -86.068 -83.3223 -87.9879 -94.85 -102.098 -95.8269 -99.9156 -96.5275 -95.0389 -100.62 -89.1078 430.879 432.165 431.945 431.18 -94.0051 -103.063 -99.2261 -93.7457 -93.0601 -100.929 -95.2648 -114.291 418.123 -107.503 -117.34 -122.13 -133.752 -133.934 -126.591 -127.212 -128.827 -114.838 -111.004 -107.567 -113.705 -107.871 -116.265 -113.783 454.553 417.497 408.296 421.994 399.723 426.293 408.523 521.328 340.976 403.674 171.893 377.168 388.469 379.728 428.142 398.384 416.545 422.663 384.497 427.208 409.43 277.756 460.452 457.444 417.706 397.343 390.936 401.468 382.598 402.574 383.222 393.743 472.263 315.466 333.902 406.837 427.297 426.655 427.461 420.8 467.143 465.044 429.792 429.686 428.716 428.22 429.91 429.804 428.78 431.562 -86.3204 432.289 430.21 430.318 429.216 429.508 430.14 431.146 430.889 431.791 431.633 431.836 431.236 430.891 430.18 -92.7025 -101.996 -93.9023 427.898 416.43 426.689 424.483 423.174 428.639 -131.176 -133.772 -123.489 -129.548 -134.41 -123.767 448.282 352.713 453.389 420.702 419.968 397.226 417.875 426.224 430.19 431.211 -117.042 425.212 420.459 389.346 408.741 409.344 481.18 -111.121 -114.055 -111.531 -118.566 -115.571 431.216 423.224 383.297 429.228 425.286 429.762 423.965 -109.932 -101.156 -106.343 282.125 -96.8459 284.494 305.449 302.182 290.734 295.511 295.112 299.296 -99.1887 -111.909 -109.329 -106.436 -106.077 -100.815 -103.655 288.139 298.517 283.955 284.868 302.6 -90.4723 -81.1168 -76.3577 -91.7904 -131.01 -132.417 -135.459 -131.895 -131.196 -131.847 -112.204 -115.317 -106.219 -117.351 -108.285 -117.72 -110.841 305.045 348.382 304.855 319.123 349.726 335.906 257.262 346.136 393.147 402.916 409.58 395.545 367.211 401.284 253.175 232.511 337.872 288.903 250.385 297.097 320.287 425.467 415.435 437.992 468.965 425.293 435.405 325.406 356.13 370.639 353.747 355.382 342.232 347.55 310.251 280.279 404.202 410.486 361.226 378.674 256.027 309.423 307.81 315.049 269.808 317.278 319.488 326.571 326.666 319.593 285.108 291.609 282.897 287.439 287.741 284.014 292.464 282.787 276.991 314.178 285.737 301.155 274.602 200.857 332.895 314.868 319.787 283.721 318.368 317.872 335.631 279.77 333.91 325.134 276.087 306.432 293.545 -122.034 316.216 -124.777 -133.266 -132.229 -136.144 -134.28 -133.976 -133.181 -133.421 420.576 409.067 392.663 422.419 380.347 430.163 420.669 395.528 -129.498 324.805 409.647 406.949 -103.571 -103.474 -116.72 319.83 -107.65 -114.914 -90.8253 309.882 295.201 -76.8201 -109.105 -108.697 -116.424 -117.828 -108.086 -105.527 -91.7552 -89.5228 -84.0493 -94.0262 -81.5664 304.597 312.484 303.004 -22.3005 -21.6325 -26.393 -19.0961 -25.7061 -20.7893 -22.0549 -19.2253 -8.32638 -11.4367 -17.1176 -17.0995 -9.22866 -21.079 -19.4334 -20.73 -20.2937 334.928 -29.0181 -21.6109 355.793 313.036 303.114 283.418 302.199 301.333 299.956 310.225 334.037 330.876 356.093 385.554 322.838 325.71 388.373 319.949 305.668 312.13 289.596 300.986 316.914 310.512 336.347 314.879 292.142 330.045 316.566 310.708 353.844 324.187 -43.2838 313.854 320.611 322.369 319.038 215.001 279.348 369.236 277.561 -20.2954 -18.7744 -20.9395 -22.1909 -18.2816 -1.96871 -13.1417 -73.9284 352.254 -86.2178 -16.2372 -8.45491 -13.3808 -73.5288 302.497 219.047 316.121 288.829 362.359 -101.609 -19.9555 -12.5619 -9.43398 -22.3082 -17.2005 -13.2518 -38.4374 -33.1559 -32.4574 -23.3878 -39.5285 -32.8379 -30.0598 -49.6136 290.43 -61.9313 -48.2172 -50.2697 -48.5362 -66.0864 -58.8414 -63.9224 -51.5165 -45.2576 -36.7828 -22.8118 -27.6297 -32.5943 -27.0464 -36.4573 -15.8506 -17.2037 -12.1326 -17.8042 -13.5866 -19.8144 -13.5657 -52.6376 -51.6666 -49.4674 -50.4024 -51.9754 -52.813 433.577 -54.8516 -54.0152 -54.734 -45.1423 -56.189 -51.2349 -54.8928 -52.0499 -51.6836 -52.2847 -51.9925 -54.5041 -51.4915 -53.002 -53.4275 -53.5695 -56.783 -55.1821 -55.4119 -55.1806 -51.8878 -68.9012 -76.6356 -70.5571 -73.0203 -72.1586 -68.8833 -73.5121 -64.4693 433.785 -59.6275 -65.3211 -62.5543 -57.5343 -62.5443 -59.2653 -63.9703 -62.4019 -57.5615 -63.7806 -57.971 -60.4312 -62.1854 -58.9555 -61.6417 -64.1007 -91.8107 -98.8567 -98.6924 -93.6454 -94.8088 -96.6038 -113.347 -116.216 -108.756 -106.568 -114.532 -106.408 -111.893 2.83671 40.6054 20.7791 18.7285 -6.47335 -5.39171 -5.19207 -6.3457 -9.19836 -4.3599 -10.3559 -17.9989 -11.1239 -10.0134 -17.6528 -3.78526 19.2861 35.1969 2.18913 0.411715 -9.44844 -7.14848 -6.60511 -6.58116 -27.1737 -27.0303 -14.1661 -18.1474 -43.3117 -42.8093 -44.6842 -40.1632 -41.2501 -41.6202 -35.2784 -37.8429 -39.9299 -44.9569 -48.464 -41.7444 -45.0393 -45.7748 -55.8767 -30.6456 -26.7434 -37.3766 -37.7009 -31.9723 -29.5818 -30.5918 -33.0507 -28.4219 -37.9678 -39.73 -37.5068 0.0805587 7.9527 13.5274 8.10166 -2.27164 -4.96021 -0.58176 -4.72245 -5.1166 -5.11371 -3.35217 -4.82162 -7.55559 -5.50688 -4.39943 -9.07772 -5.70398 -8.00476 -4.96337 28.7233 -2.1866 13.4649 72.6611 -6.89179 -6.36746 1.4834 -5.02881 0.345654 -3.41043 13.3223 14.0147 7.96989 23.5126 3.04656 4.52566 -5.97425 -2.85581 -7.2223 -8.55848 -8.2485 -8.18376 10.6021 -1.67816 -9.84665 -12.3991 -10.1184 -11.8536 -11.0102 -8.04876 -10.982 -11.9444 -16.5769 -18.5806 -3.74584 -5.9324 2.65728 12.865 13.6411 0.272204 -7.88609 40.7409 20.8115 -0.155977 -6.4927 -5.07338 -3.19421 -8.05108 -16.827 -18.1524 -10.3636 -7.67373 -11.1597 -12.266 -9.25025 -12.019 -13.8193 -11.6793 -14.1194 -9.75498 -6.60161 -8.73682 -6.82341 -12.3796 -10.7869 -13.5149 -16.4588 -13.5101 -13.9508 -18.2239 -14.1899 -21.2405 -17.5779 -22.1162 -28.0911 -22.2302 -22.9856 -21.041 -19.4775 -18.67 -17.2601 -22.1925 -21.1275 -20.1473 -18.2005 -19.2378 -14.6338 -21.8902 -22.0804 -19.7897 -24.2335 -24.9576 -20.8164 -23.626 -16.8045 -16.5725 -15.6679 -20.1884 -18.3476 -18.401 -21.8989 -24.0534 -28.8511 -24.2751 -16.4773 -12.3514 -15.9149 -13.9522 -15.8161 -16.027 -14.1826 -13.666 -19.6053 -22.7055 -14.7887 -18.4666 -14.9426 -12.7282 -14.0164 -13.7192 -19.6063 -16.708 -16.0425 -16.3715 -18.8903 -13.9002 12.3587 14.0395 9.63222 7.42496 9.68557 6.34721 12.4849 13.714 14.1448 12.2869 18.5043 15.3407 14.554 17.1194 15.6376 16.9674 18.7733 17.464 15.6779 20.5636 14.587 16.1309 26.4739 16.7963 14.8019 14.3179 14.4542 15.2112 15.8219 15.0839 17.4725 14.897 15.671 15.9116 10.0097 5.58366 7.65323 9.43304 8.97325 8.19651 11.6176 12.923 11.1725 11.8474 11.984 12.1457 11.3263 12.8659 13.7085 13.5406 12.1761 14.2927 12.6646 12.4393 -10.8516 -13.8517 -5.47161 -5.95314 -11.7113 -1.8687 -5.0139 -5.20848 0.552648 10.8038 4.61923 7.82468 0.211718 2.55957 5.63241 7.02628 -0.39748 26.7425 -6.96559 -2.17438 -0.383993 -1.52083 -3.47666 -7.09058 1.21009 9.45966 39.3648 -6.46371 -3.37813 -0.0944924 -5.49183 -6.77942 -5.7521 -6.32815 -7.82732 -8.48007 -9.92804 -12.0506 -7.50154 -8.17093 -3.74439 -5.66904 -1.73412 -5.99487 -8.09679 -12.2431 -8.26761 -3.74178 -5.43869 -5.78227 5.1839 10.8899 -5.97102 13.6807 2.74487 -0.661236 11.4551 -4.73447 -6.1981 -0.873369 -3.76953 -3.68316 -5.15761 -3.07322 -5.3116 -6.24654 -7.63472 -4.34383 -5.71962 -6.88543 -4.54284 -5.80388 -7.62631 -7.92593 -7.95948 -6.06499 -6.13415 -7.36503 -3.95626 -0.879686 -2.1149 -0.336425 -3.44747 -2.17777 -2.57836 -13.6642 -10.141 -5.12166 -6.66839 -8.61008 -16.4814 -12.3774 -10.4946 -13.3661 -14.1346 -7.65694 -13.4372 -14.5782 -12.7213 -8.80543 -12.0277 -12.6906 -13.2629 -12.2262 -10.6556 -11.8231 -10.7662 -11.4549 -13.5336 -11.6445 -12.0171 -11.5122 -14.437 -11.6235 -12.8771 -10.7757 -11.8707 -9.84058 -1.96566 -4.31156 -3.59149 -4.40886 -6.62696 -4.35572 -2.96946 -6.33526 -10.8647 -6.37782 -7.12151 -5.18064 -7.89997 -9.16482 -5.03093 -9.80087 -7.19404 -6.9465 -7.73161 -11.7381 -10.804 -8.85326 -9.74097 -13.0809 -12.8234 -9.7504 -9.75234 -11.6053 -12.6912 -18.7418 -17.186 -13.8022 -13.3679 -14.7156 -9.30256 -11.6843 -11.156 -10.3542 -10.4582 -9.86335 -9.49862 -8.55871 -7.331 -8.84147 -8.43181 -7.90258 -9.55573 -8.12441 -9.06779 -10.9337 -9.1061 -9.07998 -8.50794 -9.76002 -9.62756 -8.70286 -10.7018 -9.02218 -8.53327 -10.1463 -8.95093 -8.3197 -7.70713 -9.21445 -9.58918 -9.34013 -8.45853 -8.46787 -8.73396 -6.06787 -3.82347 -5.09601 -4.49526 -6.56067 -4.59248 -5.26446 -7.25038 -9.15479 -6.92028 -7.80492 -7.96188 -8.20441 -6.95486 10.3631 4.45382 7.93479 6.19032 8.66533 -6.80727 -4.53174 5.04227 8.28259 -12.1763 4.26197 0.81908 1.73992 0.660821 2.45166 -0.684803 -0.617902 -0.153703 -0.781286 -0.70441 -0.654138 -0.668414 -0.719105 5.45276 1.64219 2.34537 1.42594 -4.94119 -6.0658 -5.24847 -5.02694 -5.61566 -5.59122 -0.0701499 -0.782715 0.367858 -1.47272 -1.18951 -1.42307 -1.20962 -1.32412 -1.05661 -0.775927 -0.900629 -0.855854 -7.24364 -7.79473 -7.51777 -7.62148 -7.60061 -7.62092 -7.27038 -7.88955 -7.9112 -7.58074 -11.7494 -14.1222 -11.7664 -14.057 -9.88269 -8.73064 -9.74067 -8.72469 -9.52549 -8.44212 -9.34929 -8.55077 -7.5472 -7.6291 -7.7437 -7.66169 -7.88715 -8.08519 -7.74978 -8.01066 -7.82352 -7.75345 -8.11058 -7.81453 -8.05842 -11.2236 -10.1295 -9.99038 -11.4773 -11.6038 -11.9205 -12.1962 -11.3543 -10.7101 -9.34369 -9.50511 -10.495 -7.93468 -7.56445 -7.85648 -7.96295 -7.90413 -7.54115 -8.30154 -7.6909 -7.16694 -8.1063 -8.40827 -7.9378 -10.8631 -11.0847 -10.9221 -11.4346 -10.6185 -11.0458 -11.2949 -10.2074 -9.21784 -10.1255 -8.69958 -9.83462 -10.2212 -9.3728 -11.8977 -12.5568 -12.6335 -11.6788 -10.6937 -10.4157 -9.61667 -9.49803 -10.6614 -11.4452 -12.1458 -11.2959 -12.142 -11.4744 -11.9733 -11.5927 -12.7326 -11.9213 -12.3135 -11.9259 -11.7463 -12.0175 -12.096 -12.0966 -11.6901 -12.0052 -11.8326 -11.8856 -10.5539 -9.3566 -10.2345 -9.63786 -10.2277 -10.5933 -9.65772 -11.1634 -11.8297 -11.0557 -11.4753 -11.0236 -11.2774 -11.6322 -5.81437 -5.92816 -6.11467 -5.72028 -5.47162 -5.51813 -5.02515 -4.93514 -5.54785 -5.92685 -6.42906 -6.06409 -6.22611 -6.07865 -8.09322 -8.37306 -7.25719 -8.60348 -7.93416 -7.31552 -8.70641 -7.65777 -7.19469 -6.81143 -7.00049 -7.48806 -6.85604 -7.33151 -5.88812 -5.19776 -5.68102 -5.20177 -5.72731 -5.78053 -5.27217 -6.40666 -6.69435 -6.22591 -6.64321 -6.27163 -6.29804 -6.82221 -1.2331 -1.76478 -1.75881 -1.27388 -0.84471 -0.740957 -0.198378 -0.765037 -0.170929 -1.28979 -1.88905 -1.25888 -1.8686 -1.28011 -4.00369 -4.4847 -3.9374 -4.41573 -3.93434 -3.98038 -4.48899 -3.49837 -2.79564 -3.33884 -2.74816 -3.42763 -3.36508 -2.83268 -0.836143 -0.170911 -0.764201 -0.280799 -0.773347 -0.822534 -0.287322 -1.4488 -2.00363 -1.32877 -1.97134 -1.34879 -1.40924 -2.05208 -10.7687 -6.71097 -10.2595 -3.79439 -5.49505 -8.87968 -12.0761 -20.3946 -26.1239 -26.9714 -25.733 -18.6914 -20.3917 -19.488 -15.9815 -20.7635 -23.0584 -40.4179 -30.1136 -31.368 -41.3639 -48.7035 -49.5518 -53.5679 -45.5661 -29.4347 -23.3395 -26.5583 -18.7262 -22.9376 -28.7696 -26.5983 -41.1131 -48.1532 -43.0183 -46.7903 -90.4022 -78.1102 -56.2752 -72.3264 -70.845 -96.8489 -41.7075 -82.205 106.227 -1.89898 -70.6908 102.181 -14.8029 -110.856 -105.385 -87.4677 -87.4768 -90.8975 -41.3778 23.3317 -27.1114 -55.0032 -85.0655 -95.3478 -95.6757 -86.1704 -111.209 -91.4976 -93.8499 -103.284 -103.665 -120.97 -125.084 -52.0555 -63.1588 -75.0219 -76.6646 -52.9065 -38.0465 -44.0852 -37.331 -44.7174 -46.0388 -53.1298 -76.4806 -78.3799 -78.7101 -65.9953 -82.5023 -117.211 -39.4209 -59.7207 -86.846 -62.0697 -114.055 -128.116 -132.353 -112.877 -122.783 -123.907 -112.097 -112.469 -135.322 -110.055 -130.516 -127.698 -123.519 -66.4746 -95.9557 -173.89 -101.436 -97.4586 -213.034 -162.448 -135.007 -121.828 -95.4534 -116.129 -103.426 -134.728 -99.2924 -189.426 -100.906 -107.87 -150.331 -120.471 418.782 416.724 -141.309 -126.637 -132.636 -126.934 -130.234 -124.631 -140.099 -137.581 -208.364 122.273 210.69 391.496 375.399 81.1075 417.34 430.021 420.735 423.286 429.757 -130.143 -111.458 -128.618 -148.483 -143.346 -128.328 -132.039 -147.367 -139.962 -124.697 41.6683 -162.227 151.284 -156.447 114.349 -161.305 -175.076 -163.778 -164.601 -169.484 -167.084 -164.818 -164.729 -153.58 -179.69 -163.464 -176.594 -161.936 -170.779 -156.9 -151.057 -151.497 -155.636 -160.181 -152.515 -149.974 -158.322 -143.198 437.424 -139.925 -142.535 -139.445 -147.419 -134.36 -131.778 -148.154 -133.49 -136.496 -153.045 -170.451 438.564 -162.433 -157.116 -177.424 -183.994 -171.271 -188.63 -172.976 -183.391 -179.949 -177.712 -179.477 -168.43 -172.39 -177.718 -170.927 -182.282 -176.354 -189.04 -178.795 -174.471 -180.898 -185.505 -164.54 -159.777 -159.614 -166.091 -158.491 -163.081 -172.555 -175.927 -179.766 -171.629 -179.595 -119.497 -123.151 -127.866 -110.926 -109.052 7.20924 -91.7434 -87.3378 -93.04 -147.678 -135.423 -140.42 -145.982 -148.083 -156.844 -154.904 -153.516 -150.934 -157.991 -164.42 -160.144 -160.11 -115.517 -107.53 -121.339 -108.548 -112.508 438.797 438.876 439.784 438.388 439.473 -110.779 -101.157 438.28 438.569 438.004 -112.764 -109.461 -117.58 -111.561 -115.24 -126.759 438.409 438.728 -148.234 -155.023 -158.122 -148.023 -147.83 -156.645 -148.977 439.136 438.903 439.568 438.987 438.851 438.636 438.795 -134.432 -124.19 -135.629 -128.978 -135.336 -123.232 -137.424 -234.145 -221.931 -202.688 -224.239 -222.793 -227.987 -181.87 -186.099 -210.657 -234.38 -223.293 -224.597 -226.01 -217.458 -180.378 -183.103 -175.439 -183.65 -199.608 -193.442 -193.524 -196.233 -200.422 -197.862 -189.973 -195.218 -203.281 -201.964 -202.58 -205.738 -204.434 -207.212 -202.647 -161.797 -137.123 -136.523 -154.595 -156.615 -143.762 -154.284 -181.289 -193.905 -189.908 -179.77 -197.013 -180.808 -171.336 -157.345 -153.151 -154.763 -154.894 -157.779 -162.413 -159.842 -158.548 -133.038 -145.58 -144.551 -138.844 -132.311 -136.925 -139.334 -139.057 -139.557 -163.78 -158.059 -162.682 -160.66 -163.316 -163.51 -159.789 436.955 -155.574 -157.859 -163.544 -160.069 -159.598 -155.756 -162.754 -158.783 -158.608 -154.211 -151.546 -99.3873 -135.197 -128.985 -154.039 -134.072 -140.688 -145.14 -148.174 -150.75 -143.256 -158.35 -151.925 -156.886 -149.592 -155.263 -156.129 -150.58 -157.44 -164.706 -152.469 -155.919 -149.892 -151.416 -149.623 -156.143 -147.647 -98.1288 -83.5588 -105.556 -89.9096 -99.3192 -99.9304 -88.2143 -88.2097 -82.6595 -71.0518 -77.7906 -74.2677 -82.4366 -91.9117 -112.908 -118.593 -116.106 -128.13 -124.458 -110.925 -117.588 -38.3876 -41.3482 -46.4963 -56.4584 -53.2426 -34.2043 -44.9501 439.346 439.386 439.379 439.482 439.039 439.022 438.383 438.074 438.705 439.434 437.996 439.059 438.414 438.215 438.768 439.034 438.367 439.309 438.252 439.787 438.942 439.395 439.487 438.514 438.234 438.004 438.499 438.051 438.44 438.173 437.962 438.347 438.21 438.768 438.288 438.489 438.372 438.235 437.035 435.033 433.694 424.664 437.237 435.914 429.368 -183.809 -197.383 -175.477 -181.951 428.373 436.027 400.848 487.237 451.489 -133.247 390.465 -153.217 425.672 439.875 436.892 438.499 437.715 437.17 439.473 432.926 436.035 434.575 -189.514 436.563 -170.322 429.727 422.448 408.254 495.059 401.044 418.296 425.629 419.734 430.134 436.308 423.998 439.834 474.658 458.244 483.475 421.873 409.652 476.705 324.062 470.074 412.051 379.203 425.904 420.478 436.566 428.18 448.566 434.914 410.247 423.507 430.985 426.948 378.604 407.091 385.613 433.226 369.598 434.805 439.809 436.598 431.982 421.807 438.128 423.094 358.899 482.679 465.25 416.025 412.263 408.418 367.015 437.324 426.705 415.218 429.696 474.004 344.316 436.896 437.437 437.07 437.433 436.948 436.973 437.406 435.941 435.119 436.216 435.133 436.193 436.096 434.852 426.198 432.622 426.63 435.122 428.595 431.979 363.544 422.757 402.61 428.751 427.279 408.37 434.293 430.065 433.733 433.141 432.707 433.522 427.665 414.019 416.4 399.355 416.785 427.703 473.652 372.905 426.93 434.044 433.327 430.072 427.749 433.297 419.16 476.872 406.035 356.656 427.051 422.456 409.792 472.691 456.507 431.433 480.798 435.584 423.115 429.428 438.316 459.109 432.482 436.649 426.312 432.664 436.141 403.143 404.123 412.798 396.332 354.184 362.324 365.849 420.545 420.379 365.036 424.32 433.023 407.943 420.278 419.377 416.165 430.779 436.274 432.512 354.439 468.568 467.289 393.481 404.566 392.8 350.189 470.894 395.16 459.489 429.817 474.203 432.004 422.199 435.56 416.884 421.686 430.107 425.086 434.044 361.421 433.892 433.921 294.007 330.513 266.778 290.513 -19.2742 -14.7484 -12.4333 -20.2008 -16.7026 -14.9817 -18.5876 -10.0565 -12.1994 -19.9577 -14.7759 -26.0493 302.962 -36.4822 -35.5045 -25.8084 299.182 -24.421 -36.4345 -45.3068 -30.7237 -35.9661 -31.1737 -24.6224 217.873 305.143 -9.11928 279.68 289.798 261.962 285.089 274.271 292.533 265.629 436.486 428.213 428.321 439.064 448.592 425.503 436.674 410.164 386.086 389.467 407.297 395.852 435.518 432.624 443.152 451.331 430.647 434.609 454.781 417.894 302.481 416.497 409.557 293.975 438.637 434.75 429.883 420.11 275.836 417.721 284.138 262.732 298.681 295.987 310.192 324.608 296.518 318.512 300.564 288.552 293.891 292.883 301.727 293.274 284.648 289.414 305.865 308.644 296.612 298.687 303.044 294.905 306.63 259.684 322.135 303.393 295.598 250.279 312.685 388.373 364.524 338.988 362.15 376.863 367.479 379.329 418.618 -84.1081 408.969 403.786 408.146 420.595 301.984 421.611 424.774 374.89 428.718 433.502 409.971 423.657 411.298 -74.2687 -57.5101 409.206 334.962 401.553 419.654 373.07 413.591 412.505 409.936 382.532 301.543 421.959 399.024 299.89 362.82 295.46 -12.51 -17.8668 -8.38661 -17.7329 -13.3634 309.362 -37.7351 303.252 -26.3134 305.076 312.638 297.364 309.71 292.513 296.355 291.434 304.253 302.064 -29.284 -36.103 -26.1993 296.721 282.686 299.821 294.025 303.048 298.85 294.187 300.375 290.24 301.156 290.55 297.865 262.39 434.352 441.398 411.693 90.5629 400.063 423.321 412.023 426.305 412.663 411.98 421.542 352.778 364.023 336.258 361.449 320.596 399.237 328.632 276.892 429.446 416.969 411.555 90.9825 391.894 290.551 289.3 254.98 292.196 249.589 323.932 239.875 372.037 374.157 420.989 385.55 365.308 411.23 293.498 343.794 283.689 292.975 328.079 285.911 292.456 263.952 185.567 142.717 282.733 297.566 279.137 278.858 318.677 281.326 282.679 274.299 286.854 290.523 280.33 296.154 290.057 292.107 284.856 271.509 284.473 286.313 309.255 284.656 285.534 281.1 293.812 281.13 3.47928 4.49533 4.35779 3.66982 3.99484 3.92964 3.71026 3.95522 4.66756 3.95965 4.16104 3.65808 3.25675 3.79001 237.703 358.503 304.191 335.307 265.298 292.069 312.917 289.697 291.31 287.583 111.795 299.592 183.78 125.119 223.43 265.234 -173.787 269.118 264.633 306.656 275.959 257.404 283.255 288.771 142.564 237.895 283.967 317.517 317.429 307.386 307.242 298.509 306.073 192.993 -208.13 227.345 129.064 -362.605 288.937 -86.2034 -114.419 -131.03 -91.0173 44.7363 262.694 145.9 157.027 156.045 -50.5706 132.821 -54.4409 -84.4184 -20.993 -54.781 -13.7632 -10.2885 4.31217 3.7786 -101.905 -68.9697 -121.908 -93.9123 -106.661 -142.61 -104.068 -32.8444 -54.6929 3.71087 -11.4773 -50.861 6.01301 330.706 287.813 6.73984 312.597 2.99301 -6.08357 -1.09189 -0.700361 2.17166 -1.25143 -0.868611 5.68484 1.00437 3.53677 6.61845 4.94542 1.95914 6.06419 289.259 300.382 285.635 243.606 286.081 299.299 266.315 5.92268 5.84358 2.18692 4.20412 5.89104 2.24297 6.17305 320.041 303.739 303.702 305.356 169.554 117.08 196.377 253.559 3.73193 4.87853 265.859 3.81149 4.80523 3.79025 2.50201 -25.4821 6.72315 2.79354 3.45989 83.6303 -63.5005 78.5717 3.16408 2.98985 1.94704 3.17924 2.10995 332.683 351.309 372.691 344.092 350.331 329.299 355.067 284.554 224.54 312.793 56.619 280.837 291.462 187.071 319.929 360.835 307.913 361.698 334.07 357.707 306.663 275.12 244.309 118.509 -14.1959 273.314 264.315 146.952 341.563 -55.3014 350.449 3.72246 -2.34871 -52.3782 0.13386 -40.9626 0.256396 2.11201 15.8529 26.678 10.9359 23.1799 212.822 163.789 294.22 139.231 263.497 136.895 -85.158 366.817 -66.2713 349.272 193.363 216.954 24.1438 68.2087 190.497 233.688 41.1074 5.05201 -2.18636 11.2204 -26.0084 2.20316 416.941 432.197 422.46 442.435 429.467 424.609 341.665 421.878 432.91 437.339 429.741 429.666 475.137 418.943 397.519 360.794 425.136 414.642 419.158 371.186 403.205 398.861 414.809 412.521 417.572 373.322 466.349 463.353 473.912 438.588 458.511 394.014 438.87 403.591 466.559 457.816 433.063 429.233 371.225 435.118 416.781 435.733 376.279 463.496 479.687 399.551 405.149 323.434 460.602 432.006 440.983 423.628 424.965 470.01 428.082 411.686 581.42 622.089 464.886 364.108 499.447 525.582 409.439 351.829 456.758 426.876 427.598 402.249 421.308 409.027 504.942 435.963 395.757 426.369 405.332 418.109 442.501 328.728 447.258 334.494 438.9 441.855 441.509 426.499 391.195 394.358 460.254 631.149 443.659 197.447 291.184 445.338 431.536 432.724 428.005 429.42 434.663 442.284 468.023 439.867 396.036 439.883 455.671 438.916 465.168 378.237 472.721 450.563 350.78 431.248 421.525 472.395 448.937 380.504 434.228 436.194 427.599 437.593 435.462 423.254 408.508 490.091 424.826 438.331 544.899 418.811 427.039 438.041 430.13 433.378 429.863 472.033 432.607 321.629 467.216 355.549 384.354 520.034 417.989 465.387 435.759 435.667 434.065 344.318 435.017 436.657 421.089 398.653 356.359 435.851 444.642 437.079 437.003 433.738 437.388 415.848 455.789 454.726 389.362 425.616 445.265 433.26 430.471 447.504 449.451 380.025 417.3 440.066 451.656 475.324 432.7 432.877 437.771 463.922 438.737 462.63 466.89 762.506 321.37 491.687 470.595 414.71 436.668 433.518 433.829 425.595 429.66 434.335 390.839 434.991 441.056 429.102 434.781 467.985 435.448 438.696 288.658 277.824 281.171 289.522 280.168 293.99 293.322 309.281 292.489 360.074 187.702 223.917 279.835 332.274 295.781 300.055 276.442 277.957 323.019 297.274 287.646 304.185 265.474 277.459 242.278 291.624 286.904 286.038 288.72 279.491 288.77 282.949 286.923 308.087 289.787 370.979 275.01 349.166 312.795 291.686 269.25 284.2 333.343 293.581 266.657 267.51 295.101 466.814 417.444 460.51 413.871 448.436 437.477 379.568 398.639 398.719 274.516 464.427 442.274 436.354 443.54 453.302 265.984 274.723 267.397 276.928 252.737 387.247 406.532 103.521 447.314 91.3343 279.811 263.969 250.784 230.365 267.083 281.186 269.136 276.426 259.16 275.565 246.293 121.554 195.95 212.847 298.581 222.511 236.632 268.868 267.899 258.626 267.572 254.735 262.88 216.275 269.419 318.569 303.968 127.985 183.21 246.548 261.021 238.694 260.007 254.785 242.391 259.405 359.762 312.132 249.012 255.934 351.731 313.722 203.283 239.606 244.802 245.484 255.815 249.474 268.101 402.557 251.588 267.925 436.552 438.565 452.839 449.267 450.958 240.023 352.705 313.035 312.733 313.315 287.065 270.239 419.939 445.04 41.1545 442.818 210.804 269.181 272.589 181.662 254.343 462.73 412.561 443.733 464.831 432.539 451.616 446.79 235.602 231.735 280.221 220.603 257.227 254.725 217.127 243.566 262.091 255.754 243.757 264.345 252.581 223.915 304.227 185.798 298.427 209.105 305.623 277.598 294.592 265.677 280.01 329.287 274.144 293.155 280.136 297.966 367.494 285.917 244.971 263.42 258.559 264.614 260.764 256.648 251.545 140.064 234.311 220.593 269.358 238.875 111.526 201.614 237.575 255.71 249.07 230.239 276.13 339.946 403.117 336.551 247.477 345.341 417.806 359.473 409.28 418.039 404.218 240.929 246.577 443.615 442.325 439.547 443.333 471.68 454.936 407.778 209.198 340.462 380.414 382.502 352.758 440.844 409.152 288.554 427.957 358.854 289.879 183.737 289.111 269.857 247.4 217.874 216.423 233.281 194.87 224.193 260.49 239.067 256.16 229.74 236.716 200.173 223.827 262.844 300.761 286.02 198.454 264.018 11.7293 303.465 295.867 260.394 248.184 272.635 200.297 188.426 221.524 208.062 220.749 195.234 190.293 144.807 284.451 180.931 297.89 268.001 155.028 -70.0017 224.029 253.13 242.808 242.244 240.505 208.95 226.322 216.242 215.278 223.875 164.099 255.633 -33.3883 103.716 212.809 199.018 18.564 238.462 364.009 206.408 254.712 194.144 38.9229 -94.964 -6.61307 -41.861 4.84308 287.311 340.545 -82.6762 275.299 -56.4467 7.01251 -7.58169 6.21004 300.484 301.376 205.884 234.923 301.754 344.104 251.965 274.532 283.801 287.209 303.296 272.909 287.446 259.543 292.073 242.476 271.863 265.208 348.456 346.81 160.651 395.393 209.924 246.918 290.276 227.578 312.449 360.386 305.381 329.567 289.824 374.799 237.816 214.943 353.788 220.834 237.5 328.921 136.743 279.274 265.305 342.738 274.763 277.389 348.568 259.351 310.362 246.749 139.169 352.376 191.076 -11.9552 0.930398 -150.857 -32.4671 -27.8167 -26.7816 -14.1278 -25.803 -3.60111 -0.852427 -5.26301 -15.6392 -6.46556 -24.813 -49.352 -109.885 -58.1958 -34.6509 -4.22274 249.711 5.6523 -3.15443 1.60262 2.9155 -4.2339 0.316998 2.34294 306.856 206.234 330.157 236.537 347.021 291.189 247.038 349.849 250.295 342.028 303.361 292.727 289.66 275.384 255.844 325.213 218.551 216.274 273.373 339.655 283.857 200.077 309.684 353.61 288.044 303.334 269.428 321.449 287.061 361.387 310.313 277.565 363.669 250.348 434.688 339.02 435.354 307.378 247.656 299.524 233.575 332.034 255.039 237.758 224.999 341.239 289.114 -37.8655 -185.904 -109.793 -56.2653 -85.403 -70.2609 181.046 327.767 210.044 327.183 187.745 8.996 -1.65236 8.41027 -7.85458 0.047584 8.09785 0.240649 -53.1904 -122.697 -107.703 -61.226 -84.2348 257.696 332.142 -7.6291 -25.6248 -33.6603 -98.1359 -57.8405 -59.1287 -24.5585 -10.7549 210.691 219.687 -61.3082 180.7 236.407 294.187 289.157 242.083 204.187 190.748 200.564 287.065 180.485 239.536 233.306 371.305 575.502 151.907 195.16 248.467 247.971 259.116 277.526 233.986 252.826 734.945 333.495 -60.9274 367.666 546.796 304.763 275.058 268.206 93.0115 224.397 -145.732 255.892 237.666 237.566 324.84 228.964 249.651 285.887 297.286 255.467 -9.39056 70.2693 -103.079 5.68323 128.217 -40.3477 -192.917 8.31688 -0.609137 -0.203357 1.73168 -23.7869 -3.30426 9.38116 -25.7059 -14.9516 -1.8799 -53.4098 -25.3557 3.4491 -30.6937 -52.1028 4.21353 -2.11309 42.3062 100.147 45.4328 143.002 -37.1597 63.1087 -12.6933 217.672 20.977 -17.7062 -30.1457 2.22326 -34.3714 454.69 446.015 432.627 460.106 445.152 448.54 389.462 429.106 405.099 440.478 431.57 437.357 453.312 422.427 470.034 984.866 174.817 495.427 464.111 535.319 433.126 456.786 448.563 437.745 442.906 448.973 443.407 454.8 446.972 435.884 444.709 413.127 441.613 472.686 385.744 433.24 432.868 436.235 435.251 438.116 437.201 403.631 444.013 446.802 459.278 463.356 453.94 507.211 421.887 447.688 434.129 454.626 436.74 368.673 428.213 436.064 462.216 624.725 462.887 439.221 703.017 449.742 425.838 507.372 324.119 405.92 424.806 145.635 423.534 -158.866 541.453 467.883 418.353 515.738 435.467 442.925 568.857 506.001 427.504 508.686 412.891 504.156 431.466 426.641 459.452 462.944 462.17 451.553 480.971 425.214 418.078 668.647 427.607 445.722 623.807 433.077 449.754 621.619 519.505 421.769 265.73 438.133 -40.3855 436.872 442.423 414.203 442.302 448.166 445.974 390.945 622.8 393.858 159.029 490.509 423.646 434.496 226.432 422.277 545.437 353.616 560.728 454.342 381.375 429.336 426.2 532.023 498.416 437.518 466.293 429.896 419.491 493.943 440.815 590.094 426.308 514.693 462.292 541.667 532.435 452.676 405.778 434.394 422.049 412.535 420.781 461.708 249.149 437.112 431.943 438.764 434.485 449.013 388.053 435.554 439.76 454.988 444.427 438.445 444.869 446.669 453.843 451.385 450.262 455.137 414.316 444.968 457.272 489.26 419.6 396.338 433.728 425.563 431.859 517.456 406.027 450.281 452.051 495.106 456.964 452.753 456.013 455.394 487.79 436.376 372.806 440.704 441.115 438.218 434.331 442.433 431.825 345.082 429.977 432.062 434.363 433.561 250.85 252.408 249.9 240.079 251.408 264.067 251.598 262.265 262.243 229.703 252.687 208.672 173.291 252.173 240.962 228.851 215.619 231.545 245.121 220.597 228.374 247.609 256.521 208.414 261.964 229.674 248.608 1.80846 292.435 240.291 235.093 228.305 441.938 408.299 425.859 434.128 444.149 394.924 429.34 462.89 445.811 449.942 448.902 454.488 403.492 388.32 458.69 445.394 450.426 458.349 455.279 456.445 260.56 248.741 21.8583 244.087 307.366 259.793 265.838 272.928 270.054 267.935 -8.69071 347.115 277.101 275.195 304.521 252.189 278.624 271.154 255.975 207.922 229.087 251.667 257.129 315.882 436.572 454.15 462.686 452.373 470.426 473.928 466.956 479.493 479.284 470.78 456.761 466.91 462.777 460.801 477.22 259.967 259.499 241.245 293.585 187.894 254.775 276.595 252.489 246.362 247.355 255.14 244.772 125.371 245.925 244.113 239.674 244.723 249.208 250.29 259.74 262.127 229.739 254.313 236.183 200.169 452.75 450.043 453.85 464.527 462.461 463.909 469.847 453.486 463.21 458.868 472.637 261.614 287.078 125.694 86.2566 272.676 277.166 280.918 261.601 211.469 226.765 254.683 247.164 82.0076 267.405 276.726 259.99 157.104 239.821 272.29 264.532 343.007 -28.4434 -143.853 19.6401 50.5959 108.134 -61.3889 -12.8288 83.5953 -7.08869 -9.89393 -87.9862 -43.5937 -31.2455 -61.5233 -12.8842 -50.6632 -6.74755 -38.9541 -20.6983 -37.1391 24.4103 118.028 -30.5076 -40.7083 -77.2027 -11.3833 -83.5814 -35.0585 -34.8849 -24.4332 -8.15668 272.487 278.975 270.209 276.142 274.779 278.689 264.173 300.841 236.325 249.554 247.972 257.744 236.902 273.276 261.707 254.474 252.136 271.001 305.674 176.646 369.767 278.496 247.438 296.986 252.713 273.528 271.584 253.383 269.256 263.855 280.571 258.47 258.758 243.759 192.898 267.192 259.353 175.744 275.915 289.384 278.774 264.458 283.658 276.64 -65.8411 -49.3192 -60.4568 -45.652 -30.5805 -26.1447 237.241 266.199 246.848 255.602 234.019 250.607 242.866 228.86 275.071 192.747 277.78 290.69 177.323 439.572 246.976 235.344 264.12 225.226 226.928 228.989 218.672 249.29 238.134 186.504 321.156 232.551 236.756 266.716 226.889 78.4651 233.973 221.791 223.653 290.234 230.516 87.941 168.801 223.072 340.204 222.128 244.597 254.809 248.159 237.209 248.621 -12.5599 5.45153 -6.127 16.5778 -54.4376 5.39081 -100.305 -10.5775 -14.9325 -21.9108 -29.8137 252.109 73.6239 62.4281 193.847 -46.749 267.313 258.988 270.083 251.859 260.722 279.394 289.332 93.8272 52.1 250.317 356.266 186.538 250.003 216.507 236.413 232.62 242.699 108.977 227.856 251.453 264.932 260.137 261.949 260.765 367.432 321.598 293.12 221.265 472.579 307.243 229.071 271.246 282.888 265.65 267.976 257.047 267.521 252.467 253.043 278.85 254.735 -35.9447 -23.4408 -33.3547 -26.6078 432.075 446.916 437.671 444.977 440.832 448.782 444.499 417.088 441.256 438.512 428.089 451.676 365.545 374.235 451.925 400.287 557.804 448.285 441.739 459.621 453.251 433.374 440.643 458.106 536.771 452.124 369.811 450.42 343.024 442.261 445.33 450.474 434.819 463.537 454.939 444.287 434.336 410.922 451.769 439.101 40.4777 379.788 431.217 432.841 562.725 427.648 416.261 511.13 428.869 450.313 435.525 443.762 443.539 427.143 448.492 456.882 567.392 444.738 420.809 396.586 455.121 364.956 583.624 235.606 468.072 437.475 424.254 413.244 429.424 399.946 443.045 440.777 465.164 344.28 415.006 498.444 292.363 452.358 438.529 350.289 440.28 439.405 416.188 450.758 478.122 444.546 406.982 565.169 422.702 463.162 569.177 394.552 440.73 425.125 396.672 439.432 433.258 390.371 423.924 420.122 423.341 421.7 424.828 419.4 422.443 472.008 431.432 421.003 416.526 436.445 428.65 441.319 441.453 488.374 437.963 376.588 451.877 432.107 437.471 316.621 499.751 416.208 416.846 453.335 413.102 426.353 420.918 354.537 372.164 391.619 411.946 394.836 389.929 423.43 426.522 472.419 420.155 343.07 427.773 424.295 438.963 399.564 446.396 404.137 436.115 442.921 394.912 420.304 402.914 423.033 407.533 418.715 421.056 415.016 421.447 421.8 423.332 421.712 423.243 422.662 419.919 422.765 426.793 425.774 424.602 422.043 425.995 424.745 409.789 389.375 437.497 415.993 501.811 419.488 418.768 382.133 357.739 439.15 396.906 420.951 358.137 386.994 382.572 368.653 579.373 387.572 533.542 400.53 361.008 404.383 411.134 420.628 407.481 419.526 396.195 407.218 289.677 270.62 236.305 245.535 280.207 241.484 247.876 269.198 294.721 257.322 291.281 263.74 262.471 259.935 272.082 224.738 119.376 233.99 254.784 470.078 443.799 453.213 433.879 456.531 456.615 426.484 416.778 417.925 446.38 478.868 453.887 417.964 393.395 465.773 410.009 459.378 284.297 221.617 104.672 284.699 233.246 240.365 245.423 261.478 213.017 262.365 233.565 246.169 223.439 214.61 209.95 162.666 226.681 219.466 227.707 195.906 87.6374 440.025 434.038 427.097 197.957 151.235 101.892 308.83 322.17 276.15 216.941 303.152 221.326 422.847 317.015 394.174 92.1505 161.026 230.386 235.66 247.899 222.716 209.196 206.502 220.176 224.911 286.904 155.252 278.342 253.532 303.085 207.55 222.466 225.352 232.257 263.748 225.686 217.802 240.815 237.032 200.186 232.096 248.283 215.908 119.366 226.611 232.013 231.984 240.533 216.505 232.861 234.943 186.86 212.082 174.593 218.649 218.304 311.513 323.495 146.61 306.959 115.474 266.91 175.748 362.278 300.94 276.069 182.997 205.627 197.859 165.25 243.946 87.7081 232.345 236.224 237.136 219.075 225.071 227.657 242.898 256.998 254.824 239.364 235.381 272.344 238.473 242.179 271.6 207.451 221.695 227.667 240.305 223.371 228.701 233.415 226.696 236.805 234.614 -3.65208 -43.2557 267.694 262.618 269.54 263.778 264.66 347.814 281.804 125.614 216.136 355.92 269.533 264.936 248.512 253.623 257.977 247.775 234.975 225.6 247.009 239.661 238.19 244.021 270.28 261.278 276.787 270.545 270.715 253.045 236.038 216.357 190.113 251.699 245.813 239.83 264.518 263.781 258.946 259.505 -13.8888 -17.0925 286.276 245.293 344.804 289.573 294.664 237.032 185.794 238.645 317.031 342.021 234.386 235.377 277.096 269.956 293.759 272.284 262.565 250.041 243.511 265.547 271.869 268.251 252.245 264.137 264.4 276.493 271.565 263.732 444.372 99.2774 277.778 313.397 263.988 522.235 331.865 278.553 308.903 288.024 271.324 277.257 300.598 272.871 285.942 276.682 277.969 279.321 261.038 676.458 226.023 720.603 159.763 253.243 674.058 286.16 293.518 269.386 211.053 280.637 239.167 280.096 685.098 291.222 290.047 246.011 341.48 281.962 275.461 330.255 274.714 258.323 261.714 251.415 262.964 256.861 267.174 265.186 162.088 351.84 241.208 249.59 293.93 269.51 298.885 339.183 284.803 310.58 284.466 319.638 290.275 351.81 299.059 350.201 309.422 290.538 573.454 269.446 622.965 270.301 296.18 586.165 358.284 311.105 345.883 304.108 348.927 299.119 329.286 319.686 577.443 329.528 559.017 419.57 423.925 424.672 423.227 424.432 423.167 420.425 420.664 420.745 420.198 420.226 421.359 420.375 420.733 421.541 419.488 420.733 419.735 420.778 421.871 420.136 419.076 420.512 422.155 421.046 421.675 419.134 420.534 426.173 429.603 427.889 426.859 429.646 431.291 429.255 448.379 436.937 429.055 430.19 435.784 370.861 425.053 431.164 454.406 441.986 415.473 472.256 442.731 431.897 541.566 397.537 373.077 379.229 502.871 339.913 534.471 436.344 432.101 431.16 422.626 433.265 427.742 432.47 448.427 438.012 428.687 409.924 438.021 403.967 435.861 464.117 446.179 503.413 430.649 462.8 448.84 449.225 414.023 428.795 432.468 430.881 412.92 429.788 469.825 437.532 434.172 454.492 465.722 426.845 469.091 456.622 447.801 249.618 442.034 436.066 446.839 440.144 421.26 467.882 453.541 441.283 378.154 476.214 468.237 440.328 438.652 436.236 442.442 436.788 431.202 443.237 435.873 324.624 416.165 467.822 479.833 457.437 472.023 505.414 455.837 434.145 430.431 319.138 436.302 459.284 430.469 402.246 421.188 426.082 419.177 415.835 415.69 409.809 386.974 356.046 372.112 380.02 386.29 393.806 353.554 405.671 427.665 408.169 409.602 406.133 403.093 410.494 385.112 434.321 401.177 373.306 421.575 395.81 357.513 418.539 417.427 415.395 414.1 415.637 419.675 416.632 420.497 409.255 422.377 417.215 382.657 419.313 409.987 436.485 346.561 363.987 415.379 432.05 441.307 354.723 409.886 402.518 409.576 412.374 423.352 402.893 406.139 426.071 266.126 449.412 393.864 454.527 393.089 420.131 421.62 433.215 388.564 413.213 420.37 427.649 360.313 408.612 416.252 396.918 408.339 408.854 373.368 403.501 256.278 265.724 244.771 207.924 248.309 226.421 224.484 242.635 246.558 221.58 237.053 294.48 158.861 114.957 264.931 256.961 263.175 240.612 242.814 220.306 229.533 203.711 237.533 247.938 459.036 448.29 459.028 453.827 458.576 454.588 442.784 449.331 457.043 453.028 443.936 451.957 278.334 265.164 282.885 226.435 283.754 279.936 262.205 241.798 220.857 221.832 221.578 247.024 188.016 240.011 243.749 249.279 230.129 233.729 253.17 247.877 223.971 242.087 212.515 163.258 222.658 182.551 236.942 198.005 255.32 324.157 159.525 285.894 126.385 281.726 309.702 242.981 216.522 169.635 251.009 152.543 248.947 250.532 270.571 100.079 329.43 292.29 161.184 326.802 225.828 241.704 220.646 233.642 238.151 228.91 234.076 245.295 236.943 247.031 226.846 206.945 234.362 225.474 242.372 234.046 223.289 225.896 240.307 233.303 225.535 243.305 248.303 233.234 253.797 257.057 244.549 254.053 263.856 194.851 231.17 195.967 227.496 82.999 385.069 408.165 302.273 206.055 225.598 216.986 251.004 234.977 162.747 255.85 173.362 406.123 307.962 339.487 170.06 152.217 212.364 237.391 239.622 247.1 231.689 252.271 225.58 248.52 232.126 248.945 230.134 243.906 229.548 223.255 246.023 237.752 229.685 248.267 233.117 214.651 236.435 253.831 230.692 241.588 229.864 -28.1705 -27.0051 -41.8333 -28.7435 -31.4831 -26.6903 235.275 243.472 258.764 237.25 270.353 345.381 64.9039 316.139 209.85 229.748 198.887 198.753 213.78 243.489 243.066 236.854 233.169 238.313 230.369 189.77 351.722 209.649 222.239 335.744 224.145 163.455 220.772 249.91 242.973 234.666 226.584 241.523 255.518 228.913 229.752 227.762 222.274 227.291 211.464 246.48 248.861 228.816 224.415 235.872 220.435 -22.2991 278.595 331.262 288.707 324.924 277.389 307.182 280.755 257.796 256.796 250.244 231.491 245.887 265.802 247.709 282.198 328.173 272.846 310.731 272.162 285.681 308.63 255.076 268.462 247.285 254.337 262.08 255.846 261.283 286.361 294.198 299.822 301.934 316.634 294.619 271.765 254.556 667.206 265.402 639.931 269.095 248.554 662.327 300.562 297.985 340.261 304.205 315.623 333.785 301.033 234.661 281.029 608.787 652.972 255.329 235.548 669.165 293.782 245.145 334.786 285.317 283.389 340.827 271.905 106.741 285.037 251.622 278.12 258.964 192.354 270.559 265.318 350.298 316.478 320.928 246.884 277.024 257.42 129.38 240.74 240.914 255.432 247.331 249.967 258.88 264.679 240.055 254.854 353.08 233.016 269.916 291.211 256.115 292.137 281.695 706.946 343.078 275.393 294.614 297.489 292.334 306.516 267.387 317.907 299.859 241.073 736.521 221.375 668.463 456.1 436.788 441.223 409.191 439.377 444.475 484.989 456.091 415.569 442.192 438.2 442.957 485.58 451.808 461.413 446.984 435.364 433.813 451.573 448.556 443.32 454.396 488.967 386.935 397.621 442.461 446.609 446.734 353.075 436.556 436.456 429.002 432.142 447.581 462.262 415.3 437.754 435.575 440.632 438.38 442.894 445.317 460.251 419.747 602.297 594.978 447.635 489.01 518.072 458.129 431.265 444.073 435.424 379.872 438.807 433.03 179.246 782.506 489.317 642.25 432.235 432.137 520.545 540.899 479.615 434.231 442.301 435.431 441.979 418.298 736.514 706.091 509.29 203.246 475.591 436.29 559.141 436.168 441.437 426.573 443.749 315.1 458.754 441.864 418.485 469.779 428.783 430.734 422.82 583.273 315.722 452.173 415.195 409.236 346.673 427.394 179.351 95.9917 330.879 439.078 350.119 439.073 419.69 431.098 487.432 432.441 479.378 423.325 636.384 416.812 565.528 408.247 465.714 412.816 429.481 416.308 506.651 436.795 425.431 509.22 374.709 538.248 344.294 467.913 533.383 302.742 480.607 436.83 433.288 424.99 387.379 432.51 434.553 362.429 372.59 471.497 714.149 481.793 632.564 249.348 369.792 433.134 411.86 411.784 428.347 411.914 326.18 340.336 496.807 425.499 441.639 274.238 427.869 422.806 421.104 534.685 447.48 416.391 314.723 457.547 455.176 564.551 486.805 213.849 498.168 245.478 557.865 467.283 441.215 395.297 407.828 418.393 432.954 88.164 300.59 271.712 666.264 506.337 521.746 449.652 577.999 360.113 500.673 424.919 504.234 421.673 413.456 433.099 443.67 480.589 424.156 480.096 419.396 317.025 428.912 314.104 211.406 210.972 202.729 191.788 312.74 226.812 207.399 287.193 213.806 207.122 228.127 278.414 82.1925 222.057 231.223 269.265 210.558 252.542 272.226 272.074 261.433 410.903 435.083 434.157 440.714 54.8675 268.705 84.7975 446.598 386.096 434.745 432.742 412.124 432.489 458.127 457.123 482.432 441.231 444.597 455.563 458.019 262.186 200.275 255.471 52.9636 243.445 265.645 246.562 94.1432 128.865 165.397 -47.2403 116.611 254.603 282.006 256.65 296.698 299.492 275.187 230.196 82.0658 268.503 293.984 201.937 180.348 145.2 396.626 449.394 417.143 167.12 396.926 485.884 429.8 499.304 449.643 457.42 419.025 486.754 177.146 233.842 293.099 227.755 284.417 216.355 252.556 253.919 214.259 247.898 245.308 257.948 267.623 183.613 191.38 270.426 246.627 183.331 432.277 445.633 448.814 471.792 458.169 451.483 453.903 495.692 447.183 450.644 449.534 486.318 481.493 224.182 -68.0735 276.403 228.697 217.158 238.102 210.1 227.12 229.126 223.741 227.295 225.942 227.909 225.761 237.77 260.115 94.1124 110.166 234.359 -40.9378 243.721 239.761 245.041 241.563 247.504 241.154 40.7996 79.7677 728.325 40.0743 220.323 281.182 176.802 219.722 193.74 138.646 292.395 233.874 217.781 218.227 449.137 -313.584 -42.8012 164.366 403.792 268.226 191.741 241.552 234.24 243.442 235.181 237.157 225.252 215.944 198.644 235.655 112.577 427.443 272.589 234.366 242.887 280.077 222.53 234.009 245.489 221.079 2.77432 -7.87893 -7.56129 42.0543 66.0878 -67.9354 -61.3181 -69.2107 -52.6254 -35.7093 -33.8838 -31.7068 -31.1537 -38.9744 244.036 275.459 243.538 235.629 241.234 194.128 201.372 312.569 217.311 253.657 220.225 216.813 240.818 254.143 252.962 231.061 252.161 217.248 112.017 204.812 236.801 210.322 45.2837 228.607 270.977 240.159 233.265 233.402 529.163 302.185 133.317 210.494 -17.8565 292.12 297.9 267.123 251.333 264.483 242.347 317.916 242.299 249.926 247.793 241.815 249.761 240.719 243.831 283.527 142.954 175.114 452.614 229.507 228.373 226.314 224.102 187.149 273.315 237.41 232.314 217.117 230.103 246.437 239.244 267.686 246.431 241.881 253.043 208.731 247.21 112.959 112.928 186.557 234.368 130.504 242.049 245.902 246.424 271.503 240.597 231.795 249.277 250.004 247.444 252.109 -0.569797 -0.220823 515.971 408.695 397.581 353.975 428.861 220.255 99.7822 358.911 425.607 442.369 433.663 431.127 378.316 223.659 269.544 416.026 314.046 395.036 313.501 104.491 447.12 163.025 591.247 302.112 382.659 164.451 -216.79 898.172 532.502 423.799 426.332 504.867 428.204 406.869 457.454 591.235 427.129 422.007 474.288 438.79 319.802 641.081 658.99 370.334 386.501 794.06 352.391 421.139 681.093 393.444 422.011 399.846 424.831 382.272 419.487 452.593 452.381 368.148 451.302 421.816 632.268 476.426 533.414 363.096 389.867 401.268 425.771 264.199 412.217 464.953 400.514 391.786 357.336 436.465 493.565 419.893 370.818 376.651 408.709 459.537 397.471 235.337 267.557 417.08 326.982 391.316 480.548 353.865 424.238 406.962 449.205 521.495 426.29 444.673 249.363 432.206 412.76 429.983 510.967 417.58 455.524 430.248 314.028 445.554 490.389 328.769 408.105 635.897 654.769 404.804 613.541 424.757 410.551 439.563 421.82 430.76 346.711 445.845 430.925 578.897 474.095 790.527 242.559 621.373 450.45 436.979 319.887 383.82 537.779 411.831 91.9382 3.79251 431.781 362.325 357.012 495.4 400.581 27.0583 666.335 357.666 492.094 402.667 432.453 391.343 440.39 136.566 406.142 374.172 429.589 423.269 428.211 436.89 410.43 422.066 389.335 451.672 391.08 421.315 424.02 446.092 415.145 155.111 321.816 552.94 434.022 420.985 532.429 380.215 463.149 393.494 423.75 425.404 429.441 421.238 495.756 492.987 395.456 376.16 414.344 490.321 515.203 615.969 419.332 418.709 395.914 422.475 381.424 422.666 412.14 389.59 430.621 485.314 425.644 413.787 413.007 452.627 197.103 260.046 232.745 255.003 268.608 214.054 188.109 226.085 186.838 217.659 218.681 172.686 223.387 312.156 240.934 184.365 295.595 214.638 219.939 231.712 289.657 207.2 28.0388 351.35 164.554 220.197 219.122 235.232 226.288 228.352 213.25 206.621 205.901 202.477 159.195 210.109 177.565 240.339 177.905 0.851497 231.492 229.594 257.2 276.784 205.622 279.547 381.917 398.502 336.207 414.228 269.086 410.784 201.411 230.118 292.879 283.28 200.399 255.137 423.56 418.835 420.616 397.967 410.608 399.222 402.275 168.805 284.1 285.605 318.909 211.012 255.394 276.984 450.873 448.162 418.056 433.336 415.847 419.07 354.658 385.042 278.716 355.325 265.455 258.363 262.112 270.042 253.982 269.706 269.138 286.974 281.483 263.157 273.7 285.998 256.588 291.32 262.995 274.616 289.158 286.896 280.303 271.725 270.469 185.702 248.84 307.155 313.446 275.274 269.731 278.259 265.993 258.745 244.643 304.822 275.809 175.587 164.288 232.025 308.663 224.803 226.133 265.92 293.474 296.591 298.606 280.003 291.193 287.611 311.863 234.761 335.11 425.727 439.502 410.996 471.574 454.956 434.036 310.779 436.826 341.68 385.68 221.943 197.867 385.675 435.859 413.606 382.773 472.731 424.386 380.829 207.538 289.604 6.03937 231.55 239.952 220.421 257.647 253.093 251.818 202.587 271.27 103.535 220.261 134.879 208.075 273.754 282.339 195.256 253.827 243.021 235.189 247.03 258.908 323.331 308.863 -171.263 294.826 173.5 187.623 170.542 402.271 64.1429 253.168 301.989 221.753 278.593 256.431 296.814 368.254 351.018 352.601 328.396 347.509 246.299 410.448 379.093 330.328 357.52 353.943 205.287 408.987 439.809 390.867 146.786 430.386 142.345 253.25 230.524 253.387 192.838 291.435 414.389 391.824 366.384 340.292 391.803 350.985 274.63 319.248 317.391 291.084 331.681 316.648 244.89 150.371 300.342 136.062 207.342 230.495 258.192 152.502 296.509 276.192 274.182 269.779 278.251 286.927 355.142 283.015 277.74 341.548 318.202 380.058 326.237 346.619 242.006 337.34 389.485 347.596 358.295 339.697 204.104 247.215 233.616 250.345 224.912 208.277 316.318 239.249 150.159 283.307 257.426 295.222 267.177 314.041 308.913 267.534 305.07 233.063 306.692 251.895 83.3695 225.622 248.953 -10.4421 105.44 -46.0668 -1.16756 -67.9003 -101.796 -28.7181 -99.0584 5.68953 -1.3225 -26.5116 -0.923428 -1.55223 -0.921573 49.3403 99.5573 -86.9258 53.3851 -25.2769 -1.10936 107.133 -55.941 184.968 -15.0542 -16.4246 -0.198909 -4.8668 6.51808 -18.109 -2.76798 307.344 334.198 295.256 267.095 349.089 312.721 299.246 255.284 255.716 303.843 387.164 258.628 308.18 340.894 341.504 335.834 343.744 312.782 337.743 346.918 298.172 380.411 297.371 261.901 277.386 300.833 272.071 310.222 269.564 181.783 291.778 247.194 293.57 339.858 265.417 257.018 216.081 423.269 297.805 314.548 304.728 309.773 119.287 247.917 290.38 -80.0261 303.537 -180.622 -11.7521 -108.284 19.4133 1.45311 -2.58863 7.49748 6.42711 9.24759 -108.93 -101.307 316.935 -176.312 -137.715 -76.0973 -107.699 11.8999 -34.1188 -70.126 -33.8818 238.813 133.134 255.472 301.089 -138.628 -198.963 -194.559 47.3687 -180.21 -44.3317 -84.1195 -33.8353 -20.7321 2.26015 -121.114 11.9479 -62.1268 -9.17179 253.181 300.479 289.524 279.292 293.501 243.693 129.331 24.8094 587.521 -226.771 357.702 121.419 141.257 223.009 237.444 287.038 219.206 244.258 264.844 551.006 118.571 -8.45978 163.18 175.501 547.622 218.975 242.451 277.357 238.201 288.06 219.272 247.281 277.914 273.829 286.485 129.167 236.741 219.508 421.059 365.178 210.258 190.601 213.126 202.772 191.541 -112.411 287.731 -173.911 -13.2342 -11.7965 -54.4766 -102.807 -4.78087 2.91407 -31.9594 -14.2943 -20.9026 -4.08269 280.406 -160.555 216.179 -35.3843 -124.269 -44.0872 -9.05053 -41.378 -86.1052 -97.9527 186.213 297.581 278.797 267.544 -67.0628 214.519 242.251 187.756 315.738 241.045 257.411 255.814 218.461 338.242 241.414 201.22 259.733 175.214 230.134 240.064 279.738 323.219 311.863 278.694 293.895 279.931 263.626 286.093 310.534 276.939 115.273 410.418 291.505 234.749 -159.069 225.833 305.445 162.745 161.977 283.147 218.866 35.9728 214.195 251.782 202.191 198.553 244.744 116.764 -169.515 -116.596 -44.3209 -6.39416 20.6155 16.2243 -0.68363 22.7188 18.2741 -0.347498 10.3655 4.33337 7.78663 -0.730514 10.6725 0.690111 11.2742 346.289 267.463 18.9126 159.889 -18.6395 188.168 261.621 94.3151 142.909 159.876 57.1593 242.995 78.3907 188.687 -58.4006 -20.3423 -35.7528 -0.152342 451.401 424.134 422.828 476.129 427.096 416.576 415.032 407.966 404.765 421.857 418.895 421.957 416.296 412.434 458.343 341.37 410.971 387.068 383.032 408.059 482.575 442.178 404.226 432.221 392.967 383.906 407.045 384.89 429.091 427.508 423.273 378.544 425.376 415.511 429.253 413.302 422.606 420.811 409.746 423.267 357.899 412.03 371.705 388.568 388.843 442.88 348.46 334.009 345.711 429.586 430.071 428.959 428.315 429.824 429.81 428.33 476.589 423.073 479.756 450.684 417.021 430.854 440.602 323.304 397.33 460.376 359.729 453.724 391.696 403.594 419.967 426.699 428.631 426.339 431.953 425.125 425.226 419.373 384.92 326.973 408.55 417.088 477.483 438.677 420.732 427.586 426.001 430.16 428.153 457.92 425.024 409.331 399.454 390.612 401.568 343.447 421.712 468.031 423.388 425.463 428.969 415.672 424.765 332.334 428.291 377.557 429.39 405.457 422.189 474.563 422.75 375.616 377.904 410.218 426.226 439.337 445.545 406.715 352.824 396.909 428.854 424.627 429.47 416.482 425.79 436.176 445.823 467.657 371.456 355.391 387.357 395.948 365.343 400.407 430.847 424.371 428.9 463.695 469.488 444.14 404.56 363.68 417.628 412.615 428.992 449.882 362.946 419.961 429.659 424.848 419.268 426.655 450.891 416.697 421.334 358.787 426.32 424.863 369.661 415.122 428.825 400.584 406.699 399.955 464.345 460.737 364.102 365.649 408.454 464.402 413.292 394.64 354.08 414.557 421.01 421.571 429.483 425.833 428.057 425.704 425.418 429.241 469.756 404.467 357.55 419.208 410.967 421.259 406.772 435.18 429.305 427.97 424.383 420.16 427.795 416.118 418.449 425.518 469.472 426.241 417.501 426.438 422.694 310.321 333.782 306.902 302.436 271.097 298.049 287.512 307.965 297.968 290.432 315.42 199.134 326.856 391.726 304.341 290.641 348.046 301.083 306.915 304.422 308.912 303.83 307.478 305.386 299.534 316.311 306.119 297.123 324.83 311.149 274.804 285.446 252.695 282.871 302.806 312.481 366.803 386.249 407.249 355.643 326.938 295.902 389.495 302.562 363.182 370.672 373.301 398.093 383.888 384.78 395.131 363.185 320.713 214.223 381.095 319.069 367.014 364.535 147.091 317.222 299.121 335.124 239.6 297.267 348.438 235.469 342.616 299.973 297.171 331.897 284.427 305.418 302.293 304.131 301.922 306.038 300.526 306.332 -102.449 346.308 -101.843 -73.4134 272.993 311.269 310.767 312.987 307.944 344.455 294.86 276.383 296.671 275.587 302.19 301.165 289.442 286.944 338.391 257.699 197.064 299.028 198.818 232.086 241.524 258.423 206.272 382.692 291.514 367.321 215.963 432.726 229.217 440.191 198.685 242.125 456.681 374.035 411.759 415.138 413.116 415.986 441.42 157.053 310.927 297.701 273.874 269.199 191.306 259.508 342.542 438.283 132.387 432.271 448.87 252.835 421.178 418.938 262.124 242.69 293.203 261.185 258.842 264.036 230.507 226.802 353.664 248.377 342.56 401.055 207.436 195.96 278.628 285.172 284.564 264.266 252.095 278.467 240.907 292.592 325.784 267.712 257.223 186.147 257.492 335.733 109.074 224.924 244.705 279.145 279.221 265.162 264.849 264 267.268 186.64 275.836 267.215 231.366 283.462 442.26 408.632 429.807 433.226 423.354 453.909 422.038 429.259 388.585 422 416.417 406.858 430.547 409.687 432.417 386.565 384.641 419.256 398.734 449.151 413.723 434.175 432.439 444.917 263.83 239.915 278.312 422.104 421.152 409.713 392.965 420.308 402.39 303.756 311.954 311.826 298.457 280.019 308.481 304.591 284.809 284.734 302.322 295.343 297.413 286.507 290.822 287.772 297.727 305.721 291.437 294.633 298.175 277.661 295.925 274.551 281.191 287.515 282.368 188.378 278.804 314.162 204.757 232.088 256.002 -53.068 -108.516 -149.535 -224.163 -133.823 -119.011 -102.229 24.5012 -131.494 51.7835 -69.929 61.0771 75.1126 111.712 10.2945 17.7047 57.5676 164.264 -158.243 24.8666 20.5502 -90.8591 125.442 99.442 223.043 -59.8783 153.579 95.693 23.6443 211.277 -34.5909 22.1796 10.6258 8.56749 345.098 338.176 355.27 387.51 336.849 353.412 355.604 311.272 275.671 304.617 298.215 314.744 -31.1455 -41.5131 -27.8043 -29.8568 -37.8702 -36.6827 -24.9416 -56.1018 322.7 -45.1618 -45.7915 322.219 293.955 247.517 -23.8464 299.692 324.654 325.321 310.532 316.16 314.669 315.05 325.163 -25.0144 -32.8394 -35.4017 -20.7791 332.406 283.703 -1.84694 -2.51112 -5.08777 -7.215 -0.0306241 -9.01982 283.434 -16.2893 -13.1756 227.152 -43.6738 1.70071 311.814 376.128 354.921 407.447 337.915 378.157 307.357 295.438 259.819 239.714 195.313 270.427 246.857 280.674 274.244 273.893 337.064 238.387 309.563 316.214 331.987 288.045 277.385 208.953 237.873 203.911 298.774 316.483 341.062 218.211 327.651 316.7 307.342 329.11 290.273 314.878 275.408 287.628 315.048 253.489 297.877 209.969 56.7569 179.253 125.436 -72.3359 366.571 -71.8308 -80.8975 -27.3316 6.06625 -2.05072 8.51144 -16.5658 0.380405 -59.4676 -76.7215 -186.527 -33.0696 -56.8208 -62.8126 -66.0389 30.6037 -51.2204 -73.5934 -39.5976 -21.8417 -51.989 326.171 245.527 285.421 336.486 -116.214 -184.538 -178.276 52.2929 -156.475 -75.4169 -29.6515 -39.7791 -57.0637 -2.36188 -16.451 -24.151 -68.7835 -7.00544 226.293 356.826 388.405 335.334 295.032 295.48 306.77 316.799 303.028 313.18 192.607 295.268 218.354 -100.85 244.198 272.929 229.663 296.486 112.026 -293.907 176.863 119.811 203.048 -247.829 216.207 -90.2692 -108.741 -72.939 -75.5772 -88.9045 -110.055 1.22478 -0.53167 1.95232 1.10775 0.41438 -27.3619 43.6327 -74.6335 -81.2879 71.1695 -77.07 57.2371 221.353 11.5083 -2.93921 193.599 -4.53252 -7.52974 -3.12679 -77.886 -62.8981 -25.0013 -71.2964 -76.7684 -46.0295 226.071 248.095 323.719 172.648 309.536 103.159 291.045 294.639 349.932 313.188 348.478 244.881 370.099 327.905 -89.1347 -56.6743 -157.14 153.897 213.07 251.789 79.5124 95.9741 272.955 87.9128 400.276 -59.053 422.898 429.454 387.034 16.0588 -103.496 -59.7319 -48.2828 -63.6242 14.685 -42.4906 396.483 397.743 427.591 424.103 387.698 383.259 430.22 -102.968 -67.091 -105.413 -68.9282 -99.8935 -167.51 -52.9273 -44.695 -67.5381 101.622 274.492 189.812 234.621 112.123 160.502 206.605 -63.7934 434.947 -68.3831 -67.2759 433.576 433.65 433.526 433.754 433.364 -71.6937 -74.2792 -69.7795 -73.1866 -75.1529 -70.7967 -69.9467 433.426 432.595 432.855 433.154 433.115 432.897 433.59 -67.0558 -62.4005 -61.9114 -64.3647 -62.7489 -65.6997 -65.7057 433.808 434.247 433.684 433.623 433.907 433.397 433.987 -72.0576 -74.0571 -75.3448 -70.337 -59.1131 -58.2549 -57.7971 -59.9678 -57.314 -61.1508 -58.0118 -56.7729 -51.0441 -46.5413 -52.2214 -55.8281 -52.6465 -56.8372 -58.1691 -56.7216 -54.2295 -57.7933 -52.1123 -56.2496 -57.5463 -54.2268 -52.9488 -58.9018 -68.2279 -65.0404 -68.6037 -64.8634 -68.6866 -65.451 -67.5191 -68.9044 -76.2278 -75.9509 -68.9756 -71.114 -71.8076 -72.9351 -72.4928 -70.7707 -70.3642 -73.0414 -61.9659 -55.5115 -59.118 -58.5165 435.203 431.65 431.194 434.134 434.055 432.381 435.191 436.945 436.815 436.257 438.78 434.003 438.291 435.615 436.578 435.828 435.671 434.884 436.102 435.922 433.803 432.517 432.931 432.998 432.79 433.903 433.105 434.167 433.77 434.679 433.664 434.195 434.222 433.222 434.156 433.498 434.875 435.818 435.243 435.646 435.296 434.992 -53.2353 -55.4435 -50.9423 -41.318 -80.1714 -54.59 -50.2826 -57.2249 -61.3117 -62.0044 -56.8522 -53.0459 -56.9346 -52.9484 -57.0247 -55.4211 -55.2098 -54.9265 -56.3765 -56.6163 -55.5764 -56.2749 -56.9624 -57.9881 -62.1885 -59.4396 -59.1636 -59.2915 -60.9568 -60.7196 -60.0209 -59.6568 -59.4656 -59.3515 -56.081 -57.5918 -56.6946 -56.6392 -57.0638 -57.9934 -57.8208 -57.4385 -58.0454 -57.3012 -113.038 -107.969 -111.009 -115.892 -107.933 -114.717 -118.142 -115.724 -106.672 -112.258 -111.933 -122.11 442.96 -127.999 438.367 -114.967 432.181 427.612 430.362 -119.311 -120.846 -123.409 -125.046 -123.358 -120.085 -121.416 -93.7971 -100.987 -95.4342 -103.624 -92.5872 -102.162 -95.7613 -91.6135 -87.5906 -93.453 -86.6498 -86.5102 -84.638 -74.4103 -75.9557 -82.3578 -76.7639 -97.3913 -107.362 -101.821 -104.616 -122.497 -125.142 -127.743 -123.85 -125.921 -123.654 -118.326 -116.87 -113.644 -122.972 431.408 431.938 431.245 432.112 431.652 431.176 432.447 432.218 433.054 432.419 432.891 430.269 430.837 430.402 428.598 430.658 429.944 429.315 431.838 432.876 431.047 430.741 431.429 397.691 421.413 435.999 340.385 417.488 424.941 417.285 425.541 426.935 423.851 427.148 425.309 -129.737 -115.076 -116.209 421.633 430.311 441.385 424.838 413.157 436.04 426.753 -130.017 -135.965 -124.312 -95.2499 428.166 -110.104 -105.736 -92.5853 -70.9021 -67.8609 -62.4321 -77.0087 -66.5539 -63.803 -63.6823 -72.0203 -60.8818 -71.0626 -70.36 -85.9492 -96.4514 -90.6971 -90.8359 -79.839 -95.0893 -82.4883 -90.4541 -84.4432 -92.0184 -81.244 -106.921 -98.5899 -111.993 -126.451 -119.775 -113.925 -113.249 -118.69 -117.646 -113.101 -111.953 -116.5 -113.949 -112.882 -118.103 -113.431 -116.413 -106.127 -99.1741 -97.4143 -105.2 -107.441 -96.3989 -104.435 -99.5137 -101.722 -98.3604 -108.801 -95.0687 -79.2204 -87.8973 -83.0656 -82.8126 -91.191 -93.8505 -108.826 -115.562 -112.749 -101.121 -117.173 -103.259 -107.003 -110.44 -117.071 -123.859 -120.999 -119.151 -114.154 -118.609 417.772 433.314 426.51 382.833 370.184 418.758 -116.879 -103.646 -120.69 -117.878 -111.618 -118.152 423.02 -101.916 -122.343 -133.45 -67.8572 -123.38 -107.44 -117.871 -118.495 -113.579 -120.696 -118.374 -114.838 -119.144 -88.804 -80.3755 -91.9906 -77.9651 -99.4964 -94.2846 -80.7089 -86.9365 -91.3354 -95.6278 -83.9758 -90.853 -100.281 -109.223 -102.457 -108.559 -103.333 -110.368 -107.112 -100.238 -110.269 -103.236 -100.11 -123.855 -125.065 -105.095 -114.302 -123.965 -121.735 -45.517 -53.7603 -44.8582 -62.6031 -48.4899 -40.9837 -61.8053 -33.5633 -21.8006 -25.1538 -33.2065 -29.4295 -26.1842 -34.5025 -29.922 -34.3508 -23.5595 -37.6176 -31.1699 -26.1866 -8.87561 -5.86447 -11.2303 -14.3923 -6.22986 -15.0404 -9.0006 -9.63524 -19.2818 -7.95955 -11.987 -6.84652 -12.1692 -15.8907 -74.9128 -69.3489 -54.3434 -58.1242 -25.186 -29.0977 -13.6726 8.55417 8.38789 -5.42127 -7.8843 2.09193 -14.8399 -25.5934 -8.73064 -16.6183 18.4297 22.4643 18.393 16.804 7.12932 3.31878 -15.6425 -25.5411 -25.5844 -14.2693 -32.9227 -13.9757 34.5492 90.9895 -0.476649 -50.8142 -50.5728 -51.4039 -69.7529 -72.8229 -70.1988 -29.0055 -41.4376 -54.304 -34.4192 -49 -56.4625 -84.3214 -57.7974 -126.139 -135.165 -133.456 -146.484 -126.689 -117.594 -128.197 -132.956 -137.043 -95.3433 -113.579 -94.4067 -85.5152 -98.2666 -108.848 -100.249 -101.335 -86.4113 -81.9298 -86.9114 -122.156 -113.893 -114.424 -111.123 -125.881 -142.474 -113.828 -131.167 -98.1341 -98.9635 -99.9594 -117.945 -95.1712 -108.042 -88.8369 -117.013 -112.054 -97.3634 -131.323 -108.346 -121.012 -131.211 -130.03 -133.814 -127.394 -24.6988 -20.5651 -34.7994 -43.5861 -19.405 -20.2247 -14.8814 -21.7258 -17.5531 -65.2913 -65.8787 -57.7227 -43.1215 -53.4067 -45.9118 -51.5822 -44.7865 -58.6603 -42.6101 -27.3083 -27.5455 -30.0426 -32.3463 -28.0976 -25.156 -30.595 -42.9358 -42.3478 -36.0855 -34.6253 -35.1513 9.73986 9.66071 9.4963 8.34823 8.85549 8.86734 9.19837 9.15106 9.25069 4.81511 6.36944 6.31959 7.97581 8.54042 7.97857 8.4231 7.96555 9.05627 7.60316 8.73618 8.98652 7.8235 8.56654 8.9325 9.07588 8.81047 8.59421 1.82214 3.92551 2.22821 -0.283819 1.01749 0.142683 0.884681 1.2186 5.62216 4.27589 2.64647 2.69572 3.05986 6.79995 7.22856 6.80043 7.05849 6.78971 6.79194 7.24528 6.2372 6.26387 6.1186 5.57403 5.52081 6.23685 6.2996 1.90363 0.683575 1.40378 0.641484 1.72828 1.64898 0.891206 3.57597 5.52866 2.78873 4.4329 3.09235 3.35441 5.60002 -4.34417 -4.38062 -4.16384 -1.16811 -0.552271 -1.59323 -0.585598 -1.3453 -1.31863 -0.36315 -1.93368 -2.6172 -2.27222 -2.53659 -2.13108 -2.01506 -2.44357 -1.83417 -1.91614 -1.91154 -0.935147 -1.09341 -0.855834 -0.432253 -0.644808 -0.378165 -0.712533 -0.627004 -1.23308 -1.29204 -0.95594 -0.982375 -0.943672 -2.24867 -2.46377 -2.27154 -2.27304 -2.2077 -2.29628 -2.36384 -1.9811 -1.74585 -2.02855 -1.8052 -1.93818 -2.0506 -1.77497 -0.734571 -0.371075 -0.770036 -0.446726 -0.762028 -0.729901 -0.443204 -1.08835 -1.36025 -1.12731 -1.41667 -1.11985 -1.06965 -1.38574 -9.71877 -10.0132 -11.749 -9.03076 -10.0231 -9.70914 -10.8438 -10.913 -10.1611 -10.3455 -10.7277 -10.8545 -10.745 -11.0443 -10.9549 -10.8343 -9.16208 -9.88746 -9.91699 -10.3283 -10.7056 -10.3524 -10.5141 -10.7484 -10.4122 -8.54404 -7.11883 -7.09587 -7.31939 -6.83759 -6.74362 -5.73654 -5.96508 -5.90677 -6.80816 -6.68642 -6.78409 -8.45171 -7.15979 -7.14877 -6.88416 -7.15813 -6.86154 -6.85579 -7.18452 -6.87823 -5.63564 -6.04089 -6.05526 -6.67004 -6.98446 -6.66482 -6.7082 -7.00851 -6.694 -4.51082 -4.25738 -4.27752 -3.1396 -3.51105 -3.42436 -1.34847 -0.399528 -0.438918 -2.13421 -1.81153 -1.82604 -4.72997 -4.29223 -4.29449 -3.53263 -3.01501 -3.53318 -3.54362 -3.04702 -3.53856 -0.253713 -0.734743 -0.893272 -1.49224 -2.08026 -1.49954 -1.52578 -2.08681 -1.55273 -110.492 -103.152 -104.134 439.155 -105.19 -103.288 -102.293 439.215 439.032 440.13 439.328 438.725 439.652 439.828 -112.141 -108.813 -106.263 -100.96 -98.1159 436.663 437.018 -101.025 438.353 -122.706 -132.14 -132.476 -155.623 -146.453 -153.927 -151.93 -146.732 -155.315 439.574 439.311 439.915 439.327 439.6 439.804 439.216 438.892 438.187 438.214 438.383 438.568 438.459 438.544 -124.448 -134.265 -138.597 -133.243 -145.73 -151.953 -145.961 439.406 439.555 439.228 439.077 439.64 439.204 439.048 -102.543 -96.1422 -92.2416 -96.9111 -95.9551 -102.659 -96.3407 438.837 -104.545 439.527 -110.121 439.272 439.331 440.2 440.102 438.994 441.952 438.431 437.16 437.038 438.503 439.538 -108.442 439.902 439.489 440.376 439.06 -131.522 439.489 -120.257 -129.309 439.25 -146.92 -139.555 -140.623 -144.977 -149.094 -142.986 439.368 -117.784 -125.078 440.004 -126.795 439.607 439.584 -160.634 -161.929 -162.849 -160.24 -162.286 -160.264 -159.439 -159.706 -158.755 -162.345 -157.501 -160.606 -160.903 -156.919 436.503 433.974 436.441 437.397 437.553 437.713 436.851 437.034 438.065 437.195 -159.713 -160.724 -161.993 -160.012 -160.86 -160.539 -159.15 -158.045 -162.513 -159.208 -160.438 -157.343 -159.289 435.748 436.156 436.616 436.51 -150.429 -156.024 -149.775 -154.727 -151.405 -155.586 -148.809 -145.827 -129.362 -144.538 -137.459 -143.968 -147.626 -134.124 433.209 -152.714 431.697 -151.328 423.275 455.14 425.306 -129.11 424.764 -151.011 -156.578 -151.386 -153.796 -150.081 -153.875 -155.215 434.46 431.081 440.034 -164.405 -157.24 -163.078 -160.287 -164.454 -159.516 437.295 437.393 437.744 436.833 437.727 437.212 436.857 -156.811 -161.16 -161.305 436.8 436.255 435.462 436.501 436.538 436.089 436.758 -161.451 -157.692 -161.65 436.637 435.542 435.913 435.005 436.396 435.992 436.078 -164.016 -165.686 -161.662 -165.577 -160.3 -147.735 -147.966 -153.661 -155.556 -147.151 -148.046 -153.54 423.457 419.674 427.719 -138.257 -129.498 -126.826 -138.988 -138.057 -128.096 -139.744 441.518 433.796 436.353 436.348 414.608 -139.327 -136.846 -129.042 -126.906 -138.562 -137.636 -128.903 429.099 433.23 434.669 425.969 -147.386 -154.646 -148.882 -154.196 -148.213 -153.306 -147.952 -90.3216 -81.6282 -80.2388 -69.5545 -91.5097 -80.8006 -102.482 -109.584 -112.628 -99.947 -90.0607 -76.5772 -81.1792 -87.0745 -48.5625 -44.5234 -60.9882 -54.7805 -48.5084 -62.2221 -46.4332 -39.6201 -30.683 -34.5664 -36.2538 -40.4352 -34.1405 -36.2437 -100.702 433.027 422.184 -99.506 431.854 -107.861 -118.737 -112.196 -100.987 -117.534 -100.027 -109.891 -81.5504 -70.5719 -71.192 -78.9319 -109.243 -100.744 -117.295 -112.67 -118.03 -106.373 -102.108 -83.2956 -73.3076 -84.2035 -72.4685 -45.0277 -31.9761 -35.1535 -37.687 -42.7053 -36.5514 -40.4713 -52.8225 -59.7283 -60.2576 -51.257 -53.2897 -60.9246 -52.8928 -60.6399 -12.8848 -19.8583 -21.8403 -17.3788 -13.5154 -21.5665 -15.8186 -17.3835 -21.9429 -23.4783 -17.3368 -24.6861 -17.2465 -17.5495 382.414 432.561 430.772 431.046 429.655 428.133 419.586 387.879 427.855 434.093 431.897 428.7 432.165 375.143 464.002 389.165 362.705 431.761 413.526 408.201 424.946 423.888 484.208 411.665 505.983 405.938 401.903 423.637 429.84 432.989 436.281 428.437 433.223 465.235 429.326 451.187 438.344 453.878 471.242 459.038 437.721 491.656 424.01 428.541 416.204 412.664 339.08 425.811 421.806 428.251 433.481 431.286 434.52 426.818 434.715 434.669 480.178 416.403 419.726 422.767 413.725 431.674 410.642 457.027 476.936 430.368 429.963 423.029 436.098 425.214 457.168 427.179 355.871 411.973 420.648 414.709 413.829 436.722 433.992 428.43 432.294 429.142 432.457 435.533 426.059 432.135 410.911 386.705 423.484 467.357 369.378 438.305 434.023 430.854 433.036 434.67 432.839 419.736 429.929 431.395 428.733 432.333 426.523 432.576 430.801 423.764 423.869 408.993 412.744 424.375 408.545 426.052 431.21 430.091 433.479 432.5 427.63 432.823 429.617 429.499 432.182 429.278 431.096 430.412 431.116 428.923 430.377 431.987 427.843 433.536 428.912 428.23 432.672 426.587 423.119 420.548 425.732 420.973 428.541 426.15 430.723 432.394 432.505 429.995 432.914 431.013 429.467 436.069 430.006 434.096 434.024 433.78 432.567 435.716 474.862 356.259 413.635 337.428 409.422 422.256 396.186 432.817 401.111 425.034 432.487 431.103 357.457 472.592 430.258 431.58 439.518 436.868 436.734 446.838 430.35 440.661 423.124 459.001 421.694 436.072 431.834 422.507 438.366 433.039 423.233 438.087 429.968 436.653 463.712 430.477 433.864 429.532 435.024 430.575 435.529 430.978 296.036 289.754 341.529 307.471 284.101 268.684 298.641 318.505 282.038 316.902 257.853 335.355 314.189 307.174 319.605 324.534 244.238 286.714 329.162 315.304 299.821 312.409 355.621 325.805 332.78 320.001 319.838 293.884 296.14 290.048 311.378 308.377 277.44 308.643 212.308 286.977 318.544 306.973 249.602 277.129 280.99 463.623 433.369 443.288 438.703 442.422 439.373 396.384 275.892 413.67 285.9 444.845 414.425 129.313 440.077 150.942 289.326 287.951 271.209 287.814 294.22 418.813 327.362 143.786 420.139 219.534 251.573 295.232 269.541 234.498 252.034 277.662 269.485 264.684 275.27 296.596 274.553 267.675 259.034 278.821 284.38 259.995 280.414 266.636 258.977 209.751 266.46 318.044 321.878 240.486 123.683 291.366 253.155 271.655 301.501 237.954 253.125 272.134 254.901 260.503 251.165 412.79 368.094 375.95 389.004 412.964 431.754 431.227 411.739 403.496 413.476 425.438 432.92 320.847 330.751 319.818 322.116 323.874 438.284 439.023 433.984 435.841 441.388 426.554 391.72 404.181 403.21 416.212 315.339 318.451 287.961 314.199 317.499 308.671 305.236 302.566 314.242 310.585 299.116 315.479 323.708 327.186 315.392 325.704 314.542 310.64 322.758 335.94 330.646 323.389 333.897 322.624 326.877 322.806 338.358 325.445 269.149 323.927 328.575 315.668 314.885 325.033 335.48 320.272 323.549 320.151 375.2 366.455 355.032 357.486 400.462 406.002 425.217 399.201 301.708 432.98 322.485 400.695 428.451 400.618 432.316 459.114 425.327 443.953 446.524 396.851 298.209 296.295 385.227 407.898 385.273 369.077 420.95 423.594 352.062 412.487 365.637 340.593 314.625 341.198 360.143 305.925 254.34 280.204 299.189 258.711 294.585 303.7 301.109 303.019 295.361 306.959 299.363 251.392 282.047 317.597 312.377 280.991 286.769 316.09 322.857 317.215 236.453 317.686 320.126 202.072 300.531 263.585 308.696 285.314 300.202 308.223 266.532 304.571 300.047 288.27 292.235 306.93 304.351 294.093 292.717 295.02 307.808 298.139 307.618 288.331 298.2 308.406 282.42 290.354 300.625 309.972 269.451 344.691 -53.4491 2.03542 1.54631 2.96289 1.67757 2.52095 1.40746 2.90557 -57.9408 5.03297 -56.7815 2.1313 1.45643 2.36723 1.80519 1.85262 2.46482 1.85069 -113.166 -132.369 -81.7754 1.09107 0.56524 -0.02957 0.551892 11.6829 9.38013 -27.2098 350.583 383.38 339.953 369.207 359.993 366.814 325.974 287.256 266.451 273.8 294.983 296.507 254.656 282.262 297.622 128.87 -306.012 269.123 205.592 233.864 228.287 316.496 276.99 275.065 257.639 272.554 317.652 225.154 -311.596 339.684 213.041 342.274 374.525 376.422 326.515 308.436 370.28 335.724 -68.4208 356.261 -68.1653 -87.7056 -111.171 -68.799 -11.8312 -88.1871 -74.7382 -28.69 -68.2088 24.2088 -90.1081 -220.616 -9.28323 -156.192 -60.3867 -59.3858 3.58325 -5.63012 3.64094 -11.7623 -58.8569 -2.97294 -72.7452 -100.924 -91.734 -98.9594 -55.6205 -83.6133 -103.08 -63.091 383.021 -44.3035 -63.4109 -15.1175 -3.09847 2.85339 -48.5437 -23.2485 -5.38518 141.024 282.13 294.209 5.19136 298.709 -15.4625 134.818 283.92 313.119 309.74 302.083 192.397 -7.10797 369.195 295.094 333.777 308.354 328.646 331.9 308.511 297.242 196.877 282.725 -7.75853 -7.09461 307.47 38.3757 195.303 -289.357 354.195 357.627 -303.834 235.451 60.3742 235.32 89.5552 222.937 186.619 69.4772 84.2159 2.55082 1.99944 2.34622 1.71824 2.20671 4.06676 -2.09655 -3.2326 -2.35896 -76.225 -2.56416 -48.4689 -60.5698 -59.9537 -67.6226 -81.8918 -0.982466 -3.00434 -1.81573 -68.4905 -60.6856 -62.2068 -53.5808 -69.8325 -38.9572 -58.8436 9.10914 35.5065 74.49 266.69 309.177 -10.8814 203.918 130.272 -70.7628 268.852 178.157 261.717 265.474 253.474 188.399 282.263 298.969 324.118 300.781 307.419 313.004 288.519 244.598 237.944 295.251 352.696 216.594 314.39 153.29 286.502 271.26 -32.13 260.332 -68.5024 195.348 244.917 -290.449 338.231 254.897 -301.881 322.65 56.231 263.919 83.5173 238.617 219.671 83.0402 17.7688 25.3573 2.2181 7.27142 26.5402 -77.2063 3.53937 -43.7204 -87.708 -73.3137 -36.7199 -103.813 -82.9513 -33.1706 -200.182 -106.516 -160.517 -47.2573 -56.7884 54.0875 251.37 193.888 -6.32993 218.361 -1.4257 66.9239 -62.4137 -72.8146 -41.4513 -78.3298 -36.2636 -130.644 -31.9797 20.1185 4.96215 35.0779 48.3074 397.849 441.124 473.384 377.02 175.104 540.211 422.245 427.017 434.336 427.367 424.627 425.731 420.874 389.137 409.957 476.502 433.184 459.512 409.412 429.143 418.033 437.553 406.725 379.667 423.506 412.046 346.417 380.924 435.279 436.869 435.587 417.23 438.995 484.979 359.941 463.992 427.254 458.541 417.566 405.319 449.719 500.935 652.342 447.606 445.801 448.935 427.87 731.728 416.808 421.661 427.225 445.694 396.392 432.574 455.657 425.727 410.631 436.729 429.678 463.918 441.226 347.556 504.802 188.246 423.051 443.86 322.044 439.86 566.871 234.741 430.879 609.016 594.79 567.366 375.295 203.981 453.108 433.893 405.765 435.093 447.78 440.273 438.255 220.877 464.564 467.227 701.632 438.363 483.43 438.172 382.562 433.176 420.548 248.348 417.313 201.946 422.006 401.277 444.956 489.761 411.083 521.408 435.735 188.549 540.844 354.039 344.387 612.65 418.87 171.79 873.619 457.142 431.623 442.162 439.926 451.124 444.843 436.397 417.84 394.803 393.581 432.949 689.283 363.234 404.933 460.165 444.567 426.101 442.171 462.084 469.835 449.756 437.231 444.969 386.35 452.92 423.287 449.798 446.806 421.7 444.317 435.26 464.835 434.908 519.556 418.908 174.337 423.209 439.866 403.772 434.843 188.007 399.914 407.343 417.55 330.379 664.523 704.748 408.146 480.995 750.116 407.442 421.099 437.773 722.884 850.881 451.792 533.42 453.132 435.297 450.286 438.972 463.933 483.636 331.844 450.188 310.624 437.437 434.935 429.778 448.43 188.397 444.18 456.57 402.82 453.559 407.998 164.221 590.143 440.908 489.635 448.324 578.7 436.762 485.356 193.327 215.365 228.976 229.327 188.529 241.174 268.933 254.724 247.029 249.166 264.743 244.201 210.995 249.924 264.717 274.487 237.323 278.491 248.03 127.804 206.846 317.174 173.067 183.958 144.254 296.029 243.596 232.086 245.556 251.254 263.822 236.736 221.051 227.519 246.979 241.28 239.536 122.24 261.44 159.511 119.292 195.444 112.537 270.629 369.702 217.187 372.205 230.046 418.483 -29.1245 427.115 333.988 398.305 91.8653 169.917 159.497 178.009 307.166 402.821 408.26 489.467 393.555 391.577 458.626 242.059 229.112 241.564 328.477 190.381 279.429 434.121 436.15 436.897 416.112 426.766 414.246 470.616 243.951 222.464 211.67 223.029 214.568 214.931 204.918 219.539 206.644 230.314 214.914 221.806 289.176 245.59 263.579 188.573 216.211 187.188 223.818 184.603 185.987 -82.9466 127.599 206.384 220.822 233.122 229.642 227.756 225.471 224.305 130.664 237.555 209.351 -153.054 121.629 119.487 220.958 224.034 231.752 229.4 226.261 216.855 232.834 309.041 238.311 169.633 311.506 221.971 308.852 272.46 306.498 401.306 200.111 382.714 118.592 362.76 362.382 377.094 325.013 401.661 383.582 427.525 416.316 435.993 420.355 398.257 395.889 331.579 281.484 272.032 368.222 263.533 355.422 349.982 298.681 431.219 405.084 89.0506 404.463 257.89 345.202 326.369 383.899 290.493 210.759 284.558 311.844 215.505 250.831 309.001 236.193 269.018 276.819 137.801 321.665 252.008 311.25 312.73 291.025 322.813 290.363 294.873 430.563 -277.112 137.787 201.787 -106.569 60.9327 265.086 273.743 303.561 277.207 262.062 233.661 278.106 210.396 198.086 289.014 247.843 214.888 352.662 324.682 327.052 311.477 332.55 313.336 324.527 175.164 140.164 211.59 289.343 156.513 252.915 228.016 444.176 396.322 498.36 390.563 478.439 275.798 420.481 402.141 448.478 377.384 376.586 414.91 310.284 55.4643 401.622 395.339 388.653 235.085 116.089 204.999 167.933 184.003 267.917 308.791 382.827 321.303 209.685 343.75 251.883 237.161 423.361 248.896 282.606 290.944 258.197 260.856 143.532 -156.285 276.561 201.099 279.8 286.14 287.598 308.053 297.084 267.556 296.111 263.362 275.027 440.382 277.932 291.877 273.36 315.527 289.461 213.795 278.563 298.164 326.528 322.158 304.966 335.264 305.405 302.7 -9.6063 238.22 5.70415 0.762159 -4.50159 -6.17334 56.4083 -9.26554 -243.884 -230.807 99.8357 -42.261 1.66185 -1.3013 -3.98346 -42.5944 0.403519 -3.10054 2.81568 -52.9124 4.48145 -30.5728 23.2767 -134.588 54.0643 140.447 -161.687 144.786 21.9786 -24.2554 300.547 -36.9335 -15.6037 -1.30607 -42.9038 6.86123 -14.5309 -5.26366 -31.0911 241.644 264.311 276.169 249.801 275.527 238.81 231.625 223.924 611.998 420.155 251.428 282.891 213.204 232.299 237.915 178.012 128.99 253.658 210.327 40.4652 137.776 316.041 5.80223 148.371 236.125 129.533 204.363 213.042 141.843 135.551 221.728 205.103 -55.2908 202.387 238.499 184.635 155.015 222.007 159.953 223.409 223.811 196.257 226.996 249.489 189.536 59.7021 -36.8771 9.05444 6.32504 51.6223 49.3983 -4.09137 0.519123 -3.60687 40.7265 -1.6639 102.436 202.783 138.991 122.393 130.487 31.8311 74.99 -85.2001 -14.981 80.1827 75.8942 -53.0927 157.642 145.54 60.6468 61.225 77.4315 123.567 78.5607 91.6184 46.3626 109.877 23.8301 4.30183 1.03476 0.138994 23.4011 168.602 152.635 200.569 -43.6324 214.9 -26.1314 189.726 392.712 131.605 224.073 135.277 136.883 215.104 -63.5877 184.839 285.662 432.809 301.748 179.606 794.313 654.845 454.628 237.714 258.01 471.161 517.115 120.016 199.998 238.69 -47.2574 223.582 143.033 -43.225 504.953 195.508 134.679 -178.523 124.38 -15.9413 157.572 203.413 359.129 207.662 238.259 209.116 89.8455 150.769 42.9379 9.44701 32.5159 0.35629 3.55284 8.16981 2.12126 -17.8764 1.74997 -225.943 -31.9352 -266.227 -30.1552 -21.6778 -15.8706 -7.6828 -25.1783 -14.4075 153.864 177.525 184.487 -6.18897 105.089 181.582 37.4357 -22.3041 -10.7052 14.7553 -127.611 -8.72553 -10.0339 2.89845 3.59287 -0.614918 3.83984 0.607282 227.131 203.778 131.001 -42.3995 188.887 200.368 -7.35387 134.789 433.177 620.717 344.254 205.823 513.488 203.522 250.682 206.939 199.908 193.125 223.644 221.546 235.832 218.871 250.875 249.838 253.237 225.774 236.033 178.432 204.327 459.352 156.905 176.791 200.536 180.249 218.128 89.6647 218.575 187.413 -149.698 228.659 246.559 247.906 261.819 232.371 248.935 16.5079 120.339 35.7077 18.2283 27.9004 -12.6492 3.95496 -64.6927 5.46216 -18.4855 -29.5303 -15.8074 -26.0263 -17.3927 -34.4574 -44.1173 -53.8816 -49.7232 -44.2878 -37.8735 -36.629 33.1393 -54.224 -52.5334 -51.751 -1.78927 -10.1345 3.65902 -13.4954 9.39446 -0.141571 7.9502 16.1335 -0.332924 35.8074 4.76141 447.072 441.368 428.306 232.073 436.886 435.237 397.346 353.84 237.694 433.662 439.466 432.571 456.14 510 450.757 438.009 506.309 394.741 420.391 527.657 447.862 452.242 314.203 319.737 428.499 560.131 381.953 434.222 428.335 431.21 440.772 480.419 436.373 446.474 343.427 436.824 436.096 435.014 394.02 435.258 454.457 412.73 445.926 345.081 479.323 442.739 490.786 450.614 344.132 459.071 435.084 307.181 411.386 442.022 430.111 357.28 415.671 327.418 492.859 494.694 393.053 529.24 465.648 411.903 380.818 420.175 412.321 362.627 413.626 416.316 418.527 376.908 403.97 383.693 401.103 450.45 397.362 458.597 424.386 451.258 424.254 354.105 387.936 430.852 461.401 441.839 408.616 317.851 485.57 383.364 624.456 424.526 409.763 425.136 399.804 435.185 406.45 415.446 251.385 428.261 469.012 433.419 395.156 415.937 463.518 296.429 431.06 478.253 523.387 421.646 523.394 428.279 527.678 447.203 453.313 434.825 484.026 441.406 495.72 514.407 455.92 457.111 367.413 423.543 494.965 440.784 226.14 430.546 430.957 432.384 143.612 415.774 421.473 506.593 515.682 519.461 452.727 562.249 440.604 609.141 449.388 430.437 431.495 416.206 438.275 428.359 473.948 434.934 461.416 412.821 434.593 428.66 543.384 429.109 401.725 359.378 363.833 392.171 399.403 353.271 391.884 410.037 412.054 430.987 243.656 424.672 390.991 426.608 408.691 404.278 413.65 417.282 420.402 404.401 409.088 429.3 466.523 419.005 450.267 452.651 449.351 402.077 410.775 412.875 404.981 415.421 406.13 420.598 408.058 417.491 429.988 388.204 418.853 435.857 422.82 423.156 221.449 212.873 298.636 239.29 216.509 225.492 231.12 218.314 237.168 203.825 242.087 254.168 209.836 228.717 220.245 230.029 239.793 224.999 228.573 197.076 244.238 225.837 453.663 460.975 445.796 186.297 171.23 81.3426 306.388 329.294 273.972 212.529 321.189 155.766 445.325 373.579 418.639 162.249 184.552 188.903 236.648 193.973 184.019 164.35 187.943 257.111 276.339 267.81 240.683 267.509 199.099 235.568 245.433 254.169 241.66 248.711 243.36 233.648 254.819 240.7 224.686 207.647 241.859 190.658 224.325 210.529 207.622 246.66 195.679 236.256 237.615 459.487 482.725 461.709 463.845 444.186 431.758 480.507 458.193 462.247 433.07 461.521 239.627 238.647 249.639 217.284 248.441 241.42 237.107 253.226 252.689 230.022 217.37 240.201 219.281 242.375 234.521 222.144 257.45 262.357 233.042 244.294 221.595 246.173 232.765 246.554 236.586 152.33 181.822 136.485 193.215 249.479 323.538 311.413 286.585 320.548 222.504 278.22 63.3475 311.091 402.702 311.185 132.689 235.041 285.607 247.856 248.97 235.544 256.655 243.227 73.4169 316.318 412.393 315.278 104.414 237.277 194.058 257.267 239.363 180.074 229.575 251.175 152.561 222.265 207.045 184.053 223.087 206.769 227.493 213.793 251.023 261.747 272.484 261.443 257.027 253.445 255.659 227.922 224.577 234.968 244.462 232.675 225.437 235.588 264.913 251.96 242.404 235.978 247.587 238.199 236.027 246.421 241.367 241.331 240.077 247.727 237.71 239.763 224.971 251.589 243.219 243.516 229.926 247.071 221.807 224.751 213.949 229.354 159.689 161.248 -11.4549 -22.6343 137.684 150.418 259.77 244.472 242.364 241.313 202.58 329.654 180.315 184.751 236.531 284.522 233.226 262.313 256.997 301.827 271.373 263.988 253.663 266.327 235.194 252.938 258.847 253.473 256.288 262.618 238.319 250.322 252.73 263.001 249.556 254.86 144.944 106.179 302.89 244.295 214.472 269.665 307.718 316.904 269.246 271.824 324.438 259.926 263.881 301.089 241.084 752.564 190.344 701.411 227.173 181.979 751.02 280.688 283.438 286.678 237.551 287.612 323.504 252.018 240.606 247.436 243.094 238.893 266.43 227.038 306.037 371.357 217.61 236.127 241.9 229.137 244.748 256.48 256.674 266.444 253.832 240.084 262.569 240.696 225.621 247.069 244.073 233.403 239.36 269.849 230.757 230.809 226.944 224.696 229.833 241.123 183.224 231.94 241.176 241.688 234.202 235.285 246.62 248.679 257.821 244.957 249.485 260.729 -22.5154 -23.7604 -40.3026 -43.1321 -23.5054 -27.8071 -28.4298 -28.3421 281.047 254.251 348.59 262.524 275.362 326.464 271.69 261.889 264.058 264.262 252.298 268.737 269.017 249.241 233.726 313.934 244.528 245.306 175.72 270.116 260.395 240.621 272.224 266.739 259.33 275.056 259.59 289.714 318.645 281.709 305.22 278.093 308.71 283.898 277.728 290.042 324.736 269.696 323.677 292.171 339.633 295.092 320.845 281.691 269.058 656.032 215.584 701.16 229.614 278.829 578.917 270.004 594.629 290.537 612.589 356.719 294.708 254.016 290.379 338.081 288.774 274.165 319.392 286.315 276.696 280.981 256.256 686.917 220.621 596.454 406.545 406.392 403.416 404.305 406.618 405.98 402.394 407.218 400.171 404.552 403.331 406.693 408.879 403.827 403.743 402.81 399.554 399.917 399.972 403.242 403.188 408.03 407.008 407.679 403.542 407.356 406.763 406.871 405.799 407.406 404.837 401.548 408.168 406.003 402.999 408.145 412.037 411.741 406.425 406.87 411.462 407.825 410.232 408.378 414.337 411.679 411.787 407.558 412.925 403.979 398.485 398.117 401.913 402.052 402.383 402.052 408.907 412.088 402.125 410.623 408.667 405.116 415.245 407.352 403.758 408.153 402.722 407.819 407.691 404.348 411.794 415.424 413.166 407.986 407.365 414.876 412.696 410.061 402.078 408.714 406.039 407.925 406.624 410.661 422.841 423.169 422.435 420.479 423.864 422.064 421.385 422.546 422.98 423.172 421.297 422.558 422.254 422.173 422.745 420.985 422.393 422.347 423.151 421.802 421.81 423.079 421.409 425.319 423.375 422.184 421.983 422.412 419.589 420.594 419.097 420.847 420.096 419.56 419.875 417.103 416.588 416.885 417.819 418.946 415.186 419.087 418.364 417.281 417.327 416.189 418.701 416.441 418.487 418.973 421.053 421.182 419.84 420.606 420.16 421.178 422.4 420.312 423.452 421.07 422.713 414.047 420.791 420.42 419.232 421.085 419.762 420.195 420.452 419.27 420.468 420.126 420.665 418.064 421.061 421.138 420.384 421.418 420.369 421.026 420.345 420.67 421.115 419.649 420.561 420.839 421.803 418.336 426.268 419.42 419.258 421.044 421.546 420.485 420.171 420.766 422.607 419.157 419.124 418.069 417.195 419.888 419.595 417.59 418.291 420.788 419.999 421.444 421.058 420.945 421.692 420.124 419.411 421.14 423.183 423.95 422.358 427.036 421.994 421.519 421.696 423.153 421.245 422.37 421.618 421.057 420.183 423.434 422.687 421.837 423.31 421.689 420.892 421.061 421.657 423.757 422.55 423.706 422.24 422.041 418.134 420.094 422.565 419.543 424.911 417.951 419.655 420.175 421.217 420.371 422.248 419.646 422.554 420.407 403.273 404.668 412.98 397.753 408.027 413.065 410.108 397.565 399.638 412.951 400.455 403.014 403.95 393.219 396.751 398.588 412.569 398.016 407.52 405.001 391.326 244.005 223.215 225.036 221.626 248.233 231.617 234.88 258.932 261.194 258.038 279.129 267.766 246.295 267.676 258.407 261.242 255.961 272.051 265.414 240.94 264.568 251.691 269.664 252.312 253.266 254.43 246.31 263.957 248.713 265.902 241.204 248.662 248.76 244.899 259.702 276.584 272.241 264.473 274.734 268.843 271.783 278.266 250.864 283.095 267.835 277.489 265.397 249.015 326.247 401.717 398.891 395.272 401.338 396.085 404.028 401.139 407.939 412.402 406.726 412.542 412.312 408.872 406.597 401.035 397.155 398.791 401.756 396.657 402.047 401.564 407.906 405.237 412.72 411.835 412.697 408.3 405.41 394.701 393.856 394.608 390.653 392.296 394.844 397.94 400.113 402.068 403.222 403 403.193 402.16 399.697 393.549 400.769 401.535 396.592 397.22 400.551 390.816 392.437 398.714 402.106 400.377 397.834 395.989 399.583 400.455 396.058 401.25 401.62 402.304 397.127 405.381 405.227 400.677 395.946 395.904 402.496 402.259 398.32 409.917 413.67 413.322 411.547 409.481 413.624 410.828 405.384 408.013 404.494 398.545 399.324 407.233 406.189 407.695 407.044 412.956 413.26 408.583 406.441 412.391 404.733 401.366 408.025 403.45 405.238 399.676 406.277 420.685 414.833 420.687 418.426 420.266 420.274 418.116 420.1 420.017 419.734 420.886 420.878 419.786 419.781 420.828 418.08 419.239 419.48 417.12 420.171 419.373 420.573 421.267 420.667 418.716 421.247 419.476 419.363 419.302 424.139 418.469 412.855 418.04 418.467 419.312 418.68 421.246 419.637 419.666 419.615 420.123 418.253 417.735 416.144 416.425 417.374 416.775 417.791 417.388 419.259 418.565 418.115 418.935 418.708 418.236 419.547 417.923 419.618 417.304 417.467 416.838 418.793 419.144 418.833 420.207 418.23 417.307 419.027 418.864 417.83 410.647 414.544 411.881 410.119 417.297 412.423 406.645 282.293 264.018 260.331 260.814 270.518 264.626 273.985 261.202 244.536 255.397 256.304 255.637 267.929 250.889 418.976 417.54 418.676 419.598 419.731 418.248 418.161 422.314 421.36 422.081 419.885 422.241 422.076 417.809 418.657 418.452 418.275 418.885 418.89 418.192 418.804 418.186 417.052 418.141 418.365 418.454 418.634 417.483 417.488 418.335 419.428 419.128 419.055 417.857 418.367 418.352 424.776 420.867 420.557 420.328 419.31 419.42 417.971 405.521 415.302 408.462 399.585 415.93 405.991 401.789 406.644 416.353 407.134 412.277 407.752 398.636 390.402 593.364 376.859 296.186 416.543 399.31 420.787 412.488 421.629 418.914 453.474 410.341 430.883 489.253 398.618 404.803 402.691 393.138 404.935 396.674 400.087 397.64 374.622 396.259 362.078 377.866 388.804 386.195 411.862 414.273 459.006 436.733 338.304 426.705 473.018 497.756 375.318 434.106 417.414 335.245 421.239 421.11 377.351 425.417 424.872 432.655 408.063 426.311 432.785 350.213 451.091 445.512 485.676 406.469 562.832 422.963 433.092 419.454 400.626 416.94 310.589 364.442 427.96 416.568 465.528 371.507 440.996 329.255 423.849 422.86 410.362 435.808 431.413 436.902 426.141 460.391 445.038 412.778 449.879 441.693 418.727 484.762 425.372 419.746 437.873 443.527 549.635 591.543 423.602 460.386 474.728 348.257 357.546 421.675 383.213 407.007 238.41 360.079 428.893 386.315 425.86 419.552 429.03 402.719 379.522 375.534 445.504 502.578 438.272 420.894 435.148 466.18 441.487 447.179 285.262 422.542 420.249 429.829 234.531 412.017 427.27 417.989 412.329 417.887 427.73 265.78 224.688 220.394 237.514 228.937 224.381 222.796 235.507 230.19 226.677 211.95 245.208 226.028 218.878 242.863 227.824 195.406 194.674 214.778 225.172 256.143 258.879 255.795 245.634 255.114 242.79 220.088 213.26 235.939 243.038 251.491 258.488 233.085 250.986 237.643 221.489 249.286 237.947 232.504 213.695 231.188 250.728 453.892 449.356 456.292 445.386 433.04 459.664 448.01 399.078 430.196 452.579 279.068 233.288 322.258 229.239 218.416 256.827 234.152 239.301 291.439 244.034 254.831 249.02 215.294 232.748 261.205 103.817 262.073 251.617 214.518 245.794 264.008 249.45 238.676 285.597 317.134 376.144 269.563 293.964 322.564 260.345 293.92 224.728 345.244 292.096 290.177 324.252 253.053 258.392 250.099 255.925 255.9 272.65 250.682 242.218 241.504 246.933 233.203 238.216 244.628 245.215 234.032 249.695 246.668 238.853 255.888 263.871 247.588 256.725 242.808 249.624 247.331 235.254 257.06 228.476 243.848 244.438 245.752 250.794 260.433 248.688 253.074 245.504 121.639 212.974 158.666 456.992 426.259 443.117 384.718 333.54 138.758 413.36 150.61 52.0315 397.28 295.634 415.021 102.739 225.485 175.318 183.727 223.236 214.382 218.682 237.809 183.445 137.127 209.839 214.452 200.338 235.525 192.554 205.909 227.014 229.343 162.621 239.975 195.363 211.582 217.346 179.235 226.061 230.892 231.24 339.672 297.707 299.359 342.698 283.327 339.3 342.128 263.647 338.978 288.402 299.318 293.021 300.461 256.636 271.012 672.396 316.369 292.438 282.993 278.269 661.773 591.645 259.771 306.339 634.822 261.135 269.826 262.339 251.412 218.317 316.583 274.769 333.353 256.978 243.826 280.227 260.789 245.093 262.21 247.384 258.35 266.683 234.097 225.713 229.17 234.85 259.455 225.404 225.223 273.274 256.676 267.975 282.18 263.691 277.32 223.482 227.915 236.78 256.394 188.842 202.642 224.074 255.063 260.727 254.132 241.077 248.316 249.8 276.452 311.705 290.419 322.33 279.263 321.497 270.345 264.773 252.148 253.688 250.929 266.421 260.653 249.903 248.122 312.003 299.672 333.587 326.203 320.673 231.227 259.446 243.205 708.717 684.467 296.696 195.233 648.366 238.978 279.446 349.399 245.794 256.121 218.331 186.972 218.228 229.288 230.566 222.824 200.688 177.815 199.095 270.033 254.617 72.1961 233.522 315.175 236.58 227.138 234.246 225.144 218.261 229.503 202.585 265.709 226.703 215.792 234.676 246.375 261.766 242.484 256.667 233.787 228.588 337.884 256.983 247.459 246.24 311.696 325.264 296.534 -2.60487 290.886 669.456 289.724 304.996 295.205 298.958 262.988 710.651 249.715 290.512 427.177 439.56 486.538 421.697 428.432 459.33 479.906 416.915 433.144 436.317 437.056 433.607 437.572 611.75 416.538 406.736 406.4 614.195 458.238 440.044 483.727 444.064 429.598 417.539 517.137 464.87 370.058 488.986 424.129 435.194 442.335 433.05 472.018 396.131 370.117 433.875 433.482 414.975 428.567 442.534 415.287 219.584 670.264 350.192 372.903 434.234 414.326 403.62 430.122 430.372 438.954 425.912 451.137 428.586 400.62 439.166 413.079 513.297 414.925 456.195 446.971 473.921 373.44 381.937 388.602 431.887 155.564 413.484 469.936 388.898 335.073 416.546 543.288 448.951 312.469 664.926 421.984 415.181 435.73 416.029 401.285 311.761 425.05 432.159 508.138 380.176 439.553 418.973 443.112 413.024 444.311 423.961 430.531 238.351 430.301 436.055 519.96 325.356 442.697 193.705 421.68 494.057 439.295 394.556 417.173 405.944 450.747 441.509 393.344 440.416 431.803 442.788 418.034 438.231 434.058 462.304 438.172 393.15 433.64 467.086 778.847 323.277 433.773 669.576 289.523 414.527 441.278 435.458 435.945 417.893 443.989 433.268 394.018 510.202 477.009 433.64 594.935 315.668 426.462 430.293 438.206 431.453 403.374 445.979 431.882 400.546 434.873 338.151 427.576 433.506 416.041 452.9 431.749 402.666 340.255 442.404 160.805 416.232 364.297 355.343 435.125 522.152 851.064 381.958 666.559 741.401 309.004 469.855 427.235 428.563 430.866 435.101 433.324 432.211 402.97 433.679 441.943 419.725 436.161 422.036 380.379 433.406 429.408 380.47 432.107 431.553 432.451 448.343 444.252 433.39 288.956 427.103 486.415 438.914 417.2 271.64 288.055 289.165 271.568 256.141 247.528 296.936 315.905 206.763 85.3066 314.525 211.913 247.631 252.541 165.586 240.158 262.064 238.319 265.332 239.569 247.431 220.609 255.801 254.861 274.044 274.949 131.576 215.38 259.152 304.78 120.924 392.405 396.673 462.488 423.449 400.352 430.385 398.732 391.382 400.943 358.009 351.271 465.136 332.176 356.946 426.313 298.968 395.465 375.076 238.854 356.429 342.501 404.77 463.253 331.313 400.63 267.715 260.416 333.121 127.604 275.353 325.447 139.244 288.811 304.077 187.209 302.482 230.379 202.394 207.526 129.435 206.798 291.445 244.48 255.624 245.46 225.191 256.306 264.738 247.328 144.897 231.898 244.523 232.907 188.472 249.91 265.703 212.927 230.953 245.612 231.309 273.167 259.082 285.161 300.634 287.511 137.316 299.995 260.926 255.074 248.322 241.669 259.495 419.944 444.784 445.82 450.705 451.604 436.526 461.8 450.087 431.786 441.971 418.074 442.272 462.667 452.53 420.74 454.087 424.757 432.051 415.26 209.71 204.085 211.097 205.706 222.41 69.9033 233.917 169.101 233.021 247.008 204.246 216.958 60.0898 96.468 191.863 206.536 356.755 192.626 213.311 205.446 184.63 400.569 243.032 273.215 214.115 203.975 201.754 213.587 204.689 210.611 379.919 148.26 403.456 422.201 427.673 430.225 470.634 416.939 445.073 406.732 274.954 432.624 419.783 382.111 362.583 329.393 228.42 341.049 296.762 363.886 323.732 214.182 422.231 475.359 460.11 400.895 401.651 470.418 423.747 387.185 250.523 369.274 284.648 228.021 353.668 315.495 23.5831 206.564 204.519 195.527 196.531 198.024 230.333 175.804 263.013 206.796 227.755 207.495 202.556 285.408 -11.6175 231.915 198.692 114.805 283.923 249.079 260.807 259.366 252.604 179.724 217.789 213.755 413.414 216.141 263.384 233.936 238.361 225.262 247.16 219.637 251.17 241.486 213.575 204.657 212.724 195.302 227.531 240.488 -40.9771 -32.0244 257.908 2.83088 206.648 197.667 153.385 219.638 5.85236 193.029 215.302 213.224 279.805 81.1486 149.459 246.059 208.362 240.24 245.601 311.997 -263.859 232.833 261.339 232.105 296.862 247.516 313.427 273.575 234.381 246.728 243.724 255.778 237.281 253.365 222.371 246.454 200.698 247.975 346.304 199.325 208.919 302.063 206.203 147.653 201.043 93.4794 246.728 165.481 39.1779 211.72 92.7373 114.626 152.149 137.286 103.548 62.6133 131.664 7.65289 -7.87329 14.8237 9.62203 -5.35733 41.6268 -27.0955 -54.7317 31.3118 -60.8758 28.5875 7.95646 -0.042961 0.0315778 -5.50371 2.53208 35.0874 62.5698 63.1054 26.0773 1.9368 138.354 240.671 139.551 104.1 152.257 0.267924 -4.16251 1.33611 240.249 228.139 226.005 244.321 211.788 239.498 239.097 163.366 97.7903 295.482 286.274 275.701 180.998 89.0322 238.776 229.718 226.711 242.209 248.628 249.518 4.58451 387.514 229.121 215.248 284.539 309.076 236.458 245.376 223.126 231.548 242.993 187.589 183.399 -34.2599 569.722 135.417 368.383 256.698 233.326 241.447 206.659 225.265 244.69 227.072 -82.9524 -6.30172 4.76945 -11.7128 -1.69129 -99.7537 -200.773 -55.5092 -20.9487 0.549931 -76.0225 -11.2502 -66.5131 -33.2531 260.893 241.442 235.295 250.853 240.884 236.626 273.475 244.266 281.899 228.031 257.23 242.828 248.255 264.213 231.521 233.336 321.755 210.231 240.093 309.491 201.713 255.478 197.003 -264.722 53.0865 240.796 198.179 223.791 230.981 209.248 586.038 298.513 231.725 257.788 283.345 287.18 286.56 266.732 300.311 280.119 233.301 179.417 3.10869 212.938 166.401 -7.42108 190.901 -42.0703 -52.1522 -24.6288 -8.24665 -24.159 -50.6729 -82.5 -50.2358 1.13413 -87.9106 -20.0311 114.99 -107.615 32.8032 -141.799 -6.1326 75.658 -21.5307 -2.77977 -137.725 -15.6268 -37.1782 -20.9532 -127.689 -55.0597 14.9093 -106.255 -82.361 46.2819 -41.8816 -15.8618 -2.86922 -54.3578 -6.90747 -49.9861 -55.5569 426.778 430.965 427.273 413.053 428.45 465.86 421.772 421.126 410.507 420.644 425.486 423.074 406.379 421.902 393.334 410.329 451.916 341.867 310.705 420.758 457.319 431.578 373.699 442.357 440.743 390.645 443.047 449.123 406.789 428.978 425.203 465.175 426.656 421.241 432.408 424.254 428.158 426.901 409.462 426.779 408.299 425.054 449.73 324.395 352.789 396.322 375.93 423.981 408.696 420.06 431.688 480.082 438.439 461.962 428.249 493.49 429.393 398.227 371.46 387.571 415.382 485.466 390.619 435.321 432.017 429.733 432.118 414.066 431.409 477.084 406.228 404.539 422.262 401.08 405.959 410.096 313.256 429.918 429.048 404.693 427.428 361.672 403.946 430.329 358.505 343.894 362.666 414.392 416.875 392.611 398.325 422.916 428.475 425.976 465.236 428.752 420.261 411.256 444.635 429.537 460.397 425.544 426.698 432.05 422.222 514.844 366.016 375.193 388.465 387.512 465.047 376.336 414.335 423.806 427.55 425.145 403.339 428.31 411.112 412.156 408.996 366.042 355.349 395.052 370.575 342.172 441.901 429.917 467.279 446.491 416.203 434.845 431.433 467.378 374.688 370.655 401.218 404.684 448.285 402.346 472.657 428.623 439.815 506.819 433.084 463.425 481.913 383.862 425.19 464.557 415.742 432.567 363.527 418.808 416.757 417.011 427.645 414.022 407.933 422.544 419.473 399.732 405.681 402.673 380.448 352.605 416.19 384.423 412.892 422.68 427.178 424.002 424.924 419.435 408.362 409.864 342.841 434.297 425.816 372.256 389.288 431.376 413.051 424.413 410.379 426.507 359.271 421.89 420.134 410.059 422.333 494.968 435.662 404.029 424.34 488.462 299.871 278.309 277.379 289.046 281.927 265.887 260.106 257.154 275.684 256.867 256.214 291.654 265.169 292.555 316.869 290.638 290.479 302.93 284.977 300.772 280.387 374.314 299.555 296.312 274.925 328.068 273.63 271.026 266.463 281.935 235.192 282.692 258.772 285.701 224.301 287.407 281.838 304.615 297.049 242.233 308.281 313.066 236.301 310.964 300.84 397.839 393.282 389.929 313.853 386.916 383.357 437.354 435.433 445.97 441.044 442.437 312.137 346.643 368.011 368.678 315.537 367.925 343.873 462.189 456.837 446.828 452.161 449.034 254.461 316.283 317.694 284.331 315.3 294.957 307.179 283.708 302.004 287.592 308.447 286.164 290.065 291.021 292.275 307.843 285.497 297.894 296.302 323.855 345.779 332.908 333.493 315.755 334.462 280.818 282.292 334.631 229.573 343.917 288.504 259.349 280.552 380.043 288.19 385.424 405.488 432.887 490.91 402.706 476.57 406.048 424.088 355.167 266.048 348.874 302.012 275.425 338.954 347.814 387.992 410.565 431.609 324.443 281.697 425.988 401.43 380.215 280.382 372.388 409.177 437.67 436.535 422.969 449.688 427.982 410.506 359.918 359.223 317.117 277.959 264.22 353.284 359.642 294 277.954 284.192 309.591 264.031 291.522 319.313 277.633 271.654 156.025 257.888 251.707 199.839 238.8 287.216 276.76 270.085 334.03 319.487 391.062 385.858 368.433 274.064 339.962 279.088 262.825 231.268 268.097 264.345 254.06 279.871 296.159 256.651 288.384 343.73 222.786 329.561 234.288 309.964 294.403 334.215 400.9 418.983 421.112 392.726 416.648 418.98 430.571 431.949 421.324 429.178 417.48 397.12 402.403 417.585 318.608 412.564 397.33 305.447 373.072 301.312 369.247 344.093 368.475 375.587 297.316 417.715 433.438 439.283 422.576 422.497 432.293 413.007 398.555 420.449 391.683 414.506 391.119 403.926 368.034 363.258 284.976 341.09 361.097 369.812 294.239 304.81 293.479 309.488 308.386 304.279 311.138 309.126 310.743 230.781 383.969 380.582 353.777 265.246 259.901 304.555 330.219 308.668 302.092 309.11 305.667 306.396 304.311 311.51 310.234 323.793 327.581 349.74 -42.6459 358.362 -23.8208 181.939 5.46976 -51.0049 62.06 139.029 66.0176 144.208 11.7402 62.2258 8.65857 -2.3586 6.34116 -2.71587 3.24229 -12.2748 3.8604 196.897 258.255 35.8469 187.562 214.972 117.083 202.296 272.633 319.753 226.556 -10.5565 3.75535 -43.3387 6.43883 5.95029 -2.21167 -14.8576 4.96848 337.496 377.64 325.078 339.286 373.153 308.86 334.897 325.052 326.742 374.51 345.587 312.462 375.575 320.943 318.719 308.605 296.883 323.362 315.931 300.327 333.4 379.139 266.926 332.425 379.354 281.37 -65.6744 366.866 -116.943 -58.06 -57.8096 -81.8697 -20.197 5.28553 8.23231 -7.07359 2.73749 300.173 387.255 256.039 400.767 -37.7692 -25.4791 -12.7638 -59.2822 -31.7745 -43.5158 319.755 221.251 278.661 251.19 371.712 -58.5358 -132.138 -67.3238 -84.4266 -56.1038 255.894 270.443 -182.04 273.536 -389.561 99.006 266.77 278.531 237.683 237.201 216.16 264.678 295.037 176.867 233.123 -104.181 256.8 273.777 153.576 -27.5731 272.961 198.894 139.768 280.772 277.98 172.438 224.867 312.116 343.233 304.229 309.343 274.656 178.383 256.39 389.434 227.639 193.749 211 151.329 207.838 169.782 287.743 316.52 301.997 34.8815 247.883 -22.9073 -135.234 -50.6894 -52.1078 -66.2282 -142.204 39.8885 -28.2842 -27.5146 -20.6971 -36.4453 -25.9478 132.643 169.04 -13.8822 231.565 75.2482 44.2352 202.845 -3.43826 -7.13592 3.87564 2.82648 0.529723 -20.6267 -10.0715 -202.942 -10.8031 -11.6358 -227.895 146.717 205.58 247.584 100.981 201.479 -18.1235 -60.497 -26.4679 -40.3992 19.3805 168.628 271.963 -368.586 -90.3109 239.872 100.467 -25.0715 283.246 244.181 185.039 292.559 248.058 234.743 308.877 307.761 349.457 306.238 376.816 303.376 306.81 343.763 225.626 -202.968 152.525 179.83 142.603 139.992 259.925 285.16 234.235 328.908 363.137 272.967 257.577 331.913 93.6801 15.671 -43.6522 -29.1834 131.476 4.28494 -13.1761 1.35019 -16.9879 3.98758 262.807 290.899 382.182 295.388 246.839 152.244 -73.8828 21.2872 186.014 -8.41333 184.045 162.275 223.217 225.763 364.508 221.747 246.128 50.5874 -66.7622 -52.2077 -60.496 35.567 435.233 435.551 435.242 435.127 435.207 435.489 435.088 434.478 433.81 434.771 434.142 433.913 434.29 434.707 435.152 435.662 435.411 435.618 435.211 435.113 435.491 434.553 434.248 434.176 433.898 434.013 434.689 434.431 -51.0325 434.244 433.388 -52.4173 433.695 -53.1719 -52.2512 -57.6303 425.598 -54.5344 432.663 -54.0823 -49.3356 -37.8412 -46.4495 -48.8285 -48.415 -48.9625 -48.2497 -52.5595 -54.9441 -54.033 -53.5237 -50.3815 430.709 425.522 431.248 -58.1357 -53.725 -55.3411 -57.7324 -62.4207 -63.14 -62.013 -64.6011 -57.6991 -56.9447 -58.4263 -55.6263 -63.2187 -66.4152 -63.0326 -65.8485 434.208 433.885 433.751 433.306 434.209 433.803 433.723 433.505 435.161 433.617 -46.1121 -35.8028 -44.5765 -47.2895 -42.2364 -46.7592 -47.7473 425.932 431.656 431.409 -48.8435 -48.9474 -49.754 -53.265 -52.3701 -48.5185 -49.4377 431.144 426.061 431.214 435.112 433.871 433.849 -61.9179 436.103 -55.2312 435.495 -59.3139 435.78 -70.6129 -75.4362 433.575 433.637 434.191 -73.9061 -71.2094 -67.272 434.621 -68.923 -65.0954 434.537 -71.1812 -64.1521 435.221 435.043 435.214 -66.1511 423.884 426.757 425.32 422.427 413.771 433.963 427.576 429.625 424.747 425.362 458.068 412.59 -118.541 -126.64 415.979 430.826 403.101 402.571 381.091 405.902 439.553 360.088 408.113 426.209 429.085 426.898 432.16 470.111 446.921 434.638 439.832 430.691 477.885 437.481 420.461 414.643 431.184 421.008 -85.7445 -95.1059 -91.4315 -93.7646 -88.3073 -92.4616 -88.8343 -76.0453 -67.478 -76.1159 -72.6245 -77.8849 -74.0722 -70.6788 -84.4337 -92.8049 -84.589 -90.5784 -85.8305 -82.2059 -91.4281 -79.4165 -73.118 -81.8797 -71.9571 -80.3664 -111.693 -104.616 -114.292 -105.361 -112.642 -103.108 -113.77 -115.79 -118.179 -114.33 -124.461 -113.85 -118.066 -119.963 -110.78 -101.8 -107.78 -99.9228 -109.459 -110.281 -102.113 431.437 429.645 431.581 430.989 431.181 430.574 431.647 431.825 431.802 432.056 431.528 431.586 432.297 431.743 432.016 432.283 432.953 432.572 432.112 432.798 432.05 431.525 431.117 431.57 431.584 431.553 431.109 431.574 426.289 428.561 432.046 423.201 430.5 428.161 422.095 421.918 420.331 381.564 423.384 419.5 412.422 420.657 420.864 427.002 428.666 418.743 429.23 419.894 416.813 413.13 426.28 380.502 423.765 424.306 358.789 427.618 421.93 388.526 429.309 421.924 415.506 421.602 411.51 424.582 432.516 431.661 423.288 431.203 426.351 419.965 -93.0179 -97.2607 -91.0296 -98.6429 -87.4975 -83.1603 -81.0205 -89.3087 -84.8232 -76.0493 -78.8015 -82.6014 -95.4365 -103.02 -100.433 -97.9633 -116.527 -117.061 -105.649 -110.937 -115.372 -118.334 -108.316 -124.988 -129.258 -132.021 -128.479 -127.341 -128.093 -126.183 -124.057 -124.497 -125.906 -130.069 -121.7 -125.532 -127.308 -117.825 -113.764 -120.974 -113.16 -120.738 -110.272 -118.724 -91.2738 -103.328 -94.2636 -94.4964 -84.1361 334.104 342.694 341.651 336.486 -78.7932 -73.4262 -84.8547 -70.8793 -68.7824 -82.7249 -83.5439 326.903 326.597 270.157 322.254 -89.8013 -104.891 -102.809 -96.0595 -99.6272 -93.911 -95.1214 311.655 319.259 317.604 318.571 323.581 306.732 319.773 -78.3605 -82.7392 -70.6432 -65.6943 -69.6455 -81.3888 -74.5986 417.743 -112.565 -107.545 423.266 -114.569 420.441 424.46 428.228 435.001 429.736 418.278 425.149 390.695 312.04 375.622 356.417 313.566 382.799 378.088 414.553 368.275 335.907 405.539 412.945 421.293 394.168 420.985 408.088 398.051 425.708 -119.762 433.523 430.345 423.093 399.404 -106.351 366.013 -116.376 331.757 387.283 -114.516 -91.1042 -95.7369 -86.6038 310.352 305.985 314.487 309.839 305.789 312.81 310.354 366.66 337.402 310.153 367.172 -59.6952 -70.176 -77.2726 -78.178 -63.1781 315.309 328.347 309.811 315.756 312.337 -81.2325 -64.4919 -70.7647 -74.8043 -79.5658 -64.1985 -94.4957 -84.5473 -85.0835 -126.333 -128.11 -128.971 -124.982 -127.737 -125.351 -125.828 -125.809 -128.398 -126.373 -126.88 -126.985 -125.991 -124.826 -7.36123 -4.61304 -12.6007 -11.6696 -8.24265 -4.16946 -3.93669 0.29439 -0.517338 -0.312077 -0.573142 -2.35167 -0.807695 -7.64244 -10.4244 -11.5326 -3.8992 -6.35431 301.635 277.589 294.885 351.116 330.007 320.873 -13.1352 -41.0893 -46.4504 -51.8111 -42.5254 -37.9652 -48.3063 -42.9156 -14.707 196.954 263.437 290.959 -13.8019 -41.4442 -44.9783 -51.4532 -52.1073 -42.7607 -49.1704 -42.7433 -0.877994 0.857312 0.145049 -1.27673 0.368106 -2.57206 318.982 -6.40925 -5.97083 -1.46499 -2.96677 -7.62073 -4.04592 -6.19936 6.0146 3.77849 3.48103 2.28345 2.46605 2.9664 6.23056 8.39141 6.20771 7.47974 6.56666 7.06357 6.56709 5.98204 6.89919 6.34821 7.33183 4.75841 6.01575 4.5723 6.12123 3.2776 2.06806 2.15255 3.21862 3.10667 2.1668 3.17117 2.06242 4.92815 6.13303 6.29105 4.86956 -2.49179 -2.20982 -2.93608 -2.39461 -2.50025 -2.70695 -1.94748 -2.40416 -2.68701 -2.48247 -2.58428 -0.871449 -1.48374 -0.865839 -1.48495 -0.202922 0.502792 -0.246619 0.577477 -0.269385 0.55476 -0.256244 0.501926 -0.804897 -1.4934 -0.848594 -1.43697 -2.50416 -2.13898 -2.50192 -2.12402 -2.74152 -2.78864 -2.75138 -2.78023 -2.74256 -2.74046 -2.73117 -2.72524 -2.48693 -2.13047 -2.09759 -2.50249 -2.80782 -2.89427 -3.1203 -3.17778 -3.99539 -2.17327 -3.27157 -3.38544 -3.37468 -3.22426 -3.32894 -1.32046 -2.26508 -1.21978 -2.30023 -2.28273 -2.78744 -2.32321 -2.74936 -2.24484 -2.68856 -2.18581 -2.71254 -1.37108 -2.35217 -1.40424 -2.33326 -3.3874 -3.06455 -3.36208 -3.07158 -3.34584 -3.33922 -3.34757 -3.35782 -3.30097 -3.31711 -3.2944 -3.34113 -3.41676 -3.14143 -3.11785 -3.42106 -1.72852 -1.76688 -1.72403 -1.63151 -0.213949 -0.703949 -0.104188 -1.36684 -2.48295 -2.21963 -2.49123 -2.23596 -2.89934 -2.88346 -2.91192 -2.88144 -2.8694 -2.80114 -2.80076 -2.84895 -2.48851 -2.22823 -2.48804 -2.2336 -1.42585 -1.67637 -1.3857 -1.60979 -0.906331 -0.502203 -0.919574 -0.504376 -1.40357 -1.60983 -1.61604 -1.38133 -0.871497 -0.541836 -0.72655 -0.487827 -8.44707 -7.34088 -8.7211 -9.46686 -9.85061 -7.04285 -8.65356 -10.6723 -10.6767 -10.7252 -10.1794 -11.3315 -10.7334 -10.5425 -10.7549 -10.6904 -10.2436 -10.5964 -10.26 -9.03756 -9.63943 -9.72603 -10.5297 -10.0807 -10.204 -10.3123 -9.74664 -9.5929 -9.67567 -10.0189 -9.92924 -6.83615 -7.11648 -6.83413 -8.33417 -6.97199 -7.0242 -7.08074 -6.80928 -6.79718 -6.63945 -6.97017 -6.63826 -5.56435 -5.99439 -5.96965 -6.92491 -6.601 -6.59366 -8.45936 -6.73892 -6.46089 -6.96237 -6.61189 -6.83163 -7.07516 -6.76833 -5.15383 -5.95635 -6.16253 -6.74364 -6.41199 -6.54583 -6.86694 -6.53223 -3.51575 -2.9719 -3.50888 -4.66882 -4.31478 -4.27776 -2.96285 -3.4043 -3.47845 -1.48616 -2.07238 -1.45969 -0.198549 -0.86993 -0.879706 -2.03997 -1.42116 -1.42257 -4.70975 -4.38514 -4.34124 -3.324 -2.97644 -3.21693 -0.18683 -0.849965 -0.78317 -1.40979 -1.82762 -1.42623 -8.38097 -9.08629 -8.39531 -8.0628 -8.72615 -9.05305 -8.00482 441.388 -104.417 -96.4976 440.788 440.218 441.284 444.11 442.858 443.433 443.861 441.486 440.382 441.481 440.241 443.729 442.321 442.885 443.38 439.536 -112.668 -121.502 440.195 -122.314 439.898 -138.455 -143.766 -137.981 439.566 -115.683 -124.863 440.28 439.743 -124.621 440.117 -134.65 -142.228 -136.31 440.078 -92.9567 440.453 -98.2451 440.697 -93.9221 439.768 -87.5226 -88.7979 438.717 -89.9896 439.292 439.088 439.167 439.383 439.143 439.072 439.391 439.99 -93.3117 439.223 -88.7849 438.831 441.13 -93.1724 439.282 439.501 439.204 439.303 439.221 439.146 439.092 -97.4486 -91.5793 -92.8721 -119.122 -108.751 -118.893 438.637 438.168 438.633 438.701 438.833 438.414 438.426 -133.24 -135.034 -126.464 -129.129 438.882 438.784 438.924 439.028 438.937 438.774 438.904 -132.523 -136.635 -131.564 438.851 439.105 439.114 438.941 439.035 438.806 438.752 -106.992 -115.167 -116.481 -165.491 -162.601 -158.924 -164.192 -160.174 -160.092 -160.924 -155.77 -160.494 437.476 436.309 436.612 437.783 437.195 436.855 437.663 437.838 437.893 438.316 437.913 437.791 438.053 437.998 -164.66 -165.77 -159.184 -165.079 -156.507 -154.153 -159.543 437.788 438.078 437.972 437.846 437.725 437.965 437.904 -151.665 -159.062 -152.427 -157.243 -152.499 -155.843 -152.267 -140.828 -129.677 -140.31 -131.4 -140.032 -141.193 -130.8 423.177 434.53 437.225 437.214 461.16 261.305 496.416 501.062 -145.52 -159.045 -150.614 -153.412 -147.666 -150.545 -150.946 -144.399 -143.155 -134.266 -136.306 -143.143 -145.463 -134.322 439.742 437.492 438.768 435.722 -154.721 -160.954 -157.434 -160.19 -156.774 -155.236 -158.29 438.007 437.912 438.386 437.975 438.223 438.158 437.583 -146.343 -139.054 -143.03 -147.048 -142.115 -148.235 -145.337 436.03 435.582 436.216 -150.91 -154.647 -146.785 -151.767 437.69 438.302 438.096 437.602 438.179 437.233 -152.694 -161.217 -152.364 -153.199 -155.724 -156.651 -149.701 -153.558 -153.789 -157.195 -158.897 -153.513 -155.305 -156.464 397.628 444.542 426.662 416.609 436.511 433.146 -153.872 446.125 436.974 438.495 -153.662 -160.347 -156.681 -154.51 -157.859 -156.152 -153.159 -111.552 -117.399 -104.046 -117.231 -107.429 -110.566 -118.462 -81.4243 364.945 -72.9442 395.314 -81.082 -73.7368 -102.93 399.698 381.482 406.88 -106.268 -113.289 -109.034 -120.155 -123.88 -109.258 -122.433 -112.669 -87.1514 -77.5107 393.36 404.149 -76.4494 -89.7649 -50.2305 -59.5599 -50.2123 -59.7505 -46.3352 -33.915 -36.3864 -41.6014 -46.5546 -38.6447 -41.1551 -53.5991 -63.3503 -62.5533 -54.6526 -108.73 392.858 -117.232 416.938 -118.533 -109.021 -101.711 -95.2547 -91.062 -106.684 -95.9659 -81.8838 -94.8431 -84.8043 -48.6397 -38.9818 -37.6833 -42.7795 -46.4697 -40.8385 -46.5891 -60.1951 -57.9607 -66.9796 -74.4064 -73.963 -56.5239 -60.2823 -59.5576 -68.1806 -51.1707 -57.165 -71.8423 -56.6034 -15.7413 -22.4157 -23.7599 -16.6736 -16.2918 -24.3857 -15.25 -21.1445 -28.0477 -24.8003 -19.6766 -28.2145 -17.6579 -23.0548 287.606 426.341 468.703 472.341 424.136 400.223 431.591 413.7 421.684 431.996 436.76 433.188 420.79 429.021 447.534 420.049 426.936 407.775 409.148 426.737 432.484 438.636 257.994 473.27 375.167 267.432 391.35 451.882 415.752 429.398 433.226 426.518 430.918 422.932 422.292 265.642 467.309 440.68 414.379 428.477 413.683 455.902 431.873 441.283 262.227 396.414 291.901 405.063 432.918 382.796 430.922 431.841 430.659 415.959 427.256 421.696 420.189 483.243 425.803 410.632 448.596 420.37 400.461 355.354 415.433 432.362 426.54 423.931 420.871 323.84 375.227 431.575 418.213 365.942 393.253 428.295 362.069 416.396 430.942 428.446 434.497 433.213 421.243 427.974 408.258 417.903 406.022 420.084 411.383 412.541 414.158 411.925 439.812 463.514 486.722 458.104 488.139 425.233 464.331 439.175 420.233 439.467 481.04 438.463 470.596 366.748 390.491 437.645 482.463 412.153 426.641 388.5 427.37 295.971 432.446 431.288 419.715 432.181 424.437 474.717 336.946 332.382 441.115 472.751 383.935 419.512 425.167 441.676 439.804 435.612 432.359 495.972 433.258 395.208 361.012 481.433 343.21 379.633 404.669 348.988 429.921 436.75 428.529 414.314 436.227 374.288 345.965 427.258 425.928 431.979 436.171 427.184 434.566 433.858 435.371 422.6 428.905 413.023 377.613 442.485 475.686 423.532 461.534 322.538 457.899 415.401 418.116 429.408 415.073 416.247 438.88 441.211 456.765 473.555 477.89 440.754 407.187 426.215 401.338 422.503 467.208 431.348 360.484 430.992 466.631 438.145 418.366 435.258 447.541 373.868 435.898 474.88 435.231 419.351 431.237 432.351 320.247 322.778 315.435 319.153 317.648 325.739 331.21 368.572 356.432 328.507 319.69 311.213 322.505 318.267 245.819 319.523 323.806 321.789 324.914 324.904 322.466 327.333 325.642 347.816 322.69 303.25 354.069 322.149 322.927 325.054 322.951 323.146 320.494 383.299 385.892 412.915 382.418 385.692 414.123 341.737 434.346 398.037 334.787 390.743 331.086 188.185 300.238 368.566 327.272 178.44 368.79 413.692 438.679 436.035 424.403 415.819 432.168 422.667 341.195 364.861 243.709 300.137 333.231 237.979 368.813 410.99 423.126 414.735 419.006 414.269 416.517 422.156 383.735 387.195 417.948 386.516 387.756 416.569 318.748 313.275 318.167 322.063 306.374 334.633 343.777 332.762 344.878 325.963 352.123 299.25 345.036 283.513 349.762 320.367 296.387 228.285 292.024 346.36 353.174 225.407 307.073 348.819 299.01 299.811 287.513 350.846 312.084 322.375 324.592 238.161 318.826 306.68 316.65 312.179 317.095 309.567 313.745 309.901 319.709 298.616 418.669 319.542 289.78 430.532 408.585 424.534 380.345 412.35 427.132 407.978 243.467 325.974 320.701 364.555 328.08 275.991 320.437 384.009 421.052 330.313 322.137 425.491 319.535 430.569 328.658 410.143 319.204 446.857 436.847 392.904 443.848 429.988 427.766 454.661 247.91 320.385 361.152 341.734 326.385 320.808 282.436 329.644 328.137 327.692 331.159 326.333 343.624 308.267 327.796 351.414 318.167 323.594 273.314 318.686 300.71 301.746 243.699 324.53 303.475 324.341 323.253 328.613 324.384 329.055 323.872 324.144 302.862 322.515 349.843 316.669 315.854 301.372 311.821 307.105 286.001 304.603 446.855 445.049 451.296 448.939 444.928 203.018 383.019 424.49 335.663 428.309 325.278 320.929 374.963 330.486 365.873 326.184 309.156 375.484 440.318 437.463 437.471 443.695 444.629 466.708 289.585 314.028 304.213 307.52 260.309 211.725 294.983 310.949 245.235 266.128 248.002 307.755 286.757 298.482 301.656 287.344 297.25 300.969 313.724 316.367 310.848 295.88 305.217 288.576 295.769 299.913 305.332 286.823 295.906 318.627 348.305 302.731 317.33 263.398 296.342 215.657 148.513 307.951 251.171 176.285 -1.27863 -2.27402 -1.03372 -13.7811 -0.481746 -26.0222 -3.88714 -37.0899 -15.3904 -2.36676 2.00966 1.97777 3.92255 2.16562 3.37246 374.44 -39.0112 389.594 -45.8771 -1.75412 -0.431545 -0.60922 85.0989 15.5215 135.444 4.8535 296.319 289.418 228.076 -25.1773 306.96 265.159 229.743 409.593 401.191 342.955 332.966 336.774 326.363 369.57 308.512 292.302 370.337 322.962 281.497 306.874 351.475 303.103 293.583 245.646 330.226 296.239 303.174 298.999 323.817 377.562 355.049 375.234 346.257 312.65 369.644 307.045 290.151 323.225 292.211 312.753 321.704 292.666 265.171 -141.448 59.8936 299.39 220.507 207.256 235.708 197.961 240.584 14.3516 90.7936 207.106 218.325 56.6846 -9.19037 -5.55731 -29.113 -9.0985 -17.5714 -21.026 -5.08887 -22.9812 303.103 -33.332 366.517 5.68348 -17.1081 10.056 2.52878 363.59 -31.7843 -22.6199 381.664 166.629 -53.2095 91.7648 -9.80257 185.574 13.8516 123.959 39.5118 4.56366 28.3333 5.23106 245.45 -83.613 182.007 184.314 253.005 320.606 315.251 303.898 323.987 -8.64354 -5.79658 -8.33878 331.048 322.998 319.294 322.512 331.032 322.873 327.243 258.548 61.1306 -8.24836 -6.16798 240.384 -9.34676 311.784 286.119 306.961 313.776 284.45 314.78 313.617 341.698 379.155 373.737 346.642 350.124 371.089 340.856 -29.6239 -32.3188 -117.478 -14.2185 49.482 -138.614 -77.2593 2.31309 1.43576 2.11082 2.28435 2.02428 3.288 1.75431 1.31784 0.168506 -2.14381 0.573238 0.10719 1.58866 -46.5114 -48.601 -66.9641 -0.247735 -2.18207 -0.231282 -71.1609 6.10639 -43.5435 -38.2277 60.735 -72.2127 327.091 265.824 261.362 301.691 382.008 296.027 286.148 285.871 281.188 229.803 300.159 240.041 316.967 298.874 319.043 317.953 311.445 325.649 307.909 347.061 287.388 345.744 327.163 366.921 320.384 316.562 304.091 294.875 300.243 309.356 306.202 295.137 312.598 337.495 321.144 367.745 270.211 368.503 364.564 347.431 376.376 338.155 353.085 345.853 389.909 320.937 -84.4606 -134.912 -100.125 -57.0116 -73.2682 -77.7727 -108.015 -46.8474 6.83829 -36.0548 -47.9942 -60.3519 -23.1193 -1.45261 -27.702 0.0427057 -30.5115 -18.2743 -55.3352 -13.0487 -5.33304 177.96 334.849 302.358 383.281 -67.4908 -167.802 -62.23 -78.0641 -32.1889 -59.2483 339.886 -67.2093 -70.2098 -64.4404 -60.5617 -10.9974 -66.4526 -68.0791 -9.24038 433.648 435.555 431.586 412.071 434.873 432.904 425.198 423.771 423.188 434.901 429.679 433.442 430.719 407.316 435.102 431.379 448.105 452.473 438.597 427.982 449.444 415.983 424.687 346.703 432.731 425.606 385.95 418.024 430.013 437.386 432.171 419.668 434.156 422.26 425.3 428.321 428.88 437.717 411.255 435.275 457.164 413.431 429.113 444.439 425.845 436.842 424.622 426.791 432.966 384.429 439.562 261.056 429.857 468.177 423.748 172.199 416.269 449.379 447.699 459.87 419.124 499.218 443.682 437.332 399.607 446.939 455.093 420.377 449.482 424.394 307.851 405.993 516.936 586.071 573.522 412.954 357.174 454.414 447.447 280.599 443.646 411.457 448.945 447.09 233.307 408.77 422.449 601.444 414.329 487.115 421.618 403.603 434.093 439.713 490.596 433.021 246.626 238.375 453.76 431.461 383.668 434.164 421.846 439.582 433.853 406.755 423.487 450.153 424.587 516.028 452.47 386.912 483.856 399.23 432.776 425.918 428.274 440.869 405.603 400.293 440.883 447.322 450.198 434.623 489.217 523.797 431.528 431.519 381.578 434.043 429.139 333.911 459.136 414.139 438.51 438.944 434.14 434.611 425.184 433.083 389.334 428.73 394.275 401.346 423.758 413.185 98.1654 426.495 442.82 443.934 434.217 468.923 444.174 431.774 203.643 499.057 430.811 400.1 675.616 408.492 210.396 416.961 406.31 442.563 643.767 402.098 490.841 596.108 447.649 421.323 444.738 452.006 444.189 444.803 466.452 258.173 486.947 434.278 434.869 764.985 400.138 390.153 425.895 446.3 471.541 441.071 453.966 442.218 389.189 296.79 417.275 492.247 444.685 207.381 428.722 495.782 288.145 280.525 287.85 273.208 296.459 266.748 273.946 310.084 295.352 310.846 333.168 402.613 322.435 -51.2876 233.876 406.445 252.783 314.455 283.275 289.611 277.998 299.19 314.117 248.267 298.748 308.311 263 297.54 291.341 298.473 297.166 304.158 284.588 293.943 202.737 267.888 248.981 257.468 254.968 217.729 268.752 345.653 446.844 454.332 233.062 442.499 310.271 311.077 310.515 310.771 448.302 426.168 436.568 453.418 443.939 425.359 457.97 305.628 316.893 306.586 311.344 319.017 309.84 310.316 410.613 413.874 422.735 424.627 350.471 424.015 449.462 264.743 280.395 296.318 285.442 285.702 284.756 312.969 283.079 224.669 187.32 258.58 129.771 228.077 235.479 38.4712 264.002 310.836 240.557 278.322 12.0492 257.654 279.791 210.547 237.645 287.252 308.279 268.702 249.655 203.362 251.707 230.854 236.106 211.251 262.192 266.9 284.383 269.562 199.229 289.399 301.348 309.192 214.342 446.63 460.284 455.464 456.756 440.726 313.838 368.281 340.444 386.338 374.866 301.394 367.912 323.198 443.157 413.63 417.467 416.851 413.727 328.458 196.212 292.67 299.547 207.632 306.064 457.119 451.672 438.591 456.613 443.669 314.213 364.375 379.556 385.669 368.3 315.249 279.653 269.928 286.488 263.374 292.821 305.219 224.261 206.537 233.745 302.622 178.003 227.045 303.065 291.727 316.331 294.475 316.247 201.102 312.13 249.775 294.45 265.748 251.643 283.404 270.072 287.576 273.585 267.991 294.112 305.345 290.735 195.151 318.956 316.304 227.763 284.875 281.196 265.033 275.809 268.423 270.91 255.468 315.934 259.625 258.612 283.54 437.125 435.441 427.955 332.284 428.549 430.013 418.463 406.774 346.865 402.631 461.623 431.882 447.838 434.98 493.491 273.949 262.777 272.137 274.307 267.568 271.359 275.567 302.803 367.771 384.256 324.802 345.678 279.391 278.859 310.468 280.47 263.613 184.095 246.241 246.215 276.53 269.933 249.675 257.388 229.986 228.993 208.263 264 264.387 214.582 273.054 238.414 269.167 282.018 255.898 369.718 284.082 285.941 277.398 265.928 265.457 261.595 251.462 294.075 280.422 255.241 281.994 276.403 -9.68567 -121.144 -93.8969 -58.8075 -91.7896 -45.3285 -45.449 169.7 282.834 258.882 189.303 -4.60472 0.542179 3.79766 -8.79038 2.58166 2.85535 -5.53802 -11.2726 -0.273358 98.6562 83.1596 224.091 85.4199 96.8793 86.5462 -170.558 51.6054 -39.0302 5.15145 107.403 -41.6692 -53.8889 -5.54213 -18.5903 -15.7848 1.71474 262.426 278.671 255.219 257.187 273.412 425.551 -89.2455 184.454 343.743 469.873 218.871 310.222 257.448 253.467 179.952 270.846 240.069 296.515 244.676 250.693 222.235 247.007 444.712 246.309 243.873 18.8255 248.877 151.207 192.319 227.4 -150.869 324.894 246.1 648.757 235.89 311.939 621.645 229.641 264.801 262.88 263.405 255.755 259.246 264.445 265.74 -15.0823 -162.526 -6.4407 -13.8355 -62.2148 -9.51343 -2.55741 -3.75392 1.23293 -9.84547 -0.301691 -6.75552 -137.762 -51.1567 -62.7326 -39.217 -53.9749 11.4384 67.6874 80.995 94.0969 -55.5218 -17.63 -61.9432 -20.7496 -39.7275 -14.7098 -33.2395 -19.4053 -30.0765 301.359 323.663 294.859 250.878 310.621 303.78 258.273 272.174 304.703 274.119 285.412 285.708 246.889 301.394 271.089 143.606 328.457 -59.1909 144.459 277.542 268.819 240.116 226.586 219.36 310.825 397.809 192.875 225.833 338.724 333.862 320.28 357.271 319.468 349.684 334.006 253.308 260.292 280.369 449.086 273.153 272.444 242.494 248.832 -8.02192 -413.886 306.366 267.047 102.584 227.899 275.916 -1.44933 14.1707 293.522 17.8359 6.11289 -8.06271 -14.641 -1.01471 -2.76472 1.55881 168.419 299.726 84.2062 265.507 118.981 2.62985 -9.32673 2.43238 -12.5848 2.03724 -81.0544 -33.2384 -18.2183 328.107 110.549 80.8871 -1.34028 7.67752 135.819 84.136 29.7437 18.8462 12.1428 -12.4075 1.01988 4.50494 19.5318 0.142572 244.864 261.612 250.763 157.116 264.192 237.393 195.811 235.502 159.723 296.64 230.811 241.348 235.965 233.473 280.503 341.136 117.286 363.566 98.6248 212.251 550.455 255.336 284.27 287.182 285.591 274.199 269.091 201.367 274.194 263.061 394.624 228.477 221.941 234.097 252.802 249.786 260.003 257.485 217.478 252.983 235.299 -167.256 283.034 313.514 250.611 246.453 249.222 128.788 196.231 4.60993 -7.87606 -3.8098 -11.3769 0.647241 -68.1896 -21.3304 0.231826 -39.3085 0.195004 -71.9869 -79.6656 -69.7298 -76.6805 255.331 236.838 -111.603 1.35674 -17.968 -22.1928 -34.951 8.00801 -2.82734 -2.0514 1.71827 12.4907 -0.470667 428.891 428.724 429.337 429.557 428.542 429.959 428.805 424.255 423.002 423.988 423.645 419.617 424.453 424.115 429.878 425.505 426.619 425.3 427.047 429.701 425.653 426.588 425.025 427.445 425.451 428.227 426.432 424.839 411.79 436.795 449.218 415.721 452.841 414.632 444.501 388.425 366.053 430.773 453.891 452.535 317.174 419.917 616.756 502.147 498.159 365.287 420.052 487.569 568.43 373.379 411.692 415.853 415.955 390.056 381.167 418.946 272.599 443.973 428.265 424.705 446.587 360.599 450.183 382.685 450.599 447.789 449.911 458.611 405.51 445.431 408.433 405.36 357.062 409.723 392.509 377.084 413.156 414.927 421.853 401.652 420.004 392.241 415.759 429.095 402.691 407.69 489.07 245.569 434.878 540.629 413.549 389.695 355.12 336.37 384.706 388.219 347.192 385.695 401.62 430.486 427.17 420.223 416.427 416.202 420.153 380.994 407.576 430.691 386.266 357.028 404.9 428.913 434.315 443.524 406.352 424.753 422.235 439.125 301.106 476.538 551.536 327.43 425.777 492.887 420.124 439.903 439.564 204.476 439.848 436.334 432.39 438.464 315.513 418.427 483.87 466.914 512.708 466.503 450.21 515.391 444.296 441.66 406.833 434.991 349.593 433.445 442.991 434.522 398.492 407.52 571.356 415.451 360.79 447.788 397.544 443.455 445.38 487.867 437.082 450.3 447.575 428.883 425.208 422.476 434.51 428.598 425.1 431.264 425.165 421.62 419.439 421.015 424.766 424.95 421.631 487.782 418.781 403.388 433.244 420.639 448.089 432.895 396.441 373.772 355.276 381.065 391.223 379.897 388.207 501.318 337.156 445.176 462.223 487.897 392.419 460.163 436.754 398.805 407.272 434.803 423.035 411.017 544.937 454.013 406.336 364.149 575.32 390.816 444.681 537.7 415.01 413.781 399.621 423.106 409.879 423.391 401.073 306.605 437.238 335.879 445.886 469.967 425.887 466.537 232.425 219.572 227.093 137.576 222.863 229.58 309.134 283.781 282.872 80.1334 304.178 292.991 283.965 238.025 266.349 236.11 311.04 282.76 175.234 226.421 212.88 190.351 153.582 312.79 380.082 142.344 331.534 255.837 287.066 259.703 245.276 253.069 260.423 252.196 246.874 320.379 294.283 300.723 283.421 303.088 273.729 192.057 229.737 184.167 226.396 115.779 394.212 306.78 306.571 134.066 237.748 252.783 240.641 268.113 245.867 234.17 254.796 229.442 229.833 215.443 244.206 235.282 226.792 343.079 233.655 242.233 253.26 258.151 253.135 245.032 249.977 247.345 241.357 231.496 231.423 234.244 225.995 241.35 272.563 240.436 273.305 277.09 259.963 247.998 235.585 246.873 238.816 257.726 228.952 250.771 238.199 447.703 451.962 450.777 464.596 447.924 458.055 434.456 439.367 450.608 259.859 159.886 264.828 282.19 253.116 276.948 208.789 274.971 235.515 237.757 276.97 270.098 249.738 267.302 290.44 277.444 278.158 232.493 249.595 272.878 274.802 223.585 208.956 148.351 202.131 347.746 312.748 288.13 293.786 234.934 269.631 413.347 417.06 368.516 159.02 173.607 234.607 207.715 209.39 271.906 410.773 313.738 87.1249 186.506 234.872 262.858 253.659 217.726 218.25 243.333 226.255 227.281 241.323 250.336 262.334 255.454 244.389 240.236 267.402 236.207 312.881 277.944 431.8 242.347 233.948 235.171 240.898 228.203 243.972 267.107 105.82 232.412 277.705 259.753 237.821 240.51 257.704 249.733 245.716 230.387 254.742 -32.2581 -22.2411 -27.5142 -23.1959 -15.5629 277.874 260.066 342.803 262.51 335.358 278.807 264.173 232.956 318.313 208.426 240.983 277.854 228.877 263.065 272.127 251.736 280.115 276.933 253.29 262.343 277.767 267.674 325.167 259.939 283.716 327.977 262.442 212.557 197.859 281.231 267.983 247.329 258.746 311.624 316.308 316.66 316.412 305.486 649.303 279.039 545.208 295.753 297.799 285.918 306.916 300.384 576.864 323.673 639.181 245.512 268.423 263.602 261.184 178.675 211.523 262.429 386.059 254.839 218.92 125.945 267.284 280.081 283.948 269.927 278.243 321.614 248.775 254.49 293.149 275.858 323.277 266.253 262.094 270.755 271.717 271.289 235.489 243.15 142.788 300.015 204.55 208.986 281.472 273.422 284.674 294.241 268.817 3.97697 -8.2437 -36.8914 -1.85124 289.442 257.872 340.914 285.028 269.606 268.65 279.613 249.82 272.47 262.736 262.821 289.252 239.965 167.863 287.933 258.331 298.557 267.015 204.88 300.66 303.101 315.794 340.519 310.196 305.533 335.429 241.903 296.927 258.571 369.808 268.562 254.017 292.363 315.827 284.233 310.731 287.808 321.887 296.854 283.344 278.176 274.883 291.026 308.287 288.93 314.784 666.448 268.689 734.082 211.122 331.005 654.219 355.622 358.096 288.251 311.896 357.703 321.578 301.187 245.381 301.711 269.452 311.613 318.318 710.254 289.681 413.976 415.534 410.95 415.031 415.824 413.258 410.798 411.527 404.924 409.467 408.115 410.14 411.142 408.199 421.421 422.994 422.601 419.445 420.278 419.103 421.278 421.792 422.43 421.563 422.283 421.325 421.211 422.286 421.815 422.421 419.882 421.192 420.55 420.044 420.474 423.708 421.483 418.195 421.408 419.682 422.595 421.459 421.841 421.243 422.489 421.988 421.433 422.244 422.925 423.016 423.699 423.44 422.011 424.306 422.109 422.44 421.392 422.79 421.47 421.404 420.969 421.783 422.955 419.171 420.733 422.077 425.679 418.443 420.743 421.427 419.438 419.177 419.925 420.037 414.148 419.067 420.382 419.703 420.449 417.719 419.823 418.056 419.694 418.668 418.329 422.199 421.324 422.55 419.233 427.019 420.731 417.632 422.441 420.241 417.193 419.859 419.988 416.183 414.569 409.61 416.838 415.449 414.632 416.509 411.439 309.381 316.355 295.35 338.16 315.051 285.518 330.065 272.564 230.779 246.375 260.336 272.876 247.069 265.92 262.67 238.268 243.632 255.664 247.139 263.185 257.154 399.242 402.618 402.424 403.874 400.873 401.666 398.847 391.684 401.567 397.533 403.844 401.859 391.353 397.463 398.114 402.156 404.946 400.379 400.708 396.393 400.973 407.955 405.054 409.669 404.749 408.256 403.919 408.468 408.524 409.261 400.201 406.748 407.663 400.788 410.205 413.752 412.822 417.721 416.263 412.605 412.725 417.076 405.575 406.717 406.382 404.006 404.174 405.682 404.318 408.531 402.162 403.315 401.239 403.618 403.293 405.309 406.429 408.143 412.577 406.922 412.139 403.614 408.971 409.36 415.397 417.169 415.103 414.391 412.465 412.623 404.824 403.765 406.822 403.121 397.56 402.508 409.086 400.658 399.064 399.472 398.186 393.483 396.535 404.072 412.386 412.734 406.518 407.221 410.418 410.271 409.784 415.132 415.384 416.575 414.673 414.155 413.457 416.571 420.785 419.365 419.743 419.717 419.68 421.008 418.463 418.981 418.428 418.442 418.676 418.682 419.119 418.256 420.341 421.003 420.412 419.113 420.216 420.191 418.677 419.341 420.942 419.512 420.608 420.718 420.305 419.176 418.15 420.025 422.66 420.112 421.282 418.991 419.972 419.059 420.74 418.11 417.535 418.09 418.689 418.91 418.64 420.4 417.892 416.058 418.059 417.487 417.391 417.303 416.998 416.809 415.409 417.32 416.64 422.35 416.494 408.998 418.025 419.876 418.146 417.533 418.146 418.166 412.905 416.625 420.555 414.764 418.78 419.167 416.358 416.306 418.526 417.793 418.908 417.614 415.074 417.672 417.388 418.565 417.825 417.362 417.251 419.46 417.932 422.245 417.443 420.107 417.78 416.218 419.896 419.197 417.626 417.536 417.187 418.273 417.933 418.859 420.949 421.438 420.782 421.807 422.959 420.749 420.997 419.335 422.37 422.133 423.965 421.864 422.478 419.746 513.674 403.36 417.013 428.322 406.806 422.164 444.271 430.34 385.567 387.37 374.045 532.626 380.51 451.078 410.262 464.881 430.642 433.063 423.459 427.719 408.81 239.565 522.886 361.312 342.62 347.309 424.242 240.93 416.141 399.322 402.04 427.678 394.294 393.71 417.377 246.323 408.109 393.564 432.722 369.628 447.116 407.636 413.32 426.698 421.683 408.334 420.405 412.386 405.001 396.933 408.216 408.658 410.03 397.612 375.81 412.999 398.685 399.361 401.894 401.574 392.384 406.462 407.647 397.51 384.335 418.843 396.081 427.116 362.393 408.977 377.731 405.492 342.788 401.667 376.665 402.877 343.118 406.054 427.299 411.309 385.326 423.302 430.396 409.195 410.403 428.24 430.494 414.47 433.017 300.74 432.714 476.109 427.443 408.81 416.099 535.322 439.834 478.078 443.178 392.953 473.609 436.722 475.926 423.991 385.252 349.565 449.786 438.155 438.593 430.217 439.532 437.077 418.444 446.969 435.127 381.734 460.842 326.262 408.754 452.475 438.014 430.387 440.462 483.028 438.553 456.655 408.624 429.41 390.859 445.391 449.689 429.224 431.645 208.001 165.9 184.882 385.299 147.791 291.884 161.386 386.422 462.6 429.834 457.756 419.551 218.202 176.462 187.798 111.009 310.286 395.033 147.032 365.637 210.908 213.329 214.804 336.557 219.818 210.615 205.716 240.59 216.492 214.198 190.274 218.811 231.459 120.911 218.376 220.531 230.523 216.425 215.198 172.123 192.422 212.167 12.0282 244.989 241.178 174.155 219.047 241.209 245.745 178.842 252.24 260.213 257.239 238.911 226.74 260.044 249.513 217.229 296.741 290.905 129.778 300.401 27.212 259.124 183.05 312.448 321.739 269.162 300.465 130.614 214.275 204.707 202.789 146.669 234.805 119.037 241.398 239.171 229.752 222.939 238.352 245.416 229.477 253.858 252.769 259.408 238.21 258.877 253.294 241.221 276.596 210.12 194.515 246.438 252.172 238.435 237.94 234.476 253.785 224.208 242.47 237.824 254.098 248.396 218.774 213.579 243.044 230.125 226.864 144.384 439.524 417.647 450.098 421.683 422.44 386.684 408.346 62.068 400.206 368.565 411.44 212.571 233.628 203.037 217.748 215.83 228.945 223.198 233.56 242.99 204.232 224.518 235.596 234.887 197.081 203.009 268.678 226.166 255.661 301.506 270.936 267.065 259.357 248.518 210.696 248.55 234.872 249.118 232.71 253.619 222.802 219.789 246.503 221.082 222.37 213.846 217.443 205.801 210.498 212.854 206.092 216.35 253.897 306.89 265.072 265.37 251.267 216.901 243.68 246.36 280.008 255.31 208.612 193.125 233.297 247.523 224.942 226.594 226.981 278.069 282.854 265.661 307.966 717.233 289.641 288.764 286.611 286.915 300.027 685.595 321.286 256.258 268.839 269.271 271.239 266.729 260.685 259.189 249.33 222.834 249.869 174.329 245.297 262.704 241.093 242.864 270.148 251.664 243.983 256.017 242.27 254.884 252.23 269.981 230.474 244.785 247.212 255.714 264.325 263.786 263.403 286.991 350.698 265.231 271.329 337.437 228.983 818.575 769.1 298.026 325.713 877.381 239.863 283.448 260.359 265.541 298.905 231.621 272.45 294.406 714.764 765.927 343.533 301.015 860.321 246.114 269.909 282.273 256.602 256.192 282.966 225.489 199.627 234.24 234.97 229.335 228.485 208.892 247.087 113.007 224.239 198.249 234.229 211.738 158.272 238.41 237.452 241.632 238.861 226.256 313.074 270.557 224.98 171.644 261.33 240.735 209.885 234.399 256.901 237.199 248.534 233.359 260.947 237.741 251.186 246.593 244.843 280.589 229.564 321.755 300.466 431.164 434.384 438.021 441.194 434.406 429.017 442.599 293.663 330.597 442.453 422.411 427.801 443.257 275.325 439.716 405.252 415.793 429.391 436.07 416.341 420.612 343.135 421.549 410.312 449.79 437.754 287.004 433.231 423.873 431.594 434.097 432.874 432.692 429.87 422.914 409.854 433.324 423.554 417.446 429.895 401.278 426.521 436.752 449.336 420.612 583.102 428.914 429.864 456.708 429.091 432.395 446.35 439.626 427.762 432.433 443.055 430.2 387.783 422.69 427.325 415.312 424.678 518.85 430.117 427.943 430.054 428.247 431.935 430.654 426.314 431.209 426.761 394.45 431.71 426.957 444.279 428.134 432.905 429.954 420.981 430.538 434.58 424.852 431.383 411.195 520.989 395.137 334.099 430.271 428.937 430.533 430.656 434.432 429.937 431.537 431.749 433.467 427.808 458.453 438.194 434.746 441.965 427.504 446.162 465.993 522.748 440.426 422.368 410.077 441.016 426.851 440.682 211.651 477.879 442.7 427.924 420.873 436.546 414.24 756.505 444.746 432.908 397.205 598.064 478.952 432.383 443.717 433.079 428.196 441.844 440.1 428.502 448.845 423.131 437.667 468.728 405.618 372.739 403.497 358.277 559.941 440.852 421.345 303.502 444.142 507.575 305.399 448.594 349.453 440.418 428.582 456.996 418.314 437.209 426.986 428.266 415.71 436.819 439.958 434.199 425.709 433.448 397.719 404.388 446.319 574.183 357.292 456.155 437.837 417.173 434.706 429.856 435.101 437.291 424.795 391.028 466.802 577.823 384.425 471.607 198.657 429.678 437.265 435.473 437.367 432.37 444.598 433.948 433.71 447.327 441.128 365.9 430.823 481.939 438.154 442.693 222.543 228.793 207.747 228.114 216.051 205.657 187.829 185.814 148.352 169.415 183.155 221.805 213.427 218.988 117.846 197.131 218.715 212.232 220.017 231.586 226.059 227.591 236.883 231.837 229.543 229.135 204.426 204.455 166.722 66.8561 189.824 187.191 197.698 392.843 173.065 318.29 314.031 287.474 443.683 443.91 449.695 447.37 440.24 449.133 430.927 206.463 244.568 250.018 209.653 251.189 403.846 421.977 383.789 331.883 413.629 415.014 290.863 226.142 225.948 408.896 237.821 376.082 397.51 395.213 363.645 386.831 193.815 408.605 329.202 326.35 402.339 306.978 209.944 222.549 207.671 211.705 224.014 205.628 329.379 274.266 -7.21716 326.632 -102.815 212.18 226.633 235.871 240.163 214.165 188.881 213.233 213.22 248.109 207.569 201.313 207.365 215.932 227.748 210.347 222.797 234.897 156.194 191.024 137.509 196.69 164.666 191.223 128.783 217.078 236.62 236.4 228.588 216.057 228.527 448.039 441.23 451.548 446.892 450.256 443.876 436.001 418.839 454.921 370.983 446.69 451.053 444.952 438.004 448.971 450.513 435.816 40.2496 215.593 229.21 231.915 266.978 205.261 186.337 247.396 203.73 311.065 245.692 270.127 115.909 236.164 238.488 198.992 232.655 209.038 188.56 229.054 205.727 254.427 245.983 232.983 236.67 236.143 233.139 194.305 268.421 243.907 235.398 281.178 437.021 438.662 430.404 432.585 450.127 406.871 376.205 401.48 125.199 419.757 314.416 268.769 378.033 348.585 268.279 305.876 439.805 468.801 421.986 432.473 425.981 405.794 269.679 222.248 250.705 190.681 256.289 220.56 348.74 116.972 284.294 195.985 245.604 237.831 256.572 243.23 237.134 257.892 360.075 211.624 246.129 201.297 198.128 175.097 248.304 244.531 251.023 211.147 241.829 287.065 236.033 259.859 258.925 269.978 253.731 244.555 266.764 189.25 185.94 199.265 189.438 193.523 231.43 255.704 264.354 250.757 242.297 239.917 243.028 241.362 239.834 257.543 268.44 -21.2013 -73.3568 -71.6035 -59.4127 -42.7191 -37.6624 -51.1032 -15.5523 -21.0316 -13.349 -9.1255 -22.2242 -16.9082 -20.2331 -17.7675 -18.0083 -12.5634 -12.9441 -10.8322 -17.2652 -20.0472 -6.74764 -30.2542 214.303 219.763 -29.0983 210.934 199.217 168.714 425.273 465.709 63.3788 184.984 188.994 151.466 246.811 265.055 227.626 283.539 278.809 234.89 249.409 218.015 234.745 220.06 195.79 221.187 226.822 224.573 227.646 220.862 188.776 179.988 202.204 198.286 237.804 213.538 292.32 163.21 210.885 171.369 190.217 232.889 217.423 -23.6018 107.483 221.736 127.644 -16.9174 -45.2615 -0.697647 12.4212 -7.28608 -96.6504 60.4622 -19.7855 -1.98853 -9.01283 -26.4666 -5.89226 -19.9077 -26.633 6.53302 207.207 10.6147 -22.7424 -2.53257 -38.6812 0.395886 163.977 -1.17569 -4.20054 1.58481 -251.142 122.697 -179.47 99.5675 -6.15002 -29.1466 -0.0478285 -21.1708 230.02 240.147 231.693 250.929 228.546 260.451 224.128 303.925 309.045 357.435 29.4651 135.791 309.611 473.735 242.214 239.622 157.951 241.855 244.373 239.34 214.29 255.203 128.72 127.214 -95.7415 554.587 246.412 254.872 242.613 256.09 236.278 243.625 263.613 442.274 186.864 35.0424 339.476 187.505 240.422 242.025 223.418 115.818 206.74 228.746 202.726 67.311 57.4438 -26.8583 125.015 100.183 81.6239 113.99 38.9156 -31.5148 14.2459 81.9968 43.1876 113.8 145.574 57.6768 63.3173 137.603 58.5412 -67.955 -39.198 -85.4466 -17.1549 227 202.106 122.778 232.748 206.158 217.662 228.604 251.246 212.887 221.605 236.045 222.348 230.794 219.261 273.293 229.119 277.241 226.44 246.073 377.138 283.772 258.018 292.962 315.967 290.072 301.697 202.33 234.822 203.849 212.503 213.932 236.922 235.804 167.136 261.291 150.841 248.08 288.741 224.9 253.052 282.227 234.933 186.803 209.214 245.397 213.977 30.0004 144.784 57.4841 10.487 8.0269 16.6084 2.37525 15.6476 18.4888 2.42576 5.16128 1.70556 35.2996 32.5982 19.4029 -159.623 18.4778 38.1412 27.5489 190.236 195.449 281.951 238.778 17.8403 -12.3128 117.818 -73.9951 47.3664 -39.9944 54.8677 12.8795 38.5599 1.08077 3.36091 18.2948 27.9135 -0.101955 415.846 425.717 427.07 417.178 425.954 414.892 421.192 406.721 426.802 427.322 426.499 419.873 448.249 420.343 386.168 441.486 344.353 445.168 446.078 343.182 383.396 426.055 431.398 429.431 367.649 429.194 430.377 423.829 356.085 411.24 453.965 437.868 412.702 408.968 352.717 418.782 428.705 427.958 428.304 426.184 424.72 425.135 440.395 461.05 479.581 405.555 490.192 438.068 472.026 411.333 424.086 417.927 426.128 414.102 424.835 409.517 402.265 431.182 351.173 445.341 360.107 390.372 444.571 413.056 423.673 422.609 427.822 379.479 422.734 422.981 402.357 419.211 415.689 387.113 387.511 424.865 392.601 364.731 410.387 418.881 458.51 400.373 357.646 411.659 423.955 423.818 435.072 418.701 427.778 409.306 435.242 414.897 438.975 424.833 525.954 426.192 500.718 414.098 447.8 429.42 416.53 427.24 435.402 428.5 426.051 403.34 452.263 432.191 353.989 397.715 462.676 469.383 467.277 425.227 437.722 440.109 472.219 433.623 421.823 361.685 386.768 446.612 449.016 413.296 406.615 398.67 453.604 431.841 433.77 431.236 433.335 443.925 430.547 413.033 412.128 309.801 388.253 462.397 450.792 331.508 419.996 427.052 430.283 433.876 425.154 426.399 462.005 414.194 419.835 424.649 426.159 369.227 422.475 422.314 472.093 409.724 407.908 339.671 355.661 399.844 440.191 353.181 403.77 410.265 421.845 408.955 386.867 390.854 451.626 413.853 428.357 435.091 428.235 463.114 482.222 418.262 416.609 407.154 401.722 407.14 419.991 405.622 417.266 425.654 424.492 436.221 421.246 425.316 488.853 254.304 264.774 266.599 263.343 260.089 261.586 223.913 252.946 234.688 246.782 231.842 202.3 178.002 193.026 230.671 233.686 154.952 270.997 257.315 284.89 275.709 278.254 234.162 278.803 228.643 255.592 256.382 237.77 251.245 236.166 229.777 255.091 250.075 257.69 266.763 246.924 262.548 268.216 286.787 280.055 249.884 257.956 274.421 273.142 422.895 402.592 420.265 405.518 451.92 431.264 435.1 462.319 437.706 184.918 285.496 286.015 183.632 287.291 431.093 424.346 426.77 431.06 434.026 424.781 425.648 274.628 156.79 278.509 176.294 281.105 428.458 417.45 409.591 414.721 424.497 423.554 420.319 424.47 286.253 430.822 285.424 413.716 275.509 275.315 269.421 285.277 267.453 283.119 276.065 194.377 182.165 234.275 161.176 253.267 257.971 280.931 290.365 284.021 267.183 275.964 267.183 246.469 259.3 245.859 282.389 258.601 233.667 267.923 293.129 289.598 290.521 273.715 283.257 285.709 289.29 280.496 287.384 289.588 287.264 283.835 283.841 285.37 181.282 350.404 336.961 314.061 304.596 298.056 246.194 420.351 173.069 378.99 291.263 431.014 358.524 277.752 395.835 275.32 445.715 431.997 425.888 438.145 435.097 440.372 174.339 332.911 250.594 270.081 283.879 207.706 283.313 355.543 406.912 433.574 347.562 446.588 169.242 286.242 284.252 285.187 218.338 327.161 268.296 306.42 263.079 294.026 249.183 325.145 285.068 307.882 300.783 277.09 228.862 254.707 269.829 258.939 285.957 245.594 263.06 274.311 164.617 312.395 269.067 243.285 236.529 255.753 307.811 257.83 247.337 274.299 258.498 277.979 264.317 287.593 269.406 277.403 255.816 272.911 280.656 280.809 276.2 274.155 275.785 280.212 312.651 367.743 372.666 343.592 373.816 291.273 357.759 344.14 420.693 417.437 422.03 398.991 403.019 381.616 439.685 423.376 452.038 438.143 451.836 236.562 234.006 337.532 277.215 316.322 288.37 244.361 334.666 394.394 406.874 393.224 399.826 401.959 291.486 330.133 374.227 392.867 369.874 382.486 368.046 354.576 191.226 300.496 302.076 184.967 304.887 272.733 331.19 278.8 339.981 288.647 301.071 289.575 290.952 286.179 297.188 296.482 298.175 293.977 326.222 298.614 310.674 309.303 284.117 285.362 280.886 289.433 288.128 281.51 280.273 295.057 287.116 362.783 284.34 351.423 291.39 295.35 278.698 297.141 286.729 302.686 281.032 -40.5814 -248.14 -36.1322 61.7289 -242.771 -56.2891 71.2433 -13.559 333.313 -2.22779 -40.6645 -1.97741 -32.0922 -6.07991 5.55049 -72.7951 -0.923473 -48.8631 1.57499 -50.2504 33.4444 -16.7448 322.42 -45.8178 -51.547 -24.0762 -26.7592 -286.299 109.858 -267.045 -14.3963 90.4217 -66.1342 16.923 -114.402 -80.1348 19.1983 -122.558 236.807 180.708 -52.6857 253.921 153.897 302.394 238.004 283.153 282.103 298.085 307.381 294.47 327.193 357.163 383.885 328.702 350.83 313.646 354.921 324.049 369.558 304.701 337.457 264.132 239.833 299.464 270.877 285.794 282.069 247.205 186.541 -46.1576 -370.935 108.74 141.928 -404.66 120.05 -73.2885 -70.2878 -93.5801 -64.1695 -97.0823 -89.5367 -83.079 -103.059 -5.57294 29.637 -103.539 -74.4841 -78.7502 -124.477 -51.2535 -63.8754 -70.1687 -129.488 -67.2937 26.7616 -99.5116 42.6918 -112.982 69.1701 -87.9528 -88.9636 15.2833 -116.399 -93.6228 14.9515 -100.392 307.585 243.374 262.741 351.001 275.875 345.566 304.959 275.522 -58.76 458.254 254.295 228.742 282.69 162.755 286.395 276.879 305.345 265.642 287.722 320.443 247.049 333.584 359.972 228.525 245.12 307.334 296.918 281.188 239.87 201.39 307.444 246.517 251.808 323.845 277.416 272.197 307.271 307.315 250.934 253.032 327.495 300.867 352.508 276.113 262.112 350.011 282.308 205.128 365.84 195.076 193.581 362.723 5.39479 4.37658 1.5991 16.6783 2.89314 -14.5472 -5.71304 -234.016 -2.85495 -29.8504 -40.5351 -44.9785 -55.4406 -4.47278 -53.3826 -49.7068 -3.14856 213.307 202.527 328.179 194.576 327.247 -26.7984 -220.764 -58.1775 -53.5733 -40.6175 -0.494995 1.9586 7.82128 -10.7492 6.96626 340.766 336.965 372.991 363.625 383.69 343.286 323.492 329.976 269.085 283.516 345.024 282.677 354.592 329.781 339.764 363.98 296.718 319.304 386.481 321.529 236.381 360.627 196.969 204.439 359.778 10.2329 -0.32481 11.0746 -51.8463 -114.392 -84.3017 245.853 180.509 335.824 219.127 355.043 -45.6881 -75.3021 -103.042 -58.6215 -72.1103 -5.90957 0.50617 5.42274 -4.65085 4.20518 435.407 434.379 434.163 432.253 427.764 432.278 -53.5956 -50.6777 -55.4858 -54.0799 -52.6608 -51.4992 -57.577 -53.5638 -41.1025 -53.3353 -57.3394 -48.7792 -54.1966 -56.351 435.179 433.955 433.99 431.398 426.608 431.657 -56.4689 -61.3983 -56.4478 -58.5832 -55.5588 -60.113 -58.6465 -74.8987 435.453 435.813 -69.2238 435.26 -73.8816 -74.1978 -78.0491 433.062 432.261 -73.8113 433.091 -79.4929 435.191 434.931 434.999 -78.9573 434.966 432.624 -82.9261 433.771 -79.9431 -82.2219 436.053 435.469 436.773 436.663 436.05 435.394 437.167 437.038 436.18 437.646 437.329 437.65 437.371 436.682 436.881 437.522 436.705 438.459 436.404 437.931 438.389 436.966 437.451 437.186 437.757 436.423 437.672 437.174 434.397 -69.5684 435.963 434.425 -70.8419 -62.3851 -50.5105 -57.7193 -61.6462 -61.1938 -60.0165 -64.5803 -69.008 -70.8712 423.489 436.783 430.682 -72.1397 432.012 426.568 431.097 -74.5087 437.732 -76.0293 436.01 -74.7858 -73.3079 -77.2167 436.722 -72.1014 436.615 -75.929 -73.239 -87.1145 -90.5452 -90.0124 -88.5234 -83.3327 -86.0679 -83.129 -87.2924 -81.024 -80.5612 -78.1409 -84.0906 448.545 430.673 430.675 429.066 439.076 629.15 568.701 377.848 389.785 385.767 363.03 419.275 401.103 415.987 405.751 400.356 379.878 425.169 428.727 434.383 431.735 430.034 408.408 428.024 400.452 439.075 423.468 519.853 424.508 417.56 505.898 481.953 421.638 379.671 318.063 -103.587 -109.352 -108.293 -104.146 -93.9498 -85.5139 -92.392 -86.5382 -101.835 -104.508 -100.482 -106.084 -95.7683 -90.9631 -89.3854 -96.5069 -122.702 -121.492 -126.353 -118.309 -124.879 -118.487 -123.526 -127.689 -130.488 -130.059 -134.543 -126.763 -130.39 -130.918 -122.751 -124.293 -115.231 -121.936 -124.538 -117.597 -129.134 -131.509 -135.015 -131.255 -131.553 -129.582 -131.566 424.723 411.873 429.608 416.628 426.405 406.948 429.23 432.715 434.909 437.135 434.388 432.646 436.795 434.979 432.347 435.97 435.058 438.541 432.232 438.194 435.47 428.017 424.518 429.121 419.092 431.781 276.1 434.184 523.894 376.166 414.288 359.772 385.625 470.279 404.868 349.803 415.75 415.774 412.628 423.965 423.19 416.856 422.478 416.373 422.572 415.74 -138.259 411.592 412.636 310.518 459.683 439.46 406.803 341.079 425.2 394.658 444.071 434.596 369.69 432.296 404.89 420.404 417.125 409.338 -105.514 -112.712 -114.378 -106.434 -109.367 -110.709 -100.339 -94.6224 -100.006 -95.1891 -102.218 -98.704 -99.3521 -93.7157 -94.0644 -99.0146 -104.843 -114.126 -106.007 -112.495 -106.957 -112.728 -104.665 -126.55 -127.723 -117.801 -122.201 -126.093 -127.756 -119.851 -131.612 -135.701 -139.692 -134.815 -135.063 -133.439 -133.616 -130.339 -133.468 -132.161 -137.306 -129.806 -134.115 -131.626 -128.85 -121.887 -127.407 -122.091 -128.881 -121.699 -130.202 -91.7678 -83.5139 -82.243 275.742 292.722 306.753 293.51 289.383 295.186 280.359 -62.2305 -76.5841 -68.6726 -62.2071 -76.8689 321.5 309.611 293.675 301.172 320.114 308.675 303.329 -92.4103 -83.0913 -82.9053 290.648 294.325 301.718 291.35 297.993 291.831 291.96 -76.1126 -66.9577 -58.9885 -59.8658 -75.7462 -128.741 -128.631 -126.37 -131.675 -128.898 -126.329 -129.906 -128.727 -131.465 -133.626 -129.132 -130.668 -130.166 -125.657 -118.997 -110.992 424.371 -120.957 400.662 423.935 434.972 417.985 423.169 421.825 419.337 332.996 214.085 347.716 345.65 262.314 315.208 367.591 -134.791 -132.862 408.9 -129.091 381.503 398.394 407.527 370.033 413.759 380.029 379.613 427.216 -128.785 426.751 428.244 428.989 -128.804 -109.788 -123.561 -120.305 -87.6832 -97.5784 -90.1885 309.133 289.833 295.419 294.892 289.396 289.86 330.294 331.432 302.331 348.001 -66.172 -56.5076 -61.7011 -74.5155 -74.2562 -55.57 -66.5231 293.517 359.613 295.592 375.957 -69.7756 -76.622 -58.6212 -61.0498 -70.2277 -75.0205 -56.9053 -78.9188 -99.6665 -91.3532 -88.9588 -89.9733 -80.8784 -130.196 -134.493 -130.146 -134.704 -130.66 -127.394 -132.125 -1.11339 -6.06318 -2.12949 -1.98402 2.03356 2.3287 1.87517 2.61471 1.67455 0.064531 -1.02748 -1.08267 0.0256611 312.55 295.983 314.953 -12.7427 -9.3714 -13.6822 331.75 -8.73332 -36.6289 -37.4076 -42.1667 -30.8412 -25.2048 -42.5113 -33.2948 -16.6361 -10.1308 293.159 319.602 -8.98544 -38.9415 -35.1864 -43.5122 -43.9031 -36.1554 -43.6373 -35.4043 2.52587 3.5361 2.61938 3.98095 2.94435 2.30332 -1.34853 1.45091 -3.10955 1.33022 -3.09117 -0.181755 -0.985314 -2.13129 -0.149277 -2.65476 4.74386 5.96012 5.95094 4.63522 3.15816 2.04993 2.00694 3.22137 4.86208 6.12762 6.08321 4.89723 3.01864 1.92549 1.88361 2.9632 7.01952 4.52234 6.1176 4.09575 2.72376 1.46408 2.56377 1.40592 -2.66441 -2.33984 -2.28225 -2.68878 -2.85801 -2.82029 -2.83271 -2.82786 -2.59096 -2.17241 -2.20855 -2.56361 -2.92647 -2.91052 -2.90112 -2.92989 -1.19296 -1.88059 -1.23246 -1.88875 -0.066927 -0.379113 0.255407 -0.434518 -0.355161 -1.37453 -2.01292 -2.73266 -2.4891 -2.82781 -2.53351 -3.08324 -3.13318 -3.22345 -3.07543 -2.93119 -3.08152 -3.08875 -3.01121 -2.92227 -3.16688 -2.67761 -3.51042 -3.19916 -3.20274 -3.48313 -3.43465 -3.38874 -3.37211 -3.43316 -3.48 -3.18498 -3.17263 -3.47929 -3.45318 -3.37898 -3.39625 -3.41506 -1.55729 -2.52618 -1.56509 -2.46895 -2.4067 -3.40435 -2.36184 -3.12901 -2.38475 -3.00047 -2.43783 -2.93836 -1.74999 -2.59848 -1.51385 -2.5959 -3.48332 -3.2486 -3.54296 -3.18445 -3.09124 -3.80689 -3.38568 -2.82473 -3.31281 -3.39304 -3.39259 -3.42939 -3.57154 -3.01459 -3.19466 -3.72303 -1.41126 -1.66552 -1.6451 -1.43606 -0.924123 -0.500735 -0.93583 -0.490045 -1.39242 -1.65233 -1.64397 -1.39151 -0.91733 -0.456966 -0.881405 -0.480242 -2.57401 -2.05912 -2.37782 -1.70333 -2.75556 -2.92501 -2.9218 -2.93815 -2.88498 -2.97049 -2.56936 -1.2307 -1.47171 -1.73729 -1.54102 -1.80376 -2.48707 -0.713756 -0.438465 -0.864227 -0.38055 -6.97145 -7.09992 -7.11315 -7.06569 -7.26763 -7.15424 -7.3392 -7.46666 -7.42455 -7.22227 -10.2308 -13.1455 -10.8027 -13.0865 -8.00639 -6.77404 -6.92986 -8.18518 -7.61312 -8.53937 -7.42872 -6.87847 -7.01798 -6.98661 -7.0485 -6.89953 -7.28139 -6.96361 -7.44948 -7.00294 -7.25648 -7.06848 -7.12798 -7.48359 -7.28212 -7.30628 -7.3704 -7.682 -7.51652 -7.7653 -7.37021 -7.58303 -7.24401 -7.50207 -7.23302 -10.5048 -10.1136 -10.867 -10.4164 -10.9442 -9.99728 -9.34847 -9.04515 -10.4197 -9.66778 -8.37095 -8.84114 -9.2838 -8.71137 -11.5392 -11.276 -11.197 -11.3903 -11.2905 -11.9049 -11.6453 -11.9693 -11.5152 -11.5339 -11.4182 -11.273 -11.4165 -11.3388 -10.3713 -11.0364 -10.9572 -10.3587 -5.74044 -5.63197 -5.48488 -5.76743 -5.29858 -5.4399 -5.52827 -5.25086 -3.01559 -2.44909 -3.02903 -2.40106 -1.14578 -1.70128 -1.64138 -1.23896 -39.9221 -36.841 -37.5581 -34.4668 -46.1561 -38.68 21.7773 -5.66444 -64.8527 -49.595 -62.3713 -58.042 -52.2395 -43.9594 -47.5462 -49.6474 -74.5665 -68.9108 -60.4652 -58.5627 -100.025 71.6014 -33.122 -74.3254 -8.16458 -61.2705 -12.1131 62.3387 -81.1605 -107.125 -82.9703 -98.9936 -48.4347 -17.427 -21.1141 -9.47594 -28.811 -37.7277 -35.8965 -85.0762 -85.4058 -87.7225 -78.7926 -77.4723 -86.4006 -114.47 -110.484 -114.226 -101.19 -120.467 -111.711 -77.0066 -72.2136 -68.7816 -77.2048 -86.1228 -80.7726 -97.0823 -99.7792 -65.1542 -60.633 -66.7081 -62.003 -73.8993 -76.9985 -147.744 -79.7243 -93.9444 -71.3186 -107.655 -90.5528 -85.7886 -148.415 -146.072 -140.575 -150.133 -141.454 -147.276 -161.962 -199.341 -145.223 -163.348 -167.06 -157.96 -125.15 -231.193 -122.432 -159.992 -146.705 -145.786 -132.45 -108.376 -114.513 -138.588 -132.485 -130.009 -123.941 -148.979 -150.302 -155.087 -151.539 -148.097 -142.258 -131.741 -73.5356 -97.2124 -75.788 422.812 431.791 426.315 430.381 414.408 431.015 76.2322 -129.66 207.512 -118.647 173.009 -108.852 -108.121 -109.674 -94.7009 -137.124 436.479 421.839 415.34 -135.696 -116.76 -101.653 -78.2545 -115.752 -97.6569 -115.985 -198.815 217.014 74.8419 382.699 -153.578 90.0315 -130.174 -110.166 -113.18 -108.892 -127.805 -112.438 -111.93 160.79 405.579 247.295 392.663 102.789 -94.5386 -92.8587 -86.5906 -91.9866 -95.7594 -86.172 -87.506 -86.1704 438.347 438.549 439.001 438.298 438.035 438.939 438.506 437.316 434.648 437.025 436.728 435.412 -91.7312 -92.0912 -90.1433 -89.1798 -95.8497 -82.9038 -95.3732 -89.3606 437.948 438.264 438.172 437.827 -110.334 -100.117 -110.411 -100.808 -122.964 -130.57 -123.099 -132.088 -124.562 -122.546 -130.515 438.459 438.795 438.264 438.609 438.457 438.319 438.178 438.39 438.323 -111.52 -100.938 -112.193 -104.539 -115.043 -110.462 -102.157 -123.703 -133.561 -122.871 -132.765 438.356 438.543 438.475 -111.87 -74.7871 -28.2737 -77.3309 -124.533 -62.9706 -95.9948 -97.8728 -92.2952 -76.9753 -103.089 -96.4682 -75.7357 -66.264 10.6436 -100.97 7.42504 -135.3 -133.589 -115.162 -104.074 -104.084 -104.268 -104.054 -106.056 436.037 436.664 -107.911 436.374 -104.886 -105.37 -104.658 -104.966 -105.302 -105.048 -107.536 -106.496 -109.687 -104.608 438.281 -105.253 -114.991 -111.47 -118.051 -108.027 -123.752 -131.082 -122.525 -132.643 -131.459 -126.942 -124.474 -129.934 -124.989 -115.371 -116.179 -108.901 -109.631 -114.47 -123.537 -132.669 -125.082 -132.99 -117.313 -110.358 -114.629 -113.674 -118.834 -108.233 -118.489 -107.557 -116.347 -145.936 -144.714 -143.136 -145.521 -145.021 -138.291 -143.284 -139.823 -143.862 -142.88 -139.317 -148.112 436.53 435.857 437.287 -147.572 438 437.327 -147.86 -147.952 -147.796 -152.099 -146.052 -147.815 -148.316 -146.693 -140.529 -142.509 -140.087 -144.02 -144.823 -142.831 -148.8 -145.035 -151.053 -146.17 -149.01 405.118 -153.602 -154.332 -149.917 -151.357 -156.634 -145.112 -151.461 -158.571 -154.517 -154.309 -151.767 -149.686 -141.585 -135.141 -142.573 -84.8496 -146.793 -139.856 -151.874 -151.332 -143.935 -155.365 -156.118 -160.704 -157.756 -159.164 -139.884 -181.658 -164.734 -174.083 -165.927 -174.677 -181.114 -179.665 -183.796 -184.565 -167.497 -187 -158.512 -156.439 -164.265 -151.747 -193.527 -188.526 -195.986 -152.144 -156.126 -148.401 -158.387 -142.403 -143.512 -144.514 -143.647 -140.297 -137.902 -143.245 -138.221 -141.986 -145.668 -151.061 -153.38 -157.856 -158.44 -156.713 -151.641 -151.743 -147.98 -139.753 -143.281 -144.385 -151.673 -161.355 -160.113 -160.702 -147.859 -153.094 -145.614 -157.864 -146.601 -155.048 -151.426 -179.639 -170.405 -178.764 -172.07 -172.422 -158.743 -154.726 -168.546 -176.585 -163.299 -166.2 -165.259 -172.571 -165.252 -165.263 -162.952 -168.768 -170.193 -189.182 -162.713 -190.28 -188.84 -177.181 -168.234 -165.34 -174.711 -173.081 -168 -168.444 -116.713 -101.569 -97.5575 -89.8955 -103.917 -111.956 -104.823 -128.202 -116.78 -116.087 -110.244 -110.011 -138.281 -122.335 -112.947 -95.36 -91.8476 -104.527 -102.175 -100.809 -110.477 -139.919 -143.143 -140.928 -128.68 -148.431 -136.182 -133.589 438.866 439.933 439.445 440.468 439.899 439.053 439.575 438.931 438.851 438.268 437.907 438.608 438.067 438.987 440.094 439.862 440.544 440.218 439.695 440.627 438.948 438.142 438.452 438.697 438.731 438.163 438.746 427.938 430.907 438.987 374.797 436.958 420.54 373.456 418.477 416.309 433.667 436.3 431.378 456.583 465.162 409.766 403.296 418.013 411.087 408.874 412.022 342.605 402.764 416.868 402.426 396.927 365.162 463.669 423.256 430.867 431.002 482.755 434.236 421.053 422.516 451.788 436.679 433.506 434.213 436.604 430.239 435.762 475.221 421.967 425.326 374.686 412.352 432.062 429.857 391.003 433.775 422.107 439.04 355.009 432.271 484.07 469.458 426.274 381.013 377.567 418.109 392.269 419.133 353.677 423.317 428.666 428.67 406.68 434.412 366.981 387.881 379.568 455.997 367.049 411.203 428.473 412.333 424.198 435.531 426.85 431.462 423.834 452.61 432.248 422.468 385.568 418.675 413.565 466.325 450.045 373.387 426.969 441.019 436.824 422.188 461.396 479.158 467.314 438.355 438.931 436.859 437.455 437.097 438.125 438.79 438.131 -154.191 438.112 438.465 438.088 435.352 436.782 436.804 437.714 461.898 455.393 470.889 433.81 443.975 438.603 431.658 431.096 -154.162 415.667 439.593 442.714 441.42 -169.566 -165.117 -171.404 436.567 323.199 412.488 376.855 451.096 415.775 409.048 409.113 434.651 434.468 430.368 435.539 418.618 416.337 408.817 402.339 430.127 369.148 445.989 433.428 438.865 435.509 430.319 435.625 460.316 431.838 461.546 492.274 433.392 433.442 433.146 428.68 438.188 488.564 384.581 399.154 408.063 374.702 383.467 460.203 471.749 356.814 394.123 424.673 483.055 396.363 431.717 356.963 473.769 429.728 460.421 432.362 421.377 430.862 397.714 399.797 465.805 391.867 378.933 331.688 349.344 428.706 434.314 444.634 433.299 428.477 436.202 431.026 431.398 440.183 426.25 430.95 445.82 437.156 346.88 304.998 304.801 312.338 306.619 307.929 299.058 312.497 372.908 307.403 321.575 301.269 308.615 317.724 302.718 303.031 -29.6374 -40.9703 -23.9458 -38.415 311.082 372.585 300.729 303.626 -56.2227 -48.6099 -46.4308 306.191 319.531 308.738 325.981 311.791 305.135 315.196 295.81 275.461 442.738 291.483 250.745 424.025 393.675 368.955 418.634 390.281 449.058 447.477 443.665 448.815 451.287 428.894 392.407 384.414 431.401 389.37 438.913 439.72 441.176 425.663 443.435 444.311 434.929 283.777 271.446 176.456 288.956 238.364 291.873 288.472 307.505 298.535 302.588 291.058 282.931 316.508 295.341 142.865 220.783 315.318 224.658 290.599 300.446 302.782 299.38 299.952 301.243 304.203 314.843 296.859 321.906 313.671 320.519 300.66 -136.532 -121.383 425.831 436.28 -125.741 -110.203 -123.32 -98.0508 -94.9428 -114.449 -117.935 -91.7537 397.202 403.797 405.736 329.694 -101.591 -91.598 -109.838 407.685 418.778 431.435 417.062 216.685 356.01 386.5 353.636 311.074 308.08 312.675 318.081 317.37 300.69 -38.3796 -33.4588 -41.008 -24.6894 -43.051 -33.4607 -28.8045 -57.5731 -61.7349 -73.8694 -74.909 -58.2311 -70.9492 -59.3302 -39.8075 -28.8836 -27.4347 -42.0733 -49.7295 -49.9421 -68.1148 -53.6959 -64.7569 291.92 299.066 304.044 344.978 -70.4934 -51.7062 317.418 239.748 304.042 338.687 245.04 307.708 352.103 361.354 415.863 437.785 283.175 412.521 165.786 401.631 413.263 411.846 409.857 418.147 418.354 393.274 425.228 385.441 418.884 379.2 366.718 388.202 409.807 334.56 434.51 402.567 403.707 280.899 383.378 363.523 395.569 388.511 375.317 374.904 397.298 294.467 304.592 326.687 299.89 314.247 339.149 301.485 298.401 299.671 305.437 294.39 301.832 297.577 299.212 308.25 306.867 314.246 299.585 302.949 309.263 301.053 294.792 307.241 300.559 299.626 298.91 256.614 291.486 299.638 202.322 297.829 309.165 294.906 345.07 298.705 301.538 350.315 315.155 363.706 307.881 3.612 93.5825 3.93715 108.114 4.31039 2.48533 0.648151 1.31263 -0.257269 1.7448 2.24145 0.952719 5.87108 4.06957 3.57164 267.337 235.701 2.20943 1.36185 -0.123837 0.129135 1.91226 1.9385 2.75071 6.57864 3.5536 4.73775 3.75845 239.197 -194.64 238.862 151.955 -273.066 297.268 127.389 207.309 186.895 -295.991 261.306 248.503 -158.274 286.188 342.474 315.317 221.461 290.559 304.699 309.979 200.485 172.077 319.587 273.045 256.332 297.328 -6.8533 287.788 300.321 291.796 314.266 273.698 289.735 307.028 253.218 387.634 328.822 312.303 330.594 -45.6052 -43.1952 -99.766 -71.0272 -21.3518 -104.718 -76.9352 45.1551 12.1508 72.6594 13.238 97.2958 203.276 -128.289 174.517 -32.6084 -65.4128 -50.3991 -28.9094 -27.1345 -11.7529 -58.0854 -37.8573 -40.5276 85.039 193.115 239.249 236.479 210.855 147.622 45.733 -84.3371 -94.6116 -107.95 -53.6279 -110.609 -74.1077 -83.6448 -26.1477 -50.2796 8.33017 -41.766 -33.5322 -15.7606 -3.0622 0.207485 330.63 -2.32671 -1.90097 -10.1275 -20.5244 -11.9061 -14.2518 -9.23514 -12.4211 -16.7775 -7.48517 -15.2117 -6.12048 -7.45462 -14.8363 -7.00513 317.943 330.56 326.164 -3.28027 -0.746455 -1.85714 -2.15492 -3.2357 -2.13121 4.75757 4.00853 6.28356 1.59885 6.43872 3.21123 2.35363 3.95502 2.89064 4.11187 2.95105 2.53089 3.26303 2.08551 0.445173 3.84562 0.512789 4.25976 2.50152 4.69915 8.04916 3.68761 3.84577 5.81564 6.16767 2.99755 351.591 342.739 390.304 373.597 356.177 347.164 379.175 313.461 303.205 316.749 310.115 323.849 295.006 310.441 145.235 177.328 115.299 297.185 246.41 224.14 328.997 324.566 320.965 322.59 317.882 331.73 329.782 336.176 395.323 324.968 318.095 344.061 355.83 306.825 327.526 343.788 249.595 336.701 328.504 290.024 -66.5166 -60.8016 371.517 -30.0157 3.34527 -14.2819 -21.1693 -45.7643 -13.3456 -10.2145 3.91671 3.01161 3.8892 220.861 25.9254 194.168 149.537 264.93 165.135 134.546 287.701 -58.0524 328.994 220.284 4.07264 240.128 313.085 -27.5491 -53.7726 -31.2775 -37.8562 -23.2724 406.662 436.18 425.644 426.488 427.933 444.006 294.431 457.953 295.895 425.927 443.488 433.567 398.824 440.195 374.336 415.467 385.226 579.913 367.672 717.763 102.671 322.807 424.556 370.051 623.171 506.198 433.587 478.57 469.924 423.123 428.441 467.529 435.844 500.343 396.328 413.547 429.235 442.133 418.422 428.837 477.305 406.911 379.044 461.208 866.828 393.929 432.407 539.284 435.718 454.88 431.267 419.84 442.091 435.612 440.946 458.222 521.212 389.816 425.533 535.271 295.223 438.659 635.235 442.734 142.241 446.518 446.059 436.496 439.925 422.357 450.554 379.467 511.933 451.349 222.043 291.268 452.896 -91.0117 430.78 464.926 431.766 422.194 419.219 428.443 671.047 407.961 442.233 349.969 502.852 413.819 386.279 478.168 435.847 440.27 453.575 442.33 423.303 447.004 543.104 439.967 468.543 431.955 449.504 449.489 408.43 367.815 350.4 487.059 379.132 410.715 496.944 358.429 483.67 414.746 428.902 428.84 425.834 442.475 391.975 286.223 420.748 598.689 708.201 476.152 556.279 510.99 443.701 428.817 416.585 427.658 365.986 212.997 465.683 392.369 408.886 314.91 448.561 515.934 347.613 430.885 367.544 418.606 399.42 79.1124 423.391 352.645 222.104 398.687 408.636 435.698 427.749 438.014 411.758 435.687 500.516 389.941 715.272 477.344 499.509 398.223 421.344 491.482 415.958 451.345 579.565 517.49 433.021 423.006 469.98 390.498 433.27 430.933 438.385 415.197 412.846 433.214 356.116 535.519 538.597 395.131 440.257 444.024 450.709 434.244 457.064 438.652 386.188 437.13 443.258 456.336 414.048 491.248 437.885 88.1923 442.257 542.618 256.028 284.13 284.818 258.886 246.222 285.256 293.987 286.122 265.803 278.291 278.85 112.47 -352.613 183.897 358.625 308.484 172.537 287.289 306.935 272.407 242.716 197.793 307.078 241.036 251.159 276.519 247.84 259.549 255.989 232.228 213.274 280.925 262.153 258.701 239.426 324.297 287.272 287.234 286.83 331.893 322.729 313.146 262.465 281.308 324.743 252.26 281.893 355.14 444.066 447.063 453.227 450.328 441.204 151.243 246.98 238.654 423.554 418.518 443.192 335.274 373.614 406.526 203.975 260.938 191.059 238.268 228.677 158.095 320.689 433.391 417.908 145.146 400.759 367.662 233.639 398.625 241.016 260.231 391.601 278.528 254.465 280.389 290.374 286.455 284.904 294.077 355.37 71.2772 336.394 320.395 325.204 249.713 284.739 278.925 285.291 272.065 298.689 245.977 265.273 289.951 272.99 257.263 260.848 232.541 242.903 219.727 269.494 278.165 273.526 280.512 296.687 283.706 47.3243 283.736 289.557 275.693 282.466 273.735 379.047 341.843 381.338 348.164 406.649 413.011 419.189 326.05 389.042 334.044 419.863 429.893 414.468 436.501 288.047 404.841 444.441 441.958 418.708 496.995 414.843 460.929 371.755 341.377 315.78 358.226 326.951 370.7 354.348 412.595 396.722 396.371 425.288 365.842 381.25 411.655 290.976 291.234 237.388 288.306 284.356 280.383 287.829 287.389 292.527 281.384 291.606 289.54 312.461 311.761 292.795 302.989 237.115 295.733 289.443 300.59 294.165 288.412 303.082 290.289 277.488 275.93 279.985 234.015 244.604 336.513 246.248 289.004 294.289 294.82 296.019 287.101 281.723 301.009 287.55 303.499 272.79 269.342 413.042 288.094 424.624 284.82 465.831 435.422 409.597 454.043 412.191 457.793 433.196 431.038 443.23 469.904 98.7364 214.525 330.529 282.527 313.04 259.259 260.385 282.457 435.226 437.05 429.192 426.059 424.226 432.752 448.277 220.862 260.965 239.589 234.83 210.514 225.757 288.359 218.433 278.966 263.872 241.321 274.353 288.119 291.161 282.888 285.707 281.446 283.693 318.471 297.019 231.693 289.206 215.176 232.491 299.867 325.018 277.323 260.565 314.267 224.209 291.3 312.96 263.152 262.04 265.045 266.15 224.38 293.062 347.866 310.042 254.093 241.967 240.794 284.594 265.555 261.727 274.551 273.914 277.815 262.261 272.899 271.79 -20.0366 273.364 263.557 156.423 318.767 -98.6365 26.4443 -141.602 -144.194 -129.513 -26.5718 -73.6499 -12.4812 -24.3083 -6.22616 -21.9015 -9.34717 -19.7947 -13.5108 0.236906 -21.3258 6.18903 -32.8644 16.5781 8.34621 -22.364 -59.7639 -34.9002 -37.6984 -9.57855 -47.0646 347.619 -38.7646 -41.8224 3.03913 1.97328 2.57131 11.7448 13.1631 6.31866 174.142 185.644 156.488 -297.512 218.488 19.2401 241.607 319.424 284.195 291.88 280.635 257.533 194.533 22.9514 221.342 262.128 267.3 256.529 267.727 78.6149 281.242 362.293 284.747 284.338 284.321 366.488 218.917 239.026 270.982 277.132 262.26 279.622 267.714 210.797 579.321 271.324 237.454 440.742 295.348 354.302 291.908 234.617 278.859 283.018 -203.558 272.194 51.8111 184.543 -50.0286 86.8247 56.7788 -4.55899 -14.2107 -40.8973 -21.9383 -0.430706 -49.9697 6.23281 -7.26974 13.5019 -64.9586 -79.3567 -0.134943 218.533 -14.0461 -44.7495 96.7565 -5.47742 -60.5779 -38.9102 -60.964 -23.0605 -0.676235 8.4004 -43.7962 1.58954 219.773 139.657 212.575 244.25 -148.567 258.167 242.587 295.27 373.825 310.229 475.732 275.796 310.293 185.363 222.196 -11.8554 280.416 207.039 -224.475 257.948 243.201 293.1 284.322 318.29 315.711 328.923 198.079 256.293 316.74 289.003 234.469 277.014 196.697 216.743 296.996 312.846 284.3 37.0354 116.755 -171.018 75.5971 135.818 -36.9952 -37.8381 12.0716 -6.63841 11.603 7.78097 -65.6392 -17.3993 -37.808 -42.2993 -46.6167 -76.8578 -106.801 139.433 248.992 196.305 157.235 216.695 114.124 -80.0243 -156.853 -144.514 -65.127 -175.403 -104.714 -96.8474 -1.08701 24.265 7.38807 -27.9272 267.832 245.383 272.558 236.76 327.113 556.496 343.675 84.7895 351.807 372.795 330.688 290.987 289.294 280.622 305.246 286.762 312.759 394.783 281.923 274.762 201.893 204.343 206.476 281.262 272.045 287.993 387.615 213.838 275.882 183.921 190.19 268.551 307.688 268.403 331.482 276.606 264.563 271.14 306.13 267.827 280.451 349.024 307.722 306.764 277.269 336.4 299.422 -34.0253 -103.844 -158.913 -4.52387 -44.145 -85.1721 -23.9757 -2.93067 -35.584 -73.0777 -47.0572 -15.4323 -10.8346 -22.7726 0.0906248 -19.5314 -13.5322 -38.4861 -5.53659 1.33948 160.384 204.484 169.17 256.41 189.953 204.306 -22.8944 -17.3997 269.051 -19.4495 -36.2726 -45.4905 278.945 -44.724 324.559 -37.078 -25.294 -100.183 -46.1913 -65.824 -23.6409 443.301 442.266 444.079 243.187 454.742 409.215 427.38 434.617 491.024 449.426 444.667 443.145 484.04 460.563 420.414 412.591 443.594 495.25 478.202 453.643 462.369 553.643 480.883 452.271 458.115 725.947 284.417 514.74 446.47 451.358 448.691 406.07 449.621 448.802 455.776 291.915 446.701 440.993 459.847 439.8 438.801 447.968 502.403 461.863 433.069 416.658 642.197 434.808 464.281 425.099 434.922 459.856 442.999 277.843 441.011 480.682 321.972 492.722 420.553 560.446 432.237 449.901 402.51 412.041 419.076 431.605 432.812 416.685 440.75 385.88 616.206 289.368 249.497 432.69 366.795 599.105 441.561 424.598 444.51 427.212 440.757 500.773 469.787 436.115 492.917 485.955 371.987 561.534 351.885 520.904 505.258 449.966 442.137 437.71 439.298 448.36 340.181 431.457 455.479 439.22 453.748 444.409 380.92 441.613 460.047 457.463 459.446 453.851 436.301 448.406 461.265 449.98 439.759 377.793 437.737 435.448 428.33 439.625 433.456 450.909 441.547 447.294 450.728 451.757 446.381 444.698 450.772 442.574 441.293 440.423 441.095 438.898 443.248 461.029 477.1 444.036 463.322 437.824 448.764 497.715 444.458 438.944 436.741 381.402 440.349 432.815 431.747 329.573 481.011 433.513 438.458 269.959 427.47 439.571 681.557 366.141 543.572 536.196 579.957 561.019 381.426 492.506 443.453 443.158 488.125 453.104 440.617 427.805 432.458 451.593 436.633 423.876 433.332 396.045 337.725 499.38 425.403 392.719 455.37 266.125 412.615 522.177 495.835 446.495 472.988 435.304 442.014 444.836 315.5 451.78 438.578 444.118 436.772 408.898 441.584 447.478 253.689 255.833 266.788 268.837 289.714 288.891 276.499 272.45 258.9 255.495 263.376 256.7 276.989 196.512 225.972 269.881 250.833 272.043 269.847 251.104 235.58 243.329 209.22 251.308 253.232 439.538 449.81 439.492 436.48 436.79 452.659 517.518 443.906 454.087 431.413 498.643 255.906 253.791 249.812 215.814 241.161 247.231 242.626 249.458 242.035 230.629 231.845 227.263 242.844 238.696 224.424 233.757 257.191 247.109 237.999 251.449 249.474 245.758 439.674 456.93 447.217 224.988 367.634 287.993 228.999 366.213 249.221 429.143 441.377 446.532 458.858 432.978 445.372 230.867 136.841 453.418 467.057 436.802 447.595 438.355 465.239 244.529 243.663 251.056 238.895 241.314 259.986 272.692 240.942 273.255 246.251 256.161 251.016 250.031 224.837 258.919 250.321 215.12 208.289 224.721 253.037 250.411 248.512 243.487 241.076 250.354 241.382 226.28 234.731 211.368 255.142 235.602 241.848 188.863 251.317 249.445 267.075 221.89 447.441 435.779 448.052 530.637 453.776 448.586 449.089 455.475 491.078 482.709 444.071 449.383 440.309 486.76 464.568 242.502 251.885 204.199 245.274 242.432 300.168 256.928 228.225 289.403 205.177 231.159 237.124 42.2979 235.336 255.14 237.065 240.068 237.791 284.076 236.194 249.052 39.9468 259.603 246.696 244.355 -38.2933 -94.8069 -40.4524 -63.4969 -41.5595 -20.8979 -37.2008 277.58 277.985 276.644 280.046 352.309 239.843 189.609 243.698 256.123 284.348 287.432 273.943 302.577 292.571 280.621 270.339 206.712 228.016 231.196 362.656 217.863 319.409 283.563 269.159 279.375 293.16 216 261.59 235.545 240.54 253.65 242.56 256.667 266.23 263.85 272.795 273.562 286.649 247.397 280.2 281.464 266.737 267.367 269.517 329.605 313.464 277.317 275.425 270.848 279.704 283.581 -24.6182 310.603 288.497 278.697 263.752 272.741 248.348 261.491 280.316 253.8 265.379 276.734 249.962 263.364 206.486 259.718 266.36 174.354 267.938 240.179 269.968 270.118 217.944 262.992 325.739 285.187 286.1 292.721 264.442 289.443 299.699 271.293 -2.43146 -61.4645 -8.67075 -37.8742 1.10326 179.144 63.8366 149.023 34.8323 149.521 169.782 -19.169 -44.0387 -64.1041 -39.3955 -79.496 229.801 259.189 232.44 228.764 208.827 -2.00778 246.939 267.394 286.307 263.265 260.933 278.567 318.053 161.022 229.112 334.845 233.218 232.512 324.561 370.705 178.674 229.254 327.727 241.988 247.987 241.026 232.907 258.284 235.348 251.314 226.562 228.745 328.256 206.943 220.739 54.2267 236.236 254.741 252.032 255.494 262.856 250.058 256.754 241.639 291.609 239.052 253.897 231.891 -28.2623 -38.1631 -34.584 421.448 419.952 423.408 422.844 421.291 422.434 420.741 421.992 406.53 435.283 386.997 433.255 411.706 449.039 408.698 408.627 415.502 434.084 417.129 405.332 401.86 359.029 441.055 383.334 462.496 550.328 379.835 466.82 404.904 393.971 411.106 400.646 427.3 404.041 399.975 393.361 438.101 437.272 435.865 423.854 482.875 441.217 430.295 396.979 399.015 427.303 435.76 413.842 450.133 394.828 421.217 427.328 403.649 412.324 386.807 411.787 380.19 357.826 379.701 390.172 396.545 353.938 383.923 380.035 420.727 378.123 394.678 401.929 403.226 350.382 398.674 405.008 406.91 408.818 400.863 412.957 399.884 440.616 430.342 426.807 422.786 386.194 443.285 380.533 551.004 435.197 371.559 429.949 504.605 501.139 577.405 293.025 464.65 442.509 436.119 480.538 427.685 416.612 499.526 478.969 546.429 447.438 449.216 429.412 534.609 432.159 442.083 377.239 445.716 461.044 449.26 437.001 424.551 453.334 353.418 463.286 420.195 450.839 395.766 462.752 421.841 442.779 428.293 440.019 317.457 479.176 325.558 432.684 399.052 426.717 329.722 450.537 398.194 398.567 430.894 421.112 445.943 319.198 425.661 271.638 433.579 398.327 482.312 471.936 483.88 447.325 253.54 450.637 332.262 402.508 393.885 410.933 321.686 477.521 422.035 447.125 387.254 428.317 429.072 435.503 433.809 414.228 409.908 428.8 417.436 413.972 413.541 505.503 302.602 428.548 458.666 371.745 474.128 390.359 244.675 247.548 247.083 239.047 254.115 238.92 229.9 237.757 227.765 247.056 222.667 235.779 174.86 214.307 231.551 260.192 266.624 250.776 136.483 228.794 259.071 247.757 265.404 233.329 185.087 238.367 214.47 267.107 217.526 293.289 327.677 308.729 255.028 295.968 341.519 196.323 284.284 118.448 307.627 318.131 224.675 299.824 187.102 279.632 243.013 260.123 240.383 277.572 270.779 215.728 264.429 248.547 251.013 250.339 256.045 265.499 255.487 274.991 267.682 261.29 268.95 265.181 273.255 269.643 243.511 258.324 276.337 256.67 263.624 254.846 282.185 278.49 255.982 261.794 261.436 274.062 262.471 268.818 446.842 442.956 448.631 436.788 437.64 453.961 461.269 427.511 455.166 434.919 430.325 435.355 274.247 188.909 255.513 275.576 274.299 310.821 261.707 373.367 244.74 240.629 249.666 229.403 295.69 269.324 190.527 298.797 268.23 266.655 270.121 398.218 343.084 72.7502 398.347 444.007 434.676 446.702 435.594 451.992 336.265 406.66 391.949 184.683 246.512 243.706 139.702 276.945 231.251 251.376 248.486 248.053 235.95 253.879 250.132 243.666 250.626 259.796 250.374 213.457 244.654 250.921 236.137 249.749 252.043 256.022 252.319 254.865 181.621 288.005 310.85 201.448 312.322 178.189 295.572 273.7 233.629 300.031 758.942 184.677 816.529 271.02 284.596 269.215 285.102 264.232 281.747 273.579 260.085 255.46 257.194 268.088 260.853 261.033 261.113 258.997 249.075 266.808 262.739 255.103 262.051 260.311 275.279 286.592 285.283 276.774 273.364 283.553 284.934 253.5 283.182 287.461 301.229 234.779 286.686 326.146 222.522 817.615 213.028 744.087 208.256 243.106 789.112 266.99 288.156 290.464 341.062 287.24 348.475 278.806 212.347 265.79 869.835 729.641 196.347 224.094 734.088 257.717 263.356 260.102 267.621 260.92 265.265 240.561 166.833 224.635 253.502 253.371 195.279 315.584 253.512 259.239 262.694 245.4 255.653 193.726 248.061 240.094 382.649 248.998 208.069 258.761 259.782 260.839 260.377 264.853 254.573 177.877 213.869 339.143 229.395 262.334 246.86 247.365 248.967 256.5 263.485 244.957 242.157 256.752 253.411 262.508 268.541 254.122 258.744 268.251 234.035 242.534 280.046 242.018 145.319 234.367 251.326 248.716 235.709 248.29 243.108 245.063 247.359 254.353 259.718 253.055 263.383 257.415 249.58 252.236 248.295 231.254 230.154 243.419 237.583 272.675 269.092 282.784 288.823 264.362 254.817 243.881 249.896 249.277 263.007 243.431 214.836 332.841 421.468 418.729 419.507 421.903 420.366 419.589 421.943 423.52 418.611 418.541 422.359 419.856 423.736 420.156 398.697 406.484 396.896 399.105 403.046 403.294 401.949 389.297 358.251 385.772 354.122 363.811 384.555 394.55 396.648 414.059 402.627 398.09 403.409 397.06 397.796 389.407 381.916 358.071 361.863 359.296 388.889 391.46 406.412 430.028 395.014 412.511 400.515 417.368 407.889 402.865 409.119 482.071 405.693 345.859 385.913 432.139 396.769 355.945 367.62 418.577 386.405 407.304 371.1 404.093 418.058 399.784 359.759 417.141 430.298 405.025 412.702 410.807 437.79 436.327 418.009 425.467 450.67 511.66 451.758 443.723 394.567 458.406 433.167 405.305 333.36 414.509 413.171 409.322 431.107 412.426 351.083 443.713 416.499 418.468 430.971 474.19 441.125 422.742 429.397 418.032 408.187 414.824 406.184 409.871 422.697 469 596.1 403.608 302.831 439.948 576.869 434.249 428.104 432.506 439.9 453.326 434.121 330.641 428.214 399.936 491.93 421.989 435.866 412.867 450.403 428.307 484.668 509.684 480.45 416.15 522.081 452.656 526.113 522.722 440.166 432.865 415.774 451.752 442.977 440.805 420.226 435.348 421.549 431.219 432.512 407.137 331.842 284.835 319.005 549.647 428.057 422.393 409.46 505.594 390.893 416.505 418.986 410.63 361.58 420.918 164.657 463.445 445.192 411.838 437.371 447.818 442.636 428.614 262.013 266.874 234.534 252.717 260.192 270.528 250.775 267.222 265.807 273.686 245.745 264.46 268.606 262.056 262.373 230.654 265.144 261.769 260.923 263.282 252.113 265.711 258.786 258.411 250.957 265.557 277.111 261.592 217.572 258.902 210.897 212.463 259.98 231.105 141.325 191.056 336.347 377.231 113.767 320.251 229.188 181.294 361.343 291.293 269.763 331.413 73.017 183.763 205.569 172.555 207.157 240.934 258.688 247.047 226.783 265.95 234.754 234.188 241.202 237.799 24.0838 220.714 230.203 254.664 261.72 248.909 221.018 298.122 261.544 244.683 228.686 218.748 219.822 223.77 201.38 174.973 400.571 142.717 289.057 168.891 394.285 433.682 440.913 445.629 427.646 210.826 196.661 182.832 351.584 428.371 157.124 416.676 221.69 244.035 236.412 237.179 268.233 241.73 250.265 264.061 181.146 263.148 242.272 234.921 240.578 239.969 241.89 223.185 242.343 222.93 247.046 240.16 242.282 251.559 209.299 263.238 235.886 432.461 421.968 419.392 444.475 439.893 439.094 404.506 441.339 428.91 271.669 286.588 208.142 250.567 237.865 250.459 269.824 243.831 219.348 268.389 279.65 301.515 263.794 222.219 237.361 267.431 237.906 324.431 304.98 293.96 361.28 303.82 343.896 353.366 274.467 647.075 236.507 607.63 263.91 243.94 680.041 309.079 291.551 296.03 342.26 298.273 296.138 344.667 296.48 239.123 631.595 536.022 303.904 250.745 593.818 282.001 293.834 267.433 309.504 274.785 300.428 262.231 254.168 186.122 380.918 249.691 244.45 222.412 238.747 266.456 233 250.707 256.603 260.521 256.937 248.517 278.493 323.241 256.705 269.839 321.23 276.097 382.641 303.913 304.72 360.327 352.409 292.025 374.866 379.279 568.034 430.041 494.359 374.901 288.967 305.943 344.462 324.943 259.148 628.884 604.225 306.666 280.119 640.319 250.677 294.276 270.74 262.766 240.609 241.379 240.241 272.602 233.324 265.375 276.903 227.309 256.992 259.909 274.258 260.603 253.271 259.174 262.622 226.41 223.656 232.785 245.239 236.503 222.406 239.604 261.984 294.37 269.832 262.706 263.183 334.709 314.582 244.558 219.712 290.056 255.068 221.666 247.897 254.134 244.506 251.394 291.14 352.031 207.359 598.678 224.043 -1.51622 1.43378 1.25056 287.543 359.36 360.494 630.56 255.47 246.11 262.946 244.044 243.839 229.988 313.799 254.227 241.914 225.89 180.792 272.888 256.296 238.905 217.271 179.629 293.051 235.485 238.14 248.188 236.759 254.22 253.098 233.658 251.721 234.792 199.61 242.665 220.773 241.849 223.4 221.629 249.754 247.138 249.064 245.836 250.78 240.187 249.447 258.279 251.662 243.822 395.724 423.935 423.799 307.89 412.275 403.448 618.235 406.16 403.636 411.076 412.13 411.424 404.89 411.254 448.595 305.682 432.806 564.011 431.778 476.965 605.555 452.308 442.631 463.693 439.275 400.292 471.435 451.255 466.905 424.93 409.646 403.11 419.39 307.627 392.092 419.819 421.706 417.119 347.028 411.18 457.77 406.769 239.039 332.523 507.373 493.557 331.404 436.959 638.139 382.103 434.08 433.331 438.273 475.257 431.848 498.609 484.021 720.2 431.477 193.293 548.417 361.813 456.258 474.637 376.162 437.878 433.405 440.325 440.87 445.128 428.21 703.048 320.059 294.813 470.571 440.633 603.012 432.278 431.484 461.428 439.503 443.461 367.058 443.052 347.612 479.919 757.448 834.295 536.356 604.405 307.32 409.229 432.395 437.667 284.442 435.443 453.786 503.162 35.8376 430.947 646.297 431.825 489.471 410.148 476.224 551.999 446.978 517.163 337.503 551.831 260.05 416.628 478.683 435.703 408 432.99 79.658 433.658 387.669 437.83 564.471 435.476 456.126 445.174 430.27 499.178 580.569 415.715 564.982 424.058 474.602 101.34 424.037 365.477 575.949 462.999 421.594 543.254 475.827 361.373 409.707 427.44 437.32 425.211 427.367 251.891 445.061 383.739 329.981 432.087 432.698 282.297 479.207 427.969 586.672 418.891 605.434 438.095 680.665 577.501 634.257 415.02 506.45 471.95 433.663 464.256 438.211 469.34 402.858 431.267 427.447 439.184 432.051 392.828 467.425 229.046 298.219 511.366 417.353 427.3 402.624 396.42 -44.808 440.054 460.2 436.514 437.203 424.205 471.307 474.51 430.532 259.128 435.273 427.088 438.615 431.554 240.286 217.576 212.683 228.601 223.06 309.314 222.764 230.046 238.317 222.951 214.075 216.234 200.826 182.672 214.564 222.058 229.826 232.673 209.505 198.748 227.918 217.174 429.371 432.169 431.594 499.259 442.528 425.214 472.97 487.055 436.997 473.626 491.484 454.063 439.613 427.951 629.621 226.748 255.456 233.1 142.027 230.287 224.027 189.138 212.608 214.415 164.823 355.279 200.411 136.714 206.856 223.703 230.978 231.017 298.1 244.427 236.171 212.637 434.653 446.004 446.648 419.054 439.336 439.495 451.93 463.2 437.448 443.056 458.998 441.116 462.233 248.172 241.168 251.72 232.548 254.224 251.479 234.035 240.956 193.474 194.601 238.596 232.063 223.867 239.055 251.116 226.341 222.52 168.109 215.446 235.923 237.231 235.937 431.254 433.647 451.552 444.749 543.64 470.347 454.566 418.342 435.311 413.766 449.676 453.684 422.516 447.2 441.138 451.549 448.202 454.305 275.461 268.727 236.452 18.4421 219.348 241.957 222.322 236.446 271.621 -201.534 -80.2561 232.755 334.575 256.184 228.457 237.548 244.379 230.296 133.007 248.245 234.182 269.004 317.856 265.589 274.225 257.494 238.44 221.684 269.184 321.989 287.795 214.657 229.499 251.046 240.01 242.909 246.1 245.855 237.31 154.734 226.43 229.876 222.864 287.478 226.365 214.196 213.437 224.42 249.425 234.709 222.629 168.726 164.88 419.522 143.07 181.312 214.164 239.354 217.608 237.458 260.43 241.893 231.5 224.34 215.989 226.401 307.108 228.49 321.969 265.654 232.909 239.691 242.223 223.793 234.631 244.399 -27.5563 -25.2922 253.084 247.486 256.381 246.909 250.413 233.486 222.483 238.362 266.103 229.957 238.277 236.324 247.018 240.389 264.232 234.506 238.527 242.878 251.548 266.283 218.274 231.64 282.674 277.815 218.588 249.65 243.569 247.44 240.225 240.255 235.169 224.362 222.088 176.856 234.336 238.457 253.506 256.138 231.301 239.142 248.735 236.422 237.047 245.074 232.706 243.772 221.56 281.904 313.485 246.218 66.0356 294.733 298.992 315.527 165.86 153.171 162.561 247.592 204.761 218.813 246.424 238.082 260.118 255.669 234.459 263.986 234.539 224.535 41.6518 228.501 183.585 201.722 282.711 233.547 248.451 242.072 238.148 237.281 249.355 253.489 251.935 273.948 236.285 261.12 256.207 -3.82136 -59.3787 -150.745 -51.8601 100.582 -125.05 4.01018 -1.0106 -22.9685 -16.6829 406.775 417.554 429.478 479.233 424.526 278.631 450.183 404.082 447.53 446.856 412.157 435.101 499.526 294.882 484.144 453.553 410.053 422.653 714.066 556.175 818.734 372.987 433.723 491.059 429.267 372.779 553.714 571.628 178.159 439.421 444.715 459.095 424.925 443.438 538.864 460.989 436.618 434.771 193.398 435.711 532.628 467.949 345.992 389.151 419.936 420.253 438.962 375.018 394.207 409.743 433.308 409.554 430.715 387.404 436 440.589 410.892 436.854 313.029 434.775 408.848 549.99 418.411 463.82 431.58 425.378 427.398 412.175 439.829 412.72 599.863 338.018 409.588 475.656 510.785 408.43 381.135 437.553 442.722 417.468 428.355 425.737 502.118 438.387 493.961 98.301 712.874 680.195 499.681 406.978 455.638 458.139 416.73 433.411 449.506 437.476 308.029 449.774 392.9 424.167 491.569 390.344 378.972 425.406 126.071 448.417 439.994 417.507 428.903 457.46 442.903 446.462 440.566 435.562 434.459 430.83 445.394 434.913 367.974 439.774 415.554 447.514 404.472 398.298 448.584 483.541 414.526 427.143 415.84 440.903 465.488 388.434 432.965 424.608 662.643 444.608 418.708 437.282 515.094 449.138 462.835 420.956 439.894 455.373 435.865 396.24 440.68 458.859 473.321 432.073 415.263 462.927 369.131 435.262 409.205 412.734 486.094 387.913 370.881 384.281 401.55 459.952 433.394 436.698 415.474 426.432 420.601 380.775 398.915 405.77 452.017 421.968 424.8 420.413 346.103 556.089 384.589 422.4 409.047 347.633 488.339 355.294 459.526 423.419 430.416 435.881 412.718 431.098 466.56 361.414 425.594 413.649 424.574 411.632 418.261 400.736 210.018 200.471 216.841 212.856 196.196 214.384 208.854 212.888 386.285 311.253 32.2824 -14.0277 295.454 211.449 251.084 206.858 178.881 254.57 209.058 214.426 206.177 172.864 192.325 168.815 217.08 214.947 211.979 172.887 233.593 199.02 237.461 170.794 161.191 226.346 190.537 401.026 422.653 204.658 459.979 443.349 409.706 447.474 423.076 135.715 306.047 275.66 241.05 192.059 206.857 221.037 454.72 429.621 409.463 495.185 425.975 461.93 128.265 169.795 55.3125 248.4 144.83 184.429 448.488 402.936 403.191 401.42 433.751 393.472 432.93 215.553 205.797 152.97 213.012 200.652 200.406 214.915 230.202 183.815 213.619 214.643 300.615 259.372 286.195 228.469 305.43 284.798 169.564 288.9 233.162 286.952 216.944 249.322 217.369 60.6994 144.998 65.3546 346.978 191.22 277.009 175.831 209.275 210.875 203.898 252.662 72.3467 180.689 165.754 208.331 219.731 215.492 191.409 218.577 209.747 201.49 221.848 280.017 227.955 251.608 436.147 428.534 452.347 438.57 452.724 412.569 439.81 367.84 282.581 349.63 333.136 433.511 422.855 448.364 437.804 419.209 440.536 452.291 440.409 230.502 437.642 446.575 439.296 287.699 386.979 284.096 266.322 222.918 274.857 259.187 312.136 226.436 228.56 237.906 224.591 287.652 262.045 237.425 256.131 264.515 253.532 263.693 250.06 162.707 156.311 319.3 158.727 239.267 192.967 266.674 254.13 254.598 260.948 268.232 249.434 234.027 245.54 238.059 268.121 279.102 268.405 272.183 268.883 252.111 276.803 249.28 253.796 309.795 324.513 374.798 292.024 387.191 273.345 344.557 373.931 422.745 412.517 422.025 408.967 420.963 419.266 440.336 448.684 454.556 442.086 289.458 289.417 368.993 309.466 343.703 354.262 230.268 285.414 304.77 394.035 439.744 403.098 401.444 165.35 347.078 409 427.629 365.507 387.349 241.117 278.23 277.255 255.424 306.369 231.364 250.001 224.614 247.371 279.01 239.39 259.465 237.289 317.934 232.948 256.305 227.069 308.336 265.844 367.979 266.1 113.528 276.435 292.945 254.802 299 321.614 259.588 259.754 255.94 257.056 291.011 274.014 272.643 176.481 247.547 259.006 247.743 267.79 252.229 257.997 277.726 266.091 277.567 291.654 266.007 120.68 -81.7186 -76.2615 225.097 -65.031 -42.1525 -38.5151 -52.8114 -59.9155 -65.6026 -55.4025 -16.2218 -12.0639 -5.41132 239.441 257.107 -43.6055 -0.777468 -42.0308 252.219 297.234 252.279 238.532 331.628 214.346 249.333 244.372 188.25 307.953 214.388 228.736 250.733 247.171 164.935 47.002 256.065 255.411 129.82 244.101 278.908 243.924 276.52 364.815 271.204 234.828 336.178 251.63 237.584 210.334 102.364 221.3 196.142 252.166 405.903 226.075 216.517 174.685 216.401 257.182 259.517 272.481 312.576 330.421 263.12 295.191 316.419 268.775 11.0369 -89.7113 20.1197 12.0445 -19.5931 5.62481 -5.48831 2.74053 -2.60722 -0.546891 -2.81893 174.289 99.1995 262.918 179.964 255.226 221.829 12.8405 0.929467 -17.206 -40.5964 -11.9039 16.5418 0.0419802 224.318 174.909 129.448 183.24 254.231 -5.75524 -92.6453 326.241 -24.126 -66.6114 -10.8987 9.12932 -36.7016 -72.6882 -9.57336 -30.1349 -5.5583 258.133 196.677 196.329 253.136 220.165 286.033 261.444 246.285 430.088 174.744 183.788 232.267 227.911 259.569 255.293 166.003 203.591 220.211 320.63 274.509 286.148 274.849 314.77 301.971 359.365 304.506 260.645 255.177 242.564 280.946 231.945 250.857 292.534 268.061 230.173 236.133 156.522 236.679 274.2 264.859 282.735 345.542 309.401 224.206 353.808 309.585 221.508 254.938 85.773 286.033 -2.6922 -34.7969 21.4062 -4.98815 -32.8282 9.7185 -20.4179 -51.5661 85.6063 -156.129 -151.88 -15.0841 -142.841 -5.56892 -16.3627 -30.1135 -5.31936 -5.05987 -38.4294 -26.8091 -1.62695 268.23 -26.4574 -1.62905 -102.925 -17.85 -3.92969 -52.4401 -1.2798 0.630127 0.399233 2.99339 3.33836 -8.43775 159.418 180.535 -254.351 193.723 228.967 201.799 68.1329 251.103 212.321 274.011 266.642 350.464 218.56 193.83 372.267 176.047 208.495 260.511 227.57 308.611 321.979 241.191 274.932 148.03 341.198 243.712 199.266 272.137 260.238 231.253 314.935 253.788 318.293 165.578 373.549 193.978 240.474 -118.111 260.315 7.72291 188.54 251.934 314.495 313.147 370.057 281.735 275.83 289.434 118.069 -38.706 235.484 98.1429 11.8827 169.48 114.125 -47.4857 -15.2947 -1.5628 3.37338 6.45899 4.83192 -36.1628 -1.49329 6.18114 -10.7043 3.87494 193.046 176.492 331.181 231.137 142.339 108.468 -115.749 -56.6021 -19.1124 -28.233 64.3055 40.1074 309.137 -45.6415 343.588 268.819 -46.075 0.965744 -16.8809 3.00477 420.793 427.379 431.425 428.649 426.422 424.111 454.469 429.92 355.012 421.303 427.532 428.613 394.577 422.379 398.72 394.66 411.367 398.327 366.252 441.962 460.424 304.822 379.388 477.062 365.85 442.709 421.866 513.081 439.654 430.298 426.465 416.928 429.17 424.112 429.398 460.389 431.925 428.667 370.478 431.869 425.901 449.419 375.326 447.113 454.161 317.45 450.034 417.843 412.921 437.445 425.61 472.397 423.923 420.084 427.42 417.842 458.632 357.239 413.091 410.439 369.865 419.895 415.845 382.88 455.906 455.079 424.017 429.681 421.054 416.785 472.419 403.171 399.752 339.818 398.982 397.552 413.315 387.81 424.909 372.586 458.927 414.254 418.822 420.904 397.229 394.951 387.104 462.258 360.331 367.752 350.161 424.604 425.331 427.87 415.698 427.861 416.5 424.317 449.965 429.556 371.113 429.247 429.088 430.792 428.033 359.08 460.694 419.737 415.073 350.098 461.54 408.726 463.423 356.355 430.379 457.899 456.065 433.212 411.588 350.213 412.645 409.212 390.406 329.386 411.766 390.214 407.894 418.714 427.914 424.285 411.049 344.369 425.839 408.094 406.456 400.914 406.921 461.377 451.931 374.308 418.276 426.987 433 488.317 425.405 417.704 482.984 415.377 404.563 429.134 427.614 466.993 406.853 427.732 411.118 367.706 468.81 403.179 411.909 329.068 427.658 461.341 400.776 385.167 351.581 402.672 395.132 329.64 425.606 434.234 432.167 430.695 429.077 415.994 453.325 415.432 369.539 374.567 399.79 442.059 470.041 325.68 355.111 425.178 475.871 446.617 419.269 423.791 430.206 429.872 430.652 420.776 427.855 458.467 430.721 416.999 324.273 262.08 290.776 299.423 244.26 311.698 299.417 293.666 286.711 297.197 308.061 306.563 343.349 317.363 283.187 289.703 310.988 304.675 398.329 272.755 132.516 280.505 347.217 301.88 297.367 298.64 299.899 302.887 245.424 247.907 217.511 268.299 233.449 302.822 280.647 282.653 209.015 391.557 295.093 245.93 380.723 353.819 291.46 349.432 362.939 365.997 329.213 423.273 436.15 428.949 415.976 409.716 435.171 430.748 413.473 305.054 423.253 406.488 388.083 419.677 303.121 393.76 397.787 291.549 391.473 364.506 383.156 398.475 333.398 400.847 359.425 389.353 370.151 396.644 394.729 373.076 301.403 338.273 294.555 301.948 311.319 314.306 315.555 303.789 309.492 310.027 302.091 315.075 300.712 308.111 305.007 302.634 308.7 299.952 302.011 300.098 306.527 300.767 294.546 305.542 298.115 287.614 292.063 297.27 294.065 296.865 301.072 308.658 350.636 314.131 310.955 309.517 311.642 235.225 174.271 279.512 194.218 263.061 441.577 414.292 445.507 436.833 464.591 429.745 423.844 409.89 350.139 378.583 386.471 385.358 380.413 428.933 414.952 415.299 422.406 420.024 417.57 433.315 420.418 249.383 401.542 437.57 431.858 430.271 427.65 453.851 411.804 284.975 403.742 419.806 403.169 425.348 288.61 323.758 202.159 262.682 279.337 189.327 294.223 265.101 269.831 266.446 282.457 271.636 264.848 254.209 233.633 270.53 260.136 233.053 284.506 273.522 291.827 279.652 284.868 278.343 282.84 226.56 215.311 315.051 257.208 257.501 228.537 290.402 187.418 320.802 365.958 352.018 391.946 309.484 262.286 446.287 414.249 412.883 422.709 418.703 424.286 425.966 260.538 326.355 297.242 287.972 278.909 311.057 420.539 408.393 198.415 252.283 339.337 348.757 335.692 328.103 292.109 306.33 283.402 419.001 306.767 302.166 274.205 275.931 305.363 280.811 292.105 266.801 293.629 205.822 307.598 304.925 300.496 314.769 316.628 292.883 308.951 335.867 308.068 287.291 -58.5397 298.321 293.099 293.401 219.118 293.774 311.079 243.463 317.362 242.524 322.701 338.766 290.532 297.226 293.036 293.341 300.583 287.156 297.885 298.782 298.584 293.277 400.985 343.518 245.266 235.192 106.198 -12.7562 220.514 236.941 86.9744 205.984 -1.72269 26.1054 86.9963 2.01812 8.61905 2.93262 -17.9977 3.00663 21.899 -16.3148 4.53899 206.679 162.375 -46.7176 13.5392 220.34 54.515 157.625 325.112 -44.7705 384.994 -57.7753 0.284774 0.295646 14.4235 0.476265 0.26719 2.79255 129.209 275.035 204.465 214.983 -143.102 275.524 304.794 307.156 293.562 295.788 308.201 143.659 -9.24718 199.251 -375.462 122.273 233.324 -40.0214 266.223 299.254 212 320.874 215.511 273.416 331.742 230.826 235.065 45.6135 -47.6146 -44.36 -38.5786 55.8389 -6.10748 -144.834 -114.034 -56.5865 3.84676 4.51145 4.24248 120.517 286.204 3.36652 151.803 2.65386 -5.10378 20.4374 11.6952 26.6458 270.527 383.843 351.009 332.911 306.87 264.954 234.444 323.076 249.579 268.513 268.963 271.989 170.31 274.564 -1.88474 212.709 269.181 188.507 -90.2853 252.98 276.312 287.398 257.048 258.146 270.795 277.196 236.979 371.825 269.04 -340.644 306.06 229.946 121.601 -329.344 77.8628 105.659 200.123 -249.758 201.341 -100.323 -124.079 -75.5793 -83.7906 -130.627 -113.938 -87.1737 -57.6118 -12.2906 -30.711 -82.0928 -85.5386 6.84525 212.423 51.4279 216.419 97.7667 -16.4951 180.327 -13.8955 6.76352 -59.2116 81.4133 -85.6057 -123.819 -94.0762 -94.0291 -26.7956 -102.105 -135.799 -25.0627 -137.738 139.703 38.2851 -83.6096 -75.7648 122.501 364.341 358.256 385.68 379.306 357.406 338.905 384.083 322.203 318.222 317.263 321.031 -6.4881 316.092 310.444 299.385 265.515 317.61 288.943 295.068 -2.81354 -1.58973 -0.896486 -0.187148 -1.10817 -0.288904 326.322 322.073 318.024 311.307 315.484 326.47 316.619 352.645 -2.48735 -2.29766 339.582 -1.82331 311.895 144.472 230.702 -120.211 -66.3978 -111.915 4.35274 2.34514 3.58066 2.96963 3.77794 3.05183 3.96755 4.83208 -70.9744 5.62515 7.24794 -129.343 -18.2221 -99.944 6.05367 -23.0363 -20.3289 -65.2616 405.523 425.378 394.544 425.218 402.308 428.171 403.269 401.903 413.894 428.935 426.227 427.976 402.131 404.364 -133.011 -88.9642 390.945 -195.472 -82.913 51.1992 284.598 211.577 234.323 57.6863 150.457 202.227 -166.272 -98.8656 -139.595 -94.1987 392.833 404.907 362.428 278.013 402.442 388.872 322.75 402.54 -107.733 -115.186 426.922 404.601 423.606 406.114 426.119 359.934 97.1155 153.57 -199.19 224.517 -74.6143 -40.4818 -57.7341 -0.289416 -15.6322 -52.8439 -92.7446 -91.8971 -100.801 -103.359 -108.953 -98.3662 -115.196 -97.2391 -96.7134 -128.824 -98.3018 -100.846 -109.182 -119.311 -98.17 436.645 437.589 437.549 437.123 436.988 435.935 435.442 436.805 435.318 436.199 436.422 436.759 437.543 437.235 437.427 437.128 436.932 437.301 435.87 435.901 435.333 436.045 -76.2601 -78.3621 -76.1712 -83.8585 -75.669 -87.0369 -74.3771 -78.3296 -75.0636 -79.7315 -80.2823 -98.1179 -99.6814 -71.9703 -87.2854 -84.1179 -87.2528 -84.5607 -90.3247 -91.9187 -90.8387 -92.4712 -91.0908 -90.1538 -92.5082 -93.7045 -102.846 -96.5744 -87.0053 -90.6597 -98.4575 -92.4347 -88.6107 -85.8003 -85.3551 -88.9299 -88.3918 -85.8508 -91.4484 -93.4211 -90.3475 -95.6441 435.786 438.426 -105.309 436.756 437.24 -104.138 434.688 434.473 435.1 435.226 434.56 434.415 435.346 -105.083 -107.889 431.839 -106.544 434.609 436.196 434.497 435.322 434.959 434.333 435.539 433.999 430.987 434.754 431.108 -107.179 -107.184 -106.521 437.618 -111.08 436.994 -113.048 435.128 433.999 435.416 434.972 434.252 435.578 434.78 435.07 434.856 435.013 435.229 434.593 435.279 -134.12 -127.929 -121.169 -120.242 -131.804 -127.149 435.494 436.123 435.729 434.997 434.655 436.138 435.477 -128.937 436.078 -120.49 -110.916 -112.998 -113.122 -113.541 -116.678 -106.292 -104.001 -103.538 -103.238 -100.736 -119.462 -99.5946 -103.337 -104.861 -100.932 -102.679 -106.185 -102.2 -104.485 -103.905 -106.484 -101.998 -103.228 -104.733 -99.3403 -100.433 -103.242 -105.599 -107.944 -112.073 -103.482 -114.74 -125.497 -124.527 -120.41 -116.612 -121.909 -117.608 -115.221 -127.135 -118.851 -124.667 -103.466 -101.628 -124.767 -135.007 430.992 426.845 426.952 428.686 432.255 426.991 421.235 -139.892 -145.294 411.704 -136.712 443.313 396.908 416.262 361.712 480.479 462.538 -124.826 424.538 -134.141 431.514 415.69 -130.191 429.987 432.231 431.077 453.82 432.718 433.113 441.911 -168.977 -146.754 -96.7019 -109.53 -96.2356 -106.197 -96.9136 -97.485 -100.391 -94.4852 -93.1091 -100.543 -97.0372 -98.4024 -108.198 -105.76 -115.18 -97.8526 -105.78 -109.696 -94.4198 -93.3801 -91.9505 -96.9878 -102.279 -113.644 -118.246 -109.184 -112.088 -109.678 -107.243 -133.299 -120.086 -129.343 -121.663 -135.56 -138.147 -135.014 -139.226 -136.072 -132.252 -138.099 -132.128 -118.512 -129.358 -125.475 -133.723 -126.172 -122.454 -142.735 -148.271 -141.276 -138.251 -140.609 -143.362 -164.847 -165.186 -177.277 -162.004 433.689 433.172 433.229 434.187 433.671 432.857 433.938 432.56 431.151 -182.646 -175.562 432.478 -154.211 -145.612 -137.538 -156.19 -158.096 -142.211 -151.11 432.398 432.757 432.508 431.453 432.782 432.017 -138.45 -158.946 -163.573 -171.727 -177.827 -168.144 -169.746 -173.815 -161.85 -179.96 -176.317 -175.947 -173.733 -179.08 -179.611 -180.02 428.64 346.196 390.648 -186.516 430.876 -188.623 428.594 -189.526 431.823 441.999 432.703 443.186 -183.162 -170.818 -164.934 -182.921 -179.115 -184.293 -173.837 -180.032 -179.399 -181.228 -191.035 -178.905 -183.927 -184.948 -169.962 -179.296 -171.458 -179.914 -138.828 -137.325 -134.633 -155.866 -131.019 -148.76 -150.097 -146.354 -136.822 -135.056 -152.882 -179.697 -200.903 -188.331 -195.403 -190.441 -214.993 -235.21 -221.194 -227.375 -206.439 -199.247 -199.422 -206.171 -204.893 -191.737 -88.3414 -93.7594 -89.033 -81.058 -93.9085 -83.5397 -75.8961 316.728 308.018 315.024 -53.4533 -45.7445 -42.8302 -57.0102 -86.8549 -93.3331 -91.4008 -85.9736 -92.3677 -83.0835 -85.248 -68.5502 -78.5702 316.191 316.245 -65.6957 -144.083 338.929 396.081 -155.293 -132.923 -126.677 -102.836 -115.376 -135.894 -121.511 -112.482 -127.238 -102.162 377.282 -120.739 -108.52 -146.151 -148.581 -142.361 -163.816 -138.031 -153.195 -155.915 -58.0834 -42.9367 -50.6796 -48.7362 -52.7978 -58.6258 -51.0866 -64.926 -64.8728 -76.9315 -81.8328 -65.1045 -83.5846 -65.6812 -67.7441 -79.9191 -77.2489 -64.5712 -65.8815 -85.0427 -1.20346 1.48403 -3.01518 -0.165178 -3.69354 -0.63613 0.909095 0.819164 -2.76194 0.757553 3.86151 -2.38234 2.01716 0.573793 -15.3004 -21.4927 -12.8351 -27.5064 -15.8157 -11.3461 -27.8881 -50.3921 -35.3008 -37.022 -64.9967 -0.153004 -54.1591 -87.4573 -39.7507 -70.7626 -136.285 -53.7198 -59.2279 -60.2095 -15.5219 15.3742 151.817 -10.5433 -36.2865 -90.343 -92.0361 -71.163 -75.8408 -60.7458 -77.8769 -71.9665 -114.598 -108.432 -106.096 -68.5763 -78.001 -88.8877 -79.5783 -69.4433 -102.273 -93.8917 -97.8302 -21.4876 -30.6529 -24.6934 -41.6018 -9.55962 -46.9268 -28.2069 0.474292 25.5392 22.1609 12.1055 22.715 8.86928 9.05757 -12.1817 -72.1852 -109.249 -10.3259 -10.7301 -0.598988 -21.1965 17.5275 20.6169 19.1923 3.96678 -37.9422 -68.1734 -76.2664 -98.4937 -23.7706 -86.456 -133.365 -125.43 -121.183 -121.601 -133.296 -128.5 -134.7 -122.99 -114.535 -89.7606 -106.606 -162.509 -145.847 -143.009 -141.682 -147.544 -146.076 -153.915 -148.204 -146.328 -235.638 -243.702 -221.456 -254.08 -240.721 -143.323 -146.024 -147.285 -148.236 -147.758 -147.19 -139.771 -186.34 -206.363 -217.413 -123.439 -97.6526 -144.415 -171.711 -182.718 -171.916 -107.135 -115.108 -166.534 3.87457 -7.14814 0.0291109 -5.63543 -28.1667 -22.5976 -35.4867 -18.4056 -66.7603 -81.5079 -86.8427 -65.2692 -75.7268 -83.8669 -89.0994 -70.7394 1.38465 3.65615 3.44784 4.95833 5.9288 5.24588 5.25659 5.97676 5.29108 6.20592 6.52596 6.3931 6.71096 6.37857 6.52929 6.54286 6.29883 6.47377 5.56849 5.30777 5.64674 5.42606 5.22045 4.47361 4.49914 4.61893 4.60387 4.87103 4.56346 5.03012 4.8512 1.30546 3.33502 1.55058 2.13737 3.97192 1.79455 3.63907 1.82411 2.21774 4.25829 -4.96605 -4.78681 -4.45414 -4.5723 -5.54135 -5.31501 -4.66519 -1.61323 -2.02606 -3.15624 -2.72457 -2.85839 -3.54559 -3.15812 -3.40233 -3.41947 -3.34733 -2.32971 -2.0898 -2.37422 -1.30591 -1.64351 -1.26982 -3.02771 -5.03403 -4.7016 -10.478 -7.13302 -2.24837 -4.18452 -7.23016 -10.1077 -7.41081 -1.76635 -1.45028 -0.0515954 10.3804 8.56003 -1.6406 -6.46923 -0.511838 -0.131425 3.06134 9.87305 -3.12841 33.1773 4.18114 9.8012 0.0406393 3.20029 -0.198993 1.63783 -1.48024 3.66211 -0.658347 0.319307 -11.1169 -9.70474 -11.016 -9.69429 -10.2448 -13.4011 -9.51267 -14.3936 -8.87728 -6.56527 -20.1136 -8.5464 -16.6386 -11.9521 -13.9668 -15.017 -13.6968 -17.6588 -15.8127 -15.0659 -14.6222 -14.6603 -19.4291 -12.1696 -14.9333 -10.8338 -15.0295 -16.1377 -13.3628 -15.3573 -14.5228 -16.8681 -16.8897 -18.1163 -19.5375 -13.9009 -8.99963 -8.18556 -17.7292 -11.342 -12.2365 -15.4124 -16.1401 -15.1679 -12.7459 -17.3462 -20.2892 -21.2565 -20.5673 -19.0952 -21.6747 -19.6766 -26.0009 -17.0437 -18.7615 -17.8425 -18.3476 -24.6781 -10.64 -11.3949 -11.365 -10.615 -19.311 -14.903 -17.1752 -17.9047 -16.1167 -17.1164 -19.7242 -20.5221 -17.8886 -17.9756 -20.194 -17.1678 -21.4801 -20.4989 -10.9454 -12.8091 -11.2409 -13.9513 -10.8351 -13.9559 -10.1021 -7.02405 -9.32135 -7.24035 -8.01913 -8.65276 -9.70757 -6.83338 -19.7224 -19.4871 -19.2879 -22.145 -20.2717 -20.7459 -19.429 -18.6858 -20.157 -19.4721 -20.8696 -18.9452 -14.2634 -6.2269 -11.8245 -10.7961 -7.33644 -11.4276 -16.9333 -14.9431 -19.9397 -21.1101 -19.3383 -16.1834 -14.7198 -14.1098 -21.1845 -20.3987 -4.75911 -4.99715 -4.9857 -4.8359 -4.23806 -3.15718 -4.36915 -4.48128 -1.13273 -2.92691 -2.40153 -2.21062 -2.30065 -2.3644 -0.60928 -9.80593 3.736 3.18241 -0.580082 -3.24907 -5.22992 -5.72879 -2.58477 -5.15449 0.378126 -1.90178 1.21826 1.64734 -3.22059 -3.30409 -3.47578 -2.88305 -3.45703 -2.9717 -3.1098 -3.18565 -3.30618 -3.23232 -3.17712 -3.3898 -3.13426 -3.08453 -3.34108 -3.13278 -3.12882 -2.87814 -3.30479 -3.16585 3.30951 -6.56542 -10.9041 2.69681 -12.0414 2.39537 0.989791 -1.27725 -1.54518 -1.68982 -1.11603 -2.02807 -1.78318 -2.12276 -1.85017 -2.05434 -1.78701 -2.1246 -2.89554 -2.745 -2.65355 -2.5532 -2.582 -2.80383 -2.73146 -2.55949 -2.74067 -2.56018 -1.94578 -2.3692 -2.27982 -1.20252 -1.29623 -1.42126 -0.995274 -1.01363 -1.39012 -1.14281 -0.779149 -0.233001 -0.779215 -1.50032 -1.18658 -1.14171 -0.794394 -0.58 -0.195721 -0.264894 -0.538673 -0.739762 -0.277136 -15.8827 -18.9259 -14.3808 -21.0917 -11.5065 -18.1658 -17.1445 -6.9515 -14.2801 -23.217 -7.18103 -13.6516 -8.6931 -15.9622 -18.9658 -22.879 -22.1371 -20.7213 -21.1318 -22.1233 -27.1939 -27.0714 -22.8683 -22.5079 -19.716 -22.0477 -14.2419 -12.8221 -14.4992 -16.0626 -18.7097 -11.7145 -14.9398 -20.1919 -21.3435 -22.2622 -19.086 -21.1519 -19.911 -21.6191 -19.44 -20.5723 2.54807 -15.7043 -12.0684 -21.4734 -25.9385 -21.988 -31.9323 -20.5638 -25.8195 -26.2894 -26.3355 -26.1176 -14.6478 -18.8324 -18.3074 -18.0857 -16.7801 -15.8261 -16.9298 -26.1678 -24.1111 -24.7728 -25.0439 -25.3566 -24.7654 -23.7505 -23.5195 -22.8922 -24.1618 -30.2352 -27.3826 -19.2843 -21.1861 -21.2407 -17.2867 -21.6075 -13.8857 -13.6575 -11.8236 -14.1692 -13.3243 -13.0104 -9.36037 -12.7599 -9.89827 -21.3957 -24.4033 -23.7704 -25.4782 -24.2288 -19.8747 -22.6451 -26.1703 -24.4786 -12.1589 -6.90966 -13.3467 -15.3841 -17.8542 -20.7982 -17.7576 -19.3572 -38.9406 -26.82 -24.8393 -25.4016 -26.1515 -25.0484 -26.4974 -27.1059 -26.0251 -25.2596 -25.0691 -23.8865 -26.2202 -21.8467 -38.0073 -18.3218 -30.8413 -19.739 -20.5794 -26.7504 -33.7751 -36.4064 -25.778 -29.4752 -27.2575 -27.2333 -33.7548 -34.7216 -33.059 -17.4782 -16.1158 -17.1079 -32.8647 -33.0621 -24.9662 -5.48303 -2.15811 -10.9103 -6.86665 -19.5566 -10.0714 -20.5004 -21.8708 -17.8147 -18.3137 -8.37488 -2.92033 -7.82644 -25.7626 -10.6602 -38.3592 -31.3676 -33.1373 -32.6712 -30.9598 -31.2489 -23.6918 -31.5271 -88.3278 -49.0264 -28.1349 -29.5631 -22.7592 -25.2765 -35.0693 -36.7998 -32.7507 -30.5677 -34.5778 -31.5925 -27.0354 -41.7289 -21.8059 -34.403 -25.0895 -42.6219 -47.7734 -56.0776 -32.6103 -37.2856 -55.1388 -50.4835 -35.5741 -49.0651 -36.6914 -50.2655 -41.2217 -40.3532 -51.0783 -57.1479 -57.602 -60.9053 -54.6516 -103.435 -105.175 -104.523 -105.172 -103.28 -105.479 -104.562 -114.495 -114.685 -108.473 -109.386 -113.352 -109.53 -113.869 439.53 438.623 438.913 439.418 438.643 440.472 -110.085 440.454 -117.398 439.877 439.379 438.931 438.649 439.387 439.739 438.515 -125.658 -129.127 -121.02 -131.882 -131.741 -123.586 -125.514 -108.097 -109.235 -112.377 -115.444 -115.686 439.173 438.697 438.38 438.354 -93.6218 -100.421 438.363 -98.0023 -91.5372 -90.5728 -94.8589 -94.2813 -94.8901 -95.4468 -90.1625 -89.5648 -91.9198 -92.166 -86.8121 -93.7177 -87.0825 -88.5676 -93.7098 -100.655 -96.5092 -97.5465 -97.5275 -94.0869 -97.178 -91.9827 436.87 -94.3742 -112.054 -107.777 -115.079 -104.776 -121.543 -133.891 -131.067 -126.988 -122.944 -129.149 439.331 438.236 438.293 439.591 437.64 439.213 439.779 440.068 438.535 438.271 437.896 440.532 440.218 -90.1394 440.5 440.255 439.088 438.602 438.392 439.132 438.378 439.023 439.317 439.029 -118.248 438.766 438.591 438.253 437.843 438.064 438.597 438.21 439.545 -107.49 439.85 -168.205 433.557 -170.911 -169.368 -170.513 -168.762 -171.544 -166.122 -166.473 -166.778 -170.818 -173.036 437.497 455.459 -169.324 437.651 435.256 437.907 426.57 431.713 -165.819 -169.595 -172.149 -180.519 -166.376 -178.298 -173.556 -179.737 -174.976 -169.211 -168.157 -174.12 425.448 431.138 430.484 431.419 427.997 431.265 427.067 419.532 476.754 462.33 473.844 432.239 426.912 420.364 419.69 424.278 437.226 436.901 485.183 429.621 457.337 414.737 409.089 332.252 422.021 415.436 419.094 463.521 429.01 432.55 434.1 430.484 427.999 430.459 430.971 418.182 428.408 416.121 391.061 413.484 418.392 416.054 424.048 429.547 431.589 421.194 430.181 425.979 427.147 -158.582 -165.592 -158.755 -165.462 -157.45 -166.778 -160.599 -147.99 -142.463 -143.435 -148.09 -141.146 -149.699 435.679 435.473 434.16 435.216 435.158 -139.772 -145.948 437.231 -150.863 -145.168 435.967 433.961 433.568 434.278 434.915 436.567 436.79 437.173 437.06 436.573 -168.147 -155.15 -164.166 -161.736 -157.253 431.599 -173.64 423.678 -176.805 434.347 424.026 420.59 385.812 428.827 456.079 484.879 418.056 -173.652 -169.286 -169.304 -175.966 -176.126 -167.728 -175.111 432.944 427.09 433.755 434.429 427.415 358.739 -164.622 422.256 -174.139 436.61 431.109 430.231 431.189 432.389 434.217 429.957 -173.74 -175.414 -175.859 -175.503 -177.685 -176.593 -58.6416 -66.1586 -77.6005 -60.3125 -72.4597 -55.932 -61.9868 -47.7147 -32.4789 -39.6406 -28.4865 -37.7908 -46.6043 -41.5756 -57.2477 -66.9695 -73.0634 -73.4999 -57.5528 -51.7074 298.139 432.656 406.271 418.805 393.878 427.199 427.467 412.268 290.081 286.887 424.558 300.687 436.784 414.284 263.44 431.343 211.304 401.982 415.759 310.683 450.227 417.793 428.392 443.342 433.933 293.229 306.107 298.332 307.763 281.715 294.495 287.487 301.772 -56.9958 307.477 315.84 308.858 319.306 311.121 324.839 273.746 317.211 325.793 199.286 303.954 307.368 307.904 301.182 312.776 293.14 -48.9722 -30.4257 -35.9495 -43.4572 295.913 317.433 295.863 311.599 304.232 314.874 282.386 -113.404 -119.911 -106.262 -119.873 -97.7137 370.815 397.369 356.82 375.74 366.972 311.516 406.38 -140.988 -155.162 -153.247 -141.488 -144.298 -152.141 -141.208 -116.733 -120.264 -102.388 -124.101 -97.8203 -134.701 -132.188 402.42 -150.705 -136.28 347.068 375.266 387.4 347.403 403.63 -64.7234 -60.4476 -74.3246 -81.6567 -58.969 -64.8382 -78.9803 -50.5671 -41.2921 -68.4571 -70.6034 -82.3815 -68.7639 -81.627 -62.7575 340.332 -6.89023 -4.27084 -11.0909 -6.4964 -7.26722 -3.50801 -9.65118 297.266 -13.2382 -6.62886 294.929 304.032 221.74 218.735 -189.556 273.273 173.995 299.756 314.646 324.672 319.513 308.258 -0.779122 -1.35146 -3.40498 247.839 -16.6891 -17.5714 -20.7741 -10.9935 -14.8964 -4.8505 342.436 347.293 2.39356 -0.0309764 -0.479719 -1.46165 1.99678 0.990263 0.992956 4.01485 2.79602 3.93684 2.16482 4.30602 2.99509 2.90075 -102.812 -29.8023 -111.598 28.6153 -107.305 5.03833 3.38467 2.46419 1.8624 3.53295 3.70319 1.86382 4.15187 3.17894 2.73281 2.52415 0.385109 1.06073 -20.7506 -26.5224 -29.8117 -16.8541 -20.3064 -14.4226 -9.50537 -8.64983 -14.2958 -10.3088 -13.2281 0.291198 1.61726 2.16414 1.9071 1.07591 1.45274 0.775899 -1.00124 -1.75632 0.633464 -1.9217 -0.451611 -3.82781 -0.377112 558.902 428.068 428.149 452.837 443.407 418.581 407.701 221.843 447.283 429.363 434.082 423.21 412.253 414.363 366.147 421.841 405.966 427.727 406.732 541.251 395.776 411.323 180.318 449.14 575.302 394.705 408.352 403.893 472.167 440.845 404.526 436.48 454.794 251.036 551.357 454.549 432.764 426.817 423.657 458.768 355.025 486.273 377.563 414.37 386.272 388.238 468.648 291.834 236.491 390.926 430.795 449.198 434.867 454.987 429.549 416.752 486.105 472.045 412.677 452.378 319.628 174.43 624.569 98.0469 36.786 418.586 440.784 351.113 425.511 446.155 544.872 416.957 405.92 308.901 445.511 360.098 377.213 419.184 421.859 576.386 425.722 397.815 395.541 431.726 592.244 523.043 363.565 259.332 434.829 418.602 385.093 490.919 436.002 439.515 405.418 448.644 456.773 504.646 424.231 437.422 441.23 435.185 466.557 437.177 375.34 408.568 419.096 407.861 415.725 348.625 244.602 397.646 396.134 407.991 431.836 414.741 421.668 425.025 133.391 444.909 427.402 382.052 408.321 427.628 231.208 418.344 452.775 427.159 425.937 430.562 416.02 420.319 437.217 545.657 530.733 379.7 259.056 417.555 424.082 402.481 246.392 454.923 457.746 565.45 417.504 464.46 474.745 433.68 425.562 434 432.032 429.464 436.927 433.873 411.084 408.696 565.944 413.254 443.478 408.2 433.188 323.112 319.352 588.467 242.527 412.559 361.765 400.102 408.946 405.965 427.637 431.629 428.617 340.493 425.667 434.011 426.956 408.2 384.563 462.048 462.751 570.856 423.088 434.6 407.447 428.34 429.002 432.989 415.005 421.338 433.857 421.175 435.518 477.752 430.429 463.801 293.878 281.565 339.901 290.632 294.172 296.175 276.37 328.349 277.651 278.824 196.901 307.954 294.804 297.335 298.09 298.415 295.487 296.203 320.869 290.658 299.669 282.189 357.637 299.936 319.732 280.894 295.071 298.249 296.223 297.902 296.005 290.9 302.078 300.771 396.807 429.942 268.181 392.961 397.621 402.511 258.355 404.461 370.226 304.964 398.892 398.87 378.432 358.864 239.918 376.151 438.116 451.684 425.012 459.942 423.314 442.433 382.286 357.825 298.508 323.187 360.636 318.992 360.018 427.612 435.629 421.252 465.945 420.597 411.476 441.947 260.689 247.546 192.429 249.573 278.639 283.575 281.313 269.783 277.682 283.882 278.11 293.452 279.66 309.415 294.253 303.7 303.357 279.147 268.909 250.29 240.478 268.425 270.248 240.207 235.473 258.141 295.518 206.789 292.814 115.526 271.546 274.462 280.629 276.979 288.896 291.426 292.933 308.827 295.363 278.463 291.876 260.609 251.326 231.545 207.526 249.035 254.581 217.973 434.595 415.722 284.853 410.526 464.018 432.092 451.928 415.383 424.194 433.692 442.553 421.133 374.047 388.231 393.704 400.554 409.788 442.386 436.483 419.849 436.907 425.067 444.261 438.333 283.441 296.056 289.311 295.389 285.489 281.937 302.178 299.389 307.064 299.779 306.506 303.46 298.993 302.953 295.794 311.697 307.092 310.001 334.28 331.253 230.63 315.802 317.798 276.374 291.295 301.284 296.629 298.129 294.297 249.638 279.709 285.197 274.784 70.2152 407.011 440.205 32.2536 427.703 245.6 96.5722 394.589 442.445 143.372 426.667 271.959 294.726 371.659 337.707 345.928 316.873 353.616 361.303 440.992 438.173 424.429 443.635 456.589 450.489 220.499 265.373 200.506 310.402 239.127 278.769 291.34 237.291 285.311 272.79 328.439 273.896 286.683 311.845 297.506 288.106 238.641 310.832 153.116 285.448 295.8 281.123 302.808 318.037 190.285 296.55 295.402 292.161 293.243 282.196 292.951 250.899 281.808 250.597 263.842 265.302 271.512 277.61 304.682 267.402 270.903 243.293 253.587 137.693 316.576 219.335 215.228 -67.0495 -100.128 -117.68 -103.618 -92.6153 -94.3473 9.28905 3.97725 7.20972 -2.39365 -53.4765 1.90027 0.345524 2.16456 7.43877 -2.22492 -4.02885 -7.85878 287.614 352.586 -80.2431 324.228 378.512 -1.38916 77.1426 6.60463 8.19306 -4.70308 186.8 10.7081 40.2602 149.524 -415.706 245.599 315.528 274.01 250.35 324.831 209.833 257.746 274.882 233.367 235.325 -71.0126 271.927 183.496 -317.591 293.51 277.638 313.629 319.047 303.809 286.784 315.345 141.845 241.192 296.738 228.301 187.007 254.414 -69.4518 280.769 269.942 297.168 304.589 387.807 267.813 290.558 284.832 364.864 338.373 322.86 325.566 6.19501 -4.43266 4.10641 3.50143 -31.5206 28.8914 42.0983 -92.8747 118.964 -102.895 -38.044 117.729 233.677 204.837 187.705 205.555 67.7194 -90.9227 -115.147 -25.6091 -120.772 -99.7437 23.5911 -50.4625 -26.776 3.64539 -122.712 58.5293 -105.175 140.208 135.785 136.1 -306.87 231.133 -181.905 216.15 277.328 301.574 313.997 300.965 298.176 293.83 -15.5445 -9.20387 -7.90964 -13.1625 -13.1002 278.634 316.502 301.608 319.323 301.785 295.279 301.52 253.682 295.016 329.992 301.982 116.96 160.436 312.511 267.685 59.7623 155.864 -129.917 23.2215 115.461 -44.4077 -68.79 2.4824 2.08494 3.0555 2.4878 -63.0002 -94.5463 2.20965 282.466 -1.90483 -0.022042 -86.2436 0.50825 35.867 -28.3473 -209.807 90.7036 -121.65 335.14 226.468 310.304 270.144 410.317 317.085 299.265 319.64 314.879 305.72 330.673 302.217 345.027 389.998 346.523 345.116 346.39 391.15 327.201 339.403 375.583 345.167 365.361 322.413 400.387 343.811 -96.3875 -118.694 -104.131 -73.231 -103.351 -91.6537 -35.2101 -3.92476 -39.4265 -9.88234 -53.7775 -26.7782 -9.75639 156.499 235.034 318.113 351.27 207.364 259.87 -65.7116 298.732 -87.6465 367.469 -72.2594 373.588 -85.4875 443.477 438.767 430.765 409.098 428.694 471.904 436.228 414.513 438.314 438.082 441.054 424.691 450.012 522.629 449.105 440.304 442.305 398.441 399.458 407.734 591.052 515.042 434.909 491.505 400.863 390.187 247.78 630.54 200.13 440.592 434.295 363.495 422.133 415.893 446.077 357.456 429.626 427.126 445.279 425.176 409.859 345.081 669.906 348.375 339.625 248.306 397.029 403.935 423.977 260.312 431.734 422.714 432.357 415.418 429.272 377.806 398.048 449.275 416.077 410.225 383.323 409.361 443.651 466.041 511.596 428.267 433.937 352.168 435.349 436.745 526.312 441.592 394.504 433.396 441.942 446.323 385.165 435.367 439.991 458.412 432.241 428.446 459.025 433.596 476.434 451.836 453.891 428.156 353.547 508.116 534.134 442.903 437.318 432.861 441.968 438.616 440.823 435.773 416.044 440.97 410.682 416.354 467.063 428.24 348.016 395.36 419.864 488.957 337.74 410.494 515.866 417.114 479.332 473.912 458.626 430.877 408.875 442.03 424.573 411.044 420.861 396.274 418.067 484.284 412.046 432.77 454.496 444.935 342.669 429.632 387.779 440.855 437.597 337.427 373.77 468.248 637.972 435.546 527.562 492.775 420.142 432.808 428.655 381.254 430.804 399.683 418.204 469.456 362.485 446.559 431.657 439 427.901 438.465 435.257 422.726 450.447 446.587 382.227 486.392 406.357 308.195 491.431 340.385 396.049 370.827 431.978 375.323 430.665 443.576 433.496 418.882 432.511 434.431 363.247 412.447 447.661 354.186 377.869 483.322 497.799 373.975 428.099 439.823 362.77 429.575 470.015 433.239 354.907 467.896 459.477 465.166 426.138 432.153 437.494 415.928 255.052 253.299 249.146 254.842 258.489 217.945 214.566 231.787 224.343 177 231.419 313.291 284.482 269.781 273.596 258.525 296.129 274.778 304.71 376.083 318.49 245.082 276.634 341.991 282.397 226.308 254.161 240.91 258.286 224.89 241.494 214.894 262.86 282.063 232.826 256.87 143.693 142.275 265.07 260.952 251.207 313.539 212.406 418.12 444.326 422.206 258.563 439.495 440.877 478.063 428.694 437.416 87.0969 437.623 112.579 438.908 450 426.439 435.282 381.393 422.251 464.747 188.552 233.732 244.266 262.004 161.201 207.251 246.527 207.319 232.961 223.418 226.276 241.159 192.387 216.744 199.519 248.981 241.807 239.918 221.034 210.347 198.904 250.612 279.104 258.863 252.214 302.335 153.305 251.093 224.745 229.451 260.768 215.821 248.199 132.562 171.682 140.753 206.966 31.8043 182.983 266.193 175.753 217.646 252.302 205.166 255.118 399.977 465.994 257.93 391.317 408.4 412.772 242.049 402.426 368.835 378.129 423.864 391.073 400.2 359.415 281.368 373.009 444.323 445.501 424.034 464.273 427.564 473.833 373.132 345.111 275.251 323.401 310.808 346.731 415.007 456.31 405.588 401.319 426.464 414.721 472.074 260.695 281.647 251.899 270.01 241.164 261.132 265.962 254.69 253.974 262.146 278 242.259 263.611 269.459 294.825 148.743 279.928 272.787 205.84 280.719 278.825 287.727 284.8 275.139 290.812 282.628 242.899 275.906 230.823 160.646 326.024 220.205 260.136 277.713 270.278 265.526 278.95 249.685 228.414 251.438 218.249 276.118 165.495 293.201 265.866 258.267 272.994 255.151 268.409 252.232 254.157 208.252 237.788 241.252 239.018 206.693 274.605 230.927 411.803 415.185 284.788 400.661 53.7581 401.626 201.181 405.427 429.963 78.318 385.731 315.46 346.553 398.677 355.897 381.054 384.722 442.678 450.867 428.427 446.336 291.667 262.691 324.791 245.523 323.11 380.244 273.965 276.856 251.051 352.923 218.435 319.664 338.802 241.364 233.418 248.142 245.661 261.565 314.74 282.922 318.944 256.36 304.216 297.94 286.934 349.002 346.4 208.007 325.72 355.414 279.854 330.034 306.745 279.493 291.307 302.175 291.106 293.253 335.885 121.22 271.968 -11.7586 308.332 256.548 281.95 256.739 290.176 271.447 271.803 320.775 269.701 295.482 308.524 128.546 2.99563 38.0251 -8.97269 136.078 19.6557 75.8895 16.4882 288.974 63.3955 39.0469 -4.58812 -18.466 -32.8927 2.1328 -30.6936 -6.42765 7.32916 7.84174 13.2299 -6.22793 8.81322 -4.32011 84.0285 245.317 120.606 228.387 82.7023 209.084 237.882 31.445 145.972 -28.0431 -2.40005 -5.31604 -21.7312 -8.71823 267.932 282.511 312.89 275.145 330.35 264.729 233.359 249.102 243.848 253.701 234.033 236.829 231.263 238.299 230.25 240.149 188.891 230.813 221.446 232.434 226.654 234.734 445.083 195.66 195.679 230.938 185.164 252.928 237.485 236.965 231.163 291.508 259.971 282.887 222.64 365.982 200.812 167.07 490.545 251.643 219.151 123.21 209.689 231.366 238.575 232.27 -31.087 19.7651 33.541 13.1324 22.4203 -24.3353 -23.2614 190.667 218.895 -147.766 -4.22758 12.9396 -7.38761 -19.1438 84.2485 53.896 56.797 32.2266 252.274 67.3319 104.7 225.219 81.2029 -77.4064 -21.5796 2.92424 -32.3292 -1.05401 -93.204 265.699 -302.591 262.95 325.999 255.644 288.846 274.842 284.594 292.741 295.736 268.744 288.773 256.681 248.568 224.329 24.8552 157.117 249.885 -378.832 277.409 221.78 213.199 254.382 320.095 267.185 246.764 207.783 39.9149 312.101 189.182 209.525 262.352 -109.858 285.611 259.278 371.922 174.345 228.219 255.974 315.476 274.463 352.052 323.11 308.309 296.028 -52.8806 -63.2263 -74.1388 -38.4367 -8.0187 -98.813 -53.1101 5.67814 3.43348 12.5107 -3.82087 47.5104 69.643 189.621 159.74 87.4369 12.0001 -95.287 -133.586 -64.0247 -119.617 -13.0971 -97.0843 -22.7738 -34.3755 -28.7491 -52.5249 -12.4428 267.146 275.713 275.043 326.439 257.008 293.315 270.948 196.965 257.324 216.379 343.169 277.833 124.043 364.825 188.669 234.264 326.696 242.853 204.556 239.675 249.076 163.753 228.901 -62.8031 22.876 244.532 162.303 229.644 402.774 344.747 289.526 446.249 237.477 352.508 228.1 180.061 230.397 -273.41 255.448 87.96 274.513 258.457 330.37 278.931 257.112 283.96 269.236 262.277 230.525 32.7226 -0.35315 234.839 -1.75812 -0.201956 -47.9689 -1.49722 18.6608 4.29694 6.12506 2.20596 22.0833 0.960388 109.358 -26.1848 -136.021 6.09674 61.7304 -38.595 103.27 146.03 206.551 80.707 -57.9908 167.169 112.276 -8.67943 319.347 243.82 233.942 222.61 14.5518 -3.50271 6.64429 2.8776 2.62102 10.1943 0.783422 398.78 417.557 426.084 428.027 414.58 278.317 421.916 605.303 412.16 417.505 409.46 432.768 200.355 275.822 412.975 420.232 405.621 544.565 331.153 534.336 197.591 627.432 618.513 458.218 389.759 414.197 455.757 424.123 462.128 428.283 439.7 408.535 433.829 446.661 390.641 513.1 437.074 425.57 386.464 438.18 311.497 448.115 280.671 451.51 742.576 438.809 339.105 546.527 339.116 191.761 417.226 408.587 359.471 424.322 375.582 135.413 388.897 427.151 454.297 656.332 344.945 479.201 421.353 485.404 408.234 381.841 369.049 446.778 389.333 364.615 661.877 379.869 729.652 16.1797 776.608 487.897 91.646 220.593 419.418 407.545 368.123 229.914 420.84 377.16 389.451 408.476 448.288 475.913 555.941 360.502 408.821 478.351 390.31 367.754 368.273 387.491 543.506 373.315 105.761 399.743 467.321 447.584 180.109 394.219 573.49 159.074 386.408 449.622 443.587 321.467 419.594 522.887 398.75 442.15 440.8 431.077 459.68 421.681 447.111 514.385 399.58 288.47 397.381 652.174 391.228 444.248 445.774 434.562 407.296 460.231 408.971 482.224 427.22 627.39 623.423 460.73 398.222 390.221 899.857 772.034 -66.2368 461.846 422.994 411.341 401.597 432.173 420.885 82.3322 467.738 378.666 434.283 105.646 487.643 388.829 772.7 406.768 455.068 23.2756 679.536 423.004 23.7377 594.665 422.325 420.514 331.356 -86.668 762.865 509.247 584.6 523.759 432.208 438.292 434.255 479.823 495.852 407.068 415.038 451.425 341.633 435.632 368.376 416.147 566.733 412.945 362.303 410.31 510.767 432.726 440.059 83.606 423.294 381.499 377.175 417.828 377.615 94.3839 212.55 263.778 249.684 259.567 248.77 253.484 328.358 222.779 46.1062 202.214 180.696 241.153 207.648 209.641 290.162 190.968 241.984 227.641 251.833 242.943 242.673 258.705 245.255 229.974 226.49 54.528 214.982 212.476 213.412 229.464 438.045 368.131 428.13 435.337 458.111 439.238 446.049 434.009 342.291 343.343 346.833 482.302 442.963 454.404 468.819 499.113 442.333 390.497 432.013 444.205 421.612 441.628 442.439 356.326 343.221 325.565 333.88 351.821 256.586 280.51 268.06 258.243 239.576 243.773 255.265 268.974 252.343 240.895 274.151 263.099 344.253 351.86 258.738 256.653 232.191 156.69 226.142 263.335 237.752 241.221 255.996 256.861 254.813 261.079 227.186 266.705 371.778 280.774 242.523 214.224 277.969 359.248 343.599 220.117 362.47 239.638 289.219 234.479 190.959 305.423 214.689 272.685 297.144 510.756 446.275 405.063 461.554 458.513 432.101 438.216 249.337 270.047 270.748 265.884 258.226 429.541 393.652 349.189 104.017 429.676 278.32 258.5 371.227 410.672 289.346 458.856 411.091 443.607 175.265 251.017 335.249 294.989 352.693 272.802 267.796 325.962 240.943 274.003 257.169 275.902 276.558 215.466 305.586 168.543 189.85 318.191 251.825 251.258 271.604 273.907 248.477 266.382 304.576 308.484 315.593 304.665 295.232 288.233 317.763 238.642 252.557 259.719 278.84 256.057 240.618 269.772 277.11 212.988 202.059 -22.0739 254.506 249.693 221.801 274.255 296.996 268.288 285.457 300.156 407.915 319.935 414.631 374.069 309.146 484.175 402.305 434.804 433.102 483.148 480.891 438.439 386.92 436.382 413.106 415.17 473.67 277.914 300.74 309.948 286.265 296.603 278.591 283.02 440.688 376.379 446.39 406.696 421.052 451.986 373.559 306.886 265.857 316.982 311.339 253.752 423.865 303.369 421.206 304.488 287.385 304.586 238.842 304.049 301.193 305.285 296.441 300.596 329.803 15.7967 267.992 257.126 102.843 304.201 179.249 264.513 313.9 287.871 277.774 248.772 198.009 281.084 291.974 290.047 291.352 278.143 167.006 266.535 243.647 358.752 186.471 261.741 185.285 265.244 248.949 299.411 301.709 275 254.875 295.197 298.713 282.299 294.976 278.463 265.354 208.503 229.778 153.869 250.922 -45.1126 -29.2486 -46.5685 -32.0603 -0.369562 -58.1038 -59.368 -42.4283 -17.0701 -15.1194 33.7643 -100.249 -64.3851 -13.7008 -7.95315 -33.9771 -13.4248 -31.6245 248.31 238.545 247.426 232.42 242.758 237.804 240.026 336.776 305.098 373.929 317.086 260.532 421.752 225.767 258.316 243.099 193.51 228.441 253.568 228.11 241.32 232.443 287.588 244.724 234.955 224.43 385.502 250.636 249.038 246.843 252.994 248.892 244.325 235.719 250.199 513.661 -27.358 452.448 228.489 209.259 223.415 225.918 181.02 189.128 213.739 224.521 213.955 100.47 -20.3023 210.932 230.3 204.71 -52.0588 -27.9087 -7.89728 -32.2809 -73.7295 -43.2163 -33.4572 266.726 197.785 182.158 236.897 197.448 7.32536 244.641 251.277 205.054 41.8462 244.091 261.89 168.177 213.732 332.405 597.513 448.815 267.865 296.076 244.391 306.289 310.97 358.005 373.049 252.036 321.883 352.094 300.028 240.243 334.625 261.885 363.866 240.592 239.052 294.473 286.901 229.162 246.231 264.572 346.035 322.975 444.499 -50.2684 414.182 210.55 -65.3034 618.078 260.673 34.3061 279.942 160.845 256.12 255.082 174.128 220.148 79.5141 144.589 261.719 142.849 -9.68047 -68.3722 -31.5162 -29.8941 -34.5698 -12.0075 -12.2979 -9.96692 -52.8157 -95.9709 372.366 -62.8069 4.40388 2.0277 -0.648714 5.52018 -1.58394 22.911 8.21168 -78.194 -25.1631 19.4435 67.7281 280.612 147.857 251.163 130.8 3.33358 4.43202 -0.738098 7.18242 -0.613476 248.113 250.084 303.45 253.606 235.207 322.604 676.185 563.031 514.19 193.457 455.832 524.215 101.333 284.08 283.467 275.811 270.029 28.6445 185.438 305.323 244.665 315.446 165.119 304.338 297.583 229.615 281.596 263.196 246.745 -71.7119 542.83 -96.973 189.786 168.709 231.833 268.554 161.792 122.685 213.494 295.993 175.389 250.651 246.754 310.978 252.221 321.566 284.164 9.16406 -125.414 0.284509 -90.6871 39.1193 15.5941 3.74408 15.6131 -11.5142 -3.59543 15.6514 5.72597 -18.4779 -20.6517 11.9648 -3.5659 -7.57219 -37.2926 200.126 164.399 299.281 309.334 171.41 300.517 156.537 133.918 314.433 172.022 12.5808 -106.853 35.8475 37.1544 8.88643 -12.0929 -62.3495 -61.9024 -53.7818 15.7942 -31.151 301.276 440.457 409.702 423.205 433.11 447.34 442.947 375.58 193.244 406.588 357.321 413.1 411.553 211.903 397.439 408.103 432.208 431.515 391.749 411.156 426.802 751.698 631.112 545.021 458.432 493.245 521.767 831.636 405.878 442.621 422.466 431.177 434.142 404.771 444.055 383.684 390.731 362.412 145.522 435.64 263.616 441.203 402.372 440.848 437.245 407.52 405.53 501.256 415.861 416.411 448.634 441.519 418.469 476.029 436.066 281.705 473.482 437.442 451.759 446.055 482.292 411.93 490.64 450.838 368.486 436.984 424.196 431.11 440.273 303.461 433.033 420.986 750.387 425.941 609.264 433.496 343.11 280.689 442.535 445.854 441.771 449.939 429.334 434.649 415.662 415.219 430.584 476.35 437.566 354.317 441.697 459.871 443.699 432.595 458.351 438.392 471.695 416.226 433.535 377.279 89.1292 432.228 399.63 418.946 -61.8443 818.999 771.399 665.959 427.068 595.521 832.806 410.745 546.925 453.66 428.623 440.845 185.49 453.176 420.76 383.907 429.362 417.273 434.912 387.408 392.88 395.503 565.195 410.134 -130.054 415.216 124.335 495.324 450.973 214.905 471.172 374.602 519.36 254.845 510.153 390.924 452.786 422.533 430.905 394.496 441.427 126.846 423.76 469.672 499.004 418.174 451.917 425.955 604 432.565 505.39 400.179 767.504 398.868 436.24 556.566 663.116 395.616 391.197 414.525 436.233 695.747 359.038 390.127 404.429 361.942 428.397 424.371 426.461 406.138 401.96 274.175 730.602 429.96 425.492 242.424 867.761 333.077 211.345 435.374 458.08 436.907 429.72 418.101 483.316 475.618 445.1 407.684 428.007 539.262 437.034 413.831 265.647 252.984 244.142 270.104 254.537 238.626 216.236 236.903 182.732 234.185 239.883 227.104 209.75 53.0073 207.282 230.055 263.927 208.815 199.611 236.866 220.205 226.379 157.755 243.022 235.154 202.65 242.502 268.654 230.032 241.104 388.157 297.078 319.177 328.175 388.059 381.093 435.088 431.866 307.107 422.622 412.728 408.293 425.518 392.111 409.86 429.212 393.051 366.264 373.996 275.51 425.873 380.561 288.039 406.069 367.843 281.573 218.726 240.246 107.121 248.871 270.611 207.966 259.339 266.775 191.369 254.584 213.274 275.565 227.141 72.9752 257.475 270.712 302.813 52.6421 292.588 291.808 48.2873 277.918 243.662 195.488 258.151 210.535 242.328 237.916 216.103 148.994 239.929 218.86 235.37 227.532 275.571 262.537 271.259 269.178 272.213 276.581 429.13 385.207 325.092 358.053 430.325 290.535 382.256 397.908 371.813 362.966 400.151 347.32 446.82 474.009 470.338 463.328 458.725 419.142 337.505 381.048 434.281 330.682 453.285 447.519 469.312 451.277 459.375 272.091 285.761 267.921 273.25 268.56 247.776 216.638 256.725 187.2 260.695 159.079 278.848 234.058 263.25 278.533 139.539 283.783 232.221 272.112 274.713 267.013 251.334 264.968 301.133 259.981 327.859 285.306 364.16 149.661 243.49 168.333 252.31 272.362 219.689 260.168 262.745 265.7 279.501 264.418 270.611 306.021 236.955 263.175 272.642 261.685 255.996 385.589 309.171 297.827 389.932 309.011 420.16 402.544 374.401 424.785 396.265 421.829 440.358 361.073 388.941 489.607 197.915 387.241 199.772 342.129 411.992 271.673 409.459 363.48 221.22 374.109 429.473 380.609 359.757 219.104 420.084 260.119 219.996 255.14 261.36 386.483 305.934 299.749 343.132 307.491 371.059 268.638 273.643 266.692 269.716 270.215 267.742 151.332 -58.2968 197.787 292.869 204.486 301.81 309.687 328.455 -144.385 315.786 268.758 336.006 307.148 268.123 246.808 256.556 272.944 269.243 248.772 268.653 264.243 273.656 256.44 292.112 225.163 290.833 277.037 240.604 254.44 249.999 248.259 255.109 240.911 282.77 297.693 277.565 277.593 287.926 278.977 287.581 296.721 214.117 214.895 -4.16751 -7.67602 -9.86785 -10.8917 197.734 157.25 203.556 -1.91091 -4.54358 -12.044 -89.4793 -11.0493 236.809 229.973 294.896 236.086 253.433 243.715 185.632 135.943 225.165 385.322 280.308 181.328 190.704 243.146 240.472 235.492 238.741 251.383 341.445 413.029 179.155 257.561 226.05 296.405 254.859 230.405 248.407 250.995 257.879 237.426 234.784 252.013 212.214 494.05 197.98 207.973 478.755 42.4283 224.106 243.348 266.532 161.957 233.735 226.019 250.79 274.637 -178.802 -9.54574 -2.37046 -43.8433 -9.19688 -54.4624 241.809 183.378 274.723 -9.92671 -44.0035 310.346 304.269 201.246 244.828 303.757 305.731 226.531 515.396 125.696 200.211 282.902 239.596 231.141 300.069 247.697 154.131 -187.478 215.899 217.309 122.391 661.303 -100.952 261.172 184.95 589.598 408.738 237.408 303.283 222.075 280.409 195.2 132.922 318.385 224.459 8.88579 182.068 242.623 371.613 270.512 274.704 286.263 176.907 252.451 291.77 222.495 99.6512 256.744 271.243 48.826 26.5859 -1.64479 -20.8536 20.4323 163.933 85.8876 -227.463 107.646 -60.3171 21.2097 21.308 0.722469 20.9335 3.65504 23.134 14.9363 1.00769 57.4419 76.9741 65.7967 132.092 -19.3393 14.3225 60.0656 303.498 39.8348 38.0304 15.0774 -1.95138 6.62261 -3.36999 33.9376 7.73484 242.89 189.918 -3.421 244.123 96.2063 310.028 432.252 226.992 250.441 -9.97572 246.42 841.19 141.833 354.646 468.276 716.17 533.296 828.234 195.025 262.94 310.258 311.36 287.482 280.824 46.0978 580.507 255.343 324.609 218.87 164.807 721.493 255.342 284.952 236.719 313.882 270.434 366.255 249.272 223.109 69.3562 146.317 -113.175 172.199 163.449 -9.23434 -86.5798 105.41 34.097 -78.2449 114.109 -107.332 -5.61356 5.10808 5.23993 -31.679 -8.03234 19.6724 -31.727 -6.96814 1.40987 2.42264 35.9465 -62.3222 -1.21924 -144.93 -128.917 -18.0807 -3.2351 -3.25568 294.838 5.52887 -2.60994 121.459 175.044 -26.3933 138.632 -129.865 81.7642 -16.8655 3.70377 -52.3434 428.947 422.078 443.159 314.859 433.35 365.418 457.605 451.506 459.629 433.507 437.6 440.088 411.991 491.833 212.953 692.777 500.797 547.845 454.355 483.563 429.183 541.96 508.202 406.733 430.684 440.213 430.036 489.66 426.539 431.807 431.584 448.197 430.181 332.355 448.211 430.562 434.998 428.961 453.28 442.589 210.402 450.826 437.83 223.88 491.448 354.679 403.03 435.139 415.338 508.715 430.23 -381.724 425.359 507.157 434.329 430.128 232.378 511.117 454.9 376.746 443.076 429.984 464.619 385.331 445.993 433.506 431.429 439.154 431.722 457.165 192.945 531.244 393.427 266.062 387.128 451.2 522.346 412.822 433.043 422.317 430.774 411.234 462.897 424.501 390.791 883.66 438.574 321.651 715.202 758.585 296.617 410.127 434.288 428.009 408.84 422.456 512.571 330.813 401.693 438.401 454.375 434.556 443.076 422.671 466.488 400.884 388.14 217.725 756.811 396.675 551.024 446.592 376.06 411.014 437.694 436.892 448.165 418.24 481.043 550.506 541.427 387.841 459.561 746.061 424.03 421.542 421.509 426.583 393.569 444.462 465.97 4.07663 434.556 464.156 395.552 371.926 385.209 640.583 414.514 402.192 101.794 435.682 426.542 419.285 391.359 539.599 393.239 431.036 304.921 418.13 427.895 137.484 396.514 433.874 485.021 346.179 347.237 287.347 525.053 386.199 408.913 370.213 459.093 398.028 404.969 399.36 434.605 418.657 418.003 426.823 425.548 427.34 425.899 419.659 421.711 435.154 365.984 387.646 435.683 429.745 314.233 526.972 359.217 436.702 450.178 424.424 455.402 425.236 424.778 415.531 436.612 428.174 429.667 457.084 428.018 428.589 212.545 215.171 227.993 218.615 224.087 222.509 269.038 235.361 232.047 228.894 232.052 235.694 231.871 229.188 197.232 257.144 293.116 151.975 241.029 273.758 216.171 201.958 237.422 216.709 248.35 242.555 272.553 213.392 275.065 249.558 279.147 224.766 244.9 248.781 235.598 135.128 289.169 262.373 106.596 327.914 181.869 339.589 242.78 334.155 423.429 215.197 421.961 -9.30896 381.599 378.656 425.339 235.372 402.251 398.673 428.035 400.67 438.954 408.806 372.214 313.598 224.588 178.795 192.605 341.269 317.112 428.209 323.908 383.742 225.632 378.119 358.941 211.381 371.45 343.851 250.492 227.429 252.487 238.925 175.477 217.601 212.331 215.94 215.812 257.252 248.092 263.932 277.056 239.907 267.093 226.851 205.754 262.145 286.519 324.522 179.886 239.52 231.473 231.885 234.2 254.374 243.958 -10.0756 -70.3146 194.397 249.827 241.411 261.157 265.019 219.656 265.566 248.777 270.39 222.709 381.026 232.815 397.331 261.72 406.649 343.309 283.155 380.544 285.44 163.348 275.076 311.577 265.956 154.913 346.286 372.484 390.043 409.206 409.18 339.957 413.841 409.916 292.54 361.353 220.216 274.258 316.462 158.208 347.055 384.422 446.446 375.694 419.447 401.77 390.537 414.537 378.295 361.674 381.597 359.843 384.493 393.495 247.164 246.063 211.401 228.822 237.153 256.888 212.96 303.069 310.046 299.895 242.477 319.281 271.861 295.409 269.293 258.586 288.316 290.044 282.54 126.745 251.091 190.814 250.567 306.771 261.143 269.212 256.889 260.94 233.369 163.92 147.894 197.79 171.813 107.436 248.295 257.813 259.24 258.508 265.792 239.973 266.323 142.874 135.784 274.255 239.537 156.873 266.691 263.733 403.473 394.061 406.46 377.267 320.647 385.25 429.931 416.05 436.364 416.149 420.603 451.36 226.444 281.713 330.703 267.885 283.64 313.689 159.768 406.687 413.719 408.629 425.583 278.126 331.869 358.582 332.571 283.417 323.577 341.716 172.326 255.641 255.577 246.787 255.901 228.429 203.001 254.351 267.311 -19.741 -59.5162 283.012 237.745 232.709 244.872 232.805 282.54 178.903 132.346 547.78 175.504 268.126 267.821 265.117 252.104 288.075 275.781 267.133 227.427 262.015 278.695 257.353 262.899 251.588 293.944 252.654 216.992 233.136 238.98 250.084 223.874 239.55 239.329 -15.8146 116.827 -9.5198 -18.2764 -9.48243 -17.4823 -4.88742 -6.15962 -15.5598 -152.748 -3.22991 -82.2051 35.0456 -190.064 -42.5873 -19.446 -103.086 -11.0616 -15.261 -12.995 -44.9094 -18.9849 -33.6868 -15.2056 220.854 16.1483 215.904 -35.8353 150.74 -212.6 150.042 179.646 207.624 220.371 273.381 219.114 227.299 216.614 234.166 236.208 275.878 289.758 226.333 253.363 287.218 228.641 0.605098 236.33 247.198 285.431 183.6 260.884 233.987 -98.5673 240.097 268.59 195.375 249.553 253.653 342.122 320.095 145.578 495.911 388.238 259.798 256.65 -302.813 289.085 255.355 247.852 243.777 -22.1803 57.2378 58.3919 27.1337 -17.0758 24.7838 -122.753 -109.803 -0.746378 -149.264 -16.5257 -26.1913 -3.19672 -48.0083 -76.1593 -50.6319 -45.3102 -41.5453 -62.1119 -52.4134 -70.9545 -43.1578 -37.6247 -22.205 -36.0082 -55.1343 -23.0497 -13.4041 2.49475 6.85469 -0.405853 0.840419 0.681128 231.766 281 352.11 258.066 295.093 225.452 513.363 165.65 254.986 315.819 131.451 162.811 255.166 321.015 293.641 285.538 256.607 268.667 196.887 299.603 299.578 277.897 307.382 318.542 283.999 283.653 202.798 219.172 211.664 250.459 227.23 10.3283 395.262 246.527 218.116 236.364 270.139 282.48 289.591 157.45 59.8225 219.394 177.758 -136.389 271.529 4.38675 -141.41 -126.001 -11.6398 -31.4614 -129.955 -66.33 -0.979518 -1.27865 16.5539 -18.051 -1.66176 165.431 236.264 225.545 145.979 31.4248 1.86187 -36.4857 -21.3399 128.512 -64.4244 64.5448 173.422 18.1543 55.0033 74.4052 -155.817 104.047 -33.9664 -1.689 -30.7349 121.309 -11.0153 -16.194 -65.8159 -39.3411 -42.2625 279.632 250.994 156.261 333.504 194.509 316.911 280.096 448.298 303.891 317.118 225.52 284.028 281.756 284.908 292.693 197.31 385.227 304.418 288.462 231.139 251.882 281.389 298.404 243.723 356.371 293.78 258.378 317.702 328.02 308.254 251.803 245.172 134.1 358.744 254.542 190.006 -71.5307 252.481 30.2306 105.782 187.09 219.076 295.271 370.671 285.549 395.259 310.319 348.314 321.854 183.172 -28.4245 265.912 4.91676 -71.5051 4.1588 6.15488 -10.5195 1.14372 -42.8163 -21.2771 -24.1124 -22.7138 6.9012 188.064 338.748 258.771 142.641 210.941 58.8267 -39.7524 88.7268 75.8207 220.876 103.224 -21.3808 -73.8527 -24.011 -39.0702 7.31186 10.6869 0.232957 -2.96488 5.93832 -20.1239 3.7111 413.796 428.116 426.963 428.545 425.28 423.969 428.343 434.586 427.016 428.897 433.643 431.514 421.502 443.946 468.831 407.212 425.385 388.633 769.174 457.632 425.305 423.171 372.977 430.836 388.06 263.711 683.809 501.217 422.159 428.129 420.803 432.113 429.427 362.367 421.909 445.422 432.672 430.282 394.899 433.571 463.349 446.977 317.41 418.169 502.773 348.544 479.219 428.157 401.169 372.682 425.794 426.743 431.323 415.6 423.088 461.912 384.076 451.577 414.839 405.899 413.326 415.417 386.032 455.117 450.359 422.84 427.81 405.593 430.02 416.696 384.959 376.936 379.077 399.939 522.275 297.585 439.683 413.936 425.279 422.927 431.317 468.558 368.415 451.116 437.861 342.864 390.147 361.89 424.658 390.891 395.8 397.262 432.559 427.653 368.533 424.641 437.376 424.931 410.999 425.817 421.253 420.675 418.797 424.255 341.399 413.995 409.975 371.96 409.151 414.893 434.596 411.16 424.727 412.518 424.663 424.8 420.036 424.409 477.959 402.432 449.871 408.374 404.37 488.905 410.421 360.934 421.151 430.541 432.457 426.015 424.131 433.455 427.451 413.218 400.629 403.281 419.021 407.286 410.537 412.783 411.401 423.177 421.699 443.561 423.912 391.521 418.75 566.838 472.629 422.59 450.432 400.965 432.987 437.374 226.506 321.914 351.513 531.051 398.196 356.449 429.28 405.409 150.342 348.9 571.961 398.022 411.024 417.248 559.106 544.501 420.373 442.371 434.274 401.937 470.949 356.2 369.888 387.569 396.724 239.258 335.254 470.451 387.084 431.354 433.508 429.338 456.145 421.065 448.201 475.626 408.698 404.593 417.862 170.419 452.395 208.233 260.895 267.597 306.06 270.37 283.332 260.326 334.166 264.418 268.791 299.255 348.562 291.989 309.482 356.785 90.7602 147.299 64.9742 99.1812 294.425 284.716 283.553 277.471 297.733 245.407 231.6 226.848 252.415 218.974 230.354 391.083 345.337 483.626 71.3138 269.713 340.666 374.911 390.2 345.458 333.62 360.193 362.918 370.706 431.913 447.417 434.318 423.769 416.805 453.208 449.585 219.6 269.06 267.796 220.036 225.41 291.58 438.024 424.858 435.783 425.085 490.734 447.891 419.209 409.496 286.283 392.359 284.602 415.092 344.74 387.801 414.513 387.458 438.393 405.301 401.403 288.506 395.9 290.301 383.769 292.308 304.099 300.522 300.582 297.058 288.37 277.995 220.18 191.376 198.372 287.671 279.858 271.071 276.461 281.823 281.528 267.9 289.413 257.766 285.083 291.867 272.503 280.535 260.49 287.67 289.642 313.265 329.744 287.869 301.997 315.059 305.129 324.773 290.08 299.167 300.76 286.189 297.934 287.057 288.6 246.025 199.407 258.259 198.43 271.867 228.86 426.802 404.112 411.884 411.763 431.203 410.212 406.767 403.746 360.629 356.347 373.29 391.954 362.305 445.79 398.14 432.881 456.44 433.874 414.198 483.284 412.147 261.098 388.411 381.539 263.624 458.076 423.089 423.594 422.448 280.197 419.065 272.611 250.452 252.964 270.289 236.728 263.626 261.45 250.283 233.248 248.23 218.192 307.827 135.411 299.744 264.615 276.958 277.952 263.126 277.923 272.253 263.682 254.178 264.17 278.524 266.91 227.456 268.002 189.786 334.262 81.3219 224.87 173.747 235.521 263.581 276.047 286.405 280.739 269.421 262.101 279.245 324.142 286.515 346.438 290.45 365.331 240.924 329.811 202.62 395.53 402.483 495.538 341.392 317.377 241.985 409.606 410.93 395.411 384.358 87.1116 361.542 361.038 391.46 384.765 370.574 355.514 378.2 268.698 280.784 257.171 303.411 241.974 313.151 259.211 282.408 292.67 265.375 314.555 279.002 276.001 257.932 182.705 279.056 217.911 345.731 312.329 335.05 296.724 301.822 271.345 361.59 322.406 214.01 296.209 279.028 261.331 293.112 285.338 296.334 297.625 296.735 284.013 280.555 299.547 280.947 303.196 293.22 219.814 297.234 196.12 304.625 162.033 151.916 56.2486 233.012 202.118 120.28 -39.2481 -58.329 30.281 1.32683 1.64 -11.9 -24.0508 -4.00672 -15.1915 -19.2588 -4.18374 95.3238 -4.8401 -95.2581 -42.2044 101.049 -8.10218 84.6798 -12.3699 200.545 0.774168 -51.9124 6.73783 3.17071 2.45284 5.01898 15.6706 0.636357 11.3098 -29.2687 221.546 88.9379 115.069 -275.358 175.188 267.545 244.618 324.945 322.674 302.969 165.922 483.212 297.247 302.629 377.548 405.896 309.703 269.354 264.518 -429.292 300.048 362.41 194.037 306.421 235.928 356.249 121.59 186.703 599.118 264.038 358.521 244.814 -59.2628 117.148 235.42 185.477 15.115 84.7244 121.443 301.675 127.54 -62.5953 163.541 -78.1047 -4.30878 -75.3711 -55.0224 -55.142 -87.3883 -128.788 -83.1902 -162.006 -79.7677 -68.1973 -22.3471 -9.94842 26.1377 -52.8239 -79.6852 -93.6164 -134.726 -78.0305 -81.4066 -56.3326 -176.896 -78.5431 -6.59679 -170.866 -45.1887 -180.878 51.4042 -113.438 -5.49531 5.04403 47.5929 89.8803 301.221 335.459 306.432 392.394 289.878 309.214 272.08 211.039 314.566 66.17 383.075 201.145 231.815 187.093 277.869 105.801 90.3292 247.306 240.387 -214.91 269.062 268.26 264.212 271.779 252.137 259.094 275.818 246.514 312.996 254.211 -167.441 257.944 214.581 268.773 263.752 301.573 263.91 263.253 189.304 275.668 245.057 -268.778 223.147 171.897 286.509 -131.191 -99.2533 -166.305 -112.137 -72.1397 -66.0063 -20.636 -12.2305 -63.0772 -105.173 -0.584459 140.887 89.9722 81.5373 96.8806 -72.5664 79.8913 -89.1454 -79.8669 -7.87724 -123.278 -19.0632 -92.2614 -98.266 -172.3 -97.5174 -59.3564 11.8762 -120.405 -187.01 -94.3202 -157.669 -86.671 -120.86 -170.257 -139.392 -10.0251 -105.632 8.94556 3.20401 5.67052 -53.114 -64.6042 -17.5884 338.526 325.265 361.861 358.174 317.511 346.426 307.764 208.414 248.547 262.116 281.183 273.198 286.172 339.462 400.574 265.031 371.237 325.281 388.476 317.731 263.568 397.732 213.948 353.611 7.87376 5.84068 18.337 -38.2994 -42.5534 -100.616 -4.78112 -84.1423 -71.9911 -19.1361 7.56748 298.898 361.038 258.946 200.447 64.6127 243.214 178.055 288.062 209.895 -79.0785 -124.454 -126.834 390.407 -96.9715 -12.5622 0.425043 6.3876 5.30892 8.11704 -0.479793 433.927 431.492 432.265 434.206 431.498 433.747 434.718 434.6 435.213 434.944 434.927 434.752 434.838 435.058 434.653 434.768 434.649 434.93 434.619 434.651 434.723 434.361 434.236 434.258 434.314 434.154 434.549 434.741 435.037 434.922 434.794 434.649 434.838 436.84 435.124 436.298 436.538 435.95 436.013 437.338 -117.672 433.047 433.986 435.694 -116.788 435.832 431.154 434.417 433.185 434.632 -125.562 -123.46 -125.843 -131.454 -129.61 -122.552 -127.212 436.321 433.956 432.765 431.467 433.785 435.202 434.928 436.43 -123.046 435.948 -119.494 436.411 436.518 435.566 435.747 436.111 435.184 436.075 436.129 435.861 435.708 436.624 -157.356 -149.743 -161.472 -146.986 -160.675 434.939 435.333 -156.429 435.648 434.714 434.868 434.758 435.545 435.194 434.898 436.144 -135.971 -129.537 435.685 -137.755 436.291 -143.319 435.737 -148.176 448.007 431.903 425.659 419.715 431.394 422.685 415.234 455.214 426.291 426.775 428.503 432.397 369.537 422.448 503.661 344.525 402.718 333.681 385.921 392.362 403.696 265.337 581.6 413.358 561.478 368.276 399.863 400.66 420.03 430.555 434.496 463.775 426.035 474.542 475.524 419.912 404.852 378.523 385.334 324.303 483.703 338.494 432.027 432.058 431.435 432.273 431.908 431.013 432.943 434.017 -179.641 433.779 433.097 432.481 -191.554 430.821 409.888 429.099 421.374 431.179 416.937 428.833 423.38 381.408 412.246 403.257 401.964 387.433 407.104 413.902 440.29 437.393 429.518 429.578 431.739 -190.673 -184.712 -195.992 -194.576 405.858 420.054 475.078 433.024 471.452 345.256 445.131 412.532 413.277 394.362 380.982 422.8 417.506 388.966 434.541 -201.578 431.62 -200.196 433 432.722 434.171 433.716 432.787 432.837 419.395 426.854 425.39 431.513 424.596 429.631 427.659 414.714 375.483 351.369 366.442 629.184 443.465 340.877 431.016 426.636 431.609 430.528 448.51 433.142 431.43 433.003 391.462 430.228 411.422 412.331 506.645 419.75 411.915 409.596 400.409 430.468 433.471 432.656 432.967 432.925 436.47 432.406 430.896 431.604 432.886 432.812 -180.567 -169.875 -181.143 -172.773 -178.592 -177.463 -171.062 434.434 433.578 -176.389 433.22 434.327 434.023 433.599 433.32 -191.856 -195.781 -192.055 -198.986 -196.271 -191.447 -187.615 -183.807 -188.385 -194.477 -183.607 -198.131 425.917 431.172 428.842 -192.128 -184.221 -180.099 -199.499 -189.153 -184.502 -191.711 -194.818 402.325 -184.481 -196.92 -199.366 -195.287 -200.52 -195.241 309.424 331.982 289.739 320.193 271.547 321.122 362.511 302.443 328.76 284.628 278.673 289.367 291.275 300.192 291.291 282.115 307.809 346.132 286.365 336.421 283.892 298.754 304.978 289.232 239.274 393.747 382.158 339.103 -91.5606 378.94 414.875 411.063 413.615 410.48 402.69 414.798 413.845 -125.723 -109.802 -129.578 -162.417 -157.238 -151.468 -147.443 -142.267 411.408 386.918 418.265 385.751 414.673 405.062 288.665 400.419 378.319 411.862 -116.674 -99.5619 -110.661 -131.83 -130.269 -97.8393 -123.269 -67.8179 -56.6804 309.14 287.043 311.81 299.131 286.773 -60.5272 -59.5703 -82.5038 -74.2714 -64.9967 301.702 305.006 301.916 -45.2908 -36.9295 -48.8705 -31.9652 -65.1873 -73.1623 -82.7022 -64.3676 -74.3748 -62.6782 -68.0995 301.698 275.546 271.284 417.791 421.381 439.71 396.475 430.234 422.321 408.704 386.176 377.436 375.838 389.876 374.904 418.677 -143.628 402.389 399.337 297.992 405.762 394.72 435.88 410.604 413.879 459.909 410.681 -99.4844 -101.219 -128.66 -123.427 307.245 289.304 301.207 298.721 312.369 288.459 296.653 318.497 293.069 320.032 308.689 288.503 308.105 302.389 289.102 296.636 288.415 302.891 316.618 323.855 -32.5394 305.656 -45.1672 -69.8162 -68.1213 -59.9062 -60.3347 -58.4629 -124.475 -99.4921 -102.099 -117.197 -117.647 -107.071 -151.318 -164.543 -160.335 -154.039 -165.53 -150.485 -150.471 -144.197 -157.747 -161.819 -136.787 -60.3107 -55.4404 -71.3479 -74.309 -56.8871 -60.1362 -77.5363 5.13957 4.7063 340.18 399.284 279.914 -54.953 16.0607 -8.21749 -30.0603 -12.1752 -40.6502 -48.8899 -47.0851 -17.1068 304.601 276.337 157.217 354.814 245.461 -59.4571 -140.274 -95.3677 -85.9716 -80.7438 4.51803 2.89428 2.9963 4.69545 4.2177 -0.7762 2.39786 0.423556 0.476785 0.674004 0.568862 -2.48818 -5.48337 290.392 302.896 -0.577652 231.54 0.903059 0.882371 -7.29531 -7.61841 -17.5433 -15.7177 -9.63125 4.46724 5.07909 2.55431 5.09734 4.42638 3.89568 3.2661 2.93994 3.52912 5.50814 3.92469 5.25617 5.17552 3.01394 3.994 4.8378 4.77896 4.97338 3.91451 4.693 4.68077 4.05784 3.32028 5.27322 2.16489 286.959 284.914 259.933 302.164 295.306 267.584 298.875 6.20867 7.07889 6.39532 5.95594 6.7901 -5.29371 -16.2728 -19.4114 -10.8245 -3.83053 -13.1766 -8.71338 147.362 88.9818 213.839 241.721 -2.82725 -3.37301 309.063 -15.8251 -5.87837 6.41716 7.49118 4.00147 5.55516 5.89518 7.42373 3.85352 5.06501 6.41076 41.1676 7.25238 5.20506 7.28353 7.57389 6.93306 6.04218 7.51226 7.71579 6.86142 -16.5839 102.11 7.84169 4.88157 4.87031 4.00746 1.81629 4.86191 2.69554 3.4862 -122.593 434.827 434.947 -117.2 -127.133 -132.005 -123.524 -131.877 -134.138 -126.756 -125.959 -134.162 -147.031 -139.33 -142.371 -142.696 -133.202 -119.585 -113.802 -114.772 -114.934 -115.132 -118.493 -118.096 -124.93 -118.726 -128.074 -118.885 -124.105 -115.016 -116.527 -116.351 -117.026 -116.343 -116.216 -115.396 -114.508 -114.919 -118.375 -119.24 -115.485 -116.967 -114.071 -124.845 -119.395 -129.984 -124.214 -131.04 -123.111 -119.538 -199.286 -196.787 -193.038 -200.465 -197.633 -196.837 -201.301 -204.188 -204.376 -202.755 -205.47 -201.624 -203.15 -206.45 -47.9701 -48.5016 -50.2467 -49.9771 -47.3801 -59.6252 -44.0721 -47.0705 30.7362 17.2043 8.93498 3.75957 -0.648624 6.76313 -37.9829 10.3301 -12.1603 -31.7187 -10.233 -24.5461 -0.872031 4.14217 -27.1366 -12.128 -8.01954 -6.66997 -16.5737 -33.1592 -14.7851 -30.4908 -29.5879 -29.6211 -33.3436 -24.531 -13.3963 -5.44962 -12.3802 -31.1444 -31.1181 -31.3861 -64.9026 -79.6246 -73.8939 -67.3384 -71.1548 -54.8047 -50.7966 -51.3866 -54.3577 -51.4938 -60.8352 -51.6148 -28.9039 -37.5516 -31.9133 -38.3827 -35.2964 -36.8626 -42.0145 -37.8039 -38.9443 -35.2806 -38.7754 -33.3666 -35.3443 -37.1996 -37.4674 -28.0396 -30.6761 -33.3132 -31.8708 -38.6616 -45.2978 -38.0087 -35.0996 -37.4704 -30.2811 -33.8832 -41.1635 -34.5151 -37.592 -38.3148 -32.2225 -34.6532 -31.23 -29.6325 -0.184748 -1.71836 1.35182 -2.97909 5.00155 11.377 31.1 10.0801 6.4389 12.2691 5.44413 7.32754 21.4434 42.7945 11.5378 16.787 0.161065 -0.704153 1.68021 1.36369 -0.781192 -0.203559 -10.5464 -4.7225 -9.85486 -5.9682 -15.1605 -13.9973 -16.4999 -14.0643 -20.7377 -22.9018 -20.5446 -19.3328 -22.8657 -23.466 -13.8273 -15.7014 -29.4938 -21.4227 -27.5032 -5.43853 -9.14378 -11.0217 -41.9991 -16.5276 -21.6169 -24.453 -23.1114 -23.2205 -24.668 -24.9775 -24.4622 -25.8682 -25.3015 -30.7091 -26.1755 -27.2209 -26.1537 -26.8188 -27.662 -24.4289 -27.4622 -30.9329 -28.4683 -29.1324 -19.4076 -25.3053 -19.9869 -22.0172 -16.9645 -21.7635 -16.9837 -20.122 -17.4836 -17.6774 -17.3661 -16.0223 -21.099 -22.2642 -24.1252 -19.8846 -17.6123 -16.7197 -19.089 -15.6508 -24.2455 -26.0855 -24.7298 -28.25 -19.3841 -22.1845 -23.9084 -20.7989 -23.1146 -17.1675 -14.7963 -14.1115 -18.0045 -18.3616 -22.0193 -20.6417 -15.1468 -18.8202 -15.1412 -17.9644 -20.8525 -21.9853 -18.3705 2.78066 0.891605 2.99682 -0.271939 4.1388 5.11154 5.89749 3.33395 4.87392 5.99535 4.77167 6.34833 12.0703 11.2347 9.6149 10.4613 11.1029 13.0624 1.2045 22.2446 4.28771 10.8076 22.9525 6.55208 10.6356 6.02682 7.58389 8.53348 9.69297 7.63648 8.42836 8.79926 7.74376 9.36863 5.97501 4.8769 5.10702 7.97666 7.09198 6.51751 -1.7752 2.84046 1.25164 6.36018 12.3134 8.94842 -46.2703 -25.5565 -8.90751 17.4206 -23.451 -17.0149 -12.8979 -45.2912 0.306591 8.60603 11.7529 8.5497 -3.15268 -6.90223 -7.39683 -11.2543 -10.7105 -12.8277 1.23762 1.84836 -0.224947 1.34675 -0.814202 1.85049 9.19847 5.5189 7.02853 6.5978 5.88331 -37.8234 -19.6084 -21.9348 6.44295 6.20861 8.16016 14.5602 10.5647 4.54337 9.59512 2.34894 1.63694 3.1504 2.16851 3.35385 1.08195 -0.0564391 -18.0731 -16.4043 -17.5336 -9.81932 -8.54952 -7.75447 -5.60554 -6.49355 -9.12371 -8.36621 -23.481 -5.89739 -1.00249 -3.23361 -0.983248 -4.14897 -1.6252 -5.18555 -22.872 -20.2682 -22.1434 -15.4187 -13.81 -12.665 -15.9333 -12.1836 -16.0762 -16.6673 -16.9487 -19.0398 -15.3893 -14.6781 -16.2185 -14.8797 -8.64717 -12.7639 -12.3241 -10.5071 -12.1969 -20.3675 -14.0292 -12.9296 -14.8041 -15.1775 -16.8785 -13.9805 -17.8535 -14.2282 -13.8547 -13.0686 -12.4283 -11.83 -13.602 -14.4224 -9.93539 -9.04075 -9.80268 -10.361 -10.6968 -12.5503 -20.1376 -16.3063 -15.1227 -9.50417 -10.4599 -12.4304 -13.1171 -11.5616 -10.0194 -12.303 -10.921 -13.3698 -12.1801 -21.3905 -21.4004 -13.8083 -11.8799 -9.11254 -9.27832 -10.43 -12.4318 -12.1966 -6.84366 -11.1411 -11.1818 -12.7271 -12.6447 -8.63566 -13.7605 -10.5819 -17.3025 -10.7799 -15.5339 -11.9328 -10.9474 -12.9455 -12.1755 -14.3159 -13.6817 -12.4333 -16.244 -12.0905 1.04621 -17.1623 9.32911 -23.6021 6.61486 8.50384 2.36917 -7.14351 -7.07026 -0.889551 -11.8472 -1.9964 3.54786 2.70689 -0.475627 0.424021 -1.12274 4.26212 5.20861 0.890841 -1.83533 0.13396 -0.619334 -0.960421 -1.28222 2.38665 -3.59091 -1.42047 -2.67943 -2.50567 -3.02644 -2.03476 -2.71242 -1.344 -1.23123 -0.961189 -1.48934 -0.00489155 -1.47559 -1.77138 -2.49232 -2.13423 -1.39307 -2.55078 -1.83569 -0.99741 -2.30339 -2.51264 -2.44492 -2.38457 -2.18635 -2.36622 -2.31325 -1.93072 -1.7079 -1.68077 -1.91165 -2.15759 -1.90475 -2.11913 -1.78525 -2.23612 -1.86767 -2.075 -0.767755 -0.358459 -0.717004 -0.3649 -0.797436 -0.667382 -0.374974 -0.921769 -1.29776 -1.31729 -0.981294 -1.18041 -1.5642 -1.28423 -1.51508 -1.23958 -1.4822 -1.13681 6.69179 0.668152 2.21194 0.189487 -6.29452 -6.35422 -6.41533 -5.89389 -6.97629 -7.79173 -7.67826 -3.02482 -2.80913 -2.93068 -2.79845 -2.79705 -2.62795 -2.75558 -1.35934 -2.01955 -1.18347 -2.85941 -6.48906 -6.91957 -5.51114 -6.90775 -7.72727 -8.7647 -7.63204 -8.58232 -6.68349 -10.0989 -5.71729 -4.24559 -4.79853 -3.82536 -5.5031 -4.69211 -4.77711 -8.65225 -12.4337 -8.96034 -10.9257 -4.99731 -6.01333 -5.03402 -5.57076 -4.31597 -4.53125 -1.51911 -5.62424 -2.60545 -3.46581 -5.39444 -5.47846 -6.7937 -6.1699 -6.48207 -8.92417 -7.43874 -7.99025 -8.67412 -6.26315 -6.51237 -7.42584 -7.7576 -7.39604 -7.5008 -7.47098 -7.52547 -6.95537 -12.5647 -13.4762 -12.1906 -12.9909 -13.1842 -11.6042 -11.8722 -9.35934 -11.6776 -10.6267 -12.8307 -13.4518 -8.87365 -14.2227 -14.6646 -20.5375 -15.8301 -14.8963 -16.4375 -14.8876 -10.5677 -9.88553 -8.72087 -10.9144 -8.56675 -10.0823 -15.5797 -14.1139 -13.0655 -15.8619 -14.2267 -14.4979 -18.5442 -19.0756 -20.5347 -18.6077 -19.3663 -18.3747 -18.541 -17.8528 -15.7917 -21.2311 -15.5726 -20.7473 -17.7619 -15.7919 -16.5707 -17.1607 -16.2108 -16.9247 -15.5658 -16.8082 -11.181 -10.4253 -8.73116 -9.72571 -12.5168 -12.2783 -13.0631 -11.5194 -13.9313 -15.1363 -14.3872 -14.652 -17.076 -16.5566 -16.2784 -15.2844 -17.0294 -16.3419 -15.8644 -18.9521 -20.2506 -22.1742 -19.2238 -19.3879 -20.8355 -18.6603 -18.2501 -17.5646 -19.654 -18.9401 -18.1845 -19.3759 -17.434 -17.1015 -16.8764 -18.2352 -16.2024 -17.8318 -17.0116 -15.9963 -14.1082 -15.4732 -13.4793 -14.0209 -14.1149 -15.1785 -13.2031 -13.4709 -10.5741 -18.9111 -10.5769 -14.9482 -13.886 -10.4167 -15.3495 -16.7696 -16.5317 -18.8176 -17.2347 -15.2971 -16.5653 -12.6933 -11.9186 -10.3116 -9.94491 -12.5357 -11.8519 -10.3208 -14.4976 -14.4569 -14.8873 -14.1704 -14.8709 -15.1339 -14.8165 -15.1701 -12.5409 -13.3539 -12.6534 -13.0504 -11.0982 -9.78075 -11.2569 -9.93134 -3.5086 -3.59976 -5.65913 -4.78916 -5.48323 -5.53554 -5.10107 -5.12852 -5.87146 -5.57049 -7.01569 -2.87895 -6.75723 -4.44142 -4.09026 -7.53796 -6.62665 -5.47216 -7.40329 -7.87959 -5.61438 -7.96539 -6.55659 -4.70322 -4.59666 -4.76598 -5.10774 -4.49283 -4.84559 -4.9404 -4.36153 -4.36381 -3.84646 -4.16959 -4.13894 -4.53338 -3.97677 -5.91955 -5.73279 -5.85507 -5.94254 -6.4377 -8.04502 -8.28516 -6.42136 -5.32576 -5.36049 -5.13293 -5.57694 -4.75236 -4.33736 -4.6612 -4.50925 -0.696058 -1.10623 -2.69379 -2.15074 -2.63929 -2.26237 -2.58516 -2.22646 -2.71787 -3.11117 -3.16194 -3.3782 -3.54229 -3.05956 -3.424 -3.22504 -1.19292 -1.55454 -1.58304 -1.0794 -1.14512 -1.61215 -1.12323 -0.707204 -0.60944 -0.100229 -0.141118 -0.679251 -0.624349 -0.221219 -2.68128 -2.3254 -2.75356 -2.42946 -3.47582 -3.65822 -3.67347 -3.34866 -1.26316 -1.63852 -1.31363 -1.55508 -0.657421 4.20423e-05 -0.644429 -0.109586 -81.4031 -85.5356 -89.6623 -86.2846 -84.0946 440.045 440.452 440.108 440.152 -82.313 -95.4754 -89.9233 -88.6284 -86.5808 -85.4009 -88.0799 -88.675 -90.9701 -85.8412 -87.5606 -85.9786 -89.3912 -92.2045 -87.8584 -87.7697 -102.019 439.902 -94.9902 -109.272 -115.557 -113.546 -105.288 -106.787 -116.344 -109.694 -99.3692 -93.5551 -94.9875 -97.6654 -93.4602 -97.1934 -100.71 -145.807 -157.997 -154.407 -147.29 -150.641 -153.928 -134.56 -124.842 -122.873 -125.654 -134.027 -126.612 -130.393 -166.024 -165.226 -163.848 -170.148 -162.11 -167.07 439.859 439.794 439.408 440.435 439.61 439.995 440.008 439.849 -102.961 439.904 439.904 -96.8576 440.169 440.217 -97.9176 -103.717 -96.0752 -101.445 -101.501 -94.1387 -87.7273 -92.1697 -85.8472 -88.9609 -96.6961 -89.2814 -89.7114 -92.0207 -90.2755 -98.2767 -94.7175 -99.5617 -88.5849 440.326 437.552 438.426 440.035 -83.481 439.385 -92.6307 -101.91 -97.3754 -103.073 -94.5741 -95.3195 -99.6371 -89.3209 -89.8884 -89.0679 -87.2677 -89.9098 -86.7985 -86.6141 -88.6112 -93.0463 -89.6959 -88.7604 -90.1129 -86.4021 439.138 439.748 440.056 439.389 440.166 439.123 440.409 439.878 438.998 -89.2591 436.602 438.688 438.106 438.706 438.946 438.123 439.077 439.998 435.612 438.733 436.752 438.621 440.443 439.546 -85.706 -85.6508 439.062 439.228 439.051 439.728 438.877 439.258 439.539 -100.561 -95.6612 -95.0134 438.78 438.732 438.639 438.741 438.685 438.759 438.809 438.259 438.546 438.439 -89.3582 -85.8093 -89.1634 448.574 429.106 427.245 429.859 461.764 398.32 435.173 428.117 408.113 319.468 439.686 254.036 344.804 385.401 388.877 448.262 -162.035 -159.621 -162.264 -154.206 -156.165 -164.617 -159.888 429.594 427.115 436.419 404.523 421.206 588.791 443.857 -152.834 -157.179 -158.895 -162.735 -155.554 355.616 -154.626 515.597 -158.484 434.895 432.322 428.837 433.463 423.384 432.195 431.807 382.012 365.961 429.413 370.372 527.25 586.209 236.316 461.113 418.547 428.592 434.083 351.647 461.737 478.374 411.889 372.424 415.946 408.04 400.433 675.688 346.218 369.211 434.939 450.8 434.295 433.206 434.994 441.022 453.946 436.013 343.023 492.937 415.749 420.872 411.017 483.654 432.782 429.251 423.4 436.386 429.504 430.869 -133.873 -150.542 -139.326 -145.922 -113.263 -111.009 -122.65 -112.433 -120.001 -119.002 -107.917 -118.121 -121.283 -158.656 -174.13 -160.847 -156.751 -183.477 -159.507 -119.326 -163.08 -159.724 -159.84 -151.859 -153.1 435.494 434.748 435.637 -110.938 -118.383 -118.203 434.128 -136.24 435.782 -127.849 436.748 436.995 437.774 437.969 436.751 -131.275 -137.185 -128.728 -135.555 -130.758 -138.296 -127.631 434.164 437.405 415.668 427.129 421.279 410.986 427.253 -155.945 -148.177 -157.804 -153.041 -157.965 -158.261 -149.595 -153.713 -155.458 -144.741 -151.839 450.894 416.454 431.824 434.167 424.388 436.306 433.402 435.367 419.495 -151.409 -150.164 -150.31 -144.982 -152.716 -149.128 -148.893 -73.1792 -85.8094 -73.733 -82.692 -69.9998 -73.5718 -73.0608 -71.0524 -84.0838 -73.6044 -79.9317 -58.9294 -43.8853 327.794 286.335 256.897 304.964 410.814 387.599 410.239 394.979 405.345 417.472 311.562 414.911 399.837 390.421 405.6 405.399 403.953 353.894 430.564 372.292 430.445 400.069 399.413 439.41 427.618 392.013 426.37 373.273 350.817 328.589 355.198 374.096 372.154 356.548 424.078 400.658 389.08 419.857 383.87 426.047 446.929 302.102 302.664 -68.2997 306.346 303.312 306.818 313.832 300.896 306.289 309.071 294.014 283.174 298.255 297.026 296.428 294.831 300.485 304.236 301.553 299.419 306.472 310.591 306.003 325.186 333.774 309.972 -55.355 309.244 298.718 304.453 301.756 297.708 305.074 298.284 301.087 -134.705 -128.391 -115.747 -148.203 -145.221 -129.936 -129.214 -132.805 -115.391 -143 -100.104 -134.358 -139.405 -114.207 -111.005 -110.059 -102.009 -109.624 -98.8611 427.214 421.227 -118.148 -119.287 -102.049 -109.043 -119.218 -103.025 -115.974 -124.112 -110.854 -90.043 -117.267 -112.189 -112.419 -96.5338 -56.5071 -42.605 -40.6436 -54.2846 -42.937 -53.6517 -72.4067 -68.6656 -81.9232 -84.0895 -68.8365 -83.7228 -72.2275 -60.8072 -60.3629 -45.2088 -50.4594 -56.6036 -61.677 -46.7378 -69.4807 312.678 -82.0889 -68.2128 0.520284 1.93264 2.82563 2.41605 1.66147 2.40606 1.2743 -6.87639 -14.2911 -7.75738 -12.1061 -4.51855 -12.9019 314.505 312.118 333.628 314.109 321.869 311.981 268.59 233.903 262.369 -179.382 133.515 300.216 122.705 296.032 279.964 283.969 255.095 293.734 323.648 348.139 339.497 342.891 253.805 -18.8447 -23.7615 -18.4127 -15.456 229.584 -4.83831 75.7391 -10.999 2.23411 -0.124259 -0.172737 -0.796643 1.69378 1.33771 1.59728 3.68602 3.69167 5.57937 150.171 83.6895 235.12 -71.8856 184.09 108.834 -0.542282 6.5202 6.73016 3.4069 4.67152 4.43402 0.435454 331.921 2.54444 1.65568 5.60969 3.62812 -19.8493 -29.0259 -27.4467 -17.7867 -28.8914 -19.9058 -19.2789 437.465 437.761 438.313 438.191 437.689 437.813 437.931 437.964 438.253 438.265 438.176 438.352 437.91 438.128 413.71 430.182 431.621 425.866 430.698 426.455 435.184 435.837 422.076 432.112 431.746 432.742 439.585 430.522 408.699 418.222 375.605 398.224 341.748 458.398 440.204 456.919 360.858 483.706 330.593 406.383 424.453 413.725 413.09 435.02 428.956 410.658 430.044 356.306 479 433.174 433.351 435.368 430.668 433.924 459.653 414.416 406.816 389.358 456.289 379.629 331.43 416.203 461.292 434.376 429.636 444.444 435.038 422.809 434.106 429.337 399.362 399.562 388.334 462.321 372.025 352.063 368.898 425.951 425.214 426.057 437.518 406.386 430.606 471.807 426.538 407.396 386.565 425.739 436.138 380.683 456.56 464.389 428.381 475.34 429.216 426.693 422.188 432.762 478.755 408.674 402.697 403.856 374.899 477.508 399.405 424.069 428.873 435.074 424.589 433.087 351.661 436.575 435.051 432.99 434.053 435.367 435.201 433.662 484.413 427.756 419.199 431.396 420.881 438.202 423.225 392.483 416.258 431.294 392.647 432.174 422.613 411.262 446.759 433.91 420.232 434.131 374.538 407.527 444.649 399.298 420.32 430.648 406.964 424.535 421.211 431.806 386.947 326.153 455.976 411.29 409.458 480.329 420.665 429.306 345.955 424.144 428.963 434.342 432.782 424.765 431.629 444.938 436.392 424.058 422.722 432.293 431.573 355.071 428.378 430.298 411.938 385.541 400.942 366.257 418.674 472.845 331.524 431.245 420.968 415.806 425.382 456.981 419.167 409.579 426.901 422.628 428.392 438.062 430.537 419.408 477.198 420.202 487.22 354.447 420.557 414.659 425.143 419.256 478.895 458.009 476.66 426.797 429.664 434.998 417.962 346.652 433.728 407.394 449.592 428.194 426.686 407.551 336.414 332.999 297.838 309.985 278.765 268.615 245.1 269.933 181.764 280.764 272.604 312.62 263.666 286.071 240.416 288.471 308.389 298.548 306.506 288.234 299.489 297.213 422.294 364.231 409.141 384.573 433.067 415.337 408.678 275.408 403.491 369.898 386.551 421.405 426.293 288.662 398.229 431.308 413.792 434.534 427.425 434.021 436.694 406.722 362.379 319.261 354.864 366.71 378.05 389.411 294.16 290.463 240.156 292.204 288.394 303.714 296.361 293.331 292.834 289.005 304.847 373.45 352.826 397.629 319.84 303.398 299.856 294.756 273.569 297.72 279.038 293.401 302.659 267.425 318.478 309.794 320.218 224.727 307.267 315.045 215.074 289.298 300.749 291.885 296.85 378.233 355.887 393.811 386.688 371.02 367.629 394.214 322.109 410.901 368.473 243.795 401.217 -117.678 -97.4357 -99.6002 -114.418 410.9 424.1 422.269 421.868 330.736 328.284 261.267 346.018 297.021 277.254 376.929 386.283 400.455 385.155 415.286 360.271 408.692 403.048 404.502 -97.4557 416.465 344.343 299.672 304.536 260.004 -62.9486 -70.8374 -76.9032 -79.8361 -66.8316 -68.1585 -42.4358 -49.9268 -37.7848 -53.5946 323.158 332.768 310.435 292.815 299.423 282.501 302.249 301.714 294.551 297.82 -77.0383 -65.0624 -65.1156 429.712 300.454 433.963 426.244 298.151 418.467 420.143 428.469 432.524 435.104 426.258 424.412 426.72 436.85 276.471 302.536 318.976 294.38 304.077 282.291 257.01 444.257 432.332 442.553 425.902 435.009 442.02 428.547 272.625 301.542 208.994 299.933 283.709 262.643 293.632 433.254 305.336 303.186 296.397 302.619 309.492 292.098 305.17 305.813 328.259 324.192 312.574 339.759 303.897 310.822 315.164 310.86 310.368 303.29 324.573 307.218 299.634 281.107 300.964 297.04 300.297 293.329 307.283 317.545 312.822 311.461 309.364 309.275 -64.6896 379.853 390.572 301.482 -108.966 -63.7494 -140.635 -170.351 -130.347 -106.941 -97.524 -39.0143 -9.67871 -22.6832 -3.1765 -62.3562 -11.0891 0.524213 -89.6376 -61.1096 -102.648 12.271 -82.3787 386.859 -57.0731 -86.7559 -103.762 -106.307 -3.24845 -2.10078 16.6614 -5.04435 1.82895 181.576 273.61 282.82 -79.7664 283.85 -29.4188 160.186 253.2 231.373 273.116 246.94 296.985 260.037 198.148 221.516 250.571 -155.572 324.192 88.1284 -251.058 193.049 293.569 303.016 175.606 300.8 239.126 64.9334 269.62 339.232 317.935 -259.339 260.693 53.4495 252.513 -26.4909 211.869 225.123 20.5306 45.9587 70.497 6.44243 -3.59467 13.9423 7.75631 0.476224 -70.4264 -73.9462 -137.302 16.6723 -76.7457 -71.3582 -84.7507 -13.1326 -63.7819 -43.1341 -56.9265 -85.3543 -125.24 156.174 298.444 185.22 177.424 264.962 147.434 -63.9333 -196.539 -98.4887 -76.6094 -127.557 -76.4224 -66.5112 21.7015 11.6955 39.0971 358.983 323.579 340.922 -1.20985 -24.0458 318.581 323.402 -14.8244 -15.11 -23.5532 -14.8982 -16.3317 -20.1705 -6.65098 -4.71988 344.766 -9.41837 -1.3582 312.061 312.114 300.49 321.24 305.775 -9.48424 -3.15648 -7.36272 -10.0081 -10.7769 -4.12189 -6.89121 2.24676 353.384 249.047 2.27259 2.48184 3.376 2.82601 4.88738 5.0093 2.35099 5.36492 3.60494 2.36428 3.72977 0.532364 1.83768 3.55605 1.73843 1.46794 0.88847 -2.60703 -0.0252288 0.953208 1.36496 -0.447453 4.32249 7.0967 4.47594 5.74141 4.1592 109.453 271.948 -233.792 123.213 247.817 299.057 -15.8929 320.327 -14.0244 337.816 382.808 -4.29771 376.46 -8.4594 269.095 282.339 290.39 296.42 291.331 261.955 302.384 289.151 346.132 387.817 259.253 359.733 -2.68894 -10.2787 -4.30376 -7.96512 -58.3656 -103.1 134.892 -18.4807 -119.871 -68.4944 -9.44269 -52.5377 -80.8255 -61.8278 -44.9283 3.09935 1.92916 -0.0034354 2.24844 2.16438 0.851363 2.43284 -0.703052 -2.06433 -1.2857 -85.5654 -170.143 -68.2743 -101.777 -127.351 -62.7005 0.646442 -0.0676506 -1.17755 -1.66454 0.235096 -1.1908 4.79994 -5.1359 419.566 429.493 427.53 415.111 430.693 421.961 364.642 460.358 475.022 429.697 431.261 434.999 427.034 427.419 446.538 395.955 426.036 350.838 372.005 411.828 417.315 461.245 461.034 383.145 392.412 386.714 419.67 421.766 430.985 427.336 425.812 415.759 430.618 406.044 412.634 432.742 428.711 431.651 421.648 432.919 430.909 420.247 416.409 418.161 386.48 408.052 348.761 456.855 409.445 314.426 420.703 407.373 400.518 407.87 395.27 318.608 341.659 423.153 412.618 427.686 361.603 418.866 436.346 413.565 491.005 445.423 447.178 409.461 454.242 479.027 329.507 417.219 430.998 349.318 332.969 426.553 338.97 285.403 418.347 405.985 387.601 286.75 398.598 385.223 358.667 424.806 474.059 441.755 433.29 367.454 433.271 410.601 468.048 446.827 485.882 457.835 415.234 469.67 425.816 456.052 494.427 437.464 409.472 460.745 494.537 470.171 343.204 410.749 384.673 433.403 472.072 347.741 414.467 425.583 430.825 430.655 431.382 430.637 419.591 447.617 459.238 457.85 405.802 360.762 401.24 419.407 345.916 428.422 452.423 434.349 464.492 383.914 432.475 416.626 383.289 341.751 467.895 352.472 367.425 410.406 465.637 428.01 431.414 421.65 434.816 420.718 428.95 332.984 397.562 406.754 432.158 319.907 472.071 413.529 287.325 391.508 443.156 336.775 305.513 341.275 313.056 443.902 301.326 358.184 476.026 411.344 317.114 411.687 437.479 505.441 443.02 457.386 466.789 513.096 459.496 420.582 335.678 436.644 362.796 355.982 392.099 406.25 391.182 472.552 497.912 446.47 402.605 473.073 502.074 338.695 432.74 429.186 418.505 471.187 414.694 353.793 308 305.384 304.665 299.359 304.453 265.331 285.008 273.753 296.218 259.951 329.523 352.668 323.527 321.536 343.71 342.474 326.006 317.828 319.478 318.826 327.024 320 316.537 311.309 303.129 296.386 311.859 294.554 330.614 285.042 283.546 322.936 274.969 314.218 334.012 278.292 275.602 306.153 308.373 297.767 300.292 289.399 300.578 263.283 448.133 439.706 438.952 427.313 443.79 452.174 437.149 225.255 304.649 287.363 320.95 279.763 265.496 291.493 434.961 442.196 321.139 302.912 442.715 414.6 297.363 424.874 295.187 464.766 449.95 407.762 442.492 446.624 430.394 209.679 305.914 346.261 313.246 297.078 302.798 250.107 270.447 300.219 303.777 272.275 292.093 276.884 258.289 226.941 251.702 277.747 274.485 206.766 265.343 245.74 290.385 291.062 315.471 288.656 306.333 327.141 328.077 148.42 355.445 322.438 183.131 371.63 280.74 305.833 293.9 279.054 275.037 289.807 275.751 213.734 304.715 279.091 259.974 277.399 202.603 244.871 291.675 330.456 335.489 298.246 334.422 397.202 382.424 417.133 393.762 377.469 422.714 418.536 403.436 284.06 407.716 395.933 345.1 414.4 377.651 368.582 358.993 384.599 393.162 346.553 365.429 426.267 403.098 409.595 437.274 422.198 373.507 432.305 374.378 359.145 296.383 345.339 367.994 318.12 363.758 423.494 429.781 410.049 410.183 416.685 373.015 429.478 405.48 319.519 416.367 424.85 310.968 306.173 326.222 310.856 320.651 310.75 317.786 352.584 302.755 313.724 312.213 316.01 321.328 317.261 315.616 311.296 313.424 352.181 335.689 311.925 310.78 322.849 321.613 315.458 317.536 311.438 310.736 300.451 301.474 318.645 288.551 303.208 200.773 425.951 451.969 340.386 423.172 170.133 350.571 417.08 429.039 465.464 421.005 435.72 308.093 381.666 354.181 345.189 330.467 368.64 320.634 446.175 443.996 424.717 430.698 434.603 306.537 322.26 344.526 358.35 288.855 329.565 360.827 295.028 319.634 310.233 316.527 306.569 305.302 282.409 313.22 288.846 321.46 274.349 317.108 294.096 294.225 289.775 226.063 335.412 302.622 290.437 298.29 309.913 354.88 339.256 324.26 314.454 303.929 326.31 350.417 314.143 308.532 289.175 320.869 319.351 304.68 314.849 295.769 302.067 208.554 -18.9224 229.239 81.4655 223.643 92.0649 215.202 -61.6698 385.776 366.347 -57.7968 1.14109 81.4958 69.5467 5.22191 2.4295 9.15553 -22.7308 2.48629 -48.4399 -5.62829 9.21333 226.528 1.78701 249.459 133.806 253.048 228.955 104.043 373.306 -55.1234 377.175 -59.1479 62.6712 8.61758 62.7341 7.41947 301.514 242.568 369.464 226.425 345.253 307.159 346.184 301.544 227.703 348.313 282.009 315.684 302.645 322.378 318.196 327.679 281.505 315.164 319.688 332.537 308.572 166.835 239.686 309.477 279.241 237.731 313.971 303.072 260.837 332.779 234.139 316.764 334.747 337.633 326.133 341.381 299.863 287.62 298.124 322.006 315.919 367.327 292.571 332.639 304.037 335.956 326.892 4.99342 -241.02 -31.0068 -20.7105 -9.39669 -25.0821 -20.6801 -1.50352 -81.9265 -18.8295 -24.5045 1.66388 198.367 325.829 235.634 322.823 217.627 31.037 -3.18633 11.7421 9.60314 26.8493 19.2966 8.82419 -3.94379 -238.72 18.6498 1.90979 -13.3144 396.651 245.34 292.43 335.747 214.747 -17.9651 -27.4267 -70.4089 6.79039 -20.3241 -26.7631 8.71611 302.112 262.142 211.258 -79.2136 309.143 242.592 180.81 333.556 369.988 326.017 357.639 331.742 294.096 312.548 299.469 287.233 304.481 311.203 272.014 294.118 276.305 310.193 295.621 298.933 306.061 274.434 289.206 -121.554 241.928 173.236 300.013 227.545 156.359 195.205 216.689 -55.66 72.3412 215.023 201.311 71.4326 -7.93636 -8.4672 6.21379 -18.8682 0.276927 21.7935 248.986 -0.0205637 348.537 292.227 138.8 5.7543 55.1794 273.288 346.899 381.257 308.014 144.476 -90.2799 167.089 53.9028 163.1 60.1654 10.6146 75.0505 10.427 328.467 249.342 385.643 322.206 233.569 385.006 322.133 280.027 281.046 323.73 301.699 317.734 314.856 327.403 322.076 314.415 320.767 315.025 310.827 331.954 349.633 333.678 350.601 399.792 397.742 333.573 354.016 333.766 308.214 394.17 236.66 388.24 349.36 -36.7047 -217.821 -34.977 -18.2809 -43.5679 31.5163 1.18942 14.4981 11.266 30.0707 15.1567 13.6129 -44.1334 -69.4076 -45.0821 4.08701 297.534 329.26 400.567 404.239 288.346 412.16 301.683 324.414 403.69 289.119 -36.3872 -227.223 -53.1525 -35.2186 -28.4527 2.08307 -32.7479 -30.6849 -25.3567 1.19134 426.406 430.937 439.05 416.455 434.595 421.389 454.951 442.908 462.481 438.719 444.302 440.206 450.518 460.116 393.964 425.335 432.521 433.752 412.538 392.675 419.391 469.132 332.093 413.662 390.27 386.681 393.46 467.407 422.613 428.953 429.786 414.389 432.411 420.72 416.239 440.045 439.069 439.875 477.736 437.986 468.207 434.676 396.351 326.455 416.443 408.086 407.927 402.318 372.784 378.845 432.335 464.964 432.75 425.047 431.955 427.036 381.423 409.312 432.717 428.313 401.618 431.202 400.957 480.55 358.169 424.008 428.576 408.504 437.624 420.703 457.136 467.995 414.421 331.646 466.413 416.113 413.956 418.247 425.484 423.55 434.093 467.464 387.944 451.83 404.601 431.474 397.309 361.963 453.437 471.588 327.431 431.213 438.297 429.371 423.338 433.369 475.417 424.847 419.861 468.234 495.023 442.825 408.378 469.989 508.038 484.507 349.095 407.169 399.348 394.986 481.144 399.148 437.265 413.61 433.173 432.127 473.384 434.933 426.815 415.402 433.029 430.328 427.519 422.262 418.076 425.709 379.728 440.533 474.497 436.371 458.426 346.908 434.132 352.859 342.437 425.323 422.221 334.055 388.96 415.381 376.136 430.515 432.292 431.253 429.912 422.309 429.492 351.634 458.891 429.632 426.137 319.725 403.095 419.763 351.15 416.138 367.101 327.953 323.464 430.306 393.175 423.068 403.523 427.775 420.989 429.18 412.283 417.884 381.791 476.307 433.227 429.782 430.186 427.01 418.729 410.852 423.19 408.337 413.976 474.187 358.644 417.237 435.017 465.121 487.589 441.029 416.502 469.178 505.909 420.619 430.433 425.952 430.862 426.231 428.197 419.753 288.4 293.926 307.078 295.464 296.861 288.586 304.002 295.903 279.754 279.497 301.591 260.142 302.846 182.997 330.682 336.58 274.69 274.149 160.481 320.968 381.57 326.023 363.876 352.024 333.543 325.612 271.223 283.262 274.976 282.765 274.995 274.268 310.968 318.166 323.96 311.587 322.602 314.818 241.964 225.872 291.928 339.147 332.953 289.863 365.294 312.837 310.534 355.91 302.9 351.62 371.85 338.349 397.115 190.378 450.119 191.435 338.12 401.011 406.01 271.774 410.739 420.725 411.444 384.133 437.738 436.083 366.897 415.946 371.807 306.042 298.592 347.498 299.122 374.319 354.84 346.997 225.403 449.141 412.716 214.13 402.211 347.105 402.193 382.818 275.29 432.846 427.91 397.4 287.584 303.116 289.359 280.076 282.285 306.038 304.939 300.816 285.304 222.394 284.211 244.934 285.332 279.885 276.354 293.733 265.576 283.651 294.612 287.235 298.54 294.989 242.902 272.414 285.924 296.117 285.948 285.044 286.914 299.753 326.502 286.74 295.444 293.417 278.436 292.87 280.249 282.407 289.359 284.522 270.386 306.117 298.369 304.836 309.594 296.452 428.524 416.293 393.087 437.545 404.508 445.258 442.251 447.705 447.788 441.273 424.913 383.299 381.247 416.034 394.795 452.333 467.858 460.452 461.98 454.522 307.756 311.866 296.226 312.481 297.216 310.624 315.304 310.742 317.055 311.683 310.161 306.498 316.285 322.404 313.97 313.514 309.659 407.782 433.792 428.592 440.309 431.926 411.605 432.424 336.808 387.151 438.71 205.33 389.529 199.24 338.459 394.136 410.434 384.54 385.647 417.338 393.038 325.113 213.524 408.908 447.829 391.577 331.698 193.703 402.822 384.314 439.824 397.638 396.737 434.274 342.744 311.49 291.002 306.995 352.269 299.185 304.807 300.455 302.553 301.737 295.353 297.797 296.321 292.735 300.085 295.509 291.371 294.041 305.875 286.589 293.677 310.473 293.621 283.941 295.777 292.023 291.144 314.325 313.38 354.922 311.459 355.555 -32.053 -136.035 -31.7843 -92.0101 18.0392 -58.4254 -7.39595 135.917 -229.862 54.2929 -183.107 14.4342 132.494 11.8038 -3.04807 27.0017 8.34589 15.7662 22.4388 -3.79196 11.4088 0.017425 38.5593 -41.9501 -104.746 26.7644 20.2818 6.88532 -47.0382 99.9629 170.72 -96.7838 125.682 31.5026 -1.52904 -22.1665 10.1456 -15.4194 5.04149 -32.788 -6.21731 274.39 339.808 344.654 282.95 323.713 213.795 308.764 252.501 265.28 316.924 322.806 349.464 201.558 282.507 255.724 311.351 276.373 265.19 -405.838 139.59 312.499 303.399 238.793 230.29 257.365 157.549 204.803 303.422 187.997 -4.69127 269.702 165.993 60.6942 257.779 284.663 285.942 277.585 274.007 330.187 238.082 219.828 12.1651 193.611 195.256 -147.721 239.137 166.421 324.451 222.707 185.675 173.303 3.98971 23.7923 3.21011 23.8284 8.02667 -8.78219 -66.0629 -95.9762 -90.6854 -18.7803 -90.9517 -56.0076 15.0491 -74.6664 -43.438 31.1885 -50.3914 120.169 290.972 60.7603 111.841 98.2602 0.316902 5.55076 8.15069 14.9933 9.74789 248.886 335.66 379.704 239.528 339.486 178.805 292.128 250.382 -100.725 173.766 300.179 -58.4729 305.525 313.635 324.332 326.955 299.976 317.48 324.775 180.025 -181.966 291.489 241.897 68.7301 313.285 -99.4371 250.087 384.689 370.948 242.953 341.505 -35.4212 -170.145 -39.4174 -47.3744 -192.369 -44.3144 54.0208 1.68971 53.7508 77.1853 188.389 234.118 3.82172 191.023 -3.42589 63.9851 -19.6034 -3.12835 -64.0226 11.1485 -4.83474 67.9191 -52.3041 190.214 228.036 191.625 52.6321 -33.4032 -59.9494 -92.0241 -140.09 -47.7661 -171.805 -42.403 -44.007 -36.5933 -40.4627 -19.0887 -3.32014 -43.792 -48.8889 -20.2767 318.381 323.676 320.247 332.578 314.056 328.386 327.894 301.785 270.63 78.125 320.587 278.903 213.122 313.033 290.721 179.551 176.128 -36.8236 256.247 260.509 191.242 340.266 397.871 367.133 356.622 357.004 352.423 353.851 278.855 391.297 235.933 -32.3461 325.997 9.57571 6.48669 23.0963 13.369 8.46304 22.6129 -21.5401 18.7623 184.424 81.4788 299.903 239.747 103.169 194.112 175.193 -9.40461 11.8601 155.112 219.223 60.8194 337.394 -31.5059 333.12 -5.75729 -4.45655 13.2467 5.37039 -14.2016 6.31275 423.617 429.206 434.397 424.044 428.744 423.08 481.393 428.124 428.517 428.949 431.34 428.802 431.713 438.073 376.837 411.72 472.952 358.276 411.596 430.875 412.976 412.824 406.166 412.267 368.896 400.945 452.09 470.009 419.786 433.03 428.346 435.392 427.037 417.988 444.621 417.5 432.238 432.082 467.788 429.924 432.287 437.259 411.248 348.752 407.255 378.552 452.154 379.124 442.323 379.613 432.01 461.692 433.767 428.934 432.572 437.257 384.868 403.497 421.435 425.191 437.326 473.731 352.416 472.274 452.554 426.471 427.375 420.083 433.392 420.549 460.9 461.485 352.646 412.653 424.008 390.095 418.805 416.287 430.029 421.619 433.317 470.94 406.675 453.081 419.052 389.529 408.348 397.982 459.077 474.07 360.902 431.317 430.22 429.268 473.339 429.42 423.42 428.517 368.387 449.248 489 435.703 411.316 428.241 477.046 436.434 404.942 420.456 413.763 364.367 482.495 423.363 435.039 424.303 432.721 436.89 427.572 436.007 463.703 417.264 407.751 386.44 420.362 423.067 333.834 462.807 430.909 432.26 466.505 431.77 428.412 397.702 433.984 414.984 390.736 313.912 481.687 358.426 414.035 415.315 379.982 457.298 433.019 360.31 430.241 442.932 425.965 456.616 422.397 433.79 430.125 430.423 427.397 435.476 475.81 377.556 361.417 441.565 436.521 409.182 439.209 328.91 411.722 469.688 410.242 410.148 416.91 407.592 426.873 430.946 431.06 430.833 430.01 429.445 431.314 403.501 343.725 402.94 409.6 479.324 355.458 385.436 427.624 431.372 434.894 427.58 348.792 433.674 362.379 419.67 435.397 420.046 429.167 481.284 428.006 426.376 323.254 291.603 321.024 290.937 250.351 282.749 269.893 287.363 252.143 314.54 298.682 285.893 282.505 272.551 319.295 304.077 255.451 243.592 242.763 219.52 174.257 202.411 292.238 269.147 327.876 282.894 282.309 264.783 283.124 268.775 267.852 279.869 250.216 270.626 314.813 295.76 281.636 276.719 252.859 301.335 287.492 419.829 395.719 398.198 429.957 443.088 418.228 424.7 436.17 426.024 429.996 438.097 222.615 258.2 262.01 282.703 223.143 205.552 253.005 441.11 427.215 439.236 415.672 445.803 402.77 260.334 404.429 265.527 275.223 269.315 246.786 245.399 267.623 274.987 285.5 290.703 290.295 273.786 290.292 277.481 264.545 208.191 242.556 271.029 183.517 285.507 277.376 253.58 263.329 275.583 250.02 265.015 257.622 264.278 281.176 260.196 263.646 244.862 271.279 277.802 438.534 441.36 437.304 447.851 442.348 414.79 294.043 303.401 293.495 423.005 352.772 237.561 412.614 295.152 237.874 281.683 292.479 229.602 269.534 328.239 405.935 376.678 162.206 420.848 314.313 245.751 339.22 301.111 284.303 262.351 301.288 298.459 291.713 304.446 344.533 287.332 303.862 292.149 306.698 302.218 297.521 294.994 296.957 301.57 187.991 308.61 307.777 300.528 305.428 256.078 289.101 286.937 296.843 293.978 289.345 272.042 330.411 293.881 301.976 291.142 306.945 289.015 404.976 388.269 375.773 424.575 386.604 396.615 438.642 432.778 436.636 429.977 434.551 437.783 436.504 411.898 402.42 396.231 374.563 407.234 389.721 404.35 426.116 433.317 276.372 291.496 432.092 404.657 367.401 352.495 385.634 375.87 393.04 398.474 293.161 290.462 287.911 286.826 294.558 292.308 317.766 295.232 298.947 291.217 298.933 300.756 297.057 -25.7376 308.763 308.605 303.617 -56.6988 -56.2471 285.26 284.616 282.502 281.859 279.509 285.414 285.626 355.432 210.115 363.891 252.07 305.769 180.763 -11.2825 270.443 342.8 -9.39866 5.19922 0.663636 -0.818034 0.627555 -0.989497 219.489 117.586 208.384 44.5083 269.478 193.742 141.048 -41.9652 -90.8364 -38.556 -59.5718 -5.46809 3.57547 1.6763 -17.1244 5.21394 210.665 -43.3403 239.213 -157.901 172.276 -392.499 140.301 278.263 274.295 312.63 263.351 261.784 260.384 280.966 298.956 303.656 366.612 385.549 322.542 286.075 375.192 268.917 -297.253 185.384 74.3218 290.901 277.395 -241.503 380.557 284.4 338.33 224.694 -53.4212 -13.3857 -54.8139 -51.0032 -19.6773 -50.3225 -82.1683 -64.1613 -104.614 -63.7371 -75.4016 -6.60048 -104.011 -104.501 -114.891 -37.3777 -11.9587 -85.3325 -56.8663 -80.9305 -132.05 -83.7054 -8.27936 -124.2 -93.0631 -159.644 -83.3453 -113.453 -96.4785 -75.1387 -58.5205 17.779 1.98468 -82.4055 328.952 377.109 316.849 358.221 325.94 384.421 329.23 265.949 242.221 -208.082 168.853 314.542 312.226 307.899 308.443 315.892 295.31 372.34 229.99 -289.727 314.191 246.248 313.643 352.603 1.39891 360.348 326.71 -65.4042 367.706 -63.7615 -84.0342 -85.9933 -51.4752 -6.24921 -72.0011 -71.0612 -32.062 -69.4901 -83.8221 -39.3547 -90.0298 4.80617 3.11799 3.81766 3.49384 5.18193 4.69674 -72.9926 -101.015 -131.902 -83.2337 -86.4945 -93.6041 -58.2027 -9.21173 -38.2382 -19.9668 276.192 294.438 80.6517 323.94 209.598 308.491 228.617 280.457 302.471 283.66 294.382 290.799 268.63 -10.6355 307.048 -3.92502 302.146 309.685 -5.00247 -0.5363 -1.61943 0.796542 -0.436012 1.29408 -1.04715 -1.64081 285.516 285.833 282.829 300.674 295.899 266.735 303.212 233.431 -143.584 246.778 181.414 0.506092 1.15249 2.27542 -0.875038 93.859 316.379 180.391 121.595 7.17461 4.46716 -20.5576 5.81898 4.84064 4.37328 2.38889 3.61541 3.11121 4.30497 3.36515 3.18007 4.88334 3.15814 4.63067 3.07907 4.97378 4.80658 4.54768 5.48194 -48.4362 5.07944 1.84857 5.52805 4.69785 4.0807 3.93172 4.42728 5.157 4.40264 87.443 4.92802 436.994 437.52 436.925 437.511 437.369 436.818 437.005 436.768 434.748 435.313 437.049 434.383 436.964 437.35 437.075 437.244 437.464 437.282 437.131 437.284 436.289 436.689 436.585 436.991 436.362 436.622 436.549 435.569 435.347 435.661 435.244 435.725 436.279 436.61 436.916 436.658 436.287 436.494 437.365 436.559 436.858 437.285 436.834 437.355 437.288 437.52 433.951 436.526 436.012 436.542 -122.653 435.946 437.8 -121.342 -104.775 -117.722 437.766 436.251 435.017 436.013 436.597 436.643 437.351 437.071 437.005 436.932 437.343 -103.039 437.377 -114.373 436.039 435.638 436.122 436.505 435.757 435.945 436.467 434.957 435.224 -114.688 -110.117 -106.689 -99.2634 -100.88 435.294 434.962 434.702 434.894 435.105 435.295 436.322 435.769 436.76 -106.722 -98.4469 -100.913 170.213 453.808 425.842 306.566 411.191 444.38 397.747 309.658 397.165 423.971 423.843 410.228 406.457 408.749 410.831 476.164 239.472 504.737 425.693 400.879 386.94 458.457 397.383 364.4 363.064 394.403 402.52 404.947 477.997 437.936 428.397 393.237 449.622 538.557 578.143 395.15 433.079 426.283 416.744 424.128 408.89 444.818 425.075 419.993 409.732 406.233 347.309 361.451 471.56 431.564 430.336 430.538 431.411 430.043 431.63 416.776 430.173 413.797 425.657 488.392 423.433 424.236 371.458 389.433 384.41 428.248 566.639 137.71 387.12 412.064 -193.187 378.37 432.172 457.686 419.643 459.618 428.481 422.112 391.406 430.164 300.789 407.471 426.856 415.888 394.223 388.479 414.97 421.357 429.004 432.578 428.931 425.231 423.958 432.32 432.574 431.155 432.235 431.094 433.548 434.11 -136.738 434.403 432.484 -151.965 -143.297 430.623 422.405 427.788 415.642 429.29 413.707 428.218 424.243 413.4 429.576 419.726 395.696 426.662 330.464 418.525 429.424 429.69 429.254 429.723 -161.131 -161.288 -158.353 -161.722 -166.287 425.12 426.125 481.318 428.251 426.115 413.864 427.882 406.605 415.935 408.413 407.56 412.422 -159.375 -159.091 -165.94 430.932 430.057 431.778 431.217 433.978 -125.134 -133.644 -133.29 -142.632 -140.378 432.824 433.819 433.724 433.303 433.055 -164.134 -171.507 -163.295 -137.112 -145.924 -140.202 -142.422 -141.09 -140.21 -139.462 416.498 427.976 -247.849 -203.735 -205.949 -154.982 -159.564 -164.731 -158.577 -161.962 -153.606 -159.245 -151.238 -161.026 409.42 -203.665 -186.13 -194.228 -157.264 -153.057 -157.693 -151.141 -160.66 -150.45 -157.857 294.579 350.75 294.659 289.175 305.341 345.277 285.979 289.033 284.077 156.727 308.224 294.486 297.686 293.259 293.158 288.676 287.426 279.902 291.211 323.376 288.168 280.005 333.178 262.088 306.876 292.413 296.918 304.539 298.16 300.924 295.357 421.268 418.842 425.376 432.1 432.079 417.067 423.862 415.44 298.308 315.953 280.544 306.93 -154.19 410.634 301.183 298.548 422.314 267.522 313.564 430.087 426.895 418.529 420.708 431.616 425.5 427.455 -95.3767 -101.136 -132.805 -129.758 -121.277 314.315 310.392 304.518 295.71 -55.4166 307.072 318.967 299.585 306.355 278.84 302.688 312.464 305.873 300.372 280.547 303.838 305.557 -33.6615 302.444 -46.1258 -74.2007 -72.7371 -62.2251 -61.2599 -62.261 355.248 385.117 -91.5305 332.749 -113.286 432.09 370.101 244.04 403.237 -110.953 -99.2395 -115.781 -93.2975 -129.37 -149.05 -152.439 -137.686 -136.932 -137.377 241.19 325.898 208.62 283.551 265.512 240.001 309.699 394.904 397.546 345.074 403.237 -110.632 -98.8168 -102.45 -120.638 -117.181 -97.001 -118.317 -59.1988 353.698 -72.0649 -59.719 243.478 275.333 -59.3851 -58.6462 -73.5258 -56.2628 -68.9168 -60.3336 306.932 275.875 280.032 286.29 289.601 -44.1277 -35.3197 -49.397 -30.6036 -62.7774 -74.9756 -73.9496 -61.1158 -74.4337 -62.7136 -60.6751 -115.678 -97.4978 -99.5522 -111.917 -116.121 -102.531 -133.273 -183.39 -138.066 -158.129 -126.237 -133.488 -160.318 -122.891 -124.987 -97.8061 -120.859 -132.971 -63.5841 -58.064 -76.6679 -77.3899 -61.0582 -63.1935 -77.9348 6.36335 282.661 6.82802 277.828 229.465 220.134 360.968 314.527 190.405 22.4485 71.7675 -7.93066 6.76636 -18.5837 182.945 82.3968 86.5374 -30.7923 216.32 94.4136 91.61 353.973 4.9712 3.95744 4.88812 5.33484 7.8102 4.78554 3.45578 4.04523 6.29689 2.3341 311.54 283.096 292.93 291.772 303.838 302.605 8.05073 7.96587 7.68994 6.26315 8.84606 201.51 196.3 283.531 -1.83241 0.550927 297.054 -14.7163 -3.49934 6.93922 7.79313 5.54477 6.07791 6.40652 8.36278 5.1383 5.12861 5.60102 -56.3824 6.38883 5.23242 7.51122 7.80815 7.91547 6.51657 7.71763 8.97188 7.15571 -106.71 9.07578 0.329474 3.84911 2.0004 2.04447 3.20465 2.23081 -1.16497 -4.5897 306.208 -14.0991 0.207723 3.67808 293.278 2.21928 0.253914 1.67194 -7.7106 -6.00863 -17.9203 -4.0131 -16.8378 -10.1389 4.12409 3.77656 5.6407 3.64552 5.07616 5.80843 2.78872 5.46064 6.80726 4.80496 5.38294 6.84537 4.83415 -153.913 -155.062 -151.928 -153.715 -153.425 435.226 -159.642 436.018 -157.337 435.102 -149.972 435.675 -148.548 436.361 436.05 436.958 436.348 -152.804 435.984 436.135 436.36 436.064 -151.657 -153.515 -152.29 -157.735 -151.979 -155.447 -154.913 -150.722 -127.889 -123.133 -128.891 -125.127 -132.205 -124.996 -134.904 -141.298 -139.912 -138.405 -135.007 -139.597 -154.82 -160.375 -158.368 -159.161 -155.524 -154.769 -158.724 -148.809 -145.41 -151.181 -145.616 -148.454 -149.268 -144.326 -160.872 -153.824 -151.897 -153.965 -157.197 -161.2 -164.875 -157.634 -156.886 -159.99 -166.448 -157.389 -165.739 -158.749 -157.172 -162.669 -166.732 -161.545 -140.922 -136.461 -139.561 -144.441 -136.648 -143.177 -140.38 -144.492 -151.042 -148.906 -143.524 -150.685 -144.93 -148.684 -153.599 -145.064 -152.373 -145.596 -146.895 -155.742 462.035 430.706 428.368 453.158 429.868 -191.432 -184.438 -191.177 -187.109 -185.5 -190.684 -190.274 -181.589 -181.179 -179.748 -185.919 -181.895 -187.817 -184.724 -189.898 -185 -188.443 -182.536 -174.638 -177.24 -178.625 -178.647 -152.305 -140.323 -153.085 -147.505 -154.989 -148.324 -144.644 -155.953 -164.783 -166.313 -153.933 -153.683 -165.864 -160.013 -167.527 -157.618 -161.608 -161.551 -155.56 -164.992 -59.2021 -67.2095 -69.0599 -72.5932 -56.3785 -58.79 -0.316128 -1.94712 -1.46172 -0.210368 -1.70755 -3.18006 0.571849 -3.17115 -1.36475 -0.37143 -5.24667 -0.0913786 0.6796 1.66333 2.0963 -0.00707999 1.69657 1.13004 -3.43536 -4.81088 -2.93508 -0.543135 -1.01039 -2.01096 -1.34796 -0.472966 -1.67603 -3.16507 -3.81657 -2.46521 -3.26766 -2.75904 -4.45337 -3.05209 -3.73342 -11.9958 -11.8426 -9.95671 -10.8604 -11.1159 -12.671 -12.1904 -11.5867 -10.6221 -7.28873 -10.7014 -11.7049 -9.10558 -14.6851 -14.993 -12.4927 -15.2718 -13.1983 -12.0636 -16.4326 -10.0885 -8.43667 -7.17476 -9.44146 -7.79023 -15.2744 -13.7811 -13.9088 -12.5199 -14.8843 -13.9246 -14.2497 -19.2435 -20.2481 -20.8871 -19.0724 -22.7449 -18.6126 -18.5888 -18.7335 -16.685 -18.6252 -18.0653 -20.6752 -17.9623 -17.2954 -16.4608 -14.8474 -16.4631 -16.0544 -15.799 -15.5016 -16.9962 -9.34491 -9.45425 -9.01925 -7.91552 -6.93025 -7.56072 -12.6124 -9.93889 -11.7447 -13.62 -14.0131 -13.0598 -16.1848 -14.9177 -14.7684 -14.7741 -15.5703 -15.8183 -15.2483 -18.1106 -19.1842 -19.4099 -18.9278 -18.373 -19.0162 -18.2388 -17.7709 -16.6251 -19.2223 -24.0014 -17.5813 -18.8434 -17.783 -16.7119 -15.3459 -16.3106 -15.8695 -16.1508 -16.7941 -15.8175 -11.6427 -13.4583 -11.1979 -13.0807 -11.5435 -13.9141 -11.4093 -8.86112 -5.93625 -9.87265 -7.27131 -9.24912 -9.74586 -6.57172 -11.3519 -14.2249 -10.7103 -14.4452 -12.2109 -18.5147 -12.0171 -11.7965 -14.8276 -9.30862 -9.46569 -7.70116 -7.41867 -9.74483 -9.30884 -6.90603 -13.7582 -13.2158 -13.4067 -14.3222 -13.7818 -13.9367 -11.0223 -11.934 -11.161 -9.52948 -8.56551 -9.57825 -2.82422 -3.2812 -3.79672 -3.43753 -3.42471 -2.96435 -3.15162 -1.22351 1.3721 -2.98388 -4.51815 -5.59571 -4.97374 -4.00916 -4.35761 -3.4967 -3.19272 -3.40057 -3.70133 -3.48581 -3.45967 -3.13361 -3.47981 -1.86783 -2.09825 -3.16055 -3.51883 -3.2876 -3.22374 -3.42275 -3.33562 -3.10257 -4.07546 -4.62354 -4.2697 -4.98238 -6.56156 -5.39381 -4.22234 -4.48384 -4.4864 -3.91936 -3.95251 -4.03755 -2.21444 -2.05675 -2.28786 -1.94295 -2.36039 -1.96039 -2.19738 -1.72573 -1.94883 -2.56878 -2.69535 -2.93036 -2.8102 -2.70178 -2.75344 -2.60182 -1.16682 -1.55124 -1.46353 -1.23501 -1.21964 -1.47717 -1.18702 -1.32995 -1.00139 -0.737508 -0.774128 -0.376428 -0.307451 -0.785982 -0.724611 -0.308062 -2.52553 -2.24485 -2.54126 -2.95575 -3.19098 -3.03006 -1.72648 -1.27145 -1.40805 -0.69727 -0.181138 -0.654057 -9.16456 -7.98336 -8.80898 -7.60689 -8.59968 -10.8773 -9.46794 -10.8079 -12.3166 -12.081 -12.0853 -11.1162 -11.4483 -11.0361 -6.7169 -6.73952 -6.60685 -7.4428 -6.61942 -6.84768 -6.67843 -5.95793 -6.33959 -6.04023 -4.66213 -5.888 -6.44743 -6.15091 -2.99929 -2.58871 -2.85926 -5.12494 -1.22819 -1.65896 -1.22936 -12.3134 -14.0931 -11.9098 -9.53088 -9.09203 -10.2303 -9.91749 -8.28359 -8.2516 -8.47673 -8.02021 -8.80122 -8.09297 -8.18045 -8.62513 -8.32642 -8.67938 -8.14028 -8.44657 -8.37143 -8.24853 -7.566 -8.14487 -9.87548 -10.465 -10.5099 -10.3578 -8.68438 -10.0002 -11.189 -10.951 -11.1961 -10.9164 -11.1301 -11.0787 -11.2106 -11.0339 -10.7246 -10.7789 -10.881 -11.3272 -10.7163 -9.59876 -9.01522 -9.75392 -9.01312 -9.63909 -8.99815 -9.28035 -9.74122 -9.90587 -9.06736 -9.62704 -10.408 -10.7687 -10.4078 -10.7123 -10.0034 -10.3474 -10.2228 -10.0752 -10.7203 -10.2234 -9.94204 -6.99946 -8.2499 -7.20984 -8.24363 -7.3207 -8.08345 -8.52819 -7.44064 -6.91156 -8.2497 -7.94381 -6.68973 -6.9256 -6.87489 -6.95534 -6.97022 -7.24434 -7.0178 -7.18533 -6.68322 -7.07084 -7.52576 -5.71033 -5.31639 -5.74328 -5.39934 -5.85911 -5.40828 -5.46695 -5.91539 -5.98058 -5.42747 -5.87348 -6.37141 -6.56806 -6.28598 -6.56808 -6.42396 -6.84224 -6.72111 -6.39121 -6.76688 -6.47092 -6.38999 -4.14653 -4.48454 -4.09238 -4.41493 -4.13307 -4.59646 -4.6504 -4.09798 -4.12012 -4.61555 -4.12289 -3.18491 -2.76361 -3.24825 -2.84314 -3.43153 -2.91186 -2.86316 -3.47756 -3.41938 -2.90354 -3.50866 -0.801846 -0.123614 -0.797631 -0.194621 -0.871533 -0.167184 -0.833976 -0.325546 -0.893909 -0.853725 -0.213436 -1.38273 -1.88847 -1.3309 -1.81559 -1.42582 -2.06488 -1.96081 -1.42651 -2.00772 -1.49089 -1.41574 -48.5989 -85.8266 -81.0521 -34.707 -85.9119 -56.2504 -63.7289 -87.201 -88.9331 -86.4006 -60.3681 -108.985 -111.529 -109.967 -113.319 -97.2935 -94.2556 -94.9712 -92.3118 -38.4648 -47.3183 35.9037 -22.8679 -35.9857 -90.1474 -40.0183 -15.7337 -9.36654 65.8821 -57.5933 -45.8184 -58.5562 -62.9492 -61.3105 -41.5092 -86.0653 -92.8944 -65.6565 -84.1714 -128.611 -124.282 -123.57 -127.066 -136.759 -141.197 -141.644 -140.927 -166.685 -179.341 -166.839 -178.959 -166.34 -165.252 -153.727 -146.195 -145.962 -155.118 -155.046 -91.9952 -116.068 -133.085 -123.461 -172.188 -175.255 -198.825 -92.749 -116.123 -127.329 -195.941 -132.58 -157.905 -123.853 -295.726 -162.573 -133.282 -151.74 -157.869 -111.732 -111.329 -91.2006 -76.4837 -77.2372 -78.0329 -75.6689 -83.3403 -95.8516 -95.696 -90.0151 -100.705 -99.6667 -91.9343 -90.4911 -88.9959 -87.4824 -89.4797 -88.8345 -87.3537 -88.8667 -88.3707 -83.8221 -84.5466 -86.8797 -85.8783 -86.8874 -85.9256 -92.517 -94.899 -88.2686 -91.4383 -91.6029 -90.4924 -94.8506 -153.914 -172.617 -115.745 -159.854 -160.65 -159.899 -164.461 -164.816 -176.105 -185.381 -166.68 -173.879 -153.991 -145.594 -144.716 -159.683 -128.217 -136.771 -137.882 -139.708 -133.322 -128.686 -135.154 -110.077 -130.354 -118.443 -134.275 -113.833 -123.201 -129.697 -107.04 -104.408 -97.5505 -109.277 -101.631 -112.805 -104.489 -101.648 438.307 -93.8468 -94.5368 438.187 -100.18 437.977 438.032 -122.884 438.049 439.12 438.281 438.224 438.229 -118.558 -120.297 -129.985 -123.736 -124.467 -123.114 -115.498 -97.0998 -103.613 -99.4517 438.191 434.098 437.024 437.091 436.288 438.592 436.657 437.591 433.829 434.181 436.55 439.054 439.808 438.035 438.449 439.345 437.925 439.585 438.309 -92.9623 -95.8501 436.991 -95.9577 438.913 -107.18 438.73 438.005 439.961 -115.84 -112.678 -121.688 438.561 437.535 438.19 437.855 437.958 438.644 437.955 438.12 -146.299 -141.037 -134.695 438.722 439.063 439.543 438.586 438.315 438.357 439.155 439.453 -126.835 -135.051 -141.689 -126.841 -133.254 -115.832 438.866 439.767 -126.239 439.02 -101.834 -106.21 -95.8037 -104.415 -100.076 -98.7598 -107.432 -102.663 -106.305 -106.525 -108.85 -103.143 -105.306 -106.688 -134.787 -147.532 -142.796 -136.236 -131.921 -144.077 -137.473 -124.466 -113.469 -126.796 -117.679 -122.32 -114.868 -128.257 -160.481 -155.951 -156.28 -155.356 -159.838 -158.363 -156.837 -164.806 -160.307 -164.198 -161.18 -163.886 -170.304 -163.957 -172.477 -163.008 -172.589 -169.835 -167.722 -168.316 -176.682 -163.677 -172.538 -172.737 436.349 436.944 436.482 436.072 437.545 436.239 435.433 434.154 435.246 436.131 435.469 434.78 -158.378 -171.361 -166.724 435.961 433.781 435.028 -162.184 -158.367 -145.748 -154.045 -155.375 -151.558 -163.182 -177.517 -178.797 -174.984 -174.184 427.879 -160.553 408.104 -168.303 -160.7 458.133 430.769 434.04 427.908 448.288 -164.957 -157.196 -155.76 -165.592 -164.179 -155.92 -166.469 436.62 433.823 431.402 -171.17 -171.641 -175.471 -172.641 -174.799 -171.501 -170.834 -71.4362 -83.8173 -82.4342 -71.9754 -83.1796 -71.1928 -72.0144 -130.94 424.685 -145.133 -133.418 -144.431 -110.093 355.171 -92.3783 -108.52 -92.5803 -131.103 -138.717 -141.72 -128.637 -127.433 -142.737 -130.079 -112.131 -101.711 -113.835 -117.755 -97.5087 -114.12 -104.463 -98.6972 -114.194 -111.265 -100.666 -116.399 -54.9292 -39.0767 -53.6075 -46.2761 -49.7528 -55.5584 -43.7494 -63.115 -73.5517 -75.2317 -60.1154 -64.1666 -82.5266 -64.8728 -75.5459 -59.8928 -66.2805 -79.5365 -16.644 -24.5847 -18.0385 -27.9467 -17.4561 -17.9602 -26.7307 -10.05 -9.42572 -7.13232 -8.24557 -9.9466 -10.0939 -7.88089 424.939 428.944 412.372 426.395 424.565 428.805 413.625 426.295 422.132 430.957 430.353 430.542 426.274 421.249 423.735 425.234 430.503 431.667 424.66 424.898 430.646 -149.909 146.085 372.399 86.0241 54.5408 -161.985 -102.142 -117.179 -105.448 -122.022 -100.443 -136.139 -111.52 -129.805 -139.101 -130.091 437.046 412.633 415.651 -136.174 -129.901 423.746 433.026 -143.695 420.655 -109.84 -145.621 254.774 392.143 104.34 389.837 93.1799 438.882 439.051 439.26 439.299 438.908 439.067 438.375 437.561 437.89 438.248 438.613 438.486 438.756 438.515 438.581 438.817 438.031 438.158 438.482 438.76 439.233 439.609 440.027 438.583 439.345 439.721 437.809 438.478 434.5 436.131 437.399 434.594 438.526 439.11 439.054 439.341 439.704 438.994 439.216 439.454 438.975 438.689 439.141 439.18 439.243 438.697 438.951 438.74 439.075 438.086 438.867 438.537 439.119 438.266 439.217 439.756 439.219 439.432 439.321 439.496 439.188 -116.167 -117.916 -120.113 -116.802 -118.741 -115.407 -111.171 -108.337 -112.452 -110.889 -115.108 -112.826 -114.967 -109.508 -111.959 -112.501 -109.252 -114.821 -118.832 -119.906 -117.355 -119.554 -135.191 -128.121 -142.383 -130.128 -136.808 -125.176 -139.023 -141.525 -149.96 -140.001 -153.028 -139.106 -144.518 -151.3 -132.3 -123.851 -130.112 -119.397 -129.696 -133.313 -122.015 -144.276 -151.364 -154.882 -155.438 -148.061 -147.502 -153.146 -124.956 -126.453 -122.698 -129.858 -127.154 -126.695 437 -126.036 -128.558 -117.148 -117.448 -110.631 -112.667 -116.847 -109.545 -120.519 -130.469 -138.6 -135.891 -138.473 -134.381 -131.06 -134.674 -122.188 -124.115 -123.754 -119.933 -128.694 -133.985 -134.067 -126.062 -149.715 -136.681 -145.237 -140.839 -164.822 -169.805 -167.627 -168.06 -156.613 -157.978 -144.67 -148.155 -143.587 -156.956 -158.575 -160.982 -156.571 -164.937 -158.591 -154.79 -165.329 -153.788 -144.989 -144.277 -153.745 433.953 -171.012 -167.743 433.155 -168.539 430.754 431.779 431.178 433.004 432.453 422.48 429.811 414.015 421.149 414.846 418.061 424.605 418.333 410.001 -152.114 -162.223 -151.808 -160.049 435.246 433.645 430.58 425.395 433.299 428.473 430.157 -171.182 -168.657 -166.789 -161.983 -151.177 -161.834 435.785 433.566 435.434 432.818 438.347 438.396 438.669 438.271 438.15 438.364 437.074 437.518 438.263 436.948 437.589 438.207 436.788 438.029 434.899 420.231 433.408 -165.88 432.607 428.833 423.543 303.502 439.052 415.199 422.64 432.981 396.821 419.008 488.674 450.079 427.413 445.74 443.704 460.61 422.413 437.891 -146.724 -154.959 445.64 429.214 377.321 433.054 428.864 415.388 344.844 430.815 421.934 424.589 -162.027 -148.871 432.692 -160.375 425.237 434.173 426.962 430.448 428.901 -173.252 -173.949 -169.013 -170.045 -171.417 -176.601 -168.927 -168.089 -167.032 -162.184 -162.446 -166.958 -161.872 -166.411 -162.026 -166.378 -162.411 -166.51 -162.785 -166.462 -161.153 -159.32 -170.313 -164.188 -160.203 -166.538 -160.475 -161.25 -164.988 -166.356 -165.435 -163.176 -165.059 -165.115 -165.401 -153.526 -156.994 -152.894 -145.958 -157.081 -152.426 -147.949 -164.113 -165.623 -163.659 -169.349 -163.769 -171.705 -162.638 -160.21 -152.13 -149.38 -155.408 -160.218 -158.367 -154.691 -163.86 -160.812 -149.717 -162.354 -159.31 -168.368 -160.13 -157.611 -159.532 -152.147 -148.227 -161.145 -154.202 -153.245 -57.5687 -64.9488 -70.9433 -55.9231 -67.718 -54.6398 -57.6416 -54.351 -69.8983 -56.7529 -39.7491 332.119 -27.9925 -31.0453 316.594 339.852 326.63 322.028 -45.8279 -44.6092 -35.3366 -38.366 -37.4394 -42.7241 -46.2838 -82.6006 -108.827 -94.8177 -76.7203 -106.805 278.863 405.476 425.889 259.196 398.436 358.522 371.515 340.82 373.437 385.719 327.135 357.27 -132.824 -117.699 -117.103 333.056 326.033 313.556 313.75 340.976 305.104 340.494 -121.742 -134.616 -121.076 -93.3866 -103.2 -103.444 -47.9458 -61.5966 -54.7829 -70.8862 -51.5144 -60.1899 -53.5094 308.85 324.741 253.052 316.334 331.685 370.144 351.138 -32.3474 -24.1074 -26.5705 -33.6243 -35.5891 -25.4998 -29.7502 337.791 312.601 306.945 350.314 -35.1642 -41.3029 -30.9919 -29.5818 -38.3873 -38.4503 -28.4058 -43.9919 -73.0896 -60.0452 -50.3443 -60.1688 -51.434 -41.016 -137.013 -143.928 -136.511 -124.81 -147.361 -124.075 -136.777 0.66881 2.42609 2.81148 2.37159 2.25516 1.69358 1.60783 -0.369331 -2.89633 -0.717333 0.89565 -3.58521 0.755082 -0.0325979 -12.5315 324.381 -18.8762 -13.5385 328.641 -16.1579 -6.51125 -4.03966 -4.88191 -4.82341 -14.2739 -15.5383 -19.1455 -12.3739 -11.1225 -17.3564 -14.2521 -7.63887 -7.17057 -9.09455 -5.59342 -14.8106 -17.7052 -20.9253 -20.949 -15.8302 -18.278 -15.3793 3.02607 3.37219 2.57622 2.29142 3.76661 1.94934 2.80457 3.29429 5.36219 0.560182 4.368 -0.346902 4.30459 2.61138 -1.82851 1.86102 3.53614 0.845048 -0.951775 439.152 439.125 439.659 439.3 439.299 439.05 439.484 438.818 438.566 439.045 438.642 438.494 438.866 439.005 439.197 439.606 439.33 439.354 439.377 439.177 439.362 438.739 438.911 438.244 438.663 438.375 438.657 439.072 438.538 439.14 439.348 439.83 438.646 438.912 439.319 437.311 434.816 436.071 437.877 434.679 437.146 438.203 437.624 438.228 433.452 435.984 433.947 437.453 438.674 437.985 438.943 438.248 438.521 437.933 438.165 438.701 438.594 439.014 439.332 439.557 438.843 438.828 439.256 437.606 437.427 438.582 437.524 437.546 438.121 438.879 437.764 438.475 438.407 438.989 437.724 438.071 438.976 438.27 438.393 438.203 438.897 437.869 -137.57 -140.391 -139.841 -137.556 -122.932 435.891 432.416 436.227 -125.757 -132.051 -128.719 -133.547 -122.764 -130.898 -136.005 -127.718 -130.934 -131.993 -125.935 -134.04 433.101 -132.711 -129.821 436.829 -133.97 -138.568 -143.93 -140.453 -140.882 -137.96 -142.594 -138.326 -151.99 -147.599 -146.06 -151.875 -151.522 -150.761 -152.398 -147.802 -128.861 -132.587 -131.374 -129.464 -123.029 -124.303 -125.683 -122.538 -127.514 -130.351 -130.907 -129.071 -123.215 -121.54 -123.982 -120.975 -144.275 -142.352 -148.379 -138.598 -147.434 -154.684 -157.515 -149.461 -153.214 -154.488 -145.588 -150.748 -158.767 -155.076 -154.047 -153.964 -140.376 -139.209 -129.478 -142.831 -133.85 -137.101 432.154 434.321 434.534 433.411 430.786 419.908 431.665 429.086 432.44 430.222 423.785 430.436 433.617 428.454 432.751 432.849 427.609 430.16 430.643 421.819 429.828 424.771 431.271 433.862 432.133 430.499 433.653 429.831 432.341 431.967 430.761 433.791 427.565 431.787 -153.164 436.036 -153.985 431.403 432.849 435.732 435.055 435.793 435.14 436.473 436.911 436.344 437.077 436.658 436.96 436.61 437.147 435.558 435.296 435.684 435.086 433.075 433.468 432.153 434.987 -170.126 428.174 408.962 424.38 414.355 425.476 422.752 373.826 419.846 413.914 422.653 437.331 362.421 432.453 373.562 -152.825 -165.785 -168.009 429.219 432.812 425.277 430.949 422.114 429.316 434.084 433.682 -164.441 425.771 -148.457 429.222 -163.365 421.12 -180.32 441.789 -174.491 434.179 -175.491 -156.769 -166.456 -163.21 -165.563 -161.17 -164.304 -160.117 -148.161 -157.043 -148.027 -149.146 -153.067 -143.737 -152.926 -168.651 -170.493 -168.157 -170.415 -167.131 -169.625 -169.098 -151.162 -162.766 -155.046 -167.778 -161.86 -153.344 -157.736 -160.646 -165.534 -161.608 -173.312 -169.047 -174.072 -174.168 -172.596 -169.25 -178.35 -172.766 -165.613 -164.719 -170.782 -163.573 -170.956 -176.113 -167.308 -163.794 -162.48 -156.485 -159.485 -167.265 -163.288 -178.101 -174.683 -176.761 -188.279 -174.982 -181.88 -183.335 -178.852 -169.855 -175.665 -176.313 -170.969 -174.027 -179.292 -173.898 -163.587 -154.171 -162.073 -166.156 -169.851 -165.652 -31.7207 -51.8652 -68.1462 -45.4348 -49.9122 -36.1677 -42.351 319.974 321.577 321.928 321.777 317.397 339.136 301.048 336.78 -22.1358 -20.2071 -30.6895 -21.5512 -17.8013 -24.5588 -28.3116 322.877 316.735 318.841 314.319 318.006 321.501 -33.2369 -69.3063 -55.8581 -45.5335 -53.0723 -35.5475 -42.5651 -20.9166 -31.0093 -19.5078 -21.0858 -16.7701 -24.4897 -28.3677 -71.146 -102.893 -87.1579 -74.3097 -102.996 354.473 395.1 222.636 418.363 245.576 349.799 397.402 386.137 409.491 378.813 411.997 391.229 384.353 -130.148 -117.368 -105.784 -115.967 361.312 322.634 312.645 370.871 315.301 370.24 359.28 -113.49 -128.306 -113.804 -89.3497 -82.341 -73.5404 -99.2245 -89.288 -73.2556 -101.632 -43.6954 -54.7131 -48.6016 -60.3467 -42.7264 -53.7309 -45.6759 306.522 305.793 304.136 303.59 -34.9105 -29.5224 -27.3455 -34.5599 -34.4168 -29.1616 -36.4041 321.825 316.436 361.65 350.822 -34.1979 -35.0167 -25.4344 -27.5346 -31.5228 -35.0842 -28.1869 -43.1519 -58.7218 -54.6324 -44.1973 -53.7396 -43.2778 -45.3795 -125.942 -142.129 -116.65 -110.983 -106.65 -134.916 -127.748 -132.835 -118.586 -136.795 -142.936 -115.745 -143.413 -136.715 7.37814 8.51261 3.11751 3.88522 9.0392 6.6389 5.61005 4.33242 6.63023 3.29266 7.06253 5.54762 3.06111 7.25504 3.85334 8.543 4.09729 9.01858 7.25491 -10.2023 321.162 333.214 -14.1839 -8.85509 -17.0951 -5.34039 -0.201418 -3.6542 -5.45415 -3.49443 -5.16145 -2.14813 -3.7191 -3.0118 -14.7217 -16.1165 -18.5248 -20.9455 -12.7871 -20.641 -16.3158 3.69583 3.24409 5.1902 2.98898 4.14028 4.50157 2.83604 3.13489 4.59785 2.48258 1.04972 3.86149 0.832802 3.67176 3.30543 1.71826 6.21906 2.4 3.62833 5.08396 1.45033 422.517 429.677 416.722 427.322 424.548 428.502 413.295 416.672 427.922 426.019 426.886 415.93 405.831 422.436 429.27 423.562 428.934 423.373 424.371 428.777 400.354 408.899 363.634 248.523 413.711 375.224 295.624 -122.572 -107.623 -115.931 416.006 428.093 -112.744 416.552 -115.233 428.598 82.4486 119.251 -127.067 166.49 -180.221 -107.008 -133.175 -125.383 -108.877 -129.982 -107.636 -114.37 -118.867 -115.558 -114.148 -109.476 -120.722 438.171 437.972 -133.323 437.928 438.115 437.698 437.39 437.284 437.642 438.075 438.017 437.904 438.06 437.823 -145.478 -161.459 437.075 -108.476 -112.222 437.088 -108.824 436.617 433.275 435.027 433.106 435.554 436.235 434.094 437.998 437.737 437.832 437.688 438.177 -109.943 -110.076 -107.636 -107.222 -107.309 437.66 437.787 436.601 437.62 437.09 437.232 438.16 -109.86 432.678 -107.703 435.454 -108.842 -111.079 -109.998 -107.942 -107.91 -108.164 -130.783 -118.999 -127.326 437.666 436.428 436.93 436.63 437.003 437.487 436.756 437.627 437.077 437.594 437.171 437.96 -135.329 -138.206 -141.435 -130.265 -134.27 -140.926 -131.322 437.925 438.127 437.506 437.658 437.49 437.869 438.177 -144.442 -146.787 -138.668 -145.663 -124.686 -116.763 -114.601 -119.413 -117.114 -123.486 -120.931 -112.101 -116.562 -112.013 -109.251 -113.289 -113.053 -108.85 -117.905 -122.853 -119.332 -117.497 -116.788 -121.376 -119.382 -115.371 -119.342 -118.051 -119.933 -116.224 -118.55 -117.163 -114.981 -112.865 -113.129 -112.164 -114.4 -115.206 -112.651 -130.64 -124.563 -128.587 -118.44 -133.188 -121.009 -127.654 -144.061 -155.73 -149.012 -155.276 -145.397 -146.355 -155.797 -133.647 -127.176 -138.172 -127.16 -135.81 -135.808 -124.329 -141.912 -138.878 -151.866 -149.822 -143.485 -139.444 -153.267 -173.993 -183.528 -182.635 -177.707 -177.631 -177.238 429.306 469.793 431.119 433.758 431.071 420.639 434.729 431.431 415.079 425.992 422.374 -165.867 -159.41 -153.506 -166.109 430.574 434.871 432.508 412.238 433.607 424.641 -181.256 -174.487 -174.498 -167.406 -167.566 -154.828 -158.86 -157.719 -167.535 -167.22 -177.101 -184.753 -182.666 -186.404 -182.183 -182.507 -179.046 435.56 434.735 435.843 435.371 434.757 432.22 -166.537 -162.27 433.652 -173.016 -161.733 -148.506 -155.547 -160.408 -155.089 -153.747 -166.281 433.424 432.216 434.21 433.507 -165.56 -176.221 -158.298 -172.521 -158.69 -169.261 -173.985 -185.102 -169.761 -173.815 -165.564 -175.741 -178.267 -172.187 417.068 -161.082 416.507 -160.881 -181.524 -172.756 -182.018 -175.278 -179.193 419.877 429.29 429.716 -42.7913 312.306 296.854 -53.5798 312.245 -43.1882 -40.8611 -23.0016 -34.1267 -31.8735 -30.9253 -43.3202 -48.7703 -63.6486 -57.9355 -53.5377 -124.996 -140.128 -123.733 -140.223 -113.856 -115.582 -93.5195 -100.683 -116.575 -107.775 -100.196 -109.777 -89.1192 -86.0302 -103.842 -95.9253 -46.1875 -31.1948 -39.4847 -34.9401 -42.6903 -45.8519 -36.3305 -10.2508 -14.4709 -6.3788 -18.3915 -8.60829 -7.94443 -20.4031 -114.008 436.967 -109.628 -116.135 -118.32 -124.179 -116.975 -121.496 -123.668 -120.044 -117.046 -112.104 -107.887 -111.936 -109.148 -113.476 -110.493 -122.603 -121.782 -118.148 -114.075 -115.536 -112.293 -121.816 -122.883 -114.819 -107.466 -101.522 -113.186 -121.15 -105.427 -121.795 -107.175 -113.92 -109.869 -109.818 -119.057 -110.845 -91.9812 -98.4838 -92.0248 -101.265 -92.9765 -90.9969 -103.364 -106.903 -109.525 -103.18 -102.09 -108.309 -104.865 -171.062 -172.321 -165.252 -171.257 -166.983 -167.277 -174.795 -131.821 -143.747 -145.355 -135.364 -141.224 -142.392 -139.636 -140.503 -141.903 -144.745 -149.074 -70.44 -63.8042 -89.9849 -48.1952 -33.8542 65.8594 -37.4679 -10.9467 -89.0176 -90.6036 -102.036 -116.91 -62.5434 -81.2186 -70.7346 -61.502 -70.5376 -24.3152 19.3184 -75.5113 -70.3418 -33.4005 -34.1264 -41.0996 -38.0731 -175.098 -175.929 -177.624 -174.232 -175.505 -200.137 -188.862 -204.519 -179.728 -193.006 -154.563 -147.524 -171.75 -162.729 -173.425 -169.66 -197.165 -280.147 -188.676 -140.389 -148.906 -123.951 -121.287 -148.114 -175.702 -160.252 -181.538 -263.055 -279.612 -230.051 -195.643 -111.238 -184.95 -122.256 -130.001 -98.9144 -107.07 -125.788 -106.115 -7.8277 -7.45194 -7.34732 -7.2713 -8.41691 -8.52494 -7.34797 -6.91797 -7.10999 -7.32198 -7.31363 -7.25148 -8.31297 -7.5492 -7.35665 -7.18932 -7.76244 -8.76819 -8.30774 -11.0542 -11.029 -10.8338 -10.8453 -10.9867 -10.9717 -10.9715 -10.4626 -10.3622 -10.574 -10.6049 -10.7358 -10.3871 -10.3561 -7.63444 -6.52555 -6.9337 -7.1136 -7.2877 -6.80923 -7.17721 -6.56044 -6.42706 -6.67064 -6.78325 -6.87489 -6.42008 -6.47497 -3.65298 -3.50643 -2.98015 -2.94884 -3.04942 -3.5072 -3.56276 -1.62851 -1.50926 -2.07066 -2.05374 -2.17146 -1.51265 -1.53111 -6.03049 -6.22036 -6.41778 -5.7677 -5.56024 -5.75278 -5.25681 -9.01557 -7.18355 -6.62449 -6.59684 -10.5032 -11.4776 -11.3327 -10.8533 -9.33013 -8.45975 -7.76837 -9.74134 -7.20826 -7.07384 -7.31226 -7.06238 -7.29404 -10.1435 -9.71517 -9.54464 -8.69843 -7.09444 -8.58078 -10.4938 -10.8742 -9.77312 -9.1181 -9.24858 -8.88186 -9.6227 -10.368 -10.9913 -10.7868 -10.5068 -9.80729 -8.89734 -10.6113 -10.9311 -10.878 -10.9805 -11.0053 -10.9399 -9.1796 -9.71599 -9.66005 -10.4048 -10.6001 -10.4932 -5.69761 -6.04178 -5.19002 -4.7958 -5.42233 -4.80105 -5.77277 -5.57416 -5.93126 -4.70713 -5.92921 -5.21182 -5.3056 -4.89166 -7.98406 -7.22063 -7.27038 -6.41253 -6.70752 -6.23346 -5.31568 -5.55239 -5.57431 -6.09892 -6.40331 -6.22833 -0.692804 -0.300945 -0.807542 -0.293835 -1.20855 -1.77118 -1.32274 -1.3059 -4.32774 -3.97682 -4.03037 -3.29378 -2.97207 -3.25589 -0.32066 -0.865938 -0.872521 -1.46521 -1.92565 -1.52635 -9.83088 -9.28243 -11.771 -15.3394 -8.40245 -8.76055 -8.24087 -8.14254 -12.0031 -10.2524 -8.70659 -8.30491 -8.00136 -8.31247 -8.16721 -8.54733 -9.11693 -8.70365 -9.80479 -8.99339 -8.21981 -6.68963 -6.96953 -7.85676 -8.06687 -8.8291 -8.02934 -8.04715 -8.95259 -9.40587 -9.8459 -9.48075 -9.81988 -9.91745 -9.85424 -9.49977 -9.42113 -9.40608 -7.96939 -9.01998 -8.00854 -8.8622 -8.76233 -9.70946 -9.78082 -10.4958 -10.5734 -10.3812 -10.4986 -10.4103 -10.2502 -10.1972 -10.4142 -9.84942 -10.1487 -9.65465 -10.2859 -9.96404 -9.57389 -8.8626 -8.89842 -9.25725 -9.46262 -9.00672 -10.3304 -10.258 -10.5047 -10.4762 -10.5509 -10.0013 -10.3462 -10.6272 -10.3468 -10.4901 -11.5615 -8.79585 -8.86378 -9.3935 -9.37401 -9.34022 -9.89322 -9.77756 -10.0862 -9.80136 -9.80084 -9.79578 -9.5907 -5.96629 -6.30495 -6.60242 -8.3135 -8.54608 -7.12068 -7.12313 -6.78681 -7.03938 -6.72183 -6.44886 -6.89819 -7.10356 -7.48679 -6.39312 -7.20015 -6.76846 -5.4214 -5.44077 -5.87265 -5.77973 -5.84546 -6.68371 -6.38056 -6.34761 -6.41256 -6.66952 -6.34691 -6.35652 -0.894038 -1.37457 -3.50353 -2.8671 -2.99195 -3.45679 -2.92614 -3.45212 -4.12268 -4.57021 -4.47625 -4.11695 -4.52321 -4.16554 -1.44749 -1.97196 -1.93668 -1.39703 -1.97802 -1.48303 -0.844142 -0.144929 -0.222812 -0.817876 -0.918055 -0.241552 -4.64116 -4.61881 -4.15197 -4.16156 -4.153 -2.87518 -3.4805 -2.94891 -3.45734 -2.92017 -3.39971 -3.46652 -0.181711 -0.882551 -0.175611 -0.904071 -0.874583 -2.01549 -1.38128 -2.02312 -1.48398 -2.04273 -1.46346 -1.41572 -17.5405 -24.7183 -27.2367 -26.2347 -30.3456 -28.9473 -27.9707 -27.9695 -29.3966 -28.5176 -29.0725 -36.6561 -34.9725 -26.3024 -26.4887 -22.7303 -36.6262 -19.2598 -27.8009 -33.5854 -27.7753 -30.6586 -40.8266 -59.2355 -54.9606 -43.6802 -45.3859 -45.8223 -13.4265 -13.1661 -17.8876 -5.74088 -23.7082 -61.4233 -23.3801 -29.4205 -36.7881 -31.7104 -42.5119 -28.3569 -18.925 -33.3556 -9.31603 -23.5656 -24.6311 -54.4098 -57.5867 -72.2973 -72.4801 -104.393 -69.6272 -49.7366 -34.8518 -47.0072 -36.5949 -41.3047 -66.822 -67.1439 -49.1487 -45.6729 -43.5917 -50.475 -44.3614 -50.0538 -42.5962 -72.2744 -51.6186 -63.3167 -81.1389 -52.3204 -55.6079 -90.1468 -63.1372 -43.1936 -34.0125 -29.5463 -41.7829 -44.5235 -48.593 -60.9087 -49.1641 -50.1841 -59.6127 -53.3064 -40.8928 -17.5504 -24.1981 -47.3527 -46.5758 -31.7941 -85.4439 -74.565 -65.6949 -59.7447 -71.4611 -22.0671 -57.561 -77.4893 -39.3532 -149.308 -173.991 -164.221 -107.921 -148.079 -133.196 -31.697 37.2984 -19.1367 -3.34948 -0.940774 -15.4831 -39.8291 -29.3628 -34.7102 -1.49418 -13.8202 -4.13816 -9.14348 -55.7095 -44.8936 -49.8735 -40.6792 -58.0341 -74.2659 -56.4074 -48.7407 -53.1832 -51.5403 -62.0736 -56.2533 -62.7638 -53.9312 -66.1225 -54.5335 -38.9568 -49.1176 -44.1109 -46.579 -51.8495 -49.9383 -48.8332 -57.1298 -48.0406 -48.2065 -47.8611 -42.3136 -35.4026 -26.3041 -23.1959 -26.9079 -26.1293 -32.7458 -0.914364 -36.7574 -19.1212 -7.38298 19.1753 -13.7954 -37.7437 -26.1032 -19.8604 -20.1523 -10.5182 -1.4593 39.8557 -35.6728 -36.7168 -18.9311 -42.5703 -35.4664 -31.5976 -31.4184 -44.6553 -68.0543 -33.9372 -41.4441 -60.8098 -39.546 -50.6634 -45.5122 -48.9248 -49.1158 -37.9166 -41.9079 -45.0782 -44.6969 -37.5371 -43.0991 -47.3737 -21.0364 -28.2951 -44.643 -41.0947 -39.4087 -30.929 -33.8731 -30.0185 -67.3256 -38.9884 -32.9486 -37.2462 -7.98363 -8.57791 -13.178 -10.5517 -7.63487 -7.4131 -7.72133 -7.30593 -8.91145 -8.09354 -8.93415 -8.71714 -10.7363 -12.3982 -10.4944 -13.6836 -7.60635 -7.78932 -7.65082 -7.6304 -7.85205 -7.61145 -7.56744 -7.60553 -7.58401 -7.7226 -7.17171 -7.54203 -7.43896 -6.76101 -7.30958 -7.38751 -7.48803 -7.36761 -7.3874 -8.38669 -8.44432 -6.9461 -8.42006 -9.29638 -9.70287 -9.23075 -9.23258 -7.74867 -7.66384 -7.69344 -7.74117 -7.26798 -7.74811 -7.6578 -7.599 -7.69736 -7.74608 -8.4032 -8.12451 -8.40089 -8.70783 -7.93139 -9.17434 -9.86688 -9.01907 -9.26539 -9.94877 -9.37877 -9.67527 -7.95452 -10.7625 -10.7849 -10.8187 -10.8402 -10.7156 -10.7507 -10.8111 -10.5787 -10.6559 -10.427 -10.7274 -10.1072 -10.5536 -10.2473 -10.6664 -10.8133 -10.5996 -10.7106 -10.8148 -10.6758 -10.3922 -10.5648 -10.5991 -10.437 -10.6406 -10.2888 -10.7702 -10.7042 -10.3134 -10.3379 -10.2143 -9.90007 -10.3936 -10.2946 -10.4761 -9.85721 -9.05134 -9.9156 -9.88628 -9.50208 -9.21547 -10.0857 -10.04 -9.23568 -10.2671 -10.4821 -6.936 -6.52294 -6.73669 -6.42444 -7.12334 -7.33073 -6.90735 -7.05159 -7.59298 -7.21534 -6.4481 -7.4331 -8.287 -7.66908 -7.64925 -8.67136 -8.27298 -8.14646 -8.4146 -7.4787 -6.59222 -6.9965 -6.60175 -7.06651 -6.59076 -6.92813 -6.6703 -6.9978 -6.57351 -5.99831 -5.51811 -6.00373 -6.10012 -5.60729 -5.68419 -6.14239 -6.02643 -5.59814 -6.45896 -6.84865 -2.94595 -3.54136 -1.52234 -2.12523 -1.60614 -1.55181 -2.13548 -2.13955 -1.47083 -0.835464 -1.00135 -0.329449 -0.874043 -0.326557 -4.33601 -2.83709 -3.79099 -4.08311 -2.92883 -4.13137 -4.21403 -4.87127 -3.90214 -3.79991 -5.00984 -5.20417 -3.95704 -5.00765 -3.65407 -3.7945 -2.94342 -1.45686 -1.8939 -1.50418 -1.47745 -1.9219 -0.839092 -0.327786 -1.47563 -2.05503 -0.865788 -0.957085 -0.342514 -0.899994 -0.350977 -8.10515 -7.12897 -7.26814 -8.41552 -9.35915 -7.91815 -8.91705 -10.4753 -10.0287 -7.49942 -8.03697 -8.23458 -8.44539 -7.70883 -7.96931 -8.89731 -9.97468 -9.78974 -11.07 -11.1845 -10.7257 -10.6326 -10.2503 -10.3743 -9.98627 -8.89864 -9.66258 -11.5093 -11.6954 -12.4441 -12.7737 -11.5404 -11.7383 -11.1051 -10.6342 -11.7877 -11.1538 -9.0568 -9.93973 -6.56182 -6.19569 -6.70062 -6.34839 -5.21773 -5.72955 -6.71053 -6.57024 -6.32243 -6.19187 -8.10739 -6.94701 -6.37786 -6.01379 -5.98849 -5.65289 -5.06134 -5.54312 -2.02429 -1.32916 -2.04028 -1.37094 -0.127633 -0.754294 -2.71377 -3.32174 -2.58107 -3.15766 -4.4036 -3.8938 -1.97834 -1.31887 -1.86809 -1.27119 -0.117374 -0.749609 -6.9081 -6.95831 -6.62244 -7.27168 -7.59293 -6.61848 -6.38151 -6.73863 -6.34011 -6.67783 -6.44113 -6.36522 -9.49557 -9.13266 -9.30876 -9.60753 -9.42449 -8.87266 -10.068 -12.1694 -11.6927 -10.5125 -11.1077 -11.683 -11.2397 -12.3034 -13.8747 -13.6172 -12.8153 -13.3479 -13.9908 -13.2289 -13.2796 -11.8005 -11.3341 -11.9501 -12.3538 -11.3761 -12.4533 -11.697 -6.70966 -6.20765 -6.34 -6.01746 -6.22111 -6.63847 -6.2055 -5.55952 -5.28899 -5.88491 -5.54746 -5.60711 -5.79336 -5.35186 -3.27348 -3.22597 -2.62311 -2.55699 -3.15182 -3.23844 -2.62041 -1.38308 -1.25455 -1.80506 -1.75205 -1.3226 -1.85084 -1.29122 -19.2958 -22.3546 21.0018 -15.4327 -9.62769 -14.9533 -31.6007 -21.4197 -20.9453 -17.1677 -16.3683 -22.9895 -16.2521 -16.6672 -9.43656 16.0986 -27.9597 -21.4038 -26.5437 -28.218 -29.5094 -19.6555 -25.4535 -24.2832 -26.1663 -25.8843 -25.3545 -18.6345 -21.2434 -17.8343 -16.0738 20.7181 -18.2147 -32.5927 -20.3647 -20.714 -25.7809 -26.5716 -27.7738 -33.2069 -29.3182 -30.6172 -24.3826 -27.0104 -25.7451 -24.0779 -25.677 -28.9528 -24.0338 -30.0886 -31.4127 -27.3939 -23.1574 -25.7484 -24.9707 -41.6177 -24.4263 -18.0422 -33.2709 -23.9125 -27.7676 -30.5582 -28.7624 -25.6293 -24.9639 -25.4437 -23.7846 -23.6853 -15.3442 -18.9158 -37.5991 -22.2319 -22.8539 -25.3032 -20.8941 -19.3173 -18.3633 -30.5317 -11.6195 -28.4306 -15.869 -13.1174 -18.6069 -17.6916 -21.2602 -22.4086 -23.7459 -20.3877 -7.58442 -13.1054 -21.138 -23.0458 -13.3992 -26.8173 -24.2006 -25.358 -14.6848 -23.2877 -7.62377 -22.8475 -26.3672 -13.6179 -51.0067 -52.9988 -62.1922 -35.6039 -47.9608 -42.0857 -37.2599 -29.7838 -25.4633 -31.7431 -30.8128 -34.5835 -34.8525 -41.9737 -42.3536 -37.8309 -28.3194 -36.352 -45.4327 -38.373 -20.9355 -14.6238 -15.6168 -17.3929 -7.84584 17.496 -25.2118 -29.4794 -3.81204 -16.8943 12.8352 -14.2613 -21.4781 -20.9229 -10.0358 -13.8543 -12.3808 -13.3459 -14.9413 -24.9394 -17.2885 -20.4234 -18.5306 -25.1257 -23.0856 -30.186 -30.3375 -26.4463 -26.7807 -24.2643 -28.6331 -24.8669 -19.121 -26.0143 -24.9539 -24.2092 14.7819 -8.88856 -18.4567 -21.8609 -23.128 -29.3442 -22.4764 -23.3006 -29.858 -23.367 -23.7805 -21.4878 -25.6595 -21.9341 -23.5854 -30.8926 -29.5358 -30.5742 -27.4348 -27.4231 -24.9965 -24.8619 -30.2422 -29.1602 -26.6014 -25.4936 -22.7933 -24.5651 -26.2735 -23.2362 -23.9651 -16.601 -18.0008 -22.8023 -19.8797 -15.8175 -18.6888 -17.8399 -18.037 -27.7349 -25.6239 -22.3785 -23.7555 -19.4498 -25.7956 -23.2185 -25.3388 -24.2868 -22.8874 -22.3003 -23.9663 -25.2444 -25.1601 -26.3599 -20.0137 -17.9872 -20.4136 -23.2842 -19.1635 -18.676 -20.1258 -17.367 -17.7188 -19.5278 -17.4203 -19.1358 -22.2263 -20.1845 -21.076 -8.03363 -7.94775 -8.00601 -8.2624 -8.15685 -6.58664 -6.89253 -6.77555 -6.58171 -6.91515 -7.55177 -7.57169 -6.80958 -6.94117 -7.5562 -7.81305 -8.24597 -8.16672 -8.25661 -7.89389 -9.50237 -9.29649 -8.9105 -7.74868 -9.40455 -8.59374 -9.0864 -10.241 -10.6715 -9.3646 -8.00489 -9.4459 -10.0903 -10.7595 -9.63187 -9.65007 -10.0465 -9.9142 -8.65966 -8.22884 -9.10604 -8.99632 -11.8915 -12.6908 -11.632 -10.4393 -12.5288 -10.7588 -11.9257 -12.1739 -12.7129 -11.2466 -9.70816 -8.58783 -8.46006 -10.0607 -10.9896 -11.2043 -11.0708 -11.1072 -11.0169 -11.2361 -11.1543 -11.0983 -11.2256 -11.0488 -11.2462 -11.1417 -10.4646 -10.3996 -10.8835 -10.7494 -10.5357 -10.8205 -10.4313 -9.8235 -9.04711 -10.4338 -10.8209 -13.141 -13.8949 -13.1418 -12.9979 -13.4656 -13.6889 -12.7278 -13.022 -12.9449 -12.7536 -12.4121 -11.1959 -11.448 -12.3455 -12.1264 -11.4799 -11.9725 -11.3194 -10.0401 -8.95493 -11.0115 -11.735 -11.828 -11.9112 -10.6649 -9.95794 -7.01407 -7.11066 -7.15235 -6.86439 -7.54239 -6.44187 -7.00297 -7.26906 -8.16149 -6.38678 -6.73536 -6.30888 -6.40149 -6.77649 -6.66462 -6.38498 -6.71879 -6.32939 -5.63976 -5.19615 -6.11026 -6.53324 -6.0743 -5.63681 -5.7585 -5.64931 -6.1065 -5.37921 -5.9723 -6.60361 -7.7063 -5.63009 -5.94088 -5.38704 -5.12185 -5.46397 -5.44897 -5.22295 -5.68002 -5.23109 -5.04719 -4.66483 -5.42066 -5.71776 -6.14939 -7.05926 -5.85415 -5.41237 -3.51853 -3.5374 -2.97872 -2.95287 -3.5817 -3.49506 -2.96126 -4.06281 -4.57706 -3.49955 -2.9084 -1.66487 -1.58683 -2.24586 -2.16584 -1.68144 -2.21867 -1.59529 -0.908658 -0.204485 -1.77058 -2.22626 -3.15416 -3.03358 -2.60516 -2.69829 -3.10151 -3.11205 -2.70819 -3.68595 -4.11909 -3.16144 -2.72209 -1.47869 -1.39126 -1.96648 -1.96096 -1.46312 -2.002 -1.45954 -0.921626 -0.238487 -1.50579 -2.02195 -3.30875 -3.8812 -1.65813 -0.864409 -8.95732 -10.3289 -6.35736 -1.52329 -4.36739 -5.46791 -4.69772 -5.30207 -4.21937 -4.62755 -3.54155 -6.16778 -6.92434 -6.98243 -10.7781 -5.73034 -7.14645 -8.57271 -4.12201 -2.9144 -3.01294 -4.44871 -3.98201 -2.99809 -4.37426 -7.00531 -10.6768 0.316972 -1.27999 -2.39181 5.46369 14.7243 1.37409 7.3557 14.4459 6.12923 1.0117 -0.385876 -2.07004 3.7941 1.80504 -1.13361 -1.67725 0.127744 -1.41189 3.09245 1.3037 -5.59291 -0.903837 -1.0829 -11.1166 -12.4708 -15.1282 -15.0423 -16.7463 -14.3228 -15.4092 -13.9283 -12.3067 -14.0884 -13.2061 -14.187 -17.8966 -13.8438 -13.0867 -17.1744 -14.5575 11.4974 -26.1774 -5.0378 -11.6257 -7.46973 -16.5948 -23.9931 -14.5951 -16.9626 -15.8793 -18.7199 -18.0041 -16.0012 -18.4551 -17.3503 -16.6408 -19.3585 -18.5036 -19.8247 -19.0778 -15.4584 -18.7266 -18.1381 -12.8121 -14.9192 -11.5327 -12.4672 -12.6622 -11.7839 -11.0615 -9.43928 -11.6392 -9.91641 -9.45218 -10.9248 -11.7487 -12.3808 -14.0956 -13.1747 -12.6103 -13.6503 -12.1188 -13.032 -10.914 -12.4995 -19.41 -18.5209 -20.4213 -16.394 -18.5997 -17.9351 -17.4441 -18.357 -18.3515 -17.8406 -18.5455 -23.7229 -19.3244 -20.05 -19.9537 -19.2864 -15.7363 -19.1067 -11.8962 -15.7644 -14.8312 -16.1693 -16.5472 -17.2376 -15.1191 -18.1608 -11.5155 -26.094 -14.6025 -12.6217 -13.5677 -16.0443 -15.1246 -31.3728 -11.7726 -11.0728 -14.1268 -4.20147 -4.17153 -5.3021 -5.10438 -3.95844 -4.03245 1.37317 -4.85211 -3.42153 1.99797 3.03547 -1.74667 3.32464 -0.633645 -8.03349 -6.6406 -2.86968 -6.28774 3.75203 -3.91402 -0.412907 3.75222 -2.94118 -1.81479 -0.594047 -3.49388 -3.56725 -3.451 -3.3783 -3.69887 -3.52156 -1.75209 -1.25957 -2.98474 -2.90725 -2.89288 -2.11764 -2.40147 -2.32756 -0.621052 -0.200806 -0.550426 -1.34788 -1.06972 -1.0553 -12.7441 -9.61675 -6.11484 -4.31748 -5.59882 -5.1572 -4.68384 -6.88613 -6.23086 -6.067 -6.80253 -6.04499 -6.41752 -6.12484 -6.08349 -5.78302 -5.99836 -5.71061 -6.06547 -7.20444 -6.62689 -7.35656 -7.19685 -6.92935 -6.82325 -7.71816 -6.55493 -7.24703 -6.84613 -6.66226 -6.39229 -7.1605 -7.04728 -6.4596 -6.42444 -6.66743 -7.00075 -6.35067 -6.53807 -6.86382 -23.1022 -20.4293 -18.5665 -20.2937 -19.0141 -18.478 -19.2239 -20.6484 -17.8345 -18.4134 -14.8664 -17.4708 -16.9752 -16.3605 -21.5062 -16.5915 -8.7216 -7.40113 -11.079 -6.58102 -9.76365 -9.83185 -6.90094 -7.88639 -6.84435 -7.81528 -7.12115 -7.90395 -10.8367 -13.1976 -13.5776 -12.604 -12.5149 -12.0362 -11.664 -9.40248 -9.84163 -9.02623 -9.91575 -9.21125 -15.1183 -19.3793 -18.0142 -16.7701 -17.3847 -15.3739 -16.1977 -12.1851 -13.6603 -13.6679 -12.9223 -13.214 -14.1635 -13.7254 -14.2162 -15.6604 -13.8399 -14.863 -14.9999 -12.4222 -12.078 -11.1432 -11.6915 -11.0096 -12.1458 -8.34617 -7.68098 -7.40413 -7.96438 -7.83504 -8.45699 -7.93842 -16.9647 -19.2375 -18.9545 -18.0274 -12.5608 -12.2051 -11.1048 -7.30674 -8.41775 -14.1943 -11.0973 -14.9988 -14.8378 -18.4786 -14.0035 -16.9443 -18.1193 -13.1705 -16.1895 -19.2832 -22.4933 -17.4987 -17.3654 -18.5688 -16.5362 -14.4236 -13.6665 -14.2186 -13.9705 -13.4168 -14.3363 -13.8985 -14.9142 -14.4877 -14.984 -14.4381 -15.3472 -14.9602 -14.1756 -13.7343 -12.9195 -13.3319 -13.0746 -13.588 -9.72118 -7.36687 -10.1105 -7.88963 -9.24532 -10.2801 -7.73237 -11.332 -12.6089 -9.8411 -8.69622 -10.4066 -10.1921 -8.28609 -11.6329 -13.546 -13.0043 -13.5572 -12.0102 -12.2548 -13.1418 -11.1069 -11.9587 -11.0527 -12.132 -11.1074 -4.89801 -4.91572 -5.40375 -7.0847 -5.50655 -6.63197 -6.07571 -5.23107 -5.51529 -5.51511 -5.26522 -5.69119 -4.61033 -4.73025 -4.52449 -4.31694 -4.77955 -4.67416 -4.24944 -4.87006 -5.22972 -4.99151 -5.02719 -5.00578 -2.80877 -2.37009 -3.31435 -3.68529 -3.39325 -3.65897 -3.35738 -2.81673 -2.45358 -2.97186 -2.36833 -2.88963 -1.30469 -1.76815 -0.828279 -1.29988 -0.233552 -0.943619 -0.178837 -1.25674 -1.77494 -1.4168 -1.73685 -1.32528 -9.94537 -13.4015 -13.5402 -16.9917 -17.128 -21.3015 -19.2625 -9.08229 -13.0795 -18.9285 -21.6378 -12.716 -17.5546 -17.4235 -22.0997 -12.6397 -19.2958 -8.5728 -19.5663 -21.6277 -12.9117 -29.2051 -24.9486 -28.2456 -19.1171 -24.5845 -30.829 -26.2746 -24.3858 -27.2501 -29.2162 -26.5687 -22.8615 -17.7278 -21.0204 -21.4801 -24.3221 -25.3179 -19.796 -25.3941 -23.7789 -20.5137 -16.1818 -13.1299 -17.5644 -16.3145 -18.5791 -19.6966 -22.0625 -20.9237 -18.4196 -14.0513 -18.2951 -23.0211 -19.7716 -8.32078 -7.29478 -7.63612 -7.97848 -7.43083 -6.91401 -7.26557 -7.07592 -10.498 -10.4578 -9.85192 -10.9399 -10.8895 -10.1726 -13.4115 -11.891 -11.1465 -12.1772 -13.44 -12.8112 -15.1376 -15.1398 -14.5221 -14.7734 -15.559 -14.5528 -13.2478 -14.5509 -13.8965 -14.156 -13.5823 -13.1229 -7.24468 -6.90036 -6.17771 -6.41891 -6.62367 -6.85259 -6.95301 -5.73352 -5.08889 -6.03863 -6.30521 -6.31364 -5.3292 -5.57381 -3.30358 -2.75866 -2.82258 -2.78685 -3.28636 -3.27416 -1.54146 -1.96017 -2.03087 -2.01317 -1.44472 -1.59766 -1.41714 -2.33305 -2.76461 1.41143 -2.93718 0.66773 -1.25008 -0.54177 5.67306 14.0668 -4.08373 -0.889042 4.68019 -1.0546 -5.27459 -3.86345 -5.15212 -4.10177 -11.1543 -8.10019 -2.31332 -2.90288 1.15319 0.116019 -3.34519 -4.62967 -5.44353 -5.29203 -4.96797 -5.00953 -2.33827 3.81363 0.639358 1.21554 -3.3841 -4.72851 -5.76564 -5.4223 -6.39175 -6.30277 -6.32248 -6.98083 -12.1597 -8.04077 -3.52599 -2.93185 -4.21589 -2.75146 -21.3143 -19.6997 -22.3598 -20.9246 -21.4268 -19.0737 -21.4821 -24.753 -19.8633 -19.6835 -21.8445 -17.8068 -18.4791 -18.235 -18.5478 -18.4226 -18.5827 -18.7188 -24.7832 -20.5143 -12.11 -13.3501 -12.7075 -14.6955 -11.5136 -10.304 -12.7938 -11.3439 -12.7545 -12.4204 -15.3585 -15.3655 -14.5028 -14.5234 -13.3217 -13.9017 -10.5682 -16.8302 -17.2114 -8.33854 -15.0986 -9.85451 -21.7312 -18.7187 -19.5139 -20.4133 -18.4512 -22.6612 -20.4891 -17.6561 -13.9455 -13.445 -13.7387 -15.3029 -15.6708 -15.1279 -21.3202 -18.1899 -18.4707 -14.8081 -16.8638 -23.8564 -16.2383 -18.2191 -19.9089 -11.4403 -11.2505 -12.0384 -14.6678 -14.3119 -13.0863 -13.7741 -11.5079 -13.2151 -9.4812 -8.46572 -18.6358 -18.7058 -16.7196 -17.1662 -17.6408 -19.0329 -16.4045 -17.9173 -17.9519 -12.9033 -14.4414 -15.6321 -16.0449 -16.9378 -14.3647 -15.5026 -16.7785 -14.6667 -21.2943 -19.349 -17.8794 -21.5384 -17.7466 -17.9765 -18.1036 -18.8631 -19.8582 -17.2008 -11.2633 -13.8996 -11.1652 -14.5524 -17.2689 -17.2752 -18.715 -17.9152 -16.0002 -19.1981 -16.2648 -16.6489 -18.9071 -15.3649 -16.9058 -18.0783 -11.5983 -16.4118 -17.0545 -21.6457 -18.4841 -20.4997 -20.7029 -22.9582 -18.8305 -20.949 -15.9711 -14.9155 -14.8772 -14.5985 -15.278 -15.7856 -15.2028 -20.7366 -16.1063 -16.688 -18.0253 -15.6594 -18.3478 -16.9291 -15.8376 -28.4272 -14.9582 -15.5656 -14.0731 -16.7111 -15.2993 -16.0349 -12.4102 -11.763 -13.8196 -13.1743 -12.2501 -13.859 -11.9083 -9.54646 -7.05504 -13.2414 -16.5305 -14.805 -14.9444 -12.9544 -16.2712 -15.0323 -10.1862 -3.89092 -9.71345 -6.54074 -12.5897 -14.4935 -19.8154 -19.5969 -18.137 -17.2798 -18.212 -18.8718 -18.9246 -17.3356 -18.0986 -15.8595 -16.2486 -17.9751 -18.5241 -17.816 -16.5731 -18.628 -16.9693 -18.6606 -20.3028 -19.8832 -16.3342 -20.1618 -17.5242 -18.8059 -13.3275 -11.3689 -14.0469 -13.0673 -13.0921 -14.9471 -11.5934 -15.3289 -14.2353 -15.3246 -17.3658 -15.2985 -16.0788 -14.9833 -16.2324 -16.8198 -15.2167 -15.8744 -18.4457 -12.9541 -1.2143 -1.81795 3.23339 0.587385 -2.05516 -2.45838 -4.17899 -0.31395 1.13922 -3.38458 2.42448 -2.27057 -1.97125 -2.82883 -3.95463 -3.73699 -3.75447 -4.25778 -3.3909 -4.03398 -3.85317 -3.91355 -3.99628 -3.96023 -4.17423 -3.79963 -4.14669 -3.76434 -4.48337 -3.53725 -0.879258 -3.38125 -3.21336 -6.04467 -9.07727 -7.02664 -9.60255 -6.17474 -7.09522 -8.45122 -5.69296 -6.01555 -4.35783 2.33705 -9.83053 -2.79795 -8.80994 -5.56768 -4.87465 -4.89132 -5.96495 -5.6771 -5.37233 -4.2058 -4.04199 -4.20561 -3.0134 -2.594 -3.04528 -3.15634 -2.03989 -3.21897 -3.42658 -3.19035 -2.95254 -3.58401 -3.34301 -3.40846 -3.06226 -1.71695 -1.27949 -2.09833 -1.34417 -1.7145 -1.79376 -2.09399 -0.729242 -1.04885 -0.413829 -1.07618 -0.292289 -2.44336 -2.76842 -2.76577 -2.60183 -3.08973 -3.33917 -3.51406 -3.27813 -1.75627 -1.44758 -1.38052 -1.90396 -1.38712 -0.84365 -0.214632 -0.829608 -12.7962 -11.5062 -4.86842 -1.37797 -8.57321 -7.79748 -8.43899 -7.63442 -7.07519 -7.46177 -7.22303 -7.70747 -7.73665 -7.97607 -7.69736 -8.28034 -11.9088 -11.3524 -9.2018 -10.5333 -12.1084 -12.2096 -11.8593 -12.2647 -8.6961 -9.73318 -9.60393 -10.2911 -11.8474 -10.6562 -7.5386 -5.93763 -6.33908 -5.58551 -6.11302 -5.95286 -4.76182 -4.97802 -5.07812 -5.52025 -5.74157 -5.55049 -3.96976 -3.62649 -3.63287 -3.01005 -2.65309 -3.08936 -0.642252 0.0711507 -0.0897563 -1.63804 -1.91111 -1.57565 -8.08689 -8.26939 -8.54441 -7.90815 -7.91397 -7.76598 -7.78808 -7.70989 -7.37402 -7.54278 -7.78242 -11.9884 -8.77137 -9.76265 -9.91954 -7.82609 -7.90396 -7.98749 -8.35293 -8.14989 -8.17794 -10.5518 -9.85704 -10.1427 -9.30367 -7.97941 -6.49975 -7.35924 -8.30987 -7.73751 -7.94703 -7.66802 -6.66463 -7.5349 -7.34738 -7.68758 -8.67332 -8.86796 -9.65696 -9.23648 -9.41707 -9.72082 -9.41225 -7.85878 -8.68233 -8.73039 -9.58665 -8.80107 -8.74876 -9.4395 -10.1935 -10.5791 -10.5119 -10.3209 -10.3299 -10.5179 -10.143 -10.1771 -10.4646 -10.3837 -10.4702 -10.1854 -10.4562 -10.3462 -10.4847 -10.3201 -10.4468 -10.4426 -10.1029 -9.88253 -8.81081 -9.22306 -9.48965 -9.5822 -9.3687 -9.9424 -9.46964 -10.1864 -9.90769 -10.1446 -9.90782 -9.86293 -5.61838 -5.17684 -5.15758 -5.49669 -6.02835 -6.11856 -6.19369 -6.04524 -6.24064 -6.74553 -6.34839 -8.01105 -8.08905 -7.25783 -6.62069 -6.94113 -5.9419 -8.50551 -5.90803 -6.77022 -6.93946 -6.84437 -6.51391 -6.41015 -5.30687 -6.67092 -5.55541 -5.36473 -5.37434 -5.82187 -5.89451 -5.79176 -5.91487 -5.2091 -5.98303 -6.60692 -6.26408 -6.65889 -6.13588 -6.26411 -0.851263 -0.234093 -0.774564 -0.197689 -1.37333 -1.76001 -1.85042 -1.39991 -2.78207 -3.40583 -4.58023 -4.5571 -4.06345 -4.07317 -4.06294 -4.50463 -4.02673 -2.84469 -3.39381 -2.78679 -3.42289 -3.35762 -1.99019 -1.34293 -0.185885 -0.769516 -0.198977 -0.834827 -0.73013 -2.01204 -1.37975 -1.97004 -1.35519 -1.35574 -0.166995 -0.789952 -12.4665 -11.6375 -13.2405 -11.3504 -9.80313 -8.88106 -9.63501 -9.56064 -8.87976 -8.41478 -7.74607 -7.89045 -7.61693 -7.98619 -8.016 -7.78004 -11.3896 -11.8587 -15.6103 -9.66224 -8.73075 -8.72423 -9.70741 -9.5523 -8.61336 -9.62595 -8.74421 -7.94743 -8.33379 -8.56954 -7.78928 -7.81906 -7.90918 -8.24726 -8.18847 -7.62336 -8.00706 -8.2648 -8.02147 -8.2789 -7.63018 -7.60185 -7.75326 -7.76262 -7.84779 -7.65673 -7.61135 -7.63039 -7.62637 -6.62826 -7.51819 -9.8587 -9.83782 -9.19823 -7.42449 -8.55839 -7.65587 -7.68507 -7.62847 -7.50352 -7.51971 -7.41252 -7.90703 -6.43075 -7.36709 -7.72542 -7.37702 -7.54687 -6.7916 -7.49618 -6.95898 -9.27028 -9.74194 -9.57328 -9.80206 -8.81984 -8.86813 -8.55111 -7.65855 -8.13524 -9.08469 -8.71237 -8.6587 -7.82555 -8.76594 -7.85556 -10.3554 -10.0777 -9.93813 -10.2216 -10.4746 -10.496 -10.5031 -10.4102 -9.3714 -8.86535 -9.46417 -8.94939 -10.1248 -10.2092 -10.1278 -10.0406 -10.1759 -10.1209 -10.1835 -10.2795 -9.60912 -10.7968 -10.7213 -10.8883 -10.7082 -10.8555 -10.9071 -10.6691 -10.7715 -10.6201 -10.854 -10.595 -10.7958 -10.8116 -9.70092 -8.90963 -8.96337 -9.6531 -9.01706 -9.60294 -10.3111 -10.3169 -10.7248 -10.5578 -10.6527 -10.4163 -10.2545 -10.1512 -10.3982 -10.5042 -10.1259 -10.502 -10.0885 -7.16953 -8.13687 -8.1337 -7.19968 -6.68707 -7.02593 -7.05368 -6.80771 -5.81007 -5.48935 -5.89606 -5.55356 -6.58769 -6.73569 -6.67319 -6.52204 -6.03251 -5.44611 -5.51902 -6.0551 -5.46425 -5.971 -4.17954 -4.55274 -4.47426 -4.15524 -3.201 -2.85456 -2.8845 -3.36185 -0.6546 -0.165516 -0.777043 -0.235086 -1.40931 -1.84307 -1.77085 -1.35823 -4.1554 -4.6349 -4.63652 -4.62299 -4.18161 -4.13679 -3.62061 -3.47148 -2.89958 -2.87389 -2.94212 -3.61031 -3.49669 -3.50539 -2.90062 -2.79992 -3.54543 -2.83443 -3.44991 -0.761795 -0.166823 -0.192294 -0.830678 -0.70767 -0.204043 -1.42894 -1.29136 -2.0345 -1.98499 -2.06408 -1.42087 -1.32911 -1.35654 -1.93226 -1.93243 -1.34727 -1.94426 -1.31571 7.35477 1.02653 1.25515 24.1501 0.656509 8.24546 23.0353 -11.4222 -13.5465 -13.7317 -15.3755 -16.1605 -16.3814 -16.376 -17.7598 -14.5088 -16.3375 -10.7222 -14.4915 -18.3234 -15.5989 -15.5655 -17.994 -18.9645 -16.8213 -14.2757 -10.0963 -13.2229 -13.409 -14.8544 -16.3398 -13.5544 -17.5215 -17.0357 -16.4863 -18.1002 -14.6989 -11.4666 -8.47256 -12.5935 -12.9617 -11.4065 -14.2854 -15.0986 -13.6478 -12.2748 -8.81392 -15.5158 -13.2718 -12.0251 -12.5562 -15.1128 -12.8105 -14.5104 -10.9462 -10.1735 -10.3253 -10.905 -9.473 -9.39091 -9.37138 -9.50002 -9.40573 -9.48075 -9.45445 -9.65592 -9.82748 -9.42322 -9.54689 -9.52373 -13.2202 -15.4712 -13.0763 -16.1867 -10.897 -10.2335 -11.0057 -10.0897 -9.86096 -9.361 -9.59609 -8.95904 -10.4751 -9.83788 -9.7524 -9.65429 -9.22492 -9.40081 -9.24852 -9.32165 -9.25832 -8.39083 -9.22629 -8.91406 -9.35207 -8.61871 -10.7652 -10.9334 -10.8705 -11.1042 -10.3057 -9.33965 -9.72491 -10.1932 -9.33066 -10.2928 -9.40576 -11.6885 -11.5391 -11.6642 -11.4457 -11.7411 -11.6655 -11.6729 -11.6296 -11.5988 -11.8089 -11.6493 -12.0372 -11.8995 -11.6644 -10.5238 -9.70097 -10.6442 -10.5791 -9.72627 -11.098 -11.3116 -11.3179 -11.261 -11.0853 -11.3602 -11.0228 -11.0288 -11.3753 -8.07889 -8.85702 -7.82728 -8.88558 -8.24656 -7.42612 -7.62086 -7.57543 -7.36537 -7.58543 -7.62857 -7.40237 -7.84969 -7.5728 -6.45778 -5.70552 -6.4438 -6.43604 -5.78634 -7.02488 -7.20823 -7.22914 -7.13038 -6.97484 -7.2329 -6.87561 -6.91267 -7.26011 -4.33068 -4.71577 -4.26519 -4.75182 -4.27602 -3.74277 -3.17489 -3.13823 -3.5714 -3.80751 -2.98336 -3.7336 -3.75204 -3.09455 -0.968661 -0.8773 -0.288118 -0.886488 -0.315143 -1.53907 -1.98356 -2.05002 -1.61494 -1.49211 -2.03987 -1.42784 -1.46573 -2.09618 -12.3674 -15.4879 -12.5383 -14.3882 -10.7572 -10.1999 -11.0062 -10.0096 -8.95482 -9.14941 -9.17084 -9.17809 -9.10067 -9.05278 -8.83417 -9.32307 -9.46783 -9.32318 -9.02185 -10.093 -11.3652 -10.9705 -16.3462 -12.0253 -14.8578 -12.9041 -12.8345 -13.338 -15.3544 -13.1234 -9.79563 -9.29484 -9.56381 -9.81854 -9.4115 -9.4166 -8.71578 -8.9229 -8.98818 -8.94131 -9.35183 -9.08409 -9.83954 -8.88887 -9.98919 -9.97714 -8.59297 -10.7196 -10.7288 -11.0995 -10.7481 -11.0803 -9.04054 -9.09753 -9.97734 -10.7817 -11.6337 -11.5429 -11.703 -11.6746 -11.5015 -11.5537 -11.5841 -11.4113 -11.5878 -11.3692 -10.931 -11.2953 -11.2239 -11.0096 -11.2583 -10.3326 -10.4111 -9.67977 -10.4313 -9.59158 -11.6549 -11.5895 -11.9031 -10.9943 -9.37158 -10.2713 -7.09913 -7.56494 -7.27181 -7.66629 -7.42667 -7.9391 -7.96714 -8.86984 -8.14278 -8.7111 -6.83482 -7.23078 -6.82144 -6.86141 -7.18067 -6.21461 -6.28265 -5.76716 -6.27451 -5.72919 -7.04202 -7.40228 -6.76337 -7.82527 -8.79226 -7.83989 -6.82452 -6.97205 -6.86023 -6.24242 -5.96896 -6.22173 -3.55231 -2.96634 -3.65593 -3.59767 -2.92902 -4.36149 -4.58129 -4.87428 -4.40144 -4.86578 -1.45373 -2.11871 -1.47778 -1.47919 -2.10055 -0.776763 -0.912523 -0.269204 -0.817124 -0.256241 -3.40438 -4.53401 -4.46394 -4.91918 -1.4416 -0.853875 -8.84175 -8.82397 -9.03311 -9.13366 -9.05052 -8.90192 -8.94959 -9.08808 -9.02513 -8.73041 -8.74159 -8.72137 -9.02563 -8.56831 -9.38528 -9.0382 -8.4375 -8.66656 -11.3788 -11.6398 -11.8948 -11.2388 -10.802 -9.49642 -9.72091 -10.4677 -9.35014 -9.58307 -12.5643 -11.6653 -10.6366 -9.8915 -10.0014 -10.6921 -11.532 -11.6634 -11.655 -11.3395 -13.5563 -14.091 -13.0352 -10.334 -11.2835 -11.3974 -12.0247 -12.7172 -12.2683 -5.94505 -5.61201 -5.63114 -6.07941 -6.70547 -6.94228 -6.85302 -6.67211 -8.8277 -7.81266 -7.66542 -6.93446 -6.85271 -6.44489 -5.41365 -5.74301 -5.6215 -6.32318 -6.37068 -6.29205 -0.751908 -0.308619 -0.858784 -0.294287 -1.51872 -1.99806 -1.90774 -1.49565 -4.29695 -4.01435 -4.00743 -3.38795 -2.94597 -3.29123 -1.54933 -0.284038 -0.0888323 -1.8567 -2.13587 -1.90029 -11.9059 -8.97688 -7.94976 -8.94155 -8.29579 -9.47253 -7.60296 -8.73417 -7.78348 -7.42671 -7.53533 -7.44287 -7.44137 -7.75747 -7.67185 -10.3125 -9.96995 -9.89616 -8.02032 -9.13466 -9.16188 -7.71165 -7.69728 -7.83778 -8.11132 -7.4946 -8.01959 -7.90349 -7.3416 -7.99133 -10.98 -10.2113 -10.4331 -10.1238 -8.79273 -9.76503 -9.32941 -8.57922 -9.54277 -10.3714 -10.1059 -9.33837 -10.071 -9.87049 -11.6342 -10.3241 -9.97329 -11.467 -11.6166 -11.7538 -12.2909 -11.9001 -11.8259 -12.0887 -11.7772 -11.6736 -11.8371 -9.5386 -10.2956 -10.2906 -11.259 -11.6967 -11.6578 -11.143 -11.2634 -10.8626 -11.4364 -10.8558 -6.86728 -6.50456 -5.51802 -5.87478 -5.96554 -6.91973 -6.47451 -6.58717 -8.61285 -7.37656 -7.2334 -6.01352 -7.21195 -7.5468 -6.84009 -6.20713 -6.88812 -7.02898 -6.80271 -6.99327 -6.86841 -5.26279 -5.8457 -5.70108 -6.06567 -6.77548 -6.31059 -6.24632 -6.0211 -6.49123 -6.54519 -6.30309 -1.96399 -1.3305 -0.189019 -0.834979 -0.83353 -1.98727 -1.34283 -1.37395 -4.55325 -4.10513 -4.01254 -3.20981 -2.77115 -2.61713 -3.17351 -3.34968 -3.39546 -2.76781 -3.34077 -0.130635 -0.827118 -0.77998 -1.30217 -1.96086 -1.84446 -1.29538 -1.26276 -1.32561 -1.93278 -1.27294 -7.14123 -7.27998 -6.92472 -6.57048 -6.035 -6.73186 -6.45895 -6.61799 -6.51729 -6.8406 -6.1 -6.47742 -11.3236 -9.42883 -9.28799 -5.77932 -4.54704 -4.47031 -6.27857 -6.47882 -5.04764 -7.39087 -5.46041 -7.00139 -2.84992 -2.08048 -3.92172 -3.08941 -3.38791 -3.95982 -1.75222 -4.68367 -5.12026 -4.63754 -4.59447 -5.3865 -5.04302 -11.1591 -10.4037 -10.2282 -9.94965 -11.0447 -10.1646 -11.8276 -11.0129 -11.1146 -12.6967 -10.6231 -12.0032 -12.2841 -8.72152 -7.32826 -8.59971 -7.45415 -8.45322 -9.06853 -7.44162 -10.9756 -12.556 -14.1599 -16.3854 -11.9187 -11.9155 -13.3671 -15.1101 -18.0697 -15.3251 -18.9481 -16.1594 -14.4137 -17.933 -14.2631 -12.0684 -13.7465 -14.0552 -15.0044 -13.1831 -13.3032 -16.8615 -20.3363 -16.7241 -19.1806 -19.2992 -17.5709 -16.0597 -16.1298 -14.5859 -15.149 -15.8539 -15.0652 -16.4431 -15.6133 -11.1621 -10.0631 -11.2219 -9.33669 -11.7818 -10.7936 -9.31622 -12.2859 -14.5884 -15.1 -17.834 -13.516 -14.3726 -12.3041 -12.7812 -13.594 -12.584 -14.85 -13.3056 -12.2501 -14.4499 -0.965452 -6.96427 -4.51787 -4.48167 -6.99479 -1.55108 -4.08627 -1.50057 -4.36 -3.25538 -3.97776 -3.24408 -1.97123 -3.54939 -12.1347 -9.69427 -10.0246 -8.68165 -7.61664 -8.53347 -6.43009 -7.4492 -6.67553 -7.84873 -7.64588 -7.04175 -7.21371 -6.47007 -5.42778 -5.32674 -5.98776 -6.34914 -4.96677 -6.14 -23.0275 -21.9672 -19.3962 -19.1045 -21.5083 -23.2134 -18.7524 -23.2904 -15.8932 -19.7531 -18.6386 -18.1428 -23.4462 -17.6927 -11.3728 -9.47467 -13.0775 -10.2307 -13.0818 -11.6361 -9.65782 -12.2735 -11.8473 -13.4581 -11.6282 -11.4425 -12.7089 -12.6258 -16.6682 -17.4293 -19.4231 -19.1058 -17.0602 -18.8099 -17.2849 -15.7272 -16.4282 -18.5165 -15.2137 -16.3343 -17.7387 -14.488 -16.2301 -14.6868 -13.2572 -11.2284 -12.4313 -9.6912 -9.75266 -14.2201 -11.7541 -17.2792 -16.63 -19.3722 -15.066 -18.9277 -17.7254 -14.6917 -17.337 -17.3496 -19.4487 -19.0794 -19.3387 -17.3145 -17.2911 -11.5492 -10.2708 -12.6844 -9.81184 -11.9812 -11.9525 -9.65865 -13.4217 -15.9692 -14.6911 -14.8798 -13.5977 -14.2252 -14.8018 -8.17396 -8.55032 -8.45639 -9.24455 -9.08641 -9.0288 -8.78493 -8.85289 -8.75343 -11.8364 -10.4822 -9.9099 -9.48473 -9.24052 -9.34961 -8.76992 -8.97067 -9.55238 -9.17346 -12.8435 -13.7499 -11.8469 -12.1753 -11.46 -12.9375 -13.5329 -13.4413 -12.7378 -13.0463 -11.2504 -11.9396 -12.2952 -9.68662 -9.95365 -9.98549 -9.6591 -8.46672 -9.70705 -10.0429 -9.05284 -9.7625 -12.513 -12.3195 -12.098 -11.2035 -9.98177 -11.1157 -11.5918 -10.2474 -11.3547 -11.0627 -10.3388 -11.2415 -10.4972 -11.1227 -12.0522 -12.8206 -11.9712 -12.7839 -12.0151 -12.8288 -13.0581 -13.0184 -12.8671 -12.002 -12.4059 -12.8839 -12.5333 -12.8334 -10.0649 -10.9644 -10.9446 -11.4173 -11.8729 -11.4282 -11.6186 -12.1751 -11.5865 -5.52699 -5.07269 -5.91197 -5.0771 -5.57049 -6.39995 -6.10201 -6.64427 -7.04939 -6.23725 -6.8141 -6.78903 -9.06436 -7.7348 -7.82606 -7.25238 -7.24944 -7.09622 -7.11495 -7.24411 -7.09428 -5.51121 -5.80037 -5.9422 -6.76282 -6.95423 -6.67902 -6.67448 -6.92177 -6.6936 -0.694343 -0.242966 -0.810754 -0.734608 -0.217268 -1.30344 -1.93127 -1.33939 -1.90527 -1.34347 -4.66573 -4.09603 -4.18221 -3.50288 -2.94119 -3.50434 -3.4358 -2.92293 -3.48777 -0.262742 -0.873285 -0.909707 -1.45555 -2.05628 -1.4412 -1.3669 -2.05209 -1.41769 -11.232 -6.6938 -1.39776 5.39192 3.72612 -11.5156 -24.4447 4.54101 3.85467 -13.4297 -20.6239 -22.6049 -21.3392 2.68156 1.45135 3.09555 1.64066 4.96835 -5.38564 -9.30416 -9.26507 4.96319 2.84271 4.10436 -32.5869 -38.911 -35.4821 -3.08444 -2.33778 -2.38488 -2.41081 6.57029 8.42738 6.13554 16.8622 11.2507 14.343 10.7163 -12.5731 -12.1421 -9.9562 -23.2488 -18.5266 -16.0026 -11.2087 10.3065 6.72914 -22.7193 11.1422 8.89872 8.20683 19.3641 10.7934 29.7988 18.3978 39.0483 19.9946 -28.7725 -42.814 -33.4939 -57.4849 -41.1869 -78.719 -49.2786 -78.7555 -100.457 -90.7267 -17.4183 -13.5058 -15.5518 -7.43713 13.6139 12.0154 11.272 19.4777 15.8227 15.6783 13.157 -6.65477 -6.83544 -5.87556 -15.5202 -10.9182 -11.6542 -8.73271 -134.672 -149.201 -157.689 -164.749 -111.008 -125.332 -160.743 -46.5154 -42.4494 -80.2489 -71.6939 -56.2768 -46.9098 -60.3534 5.08532 31.4387 8.09103 22.3119 4.38361 47.1561 2.19752 -152.263 -171.44 -150.979 -150.497 -170.135 -158.02 -158.956 -131.973 -119.749 -136.025 -129.051 -129.4 -121.338 -127.367 -7.55002 -9.80294 -5.07739 -2.80325 -7.84378 -5.83016 -6.86195 -11.5924 -10.5664 -17.1081 -18.985 -14.9212 -11.2811 -14.2214 -26.4833 -25.7611 -37.2528 -7.28721 -8.35476 -10.424 -10.6114 248.941 304.95 287.612 386.901 282.019 293.222 262.687 -154.97 -78.0313 6.61673 14.8694 -18.3459 21.5415 -136.57 -118.738 -148.566 -179.423 -122.591 -129.646 -159.134 416.526 413.392 416.962 414.603 417.917 413.09 417.364 421.858 420.663 421.132 422.751 423.187 423.681 421.265 -149.793 -152.382 -152.198 -151.894 -146.692 -144.423 -147.33 -3.84881 -6.29952 -9.30537 -6.38068 -7.40803 -5.02734 -3.30491 -7.73939 -16.8767 -21.4728 -11.5702 -6.73595 -6.73868 -10.6336 306.94 330.594 337.659 248.414 354.031 257.171 310.273 415.213 397.949 412.34 398.423 412.915 386.073 411.944 314.147 220.777 233.581 184.256 257.086 281.151 181.451 -159.457 -180.496 -187.42 -134.362 -136.783 -101.687 -129.717 -88.9531 -53.6033 -53.2948 -16.6132 -15.3018 -12.7432 -29.4132 -2.87216 4.73687 -0.119839 -2.75163 -4.31419 1.77579 -1.68315 -10.2314 -22.3022 -14.4421 -13.6727 -9.96699 -20.4863 -13.5548 15.8836 65.0777 17.1595 23.9197 14.4646 45.4876 19.9499 -18.9029 -17.5306 -13.0781 -25.159 -18.35 -16.4977 -12.4149 9.02002 30.8345 17.288 8.4761 5.00941 19.0404 12.8144 -33.7481 -63.4651 -39.888 -26.8018 -24.3934 -32.0261 -26.2724 -182.221 -161.488 -180.709 -173.878 -166.022 -176.963 -185.298 314.149 362.789 341.118 304.528 358.455 325.785 292.566 301.043 203.498 213.296 151.05 244.787 257.628 163.669 -195.334 -198.315 -201.913 -200.874 -200.69 -197.869 -209.21 12.8907 37.742 16.0448 23.2585 10.1493 17.538 9.68528 -2.01307 -1.82176 -4.00565 -1.44785 -3.4204 -4.1932 -5.20675 -12.5828 -15.8675 -11.407 -12.1223 -8.82577 -11.7461 -8.62602 -5.81957 -8.79706 -11.3228 -9.46699 -9.6503 -8.24978 0.478751 -11.2902 -18.1235 -13.9744 -12.0933 -16.4808 -14.3785 -14.3822 0.872763 2.59372 -0.416586 -0.653402 -2.94898 -2.06866 -3.98688 -17.3137 -18.1541 -12.9155 -18.1329 -12.9867 -14.8486 -11.2341 -1.84802 -16.2557 -12.8318 -10.4257 -14.0784 -9.44282 -12.7916 -11.762 -8.91262 -9.89803 -7.38472 -8.00338 -9.00501 -5.94739 3.17027 -1.93333 -0.6132 1.3066 1.29724 -4.04092 -1.38208 5.66229 4.26345 -21.2997 -10.8573 6.55962 -2.01126 -14.1411 -6.42678 -5.99583 -9.53893 -2.93419 -8.52564 -2.38814 -7.39915 -19.8755 -19.5999 -18.3805 3.53609 1.97484 3.53464 2.11243 -9.48235 -7.351 -8.94557 -11.8358 -7.82414 -9.80482 -11.1442 -3.61285 -3.94625 -6.00625 -0.283541 -5.72781 -1.75449 -3.22394 -10.8895 -6.48479 -10.4892 -8.72465 -9.19521 -8.1584 -11.3445 7.89971 -3.60746 5.92442 -14.5922 8.87883 3.33264 -6.61292 9.94215 25.4639 25.8937 20.594 13.5443 15.0109 15.3219 11.0371 13.4617 13.5917 10.7962 12.9091 11.0106 11.6301 -2.76784 -4.8988 -3.0259 -6.80231 -1.13568 -5.84435 -4.49422 313.217 280.543 351.668 342.921 297.156 358.69 292.648 40.3702 -15.4316 22.8069 19.3838 15.4713 27.8548 59.5319 69.9081 51.2122 29.99 70.717 41.2873 57.541 78.4748 -183.209 -84.3327 -126.284 -40.417 -16.3358 -52.4406 4.05059 -130.716 -130.331 -136.324 -118.572 -137.677 -129.841 -147.307 -122.713 -126.092 -141.39 -135.122 -135.913 -146.225 -118.667 -113.31 -124.922 -129.551 -118.033 -84.7228 310.425 315.343 281.028 310.471 203.552 325.351 314.429 0.176008 -2.15882 -0.0200454 -0.369962 -0.896971 -0.922439 1.3932 -4.36342 -6.6443 -8.60243 -6.39191 -6.50067 -4.55295 -6.15621 -3.57071 -6.74202 -6.15576 -5.1095 -6.43036 -5.74377 -3.18811 -6.12589 -10.1104 -9.95044 -11.3433 -7.70654 -5.40972 -8.43514 337.771 326.2 279.979 308.305 364.488 328.428 319.792 304.298 280.746 292.266 264.551 293.521 297.528 293.019 1.72926 -16.0909 -1.81222 -4.43701 4.21084 -2.16912 -1.74389 438.541 431.894 405.528 420.721 426.057 418.739 436.351 420.726 418.643 417.758 419.953 418.845 420.755 419.381 310.812 232.262 318.737 277.957 299.458 305.231 289.544 290.951 282.948 279.572 285.22 281.583 295.559 283.917 306.44 296.507 280.385 290.875 293.951 301.553 283.47 -115.4 428.119 -128.425 -126.817 -119.084 425.415 422.308 423.433 424.47 423.276 424.017 425.995 396.48 358.326 388.968 353.774 387.46 361.543 390.513 357.224 385.014 365.812 386.372 363.043 385.819 379.54 291.03 287.204 283.778 292.47 287.317 295.168 285.203 220.602 243.625 294.012 276.956 245.035 421.704 419.179 421.121 420.549 420.677 420.353 422.276 258.362 264.076 230.467 210.216 250.229 231.123 225.83 -3.45184 -5.37878 -3.72557 -2.03943 -4.98302 -3.96803 -2.37471 7.27919 8.34872 -5.75115 -2.5624 30.4988 3.45505 -1.71757 -4.98303 -7.28469 -6.01794 -5.83384 -5.63436 -6.19618 -4.66617 1.76757 -5.25963 -8.42306 -2.1497 -10.1907 0.554344 -1.24123 0.911272 -2.8639 -2.40035 -2.67839 -1.03246 -1.45668 4.29244 416.595 399.617 405.539 439.493 444.408 379.327 416.791 7.59948 4.37111 3.95859 1.09908 8.11637 2.67374 2.97694 -4.5874 -12.158 -11.3227 -12.6571 -8.61147 -14.2838 -8.23004 8.65552 10.1353 8.62684 11.3481 8.54783 9.80284 10.0223 -169.382 -167.028 -172.273 -164.259 -166.236 -172.392 -173.277 223.06 227.567 131.323 119.943 244.344 113.812 210.447 -21.6194 -82.544 -108.253 -44.6718 -92.5497 -39.3174 3.11701 37.7368 -36.7444 28.1623 1.41919 31.3002 -2.59293 24.7891 -112.191 -169.486 -116.188 -98.3686 -140.249 -124.16 -84.9566 -4.90543 -3.22683 -3.97025 -2.36853 -5.2324 -3.03628 -4.0371 -6.39761 -7.38158 -7.57254 -4.21382 -8.28772 -6.07461 -5.40054 2.18869 -1.18201 0.486786 -0.411684 1.52908 -0.939093 3.37124 5.30821 20.193 6.24326 2.14321 10.9623 2.87843 5.25122 4.45429 0.793414 4.13838 16.096 0.760419 15.3768 5.2382 0.621903 -0.675025 -1.0438 -2.48088 -0.265999 -0.0369904 -1.44924 -9.71812 -12.2843 -6.68807 -5.07033 -4.00548 -8.60225 -1.83022 3.89691 -2.94455 4.24057 -4.62943 4.29798 2.15563 -6.83379 -5.40924 -9.68046 -9.07029 -8.51782 -1.81235 -7.69944 -7.40131 -3.84554 -2.10996 -5.24125 -2.13039 -4.14326 -1.8383 -4.15028 1.19371 -2.27092 1.15918 14.7389 -1.85909 -0.140413 5.78106 1.23444 -4.9527 1.00538 -3.35234 2.36484 -2.79095 -1.86253 4.85038 2.715 10.3142 -0.706582 1.09246 2.85711 -1.26074 -7.58756 -10.4526 -5.24414 -9.44018 -7.15424 -10.1512 -6.44345 -10.7036 -4.38574 -8.69751 -8.52684 -12.4006 -9.79787 -4.64479 -10.6262 -16.754 -14.2906 -11.6229 -8.06893 -6.98635 -13.6414 -31.193 -30.3423 -27.4299 -0.595096 -0.744843 -0.633295 -0.434616 0.974402 0.440594 8.2235 13.9932 -1.61506 3.01352 0.508182 -3.32434 -4.26882 -3.17734 -3.8094 -1.56422 -2.19845 -2.2979 -9.03417 -8.60926 -11.6054 -6.67235 -9.73857 -7.26516 -8.34042 2.29012 8.82706 4.49014 11.3477 10.853 7.66231 14.3153 11.4623 8.0254 5.65946 14.3746 24.3949 18.4428 20.7442 -19.8655 -18.443 -23.9058 -19.4353 -11.9881 -16.5021 -13.4403 -23.7227 -36.1615 -29.3243 -24.815 -21.2659 -20.2746 -28.9322 19.8266 40.2758 38.1923 28.8536 25.6416 23.0416 31.2055 -61.1906 -68.9732 -57.1882 -9.63616 -7.76948 -9.12999 -8.89779 7.72922 11.6597 9.76694 11.1809 13.6922 9.70355 14.9529 -12.8717 -21.2686 -9.17441 -5.2727 -8.79084 -9.21459 -2.18168 17.3238 15.0241 18.2487 7.21155 3.37727 5.67462 7.32503 -13.2318 -6.14246 -9.42566 0.746546 -1.97458 -1.18631 1.51197 -13.7206 -21.8485 -17.5378 -15.1838 -19.6746 -13.2604 -17.9129 7.749 9.9629 8.90782 11.4462 19.7942 14.2456 17.2941 -41.457 -25.4807 -37.4695 -38.427 -40.8565 -38.4916 -34.8028 11.1194 11.8761 0.395453 37.9029 29.2643 26.5791 38.7943 -6.29329 -46.0691 48.8723 -15.9376 46.3304 42.1012 38.2035 -46.3599 -53.5013 -68.6932 -51.9879 -33.7018 -37.9037 -43.0544 -86.3543 -134.016 -90.9964 -94.8182 -97.7882 -69.5098 -63.5706 45.8942 22.913 48.2851 36.9744 29.2157 34.7141 29.7214 -16.1131 -21.3976 -5.3567 21.8028 -12.544 11.7263 -2.00623 -158.856 -108.557 -162.173 -108.822 -158.556 -79.3722 -78.6735 12.2903 18.23 16.8058 23.2642 16.7933 17.8751 22.819 -26.1742 -21.7931 -32.979 -20.2022 -18.6953 -22.4989 -15.6423 -88.4454 6.19678 14.4758 -1.16797 -0.847547 20.9411 16.737 16.8855 19.8346 21.1347 19.7958 18.9487 -34.3594 -6.38883 -13.6951 -14.066 -7.98625 -1.88842 -9.28095 0.9757 5.53937 -17.5552 37.1598 23.0563 31.5262 41.2146 33.803 -32.341 -58.2581 -32.6885 -18.3336 11.2895 -40.6653 -104.142 -108.507 -102.713 -97.1921 -99.3658 -92.8082 -109.986 -165.659 -156.621 -151.326 -165.327 -180.616 -167.228 -174.349 -39.9712 -39.53 -78.549 49.9439 31.6817 32.484 47.8745 -109.898 -108.45 -103.235 -97.2203 410.988 264.556 345.248 286.775 244.678 306.643 327.207 237.271 430.767 429.73 424.108 430.003 423.437 421.047 421.108 -142.146 -130.568 -135.217 -152.892 -141.89 -160.233 -136.567 421.475 398.076 402.609 -107.511 -99.2424 -116.741 324.651 -103.913 -151.447 -138.553 -142.825 -159.241 -158.806 -141.335 -160.098 -54.0024 -110.499 -76.6239 45.7022 38.1465 33.4009 36.4259 -52.4914 -127.29 -75.7833 36.7822 27.5153 21.5503 38.9263 -128.167 -126.359 429.423 -185.97 -139.48 -163.68 -175.262 -130.654 -128.849 -135.963 -86.5419 -101.618 -111.142 -134.938 -57.1523 -88.5003 -89.6756 432.024 431.673 418.877 423.74 426.975 426.861 428.769 401.865 406.492 400.1 403.492 427.104 399.733 421.747 425.552 405.665 404.464 405.471 395.492 421.56 418.413 417.791 399.39 392.66 403.659 -103.599 -9.20315 -88.847 -111.218 -199.819 -54.3907 -44.4064 9.93404 -38.5389 -83.276 -60.2865 10.1448 -10.5571 -21.087 16.6284 3.33937 22.8178 9.05491 1.95264 5.56556 4.30843 -19.0144 -11.2164 -20.7902 -0.529695 -3.60291 -2.53712 -2.42666 0.619601 5.54553 1.47804 11.9951 9.60848 5.72597 15.8589 -30.5703 -35.1952 -40.6811 -28.5685 -23.1489 -24.245 -24.9665 -23.9651 -148.474 -54.7765 15.6924 20.1325 12.7704 28.3806 432.941 433.013 432.32 424.588 426.431 425.281 428.011 -143.737 432.024 418.351 -144.38 421.78 428.039 428.8 430.165 401.122 407.008 403.383 401.055 296.131 306.032 337.892 98.6077 318.889 271.393 254.391 327.764 323.217 316.894 186.799 350.339 257.15 253.835 419.68 393.124 392.946 27.1821 9.98838 93.932 24.706 122.002 112.266 77.5999 38.8791 47.4821 43.8082 60.9495 50.0821 45.4117 64.0513 -58.6455 -102.813 -90.5695 -79.1984 -49.8367 -54.6534 -86.2622 46.1728 36.2486 42.2158 33.6184 29.635 33.9559 32.1806 -49.5011 -48.9833 9.02298 3.23623 -4.3711 12.2882 15.466 20.092 17.9801 19.7881 19.5736 17.1205 22.3275 42.4264 19.2007 28.3542 25.124 27.0259 31.3913 22.986 2.09574 2.20451 -0.848487 1.97914 3.95918 4.36038 1.1598 -31.7584 -21.6904 -16.9592 -7.94533 -4.70714 -7.93823 -6.03804 18.5437 18.8795 26.9919 18.4293 18.7116 13.4814 15.0075 -8.90413 -0.0449123 29.6121 7.86587 30.7669 25.5758 29.9765 -100.696 -87.1223 -96.4836 -72.6365 -83.3072 -59.7699 -68.9805 416.034 431.744 432.411 433.092 424.168 429.147 422.439 219.701 304.293 353.478 236.549 291.007 252.359 277.418 422.923 419.713 421.399 422.675 421.555 423.937 420.552 418.083 418.432 420.172 420.129 420.532 421.323 419.102 421.79 420.563 420.825 422.392 422.013 421.318 422.897 39.4703 70.2393 85.2967 65.1485 52.6236 54.2442 59.6916 46.104 38.0918 46.0339 69.8141 57.8102 53.4844 70.6282 -102.179 -52.4621 -4.54937 -41.9011 -24.8283 -137.129 -151.654 -148.854 -152.213 -141.547 -145.927 -148.038 -112.761 -142.062 -132.42 -136.21 -124.847 -111.274 -144.52 65.2271 45.659 41.5901 43.8273 51.7486 51.1984 49.8131 30.708 23.7881 28.5295 34.2456 29.0666 34.8342 27.9836 -38.8457 -21.3678 -27.7443 -16.9863 -12.5639 -8.42616 -17.2911 19.5678 20.2306 17.3098 19.6617 24.7938 20.5351 23.5808 259.679 345.736 272.61 299.168 336.127 354.92 275.774 421.439 422.544 423.646 423.42 424.793 424.521 422.192 424.711 425.776 424.103 422.883 423.232 424.921 422.351 -35.1006 -35.5257 -36.5047 -87.142 17.8589 22.4232 -90.0202 271.557 352.119 291.453 305.619 340.045 357.078 283.058 -34.9592 -38.7834 -38.3788 -90.4576 19.9426 26.88 -95.4343 -52.7154 -66.3289 11.9121 -52.9686 -90.2116 -101.487 8.15551 -0.267194 3.52348 4.40831 2.21367 6.1635 2.49963 7.01805 7.66309 6.31447 4.61103 9.18061 14.4227 14.2281 9.79463 -33.6318 -19.7446 -26.753 -23.1292 -23.1671 -27.6271 -21.1765 -92.5819 -91.277 -114.169 -71.4 -92.2451 -87.8662 -67.8247 432.59 425.303 433.923 423.506 433.27 429.624 430.816 361.083 415.191 423.433 392.168 407.004 375.208 404.344 43.6517 49.7016 45.5741 45.4572 43.5688 43.2518 37.7347 -126.026 -192.107 -185.299 -13.0838 -63.8484 -31.9822 -40.1388 31.7311 37.0182 25.0531 30.7158 38.9365 37.5969 31.4819 19.9592 23.9418 20.3796 23.2373 26.9213 22.3744 24.6857 -86.5288 -112.737 -66.8611 -27.2694 -45.8095 -10.2059 -27.1566 -23.5742 -26.4714 -17.741 -32.0903 -21.0993 -19.6923 -17.181 32.6408 10.3635 25.1444 17.0284 22.1951 19.7211 15.3334 0.112519 -0.00635074 -0.860485 3.06502 2.1612 4.89133 2.03026 -2.73818 -11.0511 -3.78114 -4.54168 -5.49138 -7.02926 -5.40099 -12.8582 -11.7531 -17.84 -10.9223 -14.5085 -11.1492 -13.7209 22.4555 8.10577 8.08134 15.194 24.7294 20.0316 16.0313 15.4452 40.0214 8.9523 12.361 20.9436 25.357 32.0561 -52.4451 -81.0689 -96.1681 -56.0492 -52.3443 -56.4768 -76.8999 -110.757 -111.447 -109.894 -108.804 -107.43 -95.4456 -113.237 -81.5543 -22.8386 -41.2829 36.2041 48.1366 49.905 32.6443 419.579 433.985 435.921 422.428 427.611 429.254 428.751 430.919 409.567 408.828 405.896 408.573 420.945 425.356 424.824 395.26 396.311 402.929 391.798 -119.875 -118.57 -106.888 -122.456 -127.442 418.118 425.673 426.126 409.661 411.975 38.3515 8.21355 -5.8161 11.9542 31.0628 37.1686 36.4537 19.1135 14.0215 17.2596 29.8535 32.219 39.6418 23.2427 23.4669 31.672 36.1768 23.9442 20.0957 21.0089 22.617 -29.3597 -44.6061 -11.1058 -6.1381 2.12771 -3.94278 -17.9181 -22.6841 -14.9165 -23.6499 -14.1613 -16.2609 -17.6435 -93.4026 -33.4271 -52.5165 60.0329 53.448 45.9864 43.0903 157.801 227.704 305.548 230.504 235.858 238.88 161.445 435.818 435.147 428.153 425.375 423.275 -102.23 -37.8669 -45.5387 60.1958 53.8398 53.4704 43.9293 -154.175 -139.572 -154.157 -141.534 -142.016 -156.361 -146.79 425.84 428.18 430.311 400.92 409.547 406.077 405.787 431.877 429.727 431.699 425.045 422.318 429.32 418.723 429.915 429.454 429.395 424.654 422.152 424.233 425.188 423.334 427.567 405.147 423.759 407.124 409.565 403.33 417.932 433.534 409.152 432.879 397.041 426.31 428.338 305.757 237.144 352.701 300.04 330.808 273.704 313.574 421.372 426.239 425.72 392.912 395.689 402.676 387.742 -172.046 -165.938 -145.663 -191.906 -163.592 201.736 246.857 176.978 128.128 262.013 123.843 192.245 -86.0003 -86.3989 32.4746 -158.639 31.3132 52.4684 31.5787 14.5172 16.8754 17.1416 29.3758 16.3681 25.6443 22.4487 -64.6652 -39.3452 -91.4464 -74.0469 -41.7319 -53.7797 -45.4789 -31.9454 -9.24477 -8.49276 -35.6301 -38.8603 -69.4888 -1.11019 120.483 196.887 248.155 159.709 195.966 148.389 121.783 -103.617 -105.223 -106.762 -91.9169 -97.7213 6.80168 3.67493 -11.8248 30.4173 25.7107 47.0213 34.3803 -204.565 -191.865 -199.941 -171.662 -128.011 -176.941 -152.29 428.375 -98.7529 418.748 420.476 280.747 181.873 299.687 293.57 175.279 172.451 274.539 -128.118 -134.478 -110.556 -143.128 -127.047 -146.274 -135.857 242.378 139.535 261.241 277.775 157.868 145.771 258.474 -1.55837 0.0232355 273.607 0.46918 -1.91365 419.679 434.034 410.968 -94.7779 33.6163 -33.1942 44.7548 -59.1034 37.9693 26.5278 -188.942 -201.458 -198.035 -207.668 -190.727 -210.765 -192.31 -176.059 -111.813 -158.916 -194.603 -186.6 -146.384 -162.913 3.46591 6.7878 3.33241 5.65943 11.527 8.31822 9.13602 21.2509 22.1723 11.1321 6.06234 11.4207 6.32962 10.2568 -27.0317 -18.5203 -22.8914 -20.3939 -23.9532 -23.9011 -17.7991 -9.85269 -12.4063 -4.79895 -0.672429 -3.59325 -0.757899 -1.42087 30.6696 31.2204 26.7583 18.4548 13.3805 20.6527 18.9962 6.67745 1.45501 5.23513 9.93425 4.68808 8.88198 5.62121 -39.0201 -44.9114 -45.4026 -18.2944 -17.9603 -18.1278 -13.4272 -20.328 -27.5259 -33.1066 -24.379 -21.3051 -18.5726 -23.577 -1.68949 0.929805 -0.142912 1.02666 2.79225 -0.170458 2.51409 -17.4515 -6.16512 -18.6949 -15.0339 -9.80632 -13.7032 -8.22489 4.49412 0.835893 0.217644 1.13427 -1.78981 0.549023 3.9119 3.73239 -2.08255 -0.237409 0.164061 2.50672 3.43114 -0.849984 5.79859 -28.6441 6.58295 -16.5233 5.48962 3.46495 5.76752 -19.8472 2.83154 -15.2628 6.17527 -23.3758 5.39976 4.44379 2.0379 -12.9301 -19.0767 1.20886 -0.641228 397.039 126.749 246.347 386.789 282.923 -82.1677 -72.3109 -85.4925 -68.4386 49.8473 60.5967 66.2895 38.9131 49.0298 47.8091 107.59 -140.54 -139.883 -141.91 -140.018 -145.731 -131.973 -202.701 -203.253 -201.278 -207.91 -207.94 -205.324 -207.797 438.459 438.636 437.859 438.252 438.256 438.862 437.454 -54.1533 -60.5085 -62.7148 -48.9762 -64.9994 -49.3226 -52.8099 203.501 253.972 322.283 146.824 297.866 314.882 310.857 324.288 326.098 315.634 318.01 317.949 315.54 313.147 289.838 317.315 281.111 320.863 305.236 298.345 368.061 326.029 369.887 377.297 348.508 354.022 403.122 335.801 322.954 315.489 307.787 321.732 325.868 313.872 319.49 323.525 334.02 126.418 261.403 349.656 283.106 247.69 333.35 303.288 288.859 227.415 320.465 323.831 288.026 292.398 317.618 296.669 300.668 273.715 313.494 258.903 300.131 262.438 341.463 318.562 246.429 327.28 312.29 303.385 306.154 304.743 324.83 318.907 340.904 322.335 330.759 329.038 314.998 351.375 325.682 426.173 431.546 431.752 428.508 425.701 429.196 424.897 311.682 330.811 316.53 323.232 315.738 323.028 312.749 313.22 270.115 304.141 339.162 271.741 303.064 339.389 411.978 414.671 431.181 405.355 421.886 423.773 398.562 434.384 421.069 425.773 421.529 460.961 383.801 374.603 255.92 300.77 281.175 287.937 291.367 274.922 274.571 179.844 282.956 252.928 292.964 165.504 276.799 253.408 2.10156 0.556139 -0.397526 2.31895 -0.0641268 1.22262 3.15783 2.75089 -1.33179 11.7313 4.32087 1.8112 14.2858 -1.97485 4.98543 0.00846642 16.7686 2.33541 6.38633 0.199279 15.854 3.13018 -2.81749 -5.77031 4.44215 3.44121 -9.78436 2.8312 2.28932 -0.354541 -12.6133 -5.82153 0.752766 -11.8576 2.41067 298.717 333.821 307.216 313.674 324.638 268.173 332.725 316.854 316.779 325.668 326.9 319.778 321.113 316.982 316.381 325.897 319.711 326.305 326.161 326.204 318.578 304.316 302.708 308.678 283.869 310.098 284.878 311.414 318.765 339.765 378.246 390.342 336.18 340.857 369.793 -78.5472 -7.40108 -100.529 -144.434 -101.777 -58.2768 -29.5983 298.044 304.384 342.691 114.44 312.929 254.388 254.669 274.676 285.777 281.298 298.628 283.058 277.696 285.588 294.77 452.108 334.387 425.82 439.326 410.589 420.364 374.253 420.051 422.939 424.881 414.834 418.803 423.193 302.192 296.875 293.035 277.951 297.631 296.762 295.775 247.915 279.667 252.797 272.885 263.066 268.022 261.378 179.009 143.185 259.83 298.648 257.085 306.937 -128.579 -124.473 -126.492 -123.69 -128.916 -124.603 -129.391 -129.213 -132.882 -124.141 -122.658 -130.172 20.9425 17.2595 31.8112 15.532 21.7124 16.5866 28.4048 14.3564 -0.515862 5.9049 -4.00108 9.84912 6.81802 -10.3677 12.3438 7.51197 -6.7746 4.30239 -20.5763 7.81061 -156.654 45.7312 149.24 -127.904 83.6262 -57.1715 -95.0981 -38.2492 -115.698 -33.5188 -118.895 -81.0464 -242.444 -58.2329 86.7268 51.5076 -175.941 -132.678 90.7921 385.134 159.024 406.091 348.139 413.167 230.004 434.137 437.12 436.908 289.684 297.71 299.177 289.313 297.323 300.654 284.281 284.015 282.47 299.135 279.327 291.058 286.543 282.705 1.63026 3.15859 2.29343 2.90081 3.5715 305.046 310.301 303.39 289.491 299.49 307.354 354.3 -5.1729 -6.01755 -48.8509 -0.256303 -15.5397 -3.72286 2.37512 -27.9442 -78.2871 -47.7522 3.04818 -57.4872 -20.8425 -3.8714 420.976 421.622 420.842 421.88 421.145 421.188 420.886 416.909 421.257 421.133 418.086 421.603 420.017 419.895 257.093 271.094 262.092 267.413 260.617 262.943 268.769 227.485 264.216 264.563 272.037 272.805 260.844 255.68 222.627 230.115 245.796 272.243 220.713 245.787 254.341 285.053 188.468 306.695 304.796 233.949 260.298 312.059 -11.1989 -19.7697 -19.1333 -18.8549 -15.9775 -13.2042 -14.0209 -6.8925 -13.6605 -6.4946 -9.38953 -3.54727 -9.25643 260.597 284.835 270.718 235.676 274.89 269.485 267.094 29.6952 -9.90944 -24.2278 46.35 31.4086 26.212 -18.2546 15.0701 -50.4648 -36.5164 27.9416 11.6443 8.87079 -55.6423 435.769 436.03 436.466 435.855 434.796 435.296 434.697 435.264 -122.32 -124.947 -125.671 -129.371 -120.358 -123.216 -125.952 -130.782 -131.831 -117.595 -136.986 -138.736 -123.21 -129.657 -100.22 -95.9793 -92.8361 -90.937 -93.5448 -98.4415 -95.3906 -50.5434 -62.9055 -55.3246 -44.4009 -64.1719 -51.2054 -45.0266 288.583 297.346 301.031 290.523 303.425 297.675 250.331 319.33 297.121 314.171 272.277 287.261 221.906 250.457 419.213 419.821 419.399 418.938 420.115 419.095 419.114 416.972 419.928 413.756 419.478 419.24 418.96 414.576 417.86 421.852 419.124 420.838 419.498 432.467 418.802 399.013 404.834 409.066 403.728 403.291 400.133 395.672 385.123 350.988 354.271 384.526 385.033 350.035 383.984 386.124 388.085 364.896 344.722 392.07 384.808 354.471 393.99 440.123 398.336 393.064 399.167 386.225 391.418 242.809 314.503 319.158 311.816 292.302 287.709 256.202 302.666 277.021 316.949 301.026 313.35 315.717 296.02 310.342 295.44 267.161 280.035 289.809 293.414 307.025 328.85 330.808 285.826 311.944 319.026 310.578 310.823 256.575 299.783 307.002 165.231 261.429 282.648 221.648 213.234 327.296 310.667 305.849 299.212 255.506 285.589 420.895 423.468 423.525 423.21 424.163 416.046 423.763 426.083 425.128 424.56 424.991 426.071 426.207 424.111 411.468 404.393 417.435 413.826 409.254 414.475 402.958 423.556 417.877 425.176 425.568 428.532 424.294 423.689 422.406 422.289 423.663 426.423 423.991 422.031 423.404 421.411 420.453 419.207 420.452 421.435 420.334 420.679 420.767 421.975 420.826 421.277 421.125 421.91 420.763 416.982 419.913 419.715 419.661 420.265 417.559 417.583 418.784 418.242 419.176 420.056 418.426 418.706 419.776 416.457 418.02 420.878 428.932 419.749 400.099 421.046 396.844 371.46 402.592 393.822 400.567 402.194 393.72 394.239 404.025 394.323 399.485 398.014 385.209 407.787 274.938 256.129 267.778 244.149 260.048 269.714 167.297 247.032 242.353 222.255 254.369 251.826 225.515 245.166 367.908 462.51 434.163 409.823 405.524 415.91 340.727 309.806 281.852 257.82 288.713 255.539 328.223 311.656 309.704 286.053 316.113 329.281 305.063 309.502 276.858 288.703 291.223 301.372 284.666 297.336 423.452 419.836 430.332 427.309 429.821 413.245 427.434 54.731 -109.905 72.3082 -119.775 126.01 -248.636 397.385 219.993 361.719 410.339 419.84 262.646 383.846 -133.646 -59.0966 96.4711 89.899 -153.734 -42.3593 92.9113 -150.762 -148.752 -151.831 -171.795 -161.585 -144.907 -158.056 432.098 408.776 409.214 427.107 436.998 408.278 434.428 285.895 284.457 279.088 276.237 293.47 276.856 265.764 319.76 298.087 313.918 317.612 311.621 325 293.218 288.973 281.629 288.447 276.545 288.233 281.789 286.04 245.309 279.347 294.884 252.284 251.655 278.645 119.561 287.284 274.407 269.321 251.187 242.356 272.203 250.049 269.399 282.706 271.314 272.407 276.568 264.727 275.393 429.608 419.288 421.793 421.034 414.636 420.492 423.14 397.218 401.032 402.604 393.504 397.529 407.877 401.434 390.563 403.063 389.749 399.421 392.867 394.621 401.426 241.909 267.115 274.543 250.175 264.535 250.486 243.725 412.072 406.495 383.671 380.009 407.932 414.784 382.367 265.564 248.461 258.766 282.705 222.874 276.216 264.988 282.305 280.01 302.479 129.95 257.713 306.183 256.671 299.117 250.644 263.198 240.98 280.524 282.406 286.036 311.791 299.142 299.787 294.266 281.245 299.108 6.09546 1.92112 1.25585 3.92348 5.24029 3.10224 6.26509 5.02605 2.62749 2.05443 3.44889 380.972 315.311 360.025 125.405 372.372 260.045 -140.575 -152.049 -148.374 -137.074 -145.425 -139.498 -148.521 3.89683 33.8249 -3.5588 -0.0664384 -1.55511 9.31548 8.49179 2.19277 -1.71222 -2.6529 -3.37504 -1.78273 -0.0608216 3.446 0.815487 -7.85785 -4.31686 1.54285 -2.7034 -2.71902 3.37243 303.715 297.867 312.553 298.718 300.989 310.518 304.119 275.678 295.727 291.283 291.616 294.917 281.668 277.597 429.857 415.765 394.812 417.62 414.903 412.177 427.474 289.638 292.314 285.538 288.704 285.649 297.383 290.027 270.659 282.784 268.848 282.029 270.434 284.079 263.612 211.429 282.556 311.032 322.338 230.149 281.157 279.845 -64.5954 -2.34162 -14.7047 -13.6968 -66.5379 4.23559 -123.491 -0.213366 -1.85487 -3.5047 -3.09566 -0.659518 -2.64561 -0.851027 322.697 297.053 319.158 302.83 312.876 315.69 302.315 -22.0279 9.66514 7.39618 4.51264 -59.4273 -1.86299 -4.08377 -65.6564 -108.862 -17.2088 -13.5379 -113.585 -95.9187 -5.33021 -49.8607 -8.45115 62.2527 -160.558 109.992 -99.0569 -139.626 381.962 422.288 415.04 438.268 390.283 404.029 409.266 423.679 424.221 424.398 432.523 429.718 370.087 363.939 411.974 427.651 381.375 439.696 422.95 423.266 430.513 214.377 309.439 297.921 327.117 288.603 256.483 292.443 -0.67266 3.45457 -15.228 -31.7337 3.7257 8.38877 1.13233 -4.52498 4.53937 3.22896 5.35687 -0.443586 -0.258322 -1.39036 1.62148 -2.51923 0.417305 1.2657 254.597 323.022 278.043 289.19 304.022 300.008 205.049 427.047 415.98 418.163 436.443 400.143 430.467 438.021 310.709 294.846 331.418 243.042 296.609 333.789 198.051 288.654 311.852 300.799 321.051 283.926 324.309 293.958 256.483 282.576 274.915 276.565 282.415 254.878 257.664 314.804 306.83 309.538 322.86 311.699 310.906 312.525 314.805 307.97 306.519 314.249 310.928 317.436 311.569 243.681 320.003 336.19 324.019 319.125 313.788 258.889 217.654 298.946 285.241 335.702 210.282 312.887 301.912 304.665 309.19 296.525 300.815 305.445 313.917 296.793 314.362 295.921 318.715 353.818 304.589 324.194 319.049 308.866 256.954 337.593 318.079 298.048 266.463 330.78 290.781 296.851 286.954 294.072 289.806 298.107 295.33 254.922 268.919 239.962 239.085 183.95 284.503 283.232 299.143 322.129 349.898 321.508 264.737 312.756 318.394 285.24 290.397 278.662 227.672 298.698 251.299 264.407 310.935 326.72 279.223 316.075 313.744 287.291 322.438 255.475 304.404 288.583 289.733 305.017 210.89 302.199 418.365 407.707 426.935 405.831 418.303 430.274 402.128 4.2293 4.10776 4.67802 418.6 452.753 415.746 429.156 316.734 427.595 407.426 -127.452 121.582 67.4656 -122.369 69.8833 -235.971 390.384 240.569 70.2271 387.751 -172.132 96.9638 399.914 282.76 213.205 342.923 393.666 354.738 388.152 249.405 74.3376 390.459 200.788 -118.608 101.118 65.1505 -129.968 48.2353 -61.6093 -62.4667 -72.2443 -74.5886 -61.5329 -73.5369 -62.262 -56.9189 -68.5997 -49.9626 -65.0839 -53.9531 -55.3288 -72.1965 7.44523 -53.6614 -13.7678 -20.9839 -24.5733 21.2241 4.42307 -3.09755 21.3135 -21.3463 52.0703 6.31875 -6.02495 19.8752 8.83583 13.8504 3.44588 6.69855 8.45252 4.87089 20.5771 6.31622 5.88221 19.8467 2.14128 7.56475 2.10727 14.449 4.45984 5.09056 2.67829 10.8336 1.47854 4.45509 16.4062 2.71895 11.196 -1.10948 8.41108 12.3849 1.46821 2.88155 -24.6435 -23.157 -21.7704 1.72027 1.71585 1.69787 1.53928 -5.2037 -2.48369 -6.45667 2.68438 -3.31803 1.04164 0.0927485 -7.34877 -4.94088 -3.4934 -0.0837427 -0.596968 -3.52905 1.95748 -41.8848 -42.976 -37.7392 -4.27783 -4.48833 -4.05998 -4.29178 -12.8539 3.79309 -5.30992 8.78888 -8.50507 5.24293 0.696614 -27.1639 -8.16071 -12.6229 7.69475 9.69411 3.29405 11.9113 -13.2117 -13.4025 -16.045 -11.6392 -4.8177 -9.6632 -4.03398 -122.454 -118.789 -105.082 -22.9335 -17.4347 -10.8122 -25.9623 -22.3328 -40.748 -42.2486 9.84006 6.1698 7.62197 12.3255 -22.1136 -39.7155 3.76711 9.54449 -4.85309 0.539665 -29.6384 -37.1898 2.1357 -5.45351 5.98395 5.02132 -28.2263 -23.4802 -39.5235 -31.5063 -13.1001 -20.5987 -19.8088 -141.719 -136.405 -138.004 -132.618 -145.463 -138.22 -131.691 -137.49 -133.523 -132.176 -126.642 -124.325 -132.496 -141.542 -104.755 -112.588 -129.499 -123.552 -113.932 -121.105 -122.334 -4.69529 4.04344 -9.6927 1.71023 -4.58494 0.856717 2.29012 425.944 426.259 397.224 403.355 403.245 424.759 408.677 -4.29536 -8.59799 10.6521 4.05991 4.05622 7.87818 10.8252 -30.6585 -13.8395 6.44995 15.9763 14.4394 -27.5531 -35.9634 -40.6704 -5.45346 -15.9036 -11.1652 -7.53133 -95.8488 -158.567 -149.363 -118.219 -115.559 -118.132 -90.3728 -142.433 -140.062 -170.672 -130.092 -134.425 -136.131 -156.279 -169.361 -121.211 -122.728 -121.76 -126.076 -39.3796 -51.7846 -0.562374 4.53116 -11.4849 -7.19498 114.494 30.1154 16.297 30.131 84.4394 116.606 87.331 22.5122 21.7743 27.9155 118.35 119.238 89.4806 88.7422 19.3671 24.4301 22.3183 118.534 120.04 86.3396 87.1287 5.46516 103.889 18.4708 21.6494 111.619 74.3315 81.3402 -15.2921 -12.4311 -19.1204 0.219857 -0.257903 0.913768 -1.97558 -5.06957 -12.4394 -15.683 -0.513303 -5.64112 -2.27771 -4.20982 -50.5231 -45.9052 -14.4603 -19.6304 -19.3703 -7.75262 -24.4731 -6.58328 -1.65799 3.00421 -6.44909 -24.4871 -31.4751 -41.7314 8.79355 -2.86219 3.4367 7.4822 -182.954 -187.929 -176.129 -189.072 -193.449 -189.48 -193.977 -33.1839 -28.4689 -21.9084 -20.9232 -24.3393 -23.8273 -23.166 -26.1051 -21.6458 -17.767 -14.2637 -13.7551 -20.6664 -9.72968 -26.9001 -19.4131 -28.1586 -18.1754 -21.9199 -23.4883 -15.8532 -30.8727 -22.6824 -27.1549 -17.7664 -8.68542 -12.4285 -4.38019 -19.2667 1.85084 -16.8392 4.48183 -17.7942 4.19351 2.07432 26.8535 13.5411 15.2557 14.344 15.1961 13.3482 17.1725 61.6749 27.4789 34.6853 21.6702 42.0808 33.857 43.0828 46.7175 53.1311 65.1172 50.6352 41.5995 49.996 41.7442 60.1583 76.3206 54.163 51.248 49.581 55.4574 52.2801 -153.979 -151.439 -69.0092 -79.5416 -95.2629 -18.1033 -132.691 -138.128 -165.716 -89.59 -128.1 -122.452 -5.52936 4.81992 11.1305 -8.71066 -2.53922 -4.23311 1.91219 18.6044 2.78541 -0.69984 -0.0736857 5.59228 3.17031 1.62821 19.8843 0.120756 20.407 6.33701 0.543503 1.32675 5.422 9.41932 4.75019 19.0786 5.8198 5.42076 2.86573 1.81269 -15.5008 -9.19205 -11.7716 -2.54177 1.90867 0.401515 0.337692 -19.1404 -10.6103 -19.409 -0.66219 -3.32603 -0.669498 -2.81378 -5.851 -9.9743 -18.0733 0.976151 1.3897 0.479725 0.0567065 18.3699 31.8085 28.7489 23.4364 20.9242 17.8861 19.8311 -16.4314 17.1023 38.3761 -72.6777 3.1757 -18.8556 7.49924 -102.44 -123.139 -18.3329 -107.332 -103.501 -22.8725 -48.9052 -128.409 -130.983 -135.96 -131.537 -134.885 -137.104 -135.471 -132.18 -128.045 -129.814 -134.527 -128.768 -130.208 -132.882 418.704 419.235 419.108 417.742 417.97 416.311 416.781 417.242 416.983 419.202 419.155 418.214 417.149 416.96 425.033 418.272 413.301 416.8 419.489 418.924 417.582 405.449 408.161 410.511 404.919 406.484 404.024 398.159 416.053 418.57 419.274 417.677 414.07 415.007 416.1 418.812 421.359 414.211 417.851 416.709 411.651 414.305 418.115 420.809 420.937 418.765 419.743 417.599 417.895 433.296 418.611 416.024 418.644 411.856 416.83 415.596 54.8206 -1.0708 -14.3172 -5.08957 56.6591 17.8205 25.1843 -67.7584 -29.3421 -95.7757 -23.2503 -65.5711 -13.6398 -14.4422 -177.74 -179.256 -180.966 -159.859 -162.45 -168.609 -144.449 -160.882 -173.977 -175.227 -184.479 -166.818 -167.813 -160.09 -229.579 -180.012 -211.231 -170.563 -186.168 -193.063 -161.643 -163.007 -176.411 -182.866 -160.285 -165.396 -166.96 9.9731 3.69685 3.24945 14.3908 11.6175 8.32295 -1.69538 30.2665 -0.986994 1.82706 5.03286 1.54663 10.5603 2.18007 11.8044 11.2101 35.5459 10.4824 5.88928 35.3034 4.67839 13.7245 6.30512 11.9078 10.0255 2.93749 12.1888 -0.704981 -1.71125 0.37094 10.0145 6.45779 1.22176 -8.06923 -16.2315 -9.36079 -1.30837 2.52666 1.70953 1.82566 -7.68165 -11.8091 -6.09673 -0.769947 -0.989734 -5.42368 1.85637 -12.408 0.723426 -4.0881 3.08144 -10.8079 3.74878 3.91511 -11.0654 -9.26996 -7.08584 1.9944 2.61645 3.5688 -0.0984792 -8.17356 -12.4405 -11.6253 -4.58549 1.09966 -1.36544 -3.47322 25.8449 4.45787 28.6345 19.3969 9.99204 10.8427 18.4884 22.8348 10.2007 27.0009 18.3684 15.5484 17.3254 11.5484 18.6835 25.2705 15.114 13.5735 15.6624 15.7629 13.7831 3.48099 20.872 -2.23777 5.06148 14.3103 12.2355 7.31957 13.1468 14.6159 25.1196 12.2173 13.8451 9.12245 11.6421 9.89228 13.7496 22.8816 10.6456 26.3799 13.1068 11.3512 37.0362 7.51823 38.8662 14.1034 7.3861 13.8774 29.0709 42.8173 47.3853 29.1043 23.7597 24.619 34.1435 25.2526 25.6388 -6.3097 51.6219 4.51956 21.2156 12.0033 35.2352 -93.9413 -165.717 -72.8777 -140.946 -132.988 -123.503 -80.7353 -67.2173 -62.6096 -32.0676 -28.8405 -30.9756 -27.3198 -76.9492 -90.7439 -87.001 -75.3677 -54.6333 -78.9989 -47.6468 -4.02969 -5.23093 -6.49534 0.487079 -6.29513 -2.09239 -1.07061 3.73256 -7.30258 -4.389 -2.88636 1.82735 2.58474 -0.334644 -29.5171 -24.5534 -26.107 0.239951 0.710294 0.71202 0.672562 -1.30248 0.518835 13.4531 3.95795 -3.61518 -1.19951 -0.499369 0.017575 14.8143 8.45213 2.83597 1.06912 -0.965229 3.88721 7.30158 14.7956 -1.93334 -1.38533 4.81071 2.5094 4.67785 17.2944 15.9886 9.69766 4.30073 0.111853 4.82255 4.10272 -0.725316 14.9785 2.20046 2.43879 1.69902 -0.240411 6.21698 -1.85128 -8.61594 -4.34576 0.846112 2.97388 2.67912 2.71774 13.0434 31.6612 30.7098 20.9208 17.5185 15.7849 22.7674 17.4645 33.9356 35.7574 26.3881 19.5401 20.6039 24.7931 -57.0073 -46.6762 -52.9046 -7.2079 -6.65729 -7.21777 -6.94152 20.4727 12.5165 8.48016 9.08278 17.0616 13.644 12.5487 16.9827 25.8714 25.2531 17.9441 17.4845 15.5461 17.5699 20.1909 20.6161 30.5542 19.7689 19.6312 17.2962 18.0676 10.8302 10.7449 26.8285 18.9152 10.4866 12.9882 14.3125 -14.6856 -16.8789 -6.9176 6.9179 7.57782 12.4829 9.79454 -11.0591 -23.2287 12.2446 10.3124 6.30982 7.04521 -19.9049 -29.4576 6.95988 4.08737 8.64514 8.97901 -17.5172 -15.114 -26.8763 11.2263 -0.182585 7.62848 6.1749 18.0939 0.703151 2.79898 3.80612 5.55896 1.80037 9.59677 -11.9443 -14.2117 -6.94585 -4.18774 -6.04182 -3.52563 -9.95287 12.5539 6.63387 4.15055 5.30549 10.6038 9.19875 7.82603 3.65102 23.9146 23.5397 11.7409 9.81339 6.75243 12.0442 17.7982 9.85527 29.054 15.2758 20.4057 11.6324 16.2022 -18.9002 -23.7 -24.7645 -3.71538 -2.97897 -2.85295 -7.08125 -19.0164 -20.4002 -29.8396 -8.38235 -9.33542 -14.5654 -9.29991 24.6423 53.3046 49.9631 37.6764 31.6406 31.9288 37.7375 3.98139 47.8868 35.786 19.0992 26.168 7.86538 33.5046 -161.481 -136.567 -150.736 -54.5138 -32.099 -42.1751 -53.2666 14.3112 35.6745 27.669 21.7575 20.6185 16.3516 23.4676 15.3169 37.0107 25.1282 24.5272 24.6072 19.7957 28.7813 24.9134 25.6792 34.7128 26.126 24.0132 23.3852 26.1499 44.5257 37.2933 29.4548 30.4823 31.3886 33.1704 31.1714 -61.1273 -66.3468 -34.6848 7.53331 14.0781 10.0557 21.7882 4.357 5.73455 0.182118 11.0895 23.5017 14.6692 17.77 13.3315 36.4828 27.0496 22.3022 24.5531 17.3885 25.0249 2.80961 51.0819 10.6161 17.3452 20.0614 32.5701 13.1769 15.6727 32.5381 47.5235 25.1467 18.0793 19.45 23.5449 63.1192 63.7475 -6.28669 1.30424 24.8226 27.8722 13.6993 -50.7348 -41.3413 -63.0563 -33.6291 -24.9434 -27.4406 -34.5201 -130.373 -134.427 -111.012 -108.501 -128.685 -131.407 -110.85 -38.3707 -105.062 -107.605 -59.5135 -79.1823 -40.6057 -97.1156 -170.22 -152.806 -185.919 -149.211 -148.947 -118.099 -168.556 431.279 417.696 412.855 -92.4008 -98.1429 -103.309 -102.449 -85.5289 -80.7972 -94.3067 432.514 -105.645 -94.4523 421.55 -96.1389 428.346 425.309 427.471 416.305 421.173 410.091 425.375 -112.331 -102.431 -89.2247 -94.6983 219.431 385.817 414.505 64.4132 -178.728 180.773 -109.267 -108.09 -93.7911 -100.316 -96.4875 -76.9861 -102.569 425.011 411.823 425.994 409.483 426.1 426.344 427.586 419.201 418.874 420.396 417.933 -94.9376 426.021 412.695 -96.7032 413.961 -94.2009 -92.8722 -88.1337 -184.327 -57.0203 -83.5614 -136.493 424.149 425.529 424.898 415.504 414.629 415.028 408.606 -103.568 -110.725 -125.351 -75.0485 -92.3023 -81.1571 -60.1276 -108.029 -24.4961 -193.698 -129.814 -130.98 -136.813 -128.774 -125.234 -118.698 -128.734 -125.316 -119.846 -133.279 -124.023 -122.309 -121.78 -122.226 -104.106 -118.153 -123.602 -117.831 -106.636 -104.957 -108.576 -132.009 -121.671 418.139 -124.655 -117.977 -117.286 -116.596 425.965 429.402 428.45 417.976 423.626 410.721 428.698 432.279 423.995 -111.184 430.057 429.574 430.868 427.429 422.412 419.623 428.183 423.059 419.232 386.466 316.448 395.906 -100.243 -194.635 -102.595 -89.6239 427.64 402.008 -203.923 422.666 426.162 415.408 378.184 401.983 395.398 392.773 95.3242 73.4506 164.33 259.413 58.2366 158.417 222.329 426.016 426.646 429.328 404.352 396.314 400.828 396.149 -90.8066 -95.9616 -84.9265 -52.0992 -94.645 -116.989 424.786 416.433 349.745 351.877 380.615 420.711 424.542 348.136 351.527 383.771 -80.2375 -80.7862 -59.2654 -108.262 -97.8051 -74.9054 -71.9239 -70.7849 -48.8362 -97.769 -83.1595 6.79458 12.4507 23.3921 9.25773 10.7742 7.62582 5.12147 25.9963 2.74195 -1.18513 6.00689 11.7308 6.5224 11.0258 -11.7935 -14.2671 -20.6441 -2.00662 -2.94539 -2.60885 -4.8594 -27.6402 -18.3056 -23.0159 -9.29938 -4.84695 -5.63503 -7.29531 -131.879 -132.972 -136.461 -123.166 -117.471 -118.118 -127.418 -133.57 -132.894 -120.675 415.39 433.026 421.588 -120.88 -149.364 -138.831 -129.046 -148.029 -134.964 428.624 431.188 419.565 420.876 424.636 420.784 423.167 424.317 406.68 383.202 393.492 399.552 -65.5701 417.071 343.057 387.922 -52.8927 426.833 404.001 -119.142 420.971 426.088 426.614 399.863 374.537 392.514 391.846 -46.8357 -48.328 -45.4587 -8.90397 -82.9261 -39.4596 -34.2623 -51.0922 -50.0232 -120.177 -74.0424 -41.5096 -55.9107 -36.9836 -28.1061 -60.4776 -166.693 -96.3981 27.1758 48.3677 30.9902 36.2016 34.3348 39.3971 35.5087 37.0391 -50.5083 -32.5544 -32.8744 -8.8375 2.17439 3.02552 -3.41181 -28.7386 -39.8915 3.1819 -9.03594 -3.06179 -7.8797 20.2259 38.6324 38.5541 26.3867 23.2013 23.1297 26.2525 17.2186 35.4132 19.8599 20.1585 20.2607 18.055 23.0755 36.4726 31.7876 24.7693 21.4603 22.7044 24.2199 23.7631 -11.7983 -0.316782 8.38998 4.5163 0.0063853 -11.1927 -14.0768 5.8845 11.4218 5.6411 1.73924 -39.801 -21.92 8.7618 14.5049 3.26034 12.4581 7.52918 39.4983 37.2459 22.5024 19.7391 15.3323 25.21 47.5631 14.9657 16.2839 69.1877 32.5495 18.7232 20.1901 17.9894 3.27308 45.3642 28.662 14.792 19.5857 18.7026 -44.217 -56.2291 -74.6078 -38.0605 -80.5751 -55.7079 -40.066 420.065 423.474 422.622 424.577 420.02 424.775 423.785 421.727 421.636 418.262 423.687 422.477 423.756 423.114 421.418 423.313 423.344 422.661 422.444 423.098 423.366 422.17 420.887 421.7 421.886 421.358 420.616 420.837 14.1067 55.693 91.7719 37.6609 36.8072 54.7549 64.7815 111.82 74.5422 105.059 70.1458 68.7306 80.858 71.1818 36.6318 40.3291 87.0941 68.0967 52.9506 54.9157 65.8875 82.7239 31.5877 66.5852 64.0481 58.6256 78.1378 52.5151 -125.184 -188.122 -261.005 -16.6245 -88.478 -62.7891 -41.2158 -126.676 -163.254 -36.2027 -118.521 -102.391 -99.2627 56.6576 27.8514 32.6209 39.4562 38.1071 45.9146 35.3006 -86.6585 -82.7378 -89.9766 -71.3712 -78.6478 -82.7019 -66.0123 -101.949 -105.309 436.81 421.472 -115.118 -177.233 195.374 441.369 395.943 88.8033 -246.261 222.663 -95.1385 435.175 438.262 415.852 418.754 389.193 78.7153 267.953 247.125 401.601 -84.6608 -82.1819 -82.9133 -66.0542 -107.27 -101.565 -70.5642 -82.3408 -84.2133 -83.336 -66.7549 -80.747 -65.8589 -82.4634 437.743 436.232 422.245 424.391 434.724 434.945 419.993 419.423 423.757 423.603 425.887 424.317 430.722 429.042 426.092 424.533 421.925 425.297 432.439 425.346 425.345 426.603 -66.0624 363.403 416.622 -109.824 382.073 -35.351 -41.1654 -42.9981 -93.0477 6.50892 23.4272 -99.5349 416.82 390.295 388.272 -35.2336 -41.5392 -37.7338 -87.2358 7.45168 31.7722 -101.654 416.444 353.679 375.495 375.722 353.222 416.742 390.727 390.804 -86.2619 -87.1821 -85.2534 -71.0007 -90.2747 -74.0116 -86.8592 -86.2097 -83.3173 -84.6812 -69.9364 -82.665 -84.5616 -68.1222 441.81 443.318 431.681 429.843 442.635 443.124 431.167 430.177 -81.7766 -66.7847 436.55 426.142 421.467 438.729 437.625 422.789 426.166 -157.748 235.267 405.122 392.109 102.298 256.965 402.448 123.495 284.076 404.453 278.753 402.461 422.407 402.446 340.759 382.992 348.279 383.467 -37.1104 -46.9266 -44.8689 -102.024 20.8948 34.4734 -115.972 416.957 304.04 390.889 384.852 -48.0496 -51.5811 -52.5935 -112.052 5.85527 0.315691 -110.336 -80.8973 413.009 376.003 380.846 416.854 388.998 385.72 45.3411 32.0542 14.7287 21.697 32.6159 29.7442 28.8724 15.5441 41.6915 64.0727 39.7691 29.3737 34.8993 28.9304 -41.0613 -24.5957 -26.476 -18.8373 -8.95519 -9.07146 -13.7394 -47.9389 -24.4725 -96.2391 -42.5005 -16.8362 -26.2653 -32.3793 424.421 422.828 422.603 423.183 422.737 423.729 423.792 52.3646 28.8388 15.3805 19.0114 87.1922 40.772 30.8688 -10.45 73.9826 -4.33685 22.0226 27.8458 59.6938 2.51668 14.9142 66.4089 78.2802 45.9738 42.2899 29.0334 55.9264 23.6252 85.6662 63.6412 52.9965 35.0118 59.8813 34.8025 -256.245 -178.327 -156.483 -173.366 -159.928 -196.234 -221.072 -316.647 -238.736 -139.589 -120.418 -161.894 -124.741 -155.546 -158.461 -180.608 -142.373 -143.139 -147.201 -128.469 -167.515 -242.621 -58.7695 -83.9815 -143.515 -32.6455 1.52694 24.2161 8.05632 8.62905 8.744 4.72456 15.5889 24.618 5.8324 28.264 13.1046 9.26676 11.6791 6.95953 18.9061 2.96381 27.2696 13.5816 5.26823 11.2217 7.00968 13.9614 32.2897 33.5702 18.1744 10.2408 13.3589 17.6759 -7.41507 -17.7119 -15.4135 -1.42922 -6.21914 -1.10816 -3.63262 -113.05 -104.732 -107.677 429.47 429.077 429.108 422.084 425.48 428.715 416.336 398.188 98.8408 -128.353 108.767 213.14 -193.583 -95.7803 -99.0418 -102.192 -101.362 -94.683 -85.159 -98.2892 -101.27 -104.688 -98.6949 -96.0029 -88.5309 -99.8831 -99.7263 422.896 417.864 435.445 433.371 433.986 427.594 425.074 428.221 426.575 428.961 428.269 423.343 416.458 424.184 415.697 428.608 430.292 413.865 406.221 421.498 425.528 427.178 414.359 413.184 420.142 -118.353 -113.943 -115.945 -116.736 -124.896 -112.032 425.173 -117.955 -116.167 404.463 -115.012 121.594 -118.3 -194.565 66.2719 96.2714 -91.5775 -119.64 -123.032 -120.272 -103.842 -117.308 -116.797 -112.48 41.2284 18.0401 10.5838 22.5242 29.246 30.8153 21.6458 27.923 27.028 37.3812 25.3202 26.9783 24.7681 22.1244 -39.7493 -57.8791 -13.9779 2.86439 -3.98101 -0.795364 -45.3251 -22.3139 -34.1713 -0.130098 -2.01237 0.99099 -6.25512 -97.6395 -106.483 -118.016 -105.011 -95.0379 -108.108 -115.83 -120.268 -121.133 -105.319 -153.648 -185.269 93.984 165.342 105.968 -70.4774 433.157 434.117 432.969 427.253 422.942 425.893 -107.182 -110.5 -143.755 -128.568 -112.099 -127.344 -135.403 -157.873 -118.533 -119.822 435.534 435.179 428.623 427.258 425.297 433.23 424.136 -102.915 432.743 434.386 432.431 426.207 427.221 425.381 429.169 429.064 431.54 430.82 426.953 415.454 422.904 417.962 428.569 431.574 417.36 417.139 420.373 -138.546 432.55 416.032 421.757 -131.752 430.412 432.567 432.231 423.174 421.658 420.508 424.239 427.279 428.55 419.268 416.527 421.489 404.584 427.826 428.678 417.903 411.007 423.86 -126.157 -129.539 409.563 -110.322 -121.302 -121.898 -125.119 -118.941 -117.073 -119.36 -178.206 346.104 107.316 93.4047 74.2241 -146.833 -134.58 -138.235 -128.289 -159.9 -128.673 -124.523 -132.408 -136.365 -112.413 -105.153 -118.905 -102.632 4.69204 7.18148 -2.3199 3.66779 42.788 22.4421 17.2036 7.88551 72.2853 54.3299 30.2908 42.2403 37.3051 23.9783 36.2129 21.3625 49.4361 30.303 30.0069 26.1993 26.6972 -178.621 -163.05 -180.58 -177.635 -184.024 -182.147 -161.68 -139.101 -148.384 -147.076 -85.8772 -167.368 -118.01 -131.666 -49.4241 -39.1314 -86.0435 -31.4478 -21.7659 -19.1031 -37.4906 41.6179 -15.4254 -26.7917 -14.8179 31.3474 22.1616 1.86449 -103.657 -109.431 -107.203 -93.4185 -99.9558 -96.9912 -103.757 -93.4289 112.33 92.5657 98.8643 -163.649 428.803 431.296 428.503 415.402 426.357 422.684 422.319 -95.6576 -93.5858 -87.6387 -90.615 390.618 306.769 104.724 170.237 404.329 431.633 432.678 433.033 428.8 424.61 425.837 427.461 428.804 407.796 430.765 421.381 420.935 433.248 425.837 -84.3052 426.815 -108.242 -93.9808 -103.153 -97.1919 -104.441 -89.2183 -94.3284 410.734 431.379 410.736 -117.958 -134.57 -129.057 -146.048 -117.069 -140.263 -125.835 385.623 112.519 275.955 386.144 114.146 429.413 -137.561 -129.897 410.205 410.06 -140.046 -139.332 -145.218 -107.892 -120.149 445.818 -150.94 -151.103 -119.931 409.588 409.878 -136.529 49.9327 -150.979 -168.774 205.634 376.053 77.3836 -122.189 -122.968 -116.083 -106.002 -113.552 -106.628 -109.329 -115.959 -115.443 -120.125 -102.123 103.583 -88.7723 -186.434 -125.818 100.295 105.301 -49.1733 -187.784 198.348 94.2215 100.956 351.401 -114.984 -126.112 -115.373 -110.844 -101.262 -102.832 -115.934 -97.7586 15.3815 35.2274 16.1576 17.9778 25.0845 17.5624 23.8681 6.36794 29.4478 12.2119 14.2883 12.4107 10.1959 18.6995 24.2059 24.7775 30.8233 20.3831 14.4757 20.1309 17.2677 14.775 11.7999 5.54302 16.1421 28.6761 22.8128 19.839 26.0052 26.8604 8.5831 8.70487 13.2098 12.383 15.6311 -31.7988 -23.3338 -45.2656 -41.3706 -24.5033 -27.3116 -31.3284 -17.5917 -19.8293 -12.6011 -5.78144 -7.4189 -6.39884 -2.30691 27.7275 6.27053 11.7549 14.2917 12.2747 10.7574 18.1791 -30.701 -32.1086 -24.582 -11.0548 -17.5864 -12.4079 -22.1235 17.6092 8.94158 6.43448 8.49341 14.7823 14.3127 9.83859 6.48462 22.9274 20.7528 9.77829 13.038 8.26692 12.2772 -16.1829 -19.277 -24.4273 -3.92328 -7.37537 -4.17116 -6.73468 -9.61214 -3.63398 -13.8572 -1.08532 0.613747 -2.0163 2.88859 2.3429 16.4337 11.7518 4.76939 5.55636 2.20416 6.19916 0.227426 15.9195 7.77169 4.10428 1.53766 0.0555714 5.01237 2.61122 3.34559 15.8167 5.98759 0.00945176 2.42372 1.92074 14.0032 10.8457 0.236132 -0.606611 4.20162 2.39185 3.32354 -15.1808 -30.4552 -30.0435 4.7595 3.99649 5.40009 1.38434 -13.5275 -32.2153 -22.9208 5.04164 6.02661 -1.77827 6.98405 -24.4046 -24.0313 1.00625 -2.33307 3.12783 5.20425 -25.9017 -27.8899 -15.6322 6.98482 8.11944 7.23391 8.19832 -62.6045 -43.44 -49.7053 -113.097 -128.564 -86.4114 -107.592 -42.1565 -45.7487 -36.2571 -116.688 -80.6845 -108.086 -72.8893 220.872 107.083 130.428 194.22 126.295 187.752 211.645 278.189 131.548 193.967 206.673 201.514 211.272 260.275 176.186 147.192 141.682 198.316 232.663 232.142 192.337 267.66 121.71 196.969 180.281 196.062 183.733 251.577 321.896 325.835 347.085 372.744 345.35 356.152 361.776 -11.8259 -16.2566 -14.1951 -11.336 -8.72097 -9.1169 -12.7499 419.498 419.127 417.609 417.206 419.532 418.883 417.996 -15.5111 -27.2834 -20.4813 -5.8453 -6.34955 -9.09214 -1.53645 -12.2422 -14.4406 -8.98133 -9.65315 -13.6146 -12.326 -9.08747 346.916 348.548 359.885 290.366 372.888 304.249 327.912 269.805 350.056 299.223 296.821 316.912 313.577 251.687 -142.685 -105.995 -119.554 -61.8936 -68.6343 -45.9707 -53.0141 -53.6977 -92.3967 -46.2541 -54.177 -33.5731 -46.1228 -31.3771 -72.8428 -63.1274 -61.9969 -55.4863 -47.0196 -46.3976 -58.3136 -63.0666 -76.1631 -96.4384 -93.2864 -75.4213 -64.4593 -88.8274 -42.3159 -52.6234 -61.6806 -43.4706 -40.8308 -56.3504 -45.7681 -111.87 -135.695 -114.981 -129.437 -117.601 -124.128 -113.852 -46.5197 -44.4771 -55.8169 -42.8647 -42.6562 -46.5425 -49.3929 -130.797 -152.721 -115.067 -127.483 -138.227 -142.244 -115.471 -16.7302 -20.7337 -22.0341 -17.7542 -21.4086 -16.7217 -18.6033 3.49474 -2.84733 -2.51172 1.83697 -0.219788 0.257788 -3.19917 -18.923 -12.5001 -14.4382 -7.75886 -11.6488 -17.4197 -15.5487 -22.5283 -25.0272 -18.1671 -24.6316 -20.3914 -20.5944 -26.7964 -5.28776 -4.01541 -4.72886 -6.50145 -3.93563 -5.87627 -6.21453 181.215 156.603 110.049 90.6846 135.9 99.1742 185.468 -88.5555 -64.4458 -63.6466 -58.8482 -92.2975 -67.5798 -72.3408 -56.3362 -39.6183 -52.3484 -34.0886 -33.1759 -44.9165 -20.5108 -59.4415 -69.9513 -58.372 -48.2342 -74.9102 -54.9992 -51.02 -61.8214 -105.25 -84.9788 -73.5608 -87.3357 -74.6713 -61.8498 -18.3376 -17.9596 -13.6793 -19.3474 -15.623 -20.4179 -16.4389 -77.1173 -112.931 -95.902 -61.7577 -93.7335 -61.8443 -73.6961 -47.3195 -40.034 -34.5258 -20.0229 -12.3624 -29.3107 9.91009 94.1096 176.304 165.363 137.093 94.5635 87.4761 155.71 211.809 167.296 262.368 282.575 153.342 305.415 204.862 280.499 350.083 302.042 285.03 319.49 338.824 264.636 168.364 179.258 262.298 220.607 184.422 231.459 157.701 138.977 216.236 209.825 293.725 229.722 221.171 147.451 321.471 241.668 303.529 332.034 249.641 350.483 302.158 331.896 273.541 337.181 348.83 291.35 362.364 312.57 246.536 283.337 329.708 286.262 293.286 296.006 242.346 204.949 153.663 239.724 193.369 154.332 243.798 196.556 117.638 185.582 106.634 86.033 150.464 130.239 89.0265 330.494 268.073 337.323 347.464 284.406 361.961 308.901 296.17 312.878 228.485 326.958 234.874 344.861 294.209 284.698 226.179 225.893 194.247 254.504 259.857 197.369 -147.988 -149.887 -138.519 -151.975 -124.75 -113.687 -134.617 -46.2632 -42.8319 -37.7247 -22.0791 -4.28288 -10.6773 -30.0885 -16.3451 -33.9141 8.97646 1.46163 1.1151 -4.56735 305.526 341.529 288.754 357.349 358.299 306.791 285.162 276.283 205.769 286.85 297.929 219.664 219.234 286.982 307.867 289.541 355.874 342.429 307.775 356.304 288.358 -153.802 -121.632 -139.767 -140.138 -113.07 -146.278 -114.568 -8.91214 -13.5113 -6.25938 -10.9152 -4.58367 -11.7529 -14.3982 293.162 201.682 141.422 222.06 205.434 237.278 273.738 343.439 358.547 286.565 348.234 370.804 302.594 323.898 344.724 279.964 292.787 242.306 303.109 314.588 325.557 302.191 225.791 149.886 216.918 233.901 229.635 282.771 339.058 349.148 268.913 323.326 361.938 284.277 320.924 225.29 337.753 285.774 271.272 304.358 289.458 321.661 156.105 123.504 117.621 190.439 236.391 241.127 186.547 357.789 290.294 310.105 284.494 326.848 344.497 267.805 206.06 119.909 210.168 175.925 109.715 101.959 182.397 -17.9519 -10.7197 0.237939 -11.8958 -1.26959 -5.28682 5.08163 -18.19 -17.5224 -16.7575 -21.1086 -15.4882 -20.2476 -20.5704 -51.8971 -43.3018 -35.372 -44.2168 -44.3615 -38.8585 -67.8307 -87.8778 -69.057 -87.8239 -67.8187 -72.8337 -87.4511 -18.4393 -19.1471 -21.8625 -17.4554 -21.0887 -24.9783 -2.18934 65.8866 108.026 -139.795 14.8604 118.652 -147.408 390.769 188.809 347.522 336.937 333.849 313.642 402.181 -128.262 -133.615 -126.762 -133.798 -126.846 -124.884 -134.61 -119.998 -115.284 -119.216 -116.591 -119.399 -120.034 -117.621 -141.308 -139.266 -155.891 -144.834 -146.26 -150.379 -137.643 -126.433 -118.154 -124.92 -129.23 -127.84 -126.708 -127.297 -9.8328 -10.5874 -15.5205 -10.6734 -11.5332 -11.9168 -7.91074 277.307 278.251 280.171 282.322 272.016 267.141 283.503 -135.435 -134.962 -136.018 -144.023 -140.231 -133.137 -141.618 -124.039 -132.394 -121.032 -129.203 -133.485 -117.659 -124.73 -31.0132 -32.3097 -43.4809 -36.373 -28.2549 -34.3238 -38.3322 415.146 420.83 420.579 419.808 419.92 420.488 423.544 418.277 416.365 420.052 419.669 420.265 419.687 419.135 417.65 419.442 418.852 418.467 419.695 418.534 418.553 417.99 418.734 419.089 420.367 419.166 418.555 419.022 417.904 420.061 425.471 421.981 420.252 420.792 422.716 419.052 420.257 417.13 419.844 418.144 419.319 420.377 327.351 276.303 270.364 358.618 286.802 319.1 361.955 422.906 419.156 419.428 421.63 420.573 421.613 422.56 -140.238 -147.148 -139.214 -138.815 -138.855 -142.122 -142.12 -144.567 -150.874 -140.228 -163.969 -154.126 -141.746 -153.079 -142.653 -139.841 -140.57 -144.731 -147.871 -140.536 -135.73 -56.5845 -57.2899 -42.0751 -46.6573 -53.7907 -45.1961 -60.8427 -16.917 -5.73315 -8.35462 -19.3833 -10.1931 -23.2147 -11.0484 -20.4396 -22.1224 -20.3962 -16.1434 -23.7256 -20.2076 -17.1899 5.30033 -4.75901 -12.6159 4.3008 2.50954 -8.33753 8.64361 278.63 289.408 275.163 287.779 284.445 286.143 281.544 407.324 244.246 358.702 386.881 409.818 349.383 379.882 -98.3422 96.4816 -144.71 44.0111 -128.845 47.2678 -97.9452 -47.6056 -132.284 75.2506 76.122 -112.722 -65.7399 81.8159 -78.8902 -114.137 -86.2123 -57.5853 -75.2049 -100.348 -67.6594 -15.2727 -13.9651 -16.7309 -12.5439 -12.8526 -16.5774 -14.9402 -138.341 -155.194 -148.711 -137.917 -121.259 -147.015 -115.652 -18.8166 -13.9038 -13.9366 -14.9661 -12.0074 -15.2523 -12.8304 -51.3168 -60.3662 45.7924 23.9224 30.787 -10.8346 20.7706 -59.0459 -33.8672 -37.7462 -43.039 -46.5923 -35.7904 -41.5535 -0.149432 10.5612 -0.548146 0.704319 5.78448 4.88499 1.26556 -18.473 -33.4033 -16.0171 2.05496 -3.32591 1.60906 7.56826 -71.0202 -32.549 -45.3944 3.55888 5.76862 -11.3233 18.3432 -94.4846 -66.7089 -64.1519 -34.8935 -66.1331 -10.3632 -57.1117 100.99 -121.771 20.3834 -4.73006 83.9569 85.0259 -85.341 -183.883 93.6108 223.237 -117.486 119.046 362.206 -105.923 79.8251 95.5752 -139.129 139.02 371.897 97.2527 -195.629 204.53 237.565 375.8 59.2648 204.952 191.92 233.849 -97.5045 188.066 131.349 408.621 184.361 176.506 61.1166 390.224 397.579 -183.678 394.531 125.593 154.409 100.522 398.402 374.046 99.223 321.122 233.792 401.364 -121.768 97.7818 96.6275 -201.861 166.467 399.047 187.516 190.881 377.397 360.249 302.079 107.564 217.352 155.537 323.101 269.003 258.971 75.2999 86.4676 194.772 88.5637 221.633 160.775 98.2785 97.3994 120.446 99.0478 226.931 230.461 124.391 272.722 129.709 244.022 224.142 276.655 330.119 325.199 107.546 318.513 254.732 264.986 283.232 337.77 321.263 133.794 341.488 104.387 126.949 234.182 229.892 128.683 178.091 122.282 -187.707 59.4719 -94.9327 -66.9708 79.7838 79.0928 -133.598 -185.24 390.889 134.057 97.3059 93.728 403.726 -202.965 154.495 178.737 368.759 282.362 370.781 76.8385 275.557 202.531 400.732 391.927 400.256 195.704 356.944 344.495 266.088 413.225 -122.818 69.1787 82.1761 -202.93 -215.401 125.468 199.151 237.345 336.115 258.287 130.77 315.795 275.026 167.358 133.695 313.614 204.888 261.094 252.965 120.801 310.754 272.52 186.132 102.73 314.297 236.549 242.978 86.5269 142.105 278.011 188.926 159.855 112.747 203.243 -4.25865 -10.2881 -4.13015 4.83155 12.6195 6.94882 8.51195 -6.39593 -6.79193 -4.89598 0.58499 3.60207 -1.57561 4.38895 -22.4611 -11.7287 -30.8869 9.05572 -0.544728 2.95217 4.07484 -11.9399 -14.2797 -20.0625 4.13254 -3.40767 -0.258538 0.963382 367.688 277.901 407.137 416.697 324.762 357.321 405.034 400.948 271.691 128.401 401.346 278.661 240.063 254.111 124.169 117.365 335.716 288.226 261.775 142.966 340.133 315.518 273.963 305.219 271.316 173.819 401.247 161.278 284.102 288.818 402.731 400.865 162.974 278.642 398.722 285.324 257.957 249.913 87.0267 122.009 328.844 289.566 259.097 155.115 314.924 334.167 270.657 183.189 304.446 267.98 -141.988 -157.296 -168.722 -106.902 -139.171 -134.258 -132.056 -62.6126 -37.6201 -47.5787 -19.3924 -19.8698 -7.23173 -24.3158 382.49 404.661 337.163 118.315 262.387 409.769 400.007 409.689 374.791 252.65 318.291 418.992 385.759 409.95 167.082 207.435 89.4581 369.258 -115.736 -130.447 94.7415 85.858 73.7244 -74.5691 413.428 232.675 254.622 403.877 336.238 417.243 -94.7314 98.1968 91.4142 132.856 -157.473 -212.813 380.802 342.27 315.609 103.139 398.334 228.463 381.12 388.306 345.077 139.525 406.966 241.082 400.726 228.061 362.244 272.449 140.119 391.882 228.834 92.8248 110.855 359.936 -183.404 412.449 250.908 248.138 411.275 148.871 407.322 -172.048 -150.434 92.557 162.71 -72.2255 102.613 415.617 247.386 243.461 341.03 408.546 412.669 414.467 240.857 229.012 412.893 103.943 396.316 -215.447 -192.786 145.546 82.8855 -91.0415 74.1891 -198.977 -116.242 92.3437 70.378 69.5711 -91.5025 411.146 406.466 364.229 238.288 331.593 419.227 375.04 409.5 -205.802 193.916 152.151 395.04 278.719 -99.3598 52.2357 70.3909 88.7381 -307.196 -213.782 385.243 401.634 88.5745 334.253 405.848 212.461 357.991 92.0146 278.5 400.829 187.211 355.733 -152.833 110.19 110.771 225.964 383.719 381.088 197.508 355.259 296.661 407.499 308.467 -82.5805 -88.5873 97.6273 90.4446 -149.247 98.5925 -57.6318 -76.5455 -11.3345 73.7698 79.6056 6.88626 -138.667 85.5408 -126.452 54.6029 101.393 -283.719 62.553 -143.526 166.833 53.9962 91.808 -111.491 373.113 418.136 288.182 344.472 235.448 410.336 404.065 330.002 356.304 400.889 400.898 143.924 287.614 395.901 -186.549 113.643 210.357 402.91 257.226 -189.981 66.3139 -105.196 -27.7705 71.0501 -156.558 107.886 271.408 382.796 89.8631 387.88 109.446 -183.495 379.356 209.551 86.2565 378.581 -235.999 63.1616 398.327 210.039 352.06 257.737 118.933 385.269 -29.5366 -43.268 -38.1207 -33.7908 -32.7303 -35.8914 -29.7609 -17.6281 -10.1975 -10.4275 0.290027 3.13835 -3.88589 5.46571 -7.56647 -8.80092 -5.30942 7.65958 5.14256 3.99253 1.55883 -0.275061 1.39107 -0.219907 3.48937 0.490497 1.02763 -0.898877 -16.3014 -11.8963 -14.0065 -1.05303 -1.00139 -4.59785 -7.26851 -15.2192 -14.6306 -12.9813 5.84376 -1.2351 1.86705 -4.88686 -15.4089 -22.0141 -14.344 6.91898 5.32918 1.72427 -2.93585 -143.276 -143.478 -138.596 -148.003 -143.098 -140.989 -148.715 -28.1701 -28.8869 -23.0995 -0.983751 -10.3271 -8.42815 -13.4257 112.697 196.273 192.123 175.148 113.103 101.874 182.258 244.235 142.913 142.414 232.626 140.507 252.088 225.983 105.067 135.543 167.196 206.523 130.23 149.975 105.697 133.095 206.924 123.723 104.366 169.029 151.705 105.802 348.994 355.073 360.671 303.879 372.704 323.379 342.255 137.095 99.458 98.6148 127.273 198.674 191.884 130.892 -32.6838 72.7202 79.8934 -194.7 115.059 -80.9081 -151.899 -120.188 61.2626 104.547 -107.689 42.5478 -13.5672 -0.895957 -10.9959 5.41504 2.4748 -0.0211282 -24.4814 -10.726 -11.2443 2.02515 3.6472 7.8554 -0.926666 -37.8933 -194.266 85.7441 95.1788 109.12 -66.4916 -112.698 403.386 169.015 255.162 128.073 386.923 398.014 407.056 372.242 229.637 361.787 286.785 419.382 -96.4314 -89.1536 -97.7473 -74.514 -95.7379 -84.4741 -91.8553 4.67692 55.6645 -73.2307 87.6572 103.044 -35.9573 -112.016 275.752 388.46 380.617 109.757 250.528 -139.778 -132.456 65.3261 85.31 -88.622 61.1019 -147.945 -128.506 55.9896 75.0842 -99.2125 62.573 -63.9107 -102.63 98.1784 98.6901 94.6262 -51.303 -181.778 396.991 408.564 218.54 362.642 353.657 285.424 420.102 -82.6356 -89.8089 86.7665 89.4072 107.981 -63.7273 -191.425 -207.13 74.8392 -94.8443 -18.9873 78.8116 114.121 -137.058 -118.27 -121.23 -116.377 -125.485 -115.093 -111.317 -122.987 -132.233 87.178 -57.4662 103.313 95.2065 -64.0187 -96.7596 405.29 306.253 380.38 322.826 358.441 399.742 390.186 -46.0301 -174.626 87.2149 92.8494 -95.9562 -63.3889 90.9917 -135.982 105.495 57.7734 40.0006 -147.97 -15.4883 -11.6503 -15.9212 -15.0805 -17.6021 -14.0858 -13.1899 -9.85507 -21.8533 0.15006 -12.0871 -0.0619193 -3.20634 3.80988 -103.83 -64.5273 101.389 105.08 -33.7498 118.452 -152.735 248.391 140.323 146.109 233.786 136.734 253.696 230.387 -165.944 116.976 57.7763 49.636 -152.557 244.724 137.475 119.99 211.17 133.949 218.521 224.408 -165.38 24.0177 113.476 46.8717 -158.034 -134.578 42.0625 96.6897 -150.666 52.8352 -6.23074 -8.01222 -10.1053 -8.10162 -7.61149 -6.60603 -7.55386 -7.07711 -7.13681 -6.62869 -6.7645 -7.23639 -7.16514 -6.60896 -3.30208 -4.6969 -7.36483 -4.46205 -4.75433 -3.21882 -4.74434 -8.90646 -8.58653 -8.02866 -8.14847 -8.50829 -9.14273 -7.97144 -12.2943 -11.7191 -11.2634 -12.4766 -11.5361 -12.4666 -12.2009 -8.32745 -7.57142 -8.84581 -9.05696 -7.78176 -7.89988 -9.4155 -3.50022 -3.24559 -4.35433 -4.4062 -3.27483 -3.36657 -4.61174 -12.5171 -5.48674 -10.0434 -5.70184 -14.7531 -4.81037 -11.9143 -15.3011 -12.4779 -12.2515 -20.7009 -20.1103 -16.9825 -16.2142 -15.7643 -16.0739 -15.2703 -16.0415 -15.4245 -15.7521 -6.86573 -7.37476 -7.85622 -6.16095 -6.72701 -7.81974 -3.45758 -3.78723 -3.85842 -3.45175 -3.4755 -3.79824 -1.36266 -4.59172 -1.93653 -4.08163 -1.75591 -5.28425 -2.13541 -20.8662 -6.79443 -16.947 -8.21592 -31.1756 -5.99466 -25.0022 -31.832 -23.0203 -27.212 -43.7693 -45.5789 -36.1371 -39.8323 -16.5439 -13.5208 -14.2137 -15.5071 -14.377 -16.2131 -16.6165 -2.18964 -2.6284 -1.43266 -6.34553 -2.84133 -4.77843 -2.1331 5.8769 5.95444 6.66762 5.89282 6.42658 -3.96309 -4.7802 -3.54945 -4.30864 -2.98965 -1.34509 -1.15276 -2.45101 -1.43358 -2.34735 -1.46941 -1.43779 -1.43969 -1.4784 -1.43598 -26.4905 -23.1005 -27.1255 -23.4289 -25.9987 -23.5986 -27.3709 -9.8559 -12.6155 -2.5647 1.59552 -8.7195 -1.18361 -19.088 -17.6152 -2.94459 2.98162 5.57149 6.01654 -9.27953 -4.14286 6.94396 6.98894 6.98318 6.82893 7.19268 -109.74 -92.4535 -90.7745 -85.9144 -97.9951 -113.037 -94.4677 13.1137 12.1123 10.8549 20.067 15.8893 15.657 12.7337 9.52331 9.5749 7.98484 10.9148 8.81745 10.4411 9.3332 -15.3956 -14.45 -15.1155 -15.6776 -14.631 -14.855 -16.1458 -8.41948 -8.09427 -9.86035 -8.90847 -8.56559 -7.67137 -9.69147 -3.28831 -3.09741 -4.51646 -4.10294 -3.37003 -3.01561 -4.41281 375.671 326.541 332.082 348.402 351.044 359.771 364.325 431.648 435.359 432.025 430.126 434.021 432.76 428.647 331.371 318.087 280.221 342.056 288.363 352.911 323.027 -0.457451 6.69502 -0.18663 13.3367 -4.57472 6.17213 -2.74135 -16.119 -7.12731 -10.6706 -17.8807 -21.5235 -10.179 -13.9565 -16.1044 -10.7453 -11.5485 -25.8563 -15.6261 -12.9209 -11.1578 14.6075 14.1386 12.3171 14.9596 13.5113 15.7066 13.1801 -12.9075 -9.32499 -7.76468 -9.78216 -8.92906 -12.1487 -9.73714 -18.019 -17.9196 -19.2992 -15.9794 -18.855 -16.5138 -17.6051 -180.251 -176.683 -171.271 -176.782 -183.789 -180.661 -168.494 -91.0445 -88.7001 -79.1225 -86.5014 -86.3076 -92.2669 -86.3831 -7.7271 -7.7074 -7.78052 -7.65812 -7.81685 -7.60986 -7.70467 -11.1862 -11.1523 -11.0445 -10.8049 -11.2986 -11.0139 -10.915 -8.43539 -7.4576 -8.82658 -8.61619 -8.29025 -7.52866 -8.96952 -4.24145 -4.19813 -4.68516 -4.70495 -4.19708 -4.15918 -4.77128 88.3408 167.601 142.38 169.735 105.616 95.3477 181.666 420.653 423.28 424.213 422.372 422.808 420.703 422.806 406.079 407.078 407.227 405.821 406.636 406.869 405.736 417.5 417.7 416.055 415.657 417.49 417.271 415.78 311.239 305.636 334.695 341.373 299.645 314.09 340.631 -21.6792 4.4416 -11.2486 5.68434 -25.5902 8.54483 -11.3506 -63.5681 -25.926 -36.069 -47.8464 -69.7653 -29.0915 -39.2608 6.14568 7.52565 3.80299 6.13264 6.32658 7.55371 3.59623 6.92204 6.8481 7.20836 7.23497 6.88536 6.85135 7.201 -0.455359 -0.582165 0.330796 0.10914 -0.463424 -0.60248 0.346993 -2.20377 -2.73189 -2.57276 -3.14171 -2.15921 -2.95916 -2.69046 -2.60052 -2.61058 -2.62113 -2.73027 -2.57283 -2.58295 -2.64549 -9.5009 -11.2014 -11.2376 -14.2712 -9.5011 -11.2068 -11.2222 -7.40282 -7.39855 -7.47059 -7.47535 -7.42555 -7.37223 -7.45582 184.461 104.625 195.996 114.24 184.161 100.015 195.5 5.41489 7.07626 2.93627 5.49793 5.53938 6.95405 2.80329 -7.36547 -7.28653 -7.36357 -7.39909 -7.37731 -7.28041 -7.43535 -10.8944 -10.7004 -10.5789 -10.5071 -10.8248 -10.7643 -10.6518 -7.62718 -6.85224 -8.28403 -7.84514 -7.76886 -6.77286 -8.16126 -3.9945 -4.04646 -4.56913 -4.50872 -4.05832 -3.99306 -4.47397 -39.028 -29.4474 -26.1951 -9.5147 -42.0068 -27.6294 -17.5187 -89.0491 -72.9859 -88.8233 -62.5171 -93.65 -71.011 -86.6532 424.9 424.457 421.731 423.199 423.496 425.349 422.995 423.174 425.264 419.417 428.273 421.153 427.981 426.108 4.10513 5.72908 1.91435 3.19106 4.70716 4.77504 1.02677 5.77934 5.81405 6.1243 5.97654 5.89428 5.69765 6.02954 -1.28045 -1.3132 -0.412948 -0.79759 -1.06928 -1.51878 -0.558184 -2.50529 -3.26407 -3.49884 -3.56536 -1.88286 -3.26647 -3.2549 -2.67582 -2.7163 -2.97645 -3.09503 -2.69916 -2.75966 -2.99239 -32.6814 -28.4372 -29.9852 -27.5638 -32.1431 -29.5267 -29.057 -138.878 -142.601 -149.664 -152.616 -139.835 -139.015 -151.395 308.449 298.592 256.746 311.141 293.539 315.621 300.283 -63.0725 -64.1196 -67.8555 -59.9833 -18.7711 -20.5895 -18.8352 -18.8945 -21.627 -16.4442 -18.2321 -19.1499 -16.6595 -18.7173 -16.1431 -16.6773 -98.152 -141.137 -158.512 -57.2195 -65.9851 -99.5647 -116.038 -170.057 -166.647 -147.335 -147.503 -168.637 -166.06 -149.321 -0.621193 -14.4461 -16.7391 -2.46142 -4.34196 -26.9363 -6.67656 -8.68028 -8.62428 -8.56657 -8.4667 -8.67203 -8.73768 -8.55842 -11.8481 -7.7533 -13.0574 -8.33396 -10.4466 -7.49035 -11.3128 -137.532 -138.399 -147.583 -147.349 -139.317 -136.836 -146.958 330.212 365.572 358.483 307.692 368.462 329.543 315.31 -144.149 -140.729 -153.243 -153.938 -140.457 -143.492 -153.798 -7.57097 -6.46133 -8.71935 -8.03543 -6.96703 -6.84783 -10.1509 -7.97762 -8.17582 -7.23046 -10.0044 -7.35298 -8.70955 -8.28193 -8.56401 -8.67211 -8.04789 -7.98975 -8.54613 -8.48368 -8.0306 -12.4765 -7.59182 -14.8346 -9.12301 -12.2645 -9.078 -14.5222 -55.0321 -50.5985 -52.6526 -46.4904 -57.3164 -49.5016 -49.8974 -158.652 -160.629 -160.899 -161.705 -163.892 -132.042 -136.341 -65.7585 -100.794 -77.3725 -64.8704 -87.7057 -72.7336 -58.365 -22.9242 -20.7536 -10.1177 -8.45111 -9.20301 -18.0213 -31.3934 -49.9644 -58.0699 -50.7277 -51.7106 -52.6966 -54.0948 -47.186 -2.16437 -6.24666 -2.57736 -3.6445 -1.49757 -4.74694 -2.01777 -91.9239 -44.7281 -76.8193 -26.2113 -15.9433 -28.4693 -15.1863 -8.0813 -6.96195 -8.54883 -8.13878 -7.76433 -7.47593 -9.88784 -9.28792 -9.77503 -8.65296 -8.64904 -9.3303 -9.93733 -8.63938 -12.2156 -13.1906 -12.3116 -13.2566 -12.2681 -12.9081 -12.1547 -7.46414 -8.26849 -9.1347 -8.72228 -7.91738 -7.48796 -8.41931 -3.35342 -3.56194 -4.55745 -4.29632 -3.42195 -3.26275 -4.29841 -2.75803 -2.6468 -3.91295 -3.32131 -2.96704 -2.65544 -3.62083 -16.626 -19.1353 -18.1093 -12.5742 -13.4615 -14.1907 -14.044 -10.8108 -15.7419 -11.7568 -11.0175 -9.15619 -11.5399 -9.19559 -2.6084 -6.66077 -2.76866 -5.10136 -2.19246 -5.19333 -2.15716 -38.483 -18.8813 -35.8907 -6.84331 -4.65283 -7.99607 -3.80752 -4.62496 -2.43443 -5.23881 -5.11071 -6.96738 -6.43303 -7.07023 -14.4621 -8.91222 -13.5028 -10.728 -14.1688 -9.70558 -12.8396 -21.5021 -21.4761 -21.819 -20.8288 -22.5239 -10.5467 -10.0276 -10.6144 -14.4674 -9.41459 -10.8902 -13.1214 -7.87631 -8.1029 -7.91085 -7.79137 -8.05874 -7.89632 -7.80077 -11.0208 -11.4184 -11.5173 -10.5541 -11.6983 -10.8044 -10.887 -8.22796 -8.65039 -10.0328 -8.72208 -9.00438 -8.04152 -9.17461 -3.53551 -3.61599 -5.05059 -4.58916 -3.74147 -3.46559 -4.77126 -24.0555 -11.1722 -23.0848 -1.68814 0.404029 0.709794 -2.06142 -9.27889 -9.39978 -9.23916 -9.16952 -9.38849 -9.2201 -9.18906 -13.3061 -12.6424 -13.1006 -12.6944 -13.1915 -12.7436 -13.0959 -7.11272 -7.7859 -8.77752 -8.59914 -7.84213 -7.19685 -8.40431 -3.71385 -3.86434 -4.28034 -4.29699 -3.7691 -3.7791 -4.20932 -2.85578 -3.04717 -3.20084 -3.27353 -2.90594 -2.98393 -3.15565 -14.917 -14.9237 -14.1641 -14.9485 -14.3811 -15.1779 -14.2779 -7.55531 -8.18986 -9.10654 -8.75846 -8.23967 -7.45725 -8.85539 -3.85733 -3.84117 -4.46502 -4.27511 -3.94082 -3.78117 -4.35773 -7.69784 -7.72334 -7.70617 -7.72426 -7.64604 -7.90053 -8.05547 -7.84504 -7.93726 -7.86815 -10.0159 -10.6649 -10.4163 -10.7467 -10.2131 -10.4432 -10.3367 -10.9903 -11.0061 -11.3634 -11.0844 -11.2302 -11.1807 -10.7874 -9.65153 -9.0604 -9.8563 -9.28224 -9.70805 -9.03473 -9.93906 -7.23256 -7.95633 -7.32312 -8.39765 -7.78838 -7.08893 -8.10279 -5.52195 -5.06752 -5.46237 -5.16646 -5.44898 -5.12231 -5.66302 -3.89035 -4.2796 -3.84476 -4.37977 -3.8996 -3.85317 -4.34632 -0.810354 -0.275969 -0.78674 -0.337697 -0.751534 -0.848101 -0.313127 -7.60705 -7.81144 -6.90097 -6.21663 -7.23135 -6.74826 -8.6224 -7.09223 -6.88789 -6.87784 -6.06006 -7.07926 -6.76176 -6.50172 -7.74099 -7.2395 -7.49923 -8.07597 -7.40598 -7.70815 -8.04551 -8.49228 -9.80302 -10.0309 -9.04633 -9.46963 -8.62015 -8.89723 -10.8883 -10.8944 -11.2487 -11.9804 -10.4486 -11.0895 -11.5021 -10.597 -10.2667 -10.6863 -11.7559 -10.1694 -10.8125 -11.3222 -8.1427 -9.34704 -9.81316 -9.15439 -8.98355 -8.24081 -8.79815 -7.04204 -6.16223 -6.52004 -8.0345 -6.2221 -7.16525 -7.72126 -3.49459 -4.64929 -4.8599 -3.76544 -4.5969 -3.48903 -3.62936 -1.89691 -0.773237 -0.855987 -2.24885 -1.946 -2.10175 -0.753867 -7.48825 -11.4601 -8.54425 -8.53555 -7.1146 -8.59645 -9.08124 -6.1607 -6.47496 -6.09181 -6.34005 -6.25106 -6.44293 -6.0198 -7.12106 -6.81894 -7.14553 -6.86873 -7.23538 -6.99377 -6.88077 -10.4141 -10.629 -10.545 -11.0757 -10.095 -10.7419 -10.8247 -5.46967 -5.84115 -5.80647 -6.07329 -5.85535 -5.70976 -5.7282 -1.87179 0.570055 -2.5115 1.84177 -2.84126 0.979486 -0.869005 -16.8355 -17.2969 -21.9785 -20.0191 -16.935 -17.0843 -21.6091 -8.15877 -12.8537 -5.35621 -17.6256 -5.68839 -17.4702 -8.10891 -19.1949 -22.7938 -20.4202 -24.6498 -19.9037 -24.0961 -19.6683 -12.1161 -8.87137 -14.3161 -11.9871 -12.0473 -9.01214 -14.5041 -20.2322 -23.6531 -20.2084 -23.6957 -19.6617 -23.4962 -20.6328 -14.9633 -14.1735 -11.4334 -18.0604 -11.083 -17.5561 -15.5583 -2.70514 -6.23716 -4.52817 -4.15747 -2.99478 -4.3406 -3.77313 -10.8183 -3.42032 -0.445509 -7.82805 -0.928872 -7.51753 -11.0518 -15.3823 -10.963 -17.2416 -10.2482 -16.3765 -9.68553 -16.2611 -16.8872 -11.9308 -18.3759 -13.2043 -17.3542 -12.2123 -17.979 -15.2825 -10.4961 -13.3597 -12.5671 -12.2242 -11.5823 -16.5476 -2.43032 -2.09847 -3.06522 -2.35132 -2.62919 -2.45638 -2.15326 -2.90227 -3.16023 -2.70101 -3.33561 -2.78816 -2.77835 -3.60763 -3.22507 -3.36377 -3.16881 -3.39383 -3.56104 -3.27589 -6.69229 -7.06793 -6.42714 -6.96241 -6.55221 -7.17985 -6.48153 -8.17723 -7.7203 -7.98348 -7.55752 -7.95566 -8.11077 -7.78597 -7.82876 -7.13977 -7.64506 -7.23251 -7.68718 -7.26378 -7.78473 -6.16256 -6.33671 -5.57109 -6.56805 -6.05312 -5.58643 -6.62771 -4.96667 -4.40909 -4.72336 -4.49753 -4.79577 -4.46851 -4.96001 -3.5136 -3.95556 -3.39698 -3.92522 -3.48877 -3.45085 -3.9467 -0.844378 -0.369832 -0.819097 -0.345809 -0.803929 -0.859566 -0.338292 -1.76239 -2.0503 -0.544016 -0.677195 -1.7522 -0.665497 -2.48944 -1.65537 -2.37757 -0.653268 -1.5413 -1.91322 -2.11487 -0.650238 -2.64298 -5.45122 -2.37204 -1.83494 -2.90317 -1.6717 -4.56073 -0.962567 -1.18019 -1.17665 -0.70718 -1.25409 -0.846061 -0.88822 -2.07193 -1.50227 -1.57057 -1.70443 -1.84539 -1.58981 -2.1253 -1.11214 -0.550266 -0.974792 -0.675143 -0.482305 -1.41045 -1.6862 -1.40548 -1.7533 -2.13678 -5.19193 -5.70989 -5.35133 -5.98033 -5.05091 -5.83092 -5.32938 -6.97117 -6.42916 -7.0985 -6.66711 -7.07953 -6.8503 -6.54848 -6.51939 -6.13686 -6.73796 -6.09596 -6.54635 -6.05651 -6.57568 -4.50527 -5.46447 -5.16509 -5.32115 -4.59053 -4.76652 -5.24832 -3.81979 -3.80471 -4.03291 -3.61007 -3.96984 -3.6843 -3.76292 -2.96743 -3.33525 -3.02223 -3.13842 -2.90208 -3.06672 -3.21096 -0.806911 -0.390503 -0.769279 -0.294461 -0.809653 -0.722356 -0.372227 -7.52229 -7.63261 -7.59119 -7.59203 -7.54117 -7.67729 -7.43535 -8.31351 -7.95846 -8.05414 -7.97707 -8.22736 -8.17677 -8.05019 -8.62796 -5.99797 -10.7429 -6.78602 -9.59784 -14.1617 -5.09076 -18.972 -21.7345 -22.6929 -21.0581 -19.9899 -19.5199 -13.6415 -17.2172 -17.7189 -10.9582 -17.7442 -10.7669 -15.3862 -5.35215 -4.18368 -5.20127 -4.80907 -4.49156 -4.76044 -5.48105 -2.81608 -3.15222 -2.67948 -3.77367 -2.49067 -3.73225 -2.82594 -1.60837 -0.526999 -1.58369 -0.700128 -1.35512 -1.69645 -0.642377 -10.2982 -9.70744 -10.677 -11.7134 -9.49372 -10.6557 -11.3432 -12.1111 -11.1144 -10.2644 -10.7335 -11.2101 -12.0092 -10.9402 -7.41729 -6.53346 -5.80724 -5.85882 -6.86601 -6.9633 -6.13554 -2.16146 -1.78352 -0.747411 -0.816008 -1.88509 -2.0095 -0.900145 -8.3437 -4.91547 -18.1156 -12.6491 -4.7169 -18.7746 -7.96633 -20.848 -21.0371 -25.5149 -24.9059 -20.2888 -21.5557 -26.1201 -9.84959 -5.93325 -3.0382 -19.5624 -3.6406 -19.1613 -9.8878 -26.21 -31.8569 -28.2933 -33.9145 -26.975 -32.4233 -27.5569 -21.956 -21.0128 -24.3585 -26.1223 -24.726 -21.3716 -21.7597 -17.3366 -12.4053 -19.1964 -15.804 -13.0563 -16.5792 -19.862 -28.2482 -32.8739 -29.041 -31.1672 -27.6015 -29.8115 -29.7863 -23.6918 -22.758 -20.3086 -28.6195 -19.1799 -27.3051 -25.2638 -11.6865 0.11346 -8.48352 -2.49233 -11.4653 1.07287 -8.7741 -18.6534 -18.8051 -11.3935 -14.1532 -17.4193 -20.1681 -12.2987 -12.8582 -2.27564 1.54678 -9.56604 0.806712 -9.23504 -13.4644 -20.3708 -15.9976 -24.7298 -14.9478 -22.408 -13.5248 -22.4368 -21.8064 -20.1545 -14.8111 -15.6 -20.0797 -21.9309 -16.4676 -20.4716 -15.4777 -14.3208 -14.9291 -18.5789 -17.0774 -16.0789 -25.1065 -18.091 -27.7507 -22.1451 -24.7148 -19.1871 -27.9344 -23.55 -17.7461 -22.4271 -22.0416 -19.9791 -18.8474 -27.1918 1.22182 -0.50863 0.0786577 1.19407 -0.0128941 1.23005 1.39146 1.07943 -0.593542 0.0806915 0.0760016 -0.0800802 0.0620767 1.10235 3.86242 3.77878 5.75778 6.50846 4.72558 5.53876 3.32065 3.46817 4.05148 3.92705 6.80011 2.24999 4.84259 5.11066 -4.55558 -1.33413 -0.475115 -9.64185 -0.854804 -7.47215 -6.15541 -1.84483 -1.84601 -2.93044 -1.83828 -2.55136 -1.62823 -2.01036 -1.19596 -0.54198 -0.601136 -1.21824 -1.0679 -1.33021 -0.562183 -18.0627 1.07756 -9.41496 25.9056 -25.0136 -5.37809 2.24058 -18.5647 -14.8835 -19.725 -15.0549 -15.9363 -18.9207 -14.5503 -20.2099 -16.5897 -16.2839 -0.743238 -0.984506 -1.49235 -0.875459 -1.0324 -0.964954 -0.976408 -1.06223 -0.903587 -1.06117 -8.87869 -10.2411 -9.84129 -9.55576 -9.87511 -9.6966 -8.7681 -15.7561 -16.2883 -15.6647 -15.9856 -16.0669 -15.1251 -15.6811 -9.75713 -35.366 -6.91718 -28.2596 -19.6978 -9.73478 -22.0965 -22.6266 -22.9701 -24.3301 -21.8165 -24.8223 -15.04 -10.7433 -11.7604 -16.0917 -11.578 -16.9099 -14.3791 -17.0011 -20.7299 -17.5796 -18.3746 -18.2676 -19.491 -16.2609 -11.2822 -9.74486 -9.94721 -9.94294 -11.0752 -11.1953 -21.6073 -22.9954 -23.4397 -23.3374 -23.4143 -21.0637 -14.1805 -12.7794 -23.2097 -15.339 -15.1548 -7.99879 -17.3715 -17.4433 -20.4404 -17.9305 -19.2278 -18.1082 -19.2984 -17.2467 -15.4624 -14.0505 -13.4739 -17.2379 -12.9975 -17.1827 -15.6534 -5.02965 -4.59843 -4.71299 -4.62339 -4.88896 -5.10269 -5.58744 -4.64981 -5.28291 -5.20482 -5.37123 -4.63528 -6.0229 -0.762252 -0.137533 -0.0747901 -0.850039 -0.684908 -0.241368 -2.67598 -3.4263 -2.5662 -3.87145 -2.67054 -3.48732 -2.92647 -1.6054 -0.597659 -1.52786 -0.761091 -1.48272 -1.83134 -0.65391 -14.6654 -2.75961 -4.59842 -8.05361 -1.04254 -7.76135 -10.3614 -24.8998 -27.2535 -23.8892 -24.082 -30.9284 -27.023 -27.0033 -27.8384 -26.8534 -28.6322 -26.5979 -18.8996 -22.873 -24.7129 -24.1161 -21.9527 -27.0845 -10.2837 -2.75793 -20.0922 -5.3784 -2.63209 -21.0199 -10.0407 -31.3265 -30.4654 -36.3235 -37.8839 -29.6394 -32.2874 -38.2366 -13.0042 -6.21483 -1.20892 -36.8522 -0.790021 -31.6772 -15.4706 -49.872 -60.577 -57.376 -68.9399 -51.6037 -61.4934 -55.6747 -34.6934 -31.3679 -33.9551 -38.3728 -36.2768 -32.4356 -33.2144 -30.3381 -22.8489 -31.8288 -28.0449 -24.6265 -28.2032 -33.6491 -58.0297 -57.3082 -58.395 -71.841 -52.6995 -63.7574 -64.9236 -50.1754 -51.7967 -46.0529 -62.7902 -42.148 -57.3426 -56.6787 -17.874 2.17617 -11.3183 -0.806333 -15.7118 2.5753 -12.4991 -29.8113 -28.8921 -17.8519 -24.836 -25.5614 -33.7028 -20.4805 -22.7005 -0.664583 -0.574794 -18.9497 1.67405 -15.1125 -29.0754 -35.9566 -31.4955 -52.2933 -31.0282 -41.8593 -25.5056 -45.3346 -39.3105 -32.5549 -26.9724 -28.7648 -33.6887 -38.3228 -31.9539 -38.5641 -28.4557 -27.7701 -30.3184 -32.5613 -32.7661 -33.1086 -50.3175 -36.4936 -59.8886 -51.637 -47.5037 -40.7794 -61.169 -48.6086 -39.3192 -50.2949 -52.2617 -42.9465 -41.425 -60.9693 -13.3995 -9.24494 -13.3696 -13.8418 -11.3689 -10.8188 -15.4374 -9.56965 1.16361 -5.65341 -4.05693 -1.49021 -18.5578 -3.36264 -16.9945 -15.9587 -16.2217 -17.3331 -15.6364 -16.7207 -20.7114 -9.05341 -12.8187 -15.0203 -8.24734 -17.4659 -8.48385 -8.23902 -15.9051 -12.8359 -11.7152 -13.6182 -13.2515 -15.5553 -12.9784 -18.1911 -15.7392 -18.4681 -18.3784 -19.9201 -16.7535 -16.8765 -11.9745 -7.7503 -10.5691 -8.00077 -8.04663 -10.8522 -13.1441 -14.9809 -13.4897 -15.1666 -14.0873 -15.647 -14.0554 -15.2442 -1.98325 -1.79108 -1.15669 -2.03895 -1.43702 -1.99709 -2.00319 -1.45955 -1.47375 -1.33281 -1.72563 -1.32502 -1.71691 -1.49648 7.59847 7.49707 8.73411 7.50537 8.1101 7.33872 8.07401 7.42668 7.14009 7.51903 7.14875 7.43659 -0.516676 -1.51122 -2.37402 -1.86162 -1.14305 5.12068 6.32579 4.72978 6.23939 4.53445 6.16897 5.05538 3.42167 -0.169607 2.48608 1.21373 2.1801 0.991207 3.53866 6.41311 6.67907 6.55413 6.65541 6.43937 2.71595 1.80086 3.0689 1.7078 2.80308 -3.90392 -4.3501 -3.53572 -3.44135 -4.14382 -2.41952 -2.45279 -3.42516 -1.18375 -3.43514 -1.23919 -2.31721 -2.90393 -3.78703 -4.21781 -3.22137 -4.13045 -3.17893 -2.95985 -0.259623 0.654463 0.0174804 0.564064 -0.122528 -2.16672 -2.02703 -1.96669 -2.09116 -2.07657 -1.55511 -1.52321 -1.68664 -1.65403 -1.6224 -2.13272 -3.10473 -3.22997 -3.04965 -2.44576 -2.52599 -2.61335 -2.19416 -2.4391 -3.0348 -2.5949 -2.42051 -2.60203 -2.64391 -1.30228 -1.81017 -1.29775 -1.8316 -1.48921 -2.13693 -2.34443 -2.22915 -2.31897 -2.27445 -0.555238 -0.571499 -0.269347 -0.54006 -0.291361 -1.65225 -2.08979 -1.98528 -2.23382 -1.78125 -1.79201 -1.84562 -1.041 -0.562757 -1.32272 -0.562245 -1.15745 -1.20159 -0.528234 -2.06668 -1.9936 -2.03995 -2.03842 -2.03856 -0.706605 -0.31648 -0.65941 -0.664593 -0.414253 -11.5084 -13.1355 -11.0341 -10.6872 -11.9083 -10.6028 -12.0973 -12.0046 -14.554 -12.2143 -11.6222 -12.6108 -11.4765 -12.602 -11.5129 -11.6525 -11.6131 -11.3834 -11.8419 -11.5312 -11.1502 -12.0001 -11.5592 -12.0424 -11.7554 -11.605 -11.6919 -12.2501 -12.6393 -12.7484 -12.5834 -13.5421 -12.074 -13.1441 -13.0856 -13.2859 -12.9775 -13.2301 -13.9623 -12.9771 -13.4781 -13.7616 -12.8681 -11.2279 -12.6612 -12.0593 -12.2321 -11.5486 -13.4644 -8.78157 -9.55531 -8.813 -10.31 -8.63684 -9.84832 -9.19512 -7.81191 -6.37188 -7.7038 -6.70511 -7.47065 -6.45331 -8.18995 -3.46867 -4.60934 -3.43833 -4.75323 -3.49389 -4.63211 -3.53843 -2.02404 -0.726548 -1.95107 -0.878626 -1.89024 -2.122 -0.800744 -24.7466 -21.7367 -26.6919 -23.0005 -23.8259 -20.8951 -26.4725 -29.3182 -26.981 -28.5552 -35.0404 -25.885 -31.9257 -30.2168 -28.3627 -27.5279 -23.4364 -31.3894 -22.9915 -31.7581 -27.4204 -49.8821 -47.6349 -55.3674 -48.174 -56.78 -28.0687 -27.9039 -20.9975 -29.0274 -25.3422 -23.6644 -31.2679 -36.5995 -30.0259 -31.5647 -34.7379 -31.9648 -35.4049 -36.2798 -48.5987 -51.2097 -52.9612 -54.7398 -49.4052 -23.7635 -1.07897 -40.6373 -9.70805 -4.26504 -49.8201 -18.7334 -75.7352 -66.9116 -81.1213 -90.8739 -64.8086 -77.7831 -94.4097 -76.6711 -69.9389 -75.426 -94.0417 -55.8994 -102.753 -85.9961 -145.288 -158.627 -157.922 -142.588 -156.345 -151.858 -141.595 -88.8357 -68.0536 -86.7816 -83.7739 -101.023 -76.889 -78.792 -77.7266 -56.5528 -74.8601 -70.7579 -64.3443 -68.1608 -83.678 -173.098 -165.462 -166.832 -171.103 -164.7 -176.417 -172.696 -162.811 -157.103 -155.578 -175.645 -139.729 -172.853 -170.304 -61.5642 -5.38811 -28.5732 -27.4257 -40.6639 -26.0254 -47.0617 -82.1749 -69.7826 -42.9544 -80.13 -60.5907 -94.6159 -62.7418 -91.3275 -48.0992 -71.4662 -111.363 -47.4536 -78.1852 -106.884 -115.684 -115.449 -137.587 -116.792 -129.9 -95.6408 -118.836 -113.257 -80.2977 -70.5853 -91.8664 -84.9884 -107.999 -101.148 -110.02 -72.904 -72.2134 -91.0883 -82.8174 -94.7886 -100.458 -155.292 -129.585 -163.223 -181.48 -148.377 -139.137 -177.723 -153.881 -120.815 -172.704 -185.518 -132.488 -136.498 -182.834 -17.1092 0.180063 -24.1927 -0.334033 -12.6633 -2.26097 -23.2068 -58.712 -55.5524 -83.6465 -68.9172 -64.218 -52.4202 -78.9246 -30.4059 -22.8338 -25.1604 -27.0464 -29.0832 -25.1079 -26.5128 15.2183 23.5847 8.15791 22.5238 22.0925 14.1718 14.9259 -17.772 -22.3912 -27.809 -31.0248 -17.926 3.58632 11.5169 15.263 5.64612 13.2498 4.98853 4.34951 -7.7254 -8.77207 -12.6652 -2.32679 -11.6691 -3.27087 -5.87358 -25.3769 -23.4078 -19.671 -22.0294 -21.3392 -23.0586 -26.2984 -35.0669 -46.3748 -32.9014 -34.8311 -33.1632 -23.7498 -20.2898 -23.2952 -20.808 -21.7204 -18.4468 -26.6975 -14.3077 -18.1398 -14.7867 -14.8636 -13.5775 -14.7203 -16.2849 -11.7407 -11.7075 -11.612 -11.6718 -11.7973 -11.6755 -11.5845 -12.0722 -11.4517 -11.6536 -10.6221 -11.3858 -11.4345 -12.8971 -11.853 -12.3877 -11.8947 -12.0372 -12.1091 -11.9982 -11.9003 -13.6649 -13.8796 -13.886 -14.089 -13.6399 -13.8519 -13.9492 -13.8868 -13.956 -14.0671 -14.1511 -14.0964 -13.9404 -13.8953 -11.4883 -10.5008 -11.2936 -10.5859 -11.2977 -10.4362 -11.6934 -8.48638 -9.32602 -7.97442 -9.57075 -8.39077 -8.31459 -9.46569 -5.99592 -5.35181 -5.77393 -5.31052 -5.86159 -5.38987 -5.9544 -4.05867 -4.61626 -4.0173 -4.50468 -3.98524 -4.06098 -4.57986 -0.811516 -0.159191 -0.729111 -0.304831 -0.730585 -0.814227 -0.275705 -85.6079 -69.5681 -62.0244 -88.3738 -64.985 -95.0595 -82.5301 -83.3794 -81.0508 -78.3355 -108.736 -66.5011 -98.7198 -97.7675 -83.4324 -101.635 -65.9732 -110.398 -69.8431 -115.626 -79.4524 -120.678 -120.862 -123.631 -118.912 -122.813 -94.1971 -71.516 -78.7311 -91.7088 -93.9954 -77.0096 -91.2025 -132.704 -91.7881 -121.553 -132.155 -98.2779 -117.094 -152.659 -139.897 -95.0058 -125.177 -171.307 -95.5051 -133.69 -179.498 -135.698 -125.001 -143.043 -126.134 -137.83 -224.097 -214.544 -204.069 -212.184 -219.646 -223.814 -204.71 -102.093 -100.894 -104.618 -104.119 -99.6304 -101.689 -105.775 -173.762 -161.666 -177.413 -156.957 -175.879 -164.557 -170.913 -43.7381 -38.2734 -37.9452 -42.1052 -37.2646 -43.9703 -44.316 -7.81513 -2.09902 -1.33389 -3.43686 -6.96432 -5.78522 -2.80312 322.715 306.527 346.296 361.589 327.358 359.867 301.479 -137.469 -154.712 -140.666 -151.201 -141.596 -150.308 -134.167 -168.38 -164.631 -168.522 -163.458 -169.116 -170.927 -161.006 -170.287 -160.473 -180.638 -168.963 -174.617 -164.075 -171.38 -67.9638 -44.8627 -67.4769 -47.6288 -73.96 -43.8772 -64.7197 325.388 307.254 361.139 347.096 327.745 359.884 304.805 322.573 291.415 345.714 355.974 311.12 359.871 300.667 -71.9118 -69.3878 -46.4289 -46.6056 -71.6893 -64.9911 -46.0677 -158.41 -154.789 -157.632 -155.416 -159.413 -155.158 -157.993 -146.514 -150.595 -153.452 -143.72 -144.531 -153.611 -144.315 -65.7336 -57.489 -80.8686 -74.5876 -57.3079 -65.5635 -74.9109 -108.951 -101.779 -105.562 -108.151 -106.751 -103.199 -109.718 -129.931 -129.154 -129.508 -128.108 -133.463 -127.261 -129.678 -45.5973 -32.5129 -45.8833 -71.1764 -35.2847 -74.4524 -59.5053 -53.5745 -60.9186 -63.2524 9.46161 9.27018 8.49445 9.29995 8.90344 10.0803 8.92318 6.35399 7.45414 7.68608 6.232 7.39813 6.58343 6.17739 4.98034 2.88532 1.99004 4.19755 2.73256 4.98707 4.1169 -1.43506 -1.37213 -1.41781 -1.44442 -1.45286 -1.40965 -1.00651 0.559848 -0.448174 -1.20085 0.313913 -0.677225 -1.68464 -1.91908 -2.04341 -3.00783 -2.26423 -2.4431 -1.57166 -2.85061 -0.931483 -2.16095 -1.31296 -0.735105 -0.938055 -1.48538 -2.16651 -2.25685 -2.08212 -2.20664 -2.13945 -2.11595 -2.7062 -1.89787 -3.16945 -2.09879 -2.62571 -1.99044 -3.01425 -2.77154 -2.42319 -2.73545 -2.19194 -2.63409 -2.13654 -3.07064 -1.97282 -1.99472 -1.91518 -1.91061 -2.10188 -1.93809 -1.93325 -1.92046 -2.41125 -1.68503 -2.26957 -1.78485 -2.00632 -1.32651 -0.619564 -0.682473 -1.16338 -1.16 -1.44341 -0.634336 6.91653 5.98533 8.30082 5.3755 7.51653 7.46059 3.95446 8.77574 8.19929 8.8509 8.31812 8.60955 8.38415 8.78089 7.30043 7.63931 7.15877 7.68175 7.16649 7.21723 7.71061 2.66835 1.82293 2.5096 1.47108 2.71495 1.73951 2.41094 -0.25331 0.665254 -0.460027 0.389728 -0.366986 -0.050316 0.618149 -0.579938 -0.315548 -0.575828 -0.29266 -0.629627 -0.565028 -0.374785 -14.8928 -14.4182 -14.921 -15.1294 -14.7271 -14.9854 -14.6207 -14.8705 -14.7942 -15.0843 -12.2636 -10.1685 -11.813 -9.92648 -10.2278 -11.811 -7.35378 -8.85122 -7.90302 -9.21865 -8.37977 -7.30864 -8.55747 -5.63224 -4.47338 -5.82033 -4.81862 -5.79961 -4.48919 -5.79846 -3.45646 -4.8111 -4.10605 -4.82189 -3.54788 -4.38489 -0.636537 -0.745287 -0.161273 -0.674184 -0.061946 -9.26341 -10.4274 -8.51248 -7.50045 -9.79562 -7.99507 -9.12246 -14.4239 -13.0228 -11.9293 -11.4829 -13.7365 -13.5096 -12.2164 -7.50214 -6.8123 -6.11186 -5.57176 -7.60812 -6.638 -6.06751 -1.94759 -1.62543 -0.750551 -0.603966 -1.9254 -1.66186 -0.781186 -126.769 -135.763 -128.98 438.804 437.845 439.485 435.894 436.939 438.286 439.44 -130.55 -125.854 -133.117 -130.669 -129.22 -128.304 -132.999 -114.646 -119.639 -113.466 -123.093 -114.234 -113.958 -121.897 -38.9999 -34.0776 -37.8825 -30.8543 -40.5909 -32.9244 -36.7639 -0.563799 0.342599 -1.0672 1.018 -1.71822 0.0189444 1.06569 432.799 429.62 432.665 429.075 427.754 432.433 432.932 -113.306 -125.724 -123.798 -116.576 -118.356 -114.412 -114.374 -92.2974 -80.8987 -89.0228 -80.5874 -82.7021 -89.1236 -89.3893 -21.8285 -14.1371 -15.8652 -16.813 -20.4139 -16.1546 -20.997 -23.0816 -22.0329 -21.4222 -25.5042 -20.9542 -25.2464 -23.4074 -21.7589 -20.7221 -20.7729 -23.4045 -22.2115 -20.5926 -22.4792 -14.0314 -8.61184 -12.6369 -9.3426 -12.9417 -10.2227 -13.7647 -5.16417 -4.81873 -4.78715 -6.0034 -4.71534 -5.3528 -5.57162 -2.69422 -3.66134 -3.65608 -3.03729 -3.42898 -2.77707 -2.71484 -1.49978 -0.654812 -0.611945 -1.8116 -1.60979 -1.56529 -0.643571 -26.8933 -24.9601 -26.5838 -24.7979 -22.6082 -26.3068 -24.7734 -29.0792 -24.7185 -32.8024 -29.881 -28.186 -37.8161 -26.0507 -34.1064 -34.91 -48.9384 -54.8289 -52.5028 -49.6732 -34.683 -31.6979 -35.2278 -39.5375 -32.3636 -35.1066 -38.4753 -52.6327 -53.1346 -49.5009 -55.5488 -22.8695 -14.3153 -32.4688 -18.5725 -12.1513 -42.6011 -22.7294 -55.4975 -57.7328 -61.3419 -68.4245 -53.6 -59.2104 -64.2641 -63.6471 -57.4915 -66.0524 -65.2427 -71.3098 -60.3139 -60.316 -54.3513 -39.2898 -57.9863 -62.7636 -46.8021 -49.901 -65.0898 -140.516 -65.1598 -112.776 -120.585 -97.8292 -96.9855 -147.514 -164.99 -140.671 -139.456 -177.228 -122.889 -186.484 -160.639 -199.204 -153.698 -185.27 -199.826 -147.766 -195.911 -231.633 -45.3129 -62.7933 -35.9597 -33.472 -55.9021 -54.4541 -28.6752 -34.4291 -28.0974 -36.7418 -23.4563 -37.7724 -23.9287 -34.4059 -50.835 -50.7636 -44.0639 -46.018 -49.269 -48.8059 -51.2439 432.07 428.878 428.139 432.654 428.515 432.684 431.595 -29.9451 -13.5357 -33.3062 -13.6607 -35.3153 -34.0458 -15.1265 -54.2535 -67.1638 -64.037 -56.0168 -56.2735 -64.6449 -52.2835 -16.9354 -12.3598 -31.8189 -0.272182 -25.3924 3.37775 -24.0679 -34.5874 -61.1556 -56.7995 -62.8335 -41.9655 -53.3324 -46.2358 -31.4983 -36.3695 -41.9402 -43.9715 -38.4275 -31.3984 -36.6857 -93.1649 -67.6938 -95.2021 -79.0312 -97.3481 -70.7476 -94.5052 -53.1942 -43.358 -46.6741 -54.3655 -47.2741 -49.3357 -57.4065 2.62609 12.5871 2.78824 15.5688 3.51506 16.9312 3.23158 -7.61372 -9.01716 -3.74453 -11.4467 -4.42015 -12.3059 -6.54872 -25.4337 -28.7977 -38.3668 -36.2747 -24.8424 -28.8023 -37.1425 -20.7818 -12.9319 -14.9423 -16.4979 -16.9132 -16.7145 -19.1654 -23.3736 -19.1745 -16.2457 -18.1015 -19.8289 -21.9237 -20.0987 -38.0443 -35.7103 -46.4628 -39.3196 -41.3688 -41.3047 -34.2094 11.4585 10.186 9.96095 10.4686 10.6685 11.0165 10.8421 -9.5023 -6.75538 -7.13029 -9.33338 -9.01666 -6.1958 -9.46875 6.75095 8.75254 8.47647 6.88638 9.2583 6.75279 6.85696 -7.20012 -7.79089 -5.69692 -6.27119 -6.892 -6.07693 -7.9793 -6.89744 -6.74971 -5.40717 -6.4345 -6.36522 -7.23769 -5.86193 -7.49745 -7.91689 -7.78777 -7.71744 -7.82249 -7.74305 -7.59111 -8.03076 -7.81715 -7.74094 -7.79646 -7.86739 -7.89819 -7.73203 -10.546 -10.8082 -10.1703 -10.812 -10.3267 -10.997 -10.3595 -11.7184 -11.303 -11.4145 -11.2942 -11.5579 -11.6002 -11.4349 -10.465 -9.29833 -10.1584 -9.62763 -10.1212 -9.60479 -10.4483 -8.15767 -8.39115 -7.40086 -8.80743 -8.24743 -7.35723 -8.73055 -5.98154 -5.3127 -5.87339 -5.43087 -5.83428 -5.35675 -6.07003 -4.0692 -4.58504 -4.09697 -4.63511 -4.12335 -4.0738 -4.56596 -0.853401 -0.155138 -0.840717 -0.297063 -0.804169 -0.892663 -0.282679 -14.6249 -15.6755 -18.42 -15.2285 -16.7657 -13.4002 -16.7977 -144.471 -130.629 -137.678 -157.014 -123.016 -147.544 -153.756 -152.456 -132.162 -153.628 -163.338 -167.223 -138.585 -149.991 -173.383 -159.331 -170.777 -168.472 -170.006 -171.341 -171.705 -204.1 -204.248 -213.345 -200.532 -202.911 -213.392 -198.354 -8.12629 -18.1864 -3.49511 -10.7374 -6.18926 -18.1888 -2.48988 -3.97231 0.906801 0.243635 0.0465594 -0.441629 -3.48825 0.2435 291.727 319.682 324.497 305.886 330.691 289.543 301.76 263.185 264.994 266.581 267.123 263.491 254.742 262.128 411.696 411.562 409.562 409.382 411.905 409.263 411.387 412.743 414.933 411.147 413.613 412.951 414.864 410.484 424.617 427.708 426.897 426.68 426.58 426.078 425.405 419.606 421.403 420.014 419.56 420.781 420.551 419.354 301.968 326.24 307.514 330.294 309.365 295.724 328.617 261.213 258.104 265.905 268.647 252.489 259.21 267.964 -78.7448 -71.8998 -77.7305 -79.7542 -80.9882 -73.441 -72.004 13.5145 17.0365 6.28012 17.723 19.2515 11.7102 7.1857 -12.5153 -24.4084 -13.4936 -15.8659 -14.9062 -18.37 -11.5502 3.00803 18.8895 0.0845438 16.7947 1.63935 14.5505 5.38099 -13.4874 -30.4365 -18.4589 -21.5375 -20.589 -24.3064 -9.09826 -24.4641 -24.0309 -23.4372 -19.7406 -21.8519 -24.6642 -21.9656 -28.2613 -27.704 -27.3633 -21.8838 -25.0232 -30.3177 -24.1968 -46.3827 -50.9766 -59.0884 -33.9057 -61.8011 -35.7989 -44.5805 -48.2357 -71.1041 -68.6063 -58.7762 -72.7483 -52.3227 -49.912 4.43734 11.6951 2.42021 8.90992 3.32794 10.6182 4.30362 -1.15587 -7.79999 -3.11662 -4.18828 -4.14013 -5.69546 -0.219599 -11.9902 -12.1226 -11.3589 -7.69323 -13.6892 -9.50706 -9.89841 -12.6926 -12.3038 -11.1771 -10.6119 -14.3305 -12.2294 -10.389 9.18835 8.77081 8.25005 6.64094 8.37463 9.56129 8.78027 -4.51057 -3.72311 -4.5977 -3.22495 -4.51119 -3.49865 -4.29442 -4.03577 -3.33499 -4.71567 -3.36641 -4.39297 -3.0878 -4.48876 -4.05262 -3.01888 -3.94259 -3.24537 -3.62244 -2.98697 -4.47676 5.68617 4.9773 6.91095 3.23542 6.22334 6.54641 8.32356 7.92574 8.40746 7.82505 8.44131 7.83448 8.24614 6.81669 7.22406 6.83837 7.23683 6.87979 6.79373 7.21038 2.16487 0.97147 2.19493 1.39309 1.98712 1.19223 2.36638 -0.837771 -0.2405 -0.8475 0.12996 -0.675557 -1.01175 -0.0257929 -2.8477 -2.90596 -3.03693 -2.78958 -3.02608 -2.69901 -2.83911 -1.97823 -2.84147 -2.6471 -2.59854 -2.09944 -2.48224 -2.49693 -2.84708 -2.91794 -3.18077 -2.93267 -3.02279 -2.80802 -3.07241 -2.38726 -2.60888 -2.49443 -2.60183 -2.46503 -2.42836 -2.50458 -0.813781 -0.409493 -0.869013 -0.521503 -0.837712 -0.863877 -0.493168 -7.65736 -7.74561 -7.71799 -7.66881 -7.65872 -7.70215 -7.69967 -9.55025 -14.3077 -11.2131 -11.2496 -9.52077 -11.2297 -11.2769 -7.58021 -7.58909 -7.68259 -7.5365 -7.69862 -7.55725 -7.56079 -9.88827 -9.88971 -10.5174 -10.2203 -10.3542 -10.0559 -9.76536 -7.51895 -7.52506 -7.44235 -7.5197 -7.47982 -7.44538 -7.53948 -9.4276 -9.66456 -9.05335 -9.83209 -9.26861 -9.75193 -9.40644 -10.345 -10.1313 -9.60118 -9.39537 -9.69664 -10.3367 -10.1193 -6.29598 -5.98447 -5.52479 -5.46531 -5.62773 -6.15178 -6.01948 -1.08055 -0.929582 -0.327381 -0.22253 -0.931502 -1.07573 -0.405944 438.54 437.953 438.354 438.271 438.307 438.272 438.622 435.118 437.674 438.582 434.415 439.255 434.938 434.357 424.768 423.449 426.829 424.859 424.717 422.347 425.895 392.139 362.609 353.932 385.955 358.107 388.746 382.722 406.937 408.375 407.354 405.671 408.239 407.318 406.221 410.829 414.269 411.554 413.272 412.602 413.376 410.038 417.852 416.608 417.812 416.593 417.945 418.06 416.227 409.256 411.36 413.39 412.537 412.461 410.977 409.42 393.364 394.245 377.36 372.916 394.616 392.334 369.826 418.96 417.825 421.246 418.846 421.32 419.078 418.906 419.982 418.704 418.418 421.532 417.919 421.187 420.346 -41.114 -58.7367 -56.8486 -67.2855 -52.7491 -61.2993 -50.0095 10.1724 9.05369 8.89356 8.15246 10.2555 8.94765 8.72105 10.1751 8.09678 10.119 8.42164 8.55169 10.042 10.2802 10.0637 7.99689 8.85339 8.43524 8.91898 8.59393 9.95178 5.90609 7.45694 5.89493 6.95816 5.81344 7.41293 5.89496 4.02522 1.43058 3.98947 2.23527 3.86831 1.69158 4.31258 6.18073 7.03573 7.35315 5.77827 7.42495 5.7659 6.2216 -2.63877 -1.263 -1.85845 -0.370682 -2.68262 -1.12859 -1.74672 -3.9549 -4.48433 -3.00686 -3.70418 -3.86318 -4.66516 -3.01739 -5.33126 -4.93278 -3.87951 -3.99834 -4.89778 -5.35308 -4.1272 -5.25454 -4.30489 -3.76015 -3.83953 -4.86714 -4.67718 -4.02911 -3.12411 -3.50744 -2.54036 -3.04923 -2.85358 -3.83751 -2.55056 -2.16071 -0.879595 -1.60778 -0.867077 -1.93489 -1.73403 -1.00734 8.01457 8.36261 7.75122 7.85781 7.71661 8.09388 8.26892 5.76298 5.81916 7.1977 3.06149 5.6709 7.28949 3.16245 7.67778 7.61145 7.84225 7.4574 7.929 7.47274 7.65693 2.78889 2.39193 1.66663 1.48598 1.68818 2.50272 2.51547 6.7321 7.22065 6.74861 7.36266 6.56309 6.89377 7.17091 -2.71613 -2.91348 -2.74664 -3.06342 -2.84898 -2.68484 -2.95197 -4.30014 -3.34392 -2.97754 -3.17757 -3.16199 -3.29248 -3.59183 -1.0274 -0.917484 -0.554588 -0.470687 -0.915364 -1.01691 -0.452068 -7.50053 -7.63974 -7.49515 -7.51467 -7.47671 -7.5175 -7.62479 -7.30349 -7.35569 -7.38455 -7.30629 -7.4123 -7.31848 -7.30464 -7.35568 -7.33038 -7.28488 -7.37368 -7.38691 -7.26251 -7.34525 -9.42706 -9.75175 -9.34015 -9.95418 -9.27101 -9.89394 -9.50286 -10.6928 -10.2722 -10.5867 -10.4543 -10.7096 -10.5675 -10.4128 -9.95652 -9.10826 -9.61853 -9.0947 -9.70792 -9.28947 -9.82535 -8.07987 -7.62603 -7.02854 -8.36714 -7.94816 -7.18776 -8.48183 -6.17417 -4.99683 -5.92364 -5.44184 -6.02775 -5.46237 -6.11284 -4.19632 -5.6377 -4.08448 -4.71585 -4.18574 -4.15448 -4.8856 -0.896612 -0.205307 -0.791908 -0.297633 -0.825079 -0.856605 -0.345476 438.575 438.455 438.344 438.026 438.689 438.36 438.258 439.042 437.161 438.009 438.416 437.614 438.691 439.074 435.856 438.746 434.535 437.683 434.746 439.366 435.226 425.267 427.398 424.76 424.508 424.147 426.475 425.88 429.123 423.456 429.626 426.265 428.76 426.983 430.186 270.912 246.42 262.417 260.305 248.458 257.768 247.268 419.995 415.45 418.084 419.408 418.659 418.237 419.696 402.622 411.464 414.714 406.944 412.589 403.031 407.996 392.679 370.302 374.849 392.669 370.2 391.55 391.602 307.339 343.593 333.831 310.121 340.807 317.555 299.629 417.883 418.378 413.925 414.829 418.439 419.021 415.356 417.377 415.001 419.54 418.312 419.539 418.636 414.874 411.592 408.663 411.52 412.466 408.955 413.04 410.975 413.682 415.364 413.667 416.612 412.551 415.933 414.626 420.446 418.393 421.612 419.429 420.282 418.54 421.938 417.4 416.316 418.156 421.596 421.656 417.113 416.696 383.426 354.909 386.573 361.217 380.216 345.191 395.276 -55.2454 -62.0906 -71.151 -71.3417 -53.6901 -67.1714 -73.5751 9.61121 9.88934 8.21502 7.46892 9.83332 8.01363 9.62787 9.64147 8.73157 8.25067 7.6377 9.81069 8.52317 8.10558 9.42361 7.4184 8.00338 7.6538 8.26491 7.84114 9.09459 5.93927 7.29493 5.63541 6.7805 6.16867 7.17103 5.50327 5.5079 6.36071 6.68414 5.33035 6.92244 5.41719 5.22091 3.78987 1.84993 1.07065 3.52457 1.39658 3.89836 3.47395 -3.14248 -0.778259 -1.77935 -2.31507 -1.53722 -2.26029 -3.19462 -4.3965 -4.11713 -4.88205 -3.52309 -4.90278 -3.45316 -4.50274 -3.22413 -2.83779 -4.02328 -2.34553 -4.13907 -2.40679 -3.21014 -2.21126 -0.747855 -0.938908 -1.57016 -1.66836 -2.13566 -0.998285 7.51948 7.73747 7.08692 7.57748 6.99317 7.57517 7.67698 4.86771 4.7878 6.01879 2.04216 4.63142 6.30628 2.21405 7.01153 6.92535 7.1331 6.69682 7.26512 6.7976 6.93113 6.17605 6.41734 5.99557 6.29311 6.07002 6.10774 6.41247 2.31022 1.10211 1.98132 1.16047 2.15816 1.24394 2.09401 -0.48687 -0.262055 -0.993712 -0.0497193 -0.732353 -0.870959 0.14907 -2.7015 -2.86347 -2.53758 -2.70329 -2.63916 -2.58415 -2.91942 -0.616157 -0.330784 -0.788379 -0.31232 -0.778712 -0.693424 -0.281244 -7.10312 -7.32749 -7.26328 -7.23085 -7.24882 -7.26741 -7.35159 -6.40006 -5.36353 -6.72872 -5.09071 -5.41541 -6.14224 -6.99963 -9.765 -9.49878 -10.1277 -10.0417 -10.2195 -9.67877 -9.58397 -9.74504 -9.55851 -9.02685 -8.70831 -8.94138 -9.79389 -9.46345 -5.79467 -5.73283 -5.26257 -5.13087 -5.20079 -5.89954 -5.63923 -0.80445 -0.754079 -0.269139 -0.111731 -0.827298 -0.73265 -0.257339 -11.3602 -7.20307 -7.50071 -13.0427 -7.72867 -12.3405 -12.4874 -14.4466 -19.4254 -19.1619 -18.5054 -16.9496 -16.4722 -16.3223 -18.9205 -21.2118 -20.0862 -23.244 -18.1275 -22.1848 -20.6809 -17.8112 -18.7242 -16.3066 -21.4989 -16.3597 -21.2132 -18.8644 -10.332 -4.12271 -6.13952 -20.2419 -2.99136 -14.5689 -14.0815 -37.5165 -46.9679 -43.5364 -51.0714 -40.7893 -44.4933 -43.1194 -48.0835 -50.7547 -44.6659 -57.4539 -44.0439 -55.6552 -51.219 -40.4392 -38.1964 -52.1128 -51.8606 -35.6646 -46.9849 -47.1625 -59.4295 -42.1116 -76.9259 -55.794 -57.2519 -43.5413 -74.2715 -59.5592 -55.7853 -54.1834 -59.5928 -72.4706 -60.4651 -66.1678 -65.7371 -129.328 -132.373 -132.98 -130.375 -128.085 -150.874 -152.559 -141.587 -152.083 -138.843 -54.102 -44.3612 -50.2447 -37.8677 -51.8612 -44.4905 -49.4492 2.41622 1.38155 2.24569 1.77149 1.88278 1.29939 2.70809 424.181 425.854 420.537 427.139 426.654 424.171 420.869 414.323 411.684 412.855 414.239 412.37 414.694 414.092 415.74 416.678 414.927 417.804 414.639 417.438 416.046 425.943 428.458 428.785 428.719 426.96 426.911 428.595 420.599 417.092 415.683 420.14 418.704 415.24 422.852 278.796 328.252 278.432 321.195 226.127 289.498 351.274 212.967 150.53 184.05 113.862 136.37 179.957 213.63 -109.379 -112.975 -120.529 -106.58 -117.053 -105.398 -110.917 -141.772 -125.897 -133.124 -141.718 -128.847 -140.365 -147.763 -0.947986 2.89628 2.12131 3.67464 0.489814 2.56663 1.57537 -105.565 -108.608 -102.032 -112.464 -100.908 -112.655 -105.985 -131.988 -121.206 -133.398 -124.051 -131.389 -134.18 -122.265 2.16034 0.23334 2.93695 0.416747 2.63994 -0.265917 2.53568 -4.17541 -2.24955 -2.80661 -1.92565 -3.718 -2.69546 -3.32642 -5.28474 -5.22563 -3.88513 -4.52376 -5.01447 -5.43604 -4.20182 -5.02801 -5.58041 -4.16722 -4.27734 -5.30632 -5.39509 -4.0978 -4.88889 -4.55587 -4.03876 -3.69961 -5.16875 -4.28092 -3.83732 -2.90804 -3.90587 -2.52146 -2.98749 -3.07895 -3.64019 -2.44918 -1.93395 -0.884829 -1.60188 -0.707188 -2.01778 -1.54458 -0.865706 6.80803 6.97072 6.49592 6.45405 6.42288 6.76932 6.85164 1.62768 1.66603 0.86319 0.432558 0.667514 1.79435 1.45025 -3.48517 -3.67589 -3.28151 -3.65956 -3.45232 -3.44792 -3.69073 -3.33303 -3.53725 -3.18997 -3.38437 -3.28555 -3.30731 -3.5212 -0.768174 -0.887437 -0.378963 -0.395405 -0.793273 -0.868487 -0.399784 -4.95994 -4.36113 -5.35843 -4.76698 -4.99145 -4.57155 -5.29556 -2.68239 -3.55853 -2.91464 -3.73772 -2.61047 -3.4582 -2.82435 -1.54098 -0.619256 -1.75952 -0.716496 -1.52174 -1.67736 -0.69696 -24.6831 -22.7141 -22.6903 -27.2056 -21.054 -25.5971 -26.5792 -23.5808 -23.1704 -21.4633 -23.6611 -21.279 -25.8864 -23.2945 -25.8223 -26.16 -27.2237 -23.6619 -25.0066 -25.1989 -23.6355 -22.5375 -21.8126 -24.8727 -17.3757 -15.4586 -15.7337 -11.0546 -18.2701 -13.9956 -14.9065 -31.9525 -24.1695 -29.3661 -28.8655 -30.9173 -28.0889 -28.5185 -31.1852 -28.7444 -25.4201 -31.9898 -25.7356 -36.7559 -28.0064 438.987 438.296 438.96 439.206 438.723 438.54 439.218 -173.35 -172.944 -169.101 -170.47 -168.333 -176.217 -174.792 -55.3949 -42.5593 -46.8877 -59.264 -57.9717 -42.704 -53.9346 -22.7602 -81.7968 -9.21072 8.22969 -78.1481 -61.9087 -0.351696 1.90089 1.89321 -0.54213 1.72421 1.0955 0.831398 2.32254 -93.4862 5.18295 14.5334 -7.34924 -19.023 -34.9509 -14.35 -158.289 -158.123 -158.538 -151.34 -161.896 -150.368 -153.565 5.3708 4.98882 5.59822 2.64489 3.41631 5.69647 4.2442 -228.638 -224.039 -214.074 -219.765 -220.298 -223.646 -215.152 -19.2284 -12.511 -41.0265 -6.41276 -1.86433 -17.844 -58.3731 -62.9033 -88.2148 -66.8692 -66.4819 -74.364 -70.0242 -57.6834 -82.2763 -84.4545 -85.9404 -68.6959 -74.1221 -96.7976 -74.7814 -50.0113 -65.4236 -63.0112 -52.6045 -21.9906 -4.54884 -16.6282 -6.95059 -22.4032 -8.80899 -16.9191 -30.5571 -40.2515 -26.1109 -30.7477 -32.9993 -34.6158 -25.6902 -41.9212 -45.5618 -41.5631 -35.1944 -49.5646 -39.6417 -37.2866 -41.3446 -42.6456 -43.2966 -36.2163 -52.883 -36.8962 -36.3854 -18.6512 -16.4316 -15.0504 -18.2021 -13.1651 -22.8357 -25.9812 -22.864 -20.9589 -24.8472 -22.2102 -21.6775 -23.1057 -23.8823 -22.5338 -20.8326 -23.5217 -22.7748 -21.9712 4.81812 4.3108 3.8316 1.62051 3.80008 5.05273 3.87649 7.36951 6.78581 6.81664 6.91013 7.09829 7.16798 7.11501 6.14725 6.08773 3.62749 2.78321 6.68383 3.85617 5.11917 5.26724 5.97177 5.22673 6.08915 5.36941 5.15594 6.39986 -24.2729 -26.3087 -21.0243 -22.7393 -22.8053 -27.6637 -21.3432 -21.9012 -23.2934 -20.7331 -21.4685 -20.9941 -22.2446 -23.4083 -14.1257 -11.9986 -12.5391 -9.20367 -14.8809 -10.8183 -12.6178 2.25632 -7.9333 -2.46118 -5.39894 -0.396611 2.24016 -6.62259 -7.70192 -7.99368 -7.88743 -7.94674 -7.70279 -9.42644 -8.56077 -8.80142 -8.57301 -9.03216 -12.9649 -13.1959 -12.8762 -12.1238 -13.3841 -12.8159 -12.3377 -13.7252 -13.4681 -13.0679 -12.9591 -13.6597 -13.5249 -13.235 -10.9329 -10.1036 -9.82683 -10.6719 -9.92607 -11.0639 -10.646 -7.29167 -8.89662 -8.44413 -7.41952 -8.56768 -7.91732 -6.94403 -5.10704 -4.85293 -4.78349 -5.3531 -4.72537 -5.33346 -5.21012 -3.59239 -4.11123 -3.98882 -3.70387 -3.95041 -3.70613 -3.62541 -0.762618 -0.320123 -0.28297 -0.76704 -0.833362 -0.779838 -0.2453 -10.7646 -9.11686 -9.86993 -8.71462 -10.7771 -8.76872 -10.0185 -12.6508 -13.9444 -11.3696 -12.7474 -12.6432 -13.8664 -11.5593 -15.078 -16.6603 -14.2785 -12.4237 -17.4267 -14.6996 -13.2053 -14.3786 -14.4421 -13.2567 -13.3735 -14.174 -14.5938 -13.3497 -13.5725 -11.3753 -12.2302 -11.4604 -13.0012 -11.9969 -12.7464 -8.17779 -8.79237 -7.69828 -9.59671 -7.40714 -9.69934 -8.23777 -7.01757 -5.33719 -6.43377 -5.85567 -6.29161 -5.77951 -7.10043 -3.36207 -4.10001 -3.07726 -4.4247 -3.10965 -4.4034 -3.33412 -2.06109 -0.726762 -1.68887 -0.814678 -1.79606 -1.98295 -0.866913 -102.042 -110.476 -120.764 -124.588 -101.229 -101.41 -123.464 -170.89 -170.506 -175.515 -158.724 -177.646 -163.476 -166.109 -167.573 -163.533 -160.629 -167.271 -162.029 -156.781 -164.289 -18.1824 -43.1873 -29.188 -43.2688 -21.2797 -30.177 -21.1831 253.96 295.333 310.047 303.788 299.305 289.335 306.094 433.263 433.175 435.456 436.117 432.213 433.677 437.056 433.698 434.421 434.617 433.798 434.279 433.798 433.869 5.22388 4.74607 5.48938 2.74765 3.4314 5.50034 4.20977 -144.436 -139.984 -136.814 -138.869 -146.085 -140.071 -188.639 -196.907 -205.773 -195.529 -197.465 -192.653 -188.559 -14.9466 -19.0379 -18.3309 -16.3595 -17.5938 -16.5623 -14.9265 -16.5549 -19.3643 -17.5371 -16.3166 -18.7268 -16.9137 -16.2097 -8.13378 -8.06338 -8.13328 -8.30456 -8.28359 -7.89889 -8.08479 -8.71213 -8.28914 -8.13274 -8.63233 -8.42843 -8.8376 -8.34058 -9.51351 -10.6856 -10.0744 -9.35858 -10.5258 -9.66776 -9.11311 -57.3797 -54.7325 -78.3182 -62.911 -39.4622 -91.4371 -65.4808 -84.1681 -89.3843 -68.9864 -81.893 -85.0747 -127.782 -116.184 -123.305 -119.108 -126.03 -123.581 -122.881 -161.579 -178.149 -160.498 -173.022 -176.553 -164.655 -156.386 -88.6693 -82.4702 -97.2574 -109.277 -106.849 438.58 437.748 437.49 438.009 438.087 438.14 438.399 -161.48 -159.19 -156.083 -155.781 -158.5 -160.053 -158.49 -169.252 -173.918 -173.046 -167.717 -174.55 -168.934 -169.521 -162.644 -171.953 -169.888 -162.561 -172.569 -160.696 -164.367 -197.431 -186.796 -175.015 -204.49 -178.267 -198.42 -202.244 -74.2913 -39.9779 -76.8553 -57.1377 -63.2843 -48.6356 -84.6308 -97.2666 -103.394 -97.1903 -102.737 -99.5458 -96.0814 -105.95 -127.154 -106.608 -123.84 -106.105 -123.324 -100.3 -89.0009 -68.6974 -64.1022 -69.2324 -89.575 -86.2189 -79.612 -97.9925 -97.7207 -107.74 -84.8254 -116.261 -92.8475 -87.9005 -170.757 -172.946 -163.478 -166.597 -165.063 -169.476 -173.777 -119.128 -110.618 -101.157 -113.973 -120.661 -107.185 -178.439 -177.63 -169.282 -185.974 -171.288 -190.351 -174.848 -163.024 -118.597 -132.499 -138.257 -139.411 -146.712 -161.644 -189.327 -206.585 -201.562 -166.927 -212.625 -173.79 -187.722 -52.8883 -8.94415 -30.1388 -22.5831 -15.7886 -21.3942 -40.9693 -84.2941 -68.0958 -69.9897 -85.013 -65.8051 -86.4097 -68.7247 -74.6295 -76.2647 -75.3616 -28.673 -16.5616 -31.8475 -14.1019 -37.6702 -14.0971 -26.0681 -42.1648 -62.7512 -46.6162 -43.2358 -52.8015 -47.9276 -35.9372 -58.5572 -69.0546 -63.7388 -48.186 -76.2157 -53.3943 -52.4425 -5.93679 -4.81009 -5.5432 -7.5936 -4.93912 -6.28764 -6.23665 -5.90153 -5.96979 -5.41696 -6.40206 -5.0327 -6.39976 -6.10165 -8.35813 -7.44307 -8.57194 -7.36281 -8.72849 -7.55754 -8.02342 -9.48143 -11.5264 -10.0808 -10.4436 -10.397 -10.7661 -9.10824 -11.9696 -12.5542 -12.2005 -11.2423 -12.5877 -11.6893 -11.6305 -11.8074 -11.1135 -11.6928 -10.2036 -12.4687 -10.6993 -11.0802 -8.27133 -9.48802 -7.62133 -8.59266 -8.38376 -9.26842 -7.70425 -7.33902 -6.16525 -6.61582 -5.86718 -7.44535 -6.10381 -6.6951 -3.43873 -4.46657 -3.29208 -4.34489 -3.4342 -4.46225 -3.41231 -2.06976 -0.884033 -1.84006 -0.777378 -2.10676 -1.92591 -0.852754 -7.64547 -7.71236 -7.57219 -7.90363 -7.20359 -8.02659 -7.77143 -11.3328 -14.6306 -12.0213 -12.541 -13.3996 -7.95043 -7.94157 -7.99167 -8.00901 -7.95822 -7.91088 -7.93957 -7.955 -8.01734 -7.84371 -7.92892 -7.9705 -9.39178 -9.68666 -9.11812 -10.0444 -9.76518 -10.0486 -9.48383 -10.6229 -10.1529 -10.5357 -10.4347 -10.6149 -10.4491 -10.4252 -9.80876 -8.87532 -9.43635 -8.89647 -9.53079 -9.10444 -9.58445 -7.90916 -7.9873 -6.99568 -8.0716 -7.45887 -7.33445 -8.33995 -6.12659 -5.42568 -5.9165 -5.41444 -5.96774 -5.4786 -5.97579 -4.13436 -4.58642 -4.15253 -4.59661 -4.13595 -4.1351 -4.57205 -0.95487 -0.234852 -0.806023 -0.227042 -0.825365 -0.828036 -0.365988 -13.3091 -6.83433 -12.8773 -6.56896 -11.9181 -5.60214 -15.2353 -19.3059 -19.4637 -16.6888 -21.8394 -16.783 -22.5446 -20.124 -23.9299 -18.5989 -19.4798 -19.0687 -20.5303 -20.6466 -22.113 -48.3998 -40.0564 -49.8484 -44.5174 -51.0985 -45.4507 -41.0299 -19.2299 38.9917 -27.8873 -4.67971 -1.07821 -16.893 -42.0641 -35.2643 -31.9021 -30.8652 -35.9643 -30.0092 -20.2791 -6.25646 -6.41839 -15.3435 -5.88501 -17.9763 -17.5349 -29.9902 -34.2279 -30.8576 -23.2079 -35.7349 -28.7807 -25.0283 -34.6441 -31.2069 -32.3656 -32.4049 -36.2233 -34.1043 -68.7785 -36.9207 -22.9209 -30.7361 -41.0604 -30.0682 -44.2133 -39.7787 -33.6366 -35.8693 -40.7736 -43.0226 -36.5068 -43.2538 -40.7843 -34.0346 -35.3542 -37.6468 -46.2126 -34.5926 -152.628 -164.293 -154.88 -157.18 -157.835 -159.225 -152.385 -88.3335 -109.762 -81.2948 -85.1426 -95.2726 -100.66 -74.8216 -163.774 -164.924 -161.683 -161.741 -163.097 -163.309 -163.353 -103.452 -109.788 -84.1499 -98.6303 -98.4317 -112.767 -89.3817 -180.187 -186.693 -190.514 -167.134 -189.627 -171.717 -178.989 -139.204 -122.153 -87.5794 -95.0456 -121.764 -133.917 -101.257 -40.0198 -57.6633 -64.2761 -55.2775 -52.5124 -43.5893 -50.4192 -45.533 -52.9536 -49.1932 -51.932 -47.1468 -46.7008 -53.5994 -27.9461 -32.3876 -23.8067 -26.7178 -28.4088 -30.934 -22.8038 -33.0449 -36.8459 -30.3442 -37.8547 -32.5427 -30.5204 -46.0624 -51.1502 -41.1055 -48.7451 -41.2034 -47.7718 -51.7304 -32.6785 -34.275 -30.9021 -27.9952 -34.8974 -32.6875 -29.4141 -37.5433 -35.7493 -34.9814 -36.0153 -35.674 -37.6786 -7.21941 -8.60381 -8.66547 -8.34245 -7.89406 -7.88278 -7.3771 -6.94038 -7.63154 -7.70864 -7.72709 -7.40347 -7.38884 -7.41475 -11.146 -11.6015 -11.2029 -10.0969 -13.4779 -7.81056 -7.95788 -7.67951 -7.75785 -7.92698 -8.38208 -7.89778 -7.78089 -7.87689 -7.84164 -9.57215 -10.2158 -9.79035 -10.1102 -9.7662 -10.0554 -9.65336 -10.7283 -10.6588 -10.8404 -10.5342 -10.8627 -10.7879 -10.512 -9.84742 -9.44476 -9.8833 -9.1723 -10.0308 -9.22365 -9.7997 -7.70114 -8.64521 -7.68273 -8.23015 -8.1826 -7.51967 -8.41427 -6.02049 -5.51358 -5.99413 -5.50256 -6.08479 -5.52298 -5.9706 -4.26655 -4.78032 -4.21679 -4.78659 -4.20627 -4.25647 -4.84295 -0.843812 -0.379529 -0.867974 -0.329079 -0.948548 -0.820331 -0.3079 -4.79387 -3.17193 -6.06668 -3.33667 -3.2955 -4.67962 -5.04364 -17.9411 -21.6071 -20.8611 -21.5102 -19.1795 -19.8644 -19.4562 -19.0823 -20.335 -19.699 -20.7762 -19.0648 -20.4746 -19.8632 -54.7636 -68.7557 -72.4175 -70.9293 -63.1927 -59.5857 -63.3053 -32.8205 -42.0213 -33.1979 -34.635 -35.2297 -36.8135 -30.8808 -66.1019 -70.6891 -83.8974 -68.0188 -74.8786 -75.5464 -61.598 -38.7212 -39.8134 -34.5536 -39.9621 -36.7816 -42.5796 -36.3334 -58.1316 -61.0943 -66.5945 -50.3067 -73.453 -52.0722 -50.6694 -22.4726 -5.18697 -10.3588 -4.86486 -2.29089 -11.271 -15.4911 -27.9756 -26.5593 -24.2277 -24.8903 -26.9166 -27.5516 -25.1059 -15.1534 -8.24652 -12.2521 -8.65215 -13.3222 -7.40032 -13.8468 -10.8295 -7.38131 -4.92757 -15.5857 -6.28738 -12.7107 -10.1776 -21.2501 -24.1994 -21.8251 -26.4545 -21.5494 -26.0964 -27.399 -25.2878 -25.4302 -24.4039 -26.2983 -27.9484 -20.259 -15.5731 -18.9707 -15.2074 -16.8132 -20.28 -18.6888 -22.4626 -21.6244 -19.3967 -20.0169 -22.1418 -22.7095 -20.4195 -20.8729 -18.3988 -18.1166 -16.3508 -20.8997 -17.9656 -18.3101 -23.2273 -22.9735 -22.9499 -23.8867 -22.4429 14.5829 1.41489 13.4031 1.07707 1.80436 -1.09414 1.79553 -5.26188 -7.35683 -6.28529 -6.46597 -6.51067 -5.41561 -5.52891 -7.35431 -6.62135 -7.68946 -7.57367 -7.28248 -6.99997 -7.77654 -11.2728 -11.6941 -11.1271 -10.2587 -13.6015 -7.95683 -8.04452 -7.8279 -7.96989 -7.90199 -8.0408 -7.83879 -10.1464 -10.643 -9.80892 -8.91814 -12.8288 -10.3626 -11.3859 -11.5493 -12.5965 -10.367 -11.5182 -11.5938 -8.20811 -8.13185 -8.01191 -8.09685 -8.21333 -8.06874 -8.16241 -11.3122 -12.666 -10.5763 -10.6066 -11.6784 -12.1298 -10.3111 -6.3864 -7.19445 -5.87865 -5.58265 -6.89593 -6.5275 -5.66978 -1.88305 -2.13626 -0.818775 -0.78982 -1.99733 -1.89454 -0.768398 -14.6136 -17.5122 -14.2347 -14.0109 -16.7507 -15.5738 -12.6623 -14.8806 -17.7354 -16.0491 -14.747 -16.5462 -15.8999 -14.2374 -5.0492 -4.62125 -5.04701 -4.2639 -5.84241 -4.2567 -4.56751 -1.59033 -1.58369 -0.735486 -0.666667 -1.77727 -1.51947 -0.647759 -6.42172 -6.91309 -7.51308 -8.30185 -6.5456 -7.48985 -6.53141 -9.10651 -8.0731 -8.83299 -8.08288 -9.29795 -7.89954 -8.83644 -10.6358 -11.852 -9.87521 -10.8569 -10.9619 -11.6043 -9.81814 -27.1795 -30.6006 -32.0892 -35.1207 -28.5683 -29.2037 -30.4692 -21.6706 -28.2279 -22.5445 -23.5339 -23.1546 -24.2545 -21.1013 -31.2895 -31.7071 -36.2892 -33.2529 -34.0037 -33.1208 -30.0076 -23.6265 -26.3177 -22.3083 -24.8827 -23.0401 -25.6804 -22.8341 -10.8304 -9.24974 -10.0886 -9.39763 -10.5773 -9.30553 -10.2435 -12.7145 -13.5171 -11.3402 -12.9227 -12.3954 -13.7973 -11.6495 -14.2591 -14.2785 -13.1504 -13.4031 -14.2158 -14.4539 -13.4208 -13.6378 -12.2914 -12.5717 -11.3642 -13.8364 -11.9716 -12.5293 -8.36045 -10.321 -8.36369 -9.27421 -8.98425 -9.88219 -8.15903 -7.24844 -6.4824 -7.27602 -6.10337 -7.86637 -6.13722 -6.92232 -3.45017 -4.74426 -3.42906 -4.44758 -3.56988 -4.5161 -3.4424 -2.08568 -0.923428 -1.96454 -0.834856 -2.19348 -1.93072 -0.871059 -8.50333 -9.64855 -9.00376 -7.68344 -11.5107 -4.28379 -5.80462 -5.82809 -4.70785 -5.59035 -22.6573 -21.4358 -23.196 -21.1117 -9.14639 -7.62234 -9.25195 -9.37972 -7.9558 -4.1859 -6.75086 -5.52017 -6.05846 -5.23154 -4.72144 -5.5246 -4.27595 -4.08285 -4.58197 -4.13743 -4.45406 -4.01238 -4.39512 -3.24394 -3.52475 -3.36879 -3.64386 -3.212 -3.33798 -3.47258 -0.808998 -0.287329 -0.763714 -0.287374 -0.724679 -0.705106 -0.29574 -7.65597 -7.92869 -7.75444 -7.88915 -7.93931 -11.3929 -10.7096 -10.8852 -11.0116 -10.4818 -11.7252 -11.8102 -11.346 -12.169 -11.8668 -9.51464 -8.82722 -9.83253 -8.79658 -9.59779 -8.69429 -9.57589 -6.46064 -7.7032 -7.4131 -7.83647 -6.77638 -6.84929 -7.6229 -5.2122 -4.85404 -5.38383 -4.95327 -5.18759 -4.89032 -5.29554 -3.78345 -4.13684 -3.79075 -4.22731 -3.80674 -3.73958 -4.16166 -0.719554 -0.339508 -0.815792 -0.179678 -0.609871 -0.766061 -0.133311 -10.1562 -10.5312 -10.527 -10.4101 -10.2364 -10.3671 -10.2268 -7.97838 -6.94161 -6.60396 -8.06541 -7.0594 -7.661 -8.72311 -8.87207 -9.26978 -10.2993 -9.72686 -9.21648 -8.78259 -9.90595 -10.762 -11.3863 -10.9583 -10.047 -11.7329 -10.4628 -10.1853 -7.24929 -7.6597 -6.70259 -6.22269 -8.00442 -6.98973 -6.31314 -7.99518 -8.59932 -8.22719 -7.42614 -8.49732 -8.11415 -7.41419 -1.98852 -2.09864 -0.919732 -0.739104 -2.21898 -1.87927 -0.781002 -10.5996 -13.0749 -12.1025 -14.8157 -11.4125 -11.1319 -12.3803 -7.61789 -7.79411 -7.68884 -7.66132 -7.7062 -7.69106 -7.65246 -7.78393 -7.83146 -7.62145 -7.75885 -7.69447 -7.66119 -7.79332 -9.93274 -10.1104 -9.64743 -10.1756 -9.70088 -10.3601 -9.72095 -11.1409 -10.6505 -10.8907 -10.8081 -10.9906 -10.8683 -10.9262 -10.4289 -9.56397 -9.99301 -9.36477 -10.2504 -9.71647 -10.1273 -8.45956 -8.78378 -7.6337 -8.42224 -7.72795 -8.35382 -8.91786 -6.26165 -5.64737 -6.04039 -5.46184 -6.27696 -5.6031 -6.01589 -4.19532 -4.77601 -4.19669 -4.67774 -4.11674 -4.25152 -4.71628 -0.923929 -0.319139 -0.744105 -0.238299 -0.870905 -0.740847 -0.384479 -3.8018 -3.81661 -0.910223 -1.70909 -2.79913 -4.38483 -1.8847 -19.9156 -21.6867 -22.7985 -26.063 -20.3694 -21.1842 -22.205 -17.6569 -23.3079 -17.8866 -19.04 -18.6353 -19.6474 -17.0428 -21.1848 -21.3363 -23.8607 -24.0836 -23.2068 -21.8137 -20.7511 -18.2423 -20.9946 -17.4705 -19.6452 -18.0107 -20.1713 -17.6116 -6.47574 -10.9073 -5.78486 -9.7324 -7.14547 -9.83332 -5.28192 -5.86036 -5.76307 -4.52039 -5.00611 -5.19014 -5.85327 -5.04094 -3.03921 -4.31213 -3.45274 -2.77368 -4.03953 -3.24376 -2.66279 -1.86234 -0.851209 -0.616749 -1.64868 -2.02053 -1.5331 -0.756952 26.3072 2.60509 25.6218 9.53761 3.01803 2.48732 10.1502 7.06917 0.873521 1.17621 21.5245 0.58137 21.9853 7.6372 -8.56494 1.52715 -17.3176 -0.35857 -18.8633 -0.0339357 1.63977 -5.74848 -4.5651 -3.55713 -4.41551 -4.5766 -5.36463 -4.41114 -8.03467 -9.80451 -8.08308 -6.94949 -9.5609 -7.68885 -6.96344 -7.0366 -5.47076 -5.13287 -5.73119 -5.83908 -6.49432 -6.05272 -3.18314 -3.49375 -2.45348 -3.44548 -2.73173 -4.1074 -2.76117 -1.95136 -0.685127 -1.46734 -0.669381 -1.69856 -1.61614 -0.813233 -3.31665 -4.29018 -3.87315 -2.86345 -4.41618 -3.22325 -2.95627 -1.99288 -0.775724 -0.686455 -1.59915 -1.9407 -1.68737 -0.807698 -10.6453 -12.2242 -14.472 -12.1037 -10.7913 -12.0547 -11.8083 -9.18665 -9.52863 -9.61558 -9.39116 -9.50274 -9.34925 -9.31184 -9.7513 -9.71938 -9.68251 -9.99539 -9.72806 -9.67319 -10.104 -9.35505 -8.41465 -8.63035 -10.5684 -8.31654 -9.61546 -10.0621 -8.93648 -8.6751 -8.316 -9.17825 -8.04552 -9.15907 -9.11224 -11.7675 -12.6143 -12.0519 -16.1379 -12.4112 -10.9477 -13.7021 -9.53442 -9.4872 -9.4374 -9.51085 -9.39034 -9.55895 -9.42941 -10.1479 -9.68487 -10.2312 -9.59701 -10.3555 -9.76775 -9.92161 -10.7669 -11.9555 -10.9963 -11.3529 -11.175 -11.5969 -10.4902 -9.55808 -9.6518 -9.68559 -9.70342 -9.54727 -9.66578 -9.69125 -11.4261 -11.937 -11.5487 -11.6505 -11.7394 -11.6235 -11.3863 -12.0435 -12.1116 -12.1316 -11.9239 -12.0466 -12.2407 -11.881 -10.8141 -10.1566 -10.6341 -9.84592 -10.9209 -10.0944 -10.5716 -8.75879 -9.28009 -8.17308 -8.86275 -8.15618 -8.79007 -9.23427 -6.45699 -5.71689 -6.18317 -5.69543 -6.39748 -5.78553 -6.26182 -4.34078 -4.80047 -4.20528 -4.86415 -4.33157 -4.25625 -4.86209 -0.940407 -0.405157 -0.80701 -0.287566 -0.951877 -0.834829 -0.371648 -8.89561 -8.85757 -9.00203 -9.04133 -8.98708 -8.88564 -8.97875 -12.1481 -11.6149 -12.7205 -12.2362 -12.7328 -12.2307 -11.5544 -10.4906 -10.7477 -9.7823 -9.66381 -9.50634 -10.7453 -10.5225 -5.26809 -5.57762 -4.92275 -4.93299 -4.83005 -5.41528 -5.40516 -4.00964 -3.95493 -4.27746 -3.90682 -4.21576 -3.80675 -4.13388 -0.673546 -0.790156 -0.251417 -0.143866 -0.769343 -0.706894 -0.118267 -3.09191 -3.55895 -3.25199 -3.54724 -3.18063 -3.19158 -3.45331 -0.667215 -0.35137 -0.867251 -0.296753 -0.801934 -0.735527 -0.228668 -15.8684 -16.5675 -15.0571 -15.4147 -16.1476 -16.3891 -14.9399 -16.4099 -16.5717 -15.4987 -15.4612 -15.5326 -16.4842 -16.4033 -11.4701 -10.4073 -11.5585 -10.0231 -11.8487 -9.89951 -11.3184 -3.40717 -3.76673 -3.51375 -3.52934 -3.39164 -3.62307 -3.5603 -6.99648 -8.96834 -8.0321 -8.52318 -7.1337 -7.919 -8.23868 -4.98183 -4.6993 -5.34116 -4.70805 -5.17105 -4.58805 -5.15961 -0.630397 -0.820029 -0.277418 -0.27596 -0.697366 -0.721772 -0.216158 -3.54593 -4.10667 -3.70362 -4.10556 -3.62669 -3.62497 -4.01791 -0.721819 -0.30918 -0.79875 -0.234378 -0.815232 -0.701992 -0.235426 -13.7233 -14.3559 -14.0153 -14.7332 -14.1548 -13.6238 -14.339 -11.2062 -11.5054 -10.4019 -10.14 -10.3274 -11.4016 -11.2268 -5.53123 -5.58982 -5.15684 -4.9103 -5.02641 -5.70868 -5.40587 -0.732245 -0.812827 -0.303927 -0.237169 -0.816884 -0.719049 -0.243858 -6.90697 -6.85791 -6.84731 -6.72538 -6.80235 -6.68185 -6.97227 -6.98931 -7.50283 -6.7661 -6.99121 -6.8235 -7.1109 -7.23938 -10.8301 -10.4264 -10.9184 -10.6462 -10.8143 -10.46 -10.9932 -11.1057 -11.1563 -11.0642 -11.105 -11.0472 -11.0548 -11.2623 -7.92476 -8.3328 -7.36096 -8.60316 -7.39908 -8.56836 -7.99937 -7.6018 -7.42489 -6.92449 -6.47439 -6.49715 -7.39041 -7.67121 -4.3421 -4.43331 -4.08365 -4.45764 -4.2692 -4.44654 -4.11344 -3.58727 -2.84988 -2.80803 -3.383 -3.41356 -2.88901 -3.52887 -5.40151 -6.33676 -5.72906 -5.67209 -6.11802 -5.7642 -5.28524 -5.76271 -9.42242 -6.79263 -6.23755 -7.25013 -5.20732 -6.95338 -4.88029 -4.11653 -5.03191 -5.29997 -5.71365 -4.76094 -4.35891 -17.2565 -9.13936 -17.2636 -6.38701 -16.723 -6.40462 -17.7775 -17.4103 -8.7641 -15.8029 -6.68952 -17.1523 -16.5656 -6.47955 -17.9485 0.739562 2.079 -2.46511 -3.08113 0.19608 -18.4195 -19.1217 -16.1355 -20.2801 -15.7765 -19.8964 -15.5933 -19.2538 -17.9293 -18.9413 -15.7824 -14.9342 -18.0733 -18.7018 -15.6202 -18.4172 -15.5373 -19.0155 -15.2772 -18.6459 -19.0797 -15.0271 -18.4151 -16.3073 -15.4763 -19.4661 -19.3347 -16.1312 -18.6102 -2.53938 -3.14452 -2.80967 -2.15369 -3.16798 -2.32472 -2.3905 -3.47449 -7.59904 -4.97829 -5.16144 -4.91786 -3.63611 -4.94533 -2.6667 -2.70422 -2.93919 -3.42297 -3.29559 -2.57421 -2.86132 -3.97925 -3.37982 -3.74358 -3.52008 -3.82151 -3.43938 -3.93218 -4.67478 -5.14145 -4.91095 -4.19003 -4.04729 -5.44171 -4.49906 -3.09033 -2.82819 -2.48386 -2.6687 -2.77152 -3.27494 -2.71243 -4.36518 -3.52371 -6.84646 -4.07181 -4.74743 -3.61315 -6.22944 -7.32921 -7.12452 -6.6742 -7.07368 -6.90149 -7.60839 -6.98625 -9.33037 -8.26772 -11.6942 -10.6287 -9.24728 -8.37705 -12.9204 -9.57625 -9.96049 -11.3822 -10.0349 -9.84249 -9.37578 -10.1872 -8.44022 -8.46617 -7.55748 -7.17971 -7.45073 -8.24524 -8.2989 -14.8649 -13.9484 -14.9738 -14.753 -14.3685 -14.2953 -15.838 -16.0263 -18.4567 -16.5217 -15.8249 -16.5653 -16.0747 -15.9884 -17.8723 -15.2729 -17.0051 -15.1805 -14.8093 -14.3444 -15.4803 -14.94 -14.5537 -15.7267 -6.03614 -4.75602 -8.08753 -8.4021 -6.01754 -4.74946 -4.68242 -4.16803 -4.63614 -4.80143 -2.80298 -2.37899 -2.35476 -2.97583 -2.35633 -2.87011 -2.81249 -3.19299 -3.13856 -3.505 -3.58481 -3.13643 -2.70006 -2.24421 -2.76884 -2.25589 -2.70661 -3.36796 -3.4795 -3.86281 -3.69905 -3.77137 -3.4025 -3.29868 -1.68967 3.03212 2.06585 0.0795184 -1.10252 1.24752 4.07439 3.30715 0.765453 -0.312567 2.65309 8.1335 5.87266 4.98778 9.87197 26.7351 25.5271 15.1989 12.0122 10.599 16.8652 -19.0637 -11.1085 -19.7277 -6.74434 -19.4458 -6.57404 -19.16 -17.5918 0.0779267 2.4064 4.51433 0.39458 -18.5587 2.79438 -18.8677 -10.7871 -18.9736 -6.49158 -19.0934 -19.0863 -6.48835 -17.9365 2.69363 4.93132 -0.729563 -0.441069 2.6706 -18.0711 -25.4896 -22.3616 -28.2601 -22.3832 -27.1618 -21.3431 -26.4003 -22.8303 -23.0987 -19.5095 -19.4226 -22.0599 -23.8271 -20.3073 -24.057 -21.103 -24.908 -19.3414 -23.2292 -25.7577 -20.2048 -23.9839 -22.4298 -20.5579 -25.7456 -24.9289 -21.4581 -24.8768 -1.65346 -2.8284 -1.46152 -2.83175 -1.37581 -2.90494 -2.78483 -1.71049 -1.09301 -1.42527 -0.963515 -1.54102 -1.26142 -1.55976 -6.69935 -4.89608 -5.40649 -4.35649 -5.76682 -3.24008 -1.34956 -2.68697 -1.49939 0.155971 0.425961 -0.309761 -0.228625 -0.0427113 1.39741 -1.64134 -1.33395 -1.22493 -1.51104 -1.21681 -0.99258 -1.18121 -1.2376 -1.3429 -1.06928 -11.2834 -15.9506 -11.9241 -12.0515 -12.5245 -11.3809 -13.5214 -10.0112 -10.0644 -10.2244 -10.7662 -10.6436 -9.75378 -10.3834 -12.2349 -12.1543 -11.7427 -12.4716 -12.0495 -12.7654 -15.3584 -14.9937 -14.6317 -15.5179 -15.017 -14.8126 -6.27624 -5.7175 -6.13512 -5.43189 -6.04485 -6.11214 -3.02579 -2.57597 -2.57491 -2.9788 -3.06644 -2.56969 -16.7919 -5.91333 -9.92533 -5.4834 -3.68741 -10.385 -13.5483 -15.768 -16.986 -16.2525 -12.8541 -14.0273 -18.9094 -14.8767 -22.3379 -21.4419 -20.1832 -21.2005 -20.8591 -22.2516 -21.4305 -22.8502 -21.9066 -21.1993 -19.7052 -20.868 -23.1902 -21.5253 -6.84649 -13.542 -6.18762 -13.8589 -13.8405 -12.2723 -7.4847 -20.8878 -20.9266 -22.5725 -17.9938 -19.0669 -16.2221 -19.458 -19.6089 -24.7416 -21.8145 -21.3308 -24.5588 -21.0625 -19.6137 28.0901 11.6461 29.2074 19.2216 13.3018 18.1508 14.0898 -25.1435 -17.1024 -29.146 -10.4867 -27.0918 -9.50187 -27.2442 -19.7185 0.563109 3.46902 8.64583 0.609443 -19.0133 3.92954 -23.3828 -15.7584 -23.9532 -8.47712 -22.3384 -25.1862 -8.9218 -21.0814 4.43058 9.29283 0.000564456 0.267994 4.27219 -22.7986 -45.3249 -40.0142 -50.1121 -41.7143 -46.8695 -38.5903 -48.7207 -37.9983 -34.608 -31.9461 -32.3826 -35.0529 -36.3193 -34.4144 -40.6642 -36.0767 -39.8728 -32.5253 -38.1971 -42.2789 -35.02 -42.6131 -41.3238 -35.9053 -42.7378 -39.9429 -38.1184 -45.8653 -5.4453 2.80156 -4.70987 -5.18723 1.99817 8.88722 -0.900657 -8.32107 -10.2186 -12.688 6.74267 -5.12228 -1.011 -0.750035 0.677608 -2.14129 1.94861 2.35565 -3.48708 0.745266 0.858298 -0.796617 2.28811 -2.21192 2.51698 -11.0802 -11.5892 -9.78455 -12.2133 -10.0985 -12.3346 -12.398 -13.1107 -12.3579 -13.614 -15.667 -17.5178 -13.2386 6.60205 7.27981 6.74423 7.16835 7.01267 5.00419 4.3324 6.5012 4.27591 6.163 5.99605 2.43369 7.01438 7.39831 7.47403 7.28875 7.26304 7.14177 7.1486 5.24531 4.68553 5.49512 5.184 5.3197 5.08061 4.63128 3.6209 4.74694 4.55483 5.84142 5.97213 6.4248 6.45705 5.89564 -3.21299 -3.19492 -2.58851 -3.46237 -2.92088 -4.33184 -5.40416 -5.10603 -4.84001 -4.80927 -2.46619 -1.90547 -1.46717 -1.79885 -2.19423 -0.168387 -1.50997 -0.881548 -1.18206 -1.34954 0.00871596 0.411514 -1.06028 -0.793238 -0.787155 -1.44908 -1.45134 -2.24718 -2.24695 -1.63562 -1.3974 -1.39886 -1.51386 -1.35875 -1.47903 -1.23952 -1.26845 -1.28272 -1.31584 -1.25281 -1.67457 -1.65861 -1.69895 -1.62016 -1.70668 -14.029 -18.3637 -13.9066 -14.4431 -14.9309 -13.818 -16.4402 -14.3457 -18.5769 -15.1552 -15.0461 -15.3337 -14.1626 -16.6256 -12.7821 -12.4253 -12.5276 -12.612 -12.914 -12.5891 -12.8288 -12.9733 -12.5625 -12.7845 -13.2808 -13.3684 -12.7417 -12.9093 -11.3304 -11.3306 -11.4113 -11.5615 -11.5946 -11.3359 -11.4958 -10.9656 -11.5339 -10.2918 -11.105 -10.9064 -11.3641 -11.4483 -16.7055 -16.6822 -18.0738 -25.5569 -14.6713 -20.5527 -20.3646 -34.075 -31.2864 -31.0713 -36.2382 -30.5519 -35.7529 -34.6122 -35.9082 -38.1354 -34.7584 -36.0634 -34.6254 -35.5299 -37.8695 -75.3679 -50.3272 -93.7218 -49.0894 -78.9189 -37.1604 -92.1375 -58.3286 -7.36906 1.16753 13.5787 -12.5438 -45.8508 -3.11117 -62.0996 -40.4556 -54.6461 -23.9888 -51.597 -65.0915 -29.3356 -71.3945 -18.6137 9.06094 -38.552 -20.1623 -7.83187 -94.2076 -123.167 -107.383 -137.868 -121.534 -123.876 -106.782 -137.027 -96.9416 -78.1393 -77.2779 -80.8744 -86.4604 -90.5142 -87.5822 -103.569 -90.3765 -92.9042 -79.6131 -92.016 -103.787 -89.9923 -114.944 -118.313 -97.206 -124.536 -109.82 -103.739 -128.318 49.611 50.938 24.8494 30.0516 41.123 40.5349 36.8937 -18.7128 -9.81199 -15.0717 -14.8205 -12.7589 -11.9194 -19.0619 -32.1935 -27.3834 -29.1629 -31.5584 -27.886 -31.0474 -33.71 5.26975 4.18935 6.34789 4.20082 6.04804 5.98714 2.36524 6.93183 7.48333 7.29829 7.13728 6.94532 7.29298 7.18935 7.06362 7.00568 6.88556 7.38086 6.8533 7.35375 7.10457 6.81302 6.77847 6.41675 6.45962 6.42863 6.80966 6.81239 -0.32053 -1.74345 0.0123839 -1.45612 -1.12673 -1.25804 -1.1021 -1.52645 -1.49269 -1.32986 -13.0154 -13.146 -13.3798 -13.6416 -13.7681 -14.7722 -17.7213 -18.5895 -15.1914 -15.8627 -11.2723 -11.2454 -11.2395 -11.7008 -10.5109 -11.3622 -11.1183 -11.4797 -11.7921 -11.8362 -11.7769 -11.8161 -11.4915 -11.6106 -13.1701 -12.8744 -12.6822 -13.0974 -12.6407 -12.7987 -13.0301 -13.6918 -13.3223 -13.0766 -13.3106 -13.0949 -13.1994 -13.4121 -7.69295 -7.88607 -7.63928 -8.29948 -7.71627 -8.19457 -7.79474 -8.09056 -8.20653 -9.27495 -9.12313 -8.4775 -7.37068 -7.76939 -7.61828 -7.6065 -7.96386 -8.34128 -9.00528 -9.55905 -9.27981 -9.20755 -8.87832 -8.45647 -3.48132 -2.94189 -2.81574 -3.53477 -2.88583 -3.54434 -3.45008 -4.24284 -4.19823 -4.86786 -4.7475 -4.80548 -4.27376 -4.1553 -89.2324 -105.735 -102.855 -116.259 -91.5406 -110.716 -101.384 -76.2054 -62.6188 -75.3157 -71.0571 -67.9737 -89.323 -82.2364 -96.3886 -81.1007 -82.0301 -81.521 -103.013 -84.984 -106.536 -84.544 -85.6198 -76.3665 -98.2131 -93.9939 -147.555 -130.556 -113.514 -146.411 -128.565 -116.675 -132.377 -124.835 -101.706 -99.1816 -147.083 -128.497 -135.332 -123.533 -108.666 -114.253 -116.521 -101.636 -120.349 -104.786 -114.225 -178.261 -164.224 -177.14 -164.072 -176.331 -165.089 -179.148 -188.48 -191.228 -191.388 -184.144 -186.518 -192.884 -186.871 -38.5616 -43.02 -36.4257 -29.9907 -27.8953 -45.8113 -40.5304 -93.6219 -81.575 -78.8579 -85.6018 -84.2846 -89.3905 -94.35 -102.433 -106.273 -96.1114 -93.1538 -91.4735 -107.545 -108.7 432.782 432.677 431.961 424.761 426.179 425 428.251 -173.378 -182.616 -174.358 430.369 431.264 430.85 426.236 421.07 421.557 426.805 433.884 432.202 433.055 433.408 434.493 433.224 433.143 284.064 299.831 232.164 304.559 264.395 308.658 256.48 314.026 307.703 321.687 294.696 320.518 330.238 280.89 414.433 426.596 424.04 398.102 384.123 387.352 402.287 431.032 429.804 429.378 430.511 430.513 429.896 431.138 -128.367 -137.709 -129.479 -129.487 -135.511 -134.966 -123.888 -85.7933 -86.7634 -89.5711 -78.9577 -85.9795 -89.0916 6.03341 5.42392 4.51234 5.57612 5.03883 5.98382 5.74185 7.0906 7.6875 7.6319 7.13715 7.67905 7.1139 6.38268 5.98247 6.17945 6.61741 5.61505 6.26155 6.93158 6.76042 7.66923 7.91859 7.60681 6.99735 6.94486 -2.42055 -2.87934 -3.32203 -3.04864 -2.78857 -2.43926 -3.09819 -0.997366 -0.275351 -0.594877 -1.69107 -0.877268 -0.667918 -1.48349 -1.98395 -2.31715 -2.00315 -1.75739 -1.90278 -2.32791 -1.94095 -1.79604 -2.73932 -1.65225 -2.13607 -1.3204 -1.95844 -2.58236 -1.01287 -1.20242 -0.446069 -1.12518 -0.680731 -1.4829 -0.500344 -0.75353 -0.293237 -0.711687 0.833212 -0.369215 -0.815501 0.404154 -1.15468 -1.2824 -1.20957 -1.09203 -1.32742 -1.03327 -1.27787 -1.41287 -1.34068 -1.5503 -1.47132 -1.57508 -1.49654 -1.36011 -0.930891 -1.37595 -2.32399 -0.374768 -0.917746 -1.75317 -0.60322 -1.24022 -1.32819 -1.14729 -1.20094 -1.21264 -1.15283 -1.35068 -2.6213 -3.11514 -2.21421 0.0906507 -2.97863 -2.23554 -2.0464 -2.27867 -2.59907 -2.35994 -2.72561 -3.23653 -3.11902 -2.9844 -2.87466 -21.6203 -23.2996 -23.3901 -24.8329 -20.813 -24.1485 -23.4372 -27.0338 -23.3769 -24.2332 -24.1287 -25.5987 -25.02 -25.3519 -24.6735 -144.612 -141.435 -137.797 -141.502 -124.549 -130.572 -141.297 -138.006 -128.555 -129.912 -133.379 -133.814 -132.647 -135.668 -141.242 -146.451 -143.501 -133.768 -137.02 -149.379 -139.589 -0.64395 -2.29989 -1.47909 -0.296494 -1.75234 -0.741972 -0.739963 -53.7796 -50.6589 -46.8602 -150.201 7.52129 -59.5178 -21.5596 431.24 429.734 423 429.381 433.306 430.24 428.773 430.638 430.454 430.825 427.181 431.148 430.509 429.164 -35.0214 -29.3582 -23.3328 -33.3658 -23.9126 -36.8092 -31.4751 -34.7267 -34.7427 -30.7208 -23.1862 -36.0082 -32.6686 -25.4725 -75.0477 -50.4777 -76.3864 -52.3178 -86.0454 -49.2595 -52.6043 -18.3136 -13.3722 -18.7784 -13.9225 -12.2284 -15.5844 -10.0673 -14.5028 -14.6522 -18.1511 -15.2424 -14.938 -13.6944 -16.1885 -13.7899 -15.6666 -12.0148 -15.0669 -12.8796 -13.2163 -15.4373 -2.56833 -1.52738 0.31751 1.10749 2.81493 -2.56825 -1.51283 -10.5045 -9.3601 -8.69723 -11.5977 -8.69859 -10.6438 -11.5271 -13.144 -7.4361 -11.0685 -10.2856 -9.11738 -9.82321 -13.6186 -10.6941 -12.0167 -8.39385 -9.92825 -8.46996 -10.7594 -11.1904 -10.0803 -12.577 -8.71908 -9.73868 -9.97298 -8.77236 -12.2837 -8.48411 -7.1381 -7.52538 -7.68065 -8.25747 -7.77255 -7.66145 23.5382 6.97891 0.798903 7.81677 17.9161 12.5579 11.7704 -8.61435 -7.45592 -10.2131 -4.46207 -4.89244 -10.1961 -8.4563 -13.7862 -17.3264 -17.6655 -17.9582 -17.6211 -16.6862 -13.9597 -29.8925 -31.4219 -31.9431 -30.872 -30.876 -28.6875 -32.204 -30.4941 -32.6052 -32.7104 -36.2155 -34.2456 -30.0397 -33.4966 -36.5941 -33.0391 -29.5379 -24.9542 -33.2506 -34.2944 -28.3769 -82.6342 -77.2596 -96.0125 -78.1189 -79.7893 -63.7521 -51.7815 -55.0739 -57.533 -58.8209 -55.8107 -62.9586 -67.6003 -63.3128 -59.5592 -56.8445 -61.64 -64.3125 -65.5071 -79.2735 -91.0115 -68.2252 -65.5443 -76.7465 -115.614 -116.749 -134.823 -147.465 -116.258 -127.404 -140.456 -190.758 -192.685 -216.796 -211.553 -198.755 -197.407 -225.087 -189.608 -178.4 -174.442 -195.494 438.173 435.702 437.24 433.002 434.945 438.26 436.75 439.151 438.219 439.806 438.459 439.396 439.402 437.77 -70.9293 -78.1068 -62.4312 -66.2071 -75.579 -79.0542 -57.8186 0.0697542 -8.87163 -0.467575 -1.76377 -2.5231 -4.72466 1.04786 412.126 411.641 410.407 412.507 411.749 413.475 413.157 415.66 415.093 411.934 413.672 412.863 414.642 416.21 429.412 426.969 426.991 427.647 425.313 426.22 427.72 434.895 429.837 433.977 433.064 432.921 432.175 435.687 434.613 434.763 434.104 434.227 433.715 434.533 434.757 -85.5078 -80.0779 -85.5061 -79.2475 -84.5538 -80.5412 -84.586 -92.1983 -98.4318 -95.0194 -92.5331 -90.7427 -96.4312 -92.1489 -128.434 -129.009 -128.642 -122.161 -130.012 -127.563 -126.918 -36.3056 -41.7518 -43.1705 -45.9373 -34.3171 -42.092 -48.0925 -13.149 -1.8662 1.0935 -2.18364 -10.5183 -11.717 -6.5564 -30.3537 -40.6132 -38.0586 -17.4416 -28.5293 -43.2854 -25.507 -98.4513 -95.9041 -104.813 -107.497 -93.2734 -98.6501 -104.333 -94.6054 -85.6394 -92.5058 -79.865 -96.7798 -84.2959 -97.7964 -102.758 -108.456 -111.142 -102.972 -103.575 -105.188 -107.384 -0.584762 -3.64667 -10.8288 3.64567 -2.48411 -6.1554 3.97798 -53.5742 -52.5598 -57.4578 -42.9754 -60.3575 -47.5831 -47.7217 -61.3176 -56.0023 -79.8244 -63.8403 -72.3485 -70.2235 -50.7441 -1.61402 -2.71756 -2.28438 -2.56571 -1.78278 -2.4905 -1.90323 -0.332488 -1.85433 -1.9215 -1.98616 -1.27915 -1.59213 -0.877556 -9.14354 -10.174 -8.72812 -8.8102 -9.42019 -9.40029 -8.57471 -9.97762 -14.3918 -11.4071 -11.4458 -11.1073 -9.83635 -11.7019 -8.8319 -8.481 -8.82083 -9.42292 -9.31659 -8.46611 -8.80186 -7.79421 -7.61078 -8.13218 -6.95961 -7.91403 -7.49366 -8.00688 -7.68934 -7.66602 -7.54332 -7.64931 -7.59081 -7.68537 -7.63796 -7.7499 -7.84587 -6.90491 -7.4403 -7.45369 -7.94184 -7.69142 -11.4496 -11.2859 -11.4192 -11.2109 -11.546 -11.189 -11.3554 -11.0641 -10.6361 -10.3757 -10.7719 -10.7698 -10.7843 -10.9138 -11.3674 -11.3393 -11.1251 -11.165 -11.1224 -11.3084 -11.3796 -8.05619 -7.04569 -7.59021 -7.2027 -7.89741 -7.09187 -7.67959 -3.73725 -3.52621 -3.00129 -2.9588 -3.66394 -3.57214 -3.07901 433.877 426.579 433.196 426.546 433.343 425.872 427.984 179.506 111.994 104.588 191.77 102.044 169.705 190.808 423.777 421.638 423.385 424.443 422.527 424.861 422.639 419.127 422.106 419.649 414.042 422.145 418.542 417.131 418.937 422.171 418.81 419.26 420.572 420.557 418.275 402.577 406.493 405.718 402.956 405.802 403.981 402.041 406.61 407.417 406.86 406.255 406.621 404.832 406.712 402.356 401.861 405.55 406.489 405.864 401.444 402.422 419.014 418.944 419.4 419.625 418.804 418.828 419.799 417.345 416.012 417.312 415.905 417.398 415.679 417.406 418.648 418.807 419.101 418.357 418.607 418.735 418.495 416.365 415.093 418.775 415.099 420.829 414.775 415.792 -57.5905 7.01538 -21.9909 -66.5427 -54.6464 -102.963 36.4455 7.7148 8.49541 8.18609 8.45075 7.79218 8.3991 8.0648 6.09274 6.08221 7.48952 3.3879 7.54789 5.98933 3.48628 7.61715 7.86218 8.40664 8.26949 8.34822 7.94733 7.51571 6.61914 6.41673 6.47695 5.8738 6.54819 6.40762 6.47576 6.89347 7.249 6.82509 7.14334 6.8682 7.17619 6.86511 6.62566 6.94434 5.85814 6.21205 6.42273 6.47659 6.51797 -1.12497 -1.29641 -1.79505 -1.83176 -1.26598 -1.24712 -1.71652 -1.84927 -2.77583 -2.37758 -3.09843 -1.43028 -2.91002 -2.65086 -2.28946 -2.31008 -2.04862 -2.09911 -2.21403 -2.35504 -2.09502 -8.50795 -9.26939 -8.25802 -8.7668 -8.51626 -9.26319 -8.24204 -9.47847 -14.2473 -11.1256 -11.1594 -11.1807 -9.43783 -11.1944 -8.48109 -8.17281 -8.72365 -9.18376 -9.22721 -8.20517 -8.44731 -7.37602 -7.13709 -7.53187 -6.48369 -7.40867 -7.0495 -7.50367 -7.36505 -7.43316 -7.35048 -7.4199 -7.32584 -7.41579 -7.38633 -7.34554 -7.53943 -6.46975 -7.11334 -7.00174 -7.50642 -7.37813 97.8448 182.021 173.157 180.022 112.126 99.6957 190.242 434.635 434.557 428.707 434.123 428.73 429.321 429.376 -92.9719 -100.034 -91.6776 -95.5142 -92.2626 -96.3609 -92.27 -93.1181 -101.844 -94.1345 -98.4828 -93.5149 -93.3608 -98.2398 408.195 406.206 410.498 407.758 409.588 403.447 409.193 407.315 407.005 401.312 409.067 401.143 408.444 407.868 419.89 420.604 417.93 419.409 418.304 419.35 420.66 414.074 406.352 412.807 421.992 409.831 416.391 417.506 416.697 422.786 419.021 417.185 417.155 418.462 415.732 259.541 223.99 241.629 218.1 254.01 223.233 249.021 291.571 322.345 288.341 317.671 296.384 315.995 282.06 272.679 258.199 261.445 266.857 271.802 269.282 258.887 288.597 235.292 268.494 317.332 317.009 232.963 277.705 7.00863 7.82288 7.45241 7.80199 7.10956 7.71576 7.36919 5.31221 5.37929 6.76101 2.61266 6.84301 5.25422 2.70321 6.89364 7.18269 7.70382 7.53302 7.61165 7.26046 6.81954 6.47535 7.00669 6.56874 6.94709 6.58788 7.16396 6.52402 -7.53907 -7.17862 -7.73294 -6.71372 -7.48717 -7.19066 -7.77857 -7.2508 -7.67298 -7.3407 -7.39566 -7.3649 -7.46644 -7.15229 -7.56896 -7.37763 -6.78753 -7.30524 -7.23795 -7.85974 -7.45952 -11.0521 -10.8173 -10.8576 -10.7717 -11.0078 -10.8569 -10.8918 -11.0642 -10.6749 -11.0398 -10.9636 -10.955 -10.8369 -11.1619 -11.1868 -11.096 -10.9363 -11.135 -11.0316 -11.0175 -11.2723 -7.34218 -6.58205 -7.20107 -6.70486 -7.51006 -6.47271 -7.07079 -7.56881 -7.77346 -6.59188 -7.91687 -6.73985 -8.10262 -7.35585 -7.25805 -6.7684 -6.6206 -6.25894 -6.4176 -6.97779 -7.02126 -3.45898 -3.33576 -2.80721 -2.71447 -3.49272 -3.31014 -2.78734 -3.90662 -4.37815 -3.84418 -4.28686 -3.89477 -4.37201 -3.84621 -3.4053 -2.72667 -2.66481 -3.2429 -3.26291 -2.74028 -3.36368 58.2199 3.07493 84.824 40.514 19.1272 22.7378 28.0656 -90.5831 -96.0567 -97.2258 -90.3291 -96.9867 -93.9205 -91.198 -85.5762 -83.5791 -86.2113 -74.4469 -77.2839 -88.7974 -87.0048 -137.728 -143.58 -137.383 -133.69 -146.577 -137.489 -130.328 -145.69 -151.319 -140.411 -146.323 -149.362 -153.506 -133.873 -138.9 -134.623 -146.854 -132.253 -144.44 -151.016 -125.866 -139.347 -136.329 -143.147 -141.769 -146.481 -139.167 -134.556 334.337 329.685 354.486 378.982 352.491 363.632 367.55 437.067 437.554 436.978 437.037 436.982 437.372 436.72 436.393 434.936 435.387 436.353 436.265 436.188 436.092 432.03 427.775 431.314 430.761 434.042 429.92 432.604 425.277 410.896 417.191 413.939 418.278 423.175 420.494 236.102 337.731 291.61 323.726 288.426 336.227 273.801 227.207 257.907 258.334 267.973 266.382 243.059 256.791 416.7 415.572 412.052 422.9 411.772 418.75 416.688 416.626 417.784 408.846 415.373 414.564 410.964 419.803 423.547 422.777 423.894 424.559 422.932 424.643 424.449 269.188 341.976 268.339 236.681 312.576 322.278 185.036 433.031 433.425 433.249 433.731 432.905 433.549 433.229 432.376 432.728 431.376 432.596 431.97 431.802 432.623 -61.1959 -62.2073 -75.4887 -72.1476 -79.3099 -57.2954 -62.6177 -117.665 -112.387 -117.14 -106.261 -121.657 -108.859 -116.885 -125.085 -133.905 -132.261 -124.808 -127.815 -133.473 -126.227 -235.583 -248.042 -244.519 -194.234 -206.764 -196.294 -203.194 5.95794 6.67733 6.51154 6.48448 6.13483 6.15594 6.40667 5.54021 5.45939 5.59781 4.66836 5.63023 5.32705 5.46957 5.63096 5.83397 5.43119 5.69393 5.54463 5.86248 5.54875 5.30257 5.01432 4.46868 4.95755 5.11822 5.20738 5.16105 -2.12438 -2.0141 -2.46997 -2.77842 -1.96935 -2.20728 -2.65285 -1.71106 -1.15342 -2.18493 -1.20013 -1.89735 -0.94448 -1.95929 -2.5173 -3.29209 -3.15141 -2.91272 -2.60729 -3.03186 -2.77291 -2.10827 -3.43463 -3.17914 -3.68597 -2.92416 -3.3582 -3.02471 -2.75929 -3.73755 -3.36108 -3.46199 -3.37254 -3.40355 -2.81006 -1.95659 -2.90175 -3.69289 -3.27807 -3.35874 -2.93378 -1.86221 -2.37662 -2.51208 -2.06575 -2.17172 -2.38855 -2.48481 -2.09648 -2.69662 -3.06841 -2.74418 -2.92286 -2.76829 -2.96121 -2.67473 -2.3868 -2.06898 -2.17761 -2.42386 -2.47404 -2.10525 -2.34915 -6.05572 -5.00015 -5.69314 -5.72338 -5.66768 -8.31574 -11.5797 -7.35279 -8.80353 -8.87206 -6.91301 -11.6231 -6.5615 -5.52924 -6.3111 -6.35347 -7.01916 -6.08854 -5.9311 -8.9637 -10.5978 -10.3834 -11.3567 -9.25091 -9.86204 -9.96095 -7.96403 -6.94617 -7.96612 -6.97687 -7.59966 -7.13661 -8.06408 -8.79256 -10.112 -8.7518 -9.0901 -8.42943 -9.06759 -9.44536 -8.02809 -9.68371 -6.80626 -7.63654 -6.99565 -8.43218 -8.99758 -13.9135 -13.5029 -14.384 -15.6598 -13.3599 -14.1282 -15.1706 -14.6033 -16.3718 -14.3861 -15.9386 -14.4032 -14.6095 -15.9913 -4.52898 -4.61699 -4.01142 -3.97423 -4.5246 -4.85308 -3.62314 -4.90422 -4.79465 -6.55111 -5.94983 -5.90778 -5.50864 -4.29488 -2.05427 -2.04167 -2.03233 -2.35838 -1.83292 -2.41907 -2.2608 -2.71712 -2.86517 -3.56753 -3.32474 -3.95782 -2.99834 -2.7888 -11.849 -17.9028 -19.6298 -15.5576 -14.3284 -14.7521 -15.8436 -12.2188 -18.27 -13.5128 -15.7034 -11.5305 -14.2933 -15.0618 -19.8996 -21.67 -21.6522 -25.7611 -19.2071 -22.5596 -22.9026 -18.9333 -17.9742 -19.6744 -20.5906 -18.0569 -18.5792 -20.267 -18.735 -20.5226 -17.0293 -20.1395 -17.7539 -17.9012 -21.438 -20.1031 -21.721 -21.5679 -21.2138 -19.5605 -21.7801 -21.1192 -17.0524 -13.4581 -21.4154 -21.9647 -15.3999 -17.6735 -26.0754 -37.2051 -28.5637 -33.281 -31.1443 -33.384 -32.5434 -34.8291 -32.1911 -38.0605 -35.1746 -27.0038 -1.3906 -34.2635 -4.31185 -9.46058 -41.6638 -16.8155 -30.2957 -36.3028 -43.0161 -43.1468 -42.6984 -37.8917 -27.2036 -71.0289 -86.702 -67.5128 -61.1013 -75.1028 -73.9479 -76.4675 -92.9961 -73.3792 -78.4797 -171.087 -127.797 -162.202 -134.93 -177.577 -129.931 -132.38 439.64 438.747 440.253 438.552 439.651 440.187 438.121 -145.965 -138.489 -147.252 -140.668 -144.446 -140.94 -146.667 434.654 438.759 435.208 436.598 437.172 435.297 432.301 306.076 290.475 279.264 206.072 347.428 221.284 294.352 352.04 357.924 361.944 309.37 374.319 328.379 345.064 286.939 289.421 363.872 297.16 351.664 217.334 338.532 137.89 212.848 155.007 105.054 218.845 108.012 141.938 -95.6636 -65.2499 -81.0233 -57.8959 -40.2501 -46.3004 -39.0705 -24.475 -32.6007 -29.3372 -25.0604 -31.2461 -32.9092 -22.0133 -54.7357 -54.2245 -51.7352 -46.6003 -57.1986 -52.455 -50.5829 -51.5862 -45.7544 -47.7423 -47.2862 -49.2653 -49.4097 -49.1659 0.544305 0.501213 1.46514 4.74681 4.44158 -0.737681 -0.108305 -24.4245 -24.6757 -24.3412 -21.9316 -26.8041 -17.8681 -16.0465 -15.4794 -17.6315 -17.2774 -18.8141 -17.4983 -20.9196 -21.4794 -21.0216 -17.1105 -19.304 -23.5094 -19.6576 7.17546 10.8501 10.6016 11.4553 7.28069 9.50908 9.17895 2.80585 -0.135871 0.476102 2.51749 2.80363 0.357672 1.91082 -11.306 -10.6498 -15.3485 -12.1241 -12.4545 -9.81008 -14.9734 -11.8031 -15.5001 -13.905 -13.3501 -12.8516 -12.5696 -13.5003 439.598 439.466 439.515 439.554 439.741 439.094 439.661 -136.072 -150.938 -145.737 -147.237 -138.851 -146.741 -139.009 -123.774 -110.843 -110.966 -130.487 -125.938 -109.027 -125.298 -22.9691 -23.311 -31.6179 -32.6796 -31.1147 -24.4841 -23.9381 353.705 371.536 387.32 328.213 400.238 325.295 349.172 327.107 333.201 297.33 240.437 256.625 346.134 302.539 -168.057 -171.304 -169.512 -168.353 -168.555 -169.655 -167.301 -136.252 -124.823 -112.196 -134.827 -132.65 -115.095 -144.257 -8.51803 -8.41894 -8.3733 -9.31551 -8.35022 -8.40761 -8.42362 -8.4918 -8.0067 -7.93669 -8.57286 -8.85248 -8.20756 -11.6756 -11.5898 -11.5599 -11.1832 -11.737 -11.513 -11.4244 -11.7645 -11.3071 -11.5365 -11.55 -11.7702 -11.5424 -11.4688 -8.00387 -7.55956 -6.98348 -8.20048 -7.25513 -8.43252 -7.56278 -7.73115 -7.13233 -7.05517 -6.68514 -7.21237 -7.24516 -7.28447 -4.09201 -5.28867 -4.10556 -4.55292 -4.32538 -4.66427 -4.13361 -3.30148 -2.74252 -2.70995 -3.15222 -3.16008 -2.72415 -3.28334 -112.715 -133.214 -125.78 -119.021 -127.13 -117.082 -111.317 -99.5827 -111.047 -92.2801 -86.4456 -104.821 -116.588 -132.52 -124.031 -131.789 -118.247 -94.2263 -100.926 -88.049 -78.4862 -80.5797 -102.038 -91.2122 -88.2866 -88.6898 -85.8307 -87.6793 -87.6495 -88.6543 -86.9651 -90.4069 -88.2276 -90.2858 -86.3549 -89.7237 -93.0742 -87.2346 363.832 313.046 330.873 341.615 360.657 370.278 322.207 437.935 439.038 439.677 438.777 439.055 438.314 438.547 437.902 439.632 439.294 438.704 437.981 439.249 438.656 436.289 437.129 432.98 433.99 432.583 436.623 436.893 -102.566 -93.9915 -91.3184 -108.354 -90.4617 -105.708 -105.36 -95.299 -85.3735 -76.4097 -99.505 -90.567 -82.8032 -101.16 -106.811 -104.753 -108.409 -105.884 -106.908 -108.218 -105.318 -149.863 -111.423 -114.05 -75.4187 -127.045 -99.5338 -114.813 -137.21 -130.772 -137.812 -135.872 -140.408 -132.946 -124.186 -95.5681 -80.2045 -73.9187 -86.7113 -78.0486 -155.793 -137.343 -149.473 -148.288 -146.12 -145.774 -153.689 -108.727 -107.332 -117.848 -163.74 -163.616 -162.94 -156.521 -155.354 -169.056 -160.83 -132.765 -136.131 -116.902 -125.161 -6.21581 -5.71884 -5.61117 -5.84328 -5.83514 -6.03547 -5.91697 -8.39422 -9.5192 -8.49383 -7.77894 -11.6772 -6.62903 -6.38349 -6.95406 -6.59827 -6.32855 -7.33468 -7.1156 -7.35081 -7.02605 -7.48289 -6.96459 -7.30971 -7.61392 -7.2214 -8.13095 -7.50245 -7.86351 -7.51491 -7.48121 -11.282 -11.1138 -11.0375 -10.9398 -11.2748 -11.1152 -11.2272 -11.2862 -11.0051 -11.0991 -11.0723 -11.3895 -10.643 -11.0759 -7.1281 -8.34041 -7.33892 -7.85583 -7.72593 -8.00011 -7.08269 -6.40295 -6.42865 -6.65968 -6.74613 -7.04161 -6.45665 -5.99166 -3.79233 -4.32071 -3.9586 -4.33034 -3.79078 -4.31159 -3.9185 -2.89483 -2.99727 -3.01191 -3.31513 -3.2642 -3.93751 -3.3197 -20.9535 -17.1327 -28.0877 -26.8194 -18.5265 -20.6717 -28.1798 -19.9726 -25.0543 -21.6216 -18.5929 -29.4388 -61.511 -53.0813 -60.9225 -53.1801 -61.2286 -51.4892 -59.4746 -43.7505 -45.3088 -47.1411 -51.3002 -48.8082 -50.3084 -58.4493 3.17163 8.17444 -2.24601 32.3849 29.3929 40.1375 21.9635 -155 -132.29 -126.993 -118.205 -120.875 -91.1585 -94.3011 -85.5353 -61.9372 -86.5335 -67.8619 -46.7301 -62.7649 -48.3133 -93.8784 -54.1297 -70.9627 13.4451 -15.8263 -78.6904 -37.5034 -0.947811 71.8165 78.022 37.1235 19.9168 18.674 35.0369 -116.503 -122.645 -113.905 -94.5883 -119.78 -111.078 -111.518 -120.483 -127.041 -133.68 -140.454 -133.585 -122.238 -121.261 -168.762 -169.989 -171.059 -168.778 -168.603 -168.952 -171.792 -176.067 -170.5 -178.701 -176.295 -169.976 -170.181 -178.683 -177.858 -180.713 -167.332 -178.303 -166.05 -175.34 -182.147 -167.606 -166.239 -170.636 -162.022 -163.819 -169.419 -170.902 -71.4168 -112.401 -130.223 -36.2554 -20.7549 -36.0759 -21.7176 -26.3676 -28.1762 -30.166 -35.2988 -24.0269 -29.8049 -31.1179 -45.7983 -41.0276 -43.1314 -37.7902 -43.8396 -40.4061 -44.8338 -53.016 -62.5158 -55.5016 -59.1369 -55.0791 -61.0123 -52.3793 -42.781 -37.2954 -39.4467 -40.7936 -41.71 -39.934 -39.4067 -8.06417 -8.24566 -8.43921 -8.1098 -8.54942 -8.92413 -8.89732 -8.14458 -7.91386 -8.01334 -9.00391 -7.77343 -8.31682 -8.53684 -9.07788 -10.5806 -11.4172 -11.2465 -9.65739 -9.82861 -9.66693 -14.5761 -10.6662 -14.4245 -11.9151 -11.8488 -8.55169 -8.70218 -9.05041 -9.49209 -9.47318 -7.79791 -8.39053 -7.89344 -7.88016 -8.04113 -7.83306 -7.70066 -7.80786 -7.42846 -8.26617 -8.03388 -6.80482 -7.91313 -10.8616 -10.5849 -10.9343 -10.8128 -10.7647 -10.6837 -10.9732 -10.8837 -10.8685 -10.7286 -10.9859 -10.7898 -10.777 -10.9861 -7.0733 -8.16091 -7.96297 -8.21255 -7.46791 -8.05351 -7.4933 -6.66725 -7.05914 -7.1236 -7.46751 -7.14267 -6.95817 -7.1174 -4.10369 -4.63719 -4.08142 -4.61419 -4.09982 -4.61577 -4.07825 -3.43929 -2.85612 -2.88054 -3.5178 -3.47608 -2.86224 -3.44749 -15.9521 -21.8683 -27.4598 -17.896 -21.1478 -21.4232 -17.5867 -9.18311 -9.7129 -8.99395 -30.082 -22.8652 -25.0933 -27.8813 -25.7851 -24.8986 -27.7299 -26.2094 -23.7619 -24.362 -25.9527 -25.2988 -24.3353 -23.5657 -25.3831 -24.2647 -27.2991 -24.0387 -26.5131 -24.084 -23.9697 -26.9509 -24.0937 -25.5271 -24.3304 -23.5922 -25.2194 -23.8626 7.08613 10.4455 4.93979 11.5881 22.3358 16.3195 16.3066 7.74566 1.84619 3.93877 9.01737 8.61039 12.335 5.9166 -44.2684 -36.1293 -33.4123 -27.5777 -31.5414 -32.4213 -27.6571 -28.0155 -23.1969 -28.2801 -21.2837 -16.9188 -18.9457 -17.7316 63.7939 7.3525 57.5984 29.3639 18.863 32.7792 17.0744 6.73824 36.3582 38.4559 19.684 10.6106 11.0431 18.5941 -40.9131 -35.1409 -38.7904 -27.0362 -41.694 -29.1012 -38.2969 -48.3834 -40.0567 -52.8661 -37.0336 -51.8004 -48.316 -33.0057 -73.7394 -63.1001 -64.7743 -59.49 -70.002 -65.1205 -68.0093 -79.981 -76.5852 -80.4772 -66.3206 -89.3775 -69.4854 -71.9724 -84.0409 -72.6248 -86.5592 -82.3549 -92.2962 -80.0667 -74.1763 -68.5456 -57.2432 -57.9958 -56.8723 -60.9712 -62.7273 -62.6117 -25.0426 -41.2478 -45.1046 -11.1773 -6.15972 -10.3616 -6.68465 -15.4549 -2.35963 -33.2572 -5.7241 -5.67165 -16.4288 -22.3291 -17.3156 -22.3256 -23.9666 -18.1364 -20.4645 -19.0986 -27.8473 -30.1969 -25.9588 -27.3047 -27.9929 -28.9891 -25.7065 -29.144 -32.1794 -30.1213 -30.0613 -28.9652 -29.2207 -30.2984 -34.1202 -35.8469 -33.037 -31.5228 -31.7973 -27.3516 -26.5696 -27.7316 -25.7727 -27.2377 -27.6499 -25.8427 -21.7132 -23.7869 -23.6206 -21.3737 -22.894 -21.5264 -21.8252 -7.93975 -9.11707 -7.71231 -9.04981 -9.64137 -12.3504 -10.9746 -11.317 -10.761 -12.0824 -15.5146 -15.4905 -14.3342 -15.8259 -14.8567 -14.9611 -16.3847 -5.42638 -7.4384 -6.04528 -6.98053 -6.17371 -7.07556 -5.251 -4.78156 -4.55824 -5.26595 -4.95537 -5.51288 -4.83466 -4.43463 -3.48151 -3.73067 -3.37015 -3.21603 -3.44814 -3.60314 -3.80969 -2.83956 -2.28206 -2.47137 -2.78651 -2.93016 -2.42346 -2.76207 -19.9177 -21.6757 -19.4138 -19.2467 -20.8836 -20.0255 -18.9149 -18.4381 -17.39 -19.5104 -18.1145 -18.9397 -18.5148 -17.6821 0.444838 2.19935 -0.977847 1.37055 6.02535 3.57132 3.72247 0.947356 -2.96048 0.255562 -1.96475 -1.59911 -0.117257 1.87778 -19.3687 -16.398 -16.5599 -11.8602 -12.4558 -14.2886 -10.7534 -13.7286 -12.2272 -7.41421 -13.9396 -8.50017 -9.57127 -8.13811 34.2961 5.4712 32.2669 15.1389 9.46957 17.2906 7.76728 3.60156 26.9541 27.4116 11.1837 3.52581 10.6531 3.97288 -25.9701 -21.1792 -24.1238 -17.592 -24.8409 -17.9252 -25.4968 -27.1231 -21.8648 -26.9841 -18.9509 -27.9371 -25.9373 -18.1646 -35.8325 -30.5755 -33.3233 -29.6652 -34.7843 -31.331 -34.0975 -34.3326 -38.4555 -35.1109 -32.7295 -36.5509 -37.0114 -32.9833 -39.183 -33.1448 -39.6435 -35.6502 -41.2746 -37.876 -33.5835 -31.6852 -29.1097 -30.5555 -33.8527 -35.0155 -30.6732 -30.2853 -13.5104 -25.1618 -26.3267 -3.13297 -0.0992799 -2.80359 -0.311798 -18.6234 -24.6022 -18.0616 -17.3366 -20.1341 -22.5245 -22.078 -21.1411 -20.5424 -22.8348 -8.86695 -8.56304 -7.90186 -8.31081 -8.27692 -8.78159 -8.34532 -7.81968 -7.66382 -7.64122 -7.24203 -7.81188 -7.96293 -8.36125 -8.54606 -7.65145 -8.34923 -7.93318 -7.78052 -10.8767 -10.3448 -10.1902 -11.2866 -10.4302 -10.8365 -10.7821 -10.4961 -10.4089 -10.5267 -10.623 -6.82999 -7.04143 -6.64434 -6.75418 -6.73732 -7.35077 -6.26786 -7.1496 -6.96907 -8.06669 -7.83346 -7.8971 -7.66232 -6.69165 -3.37431 -2.82703 -2.75778 -3.36212 -2.77812 -3.46564 -3.3375 -3.93732 -3.99875 -4.47439 -4.37889 -4.34207 -3.99832 -3.95233 -22.2924 -17.8892 -20.3757 -16.2811 -20.6731 -16.5009 -22.0465 -22.6874 -18.1721 -21.4012 -16.8101 -22.9541 -21.066 -16.5786 -22.6865 -20.586 -23.0811 -20.1199 -23.6582 -20.7323 -21.9761 -25.1907 -27.4663 -22.9101 -22.6417 -25.6715 -26.977 -22.2618 -23.8857 -21.4725 -25.2981 -22.3239 -24.7919 -24.6637 -21.5814 -24.4509 -21.1027 -21.7214 -25.4392 -26.0498 -21.528 -24.1962 -9.20995 -9.74826 -9.58106 -9.18939 -9.59831 -9.39824 -8.96636 -9.28641 -9.09245 -9.36952 -9.2647 -9.16129 -9.16913 -9.60043 -9.51794 -9.34916 -8.83901 -12.7564 -12.8886 -13.2737 -12.7765 -13.0065 -12.5388 -13.0112 -12.6799 -12.7971 -12.7954 -13.2744 -13.0065 -12.5639 -12.9518 -8.01582 -9.27746 -8.0633 -8.8096 -8.57018 -8.96917 -7.85653 -7.1571 -7.15098 -7.525 -7.40426 -7.9191 -7.29296 -6.79931 -4.17423 -4.66961 -4.1078 -4.60189 -4.15127 -4.66758 -4.15 -3.43542 -2.92545 -2.95793 -3.43935 -3.49599 -2.94664 -3.40934 -13.3739 -12.8346 -12.7575 -12.4664 -13.1866 -13.257 -12.7704 -13.7894 -13.72 -14.4834 -14.2824 -13.8049 -13.6693 -14.3506 -13.7013 -13.7691 -13.3315 -14.2708 -13.6895 -13.3738 -14.1781 -6.27991 -7.30244 -6.86762 -6.71414 -7.11899 -6.30338 -6.4817 -6.87135 -8.77604 -7.56254 -7.95587 -7.80913 -8.25137 -6.64078 -6.16267 -5.9942 -6.62995 -6.65338 -6.94412 -6.2483 -6.01877 -3.10911 -3.2524 -2.63004 -2.59591 -3.17789 -3.14942 -2.55437 -3.59431 -4.18635 -3.65322 -4.04727 -3.68427 -4.08228 -3.57705 -3.03205 -2.50592 -2.58678 -3.11873 -3.1226 -2.50021 -3.02958 -2.45717 -2.65243 -2.14796 -2.22665 -2.54571 -2.57075 -2.0807 -3.11985 -3.57931 -3.20457 -3.50135 -3.24081 -3.44618 -3.14013 -2.68739 -2.26046 -2.40386 -2.77753 -2.83093 -2.29243 -2.70398 -14.134 -14.4883 -13.7798 -14.0296 -13.8552 -14.43 -13.648 -6.6351 -7.49142 -7.20496 -6.74275 -7.60829 -6.58337 -6.78388 -7.45219 -8.89909 -7.90386 -8.66144 -8.38934 -8.799 -7.35616 -6.82108 -7.1216 -7.34014 -7.41418 -7.80052 -7.00846 -6.62347 -3.20802 -3.25359 -2.75979 -2.63532 -3.32435 -3.16558 -2.66525 -11.2942 -11.8662 -9.62526 -12.6969 -10.4414 -10.7389 -14.0901 -9.49326 -8.0954 -8.24493 -8.56697 -9.02388 -8.28862 -9.2467 -7.79102 -7.77561 -7.75956 -8.03804 -7.68556 -7.71648 -7.79196 -7.72431 -7.62655 -7.71199 -7.73463 -7.7432 -7.80364 -7.98223 -8.02398 -7.64056 -7.98339 -7.79111 -7.84165 -10.2782 -10.9829 -10.5622 -14.5567 -10.9352 -9.58222 -12.1518 -9.0882 -8.65293 -8.99905 -8.25956 -9.11685 -8.51182 -8.69535 -7.4014 -7.4855 -7.42627 -7.52001 -7.5204 -7.59772 -7.4353 -7.81805 -8.02271 -7.71791 -7.6922 -8.15046 -7.95573 -7.55623 -8.29804 -8.12709 -6.95864 -7.8746 -8.11753 -7.80953 -7.94193 -7.95855 -7.80019 -7.98233 -8.05203 -7.83596 -7.82986 -7.94822 -8.03559 -7.9738 -8.1049 -8.1656 -8.03733 -7.87787 -9.09149 -9.61365 -7.95373 -8.71697 -9.21311 -8.00943 -9.59702 -7.70262 -7.57675 -7.52533 -7.47404 -7.75266 -7.54447 -7.61814 -7.69284 -6.885 -7.4285 -7.68204 -7.37458 -7.73563 -7.70184 -9.30205 -9.55496 -9.65397 -9.0936 -9.16376 -9.72144 -9.13347 -8.70001 -7.49822 -8.38234 -8.09165 -8.39199 -8.1783 -8.50181 -10.9816 -11.3659 -11.1317 -11.1635 -11.2608 -11.2082 -10.9693 -10.3364 -10.5546 -10.7788 -10.8756 -10.4301 -10.6561 -10.5139 -10.2301 -9.99432 -10.1449 -10.1648 -10.0989 -10.1069 -10.1972 -10.4175 -10.2469 -10.2737 -10.3469 -10.1672 -10.436 -10.3851 -9.67453 -9.15678 -8.80843 -9.45089 -9.37766 -9.07116 -9.73593 -10.0205 -10.125 -9.84107 -10.2136 -9.90801 -10.2803 -9.9844 -6.48313 -6.79156 -6.5831 -6.96069 -7.26211 -6.187 -6.69917 -6.10431 -6.03382 -6.3245 -6.56406 -6.03162 -6.43049 -6.19856 -7.86098 -8.46007 -7.97149 -7.40543 -8.3284 -7.34834 -8.01937 -7.43992 -6.83926 -6.94714 -7.19628 -6.63909 -7.15679 -7.60026 -5.98793 -5.44677 -5.35229 -5.83712 -5.80635 -5.42719 -6.05842 -6.42477 -6.59575 -6.29745 -6.76476 -6.2981 -6.72232 -6.43452 -3.18088 -3.13992 -2.67734 -2.74399 -3.26135 -3.1212 -2.70367 -1.38472 -1.38092 -1.8431 -1.96521 -1.36412 -1.89798 -1.46028 -4.1353 -4.62024 -4.60733 -4.09936 -4.59113 -4.1408 -4.11282 -3.55344 -2.88425 -3.44825 -2.91347 -3.4246 -2.92219 -3.57796 -0.877699 -0.353318 -0.769321 -0.300234 -0.808664 -0.887169 -0.334003 -1.53124 -2.00418 -1.41171 -2.07341 -1.45569 -2.06242 -1.51447 -8.46719 -8.51953 -7.78575 -8.56482 -8.6554 -8.0396 -8.07489 -10.2059 -11.5868 -8.61709 -9.86875 -9.85636 -8.93137 -12.1864 -8.48745 -7.64075 -7.72915 -7.7438 -8.32074 -7.90093 -7.97289 -10.0965 -9.77302 -14.0057 -10.4735 -10.4335 -9.0389 -12.9001 -7.28 -7.60119 -7.39209 -7.35339 -7.23638 -7.5958 -7.18853 -6.9556 -6.84849 -6.96195 -6.94359 -7.02056 -6.78161 -7.1542 -7.15983 -7.2946 -7.16921 -7.12881 -7.18642 -7.10821 -7.10869 -7.12022 -7.21312 -7.2469 -6.90736 -7.45119 -7.07462 -7.05508 -9.33415 -10.3938 -10.5146 -11.9783 -10.0438 -9.42289 -9.79986 -8.45461 -8.43799 -9.03663 -8.05138 -8.80973 -8.53847 -7.96093 -7.1699 -6.75449 -7.35125 -7.51115 -7.03421 -6.8393 -7.37604 -7.23244 -7.20812 -7.33946 -7.26564 -7.12035 -7.24038 -7.30352 -7.71637 -7.04095 -8.36189 -7.99226 -7.97166 -7.0333 -8.42885 -8.94109 -9.05861 -9.35775 -9.59109 -8.93629 -9.11923 -9.45429 -10.2895 -10.3374 -10.3942 -10.4525 -10.2646 -10.3335 -10.491 -10.1407 -10.2168 -9.83023 -10.1229 -10.1124 -9.92592 -10.3251 -9.93251 -10.2539 -9.95997 -10.4038 -9.92732 -10.2744 -10.1155 -9.50808 -9.64014 -9.00611 -9.27226 -9.44337 -9.78743 -8.93839 -6.95133 -6.98398 -7.59649 -7.31125 -6.69356 -6.97808 -7.683 -7.4935 -8.00994 -8.1532 -8.65429 -7.45266 -8.20775 -8.16252 -6.3974 -6.76118 -6.61 -6.93519 -6.44711 -6.72886 -6.5697 -5.8605 -6.0675 -5.51579 -5.51911 -5.87714 -6.10172 -5.39893 -3.38166 -2.9995 -3.50609 -2.95061 -3.39176 -2.84013 -3.5286 -4.14402 -4.25656 -4.65674 -4.70623 -4.27817 -4.60591 -4.17711 -1.43282 -2.02443 -2.15169 -1.51809 -1.42236 -2.04878 -1.58956 -0.795448 -0.851423 -0.277941 -0.397649 -0.768908 -0.937354 -0.286602 -6.63358 -6.51299 -6.87008 -6.79597 -6.5743 -8.52402 -12.4379 -10.0057 -10.9979 -9.2482 -9.21002 -10.2498 -6.55822 -6.86305 -6.58139 -6.14454 -6.28736 -7.00467 -6.35335 -7.04329 -7.04289 -7.78436 -6.81798 -7.66842 -7.39147 -6.6512 -6.3168 -6.56263 -6.52578 -6.6894 -6.39626 -6.55868 -6.53108 -6.04655 -6.07947 -6.36686 -5.91775 -6.18624 -6.10119 -5.88519 -6.22337 -6.43332 -6.43233 -6.46806 -6.27684 -6.50795 -6.28568 -9.462 -9.85636 -9.46657 -10.0754 -9.9192 -9.34901 -9.60052 -8.55572 -7.91861 -7.06383 -8.44392 -7.26637 -8.27131 -8.74661 -7.05121 -6.85534 -6.90853 -6.82912 -7.00058 -6.99364 -6.85561 -7.52352 -7.21638 -7.2225 -8.27378 -7.69312 -7.19266 -7.99139 -7.37661 -7.61774 -7.02774 -6.93463 -7.28124 -7.13375 -7.78995 -10.0662 -10.4201 -9.71451 -10.3392 -9.92345 -9.83521 -10.5806 -9.56875 -9.62553 -7.97195 -9.15835 -9.21566 -8.8008 -9.87382 -9.21092 -8.15548 -8.6716 -7.6699 -8.88218 -8.95119 -8.44712 -10.0364 -9.31456 -9.95318 -9.45447 -9.48065 -9.80749 -10.1268 -10.3752 -10.993 -11.0493 -10.519 -10.9714 -10.3696 -10.5705 -11.5432 -11.0619 -11.1773 -10.9296 -11.2846 -11.3166 -11.275 -11.7794 -11.4028 -11.3349 -11.3758 -11.5385 -11.4757 -11.6227 -10.4503 -9.36576 -10.1129 -9.53175 -10.1638 -10.2853 -9.63832 -10.9426 -11.1662 -10.6815 -11.1152 -10.7107 -10.7741 -11.3849 -6.03905 -5.30094 -5.80778 -5.40568 -5.37525 -5.86251 -5.99897 -6.56183 -6.89885 -6.66216 -6.38842 -6.91129 -6.38279 -6.53151 -8.0688 -8.70683 -7.28648 -8.62949 -8.0298 -6.53195 -8.78285 -7.66583 -7.44815 -6.6898 -7.27146 -7.69812 -7.07971 -7.26564 -5.82281 -5.25708 -5.71063 -5.34884 -5.70555 -5.94157 -5.26426 -6.28594 -6.83495 -6.28517 -6.48089 -6.23214 -6.47546 -6.60718 -0.887986 -0.29455 -0.842048 -0.331918 -0.8342 -0.877264 -0.316511 -1.57135 -2.06166 -2.04575 -1.43118 -2.12856 -1.44113 -1.52087 -3.98104 -4.45858 -4.03863 -4.43795 -4.06253 -3.99203 -4.40202 -3.50884 -2.91818 -3.3713 -2.84763 -3.53826 -3.41665 -2.91445 -1.00269 -0.40404 -0.868963 -0.390227 -0.928003 -0.934087 -0.447766 -1.60945 -2.05783 -1.45526 -2.06605 -1.49951 -1.57317 -2.10674 -5.23788 -5.60484 -5.48051 -5.52375 -5.14601 -5.32511 -5.49956 -4.72468 -4.17022 -4.75542 -4.49354 -4.71455 -4.71883 -4.23329 -4.09509 -7.04071 -5.92866 -5.41999 -4.5081 -5.28169 -4.64881 -11.6923 -17.7657 -11.9034 -15.6363 -18.2799 -11.3836 -12.3363 -9.5765 -6.75411 -4.94738 -17.11 -17.144 -5.05316 -8.97126 -12.0257 -13.276 -16.1388 -18.5964 -18.4037 -12.9914 -11.9229 -15.6043 -19.8314 -13.0999 -16.1147 -15.7337 -13.4093 -19.6465 -17.447 -20.5925 -18.0658 -22.3851 -17.7009 -17.734 -22.1752 -16.2981 -14.5173 -16.8517 -20.7528 -14.2039 -16.5664 -20.4692 -8.05136 -12.6047 -5.2972 -16.7942 -5.55896 -8.33627 -17.0267 -11.6775 -19.4063 -17.8076 -14.2679 -14.0188 -19.1736 -11.7894 -11.6498 -13.5219 -18.5527 -17.404 -11.6539 -13.7839 -18.8081 -18.7817 -22.1006 -18.8013 -22.9772 -18.3903 -19.2573 -23.4424 -17.9282 -22.4738 -18.6736 -16.0215 -15.6831 -22.1145 -18.3768 -17.4695 -14.9454 -21.2017 -18.1939 -17.1185 -15.2673 -21.5566 -16.8245 -20.0234 -16.5826 -18.9577 -19.9602 -17.1132 -16.5963 -18.8467 -21.0771 -17.8358 -22.7144 -22.7262 -17.618 -18.8834 -17.3466 -17.4744 -19.6707 -19.9988 -20.2892 -17.1923 -17.5879 -14.4689 -17.9628 -15.5417 -18.5888 -14.593 -15.2203 -17.8357 -12.52 -12.6209 -9.45243 -15.0778 -12.8898 -9.40028 -14.9594 -15.0509 -16.3767 -19.3026 -18.6862 -15.9398 -15.3927 -18.388 -19.8051 -22.6975 -18.559 -22.8744 -18.9694 -19.572 -22.9498 -19.6155 -21.882 -22.8605 -20.2561 -19.6155 -21.3563 -20.232 -18.8405 -18.3509 -20.7479 -21.7838 -18.4404 -18.8217 -20.8923 -14.341 -13.1725 -10.1065 -16.346 -14.0291 -10.4757 -16.5914 -17.3886 -21.5998 -21.8618 -19.1966 -18.5844 -20.9817 -18.0158 -16.6324 -17.2608 -19.5546 -20.8999 -16.2273 -17.7316 -20.0124 -2.44797 -5.82862 -3.49504 -2.90048 -2.30422 -3.91449 -3.32011 -1.8577 -2.7426 -2.13626 -1.76324 -2.08695 -2.2866 -1.46154 -16.2379 -11.0295 -17.9598 -12.9551 -17.3628 -12.6911 -16.6074 -16.606 -20.6683 -13.6338 -14.8547 -20.0249 -17.3509 -13.471 -15.5781 -10.3556 -16.2458 -12.0502 -16.769 -15.8583 -12.0327 -17.3193 -14.2578 -15.5097 -21.0908 -20.8826 -14.0462 -17.5377 -18.5685 -17.6143 -6.3925 -9.8643 -18.1161 -18.0505 -6.56847 -18.7005 -0.0468775 3.16473 2.05456 -18.7355 -0.296133 1.78386 -19.06 1.34193 -0.805325 2.84289 -18.4899 -0.750553 1.37338 -18.633 -9.99828 -18.5522 -6.51475 -18.8536 -18.2384 -6.43002 -17.6353 -18.4918 -13.4224 -12.1243 -17.1691 -18.9806 -13.8146 -19.2734 -23.9668 -17.2577 -16.111 -15.5982 -23.3516 -19.7909 -18.6784 -14.7554 -22.0664 -16.687 -18.2263 -15.1561 -22.5479 -18.1282 -12.4873 -19.8312 -14.7113 -19.3851 -14.2448 -18.5964 -15.8375 -14.4551 -17.7064 -13.2643 -17.3988 -12.7495 -16.0364 -13.7705 -10.3932 -10.5859 -8.05925 -11.3017 -12.7956 -10.8477 -14.5679 -13.6994 -16.6527 -11.9641 -16.6973 -14.2623 -12.1856 -14.4244 -12.3883 -8.73473 -12.8947 -12.3435 -11.7676 -15.0006 -20.4422 -21.2778 -16.4862 -17.7116 -20.2036 -21.896 -16.9738 -20.5093 -22.0597 -17.2386 -18.5679 -21.0814 -21.4874 -17.9752 -19.7546 -16.8957 -20.284 -16.594 -19.3132 -20.7176 -17.3206 -21.1258 -18.5499 -23.6715 -18.213 -21.7398 -22.9649 -17.5892 -17.2175 -18.6687 -14.1197 -15.9609 -16.9135 -19.2114 -14.6323 -17.6012 -15.4771 -11.2649 -15.0995 -14.3495 -15.165 -18.187 -16.6182 -13.0872 -13.8258 -10.6342 -16.1112 -13.7923 -14.1002 -18.2652 -16.8775 -20.9024 -16.0873 -20.2627 -15.4239 -18.6732 -2.27725 -2.27331 -2.56297 -1.99913 -2.22341 -2.44565 -2.0336 -2.52063 -3.00317 -2.8414 -2.99055 -2.88956 -2.68935 -2.66737 -2.39961 -2.49448 -2.7795 -2.70402 -2.36484 -2.64066 -2.50885 -4.61498 -8.57153 -4.90327 -5.40767 -3.78049 -5.27863 -6.31952 -3.41974 -2.72785 -3.38547 -3.00844 -2.98025 -3.78367 -2.76303 -2.85098 -2.97672 -2.89218 -2.99123 -3.00237 -2.71865 -2.94383 -2.72501 -2.53016 -2.7241 -2.77975 -2.73741 -2.554 -2.71561 -7.14129 -6.10169 -5.74172 -6.79697 -6.51385 -7.17197 -6.86018 -3.71064 -3.32492 -3.71947 -3.4581 -3.79646 -3.62875 -3.40121 -3.97285 -3.99632 -3.52578 -3.62511 -3.75216 -3.8769 -4.20967 -4.11658 -4.7711 -4.05595 -3.80958 -4.29667 -3.87781 -4.52458 -7.05894 -7.45941 -7.07167 -7.89525 -6.95749 -7.36748 -7.5407 -5.88529 -5.3246 -4.07758 -4.7141 -5.50042 -5.01893 -5.67695 -6.22447 -5.67899 -6.17294 -4.44201 -5.85429 -6.52704 -5.35377 -8.52346 -8.1293 -8.6866 -8.55331 -8.86223 -8.48941 -8.13038 -8.45619 -8.29322 -8.48771 -8.35961 -8.25606 -8.37059 -8.47802 -8.74499 -9.03702 -8.91962 -8.78019 -9.12316 -8.67711 -8.76506 -7.95337 -7.32172 -8.06386 -7.58379 -7.9314 -8.21223 -7.35337 -8.1288 -7.95552 -8.28516 -8.11393 -8.10084 -8.3311 -8.04408 -8.33243 -8.8946 -8.49852 -8.61888 -8.39635 -8.5824 -8.58591 -6.25028 -6.31709 -5.59561 -6.72314 -6.2505 -5.65449 -6.65555 -5.93064 -4.67824 -5.33562 -5.82733 -5.83115 -4.68951 -5.83446 -5.98779 -5.75571 -4.8553 -5.33479 -5.95108 -4.85603 -5.86911 -4.95952 -4.38209 -4.77684 -4.41832 -4.72312 -4.83671 -4.49069 -5.29253 -5.1789 -5.35931 -5.55893 -5.14722 -5.57718 -5.32747 -5.31353 -5.3603 -5.10893 -5.25142 -5.10188 -5.13136 -5.58039 -3.52573 -3.86606 -3.48277 -3.82152 -3.47767 -3.47021 -3.90908 -3.24479 -3.22678 -2.54474 -2.66424 -3.42158 -3.08944 -2.64922 -3.17293 -2.61987 -3.01682 -2.56392 -3.11011 -2.99854 -2.66764 -0.901903 -0.404378 -0.844758 -0.414744 -0.841781 -0.921313 -0.39115 -1.39479 -1.38574 -1.79959 -1.83816 -1.34215 -1.83621 -1.42612 -1.45078 -1.86474 -1.3388 -1.78216 -1.36636 -1.44149 -1.85991 -2.29671 -2.47202 -2.31689 -2.11399 -2.63462 -2.14797 -2.2194 -3.09172 -2.72186 -2.48634 -2.62619 -3.14827 -2.64687 -2.83859 -4.99163 -3.56983 -7.16958 -5.75768 -4.58779 -4.18631 -8.08783 -2.17353 -2.43032 -2.11271 -2.19262 -2.19137 -2.35494 -2.08871 -2.23138 -2.14264 -2.48815 -2.30652 -2.35796 -2.09853 -2.49062 -2.6943 -2.49462 -3.10679 -3.13329 -2.92075 -2.44534 -2.90799 -2.58553 -2.77725 -2.62349 -2.39884 -2.71131 -2.42685 -2.60711 -4.04382 -3.30225 -4.48433 -3.71133 -4.33113 -2.92495 -4.39229 -5.1504 -5.28794 -5.87027 -5.84723 -5.29627 -5.22801 -5.70021 -7.16853 -7.33881 -7.29209 -7.26906 -7.20074 -7.24849 -7.14913 -6.88073 -7.04438 -6.57255 -6.58153 -6.93573 -6.45022 -6.89295 -7.27499 -7.39956 -7.48137 -7.41874 -7.28309 -7.27473 -7.37946 -7.0518 -7.31581 -6.69214 -6.88792 -7.05114 -7.21349 -6.64378 -5.38604 -5.39583 -5.89066 -5.50251 -5.79345 -5.49894 -5.6389 -4.86867 -6.27102 -6.67361 -6.60194 -5.08172 -6.49774 -5.9344 -5.16639 -5.26884 -5.24163 -5.38054 -5.13063 -5.24273 -5.24437 -4.80779 -4.96295 -4.46938 -4.59724 -4.78771 -4.92417 -4.56352 -2.96138 -2.58795 -3.09726 -2.74796 -2.97997 -2.69585 -3.04845 -3.67372 -3.60943 -3.91463 -4.02393 -3.55869 -3.95854 -3.66369 -1.41086 -1.88024 -1.97999 -1.51176 -1.41953 -1.8535 -1.45223 -0.8033 -0.936515 -0.351917 -0.343858 -0.849407 -0.8492 -0.363983 -1.76403 -1.87531 -1.70707 -2.3845 -2.43442 -1.54292 -2.06861 -2.79744 -3.26533 -3.98564 -6.10937 -4.39329 -2.85666 -3.65207 -2.81114 -4.07821 -6.34595 -4.97062 -4.03021 -3.33949 -4.02369 -1.25147 -1.77294 -1.30341 -1.523 -1.46753 -1.36478 -1.0898 -1.33545 -1.35534 -1.67921 -1.68558 -1.48721 -1.36912 -1.58599 -1.56073 -0.874846 -0.901834 -0.759705 -1.06214 -1.41185 -0.952693 -0.827865 -0.491274 -0.703948 -0.593828 -0.863313 -0.663453 -0.696789 -2.52619 -2.30713 -2.20182 -2.62087 -2.19743 -2.81473 -2.43328 -2.15452 -2.00193 -2.00059 -1.95702 -1.87442 -1.93979 -2.13969 -3.89703 -2.74507 -3.56231 -3.25584 -3.71901 -3.34632 -3.89479 -4.7168 -4.611 -5.32012 -5.48538 -4.7137 -4.80974 -5.39538 -6.88028 -6.87669 -6.71955 -6.98632 -6.7327 -7.01542 -6.84397 -6.5431 -6.39332 -6.00283 -6.19345 -6.41572 -6.14729 -6.54815 -7.08724 -6.96595 -6.91234 -7.05735 -6.93264 -7.11151 -7.01557 -7.0262 -6.64486 -6.28171 -6.50043 -6.7347 -6.89113 -6.6488 -5.63205 -5.02237 -4.39029 -5.27415 -4.80809 -5.39596 -5.36038 -5.87814 -5.14747 -5.72389 -5.99185 -5.22975 -6.17678 -5.62476 -5.03966 -4.99433 -4.79108 -5.07486 -4.84586 -5.20421 -4.93748 -4.85209 -4.49821 -4.26191 -4.32902 -4.57444 -4.70195 -4.426 -3.08472 -2.48905 -2.86953 -2.51175 -2.91647 -2.55849 -2.99953 -3.48111 -3.42482 -3.7457 -3.74587 -3.42354 -3.83544 -3.43671 -1.41819 -1.79204 -1.80911 -1.34587 -1.32307 -1.87189 -1.38552 -0.885066 -0.781064 -0.312103 -0.344241 -0.77829 -0.832038 -0.379536 -0.915773 -0.663002 -0.311239 -0.682371 -1.20749 -0.36374 -0.450976 -0.166214 -0.44743 -0.211429 -1.99232 -1.91657 -1.71138 -2.14631 -1.80241 -2.14099 -1.59888 -3.85882 -4.42891 -2.57708 -3.09978 -3.87697 -2.11047 -4.20773 -7.19964 -7.29382 -7.20293 -7.41021 -7.31564 -7.0305 -7.31533 -7.04041 -7.17887 -7.1646 -7.27472 -7.03759 -7.21124 -7.08836 -3.36599 -4.73473 -4.37659 -4.25633 -4.08523 -3.86819 -4.14326 -4.15944 -4.38088 -4.43377 -4.2038 -4.33169 -4.24405 -4.09579 -2.44073 -2.55875 -2.25685 -2.14456 -2.4066 -2.53485 -2.18855 -1.27036 -1.27822 -1.63514 -1.5488 -1.26831 -1.57119 -1.19674 -4.17842 -4.82 -4.60031 -4.72041 -4.06078 -3.93865 -3.75618 -4.07331 -3.96784 -4.27027 -4.19061 -4.76119 -4.37242 -4.23392 -4.63883 0.110512 -3.25421 -3.00621 -3.6589 -0.442393 -3.18432 -2.42225 -2.30269 -3.73762 -3.83906 -2.5634 -3.35038 -3.60361 -1.60493 -3.61627 -3.72564 -3.53006 -3.93398 -3.69508 -3.4771 -4.05423 -3.83061 -3.4847 -3.677 -3.96424 -3.82805 -3.64616 -3.64632 -3.62966 -3.48686 -3.96839 -4.27503 -3.70107 -3.52516 -4.16097 -3.9583 -3.89571 -4.19475 -3.56148 -4.00952 -4.04937 -3.67866 -3.42299 -3.28737 -2.99915 -3.03813 -2.98235 -2.84469 -3.31227 -3.13861 -2.91786 -3.12071 -2.87494 -2.9431 -2.9418 -3.16144 -3.22305 -2.98687 -3.25457 -2.9605 -2.92591 -2.44655 -2.06839 -2.58044 -2.20065 -2.46589 -2.05256 -2.65776 -2.4973 -2.14208 -2.52353 -2.27634 -2.45054 -2.1189 -2.6099 -0.637677 -0.28595 -0.71303 -0.247172 -0.655703 -0.741811 -0.227501 -0.644832 -0.37731 -0.695861 -0.246412 -0.61189 -0.823606 -0.231655 -1.10347 -1.47159 -1.10977 -1.63971 -1.10444 -1.49704 -1.17969 -1.13643 -1.5063 -1.17989 -1.71206 -1.13597 -1.5423 -1.31908 -6.07781 -6.82074 -6.0421 -6.0649 -6.50882 -6.58892 -5.71335 -6.29683 -6.20359 -6.80806 -6.16319 -6.51448 -6.73925 -5.73689 -7.28045 -7.49841 -7.16756 -7.44269 -7.52379 -7.33271 -6.30536 -5.83358 -6.33918 -5.01557 -6.55782 -6.04957 -5.32408 -12.9657 -11.222 -12.6383 -12.9714 -11.4662 -12.4934 -13.7693 -14.9032 -16.3993 -16.0519 -15.4323 -15.7459 -13.9851 -13.9765 -14.0498 -15.2462 -14.6523 -13.3396 -14.8442 -8.18989 -7.9336 -7.86984 -8.30645 -8.15603 -7.89609 -8.62208 -8.25786 -8.38478 -8.82479 -8.62893 -8.29861 -8.89246 -8.47139 -8.79867 -8.45071 -8.63623 -8.31993 -8.94468 -11.8771 -12.2295 -12.5539 -12.0199 -12.1957 -12.1328 -11.0075 -9.93863 -8.98588 -10.6652 -11.3281 -10.0109 -12.4919 -13.7713 -22.1647 -16.0309 -13.6287 -16.9823 -15.6833 -17.7089 -20.4023 -17.7542 -18.4265 -17.3275 -18.2611 -12.7153 -13.1006 -13.857 -12.6959 -13.3166 -12.3425 -12.9929 -11.933 -13.1016 -10.565 -10.1724 -12.5314 -13.1155 -14.7565 -13.9064 -13.96 -13.6885 -11.5851 -11.8771 -10.2919 -10.2293 -10.298 -11.3412 -12.0811 -12.947 -12.2166 -12.9939 -13.2697 -13.4349 -12.4983 -12.6637 -12.9172 -12.871 -12.8314 -12.2428 -13.2371 -12.4273 -12.6088 -10.7963 -9.47966 -10.5065 -9.74227 -10.4172 -10.8151 -9.76186 -11.4689 -12.1686 -11.4173 -11.5893 -11.1705 -11.656 -11.9687 -19.2036 -21.1577 -21.3768 -21.1582 -21.5847 -19.3804 -15.7392 -17.7181 -19.6931 -19.0223 -17.8583 -17.1801 -17.1412 -5.19564 -6.16738 -5.02121 -5.34582 -5.38094 -5.23521 -4.91148 -4.38169 -4.31428 -4.02557 -4.0831 -4.35389 -4.77374 -4.74877 -4.53857 -4.75178 -4.68373 -4.64188 -4.88031 -4.39325 -4.2129 -4.33312 -4.71967 -4.51994 -7.56449 -8.21282 -6.80363 -8.08853 -6.95252 -7.03721 -8.47984 -7.08356 -6.1357 -5.78536 -6.30355 -6.36375 -6.24874 -6.54702 -5.29924 -4.78629 -5.07379 -4.65172 -5.20263 -5.05061 -4.77758 -5.74785 -5.90087 -5.5958 -5.99495 -5.69409 -5.55016 -6.08407 -1.18366 -1.74765 -1.73251 -1.30959 -1.67045 -1.22145 -1.2305 -0.666758 -0.812727 -0.249193 -0.71518 -0.20722 -1.14148 -1.59546 -1.18474 -1.59444 -1.15909 -0.688934 -0.787916 -0.221192 -0.267489 -0.693156 -0.731699 -0.219167 -3.6293 -4.08602 -3.62131 -3.97369 -3.58423 -3.65218 -4.05594 -3.15297 -2.51522 -3.04026 -2.59135 -3.05669 -3.09466 -2.59025 -0.799378 -0.27007 -0.744466 -0.23491 -0.789227 -0.736582 -0.303549 -1.32109 -1.76298 -1.23373 -1.79303 -1.26801 -1.24606 -1.82098 -12.1517 -19.8544 -14.4903 -18.799 -20.2271 -11.8857 -14.7986 -9.19455 -8.28278 -3.84389 -18.8775 -4.43011 -19.1553 -9.37797 -12.7815 -15.663 -19.1355 -20.9062 -20.7676 -15.2668 -13.1254 -19.5369 -23.1856 -16.3439 -19.8109 -18.9491 -16.7285 -23.6455 -21.6325 -26.2608 -23.1122 -28.1596 -22.5168 -22.297 -27.2882 -20.2315 -17.8225 -20.3349 -25.2305 -17.2655 -20.9481 -24.5813 -9.68948 -5.93018 -3.54256 -18.7151 -3.68307 -9.41563 -18.9711 -14.1478 -22.9276 -21.1551 -17.9074 -17.2297 -22.1943 -14.58 -13.7961 -16.1245 -21.252 -20.4521 -13.4324 -16.6407 -21.675 -24.8882 -30.0515 -24.414 -29.5749 -23.7902 -25.4901 -30.6903 -23.7779 -29.5769 -23.1412 -20.9816 -20.0557 -28.3541 -24.9957 -22.6887 -18.5231 -26.2638 -22.1537 -21.8485 -19.2006 -27.089 -21.9134 -23.1351 -21.2743 -25.4164 -24.0736 -21.198 -22.0318 -22.8511 -27.3319 -23.5885 -26.2839 -25.7989 -22.7208 -23.8141 -22.9615 -24.0816 -26.8705 -26.9444 -25.7124 -23.1344 -23.9498 -19.7108 -22.747 -20.1472 -24.3741 -18.9783 -20.8769 -23.5204 -18.1246 -17.1804 -14.8491 -22.2065 -14.1164 -19.2108 -21.2776 -20.755 -22.8743 -25.7872 -26.1311 -21.9648 -21.7443 -25.1378 -26.5699 -30.966 -24.9027 -27.484 -26.0226 -25.4025 -28.257 -29.0465 -35.2401 -33.5121 -30.5933 -29.0137 -33.3366 -30.8326 -27.0539 -25.7716 -29.138 -31.1163 -25.7069 -27.0147 -30.626 -22.084 -20.4338 -16.4171 -24.0033 -17.5903 -20.7807 -25.0501 -26.5822 -33.2222 -32.1625 -29.0446 -27.5761 -31.6381 -28.1758 -24.6622 -24.4722 -28.0129 -29.8823 -23.3666 -25.677 -29.245 -20.5524 -14.4426 -21.8627 -17.2421 -21.3676 -16.5997 -21.153 -21.2378 -25.0221 -16.8381 -19.4423 -25.7232 -20.6339 -17.4795 -19.7846 -13.7823 -20.4139 -15.3075 -20.7865 -19.2725 -15.875 -22.1676 -19.0376 -20.4437 -27.4806 -26.6938 -18.2582 -22.8369 -19.9698 -20.375 -7.12066 -12.5006 -19.5762 -20.9429 -7.33537 -18.6171 -0.416774 6.23035 3.26062 -0.57327 -19.0841 3.1459 -18.1146 2.46775 -0.41199 5.73662 -0.360631 -17.9941 2.72649 -20.6041 -12.9993 -22.6585 -7.93939 -21.4178 -21.7527 -7.38507 -23.1519 -22.7879 -18.208 -16.4481 -22.2516 -23.5837 -19.0735 -26.8976 -33.6344 -25.3675 -23.8944 -22.4479 -32.1305 -28.3692 -25.2001 -20.2254 -29.0942 -23.8279 -24.1647 -21.2417 -30.2097 -24.4822 -17.4471 -25.9386 -21.3539 -24.7552 -20.1458 -25.7302 -22.2527 -20.6146 -25.0686 -20.2067 -24.1792 -19.1212 -23.0351 -20.1814 -16.7515 -16.1763 -13.4951 -17.1775 -19.4704 -17.1602 -20.5824 -19.1871 -22.0885 -17.1532 -22.8904 -19.9266 -17.9886 -21.5381 -19.2134 -14.177 -19.259 -18.643 -18.1747 -22.3945 -29.8916 -30.3417 -24.2199 -26.5731 -28.5585 -31.7998 -25.6387 -29.8111 -31.9345 -26.0034 -28.9704 -31.497 -30.4922 -27.1761 -27.776 -24.008 -27.3991 -24.1858 -26.5161 -28.5255 -25.3416 -32.522 -28.7148 -36.2397 -29.2413 -34.2304 -34.3624 -27.4386 -26.148 -27.0732 -21.8099 -24.4375 -24.9586 -28.3459 -23.219 -27.7832 -25.1869 -19.0075 -25.5506 -24.1286 -23.777 -29.295 -25.4523 -20.7203 -20.952 -17.4319 -21.911 -24.2682 -22.2983 -28.622 -26.8081 -32.3708 -27.1354 -30.8334 -25.2155 -30.032 0.2253 -0.426653 0.104556 -0.0554563 -0.315414 0.0209272 0.454501 0.515999 0.995026 0.360603 0.55571 0.620419 0.323149 0.876137 1.27995 -1.59189 2.74518 1.43936 1.54104 2.4288 -0.915169 2.43037 3.61052 3.436 3.69067 2.97091 2.78838 3.33873 1.04045 0.223588 0.218298 0.698481 0.265483 2.17167 1.89928 1.51387 3.35163 2.6662 1.23432 2.73503 1.68991 1.38234 1.14034 1.36834 1.64171 2.72504 3.40762 3.29861 4.05402 2.60739 3.16753 3.41094 -1.66174 -1.52921 -0.647272 -1.50361 -0.719571 -1.54473 -0.0891951 -0.286915 -2.16721 -1.61851 -0.492761 -1.90645 -2.67778 -2.9843 -2.75804 -1.87634 -2.47968 -2.97233 -3.15128 -5.34455 -4.4858 -4.74093 -3.72365 -4.30654 -3.94754 -7.17757 -7.47311 -6.39023 -7.61501 -6.80626 -6.93572 -7.87439 -8.38473 -9.65628 -9.63078 -9.69446 -8.90747 -9.18715 -8.96109 -6.03105 -4.57697 -5.04836 -3.40318 -5.39069 -5.81914 -4.51912 -7.21892 -6.71189 -5.83172 -8.73415 -5.64861 -7.81044 -7.69593 -8.74081 -8.09086 -8.04664 -8.17791 -8.49797 -8.40253 -8.43859 -9.85878 -10.0743 -10.1727 -10.8625 -10.3168 -9.64381 -10.3002 -8.75639 -8.4822 -8.1692 -8.42842 -8.5929 -8.42749 -8.6505 -9.69834 -9.92991 -9.9181 -10.696 -10.1872 -9.54927 -10.2198 -6.64197 -5.84623 -6.79598 -6.28504 -6.67127 -7.03045 -5.8701 -7.49858 -8.19195 -7.46 -8.10603 -7.56646 -7.72325 -8.32567 -7.88137 -9.56218 -9.23399 -8.35571 -9.15061 -8.29185 -8.16151 -3.68045 -4.62324 -4.02104 -5.21542 -4.46898 -3.68507 -4.69798 -2.89796 -3.62806 -3.09865 -3.04615 -3.80285 -2.34337 -2.99045 -2.7768 -2.98773 -3.22392 -3.08441 -2.95665 -3.21982 -2.98174 -3.01977 -3.46293 -3.45708 -3.16051 -3.18956 -3.41064 -3.0261 -2.24551 -2.50511 -2.48656 -2.6507 -2.38989 -2.34496 -2.47126 -1.92012 -2.13962 -1.9378 -1.38286 -1.87362 -2.16997 -1.66308 -1.88605 -1.75435 -2.1029 -1.74434 -2.03871 -1.95318 -1.66293 -1.67172 -1.38463 -1.37614 -1.35938 -1.57059 -1.45596 -1.58179 -0.641182 -0.380613 -0.733442 -0.298528 -0.714846 -0.655001 -0.317151 -0.588367 -0.338477 -0.535251 -0.277329 -0.591352 -0.552622 -0.287311 -0.977923 -1.302 -1.06389 -1.26034 -1.04806 -1.04254 -1.22784 -0.870756 -1.12594 -1.01399 -0.783963 -1.12246 -0.87546 -0.801758 7.09027 7.57221 8.43532 6.17008 8.14593 6.75247 4.97544 4.4311 3.63438 1.66607 3.76731 4.81266 4.0813 5.06625 0.787098 1.41851 3.49685 4.21631 3.1381 -8.31398 -6.28834 -9.8871 -8.62897 -8.509 -15.7467 -11.252 -10.6087 -18.603 -9.85746 -13.8231 -15.7745 -16.6583 -11.4052 -13.9838 -13.0262 -5.78832 -7.8521 -5.45351 -7.57754 -7.49396 -10.338 -9.66869 -9.32684 -9.0091 -9.32584 -16.2356 -15.9191 -14.4817 -14.6289 -15.4365 -15.9743 -16.1554 -13.1323 -12.8361 -15.3894 -1.69583 -1.62577 -1.363 -1.8273 -1.20247 -0.563908 -1.19761 -1.40107 -1.48184 -1.00054 7.01953 2.14169 10.0797 3.55023 4.87691 2.46326 7.83145 -0.383294 0.181832 0.359032 0.516122 -0.47729 0.247765 -0.148356 -0.902844 -0.261084 -1.2321 -0.873966 -0.967528 -0.574754 -1.10805 1.26444 0.962743 0.190683 0.930022 0.32968 1.29516 1.9019 3.12202 0.968537 3.61787 0.979043 0.940626 -0.758991 -0.926511 -0.70309 -0.64811 -0.487543 -0.934606 -0.826332 -0.458489 -0.585237 -0.422146 0.0556646 -0.720058 -0.485767 0.334999 -0.355489 -0.0461023 -0.202344 0.0926973 -0.518709 -0.315057 -0.504486 -0.235238 -0.557227 -0.455802 -0.763204 -0.904151 -0.706494 -0.741211 -0.580318 -1.21807 -1.11767 -0.829475 -0.883335 -1.20398 -1.11885 -0.962898 -1.22755 -0.890172 -1.23527 -0.956144 -1.28715 -1.19234 -1.01735 -0.808541 -0.904748 -0.709269 -0.626933 -0.780159 -0.935161 -0.64325 -0.627846 -0.443767 -0.345678 -0.276015 -0.579969 -0.486648 -0.328107 -1.00777 -0.956405 -0.816712 -0.939718 -0.976734 -0.911001 -0.991102 -0.978239 -1.5683 -0.984701 -0.902245 -1.15987 -0.95339 -0.838269 -0.954345 -0.936206 -0.87531 -0.902674 -1.00786 -0.561336 -0.293928 -0.501929 -0.333224 -0.497786 -0.504149 -0.401424 -0.692084 -0.66714 -0.64181 -0.73865 -0.612179 -0.725824 -0.662126 -10.3369 -10.7007 -10.2 -10.4624 -10.1023 -13.3706 -13.9178 -13.6402 -17.8129 -14.399 -13.276 -15.5746 -12.1745 -12.0816 -12.3655 -11.8764 -12.4866 -11.7928 -12.2948 -10.6651 -10.7106 -10.7642 -11.0733 -11.0329 -10.7955 -10.9904 -11.0533 -10.8089 -10.9055 -11.0562 -10.7474 -11.6449 -11.3939 -11.4151 -11.2993 -11.2568 -11.0312 -10.8944 -11.0759 -11.343 -11.3804 -11.3297 -10.8004 -11.0547 -11.6614 -11.7734 -11.4814 -14.386 -14.0789 -13.9171 -13.551 -14.082 -11.833 -12.1917 -13.3261 -12.8243 -13.3121 -11.1169 -11.2198 -11.3214 -11.2289 -11.2897 -10.2758 -10.247 -11.2878 -11.1883 -11.1932 -12.7727 -12.8893 -12.5677 -12.5363 -12.4285 -11.0175 -10.9303 -12.0865 -11.943 -11.8283 -11.3386 -10.4779 -10.39 -11.3037 -11.2125 -11.2727 -11.374 -11.2717 -11.3133 -11.3052 -11.3401 -11.3244 -12.5067 -11.3959 -11.2421 -12.384 -12.1546 -11.8721 -13.0604 -13.3784 -13.2538 -13.0494 -12.8565 -13.3649 -14.4075 -14.0923 -14.3262 -14.4688 -14.166 -13.5392 -13.8026 -13.933 -14.0591 -13.6878 -9.91202 -10.117 -11.081 -11.0081 -10.9095 -12.5488 -12.864 -12.1493 -12.0023 -12.252 -12.9377 -13.1092 -13.1458 -13.0669 -13.2 -12.7695 -12.6926 -12.8482 -12.7522 -12.8763 -10.0789 -10.1216 -10.8257 -10.7687 -10.6995 -12.1169 -12.1089 -11.7707 -11.8052 -11.7876 -13.3413 -13.1229 -13.0016 -13.3488 -13.227 -13.0614 -13.5887 -13.5565 -13.3333 -13.4876 -13.671 -13.5119 -11.8433 -12.2067 -12.1452 -11.7949 -11.8437 -12.2353 -11.1584 -10.2502 -10.1558 -11.065 -11.032 -10.2694 -8.57046 -9.32342 -7.4668 -7.13921 -7.39211 -6.70556 -6.60402 -6.93201 -6.10517 -6.53962 -5.02411 -5.16278 -5.39573 -5.46335 -5.28508 -6.23146 -6.14267 -6.04396 -6.11808 -5.96283 -8.94976 -8.96615 -8.26442 -7.95684 -7.93233 -7.3179 -7.43068 -7.6372 -7.19783 -7.11053 -5.57046 -5.51551 -5.93298 -5.82696 -5.92975 -6.87305 -7.06306 -6.72125 -6.61234 -6.76997 -7.57739 -6.82475 -7.24541 -6.78226 -7.016 -7.30852 -7.92489 -9.5474 -9.09159 -9.1826 -7.33106 -7.8493 -6.48238 -6.67006 -6.67262 -6.44954 -6.49941 -6.70543 -5.93862 -5.40989 -5.47895 -5.79636 -5.9332 -5.43364 -4.12984 -4.2846 -3.81591 -3.81362 -3.89726 -2.77323 -2.72862 -3.17054 -3.12793 -3.21069 -0.187336 -0.819542 -0.118114 -0.866897 -0.855596 -1.90058 -1.92795 -1.39176 -1.4004 -1.42897 -4.583 -4.52923 -4.14348 -4.16241 -4.13595 -2.938 -2.96144 -3.36258 -3.34432 -3.3052 -0.204879 -0.870272 -0.282129 -0.858911 -0.92072 -1.93649 -2.03592 -1.48712 -1.40646 -1.53358 -3.5191 -2.95865 -2.96831 -3.44341 -3.50287 -2.95418 -4.02839 -4.3572 -4.40553 -4.37367 -4.02914 -4.05135 -1.4074 -1.88935 -1.903 -1.37744 -1.42135 -1.90742 -0.895127 -0.248967 -0.18844 -0.916601 -0.93922 -0.303091 -9.58171 -9.99856 -9.96589 -10.0415 -9.73242 -9.83015 -9.79148 -9.35928 -9.73923 -9.92427 -9.91418 -9.45168 -10.0175 -9.60782 -14.9445 -13.7537 -13.1335 -13.9475 -15.0831 -14.3087 -18.9014 -28.0752 -17.7329 -22.0525 -25.3622 -19.3672 -19.0358 -12.6946 -13.4857 -13.2441 -13.4382 -12.7483 -12.694 -19.7468 -20.9266 -20.922 -20.8086 -21.4591 -19.3596 -16.7952 -19.5416 -20.753 -18.4642 -18.2666 -21.4875 -5.52792 -5.49842 -5.80626 -5.71723 -5.40852 -5.64707 -1.33191 -1.74547 -1.83386 -1.76595 -1.33489 -1.41092 -21.2866 -22.5852 -19.1381 -22.6485 -24.9686 -19.6464 -20.0714 -19.7008 -18.395 -17.5371 -18.6777 -20.2707 -18.7837 -19.0712 -21.5757 -23.2308 -26.7674 -13.269 -17.3826 -14.0947 -16.7947 -13.9367 -16.2577 -13.8294 -18.826 -19.0659 -19.8071 -18.6644 -19.6656 -17.9569 -19.5218 -19.3178 -21.3292 -23.2129 -22.1461 -20.871 -20.3759 -20.6875 -17.4682 -8.97934 -16.5781 -17.1322 -10.7856 -14.4122 -19.7297 -20.8141 -21.6081 -18.7549 -20.9247 -19.5108 -18.7028 -21.5282 -21.0826 -21.447 -21.6343 -22.5125 -20.229 -20.9439 -24.194 -25.2797 -23.4362 -24.3011 -25.6113 -23.0279 -26.899 -24.8836 -26.5922 -26.7383 -28.4599 -30.0395 -26.5109 -27.4495 -24.3324 -23.5114 -23.9697 -21.1198 -22.2431 -26.9175 -22.3583 -24.6924 -23.3938 -23.5507 -25.7374 -22.5049 -27.5773 -25.376 -17.3014 -15.3294 -17.2892 -13.9822 -20.6598 -15.7066 -14.0471 -17.7869 -20.3416 -14.3472 -18.9091 -14.8743 -21.597 -20.794 -19.4867 -20.2736 -23.6432 -23.4821 -22.0794 -21.7365 -24.0131 -22.7064 -22.7728 -22.7504 -22.761 -24.7253 -21.5021 -29.0505 -20.1677 -13.2798 -15.0279 -13.2963 -17.8658 -16.2764 -17.4169 -20.7475 -19.505 -18.7884 -16.582 -20.6347 -17.1531 -18.1476 -20.748 -18.6136 -19.5713 -22.4669 -20.9067 -23.1198 -23.7808 -22.1239 -22.6614 -20.9667 -22.1713 -21.1701 -22.9443 -22.0905 -22.0936 -22.278 -21.0273 -22.2519 -24.2564 -23.0844 -23.1728 -26.9172 -24.7742 -22.8134 -25.3319 -26.1714 -26.7537 -27.3098 -26.0015 -27.2971 -27.134 -23.1151 -24.0399 -21.851 -21.2439 -22.8061 -21.708 -23.1194 -24.7496 -26.927 -24.0516 -27.5056 -24.8243 -24.3776 -27.1215 -16.3726 -12.3027 -12.6804 -17.2032 -12.7422 -16.9912 -16.8707 -19.949 -24.5185 -18.2717 -20.04 -17.769 -21.9781 -22.0497 -20.8638 -25.3943 -22.0853 -22.9558 -23.071 -23.6041 -20.282 -26.8521 -26.1455 -25.096 -24.2038 -28.1961 -30.207 -29.5634 -27.914 -32.8645 -27.2701 -31.0216 -24.7569 -23.8798 -23.6264 -26.4167 -23.74 -26.7196 -23.715 -23.5514 -22.7231 -25.5614 -26.5617 -26.2857 -25.15 -26.9582 -23.751 -26.8506 -26.5565 -30.9144 -28.289 -16.7247 -53.9383 -28.892 -22.5298 -15.7135 -23.9147 -18.818 -24.3298 -25.0629 -15.1672 -19.6688 -10.6667 -5.50325 -1.49544 -24.2476 -2.39307 -22.0056 -10.7365 -16.6085 -22.2349 -25.9787 -28.5924 -26.5631 -20.9425 -17.5531 -28.232 -31.5755 -22.2712 -26.934 -26.7132 -23.4958 -33.1718 -33.8124 -41.4311 -37.6304 -44.4752 -36.2284 -35.1425 -41.5393 -30.4589 -27.0775 -29.1721 -38.4972 -25.3091 -32.7004 -36.0285 -11.6456 -6.55728 -0.959586 -26.6261 -0.787978 -11.1279 -29.1788 -23.6982 -42.3593 -36.5604 -32.5046 -29.1956 -37.4763 -26.87 -20.9601 -24.4543 -31.319 -33.1024 -19.3129 -26.3504 -34.2237 -44.2451 -53.3621 -42.2199 -49.8105 -40.6337 -45.8556 -54.0139 -44.5235 -58.8622 -42.8257 -40.736 -36.2287 -52.4396 -49.9523 -39.7848 -30.0305 -42.8074 -38.0105 -36.4785 -32.6278 -46.448 -36.3586 -39.088 -33.544 -40.5131 -41.6764 -33.9837 -35.6013 -38.151 -41.3107 -38.6667 -43.5859 -40.2627 -36.2236 -41.0795 -40.0403 -42.0665 -45.0802 -50.268 -46.7661 -39.3 -43.1857 -33.2381 -36.5422 -31.9743 -39.0116 -31.11 -34.0524 -38.6448 -32.8578 -31.9255 -29.0502 -40.1403 -27.1591 -35.7951 -37.6019 -36.7096 -40.08 -43.2047 -45.8938 -37.5363 -39.414 -42.9397 -50.7765 -51.077 -43.3803 -49.8122 -47.0006 -46.4531 -54.588 -61.3071 -79.027 -67.241 -65.4608 -59.289 -71.3083 -68.184 -53.8335 -47.7736 -57.2741 -58.3197 -49.2849 -51.8445 -61.9062 -44.4743 -42.6706 -33.768 -45.7378 -36.7516 -40.7687 -49.1465 -55.8029 -71.7135 -64.8876 -61.8677 -56.1429 -64.9804 -61.8762 -48.7198 -45.5074 -52.0096 -56.3283 -44.6948 -49.3437 -56.3236 -32.1981 -23.0139 -34.1193 -28.9713 -31.7888 -26.8662 -34.5234 -32.8311 -36.4906 -26.1068 -30.9482 -38.5193 -30.9185 -27.8194 -29.49 -20.9937 -27.7303 -23.1061 -29.2444 -27.7993 -24.6004 -36.2045 -32.7032 -34.07 -45.1285 -42.3595 -30.3252 -39.0117 -32.8275 -32.5892 -12.4849 -22.814 -30.0868 -35.5241 -13.7898 -31.9778 -5.54651 12.0476 2.14405 -2.9324 -37.4268 3.85027 -26.5583 3.52419 0.61167 11.6773 9.44926e-05 -24.1192 4.1563 -38.063 -25.8535 -45.9215 -19.4133 -43.5897 -40.7678 -16.0439 -42.5674 -38.2781 -32.7428 -29.9999 -39.0305 -41.6233 -35.7706 -55.6876 -69.1089 -52.059 -51.3824 -45.8696 -62.7975 -61.8836 -48.5421 -37.1949 -50.9465 -45.616 -44.5071 -40.6853 -55.2522 -48.4938 -34.2431 -53.2261 -45.2924 -47.5533 -40.4264 -53.7875 -40.2096 -37.8439 -45.2625 -39.4728 -42.7294 -36.158 -42.892 -34.9132 -28.3623 -28.3376 -24.7626 -30.1016 -32.727 -31.2702 -35.658 -33.6642 -36.0272 -29.986 -38.1879 -33.4736 -32.5161 -39.1084 -37.0596 -27.7015 -35.8136 -34.0734 -34.1057 -42.2155 -61.3269 -57.3032 -48.1076 -53.8466 -56.1344 -62.4612 -53.0364 -66.4725 -66.2202 -54.738 -65.7419 -73.2903 -60.5394 -59.0346 -57.6683 -47.0014 -48.6344 -47.6854 -52.6353 -53.0156 -51.6632 -70.2767 -61.7804 -78.7378 -66.8813 -77.7805 -72.0774 -60.2407 -53.7803 -51.9768 -44.7345 -50.3032 -48.985 -57.3005 -48.9414 -61.2959 -56.6949 -42.1564 -59.8817 -53.6092 -53.0499 -68.8377 -53.1691 -42.1398 -41.8458 -37.2451 -45.0127 -48.6851 -47.2475 -63.525 -58.77 -71.6594 -62.5402 -65.9213 -55.857 -70.1501 -11.3439 -9.79632 -9.86571 -12.6627 -16.1192 -8.02394 -10.5722 -15.2664 -13.9165 -15.9084 -13.0114 -15.8361 -12.8476 -15.6033 -17.5364 -17.8841 -17.4992 -19.894 -16.9771 -20.2264 -17.9084 -3.63686 0.824479 4.33351 -11.0433 3.6777 -6.75072 -12.6725 -8.93988 -13.6583 -13.0806 -13.2955 -9.23322 -13.5225 -12.1112 -22.0315 -24.1133 -24.6103 -26.1433 -22.3332 -24.0216 -19.9469 -17.0834 -15.3291 -16.3129 -21.2528 -19.1575 1.70204 4.02357 -1.94825 -1.30872 -2.51331 1.67437 4.95004 -15.9912 -14.0672 -15.321 -18.3031 -19.1117 -6.90768 -6.48562 -5.36625 -4.96269 -8.1065 -6.42637 -5.75799 -19.8993 -21.1389 -23.8625 -24.2029 -17.114 -16.8437 -17.9111 -20.3365 -16.7765 -18.321 -18.0582 -16.4189 -16.2104 -15.3115 -18.2949 -16.4094 -15.7687 -17.1705 -18.383 -19.394 -17.3383 -21.3342 -17.5758 -18.0987 -21.3551 -16.2645 -16.3406 -16.8082 -19.2877 -15.1522 -17.5462 -18.6035 -15.316 -15.0314 -14.3044 -17.6517 -13.5448 -16.3676 -17.3155 -23.1085 -25.4508 -25.8148 -23.7296 -23.2786 -23.4817 -23.7246 -27.1183 -26.6818 -25.5247 -24.7307 -24.0616 -22.6105 -26.8673 -26.2156 -28.4128 -23.3756 -26.2708 -26.113 -19.3353 -23.1041 -23.7839 -18.1401 -20.9609 -17.7136 -14.8805 -18.2771 -20.9656 -22.4375 -15.4973 -17.6352 -20.8936 -23.0672 -21.8204 -23.099 -19.2566 -21.6488 -22.9806 -21.5585 -22.4954 -16.345 -14.4333 -15.7502 -18.4819 -18.4141 -14.7813 -16.298 -6.77754 -7.25973 -9.18775 -13.103 -6.00773 -7.41436 -12.3484 -15.3295 -6.56779 -5.92777 -4.64323 -5.282 -7.94947 -5.12831 -6.24378 -5.23335 -8.40723 -5.44745 2.45081 -1.40884 0.342502 -1.7467 1.3853 1.70457 -1.16396 -6.63508 -11.2321 -8.55527 -10.834 -7.53005 -7.59883 -9.10599 -5.79997 -4.84354 -6.96445 -4.81757 -6.0224 -5.94717 -4.39716 -12.1054 -11.0669 -9.66123 -7.15619 -10.5744 -12.7512 -8.1435 -11.6639 -10.6651 -10.4047 -14.0104 -12.1118 -9.49609 -11.686 -12.0453 -13.1217 -11.6589 -12.0996 -12.7585 -10.8418 -11.9706 -14.0772 -14.9103 -15.9222 -12.7674 -13.7291 -12.8422 -11.1998 -12.0752 -13.1887 -13.8476 -12.7764 -11.0221 -12.0166 7.59557 7.52197 7.52247 7.66144 7.49959 7.46254 7.40347 7.00278 7.0172 7.39867 6.60839 7.21325 6.4444 6.85616 7.25356 4.6541 4.08496 6.43743 4.34349 5.76022 5.61006 2.09639 7.39724 7.47422 7.37278 7.39322 7.38467 7.48562 7.63416 7.614 7.57237 7.48222 7.31474 7.19448 6.99393 7.29045 7.05587 2.51029 3.67683 2.97132 4.13426 2.35206 1.39904 0.659396 2.05931 3.20643 0.586949 0.475749 1.16958 -0.300733 -0.507532 0.732477 5.93616 5.59812 5.31729 5.77532 5.89291 6.10369 6.35281 5.85997 6.14767 6.19835 6.25248 6.23058 6.45597 6.50369 6.17078 3.97843 3.68406 4.65785 3.46162 5.4641 4.54544 4.73493 5.34167 5.94594 4.19225 2.28521 1.72995 0.980351 1.9721 1.19179 -3.53195 -3.55009 -3.04671 -3.67 -3.23184 -4.64363 -5.17642 -4.93339 -4.60754 -4.84319 -3.33273 -3.05949 -2.78613 -2.91422 -3.14042 -1.33448 -1.92097 -2.02687 -1.52179 -1.89186 -0.919339 -0.62018 -1.285 -1.41175 -0.770251 -0.777798 -1.08577 -0.179543 0.0427816 -0.940957 -2.40796 -2.52941 -2.46801 -2.52531 -2.32637 -2.14233 -1.90506 -1.75515 -1.87419 -2.02187 -3.03538 -2.69214 -1.95271 -2.12487 -2.70769 -2.43024 -1.90399 -1.78755 -2.13628 -1.67305 -2.01405 -1.53532 -1.46573 -1.40345 -1.36156 -1.62124 -1.72309 -1.51476 -2.30373 -2.02938 -1.92458 -0.651474 -1.21868 -1.53814 -1.86573 -0.0966768 -1.86048 -1.59486 -0.263667 -0.304158 -1.78519 -1.45901 -1.30246 -1.38344 -1.49852 -1.74475 -2.23633 -1.8072 -1.35128 -2.00878 -2.58409 -2.97008 -1.01832 -1.71581 -2.56602 -2.86833 -1.17258 -2.22979 -2.27564 -2.15743 -1.87328 -2.3665 -2.04841 -1.87608 -2.27276 -2.22922 -2.2774 -0.876729 -1.03371 -0.822266 -1.01514 -0.873432 -0.838779 -0.816877 -0.973299 -0.96945 -0.859837 -0.621334 -0.594979 -0.289045 -0.586421 -0.40271 -1.64067 -1.78742 -1.54959 -1.66526 -1.58076 -1.66634 -1.72599 -1.67723 -1.67001 -1.7414 -1.98699 -2.04966 -1.92983 -2.00104 -1.92916 -0.960047 -1.16716 -0.958536 -0.974693 -1.15678 -1.02299 -1.01389 -1.21172 -1.1676 -1.02604 -0.666885 -0.738403 -0.31669 -0.673708 -0.398144 -15.7995 -16.4332 -16.0805 -14.762 -18.5349 -13.67 -13.937 -12.593 -12.9117 -13.0944 -11.8148 -11.7965 -11.7159 -11.8583 -11.7647 -11.6847 -11.8437 -11.9442 -11.8423 -11.9904 -11.915 -11.9331 -12.0591 -11.8793 -12.2282 -11.9205 -12.732 -11.8427 -12.0788 -12.1637 -12.3277 -12.3486 -12.1076 -11.2015 -11.6985 -11.572 -11.3653 -11.7713 -11.2882 -11.4806 -11.0637 -10.2249 -11.1848 -11.3732 -11.0313 -10.8561 -11.4384 -12.3446 -12.602 -12.5343 -12.3967 -12.3348 -12.5456 -12.3317 -11.9554 -10.9476 -11.954 -11.6121 -11.8113 -11.3825 -11.9369 -12.7269 -12.7867 -12.6653 -12.5758 -12.7338 -12.6883 -12.7574 -12.5974 -12.2847 -12.5718 -12.4083 -12.5733 -12.3398 -12.6811 -10.9286 -10.2983 -10.7715 -10.9433 -10.9354 -10.2501 -11.1156 -11.5194 -11.8082 -11.4758 -12.0505 -11.491 -11.9361 -11.6044 -8.30327 -9.37045 -9.35897 -8.77071 -9.16391 -8.03856 -8.88171 -7.8749 -7.22119 -8.35407 -7.89141 -7.76048 -7.59566 -8.40043 -6.2107 -5.71771 -5.66804 -6.10031 -6.10263 -5.66837 -6.35207 -6.92228 -7.33755 -6.86243 -7.48962 -6.77371 -7.38408 -6.99936 -4.24533 -4.86684 -4.83365 -4.22939 -4.8517 -4.25474 -4.24609 -3.53011 -2.91183 -3.507 -2.94166 -3.49699 -2.90287 -3.58604 -0.819767 -0.335289 -0.814434 -0.211562 -0.822472 -0.887385 -0.254259 -1.44834 -2.05308 -1.44962 -2.15222 -1.42918 -2.10317 -1.5156 -11.626 -11.5551 -11.7559 -11.6212 -11.5819 -11.6866 -11.7091 -11.9312 -12.1031 -12.2432 -11.9207 -12.229 -11.9208 -11.9061 -12.4349 -12.9487 -12.3079 -12.3917 -12.5377 -12.2168 -12.4495 -12.0977 -11.816 -11.0684 -11.8925 -11.6882 -11.7292 -12.0959 -30.9885 -23.6657 -30.7456 -23.2839 -25.5873 -30.7541 -26.0119 -29.4812 -31.1403 -28.7731 -26.5455 -33.4487 -33.9364 -31.4842 -30.4631 -30.3485 -34.0248 -32.8881 -25.54 -31.6598 -28.6742 -26.6943 -33.0102 -30.6214 -30.5787 -34.6108 -29.7209 -34.8835 -33.3635 -21.5953 -25.7033 -30.4765 -28.403 -21.9492 -25.337 -25.0382 -36.631 -40.9081 -36.8875 -41.7534 -36.6194 -38.1874 -40.836 -33.6694 -30.0368 -38.9417 -33.235 -34.4063 -29.8301 -37.8814 -34.6394 -30.2085 -31.4589 -33.7726 -30.3789 -34.0633 -35.2261 -29.5255 -28.0912 -31.1868 -29.3941 -34.6131 -34.7174 -30.3927 -30.8322 -30.8525 -33.3843 -31.2787 -31.7479 -31.127 -34.4304 -30.3467 -34.3563 -33.7773 -29.7899 -28.8795 -27.6577 -26.1761 -32.7806 -39.6505 -41.1928 -37.236 -38.5531 -38.7755 -37.5079 -41.5741 -40.6769 -38.0471 -44.7573 -42.9253 -39.6661 -39.8109 -44.991 -31.1332 -27.7067 -25.9468 -35.2187 -25.7843 -30.8313 -33.2285 -35.0395 -36.2109 -41.1888 -40.9526 -35.1358 -36.9451 -38.7037 -26.2181 -24.3294 -21.9181 -26.8478 -24.1496 -24.1608 -26.7617 -32.2154 -32.6161 -33.288 -36.8654 -35.0553 -30.8364 -33.1544 -28.234 -20.8867 -30.3734 -23.0349 -22.0126 -32.0491 -28.0338 -31.0551 -35.4572 -32.971 -26.4486 -36.2123 -34.6728 -32.7977 -36.676 -32.9851 -36.1147 -44.9141 -36.2527 -41.5055 -43.2142 -49.9726 -35.1293 -43.8534 -49.7196 -35.9932 -39.0219 -11.135 -6.90547 -6.45865 -19.0452 -3.20361 -12.447 -18.8088 -20.7876 -32.5154 -26.9921 -36.2903 -24.0702 -28.8852 -28.836 -44.2729 -59.2348 -53.2512 -52.6841 -46.4463 -50.4436 -53.3373 -41.643 -39.5197 -45.6596 -45.1624 -41.2343 -37.8626 -48.1223 -29.9519 -28.1896 -29.2529 -33.5828 -27.4045 -31.9458 -30.4011 -49.3538 -45.1988 -57.7126 -48.8167 -53.064 -53.8196 -53.1215 -60.2102 -63.0517 -53.7034 -43.7016 -40.5895 -46.3168 -43.9155 -48.5314 -45.1991 -44.2972 -51.8491 -49.2745 -49.2953 -54.1019 -46.9308 -50.0977 -58.5479 -44.071 -58.2787 -56.7399 -56.3481 -60.7364 -52.9131 -62.4892 -53.8506 -57.1174 -65.7595 -58.7422 -63.6777 -70.6576 -71.7078 -60.2605 -60.852 -69.9403 -57.1077 -74.2192 -55.2491 -87.6846 -47.7998 -55.6743 -79.9313 -58.9691 -56.5327 -71.5519 -71.6518 -58.7302 -59.7521 -72.9023 -38.6445 -48.0058 -37.853 -57.5253 -57.5506 -32.1091 -45.8311 -27.2537 -12.0103 -17.4885 -74.8381 -6.1874 -57.7176 -39.139 -46.4072 -68.2491 -68.8161 -83.466 -67.6357 -55.381 -57.5527 -68.5788 -68.9311 -47.4081 -68.0851 -58.007 -56.8185 -81.4344 -90.9209 -109.336 -108.929 -126.205 -106.279 -93.9777 -112.696 -81.9807 -81.9017 -80.9423 -111.355 -68.0429 -97.2101 -97.3545 -64.8218 -59.8395 -28.4968 -85.4583 -45.8621 -51.7748 -94.9743 -93.2358 -108.622 -117.157 -111.424 -107.757 -115.135 -102.786 -84.9488 -83.4169 -96.929 -105.669 -72.0392 -97.3249 -103.928 -141.026 -152.079 -129.508 -143.825 -126.787 -146.316 -150.745 -131.261 -128.075 -127.181 -116.279 -119.441 -136.97 -125.331 -126.823 -97.5329 -126.998 -118.543 -114.665 -111.166 -134.649 -92.6728 -93.8705 -77.622 -98.2293 -106.559 -81.1214 -88.7583 -106.63 -103.55 -110.479 -137.805 -123.422 -95.4408 -122.251 -110.299 -121.45 -120.295 -139.536 -127.054 -107.336 -124.742 -83.2988 -85.5 -73.9341 -96.0123 -73.852 -83.5155 -96.1465 -90.4077 -90.0765 -91.8404 -115.133 -78.0453 -103.92 -102.731 -100.199 -114.608 -116.939 -130.71 -101.665 -114.487 -117.55 -161.367 -154.704 -131.683 -159.474 -150.121 -145.057 -169.161 -175.645 -175.56 -178.237 -176.765 -173.888 -178.423 -175.673 -164.764 -145.163 -161.508 -166.806 -149.372 -160.552 -170.256 -142.355 -138.868 -110.83 -139.381 -124.609 -126.276 -154.779 -166.948 -180.422 -177.745 -174.419 -169.488 -180.226 -174.308 -150.969 -137.767 -152.683 -167.674 -135.726 -153.709 -167.065 -87.2182 -63.3218 -100.231 -85.6719 -86.9057 -73.2779 -100.012 -84.0062 -81.3076 -60.7552 -77.4897 -92.5584 -73.3525 -69.4054 -73.4721 -52.2503 -62.9113 -53.1284 -73.5206 -63.4181 -61.1394 -99.8662 -96.4916 -92.513 -121.95 -109.72 -83.2386 -112.605 -114.367 -109.184 -63.2316 -88.0508 -106.938 -115.03 -74.586 -130.414 -75.5668 -35.3042 -80.8328 -67.8041 -129.297 -59.7053 -120.081 -30.0818 -40.8832 -27.6108 -58.0483 -107.386 -45.1311 -121.511 -97.8689 -118.199 -97.7307 -119.289 -121.886 -85.2613 -123.663 -115.578 -100.12 -102.274 -116.216 -121.305 -112.961 -140.583 -149.916 -142.87 -132.689 -129.026 -151.668 -140.603 -136.75 -111.148 -137.919 -136.335 -128.457 -124.924 -147.654 -129.891 -108.592 -126.458 -125.805 -128.166 -118.211 -129.976 -107.507 -102.611 -125.825 -112.707 -111.444 -99.3143 -121.131 -89.9802 -71.8497 -71.1274 -62.7779 -74.5966 -81.2891 -82.1555 -90.1427 -84.8967 -83.3564 -73.9994 -92.06 -82.384 -83.86 -107.989 -108.431 -79.271 -103.905 -93.192 -95.704 -119.949 -168.378 -158.719 -140.688 -160.073 -157.074 -171.613 -157.883 -169.153 -160.674 -155.201 -169.862 -169.605 -161.88 -164.584 -159.867 -136.099 -143.077 -145.449 -147.524 -154.643 -152.924 -177.683 -174.854 -183.806 -176.685 -178.69 -181.597 -169.85 -160.931 -149.345 -131.88 -155.614 -144.555 -163.981 -151.016 -173.228 -166.402 -142.501 -171.147 -157.778 -160.587 -172.974 -156.957 -125.416 -123.52 -125.12 -137.914 -142.329 -142.136 -176.801 -173.814 -181.643 -179.449 -179.02 -169.045 -180.51 -26.0686 -29.9474 -32.1263 -32.0728 -29.44 -28.833 -28.7177 -23.2681 -21.6824 -20.7366 -26.3382 -20.4873 -25.7467 -24.96 -7.44729 -5.39864 10.5431 -18.7073 3.92715 -0.503199 -41.8632 -19.135 -18.7618 -24.7382 -16.0297 -22.7462 -16.5164 -23.1791 -26.2406 -29.7592 -12.7325 -23.9259 -31.7385 -44.336 -35.983 -39.0794 -34.1632 -47.8295 -36.1692 -23.2859 -29.8053 -29.7595 -27.9745 -37.9288 -31.0089 -48.7778 -35.7973 -37.5462 -32.2514 -44.8504 -32.185 -32.7085 -35.5891 -33.8234 -31.4825 -31.4735 -36.0341 -33.257 -38.3178 -36.2278 -40.4889 -34.8051 -33.6402 -38.733 -46.9454 -39.0127 -36.1839 -48.895 -38.7205 -59.5041 -61.4679 -53.1377 -74.0266 -54.3475 -57.956 -67.3253 -61.4768 -43.0321 -46.1821 -43.1127 -58.7191 -70.7709 -67.5094 -82.119 -81.1508 -63.3932 -67.2787 -88.5266 -64.499 -42.0346 -49.5927 -43.7403 -62.7812 -77.9127 -70.936 -92.4196 -88.2736 -75.0557 -72.7077 -98.7471 -24.0383 -19.8289 -17.7025 -18.5405 -20.0542 -21.4149 -23.0676 4.90713 16.5679 -6.68801 17.805 13.8225 2.34752 3.90106 1.8563 -2.29564 -3.11722 2.17602 1.80211 -1.77853 -10.0734 -20.2332 -21.8034 -10.7321 -11.7485 -15.2588 -8.01188 -9.86823 -11.7221 -9.13263 -9.46744 -6.68428 -10.8476 -14.2255 -18.9283 -13.9958 -12.8896 -10.824 -14.2373 4.98119 -5.4823 5.88337 1.15774 1.58586 -1.78251 6.75373 5.65332 4.44793 -3.91559 -2.11742 5.83116 6.44139 -1.18682 9.93401 13.6075 19.8982 18.2131 19.4119 7.33049 12.694 -12.2583 -13.1396 -10.2207 -6.25097 -12.4051 -9.53989 -10.2673 -14.9843 -21.1561 -18.2346 -12.8658 -12.6886 -15.8738 -16.4899 -14.3753 -26.7736 -19.0068 -16.4373 -13.295 -23.8198 -32.5633 -26.0048 -27.7071 -30.4172 -32.4784 -27.6755 -30.3467 -17.5035 -18.4141 -18.9694 -19.6772 -17.2332 -16.5048 -18.1638 -20.5561 -18.6741 -17.2299 -19.6768 -16.4954 -18.7751 -19.2981 -24.2154 -22.3051 -20.0713 -21.6141 -19.9068 -33.544 -38.1872 -28.0989 -31.3473 -32.9521 -36.5047 -28.0636 -41.0307 -51.0284 -43.8612 -38.0497 -48.178 -34.3364 -34.3367 -28.6487 -32.0844 -32.37 -34.8285 -31.1896 -41.3416 -57.9993 -51.4941 -44.8138 -53.3643 -45.4122 -41.9305 -34.6323 -28.0904 -32.0131 -26.0525 -31.1458 -34.3011 -29.6757 7.40898 7.73069 7.73239 7.63601 7.67575 7.68693 7.75403 7.92165 7.81185 7.89169 7.87297 7.68918 7.9666 7.92319 7.55789 7.66564 7.66613 6.98822 7.24681 7.91112 6.96488 6.07411 4.84161 3.81972 2.96063 5.66988 5.14597 4.99315 8.19158 7.94123 8.08815 7.94617 8.02053 8.15544 8.27727 8.11953 7.9645 7.75251 7.81843 7.94135 8.07699 7.88738 2.66555 6.53172 2.97331 5.49376 5.83679 7.58 7.6388 7.76853 7.21742 7.51898 7.06453 8.27198 8.03408 8.34715 8.21131 7.04405 6.91117 7.10782 7.0506 6.97973 6.63019 7.12559 7.32268 7.30933 7.42243 7.53353 7.23677 7.50312 7.38766 5.10061 6.32716 5.59313 6.50351 5.18752 5.90036 5.26112 4.08701 3.91589 2.95405 3.02031 3.8846 3.97445 3.03542 0.268486 -0.00838595 -0.334099 -0.171213 0.250486 -0.190697 0.199051 0.878129 0.962445 1.63873 1.71937 0.923703 1.61399 0.941322 -1.42035 -1.0193 -1.17149 -0.661043 -1.46536 -1.00678 -1.19404 -1.72099 -1.39315 -1.7246 -1.47026 -1.6807 -1.44307 -1.79525 -2.11454 -2.04001 -0.653129 -1.75906 -1.772 -2.12915 -1.22012 -1.96782 -1.21909 -1.76505 -1.47398 -1.68947 -1.95346 -1.2861 -2.51541 -2.33809 -2.39453 -2.12542 -2.51693 -2.35123 -2.29612 -2.67175 -2.44593 -2.42359 -2.24951 -2.58585 -2.39628 -2.41326 -2.18201 -1.53576 -1.71299 -1.6597 -1.74805 -1.81043 -1.96839 -2.35353 -2.56053 -1.76694 -1.93777 -2.73962 -2.17026 -2.32588 -1.11195 -1.20175 -1.23767 -1.03661 -1.04001 -1.33476 -1.03571 -0.800375 -0.713152 -0.334035 -0.356137 -0.712755 -0.728494 -0.379652 -12.0669 -12.144 -12.3015 -12.0908 -12.4513 -12.0269 -12.0133 -11.9322 -11.968 -11.8453 -11.8715 -11.8736 -11.9196 -11.9238 -14.2272 -16.4642 -15.6519 -16.8872 -14.733 -14.877 -14.9251 -13.1421 -12.7917 -13.9158 -12.778 -13.3142 -13.408 -12.6571 -11.8625 -11.8799 -11.9514 -11.8093 -11.9385 -11.9405 -11.8187 -12.0111 -12.3834 -12.1448 -12.423 -12.1403 -12.1298 -12.2283 -12.8514 -12.718 -12.1644 -11.9039 -12.265 -12.7911 -12.2925 -14.511 -13.9124 -17.2095 -14.0301 -14.8709 -13.5586 -16.0736 -11.752 -11.6101 -11.7909 -11.6264 -11.6722 -11.9137 -11.5812 -12.21 -11.7403 -11.9291 -12.5175 -11.354 -12.3066 -12.4979 -12.7894 -12.9245 -12.9704 -13.1631 -13.0127 -12.7583 -12.9748 -11.4867 -11.868 -11.3332 -11.8611 -11.336 -11.5529 -11.8702 -12.1149 -11.9166 -11.3264 -12.5138 -12.3466 -11.6368 -12.2734 -11.5649 -10.5431 -10.5952 -11.7297 -11.4354 -11.4554 -13.3137 -13.5934 -13.372 -13.3726 -13.1135 -13.5084 -13.2713 -13.4046 -12.3302 -13.0226 -13.131 -12.8155 -13.4759 -12.8524 -11.6506 -11.7741 -12.8048 -12.5853 -12.2063 -11.8738 -12.5478 -12.3311 -12.0079 -12.3243 -11.9944 -11.7704 -10.97 -11.3078 -10.4936 -10.2451 -10.2558 -11.2025 -11.0112 -13.6156 -13.6946 -13.5087 -13.5398 -13.6882 -13.5967 -13.7215 -13.8564 -13.3089 -13.4978 -13.9863 -13.6849 -13.3229 -13.4633 -13.0315 -13.1048 -13.4284 -13.4892 -13.0585 -11.2731 -10.4471 -10.2467 -11.2164 -11.2298 -10.3004 -12.1584 -12.1314 -12.6082 -12.832 -12.0548 -12.6783 -12.2767 -11.9477 -12.4482 -12.473 -11.9292 -11.9282 -12.4743 -6.82868 -7.40359 -7.20622 -6.86876 -7.27236 -6.93006 -6.73583 -6.77723 -7.29344 -6.86825 -7.20879 -6.84395 -6.14729 -6.25676 -5.69945 -5.53284 -5.62362 -6.26762 -6.07777 -6.04825 -5.3581 -5.47642 -5.9321 -6.07655 -5.40021 -6.59765 -6.38345 -6.98001 -7.16277 -6.52828 -7.08054 -6.51029 -1.37765 -2.12176 -2.02733 -1.48686 -2.01764 -1.49625 -1.36234 -0.76857 -0.875504 -0.298538 -0.214954 -0.841644 -0.747913 -0.219597 -4.077 -4.59343 -4.63512 -4.12219 -4.04691 -4.5877 -3.46917 -3.30301 -2.73781 -2.75107 -3.42447 -3.34163 -2.79625 -3.44635 -2.81827 -2.71462 -3.50332 -3.36596 -2.75189 -0.763524 -0.180484 -0.171405 -0.72971 -0.794518 -0.215804 -1.39372 -1.30276 -1.92771 -1.94601 -1.31071 -1.99193 -1.36921 -1.34473 -1.94763 -1.91806 -1.30732 -1.31872 -1.94534 -65.3227 -65.117 -65.6134 -81.8654 -57.9982 -75.1118 -71.1908 -65.3487 -70.0817 -83.2279 -67.6879 -68.6894 -86.1632 -60.946 -57.9622 -49.3974 -51.875 -60.5981 -72.1437 -72.0167 -89.2946 -91.3794 -83.3991 -75.0988 -88.9861 -78.5808 -42.9119 -35.0637 -45.3597 -56.5331 -45.9462 -37.8661 -56.7806 -48.9137 -67.6917 -80.9944 -45.2087 -68.658 -72.9018 -57.1861 -53.7914 -67.9347 -56.574 -71.2579 -73.7541 -81.2863 -100.56 -84.9082 -103.249 -123.432 -111.271 -116.223 -125.567 -107.061 -62.5418 -58.3974 -34.0338 -33.0478 -42.845 -86.7848 -51.2938 -124.923 -103.321 -97.3164 -98.5652 -117.73 -106.163 -109.332 -124.075 -125.994 -123.084 -120.089 -126.65 -131.902 -108.402 -123.189 -114.796 -130.683 -111.857 -125.747 -91.6121 -108.296 -99.7855 -117.362 -87.4566 -108.647 -100.275 -77.6746 -96.2354 -75.3239 -77.6283 -75.9349 -93.3146 -101.25 -81.5071 -86.9486 -98.1535 -97.1586 -82.4316 -101.357 -106.935 -107.824 -103.82 -119.927 -100.222 -88.5139 -85.499 -99.6805 -89.1753 -94.2009 -104.245 -149.357 -143.157 -165.448 -157.783 -162.196 -142.881 -157.295 -152.009 -159.246 -171.508 -163.629 -154.049 -132.702 -126.572 -122.97 -122.462 -126.096 -145.955 -130.366 -210.657 -171.082 -183.123 -170.776 -202.211 -193.316 -177.606 -203.661 -204.529 -190.138 -182.843 -202.915 -236.545 -169.636 -214.596 -176.431 -223.906 -219.262 -197.982 -87.7431 105.904 -115.714 -43.4406 -39.3234 -71.7539 -146.238 -104.107 -106.854 -100.289 -103.937 -98.6062 -101.968 -106.221 -97.332 -101.454 -103.49 -89.8934 -110.506 -104.996 -113.264 -119.093 -114.334 -109.872 -108.208 -118.482 -114.133 -116.657 -120.632 -119.687 -120.016 -121.031 -117.732 -112.607 -116.2 -118.005 -117.545 -132.322 -126.531 -123.792 -133.162 -126.242 -133.143 -131.58 -105.667 -106.765 -106.734 -110.571 -107.78 -104.639 -109.092 -117.392 -124.746 -112.405 -115.553 -113.27 -116.856 -122.03 -111.691 -113.112 -118.81 -113.38 -118.487 -114.784 -122.949 -124.468 -116.57 -115.736 -121.248 -113.856 -108.354 -108.44 -111.123 -109.238 -106.795 -107.056 -98.4215 -102.545 -108.066 -107.649 -103.51 -104.865 -105.438 -127.049 -122.129 -122.336 -120.143 -115.095 -106.666 -103.315 -112.289 -121.824 -112.086 -108.555 -112.386 -108.273 -104.691 -106.611 -112.128 -109.671 -106.594 -106.267 -101.651 -101.982 -103.058 -105.858 -102.129 -107.13 -104.878 -101.271 -104.054 -102.055 -109.504 -100.245 -105.533 -104.271 -97.17 -99.372 -93.1715 -97.1336 -96.6098 -95.2903 -100.018 -151.823 -140.589 -147.081 -152.074 -155.229 -142.136 -148.923 -167.65 -173.651 -168.335 -167.75 -169.814 -170.791 -165.996 -118.178 -127.993 -130.137 -117.2 -116.668 -127.99 -118.167 409.104 364.775 251.711 343.684 374.03 405.798 351.604 409.127 255.704 384.396 355.098 381.699 353.519 409.058 -127.624 -120.122 -122.534 -130.763 -120.988 -126.957 -128.905 -105.943 -111.969 -113.973 -111.665 -108.364 -108.099 -111.302 -126.963 -128.829 -121.912 -117.619 -130.107 -120.25 -122.467 436.607 435.83 437.383 436.252 435.306 436.709 437.267 -174.596 -182.302 -181.432 -175.794 -180.672 -175.732 -175.149 -161.846 -157.566 -147.858 -151.125 -151.763 -155.225 -162.265 434.737 434.487 435.218 434.323 435.074 434.83 434.31 -91.3578 -80.0154 -92.0667 -76.6113 -93.8087 -74.9208 -88.8876 -53.283 -60.6066 -52.0513 -58.9319 -51.9376 -59.5296 -56.3958 -8.6826 -1.99444 -3.06902 -3.43422 -5.78145 -4.80245 -5.34801 2.82366 2.89605 2.94269 4.8136 2.1444 3.11633 3.75764 2.6462 -0.344376 2.33378 3.66232 0.68691 1.50207 3.75672 -69.9525 82.8707 121.381 -165.02 -23.6787 82.113 -231.629 408.621 258.482 378.387 349.564 383.694 353.704 406.149 409.434 262.148 385.659 354.693 408.91 385.678 355.231 404.782 367.455 235.091 349.41 359.459 405.477 343.653 403.297 218.017 326.06 308.284 389.566 346.82 332.822 -136.695 -150.258 -137.6 -148.503 -150.885 -138.761 -135.356 -120.677 -119.595 -125.073 -129.277 -111.303 -129.267 -123.633 -120.633 -120.147 -117.974 -118.849 -119.618 -122.7 -119.359 433.599 431.875 433.353 431.79 433.157 433.637 431.849 434.153 434.217 434.351 434.071 434.201 434.314 434.454 434.514 434.551 434.432 434.62 434.609 434.7 434.583 -183.723 -172.966 -180.373 -175.161 -177.018 -182.388 -185.728 -190.724 -194.237 -190.627 -187.695 -194.007 -187.492 -192.999 -185.027 -183.007 -174.155 -172.361 -176.878 -188.801 -182.698 431.912 433.536 432.399 432.479 433.191 432.379 430.267 433.235 433.517 433.89 433.061 433.895 432.846 433.204 -50.719 -60.2498 -52.4943 -58.3798 -49.2233 -56.2342 -49.5598 -51.5714 -58.6634 -50.5097 -57.7847 -54.728 -48.8472 -55.7339 -112.784 -98.5731 -120.665 -101.166 -116.725 -101.301 -117.442 2.57991 1.39416 4.32412 1.90219 2.32631 2.12737 2.01176 -6.64704 -6.58238 -3.99541 -2.64533 -1.5579 -9.54315 -4.07484 -0.163408 0.195021 2.39693 2.32847 1.52437 -0.80548 0.457551 -89.595 -88.3987 -86.7588 -86.0043 -88.2139 -89.5885 -88.053 -91.9568 -92.2762 -88.4155 -91.0297 -91.2926 -94.1514 -88.8141 -103.88 -97.9352 -101.532 -96.4216 -102.208 -99.2604 -101.511 -173.896 -171.681 -171.637 -164.91 -175.207 -168.928 -166.113 -64.3718 -53.9256 -59.6258 -67.0312 -68.3303 -56.78 -62.4351 -88.9672 -85.5761 -89.4582 -87.2803 -88.8081 -87.8233 -86.4966 -96.1485 -90.9726 -94.1488 -97.3206 -92.2583 -94.76 -98.177 -77.4165 -78.01 -88.6668 -85.0809 -89.4017 -82.8783 -80.5079 -100.234 -94.2561 -92.8501 -88.7143 -97.1765 -98.0259 -92.3518 -112.581 -112.476 -110.653 -116.673 -115.831 -109.573 -113.187 -127.083 -125.877 -115.967 -122.275 -121.106 -122.52 -125.901 -81.547 -66.5156 -78.4218 -71.1067 -91.6614 -82.6047 -75.6883 -69.8309 -91.3112 -85.5797 -67.5019 -95.3456 -70.9219 -56.6412 -49.6405 -59.4743 -62.597 -58.073 -73.835 -1.73571 -9.80319 -9.72731 -2.29455 -14.8432 -5.48457 -21.5449 -11.5542 -5.07096 -2.32295 -18.0804 -13.8105 -36.9591 -26.2235 -23.4282 -36.3818 -27.2661 -49.5036 -51.4046 -69.1003 -42.4939 -54.4525 -66.9876 -40.6153 -38.7109 -36.0674 -23.6999 -34.6851 -33.5209 -44.1871 -31.9275 -51.0391 -34.4285 -38.7726 -20.5429 -50.335 -52.1417 -42.2479 -98.3516 -1.59708 -16.4641 -35.2293 -74.4212 75.3391 -47.2378 -75.2368 -85.8072 -62.9532 -79.8669 -76.4413 -76.9502 -74.9377 -70.0246 -75.3985 -55.671 -75.7925 -52.1793 -97.3451 -104.285 -109.896 -96.9395 -111.673 -86.529 -94.5554 -87.495 -91.5209 -79.8599 -93.4422 -97.4805 -89.4352 -92.1557 -100.371 -84.3255 -81.9534 -78.9869 -80.976 -77.848 -22.194 -24.1319 -34.4156 -44.5871 -21.2887 -24.2214 -37.1626 -4.56782 -16.9673 13.8567 10.2036 10.8446 -9.70467 -3.56307 -57.9639 -56.3325 -48.8662 -56.4742 -52.043 -59.5537 -54.9016 -65.2377 -65.9292 -79.4828 -79.7085 -65.4262 -66.4213 -79.7155 -119.56 -119.585 -120.266 -116.09 -122.785 -124.36 -121.707 -112.757 -107.179 -107.493 -113.615 -109.532 -127.373 -87.7228 -67.0068 -77.4136 -66.8775 -102.096 -78.8593 -59.1531 -73.5762 -73.8909 -68.1173 -68.1707 -82.1412 -91.9917 -101.427 -83.0572 -79.4541 -73.4113 -103.262 -89.4396 -96.1951 -82.3005 -74.6112 -93.6739 -80.4503 -99.2202 -100.841 -85.3624 -100.936 -97.0115 -109.071 -88.1644 -110.228 -108.119 -109.492 -108.367 -111.938 -96.6152 -101.609 -100.696 -98.4075 -101.445 -108.71 -106.854 -107.794 -108.326 -109.118 -110.343 -106.448 -101.016 -100.588 -102.599 -110.721 -112.352 -109.507 -117.908 -114.856 -115.466 -110.4 -113.136 -115.456 -112.435 -100.644 -106.373 -110.236 -110.175 -103.366 -100.759 -112.037 -94.919 -94.2406 -88.5345 -99.0342 -97.4994 -90.2123 -95.4146 -123.497 -119.614 -115.52 -120.389 -120.267 -119.288 -121.093 -124.775 -126.779 -131.769 -128.235 -124.373 -123.377 -129.417 6.79596 3.96131 7.10465 6.97127 7.34895 6.37508 5.24103 7.03964 3.15831 6.79561 6.5149 6.3994 7.4571 5.06662 7.8391 8.30438 7.93222 7.98866 8.0858 7.70025 8.09517 8.13542 8.58272 8.36731 8.19312 8.05653 8.30119 8.42878 8.39821 8.15575 8.10578 8.51858 8.48281 8.12258 8.34908 8.46269 8.46464 8.40048 8.29773 8.41082 8.59273 8.27069 8.55826 8.68008 8.39132 8.59172 8.39175 8.67283 8.58972 7.44122 7.72285 7.51106 7.42196 7.48674 7.64351 7.30005 7.1591 6.56598 7.41948 6.93233 6.68833 7.20517 6.94261 3.79772 2.9072 2.65836 3.55383 3.6963 2.81698 3.73509 5.00599 5.72009 6.997 5.02303 6.08472 4.93253 5.32532 0.211047 -0.36695 -0.379435 0.113942 0.266541 -0.365683 0.742566 1.54813 1.27302 0.649352 0.75645 1.46666 0.597814 0.0947073 -0.576539 -0.467117 -0.164846 -0.00654702 -0.442742 -0.0722134 -1.23399 -0.891816 -0.896662 -1.22691 -0.932684 -1.21436 -1.53738 -1.4242 -1.67791 -1.68789 -1.72814 -1.55147 -1.52251 -1.32918 -1.16205 -0.949668 -1.25401 -1.00251 -1.45157 -1.29523 -0.8695 -1.23307 -1.18365 0.304673 -0.105819 -1.45595 -1.41183 -1.3084 -1.68621 -0.974471 -0.889061 -1.59353 -1.55738 -1.50963 -1.75029 -1.32172 -0.930427 -0.344483 -1.80027 -1.71373 -2.10834 -1.72119 -1.78501 -2.16836 -1.86734 -2.01541 -2.25502 -2.08173 -2.0881 -2.21002 -2.21888 -2.20206 -2.15355 -2.19779 -1.96913 -1.83521 -2.01933 -2.05382 -2.08217 -2.04566 -2.002 -1.91034 -1.89604 -1.83098 -1.92121 -2.00828 -1.83381 -1.86602 -1.55559 -1.52809 -1.83126 -1.77114 -1.65976 -1.82836 -0.759431 -0.412616 -0.836257 -0.361958 -0.723573 -0.732519 -0.384933 -1.06961 -1.20486 -1.14538 -0.950034 -1.25164 -0.948111 -1.01067 8.51419 9.17919 8.88521 9.10568 8.74235 8.57202 8.89105 9.1261 9.25653 8.97239 9.41151 9.13629 8.66975 9.22977 7.3734 7.70393 7.42532 7.35288 7.68167 6.7811 6.4348 6.07213 6.0981 6.59371 6.62807 6.57914 6.8858 6.99158 6.53121 6.90064 6.82359 2.97381 2.21084 3.28748 3.07549 2.08936 4.30035 3.84029 5.24664 5.46277 4.12943 6.04601 4.05299 4.85376 4.94054 5.9396 4.67967 6.85221 0.106208 0.997598 0.350133 0.318185 0.875175 -0.790615 -1.14038 -1.04399 -1.11458 -1.01178 -0.774104 -1.20664 -0.581998 -0.481203 -0.810019 -0.414569 -0.911978 -1.36821 -1.7159 -1.83624 -1.4302 -1.68922 -1.45187 -1.39274 -1.75969 -1.37122 -1.41604 -1.38179 -1.21257 -1.93866 -0.860781 -1.60499 -0.853189 -1.21231 -0.708258 -1.1974 -1.30628 -0.176656 -0.867454 -0.727072 -1.53614 0.330094 -1.14966 -0.965644 -2.01208 -1.92343 -2.62098 -2.51902 -2.18693 -1.83792 -1.03874 -1.76973 -1.48627 -1.89125 -1.63327 -0.948019 -1.72184 -1.52025 -1.74645 -1.83861 -1.61206 -1.80404 -1.071 -1.36806 -1.2373 -1.25494 -1.23498 -1.41319 -1.18843 -1.33842 -1.7328 -1.34221 -1.54324 -1.30189 -0.624542 -0.321804 -0.835404 -0.653291 -0.391594 -0.857891 -0.820133 -1.02424 -1.046 -0.865364 -0.995682 -0.827947 -0.859285 -0.919206 -1.05141 -0.86459 -1.04624 -11.4386 -11.3195 -11.2709 -14.8656 -12.2065 -10.8247 -13.4045 -10.1678 -10.4403 -10.3587 -9.55037 -10.7484 -9.87043 -9.91351 -8.44641 -7.98315 -8.97433 -7.49925 -9.34346 -7.84171 -8.00017 -6.51734 -7.51428 -8.39075 -7.29702 -15.3877 -15.5381 -16.1145 -15.9362 -15.9785 -15.6577 -15.2695 -14.8563 -14.426 -14.2647 -15.3961 -13.9128 -15.3971 -14.8721 -14.582 -14.3381 -13.9421 -14.474 -14.0711 -15.454 -15.5033 -16.0347 -15.8649 -15.3275 -15.5863 -15.8179 -14.9389 -14.6633 -14.3666 -15.5036 -14.8797 -14.4104 -15.3645 -12.5701 -12.5393 -13.1335 -13.2333 -12.4425 -11.6546 -10.2789 -10.2223 -11.8871 -11.6082 -10.2346 -11.667 -12.683 -13.6912 -13.5035 -12.978 -13.3994 -12.7609 -12.6835 -6.72528 -7.33623 -6.77257 -7.14711 -7.75397 -6.69697 -6.76721 -7.41025 -9.05565 -8.48368 -7.97321 -8.14393 -8.60824 -7.29012 -6.54763 -6.44708 -6.8778 -7.19511 -7.3857 -6.53871 -6.58255 -6.01551 -6.19174 -6.58615 -6.6449 -6.1421 -6.44865 -6.1596 -5.29183 -4.87982 -4.68095 -5.44308 -5.22378 -4.69023 -5.52461 -5.84631 -6.07596 -6.41765 -5.883 -6.16649 -5.70243 -5.98878 -5.88552 -5.91523 -5.43378 -5.96187 -5.0226 -5.74868 -6.05744 -6.67512 -6.99436 -3.837 -7.22159 -4.93533 -5.41789 -6.42452 -8.04411 -7.24181 -7.5513 -6.59353 -5.39402 -5.6748 -4.95911 -4.77001 -4.92796 -4.77159 -5.44748 -5.09029 -4.68637 -4.09466 -4.13876 -4.37863 -4.44746 -4.30266 -4.44104 -5.01707 -4.83775 -4.76345 -4.83699 -4.79152 -5.20093 -4.74561 -3.04068 -3.1618 -2.53104 -2.98351 -2.53043 -3.70938 -4.52168 -4.11127 -3.66355 -3.84141 -4.39886 -3.52061 -3.09359 -2.43982 -2.64746 -3.0731 -3.20227 -2.56612 -2.94779 -1.18616 -1.23828 -1.81685 -1.78102 -1.22249 -0.642713 -0.219799 -0.73222 -0.150093 -0.622035 -0.752898 -0.0677551 -1.2831 -1.79895 -1.95438 -1.30606 -1.83583 -1.22362 -1.36388 -3.36339 -3.49922 -3.58782 -3.19197 -3.71131 -3.26418 -3.1933 -2.90172 -2.30979 -2.69479 -2.35813 -2.72407 -2.4595 -2.79101 -0.765311 -0.350577 -0.732775 -0.100462 -0.716838 -0.789526 -0.269396 -1.34689 -1.63354 -1.22851 -1.7008 -1.25799 -1.76254 -1.29542 -124.226 -122.491 -121.302 -121.908 -123.95 -122.61 -123.7 -127.29 -131.528 -126.572 -132.181 -126.894 -131.477 -127.749 -146.997 -138.888 -138.62 -139.892 -144.132 -140.071 -141.826 -193.462 -191.971 -196.829 -199.064 -201.241 -189.723 -190.721 -129.29 -137.14 -139.268 -132.38 439.122 439.338 439.121 438.93 438.723 439.229 439.173 436.877 437.491 437.172 436.998 437.541 437.135 436.891 -182.331 -188.697 -190.999 -193.737 -190.098 433.681 434.708 432.604 431.244 433.904 434.746 431.019 435.019 435.721 436.406 436.791 436.238 435.642 435.532 -49.7889 -47.3621 -66.6582 -55.8455 -50.0655 -61.1186 -47.7959 -6.60862 -7.47747 -5.646 -4.55238 -7.76615 -6.44694 -4.94483 434.934 435.474 434.987 434.944 434.732 435.177 435.186 434.461 433.982 434.529 433.689 434.346 434.399 433.981 346.371 366.169 332.091 307.771 289.563 367.065 353.897 -2.20384 -2.11022 -3.1805 -2.17028 -2.37283 -2.63391 -1.65793 -2.19024 -3.24912 -3.11956 -3.64672 -2.12073 -2.32735 -2.69737 64.9985 -167.371 -82.1221 -68.3863 -82.2089 33.5935 16.6525 326.542 345.308 295.737 333.43 328.165 324.939 331.605 -78.2858 -2.26227 -67.7885 -36.026 -40.4487 -67.7097 -18.0593 345.649 372.912 314.717 340.776 365.78 367.158 287.861 315.126 314.825 322.103 313.864 314.612 312.05 320.375 432.413 433.913 433.322 432.531 432.459 433.159 432.62 431.683 430.221 432.698 431.99 431.873 432.487 430.864 406.972 426.448 417.599 428.973 357.588 426.287 428.055 217.248 333.205 341.629 345.461 271.646 302.828 291.711 331.73 208.025 309.601 333.851 347.05 263.277 279.62 -137.669 -141.109 -135.263 -132.029 -138.089 -138.8 -134.602 431.135 431.445 430.908 429.333 431.625 430.942 430.423 431.781 432.158 433.212 431.877 432.15 432.75 431.596 -6.42967 -6.51225 -7.79518 -1.66673 -10.0688 -3.8325 -4.62284 -34.0782 -33.0227 -33.5827 -24.4272 -37.8835 -30.3342 -27.7786 -17.2624 -19.7829 -25.5143 -14.0956 -23.2581 -18.5976 -15.9343 -91.4746 -86.7549 -90.694 -88.4337 -75.1964 -80.9519 -73.1193 -72.6363 -77.8671 -76.9139 -70.6854 433.834 433.69 434.397 434.358 433.834 433.844 434.552 -84.6525 -83.9732 -81.3245 -76.6746 -85.4348 -81.1301 -79.8284 -91.0759 -85.6182 -90.6055 -87.6257 -89.6368 -85.0178 -91.0593 -77.3685 -78.2365 -83.4313 -79.7577 -79.5822 -81.0821 -75.8167 -117.736 -129.26 -119.543 -119.043 -116.864 -123.983 -120.469 -112.788 -108.162 -109.025 -113.768 -107.045 -113.013 -113.908 -102.57 -96.9304 -106.794 -108.316 -98.8086 -109.034 -100.371 6.66858 10.2932 7.79932 9.29386 9.35763 10.9856 11.7935 11.8357 12.6767 11.2594 12.005 11.7878 12.1939 13.3539 10.5526 12.7344 11.4779 11.3715 13.6545 12.6712 12.0253 13.0982 13.1613 12.0676 12.3678 13.7504 2.34203 4.48228 2.87693 1.73476 3.66101 2.47578 1.69824 1.55173 0.715968 0.0971864 0.412734 1.92158 1.17951 3.14297 5.381 5.404 4.65679 3.64562 3.23004 0.872947 0.019097 -0.482928 -0.836296 -0.137878 0.559011 0.258231 -2.37577 -2.75267 -3.48812 -2.68259 -2.85757 -2.67748 -2.80889 -2.30685 -1.71293 -2.09665 -1.69941 -1.9998 -2.04804 -2.12758 -2.33085 -2.42531 -2.11409 -2.24821 -2.41343 -2.12709 -2.4108 -5.63913 -4.50595 -4.81202 -5.01056 -5.3572 -3.82131 -3.57322 -4.33549 -3.68225 -4.47422 -2.57568 -2.83184 -1.49728 -2.73231 -1.2242 -1.58601 -1.56797 -1.31997 -1.52581 -1.67298 -1.45683 -1.24355 -1.315 -0.708586 -1.13637 -1.14326 -1.06468 -1.28829 -1.0604 -1.44227 -1.88138 -1.34143 -1.43483 -1.39248 -1.38794 -1.56902 2.91021 1.35083 0.925438 1.40523 1.58179 1.57981 0.434919 -0.366516 -0.0393531 0.949634 2.91218 1.51089 2.86921 2.27861 1.71894 2.0091 3.53778 0.016342 -0.0377605 0.229509 -0.101792 0.51594 -0.190726 -0.339439 -0.703333 -0.256747 -0.451384 -0.527944 -0.182068 -0.383293 -0.780725 -0.801735 -0.545415 -0.718051 0.336994 0.582079 0.10098 0.949883 0.0281378 0.896716 0.282115 -0.793312 -0.851759 -0.898934 -0.690464 -0.896045 -0.81041 -0.7459 -0.523155 -0.332201 -0.324934 -0.566311 -0.574951 -0.25071 -0.680671 -0.5732 -1.17273 -0.668264 -0.704755 -0.860535 -0.560367 -0.512677 -0.314822 -0.270995 -0.526325 -0.55425 -0.261478 -0.999821 -0.20826 -0.842394 -0.812499 -0.753506 -0.969987 -1.59493 -0.961489 -1.12905 -0.792882 -0.736927 -0.985314 -0.839443 -0.974627 -0.655196 -1.00047 -0.942606 -0.893184 -1.17656 -0.542177 -0.394013 -0.499736 -0.344735 -0.570882 -0.553801 -0.377314 -0.715863 -0.804252 -0.59083 -0.87827 -0.754476 -0.752232 -0.759402 -3.48019 -3.37426 -4.78138 -6.22562 -5.86756 -2.14757 -4.49661 -6.07341 -6.48538 -5.81966 -6.09708 -5.55965 -6.27676 -6.48516 -5.24791 -3.62562 -4.37836 -3.75316 -4.43413 -4.75283 -19.9955 -17.8779 -19.1377 -21.7922 -19.6971 -17.342 -22.5865 -22.0379 -21.1519 -19.9722 -22.9965 -20.4817 -22.6887 -22.5421 -8.46734 -7.33277 -7.0514 -8.35835 -8.223 -7.36891 -8.66771 -9.57076 -11.1759 -9.47035 -9.67143 -9.03777 -10.0708 -10.1778 -14.6623 -14.5619 -15.4443 -14.2884 -15.1078 -14.9459 -13.9963 -13.3962 -12.5969 -11.6298 -13.2938 -11.8273 -13.9712 -12.9398 -8.16092 -5.81201 -5.46748 -11.7417 -4.69549 -16.4428 -9.99238 -12.7152 -16.6574 -16.1855 -14.7828 -18.6564 -14.1053 -13.4943 -18.1605 -21.1465 -20.8694 -22.6687 -21.1793 -18.9429 -21.1021 -16.9393 -18.0519 -23.9859 -17.742 -20.9956 -15.2868 -20.5873 -22.174 -19.9368 -19.0502 -21.3524 -22.2929 -19.842 -20.9592 -15.888 -14.6372 -16.7745 -18.8454 -14.8604 -18.0287 -16.3845 -15.5203 -14.8625 -15.7339 -15.298 -14.9481 -15.249 -15.9705 -15.3603 -14.9583 -15.1106 -15.1094 -14.8492 -15.4435 -15.8683 -19.5427 -21.4354 -22.2018 -22.7047 -18.9979 -22.0434 -21.4607 -18.771 -21.437 -21.1195 -20.2603 -20.504 -18.78 -20.3723 -14.7008 -12.4487 -18.7419 -17.8847 -18.7625 -13.0174 -15.959 -16.5245 -21.2037 -20.8732 -19.3408 -20.961 -17.9988 -18.1084 -3.38636 -3.62059 -3.65195 -3.65438 -3.8302 -3.54494 -3.61345 -3.56914 -3.68401 -3.67356 -5.1754 -4.33946 -4.30197 -5.06141 -4.69277 -4.80895 -5.37462 -5.39416 -5.30417 -5.45408 -8.51607 -4.31962 -7.40691 -6.49453 -4.58565 -4.36534 -4.38275 -5.05244 -4.34164 -4.74555 -4.80014 -4.1939 -4.04981 -3.78215 -3.99213 -4.01568 -4.38009 -3.91869 -1.68781 -1.42459 -0.994371 -1.27454 -1.06783 -0.565178 -0.329935 -0.207083 -0.871756 -0.612982 -2.47597 -2.06188 -2.51553 -2.14726 -2.40596 -2.10423 -2.57613 -2.99782 -2.98277 -3.26558 -3.44888 -2.93258 -3.4021 -3.05257 -0.985712 -1.39633 -1.55687 -1.13959 -1.00542 -1.46756 -1.13139 -0.538669 -0.676497 -0.201509 -0.267578 -0.524477 -0.653176 -0.144843 -24.8555 -24.2616 -26.0891 -25.4878 -24.8589 -25.6675 -28.4768 -27.1639 -28.1592 -25.5331 -20.7626 -21.4369 -23.0279 -26.181 -19.6765 -22.637 -24.1504 -16.9807 -22.4261 -11.8125 -12.2216 -16.4142 -11.5272 -26.9195 -25.2441 -23.0289 -26.1874 -27.5735 -24.1198 -24.2783 -27.3649 -26.6575 -28.3204 -30.4963 -27.6426 -29.1927 -27.4277 -27.2127 -25.8459 -27.8902 -25.9708 -30.3868 -24.5679 -29.2017 -26.8942 -22.788 -21.4643 -21.6756 -22.4586 -21.8209 -20.3839 -22.6954 -19.826 -22.4322 -21.9593 -19.8929 -22.7383 -18.6632 -20.8783 -19.1105 -20.779 -18.6924 -17.1682 -18.9058 -17.6313 -21.3555 -18.9677 -14.9002 -15.7942 -12.6827 -15.0776 -14.6925 -15.772 -12.7952 -24.5293 -23.7817 -24.3387 -21.1195 -23.8299 -26.5997 -22.6651 -25.068 -24.8301 -19.4796 -20.2763 -21.93 -23.2984 -18.6298 -19.6994 -17.8583 -22.5817 -18.7494 -20.1271 -25.1096 -23.1304 -27.0669 -26.7829 -23.8634 -23.8099 -28.156 -26.149 -28.1564 -28.9085 -28.0695 -27.7711 -26.3771 -27.9718 -25.4381 -26.2898 -24.5464 -28.1029 -24.5604 -25.6755 -27.1133 -19.009 -20.3928 -19.6506 -23.6424 -18.0302 -21.2716 -21.1356 -17.493 -18.2416 -10.9283 -13.6133 -15.8096 -19.3668 -13.1671 -22.9763 -22.5414 -22.3891 -23.5442 -21.8292 -20.8711 -24.1642 -21.1305 -20.8918 -22.885 -22.6057 -21.9908 -21.6507 -21.3518 -22.5119 -22.8021 -23.0999 -21.3231 -20.3327 -22.5751 -23.0978 -24.5633 -25.5557 -22.2081 -27.4737 -23.2588 -23.4344 -28.798 -28.2574 -26.1229 -28.1691 -26.5564 -26.0649 -24.934 -22.2233 -23.922 -24.6039 -25.7286 -23.985 -25.4205 -24.338 -25.0166 -27.2708 -22.8784 -24.0278 -25.0861 -20.2207 -22.9492 -25.021 -25.3184 -21.1283 -26.534 -25.4497 -24.5515 -30.7519 -23.3367 -29.6266 -28.0219 -27.8927 -27.1511 -26.8749 -25.7375 -31.6991 -35.3665 -30.0172 -33.2542 -34.0521 -32.1765 -33.7859 -34.9071 -32.7178 -36.4049 -32.5571 -31.1378 -30.8927 -30.9974 -34.8804 -38.3341 -34.3935 -36.4272 -41.0161 -33.6348 -38.423 -40.3287 -37.7644 -35.7529 -34.3666 -35.8689 -37.7347 -35.7715 -32.7773 -40.6391 -36.6383 -41.1214 -43.0474 -39.0207 -39.721 -43.3936 -41.4849 -35.6389 -36.7204 -41.456 -35.9277 -39.4874 -41.9291 -34.8888 -33.5671 -34.9935 -38.5815 -37.8739 -36.5968 -35.3156 -38.8126 -35.4917 -37.5776 -39.9811 -32.8043 -32.1904 -31.1019 -37.3047 -30.5309 -34.6817 -35.0157 -45.2853 -38.6202 -40.5528 -43.7811 -41.5171 -43.7714 -43.947 -53.2873 -56.5558 -54.0467 -56.4019 -44.566 -38.5074 -41.6488 -41.3901 -43.3203 -41.5928 -42.4199 -33.7183 -37.1007 -38.1239 -49.9217 -46.3478 -30.4195 -41.4389 -51.6141 -54.0792 -45.7287 -57.9632 -49.9183 -48.6768 -57.1186 -64.3448 -76.1062 -75.8623 -72.7672 -71.1327 -68.0232 -71.6468 -60.8436 -61.3659 -61.1813 -64.8517 -57.5557 -65.8763 -62.7257 -65.1164 -69.9295 -61.2711 -72.2831 -74.4563 -61.34 -64.6053 -71.9189 -74.6965 -79.2125 -85.1711 -79.1142 -69.0995 -80.3349 -72.8456 -79.1827 -81.4437 -87.6583 -81.6318 -72.9505 -82.052 -56.5347 -57.0103 -55.953 -66.2299 -54.1577 -58.8489 -61.7214 439.884 436.707 435.293 438.083 437.805 439.339 437.879 440.026 439.288 440.047 438.892 439.722 440.099 438.875 -205.485 -215.506 -208.279 -218.088 -202.096 -207.129 -213.845 -192.461 -175.411 -190.814 -170.894 -185.901 -188.815 -175.767 437.966 437.539 437.523 436.736 437.282 438.429 437.168 -210.111 -203.759 -218.297 -208.609 -212.803 -213.162 -204.34 437.379 435.984 436.656 436.143 436.898 436.662 436.639 -173.35 -167.668 -176.923 -156.596 -178.619 -170.596 -161.082 -183.953 -191.209 -187.656 -195.566 -186.36 -181.45 -191.885 -213.084 -219.341 -221.342 -219.772 -220.649 -219.207 -214.978 -79.6357 -70.3509 -74.3271 -61.7853 -82.629 -68.0809 -70.642 -39.7139 -51.0752 -35.6942 -46.6323 -38.3877 -48.5616 -40.3619 -71.2365 -63.288 -72.5665 -55.7426 -76.3758 -59.2711 -67.5884 347.364 344.656 331.146 374.468 351.195 274.183 378.064 -2.3948 -0.242476 -0.851108 -0.676255 -1.56092 -0.958385 -1.69174 -4.8188 -8.65633 -7.98135 0.327729 -0.937051 -12.9338 -1.35493 3.91466 2.06409 3.05192 1.68131 2.8406 3.12782 2.32727 294.013 352.951 350.416 328.236 318.86 326.438 306.165 268.782 278.059 274.284 256.944 284.629 275.778 268.805 0.215851 -0.705727 -0.925969 0.0521344 -0.18893 -0.137805 0.847984 318.797 322.372 319.799 321.785 325.462 318.204 345.491 -95.6539 130.458 -54.652 -59.4839 20.1742 -155.501 23.1731 -104.201 -77.3357 -80.9432 8.97557 -46.3458 -70.4849 -3.1834 -62.0781 57.4699 -38.892 165.937 55.0023 -122.337 16.8895 267.518 293.661 275.052 270.486 254.678 296.506 276.298 209.695 330.9 334.501 326.33 259.136 292.364 293.081 194.741 284.893 265.494 258.225 275.021 238.031 279.255 -54.4129 -50.0276 -56.7494 -53.6834 -50.8904 -54.3047 -56.9248 431.961 432.028 429.739 431.614 430.591 431.764 432.622 -67.6342 -64.3482 -61.412 -58.8521 -66.4456 -60.8858 -63.9932 433.109 433.503 434.718 433.701 434.172 433.848 432.642 -121.334 -124.826 -120.286 -129.733 -119.909 -125.2 -125.861 -114.236 -110.385 -113.418 -107.755 -113.565 -116.63 -108.351 396.813 404.456 452.467 395.937 298.433 284.743 423.247 -91.9337 -81.9508 -97.142 -84.8353 -82.4377 -91.2645 -93.267 -130.089 -125.452 -133.037 -129.092 -128.813 -125.471 -132.236 -22.264 -24.8881 -20.8664 -22.5304 -20.6171 -24.7951 -22.6875 -13.3606 -4.4179 -9.3192 -6.9365 -13.1587 -10.3191 -6.02214 -83.6263 -82.7929 -84.5134 -79.1656 -82.6783 -87.3496 -79.8254 7.71134 -7.61057 -6.63989 -8.70347 -4.09364 0.185817 3.17961 -23.1152 -26.6201 -17.0656 -17.8108 -16.8348 -23.4591 -27.7725 -62.5826 -69.4629 -58.3117 -69.6903 -65.3125 -55.1776 -67.931 -69.3212 -79.7005 -62.109 -74.6517 -70.4615 -65.8391 -81.0054 1.88536 -8.67182 -1.31616 -12.6935 -3.85631 2.93308 -4.23888 -19.3642 -23.8031 -11.3765 -15.1828 -18.1077 -11.7983 -23.5131 -26.7607 -28.9049 -26.8274 -30.1661 0.174816 20.1053 19.7211 8.84595 21.6966 11.9381 6.75854 -6.07711 -0.964688 1.68525 -4.63436 2.42565 -4.86361 -1.84486 -14.2444 -11.2646 -8.94357 -7.64978 -12.3202 -11.8128 -9.79318 -20.4701 -21.2456 -15.5394 -16.4941 -13.3556 -20.5572 -21.5996 -21.9668 -15.7702 -17.9786 -20.0489 -16.0502 -18.1479 -22.2217 -13.1178 -6.09002 -12.2349 -10.7553 -9.92188 -8.65485 -15.8287 -44.1484 -59.7962 -48.3996 -53.4449 -57.9967 -46.3441 -47.2108 -34.3735 -33.5747 -35.1151 -31.3708 -51.3738 -66.3928 -51.2923 -56.9282 -53.3729 -47.5016 -57.812 -29.7845 -27.4456 -27.0844 -32.9778 -25.6048 -29.7284 -31.8938 -21.3094 -23.4907 -18.199 -19.6374 -23.4559 -20.2013 -20.1542 -23.529 -24.2593 -20.9723 -24.4214 -26.1465 -22.8391 -25.0378 -26.8915 -24.1877 -22.3671 -27.9916 -22.4961 -29.282 -26.588 -34.0339 -28.6882 -27.3562 -32.41 -27.2646 -33.2286 -31.8503 -24.7582 -18.745 -18.366 -20.4691 -21.4157 -20.3336 -22.0881 -30.9553 -24.1552 -24.2516 -29.6719 -23.9817 -29.3922 -28.4874 -7.47853 -5.16298 -5.5993 -9.15003 -4.95848 -7.54926 -8.555 -9.71756 -14.2352 -10.9805 -12.6476 -11.3666 -9.53968 -11.8482 2.38562 -0.640505 -3.97802 -3.12836 2.39281 -1.56641 -0.465641 6.73066 -0.352638 12.5862 9.81639 11.3129 7.95102 3.72413 -8.62941 -3.78604 -9.1818 -6.93874 -6.57996 -5.32118 -10.5105 -11.8591 -11.189 -11.1562 -13.0362 -10.9044 -14.3074 -10.1922 -13.1317 -8.60766 -16.1781 -11.2448 -1.56328 -4.68411 -4.2392 2.91957 0.884042 -4.64823 1.03739 -16.6473 -17.0544 -17.7504 -18.406 -20.3628 -9.81771 -11.0663 -10.9753 -11.7676 -9.02258 -8.53215 -9.50974 -9.69211 0.652472 13.8548 14.0512 9.71706 12.8452 1.64681 9.24872 -0.566976 -4.32245 2.88936 -0.804136 -1.49309 -3.70321 3.30305 -9.8189 -10.2806 -16.7991 -8.61748 -10.7559 -15.1005 -7.74939 -7.83917 -9.19079 -6.8605 -4.42906 -8.85609 -6.72359 -6.31874 -14.3062 -14.4911 -17.6556 -18.219 -15.0334 -13.9381 -17.0924 -12.7014 -13.7662 -14.2144 -18.2954 -12.7559 -14.3498 -13.0407 -14.0584 -12.1226 -14.1576 -11.9671 -13.7205 -15.226 -10.932 -15.2864 -12.3991 -11.9648 -15.8094 -12.8327 -13.3667 -17.7656 -16.1245 -12.5129 -13.6173 -16.2992 -9.89305 -13.2858 -7.88038 -8.68342 -7.63533 -9.22678 -11.2553 -18.1773 -19.0658 -17.7127 -18.8134 -17.974 -16.377 -18.28 -16.8478 -26.1748 -24.9295 -17.9229 -19.9452 -19.5511 -23.0792 -22.2516 -23.0389 -16.6031 -18.5936 -18.732 -15.3518 -12.4153 -16.2504 -14.9085 -15.387 -15.8871 -13.3587 -16.6594 -21.8527 -15.8712 -15.1721 -17.8633 -20.1774 -13.8292 -15.2535 -10.6404 -15.0167 -14.2165 -13.5742 -16.8972 -12.3038 -16.6619 -18.3259 -15.5502 -14.347 -16.8867 -18.1772 -13.83 10.3319 7.92087 11.2791 10.8682 11.6731 10.0716 8.46806 12.4667 13.7748 12.6955 13.4231 12.9551 12.4543 13.7086 11.2907 10.0329 11.1805 11.055 11.6287 10.6093 10.7674 12.6176 11.0797 13.3863 13.2116 14.0196 11.8218 11.7635 11.8691 10.8055 11.3545 11.1719 11.8669 11.4277 11.1384 -6.26151 -4.58335 -2.41864 -3.2378 -5.51287 -4.431 -6.83262 -10.6229 -6.74003 -7.71014 -9.02948 -8.99472 -5.68962 -12.2633 -6.6532 -4.08869 -1.45152 -6.04035 -4.03058 -3.90118 -7.96403 1.5677 -4.26497 -3.11753 -0.360998 -3.64905 -0.771611 2.0023 0.975592 -4.89338 -4.73894 -4.65633 -0.807839 -1.93598 -3.4267 7.86714 0.741938 13.0695 11.8237 0.158193 12.4737 7.53004 -5.53156 -8.42993 -6.48055 -3.34059 -7.57514 -3.71242 -4.97863 -7.87635 -13.6873 -15.7513 -8.35337 -8.86764 -11.3391 -7.11441 -10.6426 -7.61104 -7.7352 -7.90936 -6.85495 -6.89156 -7.87249 -13.5169 -8.21908 -8.94439 -6.25088 -9.17355 6.29864 9.3912 13.391 7.89725 10.3651 7.03887 6.18015 4.23644 5.32787 3.06233 3.46978 2.52023 4.83016 4.89973 2.50399 1.66233 5.06278 1.65905 2.82973 0.312459 3.36134 -7.41897 -2.9 -4.8078 -3.31667 -4.87261 -4.27734 -5.8944 -10.3532 -9.47921 -6.93682 -7.34181 -9.88846 -6.37334 -9.97916 -11.6547 -16.2255 -12.7748 -11.1838 -13.4416 -12.7103 -10.4662 -12.0741 -13.7843 -14.1055 -12.5496 -12.9136 -12.0325 -11.1356 -11.8466 -12.9919 -9.43672 -12.3212 -10.3906 -10.1423 -10.1726 -13.0952 -10.9365 -9.83635 -11.3018 -11.0373 -9.28542 -10.7899 -15.4405 -16.0579 -15.1169 -12.0214 -12.2688 -12.7702 -9.31005 -10.4162 -10.3727 -6.40833 -11.2319 -8.12398 -6.89474 7.40356 2.8802 3.60549 3.15765 6.59887 3.76983 3.61778 0.37624 -0.125638 0.532096 0.204687 -0.0600425 -0.482788 1.64077 3.24834 -0.105388 1.81382 -0.423687 0.678526 -0.823063 -1.89738 -3.02464 1.86135 -2.91501 0.180826 0.39813 0.313081 1.10099 1.20014 0.724198 1.35306 0.266378 0.744971 -1.00601 -0.866792 -0.874137 -0.514741 -0.786431 -1.0175 -0.707096 -0.851206 0.0624912 -0.538365 0.039754 -0.812298 -0.433811 -0.512772 -0.641735 -0.378286 -0.683397 -0.38013 -0.643733 -0.551631 -0.669407 -0.715967 -0.580951 -0.672312 -0.51006 -0.521032 -0.377677 -0.510138 -0.371605 -0.60298 -0.586962 -0.615497 -0.560974 -0.594376 -1.13927 -0.934049 -0.907037 -1.08853 -1.04144 -1.10411 -1.05261 -1.15062 -0.986416 -1.02168 -0.975637 -1.0654 -1.04816 -1.03391 -0.525805 -0.380814 -0.568621 -0.326575 -0.535363 -0.529171 -0.2711 -0.734562 -0.77014 -0.732475 -0.783147 -0.70232 -0.865494 -0.699543 -7.20562 -6.81419 -6.74639 -7.16333 -7.12861 -6.94141 -6.98521 -6.98828 -6.88521 -7.09449 -6.62449 -7.18692 -6.76619 -6.87014 -8.183 -7.72408 -7.2149 -8.22349 -8.02565 -7.95804 -8.23361 -9.89109 -9.33507 -8.47951 -9.00159 -9.51629 -9.16109 -9.68058 -11.8516 -11.5254 -11.5661 -11.5919 -11.7472 -11.6677 -11.688 -11.0109 -10.8405 -11.2837 -11.3659 -10.8472 -11.4471 -10.9411 -7.74866 -6.97261 -7.09978 -7.52765 -7.85692 -6.91409 -7.43638 -6.5101 -6.4247 -6.7507 -7.02946 -6.39389 -6.92893 -6.59622 -3.55776 -3.45568 -2.81886 -2.92503 -3.61189 -3.43663 -2.87986 -1.47954 -1.41045 -2.02631 -2.13408 -1.38631 -2.09272 -1.51307 -26.3366 -31.0938 -32.1329 -29.8414 -27.8191 -30.107 -28.5587 -24.228 -22.2254 -20.9472 -29.2783 -20.834 -27.1194 -26.016 -37.4696 -36.3863 -34.0881 -33.0592 -38.1069 -34.1942 -25.6483 -33.6028 -30.2571 -27.1474 -22.2317 -18.5269 -23.9002 -18.2389 -17.9041 -23.2709 -24.0619 -25.9511 -30.7788 -31.4468 -30.7991 -28.2705 -30.034 -28.1181 -38.8086 -35.1021 -34.878 -35.8962 -37.6872 -43.2193 -37.1651 -42.4748 -39.1565 -40.4807 -35.3004 -35.3771 -35.0771 -39.7355 -31.4651 -39.9052 -64.9454 -51.429 -73.6816 -48.4006 -61.2745 -59.4129 -54.0144 -47.3196 -56.3776 -58.7239 -52.2114 -54.0171 -53.3167 -39.9207 -34.3881 -41.9343 -41.3065 -45.6695 -47.974 -74.4037 -81.8899 -68.5566 -72.2957 -66.3261 -107.168 -98.1512 -95.9528 -132.999 -124.159 -82.0967 -137.831 -119.601 -102.952 -112.415 -128.91 -128.161 -105.863 -137.289 -115.832 -126.305 -139.906 -47.611 -34.5723 -29.711 -74.6055 -26.2803 -70.2974 -54.5198 -71.2295 -87.8283 -96.7239 -96.0524 -82.4962 -86.0793 -80.2012 -124.43 -144.222 -136.322 -145.027 -135.496 -130.241 -138.59 -115.022 -105.092 -136.324 -113.093 -123.249 -101.587 -127.622 -81.1174 -76.2682 -89.3901 -81.7596 -95.0732 -71.6933 -62.1181 -59.8047 -58.2861 -48.5824 -63.3654 -54.6341 -57.5328 -118.659 -108.657 -122.053 -165.313 -160.434 -141.351 -193.157 -182.522 -140.949 -167.306 -144.609 -145.421 -136.262 -181.026 -132.174 -145.243 -163.682 -140.486 -148.711 -138.279 -155.474 -134.21 -149.986 -151.864 -140.449 -144.044 -151.03 -147.671 -146.516 -138.285 -150.825 -126.601 -140.733 -125.666 -140.5 -121.676 -131.411 -134.237 -132.717 -143.306 -143.337 -141.918 -141.816 -132.197 -137.179 -91.28 71.412 -53.0518 81.1065 -67.9575 97.5489 -149.956 392.401 419.313 356.382 299.03 417.782 405.098 255.388 -161.465 -148.391 -148.965 -154.133 -156.694 -159.686 -156.361 -160.247 -158.929 -157.26 -154.887 -101.46 -47.0897 -71.227 -93.3295 -109.204 -68.7012 -91.8271 -107.091 -118.433 -93.3583 -113.786 -115.505 -88.7762 -114.183 -136.033 -144.331 -128.061 -142.593 -128.254 -212.855 -224.566 -215.709 -211.543 -213.942 -218.696 -213.604 -201.598 -199.403 -176.566 -186.403 -196.458 -188.475 -203.946 -200.091 -221.426 -191.281 -202.313 -212.867 -211.47 -190.227 -178.831 -169.303 -168.473 -160.906 -188.57 -169.525 -161.103 -156.091 -160.514 -165.791 -162.203 -154.577 -157.146 -158.615 -155.521 -159.444 -154.75 -134.47 -143.702 -135.626 -144.382 -137.826 -129.493 -149.351 -134.97 -143.085 -140.321 -150.944 -138.186 -135.638 -147.045 -87.6043 -77.919 -81.5891 -75.4777 -90.3531 -76.6211 -82.4101 435.639 435.715 435.011 434.663 435.6 435.916 434.96 3.21779 3.30252 2.42596 2.37489 3.3987 3.20101 2.49108 3.8356 2.51646 2.90926 5.29678 2.31697 5.06945 3.34221 107.813 -127.434 -16.3841 -99.5804 55.6429 10.9507 -39.9991 -32.9339 2.37502 -87.2906 -49.2832 -15.5117 -70.4332 5.03684 423.898 419.988 419.053 420.422 418.558 421.587 421.972 422.141 423.743 419.292 416.043 423.256 423.999 416.728 401.044 392.901 411.383 399.405 410.35 400.646 393.527 404.732 429.416 403.528 405.672 406.954 412.448 398.565 289.87 320.949 380.631 285.016 326.691 283.832 308.3 268.083 283.979 253.663 269.668 257.665 258.037 278.986 268.282 237.115 253.341 262.865 233.836 256.035 282.652 289.654 262.81 236.898 234.485 221.941 249.162 258.103 253.841 260.755 247.057 263.827 254.023 247.223 259.496 255.418 228.292 235.982 256.197 229.036 249.589 250.26 420.095 422.338 423.192 420.406 420.778 422.572 420.599 422.778 422.046 422.955 419.251 422.928 418.953 423.027 421.528 418.07 420.143 420.616 420.739 421.508 420.692 421.674 422.749 422.163 422.28 422.569 423.148 421.424 422.19 422.931 423.153 422.75 423.373 422.86 421.699 400.081 391.482 407.91 401.058 398.41 410.163 392.323 398.165 409.922 399.578 389.63 408.193 399.537 389.422 416.978 418.459 419.839 419.042 417.437 419.363 418.041 414.487 414.593 415.639 411.781 417.413 406.473 414.621 276.982 286.999 257.715 275.018 287.919 263.181 271.652 299.205 331.904 321.716 306.072 308.983 324.911 294.306 270.372 263.959 273.334 283.779 286.293 262.392 267.822 258.682 262.831 250.597 269.267 250.043 265.979 264.103 255.044 261.367 267.98 265.627 256.428 264.731 264.28 267.298 326.77 331.24 302.497 308 293.612 296.125 244.584 268.491 279.854 263.337 270.987 250.032 274.801 242.865 264.312 268.155 257.105 265.924 244.714 250.201 -1.73266 -1.84352 -2.73226 1.56038 1.34184 -5.17823 0.0986418 400.662 426.519 421.811 400.592 401.273 399.058 428.326 60.5899 80.196 182.811 260.801 84.8398 97.8397 190.134 -115.942 -110.356 -117.287 -111.741 -114.571 -111.131 -115.948 430.232 429.911 428.665 429.58 430.972 429.781 429.215 -113.423 -109.702 -121.616 -114.624 -119.421 -115.901 -106.552 -67.6699 -63.6054 -57.7551 -53.0704 -58.7343 -68.7891 -60.782 -82.5439 -77.8158 -68.6037 -78.3831 -79.5542 -71.2404 -85.1016 -67.5285 -45.8077 -49.7706 -59.1426 -53.4855 -60.5153 -64.1772 -18.7511 -19.4656 -14.4524 5.55513 -4.32432 -24.336 -10.2347 -73.549 -74.0657 -40.4401 -49.3417 -46.2285 -40.3253 -36.1237 -30.0868 -44.0277 -43.7377 -35.0873 -27.9942 -44.4696 -32.124 -31.0088 -31.8297 -40.1023 -20.9007 -21.529 -23.7791 -36.9576 -10.019 -5.39591 -23.6633 -43.0053 -37.3185 -45.8821 -43.6315 -53.1911 -39.366 -52.6464 -41.6986 -50.7539 -54.2925 -49.0141 -43.4654 -54.3251 -50.1244 -44.2157 -59.8342 -63.4486 -64.9448 -57.1522 -55.7899 -66.6374 -52.9009 -50.4455 -51.4894 -51.6334 -50.5323 -51.3749 -46.8389 -49.4907 -62.2994 -66.564 -63.1297 -63.0526 -48.291 -61.2075 -126.516 -126.354 -115.718 -118.897 -115.694 -127.569 -128.294 -134.937 -122.135 -118.205 -132.875 -117.945 -130.541 -143.899 -63.2541 -94.9363 -81.957 -64.4618 -71.9653 -69.0815 -78.0189 -80.176 -103.824 -104.801 -76.741 -92.6511 -87.7341 -109.763 -104.457 -93.8396 -87.5382 -117.247 -105.814 -91.9206 -99.0854 -115.274 -102.857 -114.224 -104.18 -111.071 -99.1214 -81.2119 -74.3883 -77.1398 -82.5412 -83.0352 -76.5496 -90.4741 -105.401 -104.358 -96.4258 -94.6114 -102.391 -87.4531 -89.5889 -82.5692 -82.315 -89.3523 -81.6808 -89.8859 -129.488 -122.887 -127.222 -130.346 -124.283 -125.815 -135.751 -119.428 -116.447 -114.188 -108.417 -110.807 -118.795 -115.319 -131.089 -129.045 -131.918 -140.005 -139.87 -128.741 -136.124 -28.5422 -51.1197 -30.5976 -32.7886 -44.2353 -35.1648 -22.7866 -22.5256 -15.3925 -26.4935 -22.6468 -20.1468 -26.3745 -18.5163 12.5843 16.7671 3.31773 20.9312 18.6874 9.6081 8.16927 6.9722 3.15992 -3.59276 -0.196182 6.07003 2.19177 -0.252054 6.65339 -4.88628 0.735529 -4.61196 4.23332 3.26873 -2.57948 -14.2363 -30.274 -30.2137 -16.5275 -16.9544 -22.6355 -9.79162 -10.5317 -11.3511 -6.77188 -11.7744 -6.96261 -9.51262 -11.998 -13.3433 -14.7829 -13.8688 -15.339 -10.082 -68.8668 -74.7317 -73.471 -57.3269 -65.5581 -80.9879 -58.5007 -67.1142 -60.1417 -72.3771 -73.4816 -64.4494 -76.2535 -60.8461 -27.3176 -27.3704 -34.2788 -25.2136 -23.5241 -30.4234 -29.5931 -28.0606 -27.659 -29.8445 -24.7298 -28.8498 -28.0939 -24.9833 -31.4789 -38.8243 -38.4473 -35.5662 -33.5647 -38.3497 -33.1723 10.0257 9.67648 10.751 9.95952 9.55303 10.3813 10.3251 7.68928 8.28961 8.43723 8.23814 7.77973 7.98878 8.00397 8.47936 8.5958 8.82943 8.52605 8.57781 8.33357 8.49282 6.38042 6.36019 5.5969 6.40767 6.50316 6.28573 6.27343 3.80979 3.48567 4.60034 5.81841 3.32066 5.65503 3.98639 -2.88987 -3.19209 -3.25838 -2.83685 -2.81303 -3.07231 -3.70927 -3.26481 -3.71197 -3.88757 -3.59835 -4.25882 -1.60729 -1.54478 -2.23563 -1.995 -1.48826 -1.69081 -2.13453 -3.05688 -2.99845 -3.07341 -2.6281 -3.17508 -2.92619 -2.86706 -2.81673 -2.86218 -2.74047 -2.49712 -2.9344 -2.60103 -2.72557 -3.10097 -3.05194 -3.28089 -3.00181 -3.15234 -3.31376 -2.87134 -2.98756 -2.22346 -2.94726 -2.20183 -3.21001 -2.62118 -1.35152 -2.48339 -2.3558 -2.15507 -2.42746 -1.82662 -1.73285 -2.0055 -2.90277 -2.29662 -2.45305 -1.8461 -2.46673 -2.60763 -0.99898 -2.66072 -2.82392 -2.23525 -1.17607 -2.45508 -2.06008 -0.965027 -1.8116 -2.12406 -2.75229 -0.783154 -2.40565 -2.05458 -2.74208 -2.80691 -2.97819 -2.57774 -2.95089 -2.79261 -2.65925 -2.72863 -3.16165 -3.04359 -2.7938 -3.00782 -2.6978 -2.83394 -2.59808 -2.32323 -2.65304 -2.98738 -2.89342 -2.37947 -2.65824 -2.09499 -2.22136 -1.92471 -1.92527 -2.14437 -2.16799 -1.88094 -1.18435 -1.24243 -1.52125 -1.52189 -1.21552 -1.4894 -1.2244 -7.78059 -7.95778 -7.95785 -8.13923 -7.94554 -7.8844 -7.83576 -7.67823 -7.71134 -7.76184 -7.65326 -7.67248 -7.78034 -7.67346 -7.77766 -7.99495 -8.29748 -7.94907 -7.96214 -7.94707 -7.7873 -9.59416 -14.333 -11.2861 -11.3793 -9.68036 -11.2605 -11.315 -8.57604 -9.29482 -8.82059 -8.2917 -8.54871 -9.30949 -8.31587 -8.60832 -8.37208 -9.32934 -8.85125 -8.65908 -9.33994 -8.34865 -7.61066 -7.62729 -7.74193 -7.60595 -7.73606 -7.62263 -7.58916 -7.70419 -7.88159 -8.24789 -7.878 -7.8931 -7.8971 -7.68461 -7.73407 -7.93193 -7.91747 -8.28113 -7.92585 -7.73874 -7.92551 -9.24839 -9.09237 -8.81406 -8.03573 -8.6751 -9.42578 -8.93814 -9.74689 -10.1327 -9.4874 -10.1101 -10.2162 -9.60858 -9.59353 -9.13347 -8.44858 -7.93625 -8.78003 -8.57401 -8.83566 -9.03663 -7.55335 -7.54929 -7.49687 -7.58538 -7.57466 -7.48323 -7.57003 -7.56419 -7.2057 -6.77749 -7.61225 -7.47861 -7.2419 -7.55039 -7.57604 -7.78784 -7.32432 -6.70385 -7.60797 -7.33927 -7.69066 -9.40882 -9.56009 -9.3459 -9.75511 -9.24388 -9.48324 -9.61771 -8.80784 -8.47093 -7.59022 -8.17587 -8.53343 -8.24712 -8.77832 -8.90386 -8.30722 -8.62693 -7.70932 -8.59087 -8.97217 -8.29963 -10.6676 -10.715 -11.2374 -10.9864 -11.1845 -10.812 -10.6779 -10.3829 -11.2006 -10.793 -10.814 -11.208 -11.0853 -10.3713 -6.79471 -6.54999 -7.09172 -6.91166 -7.22932 -6.68147 -6.53828 -1.67195 -1.50036 -2.15683 -2.13202 -2.23508 -1.5621 -1.57434 438.345 435.96 436.503 438.082 436.978 437.93 438.362 438.96 439.357 439.095 438.79 438.59 439.496 438.935 -94.2896 -97.135 -99.8789 -103.812 -94.409 -96.527 -98.0419 -94.3005 -103.475 -95.2667 -98.0639 -94.1739 -96.1579 -97.8968 438.408 437.935 438.322 438.46 438.637 438.204 438.316 438.733 439.403 439.13 439.027 439.153 438.755 438.913 -144.731 -138.3 -131.139 -133.816 -142.102 -141.807 -136.984 -11.2935 -11.9147 -8.84471 -8.62332 -8.5447 -11.7319 -11.0547 -11.4973 -7.82023 -11.3271 -8.41229 -11.6938 -8.49942 -12.0749 219.889 298.944 310.658 295.325 300.747 229.138 281.99 424.284 423.532 425.214 424.315 425.575 421.096 423.165 425.235 422.232 419.616 421.639 423.081 423.651 425.243 426.734 421.283 419.955 421.03 424.151 425.209 422.665 405.914 407.055 408.386 403.635 408.481 405.028 405.038 407.384 408.959 409.706 403.858 410.462 405.658 406.345 407.257 409.22 405.545 407.203 409.046 407.679 405.287 408.288 409.951 410.674 409.686 409.888 407.45 411.281 410.276 410.531 408.978 405.318 411.621 408.634 407.395 412.673 411.626 415.489 413.146 413.631 410.685 414.994 402.807 400.485 401.853 402.068 399.633 401.211 402.031 403.694 406.149 403.567 402.683 403.079 404.151 404.091 402.546 403.457 397.074 400.485 402.129 403.241 400.312 405.875 407.942 410.418 412.638 404.531 409.629 411.503 421.644 420.878 420.94 422.323 421.156 421.472 421.745 423.773 424.805 423.32 423.665 424.726 423.191 422.284 419.443 419.152 419.958 419.563 419.255 419.375 420.32 419.28 419.134 418.125 416.573 419.411 417.786 417.856 417.768 418.893 415.313 417.101 416.01 417.477 420.204 405.158 408.708 406.895 403.41 402.524 408.289 405.65 409.246 413.353 411.47 412.931 412.324 410.968 409.87 405.087 403.018 406.715 409.164 402.196 408.212 406.275 401.642 399.428 397.998 394.663 400.279 401.321 398.96 403.926 402.048 407.155 405.146 404.498 404.569 405.768 406.555 400.683 402.079 399.369 404.358 403.756 403.843 410.506 407.751 412.239 412.351 408.543 408.605 413.275 418.666 419.741 419.824 418.019 418.697 419 418.741 417.585 418.734 415.428 416.173 417.176 416.115 417.813 418.459 419.623 419.665 418.566 418.543 418.349 418.408 419.219 419.578 418.213 416.763 419.346 417.691 416.993 418.086 418.799 419.169 417.986 418.607 418.369 418.416 423.808 421.292 420.535 421.449 419.933 422.623 422.268 423.323 421.04 421.781 421.944 422.084 422.118 422.223 413.185 415.813 419.677 414.638 414.65 411.22 416.813 415.441 417.995 421.104 415.95 415.52 416.768 421.413 416.994 421.184 419.127 419.898 418.6 417.923 418.542 412.557 421.482 409.292 415.125 413.388 409.574 421.028 102.606 -150.52 -12.4377 -65.9354 -75.5411 65.6311 51.1224 -49.9258 -52.9766 -48.5613 -48.5898 -48.612 -52.4977 -49.7231 -48.1036 -51.804 -47.8579 -48.3691 -48.7106 -51.4335 -47.9455 -61.1038 -58.245 -54.0427 -57.5412 -55.9827 -57.4648 -62.9535 -59.7993 -54.7193 -53.9627 -52.5737 -59.3331 -54.638 -55.7453 -117.785 -121.991 -127.268 -125.43 -119.96 -120.61 -123.108 -125.928 -125.842 -125.823 -127.068 -122.079 -125.667 -126.975 -34.7889 -25.2762 -37.7577 -29.7169 -35.3244 -25.744 -36.1298 -34.0769 -27.9405 -22.1867 -34.6549 -29.362 -24.3846 -35.4969 8.24797 8.54604 8.32432 8.52012 8.21044 8.32915 8.43273 7.94831 7.81261 8.13197 7.59943 7.64644 8.2023 7.85097 8.16108 8.05411 8.47577 8.28814 8.13827 8.38175 8.09313 5.85522 5.90974 7.43516 3.31467 5.92033 7.37417 3.24991 7.28486 7.93429 8.10326 7.55521 7.21504 8.01456 7.63418 7.37178 7.78396 8.16695 8.19164 7.43891 8.10007 7.73186 7.78156 7.64698 8.02525 7.51414 7.97667 7.81463 7.48588 7.81536 8.07197 8.19712 7.7558 8.13074 7.82046 7.71759 7.90895 7.97337 8.24498 8.28234 8.20369 8.0069 7.90964 4.1497 3.69263 5.90031 4.8977 5.97816 4.16916 3.76673 4.04915 5.68691 4.97121 4.21406 5.84005 4.05917 3.88385 6.61086 7.24401 7.00508 7.17535 6.60076 7.0014 7.17144 -2.19226 -2.66641 -2.31361 -2.47887 -2.32045 -2.44221 -2.64945 -2.68844 -3.31551 -2.94728 -3.41259 -3.22538 -2.95693 -3.34755 -1.40971 -1.33636 -1.58728 -1.68734 -1.67553 -1.309 -1.39473 -7.62902 -7.84221 -7.84319 -8.19017 -7.82646 -7.64573 -7.82881 -7.45931 -7.47268 -7.56525 -7.42747 -7.43741 -7.57667 -7.44662 -7.58331 -7.74955 -8.14057 -7.75919 -7.77973 -7.77798 -7.56384 -9.50615 -14.0818 -11.0446 -11.1243 -9.41636 -11.104 -11.1429 -8.46507 -8.10734 -9.09957 -8.55588 -8.40713 -9.09285 -8.13289 -7.38692 -7.40954 -7.49379 -7.37276 -7.49334 -7.37826 -7.37829 -7.40991 -7.53762 -7.88724 -7.5764 -7.57101 -7.55548 -7.43769 -7.50081 -7.66524 -7.676 -7.99651 -7.66299 -7.48661 -7.67613 -8.75717 -8.40734 -8.17557 -7.20504 -8.14217 -8.65943 -8.58727 -9.46754 -9.6306 -9.13014 -9.56578 -9.67013 -9.34183 -9.4391 -8.77084 -8.20795 -7.26705 -8.5396 -8.11779 -8.60675 -8.78177 -7.38177 -7.37884 -7.29648 -7.36107 -7.34658 -7.31356 -7.3904 -7.40098 -7.14631 -6.54228 -7.67256 -7.45045 -7.11216 -7.60037 -7.42119 -7.53981 -7.07891 -6.52837 -7.36541 -7.14891 -7.58482 -9.39533 -9.65264 -9.19242 -9.75265 -9.25192 -9.33746 -9.82671 -8.85095 -8.60869 -7.63284 -8.36527 -8.54072 -8.27421 -8.9314 -8.80266 -8.17174 -8.42672 -7.60827 -8.49128 -8.75577 -8.25366 -10.6766 -10.2565 -10.5795 -10.4169 -10.696 -10.563 -10.4068 -10.9103 -10.7131 -10.6515 -10.8014 -10.9272 -10.6741 -10.8101 -10.8842 -10.8683 -10.3686 -10.6416 -10.8497 -10.5991 -10.8424 -10.2135 -10.1252 -10.4327 -10.6362 -10.0837 -10.6693 -10.233 -9.97719 -10.9325 -10.1207 -10.4889 -9.99197 -10.0878 -10.8036 -7.87483 -6.72982 -7.11237 -7.39385 -7.72639 -7.17728 -7.45335 -6.57102 -6.34223 -6.76546 -6.9486 -6.403 -6.975 -6.54334 -3.51306 -3.29312 -2.80533 -2.89046 -3.52796 -3.29579 -2.89075 -1.53043 -1.38237 -1.99415 -2.04578 -1.40202 -2.06327 -1.49534 438.536 438.236 438.632 438.766 438.785 438.406 438.482 438.933 439.331 439.099 439.438 439.108 439.157 439.083 -96.1244 -96.5039 -95.203 -87.6505 -93.9742 -98.6141 -92.0409 -150.961 -141.189 -141.557 -149.589 -149.769 -142.501 -148.15 -151.033 -143.905 -142.527 -140.195 -148.841 -146.902 -145.001 -11.0498 -12.4026 -8.63504 -10.9985 -12.3238 -10.9894 -8.68833 -11.4438 -8.54733 -10.9358 -12.226 -12.4202 -9.02233 -10.7262 302.113 327.191 343.785 362.119 289.362 325.893 357.51 424.146 421.458 421.75 418.739 421.292 425.59 420.398 426.742 423.961 425.135 422.041 423.413 427.976 424.349 425.595 418.325 417.848 418.933 420.401 421.453 422.634 412.859 404.745 409.916 402.121 415.7 412.597 399.955 426.068 424.519 426.477 422.472 426.208 425.934 424.311 240.453 260.018 272.668 262.553 256.368 255.779 241.45 411.462 406.465 412.226 412.35 410.536 408.954 413.488 414.332 414.757 414.646 417.41 415.868 412.035 415.644 421.545 422.719 422.389 421.873 421.705 422.068 422.211 422.205 421.852 424.774 422.84 423.185 421.485 423.431 419.536 419.927 421.642 423.189 422.085 421.266 420.025 417.842 420.618 422.762 420.596 421.346 419.92 419.653 285.742 284.8 272.974 260.012 292.237 264.31 275.353 272.788 261.825 263.361 276.029 254.915 273.79 276.054 268.948 278.358 263.447 255.483 254.247 273.124 271.569 394.352 406.832 403.7 402.935 403.474 395.564 400.903 394.25 399.682 404.474 401.696 401.917 398.11 393.964 413.354 416.399 416.419 414.096 412.961 416.569 414.054 407.856 403.674 407.67 411.13 402.67 408.743 410.902 411.242 406.687 407.471 410.219 407.757 412.535 400.196 409.482 412.009 410.055 408.953 408.321 409.304 412.215 413.196 416.716 417.831 415.122 417.2 415.082 414.591 410.93 411.364 411.456 412.554 407.863 414.928 412.353 403.183 407.498 403.489 404.689 399.43 407.286 405.402 405.186 409.175 406.775 406.507 404.436 408.512 406.319 404.983 405.313 403.584 410.113 400.575 407.975 408.394 407.41 408.281 407.953 410.859 405.965 409.595 409.526 414.574 416.578 416.147 414.381 414.46 416.172 415.325 415.278 416.661 415.757 414.619 414.266 416.598 415.506 412.202 408.617 411.761 412.13 411.227 409.859 413.482 412.863 409.419 412.72 412.656 411.852 411.029 413.748 418.791 418.084 418.363 418.645 418.711 418.833 418.092 418.979 417.741 419.286 419.375 419.123 418.295 418.188 416.746 419.883 420.135 415.998 422.733 418.14 414.222 416.337 418.503 418.793 418.595 419.655 416.173 417.629 418.138 417.988 417.604 418.497 417.581 418.012 418.734 418.463 418.089 417.331 418.183 417.948 418.003 418.84 418.549 417.688 418.857 419.64 418.052 418.187 419.459 417.881 420.24 420.184 420.399 418.157 418.765 419.351 416.739 420.522 418.28 415.504 419.772 414.21 419.107 421.999 421.023 420.57 421.102 421.877 423.057 421.166 422.075 420.705 421.356 421.667 421.944 422.56 421.839 422.371 417.205 418.75 421.272 419.327 421.977 421.566 427.318 422.79 422.444 423.633 422.928 422.535 423.503 418.625 411.655 419.473 416.379 414.982 410.89 421.795 416.477 418.774 408.908 414.679 421.333 415.339 410.397 394.377 400.039 387.953 394.911 386.531 393.973 402.646 236.631 217.931 237.67 231.786 243.665 223.047 234.32 258.588 248.977 261.86 270.664 265.079 255.35 251.445 276.658 329.242 311.778 317.747 286.075 300.092 314.806 252.032 261.557 288.391 268.64 264.122 275.408 249.557 256.29 272.582 264.416 259.908 262.917 256.867 257.284 249.104 259.2 262.503 265.409 258.627 255.969 248.639 -98.4952 -191.561 -15.6298 51.8495 -97.308 -176.529 38.1982 432.173 435.102 431.061 431.968 430.434 433.328 433.433 -68.9277 -59.9595 -60.7437 -58.7929 -65.8683 -63.1145 -63.0401 -71.237 -65.5846 -61.2619 -66.126 -64.5535 -71.1412 -65.0159 434.654 437.603 437.563 437.032 436.01 436.265 436.005 -64.4955 -65.6245 -61.7951 -64.8032 -61.9118 -68.7232 -64.8629 -25.1552 -16.9941 -26.743 -18.5705 -27.3244 -13.5572 -26.6892 7.50526 7.94971 7.66233 7.94196 7.56862 7.57911 7.86321 7.44454 7.39408 7.556 7.1297 7.2426 7.62845 7.32171 7.41712 7.3888 7.82689 7.69746 7.44615 7.78136 7.41589 5.02606 4.97074 6.62881 2.50249 5.13897 6.49621 2.37291 6.46252 6.90418 7.24236 6.66703 6.24184 7.15482 6.82862 6.57519 7.05744 7.42553 7.38189 6.68547 7.30316 6.95755 7.11595 7.03494 7.47727 7.02408 7.37055 7.18479 6.93244 7.15678 7.17339 7.35786 6.87867 7.33922 7.0338 7.02051 7.25211 7.28096 7.56442 7.4834 7.45138 7.33668 7.16329 6.29938 6.56684 6.33724 6.7178 6.42831 6.23938 6.56777 5.9301 5.68475 5.26277 5.85458 5.83118 5.76642 5.8754 6.02094 6.42722 5.77879 5.34529 5.98458 5.85065 5.9894 3.68394 3.13972 4.30488 5.30314 3.28485 5.48046 3.61647 4.01297 5.38882 3.97333 4.43044 3.73208 3.96237 5.62785 -1.61927 -1.75268 -2.19622 -2.22071 -1.73861 -1.59704 -2.19192 -2.91424 -2.94495 -2.98563 -2.68051 -2.97393 -2.85303 -2.92941 -2.45897 -2.45449 -2.15483 -2.04252 -2.36618 -2.51834 -1.66533 -1.28025 -1.33021 -1.97576 -1.79727 -1.35423 -2.76255 -1.29247 -7.49414 -7.54281 -7.61678 -7.63093 -7.48423 -7.45756 -7.82397 -8.97874 -11.4093 -7.707 -8.64859 -9.23634 -8.08224 -11.0996 -7.49223 -6.58686 -6.32512 -6.70798 -7.38676 -6.83923 -7.05567 -9.1377 -8.75822 -8.48437 -7.95882 -8.56947 -9.07685 -8.83852 -9.95914 -10.2433 -9.93599 -10.574 -10.4287 -9.73716 -10.1375 -9.31135 -8.57631 -8.26398 -9.33645 -8.7641 -9.03731 -9.20641 -10.2058 -10.1256 -10.6331 -10.4693 -10.6231 -10.2214 -10.0848 -9.78869 -8.65489 -9.45031 -8.83716 -8.94526 -9.51493 -9.74295 -10.2642 -10.6028 -10.5753 -10.0399 -10.6869 -10.1923 -10.2178 -9.73517 -8.39956 -9.51188 -8.85215 -9.56344 -9.87458 -8.5574 -10.3079 -10.6008 -10.072 -10.2548 -10.124 -10.376 -10.4564 -6.25317 -6.18109 -6.76824 -6.44004 -6.64318 -6.34596 -6.11152 -5.69381 -5.029 -5.41629 -5.00344 -5.10165 -5.53655 -5.54344 -6.15546 -6.34213 -6.35491 -5.89083 -6.54591 -6.01402 -5.99333 -6.58408 -7.29554 -6.47438 -7.79638 -7.1778 -6.11271 -7.40973 -6.25439 -6.55069 -6.1855 -6.08908 -6.79825 -5.78212 -6.16465 -5.16018 -4.73171 -5.2874 -4.82908 -5.15376 -5.33658 -4.72037 -5.57911 -6.13218 -5.76034 -5.84824 -5.59158 -5.78943 -5.84261 -1.4072 -1.32764 -2.0354 -1.93554 -2.0132 -1.43548 -1.30288 -0.784069 -0.10503 -0.711946 -0.255727 -0.71326 -0.787353 -0.247809 -1.3668 -1.94839 -1.8942 -1.25971 -1.96762 -1.2695 -1.36347 -3.68583 -4.10843 -3.74333 -4.1344 -3.70892 -3.70977 -4.05996 -3.20173 -2.62064 -3.16829 -2.59587 -3.22933 -3.18688 -2.60089 -0.813511 -0.0143216 -0.705139 -0.217909 -0.820934 -0.753726 -0.158817 -1.28463 -1.85924 -1.23805 -1.80916 -1.31583 -1.29325 -1.82194 -17.8941 -27.1118 -32.4555 -29.8955 -24.8084 -25.3568 -21.4011 -18.3621 -21.8695 -18.3607 -27.0128 -16.0818 -23.3411 -22.6243 -34.7965 -39.8095 -33.995 -34.7512 -31.3854 -37.3586 -39.0951 -34.4328 -42.3065 -37.7745 -35.2374 -31.0483 -40.7385 -37.1092 -31.3477 -26.3448 -31.1311 -30.9398 -28.5992 -28.3581 -33.0798 -42.7261 -40.4223 -35.5367 -41.6945 -39.4864 -37.7092 -45.5871 -48.986 -63.6315 -58.7743 -54.1717 -49.3444 -57.869 -53.7183 -44.7219 -40.4561 -44.0763 -48.948 -39.9914 -43.7568 -48.3633 -43.5163 -48.9119 -54.9085 -51.4451 -46.6193 -49.0379 -45.5442 -44.8366 -40.3302 -39.3544 -55.6726 -32.3459 -53.0101 -55.908 -62.0461 -49.5489 -65.9098 -63.9096 -54.8362 -57.1283 -72.6659 -70.6832 -74.5386 -68.3836 -83.3441 -63.4444 -85.5915 -72.5579 -67.6251 -40.8459 -75.3523 -71.3445 -63.0503 -54.2788 -98.3842 -108.305 -78.0248 -86.6095 -81.9981 -94.335 -88.3673 -102.126 -128.373 -130.773 -127.749 -124.238 -89.4054 -109.87 -96.3968 -106.779 -102.721 -111.345 -89.9598 -83.0709 -95.7366 -105.978 -79.9395 -92.9406 -106.347 -86.5779 -93.4815 -74.3378 -95.9672 -79.038 -80.1628 -101.111 -147.858 -112.829 -135.053 -123.989 -130.948 -125.458 -143.765 -142.789 -138.212 -144.55 -134.042 -111.495 -124.116 -114.293 -137.957 -128.283 -118.815 -130.201 -114.008 -133.64 -114.068 -132.163 -117.068 -131.113 400.013 421.63 312.96 368.482 406.333 421.92 290.776 -113.347 -103.538 -109.222 -112.771 -103.869 -113.05 -117.599 -131.632 -144.074 -135.484 -145.11 -144.575 -135.452 -136.183 -111.798 -112.556 -105.552 -122.645 -100.165 -120.457 -116.39 -129.943 -129.845 -136.814 -145.333 -142.813 -126.098 -136.914 -110.044 -97.3379 -107.371 -98.0011 -92.6961 -121.453 -101.788 -121.99 -98.9811 -106.133 -100.287 -101.702 -110.813 -96.3269 -123.537 -126.035 -111.03 -111.494 -120.595 -126.295 -131.344 -129.234 -125.658 -122.424 -129.934 -123.36 -120.097 -108.911 -111.349 -118.413 -114.812 -115.684 -118.093 -162.022 -147.542 -146.818 -146.056 -153.992 -152.296 -149.381 -166.212 -144.134 -152.465 -160.016 -172.237 -150.65 -152.827 -146.292 -137.467 -136.744 -144.938 -146.235 -137.68 -142.606 -152.633 -152.268 -161.338 -150.521 -157.054 -158.254 -147.213 -174.659 -170.176 -166.175 -178.368 -168.642 -172.119 -174.57 -163.282 -171.603 -174.962 -171.16 -173.851 -177.565 -65.5373 -60.6753 -77.0671 -71.2729 -63.0472 -80.9671 -60.195 437.947 438.1 438.063 438.701 437.494 438.373 438.724 437.574 438.091 437.642 437.061 438.02 437.505 437.398 345.228 317.544 294.668 361.311 277.986 354.002 365.535 4.82907 -43.1359 47.277 -145.893 63.4573 -60.406 -78.6668 425.629 425.413 426.096 426.062 425.769 425.587 432.978 428.939 423.925 423.557 425.461 426.598 423.102 421.219 422.059 420.008 421.943 424.772 420.73 423.98 422.776 421.978 424.214 423.929 427.977 423.779 422.956 424.305 423.741 423.245 422.325 422.981 422.939 424.419 425.597 419.311 424.847 424.061 422.805 426.136 423.136 418.685 412.732 410.685 410.997 418.14 413.906 407.959 415.196 393.527 400.811 395.442 396.292 389.439 399.248 397.506 255.501 254.059 257.943 263.1 248.095 260.886 256.589 303.151 330.691 296.684 321.613 286.871 314.141 318.111 279.518 264.762 277.199 282.373 262.564 295.184 274.525 267.106 263.231 270.452 280.141 275.057 264.966 267.959 421.179 419.934 420.876 425.096 422.005 419.336 421.931 423.048 424.234 426.445 424.675 422.529 424.441 426.476 420.389 421.01 420.344 420.149 421.713 418.887 420.7 421.721 427.114 424.097 422.513 422.04 423.911 423.186 416.029 420.675 424.682 424.34 412.351 421.404 425.046 427.208 426.851 429.589 425.367 429.625 426.741 425.648 420.352 415.623 411.805 411.818 417.4 413.421 415.681 293.001 324.602 311.767 328.784 290.122 294.958 341.088 247.004 243.971 247.426 215.277 201.805 261.682 241.387 260.32 251.341 287.221 264.443 261.648 269.83 246.54 239.883 239.153 245.543 220.445 242.576 238.74 224.078 237.119 246.653 274.882 261.246 259.674 242.881 240.806 -76.0523 -45.6878 -5.99722 -29.062 -53.3335 -66.6001 -35.2306 40.1885 274.552 -10.787 163.315 122.699 200.304 -13.4141 29.3242 -129.741 139.528 78.1594 -14.9497 -120.663 128.307 17.9151 63.9332 -74.5241 97.2495 -13.7109 -106.157 116.669 -72.6725 -57.8458 -85.6375 -46.5223 -67.7338 -87.8148 -54.8407 -75.7336 -70.7813 -80.0173 -69.6587 -77.2998 -79.0687 -61.8242 -87.8417 -80.2747 -83.209 -79.3289 -85.3794 -83.1949 -83.8358 -100.508 -94.2875 -97.6901 -100.085 -101.076 -100.185 -98.0937 -101.682 -98.7051 -94.9327 -99.6877 -100.236 -97.9494 -101.776 -101.059 -110.195 -111.531 -110.608 -102.355 -134.957 -128.926 -122.505 -135.254 -126.123 -136.204 -134.998 -159.745 -159.968 -173.871 -184.646 -175.386 -158.908 -166.242 -200.333 -207.724 -188.44 -197.505 -188.293 -198.799 -208.02 -67.5622 -57.6571 -73.2183 -60.566 -51.2969 -69.2911 -72.8171 -87.6956 -97.3431 -85.0493 -94.2593 -97.416 -85.994 -85.3847 -80.417 -71.5343 -76.3114 -75.9973 -68.2902 -77.8032 -75.6237 -90.3474 -85.9235 -97.2648 -87.9779 -77.3207 -99.4554 -99.0412 -100.486 -94.6389 -95.8908 -95.4313 -95.7805 -100.689 -100.378 -13.0555 -17.4174 1.03758 -9.59182 -7.03842 -20.5128 -7.11713 -62.5834 -65.0892 -45.9833 -51.4987 -55.9655 -45.6378 -69.3289 -61.2264 -66.3137 -42.778 -57.0542 -72.0486 -54.7343 -91.6093 -79.779 -76.5441 -68.8062 -89.3843 -47.6564 -33.0448 -34.4576 -27.3861 -44.6015 -34.2858 -39.131 -146.261 -142.358 -135.802 -138.44 -139.808 -147.426 -140.744 -148.351 -151.305 -169.814 -164.767 -145.108 -151.568 -168.733 -206.981 -213.314 -189.326 -190.038 -201.071 -189.198 -211.906 -120.954 -121.458 -118.647 -125.172 -113.016 -121.216 -87.9732 -65.7186 -74.0616 -71.9102 -71.2977 -85.4303 -81.5811 -107.087 -108.338 -85.6888 -85.2689 -99.8949 -104.114 -103.387 -82.3312 -94.5505 -97.3196 -105.035 -94.9842 -145.565 -142.47 -125.321 -132.688 -138.647 -138.44 -130.694 -126.512 -112.3 -100.873 -100.446 -124.573 -113.45 -106.841 15.1992 38.7972 21.8547 17.9723 23.3536 12.089 15.8702 5.54404 1.26875 -0.925198 5.44367 -0.145566 -0.948652 9.15668 -30.2979 -27.6232 -30.3531 -23.324 -36.8214 -22.5119 -9.99444 -12.5734 -17.3883 -14.2123 -17.61 16.1113 20.1556 21.3889 14.1586 20.0171 16.1357 11.7204 8.73808 1.57232 4.66954 0.426647 8.36761 2.91785 5.84287 -14.7879 -23.3053 -22.0124 -24.6395 -17.1657 -19.1091 -20.6479 -10.0527 -7.08214 -14.6118 -6.48687 -12.5744 -5.9141 -11.3105 -46.1094 -35.0453 -35.898 -43.3541 -38.1764 -55.6218 -46.1327 -51.1008 -57.1671 -45.6461 -62.2995 -48.1007 -59.8006 -54.398 -58.9267 -47.9685 -67.8374 -27.7843 -28.9877 -28.9377 -31.3878 -25.2376 -31.6201 -28.7714 -30.9146 -37.8218 -40.5809 -38.0501 -36.0511 -33.3755 -35.4357 -33.2157 -34.4206 -34.2801 -40.3902 -30.9946 -38.8007 -36.5735 -35.5143 -39.6021 -45.9428 -39.091 -40.7045 -33.8691 -41.3594 6.83782 7.02573 6.71534 6.72117 6.61096 6.86258 6.89447 6.59141 6.26091 6.69529 5.91281 6.21099 6.68139 6.71948 6.51677 6.47737 6.86123 6.12388 6.8488 6.66801 3.1656 2.84261 5.04262 3.77839 4.84214 3.33591 2.64381 1.2726 0.0787406 0.803521 0.0356585 0.265356 1.11969 1.04044 2.81397 4.38049 3.55887 2.14265 4.54495 2.38957 2.64307 0.242636 -1.01545 0.283918 -0.453245 0.056549 0.543835 -0.773929 -3.39927 -3.38639 -3.0633 -3.36721 -3.21544 -3.33339 -3.54007 -3.76278 -3.85433 -4.09684 -3.76784 -3.67572 -3.94806 -3.90086 -3.72691 -3.76192 -3.68799 -4.01035 -3.52005 -3.83161 -3.91017 -2.88487 -2.32243 -2.76339 -1.71899 -2.51945 -3.06853 -2.10033 -3.57664 -3.85777 -3.48165 -4.32535 -3.26567 -3.72821 -4.06164 -4.08992 -4.46411 -4.43636 -4.04551 -4.62124 -4.13398 -4.0336 -4.70017 -4.28604 -4.36689 -4.90705 -4.39635 -4.25102 -5.30888 -3.47571 -3.66617 -3.43486 -3.75302 -3.3708 -3.46081 -3.70497 -3.2936 -3.37383 -3.47997 -3.28981 -3.23564 -3.49989 -3.28794 -3.41536 -3.37554 -3.73516 -3.67383 -3.37122 -3.67059 -3.44902 -2.92167 -4.04094 -3.4593 -3.7121 -2.97035 -3.39227 -3.6779 -1.97181 -2.9115 -3.28738 -3.47475 -1.96705 -3.1764 -3.02095 -2.49559 -3.91975 -3.39612 -3.42345 -2.85361 -3.19059 -3.46032 -3.47991 -3.35754 -3.59792 -3.61967 -3.52246 -3.34082 -3.41822 -1.29663 -1.38939 -1.80032 -1.70921 -1.67894 -1.38516 -1.33693 -0.804072 -0.41017 -0.840134 -0.429055 -0.887613 -0.785746 -0.433164 -1.30491 -1.58894 -1.70027 -1.29925 -1.6439 -1.34898 -1.27041 -2.47738 -2.58326 -2.80432 -2.91693 -2.71407 -2.48486 -2.54291 -2.22646 -2.09682 -2.48208 -2.04425 -2.37122 -2.27939 -1.99445 -0.700448 -0.361791 -0.84462 -0.429138 -0.761435 -0.789923 -0.373043 -1.18069 -1.60048 -1.32815 -1.55986 -1.23093 -1.27098 -1.52008 -4.51895 -4.25469 -4.61438 -3.08401 -4.69347 -4.30088 -3.87334 -5.73667 -6.3523 -5.71146 -5.74341 -6.08794 -6.02637 -5.24931 -5.26592 -5.10531 -6.18096 -5.52473 -5.68208 -5.82427 -5.01864 -4.92062 -3.3713 -5.12179 -5.06838 -5.72455 -4.53749 -4.0806 -5.2915 -6.99393 -6.81362 -8.43342 -6.35866 -5.37669 -5.99548 -3.51829 -2.34272 -3.96141 -2.69282 -4.00036 -2.45013 -3.55957 -12.3787 -11.9006 -12.2379 -14.4913 -11.0848 -12.8705 -13.7729 -11.6253 -11.3981 -10.2263 -11.5015 -10.5588 -11.2553 -11.9529 -13.4454 -15.667 -14.3503 -15.196 -14.0269 -13.974 -14.7173 -16.0471 -10.6319 -16.1514 -17.1791 -13.9198 -15.0971 -18.5256 -17.8276 -16.0976 -15.9754 -16.8739 -17.4179 -19.0076 -17.3441 -17.8572 -19.7529 -20.0459 -18.1255 -22.1879 -10.8353 -12.2753 -12.5312 -11.0882 -11.9957 -10.938 -11.0406 -9.37776 -9.32305 -8.01698 -7.66495 -8.00613 -9.48496 -9.1544 -20.7387 -17.5542 -17.6441 -17.8253 -18.8651 -19.1117 -19.1984 -19.9114 -17.9002 -18.9714 -20.5569 -18.4995 -19.0372 -14.2367 -11.9169 -14.8962 -14.3506 -13.0553 -12.7133 -15.613 -12.189 -10.0688 -6.5135 -8.56598 -10.7497 -11.5065 -7.72111 -4.23633 -4.49798 -4.07928 -4.11432 -4.35902 -4.35337 -4.13186 -4.0239 -3.92077 -3.80312 -3.5845 -3.27375 -4.17979 -3.85773 -0.894315 -1.49805 -1.40318 -1.09178 -1.31214 -1.10235 -1.03039 -0.507874 -0.652474 -0.27942 -0.185623 -0.663721 -0.598759 -0.103567 -18.047 -19.476 -20.0034 -21.0038 -16.5783 -20.3211 -20.1074 -18.2012 -18.2633 -19.9656 -22.1562 -19.1331 -17.2018 -21.0333 -17.3795 -19.0095 -15.4437 -18.6306 -16.3354 -16.4101 -19.1094 -18.7959 -24.7228 -22.5556 -23.1191 -19.9521 -21.5728 -22.5321 -16.2242 -13.6817 -15.6066 -20.4468 -18.677 -12.5785 -20.0075 -22.7408 -21.2276 -18.4968 -22.2627 -19.8146 -21.8076 -23.1752 -24.5726 -24.5831 -22.8894 -25.5482 -19.8576 -17.1574 -18.2901 -15.4095 -13.9197 -19.9958 -18.4455 -19.1507 -17.9729 -16.0204 -13.8404 -14.5562 -18.1162 -18.7103 -27.6539 -22.8118 -19.9987 -17.309 -20.6684 -20.443 -22.5402 -21.256 -23.4139 -20.7938 -22.7737 -22.9081 -20.4945 -22.7089 -20.5995 -17.8966 -19.5632 -19.3889 -21.5921 -19.3751 -19.4172 -20.6898 -21.274 -17.7369 -22.8753 -18.8091 -15.4357 -26.4076 -26.1428 -28.8713 -27.0114 -25.9805 -25.7936 -22.9838 -31.9757 -20.7746 -22.0039 -24.9425 -14.037 -17.7769 -15.2235 -14.5603 -15.929 -13.4979 -15.6065 -11.5038 -11.862 -8.68221 -8.81489 -8.09057 -12.1779 -12.278 -27.1325 -25.9584 -23.4395 -28.6616 -29.6579 -23.5828 -26.1794 -20.3936 -21.2206 -21.6248 -26.2702 -19.4165 -23.4808 -22.9101 -21.3919 -21.0038 -23.5379 -21.2695 -20.4036 -22.3124 -22.4986 -23.6434 -21.7759 -25.0351 -21.5606 -21.3278 -24.8047 -24.4707 -22.6799 -23.8471 -21.063 -21.1867 -20.4454 -23.3243 -23.6375 -20.9539 -19.0321 -23.9828 -20.2768 -22.6284 -23.0882 -18.0432 -22.3003 -23.4566 -20.364 -19.349 -23.6077 -21.8247 -18.6185 -25.9944 -27.5842 -25.9756 -27.8637 -26.1278 -27.6534 -29.7942 -31.9239 -26.7586 -27.1241 -27.6334 -20.8907 -15.8885 -20.4128 -23.1404 -24.0185 -16.2255 -20.5883 -24.3711 -30.1101 -26.7193 -25.3726 -28.1762 -26.0965 -23.4665 -26.3917 -22.7476 -24.2879 -23.9365 -25.6019 -25.8618 -24.7769 -32.2944 -32.9857 -30.4147 -23.5833 -27.1041 -21.0752 -23.3526 -27.0967 -25.978 -17.6847 -28.8852 -23.7355 -25.7338 -19.9959 -22.6282 -26.8611 -19.3463 -38.9296 -32.5391 -28.8592 -31.8455 -32.9037 -40.9236 -43.7538 -36.3916 -37.4722 -34.1501 -41.4239 -42.1607 -40.0848 -34.5813 -36.8738 -34.8219 -40.5212 -37.3411 -28.0174 -30.7382 -34.8186 -30.5403 -31.5539 -37.1009 -10.2434 -5.47094 -23.2375 -8.3296 -5.10508 -17.519 -10.5258 -15.4007 -19.4811 -23.8641 -17.8397 -19.9959 -15.4975 -18.5065 -25.9524 -25.1548 -27.9899 -29.0793 -24.3947 -28.1381 -26.7602 -24.2668 -24.1528 -27.8404 -20.3021 -22.4977 -26.6989 -21.9396 -27.426 -23.4839 -30.8455 -28.0309 -33.1399 -26.7673 -25.2334 -46.4077 -41.4899 -38.8401 -39.0495 -41.6581 -39.7074 -42.8033 -43.3383 -37.9854 -42.9046 -45.6893 -40.535 -39.5036 -39.7552 -35.57 -37.0678 -39.3412 -37.6201 -47.5988 -41.0221 -49.255 -44.4895 -50.8437 -45.3806 -40.3281 -38.2278 -42.2244 -33.2051 -36.8648 -38.8808 -41.2506 -33.6852 -36.9411 -30.0476 -26.086 -35.2839 -32.8111 -30.9506 -38.2396 -31.7065 -28.1389 -31.5756 -21.3838 -25.7514 -31.5992 -28.8685 -42.3686 -39.7208 -48.8223 -40.7041 -44.9417 -36.5462 -43.5952 -27.5769 -26.3152 -27.2154 -31.0644 -28.3348 -26.4317 -27.8484 -28.4974 -31.9069 -31.2064 -26.855 -32.5543 -27.3381 -27.8634 -25.2033 -30.5588 -29.5821 -25.8733 -23.7494 -28.6842 -26.8225 -59.6386 -77.1022 -65.3172 -66.0377 -61.1354 -53.0321 -47.6811 -67.7197 -43.2239 -55.7444 -26.9609 -13.7508 -51.2825 -4.70573 -6.35531 -21.0027 -43.4082 -44.0788 -45.2406 -57.6059 -54.2127 -37.8815 -48.8185 -52.9437 -79.0322 -95.1031 -82.0058 -72.38 -89.1128 -67.3479 -85.2878 -72.9861 -53.4257 -69.4212 -64.3555 -76.5019 -61.9189 -65.9005 -53.8418 -66.1378 -69.2707 -44.4604 -44.6884 -65.7345 -62.3306 -63.7267 -76.3455 -85.1798 -80.7917 -71.941 -78.3409 -70.2645 -97.7151 -93.8992 -97.3452 -76.5871 -84.1713 -108.397 -90.93 -103.195 -88.9178 -104.306 -115 -88.4014 -115.731 -103.328 -100.781 -93.3664 -93.5547 -72.5202 -88.2694 -107.075 -80.3234 -107.087 -88.0873 -99.8241 -119.745 -111.167 -85.9226 -104.532 440.215 438.78 440.22 439.527 439.983 440.347 438.849 -92.2432 -95.7363 -93.753 -90.313 -90.2163 -96.1592 -92.1178 -119.89 -127.55 -126.13 -116.331 -120.075 -128.179 -120.139 -110.2 -103.796 -102.684 -107.484 -103.556 -111.637 -110.189 440.033 439.882 439.57 440.578 439.144 440.293 440.208 438.798 436.805 432.999 436.768 436.6 436.592 438.582 439.502 439.723 439.389 440.131 439.229 439.85 439.813 435.286 433.649 435.362 433.704 435.213 433.576 435.087 436.309 436.514 436.552 437.025 436.319 436.807 436.368 -181.476 -173.723 -174.402 -174.764 -177.032 -175.441 -177.117 -177.395 -173.099 -170.378 -167.013 -175.662 -174.419 -169.056 -53.2549 -51.4198 -41.6637 -46.4803 -49.501 -54.3739 -45.2415 -11.2324 88.3765 -123.476 0.568137 108.279 -95.3533 -94.5823 -41.4028 -14.6578 -33.3152 -4.47561 -17.5349 -44.2951 -82.7185 274.22 304.693 264.578 257.137 284.649 344.26 255.588 434.843 434.667 434.78 434.993 435.006 434.631 434.758 435.117 435.474 435.071 435.174 435.317 435.22 435.026 -144.41 -142.289 -132.754 -139.478 -136.754 -139.38 -144.783 431.609 430.166 431.997 430.751 431.557 429.59 432.827 433.69 434.332 434.293 433.731 433.511 434.209 433.548 -196.55 -192.224 -184.857 -198.674 -193.256 -187.738 -200.021 -199.401 -198.349 -201.957 -201.638 -199.198 -199.008 -203.343 -45.9969 -38.9285 -38.6611 -53.0205 -51.0958 -32.6529 -50.9343 -52.8529 -46.9008 -40.9744 -39.2883 -49.1373 -49.9977 -46.4478 -2.79025 -4.40285 -0.767119 -2.57501 -6.48408 -1.35873 -0.341928 -35.6066 -41.9112 -50.7926 -42.4085 -32.6003 -50.6054 -41.3183 -41.4065 -51.99 -44.9615 -59.6702 -42.4588 -52.4827 -51.2181 -74.0133 -97.8685 -83.6607 -90.3681 -84.0982 -78.9292 -82.3251 -55.1742 -60.05 -65.8078 -50.7572 -64.5571 -50.8927 -52.1666 -66.6239 -65.7313 -74.5855 -73.7947 -75.4097 -72.9229 -62.0578 -97.7582 -99.0387 -110.821 -100.799 -107.753 -109.021 -90.5888 -88.5744 -96.5542 -114.335 -85.84 -78.6149 -108.307 -93.0662 -104.741 -128.014 -121.048 -132.13 -115.569 -123.114 -111.894 -94.1713 -87.9297 -104.22 -79.4069 -103.714 -89.8289 -83.2811 -118.103 -137.136 -144.96 -127.661 -127.243 -139.657 -114.856 -38.7331 -37.9034 -34.1699 -36.2165 -35.7482 -38.9255 -37.809 -42.3295 -38.9391 -49.4679 -44.4421 -48.2684 -42.1993 -40.4868 -27.8229 -32.3812 -22.8587 -27.3251 -34.5409 -32.5361 -20.3522 -35.9508 -37.6288 -32.7937 -31.8147 -36.7506 -41.1355 -33.1132 -40.5349 -32.435 -32.8597 -38.5218 -35.4119 -46.9009 -40.8198 -39.2774 -35.3622 -47.5113 -49.9397 -50.3821 -51.31 -43.0002 -54.6249 -47.5399 -47.1956 -46.9699 -50.7344 -42.3154 -43.995 -48.4979 -48.7603 -41.3033 -42.4432 -41.7209 -43.7488 -39.4391 -45.5336 -43.0055 -40.07 -39.2154 -45.6872 -38.8215 -40.111 -42.3945 -44.4479 -37.4345 -11.2933 -10.4441 -5.13075 -4.54066 -9.82822 -15.9318 -12.8083 -9.56362 -14.6547 -15.4967 -10.8405 -14.2049 -9.89867 -2.96777 -3.27596 -6.3332 -4.51083 -7.35495 -8.15338 -12.2533 -11.127 -14.4941 -12.4517 -10.1623 -7.99233 -4.07202 -9.10541 -3.53229 -7.91954 -19.5183 -22.2702 -21.5534 -19.0288 -21.1108 -21.6347 -17.5706 -14.6533 -23.5054 -11.2702 -9.0113 -22.0864 -7.37874 -14.1501 -25.2452 -26.671 -26.3674 -22.8075 -26.357 -24.423 -24.3443 -26.5385 -29.888 -28.3709 -33.5026 -28.1104 -28.2007 -28.1314 -25.9098 -25.9871 -26.5046 -25.7079 -27.4913 -26.787 -25.0174 -26.1149 -27.1468 -33.0047 -28.4938 -27.4891 -25.4988 -27.9357 -21.4604 -20.8139 -22.3843 -19.9219 -18.6011 -20.8423 -21.5432 -24.5713 -30.0889 -25.0217 -30.1428 -28.816 -28.7794 -24.5302 -28.3114 -24.1614 -32.973 -20.8815 -16.6376 -17.1376 -17.378 -18.1458 -19.361 -19.7026 -25.0371 -22.8757 -21.1552 -18.7742 -23.9357 -21.215 -23.3737 -15.9965 -12.6097 -16.7485 -14.4766 -14.1951 -15.1995 -16.1353 -13.7161 -14.2283 -17.5959 -18.5726 -16.3986 -19.9019 -18.4129 -23.2567 -16.0796 -27.4549 -32.3864 -29.7734 -27.9305 -30.4228 -27.4337 -26.6314 -28.1337 -30.3151 -31.554 -31.2454 -30.1691 -30.3996 -27.7153 -28.4032 -33.39 -32.191 -29.8671 -31.4389 -30.3307 -28.4842 -27.4859 -28.0752 -30.0669 -26.9041 -28.9179 -27.1611 -26.8252 -21.9791 -27.421 -22.6099 -24.2228 -23.9197 -23.6815 -22.2513 -25.2649 -28.0727 -25.9922 -27.4708 -22.7698 -20.1984 -24.0397 -20.5004 -23.6839 -22.7458 -21.1361 -25.046 -27.5366 -26.7468 -26.1908 5.80247 5.28888 6.52159 6.08265 5.37336 6.0958 6.33313 4.68689 1.05386 3.38529 2.0229 3.77799 3.90176 3.28236 5.79386 6.29129 6.07412 5.32135 5.44749 6.4332 5.37151 7.25933 6.80746 6.90726 6.65203 7.07714 6.93839 7.08574 7.98602 7.58105 8.99623 8.20517 8.81054 7.95777 7.56259 7.68059 7.46666 6.92514 8.02559 7.23788 8.10587 7.48695 1.85951 -1.90496 1.89408 2.06072 2.74131 0.304615 -0.125381 -7.29508 -9.28844 -11.9319 -10.7002 -8.70656 -7.90975 -10.9249 -5.1992 -2.53284 -2.75481 -7.34852 -2.4779 -5.84754 -6.56815 5.61881 6.59645 7.6647 5.36536 5.60405 7.17939 5.36608 3.85157 1.4939 3.12548 3.06599 4.01496 2.18187 2.95582 -3.96174 -4.69587 -6.74298 -4.77035 -5.42972 -5.32342 -3.39417 -1.7759 -0.625748 1.39546 -2.11591 0.321294 -2.85035 -0.973697 -19.3116 -16.8953 -20.7825 -17.2766 -15.9764 -19.772 -20.389 -21.4242 -19.0902 -20.0793 -17.6095 -21.667 -22.2178 -20.6745 -23.7586 -18.3076 -21.837 -22.4975 -20.3132 -23.4533 -21.8817 -21.0079 -23.1804 -19.3941 -21.7238 -23.9051 -21.4462 -6.98701 -6.40416 -2.27463 -5.7087 -2.59667 -11.7343 -10.3367 -8.41105 -8.12912 -9.49213 -11.4123 -10.2383 -13.8901 -12.3499 -9.92141 -12.1294 -13.8816 -12.8892 -16.1672 -14.0285 -17.9613 -12.3385 -14.1471 -17.2519 -7.59267 -5.88128 -7.94367 -8.50901 -6.89919 -6.44755 -9.15237 -8.33494 -10.3259 -8.27814 -9.13532 -7.34297 -8.6888 -9.84891 -7.9622 -6.29009 -7.99245 -8.4319 -9.2085 -6.90904 -7.48822 -8.61099 -10.3613 -8.30097 -9.71574 -8.71078 -10.224 -8.24908 -23.3638 -20.0408 -23.3928 -20.2425 -20.405 -22.4653 -22.7647 -22.0819 -20.6477 -20.8372 -20.9115 -20.1105 -20.7005 -23.6151 -15.406 -14.7284 -19.2093 -16.9308 -16.1554 -17.9284 -14.858 -17.5544 -15.6697 -12.7959 -13.4983 -14.9688 -3.96387 -4.72688 -6.24675 -2.9558 -3.08961 -5.44033 -3.66 -2.77968 -2.48152 -2.33954 -1.34802 -2.09612 -2.62559 -2.14779 -3.0182 -2.77515 -2.85897 -2.80273 -3.01063 -2.87733 -2.83396 -2.90045 -2.81756 -2.63898 -2.6722 -2.82831 -2.83377 -2.74614 3.20472 2.3271 -6.39111 -20.6825 -11.597 0.196695 6.58282 -2.54395 -2.59722 -2.58111 -2.62797 -2.6083 -2.62289 -2.55759 -2.41402 -2.03453 -1.49928 -2.33647 -2.43495 -2.0031 -2.39712 -0.635945 -0.200065 -0.69603 -0.370882 -0.791842 -0.422518 -0.269311 -1.20304 -1.66822 -3.28277 -1.22583 -1.90312 -1.26172 -1.00896 -3.81696 -3.40996 -0.739463 -3.10837 -2.24035 -2.79365 -4.24938 -10.0141 -11.146 -8.21556 -11.5566 -9.11589 -9.49399 -13.3786 -8.39692 -6.98944 -7.13794 -7.31526 -7.5513 -7.28645 -8.09896 -7.44152 -7.87646 -7.81969 -6.9172 -7.12849 -7.7979 -7.4809 -7.08964 -6.40882 -6.63721 -7.29221 -6.75602 -6.99475 -7.29973 -9.43586 -8.71413 -8.68007 -9.50812 -8.75154 -9.71337 -9.35331 -9.79151 -8.83192 -10.0656 -8.28457 -9.46832 -9.33155 -8.91655 -9.87217 -11.1631 -10.4725 -10.5874 -10.4394 -10.321 -9.93375 -11.849 -11.3739 -11.0667 -10.3562 -10.8341 -11.9219 -11.3879 -13.5546 -12.8006 -13.0904 -12.8385 -13.2609 -13.4548 -13.0447 -11.9635 -11.4804 -12.5234 -12.1759 -12.5943 -11.8826 -11.6676 -4.77701 -4.07032 -2.27334 -3.21276 -4.03517 -2.5754 -4.48157 -4.21715 -3.48494 -3.64485 -3.78083 -3.76065 -4.00254 -3.88457 -4.50141 -4.21006 -3.83405 -3.91242 -3.94873 -4.25493 -4.54044 -6.51905 -6.9024 -6.81953 -6.59189 -6.5404 -7.17566 -6.32235 -5.72367 -5.87748 -6.26259 -6.12435 -6.05986 -5.86931 -5.80453 -3.08083 -3.06269 -2.81435 -3.35479 -3.05233 -2.80916 -3.37275 -2.68103 -2.20201 -2.41359 -2.10405 -2.5742 -2.4943 -2.26683 -0.731589 -0.335494 -0.620025 -0.12628 -0.734345 -0.647433 -0.288799 -1.23805 -1.56525 -1.10378 -1.54408 -1.16846 -1.17974 -1.61971 -2.86987 -2.92033 -2.54271 -2.40018 -2.42689 -3.04164 -2.84282 -1.23711 -1.25291 -1.83534 -1.66171 -1.70604 -1.35498 -1.22879 -112.233 -124.78 -115.602 -119.567 -117.34 -112.223 -119.283 -101.654 -95.5946 -104.728 -98.1619 -105.396 -101.522 -95.3267 -136.553 -140.143 -143.183 -131.484 -139.843 -144.5 -128.98 439.577 439.423 439.471 439.341 439.626 439.44 439.451 439.519 439.126 439.234 439.341 439.611 439.252 439.371 -133.45 -137.209 -142.164 -147.588 -132.053 -147.301 -163.024 -153.53 -149.83 -150.071 -158.816 -153.323 -159.142 436.769 437.181 437.083 436.157 437.854 436.38 436.399 435.941 434.748 434.901 434.309 435.448 434.924 435.281 -61.9584 -58.8493 -45.5592 -51.0514 -48.2084 -56.8006 -62.6001 -72.0435 -72.0494 -78.7366 -86.4621 -66.3417 -72.0344 -84.5922 4.76937 1.18066 2.99282 3.1778 3.01963 3.55418 4.24186 -14.5838 -10.6217 -12.8199 -9.72832 -14.446 -11.6167 -12.5621 436.055 436.708 436.575 435.859 436.013 436.699 436.012 434.845 434.389 434.054 434.997 435.165 433.648 435.033 326.698 327.82 319.874 281.898 271.205 332.382 326.337 39.0337 36.8211 -176.611 -79.9619 -40.4614 66.9575 -71.939 432.517 432.939 431.124 431.933 431.319 432.376 432.937 285.109 304.392 301.994 274.697 297.88 304.592 175.536 236.227 313.757 337.872 357.577 264.664 308.311 322.356 -58.6955 39.9805 -58.6466 170.768 54.9878 -111.325 28.531 435.043 434.71 434.552 435.039 434.844 434.644 435.048 435.471 435.429 435.736 435.386 435.657 435.161 435.523 433.209 434.17 433.728 433.052 432.924 434.155 432.754 431.515 428.819 430.55 429.289 431.175 429.678 431.181 432.557 432.691 433.332 433.521 432.587 433.19 432.686 -47.2228 -38.2911 -37.7712 -54.3432 -50.2983 -34.1355 -52.6531 -56.9287 -48.8593 -42.6535 -44.5491 -52.1456 -53.9045 -48.5725 -8.20458 -17.8664 -18.4694 -9.8494 -6.51053 -18.5455 -7.71957 5.14842 4.93727 4.00939 2.18347 5.33899 3.23895 3.7195 5.17227 6.7479 3.62487 6.20318 6.5148 4.59343 3.70767 -171.656 -169.035 -177.288 -165.362 -169.958 -175.078 -166.743 -180.791 -174.846 -174.788 -183.113 -174.374 -177.707 0.0029872 -1.0768 1.1962 -2.06179 1.65744 -0.889887 -1.4715 1.23148 0.357993 2.12898 2.7533 3.05625 0.206026 1.2637 -3.65799 -2.98313 -3.51533 -3.01437 -2.92527 -3.64174 -3.70965 -5.67284 -9.13605 -9.3834 -6.58058 -6.19171 -7.46207 -4.51352 -4.26907 -4.89534 -5.0699 -4.48199 -4.49691 -4.40436 -4.16039 -4.30373 -7.61782 -3.79605 -4.97583 -5.69062 -4.11646 -3.28344 -3.4862 -3.73776 -3.44843 -3.89702 -4.01943 -5.11481 -5.79596 -5.8572 -5.42772 -5.57304 -5.24894 -4.45715 -3.94194 -4.71269 -5.3356 -3.72126 -4.49931 -5.22559 -4.6511 -4.31521 -4.95077 -4.55662 -4.50978 -4.83998 -7.55869 -6.94253 -6.68229 -7.44298 -7.49887 -6.67644 -7.55628 -8.59518 -8.72233 -8.46902 -8.14215 -8.03604 -9.19883 -8.51554 -12.2673 -11.9152 -12.579 -11.6367 -12.2471 -12.5154 -11.4401 -11.2148 -9.42554 -9.24231 -10.3397 -10.2173 -11.0225 -10.4147 -12.8564 -12.2008 -12.8127 -12.5549 -12.4095 -12.7516 -12.9187 -12.8991 -12.3443 -11.9665 -12.4594 -12.402 -12.397 -12.8668 -10.0842 -9.21732 -8.65268 -10.0761 -9.86536 -9.07948 -9.71653 -10.9596 -11.6708 -11.3129 -11.4058 -11.6551 -11.1319 -10.8787 -2.07681 -2.04609 0.247045 -1.51377 -2.01301 -0.021187 -2.21285 -2.82125 -2.72453 -2.5962 -2.87462 -2.72081 -2.89781 -2.81944 -2.72259 -2.54106 -2.33312 -2.25107 -2.46921 -2.77994 -2.57266 -6.89269 -7.89981 -7.27058 -6.41756 -6.95684 -7.76621 -6.23714 -6.09535 -5.18991 -5.99373 -5.23846 -6.21163 -5.72333 -4.97562 -5.09723 -4.35617 -4.37753 -4.84922 -4.78188 -4.63038 -5.47286 -5.10929 -5.0109 -5.76552 -4.64734 -5.42272 -4.79345 -5.07276 -2.385 -2.4056 -2.19206 -2.5957 -2.44564 -2.28125 -2.51129 -2.05804 -1.88875 -1.95818 -1.83276 -2.12113 -2.04554 -1.8575 -0.676198 -0.339412 -0.661623 -0.412571 -0.649021 -0.76546 -0.374224 -1.11859 -1.424 -1.03168 -1.39581 -1.07394 -1.16819 -1.39491 -3.46973 -3.65274 -3.6444 -3.43945 -3.49076 -3.7782 -3.37695 -3.01323 -2.47632 -2.59296 -2.87042 -2.96022 -2.5712 -2.85653 -0.869851 -0.308301 -0.772458 -0.338521 -0.81044 -0.779249 -0.381705 -1.39413 -1.72919 -1.67646 -1.2851 -1.8411 -1.28608 -1.28255 -8.12194 -8.0303 -7.88672 -8.30232 -8.29811 -7.84025 -8.05098 -8.1318 -8.36638 -8.25 -8.257 -8.10893 -8.15366 -8.13758 -8.40295 -8.3983 -8.28983 -8.15278 -8.19518 -9.95052 -8.95457 -9.16165 -9.29824 -9.90459 -9.26184 -9.78213 -11.7915 -10.3849 -13.5754 -12.8305 -11.3623 -11.1497 -15.2007 -8.70931 -8.49599 -8.18907 -8.62337 -8.33457 -8.66272 -8.37416 -8.17709 -8.13157 -8.24599 -8.30085 -8.22398 -8.09052 -8.13405 -10.9302 -11.2169 -10.7034 -10.8537 -11.2009 -10.9154 -10.6363 -10.27 -9.37274 -9.30089 -10.0067 -9.67394 -10.1415 -10.1741 -8.06137 -8.27765 -8.55558 -8.4507 -8.26497 -7.72472 -8.40877 -8.09517 -8.16873 -8.16379 -8.20112 -8.07009 -8.15086 -8.40883 -8.31146 -8.40673 -8.26338 -8.17927 -8.37203 -7.95101 -7.82588 -7.78008 -7.09385 -7.97079 -9.7474 -8.91579 -9.40154 -9.03508 -9.61166 -8.6641 -9.45395 -9.71159 -10.2037 -9.73719 -9.75526 -10.1551 -9.31003 -8.61793 -9.10454 -8.25066 -9.19282 -10.3597 -9.53353 -10.1873 -9.18572 -9.46244 -10.3016 -10.0615 -10.7936 -10.9327 -11.1407 -10.7004 -11.1883 -10.7832 -10.6012 -10.8257 -10.6655 -10.7242 -10.6806 -10.7486 -5.90025 -4.8925 -5.75062 -5.33693 -5.30272 -5.80573 -5.86795 -6.2759 -6.65176 -6.54139 -6.2999 -6.64026 -6.19742 -6.339 -0.899336 -0.245585 -0.829463 -0.208961 -0.857964 -0.800128 -0.347257 -1.44635 -1.91074 -1.91754 -1.36323 -1.95017 -1.37244 -1.37382 -68.6901 -80.7112 -82.3704 -99.4527 -93.9902 -73.3227 -83.0814 -97.7543 -95.7825 -87.8335 -97.1573 -95.878 -93.8169 -99.0466 -13.7076 -8.35413 -4.37125 -29.1265 -3.92399 -19.5456 -17.1382 -21.0181 -41.7339 -35.1464 -30.2929 -26.1072 -36.0564 -24.7833 -53.5702 -59.7931 -74.2576 -63.3158 -64.0646 -60.8697 -54.7857 -48.9396 -50.5438 -42.8344 -51.272 -45.4267 -53.9595 -46.7658 -50.6139 -73.2697 -63.0963 -59.1704 -49.3687 -46.9735 -32.531 -50.6263 -46.676 -50.714 -40.9501 -41.8518 -73.3638 -84.7419 -81.1031 -86.4014 -75.3955 -63.2792 -60.8875 -58.5255 -74.9653 -73.3275 -83.0609 -107.933 -98.4643 -102.335 -88.0601 -133.701 -132.291 -133.939 -140.243 -135.615 -129.916 -138.915 -147.574 -152.266 -140.683 -145.951 -150.553 -142.281 -151.388 -71.0073 -62.7581 -81.4898 -80.6839 -69.7043 -67.7856 -87.2336 -74.7954 -95.4919 -74.8988 -92.3444 -73.3389 -77.5956 -95.8239 -78.5151 -71.0343 -76.3387 -94.0854 -69.4378 -91.6703 -74.9822 -79.6903 -93.5896 -71.3201 -86.0466 -77.5434 -90.8638 -74.2683 -113.458 -140.406 -127.72 -136.909 -120.869 -105.255 -120.916 -120.954 -118.179 -118.737 -109.822 -120.979 -105.806 -123.286 -107.791 -126.969 -139.541 -118.37 -153.374 -127.303 -141.57 -120.968 -134.312 -127.578 -137.148 -136.995 -126.8 -78.5513 -73.3065 -77.5188 -77.0668 -77.9224 -77.679 -79.5598 -77.9719 -86.4797 -83.5727 -78.6574 -80.4566 -79.0825 -79.5363 -84.5582 -78.9978 -80.0198 -76.8432 -81.0858 -79.2468 -75.4239 -75.4915 -78.4608 -78.2633 -37.066 -22.4707 -82.626 -24.1263 -25.5448 -50.8209 -40.5546 -53.3344 -62.8373 -76.8365 -59.4903 -63.6072 -55.086 -61.7944 -74.5536 -83.3711 -81.5636 -71.7828 -80.7853 -72.2904 -81.3079 -73.4017 -67.4854 -80.4991 -69.007 -75.7908 -69.0276 -70.6353 -158.247 -147.772 -152.926 -149.55 -157.72 -96.1037 -97.0251 -96.8342 -80.0179 -94.8575 -108.104 -91.1209 -178.467 -175.896 -175.875 -199.739 -193.901 -175.588 -176.952 -163.209 -147.911 -162.7 -152.023 -156.415 -162.774 -148.189 439.151 437.729 438.009 438.909 438.368 439.653 438.664 -171.287 -172.473 -173.529 -176.569 -170.165 -174.067 -174.395 -168.251 -168.855 -162.73 -159.22 -167.054 -167.557 -161.107 412.515 366.363 290.134 394.147 360.467 409.066 397.324 413.048 273.341 350.742 367.631 409.73 362.25 380.7 -138.503 -39.6023 58.3027 72.1047 -153.714 -24.8185 49.2329 437.791 433.22 436.006 437.644 436.976 434.211 438.364 438.842 439.973 439.29 439.163 438.489 439.411 439.64 -171.144 -162.595 -166.36 -160.369 -166.619 -171.12 -162.498 -147.949 -153.337 -132.03 -150.484 -143.729 -142.819 -156.741 -165.038 -144.174 -136.594 -149.531 -152.935 -150.191 -156.193 -62.2219 -71.6954 -75.2218 -62.137 -71.4848 -62.5068 -60.1347 -1.09254 -1.32486 -1.21862 -5.31128 -4.21809 -0.930505 -2.29946 -152.04 -158.154 -149.704 -160.252 -154.326 -146.291 -156.562 -152.377 -150.36 -144.986 -155.302 -149.096 -153.752 -150.704 -133.943 -154.639 -143.229 -162.327 -149.853 -134.734 -148.889 -152.725 -169.609 -159.857 -158.699 -150.72 -166.824 -161.939 -177.031 -179.9 -172.24 -175.607 -173.732 -176.999 -179.084 -174.587 -173.553 -171.408 -175.087 -173.519 -174.605 -175.722 -101.387 -112.991 -114.009 -109.535 -114.87 -101.923 -112.074 437.495 436.479 436.904 436.917 436.642 436.813 437.588 -109.216 -112.277 -109.177 -111.065 -108.717 -109.75 -111.84 -179.998 -183.733 -181.769 -186.037 -178.436 -185.34 -182.687 -173.399 -173.303 -162.711 -164.608 -173.336 -173.962 -165.688 -184.446 -170.162 -172.131 -167.518 -174.551 -182.202 -173.196 -47.9098 -61.6969 -59.0716 -46.4497 -60.7198 -48.6068 -49.095 2.83851 4.72607 2.99831 1.1232 0.774199 4.06443 3.67976 -112.836 -107.262 -111.846 -112.224 -109.968 -116.884 -109.633 -131.931 -142.233 -140.465 -132.235 -134.967 -141.181 -165.798 -164.545 -150.433 -154.816 -163.741 -153.136 -164.36 -99.7085 -100.651 -98.0036 -142.135 -136.399 -140.507 -144.251 -134.509 -141.145 -141.989 -98.5772 -87.9657 -94.7379 -87.4702 -93.8182 -84.3856 -101.775 -94.67 -88.9769 -94.9419 -94.7625 -80.5709 -115.197 -111.7 -123.646 -99.794 -121.825 -106.663 -110.299 -120.384 -138.166 -133.39 -121.734 -127.606 -117.362 -132.377 -39.0965 -5.43394 -24.6271 -18.7113 -17.3339 -19.3355 -82.512 -66.2214 -79.8313 -76.3344 -73.328 -74.1222 -66.9307 -78.5115 -53.671 -65.3848 -48.61 -40.4244 -37.7971 -62.8574 -61.862 -99.8658 -106.133 -98.338 -114.481 -93.2158 -115.878 -108.468 -92.089 -88.585 -109.28 -79.3986 -92.1869 -101.823 -77.6502 -89.4465 -92.2229 -94.8738 -81.1288 -86.8548 -97.0342 -88.0824 -80.3805 -79.2821 -62.0092 -70.6004 -74.5117 -77.2812 -69.7239 -52.1642 -32.3036 -43.3862 -63.6397 -34.8363 -43.9969 -99.195 -86.9956 -104.084 -79.1034 -71.4976 -57.7254 -53.637 -63.7435 -60.04 -117.1 -119.759 -113.773 -112.257 -189.127 -202.526 -180.296 -186.052 -216.053 -177.267 -183.625 -181.471 -170.553 -171.823 -172.025 -175.234 -172.962 -175.884 -152.88 -156.702 -159.533 -143.329 -156.386 -152.418 -141.768 -147.083 -149.53 -140.722 -124.712 -150.072 -138.949 -136.032 -154.354 -157.469 -162.133 -139.235 -170.094 -150.178 -142.352 -122.45 -119.133 -114.833 -125.618 -120.375 -127.019 -119.322 -115.183 -97.7467 -108.492 -105.13 -103.87 -108.398 -112.716 -131.492 -133.892 -127.496 -145.702 -131.537 -137.416 -139.928 -124.68 -136.334 -117.066 -112.125 -109.327 -132.684 -130.325 -158.091 -106.671 -161.286 -114.245 -164.658 -142.343 -118.288 -143.429 -156.168 -176.353 -154.246 -163.127 -167.148 -159.55 -142.005 -130.772 -121.162 -117.555 -136.329 -139.794 -120.962 -130.117 -133.902 -134.935 -130.399 -102.799 -79.5174 -76.7912 -90.8805 -80.4747 -124.004 -114.576 -102.275 -131.411 -127.88 -151.235 -127.289 -126.574 -126.627 -91.6867 -74.2154 -73.9828 -91.6599 -74.0664 -90.5325 -8.87844 -12.2726 -8.38614 -8.63907 -8.02196 -9.62647 -10.2668 -7.5841 -6.79983 -7.09628 -7.2207 -7.07408 -7.19418 -7.69621 -6.82983 -6.88916 -6.82158 -6.64391 -6.60516 -6.93149 -6.73635 -6.94844 -6.98949 -6.89422 -6.93632 -6.88111 -7.91525 -6.81721 -6.54325 -6.59923 -6.90363 -6.5432 -6.87875 -6.71394 -7.27883 -7.06993 -7.29305 -7.15375 -7.23483 -7.26669 -7.09966 -5.56089 -5.45031 -5.50546 -5.69009 -5.67507 -5.49047 -5.76362 -6.90048 -6.48828 -6.49895 -6.60992 -6.75735 -6.50399 -6.11514 -6.19555 -6.34046 -6.12283 -6.21641 -10.2751 -10.7117 -9.95206 -10.4535 -10.6673 -10.3339 -10.0327 -9.10293 -7.26234 -8.731 -8.99929 -7.89806 -9.45061 -8.76198 -9.79976 -9.28989 -9.8034 -8.97746 -9.03669 -10.0111 -9.67954 -10.5802 -10.8196 -11.0013 -10.4912 -10.9081 -10.6201 -10.5283 -5.38794 -5.03855 -5.51369 -5.09307 -4.95766 -5.51307 -5.43185 -5.8573 -6.23542 -6.31732 -6.07472 -6.22045 -5.96164 -5.97285 -0.708871 -0.329432 -0.81782 -0.306004 -0.810676 -0.746095 -0.305867 -1.22557 -2.01959 -1.98182 -1.47011 -2.18796 -1.3666 -1.37685 -12.2762 -12.768 -12.3227 -11.1147 -14.5938 -11.1664 -11.4268 -10.9752 -15.3861 -10.6435 -11.7448 -13.4516 -10.0841 -9.90189 -8.97359 -9.45795 -9.33961 -9.66295 -9.19435 -9.02852 -9.54403 -9.55459 -9.17088 -9.66762 -8.18181 -8.2697 -8.19919 -8.19505 -8.2403 -8.19126 -8.1787 -8.29989 -8.1488 -7.97963 -8.26311 -8.61155 -8.11079 -8.23923 -8.2271 -8.42858 -8.59686 -8.2064 -8.48797 -8.86225 -8.39198 -8.77589 -8.56209 -8.40364 -8.64707 -8.38365 -8.38156 -7.98225 -8.25701 -7.87619 -8.15447 -7.95984 -8.078 -8.11004 -7.95545 -8.19739 -7.92637 -8.1803 -8.2035 -8.04167 -7.92517 -8.01077 -6.83328 -7.95977 -8.24573 -7.84471 -8.19145 -7.67271 -8.00505 -7.31914 -8.10866 -8.21158 -8.42113 -7.41303 -7.78126 -9.58641 -9.98675 -9.69853 -9.87554 -9.63303 -9.57885 -9.9058 -9.0249 -8.02825 -9.0751 -8.71191 -9.07238 -8.89924 -8.41879 -7.97508 -7.94915 -8.01487 -7.96479 -7.90514 -6.6994 -7.87937 -6.88988 -7.6842 -7.79926 -10.469 -10.3914 -10.5428 -10.2608 -10.5024 -10.5464 -10.2795 -10.537 -10.3491 -10.6866 -10.5367 -10.6115 -10.6657 -10.367 -9.74342 -9.29268 -9.55652 -8.94216 -9.84003 -9.36136 -9.24855 -9.70759 -10.8237 -9.87148 -10.3975 -9.97123 -10.0581 -10.3058 -7.14265 -6.94087 -6.95351 -6.58715 -7.08372 -6.68276 -7.87886 -8.58057 -7.47836 -8.13717 -7.18586 -8.01032 -8.44056 -7.45368 -7.06575 -7.15874 -7.26136 -6.89685 -7.63642 -7.23658 -7.40256 -8.01879 -8.16234 -6.70959 -8.17691 -7.01341 -6.43261 -6.63242 -6.56251 -6.36593 -6.6707 -6.45928 -6.03005 -5.46335 -5.91943 -5.42245 -6.05977 -5.90993 -5.48721 -6.48364 -6.72642 -6.37366 -6.79757 -6.44413 -6.41346 -6.78738 -5.93641 -5.38803 -5.49422 -5.87204 -5.89942 -5.43219 -4.15573 -4.60547 -4.09048 -4.62356 -4.15577 -4.09269 -4.60993 -3.59358 -2.88361 -3.51777 -2.93012 -3.49583 -3.60243 -2.96246 -0.887809 -0.351362 -0.839076 -0.195836 -0.910948 -0.834076 -0.30435 -1.50189 -2.01883 -1.42756 -2.0775 -1.48458 -1.43134 -2.07087 -10.9344 -15.0274 -10.8586 -10.8397 -10.1144 -11.9575 -12.4183 -9.41962 -8.89808 -8.83774 -9.75465 -9.83534 -8.75808 -9.47764 -8.66305 -9.60388 -8.70604 -9.28907 -9.83041 -8.79908 -8.06157 -8.45578 -8.1683 -8.18774 -8.19605 -7.97613 -7.95443 -6.90965 -7.10065 -8.32175 -7.75105 -7.67574 -8.99195 -7.88691 -7.84215 -9.26368 -8.20665 -8.76899 -10.7815 -10.6673 -10.3257 -10.5716 -10.7124 -10.8775 -10.584 -10.131 -10.0402 -10.1083 -10.3425 -9.9194 -10.3927 -10.0593 -7.64146 -6.74811 -7.19659 -7.18238 -7.2618 -7.23299 -7.28754 -6.51367 -6.43984 -6.76425 -6.79758 -6.4556 -6.83914 -6.4654 -3.70959 -3.50558 -2.90757 -2.91878 -3.57925 -3.55622 -3.0042 -1.52215 -1.41767 -2.02425 -2.04337 -1.43144 -2.10089 -1.43736 -10.078 -8.19055 -2.71536 -18.2202 -5.15522 -10.1118 -13.0838 -10.9231 -1.83012 -4.0356 -14.2513 -3.94624 -9.5368 -17.9091 -16.7384 -22.1559 -18.829 -17.2133 -22.0001 -18.1548 -16.2107 -17.8273 -17.0111 -23.2512 -14.3491 -20.086 -18.5184 -30.3428 -32.4872 -32.2384 -29.6237 -34.3458 -27.499 -31.3909 -27.3064 -25.8946 -25.1178 -29.8858 -29.0803 -27.1166 -26.2684 -29.3653 -27.6437 -25.2927 -24.9134 -21.1798 -24.0171 -24.5529 -23.3133 -23.2546 -25.046 -34.531 -33.657 -36.9591 -33.0712 -34.3567 -35.9145 -35.7078 -40.6127 -34.8546 -36.4023 -31.7164 -28.7518 -28.7257 -31.7527 -28.9607 -31.2605 -32.9575 -24.7583 -24.3618 -17.6289 -23.083 -19.3071 -22.6486 -27.6522 -29.4315 -33.3975 -35.2709 -36.9194 -30.6891 -32.3836 -33.4922 -26.3416 -26.8606 -24.7091 -28.3148 -24.7763 -28.4871 -28.8428 -38.6696 -36.7869 -35.6157 -31.7958 -34.0374 -39.5623 -36.3831 -43.6053 -39.6555 -38.7148 -38.4615 -29.35 -34.1813 -33.2129 -34.2878 -23.7345 -27.4304 -24.9423 -28.9547 -28.0757 -29.6141 -22.7561 -44.343 -36.1701 -38.9531 -34.1058 -45.3145 -38.2875 -38.1348 -51.1871 -72.326 -64.5292 -58.0525 -49.0832 -40.7767 -47.122 -59.3422 -42.3623 -47.5158 -42.3802 -52.6807 -43.9386 -52.2658 -40.2342 -50.7152 -18.7096 -26.584 -23.0271 -22.4909 -29.8747 -22.4264 -16.3463 -22.2152 -26.1482 -21.2852 -20.7516 -23.0323 -13.2088 -17.0728 -8.0788 -1.33221 -4.38715 -32.0923 -8.00856 -30.5572 -29.6422 -35.8076 -26.7084 -37.6311 -25.111 -30.6419 -33.8796 -32.167 -24.4345 -27.4756 -28.5075 -34.3442 -37.9908 -40.0448 -36.1052 -41.2584 -33.3491 -35.9335 -55.6053 -51.4738 -59.4346 -50.0094 -55.8963 -60.1033 -47.9074 -63.3384 -60.6543 -55.0814 -54.1732 -65.4748 -62.1185 -53.7456 -66.0217 -64.3556 -82.1664 -55.8201 -71.2163 -68.5883 -86.3363 -72.7679 -91.3692 -68.4192 -58.5064 -51.2429 -49.0777 -46.938 -60.9635 -51.6587 -50.2624 -58.3352 -63.0869 -56.078 -54.1266 -58.6329 -63.6778 -52.7107 -70.8299 -73.8259 -96.878 -96.7844 -71.8808 -73.1463 -42.5995 -47.8897 -47.308 -42.0717 -48.3828 -43.7265 -41.179 -42.3658 -37.0086 -35.32 -34.8018 -41.0982 -39.1095 -44.3808 -39.7013 -37.9433 -42.594 -36.4215 -39.7446 -41.0209 -48.7504 -46.5252 -41.1064 -47.6751 -42.3235 -39.9057 -37.9003 -38.8003 -34.1195 -39.2651 -33.6278 -34.0812 -43.4875 -43.7422 -29.167 -31.91 -47.8912 -35.8033 -100.995 -132.797 -132.801 -118.056 -102.662 -124.141 -119.457 -91.9295 -103.385 -119.122 -86.0621 -93.9028 -115.71 -87.3962 -141.389 -144.765 -140.062 -131.146 -148.971 -131.984 -139.119 -151.29 -155.06 -147.155 -146.96 -141.785 -157.395 -149.625 -138.382 -115.595 -128.889 -129.56 -127.738 -128.438 -134.649 -52.0774 -29.8117 -74.6983 -51.5832 -63.6571 -48.2783 -38.5682 -60.7612 -88.2268 -76.5372 -85.5627 -76.9417 -75.0113 -55.5118 -105.063 -126.678 -125.524 -129.197 -118.824 -112.017 -117.832 -79.5827 -69.5718 -79.1105 -59.1906 -70.8614 -85.4399 -66.613 -95.0478 -97.6598 -114.868 -93.0465 -109.134 -84.5429 -102.441 -163.366 -162.058 -161.115 -163.974 -163.823 -162.801 -160.932 -164.387 -160.949 -151.105 -160.113 -161.984 -163.604 -156.149 -161.439 -152.203 -160.514 -162.194 -162.275 -156.334 -156.109 -162.983 -153.908 -158.748 -162.041 -163.404 -160.224 -159.161 -161.622 -147.753 -157.196 -146.378 -154.555 -144.634 -166.598 -120.348 -128.221 -128.55 -141.751 -114.814 -134.144 -131.492 -106.13 -106.046 -117.089 -90.7407 -104.084 -120.286 -92.4684 -122.244 -132.035 -147.277 -134.104 -134.654 -120.254 -138.054 -99.0112 -97.1803 -105.279 -87.6238 -100.278 -102.314 -86.6841 -115.522 -126.336 -131.399 -123.164 -126.835 -114.402 -120.326 -137.969 -130.122 -127.71 -135.557 -128.513 -145.567 -141.739 -147.741 -162.635 -159.235 -167.399 -158.581 -152.99 -156.975 -132.304 -127.105 -131.769 -145.146 -126.41 -137.051 -140.094 -151.209 -146.788 -165.761 -156.661 -156.159 -156.942 -154.71 -86.0686 -100.068 -81.5167 -75.8796 -98.618 -88.5135 -63.2752 -71.621 -62.4052 -62.5463 -42.8448 -62.7869 -74.1971 -52.8829 -118.922 -112.759 -119.01 -89.5103 -128.604 -102.501 -104.145 -113.87 -96.4171 -102.375 -82.1278 -98.0131 -112.315 -97.4572 -132.886 -130.322 -142.061 -119.034 -142.067 -114.036 -130.483 -100.817 -75.0586 -72.2864 -74.4368 -85.8907 -88.8733 -85.6837 -173.013 -173.336 -172.963 -170.783 -171.412 -174.154 -172.229 -177.582 -181.251 -180.361 -177.3 -175.495 -176.138 -182.461 -176.84 -179.537 -172.97 -176.399 -176.295 -174.455 -179.501 -168.584 -163.753 -163.252 -148.615 -166.705 -173.42 -163.968 -148.473 -158.111 -154.247 -135.391 -159.627 -145.201 -137.235 -128.354 -92.1243 -105.863 -96.9662 -109.229 -109.484 -115.765 -148.496 -151.865 -145.303 -123.453 -160.201 -130.352 -134.637 -128.274 -113.671 -104.967 -99.164 -110.48 -122.79 -117.616 -136.641 -158.386 -146.079 -131.8 -155.451 -144.66 -126.591 -94.9064 -78.5788 -73.3429 -81.0463 -80.704 -94.5009 -81.1874 -118.923 -132.673 -125.437 -95.7366 -106.73 -133.858 -114.261 -112.155 -108.222 -101.927 -88.2271 -120.346 -103.717 -95.9377 -33.3789 -37.7221 -34.1098 -29.3663 -38.5209 -40.4409 -26.8534 -28.4418 -19.0877 -31.9562 -18.5457 -53.4524 -64.0322 -59.7225 -51.6379 -67.3603 -48.8481 -45.7229 -59.1788 -48.3783 -49.9449 -41.2791 -34.6966 -41.0617 -37.0368 -19.0951 -27.1869 -19.3891 -25.0327 -20.4159 -23.9833 -19.3031 -33.7162 -39.2464 -42.9434 -39.1982 -38.2618 -36.9799 -35.1454 -31.4262 -32.7248 -34.8969 -29.4872 -35.1576 -28.6509 -31.3742 -68.6926 -85.8477 -65.1834 -68.3128 -64.1528 -75.8116 -75.8128 -94.4158 -71.7528 -82.3934 -78.6142 -75.1892 -86.3021 -72.3139 -76.1837 -40.7953 -38.751 -43.6944 -46.5547 -38.585 -46.304 -41.7531 -42.1835 -49.4734 -50.4101 -44.2032 -48.5602 -41.9082 -43.4179 -37.0059 -33.3132 -36.0866 -44.4347 -32.5197 -41.4325 -39.3171 -38.2589 -45.0791 -43.7968 -40.3143 -42.77 -39.4511 -39.6515 -37.7632 -31.6675 -28.7641 -32.8485 -33.0508 -34.6604 -34.243 -42.3835 -47.1225 -37.3892 -40.5799 -37.0172 -42.2403 -46.8797 -40.8331 -34.5681 -38.298 -40.4665 -41.2001 -36.8256 -39.6847 -17.4064 -15.7399 -22.409 -21.8276 -17.4487 -17.3229 -23.3416 -28.8947 -32.7753 -28.5819 -35.6204 -34.4575 -27.7719 -27.2537 -26.5784 -25.5682 -28.256 -29.0518 -26.2913 -34.3991 -40.041 -36.4852 -40.6403 -35.6703 -11.9819 -5.65746 -3.25399 -15.8342 -4.89104 -19.5565 -11.3204 -17.9578 -21.0527 -18.2916 -18.7154 -18.4813 -21.1514 -16.2946 -29.8821 -29.7043 -32.6801 -33.1125 -29.8476 -29.2139 -27.542 -25.4239 -23.2063 -31.7526 -24.786 -26.2944 -51.0241 -57.6721 -52.5136 -57.4408 -49.5218 -51.9686 -59.5789 -41.7433 -37.9219 -39.0285 -44.3932 -37.8945 -40.3418 -35.1026 -39.7988 -37.972 -36.9123 -39.0265 -41.1506 -35.5059 -39.7118 -37.0447 -36.6259 -32.1528 -41.3269 -34.9829 -37.0879 -39.593 -37.012 -35.3811 -32.614 -36.3728 -35.2303 -35.696 -36.7617 -34.3845 -29.1911 -30.4677 -33.8596 -30.3247 -28.9854 -28.5001 -30.1254 -33.2609 -30.2808 -34.538 -29.9444 -29.9311 -21.8098 -16.1355 -17.2724 -22.2357 -17.1192 -23.7525 -20.3984 -24.8742 -31.1347 -29.1025 -26.6889 -29.5943 -26.7642 -25.097 -7.39623 -7.60883 -7.76181 -7.54573 -7.4433 -7.44527 -7.60636 -7.37939 -7.4125 -7.53992 -7.48859 -7.22131 -7.38648 -7.52863 -10.8223 -12.6663 -9.49301 -11.784 -9.96398 -10.4418 -8.54643 -7.86153 -8.07196 -7.78511 -8.35473 -8.59101 -7.82843 -7.16507 -7.13399 -7.11389 -7.33723 -6.91113 -7.22241 -7.2087 -7.21146 -7.46984 -7.12501 -7.32272 -7.14295 -7.26333 -7.45095 -8.96737 -9.0213 -8.21769 -8.55503 -8.36981 -7.80037 -7.90943 -7.96525 -7.81608 -7.97987 -7.41228 -7.34956 -7.54846 -7.43115 -7.4306 -7.41715 -7.37735 -7.42336 -7.4297 -7.76835 -7.35926 -7.54126 -7.48503 -6.94897 -9.71568 -9.79693 -9.44081 -9.61867 -9.52252 -9.28275 -9.96287 -8.33478 -7.84313 -8.69147 -7.66713 -8.55861 -8.49927 -7.05865 -7.84947 -7.71991 -8.16666 -7.28968 -7.81568 -7.56251 -7.50827 -8.60452 -9.04204 -8.67523 -7.34982 -9.10278 -7.8251 -8.659 -10.5669 -10.2382 -10.8607 -10.5232 -10.8099 -10.6259 -10.1686 -10.755 -10.8635 -10.9879 -10.7833 -10.9035 -10.8131 -10.7808 -10.2415 -10.5487 -10.3464 -10.2942 -10.49 -9.77142 -9.23638 -10.0117 -9.49232 -9.78162 -9.94846 -9.25133 -10.3103 -10.7094 -10.4984 -10.6336 -10.2968 -10.447 -10.5738 -9.75197 -9.83766 -9.31806 -9.83595 -9.18857 -10.8263 -10.9502 -10.9115 -10.8476 -11.0037 -10.8891 -10.7749 -10.3378 -10.3591 -10.7336 -10.6361 -10.4308 -10.5904 -10.3374 -6.46797 -7.23485 -6.71643 -7.24502 -7.02856 -7.72154 -8.4564 -8.34277 -8.73444 -8.1734 -7.75005 -8.36749 -6.87734 -7.40618 -7.7329 -7.17264 -7.59111 -7.16816 -7.16005 -7.54252 -7.67045 -8.44498 -7.75615 -8.27386 -6.51387 -6.9428 -6.63607 -6.58834 -6.83702 -6.0142 -5.49514 -6.12761 -5.66054 -5.96602 -6.15268 -5.58054 -6.56504 -7.07439 -6.64108 -6.89487 -6.51099 -6.71163 -6.90482 -5.99612 -6.0889 -5.59892 -6.05879 -5.55559 -7.18346 -7.19936 -7.27102 -7.00753 -7.6465 -6.57948 -7.19137 -6.53857 -6.50132 -6.92177 -6.82248 -6.53429 -6.93922 -6.49108 -3.5403 -3.09271 -3.5977 -3.57697 -3.02061 -4.2939 -4.73327 -4.22157 -4.84353 -4.32589 -4.19798 -4.78132 -3.56429 -3.0889 -3.61295 -2.96178 -3.64138 -3.53064 -3.0401 -4.25105 -4.33715 -4.75131 -4.26806 -4.75927 -0.872972 -0.334518 -0.962647 -0.37252 -0.869957 -0.937081 -0.356741 -1.53641 -2.22545 -1.61818 -2.15379 -1.51567 -1.62349 -2.14926 -3.62685 -3.57951 -3.04341 -3.00484 -3.65913 -3.55679 -3.00621 -1.50725 -1.55164 -2.21099 -2.13064 -1.6033 -2.12396 -1.51465 -7.80698 -7.73181 -7.81146 -7.90008 -7.68005 -8.09961 -8.16464 -7.98325 -8.02022 -8.33082 -8.59993 -8.33805 -8.27009 -9.1471 -8.17582 -8.9739 -10.2056 -14.3099 -14.0259 -11.4629 -11.3183 -11.9184 -7.6663 -7.98239 -7.89967 -8.28742 -7.77532 -7.65404 -7.45752 -7.46844 -7.54305 -7.27183 -8.11248 -7.45838 -13.4324 -9.61374 -13.6913 -10.9694 -10.6935 -7.89305 -8.00817 -7.65882 -8.65238 -8.31555 -7.44014 -7.36168 -7.3387 -8.05348 -7.14862 -7.65334 -7.58192 -7.23447 -7.32112 -7.34569 -7.34364 -9.86628 -10.1954 -9.93907 -10.4168 -10.2767 -9.80451 -10.0175 -9.13481 -8.72067 -8.49279 -9.34102 -8.29889 -9.16983 -9.35851 -8.32805 -7.96851 -7.93902 -8.14978 -8.00361 -8.56136 -8.0797 -8.17643 -7.98591 -7.91188 -7.8478 -8.04418 -8.02889 -8.01045 -9.77675 -8.92796 -9.5978 -9.16562 -9.64116 -9.22881 -9.91939 -10.4386 -10.3643 -10.6594 -10.9885 -10.2667 -10.585 -10.8573 -7.93551 -7.65797 -7.76076 -8.19676 -7.72558 -7.99732 -8.00078 -8.25237 -8.47355 -8.83657 -8.85736 -8.2707 -7.77756 -8.5409 -11.2871 -12.0221 -11.5173 -11.4174 -11.045 -11.7119 -11.6798 -10.4416 -9.57006 -10.6705 -9.99525 -10.3661 -9.39036 -10.8956 -9.51739 -8.94212 -9.79037 -9.0141 -8.9119 -9.54846 -9.64919 -10.1471 -10.6065 -10.4852 -10.2733 -10.5192 -10.0961 -10.22 -11.5512 -11.0846 -11.3968 -11.3542 -11.2734 -11.3151 -11.5586 -11.4516 -11.392 -11.0212 -11.3488 -11.2406 -11.2522 -11.5621 -10.6212 -10.7252 -10.4768 -10.9488 -10.3924 -10.9595 -10.5863 -10.2635 -9.81221 -9.08091 -9.17314 -9.8587 -10.0184 -9.40518 -12.2269 -12.2993 -11.8542 -12.3042 -12.0641 -11.9843 -12.5052 -12.1628 -11.7357 -12.3239 -12.1768 -11.9164 -11.945 -12.4389 -10.0287 -9.30125 -9.2456 -10.3416 -10.0348 -9.23577 -10.1789 -10.9262 -11.3165 -11.0704 -11.6453 -10.7995 -11.4594 -11.0392 -5.78824 -5.35312 -5.89727 -5.31905 -5.33167 -5.84757 -5.79724 -6.33701 -6.73165 -6.81028 -6.3894 -6.70176 -6.39452 -6.32507 -7.61427 -7.0159 -6.62842 -6.96153 -7.17846 -7.12344 -7.14527 -8.03216 -7.13692 -8.17381 -8.17826 -7.51216 -8.54881 -7.49649 -6.25668 -6.5869 -6.16918 -6.50672 -6.23993 -6.58731 -6.16377 -5.94097 -5.69216 -5.25668 -5.19311 -5.80989 -5.72674 -5.31398 -6.9526 -8.13083 -8.21357 -7.78224 -8.04891 -7.38165 -7.25686 -6.39201 -6.7964 -7.12231 -6.6456 -6.92269 -6.60544 -6.73854 -5.39995 -4.94678 -5.06309 -5.49305 -5.51381 -4.99097 -5.37001 -5.94296 -6.41969 -5.93964 -6.26502 -6.01954 -6.29087 -5.87286 -0.783887 -0.20947 -0.908881 -0.20067 -0.801475 -0.782241 -0.136985 -1.3943 -2.06303 -2.08403 -1.5123 -2.02393 -1.42511 -1.4065 -3.64027 -2.84038 -3.40582 -2.79626 -3.49504 -2.92185 -3.44617 -4.0613 -4.02474 -4.51499 -4.44978 -4.04785 -4.51052 -3.98712 -1.49054 -2.01631 -1.98848 -1.3657 -1.39356 -2.05682 -1.38169 -0.933661 -0.775195 -0.198432 -0.204696 -0.794457 -0.785577 -0.346864 -3.85741 -4.26002 -4.39884 -3.80839 -4.32448 -3.89196 -3.79257 -3.2421 -2.73471 -3.29359 -2.68396 -3.29883 -2.71827 -3.229 -0.736419 -0.189009 -0.859267 -0.175148 -0.754498 -0.760957 -0.0890636 -1.34904 -1.99495 -1.42283 -1.96459 -1.3671 -1.95026 -1.34051 -14.1132 -13.9956 -18.1673 -17.9311 -16.7727 -16.0098 -14.6692 -17.6497 -19.5778 -18.5883 -18.1387 -17.1977 -18.9023 -18.7833 -18.5631 -22.191 -20.0747 -19.1996 -18.1198 -20.7923 -19.8702 -14.9578 -16.9939 -17.6055 -16.8164 -16.6369 -16.4033 -14.792 -20.8641 -21.568 -23.5629 -19.5961 -21.7309 -21.5371 -22.3744 -24.0381 -24.3023 -26.6523 -23.8885 -22.4957 -23.4395 -21.3424 -19.8108 -20.9218 -23.0052 -19.9461 -22.1398 -20.3496 -22.388 -27.8138 -27.4631 -24.7252 -25.4206 -23.7273 -17.0968 -3.57867 -6.51975 -9.99602 -8.69347 -6.02808 -15.799 -20.3419 -17.9682 -17.6584 -15.0146 -14.8281 -20.5115 -17.0743 -26.8508 -25.6297 -24.2833 -22.7495 -23.9913 -27.0328 -25.3634 -26.7745 -20.1148 -20.3349 -21.3129 -21.8467 -22.7884 -23.5084 -12.0248 -5.48578 -10.5588 -8.27275 -11.4527 -11.2521 -9.18637 -7.61329 -2.31937 -13.1719 -14.0333 -21.6353 -15.5282 -16.9703 -14.9991 -17.5114 -16.0952 -15.5389 -19.6737 -17.278 -16.5271 -15.7818 -18.1356 -19.7475 -23.9146 -21.4084 -26.0636 -21.273 -21.6912 -21.6718 -23.0081 -20.9119 -23.0897 -22.4851 -20.5479 -17.8176 -20.8551 -18.3131 -19.8921 -19.7577 -19.5133 -18.2514 -17.9908 -20.5062 -24.2207 -23.6273 -15.3391 -18.1177 -15.804 -17.3641 -14.6644 -17.474 -17.2955 -10.1673 -14.4056 -6.24728 -2.01439 -4.56276 -11.6692 -17.4206 -22.093 -18.7812 -19.6171 -21.7122 -25.9876 -19.3434 -23.0761 -23.4976 -24.4493 -23.1359 -24.5396 -23.0201 -21.947 -25.59 -25.1204 -22.938 -23.8246 -23.5729 -21.8013 -25.1715 -24.524 -14.9482 -29.298 -25.7892 -29.6673 -25.4881 -27.0532 -24.034 -27.4723 -28.0105 -25.2014 -25.8594 -24.3705 -26.2081 -20.4908 -29.6549 -22.565 -23.3185 -22.0864 -21.6676 -23.2119 -23.5538 -21.9769 -23.9516 -23.7556 -20.647 -21.6843 -21.9519 -24.471 -23.8829 -21.4632 -21.2305 -24.216 -22.0114 -24.5427 -21.8145 -21.4654 -19.7736 -20.0266 -21.1514 -19.4715 -12.3507 -16.0993 -17.2121 -16.2519 -19.4409 -15.1843 -20.1163 -16.4 -15.7401 -17.857 -45.3611 -21.1969 -19.8477 -21.4968 -18.0075 -18.7717 -17.7589 -21.1442 -20.5026 -23.1654 -22.9447 -18.2532 -21.0564 -21.0178 -21.6365 -24.2813 -23.0566 -22.3917 -23.7867 -23.5497 -21.1609 -22.4662 -24.8421 -24.9751 -23.2608 -23.1524 -24.5364 -17.9775 -21.0856 -22.2607 -22.2384 -19.5658 -19.3107 -19.3036 -15.2174 -15.4416 -12.8747 -10.2193 -16.4237 -14.634 -10.7793 4.75533 4.24781 -1.82754 -0.162743 4.01597 -5.72498 4.29461 -27.5594 -30.5344 -43.6751 -41.3896 -25.8562 -33.2661 -38.0156 -24.9253 -30.5398 -37.5416 -21.7536 -25.4692 -33.6856 -21.9129 -49.1014 -58.762 -49.9079 -47.9567 -56.3323 -44.1346 -51.3646 -47.8735 -61.1689 -47.1146 -49.3758 -43.5237 -51.8944 -54.5024 -42.88 -35.4738 -42.5413 -40.9523 -38.6287 -39.0644 -45.0073 -16.4012 -15.8327 -26.5945 -22.3301 -23.4317 -17.0155 -15.5709 -17.5043 -27.2071 -20.6012 -28.4583 -19.6933 -25.0293 -18.1042 -35.7659 -46.184 -41.5112 -43.6763 -38.6009 -38.5343 -40.351 -29.6494 -29.8161 -30.3048 -25.6961 -27.1253 -31.6211 -27.9935 -32.1362 -31.5234 -36.8041 -32.6289 -34.6809 -29.2423 -34.2504 -67.803 -90.0346 -76.3511 -78.2173 -79.8099 -77.0508 -67.093 -57.5586 -58.345 -48.9885 -58.5879 -64.3116 -53.9762 -52.4932 -59.2953 -53.7391 -67.0856 -62.4565 -68.8351 -58.7623 -53.8094 -62.7323 -77.3513 -73.2666 -71.4728 -68.3793 -64.7505 -74.2983 -53.8949 -51.5716 -62.1192 -56.2768 -57.1622 -49.8573 -59.4139 -42.8597 -43.7068 -43.1942 -51.2174 -40.1799 -46.0768 -47.4516 -39.8436 -42.7703 -45.0739 -37.2607 -39.7056 -45.5347 -37.1842 -43.9002 -47.1725 -54.704 -50.2141 -47.1552 -43.972 -50.657 -36.2123 -38.383 -41.4695 -35.4465 -37.9949 -39.2691 -34.2421 -40.4519 -44.8473 -47.1614 -46.3116 -43.5582 -41.6803 -45.6011 -57.2576 -41.7309 -44.7513 -45.5381 -48.129 -49.5015 -53.2515 -74.1505 -80.8335 -69.2003 -64.7747 -73.4485 -81.626 -62.0644 -65.7891 -47.5582 -61.3896 -62.8142 -55.5702 -72.1621 -56.3973 -64.5436 -50.2366 -56.6379 -59.3023 -64.1161 -54.65 -59.816 -32.7634 -34.6476 -23.8583 -27.2597 -34.6035 -32.4192 -22.0962 -30.4403 -25.4623 -28.5692 -20.0387 -29.3063 -30.0185 -21.0006 -44.3436 -39.7108 -40.5615 -32.7882 -47.2469 -37.0224 -37.6151 -44.5055 -42.0487 -39.0277 -35.2431 -37.5118 -44.4368 -41.9359 -49.085 -43.9812 -52.2371 -42.8116 -52.4827 -40.7402 -48.9238 -40.4565 -30.1551 -32.0261 -32.5864 -33.7915 -34.6675 -38.4596 -65.1188 -60.727 -62.6338 -53.766 -68.2712 -59.3469 -59.516 -65.8009 -60.2328 -68.8586 -47.9101 -59.9786 -70.2271 -62.6027 -74.3803 -70.0011 -84.8582 -73.9185 -78.2775 -80.1874 -67.9553 -58.2021 -49.2334 -39.4222 -46.5247 -49.3025 -54.7728 -52.769 -54.8612 -55.85 -51.0311 -46.647 -58.7219 -52.5153 -47.2405 -43.6766 -41.4325 -39.8945 -38.6135 -40.5622 -43.423 -41.504 -49.2833 -49.8341 -50.3583 -44.1136 -53.6001 -47.5456 -46.0009 -48.9449 -41.6447 -44.2019 -39.7823 -46.0897 -46.677 -42.7126 -47.7568 -54.4388 -46.7919 -45.1907 -51.7957 -50.6901 -42.9752 -42.5303 -39.8685 -42.2137 -35.3581 -45.0649 -38.1949 -39.6303 -23.5502 -21.8473 -21.4941 -23.1445 -22.1273 -23.0466 -22.8223 -25.8313 -35.0507 -33.857 -29.6998 -26.9178 -26.8299 -24.3257 -25.9723 -27.8906 -23.3081 -25.8795 -24.7053 -24.6234 -24.6085 -29.6571 -24.9555 -26.8242 -24.7645 -23.2994 -22.573 -15.6274 -19.41 -18.4854 -16.9087 -17.8591 -22.1443 -26.7592 -22.201 -21.8316 -20.5842 -24.6511 -23.4504 -23.3854 -16.1407 -14.6348 -23.1605 -16.8504 -18.283 -14.3007 -18.2178 -14.1631 -15.755 -19.8865 -19.0253 -17.7001 -14.5306 -15.1103 -14.6548 -9.07698 -5.85234 -5.33769 -7.07121 -16.0328 -9.99681 -21.224 -22.0332 -24.0258 -19.6594 -22.5268 -20.8711 -20.7276 -20.3603 -21.4049 -20.8555 -19.4838 -21.1185 -27.1811 -33.0446 -32.2749 -21.5462 -34.8672 -31.8172 -27.7392 -30.9498 -34.9274 -29.3397 -32.3778 -28.9487 -26.3382 -24.6985 -26.7568 -24.7415 -24.1458 -26.6499 -27.1071 -24.4655 -21.3895 -25.0269 -23.1265 -23.2344 -27.2146 -21.7231 -23.8976 -25.344 -27.4351 -23.5477 -26.4129 -23.2316 -24.9472 -23.1739 -23.549 -22.6812 -24.9513 -22.0373 -23.8006 -24.7323 -26.2727 -23.7884 -23.9282 -24.9025 -23.6546 -20.0102 -21.2839 -24.4555 -22.1287 -22.6205 -19.9794 -22.2666 -19.1555 -19.2466 -22.6903 -20.2103 -21.7996 -19.7947 -18.3216 -18.658 -19.3548 -16.737 -14.8741 -16.0553 -20.1966 -17.8769 -21.9586 -23.9884 -22.7529 -21.508 -22.2121 -24.3134 -21.0387 -18.3889 28.6178 -22.5749 -6.57387 -15.8703 -34.2279 -4.97158 -13.1188 -9.1721 -6.98242 -12.0809 -13.4829 -8.58478 -11.059 -18.5693 -17.3801 -20.7466 -18.0076 -17.9942 -15.2993 -16.5309 -16.0375 -15.3075 -17.5664 -16.0552 -15.0386 -24.569 -24.4899 -22.0381 -21.7739 -22.5782 -22.0559 -21.0494 -19.9649 -20.3755 -20.1208 -20.9524 -23.1225 -24.4985 -18.5888 -23.7463 -20.9159 -20.7996 -23.8198 -24.9944 -22.0171 -22.3718 -23.4951 -21.8832 -21.8965 -19.279 -20.95 -22.7895 -21.2156 -19.8631 -19.9157 -21.171 -21.3797 -20.3036 -23.1977 -19.6365 -17.813 -19.828 -18.6817 -19.4509 -19.8142 -18.6427 -13.6101 -10.6877 -9.81267 -13.0038 -11.1082 -12.8533 -14.2341 -19.9219 -19.3949 -21.7577 -18.0618 -20.7864 -16.8881 -16.386 -19.6559 -15.8617 -19.1077 -15.2884 -18.1836 -9.59435 -8.12136 -9.26593 -8.68891 -7.92932 -9.96883 -9.26276 -8.14258 -8.9096 -8.03851 -11.092 -10.8569 -11.5142 -10.1287 -13.4976 -7.99752 -7.61522 -7.68326 -8.00898 -7.83834 -7.87195 -7.8184 -7.86318 -7.96564 -7.92611 -7.79433 -8.07671 -7.8249 -7.98297 -7.88984 -8.08383 -8.04345 -7.94889 -7.92313 -8.06306 -8.69813 -7.86492 -8.89738 -8.28807 -8.51997 -8.33115 -7.63454 -7.08281 -7.48883 -8.37991 -10.3857 -10.5531 -11.1897 -9.68159 -13.0448 -7.24378 -7.24367 -7.44673 -7.44414 -7.27634 -7.24961 -7.36688 -7.61524 -7.75014 -7.8732 -7.8615 -7.59343 -7.72201 -7.80956 -8.42652 -8.96389 -8.60648 -8.06192 -8.7294 -8.40593 -8.43507 -8.29079 -8.10056 -8.54355 -7.71559 -8.42362 -8.11659 -8.19316 -8.34409 -8.45087 -8.34773 -8.25352 -8.49876 -8.2457 -8.34538 -9.77497 -9.45446 -10.1459 -8.25781 -9.99921 -8.86176 -9.62898 -10.4942 -10.9018 -11.1179 -11.0185 -10.713 -10.6161 -10.8834 -9.07792 -9.56684 -8.81932 -8.54977 -9.15095 -9.36813 -8.86429 -8.65739 -8.5555 -8.29681 -8.31054 -8.66509 -8.27029 -8.57662 -11.1467 -10.2056 -10.5981 -9.16522 -10.8937 -10.0689 -10.5859 -11.9377 -11.3719 -12.0896 -12.0015 -11.674 -11.5509 -12.3741 -11.3818 -11.4614 -11.6987 -11.3661 -11.6529 -11.2641 -11.5408 -11.3806 -11.7287 -11.4969 -11.384 -11.6248 -11.2376 -11.5435 -10.532 -11.1408 -10.6584 -11.0294 -10.7131 -10.9537 -10.5848 -9.90171 -10.006 -9.43662 -9.18397 -10.1717 -9.87382 -9.19483 -12.4749 -12.0945 -12.0899 -12.0055 -12.4016 -12.1918 -12.2833 -12.683 -12.1747 -12.4226 -12.3069 -12.4851 -12.6319 -12.4115 -10.9815 -11.6113 -10.8045 -11.4604 -11.0157 -11.6163 -10.8856 -10.0733 -10.0647 -9.41014 -9.17131 -10.2779 -10.0108 -9.17782 -6.9007 -6.91826 -6.84336 -6.66549 -7.32853 -6.88648 -6.25956 -7.47504 -7.39595 -8.49187 -8.063 -7.93371 -8.25937 -7.27013 -6.17888 -6.52909 -6.05745 -6.44028 -6.13135 -6.59228 -6.10362 -5.67243 -5.57276 -5.18468 -5.17222 -5.71028 -5.57338 -5.22458 -6.39726 -6.52791 -6.66254 -6.31244 -6.95363 -6.36067 -5.94569 -7.06539 -7.25509 -8.33815 -7.87008 -7.66149 -7.98092 -7.00862 -5.68529 -6.12158 -5.86413 -6.05958 -5.7668 -6.02486 -5.74615 -5.25564 -5.41508 -4.90187 -4.9207 -5.39015 -5.30388 -4.84213 -3.46855 -2.91317 -3.39599 -2.91344 -3.47495 -2.93935 -3.4053 -4.06477 -3.98871 -4.50892 -4.49478 -4.01289 -4.56029 -4.04245 -1.6505 -2.22121 -2.17477 -1.61992 -1.68454 -2.22644 -1.61296 -0.894745 -0.86204 -0.378031 -0.315488 -0.988609 -0.886893 -0.282853 -3.23226 -2.78107 -3.32231 -2.83151 -3.32293 -2.77865 -3.26894 -3.78565 -3.87987 -4.27852 -4.2911 -3.81411 -4.23809 -3.85118 -1.51752 -2.12912 -2.09285 -1.56799 -1.60619 -2.06822 -1.54703 -0.853151 -0.865486 -0.379528 -0.305526 -0.971254 -0.879412 -0.306759 -6.32524 -4.94534 -5.9864 -5.83091 -4.72914 -6.32646 -6.82452 -7.14244 -10.9633 -7.96258 -5.94328 -8.60044 -4.50162 -4.48571 -5.38059 -3.94347 -5.37665 -4.61957 -3.72925 -1.62905 -3.67571 -3.91346 -3.35854 -2.90851 -2.82283 -2.90426 -18.8085 -14.9344 -17.0868 -13.7756 -20.525 -18.5378 -16.8728 -17.3801 -19.7625 -22.1594 -20.2242 -20.9092 -20.2307 -4.42807 -4.28984 -4.48385 -3.93701 -4.13432 -4.61129 -4.21187 -4.69054 -4.61103 -5.12713 -4.76173 -4.78522 -4.90145 -4.46614 -1.8809 -3.4172 -2.8765 -2.74719 -3.18874 0.111821 -3.76742 -3.81378 -3.34103 -3.86798 -3.61021 -3.53014 -3.74571 -3.77321 -3.53085 -3.81157 -3.58925 -3.59625 -0.711959 -0.195535 -0.778109 -0.139412 -0.726248 -0.718519 -0.0940411 -1.22568 -1.61765 -1.74871 -1.25128 -1.65778 -1.28258 -1.2071 -2.55915 -2.15988 -2.13378 -2.24024 -2.20632 -2.43442 -3.27535 -2.55535 -3.08872 -3.21381 -3.07937 -3.07538 -1.13547 -1.57769 -1.45388 -1.14024 -1.52934 -1.07472 -0.693394 0.0236824 -0.221932 -0.73463 -0.686879 -0.221253 -8.57065 -8.20948 -9.43654 -7.13462 -12.0559 -8.64132 -7.14186 -8.28348 -10.0773 -6.99266 -8.3891 -10.9486 -4.66333 -4.43119 -2.89455 -3.64812 -3.49977 -4.41219 -3.94176 -3.79594 -2.74146 -3.42342 -4.30825 -8.4519 -12.0302 -9.59201 -10.8904 -8.55795 -9.49606 -9.53877 -18.9323 -20.8547 -19.3152 -19.3164 -19.904 -20.78 -18.8918 -18.1495 -17.3361 -17.5089 -19.4172 -16.3774 -20.5943 -18.7425 -9.05833 -9.87959 -8.64818 -8.80482 -9.25187 -9.57407 -8.51852 -12.1252 -12.2282 -13.0382 -12.1784 -12.7031 -12.458 -11.7152 -11.2802 -11.0243 -11.3064 -9.94254 -11.806 -10.4939 -10.9127 -12.8163 -12.3945 -13.2725 -12.8936 -12.6865 -13.2605 -12.6265 -12.7935 -12.4604 -12.7792 -12.0894 -13.1086 -12.2784 -12.4997 -10.6056 -11.7582 -10.7484 -11.6763 -10.7181 -11.7298 -10.5362 -4.65766 -4.42772 -2.69053 -6.13229 -4.88281 -3.21978 -5.84006 -4.62038 -4.64926 -3.0952 -3.98655 -4.59827 -3.70383 -4.63735 -4.20522 -3.75103 -3.80884 -4.00548 -3.92437 -4.30243 -3.99832 -4.46745 -4.6244 -3.95331 -4.0266 -4.09937 -4.52008 -4.53784 -3.19737 -3.30472 -2.98697 -3.50385 -3.16182 -3.04465 -3.50356 -2.68599 -2.29651 -2.46591 -2.20351 -2.7061 -2.51873 -2.31602 -0.73065 -0.198893 -0.666401 -0.358374 -0.69947 -0.802287 -0.201351 -1.25642 -1.68734 -1.14293 -1.51755 -1.17478 -1.25608 -1.68024 -14.7018 -15.3684 -20.9919 -22.6822 -14.6691 -15.0816 -20.133 -14.2968 -18.8724 -21.8684 -13.9704 -14.177 -19.4441 -13.7612 -24.6882 -27.8756 -23.8116 -25.5752 -25.9329 -22.7432 -26.5891 -25.6623 -33.1041 -26.4951 -27.5048 -24.6124 -27.5622 -28.6539 -23.4464 -21.0208 -24.4306 -24.2304 -21.7687 -22.5838 -25.1968 -13.2826 -12.9864 -19.7483 -17.2246 -17.5062 -13.3676 -13.0063 -13.5724 -18.1536 -13.9201 -20.1311 -13.4364 -17.9338 -13.6305 -22.5592 -29.3588 -25.0143 -26.2174 -23.3472 -24.158 -25.2423 -20.1074 -21.1608 -21.5535 -18.5738 -18.9573 -21.7916 -19.6254 -20.8547 -20.035 -23.281 -22.1205 -21.4931 -19.5459 -22.5309 -31.7313 -38.8983 -33.7741 -36.7072 -36.8225 -33.673 -31.9866 -29.073 -31.4178 -26.7828 -29.6795 -31.1338 -28.1033 -27.7088 -29.5519 -28.2669 -34.0941 -32.5821 -34.0492 -29.6587 -28.0967 -28.7237 -33.5478 -31.8395 -33.6508 -30.3995 -30.031 -32.4396 -26.3862 -26.6359 -31.0007 -28.618 -28.0539 -25.3394 -29.1543 -24.8663 -27.5016 -25.0862 -27.9972 -24.1202 -25.9181 -26.9765 -23.7184 -26.5501 -27.6458 -22.9817 -23.8994 -27.4942 -22.8174 -25.0162 -26.308 -30.3425 -29.2015 -26.1154 -25.2382 -29.1338 -20.8275 -22.9999 -25.0675 -21.55 -22.504 -23.3494 -20.1595 -22.2093 -24.7071 -25.9407 -26.6491 -23.2788 -23.6253 -25.167 -32.4161 -24.0724 -26.2628 -26.239 -27.0673 -27.3282 -31.4282 -36.6593 -38.6097 -32.3847 -31.7684 -36.7892 -38.5158 -30.6773 -34.2618 -25.3658 -29.8104 -30.3284 -28.5457 -35.6371 -28.756 -34.5319 -28.0703 -29.8607 -33.0371 -34.3774 -29.2385 -33.2762 -24.2053 -23.2353 -17.2187 -19.6535 -24.6051 -22.8242 -17.3774 -23.4764 -19.1124 -21.8611 -17.0453 -23.2973 -22.2031 -17.0103 -29.2359 -25.0529 -24.9823 -21.8091 -29.852 -24.5115 -24.328 -29.2285 -27.8017 -24.9355 -23.9348 -24.715 -28.6882 -28.3868 -30.5007 -26.5496 -31.1113 -26.021 -31.4547 -25.6804 -30.0682 -28.1011 -20.9909 -23.2108 -22.82 -23.6279 -23.4055 -27.6006 -30.6931 -28.7812 -31.6035 -25.6923 -33.0888 -27.1987 -29.1543 -33.5179 -31.6562 -38.0006 -31.7573 -36.0232 -35.595 -29.7625 -29.8773 -30.7057 -27.274 -25.7877 -31.2647 -29.4767 -26.0251 -26.928 -28.5956 -25.2661 -24.1237 -26.5215 -29.4655 -24.9719 -27.9547 -27.2617 -31.9554 -26.5544 -28.6067 -30.8897 -26.2232 -27.7671 -24.3227 -26.742 -23.5851 -26.5247 -27.6761 -24.5858 -25.7767 -29.3214 -23.7057 -24.3512 -26.9479 -28.2113 -22.5725 -24.1827 -22.8117 -25.68 -20.1755 -26.5885 -21.1239 -23.236 -9.7649 -13.9439 -10.4523 -10.4365 -9.36496 -10.6365 -11.3839 -8.49748 -8.01144 -8.92199 -8.35332 -8.34817 -8.00659 -8.77848 -7.77146 -8.26853 -8.41441 -8.1843 -8.01484 -8.3777 -7.97611 -7.76558 -7.72091 -8.16992 -8.03317 -7.8681 -7.68202 -8.251 -9.58031 -8.99066 -8.92618 -9.37036 -8.93529 -9.48103 -9.45149 -10.6035 -10.8592 -9.78333 -9.99319 -10.3094 -11.085 -9.972 -13.882 -13.8209 -13.7288 -12.9168 -13.3625 -14.2188 -13.3509 -12.9504 -11.6814 -12.1075 -11.1095 -12.4549 -12.0007 -12.3642 -14.6232 -14.1581 -14.0237 -13.8775 -14.4943 -14.1681 -14.2898 -14.614 -13.5925 -14.0205 -13.7426 -14.2874 -13.9336 -14.1468 -8.09344 -8.12322 -6.40235 -8.8597 -7.29254 -6.88271 -10.1193 -6.43909 -6.77874 -5.64289 -6.17256 -5.51476 -12.1629 -7.97902 -10.8408 -8.20318 -9.19272 -4.81183 -6.42839 -4.73054 -4.18727 -6.01121 -3.51554 -5.32598 -4.78207 -4.42677 -4.72248 -5.72384 -5.41254 -3.95217 -5.30566 -19.6742 -20.4888 -19.7219 -21.5219 -19.1888 -9.63755 -8.60918 -10.369 -6.90821 -8.96704 -9.72791 -7.82466 -3.47405 -4.91785 -4.28227 -4.30712 -4.28563 -4.03908 -3.89413 -4.44972 -4.79126 -4.5334 -4.55357 -4.55008 -4.30567 -4.59991 -5.35258 -4.38594 -5.33793 -5.5454 -4.62286 -5.94524 -4.58177 -4.60872 -4.59332 -4.8004 -4.33237 -4.89484 -4.43832 -4.52281 -4.80273 -5.51858 -5.1708 -5.75459 -5.37701 -4.9262 -6.0873 -2.94667 -2.97949 -2.3839 -2.48611 -2.9255 -2.94922 -2.08447 -1.86148 -1.43974 -1.82669 -1.95994 -1.33451 -2.52966 -1.46936 -3.57983 -3.99496 -3.35206 -3.79407 -3.46346 -3.59917 -3.92168 -2.99603 -2.58517 -2.89888 -2.61881 -2.94919 -3.06456 -2.63597 -0.880947 -0.338357 -0.822877 -0.346304 -0.865736 -0.891218 -0.352459 -1.45821 -1.90792 -1.33878 -1.93667 -1.43534 -1.48169 -1.8928 -8.13896 -7.92334 -7.27773 -7.93564 -8.18608 -9.9956 -9.07873 -8.59359 -10.1751 -9.68899 -11.1307 -11.4748 -11.7605 -11.2069 -11.7602 -11.7353 -11.2651 -10.4693 -10.5867 -11.4206 -10.8875 -10.4657 -11.0348 -10.4181 -5.85636 -6.82423 -6.30947 -6.42592 -6.2551 -6.33512 -6.25771 -5.75399 -5.8984 -5.99108 -6.15338 -5.71867 -6.00416 -5.85001 -3.10967 -3.21458 -2.67055 -2.72224 -3.1415 -3.13989 -2.70843 -1.41325 -1.45337 -1.91673 -1.89503 -1.33681 -1.88118 -1.3558 -7.47098 -7.3189 -7.54514 -8.16627 -8.08492 -7.41212 -7.44927 -8.882 -8.69209 -8.73023 -9.40954 -9.21442 -8.44559 -9.46276 -9.90364 -10.3434 -11.0473 -13.6063 -9.86908 -11.6409 -10.9036 -10.0434 -11.4713 -12.5246 -13.9605 -10.6634 -11.3088 -11.4037 -7.88046 -8.23162 -8.02285 -8.34888 -7.99152 -8.02512 -8.07167 -7.75845 -8.42183 -7.49959 -7.67647 -7.99459 -7.94722 -7.61118 -9.28126 -8.433 -8.90871 -8.22498 -9.06337 -9.41211 -9.89426 -9.0698 -8.63123 -8.66636 -9.5752 -9.54425 -9.98305 -9.67648 -10.0802 -10.0807 -9.7919 -8.01102 -8.09532 -7.62444 -7.47151 -8.04891 -8.09692 -7.58008 -7.81039 -7.58805 -7.81514 -7.67812 -7.91927 -7.73178 -7.4743 -8.95343 -8.69912 -8.9029 -8.17231 -9.17974 -8.56859 -8.85324 -9.51405 -9.60078 -10.0976 -9.8233 -9.78788 -9.45859 -9.91272 -10.2584 -10.3907 -10.1382 -9.97678 -10.5669 -10.1835 -10.0517 -9.69471 -9.54808 -8.828 -8.86398 -8.88861 -9.75843 -9.53226 -10.6641 -10.4657 -10.7909 -10.4356 -10.7678 -10.5069 -10.5879 -10.5405 -10.5824 -10.4812 -10.2712 -10.6727 -10.3671 -10.4982 -10.1445 -10.3666 -9.96515 -10.2004 -10.1631 -10.3704 -9.95289 -9.92419 -9.48238 -8.85542 -9.4666 -9.92235 -9.57292 -8.86404 -6.07411 -6.51871 -6.31613 -6.15784 -6.33586 -6.22368 -6.08697 -5.68638 -5.70783 -5.3459 -5.14754 -5.19049 -5.90682 -5.62697 -6.44553 -5.63701 -5.49213 -5.21493 -6.17613 -6.19251 -5.65871 -1.37438 -2.01914 -1.91748 -1.3546 -1.93265 -1.42919 -1.34001 -0.818371 -0.797867 -0.279287 -0.152063 -0.843799 -0.81446 -0.218634 -3.63627 -2.87056 -3.37833 -2.7979 -3.52222 -2.94974 -3.43832 -4.13155 -4.04976 -4.50294 -4.44739 -4.05498 -4.6455 -4.02233 -1.52692 -2.04059 -2.02457 -1.37168 -1.46503 -2.12659 -1.40198 -0.922738 -0.77192 -0.300766 -0.232881 -0.852272 -0.787412 -0.356316 -9.60446 -8.743 -8.81421 -8.91491 -9.26241 -8.83893 -9.58023 -11.7022 -9.99544 -12.5003 -13.7821 -10.8582 -11.3525 -15.0368 -8.06976 -8.23887 -7.85812 -8.30899 -8.01742 -8.37221 -7.98508 -7.99841 -8.33308 -8.02213 -8.01432 -8.4147 -7.97849 -7.74164 -7.71899 -7.60624 -7.89291 -7.94248 -7.70683 -10.9014 -9.87461 -10.342 -13.3921 -9.81777 -11.1138 -12.8245 -7.55207 -7.95052 -8.01353 -7.37095 -7.92073 -7.14845 -7.67761 -7.52357 -7.81967 -7.65741 -6.58734 -7.8592 -7.49869 -6.94668 -7.65886 -7.89169 -7.8028 -7.69735 -7.85331 -7.6305 -7.73196 -8.60893 -8.37637 -8.81427 -8.03635 -8.84195 -7.81996 -8.67117 -9.44571 -9.77127 -9.31453 -9.63343 -9.77016 -9.38408 -9.54388 -8.73603 -8.33145 -8.69047 -7.43606 -8.58773 -8.79835 -7.80914 -9.25936 -9.44287 -9.56225 -9.51122 -9.42004 -9.36613 -9.57981 -10.2825 -10.0156 -10.5052 -10.3082 -10.5209 -10.2753 -10 -10.4165 -10.5291 -10.5396 -10.3788 -10.6037 -10.401 -10.3846 -9.45129 -8.8892 -9.62148 -9.16533 -9.40772 -9.72864 -8.88984 -9.94264 -10.3693 -10.0041 -10.1632 -9.90514 -10.102 -10.2142 -7.30388 -8.11579 -7.72198 -8.49106 -7.97404 -7.20325 -8.18822 -6.82438 -7.29996 -7.33894 -7.02088 -7.59004 -6.76079 -6.98054 -5.88673 -5.44508 -5.93742 -5.54836 -5.85657 -6.08639 -5.44072 -6.42322 -6.94294 -6.41872 -6.76321 -6.41243 -6.58276 -6.76264 -7.59723 -8.12514 -8.2406 -8.25101 -7.3911 -7.23013 -7.67298 -6.94574 -7.48028 -7.19961 -7.44746 -7.78127 -6.96503 -7.31167 -7.09716 -7.07643 -7.02802 -7.21862 -6.69479 -6.65322 -6.5039 -7.0224 -6.90151 -7.0215 -6.63126 -6.55161 -6.53939 -6.82426 -6.82257 -6.54338 -6.87057 -6.48803 -4.13543 -4.64212 -4.12576 -4.73157 -4.17698 -4.127 -4.67746 -3.44061 -2.91931 -3.46057 -2.84402 -3.52866 -3.40128 -2.87362 -0.82149 -0.210053 -0.814364 -0.336727 -0.782529 -0.88366 -0.231425 -1.39786 -2.09911 -1.45576 -1.96956 -1.38817 -1.52008 -2.01917 -8.9763 -9.58438 -8.6541 -8.65601 -9.35645 -9.37306 -8.47348 -9.73848 -13.8156 -11.272 -10.8432 -11.1168 -9.70041 -11.3255 -8.67282 -8.2043 -8.54865 -9.31333 -9.23806 -8.24603 -8.63516 -7.70527 -8.05159 -8.23671 -8.25658 -7.66261 -8.00338 -7.8211 -7.62025 -7.62492 -7.58578 -7.75107 -7.5776 -7.67349 -7.68669 -7.70009 -7.81615 -8.11622 -7.81734 -7.85679 -7.67902 -7.83818 -9.18866 -12.4995 -11.0174 -10.4276 -9.49139 -10.6167 -9.99998 -8.2786 -7.88086 -9.06559 -8.12988 -8.45924 -7.74085 -8.97941 -7.84297 -7.44037 -7.92261 -7.22018 -7.57553 -7.76135 -8.02745 -7.90628 -7.73507 -7.83872 -7.8174 -7.75041 -7.85079 -7.97323 -7.96477 -8.09427 -7.44201 -7.98555 -7.62778 -7.9019 -8.20137 -9.3829 -8.8518 -8.63502 -8.28859 -9.10519 -8.92924 -9.00379 -11.3694 -10.9788 -10.9909 -11.0673 -11.0985 -11.0954 -11.2308 -10.7216 -10.4868 -10.8416 -10.3949 -10.6028 -10.971 -10.4361 -8.0886 -7.11834 -7.68141 -7.29375 -7.36708 -8.00687 -7.64329 -6.75193 -6.638 -7.18239 -6.93992 -6.79872 -7.15186 -6.56795 -3.67553 -3.54328 -3.01304 -2.82719 -3.48653 -3.71109 -2.98042 -1.54973 -1.3581 -2.09902 -1.98136 -1.52289 -2.10739 -1.36448 -13.1291 -13.1195 -16.8201 -18.8378 -12.9529 -12.893 -16.7615 -12.9313 -15.9703 -18.8823 -12.7646 -13.0607 -16.2609 -12.6101 -18.625 -20.614 -17.9941 -20.083 -18.9789 -17.7505 -20.1133 -19.3469 -25.346 -20.077 -21.1334 -18.9239 -20.5469 -21.6012 -18.1552 -17.1348 -19.4517 -19.319 -17.4231 -17.7927 -19.6718 -13.07 -11.4835 -17.731 -14.9323 -15.6138 -12.3755 -12.2431 -13.0866 -15.8151 -12.3612 -17.973 -12.6637 -15.8092 -12.5369 -18.0049 -23.759 -19.5107 -20.5407 -18.4279 -19.0141 -20.0811 -16.7547 -17.8121 -18.2498 -15.6104 -16.231 -18.2997 -16.1994 -17.0635 -16.8134 -18.8419 -18.3933 -17.3834 -16.5482 -18.5405 -20.9626 -25.2098 -21.7835 -24.6079 -24.4477 -21.6783 -21.0567 -20.4013 -23.3139 -19.5325 -21.8742 -22.38 -20.0488 -19.8475 -20.1188 -19.6126 -23.5985 -22.6282 -23.3775 -20.2007 -19.4868 -18.108 -21.3469 -20.3081 -22.2679 -18.8182 -19.5249 -20.8647 -17.1503 -18.1174 -21.2421 -19.3373 -18.8064 -16.7036 -19.6085 -18.646 -21.5659 -18.9179 -21.1639 -18.4326 -19.1611 -20.6065 -18.1232 -20.5088 -21.1274 -16.8362 -17.5971 -21.0831 -17.6375 -18.4183 -18.817 -21.7877 -21.6793 -18.7598 -18.1212 -21.5321 -14.2707 -15.1679 -18.2539 -15.2769 -16.0596 -15.6767 -13.6535 -15.0983 -17.3676 -18.1741 -18.9006 -15.6987 -16.5754 -17.4177 -25.6053 -19.2473 -21.2972 -20.5395 -21.6667 -21.0292 -25.1644 -26.6614 -26.5815 -22.936 -22.7146 -25.7515 -27.2653 -22.2744 -26.3655 -19.636 -22.5909 -22.1196 -22.1946 -26.7855 -21.5193 -25.9672 -21.1136 -22.144 -24.3443 -24.8898 -21.6419 -25.4361 -21.6096 -20.1118 -16.1241 -16.9388 -21.8766 -19.8014 -15.8191 -21.3905 -20.0747 -10.6522 -13.35 -21.7914 -19.7108 -13.1127 -21.3723 -13.5628 -19.417 -10.228 -21.4482 -19.4324 -13.2842 -21.3579 -16.5417 -19.0726 -15.3246 -21.1849 -19.4865 -15.4763 -24.2117 -20.9219 -20.0006 -17.9504 -24.6479 -20.5502 -19.5328 -23.7945 -22.0778 -20.1242 -19.3217 -19.7926 -22.5939 -23.2672 -24.2721 -20.5707 -23.6309 -20.4939 -24.7886 -20.1222 -23.0857 -23.7744 -17.4843 -19.6375 -18.6051 -20.1765 -19.1048 -23.2092 -20.191 -19.1691 -22.0244 -16.7947 -22.6206 -17.3578 -19.6129 -21.1709 -20.1155 -24.2941 -18.964 -23.6359 -21.8763 -18.2355 -20.9908 -22.1569 -19.4454 -18.6739 -21.2524 -21.4822 -19.0517 -23.5842 -22.6293 -19.6039 -19.8298 -23.4312 -23.2927 -20.1029 -23.7072 -20.5974 -24.4858 -19.9933 -23.7873 -23.8937 -20.2947 -20.7737 -18.2557 -20.1181 -18.5053 -20.5605 -20.7991 -18.8227 -18.3504 -21.1154 -16.0736 -17.3321 -18.8017 -20.5603 -15.6394 -17.9349 -16.888 -19.518 -14.9232 -20.0259 -15.2543 -17.6147 -10.4143 -13.9471 -11.5313 -10.874 -10.2301 -11.8588 -11.3071 -9.6737 -10.5059 -9.60535 -9.90136 -9.42133 -9.89529 -10.4027 -9.49892 -8.96843 -10.0797 -9.40558 -9.34398 -9.1762 -10.2004 -8.96686 -9.21909 -9.22321 -9.47435 -9.07875 -9.19818 -8.79939 -10.5866 -10.4741 -9.8026 -10.595 -10.6536 -10.1097 -10.1219 -9.50088 -9.39272 -9.3739 -9.62334 -9.31728 -9.44945 -9.3465 -12.613 -15.2594 -11.4321 -12.2014 -11.3016 -12.4257 -14.584 -10.8768 -9.90032 -10.3842 -10.16 -10.2236 -10.2143 -10.6246 -9.30307 -9.27844 -9.36826 -9.32661 -9.2765 -9.3409 -9.33715 -9.66659 -9.47357 -9.50199 -9.88922 -9.32259 -9.89045 -9.61158 -9.74516 -9.65551 -10.1583 -8.99766 -9.4349 -9.94742 -9.90568 -9.32904 -9.99776 -9.43929 -9.29571 -9.64638 -9.62076 -9.19446 -9.56946 -9.21467 -8.83061 -9.21638 -9.32764 -9.76712 -9.39573 -10.9045 -10.7903 -10.7209 -9.84298 -11.1885 -10.4785 -10.6465 -11.3089 -11.4071 -11.1083 -11.543 -11.1007 -11.4444 -11.3272 -10.7769 -9.82439 -9.63794 -10.3721 -10.2924 -10.4817 -10.6372 -9.39708 -9.36829 -9.5055 -9.49075 -9.43869 -9.54102 -9.35171 -9.34494 -9.71105 -9.52582 -8.92126 -9.64099 -9.00773 -9.22404 -10.0545 -10.1089 -10.1851 -9.10117 -10.3029 -9.53188 -9.95399 -12.1508 -11.8093 -12.163 -11.9323 -12.0006 -12.3141 -12.0444 -11.9673 -11.6637 -11.7047 -11.8143 -11.8941 -11.7955 -11.9406 -12.0724 -11.8605 -11.8066 -11.9715 -11.9207 -11.9228 -12.0403 -11.3763 -11.284 -11.9066 -11.6794 -11.4749 -11.7802 -11.2903 -10.7255 -9.71234 -9.92142 -10.5581 -10.7088 -9.95907 -10.5049 -11.2344 -11.5817 -11.5489 -11.1113 -11.6652 -11.2007 -11.0812 -8.34421 -7.68247 -7.88518 -7.56892 -7.49151 -8.37157 -7.97051 -8.625 -8.79961 -9.08415 -8.07709 -8.03716 -9.1381 -8.58283 -8.25838 -7.90257 -7.52417 -7.45059 -7.3883 -7.88611 -8.20871 -7.00385 -6.75474 -7.33239 -7.21731 -6.90828 -7.41491 -6.83933 -6.41585 -5.64718 -5.79103 -6.33146 -6.49099 -5.71815 -6.23972 -6.94113 -7.41182 -7.17645 -6.91204 -7.36322 -7.02799 -6.79198 -3.78242 -3.55012 -3.04271 -3.01345 -3.6075 -3.72539 -3.10789 -4.28361 -4.8241 -4.845 -4.31856 -4.26568 -4.81539 -4.34272 -3.75262 -3.08639 -2.93103 -3.68513 -3.60953 -3.036 -3.80555 -1.63179 -1.4488 -2.18297 -2.10072 -1.61062 -2.21535 -1.49602 -0.909658 -0.275859 -0.848723 -0.329107 -0.928698 -0.845467 -0.328578 -1.5635 -2.19199 -2.0804 -1.49054 -2.17226 -1.58251 -1.4449 -10.5282 -9.78687 -10.0981 -10.5774 -10.1227 -10.0679 -10.5888 -11.8499 -12.2464 -12.2746 -15.873 -11.2105 -12.5973 -13.4729 -9.0672 -9.35345 -9.31018 -10.1067 -9.12677 -9.67681 -9.16182 -9.30166 -9.21302 -9.16933 -9.17202 -9.09937 -9.08655 -9.32336 -10.2247 -10.6676 -10.2271 -11.0839 -10.8064 -9.39445 -9.22607 -9.20689 -9.36074 -9.38293 -9.21057 -9.33583 -9.83531 -9.59548 -9.87217 -10.0235 -9.67793 -9.48274 -9.59501 -9.19805 -8.76555 -9.5063 -9.53673 -9.16127 -9.23586 -9.24863 -9.22903 -9.31391 -9.19164 -9.22449 -9.39918 -9.20331 -9.31067 -9.27934 -9.37689 -9.40194 -9.2266 -9.2311 -8.37289 -8.77882 -9.37561 -9.13542 -9.09931 -10.5087 -9.92283 -10.1944 -9.27749 -10.3528 -9.98336 -10.1901 -11.0085 -11.4503 -11.9291 -10.9409 -11.4352 -11.1282 -11.1342 -10.8698 -11.3172 -11.4423 -10.9564 -11.0347 -11.4295 -10.3468 -8.96807 -9.39679 -9.616 -10.1094 -10.3312 -9.27536 -9.27881 -9.43366 -9.43969 -9.30387 -9.29104 -9.36737 -9.01066 -9.10525 -9.3934 -8.81567 -9.13576 -9.14242 -8.81128 -10.7215 -11.0566 -10.9963 -11.1721 -10.747 -10.8985 -11.0413 -9.8963 -9.213 -10.2935 -9.07993 -9.95457 -10.2321 -9.15796 -12.0169 -11.789 -11.761 -11.7243 -11.9138 -11.8654 -11.7483 -11.9495 -11.7097 -11.914 -11.7496 -12.2466 -11.5501 -11.69 -11.8856 -11.7 -11.6178 -11.4638 -11.7895 -11.6597 -11.642 -12.1104 -11.7981 -12.0251 -11.9645 -12.2517 -11.9304 -11.7964 -10.9688 -11.6047 -11.428 -11.3755 -10.8804 -11.6701 -11.632 -10.6913 -9.98402 -9.84693 -10.6215 -10.5142 -10.089 -10.7132 -11.1031 -11.5272 -11.6689 -11.2193 -11.6171 -11.1453 -11.2972 -11.5755 -11.3764 -11.7026 -11.5017 -11.6396 -11.5609 -11.3748 -11.6271 -11.5838 -11.7584 -11.5586 -11.6879 -11.6187 -11.5276 -10.3234 -9.71533 -10.5603 -9.87266 -10.3388 -10.5035 -9.71647 -10.9471 -11.3519 -11.1063 -11.3378 -10.9704 -11.0474 -11.2704 -8.62504 -8.92534 -8.96761 -7.89419 -8.15438 -9.18646 -8.09259 -8.1278 -7.47435 -7.48666 -6.92817 -7.62144 -7.76136 -7.31331 -6.43388 -5.70277 -5.75474 -6.18958 -6.27539 -5.86946 -6.23224 -6.91656 -7.10309 -7.07273 -6.74328 -7.26235 -6.79489 -6.75666 -8.11111 -8.94066 -8.7234 -9.12319 -8.52638 -8.14928 -8.86181 -7.34442 -7.7611 -8.18079 -7.54891 -7.9755 -7.39724 -7.5763 -6.25325 -5.75599 -6.44463 -5.82084 -6.24239 -6.32939 -5.7841 -6.93244 -7.37029 -7.06624 -7.30918 -6.92101 -6.96722 -7.28868 -3.64444 -3.05562 -3.31906 -2.81076 -3.86897 -2.92384 -3.1668 -4.39369 -4.80354 -5.00225 -4.35457 -4.33348 -5.00295 -4.35222 -3.68236 -2.91419 -2.94528 -3.52071 -3.59821 -2.99789 -3.46063 -1.53951 -2.19856 -2.04642 -1.48273 -1.59908 -2.09826 -1.46341 -0.903038 -0.28347 -0.797804 -0.279429 -0.815415 -0.838134 -0.329289 -1.54808 -2.08825 -2.07534 -1.45522 -2.15322 -1.45632 -1.49373 -0.897152 -0.848611 -0.391506 -0.296844 -0.974052 -0.824006 -0.340845 -4.41092 -4.91215 -4.41317 -4.96018 -4.42321 -4.35147 -4.91815 -3.60105 -3.05147 -3.73324 -3.05335 -3.67399 -3.62594 -3.02022 -0.843328 -0.323281 -0.96435 -0.326074 -0.89108 -0.882835 -0.287641 -1.50468 -2.22248 -1.64669 -2.19377 -1.5226 -1.59236 -2.14114 -8.78651 -8.78385 -8.56165 -8.86877 -8.61802 -12.0928 -12.6042 -12.1563 -12.3772 -12.2338 -11.8632 -11.539 -11.2088 -10.3405 -11.292 -9.75312 -11.1975 -10.8385 -10.3686 -11.0963 -10.1065 -10.0919 -11.185 -10.8993 -11.639 -12.2736 -12.3581 -11.879 -12.1124 -11.8632 -11.717 -5.94371 -5.53836 -5.8771 -5.4664 -5.51908 -6.07402 -5.87148 -6.57333 -6.78744 -7.01999 -6.4555 -6.92894 -6.63091 -6.48244 -0.841987 -0.380006 -0.723529 -0.355338 -0.90694 -0.775726 -0.349337 -1.52586 -2.05496 -2.12456 -1.53291 -2.06533 -1.64183 -1.53701 -4.8025 -5.37731 -5.57142 -5.83589 -4.81145 -5.65986 -5.28546 -12.7461 -13.3872 -13.5307 -13.9686 -13.3799 -12.8561 -13.3024 -10.3283 -10.7184 -9.97664 -12.5961 -9.64828 -10.8796 -11.7819 -15.2372 -16.6801 -14.5276 -15.0918 -15.7435 -14.2922 -16.2126 -11.6129 -11.6743 -12.352 -11.9841 -12.2072 -11.6785 -11.5536 -10.6111 -9.85988 -11.0736 -9.45859 -9.51958 -10.9028 -10.752 -11.7938 -12.9847 -12.7243 -12.1849 -12.6877 -11.9315 -11.9902 -16.5575 -17.0135 -15.5372 -15.3433 -15.3842 -16.8775 -16.5159 -5.74475 -6.09347 -6.34989 -6.28016 -6.09963 -5.90903 -5.91443 -5.0886 -4.79205 -5.14655 -4.58489 -4.66121 -5.28217 -4.97826 -5.53887 -5.68181 -6.15641 -5.55001 -5.88479 -5.7399 -5.38174 -6.02117 -8.29898 -7.30947 -7.70247 -6.46551 -6.6729 -7.49629 -4.0268 -3.74601 -4.38197 -4.13904 -3.58892 -4.28329 -4.11555 -5.17145 -5.4911 -6.17754 -5.38145 -5.69734 -5.51084 -5.17562 -4.56329 -4.36128 -4.7466 -4.19568 -4.7044 -4.54407 -4.25382 -4.16669 -4.48074 -4.55419 -4.29647 -4.43094 -4.20889 -4.25464 -4.86816 -5.18294 -5.12404 -5.25218 -5.04005 -4.91381 -5.03894 -1.24886 -1.42769 -1.922 -1.86722 -1.81706 -1.3948 -1.29821 -0.68129 -0.28358 -0.842658 -0.226529 -0.795291 -0.708965 -0.181366 -1.25514 -1.83415 -1.92085 -1.44491 -1.80754 -1.4125 -1.30473 -3.38671 -3.88757 -3.38877 -3.71786 -3.29999 -3.46269 -3.8025 -2.64229 -2.79356 -2.33682 -2.30995 -2.71732 -2.75473 -2.23997 -2.87769 -2.33579 -2.88691 -2.52901 -2.79732 -2.97927 -2.44279 -0.777637 -0.37695 -0.791579 -0.211651 -0.887404 -0.719589 -0.258943 -1.21247 -1.35471 -1.75102 -1.72372 -1.30995 -1.66478 -1.26935 -1.34121 -1.7317 -1.34015 -1.93227 -1.44157 -1.25809 -1.82998 2.76032 0.0779297 -1.66648 -1.89903 -1.43362 1.835 0.630535 -6.81928 -7.45289 -5.57102 -6.14686 -6.62531 -5.44889 -7.28176 -12.8125 -15.5211 -15.4527 -14.3993 -14.7813 -13.5702 -13.4601 -14.9143 -14.4571 -14.4293 -12.7557 -15.4313 -13.6349 -14.1372 -15.9211 -15.0722 -15.3334 -14.5709 -15.0984 -16.0176 -15.2091 -16.7167 -17.2681 -18.5182 -15.9517 -18.2535 -16.7524 -15.9139 -13.0206 -12.7833 -14.3893 -13.7149 -13.2453 -14.2244 -12.6601 -3.19203 -3.7064 -3.27732 -2.9538 -2.86878 -3.46478 -3.34829 -3.86029 -3.91885 -4.36256 -3.91561 -3.76325 -4.15932 -4.11187 -3.78927 -4.30917 -4.06775 -4.56213 -3.5722 -4.15751 -4.26566 -6.66753 -8.71029 -6.87324 -8.14389 -6.12158 -7.5386 -8.05312 -6.34065 -7.21286 -6.57138 -6.44639 -6.4334 -7.04028 -6.22673 -5.97164 -5.23715 -5.73042 -6.26302 -5.15915 -6.68876 -5.87411 -4.76372 -4.57524 -4.70716 -4.26074 -5.02256 -4.55114 -4.39854 -5.43858 -5.83112 -6.02688 -5.99482 -5.62183 -5.79965 -5.64781 -5.18199 -5.06109 -5.03984 -5.80793 -5.44602 -4.86655 -5.50008 -1.13999 -1.30885 -1.61125 -1.66792 -1.5494 -1.18457 -1.22623 -0.736551 -0.333734 -0.746464 -0.150935 -0.820668 -0.69322 -0.249343 -1.27093 -1.67158 -1.8271 -1.27052 -1.71615 -1.3694 -1.21975 -3.38155 -4.01023 -3.4279 -3.76805 -3.35919 -3.53313 -3.84798 -2.99468 -3.14597 -2.58232 -2.52732 -3.03652 -3.10222 -2.49652 -2.86576 -2.41367 -2.96277 -2.52167 -2.88584 -3.02366 -2.36594 -0.677534 -0.324826 -0.839391 -0.248432 -0.807227 -0.758547 -0.206467 -1.32703 -1.40049 -1.92147 -1.83609 -1.41609 -1.84167 -1.30561 -1.25783 -1.79406 -1.4097 -1.86622 -1.38804 -1.31268 -1.73369 -12.302 -12.5978 -13.2606 -13.4115 -13.1481 -12.3874 -12.4444 -6.13703 -6.15297 -6.60705 -6.25732 -6.35399 -6.38984 -5.93652 -1.34614 -1.43146 -2.00303 -1.89321 -1.90965 -1.44115 -1.33339 -1.47913 3.42222 -1.2636 -2.74406 6.78405 6.25814 2.40313 405.208 425.301 430.537 425.474 408.739 406.353 410.697 430.412 407.965 426.143 425.588 407.749 410.544 411.013 -135.458 -179.037 -165.29 -104.794 -78.747 -106.477 -82.4349 -40.3054 -59.8812 -67.882 -21.8403 -12.1458 -12.8811 -19.3611 -17.9067 -31.2437 -33.3746 -5.97606 -2.4385 -2.8051 -5.55919 -10.813 -21.2961 -22.151 -1.35652 1.1224 1.02816 -1.15393 -1.76258 -1.73491 -1.49902 -2.21138 -1.35457 -0.816045 -1.57394 13.7391 32.8466 18.5836 17.8345 20.8724 21.5115 17.125 -124.334 -134.03 -128.745 -133.968 -123.759 -131.481 -129.352 422.128 420.469 421.35 418.734 421.43 420.333 417.799 401.593 406.489 398.334 399.962 397.084 394.58 391.063 421.703 418.399 422.391 418.794 423.584 418.678 418.703 400.508 398.402 405.012 401.533 401.712 393.582 391.835 420.211 417.523 414.492 418.145 415.159 416.863 418.012 -10.0303 -19.5178 -19.7733 -26.0448 -8.97213 -8.36765 -11.5031 2.22862 1.6937 24.8732 25.2339 8.84366 9.22084 2.0472 -9.1604 -20.6333 -19.8619 -0.725639 1.32674 -0.853169 1.38096 8.08423 22.6886 21.1628 11.1567 8.47204 7.37075 12.9556 9.06748 23.8474 24.6115 14.2322 9.20718 9.58016 13.6815 -8.85997 -5.64419 -4.13148 2.40769 4.28508 2.89854 2.68215 121.432 -156.843 -4.92878 10.0938 60.573 113.876 -127.943 -141.641 34.8748 174.148 -144.208 152.145 274.201 361.782 189.764 321.589 235.281 354.35 -121.496 -121.654 -128.08 -120.493 -111.773 -104.676 -118.803 -84.8283 -101.391 90.848 86.9977 106.79 -49.6429 -164.188 407.42 405.877 276.802 371.837 386.371 340.627 414.65 406.114 388.49 321.882 340.993 361.316 399.351 405.381 326.328 107.115 296.774 277.346 315.496 226.938 247.279 -124.311 -132.416 -134.724 -122.049 -120.05 -118.202 -119.208 -91.7021 -59.633 80.6593 73.8711 93.8968 -66.7692 -143.231 429.323 431.115 431.011 424.485 422.79 418.589 429.762 407.272 406.032 253.799 369.936 387.633 334.455 415.407 432.009 430.44 431.928 425.138 424.639 423.475 425.849 425.785 429.057 427.207 419.137 406.77 401.705 406.582 -18.0988 -16.7253 -22.4339 -0.548749 -6.55383 -9.82497 -1.34473 -25.4841 -51.7404 -64.9841 -29.5543 -27.9522 -27.0263 -31.0763 429.829 425.099 429.088 430.305 423.471 424.976 425.128 421.585 425.403 424.926 424.159 421.564 423.942 425.31 420.775 420.409 421.034 421.663 421.144 421.471 422.883 425.257 424.28 422.011 422.305 425.068 425.151 424.038 420.844 424.078 423.02 422.545 423.741 422.682 421.426 -84.576 -97.9668 -111.147 -36.5427 -73.6879 -42.1287 -80.9843 5.73654 59.1807 -110.237 90.4453 92.5596 -89.7047 -9.14876 -1.49043 -116.578 86.5399 62.4928 -18.0704 94.0829 -114.335 400.307 148.032 283.156 280.141 398.903 423.281 424.98 423.6 425.618 422.374 426.108 425.026 423.659 424.673 421.564 425.883 424.876 425.435 425.296 423.967 424.531 423.982 424.469 423.66 424.434 423.86 214.835 318.329 272.506 338.799 196.554 332.05 278.126 -23.5257 -119.034 86.5442 89.6498 89.9452 -124.418 -24.1484 -22.6356 -120.706 83.9992 92.0558 85.2866 -7.48585 -124.053 -77.9936 -76.2866 -69.9352 -80.6975 -69.4663 -66.2842 -71.6177 -81.9355 -79.5945 -80.6659 -62.7067 -80.6997 -65.835 -75.8242 81.5277 -61.2884 -31.4849 -17.3995 88.4667 90.0934 -89.8995 -13.7511 -114.658 93.4973 88.7513 -23.7456 91.547 -101.671 246.904 319.155 329.458 269.806 341.837 277.847 194.019 396.8 324.387 402.657 411.958 343.585 366.864 411.197 -99.4414 -75.1307 95.8928 95.7584 -48.418 -146.87 93.9793 428.77 430.295 431.485 425.606 425.511 425.226 425.017 404.114 325.316 383.05 336.489 361.616 402.139 396.42 -82.6959 74.4097 85.9202 -142.224 -112.549 69.0692 -34.1928 -24.0075 -29.7733 -9.14183 -18.4166 -9.7417 -13.4897 -125.526 -110.258 -113.867 -127.157 -126.499 -131.097 -116.109 383.57 381.941 217.687 352.96 306.448 402.257 328.663 -122.784 -130.316 -131.201 -112.977 -111.789 -117.003 -111.545 -74.9387 -80.6018 86.028 92.9369 -143.268 75.5049 -41.1285 -74.3306 -79.4501 90.3299 104.798 -139.891 -49.31 95.8631 -95.1195 -91.1442 -90.969 -92.7974 -80.6188 -98.595 -84.5057 -140.023 -43.3201 73.9475 105.557 97.1496 -99.0381 -70.1017 -88.6502 -93.6373 -96.9439 -82.0091 -89.5302 -86.3116 -86.561 -3.56757 -77.0836 66.046 85.1464 -117.948 -37.8839 101.86 431.3 431.442 422.618 431.077 426.474 425.053 421.256 358.311 398.387 409.309 405.004 315.467 362.885 392.468 -76.0787 70.2751 -160.838 -166.276 68.2558 68.7466 -77.019 -155.094 67.901 -24.4594 50.6643 67.5541 -138.901 -53.0456 -48.7195 81.434 63.1993 15.896 9.49846 -11.0002 31.7224 -8.00172 87.0745 88.073 43.2598 16.5619 20.3401 38.6943 -84.7382 -164.637 -151.014 -47.4297 -49.8421 -61.4322 -34.9773 5.2429 11.0215 19.2571 7.35733 6.29245 6.06287 3.39467 7.82682 48.8131 52.5181 27.439 15.8452 15.8086 26.3108 7.19468 44.3501 41.1721 21.3456 14.1083 12.4545 24.0253 -27.0344 -54.4199 -49.5192 -12.8206 -9.90304 -14.9659 -8.17222 4.99281 29.9127 30.9442 14.1355 6.50065 6.77727 13.6053 4.08237 29.1799 27.9203 11.7545 5.82298 4.70106 13.0509 -14.0347 -29.4494 -27.9483 -3.57981 -1.51551 -4.27145 -0.955707 404.171 408.165 413.978 412.547 407.776 405.385 413.396 314.722 325.446 320.97 321.755 320.369 318.829 321.097 297.157 304.556 283.03 285.317 269.37 278.149 305.467 257.25 290.901 288.764 283.568 274.826 285.558 279.452 298.82 289.023 291.277 266.329 302.249 276.12 276.136 325.699 303.937 315.313 331.761 309.382 326.203 318.424 297.437 300.034 291.959 294.349 299.349 301.86 298.927 291.929 298.508 266.787 279.062 258.814 295.6 298.668 434.361 415.293 422.09 440.779 440.588 414.954 436.336 415.341 422.547 405.82 398.157 426.595 415.21 398.934 388.618 366.059 378.636 339.494 380.161 338.929 392.508 390.986 371.672 383.996 345.508 392.987 381.548 337.628 310.166 311.031 315.834 302.019 312.465 320.969 292.08 276.877 335.492 85.8168 295.004 231.379 218.748 316.086 286.549 298.29 328.33 333.761 221.362 303.686 302.586 349.305 339.067 354.954 338.855 352.259 338.087 347.475 283.504 276.354 251.409 285.487 259.197 289.322 267.206 306.893 314.238 307.339 310.525 313.602 306.435 304.364 327.69 363.495 353.155 354.281 341.402 309.21 354.837 320.867 323.556 320.006 320.051 320.184 322.173 322.438 427.682 418.589 434.948 415.974 435.738 429.667 409.935 331.705 323.716 325.218 313.097 329.369 326.442 318.38 323.087 311.295 325.025 323.546 324.04 322.639 317.128 318.991 340.55 327.291 329.285 342.273 323.453 317.97 283.456 288.46 298.002 289.122 287.174 284.39 292.978 282.226 284.835 280.988 279.557 279.653 283.821 279.733 294.773 289.396 310.558 271.179 281.909 299.134 287.365 280.936 274.104 290.235 292.887 289.789 286.362 285.432 310.285 321.979 305.313 306.472 304.271 318.441 312.239 304.783 304.535 304.449 294.056 294.843 312.976 303.272 281.052 283.759 302.38 293.551 290.631 300.232 275.237 261.41 277.926 288.053 281.49 282.486 267.304 271.845 313.285 300.038 310.017 304.005 305.623 308.423 308.696 267.705 297.778 303.681 287.75 295.654 291.368 267.335 300.063 299.542 307.033 306.47 307.714 295.18 303.863 289.93 312.097 311.274 305.246 305.249 296.473 301.775 297.855 302.512 285.153 291.753 289.161 298.657 301.1 312.806 309.348 289.99 285.134 307.178 281.36 314.75 289.698 300.9 296.849 300.469 294.147 304.876 292.396 277.535 292.934 308.879 294.846 282.275 296.793 284.53 287.139 277.464 334.843 340.981 284.121 265.489 333.275 286.461 315.065 285.155 310.946 277.86 295.999 314.805 298.585 294.512 295.736 305.714 298.642 304.713 297.386 263.298 280.824 289.383 289.716 270.726 284.593 290.88 316.122 313.39 294.102 296.564 300.265 311.663 297.87 260.928 278.7 279.233 280.937 224.084 267.114 285.547 315.926 291.928 292.86 394.698 269.767 325.145 361.046 296.077 295.18 288.653 299.667 290.986 299.261 286.136 314.114 301.656 306.106 302.726 305.106 303.244 312.846 305.557 325.587 313.212 331.361 318.687 302.672 336.775 333.688 364.828 350.728 387.239 332.332 356.123 345.28 427.796 447.671 420.049 438.694 429.241 418.978 436.826 369.029 307.49 360.991 320.59 368.194 303.818 368.668 369.843 320.47 304.96 368.314 305.417 368.993 365.267 294.6 291.518 289.803 299.241 292.157 297.814 297.884 292.796 308.859 286.224 297.824 317.399 293.116 280.036 304.032 295.983 283.111 302.857 306.509 285.991 304.13 315.974 302.717 304.315 303.939 311.125 307.244 312.61 -2.02616 -3.12719 -0.275438 -4.78075 -2.34553 -0.220568 -3.69265 269.756 281.946 293.622 286.145 261.492 267.214 304.5 269.343 288.535 261.743 288.166 287.506 280.939 275.362 288.914 314.977 294.744 279.351 281.635 297.187 305.186 327.118 298.757 322.876 313.85 329.626 323.595 301.283 300.841 314.164 340.432 317.254 313.097 311.622 335.647 310.506 326.503 328.522 334.14 316.371 326.131 327.895 294.226 330.748 314.901 299.063 285.926 296.631 317.999 291.178 290.938 287.577 279.424 274.596 287.646 278.503 303.85 302.818 288.942 286.278 290.188 321.271 302.502 264.914 290.42 285.852 264.125 278.472 265.174 273.823 315.592 324.649 315.135 320.167 319.094 322.785 309.335 275.594 283.261 272.677 247.176 272.092 284.01 249.017 299.584 302.396 304.034 304.684 304.497 301.007 305.923 295.371 306.266 308.148 320.895 302.567 287.768 306.801 290.367 288.715 294.82 295.756 299.605 282.406 296.22 305.148 228.494 236.523 253.566 275.245 327.339 286.78 287.009 296.159 278.621 285.702 292.675 290.784 281.276 279.713 272.756 266.435 275.465 258.601 275.76 263.448 293.595 297.143 296.028 319.748 289.616 299.947 314.545 303.986 295.3 326.077 302.096 305.909 321.765 299.87 316.337 316.322 319.196 309.18 318.422 310.09 312.033 290.573 292.464 315.967 296.949 304.982 307.599 284.208 321.489 314.872 318.816 307.56 317.584 335.098 313.778 288.125 281.278 276.411 249.695 266.726 290.634 271.67 320.684 319.49 317.258 320.214 319.93 318.204 320.691 316.173 319.268 323.09 328.602 323.402 304.575 336.581 424.764 409.075 444.774 418.587 424.553 399.189 445.635 339.545 328.616 317.878 318.311 325.702 334.428 328.548 299.072 316.747 298.107 292.304 285.974 321.279 302.84 317.74 316.583 320.788 309.411 321.249 325.207 318.373 308.621 305.756 314.819 299.587 306.559 319.367 300.566 314.683 306.265 314.84 312.364 309.897 308.482 312.758 294.215 296.223 294.341 291.7 294.364 293.073 295.258 427.121 428.466 418.05 439.692 434.524 412.2 435.059 303.775 301.251 303.86 302.115 302.905 301.697 306.32 314.733 312.644 310.437 311.135 313.895 314.907 310.713 420.741 406.929 399.761 433.045 424.09 402.398 428.901 286.606 299.324 315.822 305.006 306.912 305.786 281.82 332.866 404.025 346.399 355.548 350.653 358.003 337.291 286.961 303.585 350.752 347.225 318.482 274.902 361.772 374.245 362.549 325.257 276.006 311.808 367.535 345.888 301.486 365.743 305.247 326.359 281.113 335.433 387.503 310.451 313.796 324.362 306.728 320.66 306.131 308.411 319.502 309.216 283.805 314.597 306.501 313.658 304.135 316.37 309.353 294.714 307.941 305.304 310.069 320.467 306.912 292.777 248.369 359.779 286.121 316.988 321.904 324.802 328.794 325.553 312.908 332.403 326.055 323.229 313.138 364.6 376.641 333.176 373.846 330.512 312.256 -48.6004 -70.7376 66.6275 174.15 32.2336 -148.046 104.426 312.569 312.096 310.406 309.282 312.028 312.404 312.374 264.32 300.51 296.111 278.172 280.054 299.515 255.977 293.4 297.597 296.63 287.063 298.375 290.908 292.398 344.805 397.961 329.879 369.142 352.484 336.833 413.53 307.886 305.457 308.53 295.984 323.417 292.831 297.411 298.69 281.617 286.989 295.941 270.296 302.997 298.264 302.294 301.015 301.212 300.178 302.38 301.41 301.083 297.76 294.976 294.653 283.478 293.165 290.644 299.584 315.118 309.598 302.954 289.385 313.754 306.138 296.629 279.017 299.148 302.664 310.115 298.155 297.958 305.155 329.04 312.292 299.756 353.407 261.229 370.169 339.032 277.787 262.648 288.692 247.909 284.976 279.239 243.494 327.569 351.52 278.075 302.678 359.132 345.293 253.58 382.896 409.092 414.445 397.328 397.823 411.011 395.61 284.308 288.638 294.59 291.016 293.822 289.409 288.19 292.981 322.379 317.7 299.333 297.574 325.424 295.809 -36.3292 -132.071 93.98 166.336 -73.6074 -93.4514 121.173 423.392 392.454 412.323 423.259 403.887 425.561 418.171 313.638 309.112 318.255 295.951 314.729 304.315 322.589 321.237 360.531 357.819 337.408 325.331 364.845 343.401 308.598 307.887 311.269 306.671 313.818 297.068 299.117 326.969 340.621 295.835 297.477 323.908 302.629 360.354 302.983 319.403 313.565 285.641 318.609 299.298 297.359 283.848 281.843 301.008 289.775 294.473 281.338 283.553 64.0058 114.797 -38.5883 -126.023 -76.8867 104.599 26.1041 298.192 286.666 284.665 286.704 295.022 303.193 300.646 320.033 312.305 313.096 327.72 307.875 319.171 320.681 327.623 294.857 282.42 332.793 363.684 306.95 319.92 346.138 346.788 364.368 327.778 345.976 364.819 273.073 300.328 292.527 272.073 259.986 293.611 264.033 282.251 313.716 307.31 294.189 284.754 306.074 295.484 314.584 302.045 294.711 300.682 287.229 310.434 280.437 291.73 281.83 281.498 291.436 297.232 285.852 287.589 290.631 290.907 298.107 280.705 271.687 294.175 292.618 265.713 324.697 328.548 341.984 318.166 322.001 340.195 322.69 323.317 301.908 303.457 310.402 307.91 316.58 307.864 344.535 390.947 341.718 348.078 337.302 395.103 330.853 310.353 306.729 312.263 302.041 314.112 298.559 311.974 328.271 338.9 321.54 385.434 320.761 346.131 349.153 436.808 415.436 430.094 435.13 422.946 434.056 440.223 274.2 291.353 266.179 275.274 277.408 280.692 252.25 276.788 278.488 280.215 302.886 291.331 263.898 289.8 293.531 285.133 292.63 294.092 291.694 289.821 295.365 306.748 297.688 292.011 294.495 293.296 300.264 298.5 ) ; boundaryField { inlet { type zeroGradient; } outlet { type fixedValue; value uniform 0; } NacelleStator.stl { type zeroGradient; } } // ************************************************************************* //
9e30a2672a2f6f7ae13379af2af25c7cb58f06b0
8289a2a1ffc9152826a50bc5cddbd91638564c42
/kgui/clientthread.h
b9c811b1939444e1a6f20bbd224db2b73f422e56
[]
no_license
maciekgajewski/rufusdc
05b092fd618ca252061452bec85a935e651acc75
6920d8c287439ed35621568d5804b07d93fee940
refs/heads/master
2021-01-21T22:26:38.376386
2009-07-15T19:42:21
2009-07-15T19:42:21
32,141,786
0
0
null
null
null
null
UTF-8
C++
false
false
3,078
h
clientthread.h
// Copyright (C) 2009 Maciek Gajewski <maciej.gajewski0@gmail.com> // Uses code from Linux DC++, Copyright © 2004-2008 Jens Oknelid, paskharen@gmail.com // // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef CLIENTTHREAD_H #define CLIENTTHREAD_H // Qt #include <QThread> namespace KRufusDc { class MainWindow; class SearchQuery; /** * Client thread. Performs client-related actions in separate thread. * @author Maciek Gajewski <maciej.gajewski0@gmail.com> */ class ClientThread : public QObject { Q_OBJECT public: ClientThread( MainWindow* pMainWindow ); virtual ~ClientThread(); /// Starts client thread void start(); /// Stops client thread void stop(); /// invokes slot in client thread /// Calls method in client thread. Method must be a slot ///@param method method name, w/o signature. static void invoke ( const char* method , QGenericArgument val0 = QGenericArgument( 0 ) , QGenericArgument val1 = QGenericArgument() , QGenericArgument val2 = QGenericArgument() , QGenericArgument val3 = QGenericArgument() , QGenericArgument val4 = QGenericArgument() ); private Q_SLOTS: // call these via 'invoke' /// Starts active client void startListening(); /// Auto-connects to favorite hubs void autoConnect(); /// Download user file list ///@param cid user's cid, base32 encoded void downloadFileList( const QString& cid ); /// Matches queue with users file list ///@param cid user's cid, base32 encoded void matchQueue( const QString& cid ); /// Grants extraslot to user ///@param cid user's cid, base32 encoded void grantSlot( const QString& cid ); /// Grants extraslot to user ///@param cid user's cid, base32 encoded void removeUserFromQueue( const QString& cid ); /// Cancels download ///@param path download target path void cancelDownload( const QString& path ); /// Removes fniished download from list void removeFinishedDownload( const QString& path ); /// Removes all finished downloads void removeAllFinishedDownloads(); /// Search for alternates ///@param tth hash of searched file void searchForAlternates( const QString& tth ); /// Search void search( const SearchQuery& query ); private: /// Pointer to apps main window MainWindow* _pMainWindow; /// Actual thread QThread _thread; /// Static instance pointer static ClientThread* _pInstance; }; } // namespace #endif // CLIENTTHREAD_H
b5ddd781fd0380cfb627d4beae46e0f2c07e07fe
e549fa7f97f979bbdfadd7a030a3f5191065d5b2
/SATIP-Client/mainwindow.cpp
6757b53f1293433ba366275ccc335cfbcb3b4d5d
[]
no_license
mgandi/SAT-IP-Tools
6cec86148bfb379125b8cc19e2f01ec32e18536c
748c94527037374dc504f90c9f1f71199397de37
refs/heads/master
2021-01-25T06:36:53.282165
2014-03-21T16:31:08
2014-03-21T16:31:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,350
cpp
mainwindow.cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include "gatewaydevice.h" #include "gatewaywidget.h" #include "ssdpclient.h" #include "severselectionwidget.h" #include "objectpool.h" #include "settings.h" #include "programrecorderwidget.h" #include "programtesterwidget.h" #include <QNetworkInterface> #include <QTimer> #include <QScrollBar> #include <QDockWidget> #include <QMenu> QPlainTextEdit *plainTextEdit = 0; void myMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) { QByteArray localMsg = msg.toLocal8Bit(); switch (type) { case QtDebugMsg: { plainTextEdit->insertPlainText(msg); plainTextEdit->insertPlainText("\n"); QScrollBar *sb = plainTextEdit->verticalScrollBar(); sb->setValue(sb->maximum()); break; } case QtWarningMsg: { plainTextEdit->insertPlainText("Warning : "); plainTextEdit->insertPlainText(msg); plainTextEdit->insertPlainText("\n"); QScrollBar *sb = plainTextEdit->verticalScrollBar(); sb->setValue(sb->maximum()); break; } case QtCriticalMsg: fprintf(stderr, "Critical: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function); break; case QtFatalMsg: fprintf(stderr, "Fatal: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function); abort(); default: break; } } class MainWindowPrivate { public: MainWindowPrivate(MainWindow *parent) : p(parent) {} MainWindow *p; QList<QHostAddress> validAddresses, retry; QList<SSDPClient *> ssdpClients; GatewayDevice *currentDevice; }; MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow), d(new MainWindowPrivate(this)) { ui->setupUi(this); // Server selection dock widget ui->serverSelectionDockWidget->setVisible(false); ui->menuView->addAction(ui->serverSelectionDockWidget->toggleViewAction()); // UDP listener dock widget tabifyDockWidget(ui->logDockWidget, ui->udpListenerDockWidget); ui->udpListenerDockWidget->setVisible(false); ui->menuView->addAction(ui->udpListenerDockWidget->toggleViewAction()); // Program recorder dock widget tabifyDockWidget(ui->udpListenerDockWidget, ui->programRecorderDockWidget); //ui->programRecorderDockWidget->setVisible(false); ui->menuView->addAction(ui->programRecorderDockWidget->toggleViewAction()); // Program tester dock widget tabifyDockWidget(ui->udpListenerDockWidget, ui->programTesterDockWidget); ui->programTesterDockWidget->setVisible(false); ui->menuView->addAction(ui->programTesterDockWidget->toggleViewAction()); // Set global plain text edit pointer plainTextEdit = ui->plainTextEdit; qInstallMessageHandler(myMessageOutput); // Create list of valid IP addresses QList<QNetworkInterface> interfaces = QNetworkInterface::allInterfaces(); foreach (QNetworkInterface interface, interfaces) { QNetworkInterface::InterfaceFlags flags = interface.flags(); if ((flags & QNetworkInterface::IsUp) && (flags & QNetworkInterface::IsRunning) && (flags & QNetworkInterface::CanBroadcast) && (flags & QNetworkInterface::CanMulticast) && !(flags & QNetworkInterface::IsLoopBack) && !(flags & QNetworkInterface::IsPointToPoint) && interface.isValid()) { ui->plainTextEdit->insertPlainText(interface.humanReadableName().append("\n")); QList<QNetworkAddressEntry> addressEntries = interface.addressEntries(); foreach (QNetworkAddressEntry addressEntry, addressEntries) { if (addressEntry.ip().protocol() != QAbstractSocket::IPv4Protocol) continue; d->validAddresses += addressEntry.ip(); ui->plainTextEdit->insertPlainText(QString("- ").append(addressEntry.ip().toString()).append("\n")); } } } // For each valid network interfaces create an SSDP client foreach (QHostAddress address, d->validAddresses) { SSDPClient *ssdpClient = new SSDPClient(address.toString(), this); connect(ssdpClient, SIGNAL(newGatewayDeviceFound(GatewayDevice*)), this, SLOT(addDevice(GatewayDevice*))); connect(ssdpClient, SIGNAL(gatewayDeviceLeft(GatewayDevice*)), this, SLOT(removeDevice(GatewayDevice*))); d->ssdpClients += ssdpClient; } // Start single shot timer to check for devices QTimer::singleShot(2000, this, SLOT(checkForDevices())); } MainWindow::~MainWindow() { qInstallMessageHandler(0); delete d; delete ui; } void MainWindow::addDevice(GatewayDevice *device) { ObjectPool::instance()->addObject(device); } void MainWindow::removeDevice(GatewayDevice *device) { ObjectPool::instance()->removeObject(device); } void MainWindow::currentDeviceChanged(GatewayDevice *device) { Settings settings; GatewayWidget *widget = qobject_cast<GatewayWidget *>(centralWidget()); if (widget) delete widget; d->currentDevice = device; if (d->currentDevice) { settings.setLastUsedDevice(d->currentDevice->uid()); setCentralWidget(new GatewayWidget(d->currentDevice, this)); } } void MainWindow::checkForDevices() { Settings settings; QString lastUsedDevice = settings.lastUsedDevice(); if (!lastUsedDevice.isEmpty()) { foreach (GatewayDevice *device, ui->serverSelectionWidget->devices()) { if (device->uid() == lastUsedDevice) { d->currentDevice = device; break; } } } if (!d->currentDevice) { d->currentDevice = ui->serverSelectionWidget->currentDevice(); } connect(ui->serverSelectionWidget, SIGNAL(currentDeviceChanged(GatewayDevice*)), this, SLOT(currentDeviceChanged(GatewayDevice*))); if (d->currentDevice) { ui->serverSelectionWidget->setCurrentDevice(d->currentDevice); } }
52913075fbe9ae7f38f6ce93e39538caf2aec71d
096712a2330d94440df440a9c01151b35bd2d1c5
/step7/test3/src/stat.cpp
2d3812dec1a50528dbd08e722ac1e2a8f2185e4f
[]
no_license
sharparrow003/theArchitect
3350361f806996296ac23087ac2b1b7ea7b9e17e
a2f5651e2e574ae099aa33ec6a3b7a4fe0ccfd4f
refs/heads/master
2021-01-21T12:39:57.168008
2015-12-09T07:28:08
2015-12-09T07:28:08
42,426,436
0
0
null
null
null
null
UTF-8
C++
false
false
155
cpp
stat.cpp
#include "stat.h" #include <list> #include <string> using namespace std; statement::statement(){} statement::statement(string code){this->code = code;}
80871079f4d1f2adf5a7a2427bf15b6dc53bd31f
540ea101b2fcb235fd50d3ac1ef0d93cdc78b4cf
/main.cpp
0e456988a03170835f9c875f225a61ec17aa6fb9
[]
no_license
lnarolski/BlueDetector
55ee5a1108ff7583d79e929edd59da9f8f12a3ad
8a3a0df2b64efb304504f561069aa7afdbb94b38
refs/heads/master
2023-06-02T17:30:26.251141
2021-06-21T15:54:24
2021-06-21T15:54:24
376,141,916
0
0
null
null
null
null
UTF-8
C++
false
false
4,178
cpp
main.cpp
//#define DEBUG #define DOMOTICZ // Send detection results to Domoticz home automation system #define V4l2RTSPSERVER // Turn on/off V4l2RTSPSERVER based on detection results #define TIME_BETWEEN_PINGS_SEC 30 #define MAX_PING_ATTEMPTS 7 #include <iostream> #include <fstream> #include <vector> #include <csignal> #include <unistd.h> #include <future> #include <boost/interprocess/shared_memory_object.hpp> #include <boost/interprocess/mapped_region.hpp> #include "Domoticz.h" using namespace boost::interprocess; enum ExitStatus { OK = 0, MACADDRESSES_FILE_OPEN_FAILED = 1, WRONG_MAC_ADDRESS = 2, }; std::vector<std::string> macAddressesVector; bool stopApplication = false; bool IsValidMacAddress(const char* mac) { //Oded int i = 0; int s = 0; while (*mac) { if (isxdigit(*mac)) { i++; } else if (*mac == ':' || *mac == '-') { if (i == 0 || i / 2 - 1 != s) break; ++s; } else { s = -1; } ++mac; } return (i == 12 && (s == 5 || s == 0)); } void SignalHandler(int signal) { stopApplication = true; } //Map the whole shared memory in this process mapped_region detectionResultRegion; void BluetoothDevicesPing(bool pingSuccess) // Action when Bluetooth device(s) is found { memset(detectionResultRegion.get_address(), pingSuccess, detectionResultRegion.get_size()); #ifdef DEBUG if (pingSuccess) printf("Bluetooth device(s) found\n"); else printf("Bluetooth device(s) NOT found\n"); #endif // DEBUG #ifdef DOMOTICZ std::async(SendDetectionResultToDomoticz, pingSuccess); #endif // DOMOTICZ static bool previousPingSuccessValue = false; if (pingSuccess != previousPingSuccessValue) { #ifdef V4l2RTSPSERVER if (pingSuccess) { system("systemctl stop v4l2rtspserver.service"); #ifdef DEBUG printf("v4l2rtspserver stopped.\n"); #endif // DEBUG } else { system("systemctl start v4l2rtspserver.service"); #ifdef DEBUG printf("v4l2rtspserver started.\n"); #endif // DEBUG } #endif // V4l2RTSPSERVER previousPingSuccessValue = pingSuccess; } } int main() { printf("BlueDetector started...\n"); std::signal(SIGABRT, SignalHandler); std::signal(SIGTERM, SignalHandler); std::signal(SIGKILL, SignalHandler); std::signal(SIGSEGV, SignalHandler); std::fstream macAdressesFile; macAdressesFile.open("macAddresses.txt", std::fstream::in); if (macAdressesFile.fail()) { printf("macAddresses.txt file open failed. Exiting...\n"); exit(MACADDRESSES_FILE_OPEN_FAILED); } std::string tempMac = ""; while (std::getline(macAdressesFile, tempMac)) { if (!IsValidMacAddress(tempMac.c_str())) { printf("Wrong MAC address: \"%s\n\". Exiting...", tempMac); exit(WRONG_MAC_ADDRESS); } macAddressesVector.push_back(tempMac); } macAdressesFile.close(); // Create shared memory region shared_memory_object shm; shm.remove("detectionResult"); shm = shared_memory_object(create_only, "detectionResult", read_write); shm.truncate(sizeof(bool)); detectionResultRegion = mapped_region(shm, read_write); // system("systemctl start v4l2rtspserver.service"); uint32_t attempts = 0; uint32_t waitTime = TIME_BETWEEN_PINGS_SEC; while (!stopApplication) { if (waitTime == TIME_BETWEEN_PINGS_SEC) { bool pingSuccess = false; for (size_t i = 0; i < macAddressesVector.size(); i++) { std::string command = "l2ping " + macAddressesVector[i] + " -c 1"; int pingReturnCode = system(command.c_str()); // Need l2ping from BlueZ package #ifdef DEBUG printf("Called command \"%s\" and got return code: %d\n", command.c_str(), pingReturnCode); #endif // DEBUG if (pingReturnCode == 0) { pingSuccess = true; break; } } if (pingSuccess) { #ifdef DEBUG printf("Ping success.\n"); #endif // DEBUG BluetoothDevicesPing(true); } else if (!pingSuccess && attempts == MAX_PING_ATTEMPTS) { #ifdef DEBUG printf("Maximum number of attempts reached.\n"); #endif // DEBUG BluetoothDevicesPing(false); } else { #ifdef DEBUG printf("Ping failed, another attempt...\n"); #endif // DEBUG ++attempts; } waitTime = 0; } else { ++waitTime; } sleep(1); } return EXIT_SUCCESS; }
2483faaf9e855284f769967c5bbe9ae0cd0a1497
380d022e4a1d445224c24dbd6598b649702314cd
/wxwidgets/wxsitemundobuffer.h
93c8f91de19874b635c1d7c1f8e1ca3ae99d36ee
[]
no_license
kusupudiswamy/svn2git
bb5f1259a64097ba48c1e0eb992cad04ffd22d01
baa15e1defee620a5d942885bc5c0f5901fd9170
refs/heads/master
2020-05-19T12:45:42.269239
2019-05-05T11:42:05
2019-05-05T11:42:05
185,012,905
0
0
null
null
null
null
UTF-8
C++
false
false
2,138
h
wxsitemundobuffer.h
#ifndef WXSITEMUNDOBUFFER_H #define WXSITEMUNDOBUFFER_H #include <wx/arrstr.h> /** \brief This class is used to handle all Undo and Redo actions. * * This class bases on idea that any class can be represented * as Xml structure which can be hold inside simple string. * Each uundo position entry holds whole structure of resource, what * in case of standard resources should not exceed 50 kB. In case * of memory consumption problems this can be changed to hold differences * between two xml nodes only. */ class wxsItemUndoBuffer { public: /** \brief Ctor */ wxsItemUndoBuffer(int MaxEnteries=100); /** \brief Dctor */ ~wxsItemUndoBuffer(); /** \brief Checkign if we can undo */ inline bool CanUndo() { return m_CurrentPos > 0; } /** \brief Checking if we can redo */ inline bool CanRedo() { return m_CurrentPos < GetCount() - 1; } /** \brief Checking if current undo position is modified relatively to form saved on disk */ inline bool IsModified() { return m_CurrentPos != m_SavedPos; } /** \brief Adding new undo position * \param XmlData xml form of reosurce stored inside string */ void StoreChange(const wxString& XmlData); /** \brief Setting lastest undo buffer to saved state (equialent to content on files) */ inline void Saved() { m_SavedPos = m_CurrentPos; } /** \brief Undoing * \return Xml data previously provided in StoreChange or empty string if can not undo */ const wxString& Undo(); /** \brief Redoing * \return Xml data previously provided in StoreChange or empty string if can not undo */ const wxString& Redo(); private: /** \brief Getting number of enteries in undo array */ inline int GetCount() { return (int)m_Enteries.Count(); } wxArrayString m_Enteries; ///< \brief Array enteries int m_CurrentPos; ///< \brief Current position in undo buffer int m_SavedPos; ///< \brief Undo position representing not-changed resource (in form it's on disk) int m_MaxEnteries; ///< \brief Max enteries in undo buffer }; #endif
1e3ecbf73525021c89103ec5bc38de08e055364e
9e1cb9af0a32a8a49c0942763b3ef2cb552b9c71
/key.h
d85181d63893c557e885f84b7c03cf7f489d8ab1
[]
no_license
ILya-Lev/words_search
f2a2afbd2d4c6752079becdb25f435d118bd0fba
a1296bad944559f7a81acdc32ce579703e1fc1e1
refs/heads/master
2021-01-02T09:20:33.523967
2013-04-18T09:06:23
2013-04-18T09:06:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,235
h
key.h
#pragma once #include <string> #include <iostream> #include <functional> #include <algorithm> using std::string; using std::cout; using std::cin; using std::endl; class Key{ public: explicit Key(const string &freqT); string getKeyDubl() const {return wdublKey;} string getKeySimplif() const {return simplifKey;} private: string initKey, simplifKey, wdublKey; // string freqTable; class lessLitera : public std::binary_function<char, char, bool> { public: lessLitera(const string &freqT) : freqTable(freqT) {if(freqT.empty()) throw "cannot handle empty freqT";} bool operator() (const char lhs, const char rhs) { return freqTable.find(lhs) < freqTable.find(rhs); } private: string freqTable; }; }; Key::Key(const string &freqT) { cout<<"enter a string to find with: "; getline(cin, initKey); std::for_each(initKey.begin(), initKey.end(), [](char &c) {c = tolower(c);}); //lambda function wdublKey = initKey; std::sort(wdublKey.begin(), wdublKey.end(), lessLitera(freqT)); //sort using func obj lessLitera, that depends on frequence table simplifKey = wdublKey; simplifKey.erase(std::unique(simplifKey.begin(), simplifKey.end()), simplifKey.end()); // string (simplifKey).swap(simplifKey); }
10afebf9e8c7f39a454365fb8f7bb9347d150ece
da9413b67142c563a3f14f53134a21b16f81705f
/Engine/Mesh.h
b7e34509f7bd14cc82c112b385ade3a4acd1f32d
[]
no_license
albinopapa/MVC_Chili_2016_Framework
16a4ca24e1b3e075de367e5ef807b8fe8614974f
d4096559b733f51299150a65b126b145db76ea30
refs/heads/master
2020-05-28T00:04:33.813710
2016-07-27T04:05:45
2016-07-27T04:05:45
64,082,947
0
0
null
null
null
null
UTF-8
C++
false
false
624
h
Mesh.h
#pragma once #include "Includes.h" #include "Utilities.h" #include "PrimitiveMaker.h" class Mesh { public: Mesh() = default; virtual ~Mesh() = default; void Init(); void VertexBuffer(ID3D11Buffer *pVertexBuffer); void IndexBuffer(ID3D11Buffer *pIndexBuffer); ID3D11Buffer *VertexBuffer()const; ID3D11Buffer *IndexBuffer()const; void VertexList(std::vector<VertexPositionColorType> &&V); const std::vector<VertexPositionColorType> &VertexList()const; protected: std::vector<VertexPositionColorType> m_pVertices; comptr<ID3D11Buffer> m_pVertexBuffer, m_pIndexBuffer; D3D11_PRIMITIVE_TOPOLOGY m_topology; };
d639b3c85691252645752478401f018ddd325b1f
71fa3fabf89d9cfac4f20e2e3fd14d2a56c34a6b
/src/Model/CheckableModel/CheckableModel.cpp
6329342dd52d203a68d157bc61c40daf69dfaedc
[]
no_license
sprakhar77/NewsLee
18ca96351c2b22c7d5789a59e503b91505e7b306
a7d003c967412f345f092f5d722ab520aa8a3c18
refs/heads/master
2020-08-05T14:08:11.342986
2019-12-14T09:49:12
2019-12-14T09:49:12
212,573,653
1
1
null
null
null
null
UTF-8
C++
false
false
2,147
cpp
CheckableModel.cpp
#include "CheckableModel.h" CheckableModel::CheckableModel(QObject* parent) : QAbstractListModel(parent) { } int CheckableModel::rowCount(const QModelIndex& parent) const { Q_UNUSED(parent); return m_items.count(); } QVariant CheckableModel::data(const QModelIndex& index, int role) const { Q_ASSERT(index.isValid()); if (const auto item = m_items.at(index.row())) { switch (static_cast<ModelRole>(role)) { case ModelRole::Name: { return item->name(); } case ModelRole::Checked: { return item->checked(); } case ModelRole::Enabled: { return item->enabled(); } } } return QVariant(); } QHash<int, QByteArray> CheckableModel::roleNames() const { QHash<int, QByteArray> roles; roles[static_cast<int>(ModelRole::Name)] = "name"; roles[static_cast<int>(ModelRole::Checked)] = "checked"; roles[static_cast<int>(ModelRole::Enabled)] = "enabled"; return roles; } bool CheckableModel::setData(const QModelIndex& index, const QVariant& value, int role) { auto item = m_items[index.row()]; switch (static_cast<ModelRole>(role)) { case ModelRole::Name: { if (!item->setName(value.toString())) { return false; } break; } case ModelRole::Checked: { bool checked = value.toBool(); if (!item->setChecked(checked)) { return false; } break; } case ModelRole::Enabled: { bool enabled = value.toBool(); if (!item->setEnabled(enabled)) { return false; } break; } } emit dataChanged(index, index); return true; } void CheckableModel::appendItem(CheckableItem* item) { beginInsertRows({}, m_items.count(), m_items.count()); m_items.append(item); endInsertRows(); } QVector<QString> CheckableModel::extractAllCheckedItems() { QVector<QString> checkedItems; for (const auto item : m_items) { if (item && item->checked()) { checkedItems.push_back(item->name()); } } return checkedItems; }
62149dd22e942f26c446dea2596e4e0054a0f940
5ad92e61fd0b5b238a95b922e111cbae79584e1b
/src/Plugins/NodeDebuggerPlugin/NodeDebuggerModule.cpp
57a7aba52eccf9b5860412798e78fc8715845c4e
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
hsjsjsjdjwksks/Mengine
f44022d19411ff67514de5efe2ef166a63189b85
41c659ccf76236ee8cb206b8aa6849aa83f8ca26
refs/heads/master
2022-12-16T23:29:25.644129
2020-09-15T22:25:25
2020-09-15T22:25:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
59,098
cpp
NodeDebuggerModule.cpp
#include "NodeDebuggerModule.h" #include "Interface/OptionsServiceInterface.h" #include "Interface/PlayerServiceInterface.h" #include "Interface/RenderServiceInterface.h" #include "Interface/RenderSystemInterface.h" #include "Interface/ApplicationInterface.h" #include "Interface/ResourceServiceInterface.h" #include "Interface/PrefetcherServiceInterface.h" #include "Interface/PrototypeServiceInterface.h" #include "Interface/FactoryServiceInterface.h" #include "Interface/SocketSystemInterface.h" #include "Interface/VocabularyServiceInterface.h" #include "Interface/TextServiceInterface.h" #include "Interface/NotificationServiceInterface.h" #include "Interface/ArchiveServiceInterface.h" #include "Interface/PlatformInterface.h" #include "Interface/PickerInterface.h" #include "Interface/AnimationInterface.h" #include "Interface/SettingsServiceInterface.h" #ifdef MENGINE_ENVIRONMENT_PLATFORM_WIN32 # include "Interface/Win32PlatformExtensionInterface.h" #endif #include "NodeDebuggerSerialization.h" #include "HotSpotPolygonDebuggerBoundingBox.h" #include "TextFieldDebuggerBoundingBox.h" #include "Kernel/Assertion.h" #include "Kernel/ThreadTask.h" #include "Kernel/SchedulerHelper.h" #include "Kernel/ThreadMutexScope.h" #include "Kernel/AssertionVocabulary.h" #include "Kernel/NodeRenderHierarchy.h" #include "Kernel/Scene.h" #include "Kernel/Surface.h" #include "Kernel/StringFormat.h" #include "Kernel/Logger.h" #include "Kernel/DocumentHelper.h" #include "Kernel/GlobalInputHandlerHelper.h" #include "Kernel/AssertionMemoryPanic.h" #include "Kernel/ConstStringHelper.h" #include "Kernel/Stringstream.h" #include "Kernel/Blobject.h" #include "Config/StdString.h" #include "stdex/allocator_report.h" #include <iomanip> namespace Mengine { ////////////////////////////////////////////////////////////////////////// NodeDebuggerModule::NodeDebuggerModule() : m_serverState( ENodeDebuggerServerState::Invalid ) , m_shouldRecreateServer( false ) , m_shouldUpdateScene( false ) , m_workerId( 0 ) , m_globalKeyHandlerF2( 0 ) { } ////////////////////////////////////////////////////////////////////////// NodeDebuggerModule::~NodeDebuggerModule() { } ////////////////////////////////////////////////////////////////////////// bool NodeDebuggerModule::_initializeModule() { VOCABULARY_SET( DebuggerBoundingBoxInterface, STRINGIZE_STRING_LOCAL( "DebuggerBoundingBox" ), STRINGIZE_STRING_LOCAL( "HotSpotPolygon" ), Helper::makeFactorableUnique<HotSpotPolygonDebuggerBoundingBox>( MENGINE_DOCUMENT_FACTORABLE ), MENGINE_DOCUMENT_FACTORABLE ); VOCABULARY_SET( DebuggerBoundingBoxInterface, STRINGIZE_STRING_LOCAL( "DebuggerBoundingBox" ), STRINGIZE_STRING_LOCAL( "HotSpotSurface" ), Helper::makeFactorableUnique<HotSpotPolygonDebuggerBoundingBox>( MENGINE_DOCUMENT_FACTORABLE ), MENGINE_DOCUMENT_FACTORABLE ); VOCABULARY_SET( DebuggerBoundingBoxInterface, STRINGIZE_STRING_LOCAL( "DebuggerBoundingBox" ), STRINGIZE_STRING_LOCAL( "TextField" ), Helper::makeFactorableUnique<TextFieldDebuggerBoundingBox>( MENGINE_DOCUMENT_FACTORABLE ), MENGINE_DOCUMENT_FACTORABLE ); NOTIFICATION_ADDOBSERVERMETHOD( NOTIFICATOR_CHANGE_SCENE_COMPLETE, this, &NodeDebuggerModule::notifyChangeScene, MENGINE_DOCUMENT_FACTORABLE ); NOTIFICATION_ADDOBSERVERMETHOD( NOTIFICATOR_REMOVE_SCENE_DESTROY, this, &NodeDebuggerModule::notifyRemoveSceneDestroy, MENGINE_DOCUMENT_FACTORABLE ); NOTIFICATION_ADDOBSERVERMETHOD( NOTIFICATOR_INCREF_FACTORY_GENERATION, this, &NodeDebuggerModule::notifyIncrefFactoryGeneration, MENGINE_DOCUMENT_FACTORABLE ); #ifdef MENGINE_ENVIRONMENT_PLATFORM_WIN32 uint32_t globalKeyHandlerF2 = Helper::addGlobalKeyHandler( KC_F2, true, []( const InputKeyEvent & ) { Win32PlatformExtensionInterface * win32Platform = PLATFORM_SERVICE() ->getPlatformExtention(); uint32_t exitCode; win32Platform->createProcess( "NodeDebugger.exe", "127.0.0.1:18790", false, &exitCode ); }, MENGINE_DOCUMENT_FACTORABLE ); m_globalKeyHandlerF2 = globalKeyHandlerF2; #endif return true; } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::_finalizeModule() { VOCABULARY_REMOVE( STRINGIZE_STRING_LOCAL( "DebuggerBoundingBox" ), STRINGIZE_STRING_LOCAL( "HotSpotPolygon" ) ); VOCABULARY_REMOVE( STRINGIZE_STRING_LOCAL( "DebuggerBoundingBox" ), STRINGIZE_STRING_LOCAL( "HotSpotSurface" ) ); VOCABULARY_REMOVE( STRINGIZE_STRING_LOCAL( "DebuggerBoundingBox" ), STRINGIZE_STRING_LOCAL( "TextField" ) ); NOTIFICATION_REMOVEOBSERVER_THIS( NOTIFICATOR_CHANGE_SCENE_COMPLETE ); NOTIFICATION_REMOVEOBSERVER_THIS( NOTIFICATOR_REMOVE_SCENE_DESTROY ); NOTIFICATION_REMOVEOBSERVER_THIS( NOTIFICATOR_INCREF_FACTORY_GENERATION ); m_scene = nullptr; if( m_socket != nullptr ) { m_socket->disconnect(); m_socket = nullptr; } if( m_threadJob != nullptr ) { m_threadJob->removeWorker( m_workerId ); THREAD_SERVICE() ->joinTask( m_threadJob ); m_threadJob = nullptr; } THREAD_SERVICE() ->destroyThread( STRINGIZE_STRING_LOCAL( "NodeDebuggerListenThread" ) ); m_dataMutex = nullptr; m_archivator = nullptr; if( m_globalKeyHandlerF2 != 0 ) { Helper::removeGlobalHandler( m_globalKeyHandlerF2 ); m_globalKeyHandlerF2 = 0; } } ////////////////////////////////////////////////////////////////////////// bool NodeDebuggerModule::_availableModule() const { if( SERVICE_EXIST( SocketSystemInterface ) == false ) { return false; } return true; } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::onUpdate( uint32_t _id ) { MENGINE_UNUSED( _id ); } ////////////////////////////////////////////////////////////////////////// bool NodeDebuggerModule::onWork( uint32_t ) { switch( m_serverState ) { case ENodeDebuggerServerState::Invalid: { }break; case ENodeDebuggerServerState::WaitingForClient: { if( m_socket == nullptr ) { m_serverState = ENodeDebuggerServerState::Invalid; return false; } int32_t check = m_socket->checkForClientConnection(); if( check < 0 ) { // failed m_serverState = ENodeDebuggerServerState::Invalid; return false; } else if( check > 0 ) { // got client connection m_serverState = ENodeDebuggerServerState::Connected; APPLICATION_SERVICE() ->setNopause( true ); m_shouldUpdateScene = true; } } break; case ENodeDebuggerServerState::Connected: { // check if need to send data m_dataMutex->lock(); { if( !m_outgoingPackets.empty() ) { for( const NodeDebuggerPacket & p : m_outgoingPackets ) { m_socket->send( p.payload.data(), p.payload.size() ); } m_outgoingPackets.clear(); } } m_dataMutex->unlock(); // now check if we received something (100 ms) const bool haveSomeData = m_socket->waitForData( 100u ); if( haveSomeData ) { ThreadMutexScope mutexLock( m_dataMutex ); static constexpr size_t BUFFER_SIZE = 4096; uint8_t buffer[BUFFER_SIZE]; int32_t bytesReceived = 0; bool clientDisconnected = false; do { bytesReceived = m_socket->receive( buffer, BUFFER_SIZE ); if( bytesReceived > 0 ) { m_receivedData.insert( m_receivedData.end(), buffer + 0, buffer + bytesReceived ); } else { clientDisconnected = true; } } while( !clientDisconnected && bytesReceived == static_cast<int32_t>(BUFFER_SIZE) ); if( clientDisconnected ) { m_shouldRecreateServer = true; m_serverState = ENodeDebuggerServerState::Invalid; return true; } } // check if we have read something if( m_receivedData.size() > sizeof( PacketHeader ) ) { ThreadMutexScope mutexLock( m_dataMutex ); // check if we have enough data to form a packet PacketHeader * hdr = reinterpret_cast<PacketHeader *>(m_receivedData.data()); while( hdr != nullptr && hdr->compressedSize <= (m_receivedData.size() - sizeof( PacketHeader )) ) { // received garbage - nothing fancy, just disconnect if( hdr->magic != PACKET_MAGIC ) { m_shouldRecreateServer = true; m_serverState = ENodeDebuggerServerState::Invalid; return true; } const size_t dataSizeWithHeader = hdr->compressedSize + sizeof( PacketHeader ); NodeDebuggerPacket packet; this->uncompressPacket( packet, *hdr, m_receivedData.data() + sizeof( PacketHeader ) ); m_incomingPackets.emplace_back( packet ); // now remove this packet data from the buffer const size_t newSize = m_receivedData.size() - dataSizeWithHeader; if( newSize ) { memmove( m_receivedData.data(), m_receivedData.data() + dataSizeWithHeader, newSize ); m_receivedData.resize( newSize ); hdr = reinterpret_cast<PacketHeader *>(m_receivedData.data()); } else { m_receivedData.clear(); hdr = nullptr; } if( newSize <= sizeof( PacketHeader ) ) { break; } } } } break; } return true; } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::onDone( uint32_t ) { } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::setScene( const ScenePtr & _scene ) { if( m_scene != _scene ) { m_scene = _scene; m_shouldUpdateScene = true; } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::updateScene() { m_shouldUpdateScene = false; if( m_serverState == ENodeDebuggerServerState::Connected ) { this->sendScene( m_scene ); this->sendPickerable( m_scene ); this->sendRenderable( m_scene ); this->sendSettings(); this->sendObjectsLeak(); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::_update( bool _focus ) { MENGINE_UNUSED( _focus ); if( m_shouldRecreateServer ) { this->recreateServer(); } if( m_shouldUpdateScene == true ) { this->updateScene(); } if( m_socket == nullptr ) { this->privateInit(); } else { ThreadMutexScope mutexLock( m_dataMutex ); if( !m_incomingPackets.empty() ) { NodeDebuggerPacket & packet = m_incomingPackets.front(); this->processPacket( packet ); m_incomingPackets.pop_front(); } } } ////////////////////////////////////////////////////////////////////////// static bool s_absorbBoundingBox( const NodePtr & _node, mt::box2f * _bb ) { if( _node->isEnable() == false ) { return false; } bool successul = false; mt::box2f absorb_bb; mt::insideout_box( absorb_bb ); const ConstString & type = _node->getType(); DebuggerBoundingBoxInterfacePtr boundingBox = VOCABULARY_GET( STRINGIZE_STRING_LOCAL( "DebuggerBoundingBox" ), type ); if( boundingBox != nullptr ) { mt::box2f bbox; if( boundingBox->getBoundingBox( _node, &bbox ) == true ) { mt::merge_box( absorb_bb, bbox ); successul = true; } } else { RenderInterface * render = _node->getRender(); if( render != nullptr ) { const mt::box2f * rbbox = render->getBoundingBox(); if( rbbox != nullptr ) { mt::merge_box( absorb_bb, *rbbox ); successul = true; } } } _node->foreachChildren( [&absorb_bb, &successul]( const NodePtr & _child ) { mt::box2f child_bb; if( s_absorbBoundingBox( _child, &child_bb ) == true ) { mt::merge_box( absorb_bb, child_bb ); successul = true; } } ); *_bb = absorb_bb; return successul; } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::_render( const RenderPipelineInterfacePtr & _renderPipeline, const RenderContext * _context ) { if( m_selectedNodePath.empty() == true ) { return; } NodePtr node = Helper::findUniqueNode( m_scene, m_selectedNodePath ); if( node == nullptr ) { return; } RenderContext node_context = *_context; Helper::fillNodeRenderContext( node, &node_context ); mt::box2f bbox; if( s_absorbBoundingBox( node, &bbox ) == false ) { return; } const RenderCameraInterface * camera = node_context.camera; const mt::mat4f & vpminv = camera->getCameraViewProjectionMatrixInv(); mt::box2f bcrop; mt::mul_v2_v2_m4( bcrop.minimum, mt::vec2f( -1.f, 1.f ), vpminv ); mt::mul_v2_v2_m4( bcrop.maximum, mt::vec2f( 1.f, -1.f ), vpminv ); mt::crop_box( bbox, bcrop ); const RenderMaterialInterfacePtr & debugMaterial = RENDERMATERIAL_SERVICE() ->getDebugTriangleMaterial(); VectorRenderVertex2D & vertices = RENDER_SERVICE() ->getDebugRenderVertex2D( 8 ); float offset = 2.0f; vertices[0].position = mt::vec3f( bbox.minimum.x - offset, bbox.minimum.y - offset, 0.f ); vertices[1].position = mt::vec3f( bbox.maximum.x + offset, bbox.minimum.y - offset, 0.f ); vertices[2].position = mt::vec3f( bbox.maximum.x + offset, bbox.maximum.y + offset, 0.f ); vertices[3].position = mt::vec3f( bbox.minimum.x - offset, bbox.maximum.y + offset, 0.f ); vertices[4].position = mt::vec3f( bbox.minimum.x + offset, bbox.minimum.y + offset, 0.f ); vertices[5].position = mt::vec3f( bbox.maximum.x - offset, bbox.minimum.y + offset, 0.f ); vertices[6].position = mt::vec3f( bbox.maximum.x - offset, bbox.maximum.y - offset, 0.f ); vertices[7].position = mt::vec3f( bbox.minimum.x + offset, bbox.maximum.y - offset, 0.f ); ColorValue_ARGB color = Helper::makeRGBA( 1.f, 0.f, 1.f, 1.f ); for( uint32_t index = 0; index != 8; ++index ) { vertices[index].color = color; } VectorRenderIndex & indices = RENDER_SERVICE() ->getDebugRenderIndex( 24 ); indices[0 * 6 + 0 * 3 + 0] = 0; indices[0 * 6 + 0 * 3 + 1] = 1; indices[0 * 6 + 0 * 3 + 2] = 4; indices[0 * 6 + 1 * 3 + 0] = 4; indices[0 * 6 + 1 * 3 + 1] = 1; indices[0 * 6 + 1 * 3 + 2] = 5; indices[1 * 6 + 0 * 3 + 0] = 1; indices[1 * 6 + 0 * 3 + 1] = 2; indices[1 * 6 + 0 * 3 + 2] = 5; indices[1 * 6 + 1 * 3 + 0] = 5; indices[1 * 6 + 1 * 3 + 1] = 2; indices[1 * 6 + 1 * 3 + 2] = 6; indices[2 * 6 + 0 * 3 + 0] = 2; indices[2 * 6 + 0 * 3 + 1] = 3; indices[2 * 6 + 0 * 3 + 2] = 6; indices[2 * 6 + 1 * 3 + 0] = 6; indices[2 * 6 + 1 * 3 + 1] = 3; indices[2 * 6 + 1 * 3 + 2] = 7; indices[3 * 6 + 0 * 3 + 0] = 3; indices[3 * 6 + 0 * 3 + 1] = 0; indices[3 * 6 + 0 * 3 + 2] = 7; indices[3 * 6 + 1 * 3 + 0] = 7; indices[3 * 6 + 1 * 3 + 1] = 0; indices[3 * 6 + 1 * 3 + 2] = 4; _renderPipeline->addRenderObject( &node_context , debugMaterial , nullptr , vertices.data(), (uint32_t)vertices.size() , indices.data(), (uint32_t)indices.size() , &bbox , false, MENGINE_DOCUMENT_FORWARD ); } ////////////////////////////////////////////////////////////////////////// bool NodeDebuggerModule::privateInit() { m_shouldRecreateServer = true; m_threadJob = THREAD_SERVICE() ->createJob( 50u, MENGINE_DOCUMENT_FACTORABLE ); THREAD_SERVICE() ->createThread( STRINGIZE_STRING_LOCAL( "NodeDebuggerListenThread" ), MENGINE_THREAD_PRIORITY_BELOW_NORMAL, MENGINE_DOCUMENT_FACTORABLE ); THREAD_SERVICE() ->addTask( STRINGIZE_STRING_LOCAL( "NodeDebuggerListenThread" ), m_threadJob ); m_dataMutex = THREAD_SERVICE() ->createMutex( MENGINE_DOCUMENT_FACTORABLE ); m_workerId = m_threadJob->addWorker( ThreadWorkerInterfacePtr( this ) ); ArchivatorInterfacePtr archivator = VOCABULARY_GET( STRINGIZE_STRING_LOCAL( "Archivator" ), STRINGIZE_STRING_LOCAL( "lz4" ) ); MENGINE_ASSERTION_MEMORY_PANIC( archivator ); m_archivator = archivator; return true; } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::recreateServer() { m_socket = SOCKET_SYSTEM() ->createSocket( MENGINE_DOCUMENT_FACTORABLE ); SocketConnectInfo sci = {"0.0.0.0", "18790"}; m_socket->bind( sci, false ); m_serverState = ENodeDebuggerServerState::WaitingForClient; m_receivedData.resize( 0 ); m_incomingPackets.resize( 0 ); m_outgoingPackets.resize( 0 ); m_shouldRecreateServer = false; } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::compressPacket( NodeDebuggerPacket & _packet, PacketHeader & _hdr ) { const size_t payloadSize = _packet.payload.size(); if( m_archivator == nullptr || payloadSize < 1024 ) { _hdr.compressedSize = static_cast<uint32_t>(payloadSize); _hdr.uncompressedSize = 0; // packet is not compressed } else { const size_t maxCompressedSize = m_archivator->compressBound( payloadSize ); Blobject compressedPayload( maxCompressedSize ); size_t compressedSize = 0; bool success = m_archivator->compress( compressedPayload.data(), maxCompressedSize, _packet.payload.data(), payloadSize, &compressedSize, EAC_NORMAL ); if( success == false || compressedSize >= payloadSize ) { _hdr.compressedSize = static_cast<uint32_t>(payloadSize); _hdr.uncompressedSize = 0; // packet is not compressed } else { _hdr.compressedSize = static_cast<uint32_t>(compressedSize); _hdr.uncompressedSize = static_cast<uint32_t>(payloadSize); compressedPayload.resize( compressedSize ); _packet.payload.swap( compressedPayload ); } } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::uncompressPacket( NodeDebuggerPacket & _packet, PacketHeader & _hdr, const uint8_t * _receivedData ) { if( _hdr.uncompressedSize == 0 ) { // this packet is uncompressed, just copy _packet.payload.resize( _hdr.compressedSize ); MENGINE_MEMCPY( _packet.payload.data(), _receivedData, _hdr.compressedSize ); } else { _packet.payload.resize( _hdr.uncompressedSize ); size_t uncompressedDataSize = 0; bool success = m_archivator->decompress( _packet.payload.data(), _hdr.uncompressedSize, _receivedData, _hdr.compressedSize, &uncompressedDataSize ); MENGINE_UNUSED( success ); MENGINE_ASSERTION( success == true && uncompressedDataSize == _hdr.uncompressedSize, "Packet decompression failed!" ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::sendPacket( NodeDebuggerPacket & _packet ) { if( _packet.payload.empty() == true ) { return; } PacketHeader hdr; hdr.magic = PACKET_MAGIC; this->compressPacket( _packet, hdr ); Detail::InsertPacketHeader( _packet.payload, hdr ); ThreadMutexScope mutexLock( m_dataMutex ); m_outgoingPackets.emplace_back( _packet ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeTransformation( const TransformationPtr & _transformation, pugi::xml_node & _xmlParentNode ) { pugi::xml_node xmlNode = _xmlParentNode.append_child( "Transformation" ); Detail::serializeNodeProp( _transformation->getLocalPosition(), "position", xmlNode ); Detail::serializeNodeProp( _transformation->getLocalOrigin(), "origin", xmlNode ); Detail::serializeNodeProp( _transformation->getLocalSkew(), "skew", xmlNode ); Detail::serializeNodeProp( _transformation->getLocalScale(), "scale", xmlNode ); Detail::serializeNodeProp( _transformation->getLocalOrientation(), "orientation", xmlNode ); Detail::serializeNodeProp( _transformation->getWorldPosition(), "worldPosition", xmlNode ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeRender( const RenderInterface * _render, pugi::xml_node & _xmlParentNode ) { pugi::xml_node xmlNode = _xmlParentNode.append_child( "Render" ); Detail::serializeNodeProp( _render->isRenderEnable(), "enable", xmlNode ); Detail::serializeNodeProp( _render->isHide(), "hide", xmlNode ); Detail::serializeNodeProp( _render->getLocalColor(), "local_color", xmlNode ); Detail::serializeNodeProp( _render->getPersonalColor(), "personal_color", xmlNode ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeAnimation( const Compilable * _compilable, const AnimationInterface * _animation, pugi::xml_node & _xmlParentNode ) { pugi::xml_node xmlNode = _xmlParentNode.append_child( "Animation" ); Detail::serializeNodeProp( _animation->isLoop(), "loop", xmlNode ); Detail::serializeNodeProp( _animation->isPlay(), "play", xmlNode ); Detail::serializeNodeProp( _animation->isPause(), "pause", xmlNode ); if( _compilable->isCompile() == true ) { Detail::serializeNodeProp( _animation->getTime(), "time", xmlNode ); } else { Detail::serializeNodeProp( 0.f, "time", xmlNode ); } Detail::serializeNodeProp( _animation->getDuration(), "duration", xmlNode ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeTextField( const TextFieldPtr & _textField, pugi::xml_node & _xmlParentNode ) { pugi::xml_node xmlNode = _xmlParentNode.append_child( "Type:TextField" ); Detail::serializeNodeProp( _textField->getMaxLength(), "MaxLength", xmlNode ); Detail::serializeNodeProp( _textField->getWrap(), "Wrap", xmlNode ); const ConstString & textID = _textField->getTextId(); const ConstString & textAliasEnvironment = _textField->getTextAliasEnvironment(); const ConstString & aliasTestId = TEXT_SERVICE() ->getTextAlias( textAliasEnvironment, textID ); Detail::serializeNodeProp( aliasTestId, "TextID", xmlNode ); Detail::serializeNodeProp( textAliasEnvironment, "TextAliasEnvironment", xmlNode ); TextEntryInterfacePtr textEntry; if( TEXT_SERVICE() ->hasTextEntry( aliasTestId, &textEntry ) == false ) { Detail::serializeNodeProp( false, "HasText", xmlNode ); } else { Detail::serializeNodeProp( true, "HasText", xmlNode ); size_t textSize; const Char * textValue = textEntry->getValue( &textSize ); Detail::serializeNodeProp( String( textValue, textSize ), "Format", xmlNode ); VectorString textFormatArgs = _textField->getTextFormatArgs(); TEXT_SERVICE() ->getTextAliasArguments( textAliasEnvironment, textID, &textFormatArgs ); String fmt; Helper::getStringFormat( &fmt, textValue, textSize, textFormatArgs ); Detail::serializeNodeProp( fmt, "Text", xmlNode ); Detail::serializeNodeProp( _textField->calcFontName(), "TotalFontName", xmlNode ); Detail::serializeNodeProp( _textField->calcFontColor(), "TotalFontColor", xmlNode ); Detail::serializeNodeProp( _textField->calcLineOffset(), "TotalLineOffset", xmlNode ); Detail::serializeNodeProp( _textField->calcCharOffset(), "TotalCharOffset", xmlNode ); Detail::serializeNodeProp( _textField->calcCharScale(), "TotalCharScale", xmlNode ); Detail::serializeNodeProp( (uint32_t)_textField->calcHorizontAlign(), "TotalHorizontAlign", xmlNode ); Detail::serializeNodeProp( (uint32_t)_textField->calcVerticalAlign(), "TotalVerticalAlign", xmlNode ); } Detail::serializeNodeProp( _textField->getFontName(), "FontName", xmlNode ); Detail::serializeNodeProp( _textField->getFontColor(), "FontColor", xmlNode ); Detail::serializeNodeProp( _textField->getLineOffset(), "LineOffset", xmlNode ); Detail::serializeNodeProp( _textField->getCharOffset(), "CharOffset", xmlNode ); Detail::serializeNodeProp( _textField->getCharScale(), "CharScale", xmlNode ); Detail::serializeNodeProp( (uint32_t)_textField->getHorizontAlign(), "HorizontAlign", xmlNode ); Detail::serializeNodeProp( (uint32_t)_textField->getVerticalAlign(), "VerticalAlign", xmlNode ); Detail::serializeNodeProp( _textField->getMaxCharCount(), "MaxCharCount", xmlNode ); Detail::serializeNodeProp( _textField->getPixelsnap(), "Pixelsnap", xmlNode ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeMovie2( const Compilable * _compilable, const UnknownMovie2Interface * _unknownMovie2, pugi::xml_node & _xmlParentNode ) { pugi::xml_node xmlNode = _xmlParentNode.append_child( "Type:Movie2" ); Detail::serializeNodeProp( _unknownMovie2->getCompositionName(), "CompositionName", xmlNode ); Detail::serializeNodeProp( _unknownMovie2->getTextAliasEnvironment(), "TextAliasEnvironment", xmlNode ); pugi::xml_node xmlSubCompositions = xmlNode.append_child( "SubCompositions" ); _unknownMovie2->foreachSubComposition( [this, _compilable, &xmlSubCompositions]( const Movie2SubCompositionInterfacePtr & _subComposition ) { pugi::xml_node xmlElement = xmlSubCompositions.append_child( "Element" ); Detail::serializeNodeProp( _subComposition->getName(), "SubCompositionName", xmlElement ); Detail::serializeNodeProp( _subComposition->getSubCompositionEnable(), "SubCompositionEnable", xmlElement ); AnimationInterface * animation = _subComposition->getAnimation(); if( animation != nullptr ) { this->serializeAnimation( _compilable, animation, xmlElement ); } }); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeSpine( const UnknownSpineInterface * _unknownSpine, pugi::xml_node & _xmlParentNode ) { const ResourcePtr & resourceSpineSkeleton = _unknownSpine->getResourceSpineSkeleton(); if( resourceSpineSkeleton == nullptr ) { return; } pugi::xml_node xmlNode = _xmlParentNode.append_child( "Type:Spine" ); Detail::serializeNodeProp( resourceSpineSkeleton->getName(), "ResourceName", xmlNode ); Detail::serializeNodeProp( resourceSpineSkeleton->getType(), "ResourceType", xmlNode ); const ContentInterface * content = resourceSpineSkeleton->getContent(); if( content != nullptr ) { this->serializeContent( content, xmlNode ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeShape( const ShapePtr & _shape, pugi::xml_node & _xmlParentNode ) { const SurfacePtr & surface = _shape->getSurface(); if( surface == nullptr ) { return; } pugi::xml_node xmlNode = _xmlParentNode.append_child( "Component:Surface" ); Detail::serializeNodeProp( surface->getName(), "Name", xmlNode ); Detail::serializeNodeProp( surface->getType(), "Type", xmlNode ); if( surface->isCompile() == true ) { Detail::serializeNodeProp( true, "Compile", xmlNode ); Detail::serializeNodeProp( surface->getMaxSize(), "MaxSize", xmlNode ); Detail::serializeNodeProp( surface->getSize(), "Size", xmlNode ); Detail::serializeNodeProp( surface->getOffset(), "Offset", xmlNode ); Detail::serializeNodeProp( surface->getAnchor(), "Anchor", xmlNode ); } else { Detail::serializeNodeProp( false, "Compile", xmlNode ); Detail::serializeNodeProp( mt::vec2f{0.f, 0.f}, "MaxSize", xmlNode ); Detail::serializeNodeProp( mt::vec2f{0.f, 0.f}, "Size", xmlNode ); Detail::serializeNodeProp( mt::vec2f{0.f, 0.f}, "Offset", xmlNode ); Detail::serializeNodeProp( mt::vec2f{0.f, 0.f}, "Anchor", xmlNode ); } const AnimationInterface * animation = surface->getAnimation(); if( animation != nullptr ) { this->serializeAnimation( surface.get(), animation, xmlNode ); } SurfaceImagePtr surfaceImage = stdex::intrusive_dynamic_cast<SurfaceImagePtr>(surface); if( surfaceImage != nullptr ) { this->serializeSurfaceImage( surfaceImage, xmlNode ); } SurfaceImageSequencePtr surfaceImageSequence = stdex::intrusive_dynamic_cast<SurfaceImageSequencePtr>(surface); if( surfaceImageSequence != nullptr ) { this->serializeSurfaceImageSequence( surfaceImageSequence, xmlNode ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeSurfaceImage( const SurfaceImagePtr & _surfaceImage, pugi::xml_node & _xmlParentNode ) { const ResourceImagePtr & resourceImage = _surfaceImage->getResourceImage(); if( resourceImage == nullptr ) { return; } pugi::xml_node xmlNode = _xmlParentNode.append_child( "Type:SurfaceImage" ); Detail::serializeNodeProp( resourceImage->getName(), "ResourceName", xmlNode ); Detail::serializeNodeProp( resourceImage->getType(), "ResourceType", xmlNode ); const ContentInterface * content = resourceImage->getContent(); if( content != nullptr ) { this->serializeContent( content, xmlNode ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeSurfaceImageSequence( const SurfaceImageSequencePtr & _surfaceImageSequence, pugi::xml_node & _xmlParentNode ) { const ResourceImageSequencePtr & resourceImageSequence = _surfaceImageSequence->getResourceImageSequence(); if( resourceImageSequence == nullptr ) { return; } pugi::xml_node xmlNode = _xmlParentNode.append_child( "Type:SurfaceImageSequence" ); Detail::serializeNodeProp( resourceImageSequence->getName(), "ResourceName", xmlNode ); Detail::serializeNodeProp( resourceImageSequence->getType(), "ResourceType", xmlNode ); Detail::serializeNodeProp( resourceImageSequence->getSequenceCount(), "ResourceSequenceCount", xmlNode ); Detail::serializeNodeProp( resourceImageSequence->getSequenceDuration(), "ResourceSequenceDuration", xmlNode ); Detail::serializeNodeProp( resourceImageSequence->getSequenceCount(), "ResourceSequenceCount", xmlNode ); Detail::serializeNodeProp( resourceImageSequence->getSequenceDuration(), "ResourceSequenceDuration", xmlNode ); Detail::serializeNodeProp( _surfaceImageSequence->getCurrentFrame(), "CurrentFrame", xmlNode ); const ContentInterface * content = resourceImageSequence->getContent(); if( content != nullptr ) { this->serializeContent( content, xmlNode ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeContent( const ContentInterface * _content, pugi::xml_node & _xmlParentNode ) { pugi::xml_node xmlNode = _xmlParentNode.append_child( "Content" ); const FileGroupInterfacePtr & fileGroup = _content->getFileGroup(); Detail::serializeNodeProp( fileGroup->getName(), "FileGroup", xmlNode ); Detail::serializeNodeProp( _content->getFilePath(), "FilePath", xmlNode ); Detail::serializeNodeProp( _content->getCodecType(), "CodecType", xmlNode ); Detail::serializeNodeProp( _content->getConverterType(), "ConverterType", xmlNode ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeNode( const NodePtr & _node, pugi::xml_node & _xmlParentNode ) { pugi::xml_node xmlNode = _xmlParentNode.append_child( "Node" ); this->serializeNodeSingle( _node, xmlNode ); if( _node->emptyChildren() == false ) { pugi::xml_node xmlChildrenContainer = xmlNode.append_child( "Children" ); _node->foreachChildren( [this, &xmlChildrenContainer]( const NodePtr & _child ) { this->serializeNode( _child, xmlChildrenContainer ); } ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeNodeSingle( const NodePtr & _node, pugi::xml_node & _xmlNode ) { Detail::serializeNodeProp( _node->getUniqueIdentity(), "uid", _xmlNode ); Detail::serializeNodeProp( _node->getName(), "name", _xmlNode ); Detail::serializeNodeProp( _node->getType(), "type", _xmlNode ); Detail::serializeNodeProp( _node->isEnable(), "enable", _xmlNode ); this->serializeTransformation( _node, _xmlNode ); RenderInterface * render = _node->getRender(); if( render != nullptr ) { this->serializeRender( render, _xmlNode ); } AnimationInterface * animation = _node->getAnimation(); if( animation != nullptr ) { this->serializeAnimation( _node.get(), animation, _xmlNode ); } ShapePtr shape = stdex::intrusive_dynamic_cast<ShapePtr>(_node); if( shape != nullptr ) { this->serializeShape( shape, _xmlNode ); } TextFieldPtr textField = stdex::intrusive_dynamic_cast<TextFieldPtr>(_node); if( textField != nullptr ) { this->serializeTextField( textField, _xmlNode ); } const UnknownMovie2Interface * unknownMovie2 = _node->getDynamicUnknown(); if( unknownMovie2 != nullptr ) { this->serializeMovie2( _node.get(), unknownMovie2, _xmlNode ); } const UnknownSpineInterface * unknownSpine = _node->getDynamicUnknown(); if( unknownSpine != nullptr ) { this->serializeSpine( unknownSpine, _xmlNode ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializePickerable( PickerInterface * _picker, pugi::xml_node & _xmlParentNode ) { Node * nodeChild = dynamic_cast<Node *>(_picker); pugi::xml_node xmlNode = _xmlParentNode.append_child( "Node" ); if( nodeChild != nullptr ) { this->serializeNodeSingle( NodePtr::from( nodeChild ), xmlNode ); } if( _picker->emptyPickerChildren() == false ) { pugi::xml_node xmlChildrenContainer = xmlNode.append_child( "Children" ); _picker->foreachPickerChildren( [this, &xmlChildrenContainer]( PickerInterface * _child ) { this->serializePickerable( _child, xmlChildrenContainer ); } ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::serializeRenderable( RenderInterface * _render, pugi::xml_node & _xmlParentNode ) { Node * nodeChild = dynamic_cast<Node *>(_render); pugi::xml_node xmlNode = _xmlParentNode.append_child( "Node" ); if( nodeChild != nullptr ) { this->serializeNodeSingle( NodePtr::from( nodeChild ), xmlNode ); } if( _render->emptyRenderChildren() == false ) { pugi::xml_node xmlChildrenContainer = xmlNode.append_child( "Children" ); _render->foreachRenderChildren( [this, &xmlChildrenContainer]( RenderInterface * _child ) { this->serializeRenderable( _child, xmlChildrenContainer ); } ); } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::sendScene( const ScenePtr & _scene ) { pugi::xml_document doc; pugi::xml_node packetNode = doc.append_child( "Packet" ); packetNode.append_attribute( "type" ).set_value( "Scene" ); if( _scene != nullptr ) { pugi::xml_node payloadNode = packetNode.append_child( "Payload" ); this->serializeNode( _scene, payloadNode ); } NodeDebuggerPacket packet; MyXMLWriter writer( packet.payload ); #ifdef MENGINE_DEBUG const uint32_t xmlFlags = pugi::format_indent; #else const uint32_t xmlFlags = pugi::format_raw; #endif doc.save( writer, " ", xmlFlags, pugi::encoding_utf8 ); this->sendPacket( packet ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::sendPickerable( const ScenePtr & _scene ) { pugi::xml_document doc; pugi::xml_node packetNode = doc.append_child( "Packet" ); packetNode.append_attribute( "type" ).set_value( "Pickerable" ); if( _scene != nullptr ) { pugi::xml_node payloadNode = packetNode.append_child( "Payload" ); PickerInterface * picker = _scene->getPicker(); this->serializePickerable( picker, payloadNode ); } NodeDebuggerPacket packet; MyXMLWriter writer( packet.payload ); #ifdef MENGINE_DEBUG const uint32_t xmlFlags = pugi::format_indent; #else const uint32_t xmlFlags = pugi::format_raw; #endif doc.save( writer, " ", xmlFlags, pugi::encoding_utf8 ); this->sendPacket( packet ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::sendRenderable( const ScenePtr & _scene ) { pugi::xml_document doc; pugi::xml_node packetNode = doc.append_child( "Packet" ); packetNode.append_attribute( "type" ).set_value( "Renderable" ); if( _scene != nullptr ) { pugi::xml_node payloadNode = packetNode.append_child( "Payload" ); RenderInterface * render = _scene->getRender(); this->serializeRenderable( render, payloadNode ); } NodeDebuggerPacket packet; MyXMLWriter writer( packet.payload ); #ifdef MENGINE_DEBUG const uint32_t xmlFlags = pugi::format_indent; #else const uint32_t xmlFlags = pugi::format_raw; #endif doc.save( writer, " ", xmlFlags, pugi::encoding_utf8 ); this->sendPacket( packet ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::sendSettings() { pugi::xml_document doc; pugi::xml_node packetNode = doc.append_child( "Packet" ); packetNode.append_attribute( "type" ).set_value( "Settings" ); pugi::xml_node payloadNode = packetNode.append_child( "Payload" ); SETTINGS_SERVICE() ->visitSettings( [&payloadNode]( const ConstString & _name, const SettingInterfacePtr & _settings ) { const FileGroupInterfacePtr & fileGroup = _settings->getFileGroup(); const FilePath & filePath = _settings->getFilePath(); Char fullPath[MENGINE_MAX_PATH] = {'\0'}; if( fileGroup->getFullPath( filePath, fullPath ) == false ) { return; } pugi::xml_node xml_setting = payloadNode.append_child( "Setting" ); xml_setting.append_attribute( "name" ).set_value( _name.c_str() ); xml_setting.append_attribute( "file" ).set_value( fullPath ); } ); NodeDebuggerPacket packet; MyXMLWriter writer( packet.payload ); #ifdef MENGINE_DEBUG const uint32_t xmlFlags = pugi::format_indent; #else const uint32_t xmlFlags = pugi::format_raw; #endif doc.save( writer, " ", xmlFlags, pugi::encoding_utf8 ); this->sendPacket( packet ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::sendObjectsLeak() { uint32_t generation = FACTORY_SERVICE() ->getFactoryGeneration(); if( generation < 2 ) { return; } pugi::xml_document xml_doc; pugi::xml_node packetNode = xml_doc.append_child( "Packet" ); packetNode.append_attribute( "type" ).set_value( "ObjectsLeak" ); pugi::xml_node payloadNode = packetNode.append_child( "Payload" ); payloadNode.append_attribute( "Generation" ).set_value( generation - 1 ); uint32_t leakcount = 0; typedef Vector<DocumentPtr> VectorDocuments; typedef Map<String, VectorDocuments> MapObjectLeaks; MapObjectLeaks objectLeaks; FACTORY_SERVICE() ->visitFactoryLeakObjects( generation - 1, [&leakcount, &objectLeaks]( const Factory * _factory, const Factorable * _factorable, const Char * _type, const DocumentPtr & _doc ) { MENGINE_UNUSED( _factory ); MENGINE_UNUSED( _factorable ); if( _doc == nullptr ) { return; } objectLeaks[_type].emplace_back( _doc ); ++leakcount; } ); for( auto && [factory, objects] : objectLeaks ) { pugi::xml_node xml_objects = payloadNode.append_child( "Objects" ); xml_objects.append_attribute( "Factory" ).set_value( factory.c_str() ); for( const DocumentPtr & doc : objects ) { pugi::xml_node xml_object = xml_objects.append_child( "Object" ); xml_object.append_attribute( "File" ).set_value( doc->getFile() ); xml_object.append_attribute( "Function" ).set_value( doc->getFunction() ); xml_object.append_attribute( "Line" ).set_value( doc->getLine() ); xml_object.append_attribute( "Message" ).set_value( MENGINE_DOCUMENT_STR( doc ) ); DocumentPtr doc_parent = doc->getParent(); while( doc_parent != nullptr ) { pugi::xml_node xml_parent = xml_object.append_child( "Parent" ); xml_parent.append_attribute( "File" ).set_value( doc_parent->getFile() ); xml_parent.append_attribute( "Function" ).set_value( doc_parent->getFunction() ); xml_parent.append_attribute( "Line" ).set_value( doc_parent->getLine() ); xml_parent.append_attribute( "Message" ).set_value( MENGINE_DOCUMENT_STR( doc_parent ) ); doc_parent = doc_parent->getParent(); } } } NodeDebuggerPacket packet; MyXMLWriter writer( packet.payload ); #ifdef MENGINE_DEBUG const uint32_t xmlFlags = pugi::format_indent; #else const uint32_t xmlFlags = pugi::format_raw; #endif xml_doc.save( writer, " ", xmlFlags, pugi::encoding_utf8 ); this->sendPacket( packet ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::processPacket( NodeDebuggerPacket & _packet ) { pugi::xml_document doc; pugi::xml_parse_result result = doc.load_buffer( _packet.payload.data(), _packet.payload.size() ); if( !result ) { return; } pugi::xml_node packetNode = doc.child( "Packet" ); if( !packetNode ) { return; } pugi::xml_attribute typeAttrib = packetNode.attribute( "type" ); if( !typeAttrib ) { return; } // type name to enum std::string typeStr = typeAttrib.value(); pugi::xml_node payloadNode = packetNode.child( "Payload" ); if( !payloadNode ) { return; } if( typeStr == "Node" ) { pugi::xml_node xmlNode = payloadNode.child( "Node" ); if( xmlNode ) { this->receiveChangedNode( xmlNode ); } } else if( typeStr == "Selection" ) { m_selectedNodePath.clear(); pugi::xml_node xmlNode = payloadNode.child( "Path" ); if( xmlNode ) { pugi::xml_attribute valueAttr = xmlNode.attribute( "value" ); if( valueAttr ) { this->stringToPath( valueAttr.value(), &m_selectedNodePath ); } } } else if( typeStr == "GameControl" ) { pugi::xml_node xmlNode = payloadNode.child( "Command" ); if( xmlNode ) { pugi::xml_attribute valueAttr = xmlNode.attribute( "value" ); if( valueAttr ) { this->receiveGameControlCommand( valueAttr.as_string() ); } } } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::receiveChangedNode( const pugi::xml_node & _xmlNode ) { String pathStr = _xmlNode.attribute( "path" ).value(); VectorNodePath path; this->stringToPath( pathStr, &path ); NodePtr node = Helper::findUniqueNode( m_scene, path ); if( node != nullptr ) { Detail::deserializeNodeProp<bool>( "enable", _xmlNode, [node]( bool _value ) { if( _value == node->isEnable() ) { return; } if( _value == true ) { node->enable(); } else { node->disable(); } } ); pugi::xml_node transformationNode = _xmlNode.child( "Transformation" ); Detail::deserializeNodeProp<mt::vec3f>( "position", transformationNode, [node]( const mt::vec3f & _value ) { node->setLocalPosition( _value ); } ); Detail::deserializeNodeProp<mt::vec3f>( "origin", transformationNode, [node]( const mt::vec3f & _value ) { node->setLocalOrigin( _value ); } ); Detail::deserializeNodeProp<mt::vec2f>( "skew", transformationNode, [node]( const mt::vec2f & _value ) { node->setLocalSkew( _value ); } ); Detail::deserializeNodeProp<mt::vec3f>( "scale", transformationNode, [node]( const mt::vec3f & _value ) { node->setLocalScale( _value ); } ); Detail::deserializeNodeProp<mt::vec3f>( "orientation", transformationNode, [node]( const mt::vec3f & _value ) { node->setLocalOrientation( _value ); } ); pugi::xml_node renderNode = _xmlNode.child( "Render" ); if( renderNode ) { RenderInterface * render = node->getRender(); Detail::deserializeNodeProp<bool>( "hide", renderNode, [render]( bool _value ) { render->setHide( _value ); } ); Detail::deserializeNodeProp<Color>( "local_color", renderNode, [render]( const Color & _value ) { render->setLocalColor( _value ); } ); Detail::deserializeNodeProp<Color>( "personal_color", renderNode, [render]( const Color & _value ) { render->setPersonalColor( _value ); } ); } pugi::xml_node animationNode = _xmlNode.child( "Animation" ); if( animationNode ) { AnimationInterface * animation = node->getAnimation(); Detail::deserializeNodeProp<bool>( "loop", animationNode, [animation]( bool _value ) { animation->setLoop( _value ); } ); Detail::deserializeNodeProp<bool>( "time", animationNode, [animation]( float _value ) { if( _value < 0.f ) { _value = 0.f; } else if( _value > animation->getDuration() ) { _value = animation->getDuration(); } animation->setTime( _value ); } ); } pugi::xml_node typeNodeTextField = _xmlNode.child( "Type:TextField" ); if( typeNodeTextField ) { TextFieldPtr textField = stdex::intrusive_static_cast<TextFieldPtr>(node); Detail::deserializeNodeProp<float>( "MaxLength", typeNodeTextField, [textField]( float _value ) { textField->setMaxLength( _value ); } ); Detail::deserializeNodeProp<bool>( "Wrap", typeNodeTextField, [textField]( bool _value ) { textField->setWrap( _value ); } ); Detail::deserializeNodeProp<ConstString>( "TextID", typeNodeTextField, [textField]( const ConstString & _value ) { textField->setTextId( _value ); } ); Detail::deserializeNodeProp<ConstString>( "TextAliasEnvironment", typeNodeTextField, [textField]( const ConstString & _value ) { textField->setTextAliasEnvironment( _value ); } ); Detail::deserializeNodeProp<ConstString>( "FontName", typeNodeTextField, [textField]( const ConstString & _value ) { textField->setFontName( _value ); } ); Detail::deserializeNodeProp<Color>( "FontColor", typeNodeTextField, [textField]( const Color & _value ) { textField->setFontColor( _value ); } ); Detail::deserializeNodeProp<float>( "LineOffset", typeNodeTextField, [textField]( float _value ) { textField->setLineOffset( _value ); } ); Detail::deserializeNodeProp<float>( "CharOffset", typeNodeTextField, [textField]( float _value ) { textField->setCharOffset( _value ); } ); Detail::deserializeNodeProp<float>( "CharScale", typeNodeTextField, [textField]( float _value ) { textField->setCharScale( _value ); } ); Detail::deserializeNodeProp<uint32_t>( "HorizontAlign", typeNodeTextField, [textField]( uint32_t _value ) { textField->setHorizontAlign( (ETextHorizontAlign)_value ); } ); Detail::deserializeNodeProp<uint32_t>( "VerticalAlign", typeNodeTextField, [textField]( uint32_t _value ) { textField->setVerticalAlign( (ETextVerticalAlign)_value ); } ); Detail::deserializeNodeProp<uint32_t>( "MaxCharCount", typeNodeTextField, [textField]( uint32_t _value ) { textField->setMaxCharCount( _value ); } ); Detail::deserializeNodeProp<bool>( "Pixelsnap", typeNodeTextField, [textField]( bool _value ) { textField->setPixelsnap( _value ); } ); } pugi::xml_node typeNodeMovie2 = _xmlNode.child( "Type:Movie2" ); if( typeNodeMovie2 ) { UnknownMovie2Interface * unknownMovie2 = node->getUnknown(); Detail::deserializeNodeProp<ConstString>( "TextAliasEnvironment", typeNodeMovie2, [unknownMovie2]( const ConstString & _value ) { unknownMovie2->setTextAliasEnvironment( _value ); } ); pugi::xml_node xmlSubCompositions = typeNodeMovie2.child( "SubCompositions" ); if( xmlSubCompositions ) { for( pugi::xml_node xmlElement : xmlSubCompositions.children( "Element" ) ) { const Char * SubCompositionName = xmlElement.attribute( "SubCompositionName" ).as_string(); const Movie2SubCompositionInterfacePtr & subComposition = unknownMovie2->getSubComposition( Helper::stringizeString( SubCompositionName ) ); Detail::deserializeNodeProp<bool>( "SubCompositionEnable", xmlElement, [subComposition]( bool _value ) { subComposition->setSubCompositionEnable( _value ); } ); //Detail::serializeNodeProp( _subComposition->getName(), "SubCompositionName", xmlElement ); //Detail::serializeNodeProp( _subComposition->getSubCompositionEnable(), "SubCompositionEnable", xmlElement ); //AnimationInterface * animation = _subComposition->getAnimation(); } } } } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::receiveGameControlCommand( const String & _command ) { if( _command == "pause" ) { bool alreadyFrozen = APPLICATION_SERVICE() ->isFrozen(); APPLICATION_SERVICE() ->setFreeze( !alreadyFrozen ); } else if( _command == "scene" ) { m_shouldUpdateScene = true; } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::stringToPath( const String & _str, VectorNodePath * const _path ) const { if( _str.empty() == false && _str[0] != '-' ) { const Char * ptr = _str.c_str(); uint32_t uid = 0; while( *ptr ) { if( *ptr == MENGINE_PATH_DELIM ) { _path->push_back( uid ); uid = 0; } else { uid *= 10; uid += static_cast<uint32_t>(*ptr - '0'); } ++ptr; } } } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::notifyChangeScene( const ScenePtr & _scene ) { this->setScene( _scene ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::notifyRemoveSceneDestroy() { this->setScene( nullptr ); } ////////////////////////////////////////////////////////////////////////// void NodeDebuggerModule::notifyIncrefFactoryGeneration( uint32_t _generator ) { MENGINE_UNUSED( _generator ); m_shouldUpdateScene = true; } }
2ac25c79192d7a7ad971b532a7135e3210bf0ca1
7e095e3c2d644f1e3b6128784a55a0e25eb2f15f
/test/TestSubscriber.cpp
4e20c143577cd32e9dcc72a18afb5c0451ca7b8a
[ "Apache-2.0" ]
permissive
furuholm/AltRxCpp
1bc35252dfe1c6b700174a4587e87c44f7ad7925
62a8dc892724ec463fc715f162cfdc9209e390a0
refs/heads/master
2016-09-06T12:12:08.510505
2014-10-13T06:20:18
2014-10-13T06:20:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
420
cpp
TestSubscriber.cpp
#include <gtest/gtest.h> #include "rx/Subscriber.hpp" namespace { TEST(Subscriber, ReferenceEquality) { auto s1 = Subscriber<int>([](const int& x){ // do nothing }); auto s2 = s1; ASSERT_EQ(s1, s1); std::list<Subscriber<int>> subscribers; subscribers.push_back(s1); auto it = std::find(std::begin(subscribers), std::end(subscribers), s1); ASSERT_FALSE(it == subscribers.end()); } }
0aed1d268d6e61e3bafe3e4baf7c7de439c34a07
afb7006e47e70c1deb2ddb205f06eaf67de3df72
/third_party/aom/third_party/libyuv/include/libyuv/scale.h
e586b66cc7cde4ffd8e83c6e5967a74dbbed01e4
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "BSD-2-Clause" ]
permissive
marco-c/gecko-dev-wordified
a66383f85db33911b6312dd094c36f88c55d2e2c
3509ec45ecc9e536d04a3f6a43a82ec09c08dff6
refs/heads/master
2023-08-10T16:37:56.660204
2023-08-01T00:39:54
2023-08-01T00:39:54
211,297,590
1
0
null
null
null
null
UTF-8
C++
false
false
3,359
h
scale.h
/ * * Copyright ( c ) 2016 Alliance for Open Media . All rights reserved * * This source code is subject to the terms of the BSD 2 Clause License and * the Alliance for Open Media Patent License 1 . 0 . If the BSD 2 Clause License * was not distributed with this source code in the LICENSE file you can * obtain it at www . aomedia . org / license / software . If the Alliance for Open * Media Patent License 1 . 0 was not distributed with this source code in the * PATENTS file you can obtain it at www . aomedia . org / license / patent . * / # ifndef INCLUDE_LIBYUV_SCALE_H_ / / NOLINT # define INCLUDE_LIBYUV_SCALE_H_ # include " libyuv / basic_types . h " # ifdef __cplusplus namespace libyuv { extern " C " { # endif / / Supported filtering . typedef enum FilterMode { kFilterNone = 0 / / Point sample ; Fastest . kFilterLinear = 1 / / Filter horizontally only . kFilterBilinear = 2 / / Faster than box but lower quality scaling down . kFilterBox = 3 / / Highest quality . } FilterModeEnum ; / / Scale a YUV plane . LIBYUV_API void ScalePlane ( const uint8 * src int src_stride int src_width int src_height uint8 * dst int dst_stride int dst_width int dst_height enum FilterMode filtering ) ; LIBYUV_API void ScalePlane_16 ( const uint16 * src int src_stride int src_width int src_height uint16 * dst int dst_stride int dst_width int dst_height enum FilterMode filtering ) ; / / Scales a YUV 4 : 2 : 0 image from the src width and height to the / / dst width and height . / / If filtering is kFilterNone a simple nearest - neighbor algorithm is / / used . This produces basic ( blocky ) quality at the fastest speed . / / If filtering is kFilterBilinear interpolation is used to produce a better / / quality image at the expense of speed . / / If filtering is kFilterBox averaging is used to produce ever better / / quality image at further expense of speed . / / Returns 0 if successful . LIBYUV_API int I420Scale ( const uint8 * src_y int src_stride_y const uint8 * src_u int src_stride_u const uint8 * src_v int src_stride_v int src_width int src_height uint8 * dst_y int dst_stride_y uint8 * dst_u int dst_stride_u uint8 * dst_v int dst_stride_v int dst_width int dst_height enum FilterMode filtering ) ; LIBYUV_API int I420Scale_16 ( const uint16 * src_y int src_stride_y const uint16 * src_u int src_stride_u const uint16 * src_v int src_stride_v int src_width int src_height uint16 * dst_y int dst_stride_y uint16 * dst_u int dst_stride_u uint16 * dst_v int dst_stride_v int dst_width int dst_height enum FilterMode filtering ) ; # ifdef __cplusplus / / Legacy API . Deprecated . LIBYUV_API int Scale ( const uint8 * src_y const uint8 * src_u const uint8 * src_v int src_stride_y int src_stride_u int src_stride_v int src_width int src_height uint8 * dst_y uint8 * dst_u uint8 * dst_v int dst_stride_y int dst_stride_u int dst_stride_v int dst_width int dst_height LIBYUV_BOOL interpolate ) ; / / Legacy API . Deprecated . LIBYUV_API int ScaleOffset ( const uint8 * src_i420 int src_width int src_height uint8 * dst_i420 int dst_width int dst_height int dst_yoffset LIBYUV_BOOL interpolate ) ; / / For testing allow disabling of specialized scalers . LIBYUV_API void SetUseReferenceImpl ( LIBYUV_BOOL use ) ; # endif / / __cplusplus # ifdef __cplusplus } / / extern " C " } / / namespace libyuv # endif # endif / / INCLUDE_LIBYUV_SCALE_H_ NOLINT
e21bb5a0ce75228f24f1f0ca11d7f1867a08a288
630e4e524d83b56a4c2877bfab1a3decd7c5bbc0
/Arduino_Serial_RGB.ino
01262ee2b78eae015d7317b38e9de0f39e596f02
[]
no_license
henrymound/RGB-Arduino
13479bb0f9d7651b6dd103964f9a652f7151adda
cd6d49ff36a59545f8aac157ebde73055ade6a45
refs/heads/master
2021-06-18T06:41:37.835799
2017-01-08T06:50:40
2017-01-08T06:50:40
15,353,119
0
0
null
null
null
null
UTF-8
C++
false
false
8,498
ino
Arduino_Serial_RGB.ino
#include <Adafruit_NeoPixel.h> #include <SoftwareSerial.h> #define PIN 6 SoftwareSerial impSerial(10, 9); // RX on 8, TX on 9 String code = ""; String prevCode = ""; String type = ""; String where = ""; boolean isRed = false; boolean isBlue = false; boolean isGreen = false; int r = -1; int g = -1; int b = -1; int currentRed = 0; int currentBlue = 0; int currentGreen = 0; int buttonHue = 0; int hue = 0; int INCREMENT = 3; Adafruit_NeoPixel strip = Adafruit_NeoPixel(60, PIN, NEO_GRB + NEO_KHZ800); void setup() { // Open the hardware serial port Serial.begin(19200); impSerial.begin(19200); strip.begin(); strip.show(); // Initialize all pixels to 'off' } void loop() // run over and over { // Send data from the software serial poll(); } void testCode(String type, String whereString, int red, int green, int blue){ Serial.print(red); Serial.print(green); Serial.print(blue); int where = whereString.toInt(); if (type == ("NORMAL")){ Serial.print(red); Serial.print(green); Serial.print(blue); for(int i = 0; i < strip.numPixels(); i++){ strip.setPixelColor(i, strip.Color(red, green, blue)); currentRed = red; currentGreen = green; currentBlue = blue; } strip.show(); poll(); } if (type == ("INDIVIDUAL")){ int counter = 0; for(int x = 0; x < whereString.length(); x++){ if(whereString.charAt(x) == '*'){counter++;} } int LEDs[counter]; int arrayItem = 0; int startNum = 0; for(int x = 0; x < whereString.length(); x++){ if(whereString.charAt(x) == '*'){ LEDs[arrayItem] = whereString.substring(startNum, (x)).toInt(); arrayItem++; startNum = x+1; } } for(int x = 0; x < counter; x++){ strip.setPixelColor(LEDs[x], strip.Color(red, green, blue)); currentRed = red; currentGreen = green; currentBlue = blue; } strip.show(); type = ""; } if (type == ("RAINBOW")){ rainbow(where); } if (type == ("WIPE")){ colorWipe(strip.Color(red, green, blue), where); } if (type == ("WHEEL")){ rainbowCycle(where); } if (type == ("FLAME")){ while(true){ int Red = random(120)+135; int Yellow = random(120)+135; for(int i = 0; i < strip.numPixels(); i++){ strip.setPixelColor(i, strip.Color(Red, Yellow, 0)); } strip.show(); poll(); delay(random(100)); } } if (type == ("SNAKE")){ snake(strip.Color(red, green, blue), where); } } // Fill the dots one after the other with a color void colorWipe(uint32_t c, uint8_t wait) { for(uint16_t i=0; i<strip.numPixels(); i++) { strip.setPixelColor(i, c); strip.show(); poll(); delay(wait); } } void snake(uint32_t c, uint8_t wait) { while(true){ for(uint16_t i=0; i<48; i++) { strip.setPixelColor(i, c); strip.setPixelColor(i-1, strip.Color(0, 0, 0)); strip.setPixelColor(0, strip.Color(0, 0, 0)); strip.show(); poll(); delay(wait); } } } void rainbow(uint8_t wait) { uint16_t i, j; for(j=0; j<256; j++) { for(i=0; i<strip.numPixels(); i++) { strip.setPixelColor(i, Wheel((i+j) & 255)); } strip.show(); poll(); delay(wait); } } // Slightly different, this makes the rainbow equally distributed throughout void rainbowCycle(uint8_t wait) { uint16_t i, j; for(j=0; j<256*1; j++) { // 5 cycles of all colors on wheel for(i=0; i< strip.numPixels(); i++) { strip.setPixelColor(i, Wheel(((i * 256 / strip.numPixels()) + j) & 255)); } strip.show(); poll(); delay(wait); } } // Input a value 0 to 255 to get a color value. // The colours are a transition r - g - b - back to r. uint32_t Wheel(byte WheelPos) { if(WheelPos < 85) { return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0); } else if(WheelPos < 170) { WheelPos -= 85; return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3); } else { WheelPos -= 170; return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3); } } void poll(){ if(impSerial.available()>0){ char c = impSerial.read(); if(c == '!'){ //testCode(code); if(code.equals("NORMAL")){type = "NORMAL";} if(code.equals("INDIVIDUAL")){type = "INDIVIDUAL";} if(code.equals("RAINBOW")){type = "RAINBOW";} if(code.equals("COMPLEMENTARY")){type = "COMPLEMENTARY";} if(code.equals("WIPE")){type = "WIPE";} if(code.equals("WHEEL")){type = "WHEEL";} if(code.equals("FLAME")){type = "FLAME";} if(code.equals("SNAKE")){type = "SNAKE";} if(prevCode.equals("where")){where = code;} if(prevCode.equals("red")){r = code.toInt();} if(prevCode.equals("green")){g = code.toInt();} if(prevCode.equals("blue")){b = code.toInt(); testCode(type, where, r, g, b); strip.show(); poll(); r = -1; g = -1; b = -1; type = ""; where = ""; code = ""; } prevCode = code; code = ""; } else{code += c;} } //5 = up //11 = left if(digitalRead(4) == LOW){} // Serial.println("Center"); if(digitalRead(5)== LOW){ left(); strip.show();} // Serial.println("Down"); if(digitalRead(11) == LOW){ // Serial.println("Right"); right(); strip.show(); } if(digitalRead(12) == LOW) // Serial.println("Up"); if(digitalRead(8) == LOW){ // Serial.println("Left"); } } void left(){ INCREMENT = -3; right(); INCREMENT = 3; } void right(){ if(hue == 0){ currentRed = 255; currentGreen = 0; currentBlue = 0; hue++; } else if(hue > 0 && hue <= 59){ currentRed = 255; currentBlue = 0; currentGreen += INCREMENT; hue++; } else if(hue == 60){ currentRed = 255; currentBlue = 0; currentGreen = 255; hue++; } else if(hue > 60 && hue <= 119){ currentGreen = 255; currentBlue = 0; currentRed -= INCREMENT; hue++; } else if(hue == 120){ currentGreen = 255; currentRed = 0; currentBlue = 0; hue++; } else if(hue > 120 && hue <= 179){ currentGreen = 255; currentRed = 0; currentBlue += INCREMENT; hue++; } else if(hue == 180){ currentGreen = 255; currentBlue = 255; currentRed = 0; hue++; } else if(hue > 180 && hue <= 239){ currentBlue = 255; currentRed = 0; currentGreen -= INCREMENT; hue++; } else if (hue == 240){ currentRed = 0; currentBlue = 255; currentGreen = 0; hue++; } else if (hue > 240 && hue <= 299){ currentBlue = 255; currentGreen = 0; currentRed += INCREMENT; hue++; } else if (hue == 300){ currentBlue = 255; currentGreen = 0; currentRed = 255; hue++; } else if (hue > 300 && hue <= 359){ currentRed = 255; currentGreen = 0; currentBlue -= INCREMENT; hue++; } else if (hue == 360){hue = 0;} for(int i = 0; i < strip.numPixels(); i++) strip.setPixelColor(i, strip.Color(currentRed, currentGreen, currentBlue)); } void setRed(){ for(int i = 0; i < strip.numPixels(); i++) strip.setPixelColor(i, strip.Color(255, 0, 0));} void setOrange(){ for(int i = 0; i < strip.numPixels(); i++) strip.setPixelColor(i, strip.Color(255, 100, 0));} void setYellow(){ for(int i = 0; i < strip.numPixels(); i++) strip.setPixelColor(i, strip.Color(255, 255, 0));} void setGreen(){ for(int i = 0; i < strip.numPixels(); i++) strip.setPixelColor(i, strip.Color(0, 255, 0));} void setAqua(){ for(int i = 0; i < strip.numPixels(); i++) strip.setPixelColor(i, strip.Color(0, 255, 255));} void setBlue(){ for(int i = 0; i < strip.numPixels(); i++) strip.setPixelColor(i, strip.Color(0, 0, 255));} void setViolet(){ for(int i = 0; i < strip.numPixels(); i++) strip.setPixelColor(i, strip.Color(255, 0, 255));}
5c1602958a47e2693c24f9ca3ae489077a706c66
cd99ca9461435d1417cb146d966e54272fbcc7ad
/3rd party/maxsdk/samples/maxscript/mxsagni/mxs_variables.cpp
755ea2d168133f589a0b3451f0781012b163e7c3
[]
no_license
mortany/xray15
eacce7965e785dd71d1877eae25c1f9eff680eec
72a13fb24e9b388850bc769427c231da8f599228
refs/heads/master
2020-08-02T20:45:23.493981
2019-10-14T18:48:48
2019-10-14T18:48:48
211,499,718
0
0
null
2019-09-28T12:50:47
2019-09-28T12:50:46
null
UTF-8
C++
false
false
7,372
cpp
mxs_variables.cpp
/********************************************************************** *< FILE: mxs_variables.cpp DESCRIPTION: CREATED BY: Larry Minton HISTORY: Created 15 April 2007 *> Copyright (c) 2007, All Rights Reserved. **********************************************************************/ #include <maxscript/maxscript.h> #include <maxscript/foundation/numbers.h> #include <maxscript/maxwrapper/mxsobjects.h> #include <maxscript/foundation/strings.h> #include "resource.h" #ifdef ScripterExport #undef ScripterExport #endif #define ScripterExport __declspec( dllexport ) #include <maxscript\macros\define_instantiation_functions.h> // ============================================================================ #include <maxscript\macros\define_external_functions.h> # include "namedefs.h" #include <maxscript\macros\define_instantiation_functions.h> # include "mxs_variables_wraps.h" // ----------------------------------------------------------------------------------------- class GatherKeyMapper : public HashTabMapper { public: Array* results; Value* filterFn; GatherKeyMapper (Array* resultsArray, Value* filter) {results=resultsArray; filterFn = filter;} void map(const void* key, const void* val) { bool keep = true; if (filterFn) { Value* args[2] = {(Value*)key, (Value*)val}; keep = filterFn->apply_no_alloc_frame(args, 2)->to_bool() ? true : false; } if (keep) results->append((Value*)key); } }; Value* persistents_gather_cf(Value** arg_list, int count) { // persistents.gather() check_arg_count(persistents.gather, 0, count); MAXScript_TLS* _tls = (MAXScript_TLS*)TlsGetValue(thread_locals_index); one_typed_value_local_tls(Array* result); vl.result = new Array (0); if (persistents) { GatherKeyMapper gkm (vl.result, nullptr); persistents->map_keys_and_vals(&gkm); } return_value_tls(vl.result); } Value* persistents_make_cf(Value** arg_list, int count) { // persistents.make <global_name> check_arg_count(persistents.make, 1, count); Value* glob_name = Name::intern(arg_list[0]->to_string()); GlobalThunk* t = (GlobalThunk*)globals->get(glob_name); if (!t) throw RuntimeError (MaxSDK::GetResourceStringAsMSTR(IDS_NO_SUCH_GLOBAL), glob_name); if (persistents == NULL) persistents = new (GC_PERMANENT) HashTable (17, default_eq_fn, default_hash_fn, KEY_IS_OBJECT + VALUE_IS_OBJECT); persistents->put_new(t->name, t); return &ok; } Value* persistents_ispersistent_cf(Value** arg_list, int count) { // persistents.ispersistent <global_name> check_arg_count(persistents.isPersistent, 1, count); Value* glob_name = arg_list[0]; return (persistents && persistents->get(glob_name)) ? &true_value : &false_value; } Value* pesistents_remove_cf(Value** arg_list, int count) { // persistents.remove <persistent_global_name> check_arg_count(persistents.remove, 1, count); Value* glob_name = arg_list[0]; if (persistents) persistents->remove(glob_name); return &ok; } Value* pesistents_removeAll_cf(Value** arg_list, int count) { // persistents.removeAll () check_arg_count(persistents.removeAll, 0, count); if (persistents) ms_make_collectable(persistents); persistents = NULL; return &ok; } class ShowPersistentsMapper : public HashTabMapper { private: CharStream* m_out; public: ShowPersistentsMapper(CharStream* out) : m_out(out) {} void map(const void* key, const void* val) { m_out->puts(((Value*)key)->to_string()); m_out->puts(_T(": ")); ((Value*)val)->eval()->sprint(m_out); } }; Value* pesistents_show_cf(Value** arg_list, int count) { // persistents.show to:<stream> check_arg_count_with_keys(persistents.show, 0, count); MAXScript_TLS* _tls = (MAXScript_TLS*)TlsGetValue(thread_locals_index); Value* ov = key_arg_or_default(to, _tls->current_stdout); if (!is_charstream(ov)) type_check(ov, CharStream, _T("apropos to:")); CharStream* out = (CharStream*)ov; if (persistents) { ShowPersistentsMapper spm (out); persistents->map_keys_and_vals(&spm); } return &ok; } Value* globalVars_set_cf(Value** arg_list, int count) { // globalVars.set <global_name> <value> check_arg_count(globalVars.set, 2, count); Value* glob_name = Name::intern(arg_list[0]->to_string()); GlobalThunk* t = (GlobalThunk*)globals->get(glob_name); if (!t) throw RuntimeError (MaxSDK::GetResourceStringAsMSTR(IDS_NO_SUCH_GLOBAL), glob_name); Value* args[1] = { arg_list[1] }; return t->assign_vf(args,1); } Value* globalVars_get_cf(Value** arg_list, int count) { // globalVars.get <global_name> check_arg_count(globalVars.get, 1, count); Value* glob_name = Name::intern(arg_list[0]->to_string()); GlobalThunk* t = (GlobalThunk*)globals->get(glob_name); if (!t) throw RuntimeError (MaxSDK::GetResourceStringAsMSTR(IDS_NO_SUCH_GLOBAL), glob_name); return t->eval(); } Value* globalVars_getTypeTag_cf(Value** arg_list, int count) { // globalVars.getTypeTag <global_name> check_arg_count(globalVars.getTypeTag, 1, count); Value* glob_name = Name::intern(arg_list[0]->to_string()); GlobalThunk* t = (GlobalThunk*)globals->get(glob_name); if (!t) throw RuntimeError (MaxSDK::GetResourceStringAsMSTR(IDS_NO_SUCH_GLOBAL), glob_name); if (t->tag > INTERNAL_TAGS) return_value (Name::intern(t->tag->name)); else return_value (IntegerPtr::intern((INT_PTR)t->tag)); } Value* globalVars_getValueTag_cf(Value** arg_list, int count) { // globalVars.getValueTag <global_name> check_arg_count(globalVars.getValueTag, 1, count); Value* glob_name = Name::intern(arg_list[0]->to_string()); GlobalThunk* t = (GlobalThunk*)globals->get(glob_name); if (!t) throw RuntimeError (MaxSDK::GetResourceStringAsMSTR(IDS_NO_SUCH_GLOBAL), glob_name); Value *v = t->eval(); if (v->tag > INTERNAL_TAGS) return_value (Name::intern(v->tag->name)); else return_value (IntegerPtr::intern((INT_PTR)t->tag)); } Value* globalVars_gather_cf(Value** arg_list, int count) { // globalVars.gather filter:<fn> check_arg_count_with_keys(globalVars.gather, 0, count); MAXScript_TLS* _tls = (MAXScript_TLS*)TlsGetValue(thread_locals_index); one_typed_value_local_tls(Array* result); vl.result = new Array (0); Value* fv = key_arg(filter); if (fv != &unsupplied) { if (!is_function(fv)) throw TypeError (_T("globalVars.gather filter:"), fv, &MAXScriptFunction_class); } else fv = nullptr; GatherKeyMapper gkm (vl.result, fv); globals->map_keys_and_vals(&gkm); return_value_tls(vl.result); } Value* globalVars_isglobal_cf(Value** arg_list, int count) { // globalVars.isGlobal <global_name> check_arg_count(globalVars.isGlobal, 1, count); Value* glob_name = Name::intern(arg_list[0]->to_string()); GlobalThunk* t = (GlobalThunk*)globals->get(glob_name); return (t) ? &true_value : &false_value; } Value* globalVars_remove_cf(Value** arg_list, int count) { // globalVars.remove <global_name> check_arg_count(globalVars.remove, 1, count); Value* glob_name = Name::intern(arg_list[0]->to_string()); GlobalThunk* t = (GlobalThunk*)globals->get(glob_name); if (t) { if (persistents) persistents->remove(glob_name); globals->remove(glob_name); } return (t) ? &true_value : &false_value; }