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
2a145926b06559467ee5438dcc347d896d7537fc
a456d7e6c04d82c69da061eb99f883f4a395eaae
/imt3601_shineydonkeys/Network.cpp
3d078d920df96a37027051353c03d400eae09f50
[]
no_license
ondrejbenes/final-exam-rpg
7bfacf50417ae93ae58aa626ae97575b32c4c961
f7acd0978fc31bbf094e6dd741690c3ef2076ced
refs/heads/master
2020-03-28T18:52:56.818725
2017-09-23T07:28:55
2017-09-23T07:28:55
148,922,703
1
0
null
null
null
null
UTF-8
C++
false
false
7,343
cpp
Network.cpp
#include "Network.h" #include "GamePhaseManager.h" #include "Menu.h" #include "Blackboard.h" #include "Logger.h" #include "GamePhaseFactory.h" #include "StringUtilities.h" #include "PacketFactory.h" #include "EntityManager.h" #include "PhysicsComponent.h" #include "ChatBoard.h" #include "ConfigIO.h" #include <sstream> #include <regex> #include "CombatComponent.h" Network::Network() : Module(NETWORK) { } bool Network::initialize() { clear(); return true; } void Network::update() { auto callbacks = Blackboard::getInstance()->getCallbacks(moduleType); for (auto it = callbacks.begin(); it != callbacks.end(); ++it) (*it)(this); if (!_isMultiplayer) return; auto phase = GamePhaseManager::getInstance()->getCurrentPhase(); if(typeid(*phase) == typeid(Menu)) { if (_isServer) updateServerMenu(); else updateClientMenu(); } else { if (_isServer) updateServerMainGame(); else updateClientMainGame(); } } void Network::clear() { _socket.disconnect(); _selector.remove(_listener); for (auto& s : _clients) { s->disconnect(); _selector.remove(*s); } _listener.close(); _clients.clear(); _isServer = false; _isMultiplayer = false; } void Network::initAsServer() { LOG_I("Initializing as Server"); _listener.listen(PORT); _selector.add(_listener); _isServer = true; _isMultiplayer = true; } void Network::initAsClient() { LOG_I("Initializing as Client"); auto res = _socket.connect(_serverIp, PORT, sf::seconds(5)); if (res == sf::Socket::Error) { LOG_E("Failed to connect to server (possible timeout)"); return; } _socket.setBlocking(false); sf::Packet packet; packet << ConfigIO::readString(L"player", L"name"); _socket.send(packet); _isServer = false; _isMultiplayer = true; } void Network::broadcast(sf::Packet& packet) { /* std::string msg; packet >> msg; LOG_D("Broadcasting: " + msg); */ if (_isServer) { for (auto i = 0; i < _clients.size(); i++) _clients[i]->send(packet); } else _socket.send(packet); } void Network::updateClientMenu() { sf::Packet packet; if (_socket.receive(packet) != sf::Socket::Done) return; std::string msg; packet >> msg; auto packetType = decodeMessage(msg); if (packetType == GAME_START) { LOG_I("Game starting"); GamePhaseFactory factory; GamePhaseManager::getInstance()->pushPhase(factory.createMainGame()); } } void Network::updateServerMenu() { if (_refreshClock.getElapsedTime() < _refreshRate) return; _refreshClock.restart(); if (_selector.wait(sf::seconds(0.1))) { if (_selector.isReady(_listener)) { auto socket = std::make_unique<sf::TcpSocket>(); _listener.accept(*socket); sf::Packet packet; std::string id; if (socket->receive(packet) == sf::Socket::Done) packet >> id; LOG_D(id); auto x = 510; auto y = 100 + 50 * _clients.size(); UiElementFactory factory; auto element = factory.createLabel(L"", L""); element->setPosition(sf::Vector2f(x, y)); element->setText(id); auto& ui = GamePhaseManager::getInstance()->getCurrentPhase()->getUi(); ui.addElement(element); _selector.add(*socket); _clients.push_back(move(socket)); } } } void Network::updateClientMainGame() { sf::Packet packet; if (_socket.receive(packet) != sf::Socket::Done) return; std::string msg; packet >> msg; LOG_D("Received: " + msg); auto packetType = decodeMessage(msg); if (packetType == GAME_OVER) { GamePhaseManager::getInstance()->popPhase(); } if (packetType == VELOCITY_CHANGE) { auto tokens = StringUtilities::split(msg, PacketFactory::ATTRIBUTE_SEPARATOR); auto charater = EntityManager::getInstance()->getCharacterById(stoi(tokens[1])); auto velocity = sf::Vector2f(stof(tokens[2]), stof(tokens[3])); charater->getComponent<PhysicsComponent>()->setVelocity(velocity); } if (packetType == POSITION_CHANGE) { auto tokens = StringUtilities::split(msg, PacketFactory::ATTRIBUTE_SEPARATOR); auto entityManager = EntityManager::getInstance(); auto charater = entityManager->getCharacterById(stoi(tokens[1])); auto position = sf::Vector2f(stof(tokens[2]), stof(tokens[3])); entityManager->move(charater, position); charater->setPosition(position); } if (packetType == ENTER_COMBAT) { auto tokens = StringUtilities::split(msg, PacketFactory::ATTRIBUTE_SEPARATOR); auto entityManager = EntityManager::getInstance(); auto entity1 = entityManager->getCharacterById(stoi(tokens[1])); auto entity2 = entityManager->getCharacterById(stoi(tokens[2])); entity1->getComponent<CombatComponent>()->startCombat(entity2); } if (packetType == END_COMBAT) { auto tokens = StringUtilities::split(msg, PacketFactory::ATTRIBUTE_SEPARATOR); auto entityManager = EntityManager::getInstance(); auto entity = entityManager->getCharacterById(stoi(tokens[1])); entity->getComponent<CombatComponent>()->endCombat(); } if (packetType == TAKE_DAMAGE) { auto tokens = StringUtilities::split(msg, PacketFactory::ATTRIBUTE_SEPARATOR); auto entityManager = EntityManager::getInstance(); auto entity = entityManager->getCharacterById(stoi(tokens[1])); auto cc = entity->getComponent<CombatComponent>(); cc->takeDamage(stoi(tokens[2])); } if (packetType == CHAT) { auto tokens = StringUtilities::split(msg, PacketFactory::ATTRIBUTE_SEPARATOR); const auto& chatBoard = GamePhaseManager::getInstance()->getCurrentPhase() ->getUi().getElementByName<ChatBoard>("chatBoard"); auto msgTokens = StringUtilities::split(tokens[1], ':'); chatBoard->addMessage(msgTokens[0], msgTokens[1]); } if (packetType == TILE_SPRITE_CHANGE) { auto tokens = StringUtilities::split(msg, PacketFactory::ATTRIBUTE_SEPARATOR); auto tile = EntityManager::getInstance()->getTileById(stoi(tokens[1])); tile->changeType(stoi(tokens[2]), stoi(tokens[3])); } } void Network::updateServerMainGame() { if (_selector.wait(sf::milliseconds(1))) { if (!_selector.isReady(_listener)) { for (auto i = 0; i < _clients.size(); i++) { if (_selector.isReady(*_clients[i])) { sf::Packet packet, sendPacket; if (_clients[i]->receive(packet) == sf::Socket::Done) { std::string msg; packet >> msg; sendPacket << msg; for (auto j = 0; j < _clients.size(); j++) { if (i != j) _clients[j]->send(sendPacket); } auto packetType = decodeMessage(msg); if (packetType == CHAT) { auto tokens = StringUtilities::split(msg, PacketFactory::ATTRIBUTE_SEPARATOR); auto chatBoard = GamePhaseManager::getInstance()->getCurrentPhase() ->getUi().getElementByName<ChatBoard>("chatBoard"); auto msgTokens = StringUtilities::split(tokens[1], ':'); chatBoard->addMessage(msgTokens[0], msgTokens[1]); } } } } } } } PacketType Network::decodeMessage(std::string msg) { std::regex reg1("[[:d:]]+"); std::regex reg2("[[:d:]]+;.*"); std::smatch match; auto packetType = -1; if (regex_search(msg, match, reg1)) { packetType = stoi(msg); } else if (regex_search(msg, match, reg2)) { packetType = stoi(msg.substr(0, msg.find(';'))); } else { LOG_D("Packet with unknown message: " + msg); } return PacketType(packetType); } unsigned int Network::PORT = 52249; bool Network::_isServer = false; bool Network::_isMultiplayer = false;
4daa8bf7157c97ab05a1e7e4ccc7b7d98f7b646f
b7ec4eccb4b0f4b240eb1129eb836f063fb7318d
/RTS_AoV/Source/RTS_AoV/Private/Core/Player/CameraPawn.cpp
f4953730f2bc354674cb6d89efe95b09c7517914
[]
no_license
Ympressiv/GAME-RTS_AgeOfVikings-UE4-Cpp
4979bf06daa73bd71f65ac68f817d3e7dae1998c
823358508417dafc07491fab7396e6106d4954e2
refs/heads/master
2023-06-04T07:30:50.274506
2021-06-16T05:50:12
2021-06-16T05:50:12
337,855,174
0
0
null
null
null
null
UTF-8
C++
false
false
3,622
cpp
CameraPawn.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "/Robocze_ProjektyGier/GAME-RTS_AgeOfVikings-UE4-Cpp/RTS_AoV/Source/RTS_AoV/Public/Core/Player/CameraPawn.h" #include "CoreMinimal.h" #include "GameFramework/SpringArmComponent.h" #include "Components/SphereComponent.h" #include "Camera/CameraComponent.h" #include "/Robocze_ProjektyGier/GAME-RTS_AgeOfVikings-UE4-Cpp/RTS_AoV/Source/RTS_AoV/Public/Core/Player/CameraMovement_Component.h" #include "GameFramework/Pawn.h" // Sets default values ACameraPawn::ACameraPawn() { // Set Defaults DefaultZoomLength = 1350.0f; DefaultCameraRotation = FRotator(-50.0, 0.0, 0.0); // Set Root Component and also set root component size. CollisionSphere = CreateDefaultSubobject<USphereComponent>(TEXT("CollisionSphere")); SetRootComponent(CollisionSphere); CollisionSphere->InitSphereRadius(32.0); CollisionSphere->SetWorldScale3D(FVector(0.25, 0.25, 0.25)); CollisionSphere->SetCollisionProfileName("CameraPawn"); // Default settings for inheriting controller rotations. bUseControllerRotationPitch = false; bUseControllerRotationYaw = false; bUseControllerRotationRoll = false; // Create CameraArm and attach to root. CameraArm = CreateDefaultSubobject<USpringArmComponent>(TEXT("CameraArm")); CameraArm->SetupAttachment(RootComponent); CameraArm->SetUsingAbsoluteRotation(false); // Rotate arm (and camera) when pawn rotates CameraArm->TargetArmLength = DefaultZoomLength; CameraArm->SetRelativeRotation(DefaultCameraRotation); CameraArm->bDoCollisionTest = false; // Do not do collision test for camera arm CameraArm->bEnableCameraLag = true; // Smoother Movements CameraArm->bEnableCameraRotationLag = false; CameraArm->bInheritPitch = false; // False - For zoom to update in real time. // Create Camera PlayerCamera = CreateAbstractDefaultSubobject<UCameraComponent>(TEXT("PlayerCamera")); PlayerCamera->SetupAttachment(CameraArm, USpringArmComponent::SocketName); // Set this pawn to call Tick() every frame. You can turn this off to improve performance if you don't need it. PrimaryActorTick.bCanEverTick = true; PrimaryActorTick.bStartWithTickEnabled = true; // Attach movement component PawnMovementComponent = CreateDefaultSubobject<UCameraMovement_Component>(TEXT("CameraPawnMovementComponent")); } // Called when the game starts or when spawned void ACameraPawn::BeginPlay() { Super::BeginPlay(); } // Called every frame void ACameraPawn::Tick(float DeltaTime) { Super::Tick(DeltaTime); } float ACameraPawn::GetCurrentArmLength() { return CameraArm->TargetArmLength; } FRotator ACameraPawn::GetCameraRotation() { return CameraArm->GetRelativeRotation(); } void ACameraPawn::SetArmLength(float ChangeAmount) { CameraArm->TargetArmLength += ChangeAmount; } void ACameraPawn::SetArmRotation(FRotator ChangeAmount) { /* Setting our min and max rotation amounts */ /* How close to the ground camera gone get*/ const FRotator RotationMax = FRotator(-25.0, 0.0, 0.0); //Zoom in rotation max const FRotator RotationMin = DefaultCameraRotation; // Zoom out rotation min // Get 'x', the rotation change FRotator NewRotation = FRotator(CameraArm->GetRelativeRotation() + ChangeAmount); // Clamp the pitch of NewRotation NewRotation = NewRotation.Pitch < RotationMin.Pitch ? RotationMin : NewRotation.Pitch < RotationMax.Pitch ? NewRotation : RotationMax; CameraArm->SetRelativeRotation(NewRotation); // CameraArm->RelativeRotation } void ACameraPawn::SetToDefaultZoom() { CameraArm->TargetArmLength = DefaultZoomLength; CameraArm->SetRelativeRotation(DefaultCameraRotation); }
22e82decce8fbef5e527ec0df6efe7ecf98fa18c
3d5d3cee5866eebe3eff2bf578acc3179f9ba457
/User.cpp
20168a17d576d1e786e9f21332f0a3eb1835f031
[]
no_license
Dmendoza3/Proyecto2-ProgramacionIII
d79244d99878c29e84dc7dbdcfd69b42f16d112d
0ef2e41d1d5284dc9e56e3a4e3aeec93e1885b9b
refs/heads/master
2020-05-25T16:42:37.621102
2017-03-28T13:37:17
2017-03-28T13:37:17
84,947,714
0
0
null
null
null
null
UTF-8
C++
false
false
174
cpp
User.cpp
#include "User.h" User::User(){} User::User(string nName) { name = nName; } string User::getName() { return name; } void User::setName(string nName) { name = nName; }
463c4ff7ee3c5b7ac4e9181eb9a000fb946c6b3f
452be58b4c62e6522724740cac332ed0fe446bb8
/src/starboard/shared/blittergles/color_shader_program.cc
38bbd83cadb17e68ab6dab13081f639370fbf10b
[ "Apache-2.0" ]
permissive
blockspacer/cobalt-clone-cab7770533804d582eaa66c713a1582f361182d3
b6e802f4182adbf6a7451a5d48dc4e158b395107
0b72f93b07285f3af3c8452ae2ceaf5860ca7c72
refs/heads/master
2020-08-18T11:32:21.458963
2019-10-17T13:09:35
2019-10-17T13:09:35
215,783,613
1
1
null
null
null
null
UTF-8
C++
false
false
4,033
cc
color_shader_program.cc
// Copyright 2019 The Cobalt Authors. 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. #include "starboard/shared/blittergles/color_shader_program.h" #include <GLES2/gl2.h> #if defined(ADDRESS_SANITIZER) // By default, Leak Sanitizer and Address Sanitizer is expected to exist // together. However, this is not true for all platforms. // HAS_LEAK_SANTIZIER=0 explicitly removes the Leak Sanitizer from code. #ifndef HAS_LEAK_SANITIZER #define HAS_LEAK_SANITIZER 1 #endif // HAS_LEAK_SANITIZER #endif // defined(ADDRESS_SANITIZER) #if HAS_LEAK_SANITIZER #include <sanitizer/lsan_interface.h> #endif // HAS_LEAK_SANITIZER #include "starboard/blitter.h" #include "starboard/shared/blittergles/blitter_internal.h" #include "starboard/shared/blittergles/shader_program.h" #include "starboard/shared/gles/gl_call.h" namespace starboard { namespace shared { namespace blittergles { ColorShaderProgram::ColorShaderProgram() { const char* vertex_shader_source = "attribute vec2 a_position;" "attribute vec4 a_color;" "varying vec4 v_color;" "void main() {" " gl_Position = vec4(a_position.x, a_position.y, 0, 1);" " v_color = a_color;" "}"; const char* fragment_shader_source = "precision mediump float;" "varying vec4 v_color;" "void main() {" " gl_FragColor = v_color;" "}"; InitializeShaders(vertex_shader_source, fragment_shader_source); // Link program. GLuint program_handle = GetProgramHandle(); GL_CALL( glBindAttribLocation(program_handle, kPositionAttribute, "a_position")); GL_CALL(glBindAttribLocation(program_handle, kColorAttribute, "a_color")); int link_status; GL_CALL(glLinkProgram(program_handle)); GL_CALL(glGetProgramiv(program_handle, GL_LINK_STATUS, &link_status)); SB_CHECK(link_status); } bool ColorShaderProgram::Draw(SbBlitterRenderTarget render_target, float (&color_rgba)[4], SbBlitterRect rect) const { GL_CALL(glUseProgram(GetProgramHandle())); float vertices[8]; SetNDC(rect, render_target->width, render_target->height, vertices); GL_CALL(glVertexAttribPointer(kPositionAttribute, 2, GL_FLOAT, GL_FALSE, 0, vertices)); GL_CALL(glEnableVertexAttribArray(kPositionAttribute)); GL_CALL(glVertexAttrib4f(kColorAttribute, color_rgba[0], color_rgba[1], color_rgba[2], color_rgba[3])); glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); bool success = glGetError() == GL_NO_ERROR; GL_CALL(glDisableVertexAttribArray(kPositionAttribute)); GL_CALL(glUseProgram(0)); return success; } void ColorShaderProgram::DummyDraw(SbBlitterRenderTarget render_target) const { GL_CALL(glUseProgram(GetProgramHandle())); float vertices[8]; SetNDC(SbBlitterMakeRect(0, 0, 1, 1), render_target->width, render_target->height, vertices); GL_CALL(glVertexAttribPointer(kPositionAttribute, 2, GL_FLOAT, GL_FALSE, 0, vertices)); GL_CALL(glEnableVertexAttribArray(kPositionAttribute)); GL_CALL(glVertexAttrib4f(kColorAttribute, 0.0f, 0.0f, 0.0f, 0.0f)); #if HAS_LEAK_SANITIZER __lsan_disable(); #endif // HAS_LEAK_SANITIZER glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); #if HAS_LEAK_SANITIZER __lsan_enable(); #endif // HAS_LEAK_SANITIZER GL_CALL(glDisableVertexAttribArray(kPositionAttribute)); GL_CALL(glUseProgram(0)); } } // namespace blittergles } // namespace shared } // namespace starboard
de1218af27a0d8295a2247cc197fc70312568734
64589428b06258be0b9b82a7e7c92c0b3f0778f1
/Collegiate Cup/2017 Qualification/A.cpp
d08984a2ef72ec9164f89b9efe5821a237f1e5e6
[]
no_license
splucs/Competitive-Programming
b6def1ec6be720c6fbf93f2618e926e1062fdc48
4f41a7fbc71aa6ab8cb943d80e82d9149de7c7d6
refs/heads/master
2023-08-31T05:10:09.573198
2023-08-31T00:40:32
2023-08-31T00:40:32
85,239,827
141
27
null
2023-01-08T20:31:49
2017-03-16T20:42:37
C++
UTF-8
C++
false
false
1,339
cpp
A.cpp
#include <bits/stdc++.h> using namespace std; #define MAXN 200009 typedef pair<int, int> ii; int N, K, v[MAXN]; set<ii> lo, hi; ii mid; void print(){ printf("lo:"); for(set<ii>::iterator it = lo.begin(); it!=lo.end(); it++) { printf(" %d", it->first); } printf("\nmid: %d\n", mid.first); printf("hi:"); for(set<ii>::iterator it = hi.begin(); it!=hi.end(); it++) { printf(" %d", it->first); } printf("\n"); } int main() { scanf("%d %d", &N, &K); for(int i=1; i<=N; i++) { scanf("%d", &v[i]); } for(int i=1; i<=K; i++){ hi.insert(ii(v[i], i)); } for(int i=1; i<=K/2; i++){ lo.insert(*hi.begin()); hi.erase(hi.begin()); } mid = *hi.begin(); hi.erase(hi.begin()); ii ans = mid, tmp; for(int i=2; i<=N-K+1; i++){ int j = i+K-1; ii del = ii(v[i-1], i-1); if (lo.count(del)){ lo.erase(del); lo.insert(mid); } else if (hi.count(del)){ hi.erase(del); hi.insert(mid); } mid = ii(v[j], j); while(K > 1 && (lo.rbegin()->first > mid.first || hi.begin()->first < mid.first)){ if (lo.rbegin()->first > mid.first){ tmp = *lo.rbegin(); lo.erase(tmp); lo.insert(mid); mid = tmp; } if (hi.begin()->first < mid.first){ tmp = *hi.begin(); hi.erase(tmp); hi.insert(mid); mid = tmp; } } ans = max(ans, mid); } printf("%d\n", ans.first); return 0; }
1e3cab469cef42c400e377376c2f2d359915895f
b6ad4b10195bdf2e08f1cc0191cdb2c38da671ff
/src/engine/Box.cpp
795e82557262faf590fb610f6801ad85055fe020
[]
no_license
Raphicci/Raytracer
d41ad83d230d0533dcd0b79b4d09b8ba1ceac5b6
00cd740d65efc731db540a0f21fc9fd82de045eb
refs/heads/master
2021-01-10T16:14:50.848335
2015-11-27T09:50:48
2015-11-27T09:50:48
45,065,571
5
1
null
null
null
null
ISO-8859-1
C++
false
false
6,290
cpp
Box.cpp
/* ** Box.cpp for raytracer in /home/lemper_a/rendu/Raytracer ** ** Made by Antoine Lempereur ** Login <lemper_a@epitech.net> ** ** Started on Sun Nov 15 10:11:38 2015 Antoine Lempereur ** Last update Thu Nov 26 16:56:40 2015 Antoine Lempereur */ #include <math.h> #include "tools/Vector.h" #include "engine/Ray.h" #include "engine/Object.h" #include "engine/Box.h" #include "const.h" namespace Engine { Box::Box() { this->boxes = NULL; } Box::Box(Tools::Vector lowCorner, Tools::Vector highCorner) { this->lowCorner = lowCorner; this->highCorner = highCorner; } void Box::setLowCorner(Tools::Vector lowCorner) { this->lowCorner = lowCorner; } void Box::setHighCorner(Tools::Vector highCorner) { this->highCorner = highCorner; } void Box::setSmallBox(Tools::Vector lowCorner, int pos, double width, double height, double depth) { Tools::Vector highCorner; highCorner.setValues(lowCorner.getX() + depth, lowCorner.getY() + width, lowCorner.getZ() + height); this->boxes[pos].lowCorner = lowCorner; this->boxes[pos].highCorner = highCorner; } void Box::setBoxesInside() { this->boxes = new Box[8]; /* 0->en bas à gauche devant 1->en bas à gauche derriere 2->en bas à droite devant 3->en bas à droite derriere 4-> meme hose en haut */ double width = abs(this->lowCorner.getY() - this->highCorner.getY()) / 2; double height = abs(this->lowCorner.getZ() - this->highCorner.getZ()) / 2; double depth = abs(this->lowCorner.getX() - this->highCorner.getX()) / 2; double p[3]; Tools::Vector lowCorner; p[0] = this->lowCorner.getX(); p[1] = this->lowCorner.getY(); p[2] = this->lowCorner.getZ(); lowCorner = this->lowCorner; this->setSmallBox(lowCorner, 0, width, height, depth); lowCorner.setValues(p[0] + depth, p[1], p[2]); this->setSmallBox(lowCorner, 1, width, height, depth); lowCorner.setValues(p[0], p[1] + width, p[2]); this->setSmallBox(lowCorner, 2, width, height, depth); lowCorner.setValues(p[0] + depth, p[1] + width, p[2]); this->setSmallBox(lowCorner, 3, width, height, depth); lowCorner.setValues(p[0], p[1], p[2] + height); this->setSmallBox(lowCorner, 4, width, height, depth); lowCorner.setValues(p[0] + depth, p[1], p[2] + height); this->setSmallBox(lowCorner, 5, width, height, depth); lowCorner.setValues(p[0], p[1] + width, p[2] + height); this->setSmallBox(lowCorner, 6, width, height, depth); lowCorner.setValues(p[0] + depth, p[1] + width, p[2] + height); this->setSmallBox(lowCorner, 7, width, height, depth); } // Return dist from ray; // ray.inversed, ray.origin and both corners must be set double Box::collide(Engine::Ray *ray) { Tools::Vector v = ray->getInversed(); Tools::Vector t1; Tools::Vector t2; // c'est pas genre super con de déclarer ça sous forme de classe ? il y a 0 interet double tmax; double tmin; if ((v.getY() > -ALMOST_ZERO && v.getY() < ALMOST_ZERO) || (v.getZ() > -ALMOST_ZERO && v.getZ() < ALMOST_ZERO) || (v.getX() > -ALMOST_ZERO && v.getX() < ALMOST_ZERO)) return (1); t1.setX((this->lowCorner.getX() - ray->getOrigin().getX()) * v.getX()); t1.setY((this->highCorner.getX() - ray->getOrigin().getX()) * v.getX()); t1.setZ((this->lowCorner.getY() - ray->getOrigin().getY()) * v.getY()); t2.setX((this->highCorner.getY() - ray->getOrigin().getY()) * v.getY()); t2.setY((this->lowCorner.getZ() - ray->getOrigin().getZ()) * v.getZ()); t2.setZ((this->highCorner.getZ() - ray->getOrigin().getZ()) * v.getZ()); tmin = fmax(fmax(fmin(t1.getX(), t1.getY()), fmin(t1.getZ(), t2.getX())), fmin(t2.getY(), t2.getZ())); tmax = fmin(fmin(fmax(t1.getX(), t1.getY()), fmax(t1.getZ(), t2.getX())), fmax(t2.getY(), t2.getZ())); if (tmax < -ALMOST_ZERO) return (-1); if (tmin > tmax) return (-1); return (tmin); // HEY J'AI TROUVE UNE OPTI DE CE CODE :) je la code sans encapsulation parce que ça me pete les couilles // à tester, vérifier, toussa toussa mais ça me parrait bien. /* double min[3]; double max[3]; // à tester, vérifier, toussa toussa mais ça me parrait bien. // en fait ça marche pas >< double min[3]; double max[3]; if (r->getInversed().getX() >= 0) { min[0] = this->lowCorner.getX() - r->getOrigin().getX() * r->getInversed().getX(); max[0] = this->highCorner.getX() - r->getOrigin().getX() * r->getInversed().getX(); } else { min[0] = this->highCorner.getX() - r->getOrigin().getX() * r->getInversed().getX(); max[0] = this->lowCorner.getX() - r->getOrigin().getX() * r->getInversed().getX(); } if (r->getInversed().getY() >= 0) { min[1] = this->lowCorner.getY() - r->getOrigin().getY() * r->getInversed().getY(); max[1] = this->highCorner.getY() - r->getOrigin().getY() * r->getInversed().getY(); } else { min[1] = this->highCorner.getY() - r->getOrigin().getY() * r->getInversed().getY(); max[1] = this->lowCorner.getY() - r->getOrigin().getY() * r->getInversed().getY(); } printf("%f\n", r->getInversed().getY()); // exit(1); if (min[0] > max[1] || min[1] > max[0]) return (-1); printf("je suis là\n"); if (min[1] > min[0]) min[0] = min[1]; if (max[1] < max[0]) max[0] = max[1]; if (r->getInversed().getZ() >= 0) { min[2] = this->lowCorner.getZ() - r->getOrigin().getZ() * r->getInversed().getZ(); max[2] = this->highCorner.getZ() - r->getOrigin().getZ() * r->getInversed().getZ(); } else { max[2] = this->lowCorner.getZ() - r->getOrigin().getZ() * r->getInversed().getZ(); min[2] = this->highCorner.getZ() - r->getOrigin().getZ() * r->getInversed().getZ(); } if (min[0] > max[2] || min[2] > max[0]) return (-1); if (min[2] > min[0]) min[0] = min[2]; if (max[2] < max[0]) max[0] = max[2]; return (min[0]);*/ } Tools::Vector Box::getLowCorner() { return (this->lowCorner); } Tools::Vector Box::getHighCorner() { return (this->highCorner); } /* bool Box::isInsideBox(Engine::Box const& box) { }*/ Box::~Box() { if (!boxes) delete boxes; } }
8212d299e0f3e0cbb8ab7c870b6fa812a1bdd079
a552fa3577a2ae8d827e2f6b5630043bf859c841
/Projects/filmtar/string.hpp
cc6d67cc1aecd69916d4115aeaf010e64c7c5ce3
[]
no_license
Kabor42/Suli
bb29f62a4c83e170fd714dbd34b72f5dbdf533d8
23380db29f41cb2eeaa56c3b2780c525e634bbdb
refs/heads/master
2021-10-16T00:40:10.049586
2019-02-07T15:08:41
2019-02-07T15:08:41
106,914,119
0
0
null
null
null
null
UTF-8
C++
false
false
947
hpp
string.hpp
// // Created by kabor on 2018.03.22.. // #ifndef FILMTAR_STRING_HPP #define FILMTAR_STRING_HPP #include <iostream> #include <cstring> #include <algorithm> class String { private: size_t length; char *data; public: String(); String( size_t); String( const char *); String( const String &); virtual ~String(); void swap( String & str); String& operator = ( String str); String operator + ( const String & str); size_t len(); char* getPointer(); const char* getCPointer(); char & operator [] ( size_t idx); const char & operator [] ( size_t idx) const; operator char*() const; bool operator == ( const String & str); bool operator != ( const String & str); bool operator > ( const String & str); bool operator < ( const String & str); bool operator <= ( const String & str); bool operator >= ( const String & str); }; #endif //FILMTAR_STRING_HPP
23d1038df4eb7208f521d671fcc5af916a15d690
0b68953d7f9feace080fb4d80a3ab271e025852b
/problem_solving/leetcode/0268_missingNumber_easy.cc
b0fd46373870ce4293bc76e3445c60a546496161
[]
no_license
xlpiao/code
465f6b606f377919f195db2c596639ec9ccc856d
0a929107c0d145f53ec511e2f73b90d4f8cdf749
refs/heads/master
2023-06-22T19:06:24.622423
2023-06-08T13:46:34
2023-06-12T02:13:11
38,992,963
2
1
null
null
null
null
UTF-8
C++
false
false
531
cc
0268_missingNumber_easy.cc
class Solution { public: int missingNumber(vector<int>& nums) { int n = nums.size(); int correctSum = (n * (n + 1)) / 2; int sum = 0; for (int i = 0; i < n; i++) { sum += nums[i]; } return (correctSum - sum); } }; class Solution { public: int missingNumber(vector<int>& nums) { int n = nums.size(); //// arithmetic sequence: a{n}=a{1}+(n-1)d; int correctSum = (n * (n + 1)) / 2; for (int i = 0; i < n; i++) { correctSum -= nums[i]; } return correctSum; } };
16bbbdafd5f72a5728badfe27af6f71bbd787357
f5062902d2bfeb0906ba3e4e3435576a85f7fd2d
/gesture_mouse_receiver/gesture_mouse_receiver.ino
0ef65fc8122bb1352c07865918bfbef3c71608fd
[]
no_license
konu-droid/WAGOM
671be2462130f7a4b94f13fa36429fbb8c525fde
11d6466ab8e808e1b99e3c4fbc18ee57fc578272
refs/heads/master
2021-05-21T04:27:16.241990
2020-04-02T19:27:50
2020-04-02T19:27:50
252,542,602
0
0
null
null
null
null
UTF-8
C++
false
false
1,279
ino
gesture_mouse_receiver.ino
#include <Mouse.h> #define on 9 int data = 0; void setup() { pinMode(on, INPUT_PULLUP); Serial1.begin(38400); Serial.begin(38400); // delay(5000); // while(!Serial1.available()){ // Serial1.write(9); // } } void loop() { while (digitalRead(on) == LOW) { if (Serial1.available()) { data = Serial1.read(); //Serial.println(data); } if (data == 255 || data == 254 || data == 253 || data == 252 || data == 251 || data == 250 || data == 249 || data == 248) { Serial.println(data); } if (data == 255) { Mouse.press(MOUSE_RIGHT); delay(200); Mouse.release(MOUSE_RIGHT); } else if (data == 254) { Mouse.press(MOUSE_LEFT); delay(200); Mouse.release(MOUSE_LEFT); } else if (data == 252) { Mouse.move(0, 0, 1); delay(50); } else if (data == 253) { Mouse.move(0, 0, -1); delay(50); } else if (data == 250) { Mouse.move(5, 0, 0); delay(7); } else if (data == 251) { Mouse.move(-5, 0, 0); delay(7); } else if (data == 248) { Mouse.move(0, 5, 0); delay(7); } else if (data == 249) { Mouse.move(0, -5, 0); delay(7); } data = 0; } }
431c290f3e0b4c7a0c13ef53c5786e52a588ee6d
19194c2f2c07ab3537f994acfbf6b34ea9b55ae7
/android-30/android/opengl/GLES11Ext.def.hpp
c7f363453da54cbc88d2070f737a89a5a095ef9d
[ "GPL-3.0-only" ]
permissive
YJBeetle/QtAndroidAPI
e372609e9db0f96602da31b8417c9f5972315cae
ace3f0ea2678967393b5eb8e4edba7fa2ca6a50c
refs/heads/Qt6
2023-08-05T03:14:11.842336
2023-07-24T08:35:31
2023-07-24T08:35:31
249,539,770
19
4
Apache-2.0
2022-03-14T12:15:32
2020-03-23T20:42:54
C++
UTF-8
C++
false
false
14,049
hpp
GLES11Ext.def.hpp
#pragma once #include "../../JObject.hpp" class JFloatArray; class JIntArray; class JShortArray; namespace java::nio { class Buffer; } namespace java::nio { class FloatBuffer; } namespace java::nio { class IntBuffer; } namespace java::nio { class ShortBuffer; } namespace android::opengl { class GLES11Ext : public JObject { public: // Fields static jint GL_3DC_XY_AMD(); static jint GL_3DC_X_AMD(); static jint GL_ATC_RGBA_EXPLICIT_ALPHA_AMD(); static jint GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD(); static jint GL_ATC_RGB_AMD(); static jint GL_BGRA(); static jint GL_BLEND_DST_ALPHA_OES(); static jint GL_BLEND_DST_RGB_OES(); static jint GL_BLEND_EQUATION_ALPHA_OES(); static jint GL_BLEND_EQUATION_OES(); static jint GL_BLEND_EQUATION_RGB_OES(); static jint GL_BLEND_SRC_ALPHA_OES(); static jint GL_BLEND_SRC_RGB_OES(); static jint GL_BUFFER_ACCESS_OES(); static jint GL_BUFFER_MAPPED_OES(); static jint GL_BUFFER_MAP_POINTER_OES(); static jint GL_COLOR_ATTACHMENT0_OES(); static jint GL_CURRENT_PALETTE_MATRIX_OES(); static jint GL_DECR_WRAP_OES(); static jint GL_DEPTH24_STENCIL8_OES(); static jint GL_DEPTH_ATTACHMENT_OES(); static jint GL_DEPTH_COMPONENT16_OES(); static jint GL_DEPTH_COMPONENT24_OES(); static jint GL_DEPTH_COMPONENT32_OES(); static jint GL_DEPTH_STENCIL_OES(); static jint GL_ETC1_RGB8_OES(); static jint GL_FIXED_OES(); static jint GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES(); static jint GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES(); static jint GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES(); static jint GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES(); static jint GL_FRAMEBUFFER_BINDING_OES(); static jint GL_FRAMEBUFFER_COMPLETE_OES(); static jint GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES(); static jint GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES(); static jint GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES(); static jint GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES(); static jint GL_FRAMEBUFFER_OES(); static jint GL_FRAMEBUFFER_UNSUPPORTED_OES(); static jint GL_FUNC_ADD_OES(); static jint GL_FUNC_REVERSE_SUBTRACT_OES(); static jint GL_FUNC_SUBTRACT_OES(); static jint GL_INCR_WRAP_OES(); static jint GL_INVALID_FRAMEBUFFER_OPERATION_OES(); static jint GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES(); static jint GL_MATRIX_INDEX_ARRAY_OES(); static jint GL_MATRIX_INDEX_ARRAY_POINTER_OES(); static jint GL_MATRIX_INDEX_ARRAY_SIZE_OES(); static jint GL_MATRIX_INDEX_ARRAY_STRIDE_OES(); static jint GL_MATRIX_INDEX_ARRAY_TYPE_OES(); static jint GL_MATRIX_PALETTE_OES(); static jint GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES(); static jint GL_MAX_PALETTE_MATRICES_OES(); static jint GL_MAX_RENDERBUFFER_SIZE_OES(); static jint GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT(); static jint GL_MAX_VERTEX_UNITS_OES(); static jint GL_MIRRORED_REPEAT_OES(); static jint GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES(); static jint GL_NONE_OES(); static jint GL_NORMAL_MAP_OES(); static jint GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES(); static jint GL_REFLECTION_MAP_OES(); static jint GL_RENDERBUFFER_ALPHA_SIZE_OES(); static jint GL_RENDERBUFFER_BINDING_OES(); static jint GL_RENDERBUFFER_BLUE_SIZE_OES(); static jint GL_RENDERBUFFER_DEPTH_SIZE_OES(); static jint GL_RENDERBUFFER_GREEN_SIZE_OES(); static jint GL_RENDERBUFFER_HEIGHT_OES(); static jint GL_RENDERBUFFER_INTERNAL_FORMAT_OES(); static jint GL_RENDERBUFFER_OES(); static jint GL_RENDERBUFFER_RED_SIZE_OES(); static jint GL_RENDERBUFFER_STENCIL_SIZE_OES(); static jint GL_RENDERBUFFER_WIDTH_OES(); static jint GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES(); static jint GL_RGB565_OES(); static jint GL_RGB5_A1_OES(); static jint GL_RGB8_OES(); static jint GL_RGBA4_OES(); static jint GL_RGBA8_OES(); static jint GL_SAMPLER_EXTERNAL_OES(); static jint GL_STENCIL_ATTACHMENT_OES(); static jint GL_STENCIL_INDEX1_OES(); static jint GL_STENCIL_INDEX4_OES(); static jint GL_STENCIL_INDEX8_OES(); static jint GL_TEXTURE_BINDING_CUBE_MAP_OES(); static jint GL_TEXTURE_BINDING_EXTERNAL_OES(); static jint GL_TEXTURE_CROP_RECT_OES(); static jint GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES(); static jint GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES(); static jint GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES(); static jint GL_TEXTURE_CUBE_MAP_OES(); static jint GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES(); static jint GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES(); static jint GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES(); static jint GL_TEXTURE_EXTERNAL_OES(); static jint GL_TEXTURE_GEN_MODE_OES(); static jint GL_TEXTURE_GEN_STR_OES(); static jint GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES(); static jint GL_TEXTURE_MAX_ANISOTROPY_EXT(); static jint GL_UNSIGNED_INT_24_8_OES(); static jint GL_WEIGHT_ARRAY_BUFFER_BINDING_OES(); static jint GL_WEIGHT_ARRAY_OES(); static jint GL_WEIGHT_ARRAY_POINTER_OES(); static jint GL_WEIGHT_ARRAY_SIZE_OES(); static jint GL_WEIGHT_ARRAY_STRIDE_OES(); static jint GL_WEIGHT_ARRAY_TYPE_OES(); static jint GL_WRITE_ONLY_OES(); // QJniObject forward template<typename ...Ts> explicit GLES11Ext(const char *className, const char *sig, Ts...agv) : JObject(className, sig, std::forward<Ts>(agv)...) {} GLES11Ext(QJniObject obj) : JObject(obj) {} // Constructors GLES11Ext(); // Methods static void glAlphaFuncxOES(jint arg0, jint arg1); static void glBindFramebufferOES(jint arg0, jint arg1); static void glBindRenderbufferOES(jint arg0, jint arg1); static void glBlendEquationOES(jint arg0); static void glBlendEquationSeparateOES(jint arg0, jint arg1); static void glBlendFuncSeparateOES(jint arg0, jint arg1, jint arg2, jint arg3); static jint glCheckFramebufferStatusOES(jint arg0); static void glClearColorxOES(jint arg0, jint arg1, jint arg2, jint arg3); static void glClearDepthfOES(jfloat arg0); static void glClearDepthxOES(jint arg0); static void glClipPlanefOES(jint arg0, java::nio::FloatBuffer arg1); static void glClipPlanefOES(jint arg0, JFloatArray arg1, jint arg2); static void glClipPlanexOES(jint arg0, java::nio::IntBuffer arg1); static void glClipPlanexOES(jint arg0, JIntArray arg1, jint arg2); static void glColor4xOES(jint arg0, jint arg1, jint arg2, jint arg3); static void glCurrentPaletteMatrixOES(jint arg0); static void glDeleteFramebuffersOES(jint arg0, java::nio::IntBuffer arg1); static void glDeleteFramebuffersOES(jint arg0, JIntArray arg1, jint arg2); static void glDeleteRenderbuffersOES(jint arg0, java::nio::IntBuffer arg1); static void glDeleteRenderbuffersOES(jint arg0, JIntArray arg1, jint arg2); static void glDepthRangefOES(jfloat arg0, jfloat arg1); static void glDepthRangexOES(jint arg0, jint arg1); static void glDrawTexfOES(jfloat arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4); static void glDrawTexfvOES(java::nio::FloatBuffer arg0); static void glDrawTexfvOES(JFloatArray arg0, jint arg1); static void glDrawTexiOES(jint arg0, jint arg1, jint arg2, jint arg3, jint arg4); static void glDrawTexivOES(java::nio::IntBuffer arg0); static void glDrawTexivOES(JIntArray arg0, jint arg1); static void glDrawTexsOES(jshort arg0, jshort arg1, jshort arg2, jshort arg3, jshort arg4); static void glDrawTexsvOES(java::nio::ShortBuffer arg0); static void glDrawTexsvOES(JShortArray arg0, jint arg1); static void glDrawTexxOES(jint arg0, jint arg1, jint arg2, jint arg3, jint arg4); static void glDrawTexxvOES(java::nio::IntBuffer arg0); static void glDrawTexxvOES(JIntArray arg0, jint arg1); static void glEGLImageTargetRenderbufferStorageOES(jint arg0, java::nio::Buffer arg1); static void glEGLImageTargetTexture2DOES(jint arg0, java::nio::Buffer arg1); static void glFogxOES(jint arg0, jint arg1); static void glFogxvOES(jint arg0, java::nio::IntBuffer arg1); static void glFogxvOES(jint arg0, JIntArray arg1, jint arg2); static void glFramebufferRenderbufferOES(jint arg0, jint arg1, jint arg2, jint arg3); static void glFramebufferTexture2DOES(jint arg0, jint arg1, jint arg2, jint arg3, jint arg4); static void glFrustumfOES(jfloat arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5); static void glFrustumxOES(jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5); static void glGenFramebuffersOES(jint arg0, java::nio::IntBuffer arg1); static void glGenFramebuffersOES(jint arg0, JIntArray arg1, jint arg2); static void glGenRenderbuffersOES(jint arg0, java::nio::IntBuffer arg1); static void glGenRenderbuffersOES(jint arg0, JIntArray arg1, jint arg2); static void glGenerateMipmapOES(jint arg0); static void glGetClipPlanefOES(jint arg0, java::nio::FloatBuffer arg1); static void glGetClipPlanefOES(jint arg0, JFloatArray arg1, jint arg2); static void glGetClipPlanexOES(jint arg0, java::nio::IntBuffer arg1); static void glGetClipPlanexOES(jint arg0, JIntArray arg1, jint arg2); static void glGetFixedvOES(jint arg0, java::nio::IntBuffer arg1); static void glGetFixedvOES(jint arg0, JIntArray arg1, jint arg2); static void glGetFramebufferAttachmentParameterivOES(jint arg0, jint arg1, jint arg2, java::nio::IntBuffer arg3); static void glGetFramebufferAttachmentParameterivOES(jint arg0, jint arg1, jint arg2, JIntArray arg3, jint arg4); static void glGetLightxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glGetLightxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glGetMaterialxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glGetMaterialxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glGetRenderbufferParameterivOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glGetRenderbufferParameterivOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glGetTexEnvxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glGetTexEnvxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glGetTexGenfvOES(jint arg0, jint arg1, java::nio::FloatBuffer arg2); static void glGetTexGenfvOES(jint arg0, jint arg1, JFloatArray arg2, jint arg3); static void glGetTexGenivOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glGetTexGenivOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glGetTexGenxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glGetTexGenxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glGetTexParameterxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glGetTexParameterxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static jboolean glIsFramebufferOES(jint arg0); static jboolean glIsRenderbufferOES(jint arg0); static void glLightModelxOES(jint arg0, jint arg1); static void glLightModelxvOES(jint arg0, java::nio::IntBuffer arg1); static void glLightModelxvOES(jint arg0, JIntArray arg1, jint arg2); static void glLightxOES(jint arg0, jint arg1, jint arg2); static void glLightxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glLightxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glLineWidthxOES(jint arg0); static void glLoadMatrixxOES(java::nio::IntBuffer arg0); static void glLoadMatrixxOES(JIntArray arg0, jint arg1); static void glLoadPaletteFromModelViewMatrixOES(); static void glMaterialxOES(jint arg0, jint arg1, jint arg2); static void glMaterialxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glMaterialxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glMatrixIndexPointerOES(jint arg0, jint arg1, jint arg2, java::nio::Buffer arg3); static void glMultMatrixxOES(java::nio::IntBuffer arg0); static void glMultMatrixxOES(JIntArray arg0, jint arg1); static void glMultiTexCoord4xOES(jint arg0, jint arg1, jint arg2, jint arg3, jint arg4); static void glNormal3xOES(jint arg0, jint arg1, jint arg2); static void glOrthofOES(jfloat arg0, jfloat arg1, jfloat arg2, jfloat arg3, jfloat arg4, jfloat arg5); static void glOrthoxOES(jint arg0, jint arg1, jint arg2, jint arg3, jint arg4, jint arg5); static void glPointParameterxOES(jint arg0, jint arg1); static void glPointParameterxvOES(jint arg0, java::nio::IntBuffer arg1); static void glPointParameterxvOES(jint arg0, JIntArray arg1, jint arg2); static void glPointSizexOES(jint arg0); static void glPolygonOffsetxOES(jint arg0, jint arg1); static void glRenderbufferStorageOES(jint arg0, jint arg1, jint arg2, jint arg3); static void glRotatexOES(jint arg0, jint arg1, jint arg2, jint arg3); static void glSampleCoveragexOES(jint arg0, jboolean arg1); static void glScalexOES(jint arg0, jint arg1, jint arg2); static void glTexEnvxOES(jint arg0, jint arg1, jint arg2); static void glTexEnvxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glTexEnvxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glTexGenfOES(jint arg0, jint arg1, jfloat arg2); static void glTexGenfvOES(jint arg0, jint arg1, java::nio::FloatBuffer arg2); static void glTexGenfvOES(jint arg0, jint arg1, JFloatArray arg2, jint arg3); static void glTexGeniOES(jint arg0, jint arg1, jint arg2); static void glTexGenivOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glTexGenivOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glTexGenxOES(jint arg0, jint arg1, jint arg2); static void glTexGenxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glTexGenxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glTexParameterxOES(jint arg0, jint arg1, jint arg2); static void glTexParameterxvOES(jint arg0, jint arg1, java::nio::IntBuffer arg2); static void glTexParameterxvOES(jint arg0, jint arg1, JIntArray arg2, jint arg3); static void glTranslatexOES(jint arg0, jint arg1, jint arg2); static void glWeightPointerOES(jint arg0, jint arg1, jint arg2, java::nio::Buffer arg3); }; } // namespace android::opengl
c3c44167416e55371fd3b48286bed21eef261275
e88f7a585ff74c3f29251246be5caee801fc4774
/cymbal-bot.ino
3c19278e18428ca2f7ded09b4b6cf950c171c270
[]
no_license
dessibelle/cymbal-bot
a367af62c72f613854c2b57300804ad0b0e3a2dc
566db201b55d78733cf9f6e5d0b33123790496b8
refs/heads/master
2022-03-20T03:43:25.282833
2019-10-22T15:07:01
2019-10-22T15:08:05
109,748,739
0
0
null
null
null
null
UTF-8
C++
false
false
3,190
ino
cymbal-bot.ino
#include <Servo.h> #include <DS3231.h> #include <Wire.h> // #define DEBUG // This enables debug logging, uncomment to enable debug logging #define BUTTON_PIN 2 #define SERVO_PIN 9 // PIN used for servo #define SERVO_DELAY 500 // Delay used for waiting for servo #define MANUAL_RING_CYCLES_TARGET 1 #ifdef DEBUG #define DEBUG_PRINT(x) Serial.print (x) #define DEBUG_PRINT_DEC(x) Serial.print (x, DEC) #define DEBUG_PRINT_LN(x) Serial.println (x) // Settings #define LOOP_DELAY 200 #else #define DEBUG_PRINT(x) #define DEBUG_PRINT_DEC(x) #define DEBUG_PRINT_LN(x) // Settings #define LOOP_DELAY 200 #endif Servo sg90; RTClib RTC; DS3231 Clock; // High level Clock functions struct belltime { byte hour; byte minute; byte second; }; bool is_equal_belltime(struct belltime t1, struct belltime t2) { return t1.hour == t2.hour && t1.minute == t2.minute && t1.second == t2.second; } struct belltime bell_schedule[] = { {9, 45, 0}, {10, 0, 0} }; struct belltime lastTrigger; // const int ClockPowerPin = 6; // Activates voltage regulator to power the RTC (otherwise is on backup power from VCC or batt) unsigned short numCyclesPressed = 0; void setup() { #ifdef DEBUG Serial.begin(9600); #endif pinMode(BUTTON_PIN, INPUT_PULLUP); sg90.attach(SERVO_PIN); Wire.begin(); moveServoAndWait(180); // pinMode(ClockPowerPin, OUTPUT); // digitalWrite(ClockPowerPin, HIGH); Clock.setClockMode(false); // set to 24h //setClockMode(true); // set to 12h /* Clock.setYear(19); Clock.setMonth(10); Clock.setDate(21); Clock.setHour(20); Clock.setMinute(27); Clock.setSecond(0); Clock.setDoW(2); */ } void loop() { DateTime now = RTC.now(); unsigned long timestamp = now.unixtime(); int buttonState = digitalRead(BUTTON_PIN); bool manualOverride = false; // DEBUG_PRINT("BUTTON STATE (DIGITAL): "); // DEBUG_PRINT_LN(buttonState); if (buttonState == LOW) { DEBUG_PRINT_LN("BUTTON IS PRESSED"); numCyclesPressed += 1; } if (numCyclesPressed >= MANUAL_RING_CYCLES_TARGET) { manualOverride = true; numCyclesPressed = 0; } evaluateBell(manualOverride); delay(LOOP_DELAY); } void moveServoAndWait(byte pos) { delay(moveServo(pos)); } short moveServo(byte pos) { int nextPos = constrain((int)pos, 0, 179); sg90.write(nextPos); return SERVO_DELAY; } void evaluateBell(bool manualOverride) { bool h12, pm; byte h = Clock.getHour(h12, pm); byte m = Clock.getMinute(); byte s = Clock.getSecond(); struct belltime now = {h, m, s}; bool triggerBell = false; DEBUG_PRINT("evaluateBell:"); DEBUG_PRINT(h); DEBUG_PRINT(":"); DEBUG_PRINT(m); DEBUG_PRINT(":"); DEBUG_PRINT_LN(s); size_t schedule_size = sizeof(bell_schedule) / sizeof(bell_schedule[0]); for (int i = 0; i < schedule_size; i++) { struct belltime t = bell_schedule[i]; triggerBell |= is_equal_belltime(now, t); } // triggerBell = s % 10 == 0; bool alreadyTriggered = is_equal_belltime(now, lastTrigger); if ((!alreadyTriggered && triggerBell) || manualOverride) { lastTrigger = {h, m, s}; moveServoAndWait(0); moveServoAndWait(180); } }
7b41119bc35967b0ccbcfb4581136c1a6945b4f5
a438d8be6b7f37af84f6e463582a3b6e4c98c57a
/arduino_code/step_sequencer3b/step_sequencer3b.ino
e4045bdaf77b11fad335246c2bbd595ad53650ef
[]
no_license
pirxthepilot/monomepi-stepsequencer
7b0d7e9865ebb267a3a2b187f2bc0679c23279e4
9dee93f62c713f2abdd8a550fc6d708fbf81d4e4
refs/heads/master
2022-06-01T05:53:40.542520
2016-08-10T23:17:19
2016-08-10T23:22:45
65,345,623
26
6
null
null
null
null
UTF-8
C++
false
false
1,488
ino
step_sequencer3b.ino
#include <Servo.h> Servo s[8]; //const int initpos = 80; // initial servo position //const int hitpos = 70; // hit position const long hitdly = 75; // hit delay in millisecs byte b[] = {0x00}; int initpos[8] = {74, 80, 78, 73, 77, 78, 78, 83}; int hitmove[8] = {10, -10, 11, -12, 9, -11, 7, 8}; unsigned long servo_start[8] = {0, 0, 0, 0, 0, 0, 0, 0}; boolean is_running[8] = {false, false, false, false, false, false, false, false}; void setup() { s[0].attach(4); s[0].write(initpos[0]); s[1].attach(5); s[1].write(initpos[1]); s[2].attach(6); s[2].write(initpos[2]); s[3].attach(7); s[3].write(initpos[3]); s[4].attach(8); s[4].write(initpos[4]); s[5].attach(9); s[5].write(initpos[5]); s[6].attach(10); s[6].write(initpos[6]); s[7].attach(11); s[7].write(initpos[7]); //pinMode(13, OUTPUT); Serial.begin(115200); } void loop() { if (Serial.available()) { Serial.readBytes(b, 1); int servodata = b[0]; for (int i = 0; i < 8; i++) { if (bitRead(servodata,i) == 1) { s[i].write(initpos[i] + hitmove[i]); //digitalWrite(13, HIGH); servo_start[i] = millis(); is_running[i] = true; } } } for (int i = 0; i < 8; i++) { unsigned long curtime = millis(); if (is_running[i]) { if ((curtime - servo_start[i]) >= hitdly) { //digitalWrite(13, LOW); s[i].write(initpos[i]); servo_start[i] = 0; is_running[i] = false; } } } }
daaa57f3c3a70239b944296c6e05853c522c0be0
0cffef7438a0379199aefa29469e719918a582a3
/source/core/slang-downstream-compiler.cpp
8a795363d66fbb00cb33b0789ebe7b1d0597ae16
[ "LicenseRef-scancode-public-domain", "MIT", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
djohansson/slang
b0251f97b5ad6ad202a1b5b5233d4b02aa05c639
6d616c065dc8c9b344987d350c05d536a01141dc
refs/heads/master
2023-05-27T17:31:47.515021
2023-05-12T21:43:00
2023-05-12T21:43:00
159,946,191
2
0
MIT
2018-12-01T13:14:51
2018-12-01T13:14:51
null
UTF-8
C++
false
false
22,544
cpp
slang-downstream-compiler.cpp
// slang-downstream-compiler.cpp #include "slang-downstream-compiler.h" #include "slang-common.h" #include "../../slang-com-helper.h" #include "slang-string-util.h" #include "slang-type-text-util.h" #include "slang-io.h" #include "slang-shared-library.h" #include "slang-blob.h" #ifdef SLANG_VC # include "windows/slang-win-visual-studio-util.h" #endif #include "slang-visual-studio-compiler-util.h" #include "slang-gcc-compiler-util.h" #include "slang-nvrtc-compiler.h" namespace Slang { static DownstreamCompiler::Infos _calcInfos() { typedef DownstreamCompiler::Info Info; typedef DownstreamCompiler::SourceLanguageFlag SourceLanguageFlag; typedef DownstreamCompiler::SourceLanguageFlags SourceLanguageFlags; DownstreamCompiler::Infos infos; infos.infos[int(SLANG_PASS_THROUGH_CLANG)] = Info(SourceLanguageFlag::CPP | SourceLanguageFlag::C); infos.infos[int(SLANG_PASS_THROUGH_VISUAL_STUDIO)] = Info(SourceLanguageFlag::CPP | SourceLanguageFlag::C); infos.infos[int(SLANG_PASS_THROUGH_GCC)] = Info(SourceLanguageFlag::CPP | SourceLanguageFlag::C); infos.infos[int(SLANG_PASS_THROUGH_NVRTC)] = Info(SourceLanguageFlag::CUDA); infos.infos[int(SLANG_PASS_THROUGH_DXC)] = Info(SourceLanguageFlag::HLSL); infos.infos[int(SLANG_PASS_THROUGH_FXC)] = Info(SourceLanguageFlag::HLSL); infos.infos[int(SLANG_PASS_THROUGH_GLSLANG)] = Info(SourceLanguageFlag::GLSL); return infos; } /* static */DownstreamCompiler::Infos DownstreamCompiler::s_infos = _calcInfos(); /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! DownstreamCompiler::Desc !!!!!!!!!!!!!!!!!!!!!!*/ void DownstreamCompiler::Desc::appendAsText(StringBuilder& out) const { out << TypeTextUtil::getPassThroughAsHumanText(type); // Append the version if there is a version if (majorVersion || minorVersion) { out << " "; out << majorVersion; out << "."; out << minorVersion; } } /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! DownstreamDiagnostic !!!!!!!!!!!!!!!!!!!!!!!!*/ /* static */UnownedStringSlice DownstreamDiagnostic::getTypeText(Type type) { switch (type) { default: return UnownedStringSlice::fromLiteral("Unknown"); case Type::Info: return UnownedStringSlice::fromLiteral("Info"); case Type::Warning: return UnownedStringSlice::fromLiteral("Warning"); case Type::Error: return UnownedStringSlice::fromLiteral("Error"); } } /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! DownstreamCompiler !!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ /* static */bool DownstreamCompiler::canCompile(SlangPassThrough compiler, SlangSourceLanguage sourceLanguage) { const auto& info = getInfo(compiler); return (info.sourceLanguageFlags & (SourceLanguageFlags(1) << int(sourceLanguage))) != 0; } /* static */SlangCompileTarget DownstreamCompiler::getCompileTarget(SlangSourceLanguage sourceLanguage) { switch (sourceLanguage) { case SLANG_SOURCE_LANGUAGE_HLSL: return SLANG_HLSL; case SLANG_SOURCE_LANGUAGE_GLSL: return SLANG_GLSL; case SLANG_SOURCE_LANGUAGE_C: return SLANG_C_SOURCE; case SLANG_SOURCE_LANGUAGE_CPP: return SLANG_CPP_SOURCE; case SLANG_SOURCE_LANGUAGE_CUDA: return SLANG_CUDA_SOURCE; default: return SLANG_TARGET_UNKNOWN; } } /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! DownstreamDiagnostics !!!!!!!!!!!!!!!!!!!!!!*/ Index DownstreamDiagnostics::getCountByType(Diagnostic::Type type) const { Index count = 0; for (const auto& msg : diagnostics) { count += Index(msg.type == type); } return count; } Int DownstreamDiagnostics::countByStage(Diagnostic::Stage stage, Index counts[Int(Diagnostic::Type::CountOf)]) const { Int count = 0; ::memset(counts, 0, sizeof(Index) * Int(Diagnostic::Type::CountOf)); for (const auto& diagnostic : diagnostics) { if (diagnostic.stage == stage) { count++; counts[Index(diagnostic.type)]++; } } return count++; } static void _appendCounts(const Index counts[Int(DownstreamDiagnostic::Type::CountOf)], StringBuilder& out) { typedef DownstreamDiagnostic::Type Type; for (Index i = 0; i < Int(Type::CountOf); i++) { if (counts[i] > 0) { out << DownstreamDiagnostic::getTypeText(Type(i)) << "(" << counts[i] << ") "; } } } static void _appendSimplified(const Index counts[Int(DownstreamDiagnostic::Type::CountOf)], StringBuilder& out) { typedef DownstreamDiagnostic::Type Type; for (Index i = 0; i < Int(Type::CountOf); i++) { if (counts[i] > 0) { out << DownstreamDiagnostic::getTypeText(Type(i)) << " "; } } } void DownstreamDiagnostics::appendSummary(StringBuilder& out) const { Index counts[Int(Diagnostic::Type::CountOf)]; if (countByStage(Diagnostic::Stage::Compile, counts) > 0) { out << "Compile: "; _appendCounts(counts, out); out << "\n"; } if (countByStage(Diagnostic::Stage::Link, counts) > 0) { out << "Link: "; _appendCounts(counts, out); out << "\n"; } } void DownstreamDiagnostics::appendSimplifiedSummary(StringBuilder& out) const { Index counts[Int(Diagnostic::Type::CountOf)]; if (countByStage(Diagnostic::Stage::Compile, counts) > 0) { out << "Compile: "; _appendSimplified(counts, out); out << "\n"; } if (countByStage(Diagnostic::Stage::Link, counts) > 0) { out << "Link: "; _appendSimplified(counts, out); out << "\n"; } } void DownstreamDiagnostics::removeByType(Diagnostic::Type type) { Index count = diagnostics.getCount(); for (Index i = 0; i < count; ++i) { if (diagnostics[i].type == type) { diagnostics.removeAt(i); i--; count--; } } } /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CommandLineDownstreamCompileResult !!!!!!!!!!!!!!!!!!!!!!*/ SlangResult CommandLineDownstreamCompileResult::getHostCallableSharedLibrary(ComPtr<ISlangSharedLibrary>& outLibrary) { if (m_hostCallableSharedLibrary) { outLibrary = m_hostCallableSharedLibrary; return SLANG_OK; } // Okay we want to load // Try loading the shared library SharedLibrary::Handle handle; if (SLANG_FAILED(SharedLibrary::loadWithPlatformPath(m_moduleFilePath.getBuffer(), handle))) { return SLANG_FAIL; } // The shared library needs to keep temp files in scope RefPtr<TemporarySharedLibrary> sharedLib(new TemporarySharedLibrary(handle, m_moduleFilePath)); sharedLib->m_temporaryFileSet = m_temporaryFiles; m_hostCallableSharedLibrary = sharedLib; outLibrary = m_hostCallableSharedLibrary; return SLANG_OK; } SlangResult CommandLineDownstreamCompileResult::getBinary(ComPtr<ISlangBlob>& outBlob) { if (m_binaryBlob) { outBlob = m_binaryBlob; return SLANG_OK; } // Read the binary try { // Read the contents of the binary List<uint8_t> contents = File::readAllBytes(m_moduleFilePath); m_binaryBlob = new ScopeRefObjectBlob(ListBlob::moveCreate(contents), m_temporaryFiles); outBlob = m_binaryBlob; return SLANG_OK; } catch (const Slang::IOException&) { return SLANG_FAIL; } } /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! CommandLineDownstreamCompiler !!!!!!!!!!!!!!!!!!!!!!*/ static bool _isContentsInFile(const DownstreamCompiler::CompileOptions& options) { if (options.sourceContentsPath.getLength() <= 0) { return false; } // We can see if we can load it if (File::exists(options.sourceContentsPath)) { // Here we look for the file on the regular file system (as opposed to using the // ISlangFileSystem. This is unfortunate but necessary - because when we call out // to the compiler all it is able to (currently) see are files on the file system. // // Note that it could be coincidence that the filesystem has a file that's identical in // contents/name. That being the case though, any includes wouldn't work for a generated // file either from some specialized ISlangFileSystem, so this is probably as good as it gets // until we can integrate directly to a C/C++ compiler through say a shared library where we can control // file system access. try { String readContents = File::readAllText(options.sourceContentsPath); // We should see if they are the same return options.sourceContents == readContents.getUnownedSlice(); } catch (const Slang::IOException&) { } } return false; } SlangResult CommandLineDownstreamCompiler::compile(const CompileOptions& inOptions, RefPtr<DownstreamCompileResult>& out) { // Copy the command line options CommandLine cmdLine(m_cmdLine); CompileOptions options(inOptions); // Find all the files that will be produced RefPtr<TemporaryFileSet> productFileSet(new TemporaryFileSet); if (options.modulePath.getLength() == 0 || options.sourceContents.getLength() != 0) { String modulePath = options.modulePath; // If there is no module path, generate one. if (modulePath.getLength() == 0) { SLANG_RETURN_ON_FAIL(File::generateTemporary(UnownedStringSlice::fromLiteral("slang-generated"), modulePath)); options.modulePath = modulePath; } if (_isContentsInFile(options)) { options.sourceFiles.add(options.sourceContentsPath); } else { String compileSourcePath = modulePath; // NOTE: Strictly speaking producing filenames by modifying the generateTemporary path that may introduce a temp filename clash, but in practice is extraordinary unlikely compileSourcePath.append("-src"); // Make the temporary filename have the appropriate extension. if (options.sourceLanguage == SLANG_SOURCE_LANGUAGE_C) { compileSourcePath.append(".c"); } else { compileSourcePath.append(".cpp"); } // Write it out try { productFileSet->add(compileSourcePath); File::writeAllText(compileSourcePath, options.sourceContents); } catch (...) { return SLANG_FAIL; } // Add it as a source file options.sourceFiles.add(compileSourcePath); } // There is no source contents options.sourceContents = String(); options.sourceContentsPath = String(); } // Append command line args to the end of cmdLine using the target specific function for the specified options SLANG_RETURN_ON_FAIL(calcArgs(options, cmdLine)); String moduleFilePath; { StringBuilder builder; SLANG_RETURN_ON_FAIL(calcModuleFilePath(options, builder)); moduleFilePath = builder.ProduceString(); } { List<String> paths; SLANG_RETURN_ON_FAIL(calcCompileProducts(options, DownstreamCompiler::ProductFlag::All, paths)); productFileSet->add(paths); } ExecuteResult exeRes; #if 0 // Test { String line = ProcessUtil::getCommandLineString(cmdLine); printf("%s", line.getBuffer()); } #endif SLANG_RETURN_ON_FAIL(ProcessUtil::execute(cmdLine, exeRes)); #if 0 { printf("stdout=\"%s\"\nstderr=\"%s\"\nret=%d\n", exeRes.standardOutput.getBuffer(), exeRes.standardError.getBuffer(), int(exeRes.resultCode)); } #endif DownstreamDiagnostics diagnostics; SLANG_RETURN_ON_FAIL(parseOutput(exeRes, diagnostics)); out = new CommandLineDownstreamCompileResult(diagnostics, moduleFilePath, productFileSet); return SLANG_OK; } /* !!!!!!!!!!!!!!!!!!!!!!!!! DownstreamCompiler::Desc !!!!!!!!!!!!!!!!!!!!!!*/ static DownstreamCompiler::Desc _calcCompiledWithDesc() { DownstreamCompiler::Desc desc; #if SLANG_VC desc = WinVisualStudioUtil::getDesc(WinVisualStudioUtil::getCompiledVersion()); #elif SLANG_CLANG desc.type = SLANG_PASS_THROUGH_CLANG; desc.majorVersion = Int(__clang_major__); desc.minorVersion = Int(__clang_minor__); #elif SLANG_GCC desc.type = SLANG_PASS_THROUGH_GCC; desc.majorVersion = Int(__GNUC__); desc.minorVersion = Int(__GNUC_MINOR__); #else // TODO(JS): Hmmm None is not quite the same as unknown. It works for now, but we might want to have a distinct enum for unknown. desc.type = SLANG_PASS_THROUGH_NONE; #endif return desc; } /* !!!!!!!!!!!!!!!!!!!!!!!!! DownstreamCompilerUtil !!!!!!!!!!!!!!!!!!!!!!*/ const DownstreamCompiler::Desc& DownstreamCompilerUtil::getCompiledWithDesc() { static DownstreamCompiler::Desc s_desc = _calcCompiledWithDesc(); return s_desc; } /* static */DownstreamCompiler* DownstreamCompilerUtil::findCompiler(const DownstreamCompilerSet* set, MatchType matchType, const DownstreamCompiler::Desc& desc) { List<DownstreamCompiler*> compilers; set->getCompilers(compilers); return findCompiler(compilers, matchType, desc); } /* static */DownstreamCompiler* DownstreamCompilerUtil::findCompiler(const List<DownstreamCompiler*>& compilers, MatchType matchType, const DownstreamCompiler::Desc& desc) { if (compilers.getCount() <= 0) { return nullptr; } Int bestIndex = -1; const SlangPassThrough type = desc.type; Int maxVersionValue = 0; Int minVersionDiff = 0x7fffffff; Int descVersionValue = desc.getVersionValue(); // If we don't have version set, then anything 0 or above is good enough, and just take newest if (descVersionValue == 0) { maxVersionValue = -1; matchType = MatchType::Newest; } for (Index i = 0; i < compilers.getCount(); ++i) { DownstreamCompiler* compiler = compilers[i]; auto compilerDesc = compiler->getDesc(); if (type == compilerDesc.type) { const Int versionValue = compilerDesc.getVersionValue(); switch (matchType) { case MatchType::MinGreaterEqual: { auto diff = descVersionValue - versionValue; if (diff >= 0 && diff < minVersionDiff) { bestIndex = i; minVersionDiff = diff; } break; } case MatchType::MinAbsolute: { auto diff = descVersionValue - versionValue; diff = (diff >= 0) ? diff : -diff; if (diff < minVersionDiff) { bestIndex = i; minVersionDiff = diff; } break; } case MatchType::Newest: { if (versionValue > maxVersionValue) { maxVersionValue = versionValue; bestIndex = i; } break; } } } } return (bestIndex >= 0) ? compilers[bestIndex] : nullptr; } /* static */DownstreamCompiler* DownstreamCompilerUtil::findClosestCompiler(const List<DownstreamCompiler*>& compilers, const DownstreamCompiler::Desc& desc) { DownstreamCompiler* compiler; compiler = findCompiler(compilers, MatchType::MinGreaterEqual, desc); if (compiler) { return compiler; } compiler = findCompiler(compilers, MatchType::MinAbsolute, desc); if (compiler) { return compiler; } // If we are gcc, we can try clang and vice versa if (desc.type == SLANG_PASS_THROUGH_GCC || desc.type == SLANG_PASS_THROUGH_CLANG) { DownstreamCompiler::Desc compatible = desc; compatible.type = (compatible.type == SLANG_PASS_THROUGH_CLANG) ? SLANG_PASS_THROUGH_GCC : SLANG_PASS_THROUGH_CLANG; compiler = findCompiler(compilers, MatchType::MinGreaterEqual, compatible); if (compiler) { return compiler; } compiler = findCompiler(compilers, MatchType::MinAbsolute, compatible); if (compiler) { return compiler; } } return nullptr; } /* static */DownstreamCompiler* DownstreamCompilerUtil::findClosestCompiler(const DownstreamCompilerSet* set, const DownstreamCompiler::Desc& desc) { DownstreamCompiler* compiler = set->getCompiler(desc); if (compiler) { return compiler; } List<DownstreamCompiler*> compilers; set->getCompilers(compilers); return findClosestCompiler(compilers, desc); } /* static */void DownstreamCompilerUtil::updateDefault(DownstreamCompilerSet* set, SlangSourceLanguage sourceLanguage) { DownstreamCompiler* compiler = nullptr; switch (sourceLanguage) { case SLANG_SOURCE_LANGUAGE_CPP: case SLANG_SOURCE_LANGUAGE_C: { compiler = findClosestCompiler(set, getCompiledWithDesc()); break; } case SLANG_SOURCE_LANGUAGE_CUDA: { DownstreamCompiler::Desc desc; desc.type = SLANG_PASS_THROUGH_NVRTC; compiler = findCompiler(set, MatchType::Newest, desc); break; } default: break; } set->setDefaultCompiler(sourceLanguage, compiler); } /* static */void DownstreamCompilerUtil::updateDefaults(DownstreamCompilerSet* set) { for (Index i = 0; i < Index(SLANG_SOURCE_LANGUAGE_COUNT_OF); ++i) { updateDefault(set, SlangSourceLanguage(i)); } } static SlangResult _locateDXCCompilers(const String& path, ISlangSharedLibraryLoader* loader, DownstreamCompilerSet* set) { // First try dxil, so it's loaded from the same path if it's there ComPtr<ISlangSharedLibrary> dxil; DefaultSharedLibraryLoader::load(loader, path, "dxil", dxil.writeRef()); ComPtr<ISlangSharedLibrary> sharedLibrary; if (SLANG_SUCCEEDED(DefaultSharedLibraryLoader::load(loader, path, "dxcompiler", sharedLibrary.writeRef()))) { // Can we determine the version? DownstreamCompiler::Desc desc(SLANG_PASS_THROUGH_DXC); RefPtr<DownstreamCompiler> compiler(new SharedLibraryDownstreamCompiler(desc, sharedLibrary)); set->addCompiler(compiler); } return SLANG_OK; } static SlangResult _locateFXCCompilers(const String& path, ISlangSharedLibraryLoader* loader, DownstreamCompilerSet* set) { ComPtr<ISlangSharedLibrary> sharedLibrary; if (SLANG_SUCCEEDED(DefaultSharedLibraryLoader::load(loader, path, "d3dcompiler_47", sharedLibrary.writeRef()))) { // Can we determine the version? DownstreamCompiler::Desc desc(SLANG_PASS_THROUGH_FXC); RefPtr<DownstreamCompiler> compiler(new SharedLibraryDownstreamCompiler(desc, sharedLibrary)); set->addCompiler(compiler); } return SLANG_OK; } static SlangResult _locateGlslangCompilers(const String& path, ISlangSharedLibraryLoader* loader, DownstreamCompilerSet* set) { ComPtr<ISlangSharedLibrary> sharedLibrary; if (SLANG_SUCCEEDED(DefaultSharedLibraryLoader::load(loader, path, "slang-glslang", sharedLibrary.writeRef()))) { // Can we determine the version? DownstreamCompiler::Desc desc(SLANG_PASS_THROUGH_GLSLANG); RefPtr<DownstreamCompiler> compiler(new SharedLibraryDownstreamCompiler(desc, sharedLibrary)); set->addCompiler(compiler); } return SLANG_OK; } /* static */void DownstreamCompilerUtil::setDefaultLocators(DownstreamCompilerLocatorFunc outFuncs[int(SLANG_PASS_THROUGH_COUNT_OF)]) { outFuncs[int(SLANG_PASS_THROUGH_VISUAL_STUDIO)] = &VisualStudioCompilerUtil::locateCompilers; outFuncs[int(SLANG_PASS_THROUGH_CLANG)] = &GCCDownstreamCompilerUtil::locateClangCompilers; outFuncs[int(SLANG_PASS_THROUGH_GCC)] = &GCCDownstreamCompilerUtil::locateGCCCompilers; outFuncs[int(SLANG_PASS_THROUGH_NVRTC)] = &NVRTCDownstreamCompilerUtil::locateCompilers; outFuncs[int(SLANG_PASS_THROUGH_DXC)] = &_locateDXCCompilers; outFuncs[int(SLANG_PASS_THROUGH_FXC)] = &_locateFXCCompilers; outFuncs[int(SLANG_PASS_THROUGH_GLSLANG)] = &_locateGlslangCompilers; } /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! DownstreamCompilerSet !!!!!!!!!!!!!!!!!!!!!!*/ void DownstreamCompilerSet::getCompilerDescs(List<DownstreamCompiler::Desc>& outCompilerDescs) const { outCompilerDescs.clear(); for (DownstreamCompiler* compiler : m_compilers) { outCompilerDescs.add(compiler->getDesc()); } } Index DownstreamCompilerSet::_findIndex(const DownstreamCompiler::Desc& desc) const { const Index count = m_compilers.getCount(); for (Index i = 0; i < count; ++i) { if (m_compilers[i]->getDesc() == desc) { return i; } } return -1; } DownstreamCompiler* DownstreamCompilerSet::getCompiler(const DownstreamCompiler::Desc& compilerDesc) const { const Index index = _findIndex(compilerDesc); return index >= 0 ? m_compilers[index] : nullptr; } void DownstreamCompilerSet::getCompilers(List<DownstreamCompiler*>& outCompilers) const { outCompilers.clear(); outCompilers.addRange((DownstreamCompiler*const*)m_compilers.begin(), m_compilers.getCount()); } bool DownstreamCompilerSet::hasCompiler(SlangPassThrough compilerType) const { for (DownstreamCompiler* compiler : m_compilers) { const auto& desc = compiler->getDesc(); if (desc.type == compilerType) { return true; } } return false; } void DownstreamCompilerSet::remove(SlangPassThrough compilerType) { for (Index i = 0; i < m_compilers.getCount(); ++i) { DownstreamCompiler* compiler = m_compilers[i]; if (compiler->getDesc().type == compilerType) { m_compilers.fastRemoveAt(i); i--; } } } void DownstreamCompilerSet::addCompiler(DownstreamCompiler* compiler) { const Index index = _findIndex(compiler->getDesc()); if (index >= 0) { m_compilers[index] = compiler; } else { m_compilers.add(compiler); } } }
967082031b67b4a5f98dd5aa423ffceac58d8b3d
11f00077ee1d71d8bf013ac81bdf1cf084e8bafd
/ACM/uva750.cpp
bb7d7439d50d92ed7c965fac94e7a71ac630eb69
[]
no_license
r96922081/Competitive-Programming
0882747edc63c7b834c2c88079cc5391925b6352
3fd191285405ccf57901222f7c26d5bf4ce56193
refs/heads/master
2020-12-04T11:14:45.032415
2020-09-05T08:53:32
2020-09-05T08:53:32
231,742,428
0
0
null
null
null
null
UTF-8
C++
false
false
1,699
cpp
uva750.cpp
#include <cstdio> #include <cstdlib> #include <cstring> #include <limits> #include <cstddef> #include <iostream> #include <string> #include <cstdlib> #include <cmath> #include <map> #include <vector> #include <algorithm> #include <set> #include <unordered_set> #include <tuple> #include <sstream> #include <cassert> #include <bitset> #include <stack> #include <queue> #include <functional> using namespace std; int row[8]; vector<vector<int>> solutions; bool check_position(int col, int row2) { for (int i = 0; i < col; i++) { if (row[i] == row2) return false; if (abs(row[i] - row2) == abs(i - col)) return false; } return true; } void find_8_queens(int col) { if (col == 8) { vector<int> solution; for (int i = 0; i < 8; i++) solution.push_back(row[i] + 1); solutions.push_back(solution); return; } for (int i = 0; i < 8; i++) { if (check_position(col, i)) { row[col] = i; find_8_queens(col + 1); } } } void algorithm() { printf("SOLN COLUMN\n"); printf(" # "); for (int i = 0; i < 8; i++) { if (i > 0) cout << " "; cout << i + 1; } cout << endl; cout << endl; find_8_queens(0); int test_count = 0; cin >> test_count; while (test_count--) { int row; int col; cin >> row >> col; int hit_count = 0; for (int i = 0; i < solutions.size(); i++) { vector<int>& solution = solutions[i]; if (solution[col - 1] == row) { hit_count++; printf("%2d ", hit_count); for (int j = 0; j < 8; j++) { if (j > 0) cout << " "; cout << solution[j]; } cout << endl; } } if (test_count != 0) cout << endl; } } int main() { algorithm(); return 0; }
64df7b2b432380d327c8a8818865b91b019c5e5c
15af3ec27916e0d26d6528f76981aeb8015c1864
/Hmwk/Assignment 2/Gaddis_8thED_ch12_12.3_Punchline/main.cpp
021ec8a2a4e5d5835d786e3b475fac6da3f526ab
[]
no_license
RyanARinger/2018_Fall_17a_RingerRyan
8dbb2a2dd82124ae65fdf59973028a88028c67ac
3e15be739ef5357eb5560d2536b78fb3151444a2
refs/heads/master
2020-03-28T07:12:59.911577
2019-07-09T18:43:44
2019-07-09T18:43:44
147,864,374
0
0
null
null
null
null
UTF-8
C++
false
false
1,282
cpp
main.cpp
/* * File: main.cpp * Author: Ryan Ringer * Created on October 10, 2018 at 2:12pm * Purpose: Hello World Template */ //System Libraries Here #include <iostream> #include <fstream> #include <string> using namespace std; //User Libraries Here //Global Constants Only, No Global Variables //Like PI, e, Gravity, or conversions //Function Prototypes Here void readjok(ifstream&); int count(ifstream&); void readpun(ifstream&); //Program Execution Begins Here int main(int argc, char** argv) { //Declare all Variables Here string file1, file2; int size =0; ifstream inFile1, inFile2; //Input or initialize values Here cout << "Enter The name of your joke file: "; //Process/Calculations Here //Output Located Here //Exit return 0; } void readjok(ifstream &inFile1){ char x; while(inFile1 >> noskipws >> x) cout << x; } int count(ifstream &inFile2){ char x; int count = 0; while(inFile2 >> x){ count++; } return count; } void readpun(ifstream &inFile2, int size){ char a[size]; int i=0; bool end = false; while(inFile2 >> noskipws >> a[i]){ if((int)a[i] == 46){ i = 0; } } for(int j=0; j<=i; j++){ cout << a[j]; } }
ef2f2dabf6be1f9a5ceb3b498eaf1452b371663b
d6ab38714f7a5f0dc6d7446ec20626f8f539406a
/backend/collecting/dsfj/C++/edited/gtk.combobox.cpp
1f2b4c8f6e065363ab0239dce0e6c44fba938e28
[]
no_license
haditabatabaei/webproject
8db7178affaca835b5d66daa7d47c28443b53c3d
86b3f253e894f4368a517711bbfbe257be0259fd
refs/heads/master
2020-04-10T09:26:25.819406
2018-12-08T12:21:52
2018-12-08T12:21:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,727
cpp
gtk.combobox.cpp
#include "wx/wxprec.h" #if wxUSE_COMBOBOX #include "wx/combobox.h" #ifndef WX_PRECOMP #include "wx/intl.h" #include "wx/settings.h" #include "wx/textctrl.h" #include "wx/arrstr.h" #endif #include <gtk/gtk.h> #include "wx/gtk/private.h" #include "wx/gtk/private/gtk2-compat.h" extern "C" { static void gtkcombobox_text_changed_callback( GtkWidget *WXUNUSED(widget), wxComboBox *combo ) { wxCommandEvent event( wxEVT_TEXT, combo->GetId() ); event.SetString( combo->GetValue() ); event.SetEventObject( combo ); combo->HandleWindowEvent( event ); } static void gtkcombobox_changed_callback( GtkWidget *WXUNUSED(widget), wxComboBox *combo ) { combo->SendSelectionChangedEvent(wxEVT_COMBOBOX); } static void gtkcombobox_popupshown_callback(GObject *WXUNUSED(gobject), GParamSpec *WXUNUSED(param_spec), wxComboBox *combo) { gboolean isShown; g_object_get( combo->m_widget, "popup-shown", &isShown, NULL ); wxCommandEvent event( isShown ? wxEVT_COMBOBOX_DROPDOWN : wxEVT_COMBOBOX_CLOSEUP, combo->GetId() ); event.SetEventObject( combo ); #ifndef __WXGTK3__ if ( !isShown ) { combo->GetEventHandler()->AddPendingEvent( event ); } else #endif { combo->HandleWindowEvent( event ); } } } wxBEGIN_EVENT_TABLE(wxComboBox, wxChoice) EVT_CHAR(wxComboBox::OnChar) EVT_MENU(wxID_CUT, wxComboBox::OnCut) EVT_MENU(wxID_COPY, wxComboBox::OnCopy) EVT_MENU(wxID_PASTE, wxComboBox::OnPaste) EVT_MENU(wxID_UNDO, wxComboBox::OnUndo) EVT_MENU(wxID_REDO, wxComboBox::OnRedo) EVT_MENU(wxID_CLEAR, wxComboBox::OnDelete) EVT_MENU(wxID_SELECTALL, wxComboBox::OnSelectAll) EVT_UPDATE_UI(wxID_CUT, wxComboBox::OnUpdateCut) EVT_UPDATE_UI(wxID_COPY, wxComboBox::OnUpdateCopy) EVT_UPDATE_UI(wxID_PASTE, wxComboBox::OnUpdatePaste) EVT_UPDATE_UI(wxID_UNDO, wxComboBox::OnUpdateUndo) EVT_UPDATE_UI(wxID_REDO, wxComboBox::OnUpdateRedo) EVT_UPDATE_UI(wxID_CLEAR, wxComboBox::OnUpdateDelete) EVT_UPDATE_UI(wxID_SELECTALL, wxComboBox::OnUpdateSelectAll) wxEND_EVENT_TABLE() wxComboBox::~wxComboBox() { if (m_entry) GTKDisconnect(m_entry); } void wxComboBox::Init() { m_entry = NULL; } bool wxComboBox::Create( wxWindow *parent, wxWindowID id, const wxString& value, const wxPoint& pos, const wxSize& size, const wxArrayString& choices, long style, const wxValidator& validator, const wxString& name ) { wxCArrayString chs(choices); return Create( parent, id, value, pos, size, chs.GetCount(), chs.GetStrings(), style, validator, name ); } bool wxComboBox::Create( wxWindow *parent, wxWindowID id, const wxString& value, const wxPoint& pos, const wxSize& size, int n, const wxString choices[], long style, const wxValidator& validator, const wxString& name ) { if (!PreCreation( parent, pos, size ) || !CreateBase( parent, id, pos, size, style, validator, name )) { wxFAIL_MSG( wxT("wxComboBox creation failed") ); return false; } if (HasFlag(wxCB_SORT)) m_strings = new wxGtkCollatedArrayString(); GTKCreateComboBoxWidget(); if (HasFlag(wxBORDER_NONE)) { } GtkEntry * const entry = GetEntry(); if ( entry ) { gtk_entry_set_activates_default( entry, !HasFlag(wxTE_PROCESS_ENTER) ); gtk_editable_set_editable(GTK_EDITABLE(entry), true); } Append(n, choices); m_parent->DoAddChild( this ); if ( entry ) m_focusWidget = GTK_WIDGET( entry ); PostCreation(size); if ( entry ) { if (style & wxCB_READONLY) { SetStringSelection(value); gtk_editable_set_editable(GTK_EDITABLE(entry), false); } else { gtk_entry_set_text( entry, wxGTK_CONV(value) ); } g_signal_connect_after (entry, "changed", G_CALLBACK (gtkcombobox_text_changed_callback), this); GTKConnectInsertTextSignal(entry); GTKConnectClipboardSignals(GTK_WIDGET(entry)); } g_signal_connect_after (m_widget, "changed", G_CALLBACK (gtkcombobox_changed_callback), this); #ifndef __WXGTK3__ if ( !gtk_check_version(2,10,0) ) #endif { g_signal_connect (m_widget, "notify::popup-shown", G_CALLBACK (gtkcombobox_popupshown_callback), this); } return true; } void wxComboBox::GTKCreateComboBoxWidget() { #ifdef __WXGTK3__ m_widget = gtk_combo_box_text_new_with_entry(); #else m_widget = gtk_combo_box_entry_new_text(); #endif g_object_ref(m_widget); m_entry = GTK_ENTRY(gtk_bin_get_child(GTK_BIN(m_widget))); } GtkEditable *wxComboBox::GetEditable() const { return GTK_EDITABLE(gtk_bin_get_child(GTK_BIN(m_widget))); } void wxComboBox::OnChar( wxKeyEvent &event ) { switch ( event.GetKeyCode() ) { case WXK_RETURN: if ( HasFlag(wxTE_PROCESS_ENTER) && GetEntry() ) { wxCommandEvent eventEnter(wxEVT_TEXT_ENTER, GetId()); eventEnter.SetString( GetValue() ); eventEnter.SetInt( GetSelection() ); eventEnter.SetEventObject( this ); if ( HandleWindowEvent(eventEnter) ) { return; } } break; } event.Skip(); } void wxComboBox::EnableTextChangedEvents(bool enable) { if ( !GetEntry() ) return; if ( enable ) { g_signal_handlers_unblock_by_func(gtk_bin_get_child(GTK_BIN(m_widget)), (gpointer)gtkcombobox_text_changed_callback, this); } else { g_signal_handlers_block_by_func(gtk_bin_get_child(GTK_BIN(m_widget)), (gpointer)gtkcombobox_text_changed_callback, this); } } void wxComboBox::GTKDisableEvents() { EnableTextChangedEvents(false); g_signal_handlers_block_by_func(m_widget, (gpointer)gtkcombobox_changed_callback, this); g_signal_handlers_block_by_func(m_widget, (gpointer)gtkcombobox_popupshown_callback, this); } void wxComboBox::GTKEnableEvents() { EnableTextChangedEvents(true); g_signal_handlers_unblock_by_func(m_widget, (gpointer)gtkcombobox_changed_callback, this); g_signal_handlers_unblock_by_func(m_widget, (gpointer)gtkcombobox_popupshown_callback, this); } GtkWidget* wxComboBox::GetConnectWidget() { return GTK_WIDGET( GetEntry() ); } GdkWindow* wxComboBox::GTKGetWindow(wxArrayGdkWindows& ) const { #ifdef __WXGTK3__ return GTKFindWindow(GTK_WIDGET(GetEntry())); #else return gtk_entry_get_text_window(GetEntry()); #endif } wxVisualAttributes wxComboBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) { #ifdef __WXGTK3__ return GetDefaultAttributesFromGTKWidget(gtk_combo_box_new_with_entry(), true); #else return GetDefaultAttributesFromGTKWidget(gtk_combo_box_entry_new(), true); #endif } void wxComboBox::Clear() { wxTextEntry::Clear(); wxItemContainer::Clear(); } void wxComboBox::SetValue(const wxString& value) { if ( HasFlag(wxCB_READONLY) ) SetStringSelection(value); else wxTextEntry::SetValue(value); } void wxComboBox::SetString(unsigned int n, const wxString& text) { wxChoice::SetString(n, text); if ( static_cast<int>(n) == GetSelection() ) { SetValue(text); SetSelection(n); } } void wxComboBox::OnCut(wxCommandEvent& WXUNUSED(event)) { Cut(); } void wxComboBox::OnCopy(wxCommandEvent& WXUNUSED(event)) { Copy(); } void wxComboBox::OnPaste(wxCommandEvent& WXUNUSED(event)) { Paste(); } void wxComboBox::OnUndo(wxCommandEvent& WXUNUSED(event)) { Undo(); } void wxComboBox::OnRedo(wxCommandEvent& WXUNUSED(event)) { Redo(); } void wxComboBox::OnDelete(wxCommandEvent& WXUNUSED(event)) { RemoveSelection(); } void wxComboBox::OnSelectAll(wxCommandEvent& WXUNUSED(event)) { SelectAll(); } void wxComboBox::OnUpdateCut(wxUpdateUIEvent& event) { event.Enable( CanCut() ); } void wxComboBox::OnUpdateCopy(wxUpdateUIEvent& event) { event.Enable( CanCopy() ); } void wxComboBox::OnUpdatePaste(wxUpdateUIEvent& event) { event.Enable( CanPaste() ); } void wxComboBox::OnUpdateUndo(wxUpdateUIEvent& event) { event.Enable( CanUndo() ); } void wxComboBox::OnUpdateRedo(wxUpdateUIEvent& event) { event.Enable( CanRedo() ); } void wxComboBox::OnUpdateDelete(wxUpdateUIEvent& event) { event.Enable(HasSelection() && IsEditable()) ; } void wxComboBox::OnUpdateSelectAll(wxUpdateUIEvent& event) { event.Enable(!wxTextEntry::IsEmpty()); } void wxComboBox::Popup() { gtk_combo_box_popup( GTK_COMBO_BOX(m_widget) ); } void wxComboBox::Dismiss() { gtk_combo_box_popdown( GTK_COMBO_BOX(m_widget) ); } wxSize wxComboBox::DoGetSizeFromTextSize(int xlen, int ylen) const { wxSize tsize( wxChoice::DoGetSizeFromTextSize(xlen, ylen) ); GtkEntry* entry = GetEntry(); if (entry) { tsize.IncBy(GTKGetEntryMargins(entry).x, 0); } return tsize; } #endif
ffaa800c57a807d2006c9b1ce325a54beb59a0f3
ffb570ab7d5074bb565c1380232b1be3b3f5e000
/Codeforces/Codeforces_667_1409D.cpp
cfcf23efa72d27e9ef677a946e1c4428d259ae03
[]
no_license
Orampreet/Hacktoberfest-1
0384c3f483bdd75753b2800ee165d39964d9c379
e24234bec49e2c36f9343941ebe02ebfbb6062bb
refs/heads/master
2023-08-25T12:56:12.360819
2020-10-30T21:15:00
2020-10-30T21:15:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,319
cpp
Codeforces_667_1409D.cpp
#include <bits/stdc++.h> using namespace std; typedef long long int ll; #define pb(b) push_back(b) #define mp(a, b) make_pair(a, b) #define FOR(i, a, b) for (ll i = a; i < b; i++) #define FORDual(i, a, b) for (ll i = a; i < b; i += 2) #define FORD(i, a, b) for (ll i = a; i >= b; i--) #define sorti(seq) sort(seq.begin(), seq.end()) #define sortd(seq) sort(seq.begin(), seq.end(), greater<int>()) const int MOD = 1e9 + 7; ll sumDigits(ll n) { ll sum = 0; while (n > 0) { sum += n % 10; n /= 10; } return sum; } int main() { #ifndef ONLINE_JUDGE // for getting input from input.txt freopen("input.txt", "r", stdin); // for writing output to output.txt freopen("output.txt", "w", stdout); #endif ll t, n, m, s, ans = 0, l, r, c, x, y, k, d, q, a, b; cin >> t; while (t--) { ans = 0; cin >> n >> s; ll curr = sumDigits(n); if (curr <= s) { cout << ans << "\n"; continue; } ll sum = 0; ll test = n, tries = 0; while (curr - sum >= s) { sum += test % 10; ++tries; test /= 10; } ++test; ll mulp = pow(10, tries); test *= mulp; cout << test - n << "\n"; } return 0; }
5eb83180e2fd79222eaeb463446d4299bbba6c2d
949be7ef808fd663ef4da640013db26e5aca748b
/html_chromium/ChromiumSystem.cpp
e8f90882b5b53d595bbd28f08baffe3be5bd9cc6
[ "MIT" ]
permissive
Facepunch/gmod-html
0000fa1f0c6e0390789a9812b24efde7660f1578
826aa23a1dccf151511ae9fd1c02c6d765a8b3a4
refs/heads/master
2023-08-09T13:40:11.810776
2020-03-05T18:07:27
2020-03-05T18:07:27
237,562,072
12
7
MIT
2021-11-17T04:56:13
2020-02-01T04:33:46
C++
UTF-8
C++
false
false
11,442
cpp
ChromiumSystem.cpp
#include "ChromiumSystem.h" #include "ChromiumClient.h" #include "ChromiumBrowser.h" #include "ResourceHandler.h" #include "HtmlResourceHandler.h" #include "JSObjects.h" #include "cef_start.h" #include "include/cef_app.h" #include "include/cef_origin_whitelist.h" #ifdef OSX #include "include/wrapper/cef_library_loader.h" #endif #include "cef_end.h" #include <time.h> #ifdef _WIN32 #define _SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING #include <experimental/filesystem> namespace fs = std::experimental::filesystem; #endif class ChromiumApp : public CefApp { public: // // CefApp implementation // void OnBeforeCommandLineProcessing( const CefString& process_type, CefRefPtr<CefCommandLine> command_line ) override { command_line->AppendSwitch( "disable-gpu" ); command_line->AppendSwitch( "disable-gpu-compositing" ); command_line->AppendSwitch( "disable-smooth-scrolling" ); #ifdef _WIN32 command_line->AppendSwitch( "enable-begin-frame-scheduling" ); #endif command_line->AppendSwitch( "enable-system-flash" ); // This can interfere with posix signals and break Breakpad #ifdef POSIX command_line->AppendSwitch( "disable-in-process-stack-traces" ); #endif #ifdef OSX command_line->AppendSwitch( "use-mock-keychain" ); #endif // https://bitbucket.org/chromiumembedded/cef/issues/2400 command_line->AppendSwitchWithValue( "disable-features", "TouchpadAndWheelScrollLatching,AsyncWheelEvents" ); // Auto-play media command_line->AppendSwitchWithValue( "autoplay-policy", "no-user-gesture-required" ); // Chromium 80 removed this but only sometimes. command_line->AppendSwitchWithValue( "enable-blink-features", "HTMLImports" ); // Disable site isolation until we implement passing registered Lua functions between processes command_line->AppendSwitch( "disable-site-isolation-trials" ); } void OnRegisterCustomSchemes( CefRawPtr<CefSchemeRegistrar> registrar ) override { // TODO: are these bools what we want them to be registrar->AddCustomScheme( "asset", CEF_SCHEME_OPTION_STANDARD | CEF_SCHEME_OPTION_CSP_BYPASSING ); } private: IMPLEMENT_REFCOUNTING( ChromiumApp ); }; typedef void* ( *CreateCefSandboxInfoFn )( ); typedef void ( *DestroyCefSandboxInfoFn )( void* ); // Needs cleaning up. There's too much Windows shit. bool ChromiumSystem::Init( const char* pBaseDir, IHtmlResourceHandler* pResourceHandler ) { g_pHtmlResourceHandler = pResourceHandler; #ifdef OSX static CefScopedLibraryLoader library_loader; if ( !library_loader.LoadInMain() ) { return false; } #endif #ifdef POSIX // GMOD: GO - Chromium will replace Breakpad's signal handlers if we don't do this early int argc = 2; char arg1[] = "binary"; char arg2[] = "--disable-in-process-stack-traces"; char* argv[3] = { arg1, arg2, nullptr }; CefMainArgs main_args( argc, argv ); #else CefMainArgs main_args; #endif CefSettings settings; std::string strBaseDir = pBaseDir; settings.remote_debugging_port = 0; settings.windowless_rendering_enabled = true; #if defined( _WIN32 ) && !defined( NDEBUG ) settings.no_sandbox = true; #else settings.no_sandbox = false; #endif settings.command_line_args_disabled = true; settings.log_severity = LOGSEVERITY_VERBOSE; #ifdef _WIN32 // Chromium will be sad if we don't resolve any NTFS junctions for it // Is this really the only way Windows will let me do that? auto hFile = CreateFile( strBaseDir.c_str(), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL ); bool useTempDir = false; if ( hFile != INVALID_HANDLE_VALUE ) { char pathBuf[MAX_PATH] = { 0 }; if ( GetFinalPathNameByHandle( hFile, pathBuf, sizeof( pathBuf ), VOLUME_NAME_DOS ) ) { // If it's a network drive, we can't use it if ( strstr( pathBuf, "\\\\?\\UNC" ) == pathBuf ) { useTempDir = true; } else { strBaseDir.assign( pathBuf + 4 ); // Skipping "\\?\"... } } CloseHandle( hFile ); } std::string chromiumDir = strBaseDir + "/bin/chromium"; // We've got to copy our CEF resources to a temporary directory and use that instead if ( useTempDir ) { pResourceHandler->Message( "Copying Chromium resources to temporary directory...\n" ); // We have no exceptions, so here is our lovely error handling variable. std::error_code error; auto tmpPath = fs::temp_directory_path( error ); if ( error ) return false; auto targetPath = tmpPath / "gmod-resources"; fs::create_directories( targetPath, error ); if ( error ) return false; fs::copy( fs::path( strBaseDir ) / "bin/chromium", targetPath, fs::copy_options::recursive | fs::copy_options::overwrite_existing ); if ( error ) return false; chromiumDir = targetPath.string(); } CefString( &settings.user_agent ).FromString( "Mozilla/5.0 (Windows NT; Valve Source Client) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36 GMod/13" ); // GMOD: GO - We use the same resources with 32-bit and 64-bit builds, so always use the 32-bit bin path for them CefString( &settings.resources_dir_path ).FromString( chromiumDir ); CefString( &settings.locales_dir_path ).FromString( chromiumDir + "/locales" ); settings.multi_threaded_message_loop = true; #elif LINUX CefString( &settings.user_agent ).FromString( "Mozilla/5.0 (Linux; Valve Source Client) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36 GMod/13" ); #if defined(__x86_64__) || defined(_WIN64) CefString( &settings.browser_subprocess_path ).FromString( strBaseDir + "/bin/linux64/chromium_process" ); #else CefString( &settings.browser_subprocess_path ).FromString( strBaseDir + "/bin/linux32/chromium_process" ); #endif // GMOD: GO - We use the same resources with 32-bit and 64-bit builds, so always use the 32-bit bin path for them CefString( &settings.resources_dir_path ).FromString( strBaseDir + "/bin/linux32/chromium" ); CefString( &settings.locales_dir_path ).FromString( strBaseDir + "/bin/linux32/chromium/locales" ); settings.multi_threaded_message_loop = true; #elif OSX CefString( &settings.user_agent ).FromString( "Mozilla/5.0 (Macintosh; Intel Mac OS X; Valve Source Client) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36 GMod/13" ); #else #error #endif CefString( &settings.log_file ).FromString( strBaseDir + "/chromium.log" ); // Grab our Sandbox info from the game exe #if defined( _WIN32 ) && defined( NDEBUG ) HMODULE pModule; if ( !GetModuleHandleEx( GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT, nullptr, &pModule ) ) { return false; } auto CreateCefSandboxInfo = (CreateCefSandboxInfoFn) GetProcAddress( pModule, "CreateCefSandboxInfo" ); auto DestroyCefSandboxInfo = (DestroyCefSandboxInfoFn) GetProcAddress( pModule, "DestroyCefSandboxInfo" ); if ( CreateCefSandboxInfo == nullptr || DestroyCefSandboxInfo == nullptr ) { return false; } void* sandbox_info = CreateCefSandboxInfo(); if ( sandbox_info == nullptr ) { return false; } #else void* sandbox_info = nullptr; #endif if ( !CefInitialize( main_args, settings, new ChromiumApp, sandbox_info ) ) { return false; } #if defined( _WIN32 ) && defined( NDEBUG ) DestroyCefSandboxInfo( sandbox_info ); #endif { CefRefPtr<ResourceHandlerFactory> factory = new ResourceHandlerFactory; CefRegisterSchemeHandlerFactory( "asset", "garrysmod", factory ); CefAddCrossOriginWhitelistEntry( "asset://garrysmod", "http", "", true ); CefAddCrossOriginWhitelistEntry( "asset://garrysmod", "https", "", true ); CefAddCrossOriginWhitelistEntry( "asset://garrysmod", "asset", "", true ); CefRegisterSchemeHandlerFactory( "asset", "mapimage", factory ); CefAddCrossOriginWhitelistEntry( "asset://mapimage", "http", "", true ); CefAddCrossOriginWhitelistEntry( "asset://mapimage", "https", "", true ); CefAddCrossOriginWhitelistEntry( "asset://mapimage", "asset", "", true ); } { CefRefPtr<HtmlResourceHandlerFactory> factory = new HtmlResourceHandlerFactory; CefRegisterSchemeHandlerFactory( "asset", "html", factory ); CefAddCrossOriginWhitelistEntry( "asset://html", "http", "", true ); CefAddCrossOriginWhitelistEntry( "asset://html", "https", "", true ); CefAddCrossOriginWhitelistEntry( "asset://html", "asset", "", true ); } #ifdef OSX CefDoMessageLoopWork(); #endif return true; } void ChromiumSystem::Shutdown() { CefShutdown(); } IHtmlClient* ChromiumSystem::CreateClient( IHtmlClientListener* listener ) { CefWindowInfo windowInfo; windowInfo.SetAsWindowless( 0 ); CefBrowserSettings browserSettings; CefString( &browserSettings.default_encoding ).FromString( "UTF-8" ); browserSettings.windowless_frame_rate = 60; browserSettings.javascript_access_clipboard = STATE_DISABLED; browserSettings.javascript_close_windows = STATE_DISABLED; browserSettings.universal_access_from_file_urls = STATE_DISABLED; browserSettings.file_access_from_file_urls = STATE_DISABLED; browserSettings.webgl = STATE_DISABLED; CefRefPtr<ChromiumBrowser> cefClient( new ChromiumBrowser ); // Queue the browser creation. It's async, but ChromiumBrowser will handle it all. CefBrowserHost::CreateBrowser( windowInfo, cefClient, "", browserSettings, nullptr, nullptr ); return new ChromiumClient( cefClient, listener ); } void ChromiumSystem::Update() { // Run any asset:// requests that are pending m_RequestsLock.Acquire(); { for ( auto& request : m_Requests ) { request->Handle(); } m_Requests = std::vector<CefRefPtr<ResourceHandler>>(); } m_RequestsLock.Release(); // macOS will want me #ifdef OSX CefDoMessageLoopWork(); #endif // This is where messages from the browser UI thread come to the main thread for ( auto client : m_ActiveClients ) { client->Update(); } } void ChromiumSystem::OnClientOpen( ChromiumClient* client ) { m_ActiveClients.emplace_back( client ); } void ChromiumSystem::OnClientClose( ChromiumClient* client ) { m_ActiveClients.erase( std::remove( m_ActiveClients.begin(), m_ActiveClients.end(), client ), m_ActiveClients.end() ); } void ChromiumSystem::QueueRequest( CefRefPtr<ResourceHandler> resourceHandler ) { m_RequestsLock.Acquire(); m_Requests.emplace_back( resourceHandler ); m_RequestsLock.Release(); } JSValue ChromiumSystem::CreateArray( JSValue* pValues, size_t size ) { std::vector<JSValue> container( size ); for ( size_t i = 0; i < size; i++ ) { container[i] = std::move( pValues[i] ); } return JSArray::Create( std::move( container ) ); } JSValue ChromiumSystem::CreateString( const char* pValue, size_t size ) { return JSString::Create( std::string( pValue, size ) ); } JSValue ChromiumSystem::CreateHashMap( const char** pKeys, const size_t* pKeySizes, JSValue* pValues, size_t size ) { std::unordered_map<std::string, JSValue> container; container.reserve( size ); // Last value takes precedence if there are any duplicate keys for ( size_t i = 0; i < size; i++ ) { container[pKeys[i]] = std::move( pValues[i] ); } return JSHashMap::Create( std::move( container ) ); } ChromiumSystem g_ChromiumSystem; HTMLSYSTEM_EXPORT( g_ChromiumSystem );
4fd471a0d6d1a63ae1f6df122129a8ac4d55edc5
1a770ec259983a07e7c66ce8062a63a571aa80ac
/Examples/MFC/Demos/8.Threads/MyThread.cpp
79d48134cffd58e74fff86883678099da2153416
[ "Apache-2.0" ]
permissive
vanehu/ifc
db41fa8b03006880fee0dea5c8d23a59721ee2a0
ec5f356f124c6d5f01f15c8500d0ff53e2aa0486
refs/heads/master
2021-01-20T20:27:47.196029
2013-04-07T03:46:34
2013-04-07T03:46:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
647
cpp
MyThread.cpp
#include "StdAfx.h" #include "MyThread.h" /////////////////////////////////////////////////////////////////////////////// CMyThread::CMyThread(HWND hWnd) : m_hWnd(hWnd) { SetFreeOnTerminate(true); } CMyThread::~CMyThread() { PostMessage(m_hWnd, WM_THREAD_DELETED, 0, 0); } void CMyThread::Execute() { int nCount = 0; while (!GetTerminated()) { PostMessage(m_hWnd, WM_THREAD_WORKING, nCount++, 0); SleepThread(1); } } void CMyThread::BeforeTerminate() { PostMessage(m_hWnd, WM_THREAD_BEFORE_TERM, 0, 0); } void CMyThread::BeforeKill() { PostMessage(m_hWnd, WM_THREAD_BEFORE_KILL, 0, 0); }
04af453d835eed1baa0f7786e2eeacf488ba2a41
14986c835f5c80c1c96699ac9b97bfd836c3474a
/SocialNetwork/Comment.h
446b2be8768e511a1f299318edb2f5e35a29b6d1
[]
no_license
dpeserovic/SocialNetwork
93937692713c8bdeb78cddcd19bff9e7885464c8
2d6019bc58e112a47d68b32612901fba8a26f511
refs/heads/main
2023-02-10T04:37:36.056914
2021-01-04T07:17:04
2021-01-04T07:17:04
303,008,260
0
0
null
null
null
null
UTF-8
C++
false
false
245
h
Comment.h
#pragma once #include <iostream> #include <string> using namespace std; class Comment { public: string m_sText; string m_sName; string m_sSurname; int m_nPostId; Comment(string text, string name, string surname, int postId); ~Comment(); };
1fef813ba0f37898ea830ca22c6d4ad931ff057f
72852e07bb30adbee608275d6048b2121a5b9d82
/algorithms/problem_0161/other4.cpp
5c5415d409d0f1c054b643a8a8aa59941b836c10
[]
no_license
drlongle/leetcode
e172ae29ea63911ccc3afb815f6dbff041609939
8e61ddf06fb3a4fb4a4e3d8466f3367ee1f27e13
refs/heads/master
2023-01-08T16:26:12.370098
2023-01-03T09:08:24
2023-01-03T09:08:24
81,335,609
0
0
null
null
null
null
UTF-8
C++
false
false
547
cpp
other4.cpp
class Solution { public: bool isOneEditDistance(string s, string t) { int NS = s.size(); int NT = t.size(); if (NS > NT) return isOneEditDistance(t, s); if (NT - NS > 1) return false; for (int i = 0; i < NS; i++) { if (s[i] != t[i]) { if (NS == NT) return s.substr(i+1) == t.substr(i+1); else return s.substr(i) == t.substr(i+1); } } return (NS + 1 == NT); } };
7a68a263d52d3e0f6725eb769ecd08f11c6d9d33
6426d8b62840adb132688835499cc9c0ace006a6
/DataCollector4Tran2ndSHOPT/QuotationSource/MDataProc.h
dd8c4d855f855b979ddff202d12213229cc623af
[]
no_license
3BodyProblem/DataCollector4Tran2ndSHOPT
e69e8b547d3c57b04c7c9338b7bf71c65a5e9d6b
0ec10045fba4fbf76fdc0d644c8fa47f6b6a0bf9
refs/heads/master
2021-01-22T20:18:44.816251
2017-10-23T10:37:21
2017-10-23T10:37:21
100,704,699
3
1
null
null
null
null
GB18030
C++
false
false
1,555
h
MDataProc.h
#ifndef __TRANSRVPLAT_MDATAPROC_H__ #define __TRANSRVPLAT_MDATAPROC_H__ #include <stdio.h> #include <string> #include "../Infrastructure/Dll.h" typedef unsigned long __stdcall tagSpProcFrame_GetDllVersion(void); typedef int __stdcall tagSpProcFrame_Instance(void); typedef void __stdcall tagSpProcFrame_Release(void); typedef int __stdcall tagSpProcFrame_CompressFrame(const char * lpInBuf,unsigned char cMainType,unsigned char cChildType,unsigned short sInSize,char * lpOutBuf,unsigned short sOutSize); typedef int __stdcall tagSpProcFrame_ExpandFrame(const char * lpInBuf,unsigned char cMainType,unsigned char cChildType,unsigned short sInSize,char * lpOutBuf,unsigned short sOutSize); class MDataProc { protected: Dll m_DllHandle; tagSpProcFrame_GetDllVersion * m_funGetDllVersion; tagSpProcFrame_Instance * m_funInstance; tagSpProcFrame_Release * m_funRelease; tagSpProcFrame_CompressFrame * m_funCompressFrame; tagSpProcFrame_ExpandFrame * m_funExpandFrame; public: MDataProc(); ~MDataProc(); public: int Instance(); void Release(); tagSpProcFrame_GetDllVersion * DGetVerSion(); tagSpProcFrame_Instance * DInstance(); tagSpProcFrame_Release * DRelease(); tagSpProcFrame_CompressFrame * DCompressFrame(); tagSpProcFrame_ExpandFrame * DExpandFrame(); }; #endif//__TRANSRVPLAT_MDATAPROC_H__ ////////////////////////This Code AUTO Mount Point By Append//////////// ////////////////////////LINUX newline 请在该注释上面加CODE///////////////////
02c331533b671730da83c008ac722a19bf76c7fb
7b8ee38c6bfa1acea65cf80751411a98cac77361
/GameEngine/GameEngine.cpp
87ef8f264d65f102a349d7b66fdeec6834a2454c
[]
no_license
RushSecond/Bit-Arena
96328bad974204eb3f88d416014ce0713ffc9713
4134cd9687cc46778081354b73c4b2a4a899f6a9
refs/heads/master
2020-05-18T04:03:12.140423
2015-03-14T00:19:36
2015-03-14T00:19:36
32,187,757
0
0
null
null
null
null
UTF-8
C++
false
false
11,794
cpp
GameEngine.cpp
// GameEngine.cpp // From http://web.archive.org/web/20140213145557/http://rastertek.com/tutdx11.html // Edited by Blake Zoeckler #include "stdafx.h" #define _USE_MATH_DEFINES #include "GameEngine.h" #include "D2D1.h" #include "DWrite.h" #include <string> #include <sstream> #include <cmath> using namespace std; GameEngine::GameEngine() { m_input = 0; m_graphics = 0; m_Fps = 0; m_Cpu = 0; m_Timer = 0; // EDIT: intialize entity manager and player pointers m_EntityManager = 0; } GameEngine::~GameEngine() {} bool GameEngine::Initialize() { int screenWidth, screenHeight; bool result; // Initialize the width and height of the screen to zero before sending the variables into the function. screenWidth = 0; screenHeight = 0; // Initialize the windows api. InitInstance(screenWidth, screenHeight); // Create the input object. This object will be used to handle reading the keyboard and mouse input from the user. m_input = new InputManager; if(!m_input) { return false; } // Initialize the input object. result = m_input->Initialize(m_hinst, m_hwnd, screenWidth, screenHeight); if(!result) { MessageBox(m_hwnd, L"Could not initialize the input object.", L"Error", MB_OK); return false; } // Create the graphics object. This object will be used to render output to the screen. m_graphics = new Graphics; if(!m_graphics) { return false; } // Initialize the graphics object. result = m_graphics->Initialize(screenWidth, screenHeight, m_hwnd); if (!result) { return false; } // ------ EDITS by Blake Zoeckler ---------- // Get the entity manager from graphics m_EntityManager = m_graphics->GetEntityManager(); // Add intial entities result = InitEntities(); if (!result) return false; // ----------------------------------------- // Create the fps object. m_Fps = new FpsClass; if(!m_Fps) { return false; } // Initialize the fps object. m_Fps->Initialize(); // Create the cpu object. m_Cpu = new CpuClass; if(!m_Cpu) { return false; } // Initialize the cpu object. m_Cpu->Initialize(); // Create the timer object. m_Timer = new TimerClass; if(!m_Timer) { return false; } // Initialize the timer object. result = m_Timer->Initialize(); if(!result) { MessageBox(m_hwnd, L"Could not initialize the Timer object.", L"Error", MB_OK); return false; } return true; } // EDIT - new method that initializes entities for gameplay bool GameEngine::InitEntities() { bool result = true; Playerbot* player = 0; // Add entities. 0,0 is the center of the screen result &= m_EntityManager->AddEntity("default", ENTITYTYPE_PLAYER, 0, 0, 1.0f, ZeroVector, 0, true, (Entity**)&player); result &= m_EntityManager->AddEntity("arena", ENTITYTYPE_EVIRONMENT, 0, 0, 2.0f, ZeroVector, 0, true, NULL); result &= m_EntityManager->AddEntity("background", ENTITYTYPE_EVIRONMENT, 0, 0, 4.0f, ZeroVector, 0, true, NULL); if (!result) return false; // Add weapons to player result &= m_EntityManager->AddWeapon("playerBulletWeapon", "bullet", ENTITYTYPE_PLAYERBULLET, 1.0f, WEAPONTYPE_BULLET, 0.2f, 800.0f, 5.0f, 1, 0.0f); result &= m_EntityManager->AddWeapon("playerBeamWeapon", "flashy_beam", ENTITYTYPE_PLAYERBEAM, 2.0f, WEAPONTYPE_BEAM, 1.0f, 0.0f, 0.2f, 3, M_PI_4/4.0f); result &= m_EntityManager->AddWeapon("enemyBulletWeapon", "bullet", ENTITYTYPE_ENEMYBULLET, 1.0f, WEAPONTYPE_BULLET, 1.0f, 600.0f, 10.0f, 1, 0.0f); result &= m_EntityManager->AddWeaponToPlayer("playerBulletWeapon"); result &= m_EntityManager->AddWeaponToBot(player, "playerBulletWeapon"); result &= m_EntityManager->AddWeaponToBot(player, "playerBeamWeapon"); return result; } void GameEngine::Shutdown() { // Release the timer object. if(m_Timer) { delete m_Timer; m_Timer = 0; } // Release the cpu object. if(m_Cpu) { m_Cpu->Shutdown(); delete m_Cpu; m_Cpu = 0; } // Release the fps object. if(m_Fps) { delete m_Fps; m_Fps = 0; } // Release the graphics object. if(m_graphics) { m_graphics->Shutdown(); delete m_graphics; m_graphics = 0; } // Release the input object. if(m_input) { m_input->Shutdown(); delete m_input; m_input = 0; } // Shutdown the window. ShutdownInstance(); return; } void GameEngine::Run() { MSG msg; bool done, result; // Initialize the message structure. ZeroMemory(&msg, sizeof(MSG)); // Loop until there is a quit message from the window or the user. done = false; while(!done) { // Handle the windows messages. if(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) { TranslateMessage(&msg); DispatchMessageW(&msg); } // If windows signals to end the application then exit out. if(msg.message == WM_QUIT) { done = true; } else { // Otherwise do the frame processing. result = Frame(); if(!result) { done = true; } } } return; } // Game Logic goes in this method bool GameEngine::Frame() { bool result; // Update the system stats. m_Timer->Frame(); m_Fps->Frame(); m_Cpu->Frame(); // Calculate frame time float frameTime = m_Timer->GetTime() / 1000.0f; // Do input handling result = HandleInput(frameTime); if(!result) return false; // Do the frame processing for the entities. result = m_EntityManager->Frame(frameTime); if(!result) { return false; } // Do the frame processing for the graphics object. result = m_graphics->Frame(m_Fps->GetFps(), m_Cpu->GetCpuPercentage(), frameTime); if(!result) { return false; } return true; } bool GameEngine::HandleInput(float dtime) { bool result; int mouseX, mouseY; Playerbot* player = m_EntityManager->GetPlayer(); // Do the input frame processing. result = m_input->Frame(); if(!result) { return false; } // Check if the user pressed escape and wants to exit the application. if(m_input->IsKeyDown(DIK_ESCAPE)) { return false; } // Get the location of the mouse from the input object, m_input->GetMouseLocation(mouseX, mouseY); // Change location of cursor m_graphics->SetCursorPosition((float)mouseX, (float)mouseY); m_graphics->SetCameraShift((float)mouseX/3.0f, (float)mouseY/3.0f); float speed = PLAYER_SPEED; float xForce = 0.0f; float yForce = 0.0f; // Check if the user pressed arrow keys to move camera and player if(m_input->IsKeyDown(DIK_A)) { xForce -= speed; } if(m_input->IsKeyDown(DIK_D)) { xForce += speed; } if(m_input->IsKeyDown(DIK_W)) { yForce += speed; } if(m_input->IsKeyDown(DIK_S)) { yForce -= speed; } player->SetForce(xForce, yForce); // Camera follows the player float playerX, playerY; player->GetPosition(playerX, playerY); m_graphics->SetCameraPosition(playerX, playerY); // If left mouse is pressed, fire player's weapon if(m_input->MouseLeftPressed()) { WeaponFireInfo info; if (player->CanFire()) { // Determine bullet direction float cursorX, cursorY; m_graphics->GetCursorPosition(cursorX, cursorY); D3DXVECTOR2 direction = D3DXVECTOR2(cursorX - playerX, cursorY - playerY); // Fire to get bullets info = player->FireWeapon(direction); // Add the bullets to entity manager for (int i = 0; i < info.entitiesNum; i++) m_EntityManager->AddEntity((Entity*)*(info.entitiesOut + i)); D3DXVECTOR2 playerPos(playerX, playerY); // Check collision of the rays for (int i = 0; i < info.raysNum; i++) { m_EntityManager->RayDamage(playerPos, *(info.raysOut + i), ENTITYTYPE_ENEMY, 3); } } } // Right click swaps player weapons if(m_input->MouseRightClick()) { player->ChangeWeapon(); } // Pressing left shift spawns an enemy if(m_input->IsKeyJustPressed(DIK_LSHIFT)) { float cursorX, cursorY; Cyberbot* newEnemy; m_graphics->GetCursorPosition(cursorX, cursorY); m_EntityManager->AddEntity("enemy", ENTITYTYPE_ENEMY, cursorX, cursorY, 1.0f, ZeroVector, 0, true, (Entity**)&newEnemy); m_EntityManager->AddWeaponToBot(newEnemy, "enemyBulletWeapon"); } return true; } LRESULT CALLBACK GameEngine::MessageHandler(HWND hwnd, UINT umsg, WPARAM wparam, LPARAM lparam) { return DefWindowProc(hwnd, umsg, wparam, lparam); } // // FUNCTION: MyRegisterClass() // // PURPOSE: Registers the window class. // void GameEngine::InitInstance(int& screenWidth, int& screenHeight) { WNDCLASSEX wc; DEVMODE dmScreenSettings; int posX, posY; // Get an external pointer to this object. g_engine = this; // Get the instance of this application. m_hinst = GetModuleHandle(NULL); // Give the application a name. m_applicationName = L"Engine"; wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; wc.lpfnWndProc = WndProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = m_hinst; wc.hIcon = LoadIcon(NULL, IDI_WINLOGO); wc.hIconSm = wc.hIcon; wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH); wc.lpszMenuName = NULL; wc.lpszClassName = m_applicationName; wc.cbSize = sizeof(WNDCLASSEX); RegisterClassEx(&wc); // Determine the resolution of the clients desktop screen. screenWidth = GetSystemMetrics(SM_CXSCREEN); screenHeight = GetSystemMetrics(SM_CYSCREEN); // Setup the screen settings depending on whether it is running in full screen or in windowed mode. if(FULL_SCREEN) { // If full screen set the screen to maximum size of the users desktop and 32bit. memset(&dmScreenSettings, 0, sizeof(dmScreenSettings)); dmScreenSettings.dmSize = sizeof(dmScreenSettings); dmScreenSettings.dmPelsWidth = (unsigned long)screenWidth; dmScreenSettings.dmPelsHeight = (unsigned long)screenHeight; dmScreenSettings.dmBitsPerPel = 32; dmScreenSettings.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT; // Change the display settings to full screen. ChangeDisplaySettings(&dmScreenSettings, CDS_FULLSCREEN); // Set the position of the window to the top left corner. posX = posY = 0; } else { // If windowed then set it to 800x600 resolution. screenWidth = 800; screenHeight = 600; // Place the window in the middle of the screen. posX = (GetSystemMetrics(SM_CXSCREEN) - screenWidth) / 2; posY = (GetSystemMetrics(SM_CYSCREEN) - screenHeight) / 2; } // Create the window with the screen settings and get the handle to it. m_hwnd = CreateWindowExW(WS_EX_APPWINDOW, m_applicationName, m_applicationName, WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_POPUP, posX, posY, screenWidth, screenHeight, NULL, NULL, m_hinst, NULL); // Bring the window up on the screen and set it as main focus. ShowWindow(m_hwnd, SW_SHOW); SetForegroundWindow(m_hwnd); SetFocus(m_hwnd); // Hide the mouse cursor. ShowCursor(false); return; } void GameEngine::ShutdownInstance() { // Show the mouse cursor. ShowCursor(true); // Fix the display settings if leaving full screen mode. if(FULL_SCREEN) { ChangeDisplaySettings(NULL, 0); } // Remove the window. DestroyWindow(m_hwnd); m_hwnd = NULL; // Remove the application instance. UnregisterClass(m_applicationName, m_hinst); m_hinst = NULL; // Release the pointer to this class. g_engine = NULL; return; } // // FUNCTION: WndProc(HWND, UINT, WPARAM, LPARAM) // // PURPOSE: Processes messages for the main window. // // WM_COMMAND - process the application menu // WM_PAINT - Paint the main window // WM_DESTROY - post a quit message and return // LRESULT CALLBACK WndProc(HWND hwnd, UINT umessage, WPARAM wParam, LPARAM lParam) { switch(umessage) { // Check if the window is being destroyed. case WM_DESTROY: { PostQuitMessage(0); return 0; } // Check if the window is being closed. case WM_CLOSE: { PostQuitMessage(0); return 0; } // All other messages pass to the message handler in the system class. default: { return g_engine->MessageHandler(hwnd, umessage, wParam, lParam); } } }
f81959a68cfe861b58060e8221e5320ba8838fca
f5bb79cfdc04ac66133cfb9eb489609adc18fcd0
/src/neat/iznn/neuron.hpp
943fd9d75e0341bd426d4c74ae19ed8b36140d8c
[]
no_license
baites/neathep
daf55d221463360f244558fe7f8648eb2d3528d1
5455f62b23d2e299015c912fe29bec37071df882
refs/heads/master
2021-01-23T13:47:55.091403
2012-08-13T18:53:13
2012-08-13T18:53:13
4,820,929
0
1
null
null
null
null
UTF-8
C++
false
false
4,211
hpp
neuron.hpp
#ifndef NEURON_HPP #define NEURON_HPP struct NeuronObject { PyObject_HEAD double a; double b; double c; double d; long double v; long double u; bool has_fired; double bias; double current; }; namespace { const double BIAS = 0; const double A = 0.02; const double B = 0.2; const double C = -65; const double D = 8; int Neuron_init(NeuronObject *self, PyObject *args, PyObject *kwds) { self->bias = BIAS; self->a = A; self->b = B; self->c = C; self->d = D; static char *kwlist[] = {"bias", "a", "b", "c", "d", 0}; if (!PyArg_ParseTupleAndKeywords(args, kwds, "|ddddd", kwlist, &self->bias, &self->a, &self->b, &self->c, &self->d)) { return -1; } self->v = self->c; self->u = self->b * self->v; self->has_fired = false; self->current = self->bias; return 0; } PyObject* Neuron_get_potential(NeuronObject *self, void *closure) { return Py_BuildValue("d", double(self->v)); } PyObject* Neuron_get_has_fired(NeuronObject* self, void* closure) { if (self->has_fired) { Py_INCREF(Py_True); return Py_True; } else { Py_INCREF (Py_False); return Py_False; } } PyObject* Neuron_get_current(NeuronObject* self, void* closure) { return Py_BuildValue("d", self->current); } int Neuron_set_current(NeuronObject *self, PyObject *value, void *closure) { self->current = PyFloat_AsDouble(value); if (PyErr_Occurred()) { return -1; } return 0; } PyGetSetDef Neuron_getsetters[] = { {"potential", reinterpret_cast<getter>(Neuron_get_potential), 0, "Membrane potential", 0}, {"has_fired", reinterpret_cast<getter>(Neuron_get_has_fired), 0, "Indicates whether the neuron has fired", 0}, {"current", reinterpret_cast<getter>(Neuron_get_current), reinterpret_cast<setter>(Neuron_set_current), "current", 0}, {0} }; PyObject* Neuron_advance(NeuronObject* self) { self->v += 0.5 * (0.04 * self->v * self->v + 5 * self->v + 140 - self->u + self->current); self->v += 0.5 * (0.04 * self->v * self->v + 5 * self->v + 140 - self->u + self->current); self->u += self->a * (self->b * self->v - self->u); if (self->v > 30) { self->has_fired = true; self->v = self->c; self->u += self->d; } else { self->has_fired = false; } self->current = self->bias; return Py_BuildValue(""); } PyObject* Neuron_reset(NeuronObject* self) { self->v = self->c; self->u = self->b * self->v; self->has_fired = false; self->current = self->bias; return Py_BuildValue(""); } PyMethodDef Neuron_methods[] = { {"advance", reinterpret_cast<PyCFunction>(Neuron_advance), METH_NOARGS, "Advances time in 1 ms."}, {"reset", reinterpret_cast<PyCFunction>(Neuron_reset), METH_NOARGS, "Resets all state variables."}, {0} }; PyTypeObject NeuronType = { PyObject_HEAD_INIT(0) 0, /* ob_size */ "iznn.Neuron", /* tp_name */ sizeof(NeuronObject), /* tp_basicsize */ 0, /* tp_itemsize */ 0, /* tp_dealloc */ 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ 0, /* tp_compare */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ 0, /* tp_hash */ 0, /* tp_call */ 0, /* tp_str */ 0, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ Py_TPFLAGS_DEFAULT, /* tp_flags */ "A spiking neuron model based on:\n\n" "Izhikevich, E. M.\n" "Simple Model of Spiking Neurons\n" "IEEE TRANSACTIONS ON NEURAL NETWORKS, VOL. 14, NO. 6, NOVEMBER 2003", 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ 0, /* tp_iter */ 0, /* tp_iternext */ Neuron_methods, /* tp_methods */ 0, /* tp_members */ Neuron_getsetters, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ reinterpret_cast<initproc>(Neuron_init), /* tp_init */ }; } #endif
dbed95ab88ea9d56004435e2c8b86ee4a310ed68
1ef80edd3e23c2dbdaf0e88b9b2c4b912270080e
/OpenGL_Study/PhysicsCubes.cpp
c514652eb911b6ba0d3b2077d76b47140c7bdec6
[]
no_license
Smoreley/opengl-study
d3971c4beaa3efdad0f204d7e699082441a83f63
77891430afefe9b470a59cc31e6c690a38fe07ae
refs/heads/master
2021-06-19T14:20:56.722153
2017-07-19T17:09:16
2017-07-19T17:09:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,673
cpp
PhysicsCubes.cpp
#include "Progbase.h" #include "PhysicsCubes.h" #include "Helper.h" #include "Camera.h" #include "BulletDebugRender.h" /* Bullet Physics Library */ #include <btBulletDynamicsCommon.h> int PhysicsCubes::start() { std::cout << "Physics Cubes Demo" << std::endl; /* OpenGL */ rendering_program = Helper::compileShaders("camera.vert", "depthvisualization.frag"); /* Uniforms */ m_modelViewLocation = glGetUniformLocation(rendering_program, "u_mv_matrix"); m_projectionLocation = glGetUniformLocation(rendering_program, "u_proj_matrix"); m_viewLocation = glGetUniformLocation(rendering_program, "u_view_matrix"); /* Vertex Arrays */ glGenVertexArrays(1, &m_vao); glBindVertexArray(m_vao); /* Cube Vertex */ glGenBuffers(1, &m_vbo); glBindBuffer(GL_ARRAY_BUFFER, m_vbo); glBufferData(GL_ARRAY_BUFFER, sizeof(Helper::cube_vp), Helper::cube_vp, GL_STATIC_DRAW); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 0, NULL); glEnableVertexAttribArray(0); // Camera setup m_camera = new Camera(); m_camera->SetPosition(glm::vec3(0, 2, 2)); m_camera->SetUpVector(glm::vec3(0.0f, 1.0f, 0.0f)); m_camera->SetLookAtTarget(glm::vec3(0.0)); m_camera->SetFarClipPlane(500.0f); /* Physics */ broadphase = new btDbvtBroadphase(); collisionConfiguration = new btDefaultCollisionConfiguration(); dispatcher = new btCollisionDispatcher(collisionConfiguration); solver = new btSequentialImpulseConstraintSolver; dynamicWorld = new btDiscreteDynamicsWorld(dispatcher, broadphase, solver, collisionConfiguration); dynamicWorld->setGravity(btVector3(0, -10, 0)); // Set debugger m_bulletDebug = new BulletDebugRender(); m_bulletDebug->SetCamera(m_camera); // Set Camera dynamicWorld->setDebugDrawer(m_bulletDebug); dynamicWorld->getDebugDrawer()->setDebugMode(1); // Draw Wireframe /* Physics Objects */ groundShape = new btStaticPlaneShape(btVector3(0, 1.0, 0), 1.0); ballShape = new btSphereShape(1.0); // Ground Physics/Collision setup btDefaultMotionState* groundMotionState = new btDefaultMotionState(btTransform(btQuaternion(0, 0, 0, 1), btVector3(0, -1, 0))); btRigidBody::btRigidBodyConstructionInfo groundRigidBodyCI(0, groundMotionState, groundShape, btVector3(0, 0, 0)); groundRigidBody = new btRigidBody(groundRigidBodyCI); dynamicWorld->addRigidBody(groundRigidBody); // Add the ground rigidbody to the world // Ball Physics/Collision setup btDefaultMotionState* ballMotionState = new btDefaultMotionState(btTransform(btQuaternion(0, 0, 0, 1), btVector3(0, 50, 0))); btScalar mass = 1; btVector3 ballInertia(0, 0, 0); btRigidBody::btRigidBodyConstructionInfo ballRigidBodyCI(mass, ballMotionState, ballShape, ballInertia); ballRigidBody = new btRigidBody(ballRigidBodyCI); dynamicWorld->addRigidBody(ballRigidBody); return EXIT_SUCCESS; } int PhysicsCubes::end() { // Cleanup dynamicWorld->removeRigidBody(ballRigidBody); // Remove Ball delete ballRigidBody->getMotionState(); delete ballRigidBody; dynamicWorld->removeRigidBody(groundRigidBody); // Remove Ground delete groundRigidBody->getMotionState(); delete groundRigidBody; delete groundShape; // Delete Shapes delete ballShape; /* Clean up the Physics */ delete dynamicWorld; delete solver; delete dispatcher; delete collisionConfiguration; delete broadphase; // Cleanup bullet debug renderer delete m_bulletDebug; delete m_camera; /* Cleanup rendering stuff */ glBindVertexArray(0); glUseProgram(0); glDeleteVertexArrays(1, &m_vao); glDeleteProgram(rendering_program); return EXIT_SUCCESS; } int PhysicsCubes::render() { // Clear glClearBufferfv(GL_COLOR, 0, clear_color); glClearBufferfv(GL_DEPTH, 0, &one); /* Render */ glUseProgram(rendering_program); glBindVertexArray(m_vao); // Projection //glm::mat4 proj = glm::perspective(1.0472f, 1280.0f / 720.0f, 0.1f, 100.0f); //glUniformMatrix4fv(m_projectionLocation, 1, GL_FALSE, glm::value_ptr(proj)); //glUniformMatrix4fv(m_projectionLocation, 1, GL_FALSE, glm::value_ptr(m_camera->GetProjectionMatrix())); //glUniformMatrix4fv(m_viewLocation, 1, GL_FALSE, glm::value_ptr(m_camera->GetViewMatrix())); glUniformMatrix4fv(m_viewLocation, 1, GL_FALSE, glm::value_ptr(m_camera->GetMatrix())); // Model View glm::mat4 mv = glm::mat4(1.0f); mv = glm::translate(mv, glm::vec3(0, y_pos, 0)); glUniformMatrix4fv(m_modelViewLocation, 1, GL_FALSE, glm::value_ptr(mv)); // Wireframe //glLineWidth(1.0f); //glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); glDrawArrays(GL_TRIANGLES, 0, (sizeof(Helper::cube_vp) / sizeof(float)) / 3); // Drawing line //m_BulletDebug->Test_rend(); dynamicWorld->debugDrawWorld(); m_bulletDebug->RenderMe(); return EXIT_SUCCESS; } int PhysicsCubes::update(const double dtime) { deltaTime = dtime; time += deltaTime; // Stepping through the simulation //for (int i = 0; i < 100; i++) { dynamicWorld->stepSimulation(1 / 60.0f, 10); btTransform trans; ballRigidBody->getMotionState()->getWorldTransform(trans); //std::cout << "Sphere Height: " << trans.getOrigin().getY() << std::endl; y_pos = trans.getOrigin().getY(); //} if (bmap.rot_left) { ballRigidBody->applyForce(btVector3(0.0, 0.0, 100.0), btVector3(0.0, 0.0, 0.0) ); } // Rotation if (bmap.rot_left) { angle += deltaTime * 1.0f; } if (bmap.rot_right) { angle -= deltaTime * 1.0f; } // Input for moving Camera if (bmap.up) { m_camera->SetPosition(glm::vec3(0.0, 0.0, 1.0) + m_camera->GetPosition()); } if (bmap.down) { m_camera->SetPosition(glm::vec3(0.0, 0.0, -1.0) + m_camera->GetPosition()); } m_camera->SetLookAtTarget(m_camera->GetPosition() + glm::normalize(glm::vec3(sin(angle), 0.0f, cos(angle)))); return EXIT_SUCCESS; }
39f87526f18a1840d26829839e0625dc046b8c57
2c2fd8c06a85b000f7caddc6107d45081182b6dd
/graphics/server.h
5597db4b0b1952b268ad2e30b203129235e6185d
[]
no_license
grumpyLemons/fireworks
ab89b84531af4333f54da834e6638796a602f998
316ac213c3d90af8ee07d82ffeb13aa899577ca9
refs/heads/master
2023-08-18T03:22:23.651177
2021-09-20T03:26:13
2021-09-20T03:26:13
378,403,462
0
0
null
2021-09-20T03:25:21
2021-06-19T12:10:01
C++
UTF-8
C++
false
false
1,628
h
server.h
#pragma once #include "core/server.h" #include "input/iserver.h" #include "iview.h" #include <array> #include <memory> namespace sf { class RenderWindow; class Text; class Font; class Texture; } namespace Graphics { class Server; class Entity { public: explicit Entity(Server& server); ~Entity(); virtual void OnFrame(float dt); protected: unsigned X, Y; Server& gServer; }; class Server : public IView, public Core::Server<Entity>, public Input::IServer { public: Server(); ~Server() override; void BeforeRender() override; void Render(std::size_t activeTime) override; void Open() override; void Close() override; void SetParticlesCount(std::size_t count) override { particles = count; }; bool IsPressed(Input::Button button) const override; sf::RenderWindow& RenderWindow() const { return *window; } sf::Texture& BulletTexture() const { return *bulletTexture; } std::size_t GetHeight() const { return Height; } void OnFrameImpl(float dt) override; private: void CreateContext(); void UpdateButtons(); std::unique_ptr<sf::RenderWindow> window; std::unique_ptr<sf::Text> particlesCount; std::unique_ptr<sf::Font> font; std::unique_ptr<sf::Texture> bulletTexture; std::size_t particles = 0; std::array<bool, unsigned(Input::Button::Count)> buttons; static constexpr std::size_t Height{900}; static constexpr std::size_t Width{900}; }; }
4871f443d282a98b146046386e7fac81aa115073
c809bdaf762238260a2ebbeb9b1d4f7cdf68d7ba
/Fibonacci Series Iterative.cpp
aaeb5c098e5f249628567d6b5294efebf9dbd013
[]
no_license
Saumya7055/DAA-Algorithms
1b12cdaf3858c6c2364ebb2eb368e744ae9b583b
b641fa9119b07ab7abba790b6f940ac5d90aaaa3
refs/heads/main
2023-08-21T00:28:46.977809
2021-11-01T16:19:08
2021-11-01T16:19:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
240
cpp
Fibonacci Series Iterative.cpp
#include<iostream> using namespace std; int fib(int n) { int a=0,b=1,c; if(n==0) return a; for(int i=2;i<n;i++){ c=a+b; a=b; b=c; } return b; } int main(){ int n; cin>>n; cout<<fib(n); return 0; }
8c6e2f9b428c3c21fd77536770aef0fa0c49a11c
4307abf5227b58aee0a9a4240c193476c8853c3d
/UI/OptionUI.h
343673f28a32038209618685767dbc41080ae1e1
[]
no_license
ljm3994/NecroDancer-
11b85afbff54fb2f5eaf023ea084a784e970f490
5fae52438130f1a554995108bd888bb62cc5a3e7
refs/heads/master
2022-11-29T15:46:17.104310
2020-08-07T09:09:59
2020-08-07T09:09:59
279,656,644
0
0
null
null
null
null
UTF-8
C++
false
false
936
h
OptionUI.h
#pragma once #include "GameNode.h" #include <atlbase.h> #include <ShObjIdl.h> class FFTDetector; class OptionUI : public GameNode { int m_SelectNum; int m_MaxSelectNum; int m_SkinNum; vector<string> PlayerKeyVec; FFTDetector * Detector; string Path; bool m_FFTStart; bool m_FileOpen; int SelectNum; CComPtr<IFileDialog> pfd; bool m_AudioOption; bool m_SkinChangeOption; bool m_OptionRender; bool m_FFTOption; bool m_Pause; bool m_LobbyGo; bool m_QuickRestart; float m_SelectMusicVol; float m_SelectsfxVol; float m_MusicVolum; float m_SfxVolum; void PauseOptionRender(); void OptionRender(); void AudioOptionRender(); void SkinChangeOptionRender(); void FFTOptionRender(); public: OptionUI(); ~OptionUI() override; HRESULT init() override; void release() override; void update() override; void render() override; MAKEGETSET(bool, m_Pause); MAKEGET(bool, m_LobbyGo); MAKEGET(bool, m_QuickRestart); };
422e3fa5cf2531f9f0645f159eda085dfd851aae
77c99a833b35f14de8def854f3504d09eddf0f02
/leetcode/network-delay-time(dijkstra).cpp
aa4a07921891b1a9be660c9e607c36b920f93b26
[]
no_license
lnghia/practicing-directories
316adca98ee137ce579aaa558280403373802b29
0137d076f912b7ac1d5ca8ca37571db0acf6b496
refs/heads/master
2022-10-27T07:57:18.091574
2020-06-17T03:27:47
2020-06-17T03:27:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,493
cpp
network-delay-time(dijkstra).cpp
struct option{ bool operator() (const pair<int, int>& a, const pair<int, int>& b) const{ return a.second>b.second; } }; class Solution { public: vector<vector<pair<int, int>>> graph; vector<int> dist; Solution(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); } void init(vector<vector<int>>& times, int n){ graph.resize(n); dist.resize(n, 1e9); for(auto& e : times){ graph[e[0]-1].push_back({e[1]-1, e[2]}); } } void dijkstra(int k){ priority_queue<pair<int, int>, vector<pair<int, int>>, option> pq; pq.push({k, 0}); dist[k]=0; while(!pq.empty()){ pair<int, int> curr=pq.top(); pq.pop(); int u=curr.first; int w=curr.second; for(auto& neighbor : graph[u]){ if(w+neighbor.second<dist[neighbor.first]){ dist[neighbor.first]=w+neighbor.second; pq.push({neighbor.first, dist[neighbor.first]}); } } } } int networkDelayTime(vector<vector<int>>& times, int N, int K) { int ans=0; init(times, N); dijkstra(K-1); for(auto& i : dist){ if(i==1e9){ return -1; } ans=max(ans, i); } return ans; } };
68458b15b8c585208caa9b1bdf105ea2c47b702b
0d805bb4929675dfc1280df7aa0aff4fdc8453c5
/ard_AmpSwitchV1/ard_AmpSwitchV1.ino
edda8b8074675912d844c724b9568d8e216931a1
[ "MIT" ]
permissive
sdkn104/Arduino
d86e9be7ed10e493e85c997ec86352f18156033d
68af30ae7d6c831ba1e51300e821bd09bd52cce2
refs/heads/master
2020-08-01T13:03:15.250828
2019-02-06T21:52:20
2019-02-06T21:52:20
73,575,542
7
1
null
2017-08-02T20:14:21
2016-11-12T20:06:19
C++
UTF-8
C++
false
false
6,844
ino
ard_AmpSwitchV1.ino
/* Auto Amplifier Power ON/OFF by GY-273 board (3-axis Magnetometer module) Connection: Arduino <-> GY-273 5V-VCC, GND-GND, SCL-A5, SDA-A4 */ /* Usage: 1. Power off the Electric Equipment (TV, etc.) (to keep the state of power off) You had better power on then power off, since equipment may have get into ultra-low power mode after a long time power-off state. 2. power on the Arduino -> start green LED blinking 60 times (about 1 minutes) (measuring sensor level of power-off state) 3. after stop the LED blinkng, you may power on the equipment. */ #include <Wire.h> //I2C Arduino Library #include <MyLib.h> #include <MyStatistic.h> const int I2CAddr = 0x1E; //I2C Address for The HMC5883 const int relayPin = 6; // D6, digital output for relay const int internalLedPin = 13; // D13 int state; int error; // number of samples for initial study #define NUM_STUDY_SAMPLES 60 float threshUpper; float threshLower; // number of samples for variation calculation #define NUM_SAMPLES 20 void setup() { // start Serial Serial.begin(9600); getResetFlag(); DebugOut.setToSerial(); // setup I2C, GY273 Wire.begin(); Wire.beginTransmission(I2CAddr); //start talking Wire.write(0x00); //select config A register Wire.write(0x18); // measurment rate 10:15Hz,14:30Hz,18:75Hz Wire.endTransmission(); Wire.beginTransmission(I2CAddr); //start talking Wire.write(0x02); //select mode register Wire.write(0x00); //continuous measurement mode Wire.endTransmission(); Wire.beginTransmission(I2CAddr); //start talking Wire.write(0x01); //select gain register Wire.write(0x80); //gain (00,20,40,60,80,A0,C0,E0; larger, lower gain) Wire.endTransmission(); delay(100); // wait for GY273 ready // setup Digital Pins pinMode(relayPin, OUTPUT); pinMode(internalLedPin, OUTPUT); digitalWrite(relayPin, LOW); digitalWrite(internalLedPin, LOW); // init state = 0; error = 0; // measure sensor level DebugOut.println("measure sensor level and set threshold"); MyStatistic stx; //stx.clear(0.0, 1.0); MyStatistic sty; MyStatistic stz; MyStatistic st(0.0, 0.1); for (int n = 0; n < NUM_STUDY_SAMPLES; n++) { for (int i = 0; i < NUM_SAMPLES; i++) { int x, y, z; //triple axis data readGY273(&x, &y, &z); //Serial.println(x); stx.add(x); sty.add(y); stz.add(z); delay(13); // for 75Hz } double stdev = stx.stdev() + sty.stdev() + stz.stdev(); DebugOut.print("total stdev: ------------------------ "); DebugOut.println(stdev); String a = String("ave: ") + stx.average() + ", " + sty.average() + ", " + stz.average(); String d = String("stdev: ") + stx.stdev() + ", " + sty.stdev() + ", " + stz.stdev(); //DebugOut.println(a); //DebugOut.println(d); st.add(stdev); delay(500); } DebugOut.println(st.summary()); // decide threshold threshLower = st.average() + st.stdev() * 3 + 10.0; threshUpper = threshLower + 10.0; DebugOut.print("lower threshold: "); DebugOut.println(threshLower); DebugOut.print("upper threshold: "); DebugOut.println(threshUpper); // DebugOut.setToNull(); } void loop() { // measure magnetic MyStatistic stx; //stx.clear(0.0, 1.0); MyStatistic sty; MyStatistic stz; for (int i = 0; i < NUM_SAMPLES; i++) { int x, y, z; //triple axis data readGY273(&x, &y, &z); //Serial.println(x); stx.add(x); sty.add(y); stz.add(z); delay(13); // for 75Hz } double stdev = stx.stdev() + sty.stdev() + stz.stdev(); DebugOut.print("total stdev: ------------------------ "); DebugOut.println(stdev); String a = String("ave: ") + stx.average() + ", " + sty.average() + ", " + stz.average(); String d = String("stdev: ") + stx.stdev() + ", " + sty.stdev() + ", " + stz.stdev(); DebugOut.println(a); DebugOut.println(d); //stx.dump(); // judge and relay static unsigned int upperIdx = 0; static unsigned int lowerIdx = 0; if ( stdev < threshLower ) { // under lower threashold if ( state == 1 ) { // toggle Amp digitalWrite(relayPin, HIGH); delay(1000); digitalWrite(relayPin, LOW); delay(1000); state = 0; } } else if (stdev > threshUpper ) { // over upper threashold if ( state == 0 ) { // toggle Amp digitalWrite(relayPin, HIGH); delay(1000); digitalWrite(relayPin, LOW); delay(1000); state = 1; } } else { } // error check if ( stx.minimum() == -4096 ) error = 1; if ( sty.minimum() == -4096 ) error = 1; if ( stz.minimum() == -4096 ) error = 1; DebugOut.println(String("thresh: ") + threshLower + " " + threshUpper); DebugOut.print(String("state: ") + state); DebugOut.println(String(" error: ") + error); if ( error ) for (int i = 0; i < 10; i++) { digitalWrite(internalLedPin, HIGH); delay(100); digitalWrite(internalLedPin, LOW); delay(100); } if ( state == 1 ) digitalWrite(internalLedPin, HIGH); else digitalWrite(internalLedPin, LOW); // wait delay(500); // interupt by Serial (debug) if (Serial.available()) { char in = Serial.read(); if ( in == 's' ) { DebugOut.setToSerial(); Serial.println("set output to Serial"); } else if ( in == 'n' ) { DebugOut.setToNull(); Serial.println("set output to Null"); } else { Serial.println("illegal serial input"); } while (Serial.available()) Serial.read(); Serial.print("waiting next input "); for (int i = 40; i > 0 && (!Serial.available()); i--) { Serial.print("."); delay(500); } Serial.println(""); while (Serial.available()) Serial.read(); } } // read GY273 void readGY273(int *x, int *y, int *z) { //Tell the HMC what regist to begin writing data into Wire.beginTransmission(I2CAddr); Wire.write(0x03); //select register 3, X MSB register Wire.endTransmission(); //Read the data.. 2 bytes for each axis.. 6 total bytes Wire.requestFrom(I2CAddr, 6); if (6 <= Wire.available()) { *x = Wire.read() << 8; //MSB x *x |= Wire.read(); //LSB x *z = Wire.read() << 8; //MSB z *z |= Wire.read(); //LSB z *y = Wire.read() << 8; //MSB y *y |= Wire.read(); //LSB y } } // from http://forum.arduino.cc/index.php?topic=246359.0 void getResetFlag() { Serial.print("MCUSR: "); Serial.println(MCUSR); if (MCUSR & _BV(EXTRF)) { // Reset button or otherwise some software reset Serial.println("Reset button was pressed."); } if (MCUSR & (_BV(BORF) | _BV(PORF))) { // Brownout or Power On Serial.println("Power loss occured!"); } if (MCUSR & _BV(WDRF)) { //Watchdog Reset Serial.println("Watchdog Reset"); } // Clear all MCUSR registers immediately for 'next use' MCUSR = 0; }
b3496b9676df6a8bdba1ee33e703c17f721da7e5
a3d6556180e74af7b555f8d47d3fea55b94bcbda
/media/mojo/services/deferred_destroy_unique_receiver_set.h
00c637bc0226f79b6364c71f2bc3c6ad9b0e5c1b
[ "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
5,066
h
deferred_destroy_unique_receiver_set.h
// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_MOJO_SERVICES_DEFERRED_DESTROY_UNIQUE_RECEIVER_SET_H_ #define MEDIA_MOJO_SERVICES_DEFERRED_DESTROY_UNIQUE_RECEIVER_SET_H_ #include <stdint.h> #include <map> #include <memory> #include "base/functional/bind.h" #include "base/logging.h" #include "base/memory/ptr_util.h" #include "base/memory/weak_ptr.h" #include "base/task/bind_post_task.h" #include "mojo/public/cpp/bindings/unique_receiver_set.h" namespace media { // A class that can be deferred destroyed by its owner. For example, when used // in DeferredDestroyUniqueReceiverSet. template <typename Interface> class DeferredDestroy : public Interface { public: // Runs the |destroy_cb| to notify that it's okay to destroy |this|. The // callback can be called synchronously. |this| will always be destroyed // asynchronously after running |destroy_cb| to avoid reentrance issues. virtual void OnDestroyPending(base::OnceClosure destroy_cb) = 0; }; // Similar to mojo::UniqueReceiverSet, but provide a way to defer the // destruction of the interface implementation: // - When disconnection happened on a receiver, the receiver is immediately // destroyed and removed from the set. The interface implementation will be // destroyed when the DestroyCallback is called. // - When the DeferredDestroyUniqueReceiverSet is destructed, all outstanding // receivers and interface implementations in the set are destroyed immediately // without any deferral. template <typename Interface> class DeferredDestroyUniqueReceiverSet { public: // Converts a delete callback to a deleter. If the callback is null or has // been cancelled, callback bound with invalidated weak pointer, the pointer // will be deleted with "delete" immediately. class Deleter { public: using DeleteCallback = base::RepeatingCallback<void(std::unique_ptr<Interface>)>; Deleter() = default; explicit Deleter(DeleteCallback delete_cb) : delete_cb_(std::move(delete_cb)) {} void operator()(Interface* p) { // Immediately wrap |p| into a unique_ptr to avoid any potential leak. auto ptr = base::WrapUnique<Interface>(p); // Can be cancelled during DeferredDestroyUniqueReceiverSet destruction. if (delete_cb_ && !delete_cb_.IsCancelled()) delete_cb_.Run(std::move(ptr)); else ptr.reset(); } private: DeleteCallback delete_cb_; }; DeferredDestroyUniqueReceiverSet() {} DeferredDestroyUniqueReceiverSet(const DeferredDestroyUniqueReceiverSet&) = delete; DeferredDestroyUniqueReceiverSet& operator=( const DeferredDestroyUniqueReceiverSet&) = delete; void Add(std::unique_ptr<DeferredDestroy<Interface>> impl, mojo::PendingReceiver<Interface> receiver) { // Wrap the pointer into a unique_ptr with a deleter. Deleter deleter(base::BindRepeating( &DeferredDestroyUniqueReceiverSet::OnReceiverRemoved, weak_factory_.GetWeakPtr())); std::unique_ptr<Interface, Deleter> impl_with_deleter(impl.release(), deleter); receivers_.Add(std::move(impl_with_deleter), std::move(receiver)); } // TODO(xhwang): Add RemoveReceiver() if needed. void CloseAllReceivers() { weak_factory_.InvalidateWeakPtrs(); receivers_.Clear(); unbound_impls_.clear(); } bool empty() const { return receivers_.empty(); } size_t size() const { return receivers_.size(); } size_t unbound_size() const { return unbound_impls_.size(); } private: void OnReceiverRemoved(std::unique_ptr<Interface> ptr) { DVLOG(1) << __func__; id_++; // The cast is safe since AddReceiver() takes DeferredDestroy<Interface>. auto* impl_ptr = static_cast<DeferredDestroy<Interface>*>(ptr.get()); // Put the |ptr| in the map before calling OnDestroyPending() because the // callback could be called synchronously. unbound_impls_[id_] = std::move(ptr); // Use base::BindPostTaskToCurrentDefault() to force post the destroy // callback. This is needed because the callback may be called directly in // the same stack where the implementation is being destroyed. impl_ptr->OnDestroyPending(base::BindPostTaskToCurrentDefault( base::BindOnce(&DeferredDestroyUniqueReceiverSet::OnDestroyable, weak_factory_.GetWeakPtr(), id_))); } void OnDestroyable(int id) { DVLOG(1) << __func__; unbound_impls_.erase(id); } uint32_t id_ = 0; std::map<uint32_t, std::unique_ptr<Interface>> unbound_impls_; mojo::UniqueReceiverSet<Interface, void, Deleter> receivers_; // Note: This should remain the last member so it'll be destroyed and // invalidate its weak pointers before any other members are destroyed. base::WeakPtrFactory<DeferredDestroyUniqueReceiverSet> weak_factory_{this}; }; } // namespace media #endif // MEDIA_MOJO_SERVICES_DEFERRED_DESTROY_UNIQUE_RECEIVER_SET_H_
4b193564dc3892947bbad4a8eed8244f6ace0351
9b5e8dcc6af30dbed73ae09e6313410fe69a6cbf
/试题泛做/AGC023E.cpp
f0e057957f1f05904950d757e40099cb6d6f4e88
[]
no_license
learn22coding/IOI2020Homework
8c1a2d1a6488874c1a07fc5b55f0a2a27563ee44
7186dd4a78f732abfcb2cf0453c87a4f0818aebe
refs/heads/master
2023-03-17T10:28:06.804204
2020-01-03T06:40:37
2020-01-03T06:40:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,212
cpp
AGC023E.cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 200233, mod = 1000000007; int n, a[N], ans = 0; int qpow(int b, int p) { int r = 1; for (; p; p >>= 1) { if (p & 1) r = (ll) r * b % mod; b = (ll) b * b % mod; } return r; } struct int0 { int a, b; int0 (int a = 0, int b = 0) : a(a), b(b) {} int0 operator + (const int0 &d) const { if (b < d.b) return *this; if (b > d.b) return d; return int0((a + d.a) % mod, b); } int0 operator * (const int0 &d) const { return int0((ll) a * d.a % mod, b + d.b); } int0 operator * (const int &d) const { return d == 0 ? int0(a, b + 1) : int0((ll) a * d % mod, b); } int0 inv() { return int0(qpow(a, mod - 2), -b); } int val() { return b ? 0 : a; } }; int S, cnt[N]; int0 d[N], c[N]; inline int0 ask(int x) { int0 ret(0, 0); for (; x; x -= x & -x) { ret = ret + c[x]; } return ret; } inline void add(int x, int0 y) { for (; x <= n; x += x & -x) { c[x] = c[x] + y; } } inline int solve(int *a, int flag) { S = 1; int ret = 0; for (int i = 1; i <= n; i++) { cnt[i] = 0; } for (int i = 1; i <= n; i++) { cnt[a[i]]++; } for (int i = n; i; i--) { cnt[i - 1] += cnt[i]; cnt[i] -= n - i; S = (ll) S * (cnt[i] <= 0 ? 0 : cnt[i]) % mod; } if (!S) return 0; d[0] = int0(1, 0); for (int i = 1; i <= n; i++) { d[i] = d[i - 1] * ((ll) (cnt[i] - 1) * qpow(cnt[i], mod - 2) % mod); } for (int i = 1; i <= n; i++) { c[i] = int0(0, 0); } for (int i = 1; i <= n; i++) { int0 t = ask(a[i] - flag); ret = (ret + (ll) (t * d[a[i]]).val() * S) % mod; add(a[i], d[a[i]].inv()); } return (ll) ret * (mod + 1) / 2 % mod; } inline int solve2(int *a) { for (int i = 1; i <= n; i++) { c[i] = int0(0, 0); } int ret = 0; for (int i = 1; i <= n; i++) { ret = (ret + ask(a[i] - 1).val()) % mod; add(a[i], int0(1, 0)); } return ret; } int main() { scanf("%d", &n); for (int i = 1; i <= n; i++) { scanf("%d", &a[i]); } ans = solve(a, 0); reverse(a + 1, a + n + 1); ans = (ans + mod - solve(a, 1)) % mod; ans = (ans + (ll) S * solve2(a)) % mod; printf("%d\n", ans); }
124b973e291d343065018769bf60cdf25ec6bd63
e3f2e1a0aa7f0ae4536c802da9b384a25e9f533d
/VirtualFileSystem/virtualFileSystem.h
912df548a69e8fd7a174b50d88f59ff6c2cd92e5
[]
no_license
g-radam/VirtualFileSystem
d8abc91ef0918bd952eab8d388056f182b6ddc05
34bfdd193baadc08454bd0a36a58876a879d3925
refs/heads/master
2016-09-05T13:53:44.082409
2015-05-20T13:14:56
2015-05-20T13:14:56
33,607,630
0
0
null
null
null
null
UTF-8
C++
false
false
3,146
h
virtualFileSystem.h
//standard Includes #include <iostream> //std::cout istream #include <fstream> //std::fstream #include <vector> //std::vector #include <string> //std::string // Boost Includes #include <boost/cstdint.hpp> //uint8, uint16, uint32, uint64... #include <boost/filesystem.hpp> //exists, is_regular #include <boost/lexical_cast.hpp> //boost::lexical_cast<int>(string) #include <boost/thread.hpp> //boost::thread #include "boost/date_time/gregorian/gregorian.hpp" //western calendar #include "boost/variant.hpp" //variant // User Includes #include "path.h" #include "attributes.h" // Class Definitions class AccessControlList; class NodeBase; class File; class Folder; class FileSystem; // Inode typedef boost::variant< boost::recursive_wrapper<File>, boost::recursive_wrapper<Folder> > Inode; // Node Permissions class AccessControlList { public: struct UserPermission { std::string _userName; // Username boost::uint8_t _rwx; // Read Write Execute }; std::vector<UserPermission> _permissions; // User - Permission link vector public: AccessControlList(); ~AccessControlList(); // bool createPermission (boost::uint8_t userID, boost::uint8_t rwx); // Create & Link permission to user bool updatePermission (boost::uint8_t userID, boost::uint8_t rwx); // Update permission linked to user bool deletePermission (boost::uint8_t userID); // Delete permission linked to user }; // Base for all Inodes - files, folders class InodeBase { public: // Variables std::string _name; // File Name std::string _path; // File Path boost::uint32_t _size; // File size in bytes Attributes _attributes; // Modifiable attributes AccessControlList _accessControlList; // Permissions // Set void setName (const std::string &name); void setPath (const std::string &path); void setSize (const boost::uint32_t &size); void setAttributes (const Attributes &attributes); void setAccessControlList (const AccessControlList &acl); // Get std::string& getName (void); std::string& getPath (void); boost::uint32_t& getSize (void); Attributes& getAttributes (void); AccessControllList& getAccessControllList (void); }; // File Node class File : InodeBase { private: // File specific Properties //Contents _contents; public: File(FileSystem &fileSystem, std::string parentDirectory, std::string name); ~File(); }; // Folder Node class Folder : InodeBase { private: // Folder specific Properties std::vector<Inode> _inodes; public: File(FileSystem &fileSystem, std::string parentDirectory, std::string name); //add '..' & '.' files ~File(); void setInodes (std::vector<Inode> inodes); std::vector<Inode>& getInodes (void); }; // Filesystem class FileSystem { public: public: FileSystem(); ~FileSystem(); std::string normalisePath (Path path); std::string absolutePath (Path localPath); void setWorkingDirectory (std::string path); std::string getWorkingDirectory (void); };
73d531c667be6dc260c5cfbb37c5b7b3617a186c
407d1069931e8d7dcb8ba9bcabc23db5b9ef3e29
/src/dice_exception.h
46d6e97875e1ab91b3e5ffb794593b9b2471b9b2
[ "MIT" ]
permissive
YuiTH/Dice3
f27886dc13601d115c6db60b761acc36e2d80126
7b945e38b673557d2c5e54845c6fca035e26e75e
refs/heads/master
2021-02-05T07:42:53.923122
2020-02-28T14:44:12
2020-02-28T14:44:12
243,758,216
0
0
MIT
2020-02-28T12:32:38
2020-02-28T12:32:37
null
UTF-8
C++
false
false
875
h
dice_exception.h
#pragma once #include <exception> #include <stdexcept> #include <string> #include "dice_msg.h" namespace dice::exception { struct exception : public std::exception { exception(const char* what) : std::exception(what){}; exception(const std::string& what) : std::exception(what.c_str()){}; }; struct dice_expression_invalid_error : public exception { dice_expression_invalid_error() : exception(msg::GetGlobalMsg("strInvalidDiceError")){}; dice_expression_invalid_error(const char* what) = delete; dice_expression_invalid_error(const std::string& what) = delete; }; struct runtime_error : public std::runtime_error { runtime_error(const char* what) : std::runtime_error(what){}; runtime_error(const std::string& what) : std::runtime_error(what.c_str()){}; }; } // namespace dice::exception
cc3b41ac5f82794d0224a6f19e2cbe4c58021e00
1bd9e3cda029e15d43a2e537663495ff27e317e2
/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/13/omega
41084e57e5bb981899211071f3394960d60308c2
[]
no_license
tsam1307/OpenFoam_heatTrf
810b81164d3b67001bfce5ab9311d9b3d45b5c9d
799753d24862607a3383aa582a6d9e23840c3b15
refs/heads/main
2023-08-10T23:27:40.420639
2021-09-18T12:46:01
2021-09-18T12:46:01
382,377,763
1
0
null
null
null
null
UTF-8
C++
false
false
750,021
omega
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "13"; object omega; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 -1 0 0 0 0]; internalField nonuniform List<scalar> 78750 ( 364.648 13.6467 15.0252 14.6862 14.6346 14.5742 14.534 14.5037 14.4801 14.4623 14.4508 14.4443 14.4412 14.4401 14.4401 14.4407 14.4417 14.4427 14.444 14.4453 14.4467 14.448 14.4486 14.4479 14.4443 14.4357 14.4204 14.3937 14.3535 14.2978 14.2252 14.1344 14.0225 13.8851 356.121 527.977 5.89797 6.05823 5.85406 5.5709 5.39419 5.32256 5.30311 5.30949 5.33024 5.35673 5.38051 5.39741 5.40713 5.40977 5.40614 5.39773 5.38619 5.37372 5.36283 5.35612 5.35595 5.36378 5.37902 5.39844 5.4169 5.42726 5.41876 5.37898 5.29726 5.16708 4.98805 4.7743 4.53721 523.251 528.435 5.08706 4.89217 4.47726 4.32384 4.5204 4.77888 4.9978 5.20041 5.37631 5.50761 5.59878 5.65769 5.69071 5.70184 5.69326 5.66603 5.62063 5.55726 5.47629 5.37872 5.26713 5.14703 5.02897 4.93106 4.87955 4.9012 4.99331 5.10837 5.18267 5.18225 5.09732 4.93411 4.6852 524.064 528.341 4.91634 4.86942 4.68077 4.41801 4.20308 4.12069 4.28459 4.6899 5.14282 5.48796 5.71303 5.85622 5.95152 6.01745 6.06198 6.08819 6.097 6.08792 6.05883 6.00626 5.92537 5.80957 5.65079 5.4404 5.17173 4.85167 4.5314 4.34634 4.392 4.55423 4.67326 4.68441 4.57911 524.304 528.201 4.85608 4.90121 4.83678 4.6632 4.42403 4.20491 4.18355 4.44959 4.82607 5.16154 5.41179 5.581 5.69112 5.7629 5.80963 5.83813 5.85223 5.85462 5.84702 5.82976 5.8013 5.75761 5.69107 5.58931 5.43538 5.21044 4.90685 4.5835 4.43679 4.56171 4.74747 4.81237 4.72374 524.848 528.083 4.77035 4.83984 4.80003 4.6399 4.35065 4.1016 4.20864 4.63742 5.11484 5.50169 5.77409 5.95236 6.06547 6.13441 6.17203 6.18596 6.18061 6.15793 6.11786 6.05852 5.97613 5.8645 5.71379 5.50988 5.24449 4.94439 4.66915 4.40504 4.17941 4.1847 4.4192 4.62324 4.67683 524.787 528.041 4.72243 4.78225 4.68001 4.39954 4.15928 4.34999 4.90426 5.44605 5.8028 5.99159 6.08126 6.11985 6.13202 6.13051 6.12201 6.1096 6.09407 6.07445 6.04831 6.01118 5.9554 5.8674 5.72234 5.47771 5.0908 4.58437 4.16148 4.09456 4.18422 4.39152 4.58022 4.67425 4.65429 525.435 528.044 4.61481 4.57193 4.3638 4.17453 4.38396 4.90602 5.36762 5.64543 5.802 5.90376 5.97822 6.03336 6.0724 6.09727 6.10925 6.10928 6.09781 6.07517 6.04194 5.99853 5.94441 5.87718 5.78849 5.65428 5.41944 5.01741 4.48823 4.09889 4.08554 4.26643 4.47421 4.57385 4.5439 525.846 528.025 4.54394 4.53445 4.52536 4.75211 5.20135 5.5973 5.85656 6.02592 6.14081 6.21534 6.26016 6.28484 6.29656 6.29971 6.29587 6.28495 6.26573 6.23648 6.19528 6.13946 6.06573 5.97151 5.85584 5.71873 5.55419 5.32882 4.98011 4.51373 4.15429 4.13607 4.34484 4.49102 4.49987 526.121 528.068 4.52168 4.56781 4.73298 5.05331 5.40252 5.67354 5.86194 5.98315 6.05454 6.09514 6.12011 6.13845 6.15442 6.16858 6.17984 6.18586 6.18483 6.17548 6.15666 6.127 6.08458 6.02665 5.94791 5.84143 5.70259 5.52906 5.30768 5.00286 4.61651 4.31576 4.27584 4.37701 4.42944 526.212 528.122 4.8005 5.02309 5.28161 5.52031 5.71841 5.87114 5.98226 6.05809 6.10689 6.13784 6.15938 6.17774 6.19592 6.21302 6.22522 6.22877 6.22135 6.20114 6.16651 6.11578 6.0474 5.96059 5.85528 5.7316 5.58897 5.42709 5.24585 5.04124 4.8056 4.57454 4.44279 4.42412 4.43408 526.65 528.244 4.89839 5.05459 5.21139 5.38977 5.57904 5.75309 5.89894 6.00228 6.06371 6.09601 6.11521 6.13493 6.16194 6.19486 6.22591 6.2496 6.26239 6.26157 6.2446 6.20858 6.14982 6.06375 5.94626 5.79724 5.62057 5.42753 5.23498 5.05293 4.87695 4.71053 4.59958 4.53939 4.47898 526.575 528.127 4.8013 4.91995 4.99885 5.09239 5.2397 5.46051 5.69012 5.84909 5.93048 5.96079 5.9712 5.98793 6.02284 6.071 6.12017 6.16041 6.1875 6.19932 6.19413 6.16977 6.12314 6.04946 5.94169 5.79176 5.59186 5.34406 5.07462 4.8352 4.67119 4.58606 4.55335 4.52224 4.44316 526.287 528.059 4.72747 4.85904 4.96611 5.11505 5.33352 5.58735 5.77835 5.87752 5.9115 5.91502 5.92154 5.9546 6.01632 6.09184 6.16255 6.21864 6.2573 6.27798 6.28056 6.26474 6.22982 6.17423 6.09478 5.98576 5.83763 5.63215 5.35775 5.03579 4.73875 4.54909 4.48035 4.44859 4.37635 526.309 528.016 4.6351 4.74206 4.82845 4.9518 5.1348 5.34378 5.52146 5.63426 5.68633 5.7094 5.74424 5.81509 5.91555 6.02188 6.11398 6.18318 6.229 6.25315 6.2574 6.24302 6.21065 6.16023 6.09142 6.0052 5.90374 5.78264 5.62339 5.39172 5.0758 4.74419 4.51531 4.40786 4.33776 526.667 527.988 4.5933 4.70418 4.81231 4.97406 5.17983 5.37431 5.50686 5.55695 5.55966 5.58222 5.67584 5.82979 5.99534 6.13235 6.22954 6.29118 6.32374 6.33242 6.32085 6.29092 6.24275 6.1746 6.08312 5.96528 5.8235 5.66493 5.50409 5.34297 5.15185 4.90485 4.65588 4.47854 4.37554 527.035 527.954 4.55123 4.65838 4.76128 4.90601 5.07032 5.19398 5.2502 5.26493 5.31753 5.47093 5.69698 5.91672 6.08477 6.19752 6.26784 6.30823 6.32705 6.32906 6.31636 6.2892 6.24632 6.18511 6.1015 5.99065 5.85013 5.67768 5.48058 5.27501 5.07226 4.86898 4.67921 4.52504 4.42114 527.415 527.902 4.51685 4.63312 4.73784 4.86615 4.98137 5.04048 5.08457 5.19336 5.41355 5.68882 5.92791 6.09466 6.20276 6.27208 6.31633 6.34247 6.35336 6.34973 6.3313 6.29708 6.24523 6.17287 6.07579 5.94983 5.79445 5.61129 5.41042 5.2052 5.00536 4.81967 4.66806 4.54574 4.44815 527.945 527.893 4.52966 4.65494 4.74885 4.83013 4.87588 4.93846 5.12017 5.41692 5.72437 5.95514 6.10291 6.19935 6.26953 6.32172 6.35787 6.37829 6.38316 6.37283 6.34738 6.30615 6.24732 6.16742 6.0614 5.92429 5.75273 5.54791 5.32365 5.10272 4.90466 4.74423 4.62576 4.53235 4.44495 528.471 527.929 4.57917 4.69784 4.76383 4.81827 4.92993 5.18474 5.51718 5.79781 5.9814 6.09871 6.18596 6.25835 6.31716 6.35947 6.38586 6.39788 6.39689 6.38333 6.35677 6.31566 6.25721 6.17714 6.06986 5.93027 5.75539 5.54527 5.31334 5.08527 4.886 4.73119 4.61951 4.52925 4.4365 528.609 528.001 4.63142 4.74767 4.82527 4.94794 5.18123 5.4746 5.71141 5.87366 5.99454 6.09471 6.17913 6.24884 6.30548 6.34859 6.37891 6.39691 6.40258 6.39546 6.37464 6.33857 6.28479 6.20949 6.10746 5.97283 5.8001 5.58443 5.33548 5.08337 4.86749 4.71293 4.60832 4.52151 4.42577 528.618 528.057 4.67357 4.79785 4.90871 5.08334 5.32192 5.55786 5.73917 5.87524 5.98403 6.07796 6.16341 6.24106 6.30816 6.35987 6.39593 6.41738 6.4252 6.41987 6.40126 6.36851 6.31982 6.25236 6.1622 6.04438 5.89364 5.69974 5.45982 5.19254 4.94098 4.74874 4.6256 4.52892 4.42562 528.58 528.114 4.72077 4.8544 4.98808 5.17035 5.37445 5.56195 5.70601 5.81503 5.90933 6.00275 6.09621 6.18375 6.25977 6.31934 6.36264 6.39107 6.40565 6.40668 6.39382 6.36598 6.3213 6.25712 6.17033 6.05794 5.91741 5.74068 5.51987 5.26081 4.99565 4.776 4.63384 4.52862 4.42149 528.647 528.115 4.74288 4.87617 5.00468 5.17178 5.33771 5.47165 5.56685 5.63939 5.72153 5.83013 5.95654 6.08181 6.19308 6.2812 6.34618 6.39109 6.41868 6.43066 6.42784 6.41022 6.37696 6.32633 6.25565 6.16157 6.04044 5.8861 5.68654 5.43582 5.15054 4.88126 4.68612 4.54981 4.42944 528.714 528.034 4.70871 4.85001 4.96837 5.10253 5.21261 5.2773 5.31989 5.38698 5.50645 5.67262 5.85171 6.01349 6.14638 6.24664 6.31783 6.36527 6.39331 6.40463 6.40062 6.38166 6.34728 6.29638 6.22773 6.14066 6.03547 5.90751 5.74594 5.53815 5.28107 5.00466 4.77117 4.59808 4.45663 528.688 527.948 4.63797 4.79779 4.91483 5.01891 5.09046 5.1213 5.15096 5.24364 5.41126 5.62108 5.8268 6.00193 6.14216 6.24848 6.32486 6.37659 6.4082 6.42259 6.42129 6.40471 6.37225 6.32251 6.25372 6.16492 6.05775 5.93034 5.77549 5.58344 5.34815 5.08352 4.84168 4.64897 4.49104 528.695 527.901 4.56874 4.72762 4.83147 4.90351 4.93847 4.94985 5.00032 5.15618 5.39021 5.64027 5.86016 6.03466 6.16819 6.26656 6.33542 6.38035 6.4058 6.41465 6.40847 6.38771 6.35194 6.30002 6.2309 6.14516 6.04653 5.93345 5.79923 5.63219 5.42083 5.17039 4.92482 4.71512 4.5409 528.666 527.891 4.51896 4.654 4.73483 4.78227 4.81295 4.87566 5.03963 5.29963 5.58058 5.82276 6.00709 6.1414 6.24143 6.31473 6.36614 6.39892 6.41537 6.4168 6.40366 6.37548 6.3308 6.26747 6.18404 6.08281 5.96987 5.8468 5.71198 5.55854 5.37685 5.16657 4.95315 4.75634 4.58225 528.789 527.896 4.49162 4.60341 4.67226 4.7256 4.80124 4.95091 5.19975 5.47857 5.72186 5.9086 6.04759 6.15467 6.24214 6.31165 6.3627 6.39577 6.41208 6.41265 6.39779 6.36687 6.31818 6.24923 6.15888 6.05122 5.93257 5.80548 5.66844 5.51577 5.34304 5.15755 4.96666 4.78546 4.61958 529.049 527.904 4.49716 4.60442 4.68272 4.77314 4.91507 5.13799 5.41171 5.66428 5.86456 6.01461 6.12824 6.21839 6.29203 6.34854 6.38756 6.40977 6.41613 6.40706 6.38221 6.34006 6.27765 6.19134 6.0805 5.95358 5.81929 5.68536 5.5539 5.41929 5.27545 5.12442 4.95724 4.79506 4.64484 529.499 527.91 4.5241 4.64435 4.74494 4.8783 5.06698 5.31529 5.56684 5.7736 5.92754 6.04053 6.12763 6.20118 6.26804 6.32423 6.36588 6.39127 6.40019 6.39253 6.36747 6.3228 6.25448 6.15766 6.03159 5.88596 5.72993 5.57501 5.43012 5.29911 5.18386 5.06631 4.92639 4.788 4.65675 530.103 527.913 4.56028 4.70419 4.83233 5.00135 5.21356 5.45875 5.67877 5.84907 5.97371 6.067 6.14357 6.21373 6.28023 6.33602 6.37614 6.39898 6.40458 6.39284 6.36273 6.31146 6.23405 6.12507 5.98468 5.82413 5.6544 5.48914 5.33878 5.2101 5.10896 5.00746 4.88599 4.76761 4.65371 530.661 527.917 4.59975 4.76759 4.9199 5.11319 5.33113 5.55482 5.741 5.8775 5.9736 6.0454 6.10817 6.17182 6.23904 6.29957 6.34545 6.37341 6.38297 6.37388 6.34486 6.29253 6.21076 6.09261 5.93743 5.75654 5.56412 5.38084 5.22524 5.10873 5.02618 4.94125 4.83784 4.73589 4.63575 531.07 527.924 4.64183 4.82953 5.00018 5.21021 5.42568 5.62485 5.78179 5.8922 5.96848 6.02806 6.08642 6.15203 6.22442 6.29177 6.34376 6.37644 6.38956 6.38326 6.35654 6.30614 6.22577 6.10754 5.94841 5.75764 5.54726 5.34024 5.16369 5.03886 4.95922 4.88333 4.79399 4.70482 4.61447 531.227 527.938 4.68847 4.88872 5.06931 5.28875 5.49501 5.66588 5.79297 5.8773 5.93274 5.97762 6.02834 6.09289 6.16912 6.24515 6.30648 6.34708 6.36637 6.36488 6.34192 6.29443 6.216 6.09822 5.93695 5.74019 5.51883 5.29575 5.10338 4.97166 4.8959 4.83034 4.75513 4.67781 4.59459 531.253 527.96 4.73779 4.94726 5.13416 5.35843 5.55594 5.70404 5.80573 5.8689 5.90805 5.94202 5.9875 6.05233 6.13326 6.21894 6.29167 6.34278 6.37113 6.37771 6.36249 6.32307 6.25354 6.14468 5.9892 5.79048 5.55876 5.31362 5.09053 4.92975 4.8443 4.78441 4.7218 4.65518 4.57617 531.223 527.99 4.78529 5.0054 5.19779 5.41937 5.6068 5.73449 5.80879 5.84673 5.86477 5.8817 5.91494 5.97386 6.05599 6.14953 6.23594 6.30084 6.34108 6.35803 6.35259 6.32333 6.26549 6.17074 6.03072 5.84424 5.61723 5.3619 5.11103 4.91264 4.80205 4.74021 4.68751 4.63028 4.554 531.206 528.024 4.82938 5.06266 5.2596 5.47313 5.65265 5.76892 5.82641 5.84409 5.84313 5.84203 5.85845 5.90492 5.98314 6.08265 6.1853 6.26926 6.3267 6.35876 6.36753 6.3529 6.31158 6.23646 6.11836 5.95206 5.74079 5.48698 5.21231 4.96424 4.79798 4.71285 4.65909 4.60582 4.52886 531.153 528.051 4.86033 5.11438 5.31578 5.51447 5.68716 5.79943 5.84942 5.85084 5.82469 5.7943 5.77991 5.79883 5.86037 5.95961 6.07711 6.18617 6.26757 6.31992 6.34704 6.35085 6.33014 6.28036 6.19422 6.06516 5.89055 5.66711 5.39806 5.11473 4.87739 4.7349 4.65522 4.59206 4.50701 531.011 528.062 4.87753 5.15722 5.36124 5.54276 5.70685 5.82037 5.8742 5.87525 5.83804 5.78331 5.73585 5.71713 5.74622 5.83129 5.95792 6.09408 6.20562 6.28255 6.32978 6.35198 6.35014 6.3221 6.26353 6.17 6.03916 5.86637 5.63938 5.36285 5.07634 4.84856 4.70716 4.60817 4.49995 530.712 528.047 4.87403 5.17911 5.38872 5.55766 5.70891 5.82201 5.88391 5.89449 5.86049 5.79293 5.71136 5.64514 5.62586 5.68033 5.80622 5.96538 6.11099 6.21654 6.28514 6.32493 6.33953 6.32878 6.29087 6.22482 6.13138 6.00952 5.84397 5.6197 5.34188 5.05785 4.83609 4.67256 4.52169 530.255 528.01 4.84857 5.17093 5.38893 5.55219 5.69108 5.79902 5.86517 5.88528 5.86042 5.79448 5.6969 5.59657 5.54075 5.57511 5.70484 5.88406 6.05505 6.18115 6.26329 6.31223 6.33382 6.32945 6.29912 6.24428 6.17006 6.08045 5.96449 5.80149 5.57482 5.29555 5.02069 4.78592 4.58085 529.697 527.965 4.81029 5.13957 5.36281 5.52292 5.65195 5.75147 5.81445 5.83546 5.81184 5.74086 5.62359 5.49807 5.44241 5.50946 5.68001 5.88573 6.06439 6.1887 6.26589 6.30838 6.32255 6.3108 6.27507 6.21983 6.15467 6.08371 5.99864 5.8799 5.70417 5.46184 5.18636 4.91335 4.66649 529.255 527.926 4.77357 5.09775 5.31453 5.46493 5.58112 5.66836 5.72132 5.73233 5.68823 5.57498 5.42221 5.33623 5.39304 5.57748 5.81197 6.02364 6.17253 6.26145 6.30746 6.32195 6.3101 6.27469 6.21992 6.15569 6.09514 6.04182 5.98538 5.90152 5.76244 5.55521 5.30031 5.02667 4.75941 529.117 527.909 4.75325 5.06378 5.2638 5.40005 5.5028 5.57282 5.59419 5.53678 5.39477 5.24483 5.21908 5.35979 5.60929 5.87377 6.08729 6.22259 6.2921 6.3177 6.31333 6.28512 6.23501 6.16566 6.08762 6.01973 5.97449 5.95135 5.93123 5.8825 5.77544 5.59516 5.35033 5.08947 4.8276 529.313 527.925 4.77111 5.06412 5.23911 5.34411 5.3992 5.38604 5.27986 5.13749 5.09553 5.23738 5.51251 5.81486 6.05821 6.214 6.29162 6.31721 6.31094 6.28309 6.23652 6.16884 6.07802 5.97636 5.8919 5.84827 5.84994 5.87781 5.89975 5.88152 5.79227 5.6128 5.35809 5.10958 4.86709 529.649 527.983 4.81646 5.07479 5.19433 5.2274 5.18107 5.07755 5.03825 5.18333 5.48384 5.8076 6.05099 6.18925 6.25343 6.2791 6.28332 6.26907 6.23612 6.18285 6.10317 5.98872 5.8529 5.74204 5.69971 5.73014 5.80045 5.87023 5.90792 5.88821 5.79026 5.60495 5.3571 5.11978 4.88165 530.014 528.082 4.8606 5.06278 5.1258 5.10512 5.06615 5.14454 5.40423 5.72681 5.9661 6.09601 6.1603 6.203 6.23984 6.26389 6.2636 6.23546 6.18067 6.09693 5.97376 5.81224 5.66295 5.59098 5.61699 5.70437 5.80044 5.86957 5.89405 5.86036 5.75723 5.58426 5.36541 5.12849 4.86518 530.421 528.211 4.90417 5.0594 5.11193 5.13455 5.24297 5.48916 5.76455 5.95205 6.0581 6.12441 6.17249 6.20836 6.23387 6.24767 6.24264 6.21326 6.15663 6.06776 5.93463 5.75711 5.5826 5.48307 5.49984 5.60482 5.7243 5.80137 5.82266 5.78783 5.69509 5.54759 5.35851 5.12552 4.83588 530.85 528.339 4.94907 5.08029 5.15604 5.25329 5.44283 5.68328 5.87965 6.0032 6.07114 6.1054 6.12609 6.14753 6.17453 6.20308 6.22379 6.22499 6.19844 6.13821 6.03353 5.86755 5.65006 5.44634 5.33341 5.35259 5.47329 5.60742 5.67608 5.6647 5.58911 5.46505 5.30222 5.0871 4.79604 531.291 528.403 4.98389 5.10109 5.19473 5.33507 5.54317 5.76038 5.91991 6.01034 6.04639 6.04792 6.03592 6.02924 6.03936 6.06879 6.11225 6.15921 6.19447 6.20584 6.18248 6.10988 5.96223 5.7279 5.45952 5.23358 5.12242 5.15352 5.28284 5.40097 5.42737 5.36174 5.23681 5.05114 4.77243 531.615 528.299 4.93415 5.07839 5.18347 5.32314 5.53086 5.74922 5.91329 6.00295 6.03091 6.01616 5.97482 5.92406 5.88276 5.86683 5.88346 5.93029 5.99783 6.07279 6.14135 6.19184 6.20955 6.16853 6.02681 5.76876 5.45097 5.14838 4.94222 4.8921 4.97422 5.06757 5.07368 4.98087 4.76013 531.819 528.096 4.7854 4.98497 5.11884 5.25023 5.42009 5.60775 5.77368 5.89242 5.95825 5.97843 5.96368 5.92324 5.86344 5.79424 5.73642 5.71442 5.73727 5.79402 5.86657 5.94265 6.0212 6.10358 6.17842 6.21152 6.1518 5.953 5.61951 5.23948 4.93491 4.8011 4.8152 4.82239 4.70755 531.846 527.933 4.62322 4.84991 5.03346 5.18638 5.32923 5.47245 5.60451 5.71184 5.78856 5.83591 5.85716 5.85418 5.82769 5.77892 5.71442 5.65039 5.61365 5.631 5.70351 5.79772 5.88084 5.94518 5.99383 6.03135 6.0689 6.11045 6.1191 6.0244 5.76961 5.39595 5.08188 4.9046 4.74367 531.317 527.844 4.5117 4.73136 4.92108 5.07439 5.19917 5.3101 5.41407 5.51139 5.59848 5.66773 5.70958 5.71698 5.68773 5.62867 5.55916 5.50503 5.48924 5.52442 5.60493 5.70499 5.80183 5.89247 5.98066 6.06237 6.12687 6.16104 6.1607 6.13128 6.06958 5.92528 5.65 5.3109 4.99456 530.067 527.802 4.4779 4.69835 4.88425 5.03538 5.16146 5.27124 5.36231 5.42639 5.45602 5.44915 5.4117 5.35785 5.30782 5.27854 5.28168 5.32318 5.40354 5.51791 5.64564 5.76388 5.86893 5.96409 6.0493 6.12266 6.18461 6.23825 6.2769 6.27695 6.21656 6.08834 5.88028 5.56861 5.22488 529.157 527.806 4.51507 4.73132 4.8701 4.9483 4.98383 4.98789 4.97283 4.9552 4.95011 4.96771 5.01041 5.07973 5.17657 5.29231 5.41792 5.55391 5.69345 5.82072 5.92639 6.00658 6.06997 6.12771 6.18282 6.23473 6.29287 6.37082 6.45497 6.49132 6.43015 6.25698 5.99217 5.68333 5.35527 529.202 527.843 4.49677 4.63811 4.69955 4.73049 4.77387 4.85054 4.95857 5.08874 5.2298 5.36965 5.50205 5.63563 5.75987 5.85476 5.92722 5.99748 6.07197 6.13126 6.13779 6.09542 6.09405 6.19645 6.35804 6.51713 6.64606 6.73868 6.79248 6.78914 6.68758 6.4434 6.07821 5.72017 5.38435 529.505 527.867 4.55886 4.78685 5.00414 5.2283 5.44155 5.61982 5.75102 5.8415 5.88805 5.89899 5.9021 5.90463 5.87628 5.77914 5.70103 5.81127 6.04872 6.25017 6.3733 6.43842 6.4787 6.51899 6.57098 6.63625 6.711 6.78902 6.85583 6.87976 6.8043 6.56532 6.17295 5.78336 5.42241 530.13 527.866 4.84599 5.30722 5.68529 5.92905 6.02057 5.96901 5.83807 5.67037 5.47632 5.3387 5.36398 5.57657 5.85032 6.04954 6.15451 6.214 6.26408 6.31471 6.3669 6.42196 6.48028 6.54015 6.59898 6.65384 6.70099 6.73504 6.74455 6.7068 6.58647 6.35366 6.03172 5.69291 5.34088 531.243 527.895 5.1908 5.70036 5.91756 5.91573 5.82518 5.73581 5.67742 5.64491 5.62309 5.60252 5.60146 5.65426 5.7676 5.9125 6.05014 6.15548 6.22698 6.27642 6.31613 6.3566 6.40762 6.4752 6.55565 6.63505 6.69648 6.72403 6.70106 6.61193 6.44681 6.20792 5.91375 5.56798 5.17577 532.43 528.008 5.34777 5.79476 5.97177 5.98787 5.91911 5.8006 5.67227 5.5721 5.50641 5.46641 5.45511 5.48493 5.5613 5.67287 5.80477 5.94732 6.08784 6.20914 6.29504 6.34354 6.36082 6.35003 6.31372 6.2665 6.22894 6.20368 6.17313 6.1151 6.00981 5.84093 5.59618 5.27966 4.9262 533.788 528.241 5.30737 5.72118 6.0019 6.16198 6.19777 6.11434 5.96171 5.82823 5.74013 5.6529 5.5429 5.42506 5.34322 5.30917 5.29651 5.30444 5.33899 5.40581 5.51246 5.65817 5.83059 6.00845 6.15641 6.23539 6.23722 6.17908 6.06628 5.89885 5.69055 5.45732 5.20503 4.94052 4.67888 534.496 528.198 5.1582 5.49132 5.75148 5.98784 6.14819 6.23135 6.2536 6.24772 6.26256 6.29047 6.22537 6.03914 5.85651 5.7434 5.65386 5.55117 5.40757 5.22889 5.08023 4.98432 4.93878 4.95436 5.02772 5.14205 5.27966 5.43145 5.58224 5.68627 5.70444 5.626 5.43901 5.16435 4.83009 533.894 528.058 5.00816 5.34138 5.58077 5.79603 5.97789 6.10117 6.16507 6.18403 6.1766 6.14867 6.09137 5.99854 5.89009 5.83716 5.92776 6.10744 6.14798 5.98044 5.74947 5.55033 5.38448 5.24725 5.13485 5.03724 4.95477 4.89558 4.87344 4.9082 5.00564 5.12999 5.19956 5.14961 4.92208 533.843 527.951 4.84297 5.21815 5.47531 5.67021 5.83371 5.96137 6.0476 6.09437 6.1085 6.09768 6.07025 6.03436 5.99539 5.9553 5.9111 5.84339 5.72657 5.57477 5.46463 5.48593 5.65433 5.87332 6.0193 6.05031 6.00446 5.88421 5.67554 5.43058 5.21616 5.06873 4.99125 4.93757 4.8327 534.616 527.854 4.62194 4.94049 5.19464 5.38441 5.52748 5.63907 5.72727 5.79644 5.84867 5.88403 5.90149 5.90093 5.8837 5.85162 5.80672 5.75532 5.70789 5.67623 5.66985 5.69125 5.72531 5.75227 5.77029 5.78681 5.80539 5.83599 5.89704 5.96393 5.97393 5.86599 5.63739 5.34793 5.08208 532.096 527.801 4.52594 4.79969 5.0281 5.20789 5.34505 5.44775 5.52008 5.56317 5.57595 5.55901 5.51969 5.4709 5.42764 5.40038 5.39304 5.40797 5.44159 5.48986 5.55026 5.62056 5.69817 5.78235 5.87382 5.97124 6.06787 6.15116 6.20511 6.21446 6.18969 6.15148 6.06045 5.7984 5.42092 528.636 527.833 4.652 4.90895 5.04506 5.10337 5.11641 5.10306 5.0785 5.0553 5.04253 5.04727 5.07523 5.1288 5.20872 5.3136 5.43928 5.57463 5.70012 5.80696 5.90154 5.99569 6.09789 6.21294 6.34034 6.47126 6.59131 6.686 6.74043 6.73123 6.64148 6.4863 6.28785 6.00739 5.60398 527.826 527.89 4.716 4.93257 5.05032 5.1304 5.19808 5.26258 5.32082 5.37415 5.42576 5.48131 5.5522 5.64556 5.76641 5.91689 6.07877 6.21048 6.27256 6.27084 6.27439 6.34302 6.46642 6.6062 6.73322 6.83194 6.89848 6.9325 6.92772 6.86291 6.70477 6.44115 6.12444 5.82423 5.44414 528.192 527.925 4.895 5.2671 5.55382 5.75561 5.87742 5.92108 5.90514 5.86351 5.79816 5.70157 5.61076 5.59317 5.68648 5.86016 6.04319 6.19003 6.29338 6.36378 6.41913 6.47165 6.52585 6.58318 6.64377 6.70571 6.76384 6.80749 6.81831 6.7693 6.6293 6.38314 6.06482 5.72924 5.30855 529.245 527.957 5.25164 5.72202 5.91464 5.8878 5.78354 5.69428 5.65693 5.65105 5.65181 5.65188 5.65161 5.65837 5.68735 5.74837 5.83764 5.94633 6.06427 6.17911 6.28038 6.36207 6.42419 6.46847 6.49576 6.50547 6.49591 6.4642 6.40443 6.30649 6.15842 5.95437 5.70036 5.39241 5.00559 531.25 528.099 5.44774 5.85322 5.99841 6.02253 6.00402 5.9595 5.88499 5.78376 5.67327 5.57206 5.48821 5.42441 5.38108 5.35897 5.35958 5.38649 5.44492 5.53635 5.65494 5.78582 5.91299 6.0247 6.11262 6.17198 6.20056 6.19618 6.15448 6.06798 5.92727 5.72527 5.46159 5.14266 4.77936 532.191 528.329 5.63667 6.16007 6.5078 6.70997 6.78227 6.74266 6.61425 6.42999 6.22394 6.03109 5.87568 5.75352 5.64321 5.52918 5.40318 5.26302 5.12787 5.03268 4.99428 5.00139 5.03387 5.07847 5.12634 5.17126 5.2088 5.23578 5.24953 5.24542 5.21493 5.14485 5.02407 4.85197 4.62968 534.128 528.431 5.64876 6.12806 6.46445 6.68857 6.79259 6.82184 6.81611 6.79786 6.78194 6.77619 6.77554 6.76796 6.73932 6.67024 6.53721 6.32678 6.05745 5.78173 5.56213 5.43286 5.37233 5.34243 5.32668 5.31817 5.30509 5.27552 5.22902 5.1685 5.09154 4.99465 4.87402 4.72899 4.56098 533.347 528.286 5.45033 5.92616 6.25914 6.53489 6.73911 6.86186 6.91204 6.909 6.87709 6.83629 6.79282 6.74713 6.70123 6.65797 6.61967 6.5895 6.56728 6.5388 6.4808 6.3811 6.24942 6.10513 5.98122 5.9254 5.92794 5.92406 5.89226 5.84244 5.76576 5.64084 5.44737 5.1685 4.765 527.105 528.024 4.98647 5.46963 5.85587 6.16037 6.39133 6.55493 6.65689 6.70608 6.71351 6.6901 6.64534 6.58816 6.52814 6.47584 6.44029 6.42391 6.41948 6.41774 6.41254 6.39908 6.37418 6.33614 6.28385 6.21218 6.10351 5.93958 5.74388 5.58586 5.54445 5.61421 5.66014 5.61048 5.29911 524.785 527.812 4.45508 4.71345 4.96402 5.20444 5.42733 5.6225 5.78726 5.92615 6.04448 6.1443 6.22614 6.29091 6.34046 6.37607 6.39734 6.40251 6.38977 6.35887 6.31133 6.24992 6.17786 6.09881 6.01685 5.93485 5.85534 5.78149 5.71524 5.65913 5.6187 5.61211 5.6713 5.74444 5.55294 524.596 527.802 4.56454 4.83845 5.07681 5.29339 5.47072 5.59991 5.6898 5.75011 5.78489 5.79789 5.79541 5.78413 5.76803 5.74797 5.72363 5.69481 5.66247 5.62903 5.5979 5.57331 5.55862 5.55836 5.57748 5.61614 5.66517 5.71333 5.7539 5.78469 5.79949 5.77901 5.76527 5.86707 5.73477 524.706 527.914 4.83051 5.06904 5.15028 5.16936 5.15607 5.12377 5.08713 5.05294 5.02664 5.01499 5.02225 5.04766 5.08686 5.13419 5.18464 5.23457 5.28412 5.33556 5.39299 5.46291 5.55359 5.6716 5.81597 5.97404 6.12498 6.25305 6.36626 6.48852 6.61568 6.6872 6.6094 6.32304 5.80396 526.28 528.003 4.90237 5.12122 5.2127 5.24393 5.24354 5.2411 5.24894 5.27344 5.32261 5.39764 5.48847 5.58116 5.66711 5.74265 5.80401 5.84728 5.8811 5.93364 6.03017 6.16737 6.32036 6.46449 6.58643 6.68446 6.7639 6.82842 6.87662 6.89782 6.87111 6.76528 6.55026 6.21085 5.67772 527.399 527.95 4.9034 5.22197 5.41696 5.51694 5.55232 5.54833 5.53556 5.52671 5.52187 5.52268 5.5377 5.58031 5.66141 5.78185 5.92939 6.08105 6.21552 6.32519 6.41988 6.50576 6.58048 6.64207 6.68999 6.72485 6.7484 6.75969 6.75174 6.71353 6.63105 6.48984 6.27923 5.96491 5.45163 529.414 527.902 5.06883 5.45794 5.62966 5.65298 5.5969 5.51239 5.43968 5.39726 5.38228 5.39033 5.41792 5.46175 5.52147 5.59948 5.69918 5.81789 5.94674 6.07729 6.20229 6.31596 6.41369 6.49263 6.55137 6.58927 6.60511 6.5957 6.55471 6.47239 6.33675 6.13597 5.85908 5.49104 5.01557 531.39 528.109 5.57575 5.918 5.96072 5.8511 5.67243 5.5197 5.44658 5.43446 5.43477 5.41891 5.38586 5.34005 5.28622 5.23403 5.19681 5.18524 5.20226 5.24451 5.3033 5.36894 5.43429 5.49455 5.5464 5.5875 5.61654 5.63258 5.63347 5.61375 5.56388 5.47102 5.32142 5.10417 4.80184 534.842 528.567 5.77688 6.17208 6.39068 6.49317 6.51587 6.48862 6.43578 6.38308 6.33882 6.2898 6.21698 6.11037 5.96885 5.79993 5.61959 5.45134 5.32 5.23798 5.19905 5.18768 5.19146 5.2037 5.22062 5.23736 5.24682 5.24065 5.21689 5.17953 5.12815 5.05609 4.95282 4.80907 4.6181 532.53 528.521 5.69168 6.17992 6.52641 6.80432 6.98779 7.06678 7.06364 7.01222 6.93625 6.84963 6.76419 6.69292 6.64591 6.62462 6.61909 6.61035 6.5762 6.49721 6.36521 6.18839 5.98759 5.78605 5.62282 5.5514 5.56308 5.57989 5.5638 5.52405 5.46401 5.37498 5.2357 5.01483 4.67159 526.505 528.125 5.14641 5.66322 6.0623 6.37352 6.60592 6.76082 6.84274 6.86267 6.83404 6.76876 6.67795 6.57676 6.487 6.43072 6.41589 6.42757 6.44714 6.46396 6.46963 6.45916 6.43053 6.38325 6.31792 6.22788 6.0919 5.89061 5.64088 5.40477 5.27944 5.30924 5.37899 5.36746 5.12482 525.33 527.846 4.52995 4.82486 5.09662 5.34801 5.57767 5.77723 5.94305 6.07874 6.19046 6.28273 6.35837 6.41962 6.46755 6.50063 6.51465 6.50519 6.47082 6.41294 6.33445 6.23876 6.1292 6.00778 5.87804 5.74586 5.6192 5.50641 5.41117 5.33708 5.29298 5.29267 5.3579 5.45768 5.323 524.787 527.815 4.59678 4.88191 5.1286 5.36327 5.56997 5.73299 5.85453 5.94345 6.00346 6.03381 6.03579 6.01491 5.97733 5.92754 5.8686 5.80311 5.73405 5.66425 5.59607 5.53155 5.47312 5.42289 5.38469 5.36702 5.37774 5.41118 5.4514 5.48907 5.51596 5.49787 5.48541 5.60783 5.50452 524.944 527.95 4.91756 5.19948 5.32392 5.3903 5.429 5.4463 5.44452 5.42615 5.39399 5.35325 5.31214 5.27912 5.25961 5.25472 5.2631 5.28296 5.31089 5.3412 5.36857 5.39196 5.41384 5.43907 5.47856 5.55166 5.67079 5.82045 5.97254 6.12286 6.27999 6.41031 6.41051 6.18696 5.69262 526.616 528.041 4.95433 5.22724 5.35569 5.427 5.47017 5.49347 5.49872 5.48716 5.46564 5.44377 5.43084 5.437 5.46861 5.52268 5.59487 5.68324 5.77687 5.85593 5.90825 5.95184 6.02367 6.1394 6.2844 6.43218 6.55735 6.64222 6.67942 6.67302 6.62476 6.52186 6.3432 6.07348 5.61556 527.639 527.937 4.83393 5.16321 5.39283 5.54603 5.63238 5.66032 5.64443 5.61056 5.58111 5.56205 5.55378 5.56198 5.60138 5.69199 5.83339 5.99423 6.139 6.25109 6.33356 6.39925 6.46164 6.53036 6.60712 6.68563 6.75802 6.8166 6.85451 6.8558 6.79584 6.65565 6.43789 6.14981 5.68879 527.931 527.872 4.98172 5.41026 5.62059 5.66586 5.63204 5.58398 5.55172 5.53998 5.54539 5.56541 5.60176 5.66341 5.75936 5.88626 6.03505 6.18535 6.31261 6.41058 6.48854 6.55414 6.61236 6.66985 6.7327 6.80384 6.88116 6.95461 7.00768 7.0194 6.96763 6.83671 6.62422 6.31053 5.78186 528.692 527.916 5.15679 5.56202 5.71112 5.72966 5.69693 5.63656 5.56945 5.51421 5.47401 5.44882 5.44472 5.47581 5.55291 5.67686 5.84258 6.04151 6.2552 6.45553 6.614 6.72377 6.79646 6.83882 6.85729 6.86169 6.8592 6.8538 6.84263 6.81244 6.74444 6.62109 6.42519 6.11047 5.57348 530.884 528.09 5.21745 5.6103 5.82007 5.89086 5.86073 5.76835 5.66425 5.57898 5.50526 5.42693 5.34504 5.2733 5.23426 5.24534 5.30568 5.4113 5.5616 5.75242 5.97417 6.20955 6.44134 6.64604 6.79216 6.86519 6.87608 6.83633 6.75204 6.62806 6.46787 6.27263 6.03548 5.71874 5.25066 532.519 528.181 5.17511 5.52713 5.77043 5.93814 6.01514 6.02351 5.99289 5.94513 5.8763 5.76092 5.60217 5.44377 5.32178 5.23483 5.1617 5.09379 5.04457 5.03108 5.05909 5.13178 5.25803 5.43956 5.66242 5.9026 6.13493 6.32645 6.43595 6.4478 6.37068 6.21002 5.96792 5.62991 5.16415 533.294 528.17 5.12141 5.44848 5.68133 5.87786 6.00953 6.06842 6.07197 6.04055 5.9857 5.91382 5.8362 5.77279 5.74225 5.73756 5.71392 5.6314 5.5013 5.36194 5.22455 5.08148 4.95299 4.87712 4.86644 4.92044 5.04128 5.22468 5.44818 5.67324 5.84624 5.9055 5.83937 5.63902 5.24748 534.427 528.087 4.97219 5.34229 5.57869 5.75335 5.88886 5.97367 6.00786 6.00343 5.9765 5.94056 5.9028 5.86395 5.81924 5.75849 5.67166 5.5655 5.47537 5.44029 5.46074 5.49895 5.51625 5.49701 5.44181 5.35005 5.23519 5.13646 5.09538 5.1407 5.27704 5.44764 5.54456 5.49238 5.26464 533.921 527.99 4.76069 5.10261 5.34001 5.49919 5.61693 5.70702 5.77383 5.82288 5.85936 5.88396 5.89316 5.88291 5.8495 5.78727 5.6911 5.57052 5.45638 5.37684 5.33918 5.34055 5.36674 5.40436 5.45216 5.51038 5.57125 5.60961 5.59828 5.52711 5.42541 5.38031 5.43241 5.43586 5.2711 531.97 527.916 4.61563 4.91146 5.14506 5.31512 5.44914 5.56528 5.66651 5.74865 5.80517 5.83004 5.81754 5.76228 5.66689 5.5468 5.42379 5.32095 5.25547 5.23241 5.24925 5.29723 5.36196 5.43407 5.51475 5.60957 5.71966 5.8346 5.92467 5.94171 5.8502 5.68478 5.567 5.49042 5.29093 531.014 527.886 4.60348 4.88758 5.11399 5.28231 5.40451 5.49114 5.54414 5.55948 5.53354 5.47224 5.38924 5.30013 5.22065 5.16527 5.1421 5.15156 5.19079 5.25678 5.33832 5.41928 5.49746 5.58611 5.69821 5.84538 6.03224 6.21703 6.32534 6.31317 6.16483 5.89126 5.604 5.41606 5.17822 530.714 527.916 4.68513 4.95533 5.11758 5.20441 5.24127 5.24019 5.21051 5.1658 5.12074 5.0883 5.07776 5.09203 5.12865 5.18516 5.25863 5.33737 5.41173 5.48728 5.5723 5.65984 5.75198 5.88561 6.0737 6.26737 6.41978 6.51876 6.56144 6.52967 6.38244 6.08914 5.72006 5.44035 5.14743 530.175 527.949 4.69298 4.91746 5.03151 5.08442 5.0997 5.09904 5.10292 5.12366 5.16408 5.22209 5.29359 5.36899 5.43539 5.49215 5.54386 5.58632 5.62195 5.68502 5.80496 5.96255 6.11887 6.25683 6.37889 6.49022 6.59133 6.67578 6.72828 6.72177 6.61629 6.37727 6.0387 5.71798 5.34257 529.617 527.919 4.60388 4.81087 4.95286 5.06154 5.15073 5.23383 5.31235 5.38087 5.43055 5.45984 5.47552 5.48406 5.49684 5.53661 5.6239 5.75184 5.88944 6.01413 6.12487 6.22879 6.33083 6.43317 6.53578 6.63671 6.73246 6.81617 6.87523 6.88768 6.82012 6.63994 6.35815 6.03069 5.58509 529.377 527.876 4.58639 4.8392 5.05449 5.22225 5.33929 5.40945 5.44202 5.45365 5.45806 5.46299 5.47499 5.50776 5.57758 5.68855 5.82859 5.97247 6.10143 6.21284 6.31278 6.40814 6.50339 6.60017 6.69773 6.79376 6.88432 6.96253 7.01657 7.02644 6.96296 6.79938 6.54125 6.21386 5.73605 529.57 527.861 4.6682 4.97337 5.20787 5.3536 5.42852 5.45873 5.46558 5.46358 5.45992 5.45948 5.47138 5.51441 5.60626 5.75208 5.93637 6.11583 6.26093 6.37312 6.46739 6.55642 6.64762 6.74418 6.84558 6.94684 7.0397 7.1137 7.1549 7.14368 7.05636 6.87749 6.61817 6.28596 5.79254 530.299 527.888 4.75784 5.07255 5.29417 5.41512 5.46877 5.48292 5.4758 5.46104 5.44613 5.43502 5.43416 5.46045 5.53544 5.6718 5.86925 6.10032 6.31844 6.48771 6.6049 6.69272 6.76906 6.84446 6.92598 7.01352 7.0987 7.16614 7.19704 7.17121 7.06984 6.88427 6.62336 6.27634 5.75559 531.656 527.958 4.84197 5.14566 5.34336 5.44817 5.49523 5.5051 5.49285 5.46946 5.44315 5.41902 5.39905 5.38922 5.40766 5.4773 5.61222 5.81532 6.07069 6.34267 6.58973 6.77391 6.88675 6.95027 6.98655 7.00855 7.0231 7.0304 7.02039 6.97381 6.87031 6.69676 6.44916 6.10246 5.58939 533.189 528.026 4.90563 5.19019 5.37308 5.4834 5.52302 5.52388 5.51114 5.49366 5.47053 5.44194 5.41154 5.38169 5.35336 5.33524 5.34973 5.42032 5.56009 5.77262 6.04516 6.34722 6.63881 6.87192 7.00806 7.05026 7.02521 6.95465 6.85252 6.72476 6.56838 6.37472 6.13289 5.81276 5.36826 534.216 528.074 4.93816 5.19712 5.37348 5.51558 5.59033 5.60004 5.5674 5.51976 5.48046 5.45864 5.44667 5.43197 5.40928 5.37925 5.34247 5.30164 5.27307 5.28645 5.36502 5.52211 5.7585 6.05424 6.37293 6.66227 6.855 6.91132 6.85307 6.71574 6.52211 6.28567 6.01284 5.68659 5.27711 534.517 528.072 4.90309 5.18605 5.35736 5.49231 5.59763 5.65304 5.66072 5.63262 5.5807 5.51618 5.45431 5.41183 5.39536 5.39618 5.39944 5.39409 5.37454 5.33685 5.27983 5.22078 5.19501 5.23778 5.37717 5.61891 5.93769 6.27107 6.51966 6.60282 6.54242 6.38627 6.15254 5.83329 5.40523 534.369 528.038 4.82749 5.13638 5.31602 5.43934 5.54184 5.62111 5.66856 5.68458 5.67323 5.63796 5.58113 5.50763 5.43031 5.36923 5.33764 5.33342 5.34479 5.36016 5.3714 5.36985 5.34296 5.28013 5.19319 5.1265 5.14964 5.31926 5.63481 5.99402 6.2249 6.26726 6.1797 5.9651 5.57401 534.035 527.996 4.73806 5.04376 5.23328 5.36315 5.46705 5.55369 5.62467 5.67413 5.6987 5.69674 5.66655 5.60664 5.52051 5.42408 5.34422 5.29974 5.28535 5.2895 5.3026 5.32179 5.34651 5.37367 5.38803 5.35986 5.27221 5.16149 5.13603 5.31857 5.67561 5.96238 6.05052 5.97338 5.67586 533.971 527.958 4.67836 4.97525 5.1835 5.32673 5.4401 5.53515 5.61251 5.67019 5.70301 5.70597 5.67407 5.60613 5.5111 5.40836 5.32059 5.26604 5.24269 5.24043 5.24967 5.26568 5.28911 5.32464 5.37943 5.44527 5.48701 5.45715 5.33992 5.22622 5.33637 5.6717 5.90933 5.93735 5.70367 534.055 527.931 4.67986 4.9814 5.19611 5.34199 5.44723 5.52693 5.58384 5.61553 5.61698 5.58492 5.52291 5.44163 5.35587 5.28081 5.22832 5.20184 5.19622 5.20277 5.21534 5.23349 5.26063 5.30642 5.38451 5.5041 5.63642 5.71772 5.68735 5.52988 5.38094 5.48244 5.71148 5.79324 5.60588 533.713 527.927 4.70496 5.00218 5.18843 5.29807 5.36337 5.39966 5.41022 5.39542 5.35918 5.3094 5.25568 5.20748 5.17232 5.15391 5.1514 5.16024 5.1743 5.1917 5.21329 5.24133 5.29299 5.39394 5.54467 5.71692 5.87307 5.97901 6.00182 5.90573 5.70427 5.55992 5.59338 5.6291 5.481 532.709 527.928 4.66418 4.91372 5.04945 5.11879 5.15125 5.15846 5.14875 5.13098 5.11303 5.10085 5.09773 5.10448 5.11917 5.13725 5.15603 5.17561 5.19871 5.24076 5.32269 5.44271 5.57949 5.71812 5.85548 5.9896 6.11201 6.20869 6.25884 6.23202 6.10099 5.90603 5.76699 5.68322 5.5026 531.803 527.916 4.60237 4.7963 4.90465 4.97067 5.0093 5.03138 5.0474 5.06342 5.08098 5.09981 5.11832 5.13625 5.15682 5.18919 5.24933 5.34732 5.46812 5.58764 5.697 5.80025 5.90255 6.0061 6.11054 6.21322 6.3088 6.38858 6.43862 6.43609 6.35238 6.18503 6.00095 5.84163 5.60662 531.357 527.892 4.57843 4.77081 4.89741 4.9866 5.04318 5.07691 5.09493 5.10641 5.11819 5.13573 5.16878 5.23421 5.33963 5.47423 5.61077 5.72987 5.82796 5.91114 5.98883 6.06946 6.15887 6.25795 6.36173 6.46144 6.54735 6.60884 6.6315 6.59555 6.48373 6.30564 6.11392 5.92911 5.65994 531.819 527.89 4.62982 4.85588 5.01129 5.09409 5.12148 5.11994 5.11954 5.13071 5.15987 5.21821 5.31884 5.4584 5.62094 5.78098 5.91729 6.01948 6.09351 6.15344 6.20862 6.26699 6.33951 6.43498 6.55309 6.67791 6.7853 6.85319 6.86288 6.79935 6.65874 6.46202 6.25167 6.01449 5.64757 533.231 527.915 4.74147 4.99369 5.13175 5.17276 5.15839 5.13425 5.1313 5.15155 5.19813 5.28115 5.40602 5.56352 5.73974 5.9177 6.08149 6.21732 6.31704 6.38335 6.42567 6.45229 6.47048 6.49023 6.52585 6.58619 6.6608 6.72162 6.73777 6.68732 6.56637 6.38866 6.16674 5.86976 5.43676 534.928 527.974 4.86948 5.13018 5.25351 5.27679 5.23102 5.17012 5.13174 5.13088 5.15928 5.21303 5.30267 5.42925 5.58357 5.7561 5.93779 6.11907 6.28988 6.44034 6.56107 6.64385 6.68398 6.68129 6.64009 6.57068 6.48838 6.40482 6.3182 6.21404 6.07914 5.90881 5.69791 5.42438 5.0774 535.547 528.023 4.89689 5.16441 5.30226 5.36664 5.36829 5.32825 5.26424 5.19233 5.13655 5.11629 5.12985 5.1669 5.23038 5.32747 5.45494 5.60587 5.77442 5.95425 6.13769 6.31515 6.47538 6.60564 6.69183 6.72046 6.68476 6.58856 6.44435 6.26528 6.06089 5.83372 5.57878 5.29744 4.99621 535.305 528.024 4.826 5.11855 5.2623 5.34743 5.4057 5.43816 5.44504 5.42415 5.37435 5.30111 5.22109 5.15553 5.11632 5.10244 5.10656 5.12806 5.17362 5.24968 5.35582 5.48897 5.64378 5.81293 5.98658 6.15216 6.29523 6.3987 6.44338 6.41218 6.31163 6.15649 5.94559 5.66676 5.29971 535.004 527.987 4.71345 5.00809 5.17741 5.28594 5.3741 5.44998 5.51018 5.54579 5.55114 5.52437 5.46781 5.38984 5.30437 5.22619 5.16478 5.12126 5.09005 5.06746 5.05451 5.05379 5.07189 5.11589 5.19071 5.29741 5.43427 5.59758 5.77867 5.95535 6.08554 6.12544 6.07397 5.90346 5.52827 534.906 527.962 4.71546 5.02151 5.2257 5.35575 5.45284 5.53296 5.59589 5.63744 5.65166 5.63531 5.58886 5.51773 5.43174 5.34249 5.26127 5.19723 5.14851 5.11021 5.08066 5.05858 5.042 5.03097 5.0303 5.04365 5.07091 5.11783 5.20365 5.35309 5.56249 5.76097 5.85357 5.80289 5.50099 534.307 527.951 4.7637 5.08768 5.29184 5.41486 5.49439 5.54846 5.58121 5.59138 5.57685 5.53827 5.48024 5.40999 5.33529 5.26335 5.20147 5.15478 5.11959 5.09214 5.07192 5.05805 5.05503 5.0719 5.10971 5.15614 5.19301 5.20693 5.19877 5.19769 5.25704 5.39717 5.53312 5.56711 5.37938 532.976 527.956 4.76827 5.07503 5.24598 5.33401 5.3775 5.39305 5.38638 5.36156 5.32364 5.27802 5.22986 5.18378 5.14357 5.11235 5.08907 5.07112 5.05768 5.0508 5.05877 5.08894 5.14006 5.20438 5.27365 5.34008 5.39436 5.42587 5.42533 5.39118 5.34094 5.32547 5.3701 5.40376 5.30272 531.418 527.938 4.65998 4.8954 5.01792 5.08163 5.11252 5.12045 5.11345 5.09846 5.08107 5.06554 5.05447 5.04826 5.04642 5.04995 5.06284 5.09219 5.13847 5.19523 5.25553 5.31649 5.37823 5.44189 5.50805 5.57481 5.63626 5.68249 5.70149 5.68016 5.60854 5.5046 5.4297 5.39949 5.31229 531.054 527.913 4.59339 4.78183 4.8932 4.97374 5.02864 5.05576 5.06173 5.0578 5.05277 5.05112 5.05727 5.07716 5.11986 5.18451 5.25907 5.33114 5.39447 5.44931 5.49939 5.54837 5.59994 5.65901 5.73015 5.81361 5.90151 5.97845 6.02568 6.02468 5.96089 5.84207 5.7174 5.60527 5.42381 531.736 527.898 4.65749 4.8661 4.98982 5.07481 5.11262 5.10835 5.08699 5.06673 5.05378 5.05282 5.07289 5.12712 5.21245 5.31286 5.40953 5.48919 5.55051 5.59962 5.64055 5.67454 5.70529 5.73914 5.78475 5.85051 5.93398 6.01789 6.0783 6.09442 6.05602 5.96775 5.85206 5.69347 5.40651 533.592 527.875 4.68136 4.90104 5.02685 5.09484 5.10627 5.0939 5.08094 5.0759 5.08637 5.12599 5.20239 5.30477 5.41831 5.53043 5.63047 5.71121 5.77385 5.82277 5.85881 5.88157 5.89139 5.88804 5.87694 5.87122 5.8791 5.89342 5.89659 5.87286 5.81519 5.72655 5.60296 5.41049 5.11353 535.905 527.878 4.6942 4.93589 5.08001 5.17184 5.21049 5.21495 5.20587 5.2052 5.22687 5.27964 5.36241 5.46526 5.57725 5.69 5.79718 5.89356 5.97518 6.03976 6.08677 6.1161 6.12592 6.11309 6.07748 6.02469 5.9625 5.89453 5.8175 5.72628 5.6166 5.48322 5.31658 5.10093 4.81953 536.102 527.871 4.61369 4.89005 5.07034 5.20602 5.31475 5.38566 5.41145 5.40223 5.38216 5.37336 5.38548 5.41915 5.47211 5.54046 5.61955 5.70493 5.79236 5.87729 5.95467 6.01935 6.06676 6.09349 6.09776 6.07953 6.04008 5.98045 5.89934 5.79346 5.65597 5.47862 5.2573 4.98963 4.67237 534.213 527.883 4.6956 5.03511 5.26746 5.42304 5.52948 5.60241 5.64731 5.66686 5.6654 5.64913 5.62452 5.59696 5.57042 5.54768 5.53005 5.51849 5.51583 5.52643 5.55271 5.59196 5.63628 5.67533 5.69975 5.70301 5.68154 5.63411 5.56091 5.46247 5.33827 5.18723 5.00855 4.79962 4.54865 531.384 527.884 4.60045 4.88225 5.08024 5.21889 5.31741 5.38806 5.43883 5.4751 5.50049 5.51718 5.5263 5.52851 5.52431 5.5139 5.49696 5.47273 5.44018 5.39835 5.34736 5.2894 5.2286 5.16923 5.11282 5.05787 5.00186 4.94324 4.88212 4.82008 4.76084 4.71383 4.69414 4.69198 4.60049 525.723 527.846 4.40351 4.5773 4.71043 4.81189 4.88842 4.94623 4.99035 5.02414 5.0498 5.06887 5.08245 5.09143 5.09649 5.09803 5.09625 5.0912 5.08279 5.07087 5.05534 5.03689 5.01785 5.00199 4.99484 5.00162 5.02426 5.06005 5.10287 5.14562 5.18434 5.21837 5.24048 5.20644 4.99888 528.221 527.842 4.54088 4.76833 4.91342 4.99653 5.02687 5.02835 5.02415 5.02593 5.03638 5.05477 5.07909 5.10709 5.13714 5.1682 5.1995 5.23032 5.25992 5.28745 5.31199 5.33269 5.34981 5.36368 5.37408 5.38081 5.38292 5.37859 5.36575 5.34213 5.30578 5.25313 5.1713 5.02672 4.7703 533.092 527.891 4.74562 5.08305 5.29042 5.38387 5.39538 5.36998 5.33859 5.31314 5.29664 5.28977 5.29108 5.29636 5.3006 5.30047 5.29476 5.28324 5.26608 5.24381 5.2173 5.18906 5.16088 5.13348 5.10699 5.08107 5.05411 5.02377 4.98794 4.945 4.8929 4.82736 4.73978 4.6171 4.44725 531.411 527.845 4.38051 4.54832 4.68356 4.79554 4.89155 4.97869 5.06243 5.14191 5.20815 5.24823 5.25406 5.22831 5.18215 5.12865 5.07836 5.03805 5.0102 4.99505 4.99234 4.99945 5.01232 5.02769 5.04284 5.05482 5.06255 5.06568 5.06325 5.05311 5.03089 4.98832 4.91131 4.77761 4.55559 530.072 527.813 4.35231 4.48946 4.57355 4.62109 4.64783 4.66927 4.69868 4.74523 4.81084 4.88746 4.95973 5.01371 5.04527 5.06016 5.06805 5.07714 5.09147 5.11097 5.13283 5.15197 5.1623 5.16031 5.14638 5.12398 5.09867 5.07535 5.0554 5.03871 5.02402 5.00675 4.97379 4.88818 4.67531 531.573 527.864 4.58014 4.81011 4.95085 5.00724 5.01647 5.01608 5.02416 5.04411 5.07258 5.10344 5.13033 5.14952 5.15997 5.16223 5.15718 5.1457 5.12858 5.10532 5.07446 5.03505 4.98864 4.94001 4.89414 4.85361 4.82044 4.79478 4.77342 4.75094 4.72023 4.67278 4.60108 4.50307 4.37716 532.202 527.84 4.49458 4.72557 4.89789 5.01455 5.08401 5.12341 5.14736 5.16363 5.17475 5.18068 5.18072 5.17436 5.16129 5.1412 5.11384 5.07957 5.03958 4.99565 4.95026 4.90735 4.87343 4.85623 4.85673 4.87038 4.89026 4.90819 4.9169 4.91286 4.89498 4.85735 4.78111 4.6324 4.42111 530.233 527.836 4.44672 4.64852 4.80678 4.93149 5.02459 5.09076 5.13674 5.16863 5.19018 5.203 5.20756 5.20394 5.19214 5.17226 5.14456 5.10971 5.06894 5.02411 4.97731 4.93197 4.89067 4.85422 4.82198 4.79306 4.76775 4.74599 4.72835 4.71757 4.71626 4.72468 4.73072 4.69293 4.53178 528.815 527.864 4.56451 4.77916 4.8978 4.96292 4.99756 5.01576 5.02398 5.02436 5.01748 5.00366 4.98354 4.95807 4.92852 4.89629 4.86242 4.82818 4.79475 4.76317 4.73363 4.70687 4.68306 4.66206 4.64374 4.62816 4.61555 4.60591 4.59903 4.59406 4.58945 4.58359 4.57132 4.52612 4.39811 529.449 527.843 4.42306 4.57195 4.65596 4.70214 4.72244 4.72618 4.71922 4.70538 4.68746 4.6674 4.64654 4.62583 4.6061 4.58814 4.57229 4.55872 4.54762 4.5392 4.53364 4.53121 4.5325 4.5383 4.54832 4.56046 4.57176 4.57984 4.58349 4.58314 4.58032 4.57669 4.56845 4.52909 4.41068 529.974 527.808 4.23198 4.30354 4.35389 4.38855 4.41217 4.42804 4.43861 4.44572 4.45065 4.4543 4.4573 4.46014 4.46315 4.46656 4.4705 4.47506 4.48032 4.4864 4.49342 4.50157 4.51114 4.52226 4.53423 4.54498 4.55225 4.55675 4.56089 4.56424 4.56469 4.5598 4.54686 4.5174 4.42974 529.98 527.811 4.18052 4.21749 4.24988 4.27828 4.30237 4.32222 4.33855 4.3523 4.36439 4.37556 4.38634 4.3971 4.40806 4.4193 4.43105 4.44389 4.45833 4.47467 4.49302 4.51347 4.53662 4.56138 4.58136 4.58693 4.57242 4.55229 4.55737 4.59467 4.64067 4.6674 4.66001 4.61513 4.51758 530.463 527.853 4.22843 4.2808 4.32856 4.36381 4.38267 4.38931 4.39026 4.39066 4.3933 4.39921 4.40845 4.42043 4.43422 4.45025 4.47339 4.50991 4.55664 4.60155 4.63345 4.64951 4.65606 4.65963 4.66258 4.66457 4.66556 4.66523 4.6639 4.66016 4.64904 4.6246 4.58071 4.50973 4.39976 533.452 359.778 14.0355 14.1352 14.1814 14.1909 14.1815 14.1694 14.1709 14.194 14.2284 14.256 14.2686 14.2702 14.2668 14.2617 14.2561 14.2507 14.2461 14.2416 14.2369 14.2318 14.2266 14.2212 14.2154 14.2091 14.2027 14.1957 14.188 14.1793 14.1691 14.1568 14.1421 14.1247 14.1054 367.325 537.626 24.0657 24.3783 24.7131 24.9376 25.0569 25.1103 25.1199 25.0999 25.0619 25.0128 24.959 24.9061 24.8663 24.8375 24.8204 24.8123 24.8127 24.819 24.83 24.8446 24.8637 24.8854 24.904 24.9136 24.9089 24.8835 24.8298 24.7416 24.6089 24.415 24.1625 23.9174 23.7078 532.015 1051.51 149.366 36.6137 14.84 8.5184 5.57836 3.73888 2.48788 1.67044 1.13161 0.715737 0.379981 0.130819 0.521111 0.105156 0.246044 0.00338128 0.0952529 0.359221 0.34925 0.107573 0.131954 0.429146 0.911963 1.57703 2.4643 3.60857 5.01512 6.68187 8.7583 12.0055 19.4246 44.6619 162.03 1042.19 1051.71 166.042 47.4434 23.5348 16.942 14.2846 12.6891 11.4829 10.5334 9.77709 9.17428 8.6931 8.31692 7.9796 7.7423 7.56843 7.49516 7.48512 7.54321 7.68904 7.90825 8.14108 8.35813 8.5607 8.789 9.13027 9.72124 10.7274 12.2582 14.3948 17.8288 25.7277 52.2148 170.956 1044.26 1051.67 166.502 48.1284 21.8773 13.9941 10.9916 9.61852 8.79672 8.08165 7.31922 6.53223 5.82287 5.27516 4.87081 4.58627 4.42202 4.37402 4.43917 4.6148 4.90497 5.32632 5.8738 6.50418 7.17177 7.81929 8.38628 8.8649 9.37482 10.2144 11.9042 15.4912 24.2877 52.1817 171.17 1044.03 1051.77 178 56.7839 29.1418 20.8312 17.3945 15.4107 13.8522 12.4008 11.0259 9.81023 8.82063 8.03136 7.40346 6.9211 6.57298 6.35222 6.25353 6.27766 6.43654 6.74825 7.23318 7.91545 8.82616 9.9772 11.2664 12.5095 13.5869 14.5772 15.9659 18.9934 27.1787 54.956 174.742 1046.32 1051.69 175.281 57.0457 30.3715 21.4277 17.3017 14.8253 12.9387 11.3107 9.88782 8.67334 7.67088 6.88422 6.28569 5.84188 5.53773 5.36515 5.3183 5.39298 5.59013 5.91286 6.36808 6.9669 7.72494 8.68865 9.89714 11.279 12.7076 14.1311 15.8401 18.9814 27.0189 53.8531 172.936 1045.85 1051.7 183.528 63.0121 34.3899 25.3539 21.2875 18.4976 16.0739 13.9304 12.0622 10.4621 9.15895 8.1355 7.34392 6.75814 6.36052 6.13912 6.08661 6.19953 6.48449 6.95215 7.6184 8.49867 9.60861 10.9925 12.6414 14.4001 16.0654 17.5016 18.9953 21.9222 30.3578 59.5506 180.401 1047.49 1051.64 180.267 61.4558 34.628 26.1676 21.8905 18.7026 16.0082 13.6698 11.6294 9.91802 8.59519 7.60832 6.87297 6.3422 5.98508 5.7819 5.7226 5.80552 6.04081 6.445 7.0406 7.85668 8.92818 10.3058 11.9826 13.828 15.6968 17.4825 19.3773 22.5333 30.5778 57.7041 176.438 1047.5 1051.63 184.286 64.5847 36.5485 27.8536 23.4068 20.0892 17.2043 14.5965 12.3051 10.4311 9.02521 7.99385 7.23237 6.68712 6.3214 6.11319 6.0516 6.1355 6.37831 6.80203 7.43947 8.33678 9.54834 11.1626 13.2106 15.5231 17.8505 19.9538 21.8089 24.4872 32.3216 61.0461 181.183 1049.13 1051.62 180.394 62.5192 36.1758 27.8504 23.3444 19.7119 16.4089 13.5413 11.2684 9.61723 8.45738 7.6219 7.00887 6.56594 6.26275 6.0839 6.02367 6.08305 6.27264 6.61047 7.124 7.85499 8.86296 10.2327 12.0998 14.5118 17.2419 19.9625 22.5153 25.5894 32.8217 59.5449 178.385 1049.29 1051.66 179.72 61.358 35.6206 27.5733 22.8635 18.9732 15.731 13.2021 11.2956 9.87056 8.81097 8.00874 7.39282 6.93253 6.61144 6.42158 6.35986 6.42744 6.63393 6.99572 7.53847 8.3045 9.35877 10.7912 12.7497 15.3343 18.3742 21.4685 24.2157 27.1365 34.2431 62.0494 181.743 1050.77 1051.64 177.074 59.8945 34.9789 26.1069 20.9077 17.27 14.6173 12.6021 11.0093 9.73871 8.74281 7.96703 7.36449 6.91148 6.59432 6.40395 6.33458 6.38312 6.55211 6.84863 7.2863 7.8908 8.70834 9.81722 11.3567 13.5415 16.5448 20.2712 24.2609 28.3219 35.2481 60.8694 179.307 1051.22 1051.62 178.877 60.8032 34.5317 25.4689 20.799 17.7253 15.3494 13.3429 11.6269 10.2136 9.10335 8.24083 7.57453 7.0791 6.73625 6.53458 6.46779 6.53369 6.73634 7.08252 7.58152 8.24828 9.10792 10.2147 11.6391 13.4567 15.8201 18.9397 22.9438 27.9914 36.2986 62.5518 181.13 1051.74 1051.6 179.086 60.6974 34.0913 25.2587 20.9374 18.0693 15.7303 13.6686 11.8824 10.4172 9.26373 8.35999 7.65368 7.11504 6.72367 6.46814 6.34375 6.34939 6.49076 6.77752 7.22171 7.83976 8.65845 9.72066 11.0646 12.7228 14.7813 17.4228 20.9785 26.1494 35.4373 62.068 179.794 1051.44 1051.59 181.653 62.3325 34.9304 26.1847 22.0333 19.2104 16.7887 14.5748 12.6116 10.9724 9.67472 8.65773 7.85754 7.24008 6.7831 6.47463 6.3099 6.287 6.41218 6.69614 7.15148 7.79537 8.65982 9.78536 11.1776 12.8164 14.7302 17.0637 20.1844 25.024 34.5876 62.3271 180.558 1051.59 1051.56 182.292 62.9077 35.4047 26.7048 22.5379 19.6401 17.1257 14.8246 12.7818 11.0697 9.71504 8.66606 7.84816 7.21551 6.74425 6.42116 6.24037 6.19885 6.30219 6.56115 6.98887 7.60388 8.44129 9.55355 10.9654 12.6528 14.5985 16.8752 19.8009 24.3446 33.6558 61.2466 179.411 1051.69 1051.53 184.325 64.7078 36.478 27.5006 23.1512 20.0953 17.4494 15.0515 12.9436 11.1893 9.81381 8.74759 7.9107 7.26306 6.77972 6.44712 6.2602 6.21736 6.3267 6.6014 7.05597 7.70909 8.59435 9.7643 11.2454 13.0063 15.0081 17.283 20.0989 24.4152 33.5053 61.2452 179.841 1052.16 1051.5 183.614 64.6937 36.6547 27.5441 22.9263 19.6235 16.8519 14.4711 12.4792 10.868 9.60758 8.62911 7.85834 7.25197 6.78906 6.46096 6.26763 6.21184 6.3054 6.56542 7.01048 7.66313 8.55352 9.74279 11.2891 13.166 15.3079 17.6968 20.5401 24.7409 33.5328 60.8526 179.343 1052.68 1051.49 182.944 64.3695 36.2587 26.8196 21.9032 18.496 15.8441 13.7273 12.0268 10.6453 9.52219 8.61783 7.88557 7.29386 6.83301 6.50209 6.30569 6.24878 6.34446 6.61069 7.06731 7.7393 8.65731 9.87572 11.4731 13.4639 15.7616 18.2892 21.1856 25.3139 33.9479 61.3024 180.122 1053.52 1051.48 181.536 63.1503 35.0239 25.3448 20.387 17.1797 14.8668 13.0959 11.6646 10.4538 9.41807 8.55827 7.85436 7.28234 6.83818 6.52341 6.34313 6.3021 6.41248 6.69086 7.15595 7.83304 8.75519 9.97041 11.5719 13.6251 16.06 18.7733 21.834 26.02 34.5613 61.7969 180.658 1054.31 1051.49 180.857 62.2047 33.8318 24.0721 19.3055 16.4215 14.4218 12.8803 11.5894 10.4553 9.45812 8.61293 7.91601 7.35066 6.91225 6.60367 6.43094 6.3996 6.52216 6.81504 7.29638 7.99099 8.93216 10.1632 11.774 13.8502 16.3562 19.2001 22.4176 26.7165 35.2938 62.6583 181.665 1055.04 1051.5 180.047 61.1522 32.7928 23.1876 18.6896 16.0714 14.2764 12.8752 11.6753 10.596 9.61966 8.76379 8.04824 7.46641 7.01006 6.68421 6.49655 6.45331 6.56713 6.8543 7.33266 8.02642 8.96926 10.2066 11.8239 13.9168 16.4879 19.4707 22.8908 27.3868 36.0793 63.5273 182.509 1055.56 1051.51 179.648 60.502 32.1811 22.7542 18.4921 16.0928 14.468 13.1777 12.0296 10.9507 9.93737 9.02237 8.24503 7.61322 7.11781 6.76057 6.5489 6.48749 6.58738 6.86327 7.33125 8.01373 8.94358 10.1671 11.7688 13.8488 16.4365 19.5179 23.1555 27.947 36.9207 64.6079 183.446 1055.98 1051.52 179.539 60.1444 31.9263 22.7386 18.7066 16.4848 14.9649 13.7025 12.5176 11.3635 10.2655 9.2735 8.43153 7.75022 7.21651 6.8269 6.58756 6.50115 6.57683 6.82786 7.26859 7.91925 8.81017 9.98551 11.5288 13.5357 16.0501 19.1276 22.919 28.0304 37.3332 65.0708 183.576 1056.18 1051.53 180.426 60.681 32.2424 23.0997 19.1661 17.0272 15.5487 14.2707 13.0172 11.7667 10.5769 9.51449 8.62097 7.89183 7.31091 6.87927 6.60213 6.47977 6.51968 6.73418 7.13632 7.74468 8.58703 9.70373 11.1731 13.0776 15.4612 18.4376 22.2683 27.6704 37.4488 65.4237 183.665 1056.14 1051.52 182.301 62.0708 32.9783 23.7187 19.8272 17.7409 16.2691 14.927 13.5519 12.1654 10.8697 9.74186 8.80007 8.02645 7.40794 6.94557 6.64082 6.49045 6.49948 6.67881 7.03982 7.59911 8.38209 9.4331 10.8206 12.5984 14.8111 17.6018 21.3152 26.7953 36.8826 64.9613 182.976 1055.92 1051.5 183.854 63.5272 33.7814 24.3853 20.5212 18.4561 16.9473 15.5059 13.9993 12.4886 11.1049 9.92647 8.94449 8.13382 7.48536 6.99655 6.66645 6.48988 6.4709 6.62012 6.94822 7.47054 8.21041 9.21315 10.5422 12.2314 14.3073 16.9029 20.3985 25.7646 35.9851 64.2046 182.204 1055.63 1051.48 184.206 64.1259 34.1012 24.7638 21.0325 19.0254 17.4803 15.9362 14.3093 12.696 11.2405 10.017 9.00562 8.17592 7.51552 7.01754 6.67824 6.49081 6.45825 6.59061 6.89809 7.39538 8.10516 9.0743 10.3686 12.019 14.0363 16.5215 19.8324 24.9735 35.0385 63.1269 181.115 1055.48 1051.47 183.876 64.0496 34.076 24.9447 21.3708 19.3714 17.7176 16.0286 14.285 12.6046 11.1252 9.90597 8.91041 8.10039 7.46021 6.97944 6.65289 6.47402 6.44603 6.57897 6.88319 7.37317 8.07095 9.02342 10.2992 11.9315 13.9214 16.3408 19.5113 24.4246 34.2288 62.0643 180.086 1055.52 1051.47 183.502 63.8695 34.1133 25.1747 21.6278 19.4974 17.6549 15.8192 14.0114 12.3369 10.9006 9.73108 8.7811 8.01124 7.40395 6.94889 6.64191 6.47818 6.46178 6.60312 6.91309 7.40659 8.10623 9.05939 10.3399 11.9911 14.0089 16.438 19.5526 24.2989 33.826 61.3567 179.447 1055.81 1051.46 183.345 63.8954 34.3862 25.485 21.7629 19.3778 17.321 15.3698 13.5424 11.915 10.556 9.45745 8.56555 7.84681 7.28414 6.86807 6.59533 6.46261 6.47451 6.64097 6.97257 7.48375 8.19697 9.16087 10.4522 12.1184 14.1586 16.6093 19.7157 24.3718 33.678 60.9062 179.107 1056.23 1051.45 183.27 64.0784 34.8098 25.7877 21.7606 19.0885 16.8487 14.832 13.0305 11.4815 10.214 9.19157 8.36042 7.69451 7.17835 6.80399 6.56934 6.47281 6.51965 6.71952 7.08271 7.62327 8.36372 9.3565 10.6797 12.3735 14.4334 16.892 19.9821 24.5747 33.7395 60.8194 179.251 1056.72 1051.44 183.064 64.1883 35.1914 25.9815 21.6183 18.6786 16.2925 14.2364 12.4734 11.0084 9.82294 8.86588 8.09438 7.48524 7.02354 6.70164 6.51758 6.47089 6.56717 6.81516 7.22404 7.80636 8.58381 9.613 10.9706 12.6844 14.747 17.191 20.2415 24.7515 33.7678 60.7191 179.371 1057.14 1051.43 182.723 64.1974 35.4862 26.0449 21.3451 18.1689 15.6681 13.5979 11.8908 10.5132 9.40755 8.51923 7.8145 7.26987 6.87048 6.60908 6.48409 6.49643 6.6526 6.96071 7.42887 8.06783 8.89949 9.98291 11.3844 13.1116 15.1525 17.5413 20.5039 24.8925 33.765 60.6992 179.647 1057.5 1051.42 182.278 64.127 35.6701 25.9356 20.9006 17.5206 14.945 12.8982 11.2744 9.98493 8.95618 8.14285 7.51164 7.03879 6.7095 6.51685 6.45952 6.53983 6.76545 7.14394 7.68221 8.389 9.28918 10.4395 11.8878 13.6272 15.6382 17.953 20.7971 25.0284 33.7343 60.6832 179.948 1057.81 1051.42 181.765 63.9608 35.6315 25.55 20.2296 16.7285 14.161 12.199 10.6739 9.47407 8.53064 7.79818 7.24409 6.84549 6.58858 6.46759 6.48172 6.63503 6.93693 7.39478 8.01441 8.80237 9.78532 11.0173 12.5263 14.2857 16.2654 18.4959 21.208 25.284 33.8829 61.0502 180.776 1058.16 1051.41 181.161 63.5995 35.241 24.8519 19.3842 15.8925 13.4176 11.5678 10.1452 9.03576 8.17308 7.51426 7.02941 6.69787 6.50749 6.45375 6.53636 6.76114 7.13986 7.6801 8.38728 9.26628 10.3437 11.671 13.2575 15.0511 17.0086 19.1607 21.7493 25.6913 34.2607 61.8518 182.064 1058.59 1051.42 180.351 62.8715 34.4453 23.9274 18.5108 15.1528 12.8152 11.0809 9.75254 8.72066 7.92355 7.3229 6.89271 6.61519 6.47994 6.48355 6.62603 6.9151 7.36534 7.98524 8.78062 9.75553 10.9359 12.3712 14.0509 15.891 17.8321 19.911 22.3906 26.2313 34.8361 62.9699 183.589 1059.04 1051.42 179.42 61.8691 33.4337 23.0061 17.7958 14.6303 12.425 10.7774 9.51522 8.53648 7.78165 7.21693 6.8203 6.5768 6.47764 6.52004 6.70436 7.04037 7.54614 8.23253 9.10763 10.1766 11.4644 13.0196 14.8148 16.7294 18.6796 20.7069 23.0992 26.8605 35.5358 64.2227 185.066 1059.46 1051.43 178.587 60.8003 32.4412 22.2593 17.3198 14.3487 12.2547 10.6617 9.43669 8.4894 7.7561 7.20646 6.82156 6.58916 6.50204 6.55789 6.75758 7.11285 7.64548 8.37066 9.30147 10.4475 11.8348 13.5137 15.4459 17.476 19.4838 21.5024 23.8404 27.5392 36.2795 65.4102 186.275 1059.78 1051.45 178.212 60.026 31.7276 21.8186 17.1181 14.3053 12.3033 10.7492 9.52982 8.58507 7.85379 7.2979 6.90048 6.65181 6.54633 6.58231 6.76147 7.09698 7.61386 8.33336 9.2765 10.4614 11.9175 13.7068 15.7974 18.0027 20.1538 22.2445 24.5828 28.2439 37.0292 66.4427 187.183 1059.95 1051.46 178.547 59.8212 31.4267 21.6864 17.1538 14.4653 12.5439 11.0249 9.80026 8.84136 8.0958 7.51753 7.08956 6.80251 6.65098 6.63339 6.75296 7.02407 7.47354 8.12881 9.02017 10.178 11.6364 13.4737 15.6994 18.1321 20.5558 22.8697 25.3167 28.965 37.6937 67.11 187.594 1059.97 1051.47 179.583 60.2728 31.5487 21.8217 17.3715 14.7745 12.9315 11.4605 10.2426 9.25585 8.47917 7.87076 7.40232 7.06196 6.84252 6.74247 6.76793 6.93467 7.26971 7.80417 8.57508 9.62522 10.9996 12.7851 15.0431 17.6612 20.4307 23.1706 25.9587 29.7044 38.2273 67.2342 187.323 1059.85 1051.47 180.845 61.0508 31.8462 22.0395 17.6342 15.1269 13.3826 11.9898 10.8072 9.80951 9.00529 8.36514 7.85134 7.44534 7.13839 6.93259 6.83939 6.87604 7.06748 7.4446 8.0443 8.91406 10.1137 11.7316 13.8728 16.5546 19.6465 22.942 26.3436 30.466 38.7349 66.7436 186.158 1059.63 1051.47 181.881 61.8145 32.1384 22.2483 17.877 15.4503 13.8154 12.5396 11.4554 10.5038 9.68104 8.99294 8.41293 7.914 7.49361 7.16281 6.93933 6.8384 6.8798 7.09039 7.50063 8.15293 9.10879 10.4537 12.3153 14.8276 18.0176 21.7934 26.0419 31.0879 39.6043 66.2371 184.441 1059.29 1051.48 183.117 62.7845 32.4471 22.3664 18.0083 15.7056 14.2723 13.2112 12.2783 11.3772 10.5169 9.7323 9.02933 8.40173 7.85223 7.39808 7.05696 6.83608 6.74719 6.81102 7.04907 7.49492 8.20303 9.25429 10.7596 12.89 15.8228 19.6223 24.3604 30.4407 40.0429 65.9832 182.677 1058.71 1051.48 184.075 63.6462 32.6931 22.4484 18.2251 16.1738 15.0101 14.144 13.2847 12.3447 11.3742 10.4496 9.60001 8.83902 8.17503 7.62386 7.19839 6.896 6.72041 6.6864 6.80847 7.11301 7.64422 8.46671 9.67235 11.4203 13.9264 17.3594 21.9546 28.398 39.0646 65.6352 181.656 1057.91 1051.49 185.329 64.8254 33.2217 22.7951 18.7635 16.9812 16.0383 15.2861 14.3995 13.3008 12.127 11.0246 10.0308 9.15443 8.40586 7.79632 7.33228 7.00261 6.80327 6.7425 6.82941 7.08327 7.53595 8.2346 9.25094 10.7299 12.8786 15.8737 20.0257 26.2097 37.1886 64.6888 181.113 1057.07 1051.48 186.28 66.0418 34.0614 23.5317 19.7235 18.2303 17.475 16.682 15.5127 14.0587 12.6143 11.328 10.2036 9.24242 8.45362 7.83846 7.39317 7.09928 6.94544 6.93096 7.05659 7.33297 7.78323 8.44464 9.38367 10.7289 12.6366 15.2607 18.9506 24.6752 35.46 63.524 180.847 1056.53 1051.47 185.923 66.2459 34.5231 24.4536 21.2167 20.0627 19.2093 17.9331 16.1763 14.2926 12.6114 11.1823 9.9734 8.99091 8.22919 7.67509 7.31306 7.12057 7.08211 7.18891 7.4326 7.81211 8.33783 9.03577 9.97465 11.2573 12.977 15.2941 18.5934 23.8918 34.3473 62.6459 180.847 1056.52 1051.46 183.785 64.9478 34.7246 26.1393 23.5248 22.0788 20.3817 18.1947 15.8096 13.6387 11.8402 10.375 9.21006 8.32432 7.689 7.27628 7.0633 7.02985 7.16375 7.4581 7.909 8.50436 9.22601 10.0658 11.0336 12.1721 13.5916 15.519 18.4105 23.338 33.552 62.0671 180.945 1056.96 1051.47 180.532 62.922 35.306 27.8016 24.5959 21.9781 19.2517 16.5097 14.0146 11.9703 10.3706 9.13188 8.20133 7.53532 7.09934 6.86907 6.82789 6.96608 7.28286 7.77654 8.45664 9.32622 10.3381 11.4215 12.5096 13.5928 14.7674 16.2667 18.5916 22.9331 32.7427 61.5258 181.284 1057.73 1051.5 179.659 62.4682 35.7949 27.524 23.0775 19.6241 16.6424 14.0956 12.0261 10.4454 9.25936 8.36251 7.69509 7.22233 6.92855 6.81114 6.87182 7.11585 7.55629 8.20005 9.04669 10.1017 11.3707 12.7876 14.1801 15.3845 16.4496 17.6856 19.6513 23.5324 32.9076 61.9506 182.483 1058.7 1051.51 181.058 63.2752 35.6274 25.9745 20.7493 17.2013 14.5674 12.5539 11.007 9.83235 8.95107 8.28063 7.76586 7.38629 7.1409 7.04174 7.10624 7.35717 7.82664 8.53999 9.51317 10.7449 12.2301 13.969 15.8377 17.4811 18.6548 19.6581 21.3269 25.0991 34.588 64.1935 185.149 1059.7 1051.49 182.561 63.9065 34.917 24.3673 18.9705 15.6926 13.5035 11.9496 10.788 9.88161 9.15931 8.58615 8.12431 7.75143 7.47454 7.31394 7.29595 7.45224 7.82818 8.47549 9.44809 10.7893 12.5106 14.616 17.0959 19.6272 21.5123 22.4834 23.4879 26.6696 36.1825 66.2799 187.131 1060.41 1051.47 184.172 64.8601 34.6658 23.5697 18.1134 15.0071 13.0796 11.7998 10.89 10.1932 9.62135 9.12902 8.68794 8.28425 7.92528 7.63463 7.44427 7.38809 7.51451 7.89188 8.6038 9.75044 11.4338 13.7136 16.69 20.3703 24.099 26.6238 27.3966 28.3607 35.1352 63.6804 184.083 1060.64 1051.45 185.33 65.4333 34.1571 22.7213 17.39 14.5758 12.989 12.0339 11.4 10.9167 10.4891 10.0667 9.61696 9.13277 8.63026 8.14997 7.73602 7.41291 7.21808 7.21848 7.49225 8.14696 9.34185 11.2109 13.8455 17.7483 23.1777 28.6696 32.4108 33.841 37.0174 60.0166 179.331 1060.83 1051.45 185.579 65.7219 34.0069 22.7531 17.8937 15.5081 14.2244 13.4524 12.8922 12.3714 11.8114 11.2019 10.5303 9.84467 9.18771 8.58459 8.06726 7.64685 7.34297 7.20366 7.28052 7.64293 8.41063 9.78322 11.9907 15.3991 20.6272 27.0805 33.0739 37.2374 41.2077 60.8563 178.245 1061.44 1051.45 186.91 67.8135 36.1535 24.99 20.2083 17.791 16.4002 15.4417 14.573 13.6313 12.6772 11.7841 10.9399 10.165 9.47749 8.88154 8.37717 7.96526 7.66478 7.52212 7.57629 7.8659 8.44839 9.42952 11.0824 13.9023 18.2722 24.0823 30.4758 36.4842 43.1951 63.5238 178.984 1061.65 1051.44 187.677 69.2932 37.855 26.6699 21.8847 19.4044 17.793 16.4527 15.1351 13.8378 12.6695 11.6402 10.7048 9.85936 9.11625 8.49518 8.01869 7.69245 7.52541 7.53572 7.73662 8.14752 8.8068 9.79604 11.3223 13.7376 17.3514 22.2384 28.0423 34.3645 42.7 65.2562 181.295 1060.92 1051.44 186.093 67.489 36.6595 26.4073 22.1195 19.6277 17.6926 15.9492 14.3341 12.8878 11.6438 10.5788 9.67353 8.92763 8.34482 7.92936 7.68446 7.60583 7.69167 7.94133 8.35399 8.93815 9.72444 10.7923 12.32 14.5782 17.8279 22.203 27.5974 34.0393 43.5369 69.2013 188.327 1059.99 1051.44 182.662 63.9734 35.165 25.9595 21.5188 18.5435 16.2186 14.302 12.6994 11.361 10.252 9.34516 8.63081 8.11287 7.78284 7.63061 7.64731 7.82638 8.16385 8.65022 9.27726 10.047 10.9896 12.19 13.7977 16.0352 19.1455 23.2163 28.1502 34.3023 44.4779 73.1517 194.27 1059.56 1051.44 178.641 61.2444 34.1917 24.8868 19.9836 16.7774 14.4327 12.5863 11.092 9.89885 8.97641 8.29305 7.82323 7.5501 7.46186 7.54469 7.77927 8.16418 8.69583 9.35532 10.1282 11.0112 11.9983 13.1338 14.5704 16.6128 19.6689 23.9074 28.9721 34.8051 44.4929 73.7927 194.107 1060.13 1051.48 179.53 61.9295 34.2636 24.5164 19.5989 16.4172 13.9284 11.8279 10.1452 8.91941 8.07649 7.52681 7.2155 7.11286 7.20477 7.4846 7.93683 8.55026 9.3082 10.1761 11.1329 12.1505 13.183 14.225 15.3019 16.5262 18.2808 21.1533 25.6204 31.9902 42.4992 71.7702 190.951 1060.76 1051.5 181.147 62.716 34.2188 24.2124 19.2388 16.0308 13.5961 11.6953 10.2802 9.24199 8.47258 7.91272 7.52728 7.30264 7.24751 7.38812 7.74282 8.32312 9.14439 10.2064 11.5261 13.03 14.5002 15.8023 16.9664 18.0326 19.1693 20.7053 23.1674 27.7793 37.9625 67.8916 187.669 1061.31 1051.5 183.36 64.0924 34.7095 24.3852 19.2877 16.0558 13.6902 11.9169 10.634 9.71017 9.02782 8.51414 8.12524 7.84514 7.68254 7.665 7.82722 8.2097 8.85928 9.80805 11.08 12.7213 14.6733 16.6082 18.2587 19.4533 20.3552 21.6646 23.8701 27.5216 36.3031 65.9024 186.7 1062.77 1051.47 186.097 66.4349 35.9863 25.1858 19.7949 16.3944 14.0272 12.3796 11.2565 10.4808 9.90696 9.43757 9.01908 8.63734 8.31265 8.08676 8.00644 8.11493 8.46375 9.11136 10.1232 11.5673 13.5328 16.1017 19.0598 21.7653 23.2929 23.5227 24.3939 28.308 38.1415 67.293 182.314 1062.62 1051.44 186.452 67.3442 36.634 25.4989 19.6817 15.9922 13.6104 12.1541 11.3219 10.8566 10.5521 10.2629 9.90248 9.45487 8.96561 8.52354 8.21066 8.06753 8.13387 8.46619 9.12975 10.2114 11.8232 14.1134 17.2893 21.3713 25.5874 28.1849 28.0931 28.1747 35.7815 65.89 182.834 1061.1 1051.43 184.858 65.7297 34.6169 23.2324 17.6811 14.6258 12.9749 12.1638 11.8127 11.6408 11.4475 11.1466 10.7046 10.137 9.48329 8.81385 8.2337 7.81058 7.5748 7.57402 7.85791 8.49277 9.58378 11.2938 13.8679 17.712 23.1179 29.298 33.9586 35.3183 37.9152 63.2067 184.304 1060.59 1051.45 185.131 65.944 34.3821 23.1089 18.1191 15.6408 14.4582 13.9814 13.7792 13.4978 12.9718 12.232 11.3673 10.4908 9.65873 8.91306 8.2971 7.82707 7.52502 7.42978 7.5683 7.97146 8.69705 9.88862 11.8168 14.7794 19.01 24.5538 30.8046 36.1581 40.994 61.611 179.717 1061.18 1051.47 185.894 67.5985 36.3766 24.9509 19.9145 17.7384 16.9331 16.5416 15.9272 14.9196 13.7237 12.5094 11.3706 10.3293 9.41702 8.66683 8.10845 7.74253 7.56869 7.58938 7.797 8.18906 8.78429 9.66363 11.0023 13.0421 16.0395 20.159 25.3864 31.6187 39.9859 62.8335 180.175 1060.98 1051.5 182.793 64.2293 33.5489 24.0945 21.2507 20.1784 19.0925 17.4938 15.57 13.7078 12.0847 10.7156 9.60063 8.73719 8.11454 7.7159 7.51967 7.49884 7.63488 7.91085 8.31286 8.839 9.51065 10.3927 11.6192 13.3792 15.8564 19.181 23.4537 29.1724 38.8525 65.5889 185.848 1060.1 1051.57 174.958 56.1387 31.2277 25.0976 22.3277 19.8162 17.2316 14.8155 12.7262 11.0161 9.70138 8.77979 8.18089 7.8344 7.69582 7.72522 7.8828 8.14331 8.49008 8.90186 9.36517 9.88456 10.498 11.2956 12.4239 14.1103 16.6488 20.2535 25.0322 31.547 42.7257 72.9099 194.929 1059.47 1051.61 174.477 56.7319 33.6645 26.892 22.6798 18.9641 15.6713 12.9668 10.9511 9.58817 8.73672 8.24489 8.02086 8.01301 8.17878 8.47319 8.85158 9.2977 9.79344 10.3067 10.8157 11.3161 11.8422 12.4737 13.3286 14.6188 16.6508 19.7671 24.3127 31.0223 42.9044 74.3457 195.145 1059.42 1051.63 179.273 60.6429 35.2926 27.2948 23.0672 19.867 16.919 14.1789 11.9427 10.3875 9.38012 8.75329 8.42771 8.36203 8.52348 8.87203 9.35927 9.96198 10.6544 11.3903 12.1337 12.8654 13.5921 14.3588 15.196 16.2291 17.7114 19.951 23.3991 29.1604 40.8753 72.6891 192.424 1060.96 1051.63 184.376 64.712 36.9188 28.097 23.8973 20.8629 17.8902 14.988 12.6188 10.9776 9.89003 9.15583 8.67874 8.42906 8.40966 8.62838 9.07399 9.73429 10.5904 11.5836 12.6516 13.7482 14.82 15.8788 17.0241 18.3499 20.039 22.3935 25.7219 30.9274 41.9341 72.6065 186.123 1061.47 1051.59 190.978 70.2587 39.2499 28.8778 24.1577 21.1308 18.431 15.866 13.7601 12.2523 11.1988 10.3965 9.71968 9.13826 8.68141 8.39944 8.33259 8.50541 8.94248 9.65388 10.6314 11.8476 13.2628 14.8246 16.4787 18.1137 19.728 21.6822 24.7063 30.0561 40.9668 70.0743 181.295 1060.42 1051.51 194.037 74.7564 42.0086 30.8989 26.6953 23.9871 20.8564 17.5483 14.9678 13.3306 12.3778 11.7514 11.1462 10.4474 9.72041 9.09232 8.62898 8.34782 8.27023 8.42624 8.83355 9.51392 10.4931 11.7739 13.3415 15.1718 17.2165 19.4573 22.1279 26.2693 35.5094 64.1931 181.868 1057.76 1051.44 190.552 73.0607 41.5295 30.9107 25.934 21.7079 17.92 15.2878 13.8501 13.1888 12.8303 12.4501 11.8733 11.1338 10.3593 9.64893 9.05181 8.58218 8.2504 8.08915 8.12018 8.36566 8.84555 9.58103 10.5981 11.9323 13.6413 15.8263 18.696 22.8615 30.7453 54.617 170.891 1056.69 1051.44 185.184 66.8857 35.9672 25.1804 19.9644 16.8107 15.1108 14.5053 14.4901 14.5173 14.2807 13.7439 12.9447 12.0135 11.0856 10.2341 9.5013 8.90585 8.44969 8.15354 8.02905 8.07757 8.31129 8.76548 9.50216 10.612 12.2108 14.4373 17.5135 22.0669 30.4981 54.3261 169.209 1057.6 1051.47 185.281 66.7553 35.5603 24.4686 19.7327 17.8466 17.4881 17.6667 17.5353 16.8155 15.7021 14.3824 13.044 11.7803 10.6481 9.69592 8.96118 8.44007 8.12371 8.01532 8.10228 8.36059 8.77013 9.34872 10.1487 11.2221 12.6497 14.5674 17.2488 21.4585 29.9534 55.088 171.712 1057.79 1051.5 184.224 66.2136 35.242 25.4472 22.7526 22.2241 21.7094 20.3142 18.1929 15.9182 13.8359 12.0442 10.5709 9.43521 8.62913 8.12486 7.88267 7.85486 8.00667 8.30408 8.71269 9.20532 9.77275 10.4429 11.2711 12.3201 13.6647 15.4044 17.7983 21.7421 30.4565 57.6779 178.661 1058.01 1051.55 177.33 59.0897 33.7237 27.532 24.5782 21.5325 18.2045 15.0881 12.5237 10.6256 9.35034 8.55487 8.11732 7.95607 8.0079 8.21726 8.52989 8.9183 9.36452 9.84018 10.3257 10.8219 11.3637 12.0369 12.9619 14.2838 16.1519 18.6889 22.169 27.6529 38.8406 70.6045 194.856 1058.61 1051.67 166.43 52.2435 31.5065 24.2628 19.4213 15.7968 13.1567 11.2623 9.95736 9.13032 8.67291 8.48811 8.5132 8.71047 9.04064 9.45935 9.92877 10.4352 10.9509 11.4351 11.8645 12.244 12.6362 13.1481 13.9284 15.1904 17.1652 20.0901 24.3125 30.7915 43.1596 76.364 198.432 1060.32 1051.71 171.793 55.2643 32.3151 24.6985 20.3966 17.0573 14.1558 11.8151 10.1976 9.21638 8.66501 8.43166 8.47333 8.75408 9.22402 9.8219 10.4995 11.2411 12.0157 12.7759 13.4929 14.1564 14.8014 15.4664 16.2099 17.132 18.4456 20.46 23.7546 29.7686 42.5237 75.7934 195.6 1062.43 1051.72 182.403 62.6996 35.6685 26.7157 22.1034 18.7293 15.8077 13.3441 11.4431 10.0808 9.1758 8.61367 8.3248 8.30515 8.55972 9.06685 9.7779 10.6659 11.7024 12.8244 13.9844 15.1552 16.3509 17.6501 19.0795 20.6236 22.2823 24.2662 27.0327 31.9498 43.1927 73.8325 186.099 1063.53 1051.66 192.369 71.0928 39.3855 28.2334 23.0956 20.0161 17.566 15.4116 13.6391 12.2271 11.0467 10.0223 9.15115 8.4402 7.91678 7.62936 7.60451 7.85332 8.39373 9.2268 10.3357 11.6858 13.2311 14.9415 16.854 18.9183 21.1024 23.5845 26.8051 31.8369 42.1045 70.2189 179.682 1061.32 1051.57 192.597 73.7481 41.1965 29.8968 25.3731 22.5615 19.767 17.0436 14.9554 13.6301 12.7891 12.0885 11.2989 10.4044 9.55086 8.83938 8.29 7.89885 7.67345 7.64353 7.82771 8.24226 8.91485 9.86287 11.0767 12.5808 14.461 16.9246 20.4536 26.1421 37.1158 66.1265 182.616 1057.14 1051.48 185.602 73.1444 41.4224 30.0126 24.8187 21.0314 17.8007 15.5281 14.307 13.7366 13.3156 12.7766 12.0705 11.2361 10.3953 9.64193 9.00646 8.4912 8.09543 7.83797 7.73724 7.80487 8.05626 8.52122 9.22337 10.1866 11.4531 13.1389 15.5953 19.8744 29.2434 56.4614 173.511 1055.36 1051.46 190.004 71.228 38.2998 26.0372 20.5135 17.3616 15.5449 14.8272 14.8094 14.8922 14.7197 14.2424 13.506 12.5811 11.576 10.6175 9.7753 9.06142 8.47704 8.04166 7.77984 7.70419 7.81419 8.12161 8.66936 9.52663 10.7842 12.5635 15.1158 19.2675 28.0446 54.3453 171.081 1055.67 1051.49 186.15 68.0406 36.0288 24.0221 18.8257 16.6396 16.262 16.8664 17.4528 17.4512 16.8486 15.7612 14.3842 12.9457 11.6161 10.4441 9.46073 8.68034 8.09666 7.7247 7.57483 7.63824 7.89868 8.35125 9.03724 10.0319 11.3786 13.1378 15.5159 19.2698 27.2914 52.5233 169.06 1055.86 1051.51 183.244 65.7326 34.6362 23.4809 19.7599 19.3789 20.0152 20.1691 19.3061 17.7307 15.8296 13.9492 12.2993 10.9049 9.74441 8.81884 8.13626 7.6807 7.4383 7.4048 7.55962 7.87641 8.33985 8.97113 9.81544 10.907 12.2889 14.0312 16.333 19.9201 27.6115 52.3696 169.509 1056.3 1051.5 182.685 63.8195 33.7084 25.325 23.1217 21.9629 20.3668 18.219 15.8343 13.5774 11.7052 10.2437 9.11669 8.27953 7.70332 7.36047 7.22363 7.26506 7.46757 7.81273 8.27982 8.84941 9.5112 10.2873 11.2177 12.3345 13.6874 15.3724 17.6613 21.4353 29.7893 56.1963 175.774 1057.06 1051.48 181.226 62.989 35.3962 27.0107 22.5865 19.0766 16.0426 13.5074 11.5006 10.0082 8.93713 8.18888 7.70179 7.4334 7.35476 7.44247 7.66782 8.0115 8.46538 9.00989 9.6238 10.2909 11.0134 11.8174 12.7452 13.8616 15.2553 17.0433 19.5203 23.6937 33.0115 61.6504 183.604 1058.23 1051.47 179.479 62.7291 35.2603 24.9576 19.1797 15.3947 12.7579 10.8684 9.51199 8.56217 7.94012 7.57873 7.43285 7.47773 7.69097 8.04009 8.48155 8.99766 9.58365 10.2176 10.8794 11.5546 12.245 12.9878 13.8721 15.0353 16.6454 18.8573 21.905 26.6701 36.5622 66.32 188.585 1059.87 1051.49 178.229 61.2748 32.9535 22.351 17.0033 13.747 11.4877 9.85766 8.7254 7.97662 7.52361 7.32258 7.34993 7.58686 8.00397 8.55121 9.17336 9.85597 10.5945 11.3604 12.1286 12.876 13.5769 14.225 14.91 15.8088 17.1966 19.3934 22.7759 28.2046 38.8918 69.4788 191.004 1061.54 1051.52 177.728 59.6171 30.9609 20.852 16.111 13.33 11.3913 9.91177 8.78757 7.99436 7.47212 7.18356 7.12932 7.31376 7.72918 8.33884 9.08406 9.94097 10.9073 11.9507 13.0484 14.162 15.2012 16.0772 16.8228 17.5357 18.4623 20.0326 22.7478 27.5903 38.026 68.9038 190.097 1063.2 1051.54 179.351 59.9076 30.5969 20.6165 16.1655 13.6557 11.9123 10.5181 9.3541 8.42261 7.73038 7.25132 6.97888 6.92902 7.11673 7.54257 8.17183 8.95979 9.90802 11.0521 12.4218 13.9824 15.6606 17.31 18.7285 19.8537 20.6169 21.4616 23.229 27.1378 36.6597 66.6853 187.214 1064.17 1051.55 182.29 61.8897 31.6453 21.3829 16.8772 14.4164 12.7765 11.4857 10.356 9.34598 8.48756 7.80145 7.28198 6.93668 6.78509 6.84797 7.14053 7.67069 8.41204 9.32654 10.4613 11.8766 13.7037 16.0055 18.5241 20.9616 22.9299 24.1475 25.1831 27.744 36.0853 65.5734 185.913 1064.2 1051.53 185.962 65.6759 34.2634 23.2609 18.2423 15.4744 13.7269 12.444 11.347 10.3365 9.42181 8.63424 7.97821 7.4548 7.06916 6.83217 6.76548 6.89737 7.28239 7.93306 8.79903 9.91072 11.33 13.2117 15.8026 19.0235 22.3258 25.2075 27.476 30.0806 36.9342 64.2347 185.033 1063.47 1051.49 188.654 68.8876 36.2316 24.1483 18.6238 15.7708 14.1954 13.1635 12.2624 11.342 10.433 9.59556 8.85777 8.23225 7.71433 7.30328 7.01512 6.8618 6.8727 7.11243 7.65319 8.50289 9.63456 11.1349 13.1879 16.0788 19.7114 23.3965 26.824 30.5262 37.5231 62.2052 181.153 1062 1051.47 186.518 67.1134 34.4993 22.5276 17.6316 15.6194 14.7805 14.2309 13.5374 12.6151 11.593 10.6134 9.73289 8.96403 8.3014 7.74519 7.31384 7.01408 6.85954 6.89224 7.16574 7.75121 8.68257 9.95861 11.7175 14.1922 17.4783 21.0964 24.7631 28.9622 36.447 60.1972 177.282 1060.53 1051.48 183.467 64.5744 32.8336 21.8138 17.9792 16.7797 16.2864 15.6662 14.7008 13.4921 12.2436 11.0801 10.0501 9.16731 8.4197 7.80582 7.33997 7.0239 6.86649 6.89887 7.1514 7.65796 8.46274 9.6333 11.2729 13.5425 16.505 19.8534 23.3913 27.6017 35.1944 58.7934 175.394 1059.82 1051.49 183.321 64.6037 33.4548 23.2656 19.9569 18.6724 17.6396 16.3625 14.8792 13.3626 11.9466 10.697 9.644 8.7783 8.07035 7.51079 7.10677 6.86233 6.79302 6.92789 7.29002 7.90109 8.78218 10.0015 11.6886 13.9439 16.7167 19.8059 23.1141 27.1854 34.7735 58.6508 176.032 1059.96 1051.49 183.809 65.352 34.9558 25.3531 21.7733 19.6167 17.645 15.6984 13.8781 12.2584 10.867 9.70655 8.76883 8.02545 7.44738 7.03027 6.78154 6.70875 6.82996 7.16573 7.72941 8.52435 9.56702 10.941 12.7524 15.0099 17.6296 20.5006 23.6045 27.5661 35.2611 59.925 178.932 1060.58 1051.48 183.947 66.0411 36.3977 26.6953 22.1402 18.9401 16.2959 14.075 12.2426 10.7529 9.55408 8.59951 7.85657 7.29925 6.91198 6.69524 6.656 6.80395 7.15861 7.73183 8.51013 9.47334 10.6831 12.2196 14.0751 16.2313 18.6746 21.3709 24.3927 28.4441 36.5058 62.4002 183.219 1061.2 1051.47 183.775 66.1953 36.7732 26.329 20.8177 17.09 14.3472 12.2728 10.6805 9.44522 8.48374 7.74353 7.19583 6.82763 6.63691 6.62961 6.80904 7.18171 7.76662 8.53707 9.45528 10.5729 11.9446 13.5275 15.2844 17.267 19.5275 22.0922 25.1088 29.3644 37.9615 65.3628 187.408 1061.62 1051.47 182.888 65.2553 35.6436 24.6091 18.8372 15.2269 12.7583 10.9682 9.61876 8.58311 7.79262 7.21137 6.82322 6.62487 6.61932 6.80863 7.18217 7.73876 8.4733 9.34866 10.3818 11.6305 13.0764 14.6072 16.2151 18.0124 20.1079 22.5802 25.6015 29.9703 38.9575 67.7622 190.308 1062.13 1051.47 181.367 63.4219 33.7467 22.7645 17.2967 14.0453 11.8512 10.2357 9.00709 8.07248 7.37957 6.9051 6.64067 6.58675 6.74476 7.1046 7.63474 8.3168 9.14025 10.0931 11.2106 12.5121 13.9412 15.3844 16.8225 18.3946 20.276 22.6574 25.7515 30.2519 39.4391 69.1013 191.512 1062.93 1051.48 180.075 61.6466 32.1124 21.5617 16.5598 13.6159 11.554 9.97788 8.76878 7.85392 7.18451 6.74428 6.53178 6.55443 6.81726 7.30447 7.96667 8.75702 9.66721 10.7153 11.9245 13.2953 14.7405 16.1047 17.3274 18.5245 19.9241 21.9192 24.9351 29.6982 39.2908 69.3828 191.384 1063.81 1051.5 179.806 60.8475 31.3475 21.1723 16.4922 13.7262 11.7271 10.1394 8.88459 7.92004 7.19934 6.70577 6.44356 6.42845 6.67937 7.19893 7.9227 8.79017 9.81353 10.9817 12.3214 13.8709 15.5313 17.0762 18.3242 19.259 19.9855 21.0884 23.373 27.9318 37.9436 68.4961 190.44 1064.56 1051.51 180.681 61.2355 31.4997 21.4542 16.898 14.1923 12.207 10.593 9.27443 8.23476 7.42968 6.83087 6.44362 6.28629 6.38686 6.77298 7.42195 8.27523 9.33508 10.594 12.0412 13.7371 15.7263 17.7712 19.5287 20.8275 21.4202 21.6691 22.7384 26.2538 35.9166 66.6915 188.864 1065.07 1051.51 182.382 62.7685 32.5172 22.2817 17.6277 14.8526 12.8211 11.1733 9.81111 8.70931 7.82497 7.12497 6.60843 6.28722 6.1837 6.32823 6.75529 7.45285 8.3798 9.55669 10.9905 12.689 14.7591 17.2777 19.8688 22.1133 23.5742 23.9215 24.0629 26.0943 34.4769 64.858 187.3 1065.25 1051.5 184.355 64.8901 33.8876 23.1674 18.2954 15.4144 13.3462 11.6934 10.3296 9.20531 8.27517 7.51095 6.90738 6.46758 6.20346 6.13227 6.28414 6.71395 7.43564 8.38636 9.61147 11.1379 13.034 15.436 18.4246 21.6339 24.3813 25.9678 26.402 27.4461 33.8651 62.4494 184.955 1064.81 1051.48 185.272 65.9088 34.3355 23.271 18.3875 15.5954 13.6221 12.0448 10.7305 9.61862 8.67456 7.88302 7.23585 6.73237 6.37953 6.18469 6.16384 6.35269 6.82571 7.59433 8.59439 9.88173 11.5381 13.6603 16.3645 19.7245 23.1907 26.0156 27.6888 29.0049 34.0705 59.6671 181.577 1063.89 1051.47 184.117 64.8541 33.5296 22.8221 18.3028 15.7396 13.8759 12.3439 11.0355 9.91297 8.95563 8.14703 7.47626 6.9408 6.54632 6.29841 6.21021 6.30936 6.65151 7.28975 8.19917 9.35618 10.8668 12.8316 15.3091 18.3956 21.7755 24.9489 27.5087 29.7214 34.7615 58.3759 179.493 1062.93 1051.47 182.528 63.8204 33.2835 23.0743 18.6951 16.0634 14.0748 12.4386 11.0675 9.91877 8.95838 8.15791 7.49837 6.97349 6.58855 6.35213 6.2823 6.41108 6.79717 7.48296 8.43044 9.62105 11.1581 13.1231 15.5891 18.4946 21.4655 24.3307 26.9775 29.7935 35.6051 59.4953 180.999 1062.34 1051.47 182.579 64.3419 34.1804 23.8825 19.1106 16.0998 13.8705 12.1263 10.734 9.60923 8.69202 7.94119 7.33285 6.8609 6.53486 6.37201 6.3992 6.65833 7.21506 8.0668 9.14364 10.4897 12.1926 14.3413 16.8915 19.5568 22.1382 24.5212 26.8202 29.7664 36.4216 61.9838 184.829 1062.22 1051.47 183.283 65.14 34.843 24.0401 18.7447 15.4479 13.1473 11.446 10.1362 9.09734 8.25933 7.58222 7.04617 6.65005 6.41402 6.37214 6.56403 7.04016 7.82509 8.86216 10.1312 11.6949 13.663 15.9915 18.4599 20.9496 23.2808 25.3239 27.3898 30.4917 38.0839 66.2293 190.222 1062.69 1051.47 183.354 64.8815 34.248 23.0638 17.6092 14.3899 12.2621 10.7263 9.53722 8.5817 7.80925 7.19375 6.72534 6.41262 6.28593 6.3879 6.75834 7.43218 8.39597 9.60265 11.0686 12.8592 14.998 17.2851 19.6403 22.0195 24.2107 26.0608 28.103 31.5733 40.1345 70.1049 193.245 1063.6 1051.47 182.505 63.4747 32.6606 21.5586 16.3884 13.4995 11.62 10.2219 9.09794 8.18138 7.44979 6.88234 6.46869 6.22028 6.1688 6.35638 6.82248 7.57844 8.61263 9.93936 11.5809 13.5844 15.8457 18.1342 20.4536 22.8299 25.0514 26.7569 28.4565 31.8816 41.4068 72.4151 188.936 1064.85 1051.48 181.276 61.7147 31.0057 20.3648 15.6778 13.111 11.3855 10.0401 8.9302 8.02179 7.30119 6.74431 6.338 6.09141 6.02892 6.18234 6.58463 7.26254 8.21846 9.48467 11.1332 13.1836 15.5723 18.0732 20.5283 22.999 25.4558 27.5649 29.2893 32.024 41.225 72.5696 187.695 1066 1051.48 180.672 60.8265 30.2273 19.9833 15.6359 13.2449 11.5672 10.2061 9.06751 8.13807 7.39198 6.80116 6.35766 6.06753 5.9459 6.01236 6.2835 6.79573 7.56526 8.57935 9.92584 11.6791 13.8824 16.4909 19.1778 21.7123 24.0193 26.1628 28.4128 31.5105 39.8268 69.709 184.273 1066.55 1051.49 180.844 61.0883 30.4967 20.3918 16.1362 13.7608 12.0637 10.6671 9.48561 8.50701 7.70373 7.05066 6.54049 6.17488 5.96428 5.92424 6.06671 6.41555 7.01223 7.83555 8.87304 10.2225 11.9547 14.1854 16.8441 19.4963 21.813 23.6765 25.5481 28.7008 37.0635 66.2828 181.432 1065.87 1051.49 182.133 62.7126 31.7389 21.2134 16.688 14.1662 12.4212 11.0288 9.86168 8.88683 8.07199 7.39022 6.83269 6.40112 6.10665 5.96607 5.99406 6.2122 6.66567 7.36313 8.25781 9.37414 10.7881 12.5725 14.7945 17.272 19.7023 21.8078 23.5982 26.2249 33.7855 62.4312 183.72 1064.45 1051.49 183.719 64.3322 32.7286 21.6558 16.8993 14.3268 12.6082 11.2695 10.1559 9.21609 8.41574 7.73079 7.15112 6.6781 6.32375 6.10686 6.04648 6.16515 6.50714 7.11656 7.96015 9.0014 10.3063 11.9099 13.8529 16.0168 18.2234 20.3561 22.3345 24.8806 31.5789 58.3171 179.986 1062.59 1051.48 183.69 64.1835 32.4528 21.3743 16.7258 14.2553 12.6118 11.341 10.2872 9.39113 8.61903 7.94955 7.37148 6.88615 6.50699 6.25589 6.15835 6.24496 6.56882 7.18401 8.05178 9.12673 10.4813 12.1343 14.1087 16.2173 18.2158 20.0707 21.8544 24.25 30.4759 55.827 177.415 1061.47 1051.48 182.443 63.1595 31.9031 21.2 16.7551 14.3527 12.7082 11.4233 10.3634 9.47111 8.71098 8.05607 7.48909 7.00741 6.62517 6.37026 6.27985 6.40179 6.81204 7.54074 8.51666 9.73386 11.2498 13.0863 15.2241 17.3929 19.3513 21.0576 22.643 24.9207 31.206 56.9647 179.567 1061.35 1051.48 182.277 63.394 32.4416 21.7769 17.1572 14.5207 12.6905 11.3022 10.2098 9.33022 8.60454 7.9887 7.45384 6.99388 6.63073 6.40888 6.38516 6.63094 7.23963 8.19288 9.38552 10.8597 12.6442 14.7657 17.0281 19.1676 21.0538 22.6742 24.2618 26.776 33.9245 62.1936 186.251 1062.63 1051.48 183.506 64.6668 33.4078 22.2405 17.1527 14.2354 12.311 10.9437 9.91685 9.1043 8.43347 7.857 7.34337 6.89788 6.56434 6.4081 6.50316 6.93569 7.74832 8.87858 10.2985 12.0059 14.0683 16.3583 18.5985 20.6496 22.3604 23.8262 25.5539 28.577 36.7721 66.8911 190.167 1064.02 1051.48 183.599 64.5231 32.9166 21.4643 16.3169 13.5288 11.7938 10.5869 9.66132 8.89796 8.24391 7.67255 7.17204 6.75828 6.4846 6.42007 6.6342 7.20328 8.15077 9.4135 10.99 12.8768 15.1034 17.4795 19.7786 21.8563 23.4347 24.4835 25.8856 29.3018 38.9728 70.688 188.352 1066.28 1051.48 184.497 65.0401 32.8811 21.1557 16.0101 13.3117 11.6518 10.4844 9.57256 8.80985 8.14964 7.57354 7.08035 6.69355 6.46313 6.45078 6.71603 7.31703 8.27215 9.55652 11.1904 13.1984 15.5785 18.1353 20.7051 23.1995 25.3021 26.436 27.221 30.5099 41.922 75.3847 191.218 1067.75 1051.47 184.814 65.2904 32.8763 21.0225 15.9296 13.3183 11.7168 10.5776 9.66756 8.88609 8.19781 7.59832 7.09793 6.71574 6.48127 6.43427 6.61605 7.07849 7.84654 8.90592 10.2863 12.0567 14.2494 16.7191 19.3559 22.0893 24.6855 26.6564 28.1343 31.4284 42.6067 75.2295 188.901 1067.35 1051.47 185.881 67.016 34.4763 22.0215 16.4244 13.5763 11.8977 10.7343 9.80824 9.01405 8.32442 7.73522 7.24389 6.85285 6.57929 6.45469 6.51339 6.79304 7.33031 8.12161 9.15113 10.4446 11.9815 13.6874 15.5629 17.6452 19.9648 22.5433 25.5703 30.2676 41.1845 71.9783 184.327 1065.36 1051.47 186.978 68.3594 35.6406 22.6739 16.6001 13.5358 11.8562 10.7846 9.96743 9.2752 8.67335 8.14546 7.67352 7.2534 6.90636 6.67274 6.59716 6.71841 7.06765 7.67492 8.53511 9.61754 10.843 12.0414 13.1303 14.1468 15.2147 16.6048 18.8959 23.4123 34.0667 64.7244 183.337 1062.25 1051.46 185.492 67.5499 35.6453 23.174 17.2403 14.1058 12.2937 11.1103 10.2395 9.55835 9.01012 8.54174 8.10592 7.68754 7.30782 7.00933 6.83976 6.83747 7.02006 7.4194 8.05515 8.89175 9.85406 10.8077 11.6159 12.2229 12.656 13.0353 13.6981 15.563 21.802 46.9776 167.384 1058.72 1051.46 184.759 67.526 36.377 24.3752 18.5535 15.2743 13.2413 11.9087 11.0032 10.35 9.81632 9.30739 8.78128 8.24931 7.75511 7.35587 7.1075 7.05373 7.23012 7.67427 8.37337 9.32346 10.5497 11.9909 13.2858 14.1562 14.6529 15.0051 15.6354 17.6839 25.259 55.3008 180.591 1060.1 1051.46 185.6 67.9063 36.3441 24.1085 18.1717 14.8463 12.7976 11.427 10.4148 9.57807 8.82474 8.12912 7.51345 7.03879 6.78942 6.83163 7.16535 7.7513 8.58751 9.69885 11.0902 12.7001 14.3281 15.6656 16.3651 16.4136 16.5387 17.5139 19.7727 24.5429 36.3977 70.1263 189.446 1065.91 1051.47 185.909 67.1145 34.7375 22.117 16.0612 12.6918 10.5582 9.05256 7.92307 7.08598 6.53448 6.27776 6.29684 6.52519 6.83261 7.08998 7.30279 7.57313 8.0062 8.73132 9.86887 11.4537 13.3662 15.2935 16.7838 17.4778 17.6674 18.3246 20.4439 25.4841 37.6042 70.2921 186.04 1069.19 1051.47 183.278 64.4788 32.4166 19.8881 13.7207 10.2247 8.10929 6.8329 6.12347 5.82009 5.80709 5.98204 6.25288 6.53821 6.77048 6.93991 7.09662 7.30536 7.60651 8.05462 8.73139 9.7315 11.1068 12.7833 14.5106 15.9363 16.9265 17.9566 20.0937 25.2127 37.554 69.9713 184.551 1067.35 1051.47 179.739 59.658 26.7211 13.8906 8.40667 6.23109 5.51595 5.43925 5.67987 6.13785 6.74625 7.37281 7.84658 8.04659 8.01221 7.84744 7.64149 7.49516 7.51188 7.80112 8.43243 9.42402 10.7407 12.289 13.9151 15.4419 16.7942 18.2332 20.6047 25.7139 37.5463 68.4589 181.423 1066.12 1051.48 176.496 55.006 22.1948 11.1084 7.4855 6.33189 5.91033 5.71174 5.69981 5.90318 6.30354 6.84214 7.42274 7.94217 8.3109 8.51781 8.57281 8.48912 8.26074 7.9299 7.60159 7.47506 7.77252 8.63527 10.0921 12.0259 14.2124 16.4993 19.1189 23.3064 33.0467 61.9163 175.29 1064 1051.49 179.53 58.9792 26.0754 13.6949 8.57584 6.52368 5.76055 5.50305 5.41314 5.3654 5.35046 5.41272 5.60122 5.92785 6.36758 6.89408 7.47774 8.07648 8.62863 9.08681 9.40528 9.52784 9.4032 9.09355 8.87382 9.10885 10.0743 11.961 15.072 20.378 31.3683 61.4433 176.206 1064.78 1051.49 179.661 58.4647 25.0805 12.9132 8.38017 6.83223 6.38649 6.30679 6.32117 6.33893 6.32743 6.26553 6.14427 5.9866 5.85513 5.83016 5.97469 6.30819 6.82197 7.50879 8.38539 9.34703 10.2643 10.994 11.4174 11.6557 12.0654 13.1684 15.6676 20.8064 32.0814 62.662 178.097 1069.47 1051.48 182.682 62.7892 30.0421 17.6981 12.4303 10.1134 9.09781 8.65082 8.43638 8.30104 8.17853 8.04495 7.89341 7.72472 7.54784 7.37163 7.2042 7.065 6.92057 6.74474 6.59462 6.67929 7.17129 8.15549 9.56688 11.0346 12.2734 13.2883 14.6411 18.0016 27.8287 58.3552 175.635 1067.95 1051.47 186.651 69.3005 38.078 26.1957 20.5612 17.4349 15.468 14.0926 13.0438 12.1859 11.4416 10.7715 10.1628 9.61192 9.11608 8.67425 8.28361 7.96563 7.73719 7.66713 7.72729 8.10897 8.67108 9.18294 9.69001 10.7322 12.6011 15.1788 18.3924 23.385 34.6127 66.3819 182.691 1067.19 1051.48 184.093 72.5044 42.0424 29.8104 23.5468 19.769 17.2155 15.3457 13.8955 12.7195 11.7344 10.8972 10.187 9.59248 9.10573 8.71746 8.41176 8.18993 8.0284 7.90238 7.78733 7.66432 7.54917 7.49706 7.63859 8.23223 9.6347 11.9702 15.2952 20.2422 30.2755 59.1685 174.763 1064.67 1051.51 194.305 75.3307 41.2707 27.2738 20.3328 16.4178 13.9733 12.3251 11.1338 10.215 9.47681 8.87556 8.38827 8.00172 7.70582 7.48727 7.33042 7.21045 7.10349 6.97298 6.78313 6.5252 6.19627 5.74307 5.07126 4.18653 3.18192 2.3406 2.77286 6.50161 18.2896 52.2278 179.128 1060.38 1051.62 179.486 56.5548 25.7077 17.5276 14.9207 13.3669 12.3483 11.7619 11.2161 10.4979 9.67947 8.89216 8.20421 7.63087 7.1654 6.79637 6.5179 6.35172 6.25453 6.23013 6.30501 6.51368 6.90355 7.54352 8.54133 10.0707 12.4057 15.9835 21.5791 30.7499 47.2892 83.4317 199.1 1063.51 537.598 23.9877 24.1478 24.1893 24.2043 24.2167 24.2183 24.2079 24.191 24.1736 24.1574 24.1417 24.126 24.1103 24.0948 24.0797 24.0651 24.0512 24.0382 24.0256 24.0135 24.0019 23.9907 23.9798 23.9689 23.9576 23.9456 23.9323 23.9175 23.9014 23.8866 23.8795 23.8922 23.9339 549.526 537.62 23.8814 24.0114 24.2043 24.3713 24.4803 24.5538 24.6018 24.6231 24.6192 24.6098 24.6029 24.5977 24.5934 24.5896 24.5868 24.5841 24.5812 24.5792 24.5768 24.5741 24.5721 24.5706 24.5673 24.561 24.5492 24.5248 24.4794 24.4093 24.3109 24.1718 23.9888 23.8132 23.6676 532.489 1051.51 160.702 42.4197 16.2701 7.71559 4.08915 2.44583 1.6819 1.24294 0.87548 0.535745 0.261496 0.0915838 0.0533721 0.169086 0.380441 0.373745 0.296913 0.645148 0.617089 0.214449 0.202402 0.419923 0.758039 1.18916 1.69683 2.2983 3.10472 4.38651 6.64498 10.8931 20.2508 48.0922 166.337 1043.73 1051.57 168.32 47.2341 19.9882 12.198 9.44129 8.25283 7.62864 7.24963 7.00363 6.81762 6.6542 6.50569 6.3745 6.26438 6.18068 6.1454 6.16244 6.2145 6.31907 6.46487 6.61752 6.76996 6.92503 7.09364 7.3013 7.5915 8.02629 8.72149 9.99984 12.8766 20.9348 48.8661 169.07 1044.28 1051.57 174.326 53.5785 24.0918 14.2947 10.1708 8.07297 6.83174 5.99907 5.3838 4.89741 4.50491 4.19393 3.95729 3.79085 3.69175 3.65741 3.6857 3.77592 3.92897 4.14633 4.42818 4.77633 5.19511 5.68084 6.23348 6.88497 7.72539 8.95566 11.0373 15.1703 25.0859 54.9224 175.129 1045.27 1051.59 175.443 55.281 26.6641 17.1635 12.9967 10.7491 9.3421 8.34824 7.57843 6.95372 6.44026 6.02078 5.68619 5.43178 5.25575 5.15845 5.14026 5.20279 5.3491 5.57993 5.89549 6.29678 6.78434 7.35899 8.02406 8.7998 9.74347 11.011 13.0298 16.9518 26.363 55.3116 174.865 1046.33 1051.57 176.609 57.4622 28.6554 18.5711 13.9621 11.3933 9.72425 8.51576 7.57693 6.81555 6.18979 5.67892 5.27094 4.95857 4.73752 4.60566 4.56211 4.60683 4.74295 4.9742 5.30474 5.73976 6.28621 6.95436 7.7635 8.756 9.99431 11.6122 14.0242 18.3973 28.3335 57.6305 176.804 1046.66 1051.58 178.334 58.5451 29.7873 20.1184 15.7322 13.174 11.3731 9.9631 8.82326 7.8907 7.12184 6.4949 5.99511 5.61262 5.34157 5.17945 5.12402 5.17383 5.33338 5.60671 5.99569 6.50327 7.1338 7.89444 8.79824 9.88072 11.2025 12.8816 15.2743 19.4338 28.8133 57.4744 176.747 1047.59 1051.57 179.719 60.3269 31.5733 21.6403 16.936 14.1119 12.103 10.5185 9.2188 8.157 7.29234 6.5901 6.03067 5.60056 5.29148 5.09925 5.02299 5.06365 5.22669 5.51836 5.94419 6.50825 7.21322 8.06064 9.05282 10.2056 11.5633 13.2647 15.7367 20.1423 29.955 58.7758 177.632 1047.96 1051.58 181.125 61.5004 32.6239 22.8583 18.2271 15.3802 13.2782 11.5519 10.0785 8.84399 7.85152 7.06311 6.43988 5.96257 5.61901 5.40307 5.31349 5.35161 5.52593 5.84761 6.32812 6.97859 7.81126 8.83836 10.0852 11.543 13.151 14.9495 17.2693 21.2166 30.4101 59.1819 178.549 1048.91 1051.58 181.77 62.3463 33.4735 23.6731 18.9544 15.9907 13.7728 11.9556 10.4149 9.11728 8.06918 7.24345 6.59212 6.0875 5.71636 5.47336 5.35875 5.37498 5.53091 5.83778 6.3077 6.95316 7.78844 8.82988 10.1102 11.6434 13.397 15.4149 18.0015 22.1889 31.4491 59.97 179.006 1049.38 1051.6 182.419 62.8583 33.997 24.3744 19.6991 16.6827 14.3795 12.4692 10.8389 9.46221 8.34816 7.48182 6.8079 6.28508 5.89893 5.645 5.52515 5.54358 5.71231 6.04655 6.56345 7.28166 8.22272 9.42222 10.9172 12.677 14.625 16.767 19.351 23.3611 32.3709 61.0907 180.498 1050.34 1051.61 182.793 63.1328 34.3586 24.8103 20.1449 17.0902 14.7145 12.728 11.0447 9.64634 8.53075 7.66005 6.97178 6.42811 6.01767 5.73883 5.5952 5.59136 5.73928 6.05396 6.55302 7.25824 8.19759 9.42177 10.9901 12.8869 15.0381 17.442 20.3116 24.5303 33.5086 61.992 181.186 1051.12 1051.6 181.758 62.2328 34.0688 24.8282 20.2384 17.1715 14.7864 12.8214 11.1756 9.80916 8.70874 7.8308 7.12134 6.55486 6.12519 5.83324 5.68301 5.67772 5.82724 6.14328 6.6395 7.3339 8.25264 9.44286 10.9873 12.9286 15.2172 17.8389 20.9556 25.3617 34.3326 62.6263 181.793 1051.8 1051.59 181.351 61.8328 33.7957 24.5798 20.0375 17.0686 14.7993 12.9243 11.3209 9.95356 8.82865 7.9204 7.18355 6.59713 6.1568 5.86328 5.71959 5.72791 5.89668 6.23463 6.75101 7.45714 8.36867 9.51461 10.9673 12.7945 15.0006 17.6368 20.9035 25.5606 34.7153 62.8225 181.822 1052.15 1051.58 181.538 61.8927 33.7392 24.5709 20.1305 17.256 15.0374 13.1629 11.5294 10.1314 8.98785 8.05848 7.29662 6.68776 6.22599 5.91075 5.74507 5.73226 5.88339 6.21078 6.72643 7.44233 8.37038 9.53577 10.9844 12.7375 14.8018 17.2822 20.4699 25.1953 34.4981 62.5033 181.358 1052.41 1051.56 181.807 62.0741 33.7841 24.6206 20.2261 17.3872 15.1786 13.2997 11.6714 10.2984 9.16772 8.23343 7.46108 6.83453 6.34652 5.99614 5.78759 5.72603 5.82592 6.10516 6.58172 7.27368 8.19799 9.387 10.8779 12.6507 14.6724 17.0363 20.0808 24.7384 34.1164 62.1515 180.954 1052.63 1051.54 182.602 62.785 34.1664 24.8976 20.4702 17.606 15.3695 13.4703 11.8397 10.4797 9.35499 8.41524 7.63221 6.98826 6.4754 6.09282 5.84569 5.73988 5.79176 6.02265 6.45472 7.11159 8.01763 9.21634 10.7584 12.6137 14.6982 17.0443 19.9643 24.4327 33.6533 61.5976 180.429 1052.92 1051.52 182.814 63.1922 34.4755 25.0976 20.5659 17.625 15.3552 13.4669 11.875 10.5543 9.45765 8.53554 7.75919 7.11151 6.58589 6.18341 5.91119 5.7761 5.79544 5.99184 6.38859 7.01114 7.88744 9.06398 10.6128 12.5356 14.7248 17.1447 20.0356 24.3449 33.323 61.0382 179.929 1053.29 1051.51 182.786 63.3755 34.5719 25.0104 20.3446 17.3645 15.1385 13.3404 11.8373 10.574 9.51157 8.60914 7.83846 7.18684 6.65176 6.23782 5.95477 5.81076 5.82373 6.01638 6.41155 7.03421 7.91228 9.08705 10.6424 12.6171 14.9025 17.419 20.3357 24.549 33.332 60.9075 179.967 1053.83 1051.51 182.493 63.2146 34.3258 24.5981 19.8521 16.9037 14.7929 13.1396 11.7617 10.5695 9.53665 8.64667 7.87766 7.22161 6.68068 6.26263 5.97897 5.83845 5.85882 6.06177 6.46895 7.10454 7.99678 9.18332 10.7532 12.7743 15.1563 17.7989 20.808 25.0109 33.6695 61.1542 180.374 1054.49 1051.51 182.19 62.8968 33.8676 24.0257 19.297 16.4605 14.5041 13.0028 11.7439 10.6164 9.58555 8.67216 7.88599 7.21919 6.67392 6.25922 5.98683 5.86509 5.91053 6.14247 6.57994 7.24465 8.16311 9.37348 10.9614 13.0108 15.4742 18.2517 21.4052 25.6932 34.3506 61.9012 181.311 1055.21 1051.51 181.633 62.235 33.1836 23.3837 18.7963 16.1381 14.3467 12.9697 11.7819 10.6738 9.62165 8.66409 7.84841 7.17467 6.63299 6.23099 5.97905 5.88459 5.96273 6.23051 6.70458 7.40455 8.35512 9.59356 11.1989 13.2644 15.7831 18.6767 21.9967 26.4447 35.2085 62.9203 182.449 1055.87 1051.52 181.116 61.4897 32.4751 22.8237 18.4483 15.9894 14.3442 13.0477 11.8795 10.7502 9.66112 8.66999 7.83763 7.16032 6.62048 6.2248 5.98325 5.90304 5.99891 6.28689 6.78239 7.50391 8.47529 9.73285 11.3501 13.4225 15.97 18.9511 22.4447 27.1213 36.1019 64.0404 183.538 1056.35 1051.54 180.918 60.9982 31.9881 22.5122 18.3522 16.0679 14.5251 13.2563 12.0606 10.8805 9.7486 8.73563 7.89158 7.20391 6.65486 6.25157 6.00436 5.92041 6.01445 6.3023 6.79858 7.52084 8.49197 9.74632 11.3532 13.4008 15.919 18.9185 22.5455 27.4763 36.7281 64.8117 184.065 1056.58 1051.54 181.061 60.8063 31.7797 22.491 18.5068 16.3323 14.828 13.5394 12.2937 11.065 9.90933 8.8967 8.04558 7.33619 6.76087 6.32867 6.05113 5.93562 5.99768 6.25429 6.72044 7.41352 8.35598 9.58029 11.1559 13.1569 15.5991 18.5421 22.221 27.3728 36.9331 65.1165 184.049 1056.57 1051.54 181.804 61.2631 31.9984 22.7484 18.8432 16.7176 15.2236 13.9159 12.6378 11.3788 10.2052 9.18348 8.30861 7.55949 6.94 6.46091 6.13466 5.96807 5.9773 6.18082 6.59401 7.23412 8.12307 9.29172 10.8118 12.7432 15.0765 17.9026 21.5342 26.8056 36.6394 64.8885 183.556 1056.41 1051.53 182.921 62.2213 32.5387 23.207 19.3203 17.2144 15.7195 14.3879 13.0707 11.7711 10.5671 9.51244 8.59422 7.79859 7.13212 6.60526 6.23017 6.01216 5.96748 6.11581 6.47274 7.05543 7.88554 8.99646 10.458 12.3093 14.5218 17.1966 20.6943 25.9466 35.9422 64.2431 182.795 1056.19 1051.52 183.937 63.3006 33.1832 23.7398 19.853 17.7474 16.2384 14.8746 13.5096 12.1565 10.9083 9.81232 8.84987 8.01163 7.30373 6.73582 6.31948 6.05838 5.96836 6.0698 6.37815 6.90998 7.68637 8.74695 10.16 11.9436 14.0544 16.5806 19.8959 25.0017 34.9926 63.2873 181.867 1056.01 1051.5 184.512 64.1425 33.7452 24.2379 20.3698 18.2577 16.7127 15.2925 13.8605 12.4406 11.1378 9.99827 8.99848 8.12905 7.39464 6.80335 6.36569 6.08384 5.97278 6.05261 6.33824 6.84518 7.59306 8.6256 10.0104 11.7481 13.7799 16.1721 19.2863 24.1537 33.9615 62.1202 180.801 1055.94 1051.49 184.618 64.5584 34.1239 24.6445 20.8016 18.6513 17.0263 15.5168 14.0083 12.5312 11.1896 10.024 9.00681 8.12698 7.38729 6.79436 6.3577 6.07903 5.9726 6.0577 6.34868 6.86 7.60953 8.64479 10.0318 11.7527 13.7335 16.0165 18.9386 23.5317 33.0457 60.9791 179.824 1055.98 1051.48 184.437 64.6706 34.3918 24.9851 21.1114 18.8508 17.0927 15.4763 13.9067 12.404 11.0525 9.88488 8.87284 8.0043 7.28105 6.70896 6.29698 6.04732 5.97373 6.09415 6.42218 6.97102 7.75645 8.8294 10.2522 11.9857 13.9424 16.1431 18.8964 23.2167 32.3787 60.0132 179.05 1056.18 1051.47 184.097 64.5905 34.595 25.2314 21.2209 18.7747 16.8623 15.161 13.5721 12.0859 10.7557 9.6092 8.62324 7.78596 7.09928 6.56889 6.20339 6.00597 5.99005 6.17205 6.56468 7.17986 8.03141 9.174 10.6638 12.4371 14.3927 16.5335 19.1437 23.2203 32.0438 59.3942 178.669 1056.53 1051.47 183.71 64.4287 34.7351 25.3089 21.0652 18.4136 16.3847 14.6551 13.094 11.6541 10.3628 9.25138 8.30631 7.51559 6.88149 6.40964 6.10818 5.98136 6.04246 6.30641 6.78492 7.48905 8.43168 9.67117 11.2555 13.0957 15.0764 17.1824 19.6766 23.5446 32.0788 59.2444 178.842 1057.04 1051.46 183.279 64.1676 34.7163 25.1206 20.6263 17.8278 15.762 14.0644 12.5608 11.1766 9.92827 8.85948 7.96566 7.23275 6.66288 6.26137 6.03586 5.9916 6.14208 6.50079 7.07829 7.88542 8.93715 10.294 11.9925 13.9215 15.9491 18.0421 20.445 24.1425 32.4627 59.62 179.643 1057.68 1051.46 182.77 63.7413 34.4341 24.6335 19.97 17.1355 15.1165 13.4917 12.0539 10.7201 9.5114 8.48801 7.65015 6.97957 6.47782 6.14998 6.0034 6.04448 6.28744 6.74473 7.42553 8.34157 9.5134 11.0026 12.833 14.8743 16.9732 19.0759 21.4135 24.9847 33.197 60.6186 181.196 1058.43 1051.46 182.129 63.072 33.8292 23.8996 19.2162 16.4607 14.546 13.0069 11.6257 10.329 9.15273 8.17243 7.38822 6.77666 6.33867 6.07951 6.00654 6.12742 6.45761 7.00912 7.78965 8.81258 10.104 11.7276 13.7004 15.8717 18.0632 20.199 22.4976 25.9777 34.1592 62.0345 183.151 1059.22 1051.46 181.378 62.1881 33.0051 23.0961 18.5335 15.9266 14.1308 12.664 11.3178 10.0409 8.88645 7.94005 7.19887 6.63458 6.24765 6.04366 6.03025 6.21628 6.61869 7.24979 8.11698 9.2355 10.6361 12.3854 14.4989 16.8107 19.1163 21.3131 23.6032 27.0186 35.2264 63.6886 185.211 1059.96 1051.47 180.637 61.2459 32.1462 22.3903 18.0269 15.5858 13.8934 12.473 11.1388 9.86639 8.72396 7.79755 7.08324 6.55008 6.19594 6.02713 6.0519 6.28016 6.73021 7.41519 8.34419 9.5339 11.0187 12.8682 15.0986 17.5436 19.9783 22.2721 24.5977 27.9806 36.2512 65.2904 186.961 1060.5 1051.48 180.026 60.3862 31.4064 21.8839 17.7382 15.4442 13.8268 12.4281 11.0899 9.81166 8.67175 7.75232 7.04757 6.52454 6.17935 6.01943 6.05395 6.29369 6.75798 7.46168 8.41695 9.64213 11.174 13.0837 15.3914 17.942 20.5066 22.9364 25.3588 28.749 37.0249 66.2459 187.018 1060.75 1051.49 179.647 59.7561 30.8958 21.6164 17.6578 15.4741 13.9044 12.5115 11.1624 9.87531 8.73271 7.80986 7.09756 6.56209 6.19968 6.01907 6.0306 6.24569 6.6843 7.36365 8.30006 9.51466 11.0452 12.9629 15.2953 17.9085 20.5899 23.1926 25.7998 29.2886 37.4839 66.1054 182.716 1060.71 1051.5 179.695 59.5537 30.6961 21.5867 17.7598 15.6473 14.1021 12.7067 11.3481 10.0551 8.90872 7.97595 7.24213 6.67404 6.2702 6.04072 5.99731 6.15178 6.52435 7.13461 8.00317 9.15548 10.6303 12.4984 14.7983 17.4233 20.1964 22.9968 25.8874 29.6489 37.9623 66.4209 182.418 1060.45 1051.51 180.137 59.7651 30.7713 21.7404 17.9903 15.9174 14.3834 12.9865 11.6267 10.3354 9.18884 8.24543 7.48306 6.86953 6.40759 6.1084 5.98497 6.04931 6.32173 6.82364 7.57844 8.61585 9.97645 11.7338 13.9407 16.5193 19.3394 22.3268 25.554 29.7192 38.2811 66.8871 186.493 1060.04 1051.51 180.963 60.3963 31.0995 22.0418 18.3162 16.2581 14.7283 13.3335 11.9799 10.6988 9.55907 8.60365 7.80858 7.14652 6.62101 6.24338 6.0278 5.98608 6.13882 6.50887 7.12013 8.00352 9.20086 10.7925 12.8486 15.3167 18.1133 21.2251 24.7738 29.4123 38.2861 66.5508 185.915 1059.55 1051.51 182.041 61.3723 31.6318 22.4437 18.6971 16.639 15.1166 13.7329 12.3908 11.1188 9.98435 9.01714 8.19097 7.48319 6.89689 6.44351 6.13809 5.99147 6.02444 6.26124 6.72436 7.44216 8.45431 9.84596 11.7047 14.0004 16.6817 19.7949 23.5513 28.646 37.9745 65.9552 184.896 1059 1051.51 183.204 62.5859 32.3254 22.9292 19.1258 17.048 15.5292 14.1618 12.834 11.5655 10.4257 9.44026 8.58155 7.82942 7.18778 6.66864 6.28791 6.05452 5.98875 6.11575 6.45557 7.03164 7.87738 9.07291 10.7175 12.8059 15.2991 18.2728 22.0274 27.3821 37.177 65.0855 183.74 1058.41 1051.5 184.166 63.7475 33.0388 23.4118 19.5409 17.4393 15.9264 14.5817 13.2705 11.996 10.831 9.81057 8.91013 8.11027 7.41796 6.84664 6.41296 6.12366 5.99719 6.05779 6.32221 6.80801 7.53998 8.5824 10.0328 11.9126 14.187 16.9318 20.4913 25.811 35.8666 63.8935 182.514 1057.83 1051.49 184.773 64.6595 33.6519 23.8278 19.9172 17.8179 16.3227 14.9924 13.6727 12.358 11.1309 10.0469 9.08903 8.23842 7.50496 6.90276 6.44774 6.14407 6.007 6.05689 6.30612 6.76641 7.45392 8.41438 9.72986 11.4313 13.4883 15.9727 19.2381 24.2948 34.2751 62.3521 181.123 1057.34 1051.49 184.706 65.0013 34.0124 24.1559 20.2724 18.1917 16.6907 15.3264 13.9434 12.5413 11.2159 10.0479 9.03 8.14294 7.39652 6.802 6.37085 6.1039 6.01195 6.10921 6.40294 6.89901 7.60565 8.55418 9.80589 11.3787 13.2419 15.4705 18.4236 23.14 32.847 60.8339 179.848 1057.02 1051.49 184.173 64.7295 34.0192 24.348 20.5653 18.4984 16.9363 15.4576 13.9374 12.4036 10.9682 9.73105 8.68871 7.81463 7.11097 6.58071 6.228 6.05086 6.0564 6.25285 6.64233 7.22438 7.99933 8.98793 10.2298 11.7184 13.4221 15.4255 18.0975 22.4958 31.9004 59.7602 179.071 1056.94 1051.49 183.347 64.0908 33.8968 24.5747 20.8744 18.7138 16.9434 15.2207 13.4984 11.8414 10.3557 9.13148 8.14937 7.36473 6.76668 6.35092 6.11811 6.06748 6.20585 6.53721 7.05783 7.75968 8.6347 9.69322 10.951 12.3759 13.9407 15.7482 18.1857 22.3323 31.5128 59.3524 179.031 1057.09 1051.5 182.598 63.4899 33.958 24.9311 21.0679 18.5572 16.421 14.4314 12.5872 10.9413 9.55496 8.46615 7.62504 6.97728 6.50948 6.22075 6.11641 6.20166 6.48651 6.97195 7.64696 8.49308 9.49344 10.6493 11.9438 13.3144 14.7495 16.3857 18.6413 22.6223 31.7022 59.704 179.816 1057.49 1051.5 182.285 63.2857 34.2475 25.1022 20.7572 17.7898 15.3718 13.3013 11.536 10.0696 8.90137 7.99968 7.3014 6.7698 6.40278 6.21096 6.20897 6.41058 6.83219 7.47404 8.31846 9.33339 10.4972 11.7957 13.1491 14.4626 15.7609 17.2326 19.3413 23.229 32.3317 60.7003 181.256 1058.15 1051.48 182.109 63.2173 34.3055 24.7032 19.8734 16.6519 14.2153 12.2919 10.7576 9.53874 8.58349 7.82308 7.20963 6.73593 6.41322 6.26408 6.31389 6.58746 7.11234 7.89373 8.91082 10.1251 11.5174 13.0228 14.4731 15.7536 16.9238 18.2333 20.1993 23.9967 33.1179 61.8455 182.732 1059.02 1051.47 182.182 63.2864 34.1038 23.9961 18.9073 15.6971 13.4327 11.7465 10.45 9.43108 8.60023 7.89997 7.3123 6.84059 6.50471 6.33664 6.37344 6.65466 7.22799 8.10935 9.25189 10.6728 12.3863 14.1623 15.7872 17.1214 18.2099 19.3558 21.144 24.7905 33.8371 62.7861 183.784 1059.99 1051.45 182.723 63.7242 34.0352 23.5649 18.3991 15.2919 13.2117 11.7167 10.5749 9.64879 8.86058 8.17168 7.56946 7.06014 6.66731 6.42855 6.3903 6.60643 7.15137 8.05981 9.26547 10.7968 12.7815 14.9776 16.9445 18.491 19.5821 20.5526 22.0806 25.4449 34.2302 63.1392 184.193 1060.91 1051.43 183.426 64.3519 34.1775 23.4933 18.365 15.3755 13.4194 12.0232 10.9458 10.0529 9.26943 8.56094 7.9177 7.34719 6.87546 6.54114 6.3916 6.48103 6.89281 7.72128 8.93304 10.5145 12.6208 15.1871 17.7569 19.8191 21.1466 21.9815 23.1462 26.0578 34.4481 63.3718 184.63 1061.67 1051.42 184.121 65.0909 34.5442 23.7073 18.608 15.6941 13.8102 12.4665 11.4149 10.5185 9.70449 8.94514 8.23757 7.59534 7.05001 6.64129 6.41239 6.40565 6.68731 7.35488 8.45658 9.9854 12.0557 14.7778 17.9303 20.7814 22.7896 23.7933 24.5776 26.8444 34.569 63.2754 185.031 1062.3 1051.41 184.33 65.4137 34.7171 23.8825 18.8845 16.0706 14.2556 12.942 11.8794 10.9328 10.0404 9.19034 8.39421 7.67939 7.08467 6.64904 6.40679 6.38275 6.61377 7.15094 8.08142 9.46072 11.3449 13.9126 17.2263 20.7861 23.752 25.5186 26.3231 27.9111 34.7219 63.0391 185.428 1062.7 1051.41 184.144 65.4054 34.7755 24.0571 19.1787 16.4421 14.6591 13.3329 12.21 11.1598 10.1427 9.17566 8.29222 7.53358 6.93934 6.53977 6.35445 6.39179 6.66687 7.1961 8.0067 9.16816 10.8306 13.1723 16.3003 20.0128 23.7012 26.5083 27.9731 29.3352 35.2266 62.8758 185.86 1062.84 1051.41 183.407 64.8285 34.4888 23.9992 19.2561 16.5883 14.834 13.4946 12.2909 11.0862 9.90062 8.82289 7.90646 7.18184 6.67131 6.38483 6.32187 6.4754 6.84557 7.4318 8.24236 9.31307 10.759 12.7652 15.4727 18.903 22.804 26.455 28.9709 30.7433 36.1199 63.2126 186.509 1062.74 1051.42 182.167 63.6337 33.7569 23.5996 19.0291 16.4727 14.7621 13.3603 11.996 10.6009 9.27821 8.18412 7.35212 6.76279 6.41116 6.28753 6.37519 6.65696 7.12419 7.76506 8.578 9.58945 10.8843 12.6048 14.8902 17.8325 21.421 25.328 28.7868 31.5033 36.9413 63.4071 186.265 1062.48 1051.45 180.907 62.1745 32.8062 23.005 18.6578 16.2131 14.4568 12.8657 11.2709 9.74247 8.45403 7.50486 6.85285 6.44908 6.27583 6.31668 6.54661 6.94416 7.4978 8.18848 9.00762 9.97181 11.1394 12.6169 14.5187 16.9243 19.8983 23.4028 27.1324 30.8781 37.3389 63.8503 185.957 1062.01 1051.47 179.571 60.5592 31.7784 22.3578 18.1895 15.7334 13.8109 12.0242 10.346 8.91071 7.83614 7.08694 6.5927 6.32746 6.28001 6.43688 6.77073 7.2597 7.89196 8.64185 9.49304 10.4507 11.5592 12.8857 14.5087 16.4992 18.9084 21.7827 25.1475 29.3453 37.2016 64.889 186.529 1061.5 1051.49 178.333 59.0704 30.7763 21.6632 17.5718 15.0562 13.064 11.2987 9.75741 8.52043 7.61365 6.97018 6.54367 6.32977 6.32928 6.53782 6.93315 7.49571 8.21299 9.05074 9.98084 10.99 12.1096 13.3801 14.8404 16.5487 18.5762 21.0215 24.0772 28.447 37.3821 66.6026 188.05 1061.26 1051.5 177.74 58.2176 30.0759 21.0417 16.9684 14.4853 12.5947 10.9979 9.64048 8.54141 7.69851 7.06662 6.62313 6.3766 6.33994 6.52175 6.91364 7.50518 8.28946 9.23063 10.2892 11.4313 12.6582 13.9861 15.4161 16.9667 18.7285 20.8664 23.6666 28.0169 37.3971 66.656 182.32 1061.32 1051.5 177.83 57.973 29.6197 20.5277 16.5089 14.1613 12.4574 11.0594 9.86975 8.87378 8.05722 7.39232 6.87438 6.5225 6.36202 6.41768 6.70342 7.22867 8.00536 9.01416 10.2165 11.5614 13.0208 14.5658 16.1 17.573 19.1126 21.0214 23.6838 27.949 37.3884 66.7378 181.323 1061.7 1051.5 179.327 58.9378 29.8354 20.4627 16.4177 14.1662 12.6181 11.3924 10.3594 9.47135 8.68946 7.99242 7.38859 6.89952 6.55784 6.40259 6.46815 6.78415 7.38772 8.29656 9.51152 11.0417 12.8092 14.6627 16.4789 18.152 19.6747 21.2844 23.5739 27.7483 37.356 66.6373 180.817 1061.96 1051.49 181.601 60.9706 30.886 21.0868 16.8874 14.5957 13.095 11.9779 11.0675 10.2703 9.53431 8.83848 8.18336 7.58115 7.06447 6.68289 6.48686 6.51704 6.82262 7.45467 8.42638 9.80464 11.7145 13.9292 16.1595 18.2473 20.124 21.895 23.9225 27.3859 36.3827 65.3999 179.544 1061.85 1051.48 183.531 63.2872 32.385 22.0593 17.6238 15.2471 13.7602 12.7179 11.9042 11.1885 10.4933 9.79513 9.09151 8.38783 7.72542 7.16352 6.76312 6.56344 6.60367 6.92268 7.56536 8.60457 10.1383 12.2436 14.7426 17.3169 19.7588 22.0251 24.3929 27.8011 35.8473 63.6228 177.513 1061.54 1051.47 184.272 64.6384 33.3966 22.8006 18.3024 15.9524 14.5465 13.6137 12.8988 12.2275 11.5043 10.7158 9.86919 8.99537 8.16252 7.44904 6.92509 6.62244 6.56261 6.75521 7.19918 7.92742 9.04913 10.6807 12.8259 15.3942 18.2192 21.1192 24.1033 27.9255 35.9007 63.4106 183.28 1060.89 1051.48 183.978 64.9415 33.8642 23.2687 18.7985 16.5384 15.2742 14.5086 13.9388 13.3088 12.4658 11.4098 10.2461 9.11575 8.10912 7.31194 6.78219 6.52514 6.53244 6.78353 7.25 7.91929 8.83915 10.0987 11.7587 13.8816 16.5008 19.5787 23.0946 27.5821 36.0032 63.1567 183.36 1059.96 1051.5 183.496 64.6356 33.6846 23.1986 18.9777 17.0281 16.0965 15.6148 15.12 14.245 12.942 11.37 9.80244 8.5033 7.50029 6.81115 6.45027 6.37658 6.55171 6.93653 7.49433 8.20029 9.06511 10.1423 11.4966 13.2052 15.3842 18.179 21.7797 26.7696 35.86 63.1112 183.058 1059.16 1051.52 183.567 64.2752 33.2764 23.1018 19.3952 18.0382 17.5463 17.0313 15.9125 14.1345 12.008 10.0581 8.56898 7.46553 6.72644 6.33809 6.23887 6.37518 6.7124 7.21762 7.86058 8.6171 9.47763 10.4672 11.6431 13.0767 14.8773 17.2415 20.5304 25.571 35.201 63.0413 182.953 1058.82 1051.56 181.837 62.0684 31.9096 23.0108 20.2896 19.3648 18.5274 17.0045 14.7932 12.344 10.1877 8.58819 7.50319 6.80168 6.39552 6.23821 6.29835 6.55205 6.9854 7.5754 8.29471 9.11564 10.0211 11.0119 12.1151 13.3969 14.9632 17.0049 19.944 24.8243 34.821 63.7217 184.221 1058.95 1051.59 181.102 60.7688 31.5493 23.8331 21.4742 19.978 17.9706 15.4408 12.8965 10.7456 9.12855 8.00436 7.22786 6.69605 6.37899 6.27002 6.36401 6.65402 7.13802 7.79999 8.61499 9.55101 10.579 11.6889 12.8825 14.1974 15.7344 17.6897 20.5031 25.2736 35.4179 65.1462 185.721 1059.55 1051.6 180.779 60.2783 31.9615 24.6447 21.7218 19.1892 16.4466 13.8783 11.7722 10.1557 8.94397 8.03553 7.3406 6.81841 6.46928 6.30572 6.33908 6.57566 7.02632 7.68995 8.55533 9.59928 10.7853 12.0876 13.4805 14.9508 16.594 18.6338 21.4873 26.1629 36.1276 66.0262 186.408 1060.39 1051.59 181.12 60.718 32.4939 24.4795 20.6114 17.5619 14.9659 12.9049 11.3274 10.1158 9.16261 8.37395 7.70264 7.14866 6.72553 6.45775 6.3712 6.48309 6.81443 7.37816 8.17927 9.22646 10.5275 12.0067 13.5357 15.0896 16.7839 18.8746 21.8153 26.572 36.3754 65.6991 185.409 1060.87 1051.55 183.804 63.2998 33.5378 23.9612 19.3162 16.355 14.2734 12.7387 11.567 10.6263 9.81213 9.06987 8.387 7.76956 7.2348 6.81963 6.56538 6.49743 6.64207 7.02439 7.66165 8.5889 9.86795 11.4476 13.1273 14.8135 16.5526 18.5735 21.3665 26.0056 35.7597 64.7957 184.002 1060.75 1051.5 185.7 65.6461 34.5284 24.0174 19.2629 16.485 14.6147 13.2878 12.3055 11.5005 10.747 9.99319 9.24663 8.52352 7.85325 7.29253 6.89544 6.68743 6.68643 6.90628 7.35595 8.08364 9.16222 10.5842 12.2567 14.0569 15.9393 18.0118 20.6894 25.067 34.4693 63.093 182.963 1060.35 1051.47 185.404 66.2954 34.995 24.2133 19.4421 16.7837 15.1649 14.14 13.3889 12.6622 11.8384 10.9325 9.99502 9.06956 8.22319 7.5343 7.064 6.82956 6.83289 7.06471 7.50618 8.17621 9.12573 10.3508 11.8101 13.4672 15.3102 17.4077 20.071 24.2852 33.291 61.1806 181.599 1059.83 1051.47 184.74 66.0836 35.0316 24.2654 19.6318 17.3299 16.122 15.3902 14.7266 13.8542 12.7069 11.4239 10.158 8.99561 8.03099 7.33937 6.9521 6.85062 7.00521 7.3775 7.9287 8.66143 9.59768 10.7161 11.9972 13.4504 15.1211 17.1187 19.7506 23.9595 32.947 60.6805 181.433 1059.23 1051.48 183.969 65.6793 34.862 24.3257 20.2258 18.4285 17.478 16.731 15.7683 14.381 12.6516 10.8655 9.32923 8.14599 7.3331 6.89116 6.7789 6.93636 7.31486 7.86342 8.53848 9.33149 10.2555 11.3028 12.4631 13.7536 15.2428 17.0845 19.6288 23.822 32.8028 60.3623 180.945 1058.84 1051.5 184.37 65.6185 34.8652 24.8581 21.2066 19.6344 18.6069 17.3428 15.5164 13.2643 10.9967 9.17678 7.92888 7.14832 6.75241 6.68013 6.86717 7.2567 7.81289 8.49087 9.25089 10.0687 10.9578 11.9374 12.999 14.1481 15.4495 17.082 19.457 23.6051 32.7508 60.7627 181.777 1058.89 1051.53 183.59 64.2205 34.2437 25.3152 22.1764 20.3402 18.3133 15.8124 13.1653 10.8153 9.05349 7.89606 7.18269 6.80128 6.70564 6.86389 7.23166 7.76729 8.44647 9.22417 10.0585 10.9173 11.7902 12.7041 13.6846 14.728 15.8898 17.3575 19.5863 23.7134 33.1706 62.1857 183.979 1059.4 1051.55 181.741 62.6101 34.1294 26.0408 22.3971 19.2906 16.1564 13.3506 11.1321 9.49433 8.32865 7.53361 7.02062 6.75457 6.73785 6.96774 7.4133 8.03827 8.82521 9.73431 10.7167 11.7198 12.7084 13.6909 14.7018 15.748 16.897 18.3403 20.5538 24.7698 34.7038 64.9977 186.775 1060.48 1051.56 179.597 61.0289 33.6812 25.2091 20.471 16.7416 13.8405 11.7316 10.2056 9.05555 8.16624 7.48758 6.99615 6.70593 6.64909 6.84651 7.28936 7.92262 8.71092 9.70166 10.8814 12.1482 13.4052 14.5631 15.6923 16.8533 18.1501 19.7743 22.0897 26.1804 35.9378 66.6505 188.288 1061.76 1051.57 179.616 60.7912 32.8091 23.2508 18.0893 14.759 12.5898 11.1329 10.0637 9.199 8.44977 7.7826 7.21639 6.8017 6.58468 6.60401 6.88606 7.413 8.13092 9.0331 10.1879 11.6625 13.2729 14.7581 16.1202 17.4341 18.8328 20.5906 23.1176 27.291 36.4654 65.257 180.57 1062.66 1051.54 183.166 63.2727 33.0559 22.3226 17.1666 14.3551 12.7027 11.6026 10.747 9.98454 9.24564 8.51911 7.83997 7.26495 6.83974 6.60257 6.59104 6.83613 7.35587 8.09708 9.06089 10.3306 11.9632 13.7695 15.4761 17.064 18.6015 20.3415 22.7904 27.0011 36.2826 64.9673 180.184 1062.49 1051.49 185.694 65.5493 33.8981 22.7435 17.7948 15.188 13.6501 12.6377 11.8497 11.0979 10.2935 9.44691 8.62425 7.89293 7.29996 6.88537 6.67924 6.69145 6.93838 7.44367 8.21379 9.24978 10.6086 12.2754 14.0634 15.8513 17.61 19.4655 21.847 25.839 34.776 63.2155 183.376 1061.82 1051.45 185.855 66.4126 34.5578 23.2618 18.4161 16.0337 14.7645 13.963 13.2383 12.3812 11.3678 10.2916 9.26048 8.34691 7.59991 7.06719 6.77519 6.71895 6.88967 7.28002 7.90796 8.80964 9.98848 11.4218 13.0343 14.7679 16.5899 18.5607 21.0073 24.9348 33.5854 61.2341 182.031 1061.07 1051.44 183.487 64.8881 33.8269 23.0877 18.8837 17.1127 16.2277 15.4851 14.4922 13.1873 11.7541 10.371 9.15033 8.14776 7.39486 6.91744 6.71041 6.74504 6.99534 7.43554 8.06619 8.91508 9.9817 11.239 12.6615 14.2318 15.9487 17.8772 20.3123 24.214 32.7698 59.9623 180.813 1060.26 1051.47 181.387 63.2782 33.2008 23.5103 20.0544 18.4624 17.2508 15.8871 14.2449 12.4484 10.7648 9.34723 8.2304 7.42155 6.91377 6.68839 6.70905 6.9335 7.33087 7.87052 8.5473 9.38141 10.3781 11.5223 12.8027 14.2207 15.798 17.6185 19.9773 23.8203 32.3253 59.4151 180.39 1059.74 1051.5 181.739 63.4016 33.8898 24.7252 21.0159 18.7358 16.7821 14.8242 12.8254 10.9358 9.38404 8.22513 7.41374 6.9167 6.7038 6.74048 6.97675 7.3664 7.88244 8.49603 9.19959 10.0143 10.9571 12.0201 13.1993 14.5032 15.9655 17.6893 19.9842 23.7944 32.2888 59.4527 180.689 1059.73 1051.51 182.254 63.7793 34.6753 25.311 20.973 18.0869 15.6365 13.3416 11.2479 9.5406 8.30355 7.46177 6.94535 6.72115 6.75882 7.01662 7.43084 7.95272 8.56192 9.23179 9.95181 10.7414 11.6247 12.6027 13.6815 14.8727 16.2158 17.8323 20.0596 23.8667 32.453 59.9497 181.582 1060.06 1051.51 182.034 63.5181 34.6512 25.0166 20.2387 16.9571 14.2528 11.9249 10.0303 8.65747 7.71676 7.10826 6.79957 6.77036 6.99419 7.42046 7.97173 8.59993 9.28989 10.0123 10.7538 11.5259 12.3506 13.2406 14.2183 15.3003 16.5288 18.0371 20.1939 24.0261 32.8438 61.0514 183.261 1060.61 1051.51 181.413 62.8753 34.122 24.2795 19.2504 15.8311 13.1688 11.042 9.41774 8.25524 7.45772 6.96814 6.77423 6.86782 7.22484 7.78329 8.44949 9.18157 9.9728 10.7786 11.5698 12.3436 13.1111 13.8981 14.7703 15.767 16.9336 18.401 20.5487 24.4471 33.5607 62.7207 185.35 1061.37 1051.5 180.773 62.2584 33.4821 23.4803 18.3847 15.0358 12.5388 10.6067 9.14894 8.08538 7.33834 6.8825 6.72364 6.86963 7.30936 7.96111 8.70177 9.52592 10.4604 11.4364 12.3815 13.2273 13.9529 14.625 15.3686 16.2634 17.3886 18.8777 21.0684 25.0093 34.324 64.2615 186.831 1062.23 1051.49 180.418 61.8192 32.8924 22.8229 17.7956 14.5947 12.2625 10.4717 9.10677 8.07286 7.30914 6.81326 6.60475 6.70847 7.13923 7.81558 8.60383 9.5039 10.5419 11.7397 12.9757 14.0271 14.843 15.4931 16.1278 16.862 17.8322 19.2541 21.4992 25.5462 35.035 65.4847 187.775 1063.04 1051.49 180.506 61.7404 32.5433 22.4285 17.5 14.4439 12.2505 10.5665 9.24683 8.19953 7.38524 6.81142 6.50086 6.48478 6.7972 7.40502 8.1819 9.10267 10.1869 11.4729 12.9655 14.4022 15.5458 16.3957 17.0731 17.7247 18.5139 19.7364 21.8397 25.8318 35.2551 65.0549 182.536 1063.72 1051.48 181.289 62.2586 32.6041 22.3755 17.5097 14.5599 12.4658 10.8509 9.54113 8.45521 7.57703 6.91639 6.49352 6.33481 6.47215 6.93348 7.63365 8.48032 9.52421 10.7899 12.3252 14.0525 15.6622 16.9438 17.9177 18.7127 19.4331 20.4462 22.2975 26.0513 35.2936 64.8415 180.912 1064.13 1051.47 182.198 62.9962 32.9025 22.586 17.7799 14.9095 12.8782 11.2718 9.92476 8.78046 7.83136 7.08882 6.57008 6.29519 6.28695 6.57465 7.1314 7.87513 8.81298 9.9756 11.4102 13.1661 15.0915 16.8202 18.2494 19.4231 20.3131 21.2208 22.7962 26.2436 35.2279 64.6412 181.182 1064.16 1051.46 182.349 63.305 33.1077 22.8517 18.1821 15.3918 13.362 11.7006 10.2736 9.04791 8.02577 7.21865 6.63846 6.29563 6.1991 6.36121 6.79241 7.44722 8.27231 9.30892 10.6129 12.2373 14.1694 16.1729 17.997 19.6038 20.8502 21.8712 23.2977 26.4341 35.0856 64.8932 187.065 1063.9 1051.47 181.634 62.9583 33.1685 23.224 18.6847 15.859 13.702 11.8966 10.3563 9.06039 8.00359 7.18555 6.60505 6.26169 6.15395 6.28027 6.63668 7.20567 7.95414 8.88486 10.061 11.5463 13.3667 15.388 17.4104 19.3519 20.9992 22.3084 23.7688 26.6811 34.8729 64.2686 187.118 1063.49 1051.48 181.434 63.0231 33.578 23.7229 19.0364 15.9915 13.6365 11.7027 10.1145 8.82762 7.80962 7.04094 6.51004 6.21096 6.13785 6.28086 6.62091 7.14593 7.84227 8.69883 9.77776 11.1492 12.8185 14.695 16.7284 18.8509 20.8404 22.5229 24.1761 27.0032 34.8034 63.6194 186.68 1063.05 1051.49 181.759 63.4285 34.0362 23.9596 18.9723 15.7204 13.268 11.3161 9.76532 8.54242 7.59229 6.88818 6.41708 6.17343 6.15137 6.3371 6.70095 7.22139 7.89214 8.70994 9.7308 10.9911 12.466 14.1508 16.0713 18.2135 20.421 22.4881 24.4823 27.406 34.9693 63.2617 186.337 1062.63 1051.49 182.061 63.7047 34.183 23.8105 18.6127 15.2895 12.8484 10.9419 9.45144 8.29195 7.40113 6.75291 6.3367 6.14899 6.1845 6.42599 6.83565 7.38348 8.06429 8.87277 9.83873 10.9866 12.3039 13.7967 15.5248 17.5261 19.7484 22.0701 24.4636 27.6826 35.2053 63.0083 185.852 1062.25 1051.49 182.182 63.6925 33.996 23.4337 18.1787 14.8857 12.4948 10.6377 9.19726 8.08654 7.24125 6.63829 6.27047 6.13704 6.23373 6.53953 7.00829 7.6004 8.30981 9.12886 10.0707 11.149 12.3431 13.6605 15.1653 16.9131 18.9362 21.2457 23.8835 27.4781 35.223 62.7591 185.332 1062 1051.49 182.121 63.4525 33.6325 23.0251 17.8095 14.5742 12.2295 10.4107 9.00672 7.92988 7.11598 6.54605 6.21747 6.13362 6.29251 6.66959 7.20447 7.84281 8.59134 9.44974 10.406 11.4584 12.5725 13.7501 15.0486 16.5175 18.2264 20.2872 22.8986 26.7732 34.9877 62.8238 185.321 1061.97 1051.49 181.911 63.1049 33.2569 22.6973 17.541 14.3507 12.0422 10.2555 8.87759 7.82021 7.02225 6.47012 6.16694 6.12201 6.33821 6.79003 7.39024 8.07558 8.87575 9.79194 10.8074 11.8834 12.9657 14.0489 15.1903 16.4319 17.8543 19.6153 22.0287 25.9767 34.6772 63.3226 185.955 1062.26 1051.49 181.693 62.8106 32.9534 22.448 17.3438 14.1915 11.9162 10.1585 8.79858 7.74811 6.95123 6.39965 6.10205 6.07434 6.32731 6.83886 7.5032 8.24732 9.11006 10.1029 11.2192 12.3682 13.4658 14.5013 15.5399 16.6204 17.8352 19.3729 21.6 25.4954 34.4951 64.0017 186.782 1062.77 1051.48 181.478 62.5579 32.6917 22.2384 17.1865 14.0725 11.8298 10.1006 8.75456 7.70321 6.89719 6.33203 6.02039 5.98442 6.24665 6.78255 7.48383 8.29342 9.2325 10.3118 11.5526 12.839 14.0174 15.0677 16.0614 17.0293 18.0777 19.4473 21.5605 25.4462 34.6962 64.9114 187.634 1063.36 1051.48 181.303 62.3596 32.4667 22.0586 17.0603 13.9849 11.7742 10.0729 8.73781 7.68082 6.85977 6.27158 5.92923 5.8565 6.08389 6.60277 7.31265 8.15847 9.1619 10.3226 11.6913 13.1701 14.514 15.6749 16.7151 17.642 18.5481 19.7289 21.6906 25.5237 34.8975 65.4375 187.713 1063.87 1051.48 181.235 62.269 32.3177 21.94 16.9851 13.9402 11.757 10.0783 8.74851 7.68179 6.84338 6.22901 5.8488 5.7233 5.88287 6.34349 7.02344 7.85359 8.87534 10.0922 11.5392 13.1862 14.7973 16.1915 17.4049 18.4122 19.2563 20.2544 21.9787 25.6053 34.8805 65.0198 182.717 1064.26 1051.47 181.268 62.2944 32.2708 21.9054 16.978 13.9518 11.7859 10.116 8.78154 7.70232 6.84762 6.20957 5.79386 5.61616 5.70202 6.07514 6.67998 7.44908 8.42231 9.61528 11.0694 12.8164 14.693 16.4205 17.9539 19.2047 20.1225 21.0141 22.5078 25.8568 34.9647 65.0138 181.903 1064.41 1051.47 181.338 62.395 32.321 21.9566 17.0409 14.0146 11.8466 10.1682 8.82181 7.73215 6.86523 6.2092 5.7657 5.54526 5.56655 5.84941 6.36263 7.05022 7.92778 9.0261 10.4047 12.1032 14.0831 16.1482 18.1042 19.7862 21.0002 21.9276 23.2586 26.358 35.2688 65.2992 182.444 1064.22 1051.47 181.378 62.5357 32.4532 22.0788 17.1492 14.0963 11.9033 10.2079 8.85145 7.75575 6.88216 6.21528 5.75398 5.50534 5.48133 5.69262 6.12519 6.73466 7.50452 8.47509 9.70872 11.2586 13.1659 15.3558 17.631 19.8028 21.5536 22.8019 24.1175 26.9573 35.5462 65.9252 187.661 1063.77 1051.48 181.548 62.7609 32.6626 22.2323 17.2367 14.1305 11.9065 10.1997 8.84383 7.7525 6.88158 6.21273 5.74373 5.48103 5.43412 5.60696 5.98228 6.52438 7.21043 8.06717 9.15282 10.5232 12.2382 14.2898 16.5995 19.0666 21.3937 23.2715 24.8876 27.544 35.5007 65.2462 187.625 1063.3 1051.48 181.888 63.1267 32.9155 22.3442 17.2452 14.0903 11.8535 10.1527 8.81155 7.73414 6.87209 6.20583 5.73403 5.46502 5.4095 5.57003 5.91994 6.42174 7.05618 7.83159 8.80205 10.0262 11.5288 13.2995 15.3776 17.783 20.394 22.9212 25.1939 28.0583 35.4991 64.2086 186.43 1062.96 1051.48 182.225 63.4253 33.0372 22.3037 17.1293 13.9684 11.7543 10.082 8.76704 7.70904 6.85807 6.19535 5.72234 5.45143 5.3976 5.56586 5.92299 6.42052 7.03694 7.77154 8.67514 9.79411 11.1114 12.6218 14.3819 16.4719 18.9439 21.7146 24.5983 28.0457 35.4806 63.3041 185.194 1062.82 1051.48 182.367 63.4829 32.931 22.0971 16.9139 13.796 11.6366 10.0076 8.72402 7.687 6.84533 6.18319 5.70712 5.43568 5.39042 5.58166 5.97292 6.49845 7.12933 7.86601 8.75254 9.82003 11.0272 12.3601 13.846 15.5727 17.678 20.2696 23.3688 27.3874 35.3383 63.0723 185.047 1062.9 1051.48 182.364 63.3589 32.6695 21.7964 16.6617 13.6213 11.5335 9.95403 8.70082 7.67954 6.84006 6.17156 5.68684 5.41174 5.3764 5.60051 6.03967 6.61015 7.28724 8.06603 8.98148 10.0623 11.2516 12.5013 13.8092 15.2452 16.9636 19.1775 22.143 26.4999 35.2506 63.8672 186.169 1063.21 1051.47 182.199 63.0852 32.3075 21.4606 16.4235 13.4841 11.4755 9.94679 8.71785 7.7022 6.85549 6.17165 5.66919 5.38059 5.34441 5.5913 6.06909 6.68399 7.42606 8.27295 9.24715 10.3904 11.6385 12.891 14.1281 15.401 16.8562 18.7229 21.3818 25.7562 35.1968 65.1245 187.672 1063.68 1051.47 182.069 62.8609 32.0132 21.2215 16.3009 13.461 11.5177 10.0234 8.80314 7.7785 6.91203 6.20136 5.66845 5.34968 5.28975 5.53036 6.02537 6.67612 7.48082 8.40574 9.45865 10.6952 12.0494 13.3641 14.6085 15.8073 17.1014 18.7518 21.1876 25.3919 34.9132 65.26 187.068 1064.19 1051.47 182.004 62.7651 31.8735 21.1393 16.3255 13.5642 11.6607 10.1777 8.94933 7.90391 7.00941 6.26574 5.69445 5.33216 5.22634 5.42667 5.90261 6.55857 7.39519 8.38002 9.51975 10.8438 12.3142 13.7722 15.1098 16.3086 17.4791 18.9066 21.1022 25.1498 34.6061 64.3373 181.09 1064.41 1051.47 182.047 62.8282 31.8937 21.1874 16.4515 13.7444 11.86 10.3721 9.12478 8.05438 7.1326 6.35831 5.74965 5.34109 5.18051 5.32154 5.75021 6.37758 7.19703 8.197 9.38655 10.7548 12.3239 13.9853 15.5305 16.8751 18.0448 19.3032 21.2136 24.9979 34.4178 64.1076 180.175 1064.28 1051.47 182.159 63.0063 32.0488 21.3621 16.6824 14.0045 12.1134 10.597 9.31538 8.21589 7.2703 6.47106 5.83018 5.37924 5.16719 5.25109 5.62984 6.2177 6.99058 7.95042 9.1109 10.455 12.0218 13.8103 15.6148 17.2539 18.6333 19.8935 21.5909 25.0682 34.3309 64.2496 181.313 1063.91 1051.48 182.263 63.212 32.2669 21.5899 16.9205 14.2258 12.3007 10.7498 9.44184 8.32927 7.37886 6.57131 5.9113 5.42927 5.17931 5.22611 5.57634 6.14131 6.87897 7.78734 8.87878 10.1444 11.6318 13.4109 15.3579 17.2908 19.0512 20.5917 22.2923 25.4778 34.34 64.4885 184.565 1063.69 1051.48 182.367 63.4309 32.5159 21.8169 17.0945 14.3379 12.3722 10.8122 9.51332 8.41701 7.48056 6.67356 5.99801 5.48721 5.20497 5.22929 5.57274 6.139 6.8711 7.74791 8.77301 9.94393 11.3253 12.9808 14.8571 16.8928 18.9676 20.9237 22.888 25.9743 34.2976 63.8368 183.87 1063.67 1051.48 182.554 63.6924 32.7391 21.9138 17.0567 14.2238 12.2562 10.7474 9.51618 8.47099 7.56071 6.75737 6.06811 5.53324 5.22757 5.24406 5.60147 6.19535 6.95915 7.84335 8.83987 9.95212 11.2517 12.7404 14.4242 16.3816 18.586 20.8728 23.1727 26.3333 34.2628 62.9394 180.978 1063.91 1051.47 182.848 63.9395 32.7877 21.7465 16.7831 13.9646 12.0859 10.6898 9.5541 8.56457 7.6712 6.85788 6.14344 5.57858 5.24631 5.24935 5.61735 6.24567 7.06205 7.98581 8.99556 10.1035 11.3454 12.6749 14.1267 15.8582 17.987 20.4592 23.1161 26.5221 34.3175 62.4582 179.681 1064.16 1051.47 183.108 64.1481 32.7723 21.54 16.5509 13.8186 12.0561 10.7585 9.68118 8.70859 7.80215 6.96044 6.21253 5.61796 5.26199 5.24591 5.60914 6.25948 7.13121 8.12316 9.19179 10.3502 11.6224 12.9098 14.1951 15.6376 17.4667 19.8373 22.7414 26.6274 34.8956 63.4011 180.267 1064.6 1051.46 183.366 64.3466 32.7445 21.3391 16.3552 13.7278 12.0778 10.8574 9.81281 8.8397 7.91354 7.04623 6.27611 5.66366 5.28599 5.23256 5.55116 6.17556 7.05277 8.09635 9.23796 10.4713 11.8477 13.2348 14.5156 15.7827 17.2678 19.2746 22.0966 26.3838 35.539 65.1669 181.836 1065.23 1051.46 183.335 64.3707 32.6758 21.1839 16.2539 13.7571 12.2124 11.0387 9.99514 8.99906 8.04327 7.15328 6.37085 5.74815 5.34716 5.24057 5.48115 6.03282 6.84722 7.87489 9.05314 10.3536 11.8243 13.3839 14.8264 16.118 17.4056 19.0058 21.4138 25.6122 35.2105 65.342 181.491 1065.43 1051.46 183.587 64.6946 32.9223 21.3177 16.3648 13.9125 12.4075 11.238 10.1725 9.1455 8.16382 7.26136 6.47807 5.85543 5.43992 5.28547 5.44189 5.89793 6.5974 7.53139 8.67167 9.9893 11.4716 13.1544 14.8277 16.3016 17.6108 18.997 21.0461 24.9753 34.4909 64.2066 179.571 1065.59 1051.46 183.591 64.8706 33.1806 21.5738 16.6171 14.1798 12.679 11.4819 10.3657 9.28798 8.27621 7.36986 6.59965 5.99134 5.57579 5.39269 5.47952 5.83221 6.41397 7.21621 8.24472 9.48775 10.9131 12.5974 14.4058 16.0689 17.4884 18.759 20.4432 23.9521 33.2167 62.5416 177.548 1064.93 1051.46 183.844 65.5566 34.076 22.4564 17.3672 14.7512 13.0465 11.6439 10.3639 9.2 8.18041 7.31743 6.60988 6.0612 5.68988 5.52633 5.59595 5.89293 6.38648 7.07548 7.97966 9.09965 10.4474 12.0833 14.0122 15.9464 17.6152 18.9174 20.221 22.9273 31.2408 60.1315 176.4 1064.74 1051.46 184.574 66.4746 34.9476 23.0701 17.5816 14.5384 12.5039 10.9588 9.72685 8.72372 7.88507 7.16864 6.56332 6.08541 5.7672 5.64347 5.7326 6.02302 6.47442 7.07593 7.84149 8.79252 9.98911 11.5275 13.5081 15.7586 17.9245 19.7214 21.3216 23.9444 31.7939 60.6379 177.71 1064.9 1051.46 183.519 65.1781 33.6344 21.7099 16.156 13.1607 11.3434 10.0985 9.11798 8.25104 7.45402 6.74789 6.17648 5.77972 5.58675 5.61497 5.85438 6.25654 6.78003 7.40426 8.13953 9.03397 10.168 11.6723 13.6992 16.2718 19.0071 21.2395 22.9218 25.5653 33.8731 63.7312 180.837 1066.11 1051.46 183.726 65.1849 33.3809 21.3296 15.8366 13.0008 11.2954 10.0304 8.91843 7.90215 7.03185 6.36546 5.91865 5.67378 5.61511 5.74282 6.03927 6.47519 7.01984 7.65171 8.38098 9.24741 10.27 11.53 13.2098 15.4922 18.3443 21.277 23.7562 26.769 35.3278 65.5298 182.136 1066.98 1051.46 183.729 65.3143 33.6794 21.7722 16.3272 13.3788 11.3998 9.80377 8.45896 7.40144 6.65073 6.15288 5.8274 5.63852 5.61662 5.81403 6.21969 6.7873 7.47474 8.24132 9.09672 10.05 11.0788 12.2366 13.6431 15.3878 17.4703 19.8286 22.4372 26.1369 35.5079 66.4467 183.135 1067.64 1051.46 182.516 64.107 32.6917 20.8251 15.1616 11.8741 9.67471 8.14695 7.14019 6.51952 6.12102 5.81702 5.58511 5.49569 5.62513 5.96576 6.46111 7.08107 7.79863 8.60922 9.52282 10.4921 11.498 12.589 13.8765 15.4868 17.41 19.5498 22.1167 26.3584 36.8742 68.6254 184.619 1067.13 1051.47 182.698 64.0977 32.1772 19.7332 13.6781 10.3344 8.41012 7.32192 6.7033 6.28834 5.92359 5.58591 5.34618 5.29296 5.46876 5.8654 6.45583 7.21803 8.1144 9.10285 10.1742 11.2223 12.1619 13.0049 13.8832 15.05 16.7007 18.8434 21.551 25.8191 35.9229 66.3022 180.857 1067.66 1051.47 183.529 64.7075 32.3397 19.4739 13.2067 9.9207 8.20027 7.29067 6.74104 6.31291 5.92508 5.58919 5.34521 5.21976 5.21808 5.33683 5.6206 6.12639 6.91255 8.00384 9.35926 10.8984 12.53 13.7988 14.4433 14.5918 14.8791 15.9369 18.1434 22.333 32.2718 62.2765 177.791 1066.59 1051.47 184.576 65.7129 33.0999 20.1654 14.032 10.9032 9.22611 8.2421 7.57635 7.06489 6.65358 6.33392 6.10868 5.98043 5.95119 6.02582 6.2131 6.57967 7.14166 7.95239 9.09483 10.6275 12.5891 14.7786 16.5659 17.4616 17.5575 17.8421 19.4107 23.5061 33.9302 64.738 180.638 1068.22 1051.47 185.774 67.9599 36.2583 23.9357 17.9785 14.6525 12.578 11.1553 10.0979 9.26341 8.58074 8.01408 7.53909 7.12887 6.76341 6.46324 6.32606 6.47027 6.95578 7.6847 8.58829 9.68736 11.1315 13.1563 15.407 17.2107 17.8653 17.5467 17.6318 20.2626 29.6833 60.0185 177.163 1068.64 1051.47 178.827 67.5623 37.5578 25.8386 20.0072 16.5664 14.2755 12.6181 11.3517 10.3521 9.5493 8.90027 8.36811 7.89497 7.44273 7.03594 6.66382 6.39661 6.22938 6.64343 7.98131 9.80341 11.5384 13.1981 15.2182 17.5142 19.6423 20.8481 21.4593 23.9578 34.1087 66.8 184.43 1069.91 1051.48 180.845 68.5298 37.0995 24.0246 17.2186 13.2255 10.7214 9.08739 7.99966 7.27831 6.81747 6.54622 6.40408 6.32362 6.22863 6.07095 5.86274 5.67608 5.57252 5.70107 6.41917 7.9053 10.0632 12.5939 15.4189 17.7918 19.6705 21.1885 22.8928 26.4988 36.2798 65.231 182.813 1070.25 1051.52 186.499 68.3561 33.6465 19.5586 13.2967 10.4749 9.14536 8.42449 7.92638 7.49201 7.06788 6.64986 6.25354 5.89606 5.58495 5.31735 5.08884 4.88692 4.70137 4.51825 4.32306 4.15407 4.2257 4.78342 5.92294 7.80169 10.5261 13.3379 14.9595 16.9673 26.4425 61.2634 183.873 1068.29 1051.62 177.966 54.8073 23.6605 15.9111 14.7627 14.5822 14.062 13.2187 12.2133 11.1449 10.0798 9.07063 8.16298 7.39826 6.81394 6.44441 6.34414 6.44319 6.75258 7.29503 8.0998 9.20708 10.6635 12.5234 14.8347 17.6644 21.1264 25.4516 31.2739 40.4231 57.2449 93.6583 206.402 1069.07 537.627 24.014 24.1752 24.2108 24.2217 24.2321 24.237 24.2355 24.2287 24.2176 24.2035 24.1873 24.17 24.1523 24.1348 24.1179 24.1022 24.088 24.0741 24.0612 24.0486 24.0365 24.0242 24.0114 23.9974 23.9815 23.9625 23.9397 23.9135 23.8879 23.8715 23.8738 23.8992 23.9436 549.898 537.696 24.1957 24.3591 24.4652 24.5701 24.6502 24.702 24.7338 24.7518 24.7603 24.7625 24.7607 24.7562 24.7505 24.7444 24.7388 24.7352 24.7345 24.7371 24.742 24.7475 24.7524 24.7554 24.7557 24.7517 24.7418 24.7235 24.6937 24.6483 24.5832 24.4907 24.379 24.2535 24.0291 533.048 1051.52 168.83 49.7084 22.2548 13.0549 8.61301 5.96052 4.25348 3.12232 2.34866 1.79027 1.36279 1.02211 0.747614 0.530086 0.364406 0.260283 0.232765 0.288338 0.418278 0.60675 0.854585 1.1715 1.57207 2.08169 2.74554 3.64026 4.88758 6.68223 9.39406 14.0139 23.8448 52.7077 171.888 1045.17 1051.54 173.153 51.45 22.0972 12.8257 9.12228 7.3897 6.47686 5.94858 5.62956 5.43415 5.31606 5.24832 5.21433 5.20362 5.20957 5.2282 5.26083 5.30874 5.37221 5.44822 5.53778 5.64521 5.77826 5.95015 6.18298 6.51687 7.03099 7.89577 9.51928 13.0377 22.2552 51.9439 172.942 1045.38 1051.56 179.258 57.8798 27.4121 16.8754 12.067 9.36786 7.65713 6.50064 5.69865 5.12465 4.69368 4.36333 4.11346 3.93193 3.81164 3.74863 3.74087 3.78793 3.89144 4.05451 4.28161 4.57948 4.95858 5.44398 6.07725 6.90981 8.03606 9.65641 12.2229 16.9049 27.3996 57.925 178.527 1047.05 1051.56 177.663 57.2377 27.5349 17.2432 12.5478 9.95129 8.34031 7.26817 6.51727 5.961 5.53211 5.19812 4.94024 4.74768 4.61457 4.5382 4.51797 4.55456 4.64984 4.8061 5.02689 5.31756 5.68645 6.1475 6.72541 7.47663 8.50146 9.98201 12.3546 16.784 26.9061 56.7059 176.534 1047.37 1051.57 180.551 60.1342 30.0933 19.506 14.5365 11.6789 9.7934 8.43419 7.41326 6.64207 6.04435 5.5681 5.19079 4.89939 4.68707 4.55108 4.49117 4.50823 4.60561 4.78767 5.06015 5.43138 5.91398 6.52806 7.31736 8.35107 9.71089 11.5583 14.3092 19.0987 29.5092 59.5578 179.386 1048.31 1051.57 179.59 59.595 30.2046 19.9698 15.1423 12.3284 10.441 9.0564 7.99611 7.17856 6.53408 6.0135 5.59546 5.26803 5.02549 4.86643 4.7912 4.80053 4.89827 5.08869 5.37613 5.76685 6.27054 6.9041 7.7033 8.73668 10.0991 11.9503 14.6858 19.3705 29.418 58.6933 178.086 1048.8 1051.57 181.399 61.2893 31.6365 21.3213 16.4361 13.562 11.5921 10.0933 8.88611 7.90779 7.12311 6.48803 5.97274 5.56495 5.25902 5.05333 4.94869 4.94657 5.05197 5.27061 5.60757 6.069 6.66362 7.40571 8.33053 9.49339 10.9601 12.8866 15.6937 20.4966 30.7402 60.2541 179.672 1049.49 1051.56 181.156 61.2736 31.9962 21.9536 17.1848 14.3335 12.3303 10.7622 9.46336 8.38508 7.51538 6.81472 6.24681 5.79794 5.46133 5.23463 5.11871 5.11527 5.2306 5.47221 5.84688 6.36204 7.02744 7.85747 8.89015 10.1678 11.7162 13.6551 16.3717 20.9462 30.7993 59.8704 179.181 1050.05 1051.56 182.022 62.0844 32.6627 22.6797 17.984 15.1639 13.1403 11.5073 10.1109 8.91723 7.94204 7.15824 6.524 6.02201 5.6434 5.38505 5.24821 5.23501 5.35308 5.61198 6.02096 6.58922 7.32795 8.25201 9.40223 10.8093 12.4669 14.4757 17.217 21.7771 31.5991 60.7224 180.079 1050.62 1051.57 181.965 62.1496 32.9872 23.2727 18.6839 15.8429 13.7287 11.9826 10.4819 9.2057 8.16933 7.34443 6.68306 6.16042 5.76553 5.49482 5.34986 5.33358 5.45533 5.72727 6.16218 6.77345 7.57729 8.59378 9.87095 11.4347 13.2447 15.3564 18.1051 22.5381 32.0969 61.007 180.376 1051.25 1051.57 182.096 62.2367 33.2172 23.6477 19.0967 16.2261 14.0591 12.2641 10.7285 9.42952 8.37552 7.53311 6.8531 6.3107 5.89609 5.60754 5.44815 5.42191 5.53964 5.81516 6.26344 6.90112 7.74881 8.83255 10.2098 11.9083 13.8675 16.1117 18.9348 23.3426 32.774 61.6198 181.006 1051.87 1051.58 182.098 62.1886 33.3344 23.8844 19.3662 16.4886 14.3048 12.4958 10.9504 9.6429 8.57795 7.71995 7.02055 6.45677 6.02057 5.71179 5.53455 5.49312 5.59872 5.86566 6.30961 6.94901 7.80803 8.91951 10.3546 12.1584 14.2731 16.7003 19.6781 24.1303 33.4284 62.0925 181.464 1052.46 1051.58 182.164 62.1861 33.3603 23.9356 19.4388 16.5901 14.4404 12.6623 11.138 9.8397 8.77292 7.90228 7.18294 6.59715 6.13968 5.81217 5.6197 5.56658 5.66393 5.92549 6.36572 7.00172 7.8564 8.96305 10.3959 12.2108 14.3698 16.8903 19.9994 24.5665 33.8616 62.3626 181.685 1052.91 1051.57 182.482 62.4082 33.4687 24.0368 19.5746 16.7734 14.6661 12.9144 11.397 10.0887 9.0017 8.10485 7.35625 6.7416 6.25762 5.9069 5.69512 5.62654 5.71243 5.96633 6.40183 7.03467 7.8857 8.98962 10.4185 12.2217 14.3735 16.9143 20.0874 24.7487 34.092 62.4788 181.758 1053.29 1051.56 182.752 62.64 33.5696 24.1233 19.6955 16.9413 14.8751 13.1487 11.6381 10.3212 9.21483 8.29282 7.51691 6.87556 6.36703 5.99458 5.76439 5.68079 5.75536 6.00173 6.43268 7.06234 7.90857 9.00621 10.4211 12.1885 14.2883 16.7807 19.9373 24.632 34.0171 62.295 181.52 1053.58 1051.55 183.159 63.0398 33.778 24.2909 19.883 17.1613 15.1227 13.4105 11.8972 10.5617 9.42766 8.47572 7.67059 7.00208 6.46906 6.07513 5.82695 5.72906 5.79384 6.0357 6.46774 7.10359 7.95927 9.07082 10.4982 12.2575 14.3188 16.7444 19.8246 24.4656 33.8309 62.041 181.29 1053.86 1051.53 183.301 63.2783 33.9211 24.409 20.0091 17.3052 15.2864 13.5907 12.0841 10.7399 9.58524 8.61038 7.78411 7.09656 6.54672 6.13824 5.87808 5.77112 5.83059 6.07194 6.50905 7.15573 8.02715 9.15947 10.61 12.3824 14.4298 16.7997 19.7825 24.3071 33.5668 61.6627 180.953 1054.14 1051.52 183.35 63.4412 34.025 24.4776 20.069 17.3741 15.3753 13.7027 12.2125 10.8672 9.69214 8.69598 7.85509 7.15566 6.59647 6.18115 5.91695 5.80932 5.87242 6.12287 6.57572 7.24578 8.14844 9.31993 10.8177 12.6377 14.7115 17.0602 19.9586 24.3452 33.4558 61.4703 180.886 1054.5 1051.52 183.121 63.3292 33.9576 24.4002 19.9869 17.307 15.338 13.7005 12.2392 10.9051 9.71943 8.71225 7.86836 7.16817 6.6101 6.19775 5.9387 5.8391 5.91407 6.18131 6.65723 7.35819 8.30077 9.52089 11.0788 12.9698 15.1032 17.4694 20.3169 24.581 33.5348 61.481 181.04 1054.95 1051.52 182.784 63.0531 33.7596 24.205 19.8005 17.1519 15.2263 13.6327 12.2065 10.8903 9.70138 8.68997 7.84942 7.15468 6.60378 6.20024 5.95195 5.86582 5.95796 6.24715 6.75137 7.48921 8.47972 9.75869 11.3918 13.3794 15.6095 18.0394 20.8847 25.0672 33.8987 61.8595 181.596 1055.5 1051.52 182.289 62.5604 33.3954 23.8859 19.5264 16.9354 15.0667 13.519 12.125 10.8295 9.65101 8.64146 7.80717 7.12483 6.58634 6.1951 5.95955 5.88763 5.99651 6.30593 6.8353 7.60546 8.63858 9.96982 11.672 13.758 16.1025 18.6362 21.5385 25.7018 34.4594 62.4694 182.34 1056.07 1051.52 181.843 62.0437 32.985 23.541 19.2549 16.7391 14.9328 13.4278 12.0595 10.78 9.61313 8.61149 7.78664 7.11484 6.58463 6.20029 5.97146 5.90727 6.02589 6.34791 6.89382 7.68647 8.75135 10.1238 11.883 14.0547 16.5101 19.1681 22.1791 26.3954 35.15 63.2512 183.182 1056.59 1051.53 181.495 61.572 32.5912 23.2351 19.044 16.6105 14.8627 13.3916 12.0402 10.7711 9.61511 8.62429 7.80721 7.13879 6.60806 6.22095 5.98847 5.92065 6.03625 6.35632 6.90177 7.69658 8.7689 10.1552 11.9394 14.159 16.6953 19.4743 22.6319 26.9722 35.7811 63.9185 183.774 1056.98 1051.54 181.47 61.3684 32.3575 23.0652 18.9599 16.5974 14.8955 13.4471 12.1039 10.8384 9.68821 8.70427 7.88691 7.20998 6.66647 6.26429 6.01579 5.93132 6.02983 6.33254 6.86011 7.63651 8.69077 10.0611 11.8337 14.0519 16.6143 19.475 22.7839 27.3104 36.2521 64.3842 184.059 1057.19 1051.54 181.777 61.4942 32.34 23.0678 19.0218 16.7081 15.0351 13.5976 12.2543 10.9852 9.8335 8.84895 8.02131 7.32429 6.75723 6.32973 6.05486 5.94255 6.01155 6.28299 6.77685 7.51621 8.5296 9.85767 11.5838 13.7475 16.2701 19.147 22.568 27.2993 36.4322 64.5041 183.927 1057.22 1051.53 182.326 61.9137 32.5132 23.2105 19.1951 16.9116 15.2563 13.823 12.4743 11.1967 10.0375 9.04141 8.19182 7.46643 6.86953 6.41138 6.10511 5.95976 5.99362 6.22763 6.68076 7.37462 8.33615 9.60859 11.2696 13.3463 15.7762 18.5926 22.0407 26.9282 36.2797 64.3058 183.501 1057.12 1051.52 182.932 62.4929 32.8019 23.4335 19.4326 17.1709 15.5281 14.094 12.7331 11.4372 10.2617 9.24376 8.36495 7.60934 6.9822 6.49389 6.15736 5.98051 5.98111 6.17989 6.59483 7.24597 8.15835 9.37789 10.9765 12.9634 15.2797 17.98 21.3577 26.2889 35.8007 63.7992 182.843 1056.95 1051.51 183.425 63.0681 33.1217 23.6947 19.705 17.4504 15.8042 14.3568 12.9737 11.6511 10.4518 9.40878 8.5022 7.72035 7.06867 6.55705 6.19789 5.998 5.97454 6.148 6.53561 7.15615 8.03294 9.21496 10.7697 12.6871 14.9006 17.4648 20.6991 25.544 35.0854 63.0413 182.042 1056.8 1051.49 183.66 63.4897 33.4088 23.9576 19.9737 17.7027 16.0267 14.5467 13.1329 11.7826 10.5611 9.49818 8.57258 7.77471 7.10945 6.58593 6.21595 6.00564 5.97172 6.13449 6.5108 7.11867 7.98027 9.14841 10.6885 12.572 14.717 17.1618 20.2251 24.8873 34.3102 62.1668 181.221 1056.74 1051.49 183.681 63.7241 33.649 24.2006 20.1917 17.8632 16.125 14.5978 13.1563 11.7915 10.5614 9.49186 8.56154 7.7616 7.09632 6.57432 6.20711 6.00082 5.97203 6.14084 6.5241 7.13952 8.00868 9.18897 10.7459 12.6344 14.7546 17.1176 20.0204 24.4541 33.641 61.3217 180.505 1056.81 1051.48 183.568 63.8138 33.8477 24.3899 20.2963 17.865 16.0467 14.4793 13.0322 11.6784 10.4596 9.3992 8.4786 7.68942 7.03616 6.52764 6.17561 5.98683 5.97801 6.1691 6.57715 7.22002 8.11935 9.33766 10.9422 12.874 15.0141 17.3412 20.1184 24.3261 33.2244 60.6919 180.071 1057.05 1051.48 183.38 63.7919 33.9759 24.4594 20.2253 17.6751 15.7941 14.2192 12.7997 11.4827 10.2902 9.24867 8.34655 7.57601 6.94282 6.4567 6.12989 5.97006 5.99409 6.22161 6.6699 7.35739 8.30653 9.58498 11.263 13.2718 15.4733 17.8106 20.5061 24.521 33.1391 60.4188 180.054 1057.45 1051.47 183.147 63.674 33.9827 24.3517 19.9645 17.3274 15.4329 13.8938 12.5292 11.2607 10.0963 9.07322 8.1905 7.44069 6.83144 6.37344 6.07926 5.95714 6.0239 6.29852 6.79841 7.54297 8.55647 9.91122 11.6814 13.7937 16.0922 18.4835 21.1448 25.0141 33.4053 60.6119 180.58 1058 1051.47 182.869 63.4456 33.8223 24.0623 19.5701 16.9148 15.0631 13.5903 12.2873 11.0598 9.91124 8.89728 8.02893 7.29824 6.71425 6.28796 6.03139 5.9527 6.06816 6.39571 6.95263 7.75969 8.84416 10.2821 12.1528 14.3846 16.8074 19.2923 21.9679 25.7442 33.9787 61.2657 181.623 1058.64 1051.47 182.556 63.1076 33.5031 23.6566 19.1449 16.5425 14.7713 13.3703 12.1131 10.9037 9.75263 8.73448 7.87264 7.15886 6.6008 6.20809 5.9912 5.95753 6.12237 6.50229 7.11399 7.97957 9.13011 10.644 12.6062 14.9546 17.5111 20.1181 22.855 26.5961 34.7544 62.2791 182.989 1059.29 1051.47 182.206 62.6708 33.077 23.228 18.7843 16.2841 14.6041 13.2588 12.0171 10.7952 9.62275 8.58963 7.72943 7.03218 6.49976 6.13976 5.96067 5.96875 6.17796 6.60313 7.25978 8.17074 9.37056 10.9378 12.9627 15.3999 18.0746 20.8136 23.6509 27.4106 35.5483 63.3411 184.26 1059.81 1051.48 181.861 62.1899 32.6277 22.8623 18.549 16.171 14.5703 13.2506 11.9895 10.7269 9.5179 8.4668 7.60828 6.92614 6.41676 6.08537 5.93837 5.98059 6.22438 6.68257 7.36894 8.30582 9.52957 11.1159 13.1588 15.6341 18.3857 21.247 24.2203 28.0673 36.2527 64.2838 185.208 1060.12 1051.49 181.569 61.7431 32.2402 22.6192 18.4648 16.2043 14.6569 13.3273 12.0143 10.6906 9.43855 8.37128 7.51546 6.84592 6.35484 6.04524 5.92164 5.98744 6.25327 6.72983 7.4289 8.37088 9.59076 11.1589 13.1691 15.6188 18.3851 21.3355 24.4718 28.4914 36.8066 65.002 185.753 1060.18 1051.5 181.392 61.4071 31.966 22.5172 18.5233 16.3608 14.8338 13.4595 12.0702 10.6761 9.38293 8.305 7.45326 6.79298 6.31411 6.01802 5.90784 5.9858 6.26104 6.74224 7.43898 8.36854 9.56191 11.0816 13.0162 15.3804 18.0926 21.0776 24.3748 28.6414 37.1804 65.4717 185.948 1060.04 1051.5 181.338 61.2022 31.8249 22.558 18.7079 16.6089 15.0637 13.6152 12.1374 10.6754 9.35031 8.26908 7.42242 6.76729 6.2939 6.00263 5.89582 5.975 6.24832 6.723 7.40662 8.31282 9.46698 10.9222 12.7571 14.9951 17.5949 20.5491 23.9673 28.5083 37.3423 65.6813 185.85 1059.76 1051.51 181.467 61.2041 31.8421 22.7351 18.9907 16.9107 15.3104 13.7679 12.2008 10.6833 9.34028 8.26296 7.42147 6.76752 6.29334 5.99887 5.88624 5.95694 6.21886 6.67872 7.34274 8.22133 9.33394 10.7242 12.4574 14.5555 17.0075 19.8715 23.3445 28.1334 37.2986 65.6858 185.567 1059.41 1051.52 181.743 61.3949 31.9939 22.9997 19.319 17.2181 15.5341 13.8891 12.2433 10.6917 9.35169 8.28367 7.44558 6.79101 6.31173 6.00767 5.88158 5.93568 6.17862 6.61772 7.25893 8.11049 9.18677 10.5235 12.1707 14.1376 16.4309 19.1615 22.6147 27.58 37.0623 65.5217 185.177 1059.06 1051.52 182.107 61.7369 32.2468 23.305 19.6401 17.4823 15.6997 13.9608 12.259 10.6975 9.3784 8.32735 7.49411 6.83768 6.34961 6.03067 5.88494 5.91596 6.13391 6.54782 7.16465 7.99202 9.04098 10.3427 11.9308 13.791 15.9337 18.5064 21.8703 26.9135 36.6463 65.1873 184.693 1058.73 1051.51 182.49 62.1648 32.5602 23.6089 19.9099 17.6666 15.7846 13.9739 12.2462 10.6999 9.41621 8.38825 7.56129 6.90235 6.40355 6.06685 5.89788 5.90175 6.09069 6.47637 7.06804 7.87458 8.9062 10.1945 11.7571 13.5455 15.5607 17.9694 21.1897 26.2062 36.0853 64.6925 184.13 1058.45 1051.51 182.839 62.6259 32.9068 23.8874 20.107 17.7591 15.7879 13.9335 12.2107 10.7007 9.46061 8.45756 7.63723 6.97598 6.46668 6.11222 5.91953 5.89512 6.05334 6.40908 6.97487 7.76275 8.78496 10.0796 11.6513 13.4087 15.3314 17.5885 20.6332 25.5296 35.4302 64.0556 183.5 1058.23 1051.5 183.155 63.1104 33.2883 24.1481 20.2457 17.7826 15.735 13.8572 12.1586 10.7002 9.50125 8.5179 7.70585 7.04498 6.52841 6.1596 5.94645 5.89646 6.02574 6.35224 6.89225 7.66235 8.68105 9.99575 11.6002 13.3624 15.2332 17.3657 20.225 24.9278 34.7163 63.2696 182.77 1058.06 1051.49 183.395 63.5766 33.6917 24.3993 20.3441 17.7578 15.6412 13.7508 12.0823 10.6762 9.51626 8.55228 7.75112 7.09438 6.57591 6.19941 5.9733 5.90556 6.01328 6.31646 6.83428 7.5877 8.60909 9.95346 11.5993 13.3931 15.2506 17.2906 19.9661 24.4174 33.9559 62.2966 181.874 1057.95 1051.48 183.515 63.9602 34.0799 24.6333 20.4073 17.6878 15.4991 13.5994 11.9666 10.6095 9.48463 8.54182 7.75594 7.10966 6.59729 6.22261 5.99444 5.92136 6.02114 6.31493 6.82355 7.57078 8.60035 9.97678 11.6707 13.5122 15.383 17.3584 19.8606 24.027 33.2071 61.1969 180.869 1057.92 1051.47 183.512 64.2338 34.4246 24.8326 20.4171 17.5485 15.2834 13.3785 11.7893 10.4794 9.3887 8.47413 7.71095 7.08314 6.58612 6.22425 6.00715 5.94443 6.05471 6.35974 6.88089 7.6431 8.69849 10.118 11.8653 13.7595 15.6548 17.5826 19.9242 23.7967 32.5604 60.1147 179.913 1057.99 1051.46 183.423 64.4028 34.7012 24.9556 20.3254 17.3017 14.9756 13.0834 11.5434 10.2825 9.2313 8.35109 7.61736 7.01571 6.54327 6.20562 6.01373 5.97895 6.12126 6.4628 7.02471 7.83177 8.94194 10.4277 12.2413 14.1903 16.1096 17.9952 20.1878 23.781 32.1348 59.2735 179.276 1058.21 1051.45 183.281 64.5041 34.9091 24.9717 20.1068 16.9426 14.5819 12.7218 11.2335 10.0226 9.01754 8.1781 7.48027 6.91223 6.47358 6.17204 6.02051 6.03263 6.23032 6.63601 7.26985 8.15547 9.355 10.9393 12.8419 14.8517 16.7897 18.6279 20.6794 24.025 32.035 58.8998 179.246 1058.6 1051.45 183.109 64.5358 34.9983 24.8117 19.7115 16.4471 14.0927 12.2863 10.8618 9.71138 8.76026 7.96777 7.31208 6.78492 6.38909 6.13521 6.03848 6.11524 6.38984 6.88477 7.61805 8.61058 9.92963 11.6431 13.6564 15.7401 17.6983 19.4847 21.4006 24.5362 32.3026 59.1324 179.999 1059.21 1051.44 182.816 64.341 34.7919 24.3441 19.0739 15.7938 13.5122 11.8011 10.461 9.38176 8.49186 7.75109 7.14143 6.6591 6.31102 6.11157 6.07861 6.23148 6.59736 7.19849 8.04946 9.16428 10.6204 12.481 14.6132 16.789 18.7861 20.536 22.341 25.3284 33.0085 60.1893 181.799 1060.04 1051.44 182.411 63.8748 34.2275 23.5792 18.2685 15.0791 12.9331 11.35 10.1082 9.10399 8.27357 7.57951 7.00966 6.56599 6.26045 6.11174 6.14053 6.36916 6.82788 7.53876 8.51366 9.75952 11.3523 13.3502 15.6052 17.8865 19.9444 21.6779 23.3931 26.2679 33.9569 61.7477 184.063 1060.99 1051.44 182.021 63.2704 33.4602 22.7258 17.5044 14.4758 12.4901 11.0383 9.88955 8.94844 8.161 7.49614 6.94855 6.52622 6.24623 6.1316 6.20602 6.49487 7.03168 7.83904 8.92706 10.2972 12.0233 14.151 16.5137 18.8932 21.0326 22.791 24.4552 27.2368 34.9665 63.4311 186.178 1061.91 1051.44 181.703 62.6625 32.709 22.016 16.9604 14.1095 12.2724 10.9309 9.85281 8.95039 8.18057 7.52015 6.97021 6.54408 6.26342 6.15507 6.24593 6.56475 7.14933 8.02557 9.20512 10.6958 12.5645 14.8206 17.2747 19.7203 21.9135 23.6977 25.3403 28.0519 35.8777 65.2152 188.491 1062.63 1051.44 181.489 62.1817 32.1439 21.5678 16.6921 13.9987 12.2813 11.0213 9.98621 9.09345 8.31408 7.63426 7.05876 6.60502 6.29799 6.16691 6.24105 6.55195 7.14241 8.04708 9.28792 10.8872 12.9105 15.3276 17.904 20.4167 22.624 24.3698 25.9368 28.5193 36.2304 65.387 184.627 1063.05 1051.44 181.372 61.8739 31.8065 21.3706 16.6551 14.089 12.4624 11.258 10.2417 9.33417 8.52363 7.80687 7.18972 6.69251 6.34176 6.16676 6.19638 6.46139 7.00626 7.87663 9.10552 10.7375 12.8753 15.4786 18.2651 20.9479 23.2318 24.9312 26.3741 28.7985 36.4254 65.517 182.454 1063.15 1051.44 181.296 61.6845 31.6295 21.3365 16.7593 14.2984 12.7445 11.5801 10.5678 9.62978 8.77354 8.00832 7.34069 6.79312 6.39228 6.1654 6.13776 6.33446 6.7936 7.55963 8.68464 10.2302 12.3336 15.046 18.0848 21.0978 23.6764 25.4994 26.8618 29.0967 36.6083 65.6363 181.799 1063 1051.45 181.308 61.6109 31.5686 21.4006 16.9395 14.569 13.0788 11.9475 10.9322 9.95372 9.03797 8.21341 7.49086 6.89295 6.44537 6.17215 6.09335 6.22578 6.59623 7.23745 8.1957 9.53833 11.4212 13.9925 17.1155 20.4629 23.5527 25.874 27.4507 29.5482 36.7295 65.3833 181.083 1062.64 1051.46 181.213 61.4342 31.4404 21.4239 17.0996 14.8362 13.4212 12.3276 11.3065 10.2796 9.28878 8.39403 7.61636 6.97316 6.48862 6.18321 6.07152 6.16221 6.47082 7.01561 7.82478 8.94993 10.5147 12.6989 15.5566 18.9194 22.409 25.4797 27.7945 30.1843 36.9715 64.6963 179.976 1062.11 1051.47 181.089 61.1905 31.2686 21.4334 17.2687 15.1267 13.7919 12.7304 11.6882 10.5922 9.50817 8.53487 7.70292 7.02147 6.51188 6.19018 6.06518 6.13848 6.417 6.90784 7.62357 8.59384 9.89129 11.6629 14.0448 17.0265 20.4566 23.9931 27.2338 30.5542 37.6611 65.1185 181.613 1061.47 1051.48 181.187 61.1603 31.2461 21.5547 17.5391 15.5055 14.2288 13.1675 12.0677 10.8741 9.68385 8.63148 7.75089 7.04021 6.51616 6.1895 6.0637 6.13526 6.40574 6.8757 7.54852 8.43918 9.58457 11.0806 13.0509 15.5497 18.5759 22.0396 25.77 30.0592 38.0187 65.6924 185.949 1060.84 1051.5 181.208 61.0885 31.2251 21.7125 17.8617 15.9296 14.6803 13.5742 12.3796 11.0764 9.79245 8.68071 7.76847 7.04174 6.51159 6.18422 6.0596 6.13169 6.39992 6.86261 7.51985 8.37949 9.46431 10.8336 12.5733 14.737 17.3576 20.4919 24.238 29.0904 37.939 65.9653 186.138 1060.35 1051.51 181.208 60.9695 31.1998 21.8874 18.1884 16.3251 15.0601 13.8739 12.575 11.1816 9.83989 8.70038 7.77674 7.04513 6.51238 6.18237 6.05373 6.11972 6.37941 6.8314 7.47649 8.32214 9.38763 10.718 12.3755 14.3823 16.7446 19.5605 23.1021 28.1241 37.5895 66.0942 186.048 1060.05 1051.52 181.334 60.9758 31.2527 22.0883 18.4832 16.6379 15.3262 14.0601 12.6867 11.2478 9.89014 8.74771 7.82155 7.08412 6.54155 6.1982 6.05332 6.10018 6.33765 6.76469 7.38322 8.20289 9.2462 10.5611 12.2123 14.2122 16.5267 19.2107 22.5555 27.4598 37.0828 65.8588 185.647 1059.93 1051.53 181.577 61.107 31.3609 22.261 18.6831 16.8196 15.465 14.1601 12.7713 11.3409 10.0016 8.86783 7.93602 7.18249 6.61656 6.24574 6.07122 6.08635 6.28913 6.67737 7.25154 8.02019 9.00597 10.2591 11.858 13.8454 16.2059 18.9754 22.385 27.2789 36.8266 65.4606 184.999 1059.88 1051.53 182.173 61.5895 31.6147 22.4291 18.8118 16.9228 15.5669 14.2895 12.9452 11.5554 10.2379 9.10047 8.1452 7.35577 6.74701 6.33173 6.11447 6.08891 6.25206 6.59989 7.12957 7.84586 8.76633 9.93652 11.4315 13.3044 15.5798 18.3478 21.8713 26.9569 36.6256 65.0787 184.453 1059.74 1051.53 183.051 62.4859 32.1299 22.7351 19.0353 17.1232 15.7912 14.5657 13.2703 11.9016 10.5725 9.40249 8.4036 7.56314 6.90045 6.43268 6.16735 6.0984 6.22224 6.53381 7.02791 7.70623 8.58249 9.70311 11.1312 12.8961 15.0375 17.6884 21.1744 26.3587 36.2243 64.6799 184.076 1059.52 1051.53 183.705 63.2847 32.6155 23.0278 19.2734 17.369 16.0818 14.9105 13.6472 12.2707 10.9005 9.67911 8.62968 7.73894 7.02828 6.51644 6.21176 6.10721 6.19784 6.47731 6.93841 7.58087 8.41681 9.49835 10.8839 12.5781 14.6169 17.1477 20.5371 25.7145 35.6792 64.0993 183.442 1059.27 1051.52 183.893 63.7922 33.0022 23.3192 19.5746 17.7048 16.4492 15.2912 14.0134 12.5913 11.1503 9.86133 8.7593 7.82643 7.08398 6.54952 6.22943 6.114 6.19541 6.46448 6.91083 7.53089 8.33418 9.37372 10.7096 12.3442 14.3099 16.7508 20.0461 25.1673 35.1649 63.5812 182.962 1059.06 1051.53 183.742 63.8324 33.1068 23.4891 19.8142 17.9843 16.7379 15.5634 14.2474 12.7655 11.2444 9.87497 8.72003 7.76413 7.01922 6.49809 6.20105 6.11331 6.22253 6.51524 6.97751 7.60183 8.39268 9.39467 10.6672 12.2273 14.1144 16.4743 19.6917 24.7619 34.7869 63.2564 182.743 1058.89 1051.53 183.565 63.6454 33.043 23.5679 19.9914 18.2202 16.9928 15.7897 14.3943 12.7964 11.1551 9.69449 8.49972 7.5501 6.84158 6.37554 6.1412 6.11706 6.2864 6.63224 7.13855 7.79501 8.6014 9.58796 10.8045 12.2787 14.0555 16.291 19.3868 24.3688 34.3915 62.9488 182.645 1058.78 1051.54 183.304 63.3975 32.9958 23.7099 20.2659 18.5752 17.3371 16.0058 14.3983 12.5871 10.8084 9.31111 8.14424 7.25633 6.62773 6.24599 6.09186 6.14153 6.37832 6.78544 7.34763 8.05428 8.90256 9.91301 11.122 12.5488 14.2368 16.3517 19.3154 24.1904 34.1888 62.8773 182.807 1058.8 1051.54 183.062 63.2298 33.0805 24.0386 20.7245 19.0111 17.5691 15.9105 13.9922 12.0108 10.2311 8.82456 7.76555 6.98381 6.45277 6.15483 6.07104 6.18124 6.47276 6.93182 7.54583 8.30554 9.20731 10.2675 11.508 12.9277 14.5663 16.6031 19.4849 24.3138 34.3646 63.2979 183.421 1058.93 1051.54 182.769 63.0306 33.2369 24.4614 21.1504 19.1885 17.3511 15.338 13.2496 11.3079 9.69971 8.45992 7.52039 6.82983 6.36764 6.1214 6.0783 6.22343 6.54859 7.04336 7.69844 8.50735 9.4674 10.5964 11.8967 13.3344 14.9465 16.9233 19.7235 24.4653 34.4528 63.4602 183.637 1059.19 1051.53 182.673 62.9698 33.4667 24.7483 21.1867 18.8356 16.6762 14.5486 12.5527 10.8176 9.42168 8.32058 7.45354 6.80429 6.36496 6.13106 6.09535 6.24639 6.57861 7.0838 7.75551 8.59131 9.60237 10.8027 12.1599 13.6268 15.246 17.2109 19.9839 24.6834 34.6043 63.5481 183.577 1059.48 1051.52 183.135 63.3854 33.7938 24.7697 20.8305 18.2243 16.0232 14.0293 12.2444 10.714 9.442 8.38841 7.5332 6.87832 6.42483 6.17349 6.12064 6.25654 6.57672 7.0742 7.74407 8.58658 9.62939 10.878 12.2589 13.7228 15.3172 17.2344 19.9297 24.5125 34.2685 62.9797 182.95 1059.61 1051.51 183.819 64.2338 34.2942 24.7768 20.5349 17.8744 15.7946 13.9772 12.3355 10.888 9.63399 8.55772 7.66971 6.9818 6.49784 6.21942 6.14308 6.25842 6.56061 7.04352 7.70399 8.55937 9.64269 10.9284 12.3305 13.7966 15.3661 17.2229 19.815 24.2382 33.7628 62.1762 182.242 1059.63 1051.49 184.308 64.9771 34.7015 24.8386 20.503 17.9093 15.9513 14.22 12.5944 11.1084 9.79608 8.66762 7.74219 7.02995 6.53117 6.24446 6.16334 6.27487 6.57207 7.04733 7.69714 8.55055 9.6493 10.958 12.3878 13.875 15.4379 17.2428 19.7306 23.9949 33.3021 61.437 181.597 1059.58 1051.48 184.188 65.2327 34.9679 25.0547 20.7664 18.222 16.2634 14.4682 12.7337 11.1415 9.75916 8.59769 7.66749 6.96871 6.49521 6.24036 6.19275 6.33612 6.66076 7.15534 7.81337 8.66467 9.75352 11.0539 12.4905 13.9967 15.5701 17.347 19.7433 23.8359 32.8922 60.766 181.12 1059.58 1051.49 183.953 65.2279 35.1579 25.3252 21.0271 18.4079 16.3252 14.3872 12.5253 10.8419 9.43146 8.29686 7.42065 6.79175 6.39764 6.2263 6.26073 6.48109 6.87532 7.42756 8.12606 8.98771 10.0508 11.3102 12.7103 14.1968 15.7672 17.5422 19.9142 23.9433 32.913 60.7925 181.526 1059.66 1051.49 183.392 64.7224 35.0299 25.39 21.0631 18.3089 16.0418 13.9365 11.9731 10.2648 8.90071 7.8565 7.08859 6.57697 6.30477 6.25595 6.40809 6.73755 7.23124 7.8697 8.63671 9.53112 10.5802 11.7897 13.1139 14.5157 16.012 17.7345 20.0713 24.0735 33.0425 61.0778 182.236 1059.81 1051.5 182.743 64.1833 34.9446 25.4287 20.9464 17.9524 15.4613 13.2113 11.2158 9.5788 8.33942 7.43266 6.80079 6.42094 6.27766 6.35575 6.62945 7.07183 7.66918 8.40175 9.25441 10.2117 11.2843 12.466 13.7127 15.0092 16.4036 18.057 20.3768 24.4317 33.5715 62.0716 183.671 1060.09 1051.5 181.929 63.4913 34.6446 25.1183 20.4219 17.2002 14.5645 12.3073 10.4348 8.98696 7.92176 7.15254 6.63339 6.35205 6.30303 6.47772 6.85082 7.38822 8.06347 8.87394 9.82913 10.8926 12.0464 13.241 14.4313 15.627 16.9101 18.4797 20.7767 24.911 34.3125 63.4242 185.28 1060.52 1051.5 181.392 62.9178 34.1986 24.513 19.6186 16.2981 13.709 11.6209 9.96756 8.71258 7.76887 7.06569 6.58717 6.33697 6.32128 6.54077 6.97646 7.5737 8.29346 9.16234 10.2089 11.4211 12.7165 13.9795 15.1657 16.3089 17.5158 19.0243 21.304 25.4604 34.9577 64.4689 186.237 1061.15 1051.5 181.434 62.748 33.831 23.9256 18.9354 15.6751 13.259 11.384 9.91724 8.76626 7.8513 7.13866 6.63304 6.34878 6.3005 6.49908 6.93566 7.54978 8.29382 9.19136 10.2925 11.6413 13.1038 14.4915 15.7501 16.9175 18.0946 19.5426 21.7676 25.8862 35.3594 64.947 186.35 1061.74 1051.49 182.156 63.2212 33.8136 23.6248 18.6116 15.4947 13.2747 11.5675 10.1989 9.06273 8.10883 7.33607 6.75957 6.39818 6.26903 6.38796 6.76216 7.34828 8.0851 8.98324 10.0834 11.4801 13.1127 14.683 16.0936 17.3624 18.5574 19.9316 22.0125 25.9462 35.1957 64.5301 185.798 1062.06 1051.47 182.775 63.7305 33.8324 23.5342 18.6792 15.7725 13.7099 12.0707 10.6813 9.4733 8.43558 7.57843 6.91821 6.4718 6.25256 6.27468 6.55151 7.07046 7.77782 8.64925 9.73234 11.0998 12.781 14.565 16.1949 17.6474 18.9404 20.2915 22.2327 25.9279 34.8404 63.8086 185.211 1062.13 1051.46 182.704 63.8561 33.909 23.8021 19.208 16.4457 14.3838 12.6382 11.1095 9.77886 8.64673 7.7199 7.00488 6.50793 6.23287 6.18649 6.37814 6.82022 7.48259 8.3063 9.34414 10.6573 12.3226 14.2478 16.093 17.7725 19.2418 20.6508 22.502 25.9655 34.5027 63.0238 184.609 1062.05 1051.47 182.732 64.1305 34.3792 24.4907 19.9651 17.0944 14.8265 12.8651 11.1832 9.77276 8.60799 7.67517 6.96487 6.47219 6.19442 6.1326 6.28944 6.67696 7.28789 8.07015 9.05787 10.3179 11.9252 13.8652 15.8671 17.7628 19.4528 21.0006 22.8408 26.1288 34.3227 62.392 184.145 1061.94 1051.47 183.113 64.6631 35.0703 25.1417 20.3778 17.2341 14.7497 12.6648 10.943 9.54324 8.4124 7.52163 6.85367 6.39979 6.15515 6.11769 6.28412 6.65705 7.23686 7.98964 8.93376 10.1407 11.6918 13.5898 15.6314 17.6615 19.5515 21.2843 23.1976 26.3998 34.3434 62.05 183.994 1061.89 1051.47 183.243 64.9136 35.4186 25.2987 20.2619 16.9278 14.3518 12.2521 10.5607 9.21163 8.13924 7.30983 6.70424 6.31282 6.13027 6.15241 6.36949 6.7742 7.36236 8.10889 9.03179 10.205 11.7092 13.5128 15.4767 17.5219 19.5262 21.4302 23.4805 26.711 34.5498 62.0743 184.249 1061.89 1051.47 183.004 64.7899 35.3663 25.0527 19.8287 16.4095 13.8218 11.7487 10.1088 8.82608 7.82603 7.07237 6.54518 6.23492 6.13667 6.24483 6.54299 7.01518 7.64839 8.42061 9.35873 10.5299 11.9683 13.6214 15.4463 17.4037 19.408 21.4084 23.6067 26.9685 34.8929 62.5199 184.928 1061.92 1051.47 182.534 64.3733 34.993 24.5347 19.2147 15.7802 13.2242 11.2096 9.64066 8.43821 7.52294 6.8534 6.41083 6.18803 6.18237 6.3879 6.78151 7.33697 8.03358 8.86191 9.84935 11.0182 12.3839 13.9062 15.5668 17.365 19.2651 21.2672 23.5824 27.1365 35.3056 63.3071 185.916 1061.99 1051.47 181.876 63.6794 34.361 23.8554 18.5266 15.1288 12.6405 10.7138 9.23853 8.12493 7.28965 6.69297 6.32141 6.17312 6.24986 6.54681 7.03479 7.66547 8.41659 9.31342 10.3689 11.5735 12.9158 14.3338 15.8259 17.4213 19.1333 21.0364 23.4003 27.1512 35.6494 64.1745 186.86 1062.14 1051.47 181.343 63.0116 33.6885 23.1792 17.9011 14.5831 12.1896 10.363 8.97913 7.93601 7.15287 6.59899 6.26824 6.16512 6.29705 6.66326 7.21912 7.90196 8.70888 9.67104 10.8117 12.1024 13.4734 14.8408 16.2091 17.6175 19.1063 20.8228 23.1216 26.9769 35.7743 64.82 187.387 1062.37 1051.48 180.991 62.4652 33.1123 22.6482 17.4588 14.2388 11.9417 10.2021 8.88417 7.87783 7.11052 6.56375 6.23795 6.14308 6.29221 6.69081 7.28253 7.99752 8.8508 9.86315 11.0856 12.4952 13.9421 15.3254 16.6496 17.9496 19.2624 20.7798 22.9307 26.7596 35.7411 65.2355 187.618 1062.7 1051.47 180.919 62.2053 32.7731 22.3558 17.2547 14.1238 11.9061 10.2296 8.93939 7.93115 7.14801 6.57739 6.22338 6.0995 6.22391 6.61088 7.20739 7.93783 8.81922 9.86299 11.1417 12.6691 14.2389 15.7088 17.0709 18.3516 19.5643 20.9208 22.9061 26.6268 35.6585 65.4446 187.691 1063.05 1051.47 181.062 62.2065 32.6699 22.3053 17.2886 14.2248 12.0509 10.3991 9.10399 8.0683 7.24841 6.63393 6.22944 6.04906 6.11361 6.44586 7.0119 7.73585 8.62213 9.6828 10.9781 12.5773 14.3143 15.9369 17.4183 18.7719 19.9714 21.2184 23.0351 26.5814 35.5215 65.403 187.6 1063.29 1051.47 181.24 62.361 32.7663 22.4807 17.5299 14.4904 12.3151 10.646 9.31808 8.24031 7.37592 6.71295 6.25327 6.00834 5.99748 6.24661 6.75147 7.44602 8.30626 9.35287 10.6365 12.2559 14.1306 15.9481 17.6193 19.1355 20.425 21.6481 23.335 26.6833 35.4224 65.2166 187.404 1063.36 1051.47 181.505 62.6816 33.0584 22.8236 17.8846 14.8154 12.5971 10.88 9.50547 8.38644 7.48388 6.78173 6.27758 5.97857 5.89941 6.06135 6.48488 7.13034 7.94134 8.94785 10.2005 11.7802 13.7004 15.724 17.6214 19.3602 20.83 22.1299 23.7631 26.9366 35.4085 64.9732 187.206 1063.28 1051.47 181.894 63.1388 33.4687 23.2115 18.2195 15.0805 12.7999 11.0323 9.61842 8.46957 7.54239 6.81641 6.28494 5.95082 5.82426 5.92166 6.26291 6.8354 7.59252 8.53689 9.72547 11.2348 13.1401 15.2997 17.405 19.386 21.092 22.5539 24.2218 27.2873 35.498 64.7503 187.04 1063.12 1051.48 182.172 63.5003 33.7966 23.4833 18.4177 15.2081 12.8757 11.0728 9.63609 8.47371 7.53811 6.80504 6.26446 5.91581 5.76522 5.82306 6.10289 6.61118 7.31699 8.19549 9.3073 10.7297 12.559 14.7382 16.991 19.1905 21.1501 22.8307 24.6063 27.638 35.646 64.5671 186.874 1062.93 1051.48 182.311 63.712 33.9845 23.6007 18.4567 15.1885 12.8214 11.0016 9.56017 8.40096 7.47246 6.74752 6.21403 5.8694 5.71724 5.76295 6.01119 6.47362 7.13458 7.95534 8.99302 10.3262 12.0572 14.1715 16.4649 18.8007 20.9825 22.9104 24.8589 27.9313 35.8087 64.4303 186.711 1062.73 1051.48 182.29 63.7662 34.0271 23.5564 18.339 15.0331 12.6527 10.8358 9.40796 8.26719 7.35887 6.65419 6.14021 5.81375 5.67754 5.73438 5.98252 6.42639 7.05603 7.8382 8.81727 10.0726 11.7041 13.6952 15.9129 18.2694 20.5927 22.7538 24.9277 28.1288 35.9837 64.3797 186.579 1062.53 1051.48 182.215 63.6973 33.9121 23.351 18.0845 14.7737 12.4064 10.6116 9.2116 8.09983 7.2198 6.54234 6.055 5.75522 5.64605 5.72921 5.99865 6.45129 7.07435 7.83966 8.78551 9.995 11.5311 13.3538 15.4295 17.6976 20.0425 22.3586 24.7593 28.1553 36.0843 64.342 186.454 1062.36 1051.48 182.05 63.4837 33.6484 23.0256 17.7499 14.4679 12.1384 10.3763 9.00913 7.93076 7.0807 6.43085 5.97065 5.6994 5.62142 5.73855 6.04154 6.52191 7.16061 7.9304 8.8746 10.0572 11.5041 13.1892 15.1027 17.2096 19.4591 21.8099 24.3767 27.9931 36.0977 64.383 186.461 1062.3 1051.48 181.836 63.1764 33.2934 22.6507 17.4057 14.1749 11.8936 10.1698 8.83612 7.78742 6.96164 6.33328 5.89465 5.64763 5.59875 5.75127 6.09451 6.60871 7.26729 8.05604 9.02055 10.2043 11.6018 13.1942 14.961 16.8823 18.9621 21.2383 23.8799 27.6971 36.0574 64.571 186.65 1062.4 1051.48 181.638 62.8589 32.9309 22.3068 17.1184 13.9461 11.7122 10.0243 8.71765 7.68852 6.87625 6.25873 5.83139 5.59889 5.57043 5.75162 6.13129 6.6773 7.35657 8.17041 9.16261 10.3729 11.7734 13.3215 14.9793 16.7285 18.6103 20.7368 23.3618 27.3271 35.9741 64.8417 186.886 1062.61 1051.48 181.505 62.6091 32.6372 22.0556 16.9309 13.8103 11.6144 9.95427 8.6638 7.64116 6.82971 6.21055 5.78153 5.54942 5.52593 5.71985 6.12215 6.69191 7.38987 8.22901 9.24749 10.4987 11.9483 13.5028 15.1045 16.7253 18.4198 20.355 22.8763 26.9069 35.8258 65.0885 187.046 1062.85 1051.48 181.468 62.4845 32.4622 21.9261 16.8569 13.7729 11.6011 9.95676 8.67009 7.64131 6.81949 6.18782 5.7452 5.49934 5.46377 5.65074 6.05556 6.63473 7.34419 8.20217 9.24055 10.5347 12.0637 13.6709 15.2798 16.8444 18.4072 20.1572 22.5096 26.4877 35.5726 65.164 187.034 1063.04 1051.48 181.517 62.4903 32.4115 21.9107 16.8823 13.8183 11.6558 10.0141 8.71966 7.6755 6.83638 6.18575 5.72183 5.45194 5.39009 5.55156 5.93725 6.50788 7.21774 8.08316 9.13322 10.453 12.0522 13.7477 15.4269 17.0213 18.5442 20.1753 22.3622 26.2038 35.3003 65.0516 186.825 1063.11 1051.47 181.623 62.6016 32.4699 21.9878 16.9802 13.9182 11.7505 10.0976 8.78575 7.72232 6.86459 6.19433 5.70788 5.41099 5.3166 5.44161 5.79157 6.33455 7.02918 7.88463 8.93607 10.2527 11.8816 13.6897 15.4815 17.1755 18.7514 20.3573 22.4365 26.1216 35.095 64.8045 186.465 1063.07 1051.47 181.758 62.7845 32.6114 22.1256 17.1133 14.0325 11.8444 10.1697 8.83682 7.75623 6.88336 6.1977 5.69352 5.37475 5.25238 5.34225 5.6508 6.15551 6.8218 7.64698 8.67423 9.96367 11.5901 13.4851 15.3987 17.2311 18.9286 20.5972 22.6492 26.2133 35.0012 64.5458 186.17 1062.95 1051.47 181.916 63.0047 32.7902 22.2681 17.2216 14.1053 11.8878 10.1905 8.84221 7.75171 6.87157 6.17892 5.66635 5.33645 5.19857 5.26632 5.54318 6.01273 6.64782 7.43398 8.4202 9.66826 11.2478 13.1568 15.1828 17.1646 19.0204 20.8101 22.9033 26.403 35.0095 64.3422 186.01 1062.84 1051.47 182.054 63.1915 32.9259 22.3381 17.24 14.0889 11.8488 10.1393 8.78752 7.69819 6.82088 6.13091 5.62012 5.29093 5.15228 5.21621 5.48186 5.93158 6.54048 7.28875 8.22491 9.41422 10.9312 12.8037 14.8712 16.9684 18.9907 20.9371 23.1147 26.5985 35.0713 64.2084 185.951 1062.77 1051.47 182.116 63.2643 32.9344 22.2705 17.1287 13.9631 11.7213 10.0182 8.67835 7.6022 6.73713 6.05788 5.55695 5.23813 5.11163 5.18953 5.46775 5.91933 6.51442 7.23791 8.13175 9.2629 10.7169 12.5129 14.5277 16.6628 18.821 20.9483 23.2614 26.7787 35.1779 64.2116 186.088 1062.77 1051.47 182.078 63.1907 32.788 22.0619 16.9053 13.7576 11.5434 9.86337 8.54494 7.48946 6.64107 5.97533 5.48701 5.18278 5.07567 5.17947 5.48764 5.95841 6.55484 7.27217 8.14261 9.23417 10.6346 12.3244 14.2119 16.2828 18.4886 20.7731 23.2697 26.8989 35.3194 64.3568 186.287 1062.88 1051.47 181.962 62.9966 32.5199 21.764 16.6312 13.5301 11.3614 9.7156 8.42334 7.38823 6.55361 5.89772 5.41873 5.12693 5.03896 5.17174 5.51795 6.01932 6.63184 7.36261 8.23384 9.31679 10.6791 12.2602 13.9995 15.9224 18.0537 20.401 23.0785 26.8953 35.4251 64.5366 186.48 1063.08 1051.47 181.809 62.7495 32.2088 21.4621 16.3867 13.3478 11.229 9.61678 8.34561 7.32254 6.49279 5.83796 5.3596 5.07147 4.99442 5.15134 5.5291 6.05597 6.69736 7.45602 8.34679 9.44044 10.7934 12.31 13.9164 15.6498 17.5929 19.8487 22.6085 26.6495 35.4321 64.7375 186.618 1063.33 1051.47 181.708 62.5625 31.9613 21.2424 16.2347 13.2543 11.1754 9.58653 8.32512 7.30201 6.46626 5.80249 5.31458 5.01886 4.93995 5.1065 5.50007 6.04368 6.71726 7.51299 8.43987 9.55918 10.9316 12.4495 13.9882 15.5709 17.2951 19.3334 21.9983 26.1595 35.2649 64.9252 186.791 1063.56 1051.47 181.697 62.505 31.8435 21.1501 16.2028 13.2664 11.2107 9.63016 8.36496 7.3298 6.47835 5.7968 5.28958 4.97378 4.87603 5.02947 5.4195 5.96923 6.66353 7.49046 8.4573 9.60603 11.0058 12.5728 14.1243 15.6537 17.2329 19.0507 21.5085 25.6161 34.9133 64.6675 184.699 1063.71 1051.47 181.796 62.5964 31.8662 21.1768 16.2702 13.3587 11.3083 9.72164 8.44203 7.38778 6.51631 5.81359 5.283 4.94118 4.81549 4.94166 5.31261 5.85476 6.55123 7.39191 8.38967 9.56896 10.9809 12.6035 14.2428 15.8268 17.3876 19.088 21.3517 25.2734 34.4816 63.9122 181.423 1063.75 1051.47 181.95 62.7829 31.992 21.2905 16.4055 13.5012 11.4409 9.83602 8.53531 7.46012 6.5689 5.84559 5.29159 4.92285 4.76739 4.86238 5.20764 5.73302 6.41477 7.24625 8.24888 9.44023 10.8375 12.4864 14.2303 15.9201 17.5538 19.2486 21.4042 25.1414 34.1638 63.3831 180.253 1063.74 1051.47 182.1 62.9986 32.1665 21.4356 16.5451 13.6291 11.5498 9.92375 8.6045 7.51506 6.61124 5.87371 5.30199 4.91239 4.7354 4.81092 5.14078 5.65466 6.32355 7.14354 8.13472 9.3086 10.6775 12.3274 14.1486 15.9567 17.7224 19.5073 21.649 25.2382 34.007 63.0269 179.939 1063.71 1051.47 182.209 63.1731 32.3091 21.531 16.6132 13.6825 11.5967 9.96457 8.6409 7.54967 6.64223 5.89701 5.31246 4.9067 4.71547 4.78444 5.11448 5.63124 6.3038 7.1175 8.08694 9.223 10.5453 12.1548 13.9757 15.8457 17.7274 19.6367 21.8411 25.3786 33.9691 62.8285 179.913 1063.8 1051.47 182.282 63.2745 32.3619 21.5167 16.5645 13.6341 11.569 9.95922 8.64916 7.56481 6.65814 5.91004 5.31747 4.8996 4.70112 4.77676 5.12677 5.6699 6.37535 7.20918 8.17693 9.28886 10.5748 12.1315 13.8959 15.7647 17.7186 19.7461 22.0377 25.5582 34.0141 62.785 180.076 1063.87 1051.47 182.365 63.3256 32.3183 21.3937 16.4318 13.542 11.5337 9.97059 8.68027 7.59594 6.68023 5.92574 5.32595 4.8928 4.68212 4.76027 5.13369 5.71614 6.47201 7.34633 8.33316 9.44 10.7043 12.1979 13.8544 15.6405 17.5806 19.6756 22.0715 25.6649 34.1426 62.9493 180.092 1064.16 1051.47 182.456 63.3703 32.2508 21.263 16.3301 13.5088 11.5605 10.0287 8.73918 7.63659 6.69816 5.93137 5.32577 4.87922 4.65375 4.72651 5.11501 5.73665 6.55102 7.48528 8.52159 9.66185 10.9409 12.4095 13.9829 15.6629 17.525 19.613 22.0668 25.7264 34.26 63.1554 179.987 1064.32 1051.46 182.675 63.5664 32.3131 21.2522 16.3502 13.5858 11.6684 10.1333 8.82023 7.68609 6.72013 5.93784 5.32577 4.86863 4.62274 4.66837 5.03693 5.66569 6.51203 7.49795 8.58951 9.77797 11.0875 12.5705 14.1029 15.6615 17.365 19.3377 21.7967 25.5846 34.3231 63.3918 179.831 1064.74 1051.46 182.747 63.6924 32.378 21.2782 16.4122 13.6843 11.7636 10.1973 8.85213 7.69523 6.71599 5.92888 5.31883 4.86319 4.60449 4.61602 4.93923 5.54037 6.37999 7.38603 8.51963 9.77064 11.1408 12.7128 14.3282 15.8619 17.4142 19.1572 21.4294 25.1882 34.0902 63.3353 179.503 1064.89 1051.46 182.815 63.8506 32.511 21.3594 16.4755 13.7202 11.7518 10.1472 8.79284 7.6521 6.69726 5.9245 5.32509 4.87779 4.61053 4.58469 4.84494 5.38448 6.16809 7.1351 8.25087 9.51642 10.93 12.5589 14.3298 15.9959 17.5409 19.1241 21.1768 24.8053 33.744 63.0052 178.966 1065.18 1051.46 182.839 63.9877 32.6426 21.3949 16.4093 13.5704 11.5546 9.95768 8.6516 7.57321 6.67661 5.9377 5.35287 4.91781 4.6526 4.60642 4.81938 5.29964 6.01732 6.92236 7.98567 9.2234 10.6546 12.3068 14.2482 16.1676 17.8446 19.3408 21.1139 24.448 33.3128 62.6858 178.699 1065.29 1051.46 183.058 64.287 32.8425 21.377 16.1932 13.2543 11.2434 9.72181 8.51138 7.51531 6.67747 5.97423 5.40712 4.98477 4.72488 4.66478 4.83705 5.25783 5.90119 6.72688 7.71553 8.8839 10.2688 11.919 13.9786 16.1951 18.216 19.9358 21.6748 24.7364 33.2934 62.5617 178.645 1065.54 1051.45 183.156 64.3566 32.7395 21.0259 15.6857 12.7546 10.8655 9.49447 8.40832 7.49283 6.69994 6.02343 5.47665 5.07321 4.827 4.76556 4.91854 5.31181 5.91854 6.69156 7.60407 8.67949 9.97327 11.5563 13.5873 15.9018 18.1672 20.1744 22.0538 25.0154 33.3662 62.5735 178.78 1065.74 1051.46 182.951 64.0958 32.4109 20.6296 15.309 12.4969 10.7576 9.50186 8.47092 7.56216 6.75831 6.08049 5.54955 5.16831 4.93315 4.85904 4.98373 5.35629 5.95888 6.73757 7.64525 8.68223 9.90338 11.4039 13.3277 15.5653 17.9699 20.3522 22.5898 25.5337 33.4358 62.3519 178.859 1066.37 1051.46 183.55 64.7353 32.8913 20.9324 15.5163 12.6829 10.9427 9.66572 8.59011 7.63927 6.82472 6.17299 5.6827 5.32519 5.07583 4.94811 5.00213 5.31842 5.90876 6.72524 7.69887 8.78903 10.0178 11.4876 13.1951 15.0156 17.0057 19.2628 21.8863 25.5748 34.1273 63.2653 179.568 1066.13 1051.46 184.088 65.5287 33.7178 21.6514 16.0851 13.1159 11.2589 9.8791 8.72791 7.74781 6.94782 6.32581 5.84693 5.4657 5.16086 4.9563 4.92056 5.13904 5.67048 6.49723 7.55994 8.81174 10.2466 11.9085 13.8821 15.825 17.5942 19.2827 21.2215 24.4607 33.0303 62.5189 179.152 1067.11 1051.46 183.686 65.2833 33.6685 21.6692 16.0307 12.9023 10.8762 9.39356 8.24674 7.36153 6.68869 6.16801 5.73966 5.37017 5.06527 4.86015 4.80325 4.9501 5.35424 6.03386 6.97718 8.14897 9.53283 11.1493 13.1224 15.24 17.2773 19.2587 21.4733 25.0204 34.0192 63.8902 180.353 1066.39 1051.46 182.749 64.1845 32.6639 20.6869 14.9585 11.7176 9.66319 8.28946 7.36155 6.72539 6.25427 5.85414 5.48084 5.14328 4.88508 4.7535 4.77809 4.99469 5.43238 6.1266 7.11252 8.40397 10.0028 11.891 14.1408 16.3246 18.1845 19.7677 21.5021 24.7312 33.8278 63.8154 179.686 1067.46 1051.47 176.521 63.6011 32.722 20.6082 14.7046 11.4385 9.51258 8.33396 7.56797 7.00721 6.53226 6.09189 5.68369 5.33376 5.07656 4.93423 4.90234 4.96281 5.09507 5.35632 5.83434 6.62607 7.83273 9.50418 11.6008 14.1578 16.6334 18.7844 20.7882 23.7883 32.0362 61.0061 177.284 1066.69 1051.47 177.474 64.957 34.1995 22.1393 16.2815 13.0275 11.0366 9.70477 8.72599 7.93974 7.26722 6.67892 6.17653 5.78242 5.52883 5.4351 5.47798 5.64107 5.93292 6.36636 6.98845 7.87028 9.10307 10.8202 13.1033 15.5707 17.9472 20.0933 22.1539 25.2954 34.0279 63.8202 180.017 1067.63 1051.47 177.525 65.4831 35.1742 23.4281 17.7077 14.4268 12.2947 10.7696 9.60083 8.66564 7.90195 7.27512 6.75938 6.33182 5.98328 5.73728 5.6365 5.68798 5.89132 6.24752 6.75977 7.44995 8.3746 9.66618 11.3714 13.3 15.2392 17.0676 18.9801 22.0078 30.1953 59.162 176.262 1067.17 1051.48 177.878 65.8683 35.3819 23.3506 17.3444 13.8493 11.6068 10.0782 8.9977 8.2175 7.64584 7.21764 6.8791 6.57994 6.27259 5.9355 5.62711 5.45131 5.53593 6.09612 7.10195 8.37455 9.77679 11.3309 13.3047 15.588 18.0226 20.3231 22.4156 25.6644 35.1779 66.4981 183.496 1068.69 1051.49 179.718 67.5624 36.13 23.1655 16.5484 12.7884 10.5323 9.12754 8.21975 7.61035 7.19077 6.90455 6.72027 6.60887 6.52893 6.43388 6.28998 6.11839 5.91903 5.79415 5.97638 6.79027 8.21132 10.0753 12.3047 14.6268 16.6399 18.5825 20.9701 24.6391 33.1695 61.7616 178.11 1068.95 1051.54 184.746 69.8383 35.9917 22.0718 15.5953 12.463 10.8691 9.94203 9.27076 8.6764 8.09746 7.5311 6.99659 6.51359 6.09102 5.72004 5.37292 5.02704 4.67529 4.33049 4.03284 3.83254 3.84154 4.41529 5.64888 7.55914 10.1084 12.2698 13.6642 16.7752 28.5032 65.1321 187.286 1069.38 1051.65 174.265 55.5784 24.8555 16.2109 14.4656 14.3716 14.2315 13.7363 12.964 12.0276 11.0248 10.0547 9.19123 8.48125 7.9673 7.68874 7.68937 7.93579 8.401 9.12503 10.1158 11.3916 12.9584 14.8495 17.1175 19.8496 23.1688 27.3527 33.166 42.3943 59.0416 94.6623 206.507 1070.89 537.613 23.9744 24.14 24.188 24.2034 24.2148 24.2205 24.2196 24.2129 24.2014 24.1861 24.168 24.1481 24.1272 24.1064 24.0863 24.0674 24.0502 24.0341 24.0188 24.0046 23.991 23.9778 23.9644 23.9505 23.9356 23.9192 23.9015 23.884 23.8705 23.8669 23.8781 23.9057 23.9481 550.344 537.635 24.1722 24.3186 24.3497 24.3783 24.4077 24.4294 24.4421 24.4488 24.4516 24.452 24.4512 24.4499 24.4488 24.4483 24.4486 24.45 24.4526 24.4561 24.4605 24.4653 24.4702 24.4744 24.4774 24.4783 24.4761 24.4696 24.4575 24.4382 24.4094 24.3732 24.332 24.2568 24.0305 533.359 1051.47 169.482 50.9565 23.8162 14.895 10.6391 8.0481 6.30096 5.07438 4.1913 3.54113 3.05364 2.68582 2.41212 2.21743 2.09277 2.03284 2.03479 2.09764 2.22213 2.41103 2.66989 3.00841 3.44261 3.99814 4.71471 5.65225 6.9026 8.62413 11.1629 15.4787 24.8755 53.3033 171.99 1045.61 1051.48 175.367 54.1842 24.1541 14.1204 9.7712 7.49215 6.1855 5.39281 4.8826 4.54378 4.32082 4.17949 4.09743 4.05945 4.0552 4.07784 4.12324 4.18956 4.27691 4.38737 4.52529 4.69799 4.91696 5.20022 5.57683 6.09666 6.85459 8.04611 10.1067 14.213 24.1913 54.5691 175.181 1046.06 1051.51 179.458 58.5081 27.9707 17.293 12.3257 9.48078 7.65084 6.4198 5.59356 5.0189 4.60065 4.29564 4.07758 3.93 3.84252 3.80877 3.8252 3.89036 4.00474 4.1708 4.39362 4.68187 5.04972 5.52006 6.13811 6.97695 8.13818 9.81258 12.4333 17.1789 27.7762 58.4851 178.831 1047.67 1051.52 178.718 58.4042 28.3605 17.7846 12.8252 9.98672 8.16595 6.93513 6.09362 5.49456 5.0482 4.71379 4.46668 4.29175 4.17978 4.12522 4.12505 4.17802 4.28458 4.44663 4.66824 4.95654 5.32346 5.78905 6.39228 7.20293 8.32601 9.95085 12.5164 17.1968 27.6475 57.8828 177.719 1048.07 1051.54 180.577 60.2075 30.0877 19.491 14.4348 11.4477 9.43965 7.99999 6.95252 6.18881 5.61536 5.17459 4.83873 4.59088 4.42101 4.32348 4.29569 4.33677 4.44821 4.63284 4.89588 5.24614 5.69812 6.27564 7.0271 8.02942 9.37783 11.2442 14.0425 18.9011 29.4064 59.6786 179.599 1049.04 1051.55 180.187 60.1097 30.4285 20.0426 15.054 12.0775 10.053 8.57728 7.47812 6.6604 6.03637 5.54743 5.16674 4.8784 4.6734 4.54719 4.4981 4.52553 4.63162 4.81935 5.09357 5.46227 5.93869 6.54512 7.32652 8.35981 9.74485 11.6501 14.4793 19.3198 29.636 59.3875 178.965 1049.5 1051.55 181.27 61.1095 31.3616 21.0402 16.0855 13.0985 11.0177 9.44495 8.22196 7.28302 6.55686 5.98172 5.52728 5.17702 4.92181 4.75759 4.68302 4.69774 4.80506 5.00929 5.31603 5.73396 6.27685 6.96749 7.85419 9.01158 10.5225 12.5391 15.4529 20.3372 30.64 60.3982 180.033 1050.19 1051.56 181.185 61.1637 31.6816 21.5527 16.6851 13.7231 11.6292 10.0173 8.73623 7.72835 6.94002 6.31317 5.81316 5.42345 5.1353 4.94518 4.85219 4.85646 4.96228 5.17515 5.50099 5.94852 6.53109 7.27041 8.21318 9.43089 10.9985 13.0556 15.9779 20.8079 30.9266 60.3299 179.803 1050.67 1051.56 181.79 61.7172 32.1908 22.1503 17.3589 14.4329 12.3326 10.6776 9.32398 8.22732 7.35881 6.66618 6.10931 5.67138 5.34397 5.12349 5.00971 5.00359 5.11071 5.33821 5.69334 6.18574 6.82943 7.64614 8.68513 10.0101 11.6692 13.7816 16.7115 21.4981 31.5331 60.9034 180.427 1051.22 1051.56 181.812 61.7923 32.4245 22.5589 17.8639 14.9692 12.8576 11.1652 9.75838 8.60021 7.6776 6.94118 6.34598 5.87483 5.51906 5.27549 5.1448 5.12865 5.2337 5.46854 5.84193 6.36462 7.05186 7.92654 9.04034 10.4542 12.1999 14.3746 17.3184 22.042 31.9076 61.0528 180.522 1051.71 1051.56 182.125 62.0585 32.7134 22.9496 18.3205 15.4496 13.3316 11.6122 10.1641 8.95566 7.98541 7.20735 6.57426 6.06942 5.68433 5.4167 5.26858 5.24243 5.34622 5.59014 5.98467 6.54191 7.27872 8.21977 9.42189 10.9404 12.7806 15.0179 17.9731 22.6416 32.3911 61.4639 180.964 1052.23 1051.56 182.144 62.0796 32.8504 23.2102 18.648 15.8038 13.6885 11.9573 10.4874 9.2502 8.24836 7.43943 6.77681 6.24367 5.83237 5.54191 5.37538 5.33589 5.43237 5.67615 6.07894 6.65412 7.4204 8.40526 9.67276 11.2803 13.2183 15.5429 18.5459 23.1833 32.7903 61.6837 181.156 1052.71 1051.56 182.312 62.2126 32.992 23.4081 18.8938 16.0845 13.9907 12.2669 10.7896 9.53224 8.50198 7.66228 6.96964 6.40764 5.96997 5.65721 5.47343 5.42213 5.51297 5.75787 6.16893 6.75986 7.54974 8.56715 9.88072 11.5484 13.5515 15.9393 18.9892 23.629 33.1572 61.9275 181.404 1053.15 1051.55 182.448 62.3351 33.1049 23.5661 19.0999 16.3299 14.2624 12.5487 11.0654 9.78871 8.73145 7.86251 7.14084 6.55147 6.08938 5.75604 5.55613 5.49332 5.57765 5.82137 6.2366 6.83701 7.64142 8.67992 10.0225 11.7244 13.7643 16.1903 19.2727 23.9188 33.3831 61.9969 181.449 1053.53 1051.55 182.652 62.5313 33.2365 23.7102 19.2791 16.5449 14.5046 12.8042 11.3182 10.0243 8.94126 8.04415 7.29473 6.67963 6.19515 5.8434 5.62951 5.55719 5.63684 5.88093 6.30145 6.91157 7.72897 8.78482 10.1475 11.8647 13.9135 16.3434 19.4265 24.0668 33.4934 61.9954 181.45 1053.86 1051.54 182.816 62.7207 33.3605 23.8374 19.4325 16.7269 14.7092 13.0206 11.5328 10.2235 9.11625 8.19391 7.42091 6.78448 6.2819 5.91551 5.69068 5.61122 5.68798 5.93386 6.36093 6.98209 7.81384 8.88795 10.2706 12.0009 14.0509 16.4678 19.5244 24.1277 33.4955 61.8797 181.346 1054.17 1051.53 182.914 62.8718 33.4578 23.9254 19.5337 16.8484 14.851 13.1771 11.6939 10.3765 9.25103 8.3092 7.51906 6.86748 6.35218 5.97563 5.74356 5.66013 5.73696 5.98764 6.42474 7.06126 7.91269 9.01088 10.4196 12.1689 14.2212 16.6161 19.6253 24.1626 33.4517 61.7378 181.249 1054.48 1051.52 182.899 62.9284 33.4966 23.9525 19.5652 16.8962 14.9206 13.2676 11.7978 10.4806 9.34226 8.38644 7.58602 6.92578 6.40341 6.0216 5.78656 5.7031 5.78378 6.04315 6.49472 7.15219 8.03076 9.16213 10.6091 12.3949 14.4678 16.8524 19.8116 24.2635 33.4491 61.6531 181.244 1054.82 1051.52 182.769 62.8619 33.4493 23.8949 19.5094 16.8594 14.9126 13.2899 11.8437 10.5357 9.39091 8.42747 7.62382 6.96115 6.43716 6.05491 5.82128 5.74195 5.83058 6.10279 6.57327 7.25692 8.16946 9.34208 10.8383 12.6778 14.7928 17.188 20.1112 24.4799 33.5585 61.7153 181.414 1055.21 1051.52 182.558 62.6822 33.3108 23.7513 19.3753 16.756 14.85 13.2675 11.8524 10.5596 9.4127 8.44597 7.64349 6.98204 6.45947 6.07944 5.84963 5.77672 5.87545 6.1626 6.65418 7.3667 8.31744 9.53724 11.0922 13.0026 15.1842 17.6194 20.5357 24.8429 33.831 61.9877 181.808 1055.66 1051.52 182.301 62.4075 33.0828 23.5348 19.1903 16.6212 14.7687 13.2321 11.8495 10.5727 9.42575 8.45761 7.65737 6.99784 6.47717 6.09967 5.87388 5.80736 5.91581 6.21696 6.72804 7.46737 8.45448 9.72001 11.334 13.3213 15.5851 18.0886 21.0369 25.3227 34.2541 62.4501 182.369 1056.13 1051.52 182.074 62.1069 32.8126 23.2975 19.0112 16.509 14.7154 13.2207 11.8629 10.598 9.45346 8.4815 7.67908 7.01984 6.49902 6.12156 5.8968 5.83306 5.94686 6.2567 6.78073 7.53891 8.55336 9.85518 11.5186 13.5748 15.9213 18.5115 21.5316 25.848 34.7684 63.0185 182.978 1056.57 1051.53 181.956 61.8693 32.5701 23.1056 18.8962 16.4672 14.7275 13.2634 11.9172 10.6535 9.50677 8.53094 7.72481 7.06164 6.53548 6.15226 5.92222 5.85426 5.96541 6.27467 6.8007 7.56449 8.59027 9.91053 11.6027 13.7033 16.1129 18.7894 21.9113 26.315 35.2773 63.5639 183.478 1056.92 1051.53 182.023 61.7918 32.4334 23.0206 18.889 16.5233 14.8216 13.3706 12.0213 10.7493 9.59609 8.61618 7.80357 7.13022 6.59194 6.19579 5.95276 5.87194 5.97061 6.26812 6.7832 7.53717 8.55532 9.87237 11.5662 13.6734 16.1053 18.8411 22.0712 26.6097 35.6692 63.9508 183.736 1057.14 1051.53 182.3 61.9341 32.4487 23.065 18.9939 16.6719 14.9889 13.5355 12.1732 10.8877 9.72604 8.74079 7.91751 7.22748 6.67062 6.25487 5.99168 5.88989 5.96683 6.24215 6.73443 7.46481 8.45875 9.75433 11.4255 13.4991 15.9019 18.6456 21.9528 26.6398 35.8441 64.0899 183.701 1057.21 1051.53 182.721 62.2744 32.6052 23.2187 19.1857 16.8874 15.2074 13.741 12.3595 11.0583 9.88925 8.89458 8.05442 7.34385 6.76489 6.32586 6.03842 5.91098 5.96091 6.20813 6.67098 7.37006 8.33038 9.59442 11.2303 13.2467 15.5798 18.2711 21.5877 26.3805 35.7397 63.9431 183.391 1057.17 1051.52 183.188 62.7447 32.8644 23.4415 19.423 17.1307 15.4422 13.9576 12.5551 11.2373 10.0604 9.05446 8.19541 7.46378 6.86242 6.39997 6.08824 5.93515 5.95803 6.17715 6.61061 7.27848 8.2052 9.43885 11.042 12.9992 15.2453 17.8385 21.0849 25.8914 35.3523 63.5128 182.86 1057.07 1051.51 183.585 63.2379 33.171 23.6991 19.675 17.3669 15.6553 14.1476 12.7253 11.3928 10.2083 9.19145 8.31516 7.56511 6.94481 6.46307 6.13177 5.95839 5.96022 6.15777 6.569 7.21356 8.11548 9.32956 10.9151 12.8304 14.999 17.4769 20.5907 25.3005 34.7474 62.8284 182.152 1056.98 1051.5 183.806 63.6341 33.465 23.9522 19.902 17.5533 15.8025 14.2677 12.8301 11.489 10.3003 9.27605 8.38779 7.62562 6.99357 6.50057 6.15857 5.97487 5.96673 6.15483 6.55702 7.1926 8.08531 9.29733 10.8876 12.7899 14.9095 17.2839 20.2361 24.7589 34.056 61.988 181.366 1056.95 1051.49 183.836 63.8773 33.7151 24.1718 20.0653 17.6467 15.8414 14.2798 12.8373 11.4997 10.3139 9.28822 8.39599 7.63048 6.99632 6.50267 6.16167 5.9808 5.97741 6.17214 6.58288 7.22861 8.13282 9.36499 10.9859 12.9088 15.0184 17.3225 20.1188 24.4072 33.4446 61.1552 180.658 1057.04 1051.48 183.713 63.9656 33.9037 24.3234 20.1185 17.6041 15.7405 14.1639 12.7351 11.4176 10.2434 9.22294 8.33547 7.57604 6.95019 6.46752 6.14044 5.97692 5.99449 6.2136 6.65222 7.32924 8.26803 9.54438 11.2218 13.1983 15.3383 17.6146 20.2872 24.3422 33.0693 60.5299 180.233 1057.28 1051.47 183.486 63.916 34.0002 24.3526 20.0146 17.402 15.5002 13.9351 12.5426 11.2597 10.1024 9.09127 8.21551 7.47032 6.86238 6.40184 6.10127 5.96926 6.02344 6.28394 6.76884 7.49739 8.49358 9.83777 11.5959 13.6575 15.8668 18.1585 20.7493 24.6061 33.0451 60.3198 180.32 1057.69 1051.47 183.179 63.7304 33.9531 24.2048 19.7359 17.0613 15.1642 13.6423 12.3024 11.0589 9.91698 8.91511 8.05485 7.32973 6.74743 6.31841 6.05499 5.96615 6.06948 6.38454 6.92959 7.72494 8.79628 10.2264 12.0843 14.2578 16.5721 18.9211 21.4749 25.1809 33.3965 60.6455 181.043 1058.27 1051.47 182.795 63.3913 33.7132 23.8653 19.3202 16.6499 14.8059 13.3493 12.0636 10.8519 9.71745 8.72121 7.87687 7.17496 6.62343 6.23224 6.01276 5.97393 6.13312 6.50917 7.12051 7.98936 9.14445 10.6691 12.6359 14.9387 17.3834 19.8238 22.3819 25.9877 34.0684 61.5045 182.349 1058.96 1051.47 182.318 62.8772 33.271 23.3808 18.851 16.2551 14.4982 13.1105 11.8642 10.6671 9.53224 8.53505 7.70288 7.02611 6.50773 6.15606 5.98123 5.99195 6.2053 6.63931 7.31236 8.2489 9.48246 11.095 13.1642 15.5986 18.1867 20.7442 23.3436 26.8942 34.9195 62.7025 183.918 1059.63 1051.47 181.802 62.2428 32.701 22.8569 18.4303 15.9552 14.2951 12.9626 11.7322 10.5279 9.38145 8.37984 7.55842 6.90465 6.41535 6.09753 5.96023 6.01169 6.26832 6.74709 7.46586 8.45092 9.74078 11.4149 13.5583 16.1024 18.8285 21.5246 24.2119 27.7609 35.7916 63.9663 185.329 1060.16 1051.48 181.308 61.5787 32.1147 22.4007 18.1345 15.7963 14.2222 12.9213 11.6816 10.4515 9.28439 8.27616 7.4618 6.8233 6.35324 6.05766 5.94459 6.02136 6.30312 6.80535 7.5448 8.54818 9.85714 11.5474 13.7122 16.3139 19.1466 21.994 24.835 28.4695 36.5562 65.0156 186.268 1060.45 1051.49 180.957 61.0215 31.6329 22.0927 18.0038 15.7939 14.2836 12.9883 11.7178 10.4484 9.25439 8.23638 7.42226 6.78782 6.32376 6.03555 5.93025 6.01391 6.29983 6.80148 7.53402 8.52252 9.80761 11.4596 13.578 16.1603 19.0395 22.029 25.0895 28.9261 37.1266 65.6664 186.582 1060.45 1051.5 180.851 60.6986 31.3429 21.9728 18.0461 15.9406 14.468 13.155 11.8377 10.5205 9.29516 8.26326 7.44106 6.79861 6.32693 6.03113 5.91746 5.99054 6.26171 6.74215 7.44472 8.391 9.61702 11.1851 13.1946 15.6754 18.5176 21.601 24.9128 29.0762 37.4936 65.9489 186.408 1060.21 1051.51 181.027 60.6732 31.2748 22.0398 18.2434 16.2117 14.7501 13.4006 12.0268 10.6576 9.39817 8.34886 7.51154 6.8511 6.36069 6.04516 5.91016 5.95908 6.20162 6.64711 7.30581 8.19489 9.34367 10.8043 12.6692 14.9872 17.707 20.7973 24.3258 28.8921 37.665 66.0096 186.002 1059.8 1051.52 181.454 60.938 31.4081 22.2622 18.5589 16.5686 15.095 13.6957 12.2599 10.8381 9.54497 8.47676 7.62027 6.93606 6.42026 6.07742 5.91277 5.92888 6.13456 6.5382 7.14802 7.97704 9.04751 10.4017 12.1185 14.2483 16.7836 19.7805 23.422 28.3651 37.5904 65.9006 185.493 1059.32 1051.52 182.021 61.4169 31.6878 22.5821 18.9422 16.969 15.4637 14.0023 12.5013 11.0312 9.71094 8.62464 7.74755 7.03922 6.49705 6.12477 5.92739 5.9071 6.07272 6.43288 6.99486 7.76882 8.7713 10.0369 11.6286 13.5827 15.9125 18.7379 22.3579 27.5498 37.22 65.6021 184.913 1058.83 1051.52 182.586 61.9912 32.0442 22.9428 19.3418 17.3634 15.8089 14.2766 12.7102 11.1989 9.86319 8.76456 7.87075 7.14394 6.57951 6.18054 5.95216 5.89667 6.02365 6.34299 6.86229 7.59057 8.54079 9.74354 11.2465 13.061 15.1999 17.8174 21.3012 26.5672 36.5654 65.0832 184.254 1058.38 1051.51 183.025 62.5422 32.4194 23.3032 19.7165 17.7066 16.0833 14.474 12.8485 11.3087 9.97146 8.87212 7.97078 7.23369 6.65438 6.23537 5.98197 5.89686 5.99072 6.27542 6.75994 7.45375 8.36853 9.53519 10.9885 12.7081 14.6912 17.1009 20.3776 25.5552 35.6983 64.3321 183.487 1058.01 1051.5 183.304 63.0141 32.7944 23.652 20.0449 17.9671 16.2506 14.5594 12.8867 11.3374 10.0159 8.92895 8.03073 7.29332 6.70887 6.27931 6.01014 5.90454 5.97451 6.23412 6.69449 7.36667 8.26296 9.41883 10.8593 12.5276 14.3953 16.6175 19.6579 24.6286 34.7242 63.3878 182.627 1057.72 1051.5 183.433 63.3882 33.1702 23.995 20.3201 18.1287 16.2923 14.5159 12.8124 11.2799 9.98952 8.92424 8.04004 7.31308 6.73429 6.30502 6.03105 5.91638 5.97439 6.22137 6.6709 7.33644 8.23218 9.40166 10.8624 12.5166 14.3066 16.3692 19.1702 23.8621 33.745 62.3064 181.681 1057.53 1051.49 183.464 63.6903 33.5651 24.3416 20.5367 18.1814 16.2042 14.3474 12.6316 11.1378 9.89108 8.85669 7.9976 7.29089 6.72763 6.30916 6.04182 5.93071 5.99053 6.23947 6.69372 7.37001 8.28725 9.49722 11.0053 12.6744 14.419 16.3511 18.9238 23.3007 32.8499 61.1784 180.716 1057.44 1051.48 183.456 63.9639 33.9931 24.6884 20.6846 18.1198 15.9903 14.0676 12.3619 10.9217 9.72788 8.73304 7.90704 7.22868 6.68987 6.29232 6.0432 5.94918 6.02637 6.2942 6.77055 7.47462 8.43929 9.72083 11.2968 13.0059 14.7342 16.5623 18.9219 22.9701 32.106 60.0876 179.801 1057.46 1051.47 183.428 64.2228 34.4367 25.0032 20.737 17.9325 15.6562 13.6923 12.0237 10.6455 9.50747 8.56031 7.77527 7.13286 6.62652 6.25911 6.03935 5.97611 6.08736 6.39364 6.91387 7.66879 8.70436 10.0813 11.7489 13.5203 15.2551 17.0014 19.1652 22.8897 31.5789 59.1481 179.058 1057.62 1051.47 183.376 64.4524 34.8449 25.2165 20.6373 17.5933 15.2044 13.2364 11.6274 10.3207 9.24544 8.35304 7.6148 7.01399 6.5465 6.21734 6.03746 6.01856 6.18104 6.54659 7.13462 7.96675 9.09875 10.5928 12.3727 14.2234 15.9811 17.6629 19.6478 23.0652 31.3163 58.4769 178.636 1057.95 1051.46 183.294 64.6205 35.1362 25.2346 20.327 17.0873 14.6482 12.7241 11.1974 9.97168 8.96531 8.13131 7.44269 6.88639 6.46176 6.17706 6.04613 6.08409 6.31446 6.76012 7.44028 8.37651 9.62996 11.2614 13.1712 15.1126 16.9028 18.5325 20.3554 23.4958 31.3626 58.2199 178.746 1058.47 1051.45 183.158 64.6683 35.2066 24.9766 19.7856 16.4404 14.0311 12.1987 10.7716 9.63147 8.69507 7.91801 7.27711 6.76424 6.38328 6.14659 6.07141 6.17666 6.4896 7.0346 7.8307 8.89688 10.2954 12.084 14.1322 16.1729 18.0028 19.5889 21.2689 24.1779 31.769 58.5701 179.666 1059.22 1051.44 182.943 64.5286 34.9754 24.4298 19.0671 15.7309 13.4254 11.7161 10.3945 9.33603 8.46223 7.73386 7.1335 6.6588 6.31862 6.12985 6.11322 6.29163 6.69676 7.35463 8.28337 9.49473 11.0571 13.0239 15.2142 17.3639 19.2431 20.794 22.3501 25.0763 32.5169 59.5812 181.394 1060.17 1051.43 182.616 64.147 34.4345 23.6734 18.2875 15.0598 12.9021 11.3259 10.1013 9.11025 8.28513 7.59255 7.02176 6.57629 6.26996 6.1239 6.162 6.41097 6.90728 7.6795 8.74363 10.105 11.8446 13.9973 16.3356 18.6106 20.5586 22.0857 23.5381 26.1312 33.5435 61.2001 183.849 1061.24 1051.43 182.16 63.5274 33.6679 22.8423 17.5634 14.5046 12.5079 11.0561 9.9103 8.96744 8.17346 7.50117 6.94662 6.51867 6.2352 6.12056 6.2009 6.50609 7.07762 7.94939 9.12704 10.6215 12.5387 14.8745 17.382 19.8073 21.8552 23.3715 24.7252 27.2207 34.762 63.3333 186.49 1062.24 1051.42 181.604 62.747 32.8095 22.0622 16.9716 14.1042 12.2605 10.9134 9.82558 8.91057 8.12939 7.46174 6.90966 6.48604 6.21141 6.11168 6.21372 6.54853 7.16024 8.0873 9.33772 10.9344 12.9982 15.51 18.2086 20.8222 23.0209 24.5539 25.7814 28.0939 35.6853 65.1804 188.963 1063 1051.42 181.035 61.9351 32.0009 21.4277 16.5563 13.8734 12.1617 10.8965 9.84695 8.9393 8.15242 7.4752 6.91226 6.47938 6.19853 6.09541 6.19562 6.52837 7.13653 8.06007 9.32335 10.9619 13.0979 15.7416 18.636 21.483 23.9097 25.5457 26.6701 28.7105 36.0777 65.28 183.69 1063.4 1051.42 180.542 61.2193 31.3443 20.9844 16.3264 13.8061 12.2029 10.998 9.96773 9.04957 8.24116 7.54075 6.95418 6.49948 6.19897 6.0767 6.15526 6.45954 7.0275 7.89678 9.10695 10.6995 12.7997 15.4808 18.517 21.6029 24.3269 26.2126 27.3743 29.1876 36.2842 65.3326 182.158 1063.42 1051.43 180.184 60.6718 30.8793 20.7331 16.2653 13.8828 12.3675 11.2054 10.178 9.23274 8.38797 7.65207 7.03115 6.54477 6.21476 6.06261 6.10695 6.36683 6.87271 7.65691 8.75877 10.2296 12.198 14.7766 17.8288 21.072 24.0894 26.3605 27.7998 29.5896 36.4178 65.1361 181.359 1063.14 1051.44 179.986 60.3146 30.6008 20.6481 16.3428 14.0758 12.6321 11.4992 10.461 9.47366 8.57892 7.79737 7.13448 6.61037 6.24555 6.05848 6.06366 6.27409 6.7121 7.40204 8.37669 9.68719 11.4508 13.8051 16.7158 19.9589 23.1672 25.8621 27.8073 29.8904 36.5739 64.7621 180.574 1062.65 1051.45 179.93 60.1215 30.4707 20.6885 16.5228 14.354 12.9682 11.8522 10.7926 9.75343 8.79678 7.96101 7.2529 6.68938 6.28867 6.0662 6.03271 6.19586 6.57077 7.17391 8.02927 9.17937 10.7173 12.7838 15.4291 18.5123 21.7624 24.8032 27.3554 30.0423 36.868 64.4305 179.907 1062.06 1051.47 179.967 60.033 30.4317 20.8055 16.7701 14.6855 13.3434 12.234 11.1457 10.0501 9.02516 8.13155 7.37892 6.77684 6.34144 6.08559 6.0169 6.13857 6.45994 6.99098 7.74761 8.76156 10.0974 11.8804 14.2115 17.0343 20.1894 23.4249 26.5209 29.9741 37.3871 64.9788 181.191 1061.45 1051.49 180.066 60.0097 30.4434 20.9615 17.0476 15.0389 13.7326 12.623 11.5022 10.349 9.25566 8.30525 7.50975 6.87063 6.40223 6.11544 6.01552 6.1022 6.38039 6.85497 7.53521 8.44342 9.62362 11.1732 13.2065 15.7411 18.7084 21.9782 25.4461 29.589 37.701 65.7034 185.772 1060.88 1051.5 180.232 60.0505 30.4937 21.139 17.3354 15.3954 14.1194 13.0062 11.8534 10.6465 9.48844 8.48416 7.64761 6.97232 6.47144 6.15476 6.02604 6.08249 6.32594 6.75768 7.382 8.21335 9.28332 10.662 12.456 14.73 17.4749 20.6635 24.3236 28.9839 37.7108 65.8067 185.719 1060.41 1051.52 180.488 60.1775 30.5869 21.3325 17.6248 15.7463 14.4971 13.3802 12.1992 10.9454 9.7296 8.67533 7.79859 7.08628 6.55133 6.20335 6.04546 6.07317 6.28623 6.68363 7.26643 8.04395 9.0393 10.3023 11.9271 13.9957 16.5314 19.5804 23.2918 28.2925 37.5372 65.7764 185.423 1060.03 1051.53 180.897 60.4537 30.7559 21.557 17.9239 16.0973 14.8722 13.753 12.5487 11.2552 9.98947 8.88862 7.97077 7.21852 6.64557 6.26227 6.07197 6.06911 6.25199 6.61809 7.1663 7.90287 8.84622 10.0352 11.5526 13.4798 15.8506 18.7523 22.4238 27.6027 37.227 65.6372 185.107 1059.75 1051.53 181.47 60.9209 31.0318 21.8313 18.2453 16.458 15.2537 14.1346 12.9115 11.5832 10.2724 9.12652 8.16539 7.36944 6.75386 6.33056 6.10373 6.06702 6.21757 6.55161 7.06622 7.76547 8.66518 9.80087 11.2494 13.0858 15.3441 18.1317 21.7436 27.0037 36.87 65.392 184.733 1059.52 1051.54 182.106 61.5188 31.3907 22.1454 18.5855 16.8272 15.6402 14.522 13.2819 11.9192 10.5632 9.37115 8.36498 7.5235 6.86386 6.39969 6.13606 6.06562 6.18415 6.48658 6.96806 7.63075 8.48863 9.57775 10.9719 12.7383 14.9124 17.6121 21.1641 26.4525 36.4623 65.0228 184.279 1059.31 1051.54 182.689 62.1437 31.7819 22.4734 18.9297 17.1937 16.0202 14.9008 13.6405 12.2383 10.8311 9.58901 8.5369 7.65178 6.95255 6.45374 6.16025 6.06309 6.15618 6.43276 6.88585 7.51548 8.33363 9.37708 10.717 12.4148 14.5114 17.1356 20.6345 25.9273 36.0172 64.5548 183.76 1059.11 1051.53 183.129 62.6954 32.1524 22.7867 19.2608 17.5471 16.3848 15.2574 13.9649 12.509 11.0385 9.73908 8.64118 7.71976 6.99282 6.47383 6.16566 6.0567 6.13834 6.40158 6.83705 7.44226 8.22641 9.22498 10.506 12.1276 14.1369 16.6743 20.1067 25.3875 35.5414 64.0472 183.22 1058.91 1051.53 183.314 63.0579 32.4418 23.0654 19.5798 17.8973 16.7381 15.5776 14.2196 12.6816 11.1321 9.77167 8.6358 7.69529 6.96241 6.44633 6.14553 6.04513 6.13381 6.40023 6.83302 7.42727 8.18912 9.15032 10.374 11.9157 13.8268 16.2563 19.5882 24.8076 34.9734 63.4443 182.619 1058.73 1051.53 183.234 63.1403 32.6044 23.3116 19.9007 18.2469 17.0541 15.8029 14.3269 12.6801 11.0532 9.65044 8.50281 7.57308 6.86392 6.37767 6.10746 6.0357 6.1492 6.43492 6.88026 7.47847 8.23283 9.17003 10.3468 11.8149 13.627 15.9382 19.1473 24.2711 34.4126 62.8695 182.104 1058.59 1051.53 183.055 63.0615 32.7013 23.5612 20.2238 18.5517 17.2517 15.8422 14.2153 12.4678 10.8017 9.40016 8.27881 7.39222 6.73236 6.29559 6.07135 6.04117 6.19141 6.50827 6.97854 7.59415 8.35587 9.28513 10.4311 11.8395 13.5609 15.7549 18.8338 23.8449 33.9419 62.4256 181.781 1058.53 1051.54 182.849 62.9358 32.8042 23.8275 20.5054 18.7289 17.2516 15.6589 13.9005 12.1 10.4516 9.09736 8.03167 7.20585 6.60567 6.22472 6.05127 6.06745 6.26023 6.61564 7.12029 7.76516 8.54887 9.48892 10.6256 11.9929 13.6377 15.7254 18.6825 23.585 33.6341 62.1735 181.677 1058.55 1051.54 182.635 62.8003 32.9206 24.054 20.6658 18.7264 17.0606 15.3179 13.4833 11.6861 10.1008 8.81982 7.81737 7.05114 6.50672 6.17667 6.04979 6.10961 6.34432 6.74034 7.28452 7.96733 8.78565 9.75586 10.9063 12.2493 13.8273 15.8152 18.6557 23.4534 33.4567 62.073 181.741 1058.64 1051.54 182.552 62.7944 33.09 24.2297 20.7139 18.6027 16.7819 14.9416 13.0804 11.3222 9.81783 8.61126 7.66325 6.94412 6.44247 6.15151 6.06117 6.1564 6.42702 6.86046 7.44461 8.17045 9.03426 10.0552 11.2448 12.5825 14.1084 16.0094 18.7431 23.434 33.3686 62.0359 181.855 1058.8 1051.53 182.659 62.9828 33.3412 24.3944 20.7229 18.456 16.5184 14.6207 12.7637 11.0589 9.63085 8.48237 7.57059 6.88176 6.40769 6.14242 6.07671 6.19664 6.49352 6.9562 7.57457 8.34221 9.26541 10.3582 11.5965 12.9383 14.4251 16.2515 18.8847 23.4615 33.2949 61.9483 181.857 1058.96 1051.52 182.852 63.3078 33.6612 24.5766 20.7449 18.345 16.3229 14.3928 12.5514 10.9003 9.52278 8.4041 7.513 6.84287 6.3868 6.13898 6.09044 6.22793 6.54393 7.02859 7.6738 8.47621 9.45756 10.6257 11.9165 13.2749 14.7394 16.5034 19.0347 23.4712 33.1372 61.6552 181.617 1059.1 1051.51 183.018 63.6521 33.9879 24.7558 20.7775 18.2721 16.1914 14.2394 12.4035 10.782 9.42999 8.32603 7.44991 6.79668 6.35935 6.13106 6.10188 6.25828 6.59319 7.09751 7.76483 8.59908 9.63044 10.8557 12.1922 13.578 15.0414 16.7643 19.2073 23.5004 32.9689 61.3069 181.37 1059.21 1051.5 183.053 63.8762 34.251 24.9191 20.8286 18.2354 16.0914 14.0947 12.2352 10.6167 9.27819 8.19102 7.33881 6.71463 6.30942 6.11409 6.11672 6.30297 6.66563 7.19507 7.88437 8.7461 9.81437 11.0744 12.4433 13.8562 15.3305 17.0322 19.4072 23.5697 32.8391 60.9896 181.196 1059.32 1051.5 182.883 63.9406 34.4541 25.0786 20.8832 18.1779 15.9303 13.854 11.9536 10.3379 9.02539 7.97551 7.16909 6.59467 6.24046 6.09516 6.14488 6.37457 6.77723 7.341 8.05799 8.94735 10.0428 11.3231 12.7076 14.1331 15.6118 17.2981 19.6236 23.6856 32.791 60.7804 181.151 1059.43 1051.49 182.634 63.8906 34.6069 25.2071 20.8709 17.9999 15.6083 13.4437 11.5245 9.94406 8.68954 7.70528 6.96765 6.4611 6.17243 6.08967 6.19772 6.48117 6.93349 7.53955 8.2913 9.21272 10.3319 11.6241 13.0116 14.4348 15.9054 17.5714 19.8532 23.835 32.818 60.7142 181.259 1059.58 1051.49 182.311 63.7303 34.6648 25.2012 20.6696 17.6043 15.0801 12.8739 10.9979 9.49966 8.33304 7.43455 6.77696 6.34442 6.12533 6.10906 6.28018 6.62293 7.12956 7.78092 8.57367 9.53363 10.6777 11.9772 13.3561 14.762 16.2125 17.8561 20.1073 24.0399 32.9511 60.8403 181.608 1059.79 1051.49 182.019 63.543 34.6173 25.0115 20.2644 17.0409 14.4545 12.2809 10.5015 9.11057 8.03751 7.22006 6.63319 6.26448 6.10599 6.14974 6.3809 6.78405 7.34471 8.039 8.88054 9.89312 11.0781 12.3927 13.7574 15.1292 16.5388 18.1468 20.3733 24.2918 33.208 61.2213 182.216 1060.08 1051.49 181.743 63.3287 34.4483 24.6695 19.7542 16.4523 13.8792 11.7866 10.1197 8.82854 7.83149 7.07491 6.53927 6.21694 6.10401 6.1955 6.47747 6.93457 7.54344 8.27693 9.16893 10.2457 11.4919 12.8377 14.1982 15.5395 16.9044 18.4667 20.6575 24.5584 33.4961 61.6943 182.916 1060.44 1051.48 181.618 63.1868 34.241 24.3034 19.2896 15.9747 13.4538 11.4514 9.88318 8.66635 7.71766 6.99644 6.48909 6.19235 6.10611 6.22924 6.55096 7.048 7.68836 8.45844 9.39622 10.5443 11.8754 13.2713 14.6409 15.9611 17.2851 18.8015 20.956 24.8389 33.7928 62.1531 183.491 1060.82 1051.48 181.571 63.1359 34.0941 24.0335 18.9669 15.6684 13.2087 11.2859 9.78854 8.61365 7.68503 6.97524 6.4746 6.18251 6.10159 6.23426 6.57454 7.0953 7.75813 8.55697 9.53026 10.7441 12.1724 13.6397 15.0476 16.3749 17.6713 19.1338 21.2241 25.0421 33.9396 62.3416 183.699 1061.17 1051.47 181.638 63.1887 34.0215 23.8694 18.7896 15.5276 13.124 11.2603 9.79735 8.63266 7.70498 6.99111 6.48336 6.18244 6.09225 6.21741 6.55595 7.08283 7.75746 8.57302 9.56964 10.8278 12.338 13.8944 15.38 16.762 18.0691 19.4911 21.5009 25.2115 33.9877 62.3418 183.729 1061.46 1051.47 181.823 63.3623 34.0648 23.8453 18.7666 15.5318 13.1556 11.3123 9.85303 8.67955 7.74097 7.01601 6.49708 6.18441 6.0816 6.19375 6.52099 7.04361 7.72214 8.54458 9.55433 10.8306 12.3861 14.0318 15.6149 17.0903 18.456 19.876 21.8188 25.4061 34.0214 62.2821 183.766 1061.67 1051.47 181.884 63.4585 34.1109 23.8897 18.832 15.6101 13.232 11.3748 9.89637 8.7055 7.75466 7.02161 6.49695 6.17922 6.07068 6.17544 6.49344 7.00977 7.68821 8.51129 9.52517 10.8069 12.3846 14.094 15.7645 17.3431 18.7994 20.26 22.1699 25.6476 34.0912 62.2303 183.862 1061.81 1051.46 181.898 63.5569 34.2331 24.0142 18.9401 15.6878 13.2712 11.3753 9.87061 8.6683 7.71558 6.98653 6.46893 6.15911 6.05781 6.16786 6.4876 7.00386 7.68355 8.50731 9.52267 10.8068 12.394 14.1356 15.8663 17.5323 19.0841 20.612 22.5268 25.9313 34.2306 62.2606 184.065 1061.91 1051.47 181.89 63.6299 34.3514 24.0942 18.9584 15.6523 13.1939 11.2707 9.75808 8.56342 7.62602 6.91586 6.41818 6.12789 6.04504 6.17168 6.50431 7.02858 7.71336 8.54151 9.56076 10.8506 12.4423 14.1897 15.9508 17.6767 19.3079 20.9078 22.8523 26.2215 34.4209 62.3796 184.349 1061.98 1051.47 181.839 63.632 34.3815 24.051 18.8384 15.4841 13.0032 11.0795 9.58436 8.41675 7.50868 6.82739 6.35715 6.09279 6.0347 6.18485 6.5381 7.07673 7.77048 8.60737 9.63478 10.9357 12.5303 14.2659 16.0327 17.7897 19.4753 21.1375 23.1242 26.4921 34.6444 62.5968 184.706 1062.05 1051.47 181.742 63.5523 34.2978 23.8813 18.5973 15.2115 12.7371 10.8451 9.39058 8.26254 7.39005 6.74022 6.29824 6.06021 6.02771 6.20332 6.58071 7.1375 7.84331 8.69288 9.73267 11.0483 12.6434 14.358 16.1144 17.8783 19.5906 21.2959 23.3259 26.7162 34.8672 62.8748 185.063 1062.13 1051.47 181.601 63.396 34.1035 23.596 18.2688 14.8918 12.459 10.6217 9.21743 8.12983 7.28996 6.66702 6.24841 6.03214 6.02148 6.22013 6.62128 7.19748 7.91758 8.78371 9.84317 11.1735 12.761 14.4572 16.1952 17.9478 19.661 21.3847 23.4466 26.8707 35.0628 63.1994 185.445 1062.23 1051.46 181.448 63.1722 33.8054 23.244 17.926 14.5951 12.2224 10.4445 9.08672 8.03216 7.21659 6.61227 6.20907 6.00707 6.01134 6.22713 6.6482 7.24223 7.97648 8.86011 9.94101 11.2911 12.8812 14.5647 16.282 18.0119 19.7061 21.4254 23.5026 26.9573 35.2075 63.5144 185.787 1062.35 1051.46 181.254 62.8855 33.475 22.9159 17.6423 14.37 12.0557 10.3283 9.00584 7.97326 7.17178 6.57651 6.17951 5.98253 5.99228 6.21584 6.64887 7.25578 8.00171 8.90111 10.0018 11.3761 12.985 14.6705 16.3765 18.0844 19.7505 21.4504 23.5295 27.0101 35.3309 63.8379 186.101 1062.49 1051.46 181.076 62.6361 33.2016 22.6723 17.4507 14.2298 11.9612 10.2706 8.97091 7.94934 7.15241 6.55753 6.1582 5.95728 5.96254 6.1828 6.61653 7.22794 7.98019 8.88987 10.0041 11.4018 13.044 14.7506 16.4644 18.1636 19.804 21.4752 23.5411 27.0349 35.4192 64.1094 186.331 1062.63 1051.46 180.996 62.4902 33.0246 22.53 17.3516 14.1682 11.9319 10.2643 8.97493 7.95457 7.15424 6.55275 6.14429 5.93202 5.92413 6.13053 6.55269 7.15824 7.90931 8.82055 9.93808 11.3515 13.0333 14.7783 16.5251 18.2415 19.8744 21.5194 23.5579 27.0394 35.4537 64.2715 186.445 1062.73 1051.47 181.004 62.4411 32.9369 22.4732 17.3289 14.1715 11.9561 10.297 9.00584 7.97944 7.17034 6.55785 6.13611 5.90799 5.88142 6.06647 6.46688 7.05679 7.7988 8.7014 9.81 11.2239 12.9363 14.727 16.5284 18.2936 19.9524 21.5939 23.6084 27.063 35.4741 64.3425 186.432 1062.79 1051.47 181.075 62.4687 32.9272 22.4898 17.3691 14.2232 12.0125 10.3495 9.04914 8.01206 7.19134 6.5661 6.1299 5.88486 5.83811 5.999 6.37231 6.94031 7.66791 8.55465 9.647 11.0419 12.7564 14.5891 16.4546 18.293 20.0146 21.6879 23.6962 27.117 35.4918 64.3571 186.418 1062.8 1051.47 181.173 62.5468 32.9776 22.5572 17.4458 14.296 12.0752 10.3993 9.08632 8.03769 7.20599 6.56944 6.12071 5.86098 5.7963 5.93468 6.28046 6.82372 7.53321 8.39857 9.46745 10.8332 12.5298 14.382 16.2985 18.2142 20.0254 21.7733 23.8133 27.2167 35.5392 64.3457 186.351 1062.75 1051.47 181.263 62.6315 33.045 22.6301 17.5152 14.3526 12.1157 10.4259 9.10247 8.04562 7.20656 6.56241 6.10492 5.83445 5.75613 5.8765 6.19851 6.71817 7.40875 8.25104 9.29304 10.6248 12.2893 14.1351 16.0756 18.0458 19.9447 21.7944 23.9111 27.3354 35.6108 64.3174 186.276 1062.65 1051.47 181.326 62.6964 33.0965 22.6752 17.549 14.3724 12.1219 10.4228 9.09429 8.03411 7.19204 6.5442 6.08172 5.8044 5.71686 5.82442 6.1283 6.6281 7.30128 8.12217 9.13803 10.4363 12.0613 13.8818 15.8183 17.8075 19.7643 21.7079 23.9238 27.4124 35.6748 64.263 186.174 1062.52 1051.48 181.364 62.7329 33.1135 22.6758 17.5363 14.3503 12.0935 10.3923 9.06458 8.00572 7.16436 6.51603 6.05157 5.77059 5.67755 5.777 6.06857 6.55336 7.21192 8.01482 9.00765 10.276 11.8616 13.6469 15.5611 17.5406 19.5175 21.5203 23.8208 27.3872 35.669 64.1416 185.972 1062.38 1051.48 181.388 62.7437 33.0913 22.6303 17.4806 14.2929 12.0384 10.3418 9.01963 7.96539 7.12715 6.48031 6.01582 5.73344 5.63776 5.733 6.0176 6.49267 7.1403 7.92946 8.90357 10.1469 11.6977 13.4474 15.3339 17.2897 19.2604 21.287 23.6418 27.277 35.6016 64.0073 185.78 1062.27 1051.48 181.401 62.7308 33.0331 22.5487 17.3959 14.2147 11.9695 10.2823 8.96804 7.91967 7.0852 6.44035 5.97648 5.69371 5.59702 5.69061 5.97223 6.44228 7.08284 7.86237 8.82231 10.0457 11.5672 13.2859 15.1463 17.076 19.0299 21.0592 23.4424 27.1297 35.5132 63.9252 185.662 1062.22 1051.48 181.399 62.6912 32.9419 22.4408 17.2944 14.1272 11.8963 10.2208 8.91512 7.87249 7.04141 6.39816 5.93472 5.65174 5.55467 5.64817 5.92953 6.39824 7.03512 7.80858 8.75908 9.96681 11.4668 13.1635 14.9994 16.9037 18.8392 20.8643 23.263 26.9883 35.4358 63.9152 185.633 1062.24 1051.48 181.39 62.6409 32.8374 22.3277 17.195 14.0453 11.8303 10.1659 8.86736 7.82895 6.99968 6.35661 5.8924 5.6083 5.5103 5.60382 5.88618 6.35564 6.99069 7.76057 8.70556 9.90286 11.3886 13.0702 14.8838 16.7627 18.679 20.6996 23.1124 26.8721 35.3862 63.9724 185.677 1062.3 1051.48 181.37 62.5801 32.7263 22.2171 17.1039 13.9733 11.7734 10.1188 8.82564 7.78955 6.96044 6.31613 5.84989 5.5635 5.46351 5.55625 5.8395 6.31002 6.94363 7.71109 8.65214 9.84392 11.3257 12.9999 14.7947 16.6471 18.5401 20.5525 22.9803 26.7782 35.3651 64.0769 185.762 1062.4 1051.48 181.354 62.5266 32.6245 22.1206 17.0286 13.916 11.729 10.0817 8.7915 7.7556 6.92491 6.2779 5.80826 5.51813 5.41457 5.50482 5.78718 6.25725 6.88857 7.65347 8.59033 9.77757 11.262 12.9391 14.7231 16.552 18.4167 20.4106 22.845 26.6815 35.3474 64.1863 185.837 1062.48 1051.48 181.342 62.4853 32.5385 22.0422 16.9708 13.8734 11.6962 10.0533 8.7636 7.72608 6.89257 6.24189 5.76788 5.47291 5.36436 5.45022 5.72921 6.19639 6.82393 7.58505 8.51689 9.69619 11.1817 12.8726 14.6596 16.4781 18.3195 20.2861 22.7086 26.5675 35.3064 64.2615 185.867 1062.55 1051.48 181.344 62.4653 32.4762 21.9864 16.9324 13.8458 11.6738 10.0319 8.74051 7.70009 6.86304 6.20814 5.72918 5.42855 5.31373 5.39332 5.66634 6.12689 6.74776 7.50183 8.42529 9.59251 11.0756 12.7843 14.5861 16.4137 18.2521 20.2001 22.5994 26.4541 35.2371 64.2746 185.831 1062.58 1051.48 181.367 62.4712 32.4405 21.9517 16.9089 13.8277 11.6567 10.0131 8.71887 7.67542 6.83503 6.17613 5.69232 5.38601 5.26481 5.33781 5.60381 6.05551 6.66734 7.41089 8.32231 9.47293 10.9453 12.6655 14.4843 16.3362 18.1979 20.1541 22.5403 26.3731 35.1549 64.2147 185.729 1062.59 1051.48 181.412 62.507 32.4324 21.9354 16.8959 13.8146 11.6412 9.99424 8.69721 7.65134 6.80823 6.14579 5.65748 5.3459 5.21897 5.28631 5.54599 5.98882 6.59088 7.32218 8.21936 9.35011 10.8029 12.5209 14.3473 16.2231 18.1221 20.1128 22.5107 26.3241 35.0688 64.0929 185.588 1062.57 1051.48 181.477 62.5639 32.4392 21.9222 16.8786 13.7948 11.6188 9.9698 8.67171 7.62515 6.7806 6.11549 5.62333 5.30726 5.17596 5.23995 5.49654 5.93342 6.52727 7.24736 8.13021 9.24041 10.669 12.3725 14.1936 16.0815 18.0135 20.0485 22.48 26.2948 34.9989 63.9569 185.457 1062.57 1051.48 181.55 62.6267 32.4428 21.8966 16.8464 13.7625 11.5881 9.94003 8.64293 7.59725 6.75218 6.08482 5.58906 5.26897 5.1345 5.19762 5.45614 5.89285 6.48105 7.1929 8.06327 9.15514 10.5573 12.2364 14.0431 15.9295 17.8798 19.9503 22.4187 26.2514 34.9399 63.8529 185.379 1062.58 1051.48 181.619 62.681 32.429 21.8481 16.7935 13.7155 11.5489 9.90554 8.61146 7.56775 6.72251 6.05289 5.55357 5.23006 5.09412 5.1597 5.4262 5.86905 6.45464 7.16221 8.02298 9.09876 10.4772 12.1305 13.9162 15.7909 17.7463 19.8393 22.3366 26.1866 34.8676 63.7581 185.319 1062.65 1051.48 181.664 62.7051 32.3835 21.7716 16.7209 13.6575 11.5051 9.87009 8.58056 7.53911 6.6931 6.02035 5.51682 5.18995 5.05382 5.12482 5.40407 5.85783 6.44508 7.15359 8.00908 9.07204 10.4298 12.0568 13.8142 15.6663 17.6151 19.7215 22.2445 26.1187 34.8201 63.7476 185.348 1062.77 1051.47 181.685 62.6982 32.3073 21.6722 16.6364 13.5961 11.463 9.83827 8.55307 7.51252 6.66398 5.98639 5.47737 5.14644 5.01027 5.08814 5.38362 5.8528 6.44689 7.16304 8.02008 9.07619 10.4187 12.0223 13.747 15.5644 17.4909 19.5981 22.1442 26.0519 34.7992 63.8108 185.437 1062.91 1051.47 181.691 62.6719 32.2156 21.5683 16.5586 13.5479 11.4355 9.81975 8.53588 7.49264 6.63815 5.95279 5.43572 5.09843 4.96008 5.04304 5.35425 5.84064 6.44579 7.17538 8.04118 9.09718 10.4292 12.0154 13.7097 15.4827 17.365 19.4471 22.0008 25.9482 34.7704 63.9015 185.53 1063.06 1051.47 181.698 62.6495 32.133 21.4829 16.5064 13.526 11.4307 9.81875 8.5308 7.47986 6.61551 5.91934 5.39164 5.04541 4.90213 4.98794 5.31139 5.81181 6.43197 7.17961 8.06175 9.12594 10.4522 12.0314 13.7134 15.4517 17.2821 19.3121 21.8394 25.8058 34.7079 63.9713 185.582 1063.19 1051.47 181.73 62.6642 32.0917 21.4423 16.4986 13.542 11.4544 9.83764 8.53861 7.47456 6.59665 5.88696 5.34608 4.98797 4.8364 4.92182 5.25056 5.75684 6.3923 7.15769 8.05831 9.13399 10.4521 12.0282 13.7201 15.4501 17.2472 19.2218 21.6942 25.642 34.601 63.98 185.562 1063.31 1051.47 181.791 62.7263 32.1022 21.4484 16.5278 13.5824 11.4906 9.86103 8.54614 7.46648 6.57411 5.85061 5.29608 4.92502 4.76342 4.84554 5.17569 5.68534 6.33395 7.11435 8.03165 9.11799 10.4236 11.9939 13.7099 15.4607 17.2637 19.2153 21.6361 25.5303 34.4841 63.9149 185.462 1063.39 1051.47 181.86 62.8192 32.1533 21.4867 16.5741 13.626 11.5205 9.87357 8.54196 7.44771 6.54263 5.80712 5.24 4.85601 4.68349 4.76037 5.08967 5.60153 6.26141 7.05319 7.98134 9.0711 10.3566 11.9094 13.6401 15.4168 17.2499 19.2153 21.6139 25.4529 34.3568 63.7792 185.331 1063.49 1051.47 181.894 62.8932 32.1978 21.5065 16.5843 13.6237 11.5044 9.84517 8.50359 7.40122 6.48899 5.74812 5.17369 4.77994 4.59917 4.67312 5.00348 5.51979 6.19332 6.99769 7.93536 9.02569 10.2906 11.8207 13.5529 15.348 17.2174 19.2221 21.631 25.4271 34.2476 63.6103 185.198 1063.56 1051.47 181.886 62.9193 32.1958 21.4663 16.5244 13.5556 11.435 9.77658 8.43477 7.33027 6.41533 5.67912 5.10494 4.70329 4.51508 4.5861 4.91784 5.44008 6.12784 6.945 7.89016 8.97846 10.2253 11.7272 13.4448 15.2406 17.1268 19.1639 21.6013 25.3962 34.1797 63.5215 185.197 1063.72 1051.47 181.846 62.8892 32.1223 21.3418 16.3832 13.4234 11.3217 9.67862 8.34394 7.23885 6.32638 5.60287 5.03632 4.6306 4.43637 4.50487 4.83848 5.36855 6.07161 6.90388 7.85863 8.9488 10.188 11.6715 13.381 15.179 17.0725 19.1266 21.5791 25.3672 34.1234 63.4816 185.271 1063.8 1051.46 181.855 62.8713 32.0224 21.18 16.221 13.2931 11.2252 9.6027 8.2724 7.16024 6.24996 5.53608 4.976 4.56796 4.36619 4.42616 4.7537 5.28628 5.99855 6.84157 7.80166 8.89157 10.1271 11.5957 13.3025 15.1084 17.0066 19.0683 21.534 25.3404 34.126 63.4801 184.477 1064.08 1051.46 181.985 62.9646 31.9947 21.0784 16.1296 13.239 11.1973 9.58115 8.23958 7.10881 6.19285 5.48109 4.92572 4.51824 4.30933 4.3557 4.66849 5.19745 5.91408 6.76582 7.73086 8.82191 10.0595 11.519 13.237 15.0708 16.9852 19.052 21.5145 25.3066 34.0445 63.1262 182.029 1064.15 1051.46 182.212 63.1917 32.0945 21.0974 16.1551 13.2848 11.2405 9.60259 8.22875 7.06938 6.14235 5.42926 4.87965 4.47677 4.26234 4.28971 4.57422 5.08421 5.78916 6.63665 7.59855 8.68705 9.92575 11.373 13.1025 14.9708 16.901 18.9605 21.401 25.1668 33.8601 62.6998 179.925 1064.51 1051.46 182.39 63.4315 32.2501 21.1757 16.2203 13.3371 11.2559 9.57377 8.16014 6.97991 6.05337 5.34815 4.81241 4.42577 4.2194 4.23892 4.4983 4.98192 5.66038 6.487 7.4358 8.51574 9.75317 11.1954 12.9524 14.8851 16.8515 18.8951 21.2716 24.9533 33.5898 62.357 178.903 1064.59 1051.46 182.398 63.5284 32.326 21.1886 16.1886 13.2573 11.1232 9.39978 7.96589 6.79652 5.89988 5.22255 4.7147 4.35857 4.17723 4.208 4.45804 4.91656 5.55649 6.34161 7.25529 8.30722 9.52557 10.9565 12.7309 14.7303 16.7567 18.817 21.16 24.7761 33.3659 62.0958 178.291 1064.94 1051.46 182.26 63.4523 32.2514 21.0369 15.9409 12.9281 10.7465 9.01903 7.61799 6.51038 5.68203 5.05901 4.59863 4.29164 4.15604 4.22226 4.4908 4.94118 5.54626 6.2816 7.14473 8.15746 9.35281 10.7717 12.5413 14.5775 16.6559 18.7346 21.0344 24.5654 33.126 61.9317 178.07 1065.11 1051.46 182.078 63.2685 32.0203 20.678 15.4493 12.3655 10.1897 8.52713 7.2228 6.21802 5.47976 4.92835 4.529 4.27702 4.1894 4.28656 4.57819 5.03372 5.61891 6.31454 7.1254 8.08395 9.23846 10.6403 12.4074 14.4803 16.6377 18.8 21.132 24.6011 33.0437 61.8005 177.974 1065.45 1051.46 181.921 62.9876 31.5906 20.0791 14.7471 11.6678 9.58287 8.05233 6.88906 6.01194 5.37216 4.90038 4.56468 4.35202 4.28981 4.40173 4.70892 5.18163 5.77716 6.46718 7.25134 8.16188 9.26173 10.6248 12.3668 14.393 16.5268 18.6991 21.0488 24.5345 33.0489 61.9637 178.233 1065.61 1051.46 181.857 62.7653 31.1822 19.526 14.1601 11.1577 9.20947 7.82747 6.79881 6.0314 5.46949 5.05095 4.73244 4.51464 4.42025 4.49235 4.78174 5.27388 5.91671 6.65926 7.48229 8.40787 9.50628 10.8743 12.6134 14.6033 16.7426 18.9698 21.343 24.7269 33.0788 62.0719 178.601 1066.25 1051.46 182.435 63.2584 31.4054 19.5127 14.0538 11.0848 9.2329 7.96288 7.03697 6.33651 5.79284 5.35993 5.01092 4.73661 4.55446 4.51797 4.70308 5.16064 5.84708 6.6812 7.60411 8.60755 9.74436 11.1262 12.801 14.6286 16.5846 18.7148 21.2011 24.9297 33.7375 63.0121 179.269 1065.91 1051.46 183.438 64.5228 32.5437 20.3959 14.7427 11.6814 9.79824 8.51478 7.57009 6.83562 6.2449 5.75905 5.35072 5.00323 4.71784 4.52609 4.50583 4.79124 5.41599 6.31787 7.39614 8.59092 9.91188 11.4376 13.3115 15.301 17.2835 19.2334 21.329 24.6022 33.1622 62.507 178.828 1066.85 1051.46 183.652 65.1064 33.297 21.1121 15.3353 12.1568 10.1874 8.84257 7.85392 7.08997 6.47927 5.97472 5.54533 5.1761 4.86508 4.61745 4.45043 4.42579 4.70444 5.37891 6.41078 7.68501 9.10189 10.6279 12.3905 14.4239 16.5661 18.8113 21.2765 24.8413 33.4915 62.6967 178.839 1066.2 1051.46 175.622 62.6657 32.0053 20.2014 14.5761 11.4698 9.55945 8.28823 7.39027 6.71896 6.18281 5.72605 5.32393 4.97698 4.69961 4.50764 4.41311 4.43548 4.62359 5.10661 5.98213 7.27085 8.90449 10.7524 12.7572 14.9997 17.0794 19.0306 21.1452 24.4658 33.1369 62.5313 178.585 1066.95 1051.46 176.02 63.0713 32.3043 20.3884 14.6943 11.5705 9.67728 8.42906 7.53228 6.82761 6.23201 5.71319 5.27027 4.91331 4.64665 4.46469 4.35906 4.32745 4.37738 4.5402 4.90936 5.61333 6.7741 8.423 10.4396 12.7394 15.3216 17.7706 20.2245 23.626 31.9429 60.781 177.271 1066.52 1051.47 177.139 64.5548 33.834 21.8218 15.9585 12.6242 10.4952 9.001 7.86896 6.96498 6.22912 5.64248 5.20144 4.89555 4.70135 4.59676 4.57951 4.6694 4.91814 5.35382 5.99688 6.88017 8.06528 9.64464 11.7016 14.1473 16.561 18.8491 21.244 24.8226 33.8096 63.5737 179.801 1067.31 1051.47 177.336 64.804 34.0411 21.9307 15.9426 12.4831 10.252 8.69735 7.556 6.68925 6.0194 5.50529 5.12879 4.87926 4.74035 4.69022 4.71282 4.8055 5.00589 5.35421 5.87249 6.5829 7.52753 8.77612 10.4346 12.3077 14.2351 16.1629 18.297 21.6337 30.0703 58.9696 175.78 1066.93 1051.48 177.342 64.7092 33.8094 21.6112 15.6332 12.2893 10.258 8.9522 8.07091 7.44243 6.96214 6.56473 6.21142 5.88431 5.5844 5.33146 5.1636 5.13803 5.24221 5.56653 6.16371 7.08826 8.36991 10.0066 12.0245 14.5409 17.0464 19.3251 21.4687 24.6974 33.7611 64.2292 181.028 1068.26 1051.49 178.276 65.6682 34.3256 21.727 15.5671 12.2365 10.324 9.16331 8.40911 7.87716 7.47057 7.14085 6.86488 6.63055 6.429 6.25331 6.0985 5.99337 5.92375 5.91495 5.99877 6.33381 7.07257 8.34175 10.1897 12.5851 14.9231 17.1152 19.5742 23.1741 31.4319 59.7402 176.584 1068.32 1051.54 183.171 68.1423 34.6377 21.1775 15.0767 12.1656 10.6752 9.79862 9.1688 8.62449 8.10502 7.60027 7.11713 6.66238 6.23525 5.82711 5.4475 5.09031 4.75542 4.44638 4.1871 3.97536 3.87612 4.2932 5.44558 7.43333 10.2042 12.5621 14.0629 17.1955 28.9083 65.4836 187.719 1069.52 1051.63 171.835 53.3925 23.357 15.3498 13.8791 13.8488 13.7821 13.4416 12.8757 12.1537 11.3481 10.5529 9.8296 9.21523 8.74721 8.46018 8.38699 8.56787 8.99609 9.63888 10.5443 11.7192 13.1698 14.9457 17.1079 19.74 22.9587 27.0317 32.7176 41.8046 58.317 93.868 205.944 1071 537.583 23.9021 24.0685 24.1333 24.1563 24.1682 24.1739 24.1734 24.1676 24.1574 24.1435 24.1267 24.1078 24.0875 24.0666 24.0459 24.0258 24.0071 23.9901 23.9744 23.9597 23.9464 23.934 23.9225 23.9113 23.9003 23.8893 23.8783 23.8684 23.8624 23.8643 23.8782 23.9061 23.9479 550.358 537.586 24.1285 24.2741 24.2713 24.2516 24.2427 24.2395 24.2372 24.2338 24.2301 24.2265 24.2233 24.2208 24.2193 24.219 24.2199 24.2221 24.2255 24.2301 24.2357 24.2421 24.2491 24.2564 24.2636 24.2703 24.276 24.2806 24.284 24.286 24.2886 24.2941 24.2939 24.2361 24.0016 533.516 1051.45 169.623 50.7434 23.4485 14.8355 10.9283 8.60026 7.00327 5.85421 5.00292 4.36208 3.87578 3.50836 3.23738 3.04882 2.93384 2.88691 2.9049 2.98657 3.13242 3.34497 3.62927 3.99387 4.45222 5.02464 5.74086 6.64437 7.80457 9.35472 11.6201 15.5637 24.5916 53.1399 171.991 1045.7 1051.47 177.319 56.0966 25.5099 15.0889 10.4793 7.97435 6.44499 5.47046 4.82923 4.38917 4.08255 3.87271 3.73598 3.65662 3.62402 3.63115 3.67375 3.74983 3.85958 4.00546 4.1925 4.42902 4.72797 5.10933 5.60716 6.28239 7.23237 8.63546 10.9225 15.3059 25.6975 56.6323 177.119 1046.53 1051.5 180.395 59.4329 28.4684 17.6127 12.5956 9.72652 7.85931 6.57794 5.69885 5.08366 4.63723 4.31204 4.08094 3.92672 3.83844 3.80928 3.8352 3.91439 4.04701 4.2352 4.48371 4.80101 5.20125 5.70744 6.36631 7.24584 8.43169 10.1026 12.6955 17.4288 28.1677 59.304 179.63 1047.99 1051.51 180.535 60.031 29.4448 18.6721 13.6061 10.6546 8.69359 7.31172 6.33215 5.63052 5.11178 4.724 4.43975 4.24181 4.11931 4.06551 4.0764 4.15005 4.28645 4.48714 4.75607 5.10067 5.53392 6.07772 6.77806 7.70175 8.93248 10.6495 13.2915 18.0642 28.743 59.5297 179.515 1048.69 1051.53 181.728 61.2464 30.7556 20.105 15.0343 11.9888 9.87932 8.31863 7.15533 6.30285 5.66714 5.18281 4.81932 4.55755 4.38566 4.2966 4.28644 4.35336 4.49806 4.72249 5.03122 5.43262 5.9411 6.58154 7.40722 8.48487 9.88197 11.7601 14.5352 19.3651 29.9583 60.6396 180.691 1049.64 1051.54 181.679 61.3659 31.2379 20.8135 15.8164 12.7676 10.6146 8.98504 7.73817 6.80681 6.10288 5.55782 5.1409 4.83321 4.62336 4.50494 4.47469 4.53092 4.67515 4.90949 5.23839 5.66985 6.2178 6.90602 7.78839 8.93199 10.3988 12.3431 15.1678 19.9886 30.4061 60.6895 180.571 1050.23 1051.55 182.325 61.9819 31.9173 21.6353 16.713 13.6728 11.477 9.76628 8.41427 7.37383 6.57723 5.95618 5.47422 5.11183 4.85755 4.70541 4.65274 4.69777 4.84336 5.09263 5.45065 5.92624 6.53412 7.30066 8.28309 9.54393 11.1297 13.1752 16.0602 20.8661 31.1588 61.3136 181.245 1050.92 1051.55 182.296 62.0291 32.195 22.1035 17.2748 14.2669 12.0646 10.3205 8.91481 7.80901 6.95183 6.27894 5.75068 5.34779 5.05938 4.88038 4.80833 4.84183 4.98461 5.241 5.61627 6.11919 6.76432 7.5768 8.6149 9.94182 11.5964 13.7025 16.622 21.3965 31.5139 61.3473 181.193 1051.43 1051.56 182.633 62.3457 32.5486 22.5695 17.8236 14.8582 12.6613 10.8896 9.4294 8.25272 7.32928 6.60029 6.02249 5.57678 5.25283 5.04607 4.95443 4.97706 5.1189 5.386 5.78436 6.32339 7.01814 7.89501 9.01286 10.4277 12.1625 14.3244 17.2591 21.9895 31.9858 61.6918 181.57 1051.97 1051.56 182.612 62.3602 32.6991 22.8633 18.2061 15.2856 13.1007 11.3157 9.82208 8.59875 7.62994 6.86143 6.24756 5.76968 5.41822 5.1886 5.07955 5.09119 5.22933 5.50132 5.91428 6.47823 7.20866 8.13186 9.30785 10.7911 12.5932 14.8063 17.7578 22.4424 32.2896 61.771 181.618 1052.42 1051.56 182.761 62.4918 32.8688 23.1241 18.5376 15.6598 13.492 11.7015 10.1827 8.92006 7.91103 7.10632 6.45885 5.95075 5.57279 5.32104 5.19545 5.19693 5.33238 5.61055 6.04004 6.63171 7.40187 8.37818 9.62091 11.1774 13.0449 15.3006 18.2573 22.8955 32.6335 61.9988 181.868 1052.88 1051.56 182.764 62.5 32.9505 23.2981 18.7759 15.9375 13.7891 12.0009 10.47 9.18367 8.14769 7.31667 6.64335 6.11089 5.7102 5.43826 5.29641 5.28633 5.41584 5.6949 6.13362 6.74379 7.54278 8.56015 9.85792 11.4797 13.4117 15.7164 18.6885 23.2868 32.9054 62.1093 181.968 1053.3 1051.55 182.849 62.5719 33.0376 23.4378 18.9633 16.1622 14.0389 12.2623 10.729 9.42782 8.37066 7.51661 6.81967 6.2638 5.84087 5.54921 5.39129 5.36954 5.49268 5.7717 6.21788 6.84376 7.66753 8.72115 10.0677 11.7455 13.7315 16.0777 19.0652 23.6352 33.1617 62.243 182.111 1053.7 1051.55 182.913 62.6353 33.1045 23.5403 19.104 16.3378 14.2424 12.4834 10.9549 9.64601 8.57305 7.69967 6.98207 6.40488 5.96108 5.6505 5.47666 5.4426 5.55789 5.83429 6.28371 6.9194 7.76009 8.84022 10.2242 11.9453 13.9742 16.355 19.3569 23.9041 33.3421 62.2746 182.137 1054.06 1051.54 183.023 62.7522 33.185 23.6268 19.2157 16.4818 14.4179 12.6824 11.1645 9.85174 8.76487 7.87312 7.13545 6.53745 6.07351 5.74487 5.55599 5.51043 5.6185 5.89256 6.34487 6.98902 7.84368 8.94564 10.3596 12.1128 14.1706 16.5713 19.5771 24.1011 33.4653 62.2663 182.136 1054.39 1051.54 183.103 62.8614 33.2534 23.6889 19.2947 16.5899 14.5589 12.8515 11.3496 10.0371 8.93732 8.02791 7.27151 6.65438 6.17243 5.82787 5.62599 5.57079 5.6732 5.94608 6.40189 7.05435 7.92177 9.04275 10.4822 12.2615 14.3404 16.7515 19.7503 24.2424 33.5304 62.1959 182.077 1054.7 1051.53 183.14 62.9437 33.2971 23.7158 19.3318 16.6551 14.6601 12.9862 11.506 10.1975 9.08572 8.15976 7.38691 6.75329 6.25629 5.89892 5.68716 5.62548 5.72539 6.0002 6.46261 7.12633 8.00908 9.15042 10.6151 12.4192 14.5158 16.9299 19.9107 24.36 33.5699 62.1165 182.028 1055.01 1051.52 183.09 62.9489 33.2887 23.6932 19.3194 16.6736 14.7189 13.0833 11.6289 10.3269 9.20364 8.26252 7.47633 6.82984 6.32169 5.95548 5.73777 5.67347 5.77472 6.05525 6.52809 7.20718 8.10966 9.27519 10.7688 12.603 14.7225 17.1417 20.1014 24.4999 33.6274 62.074 182.033 1055.32 1051.52 182.959 62.8645 33.2155 23.6134 19.2555 16.647 14.7384 13.1453 11.7195 10.4255 9.29111 8.33613 7.53977 6.88438 6.36918 5.9982 5.77852 5.71554 5.82202 6.11217 6.59942 7.29822 8.22543 9.41986 10.9473 12.8193 14.9707 17.4034 20.3473 24.6967 33.7475 62.129 182.151 1055.65 1051.52 182.762 62.6892 33.074 23.4808 19.1521 16.5915 14.735 13.1855 11.7869 10.4993 9.35312 8.38547 7.58175 6.92071 6.4017 6.02908 5.81038 5.7515 5.86582 6.16805 6.67221 7.39341 8.34886 9.57595 11.1418 13.0595 15.2541 17.7145 20.6584 24.9733 33.9647 62.3241 182.414 1056.01 1051.52 182.536 62.4462 32.8751 23.3125 19.032 16.5308 14.7299 13.221 11.8438 10.5583 9.39945 8.42048 7.61127 6.94646 6.4253 6.05242 5.8357 5.78153 5.90387 6.21797 6.73844 7.48123 8.46449 9.72395 11.3282 13.2937 15.5377 18.0395 21.0056 25.3132 34.274 62.6486 182.79 1056.38 1051.52 182.352 62.2021 32.6639 23.1499 18.9361 16.5022 14.7537 13.2751 11.9076 10.6173 9.44536 8.45539 7.64022 6.97149 6.44765 6.07344 5.85712 5.80547 5.93296 6.2554 6.788 7.54764 8.55367 9.84062 11.4779 13.4846 15.7747 18.3256 21.338 25.6749 34.6427 63.0531 183.205 1056.72 1051.53 182.266 62.0237 32.4916 23.0383 18.9025 16.5346 14.827 13.3625 11.9897 10.6861 9.50142 8.5012 7.67896 7.00505 6.47622 6.09752 5.87759 5.82354 5.95029 6.27416 6.81092 7.57825 8.59666 9.90054 11.5583 13.5882 15.9073 18.5023 21.5776 25.9821 34.9956 63.4302 183.529 1057.01 1051.53 182.351 62.0007 32.4232 23.0251 18.9619 16.6461 14.9601 13.4899 12.0967 10.7721 9.57375 8.56617 7.73704 7.05475 6.51697 6.12912 5.90013 5.83722 5.95562 6.2722 6.80316 7.56677 8.58446 9.892 11.5545 13.5835 15.9031 18.52 21.6564 26.1552 35.2501 63.6784 183.67 1057.19 1051.53 182.595 62.1568 32.4824 23.1208 19.1136 16.828 15.1408 13.646 12.2211 10.8727 9.66411 8.65098 7.81332 7.12009 6.57037 6.1696 5.92681 5.84919 5.95225 6.25348 6.7695 7.51902 8.52403 9.82353 11.4772 13.4823 15.7703 18.3729 21.5424 26.1344 35.3331 63.7255 183.586 1057.28 1051.53 182.931 62.4618 32.6562 23.3053 19.3294 17.0481 15.3382 13.8059 12.3448 10.9746 9.762 8.74581 7.89929 7.19513 6.63259 6.21718 5.95807 5.8624 5.946 6.22703 6.72259 7.45178 8.43706 9.72251 11.3617 13.3302 15.5621 18.1101 21.2623 25.9079 35.2025 63.5402 183.282 1057.28 1051.52 183.266 62.8456 32.9054 23.5381 19.5636 17.2599 15.5103 13.936 12.4429 11.0584 9.84898 8.83434 7.98158 7.26855 6.69476 6.26586 5.99121 5.87797 5.94232 6.20315 6.67808 7.38662 8.35188 9.62473 11.2536 13.1878 15.3553 17.8187 20.8957 25.5213 34.8573 63.1206 182.797 1057.23 1051.51 183.499 63.2083 33.1745 23.7712 19.766 17.4138 15.6128 13.9998 12.4872 11.1014 9.90385 8.89673 8.04271 7.32539 6.74472 6.30661 6.02081 5.89467 5.94484 6.1909 6.65102 7.34518 8.29721 9.56619 11.198 13.1139 15.2274 17.5957 20.5508 25.07 34.3512 62.4996 182.171 1057.19 1051.49 183.588 63.4856 33.427 23.973 19.8998 17.4707 15.6093 13.9673 12.4548 11.0858 9.91009 8.91677 8.06788 7.35252 6.7713 6.33065 6.04095 5.91008 5.95526 6.19676 6.65326 7.34517 8.29709 9.57695 11.2309 13.1539 15.2391 17.5233 20.3331 24.6726 33.789 61.7643 181.501 1057.21 1051.48 183.537 63.6476 33.6363 24.1173 19.9346 17.4029 15.4817 13.8296 12.3407 11.0078 9.8613 8.88624 8.04967 7.34308 6.76831 6.33287 6.04808 5.92278 5.9749 6.22528 6.69314 7.39927 8.3694 9.67962 11.3778 13.3379 15.4296 17.6581 20.3255 24.4433 33.3044 61.0544 180.923 1057.34 1051.48 183.383 63.6943 33.7757 24.1621 19.8343 17.1949 15.2337 13.6001 12.159 10.8745 9.76292 8.81103 7.991 7.29785 6.73546 6.31278 6.04222 5.93366 6.00581 6.27987 6.77546 7.51371 8.52548 9.89106 11.6538 13.681 15.8181 18.0301 20.5803 24.4725 33.0394 60.5669 180.651 1057.61 1051.47 183.164 63.6293 33.8047 24.062 19.5806 16.8597 14.8972 13.3146 11.9417 10.7128 9.63445 8.70341 7.90046 7.22346 6.67827 6.27519 6.02755 5.94633 6.05104 6.36323 6.90303 7.69226 8.76456 10.2047 12.0575 14.1838 16.4041 18.6409 21.113 24.8103 33.1068 60.5062 180.912 1058.05 1051.47 182.888 63.4352 33.6716 23.7881 19.1893 16.4444 14.5287 13.0241 11.728 10.5527 9.49737 8.57928 7.79185 7.13171 6.60659 6.22801 6.00994 5.96425 6.11106 6.47211 7.06823 7.92282 9.0704 10.6001 12.5644 14.8187 17.1579 19.4596 21.8953 25.4437 33.543 60.9976 181.824 1058.65 1051.46 182.533 63.076 33.3402 23.3537 18.717 16.0196 14.1925 12.779 11.554 10.4188 9.37274 8.45841 7.68178 7.03657 6.53185 6.17984 5.99452 5.98809 6.18089 6.59451 7.2505 8.17513 9.40334 11.0275 13.1121 15.5128 18.0004 20.4046 22.8448 26.2906 34.2801 62.0081 183.274 1059.34 1051.47 182.089 62.5457 32.8313 22.8261 18.248 15.6594 13.9437 12.6171 11.4453 10.3311 9.28052 8.35954 7.58611 6.95151 6.46479 6.1376 5.98313 6.01321 6.24788 6.70814 7.41574 8.39977 9.6998 11.4078 13.5982 16.1441 18.7958 21.3365 23.8274 27.2178 35.1701 63.3074 184.88 1059.98 1051.47 181.606 61.9058 32.2322 22.3073 17.8674 15.4226 13.8203 12.5638 11.4202 10.3046 9.2381 8.29853 7.51837 6.88976 6.41546 6.10622 5.97425 6.03057 6.29425 6.78514 7.52445 8.54298 9.88532 11.641 13.8963 16.5563 19.3644 22.0705 24.6759 28.0797 36.0491 64.5729 186.191 1060.45 1051.48 181.178 61.2823 31.6677 21.895 17.6351 15.3406 13.8381 12.6284 11.4877 10.3494 9.25296 8.28791 7.49461 6.863 6.39077 6.08774 5.96491 6.03182 6.30564 6.80429 7.54747 8.56577 9.90603 11.653 13.9062 16.6141 19.5408 22.4303 25.2294 28.745 36.7651 65.4908 186.874 1060.63 1051.49 180.941 60.824 31.2509 21.6547 17.5792 15.4218 13.9975 12.8102 11.6499 10.4712 9.3338 8.33686 7.52264 6.87717 6.39469 6.08413 5.9551 6.01517 6.27895 6.76162 7.48052 8.46354 9.75509 11.4326 13.6046 16.2692 19.2417 22.3036 25.376 29.1476 37.2918 65.9931 186.942 1060.52 1051.5 180.971 60.6323 31.0455 21.6086 17.6974 15.6544 14.2853 13.0982 11.8993 10.6664 9.47905 8.44482 7.60233 6.93272 6.42853 6.09776 5.94873 5.98686 6.22405 6.67249 7.34614 8.26814 9.47672 11.0385 13.0633 15.5917 18.5102 21.6808 25.0585 29.234 37.6377 66.1781 186.617 1060.19 1051.52 181.299 60.7566 31.0681 21.7448 17.9668 16.0135 14.678 13.4716 12.2182 10.9197 9.67561 8.60077 7.7251 7.02401 6.48987 6.1298 5.95097 5.95687 6.15716 6.56141 7.17995 8.03029 9.14252 10.5707 12.4165 14.7446 17.5096 20.6774 24.3014 28.9509 37.772 66.157 186.107 1059.71 1051.52 181.874 61.1767 31.2935 22.0285 18.3521 16.4654 15.1431 13.8988 12.5764 11.2031 9.89855 8.78319 7.8736 7.13832 6.57095 6.17759 5.96448 5.93356 6.09302 6.45089 7.01452 7.79626 8.81808 10.122 11.7947 13.9032 16.4484 19.4927 23.2237 28.2877 37.6241 65.9726 185.522 1059.17 1051.53 182.56 61.7953 31.6598 22.4092 18.8103 16.9691 15.6377 14.3347 12.9292 11.476 10.1124 8.96159 8.0226 7.25611 6.65807 6.23335 5.98725 5.92058 6.04096 6.3561 6.87173 7.59657 8.54597 9.75245 11.2847 13.1943 15.5023 18.3373 22.0141 27.3224 37.1427 65.5928 184.88 1058.65 1051.52 183.187 62.4648 32.0872 22.8332 19.2966 17.4776 16.108 14.721 13.22 11.6897 10.279 9.10322 8.14343 7.35462 6.73442 6.2859 6.0134 5.91702 6.00459 6.28461 6.76266 7.44569 8.34482 9.48704 10.9238 12.6801 14.7746 17.3679 20.8654 26.2109 36.36 64.9821 184.165 1058.19 1051.52 183.628 63.0525 32.5099 23.2611 19.7705 17.939 16.493 14.9965 13.3938 11.7985 10.3651 9.17949 8.21058 7.4146 6.78548 6.32462 6.03584 5.91926 5.98356 6.23884 6.69181 7.34943 8.22091 9.33231 10.72 12.3752 14.2993 16.6598 19.9118 25.1211 35.386 64.152 183.367 1057.82 1051.51 183.838 63.48 32.8969 23.6751 20.1995 18.3032 16.7336 15.1059 13.4082 11.773 10.346 9.17447 8.21453 7.42703 6.80295 6.34245 6.04918 5.92382 5.97634 6.21894 6.66038 7.30908 8.17437 9.28609 10.668 12.2713 14.0716 16.2283 19.2165 24.1771 34.3521 63.1559 182.501 1057.54 1051.5 183.853 63.7514 33.2625 24.0799 20.5592 18.5257 16.7832 15.0145 13.2462 11.6103 10.2238 9.0897 8.15588 7.39144 6.78567 6.3379 6.05189 5.9295 5.98233 6.22492 6.66882 7.32504 8.20471 9.34564 10.7603 12.3534 14.0712 16.0578 18.7896 23.4427 33.3662 62.0631 181.578 1057.38 1051.5 183.765 63.9387 33.6498 24.484 20.826 18.5765 16.6277 14.7291 12.9296 11.3417 10.0211 8.93762 8.045 7.3162 6.73979 6.31503 6.04655 5.93797 6.0028 6.25784 6.71784 7.39778 8.31468 9.51464 10.9923 12.6071 14.2783 16.128 18.6213 22.9414 32.4999 60.9486 180.647 1057.32 1051.49 183.664 64.1278 34.0914 24.8732 20.97 18.4414 16.2834 14.2927 12.5089 11.0027 9.7643 8.74237 7.90051 7.21458 6.67433 6.27999 6.03761 5.95313 6.04207 6.32306 6.81316 7.53059 8.50903 9.7994 11.3621 13.0274 14.6852 16.4276 18.7018 22.6831 31.8061 59.8889 179.773 1057.39 1051.48 183.604 64.3667 34.5722 25.1979 20.9585 18.1275 15.7912 13.7624 12.0439 10.6347 9.47941 8.5241 7.73744 7.09815 6.59813 6.23944 6.03027 5.97944 6.10492 6.42709 6.96485 7.73898 8.79822 10.1991 11.8711 13.6132 15.2851 16.9461 19.0203 22.6692 31.3258 58.9712 179.051 1057.6 1051.47 183.583 64.6407 35.0229 25.3864 20.7634 17.654 15.204 13.1971 11.5738 10.264 9.18932 8.30107 7.56946 6.97691 6.51854 6.19913 6.02957 6.02189 6.19694 6.57693 7.18222 8.03595 9.19653 10.7229 12.5237 14.3635 16.0727 17.6752 19.5682 22.901 31.0991 58.3064 178.631 1057.97 1051.46 183.575 64.89 35.3437 25.3614 20.3662 17.0532 14.5727 12.6425 11.1242 9.907 8.90955 8.08479 7.40522 6.85759 6.44107 6.16404 6.04048 6.08589 6.32437 6.78002 7.47471 8.43312 9.71515 11.3796 13.3221 15.2735 17.0378 18.6025 20.3353 23.3813 31.1729 58.0446 178.735 1058.55 1051.45 183.531 65.0243 35.4287 25.0693 19.7819 16.3761 13.9444 12.122 10.7107 9.58109 8.65438 7.88572 7.25207 6.74556 6.37021 6.13855 6.06777 6.17684 6.49327 7.04244 7.84634 8.92988 10.3504 12.1668 14.2569 16.3304 18.1635 19.7073 21.3032 24.1065 31.5941 58.37 179.63 1059.35 1051.44 183.396 64.9489 35.2049 24.5125 19.0668 15.682 13.3592 11.6602 10.3522 9.30178 8.43438 7.71105 7.11517 6.64497 6.30958 6.12574 6.11362 6.29538 6.70195 7.35901 8.28646 9.50369 11.0778 13.0653 15.2987 17.499 19.4122 20.9502 22.4367 25.0546 32.3802 59.4413 181.536 1060.36 1051.43 183.105 64.5866 34.6581 23.7523 18.2966 15.0297 12.8571 11.2851 10.0685 9.08139 8.25752 7.56656 6.99923 6.55972 6.26182 6.12608 6.17495 6.43324 6.93481 7.70454 8.75795 10.1125 11.8517 14.0065 16.3721 18.7026 20.7104 22.2578 23.6654 26.1668 33.4911 61.2187 184.228 1061.46 1051.42 182.632 63.9305 33.8564 22.9003 17.5645 14.4795 12.4744 11.0215 9.87408 8.92733 8.12999 7.45839 6.90992 6.49385 6.22782 6.13527 6.24003 6.56864 7.15724 8.02988 9.19745 10.6857 12.577 14.872 17.3727 19.8348 21.9495 23.5142 24.8516 27.2759 34.7836 63.6154 187.236 1062.47 1051.42 181.994 63.0484 32.9264 22.0784 16.9513 14.0741 12.2287 10.8768 9.77672 8.84798 8.05941 7.39351 6.85278 6.45003 6.20538 6.14383 6.28952 6.66956 7.32147 8.26939 9.52594 11.1162 13.124 15.5494 18.1798 20.7707 22.9995 24.589 25.8396 28.1146 35.6693 65.2891 189.232 1063.21 1051.42 181.277 62.0714 32.0106 21.3838 16.5044 13.8307 12.124 10.8499 9.77945 8.84833 8.05049 7.3783 6.83311 6.43033 6.19155 6.14198 6.30489 6.70668 7.38499 8.36565 9.66542 11.3103 13.3919 15.9191 18.6679 21.387 23.7401 25.3823 26.5641 28.6597 36.1385 65.637 183.722 1063.56 1051.43 180.589 61.1515 31.2305 20.8747 16.2398 13.7464 12.1537 10.9364 9.87842 8.93101 8.11096 7.41909 6.85544 6.43723 6.18637 6.12674 6.27959 6.66892 7.33085 8.29355 9.58034 11.2189 13.3121 15.8924 18.736 21.5831 24.0818 25.8389 27.0243 28.9887 36.4128 65.9918 182.818 1063.54 1051.44 180.064 60.4197 30.6544 20.5655 16.1484 13.8055 12.3037 11.1275 10.071 9.09691 8.24277 7.51837 6.92283 6.47456 6.19485 6.10523 6.22393 6.57096 7.17836 8.07511 9.29131 10.8584 12.8882 15.4475 18.3405 21.3029 23.9709 25.9324 27.2565 29.2054 36.5394 65.9656 182.184 1063.23 1051.45 179.764 59.934 30.2951 20.4375 16.2058 13.9849 12.5557 11.4119 10.3516 9.34418 8.44424 7.67473 7.03609 6.54595 6.22429 6.09006 6.15822 6.44374 6.97236 7.76992 8.86829 10.308 12.2001 14.6416 17.5068 20.5423 23.3905 25.6528 27.2926 29.4044 36.6381 65.6572 181.4 1062.75 1051.46 179.713 59.7101 30.1368 20.4609 16.3794 14.2598 12.8931 11.7769 10.7091 9.66353 8.70732 7.88223 7.1927 6.65219 6.27981 6.09241 6.10203 6.31857 6.76075 7.44856 8.40981 9.68679 11.3804 13.6117 16.3436 19.3675 22.3705 24.9971 27.1197 29.6067 36.7994 65.2586 180.646 1062.18 1051.48 179.886 59.7209 30.1437 20.6006 16.6399 14.6063 13.295 12.2035 11.1262 10.0383 9.01856 8.13093 7.38476 6.78859 6.36092 6.11709 6.0667 6.21517 6.57494 7.15965 7.99014 9.10277 10.5774 12.5418 15.0412 17.9437 21.0209 23.9897 26.6876 29.7737 37.1312 64.945 179.939 1061.6 1051.5 180.236 59.9201 30.2742 20.8228 16.9612 15.0022 13.7405 12.6708 11.5821 10.4487 9.36042 8.40569 7.59984 6.94585 6.46189 6.16227 6.05473 6.14083 6.42785 6.92385 7.64272 8.6123 9.88805 11.5854 13.8026 16.4926 19.5258 22.7164 25.944 29.7597 37.6769 65.5688 181.384 1061.03 1051.51 180.695 60.2503 30.4866 21.0964 17.3195 15.427 14.2091 13.1562 12.0529 10.872 9.7125 8.68885 7.82282 7.1116 6.57326 6.2214 6.0623 6.09427 6.32045 6.74422 7.37307 8.22651 9.34433 10.8172 12.7575 15.1945 18.0805 21.3343 24.9307 29.398 37.9448 66.1639 186.019 1060.51 1051.52 181.2 60.6559 30.744 21.3948 17.6943 15.8627 14.6821 13.6384 12.5146 11.284 10.0539 8.96217 8.03767 7.27237 6.68414 6.28585 6.0825 6.06968 6.24731 6.61518 7.17557 7.94064 8.93924 10.2384 11.9461 14.1375 16.8227 20.0118 23.7954 28.7504 37.8622 66.0879 185.807 1060.05 1051.53 181.709 61.0993 31.023 21.7001 18.0702 16.2945 15.1438 14.0999 12.947 11.664 10.3674 9.21023 8.23011 7.4168 6.78536 6.34781 6.10822 6.05996 6.20043 6.52663 7.03685 7.73773 8.65001 9.82216 11.3513 13.3327 15.8108 18.8632 22.687 27.9524 37.5432 65.8421 185.315 1059.67 1051.54 182.199 61.5575 31.3116 22.0028 18.4374 16.7115 15.582 14.5276 13.3367 11.9976 10.6383 9.42163 8.39244 7.53858 6.87113 6.40177 6.13389 6.05902 6.17242 6.46884 6.94342 7.5987 8.44971 9.53225 10.9313 12.7457 15.0381 17.9286 21.6973 27.1191 37.0689 65.4946 184.805 1059.35 1051.54 182.649 62.0108 31.6033 22.2981 18.7895 17.1048 15.9862 14.9106 13.6738 12.2758 10.8569 9.58925 8.51996 7.63313 6.93732 6.44389 6.1556 6.06242 6.15785 6.43474 6.88568 7.50997 8.31842 9.33931 10.647 12.3346 14.4711 17.2009 20.8624 26.3258 36.5102 65.0667 184.297 1059.1 1051.55 183.032 62.4371 31.8932 22.5861 19.1249 17.4702 16.3497 15.2411 13.9508 12.4922 11.0172 9.70709 8.60708 7.69548 6.97966 6.47047 6.16995 6.06671 6.1527 6.41922 6.85685 7.46234 8.24309 9.22271 10.4681 12.0631 14.0736 16.6552 20.1859 25.6129 35.9219 64.5798 183.793 1058.9 1051.55 183.318 62.8044 32.1685 22.8627 19.4388 17.7996 16.6616 15.5076 14.1574 12.6381 11.1123 9.7675 8.64573 7.71892 6.99278 6.47743 6.17385 6.06937 6.15458 6.4194 6.85292 7.44997 8.21533 9.17008 10.3756 11.9042 13.8136 16.2634 19.6569 24.9994 35.3474 64.0689 183.314 1058.75 1051.54 183.49 63.088 32.4173 23.1233 19.7268 18.0874 16.9157 15.7036 14.2875 12.7082 11.1368 9.76457 8.62942 7.69763 6.97225 6.46185 6.16566 6.06967 6.16312 6.43477 6.87269 7.47051 8.23134 9.17661 10.3607 11.8395 13.6645 15.9978 19.2574 24.4891 34.814 63.563 182.875 1058.64 1051.54 183.548 63.2752 32.6331 23.3692 19.9926 18.3373 17.1127 15.8249 14.3317 12.6905 11.0795 9.69029 8.55312 7.6283 6.91647 6.42361 6.14641 6.0694 6.18067 6.4679 6.91848 7.52523 8.2901 9.23575 10.4104 11.8535 13.6097 15.8415 18.9754 24.0839 34.3419 63.0838 182.488 1058.58 1051.54 183.522 63.3776 32.8217 23.6091 20.2432 18.5503 17.2457 15.858 14.2734 12.5705 10.9342 9.54297 8.41701 7.51389 6.83003 6.36772 6.12072 6.07242 6.21022 6.52106 6.99202 7.61541 8.39223 9.34687 10.5215 11.9388 13.6371 15.7791 18.7967 23.7803 33.9473 62.6622 182.177 1058.55 1051.54 183.437 63.4178 32.9973 23.8531 20.4798 18.7159 17.2985 15.7893 14.1061 12.3494 10.7086 9.33504 8.23607 7.36949 6.72599 6.30435 6.09589 6.0835 6.25446 6.59539 7.09333 7.74025 8.53639 9.50806 10.6907 12.0892 13.7362 15.796 18.7054 23.5669 33.6313 62.3088 181.945 1058.57 1051.53 183.305 63.4133 33.1694 24.0962 20.6856 18.8136 17.2543 15.6102 13.832 12.0391 10.4196 9.08707 8.0301 7.21075 6.61654 6.24235 6.07786 6.10605 6.31471 6.69048 7.22071 7.89723 8.7195 9.71546 10.912 12.2955 13.8953 15.8797 18.6903 23.4381 33.3984 62.0356 181.802 1058.63 1051.53 183.171 63.4052 33.3536 24.331 20.8438 18.8284 17.1076 15.3292 13.4738 11.6722 10.1012 8.82831 7.82347 7.05667 6.51481 6.19007 6.07115 6.14152 6.38982 6.80313 7.3695 8.08129 8.93886 9.96886 11.1831 12.551 14.103 16.0131 18.7283 23.3671 33.2249 61.8208 181.712 1058.72 1051.53 183.073 63.4315 33.5622 24.5492 20.9416 18.7561 16.8702 14.9747 13.072 11.2926 9.78945 8.58422 7.63433 6.91999 6.42886 6.15188 6.07731 6.18924 6.47741 6.92942 7.53403 8.28428 9.18707 10.2626 11.4975 12.8517 14.3576 16.1945 18.8152 23.345 33.0973 61.6515 181.67 1058.85 1051.52 183.015 63.5038 33.7874 24.7344 20.9728 18.6102 16.5756 14.5909 12.672 10.942 9.51118 8.36785 7.47008 6.80492 6.36075 6.12804 6.09491 6.24624 6.57306 7.06361 7.70753 8.49885 9.45264 10.5817 11.8436 13.1901 14.6562 16.4262 18.9578 23.3809 33.0255 61.5464 181.715 1059 1051.52 182.996 63.6237 34.0251 24.8893 20.9561 18.4252 16.267 14.2212 12.3067 10.6362 9.27153 8.18134 7.33132 6.71048 6.30851 6.11609 6.12127 6.30957 6.67322 7.20115 7.88419 8.7181 9.72635 10.9121 12.2029 13.5459 14.9795 16.691 19.14 23.4569 32.9818 61.4482 181.756 1059.18 1051.51 183.024 63.8076 34.2854 25.0269 20.9107 18.2228 15.9637 13.8787 11.9811 10.3688 9.0625 8.01834 7.21062 6.63001 6.2672 6.11302 6.15526 6.37974 6.77974 7.34285 8.06038 8.94187 10.0109 11.2467 12.5641 13.9091 15.3188 16.9789 19.3488 23.5558 32.9434 61.3252 181.776 1059.37 1051.5 183.073 64.0021 34.5293 25.135 20.8456 18.0219 15.6817 13.5703 11.6923 10.1286 8.86973 7.86565 7.09749 6.55601 6.23211 6.11662 6.19688 6.4589 6.89701 7.49541 8.24426 9.17063 10.2978 11.5804 12.9259 14.2784 15.672 17.2885 19.5842 23.6808 32.9204 61.2008 181.803 1059.57 1051.5 183.05 64.1403 34.7308 25.2124 20.7623 17.812 15.3942 13.2574 11.401 9.87932 8.66347 7.70266 6.97835 6.4802 6.19924 6.12653 6.24901 6.55266 7.03128 7.66459 8.44463 9.4141 10.5954 11.9208 13.2928 14.6546 16.0369 17.6175 19.8488 23.8452 32.9445 61.1309 181.898 1059.78 1051.49 182.957 64.1931 34.8654 25.2369 20.6327 17.56 15.0697 12.9142 11.0866 9.61172 8.44411 7.53248 6.85665 6.40578 6.17151 6.1456 6.3148 6.66537 7.18637 7.85243 8.66619 9.67874 10.9098 12.273 13.6676 15.0374 16.4099 17.9578 20.1291 24.0322 33.0049 61.1227 182.071 1060 1051.49 182.812 64.1775 34.9331 25.1926 20.4359 17.2491 14.7 12.5419 10.7561 9.33696 8.22353 7.36475 6.73981 6.3382 6.15274 6.17629 6.3954 6.79653 7.36168 8.06093 8.9118 9.96923 11.2471 12.6428 14.0554 15.4324 16.7992 18.3228 20.4464 24.2729 33.1443 61.2466 182.414 1060.26 1051.48 182.609 64.0856 34.9143 25.057 20.1586 16.8782 14.2951 12.1573 10.4291 9.07341 8.0169 7.21095 6.6357 6.28205 6.14469 6.21799 6.48823 6.94076 7.5496 8.28333 9.17507 10.2816 11.6065 13.0287 14.4491 15.8244 17.1822 18.6878 20.7804 24.5581 33.3698 61.5166 182.892 1060.55 1051.48 182.397 63.953 34.8207 24.8419 19.823 16.4802 13.8932 11.7979 10.1377 8.84624 7.84244 7.08328 6.55115 6.23919 6.14456 6.2641 6.58516 7.08388 7.72742 8.49899 9.436 10.5993 11.9768 13.4267 14.8529 16.2223 17.5641 19.0457 21.1084 24.85 33.6312 61.8769 183.463 1060.86 1051.48 182.205 63.8062 34.6737 24.5804 19.4737 16.1029 13.5387 11.4993 9.90673 8.67106 7.70955 6.98668 6.48734 6.20681 6.14474 6.30077 6.6642 7.20205 7.87619 8.68408 9.66573 10.8884 12.3263 13.8134 15.2549 16.6258 17.9528 19.4054 21.4316 25.1345 33.8928 62.2505 183.985 1061.18 1051.47 182.074 63.688 34.5193 24.3274 19.1638 15.7894 13.2612 11.281 9.7437 8.54809 7.61712 6.91963 6.44232 6.18225 6.14135 6.32204 6.71621 7.28408 7.98387 8.82372 9.84504 11.124 12.628 14.1638 15.6366 17.0262 18.35 19.7746 21.755 25.4025 34.1166 62.5656 184.425 1061.5 1051.47 182.027 63.6474 34.4163 24.1362 18.9345 15.5668 13.0725 11.14 9.64138 8.47132 7.55966 6.87715 6.41192 6.16237 6.13216 6.32606 6.73878 7.3271 8.04686 8.91253 9.9662 11.2934 12.8627 14.4571 15.9785 17.4087 18.7492 20.1564 22.0881 25.6632 34.3039 62.8085 184.785 1061.78 1051.47 182.029 63.6551 34.3601 24.0136 18.7886 15.4287 12.9578 11.0557 9.5805 8.42521 7.52441 6.84981 6.39011 6.14437 6.11737 6.31569 6.73668 7.3368 8.07085 8.95593 10.0359 11.3979 13.0195 14.6808 16.2661 17.7575 19.1368 20.5433 22.4311 25.9236 34.4648 62.9849 185.076 1062.03 1051.46 182.039 63.6755 34.3326 23.935 18.6887 15.33 12.8727 10.9904 9.53193 8.38801 7.49564 6.82676 6.3703 6.12568 6.0983 6.29598 6.71821 7.32331 8.06618 8.96395 10.0621 11.4482 13.1113 14.8374 16.4941 18.0616 19.5005 20.926 22.7816 26.1917 34.6208 63.1298 185.336 1062.23 1051.46 182.041 63.6887 34.3086 23.8642 18.5951 15.2354 12.7905 10.9265 9.48343 8.35041 7.46622 6.80299 6.34975 6.106 6.07739 6.27231 6.69161 7.29689 8.04424 8.94908 10.0585 11.4602 13.154 14.9348 16.6601 18.3087 19.8225 21.288 23.1294 26.4669 34.7821 63.261 185.571 1062.39 1051.46 182.021 63.6749 34.2615 23.773 18.4861 15.1319 12.7035 10.8577 9.42941 8.30762 7.43229 6.77568 6.32682 6.08518 6.05636 6.24879 6.66377 7.26653 8.0152 8.92264 10.0372 11.4476 13.1621 14.9842 16.7694 18.4943 20.086 21.6051 23.4528 26.7386 34.9559 63.3994 185.79 1062.51 1051.46 181.963 63.6136 34.1702 23.6482 18.3572 15.0169 12.6075 10.7798 9.36663 8.25727 7.39214 6.74362 6.3008 6.06316 6.03615 6.2279 6.6394 7.23908 7.98738 8.89463 10.0098 11.4237 13.1494 14.9959 16.8288 18.6212 20.2876 21.8646 23.7299 26.9825 35.128 63.5556 186.006 1062.59 1051.46 181.86 63.4908 34.0278 23.4946 18.2124 14.8907 12.5022 10.6937 9.29688 8.2013 7.34749 6.70808 6.27242 6.04013 6.01664 6.20974 6.6197 7.21718 7.96475 8.87084 9.98434 11.3988 13.1273 14.9806 16.8444 18.6908 20.4256 22.0654 23.9619 27.1982 35.2903 63.719 186.211 1062.66 1051.46 181.705 63.3119 33.8564 23.3265 18.0585 14.758 12.3926 10.6051 9.22591 8.14482 7.30249 6.67203 6.24329 6.01627 5.99658 6.19184 6.6017 7.19816 7.94527 8.85036 9.9617 11.3756 13.1009 14.9466 16.824 18.7054 20.4949 22.1983 24.144 27.3959 35.4795 63.9591 186.466 1062.72 1051.46 181.548 63.1492 33.6874 23.1575 17.9052 14.6282 12.2879 10.5231 9.16213 8.09486 7.26263 6.63933 6.21552 5.99178 5.97411 6.17026 6.57975 7.17548 7.92228 8.82669 9.9361 11.3488 13.0671 14.8978 16.7751 18.6717 20.495 22.2513 24.2534 27.5446 35.6526 64.2026 186.675 1062.76 1051.46 181.46 63.0078 33.52 22.9938 17.7624 14.5117 12.1982 10.4566 9.11295 8.05724 7.23227 6.61296 6.19072 5.96676 5.94753 6.14122 6.54781 7.14147 7.88736 8.79103 9.89964 11.3091 13.0174 14.8356 16.707 18.6038 20.4394 22.2298 24.2828 27.6242 35.776 64.3938 186.797 1062.78 1051.46 181.38 62.8689 33.3574 22.8456 17.6414 14.4187 12.1317 10.412 9.08289 8.03515 7.21366 6.59444 6.1697 5.94121 5.91585 6.10229 6.50154 7.0899 7.83264 8.73332 9.83883 11.2443 12.9477 14.7592 16.6262 18.5173 20.3509 22.1564 24.246 27.6366 35.8422 64.5208 186.829 1062.79 1051.46 181.328 62.7602 33.2237 22.7321 17.5562 14.3589 12.0945 10.3925 9.07337 8.02916 7.20703 6.58396 6.15274 5.91545 5.87927 6.05326 6.43977 7.01851 7.75498 8.64913 9.74731 11.1465 12.8496 14.6622 16.5327 18.4228 20.2523 22.0622 24.1734 27.6021 35.8584 64.584 186.789 1062.79 1051.47 181.314 62.6973 33.133 22.6623 17.5115 14.3339 12.0857 10.3952 9.08097 8.03609 7.20984 6.57982 6.13907 5.88972 5.83904 5.99622 6.36492 6.9296 7.65653 8.54028 9.62667 11.0142 12.7165 14.5371 16.4212 18.3217 20.1562 21.9724 24.0981 27.5531 35.8483 64.6029 186.71 1062.76 1051.47 181.34 62.6835 33.088 22.634 17.5015 14.3361 12.0973 10.4123 9.09855 8.05006 7.21759 6.57893 6.12709 5.86401 5.79676 5.93436 6.28144 6.82819 7.54264 8.4124 9.48334 10.8516 12.5449 14.3784 16.2843 18.2067 20.0598 21.8931 24.0363 27.5119 35.8337 64.6021 186.646 1062.73 1051.47 181.401 62.7144 33.082 22.6364 17.5142 14.3546 12.1205 10.436 9.11886 8.0651 7.22559 6.57793 6.11484 5.83786 5.75368 5.8707 6.19384 6.71939 7.41841 8.27057 9.32173 10.665 12.3423 14.1896 16.1209 18.0708 19.9543 21.818 23.9872 27.4834 35.8198 64.5764 186.556 1062.67 1051.47 181.475 62.7657 33.095 22.6513 17.5335 14.3751 12.1418 10.4556 9.13427 8.07521 7.22913 6.57332 6.10009 5.81052 5.71079 5.80844 6.10774 6.61046 7.29197 8.12411 9.15225 10.4663 12.1199 13.973 15.9267 17.9068 19.8292 21.7355 23.9416 27.4634 35.8084 64.529 186.431 1062.61 1051.47 181.559 62.8324 33.1185 22.668 17.5489 14.3884 12.1536 10.4648 9.13968 8.07628 7.22499 6.56266 6.08119 5.78126 5.66861 5.74979 6.02779 6.50805 7.17095 7.98233 8.98578 10.2682 11.8912 13.7383 15.7061 17.7131 19.6777 21.635 23.8884 27.4441 35.8011 64.4863 186.333 1062.54 1051.47 181.632 62.8925 33.1342 22.6715 17.549 14.3859 12.1495 10.4586 9.13118 8.0652 7.21062 6.54387 6.05657 5.74906 5.62681 5.69559 5.95696 6.41729 7.06155 7.85348 8.83257 10.0834 11.671 13.499 15.4682 17.493 19.4967 21.509 23.8181 27.4161 35.7899 64.4385 186.239 1062.47 1051.48 181.686 62.9315 33.1289 22.6513 17.5258 14.3621 12.1256 10.4347 9.10736 8.04109 7.18539 6.51646 6.02574 5.71346 5.58496 5.64552 5.89567 6.34045 6.96757 7.7428 8.69979 9.9212 11.4723 13.2712 15.2269 17.2546 19.2865 21.3506 23.7202 27.37 35.7702 64.3901 186.149 1062.42 1051.48 181.721 62.9474 33.0991 22.6055 17.4792 14.3182 12.0844 10.396 9.07111 8.0065 7.15141 6.48195 5.98967 5.67486 5.54282 5.5988 5.84225 6.27687 6.89136 7.65262 8.59107 9.78668 11.304 13.0698 14.9982 17.0119 19.055 21.1595 23.5887 27.2987 35.7405 64.3525 186.076 1062.38 1051.48 181.731 62.9317 33.0388 22.5324 17.4103 14.2572 12.0302 10.3469 9.02636 7.9649 7.11153 6.44253 5.94974 5.63372 5.49997 5.55395 5.7943 6.22367 6.83028 7.581 8.50525 9.68039 11.1688 12.9012 14.7948 16.7798 18.8146 20.9411 23.4209 27.1957 35.6971 64.3309 186.02 1062.36 1051.48 181.731 62.9 32.9601 22.4436 17.3306 14.1897 11.9731 10.2965 8.98054 7.92238 7.07059 6.40183 5.90837 5.59124 5.45628 5.50942 5.74879 6.17641 6.7789 7.52211 8.43619 9.59622 11.0633 12.7682 14.6265 16.5743 18.5839 20.7116 23.2258 27.0618 35.6367 64.322 185.974 1062.37 1051.48 181.722 62.8574 32.8713 22.3505 17.2516 14.1255 11.9204 10.2509 8.93905 7.88317 7.03185 6.36229 5.86727 5.54829 5.4117 5.46402 5.70312 6.13084 6.73152 7.46923 8.37592 9.52474 10.9781 12.665 14.4933 16.4029 18.3772 20.4875 23.0161 26.902 35.556 64.3159 185.928 1062.4 1051.48 181.722 62.8225 32.788 22.2652 17.1827 14.0716 11.8771 10.2136 8.90455 7.84933 6.99705 6.3254 5.82764 5.50573 5.36654 5.41738 5.65597 6.0842 6.68396 7.41714 8.31779 9.45728 10.9026 12.5821 14.3904 16.2689 18.2077 20.2898 22.8134 26.7294 35.4536 64.2945 185.867 1062.44 1051.48 181.734 62.8042 32.7208 22.1972 17.1311 14.0332 11.8468 10.1868 8.87828 7.82175 6.96695 6.29193 5.79018 5.46406 5.32092 5.36898 5.60638 6.03383 6.63189 7.36049 8.25512 9.38531 10.8255 12.5068 14.3064 16.1663 18.0785 20.1323 22.6388 26.5648 35.3415 64.2578 185.796 1062.47 1051.48 181.76 62.809 32.6764 22.1498 17.0968 14.008 11.8259 10.1666 8.85662 7.79754 6.93949 6.26052 5.75422 5.42323 5.27539 5.31994 5.55551 5.98081 6.5756 7.29911 8.18683 9.30636 10.7411 12.4293 14.23 16.0854 17.9861 20.021 22.5078 26.4268 35.2296 64.2 185.714 1062.51 1051.48 181.798 62.8327 32.651 22.1169 17.0723 13.9885 11.8078 10.1474 8.83519 7.77352 6.91246 6.2298 5.7191 5.38329 5.2308 5.27192 5.50559 5.92814 6.51871 7.2363 8.11571 9.2225 10.6487 12.3429 14.1491 16.0107 17.915 19.9456 22.419 26.3235 35.131 64.1356 185.644 1062.55 1051.48 181.839 62.8674 32.6366 22.0885 17.0465 13.9648 11.7844 10.1228 8.8091 7.74603 6.88312 6.19773 5.6834 5.3435 5.18726 5.2262 5.45965 5.88084 6.46776 7.17948 8.05019 9.14348 10.5558 12.2488 14.0605 15.9336 17.8531 19.8943 22.3656 26.2553 35.052 64.0726 185.592 1062.59 1051.48 181.878 62.9009 32.6196 22.051 17.0082 13.9286 11.7503 10.0895 8.77627 7.71374 6.85048 6.16344 5.6463 5.30316 5.14433 5.18286 5.41961 5.8434 6.42717 7.13411 7.99663 9.07682 10.4696 12.1497 13.9614 15.8436 17.782 19.8442 22.3258 26.2081 34.9899 64.0185 185.562 1062.65 1051.48 181.904 62.9199 32.5863 21.993 16.949 13.8748 11.7031 10.0468 8.73687 7.677 6.81475 6.1269 5.60766 5.26228 5.10269 5.14384 5.38851 5.81889 6.40092 7.10533 7.96115 9.02896 10.4016 12.0629 13.8647 15.7468 17.6993 19.7851 22.2865 26.1716 34.9436 63.9818 185.555 1062.71 1051.48 181.917 62.9196 32.5308 21.9115 16.8701 13.8078 11.6486 10.0007 8.69631 7.64017 6.77908 6.09013 5.56852 5.22113 5.06198 5.10824 5.36446 5.80459 6.38748 7.09269 7.94455 9.00188 10.3553 11.9942 13.7761 15.6446 17.5981 19.7005 22.2243 26.1235 34.9016 63.965 185.568 1062.8 1051.48 181.917 62.8991 32.4522 21.8097 16.7784 13.7359 11.5949 9.95834 8.66023 7.60728 6.74604 6.05447 5.52918 5.17902 5.02039 5.07304 5.34366 5.79681 6.38408 7.09477 7.94747 8.99868 10.3365 11.9541 13.7119 15.5565 17.4965 19.6022 22.1427 26.0612 34.8602 63.9663 185.592 1062.89 1051.47 181.92 62.8743 32.3661 21.7055 16.6935 13.6774 11.5574 9.93179 8.63775 7.58484 6.72016 6.02285 5.49107 5.13567 4.97556 5.03334 5.31845 5.78632 6.38124 7.10164 7.96017 9.00983 10.335 11.9338 13.6677 15.4819 17.3945 19.4856 22.0295 25.9676 34.806 63.98 185.617 1063 1051.47 181.938 62.8651 32.2929 21.6189 16.6329 13.6455 11.5445 9.92628 8.63175 7.57419 6.70194 5.99539 5.45398 5.09031 4.92572 4.98588 5.28376 5.7671 6.37295 7.10732 7.97756 9.03155 10.3471 11.9324 13.6512 15.4399 17.3222 19.3864 21.9163 25.8601 34.7354 63.9823 185.618 1063.12 1051.47 181.989 62.8963 32.2579 21.5723 16.6136 13.6514 11.5627 9.9447 8.64334 7.57574 6.69181 5.97267 5.41843 5.04298 4.87005 4.92925 5.23564 5.73067 6.35011 7.10047 7.98567 9.04691 10.3518 11.924 13.6356 15.4071 17.2635 19.2966 21.7993 25.7337 34.6407 63.9624 185.59 1063.25 1051.47 182.064 62.968 32.266 21.5662 16.6296 13.6839 11.5984 9.97385 8.66098 7.58034 6.68304 5.95016 5.38177 4.99273 4.80955 4.8669 5.17833 5.68029 6.31659 7.08502 7.98796 9.05909 10.3523 11.9119 13.6256 15.3942 17.2407 19.2532 21.7253 25.6295 34.5348 63.9014 185.527 1063.37 1051.47 182.14 63.0592 32.3031 21.585 16.6614 13.7228 11.6336 9.99898 8.67361 7.58036 6.67066 5.92504 5.34278 4.93935 4.7445 4.79807 5.11191 5.61968 6.2734 7.05955 7.9788 9.05723 10.3345 11.8759 13.589 15.3583 17.2047 19.2091 21.6591 25.5326 34.4282 63.8332 185.475 1063.52 1051.47 182.183 63.1302 32.3323 21.5892 16.6668 13.7294 11.6373 9.99698 8.66427 7.56296 6.64434 5.89097 5.29887 4.88237 4.67649 4.72715 5.04458 5.56062 6.23537 7.04187 7.97824 9.06381 10.326 11.8489 13.5601 15.3329 17.1887 19.1997 21.6383 25.4764 34.337 63.7608 185.454 1063.62 1051.47 182.184 63.156 32.3228 21.5479 16.621 13.6897 11.6063 9.97115 8.63798 7.53115 6.60382 5.85073 5.25745 4.82759 4.60769 4.65306 4.97372 5.50041 6.19791 7.02572 7.97752 9.06734 10.3147 11.8153 13.5143 15.2813 17.1397 19.1595 21.601 25.4264 34.2766 63.7426 185.504 1063.82 1051.47 182.177 63.1541 32.2725 21.4543 16.5246 13.6139 11.5559 9.93723 8.60526 7.48699 6.55088 5.8037 5.21692 4.77477 4.53773 4.57597 4.90046 5.44158 6.16454 7.01738 7.98787 9.08661 10.3295 11.8155 13.5077 15.2719 17.1286 19.151 21.592 25.4064 34.2561 63.7524 185.04 1063.89 1051.46 182.229 63.19 32.2307 21.3591 16.4391 13.5667 11.543 9.93795 8.59523 7.44958 6.503 5.75738 5.16979 4.7155 4.46124 4.48768 4.80924 5.36049 6.10274 6.97656 7.96301 9.07182 10.3181 11.7954 13.4898 15.2594 17.1121 19.1282 21.5656 25.3779 34.2105 63.4963 182.88 1064.15 1051.46 182.399 63.3473 32.2796 21.3407 16.4353 13.6 11.5937 9.97563 8.59696 7.4106 6.4481 5.69475 5.09837 4.6409 4.38 4.3944 4.7051 5.2572 6.00762 6.89393 7.89133 9.0121 10.274 11.7523 13.4736 15.2823 17.1472 19.1486 21.5511 25.3157 34.0796 63.1391 181.113 1064.18 1051.46 182.651 63.631 32.456 21.4418 16.5414 13.7183 11.6904 10.0212 8.57666 7.34539 6.36839 5.6024 4.99833 4.54892 4.29331 4.29865 4.5902 5.12768 5.86546 6.74316 7.73255 8.85129 10.1247 11.6028 13.3631 15.2436 17.1524 19.1594 21.5297 25.2346 33.9151 62.7773 179.694 1064.51 1051.46 182.786 63.8541 32.632 21.5573 16.6391 13.7832 11.6866 9.93787 8.42226 7.16694 6.19894 5.43833 4.84668 4.42191 4.19528 4.21687 4.50357 5.0231 5.73239 6.58114 7.54772 8.64703 9.91205 11.3871 13.1886 15.1598 17.1331 19.1449 21.4543 25.0587 33.6492 62.4227 178.883 1064.57 1051.46 182.675 63.8393 32.6427 21.5329 16.5604 13.6196 11.4242 9.5998 8.05426 6.83009 5.90982 5.19135 4.64508 4.27104 4.10089 4.16558 4.47047 4.97909 5.65131 6.45305 7.37448 8.43276 9.66651 11.1255 12.9435 15.0052 17.0843 19.1588 21.457 24.9709 33.4362 62.1 178.307 1064.92 1051.46 182.369 63.5696 32.4082 21.2415 16.1501 13.0802 10.7965 8.94531 7.46361 6.36442 5.5381 4.90575 4.44381 4.1553 4.05978 4.18183 4.52237 5.03872 5.68768 6.44723 7.3186 8.32784 9.51898 10.9447 12.7355 14.8055 16.9235 19.0291 21.3166 24.7767 33.2138 61.9309 178.126 1065.11 1051.46 181.99 63.1286 31.9304 20.6439 15.398 12.2273 9.94054 8.18136 6.86387 5.93201 5.2387 4.72291 4.36321 4.15694 4.1124 4.26382 4.62182 5.15035 5.80435 6.55544 7.40204 8.3738 9.52891 10.9357 12.7207 14.7948 16.9568 19.1293 21.4438 24.8353 33.1419 61.8115 178.057 1065.5 1051.46 181.626 62.5869 31.2448 19.7929 14.433 11.2712 9.10771 7.54713 6.45945 5.6972 5.1439 4.74439 4.4678 4.2762 4.21614 4.33892 4.68571 5.23163 5.92424 6.71592 7.58657 8.5527 9.67759 11.0519 12.7901 14.7531 16.8122 18.9373 21.2683 24.7309 33.1767 62.0371 178.381 1065.61 1051.46 181.51 62.245 30.6686 19.0507 13.6751 10.6458 8.68985 7.33358 6.42529 5.7938 5.33795 4.99731 4.70051 4.45893 4.31826 4.34575 4.62418 5.16048 5.90734 6.79608 7.77752 8.84435 10.0442 11.4794 13.2744 15.2409 17.2711 19.3465 21.5869 24.9061 33.2684 62.3333 178.917 1066.3 1051.46 182.283 62.9353 31.033 19.1511 13.7082 10.7597 8.93387 7.68056 6.83028 6.23505 5.78535 5.39075 5.02397 4.70408 4.46132 4.34559 4.43265 4.82145 5.52044 6.46655 7.57216 8.77747 10.083 11.5686 13.392 15.3335 17.2792 19.287 21.5937 25.1729 33.9236 63.2144 179.453 1065.91 1051.46 183.644 64.6583 32.6074 20.4215 14.7493 11.6728 9.78539 8.51333 7.59771 6.91733 6.34788 5.84294 5.39271 5.00119 4.6787 4.44257 4.33355 4.43789 4.89553 5.74964 6.93973 8.35802 9.92964 11.6465 13.6359 15.8725 17.9996 19.9428 21.9187 25.0206 33.4309 62.6768 178.885 1066.85 1051.46 183.912 65.3759 33.5323 21.2985 15.4188 12.0761 10.0812 8.78684 7.86798 7.18601 6.5769 6.0267 5.53715 5.11851 4.78049 4.52516 4.34915 4.26456 4.33325 4.7321 5.5826 6.87777 8.49726 10.3049 12.2616 14.5834 17.0083 19.3503 21.7452 25.1124 33.4525 62.3093 178.357 1066.2 1051.46 175.811 62.9264 32.2574 20.3496 14.6636 11.5783 9.71384 8.46503 7.53923 6.79002 6.15512 5.60933 5.14765 4.77222 4.48544 4.29035 4.19437 4.21357 4.3746 4.76055 5.46733 6.58388 8.13653 10.0506 12.1917 14.5978 17.1012 19.3398 21.5252 24.7285 33.1274 62.3012 178.549 1066.83 1051.46 176.203 63.2845 32.527 20.6219 14.9271 11.7692 9.79677 8.43013 7.39927 6.57716 5.90674 5.36317 4.93158 4.59673 4.34379 4.16502 4.06432 4.05632 4.16294 4.41615 4.87943 5.64102 6.79304 8.39958 10.4292 12.7776 15.5382 18.1636 20.7175 24.1772 32.573 61.6104 178.243 1066.5 1051.47 177.131 64.4313 33.6074 21.502 15.5476 12.127 9.9281 8.39773 7.27722 6.43338 5.78855 5.29273 4.91316 4.62816 4.42471 4.30145 4.27179 4.36105 4.62115 5.0842 5.77723 6.73236 7.99567 9.63937 11.7197 14.2933 17.025 19.4953 21.9312 25.5461 34.6659 64.522 180.405 1067.29 1051.47 177.099 64.3135 33.3763 21.171 15.1587 11.7341 9.58379 8.14022 7.11968 6.36271 5.77765 5.31879 4.96866 4.71841 4.55533 4.46307 4.42983 4.45761 4.55973 4.8073 5.25971 5.97626 7.00309 8.38007 10.136 12.3475 14.7921 17.0457 19.1667 22.1809 30.1744 58.5583 174.865 1067.02 1051.48 177.285 64.4063 33.372 21.1421 15.1868 11.884 9.89565 8.63081 7.78991 7.20414 6.77093 6.42518 6.12604 5.85053 5.59042 5.35094 5.15176 5.0367 5.03472 5.12359 5.33342 5.83422 6.8227 8.43854 10.6743 13.4283 16.7747 19.8246 22.392 25.4193 33.5638 62.9994 179.719 1068.06 1051.49 177.662 64.7802 33.4735 21.0138 14.9831 11.7454 9.89879 8.78808 8.07304 7.56982 7.17985 6.85331 6.5685 6.31895 6.10554 5.93391 5.81158 5.76875 5.7712 5.77375 5.77419 5.86673 6.23406 7.19369 8.89746 11.3214 14.2644 16.9429 19.5625 23.2148 31.4994 59.6589 176.4 1068.17 1051.53 182.028 67.3499 34.3507 21.1825 15.1747 12.2707 10.7775 9.91714 9.32778 8.84202 8.3851 7.93077 7.47588 7.02279 6.57116 6.13321 5.72466 5.3432 4.98681 4.66123 4.34835 4.06611 3.82269 3.85054 4.63231 6.48112 9.51587 13.2361 15.687 18.2911 28.3682 63.7304 186.296 1069.38 1051.6 171.651 54.5511 24.4684 15.8285 13.8065 13.5379 13.472 13.257 12.8785 12.3654 11.7428 11.0619 10.3907 9.76939 9.2361 8.83411 8.60781 8.60044 8.85984 9.4019 10.1917 11.2913 12.7228 14.4895 16.6734 19.3676 22.6886 26.9011 32.5809 41.4872 57.868 93.6908 206.427 1070.82 537.569 23.8542 24.0122 24.0837 24.114 24.1299 24.1386 24.1412 24.1385 24.1313 24.1205 24.1065 24.0901 24.0717 24.0521 24.0319 24.0118 23.9923 23.9741 23.9577 23.943 23.9294 23.9176 23.907 23.8977 23.8894 23.8817 23.8746 23.8683 23.8645 23.8669 23.8802 23.9075 23.9488 550.346 537.523 23.9841 24.0947 24.0688 24.0257 23.9964 23.9776 23.9642 23.9531 23.9441 23.9368 23.9311 23.927 23.9246 23.9239 23.9249 23.9275 23.9316 23.9373 23.9445 23.953 23.9628 23.9736 23.9854 23.9981 24.0115 24.0259 24.0417 24.06 24.0829 24.1114 24.1328 24.0938 23.8883 533.535 1051.42 168.267 49.6175 22.563 14.1766 10.4443 8.25217 6.76782 5.70826 4.92697 4.34053 3.89667 3.56245 3.31723 3.14797 3.04649 3.00783 3.02932 3.11023 3.25164 3.45659 3.73053 4.082 4.52385 5.07471 5.76102 6.62037 7.71258 9.15555 11.2534 14.9404 23.6249 51.8218 170.497 1045.38 1051.44 176.889 55.9521 25.4603 14.9851 10.2914 7.71431 6.13271 5.12437 4.46375 4.01299 3.6999 3.48546 3.34483 3.26169 3.22531 3.22898 3.26903 3.34434 3.45606 3.60767 3.8054 4.05892 4.38274 4.79866 5.34552 6.08574 7.10831 8.58346 10.9315 15.3507 25.7176 56.4816 176.673 1046.46 1051.47 179.545 58.888 28.0086 17.0833 12.0096 9.12683 7.28513 6.05535 5.231 4.6602 4.25037 3.95639 3.75042 3.61501 3.53922 3.51644 3.54313 3.61814 3.74245 3.9192 4.15433 4.45748 4.84378 5.33687 5.98077 6.84387 8.01701 9.67371 12.245 16.9486 27.6446 58.6223 178.654 1047.75 1051.49 180.236 59.9054 29.2622 18.3872 13.2393 10.2375 8.25895 6.88854 5.93779 5.26399 4.76922 4.40357 4.13798 3.95438 3.84156 3.79277 3.8044 3.87512 4.00567 4.19883 4.46002 4.79834 5.22849 5.77403 6.48004 7.41581 8.67064 10.4161 13.0792 17.8622 28.5505 59.3132 179.123 1048.62 1051.51 181.244 60.9432 30.4118 19.676 14.541 11.4596 9.34808 7.81904 6.70896 5.90469 5.30757 4.85707 4.5217 4.28192 4.12571 4.04596 4.03896 4.10336 4.24013 4.45212 4.74491 5.12802 5.61697 6.23693 7.03805 8.09144 9.47628 11.351 14.1235 18.9518 29.5566 60.1992 180.053 1049.54 1051.53 181.546 61.3151 31.0196 20.4949 15.4406 12.3536 10.185 8.56703 7.35352 6.45632 5.78169 5.26393 4.87099 4.58312 4.3884 4.28001 4.25454 4.31071 4.44984 4.67469 4.99061 5.40681 5.93856 6.611 7.47596 8.60434 10.0691 12.0202 14.8515 19.6818 30.1506 60.5405 180.348 1050.23 1051.54 182.082 61.814 31.6051 21.2526 16.295 13.2275 11.02 9.32099 8.00304 7.00831 6.25208 5.6637 5.21021 4.8716 4.63599 4.49688 4.45137 4.49809 4.63922 4.87785 5.21957 5.67384 6.25638 6.99316 7.93993 9.16652 10.732 12.7709 15.6558 20.4682 30.8078 61.0631 180.936 1050.92 1051.55 182.248 61.9828 31.9257 21.7598 16.9104 13.885 11.6719 9.93292 8.55155 7.48245 6.65943 6.01493 5.51196 5.13072 4.85981 4.69349 4.62955 4.66632 4.80702 5.05521 5.41646 5.90011 6.52165 7.30699 8.31346 9.6099 11.2468 13.3477 16.2676 21.0513 31.2399 61.275 181.149 1051.48 1051.55 182.533 62.2271 32.2267 22.1992 17.4505 14.4772 12.2738 10.5093 9.07457 7.93624 7.04871 6.34945 5.79785 5.37451 5.06865 4.87546 4.79309 4.81982 4.96002 5.21835 5.60066 6.11644 6.78127 7.62118 8.69571 10.0704 11.7811 13.9372 16.8778 21.6226 31.6858 61.5895 181.517 1052.02 1051.55 182.632 62.3099 32.3966 22.5041 17.8524 14.9363 12.7555 10.983 9.51461 8.32537 7.38748 6.644 6.05198 5.59274 5.25645 5.0394 4.93958 4.95582 5.09347 5.35857 5.75719 6.29893 6.99935 7.88439 9.015 10.454 12.2255 14.4267 17.3815 22.0844 32.014 61.7435 181.687 1052.49 1051.56 182.797 62.4395 32.5571 22.7606 18.1917 15.3324 13.1801 11.4081 9.91473 8.68246 7.69994 6.91626 6.28698 5.79438 5.42978 5.18955 5.07253 5.07843 5.21335 5.48481 5.89942 6.46704 7.20336 8.13513 9.32418 10.8278 12.6565 14.8949 17.8543 22.5129 32.3307 61.9362 181.916 1052.94 1051.56 182.876 62.4991 32.6578 22.9479 18.4531 15.6476 13.5263 11.7616 10.2538 8.99073 7.97374 7.15745 6.49698 5.97578 5.58607 5.32437 5.19064 5.18558 5.31606 5.59057 6.01681 6.60499 7.37112 8.34337 9.58379 11.1435 13.0225 15.2936 18.2555 22.8697 32.5728 62.0319 182.026 1053.35 1051.55 182.992 62.5942 32.7595 23.1071 18.6714 15.9141 13.8243 12.0715 10.5559 9.26956 8.22395 7.37913 6.69077 6.14371 5.73023 5.44778 5.29778 5.28158 5.40684 5.68305 6.11908 6.72553 7.51876 8.52885 9.81762 11.4283 13.3509 15.6486 18.6099 23.1833 32.7876 62.1226 182.142 1053.74 1051.55 183.073 62.6713 32.8405 23.2308 18.8424 16.1272 14.0682 12.3309 10.8144 9.51307 8.44576 7.57757 6.86559 6.29572 5.86063 5.55897 5.39345 5.36608 5.48521 5.76125 6.20415 6.82483 7.63997 8.68186 10.0121 11.6662 13.6254 15.9446 18.903 23.4375 32.9451 62.141 182.174 1054.09 1051.55 183.177 62.7808 32.9298 23.3377 18.9811 16.3005 14.2713 12.5531 11.0415 9.73081 8.64608 7.75768 7.02493 6.43415 5.97902 5.65967 5.4798 5.442 5.55545 5.8313 6.28019 6.91351 7.74813 8.81868 10.1865 11.879 13.8689 16.2034 19.1539 23.6489 33.0677 62.1339 182.19 1054.42 1051.54 183.24 62.8729 33.0035 23.4147 19.0769 16.4235 14.4236 12.7294 11.2305 9.91822 8.82005 7.91416 7.1638 6.55497 6.08247 5.74792 5.55584 5.50937 5.61842 5.89478 6.3496 6.99467 7.84683 8.94276 10.344 12.071 14.0885 16.4345 19.3725 23.8238 33.1522 62.0857 182.17 1054.74 1051.53 183.25 62.9271 33.0466 23.4499 19.1209 16.4914 14.5232 12.8597 11.3816 10.0741 8.9659 8.04547 7.28036 6.65648 6.17002 5.82352 5.62227 5.57001 5.67737 5.95671 6.41959 7.07819 7.94911 9.07033 10.5039 12.2651 14.3101 16.6667 19.589 23.9929 33.2335 62.0509 182.179 1055.05 1051.53 183.177 62.9043 33.0331 23.4266 19.1034 16.4999 14.5696 12.9445 11.4946 10.1971 9.08132 8.14881 7.37245 6.73705 6.24025 5.88536 5.67843 5.62376 5.73267 6.01802 6.49181 7.16659 8.05874 9.20652 10.673 12.4711 14.548 16.9193 19.8283 24.1848 33.3416 62.0636 182.248 1055.38 1051.53 183.035 62.8 32.9541 23.341 19.0285 16.4597 14.5761 12.9967 11.5796 10.2945 9.17132 8.22779 7.44274 6.79879 6.29477 5.93471 5.72531 5.67146 5.7851 6.07954 6.56722 7.26126 8.1779 9.35467 10.8561 12.6957 14.8113 17.2054 20.1092 24.4261 33.512 62.1749 182.425 1055.72 1051.52 182.835 62.612 32.8053 23.1989 18.912 16.3912 14.5636 13.0336 11.6494 10.3753 9.2432 8.28861 7.49633 6.84579 6.33672 5.97366 5.76392 5.71289 5.83314 6.1383 6.6413 7.35605 8.29894 9.50601 11.0436 12.9285 15.0897 17.5177 20.4313 24.7254 33.7615 62.4029 182.714 1056.08 1051.53 182.632 62.3809 32.6108 23.0302 18.7889 16.3288 14.562 13.0793 11.7221 10.4534 9.30935 8.34238 7.54263 6.88584 6.37205 6.00628 5.79632 5.74804 5.8745 6.18966 6.70691 7.44099 8.40889 9.64482 11.217 13.1465 15.3561 17.8281 20.771 25.0692 34.0865 62.7415 183.091 1056.43 1051.53 182.486 62.1662 32.415 22.8765 18.7003 16.3102 14.6017 13.1561 11.8135 10.541 9.38137 8.40038 7.59141 6.92692 6.40691 6.03669 5.82441 5.77626 5.90566 6.227 6.75401 7.50215 8.4894 9.7485 11.3487 13.3146 15.5668 18.0871 21.0799 25.416 34.4497 63.1306 183.472 1056.75 1051.53 182.47 62.0501 32.278 22.7871 18.686 16.3656 14.7046 13.2789 11.9338 10.6469 9.46992 8.47259 7.65093 6.97658 6.44759 6.06953 5.85086 5.79793 5.92449 6.24532 6.7745 7.52804 8.52487 9.79725 11.4132 13.3967 15.6723 18.2325 21.2878 25.6966 34.7818 63.4726 183.746 1057.01 1051.54 182.625 62.0964 32.2508 22.8003 18.7718 16.5097 14.8775 13.4505 12.085 10.7724 9.57427 8.56201 7.72746 7.04013 6.49851 6.10838 5.87834 5.81469 5.93134 6.2435 6.76554 7.51387 8.50807 9.78157 11.3986 13.3761 15.646 18.2221 21.3345 25.838 35.0049 63.671 183.828 1057.18 1051.53 182.933 62.325 32.3552 22.9276 18.9576 16.7333 15.1057 13.6552 12.2535 10.9087 9.69075 8.66568 7.81762 7.11548 6.55912 6.15407 5.90881 5.82943 5.93003 6.22636 6.73316 7.46713 8.44831 9.71322 11.3201 13.2701 15.5028 18.0575 21.1964 25.7889 35.0551 63.6677 183.692 1057.25 1051.53 183.312 62.6906 32.5713 23.1469 19.214 17.001 15.353 13.8607 12.4137 11.0362 9.8049 8.77066 7.91014 7.19492 6.62454 6.20425 5.94244 5.84502 5.92637 6.20297 6.69002 7.40463 8.36726 9.61967 11.2131 13.1253 15.2975 17.7906 20.9036 25.5408 34.8923 63.4316 183.345 1057.25 1051.52 183.653 63.1025 32.8506 23.4145 19.4922 17.2607 15.5687 14.0234 12.5313 11.1285 9.89376 8.85809 7.99037 7.26647 6.68563 6.25285 5.97654 5.86261 5.92587 6.18364 6.65176 7.34788 8.29316 9.53663 11.1236 13.0024 15.1074 17.5093 20.5372 25.1415 34.5175 62.9607 182.818 1057.2 1051.51 183.856 63.4601 33.1389 23.6821 19.7366 17.4526 15.6961 14.096 12.5708 11.1593 9.93515 8.90833 8.04151 7.31597 6.73093 6.29136 6.00599 5.88107 5.932 6.17702 6.63275 7.31754 8.25352 9.49868 11.0949 12.959 15.0092 17.3108 20.207 24.6899 33.9903 62.2958 182.162 1057.18 1051.5 183.887 63.7021 33.4005 23.916 19.9026 17.5264 15.6892 14.0432 12.5091 11.1135 9.91571 8.90809 8.05128 7.33231 6.75078 6.31208 6.02562 5.89839 5.94664 6.1895 6.64449 7.33078 8.27176 9.5351 11.1619 13.0391 15.0623 17.2763 20.0188 24.3077 33.4206 61.5292 181.473 1057.21 1051.49 183.77 63.8168 33.6152 24.0815 19.9462 17.4454 15.528 13.8601 12.348 10.9949 9.8351 8.85347 8.01559 7.31112 6.74076 6.31108 6.03263 5.91366 5.97136 6.22566 6.69487 7.39901 8.36706 9.67279 11.3504 13.2704 15.3036 17.4603 20.0533 24.1081 32.9457 60.8095 180.899 1057.36 1051.48 183.553 63.8154 33.7561 24.1314 19.8282 17.1964 15.2251 13.573 12.1142 10.8197 9.7054 8.75554 7.9412 7.25579 6.7023 6.28905 6.02797 5.92872 6.00954 6.29095 6.7919 7.53297 8.54935 9.91988 11.6727 13.669 15.7523 17.8905 20.3582 24.1754 32.7044 60.3372 180.659 1057.67 1051.47 183.275 63.7037 33.7755 24.0134 19.5319 16.8024 14.8262 13.2309 11.8502 10.6211 9.55032 8.63002 7.83845 7.1737 6.64119 6.25093 6.01598 5.94737 6.06438 6.38805 6.93793 7.73548 8.81945 10.2741 12.1285 14.2344 16.4069 18.5686 20.9482 24.5564 32.8058 60.3203 180.989 1058.15 1051.47 182.938 63.4552 33.6117 23.6968 19.0822 16.3252 14.4019 12.895 11.6017 10.4352 9.3945 8.49255 7.72078 7.07659 6.56751 6.20497 6.00289 5.97337 6.13658 6.51389 7.12562 7.99484 9.16138 10.7149 12.6929 14.9382 17.2357 19.4608 21.7945 25.2423 33.294 60.9001 182.023 1058.79 1051.46 182.514 63.0275 33.2277 23.2036 18.5495 15.8474 14.0241 12.6191 11.4056 10.2851 9.25762 8.3627 7.60485 6.97847 6.49263 6.15961 5.99348 6.00684 6.2203 6.6553 7.33298 8.27933 9.53359 11.1904 13.3022 15.7064 18.1591 20.4854 22.8145 26.1499 34.102 62.0436 183.638 1059.51 1051.46 182.009 62.4243 32.6522 22.6147 18.0302 15.4502 13.7499 12.4406 11.2863 10.1899 9.15904 8.25935 7.50704 6.89319 6.42731 6.12135 5.98863 6.04143 6.30018 6.78589 7.52021 8.53285 9.86488 11.612 13.8425 16.405 19.0307 21.4933 23.8649 27.1366 35.0644 63.4769 185.38 1060.18 1051.47 181.468 61.7083 31.9859 22.0444 17.615 15.1923 13.6149 12.3818 11.2594 10.1636 9.11739 8.1994 7.4409 6.83371 6.38114 6.09419 5.98516 6.06548 6.35465 6.87263 7.64067 8.69061 10.0694 11.8694 14.1724 16.8627 19.6594 22.2933 24.7721 28.0437 36.0064 64.8838 186.813 1060.64 1051.48 180.987 61.0089 31.362 21.5949 17.3632 15.1025 13.6319 12.4505 11.3341 10.2173 9.14154 8.19702 7.4243 6.81325 6.36172 6.07984 5.97868 6.06808 6.36554 6.8891 7.65871 8.70625 10.0812 11.8705 14.1722 16.9217 19.8565 22.6934 25.3706 28.7336 36.7068 65.6706 186.894 1060.8 1051.49 180.685 60.4787 30.8981 21.3312 17.2989 15.1844 13.7985 12.6446 11.5127 10.3583 9.24177 8.26326 7.46682 6.83896 6.3738 6.08068 5.96935 6.0475 6.32978 6.83132 7.5698 8.57432 9.89145 11.5998 13.8101 16.5173 19.5159 22.5573 25.54 29.1679 37.2222 65.8731 184.465 1060.65 1051.51 180.703 60.2574 30.6721 21.2775 17.4184 15.4251 14.1014 12.9549 11.7905 10.5856 9.41928 8.40006 7.57054 6.91327 6.42052 6.10098 5.96321 6.01257 6.2607 6.71942 7.40285 8.33486 9.55519 11.1301 13.173 15.7316 18.6827 21.8659 25.207 29.2884 37.6277 66.2928 186.554 1060.26 1051.52 181.089 60.4166 30.71 21.4251 17.7005 15.8018 14.52 13.364 12.1533 10.8868 9.6628 8.59782 7.72825 7.032 6.50123 6.14409 5.96816 5.97675 6.17897 6.58378 7.2012 8.04891 9.15773 10.5798 12.4204 14.7569 17.5457 20.7439 24.3831 29.0093 37.7991 66.2715 186.208 1059.72 1051.53 181.768 60.9235 30.9778 21.7336 18.1073 16.2803 15.0228 13.8414 12.5709 11.2326 9.94508 8.83266 7.92079 7.1814 6.60799 6.20807 5.98852 5.951 6.10305 6.45186 7.00397 7.7713 8.77588 10.0569 11.7042 13.7994 16.3504 19.422 23.1966 28.3023 37.6645 66.0602 185.553 1059.13 1051.53 182.576 61.6577 31.4004 22.1433 18.5906 16.8171 15.566 14.3419 12.9976 11.5791 10.226 9.06941 8.11889 7.33868 6.72479 6.28377 6.02184 5.93938 6.04331 6.34042 6.83529 7.53569 8.45652 9.62706 11.1191 12.9983 15.2929 18.1385 21.8583 27.2429 37.1478 65.6411 184.84 1058.56 1051.53 183.301 62.4419 31.8839 22.5925 19.1018 17.3652 16.0973 14.8068 13.373 11.8712 10.4586 9.26689 8.28695 7.47491 6.8296 6.35608 6.05961 5.93957 6.00292 6.25726 6.70681 7.35741 8.2195 9.31697 10.7037 12.4172 14.4822 17.0662 20.5875 26.0077 36.2739 64.9549 184.041 1058.05 1051.52 183.797 63.1152 32.3498 23.0373 19.6017 17.8776 16.5576 15.1692 13.6309 12.0517 10.6004 9.38751 8.38972 7.56195 6.90073 6.40892 6.09082 5.94538 5.98016 6.20434 6.62311 7.24222 8.07018 9.13031 10.4618 12.0675 13.9526 16.2879 19.5391 24.7963 35.1732 64.0096 183.14 1057.64 1051.51 184.008 63.579 32.7575 23.4653 20.067 18.3071 16.8814 15.3617 13.7143 12.0762 10.6154 9.40533 8.40904 7.58487 6.92536 6.4315 6.10694 5.95082 5.97168 6.1806 6.58472 7.1911 8.00837 9.06425 10.3863 11.9372 13.6944 15.8161 18.7821 23.755 34.0067 62.8696 182.15 1057.33 1051.51 183.983 63.8389 33.126 23.8954 20.4843 18.6089 17.0114 15.3338 13.5912 11.9301 10.4965 9.31723 8.34369 7.54161 6.90084 6.42094 6.10519 5.95356 5.97595 6.1855 6.59193 7.20469 8.03407 9.11639 10.4695 12.0101 13.6843 15.6313 18.3267 22.9602 32.913 61.6383 181.109 1057.15 1051.5 183.829 63.9803 33.5133 24.3475 20.8294 18.74 16.9134 15.0725 13.2692 11.6374 10.265 9.13682 8.20531 7.44192 6.83479 6.38266 6.08917 5.956 5.99473 6.22054 6.64616 7.28479 8.15083 9.29069 10.7084 12.2721 13.9002 15.7087 18.1582 22.4369 31.9803 60.4153 180.084 1057.08 1051.49 183.658 64.1155 33.9713 24.8098 21.0572 18.6635 16.5849 14.6114 12.7985 11.2419 9.95499 8.89362 8.01912 7.30555 6.74179 6.32718 6.06665 5.9643 6.03371 6.29155 6.75263 7.43307 8.36424 9.59759 11.1019 12.7165 14.3308 16.0313 18.2587 22.1862 31.2604 59.2871 179.147 1057.15 1051.48 183.538 64.3158 34.4944 25.2168 21.1067 18.3621 16.0567 14.0127 12.252 10.7979 9.60533 8.61981 7.80931 7.15114 6.63619 6.26554 6.04629 5.98566 6.09973 6.40671 6.92291 7.66649 8.68503 10.0355 11.6515 13.3419 14.9683 16.5854 18.6113 22.2014 30.7893 58.3452 178.404 1057.37 1051.47 183.478 64.5749 34.9997 25.4627 20.9213 17.8465 15.3905 13.3532 11.6918 10.3492 9.24996 8.34284 7.5973 6.99497 6.53031 6.20737 6.03609 6.02717 6.1997 6.57351 7.16619 7.99777 9.12687 10.6121 12.3595 14.145 15.8038 17.3584 19.2016 22.4756 30.5978 57.6972 178.007 1057.77 1051.46 183.447 64.8256 35.3596 25.445 20.4782 17.163 14.6625 12.7044 11.1617 9.92669 8.91601 8.08205 7.39704 6.84756 6.43248 6.15975 6.0425 6.09505 6.33978 6.79821 7.48926 8.43714 9.70076 11.3315 13.2222 15.1165 16.8248 18.336 20.0169 23.0074 30.7284 57.4961 178.192 1058.39 1051.45 183.394 64.9636 35.4477 25.1105 19.8144 16.3942 13.9479 12.1111 10.6888 9.55212 8.62078 7.85009 7.21742 6.7153 6.34781 6.12725 6.07002 6.19399 6.52504 7.08594 7.89575 8.97818 10.3899 12.1819 14.225 16.2415 18.0133 19.497 21.039 23.794 31.2305 57.9414 179.258 1059.26 1051.44 183.24 64.8659 35.1797 24.4778 19.0146 15.6245 13.3014 11.6012 10.2921 9.24099 8.37386 7.65281 7.06225 6.60108 6.27864 6.11147 6.1188 6.32163 6.74933 7.42508 8.36623 9.59044 11.1646 13.1364 15.3291 17.4761 19.3259 20.7984 22.2298 24.8095 32.1133 59.1726 181.379 1060.33 1051.43 182.916 64.4548 34.5617 23.6414 18.1825 14.9263 12.7657 11.2005 9.98689 9.00143 8.17974 7.49331 6.93412 6.50701 6.22586 6.11081 6.18305 6.46601 6.9922 7.78492 8.85596 10.2234 11.9694 14.112 16.4497 18.7375 20.686 22.1652 23.5162 25.9893 33.3233 61.1134 184.245 1061.5 1051.42 182.386 63.7245 33.6823 22.7311 17.4158 14.3565 12.3698 10.9255 9.78084 8.83537 8.04053 7.37461 6.83616 6.43489 6.18816 6.11855 6.24818 6.60186 7.21446 8.10938 9.29225 10.7924 12.6963 14.9879 17.4748 19.9099 21.9772 23.4761 24.7539 27.152 34.6892 63.6334 187.36 1062.56 1051.42 181.677 62.7601 32.6867 21.8753 16.7912 13.9494 12.1236 10.7768 9.67538 8.74662 7.96082 7.30124 6.77187 6.38563 6.16178 6.12381 6.29352 6.69582 7.36656 8.32886 9.59557 11.1953 13.2111 15.6394 18.2721 20.8571 23.0594 24.5934 25.7805 28.0201 35.6055 65.3647 189.429 1063.3 1051.42 180.887 61.7117 31.731 21.172 16.3508 13.7158 12.0254 10.7501 9.67223 8.73876 7.94343 7.27778 6.74518 6.36038 6.14337 6.11708 6.30185 6.72133 7.41119 8.3963 9.69502 11.3363 13.4136 15.9425 18.7057 21.4423 23.7984 25.4089 26.5304 28.5713 36.0466 65.6314 183.775 1063.63 1051.42 180.141 60.7389 30.93 20.6677 16.1008 13.6462 12.0642 10.8376 9.76536 8.81226 7.9941 7.30943 6.75978 6.36107 6.133 6.09655 6.26948 6.67258 7.33932 8.29644 9.56865 11.1856 13.2535 15.8197 18.6761 21.5563 24.0891 25.8546 27.0057 28.9064 36.2739 65.844 182.644 1063.56 1051.43 179.566 59.9671 30.346 20.3706 16.0293 13.7222 12.2236 11.0297 9.95147 8.96761 8.11472 7.39849 6.81848 6.39134 6.13573 6.06993 6.20842 6.56763 7.17628 8.06073 9.25094 10.7799 12.7598 15.2739 18.1563 21.1456 23.8659 25.8839 27.2291 29.1393 36.3783 65.7034 181.86 1063.2 1051.45 179.238 59.4606 29.991 20.2597 16.1061 13.9178 12.4853 11.3156 10.2249 9.20154 8.30302 7.54395 6.92221 6.45468 6.15874 6.04985 6.13911 6.43797 6.96859 7.7534 8.82216 10.2141 12.0364 14.3986 17.2103 20.236 23.1253 25.4759 27.205 29.3421 36.4825 65.3366 181.008 1062.67 1051.46 179.18 59.2309 29.8444 20.3022 16.2985 14.2074 12.8306 11.6803 10.5744 9.50688 8.55264 7.74039 7.06858 6.55226 6.20737 6.04711 6.07977 6.31213 6.75965 7.43895 8.37482 9.60597 11.2251 13.3563 15.9919 18.9526 21.9548 24.6621 26.9206 29.5191 36.6718 64.9145 180.244 1062.07 1051.48 179.375 59.2569 29.872 20.4634 16.5771 14.5671 13.2392 12.1061 10.984 9.87027 8.85213 7.9787 7.25186 6.68136 6.28249 6.06703 6.04119 6.20771 6.57631 7.15777 7.97021 9.04608 10.4561 12.3222 14.7047 17.5015 20.5233 23.5247 26.3539 29.6234 37.0829 64.7862 179.657 1061.47 1051.5 179.765 59.4883 30.0298 20.7078 16.9146 14.9739 13.6902 12.573 11.4344 10.2722 9.18548 8.24649 7.46143 6.83413 6.37957 6.10878 6.02645 6.13197 6.43038 6.92741 7.63481 8.57748 9.80425 11.421 13.5267 16.0957 19.0321 22.1933 25.4975 29.4891 37.5907 65.7285 183.877 1060.89 1051.51 180.278 59.8653 30.2752 21.0042 17.2874 15.4077 14.1637 13.0599 11.9036 10.6916 9.53351 8.52693 7.68294 6.99891 6.48984 6.16642 6.03231 6.08413 6.32317 6.75095 7.37331 8.20741 9.28949 10.7019 12.5504 14.8741 17.6474 20.8268 24.4356 29.024 37.7252 65.9462 185.812 1060.38 1051.52 180.837 60.3225 30.5669 21.3243 17.6746 15.8503 14.6411 13.5459 12.3685 11.1051 9.87503 8.80135 7.90008 7.16196 6.60215 6.23122 6.05203 6.05884 6.24998 6.62369 7.181 7.93246 8.9045 10.1589 11.7966 13.8928 16.4697 19.5649 23.3128 28.3284 37.5611 65.7799 185.4 1059.93 1051.53 181.389 60.8142 30.8784 21.6497 18.0616 16.2882 15.1069 14.0121 12.8072 11.4903 10.1899 9.05208 8.09735 7.31008 6.70556 6.29414 6.07792 6.04906 6.20349 6.53684 7.0464 7.73762 8.62953 9.76779 11.2436 13.148 15.5312 18.4881 22.2492 27.5255 37.1956 65.4945 184.894 1059.55 1051.54 181.893 61.2991 31.1886 21.9668 18.4367 16.7089 15.5472 14.4423 13.2011 11.828 10.461 9.26418 8.26174 7.43251 6.79127 6.3478 6.1034 6.04842 6.17677 6.48197 6.95835 7.60748 8.44307 9.49933 10.857 12.6094 14.8209 17.6219 21.3161 26.714 36.7035 65.1275 184.395 1059.24 1051.54 182.317 61.7452 31.4842 22.2682 18.7922 17.1025 15.9493 14.8219 13.5347 12.1024 10.6742 9.42536 8.38292 7.52135 6.85289 6.38675 6.12349 6.05191 6.16422 6.45214 6.90765 7.5293 8.32682 9.32717 10.6017 12.2386 14.3065 16.9555 20.5398 25.958 36.1501 64.6989 183.912 1058.99 1051.54 182.658 62.1412 31.7634 22.5539 19.1244 17.4612 16.3019 15.1384 13.7961 12.303 10.8193 9.52743 8.45497 7.57162 6.88627 6.40755 6.13511 6.05641 6.16222 6.44275 6.88813 7.4946 8.26871 9.23282 10.4511 12.0034 13.9548 16.4647 19.9214 25.2936 35.5903 64.2391 183.456 1058.81 1051.54 182.912 62.4774 32.0262 22.8264 19.4329 17.7806 16.5976 15.3828 13.9773 12.4237 10.8918 9.5673 8.47547 7.58088 6.8895 6.40877 6.13704 6.0605 6.16868 6.4506 6.89505 7.49654 8.25915 9.20293 10.386 11.8766 13.7328 16.1179 19.4421 24.7276 35.0526 63.7644 183.023 1058.67 1051.54 183.087 62.7568 32.2781 23.092 19.7208 18.0599 16.832 15.5483 14.0709 12.4595 10.8905 9.54522 8.44448 7.54963 6.86344 6.39146 6.13023 6.06475 6.18354 6.47463 6.926 7.5311 8.29242 9.23004 10.3948 11.8388 13.6142 15.887 19.0815 24.2568 34.5525 63.287 182.614 1058.58 1051.54 183.178 62.9672 32.5131 23.3525 19.9901 18.2971 16.9993 15.6279 14.0707 12.4056 10.8141 9.46162 8.3635 7.48094 6.81173 6.35909 6.11768 6.07165 6.20888 6.51663 6.98229 7.59844 8.36631 9.30714 10.4649 11.8744 13.5811 15.7522 18.8208 23.8723 34.0976 62.8207 182.234 1058.53 1051.54 183.198 63.1156 32.7351 23.6094 20.2354 18.481 17.0887 15.6177 13.9805 12.2705 10.671 9.32608 8.24271 7.38318 6.74088 6.31659 6.10302 6.08377 6.2464 6.57766 7.06465 7.69937 8.48205 9.43608 10.5983 11.9837 13.6309 15.7081 18.6554 23.5768 33.7071 62.4029 181.926 1058.52 1051.53 183.163 63.2093 32.9431 23.8554 20.4478 18.6072 17.1028 15.5241 13.807 12.06 10.4675 9.1456 8.08879 7.26234 6.65637 6.26849 6.08973 6.10345 6.29732 6.6579 7.17229 7.83214 8.63683 9.61217 10.7871 12.1562 13.7526 15.7466 18.5832 23.3777 33.3978 62.0505 181.696 1058.55 1051.53 183.106 63.2775 33.1529 24.0986 20.6325 18.6797 17.0438 15.3492 13.557 11.7879 10.2216 8.9389 7.91873 7.13244 6.56885 6.22231 6.08258 6.13309 6.36206 6.75624 7.30319 7.99476 8.82972 9.83553 11.0295 12.3845 13.9319 15.847 18.5797 23.2539 33.1626 61.7679 181.537 1058.61 1051.53 183.032 63.3426 33.3785 24.3402 20.783 18.691 16.9107 15.1026 13.2495 11.4782 9.95467 8.7219 7.74528 7.0036 6.48531 6.18259 6.08413 6.17357 6.43983 6.86992 7.45197 8.17853 9.05475 10.103 11.3173 12.6608 14.165 16.0081 18.643 23.198 32.9855 61.535 181.441 1058.7 1051.52 182.948 63.3973 33.6006 24.5596 20.8861 18.6397 16.7128 14.8002 12.9044 11.1519 9.68336 8.50508 7.57539 6.88074 6.40922 6.15143 6.09525 6.22478 6.52995 6.99823 7.61837 8.38368 9.30639 10.4027 11.6412 12.9762 14.4404 16.2157 18.7583 23.1988 32.8636 61.3501 181.387 1058.83 1051.52 182.862 63.4581 33.825 24.7543 20.9403 18.5295 16.461 14.4586 12.5395 10.8277 9.4183 8.29328 7.41401 6.76782 6.3431 6.12992 6.11584 6.28557 6.63022 7.13784 7.79809 8.60539 9.57935 10.7283 11.9936 13.3225 14.7503 16.462 18.9161 23.2425 32.7752 61.1833 181.36 1058.98 1051.52 182.793 63.5399 34.051 24.9178 20.9427 18.3657 16.169 14.0974 12.1744 10.5142 9.1668 8.09511 7.26568 6.66675 6.28754 6.11807 6.14565 6.35548 6.73986 7.2867 7.98688 8.84049 9.87113 11.0724 12.3635 13.6896 15.0872 16.7423 19.1137 23.3286 32.7248 61.0457 181.359 1059.15 1051.51 182.723 63.6268 34.2657 25.0438 20.8963 18.1585 15.8501 13.7297 11.8192 10.2162 8.92989 7.90956 7.12848 6.5757 6.24116 6.11509 6.18457 6.43525 6.86074 7.44598 8.18119 9.08383 10.1761 11.4263 12.7441 14.0728 15.4474 17.0527 19.3468 23.4535 32.7118 60.9438 181.403 1059.34 1051.5 182.642 63.7111 34.4602 25.129 20.8042 17.9145 15.5103 13.3596 11.4762 9.93265 8.70381 7.73299 6.99964 6.49277 6.20287 6.1206 6.2329 6.52574 6.99326 7.6159 8.38417 9.33436 10.4877 11.7866 13.1331 14.4688 15.827 17.3895 19.6133 23.6175 32.7407 60.8892 181.507 1059.56 1051.5 182.548 63.7791 34.6205 25.1646 20.6636 17.6346 15.1515 12.9872 11.1458 9.65999 8.48411 7.5639 6.87875 6.4177 6.17225 6.13417 6.29073 6.62865 7.13787 7.79321 8.59492 9.59193 10.8051 12.1512 13.5263 14.8724 16.2199 17.7471 19.9084 23.8183 32.8148 60.8936 181.682 1059.79 1051.49 182.441 63.8222 34.7343 25.1412 20.4695 17.3181 14.7767 12.6157 10.8247 9.39869 8.27604 7.40592 6.76781 6.3514 6.14953 6.15529 6.35643 6.74064 7.29134 7.97796 8.81412 9.85767 11.1286 12.519 13.9213 15.2793 16.6207 18.1193 20.2263 24.0515 32.933 60.9615 181.929 1060.05 1051.49 182.322 63.8345 34.7923 25.0541 20.2245 16.9729 14.3962 12.2555 10.5218 9.1562 8.08536 7.26295 6.66932 6.29523 6.13507 6.18341 6.42836 6.85829 7.44923 8.16673 9.03872 10.1293 11.4558 12.887 14.3139 15.6846 17.0239 18.5003 20.5612 24.3126 33.095 61.101 182.254 1060.33 1051.48 182.196 63.8153 34.791 24.9065 19.9387 16.6133 14.0249 11.9195 10.2469 8.93929 7.91652 7.13767 6.58452 6.24924 6.12809 6.21753 6.5063 6.97742 7.60086 8.35048 9.26136 10.4017 11.7801 13.2486 14.6991 16.0846 17.4254 18.8844 20.9058 24.5926 33.2904 61.2998 182.637 1060.62 1051.48 182.076 63.7727 34.7382 24.7145 19.6344 16.2619 13.6823 11.6229 10.0099 8.75399 7.77307 7.03181 6.51336 6.21134 6.12397 6.24994 6.57936 7.08761 7.73958 8.5214 9.47097 10.6611 12.0919 13.5986 15.0737 16.4767 17.822 19.2667 21.2524 24.8802 33.5034 61.5359 183.046 1060.92 1051.47 181.963 63.7115 34.6457 24.4981 19.3343 15.9384 13.3818 11.3743 9.81383 8.60013 7.65506 6.94521 6.45517 6.18013 6.1203 6.27666 6.64089 7.18128 7.85904 8.67162 9.65855 10.8972 12.3804 13.9278 15.4317 16.8575 18.2118 19.6447 21.5961 25.1666 33.7198 61.7873 183.455 1061.22 1051.47 181.861 63.6391 34.5284 24.278 19.0576 15.6572 13.1308 11.1722 9.65669 8.47762 7.56131 6.87603 6.4078 6.15326 6.11437 6.2942 6.68617 7.25299 7.95344 8.79405 9.81568 11.0997 12.6342 14.2262 15.7658 17.2231 18.594 20.0191 21.9366 25.448 33.931 62.0393 183.85 1061.51 1051.47 181.763 63.5548 34.3982 24.069 18.815 15.4221 12.9272 11.0113 9.53257 8.38092 7.48694 6.82035 6.36834 6.12863 6.1046 6.30116 6.71349 7.30071 8.02023 8.88501 9.93723 11.2614 12.8444 14.4844 16.0672 17.5668 18.965 20.39 22.276 25.7263 34.1361 62.2867 184.231 1061.77 1051.46 181.674 63.4695 34.2697 23.8823 18.6102 15.2307 12.7652 10.8845 9.43507 8.30473 7.42779 6.77503 6.33451 6.10482 6.0905 6.29798 6.72413 7.32627 8.06112 8.94589 10.0239 11.3822 13.0092 14.6983 16.3301 17.882 19.32 20.7554 22.6159 26.0065 34.3429 62.5384 184.608 1062.02 1051.46 181.602 63.3922 34.1536 23.7232 18.4421 15.077 12.6365 10.7836 9.35645 8.24234 7.37841 6.73611 6.30389 6.08076 6.07196 6.28504 6.71857 7.33008 8.07634 8.97672 10.0757 11.462 13.1276 14.8643 16.5489 18.1608 19.6501 21.1084 22.9531 26.2887 34.5538 62.7944 184.975 1062.23 1051.46 181.535 63.3164 34.0457 23.5841 18.2992 14.9476 12.5272 10.6959 9.287 8.18709 7.3346 6.70113 6.27528 6.0563 6.04983 6.26423 6.69945 7.31489 8.06817 8.97889 10.0927 11.5001 13.1983 14.9799 16.7186 18.3943 19.9434 21.4367 23.2775 26.5677 34.7676 63.0523 185.324 1062.41 1051.46 181.477 63.2457 33.947 23.4615 18.1732 14.8306 12.4264 10.6152 9.22398 8.13768 7.29574 6.66984 6.24874 6.03188 6.02514 6.23733 6.66951 7.2842 8.04038 8.9562 10.0783 11.4988 13.2209 15.0407 16.8326 18.5747 20.1896 21.728 23.5771 26.8333 34.978 63.3057 185.643 1062.55 1051.46 181.426 63.1799 33.8556 23.346 18.0502 14.7155 12.3291 10.5394 9.16629 8.09333 7.26117 6.64176 6.22409 6.00774 5.99869 6.20593 6.63126 7.24129 7.99679 8.913 10.0373 11.4634 13.1997 15.0468 16.8853 18.6908 20.3756 21.9702 23.8416 27.0768 35.175 63.5381 185.909 1062.65 1051.46 181.381 63.1203 33.7628 23.2213 17.9206 14.5992 12.2348 10.4685 9.11401 8.05411 7.23096 6.61697 6.20149 5.98428 5.97131 6.17149 6.58709 7.18937 7.94119 8.85372 9.97495 11.3999 13.1411 15.0037 16.8783 18.7379 20.4887 22.147 24.058 27.2932 35.362 63.7522 186.122 1062.72 1051.46 181.358 63.061 33.645 23.0803 17.7858 14.4848 12.1462 10.4046 9.06841 8.02072 7.20542 6.59559 6.18103 5.96171 5.94353 6.13521 6.53918 7.13154 7.87742 8.78308 9.8968 11.3147 13.0524 14.9191 16.8183 18.7193 20.5257 22.2463 24.2074 27.4631 35.5243 63.9353 186.263 1062.74 1051.46 181.301 62.9389 33.4934 22.9293 17.6528 14.3776 12.0679 10.35 9.03032 7.99354 7.18465 6.57754 6.16254 5.93989 5.91546 6.09766 6.48894 7.07012 7.80855 8.70516 9.80824 11.2147 12.9418 14.8026 16.7152 18.6443 20.4931 22.2689 24.2835 27.5733 35.6456 64.0762 186.352 1062.74 1051.46 181.197 62.8006 33.3372 22.7836 17.5306 14.2837 12.0028 10.3067 9.00122 7.97324 7.16886 6.56276 6.14582 5.91856 5.88682 6.05875 6.4368 7.0062 7.73634 8.62277 9.71343 11.1055 12.8172 14.6656 16.5825 18.5277 20.4059 22.2278 24.2956 27.6297 35.7295 64.1808 186.39 1062.72 1051.46 181.12 62.6811 33.1948 22.6551 17.4279 14.2089 11.9543 10.2771 8.98288 7.96104 7.1588 6.55161 6.13089 5.89742 5.85705 6.01766 6.38179 6.93881 7.66 8.53554 9.61274 10.9883 12.6817 14.5148 16.4303 18.3825 20.2792 22.1377 24.256 27.6419 35.785 64.2639 186.391 1062.69 1051.46 181.067 62.58 33.0689 22.5469 17.347 14.1543 11.9228 10.2608 8.97467 7.95625 7.15379 6.54351 6.11729 5.87609 5.82577 5.97396 6.3233 6.86713 7.5787 8.44283 9.50615 10.8638 12.5376 14.3561 16.2677 18.2217 20.1289 22.0156 24.1796 27.62 35.8175 64.3308 186.372 1062.66 1051.46 181.042 62.5079 32.97 22.4668 17.2927 14.1225 11.9089 10.2577 8.97621 7.95835 7.15338 6.53811 6.10475 5.85439 5.79285 5.92743 6.2608 6.79014 7.49091 8.34262 9.39106 10.7298 12.3847 14.1916 16.1001 18.0534 19.967 21.876 24.0801 27.5731 35.8271 64.3722 186.326 1062.61 1051.47 181.042 62.4621 32.8967 22.412 17.261 14.1088 11.9084 10.2639 8.98402 7.96452 7.15538 6.53383 6.09228 5.83185 5.75831 5.87856 6.19512 6.70867 7.39731 8.23543 9.26762 10.5861 12.2219 14.0213 15.9287 17.8806 19.7998 21.7286 23.9685 27.51 35.8171 64.3849 186.254 1062.56 1051.47 181.061 62.4404 32.847 22.3789 17.2475 14.1088 11.9169 10.2756 8.99502 7.97227 7.1579 6.52934 6.0791 5.80823 5.72239 5.82811 6.12751 6.62418 7.29935 8.12299 9.13822 10.4348 12.0496 13.8424 15.7503 17.7031 19.6299 21.5785 23.8517 27.4372 35.7909 64.369 186.158 1062.51 1051.47 181.105 62.4481 32.8217 22.3645 17.2475 14.1174 11.93 10.2892 9.00609 7.97909 7.15899 6.52327 6.06436 5.7832 5.68535 5.77694 6.05963 6.53883 7.19915 8.00759 9.00494 10.2783 11.8698 13.6554 15.5644 17.5204 19.4582 21.4285 23.7341 27.3596 35.7525 64.3298 186.048 1062.45 1051.47 181.163 62.4738 32.8117 22.3606 17.2535 14.1284 11.9424 10.3 9.01363 7.98214 7.15645 6.51397 6.04702 5.75633 5.64738 5.72597 5.99349 6.45546 7.09954 7.89298 8.87182 10.121 11.6872 13.4626 15.3712 17.3313 19.2825 21.2771 23.6155 27.2791 35.7064 64.2762 185.936 1062.39 1051.47 181.226 62.5096 32.8086 22.3581 17.2572 14.1345 11.9484 10.304 9.01442 7.97897 7.14846 6.50013 6.02616 5.72715 5.60851 5.6757 5.92979 6.37592 7.00422 7.78297 8.74341 9.96833 11.508 13.2696 15.1746 17.1374 19.1027 21.123 23.4951 27.1954 35.6535 64.2131 185.824 1062.34 1051.48 181.289 62.5461 32.803 22.3486 17.2519 14.1313 11.9449 10.2988 9.00686 7.96841 7.1341 6.48104 6.00131 5.69541 5.56874 5.62653 5.86931 6.30166 6.91555 7.6801 8.62262 9.82348 11.3377 13.0841 14.9798 16.9411 18.9178 20.9631 23.369 27.1058 35.5945 64.1474 185.721 1062.29 1051.48 181.339 62.5732 32.7871 22.3263 17.2336 14.1158 11.9302 10.2836 8.99058 7.95033 7.11338 6.45675 5.97252 5.66124 5.52828 5.57892 5.81307 6.23465 6.83656 7.58841 8.51465 9.69321 11.183 12.9118 14.7935 16.7483 18.732 20.7989 23.2373 27.0107 35.5323 64.0888 185.634 1062.26 1051.48 181.38 62.5895 32.758 22.2893 17.2018 14.0889 11.9058 10.2602 8.96739 7.92639 7.08766 6.42828 5.94045 5.62487 5.48701 5.53236 5.76026 6.17401 6.76657 7.50745 8.41957 9.57854 11.0459 12.7563 14.6207 16.5639 18.5485 20.6316 23.0992 26.9093 35.4685 64.0434 185.565 1062.24 1051.48 181.414 62.5955 32.7168 22.2402 17.1599 14.0542 11.8752 10.2318 8.94003 7.89879 7.05866 6.3969 5.90595 5.58678 5.44507 5.48667 5.71043 6.11915 6.70499 7.43674 8.33704 9.47944 10.9278 12.6212 14.467 16.3947 18.3738 20.4663 22.958 26.8028 35.4036 64.0117 185.514 1062.24 1051.48 181.439 62.5937 32.667 22.1837 17.1131 14.0167 11.8432 10.2024 8.91181 7.87023 7.02855 6.36429 5.87024 5.5477 5.4027 5.44159 5.66279 6.06871 6.65 7.37413 8.26449 9.39275 10.8256 12.5048 14.3326 16.2428 18.2116 20.3063 22.8157 26.6922 35.3387 63.9955 185.48 1062.26 1051.48 181.464 62.5898 32.6138 22.1251 17.0667 13.9807 11.8131 10.1746 8.88452 7.84207 6.99839 6.33134 5.83402 5.50818 5.3603 5.39732 5.61728 6.02223 6.60072 7.31841 8.20021 9.31607 10.7363 12.405 14.217 16.11 18.0662 20.158 22.678 26.5804 35.2715 63.9851 185.453 1062.3 1051.48 181.494 62.5931 32.5673 22.0739 17.028 13.9522 11.7894 10.1516 8.86028 7.81602 6.96968 6.2993 5.79832 5.46891 5.31806 5.35354 5.57341 5.97828 6.55495 7.26692 8.14092 9.24512 10.6545 12.3158 14.1144 15.9921 17.9357 20.0218 22.547 26.4685 35.1994 63.9703 185.422 1062.33 1051.48 181.526 62.6027 32.5283 22.0307 16.9968 13.9293 11.7696 10.1309 8.83737 7.79069 6.94141 6.2676 5.76289 5.42989 5.27628 5.31081 5.53161 5.93745 6.51331 7.22028 8.0871 9.18004 10.5796 12.2356 14.0231 15.888 17.8209 19.9012 22.428 26.3619 35.1247 63.9478 185.387 1062.38 1051.48 181.566 62.6241 32.5012 21.9967 16.972 13.9103 11.7518 10.111 8.81486 7.76571 6.91361 6.23645 5.728 5.39141 5.23519 5.26931 5.49198 5.8999 6.47596 7.1786 8.03865 9.12022 10.5095 12.1609 13.938 15.7916 17.7155 19.7905 22.3171 26.2581 35.0444 63.9099 185.342 1062.43 1051.48 181.606 62.652 32.4811 21.9659 16.9468 13.8889 11.7312 10.0887 8.79051 7.73964 6.88535 6.20522 5.69319 5.35308 5.19452 5.22899 5.45501 5.8673 6.44576 7.14537 7.99965 9.07029 10.449 12.0956 13.8629 15.7062 17.6226 19.6935 22.2189 26.1625 34.9633 63.862 185.295 1062.48 1051.48 181.645 62.6819 32.4625 21.932 16.9157 13.8613 11.7054 10.0627 8.76387 7.7124 6.85661 6.17378 5.6581 5.31434 5.15355 5.18925 5.42227 5.84237 6.42237 7.12198 7.97233 9.0339 10.3994 12.0361 13.7942 15.6271 17.5357 19.6023 22.1257 26.0694 34.8798 63.8062 185.247 1062.53 1051.48 181.674 62.7041 32.4358 21.8861 16.8716 13.8229 11.6722 10.0322 8.73469 7.68392 6.82721 6.14173 5.62227 5.2749 5.11261 5.15145 5.39498 5.8255 6.40754 7.10965 7.95884 9.01407 10.3666 11.9924 13.7418 15.5638 17.4635 19.5242 22.0435 25.9838 34.7988 63.7515 185.211 1062.6 1051.48 181.695 62.7153 32.3958 21.8248 16.8145 13.7766 11.6361 10.0016 8.70673 7.65695 6.79884 6.10985 5.58575 5.23429 5.07076 5.1139 5.36985 5.8123 6.39802 7.10541 7.95654 9.00803 10.3481 11.9628 13.7036 15.5136 17.4018 19.4536 21.9658 25.901 34.7223 63.71 185.195 1062.67 1051.48 181.713 62.7187 32.344 21.7514 16.7503 13.7294 11.6034 9.97623 8.68377 7.6337 6.7724 6.07805 5.54772 5.19105 5.02581 5.07362 5.34348 5.79978 6.39182 7.10823 7.96546 9.01714 10.3472 11.9526 13.6883 15.488 17.3646 19.4051 21.9062 25.8315 34.6569 63.6865 185.2 1062.77 1051.48 181.737 62.724 32.29 21.6787 16.6942 13.6958 11.5861 9.96484 8.67174 7.61783 6.7499 6.04714 5.50797 5.1439 4.9751 5.02618 5.30945 5.78056 6.3813 7.10977 7.97668 9.03171 10.3528 11.9497 13.6833 15.4752 17.3406 19.3678 21.8544 25.7674 34.6004 63.6846 185.225 1062.88 1051.47 181.777 62.7445 32.2476 21.6206 16.658 13.6837 11.5881 9.96854 8.67003 7.60771 6.72939 6.01528 5.46485 5.09117 4.9167 4.9691 5.2645 5.75118 6.36341 7.10709 7.98781 9.05009 10.3634 11.9531 13.6905 15.4814 17.342 19.359 21.8288 25.722 34.5537 63.6896 185.252 1063.01 1051.47 181.841 62.796 32.2356 21.5953 16.6563 13.7025 11.6136 9.9886 8.67833 7.60255 6.71027 5.98223 5.41833 5.03266 4.84992 4.90165 5.20591 5.70466 6.33126 7.09163 7.98795 9.05842 10.3615 11.9406 13.6828 15.477 17.3387 19.3508 21.8059 25.678 34.5075 63.6969 185.275 1063.15 1051.47 181.915 62.8715 32.2527 21.5985 16.6782 13.7361 11.6451 10.0081 8.6822 7.59087 6.68405 5.94232 5.36517 4.96729 4.77601 4.82794 5.13864 5.64478 6.28986 7.06925 7.98316 9.06281 10.3538 11.9194 13.6665 15.4688 17.3412 19.3594 21.8056 25.6512 34.4604 63.6804 185.271 1063.29 1051.47 181.973 62.9484 32.283 21.6133 16.7034 13.7639 11.6644 10.0132 8.67188 7.56642 6.64709 5.89479 5.3067 4.89703 4.6967 4.74752 5.06228 5.57498 6.2395 7.03806 7.96833 9.0543 10.329 11.8741 13.6173 15.4223 17.3054 19.3355 21.7824 25.6111 34.4061 63.6563 185.265 1063.46 1051.47 181.985 62.9876 32.2893 21.5989 16.6886 13.7469 11.6414 9.98222 8.63175 7.51705 6.58911 5.83559 5.24454 4.82477 4.61547 4.66512 4.98442 5.50595 6.19256 7.01247 7.95998 9.05252 10.3128 11.8352 13.5691 15.3742 17.2673 19.3129 21.7661 25.5789 34.3494 63.6141 185.254 1063.59 1051.47 181.958 62.981 32.252 21.5327 16.617 13.6795 11.581 9.92641 8.57352 7.45057 6.51716 5.77225 5.18846 4.75855 4.53554 4.57984 4.9018 5.43357 6.14198 6.98284 7.94569 9.04325 10.292 11.7896 13.5072 15.3045 17.1954 19.2481 21.711 25.5266 34.3042 63.6129 185.295 1063.79 1051.46 181.925 62.9478 32.173 21.4137 16.4967 13.5795 11.505 9.86539 8.51196 7.37611 6.44253 5.70844 5.13205 4.69276 4.45464 4.49134 4.81455 5.35787 6.08763 6.95026 7.92962 9.03619 10.2841 11.7661 13.4778 15.2762 17.1622 19.2109 21.6704 25.4792 34.2596 63.6202 185.369 1063.86 1051.46 181.976 62.9784 32.1221 21.3104 16.4046 13.5235 11.478 9.84644 8.47973 7.32025 6.38259 5.64996 5.07116 4.62378 4.37222 4.39588 4.71162 5.25992 6.00288 6.88106 7.87208 8.98697 10.2413 11.7136 13.4322 15.2494 17.138 19.1777 21.6266 25.4378 34.2625 63.7132 185.166 1064.11 1051.46 182.159 63.1488 32.1809 21.3032 16.4112 13.5606 11.5226 9.86928 8.46172 7.26973 6.32158 5.579 4.99116 4.54498 4.2897 4.29982 4.59988 5.14288 5.88684 6.77059 7.76667 8.88921 10.1582 11.6301 13.3771 15.2471 17.1616 19.1947 21.612 25.3867 34.1782 63.4301 183.062 1064.12 1051.46 182.414 63.442 32.3697 21.4184 16.5256 13.6743 11.6015 9.88947 8.41544 7.18766 6.23097 5.47796 4.88557 4.44963 4.20289 4.20711 4.48742 5.01066 5.73422 6.60148 7.5851 8.70098 9.97574 11.4483 13.2324 15.1828 17.1613 19.22 21.6125 25.3151 33.9733 62.8341 180.405 1064.44 1051.46 182.537 63.658 32.5441 21.5322 16.6086 13.7066 11.5534 9.76104 8.22676 6.98776 6.04577 5.30458 4.73015 4.32224 4.11009 4.13728 4.41681 4.91968 5.60753 6.43677 7.38888 8.47752 9.73553 11.202 13.0076 15.0427 17.1035 19.192 21.5439 25.143 33.6634 62.3045 179.009 1064.48 1051.46 182.402 63.617 32.5294 21.4736 16.4763 13.4718 11.216 9.35562 7.81666 6.63407 5.74625 5.0555 4.53412 4.18369 4.03439 4.11004 4.41395 4.90927 5.55804 6.33413 7.2338 8.28023 9.50508 10.9475 12.7422 14.8385 17.0018 19.173 21.5415 25.0596 33.4238 61.8776 178.114 1064.86 1051.45 182.072 63.3112 32.2466 21.1143 15.9791 12.8403 10.5101 8.65221 7.21279 6.17329 5.39135 4.7967 4.36721 4.1072 4.02928 4.15852 4.49671 5.00303 5.63527 6.37225 7.21771 8.2044 9.37565 10.7767 12.5313 14.605 16.7808 18.9793 21.3558 24.8404 33.1675 61.6257 177.775 1065.01 1051.45 181.641 62.7918 31.6727 20.4063 15.1145 11.8958 9.60026 7.88213 6.64674 5.78331 5.14686 4.67699 4.35156 4.15628 4.11126 4.25457 4.60451 5.12826 5.77904 6.52334 7.35608 8.30922 9.44013 10.8135 12.5539 14.6048 16.7876 19.0291 21.4323 24.8651 33.073 61.4803 177.675 1065.41 1051.46 181.224 62.1574 30.8739 19.4415 14.0622 10.8992 8.77694 7.29844 6.31874 5.63698 5.14177 4.77529 4.49962 4.2905 4.20893 4.31228 4.64793 5.19363 5.89598 6.70039 7.57801 8.53975 9.64864 10.9944 12.691 14.613 16.6561 18.8087 21.2039 24.7157 33.0977 61.7382 178.051 1065.5 1051.46 181.13 61.7872 30.242 18.6571 13.3066 10.3311 8.46363 7.20821 6.39664 5.83146 5.40629 5.05446 4.71441 4.43835 4.27668 4.2885 4.55079 5.07744 5.83177 6.74566 7.75869 8.84931 10.0559 11.4765 13.246 15.1826 17.1922 19.2761 21.5611 24.9325 33.2651 62.1557 178.692 1066.17 1051.46 182.054 62.6064 30.6973 18.85 13.4605 10.5875 8.85076 7.68009 6.89583 6.32738 5.85884 5.41303 5.00124 4.65385 4.40122 4.28003 4.34551 4.69634 5.36513 6.31501 7.45995 8.71789 10.0628 11.5551 13.3655 15.3023 17.2403 19.2453 21.5612 25.1522 33.8561 62.9783 179.167 1065.77 1051.46 183.586 64.5292 32.4519 20.2869 14.6602 11.638 9.80289 8.56556 7.67423 6.99578 6.39285 5.84551 5.36084 4.95154 4.62861 4.40189 4.29377 4.36226 4.74801 5.53402 6.71114 8.17205 9.80458 11.5591 13.5136 15.7765 17.948 19.9419 21.9729 25.1012 33.4505 62.5353 178.703 1066.67 1051.46 184.01 65.4941 33.6411 21.4011 15.543 12.2055 10.2116 8.9317 8.01768 7.30261 6.64308 6.04902 5.53027 5.0974 4.75672 4.50788 4.34674 4.27774 4.33518 4.65283 5.40516 6.65492 8.30493 10.1844 12.1863 14.4554 16.9001 19.2666 21.7127 25.1454 33.468 62.1629 178.126 1066.05 1051.46 175.974 63.269 32.6176 20.5142 14.9209 11.841 9.95977 8.67517 7.69866 6.90114 6.2298 5.66334 5.19436 4.81713 4.52644 4.32284 4.21652 4.22794 4.38461 4.75974 5.42722 6.48149 7.98223 9.88893 12.0577 14.4337 16.9964 19.251 21.4319 24.6457 33.0091 62.0604 178.346 1066.63 1051.46 176.251 63.4062 32.6939 20.8118 15.1096 11.9218 9.90767 8.49978 7.43932 6.6069 5.94679 5.42563 5.01451 4.68948 4.43709 4.25477 4.14941 4.14025 4.25975 4.57219 5.1269 5.98083 7.19222 8.81166 10.8248 13.153 15.8791 18.4305 20.9348 24.4209 32.9272 62.0835 178.68 1066.4 1051.47 177.069 64.3905 33.5806 21.4771 15.5222 12.1069 9.9253 8.42664 7.35048 6.55554 5.95072 5.47407 5.09248 4.79649 4.58378 4.44901 4.39194 4.4329 4.62976 5.06543 5.79566 6.86388 8.29478 10.1102 12.309 14.9172 17.5932 19.8601 22.0714 25.5618 34.674 64.479 180.178 1067.22 1051.48 176.968 64.1527 33.2024 21.0036 15.0198 11.6418 9.55041 8.17229 7.21959 6.52929 6.00306 5.58355 5.24173 4.96631 4.75423 4.60373 4.51147 4.47533 4.49522 4.59949 4.91833 5.58305 6.70374 8.33072 10.4287 12.9031 15.7338 18.0727 20.0089 22.6644 30.2539 58.2811 174.38 1066.98 1051.49 176.914 63.867 32.7552 20.5047 14.565 11.3022 9.37102 8.174 7.4056 6.89282 6.53108 6.25473 6.02212 5.80796 5.59917 5.39345 5.1999 5.04902 4.9694 4.99148 5.09355 5.39655 6.14467 7.63627 10.0374 13.2016 16.959 20.3617 22.991 25.8839 33.6641 62.6243 179.184 1068.02 1051.49 177.201 64.1051 32.7493 20.3028 14.3092 11.1245 9.34091 8.295 7.63889 7.18458 6.8326 6.53433 6.2704 6.03725 5.83855 5.68142 5.57283 5.53495 5.53001 5.50837 5.45938 5.46264 5.69289 6.48961 8.11654 10.6917 14.1656 17.3626 19.9886 23.3607 31.4504 59.4194 175.985 1068.18 1051.52 181.186 66.6084 33.8387 20.8268 14.9077 12.0682 10.6375 9.84089 9.31386 8.88636 8.48055 8.06531 7.63428 7.18981 6.73416 6.28834 5.8703 5.48115 5.11884 4.7814 4.4551 4.12714 3.82662 3.68778 4.22928 5.92801 9.17133 13.7106 16.9668 19.2727 28.1019 62.468 185.211 1069.41 1051.59 171.647 55.1537 25.0924 16.1752 13.8873 13.4845 13.3967 13.2235 12.9221 12.5096 11.998 11.4067 10.7873 10.1855 9.63386 9.17186 8.84834 8.71494 8.82315 9.23659 9.94738 10.9631 12.3526 14.1439 16.3408 19.0862 22.4882 26.7929 32.4931 41.2707 57.5264 93.4964 206.642 1070.68 537.561 23.8256 23.9752 24.0464 24.0786 24.0963 24.1071 24.1124 24.1126 24.1086 24.1008 24.0899 24.0763 24.0604 24.0429 24.0243 24.0052 23.9862 23.968 23.9511 23.9362 23.9227 23.9108 23.9006 23.8918 23.8844 23.8779 23.8722 23.8672 23.8641 23.8663 23.8789 23.9055 23.9463 550.264 537.473 23.8398 23.9147 23.874 23.819 23.7798 23.7542 23.7367 23.7239 23.7143 23.7071 23.7019 23.6985 23.6968 23.6966 23.6978 23.7004 23.7044 23.7097 23.7164 23.7244 23.7338 23.7446 23.7569 23.7709 23.787 23.8055 23.8275 23.8548 23.8896 23.9315 23.9657 23.9411 23.7693 533.513 1051.4 168.476 49.6729 22.1789 13.6628 9.99929 7.94232 6.60167 5.66801 4.99261 4.49084 4.11289 3.82889 3.62055 3.47653 3.38983 3.3563 3.37398 3.44267 3.56385 3.74074 3.97886 4.2865 4.67576 5.16418 5.77686 6.55133 7.55285 8.90705 10.9204 14.5475 23.3423 51.876 170.604 1045.21 1051.43 177.397 56.4336 25.6422 14.8997 10.0416 7.39146 5.80077 4.8155 4.17748 3.74507 3.44886 3.24787 3.11652 3.03851 3.00355 3.00546 3.04111 3.10992 3.21362 3.35641 3.5453 3.79091 4.10893 4.52286 5.0699 5.81565 6.86322 8.38892 10.8223 15.3834 25.9815 56.9808 177.125 1046.43 1051.46 179.949 59.3061 28.1874 16.9891 11.7219 8.74593 6.89452 5.70431 4.92314 4.38896 4.01239 3.74625 3.56189 3.44174 3.37508 3.35571 3.38056 3.449 3.56254 3.725 3.94295 4.22681 4.59259 5.06525 5.6858 6.52755 7.70149 9.39197 12.0445 16.9006 27.8396 59.0282 178.98 1047.68 1051.49 180.918 60.623 29.662 18.5007 13.1461 10.0235 7.99877 6.63231 5.70397 5.0526 4.57808 4.23015 3.97847 3.80457 3.69734 3.6504 3.66057 3.72709 3.85125 4.03648 4.2889 4.61836 5.04055 5.5805 6.28182 7.21923 8.49864 10.2994 13.0595 17.9992 28.9256 59.935 179.726 1048.66 1051.5 177.333 60.6949 30.5199 19.7052 14.4517 11.2845 9.13465 7.60597 6.51646 5.7326 5.15168 4.71501 4.39028 4.15779 4.00579 3.92758 3.91992 3.98198 4.11511 4.3227 4.61083 4.98939 5.47438 6.09166 6.88959 7.94259 9.34166 11.2489 14.0754 18.9899 29.7219 60.344 178.93 1049.59 1051.52 177.259 60.9391 31.0717 20.5534 15.4456 12.3014 10.0951 8.46192 7.24761 6.35248 5.67992 5.16459 4.77345 4.48648 4.29183 4.18293 4.15674 4.21246 4.35172 4.57778 4.89651 5.31751 5.85654 6.53952 7.4178 8.56343 10.0525 12.0309 14.8852 19.7288 30.1938 60.2689 177.011 1050.36 1051.53 177.677 61.2893 31.5352 21.2572 16.3105 13.2246 10.9946 9.27972 7.95206 6.94999 6.18779 5.59487 5.13773 4.79611 4.55821 4.4177 4.37191 4.41996 4.56413 4.80783 5.15698 5.62126 6.21657 6.96929 7.93471 9.18117 10.7648 12.8119 15.6826 20.4444 30.677 60.3992 176.158 1051.09 1051.54 179.442 61.7647 31.9049 21.7936 16.9865 13.9673 11.7401 9.97991 8.57543 7.48325 6.64093 5.98161 5.46697 5.07686 4.79978 4.63002 4.56549 4.60493 4.75158 5.00921 5.3837 5.88468 6.52798 7.3401 8.37916 9.70986 11.3715 13.4742 16.3555 21.045 31.0859 60.6199 176.506 1051.71 1051.55 181.806 62.4258 32.2904 22.2579 17.5597 14.6085 12.3997 10.6139 9.14977 7.97908 7.0635 6.34238 5.77353 5.33718 5.02237 4.82419 4.74115 4.77125 4.91908 5.18914 5.58748 6.12379 6.81393 7.68551 8.79866 10.2119 11.9477 14.0992 16.984 21.6035 31.4833 60.8975 177.013 1052.28 1051.55 183.21 62.7947 32.5249 22.5898 17.999 15.1205 12.9432 11.1497 9.64524 8.41343 7.43768 6.66436 6.04871 5.57166 5.22311 4.99913 4.89821 4.91815 5.06465 5.34348 5.76083 6.3265 7.0565 7.97993 9.15733 10.6406 12.4401 14.6346 17.5238 22.0863 31.8402 61.2438 178.307 1052.78 1051.56 183.44 62.9439 32.6711 22.8394 18.3516 15.548 13.41 11.6197 10.0868 8.80489 7.77726 6.95775 6.29999 5.78587 5.4063 5.15828 5.03966 5.04885 5.19255 5.47808 5.9119 6.50406 7.27078 8.24279 9.4804 11.0278 12.8842 15.117 18.013 22.5354 32.2088 61.7103 180.144 1053.25 1051.56 183.528 62.9996 32.753 23.0203 18.6266 15.8935 13.7964 12.0158 10.4647 9.14473 8.07541 7.21753 6.5241 5.97813 5.57164 5.30103 5.16505 5.16312 5.30238 5.59161 6.0378 6.65122 7.44829 8.46135 9.75021 11.3515 13.2557 15.5225 18.4312 22.9375 32.5773 62.2433 182.212 1053.66 1051.56 183.627 63.0686 32.8284 23.1687 18.851 16.1793 14.121 12.3536 10.792 9.44411 8.34059 7.44985 6.72603 6.15249 5.72173 5.43005 5.27745 5.26439 5.39856 5.68959 6.14554 6.77689 7.60021 8.64965 9.98403 11.6312 13.5733 15.8637 18.7758 23.2564 32.8261 62.443 182.707 1054.04 1051.55 183.706 63.1346 32.8968 23.2892 19.029 16.407 14.3832 12.6312 11.0668 9.70129 8.57154 7.65377 6.90489 6.30841 5.85611 5.54518 5.37727 5.35339 5.48182 5.77295 6.23598 6.88152 7.72627 8.80643 10.1797 11.865 13.8359 16.1402 19.0449 23.4872 32.9598 62.4369 182.726 1054.39 1051.55 183.775 63.2112 32.9683 23.3897 19.1672 16.5822 14.5883 12.8546 11.2948 9.92038 8.77195 7.83294 7.06363 6.44726 5.97584 5.64789 5.4663 5.43262 5.55575 5.84676 6.31596 6.97409 7.83791 8.94587 10.3547 12.0736 14.068 16.3787 19.2677 23.6651 33.0405 62.3763 182.7 1054.71 1051.55 183.79 63.2572 33.0215 23.4587 19.2564 16.6963 14.7283 13.0166 11.4696 10.0955 8.93611 7.98226 7.19813 6.56606 6.07902 5.73723 5.54445 5.50288 5.62217 5.91405 6.38953 7.05977 7.94158 9.07548 10.5178 12.2692 14.286 16.6004 19.4685 23.8162 33.0949 62.2944 182.663 1055.02 1051.54 183.743 63.2568 33.0437 23.4841 19.2857 16.7416 14.7998 13.1171 11.5931 10.2286 9.06499 8.1016 7.30738 6.66374 6.165 5.81296 5.6122 5.56564 5.68372 5.97882 6.46248 7.14647 8.04753 9.2078 10.684 12.4702 14.5127 16.8328 19.6784 23.9724 33.1574 62.2383 182.665 1055.33 1051.54 183.606 63.1731 33.0075 23.4459 19.2425 16.7132 14.8033 13.1595 11.6691 10.3227 9.1598 8.19126 7.39091 6.73959 6.2333 5.87479 5.66958 5.62135 5.74135 6.04254 6.53701 7.23722 8.15994 9.34805 10.8596 12.6857 14.7618 17.095 19.9222 24.1632 33.2596 62.2461 182.74 1055.66 1051.53 183.39 62.9978 32.8988 23.3345 19.1276 16.6215 14.7551 13.1611 11.7125 10.3893 9.22898 8.25715 7.45351 6.7974 6.28647 5.92442 5.71768 5.6707 5.79546 6.10536 6.61308 7.33191 8.27885 9.49655 11.0454 12.9177 15.0374 17.3958 20.2161 24.4128 33.4337 62.3611 182.925 1056 1051.53 183.119 62.7407 32.7161 23.156 18.9602 16.4943 14.6851 13.1487 11.7446 10.4443 9.28499 8.30916 7.50285 6.84298 6.32867 5.96452 5.75775 5.71351 5.84435 6.16399 6.68561 7.42349 8.39513 9.64205 11.228 13.1501 15.3227 17.7215 20.5539 24.7255 33.6925 62.5969 183.22 1056.35 1051.53 182.86 62.4524 32.4877 22.9453 18.7822 16.374 14.6317 13.1542 11.7901 10.5065 9.34341 8.36043 7.54944 6.88452 6.36592 5.99898 5.79159 5.74935 5.88526 6.21315 6.74654 7.50079 8.49411 9.76636 11.3848 13.3545 15.5835 18.0366 20.9064 25.0839 34.0282 62.9368 183.586 1056.69 1051.54 182.675 62.1966 32.2611 22.7506 18.6436 16.3062 14.6316 13.2044 11.8679 10.5915 9.42015 8.42437 7.60314 6.93001 6.40433 6.0319 5.82099 5.77746 5.91451 6.24609 6.78584 7.54974 8.55695 9.84566 11.4857 13.4904 15.7682 18.2822 21.2161 25.4403 34.3986 63.3145 183.935 1056.99 1051.54 182.637 62.0564 32.0994 22.6257 18.5893 16.3267 14.7118 13.3189 11.9917 10.7075 9.52084 8.50793 7.67228 6.98724 6.4504 6.06801 5.84867 5.79828 5.93004 6.25797 6.79558 7.55897 8.56808 9.85988 11.5045 13.5201 15.8232 18.3899 21.4062 25.7206 34.7314 63.6264 184.15 1057.22 1051.54 182.799 62.1091 32.063 22.615 18.6492 16.4532 14.8811 13.5009 12.1623 10.8548 9.64472 8.61317 7.76105 7.05972 6.50717 6.11 5.87691 5.8135 5.9328 6.24883 6.77483 7.52668 8.52445 9.80512 11.4357 13.432 15.7245 18.3149 21.4101 25.8465 34.9497 63.7857 184.161 1057.35 1051.54 183.136 62.3681 32.1732 22.7315 18.8255 16.6782 15.1253 13.7332 12.3631 11.0205 9.78307 8.73349 7.86411 7.14379 6.57294 6.15802 5.90746 5.8263 5.92738 6.2248 6.73158 7.46319 8.4394 9.69882 11.3021 13.2532 15.4954 18.0637 21.2021 25.759 34.983 63.7345 183.948 1057.38 1051.54 183.546 62.7746 32.4057 22.9528 19.0895 16.9669 15.4059 13.9775 12.5597 11.1767 9.91661 8.85147 7.9652 7.22786 6.64036 6.20841 5.94001 5.83973 5.92035 6.19636 6.68074 7.38869 8.33956 9.57563 11.1495 13.0433 15.2067 17.7031 20.8219 25.4501 34.7885 63.4489 183.529 1057.33 1051.53 183.906 63.2209 32.7045 23.2333 19.3913 17.2629 15.6641 14.1796 12.707 11.2872 10.0146 8.94231 8.04547 7.2976 6.69883 6.25419 5.97138 5.85477 5.91737 6.17425 6.63871 7.32599 8.25534 9.47487 11.0296 12.8725 14.9491 17.3381 20.3674 24.9778 34.3686 62.9307 182.945 1057.25 1051.52 184.107 63.5918 33.0086 23.5248 19.6737 17.4996 15.8317 14.2793 12.7581 11.3173 10.0489 8.98301 8.08659 7.33786 6.73633 6.28659 5.99638 5.87032 5.92195 6.16715 6.61988 7.29574 8.21438 9.43166 10.9872 12.8015 14.8054 17.076 19.962 24.454 33.7871 62.216 182.239 1057.2 1051.5 184.115 63.8227 33.2816 23.7892 19.8808 17.6114 15.8479 14.23 12.6827 11.2479 10.0047 8.96044 8.07711 7.33852 6.74412 6.29863 6.01035 5.88473 5.93613 6.1814 6.63542 7.31465 8.23971 9.47505 11.0569 12.874 14.8359 17.0022 19.721 24.0148 33.1695 61.4114 181.522 1057.22 1051.49 183.961 63.9081 33.506 23.9868 19.9557 17.5455 15.6784 14.0183 12.4816 11.0864 9.8869 8.87592 8.0167 7.29795 6.71985 6.28805 6.0119 5.89816 5.96224 6.2218 6.69263 7.39217 8.34906 9.63134 11.2612 13.1135 15.0733 17.1676 19.7244 23.7778 32.6612 60.6705 180.941 1057.37 1051.48 183.713 63.8796 33.6617 24.0651 19.8506 17.2836 15.3382 13.679 12.1924 10.8618 9.71642 8.74497 7.91658 7.22367 6.66846 6.25832 6.00401 5.91394 6.00475 6.2948 6.80064 7.54047 8.54968 9.90123 11.6087 13.5346 15.5352 17.5972 20.0159 23.8247 32.4001 60.1903 180.709 1057.68 1051.48 183.413 63.7491 33.6976 23.9635 19.5457 16.855 14.8873 13.2784 11.8727 10.6164 9.52413 8.59037 7.79228 7.12667 6.59819 6.21595 5.99203 5.9364 6.06696 6.4027 6.96095 7.76096 8.84276 10.2848 12.099 14.1351 16.2182 18.2905 20.6075 24.1996 32.499 60.1921 181.078 1058.18 1051.47 183.054 63.4818 33.5398 23.6437 19.0692 16.333 14.4105 12.8908 11.578 10.3923 9.33894 8.4314 7.65961 7.02018 6.51998 6.16972 5.98241 5.96932 6.14942 6.54222 7.16586 8.04149 9.21132 10.7599 12.706 14.8856 17.0896 19.2135 21.4705 24.8947 33.006 60.8265 182.184 1058.84 1051.47 182.61 63.0311 33.1451 23.131 18.5028 15.8143 13.9915 12.5777 11.3503 10.2167 9.183 8.28849 7.53564 6.91837 6.44514 6.12767 5.97926 6.01183 6.24503 6.69869 7.39189 8.34881 9.61195 11.2726 13.3645 15.7121 18.0708 20.2847 22.5215 25.8226 33.841 62.043 183.904 1059.59 1051.47 182.078 62.3967 32.55 22.5192 17.9553 15.3882 13.6913 12.3776 11.2138 10.1081 9.07451 8.1795 7.43609 6.8343 6.38332 6.09491 5.9818 6.05567 6.33618 6.84306 7.5963 8.6243 9.9697 11.7288 13.9561 16.4766 19.0155 21.3617 23.6301 26.8657 34.8893 63.6156 185.749 1060.27 1051.47 181.496 61.643 31.8615 21.9296 17.522 15.1146 13.5438 12.3098 11.1813 10.079 9.03171 8.12119 7.37379 6.77923 6.34226 6.07364 5.98495 6.08695 6.39839 6.93822 7.72646 8.79455 10.1907 12.0101 14.3244 16.9914 19.718 22.2399 24.6005 27.8136 35.8871 65.1924 187.524 1060.75 1051.48 180.991 60.9265 31.2257 21.4708 17.263 15.0203 13.5596 12.3802 11.2605 10.1394 9.06367 8.12655 7.36439 6.76542 6.32889 6.06473 5.98325 6.09349 6.41207 6.95598 7.74465 8.80986 10.2023 12.0134 14.3345 17.0778 19.9653 22.7058 25.2528 28.4966 36.429 65.2669 183.672 1060.9 1051.5 180.723 60.4143 30.7669 21.2086 17.2005 15.106 13.7331 12.5849 11.4527 10.2958 9.17914 8.2061 7.41795 6.80006 6.3478 6.0704 5.97681 6.07372 6.37474 6.89379 7.64797 8.66631 9.99671 11.7225 13.951 16.6616 19.635 22.6085 25.4777 28.9679 36.9009 65.2819 181.674 1060.74 1051.51 180.792 60.2328 30.5586 21.164 17.3274 15.356 14.0491 12.913 11.7525 10.5469 9.37937 8.36219 7.53719 6.88633 6.40295 6.09578 5.9726 6.03768 6.30136 6.774 7.46878 8.40922 9.63584 11.2186 13.2702 15.8304 18.7689 21.9136 25.1806 29.165 37.4475 66.0144 183.686 1060.32 1051.53 181.24 60.4464 30.6215 21.3234 17.6186 15.7441 14.4847 13.3455 12.1439 10.879 9.65225 8.58503 7.71519 7.02069 6.4946 6.14537 5.98003 6.00073 6.21513 6.63041 7.25524 8.10644 9.21487 10.6349 12.4719 14.8003 17.5768 20.7538 24.3552 28.9292 37.7123 66.3401 186.295 1059.75 1051.54 181.997 61.0301 30.9261 21.6477 18.0366 16.2364 15.0084 13.8524 12.5976 11.2631 9.97073 8.8511 7.9334 7.19014 6.61568 6.21824 6.00444 5.97489 6.13553 6.49158 7.04783 7.81483 8.81392 10.0854 11.7188 13.7946 16.326 19.381 23.1406 28.2323 37.6152 66.1755 185.793 1059.14 1051.54 182.879 61.8518 31.3933 22.0754 18.5323 16.7896 15.5771 14.3885 13.0664 11.6531 10.2918 9.12216 8.15982 7.36985 6.74887 6.30463 6.04343 5.96471 6.07379 6.3754 6.872 7.56957 8.48183 9.63853 11.1096 12.9594 15.2243 18.049 21.762 27.1573 37.1069 65.7534 185.078 1058.55 1051.53 183.662 62.7181 31.9212 22.5402 19.0551 17.3561 16.1386 14.8947 13.4889 11.991 10.5645 9.35292 8.35497 7.52756 6.86953 6.38755 6.08732 5.96735 6.03306 6.28989 6.73967 7.386 8.2376 9.3184 10.6797 12.3567 14.3833 16.9381 20.4491 25.8881 36.2157 65.044 184.258 1058.02 1051.53 184.182 63.4424 32.416 22.9915 19.5636 17.8888 16.6334 15.3019 13.7937 12.2135 10.7393 9.49998 8.47907 7.6305 6.95197 6.44787 6.12295 5.97525 6.01081 6.23664 6.65534 7.27004 8.08706 9.12945 10.4328 11.9965 13.8354 16.1327 19.3653 24.6378 35.0822 64.0638 183.328 1057.6 1051.52 184.386 63.9192 32.8327 23.4189 20.0383 18.3451 16.9985 15.5402 13.9179 12.2688 10.7758 9.53228 8.508 7.65959 6.98038 6.47261 6.14021 5.98135 6.00305 6.21426 6.61939 7.22262 8.02992 9.0683 10.3606 11.8644 13.5677 15.643 18.5814 23.5609 33.8775 62.8841 182.309 1057.29 1051.51 184.347 64.1706 33.201 23.8543 20.4781 18.6875 17.1757 15.5528 13.8211 12.135 10.6606 9.4435 8.43945 7.61209 6.95163 6.45852 6.13606 5.98317 6.00818 6.2221 6.63195 7.24423 8.06625 9.13277 10.4545 11.9418 13.5539 15.4462 18.1058 22.7361 32.7444 61.6066 181.229 1057.09 1051.5 184.175 64.2904 33.587 24.3302 20.8674 18.8697 17.119 15.3132 13.501 11.8301 10.4135 9.24791 8.28591 7.49869 6.87436 6.41207 6.11512 5.98407 6.0289 6.26243 6.69451 7.33533 8.20057 9.33069 10.712 12.2145 13.772 15.5173 17.9236 22.1908 31.7793 60.3439 180.174 1057.02 1051.49 183.983 64.3976 34.0509 24.8368 21.1522 18.8392 16.8109 14.8449 13.0043 11.4028 10.073 8.97716 8.07589 7.34284 6.76657 6.34656 6.08729 5.99185 6.07232 6.34302 6.81577 7.50335 8.4383 9.66489 11.1309 12.677 14.2099 15.8365 18.0132 21.9237 31.0359 59.1866 179.217 1057.08 1051.49 183.839 64.5705 34.5917 25.2976 21.2512 18.5595 16.272 14.2111 12.4112 10.9149 9.68659 8.67222 7.84042 7.16828 6.64645 6.27602 6.06356 6.01541 6.14632 6.4722 7.00648 7.7638 8.79248 10.1399 11.7142 13.3258 14.8567 16.3868 18.3544 21.9254 30.5499 58.2306 178.469 1057.3 1051.48 183.759 64.8117 35.1227 25.5866 21.0863 18.0314 15.5669 13.5001 11.8002 10.4225 9.29498 8.36599 7.6054 6.995 6.5293 6.21243 6.05384 6.06338 6.25889 6.65811 7.27638 8.13079 9.27819 10.7612 12.4582 14.1507 15.6983 17.1518 18.929 22.183 30.3426 57.5682 178.065 1057.71 1051.47 183.73 65.0656 35.5104 25.5892 20.6338 17.3133 14.7915 12.8018 11.2274 9.96562 8.93307 8.08282 7.3879 6.83546 6.42477 6.16398 6.06574 6.14352 6.41843 6.90951 7.63302 8.61247 9.8995 11.5246 13.3563 15.1463 16.7273 18.1206 19.7257 22.6955 30.4576 57.3576 178.25 1058.34 1051.45 183.692 65.2169 35.6156 25.2527 19.9446 16.5069 14.0379 12.1741 10.726 9.56731 8.61824 7.83512 7.19648 6.69576 6.33766 6.13477 6.10291 6.25898 6.62763 7.22884 8.07863 9.19685 10.6346 12.4227 14.397 16.2966 17.9241 19.2721 20.7283 23.4642 30.9536 57.8206 179.356 1059.24 1051.44 183.552 65.1267 35.3477 24.6046 19.1184 15.7098 13.3673 11.6441 10.3121 9.24105 8.35802 7.6268 7.03329 6.57748 6.26936 6.12576 6.16509 6.40726 6.88065 7.6059 8.59131 9.85159 11.459 13.4222 15.535 17.5557 19.2466 20.5669 21.9046 24.4722 31.8498 59.1067 181.567 1060.37 1051.43 183.238 64.711 34.7172 23.7505 18.2686 14.9976 12.8213 11.2347 9.99779 8.99159 8.15405 7.45884 6.8994 6.48156 6.21972 6.13414 6.24487 6.57405 7.15349 8.0046 9.12136 10.5276 12.3125 14.4329 16.69 18.8473 20.6246 21.9346 23.1855 25.6641 33.1242 61.1956 184.599 1061.6 1051.42 182.708 63.9665 33.8226 22.8293 17.4961 14.4263 12.4255 10.9587 9.7868 8.81745 8.00635 7.33281 6.79673 6.40855 6.18591 6.15122 6.32491 6.73 7.40025 8.35637 9.58838 11.136 13.0835 15.3509 17.756 20.0593 21.9473 23.2587 24.4228 26.833 34.5493 63.9342 188.076 1062.71 1051.42 181.984 62.9761 32.81 21.9676 16.8728 14.025 12.1849 10.8119 9.67822 8.72183 7.91853 7.25224 6.72771 6.35808 6.16247 6.16379 6.38165 6.83876 7.56943 8.59369 9.91493 11.5712 13.6325 16.041 18.5978 21.0556 23.0775 24.4075 25.4618 27.7079 35.473 65.4653 188.783 1063.49 1051.42 181.175 61.8992 31.8387 21.2634 16.4402 13.8028 12.0965 10.7894 9.67336 8.70778 7.89336 7.22183 6.69595 6.3303 6.14429 6.15983 6.39479 6.87058 7.62131 8.66763 10.0244 11.7291 13.8545 16.3736 19.0736 21.6952 23.8795 25.2774 26.2443 28.2854 36.0061 66.0342 183.982 1063.82 1051.43 180.405 60.9 31.0274 20.7646 16.2071 13.7506 12.1475 10.8829 9.7667 8.77716 7.93797 7.24727 6.70504 6.32659 6.1305 6.13628 6.35905 6.81757 7.54415 8.56202 9.89248 11.5728 13.6937 16.2638 19.074 21.8571 24.2368 25.7948 26.7717 28.649 36.2852 66.3777 183.223 1063.74 1051.44 179.807 60.1041 30.4359 20.4745 16.1528 13.8445 12.3211 11.0845 9.95653 8.93106 8.05433 7.33096 6.75791 6.35071 6.12646 6.10146 6.28744 6.69902 7.36428 8.30728 9.55495 11.1434 13.1778 15.7127 18.5664 21.4781 24.0675 25.8953 27.0594 28.9154 36.3965 66.231 182.455 1063.35 1051.45 179.478 59.5928 30.0847 20.377 16.2483 14.0603 12.601 11.3838 10.2374 9.16738 8.24183 7.4736 6.85711 6.40779 6.14104 6.06997 6.20282 6.54921 7.1308 7.969 9.09274 10.5388 12.4146 14.8136 17.6145 20.5816 23.3604 25.5436 27.0998 29.1607 36.4928 65.8065 181.553 1062.78 1051.47 179.444 59.3833 29.9552 20.439 16.4618 14.3715 12.9661 11.7644 10.5983 9.47964 8.49509 7.67109 7.00187 6.50084 6.18176 6.05528 6.12676 6.40103 6.89277 7.61788 8.60139 9.88024 11.5516 13.7299 16.3727 19.2933 22.2035 24.7677 26.8684 29.3752 36.6668 65.3356 180.733 1062.16 1051.49 179.683 59.4479 30.0069 20.6211 16.7607 14.7513 13.3938 12.2069 11.0217 9.85363 8.80238 7.91458 7.18728 6.62848 6.25129 6.06496 6.07278 6.2755 6.68171 7.30132 8.15277 9.26767 10.7239 12.6404 15.0451 17.8209 20.7728 23.6591 26.3513 29.5122 37.0107 65.0055 179.989 1061.54 1051.5 180.14 59.7433 30.2003 20.8894 17.1175 15.176 13.8621 12.6903 11.4873 10.2693 9.14756 8.19199 7.40336 6.78381 6.34636 6.09963 6.04557 6.18155 6.51127 7.03946 7.77784 8.75079 10.0136 11.6751 13.8116 16.3764 19.2674 22.3462 25.5457 29.4436 37.5331 65.6462 181.636 1060.96 1051.52 180.726 60.1981 30.4866 21.2088 17.5061 15.6232 14.349 13.1911 11.9708 10.7027 9.50879 8.48419 7.63406 6.95417 6.45787 6.15368 6.0427 6.11957 6.38408 6.83661 7.48296 8.34061 9.44732 10.8926 12.7734 15.1023 17.8502 20.9764 24.5132 29.0351 37.742 66.1493 186.067 1060.44 1051.53 181.344 60.7303 30.8171 21.5469 17.903 16.0727 14.8331 13.6852 12.4453 11.1267 9.86111 8.76908 7.86025 7.12369 6.57321 6.21749 6.05711 6.08444 6.29619 6.68924 7.26421 8.03179 9.01974 10.2968 11.959 14.0613 16.6231 19.6842 23.3857 28.3585 37.5969 65.984 185.777 1059.98 1051.53 181.926 61.2766 31.1568 21.8811 18.2907 16.5076 15.2959 14.1505 12.8859 11.5156 10.1808 9.02546 8.06324 7.27652 6.67932 6.28048 6.08013 6.06865 6.24034 6.58932 7.11212 7.81388 8.71432 9.86528 11.3557 13.2609 15.6291 18.5586 22.2869 27.5375 37.216 65.6412 185.21 1059.59 1051.54 182.417 61.7791 31.477 22.195 18.6564 16.9154 15.7221 14.5684 13.2709 11.8471 10.4473 9.23468 8.22656 7.39878 6.76471 6.33314 6.10361 6.06479 6.20898 6.5281 7.01549 7.67206 8.51136 9.57238 10.9347 12.68 14.8704 17.6406 21.3033 26.6822 36.6836 65.2044 184.635 1059.26 1051.54 182.794 62.2054 31.7632 22.4814 18.9922 17.2854 16.0982 14.9227 13.5826 12.1037 10.6451 9.38339 8.33853 7.48083 6.82153 6.3689 6.12169 6.06713 6.19585 6.49803 6.96457 7.59314 8.39272 9.39322 10.665 12.287 14.325 16.934 20.479 25.8741 36.0783 64.7109 184.088 1059.01 1051.54 183.071 62.5558 32.021 22.747 19.301 17.6162 16.4193 15.2064 13.8136 12.2787 10.7691 9.46769 8.39593 7.51977 6.84708 6.38507 6.13144 6.07212 6.19643 6.49313 6.95138 7.56651 8.34414 9.30866 10.5219 12.0539 13.9681 16.4289 19.8355 25.1741 35.4777 64.2088 183.599 1058.82 1051.54 183.253 62.8295 32.2541 22.9978 19.5859 17.9067 16.6803 15.4117 13.9554 12.3647 10.8142 9.48451 8.39685 7.5143 6.84056 6.38111 6.13205 6.07813 6.20761 6.50821 6.96798 7.58073 8.34979 9.29705 10.4762 11.9437 13.7576 16.0875 19.3537 24.5952 34.9171 63.7084 183.147 1058.69 1051.54 183.355 63.0351 32.4694 23.2419 19.8516 18.1574 16.878 15.5346 14.0046 12.3599 10.7812 9.43851 8.34827 7.47212 6.80907 6.36268 6.12754 6.08761 6.23051 6.54319 7.01291 7.63234 8.40308 9.34661 10.5088 11.9298 13.6613 15.8755 19.006 24.1285 34.4114 63.2247 182.742 1058.61 1051.54 183.395 63.1885 32.6782 23.4873 20.1004 18.3636 17.005 15.57 13.9625 12.2715 10.6806 9.34011 8.25919 7.39995 6.75728 6.33278 6.1195 6.1009 6.26428 6.59609 7.08316 7.71743 8.49928 9.45157 10.6125 12.0025 13.6659 15.7765 18.7775 23.7706 33.9775 62.7833 182.397 1058.58 1051.54 183.381 63.2981 32.8844 23.7343 20.3269 18.5171 17.0561 15.5197 13.8358 12.1079 10.5205 9.19728 8.13698 7.3043 6.69082 6.29588 6.11114 6.11987 6.30946 6.66611 7.17654 7.83221 8.63247 9.60251 10.7724 12.1417 13.7485 15.7679 18.6488 23.5089 33.6115 62.3826 182.108 1058.58 1051.53 183.329 63.3771 33.0906 23.9741 20.5184 18.609 17.0292 15.3876 13.6345 11.8844 10.3177 9.02621 7.995 7.19527 6.61736 6.2575 6.10622 6.14682 6.3671 6.75337 7.29263 7.97624 8.80274 9.7994 10.9857 12.3389 13.8939 15.8297 18.5998 23.3315 33.3171 62.0331 181.878 1058.63 1051.53 183.26 63.437 33.2958 24.1997 20.6689 18.6392 16.9323 15.189 13.3779 11.6201 10.0869 8.8364 7.8411 7.0796 6.54168 6.22114 6.10729 6.18344 6.43792 6.85716 7.42862 8.14429 9.00796 10.0425 11.246 12.585 14.0938 15.9534 18.62 23.2258 33.0862 61.7401 181.718 1058.7 1051.53 183.194 63.5072 33.514 24.4165 20.786 18.6203 16.7808 14.9386 13.0802 11.3292 9.84016 8.63663 7.68223 6.96308 6.46854 6.19041 6.11687 6.23146 6.52323 6.97891 7.58639 8.33817 9.24449 10.3225 11.5468 12.8752 14.3425 16.1326 18.704 23.1919 32.9277 61.5178 181.632 1058.81 1051.52 183.138 63.5913 33.7452 24.6239 20.8697 18.5544 16.5796 14.6442 12.7519 11.0264 9.58718 8.43166 7.52317 6.85018 6.40154 6.16784 6.13656 6.29159 6.62301 7.11791 7.76478 8.55673 9.51062 10.6365 11.8835 13.2028 14.6314 16.3568 18.8401 23.217 32.8315 61.3648 181.632 1058.94 1051.52 183.078 63.6737 33.9725 24.8079 20.9114 18.4391 16.3339 14.3185 12.4074 10.7204 9.33595 8.23091 7.37125 6.74576 6.34368 6.15517 6.16721 6.36402 6.73674 7.27271 7.96151 8.7979 9.80429 10.9802 12.2493 13.56 14.9531 16.6187 19.0193 23.2899 32.7821 61.2549 181.678 1059.11 1051.51 183.017 63.7554 34.1898 24.96 20.9063 18.2763 16.0517 13.9734 12.0601 10.421 9.09446 8.04069 7.23 6.65179 6.29607 6.15303 6.20925 6.44927 6.8653 7.44203 8.16907 9.05667 10.1243 11.3467 12.6368 13.9421 15.3043 16.9146 19.237 23.4045 32.774 61.1856 181.768 1059.3 1051.51 182.956 63.8383 34.3918 25.0753 20.8562 18.0737 15.7446 13.6221 11.7222 10.1369 8.868 7.86398 7.10094 6.56895 6.25882 6.16116 6.26222 6.5467 7.0077 7.62514 8.38819 9.32724 10.4589 11.7296 13.0431 14.3464 15.6818 17.2409 19.4887 23.5561 32.8031 61.1557 181.905 1059.51 1051.5 182.898 63.9213 34.5732 25.1511 20.7645 17.8403 15.4232 13.2747 11.4028 9.87329 8.65793 7.70116 6.98408 6.49683 6.23109 6.17839 6.3253 6.6572 7.16275 7.81547 8.61448 9.60553 10.8036 12.124 13.4627 14.7677 16.0808 17.5932 19.7705 23.7409 32.8668 61.1652 182.087 1059.75 1051.5 182.84 63.9984 34.7264 25.1852 20.6354 17.5848 15.0977 12.9386 11.1064 9.62985 8.46274 7.55227 6.87945 6.43491 6.21168 6.20269 6.39512 6.77556 7.32528 8.01119 8.84677 9.88988 11.1552 12.525 13.8903 15.2012 16.4979 17.9694 20.0811 23.9587 32.9672 61.2207 182.321 1060.01 1051.49 182.777 64.0639 34.8472 25.1784 20.4746 17.3148 14.7757 12.6187 10.8305 9.40599 8.28478 7.41778 6.7864 6.38207 6.19927 6.23243 6.46922 6.89718 7.48964 8.20841 9.08341 10.1789 11.5058 12.9217 14.3144 15.6372 16.9256 18.3634 20.415 24.2037 33.0974 61.3131 182.594 1060.28 1051.49 182.704 64.1099 34.9299 25.1301 20.2844 17.0338 14.4597 12.3161 10.5746 9.20023 8.12216 7.29568 6.70297 6.33652 6.19254 6.26739 6.54952 7.02016 7.64588 8.39835 9.31442 10.4629 11.8475 13.3094 14.7328 16.0742 17.3618 18.7729 20.77 24.4742 33.2584 61.4508 182.919 1060.57 1051.48 182.619 64.1303 34.9694 25.0396 20.0677 16.7454 14.1528 12.0321 10.3385 9.01142 7.97343 7.18433 6.62718 6.29555 6.18742 6.30127 6.62687 7.13697 7.79265 8.57898 9.53558 10.7356 12.1763 13.684 15.1408 16.5067 17.801 19.1928 21.1413 24.7663 33.4481 61.6352 183.294 1060.87 1051.48 182.52 64.1199 34.9621 24.9079 19.8282 16.4535 13.8574 11.7676 10.1214 8.83831 7.8374 7.08276 6.55825 6.25843 6.183 6.33255 6.69814 7.24404 7.92756 8.74679 9.74291 10.9931 12.4882 14.0411 15.5338 16.93 18.2387 19.6185 21.5249 25.077 33.6666 61.8713 183.721 1061.17 1051.47 182.412 64.0793 34.9102 24.7415 19.5745 16.1656 13.5784 11.5261 9.92473 8.68091 7.7143 6.99114 6.4959 6.22425 6.1776 6.3586 6.75954 7.33719 8.04648 8.89692 9.93085 11.2292 12.7765 14.3746 15.9057 17.3383 18.6693 20.0449 21.9155 25.4003 33.9065 62.148 184.179 1061.47 1051.47 182.283 64.0009 34.8129 24.5455 19.3132 15.8873 13.3187 11.307 9.7478 8.53984 7.60479 6.90961 6.43976 6.19212 6.16973 6.37716 6.80789 7.41272 8.14534 9.02451 10.0936 11.437 13.0341 14.6767 16.2486 17.7239 19.0858 20.4653 22.3066 25.7294 34.1602 62.4557 184.654 1061.76 1051.47 182.148 63.8945 34.6803 24.3311 19.0542 15.6258 13.083 11.1126 9.59311 8.4177 7.5103 6.83884 6.38984 6.16135 6.15801 6.38633 6.84043 7.46686 8.22012 9.12499 10.226 11.6107 13.2547 14.9414 16.5564 18.0801 19.4812 20.8731 22.6922 26.0591 34.4227 62.7863 185.129 1062.02 1051.46 182.012 63.7676 34.5235 24.1112 18.8085 15.3891 12.8763 10.9462 9.463 8.31605 7.43179 6.77928 6.34608 6.13135 6.14117 6.38431 6.85379 7.49403 8.26486 9.19152 10.3202 11.7411 13.4285 15.1597 16.8203 18.398 19.8466 21.2596 23.0638 26.3798 34.6809 63.1157 185.573 1062.26 1051.46 181.889 63.6397 34.3629 23.9035 18.5883 15.184 12.7021 10.8096 9.35875 8.23583 7.37008 6.73155 6.30877 6.1018 6.11791 6.36756 6.8446 7.49352 8.27653 9.21966 10.3703 11.8208 13.5474 15.3237 17.0328 18.6696 20.1729 21.6151 23.412 26.6826 34.9245 63.4237 185.955 1062.47 1051.46 181.783 63.518 34.2088 23.7151 18.3962 15.0102 12.5589 10.7018 9.2793 8.17579 7.32383 6.69459 6.27728 6.07248 6.08801 6.33534 6.81152 7.46352 8.25237 9.20544 10.3707 11.8419 13.6013 15.4231 17.1847 18.8859 20.4508 21.9302 23.7273 26.9573 35.1395 63.6829 186.246 1062.64 1051.46 181.696 63.4135 34.0711 23.5509 18.2332 14.8674 12.4457 10.6205 9.22225 8.13402 7.29188 6.66789 6.25179 6.04443 6.05375 6.29134 6.75868 7.40769 8.19577 9.15145 10.3228 11.8044 13.588 15.4527 17.2704 19.0389 20.6705 22.1963 24.0029 27.1992 35.322 63.8845 186.443 1062.77 1051.45 181.624 63.3238 33.9475 23.4069 18.0955 14.7513 12.3578 10.561 9.1825 8.10556 7.26988 6.64825 6.23064 6.01786 6.01756 6.2411 6.69254 7.33092 8.11314 9.06438 10.2333 11.7146 13.5116 15.4126 17.2855 19.1213 20.8228 22.404 24.2325 27.4058 35.4716 64.0245 186.551 1062.85 1051.45 181.561 63.2364 33.8259 23.275 17.977 14.6563 12.2881 10.5144 9.15154 8.08338 7.25252 6.63212 6.21213 5.99299 5.98181 6.18946 6.62073 7.2427 8.01512 8.9557 10.1141 11.5852 13.3839 15.3097 17.2316 19.132 20.9045 22.5478 24.4098 27.5754 35.5964 64.1217 186.598 1062.89 1051.45 181.488 63.1339 33.7061 23.159 17.8763 14.575 12.2275 10.4728 9.12318 8.06286 7.23644 6.61721 6.195 5.96991 5.9483 6.1401 6.55002 7.15324 7.91305 8.83854 9.98004 11.433 13.2215 15.1561 17.1156 19.0729 20.9153 22.6282 24.5364 27.7092 35.7 64.1931 186.613 1062.89 1051.45 181.408 63.061 33.614 23.061 17.7841 14.4968 12.1685 10.4309 9.09332 8.04119 7.21958 6.60197 6.1782 5.94818 5.91763 6.09538 6.48533 7.06985 7.81608 8.72441 9.84526 11.275 13.0422 14.967 16.9472 18.9475 20.8526 22.6409 24.6129 27.8161 35.7975 64.257 186.608 1062.86 1051.45 181.394 63.0032 33.5128 22.9499 17.6816 14.4121 12.1059 10.3866 9.06194 8.01871 7.20225 6.58644 6.16146 5.92728 5.88929 6.05538 6.4284 6.99629 7.72963 8.62127 9.72094 11.1258 12.8639 14.7617 16.7427 18.7658 20.7177 22.5782 24.6281 27.8888 35.8941 64.3424 186.607 1062.81 1051.46 181.356 62.917 33.3892 22.8251 17.5729 14.3265 12.0451 10.3455 9.03435 7.99965 7.18752 6.57257 6.14559 5.90686 5.86177 6.01767 6.37662 6.9306 7.65279 8.52994 9.61048 10.9913 12.6965 14.5578 16.5231 18.5469 20.5228 22.4406 24.5706 27.9105 35.9719 64.428 186.598 1062.76 1051.46 181.315 62.8203 33.2558 22.6983 17.4691 14.2502 11.9952 10.3152 9.01623 7.98819 7.17832 6.56221 6.13138 5.88658 5.83343 5.97905 6.32524 6.86717 7.57999 8.44555 9.51145 10.8693 12.5398 14.3669 16.3083 18.3154 20.292 22.2446 24.4428 27.8676 36.0087 64.494 186.559 1062.7 1051.46 181.29 62.7336 33.1314 22.5878 17.3868 14.196 11.9657 10.3021 9.01171 7.98692 7.17624 6.55623 6.11912 5.86609 5.80304 5.93704 6.26999 6.79984 7.50338 8.35826 9.41123 10.7498 12.3935 14.1968 16.1154 18.0963 20.0571 22.0238 24.2737 27.7789 36.0105 64.5501 186.527 1062.65 1051.46 181.293 62.6758 33.0345 22.5086 17.3359 14.17 11.9593 10.307 9.02077 7.99551 7.18095 6.55444 6.10871 5.84525 5.77017 5.89055 6.20854 6.72486 7.41801 8.26151 9.30106 10.623 12.2489 14.0387 15.9419 17.8988 19.8391 21.8066 24.0913 27.6659 35.9921 64.6024 186.483 1062.62 1051.47 181.328 62.6553 32.9731 22.4651 17.3177 14.171 11.9737 10.3272 9.04088 8.01184 7.19085 6.55579 6.09964 5.82402 5.73514 5.83999 6.1409 6.64139 7.32217 8.15252 9.17663 10.4821 12.0962 13.8812 15.7792 17.7224 19.6479 21.6119 23.9176 27.5442 35.9498 64.6217 186.419 1062.59 1051.47 181.388 62.668 32.9444 22.452 17.3251 14.1913 12.0014 10.3559 9.06603 8.03096 7.20211 6.55756 6.09033 5.80192 5.69854 5.78697 6.06951 6.55193 7.21804 8.03366 9.04024 10.3264 11.9282 13.7136 15.6159 17.5584 19.4816 21.4474 23.768 27.4304 35.8942 64.6084 186.339 1062.56 1051.47 181.472 62.7138 32.9461 22.4634 17.3506 14.2234 12.035 10.3864 9.09067 8.04831 7.21109 6.55704 6.07901 5.77828 5.66092 5.73343 5.99809 6.46138 7.11044 7.91087 8.89904 10.1613 11.7433 13.5299 15.4414 17.3937 19.3284 21.3074 23.6448 27.3329 35.8341 64.5675 186.249 1062.52 1051.47 181.554 62.7689 32.9592 22.4817 17.3784 14.2537 12.063 10.4092 9.10699 8.05765 7.21292 6.5506 6.06326 5.75188 5.62237 5.68077 5.9291 6.3737 7.00494 7.7895 8.75802 9.99463 11.5525 13.3345 15.2535 17.2193 19.1748 21.1782 23.5394 27.2504 35.7737 64.5056 186.154 1062.47 1051.47 181.632 62.8259 32.9749 22.4968 17.3986 14.2735 12.0785 10.4189 9.11086 8.05579 7.20515 6.5364 6.04181 5.72211 5.583 5.63011 5.86484 6.29289 6.90726 7.67597 8.62459 9.83467 11.3669 13.1393 15.0577 17.0337 19.012 21.0461 23.4376 27.1733 35.7114 64.4284 186.055 1062.42 1051.48 181.693 62.8691 32.9785 22.4958 17.4006 14.275 12.0759 10.4116 9.09964 8.04093 7.18651 6.51351 6.01401 5.68859 5.54275 5.58201 5.8069 6.22224 6.82257 7.57699 8.50732 9.69253 11.198 12.9538 14.8633 16.8424 18.8399 20.9057 23.3319 27.0962 35.6495 64.3509 185.965 1062.38 1051.48 181.734 62.8922 32.963 22.4727 17.38 14.2553 12.0542 10.3876 9.07423 8.01418 7.15806 6.4828 5.98041 5.6515 5.50152 5.53605 5.75483 6.16169 6.75154 7.49394 8.40866 9.57234 11.0523 12.787 14.6801 16.653 18.6608 20.7532 23.2144 27.0114 35.586 64.2808 185.884 1062.34 1051.48 181.76 62.8954 32.9255 22.4257 17.3371 14.2166 12.0166 10.3507 9.03835 7.97886 7.12258 6.44642 5.94252 5.61166 5.45948 5.49182 5.7077 6.11015 6.69325 7.42621 8.32855 9.4748 10.933 12.6462 14.5183 16.4768 18.4843 20.5939 23.0855 26.9169 35.5213 64.2278 185.823 1062.33 1051.48 181.77 62.8797 32.8677 22.359 17.2776 14.1654 11.971 10.3077 8.99739 7.93952 7.08381 6.40727 5.90237 5.57029 5.41702 5.44884 5.66423 6.06557 6.64512 7.37094 8.26377 9.39636 10.8375 12.5318 14.3817 16.32 18.3176 20.4335 22.9476 26.8123 35.4556 64.1964 185.783 1062.34 1051.48 181.772 62.8531 32.7969 22.2809 17.2104 14.1101 11.9241 10.2649 8.95695 7.90069 7.04531 6.36811 5.86199 5.52865 5.3746 5.4068 5.62326 6.02589 6.60433 7.32476 8.2103 9.33206 10.7606 12.4409 14.2706 16.1871 18.1691 20.2821 22.8098 26.703 35.3904 64.1855 185.761 1062.38 1051.48 181.777 62.8266 32.7231 22.2021 17.1459 14.0593 11.8824 10.2274 8.9213 7.86573 7.00972 6.33096 5.82282 5.48755 5.33232 5.36496 5.5835 5.9885 6.56718 7.28324 8.1627 9.27506 10.6943 12.3655 14.1781 16.074 18.038 20.1425 22.6761 26.592 35.3245 64.1863 185.749 1062.43 1051.48 181.789 62.8108 32.658 22.133 17.0919 14.0184 11.8493 10.1973 8.89177 7.83562 6.97794 6.29669 5.78562 5.44757 5.29045 5.32324 5.54414 5.95198 6.53157 7.24387 8.1178 9.22108 10.6328 12.2992 14.0986 15.977 17.9246 20.0183 22.5522 26.4835 35.2558 64.1852 185.734 1062.49 1051.48 181.812 62.8106 32.6082 22.0787 17.0516 13.9887 11.8249 10.1741 8.86768 7.80991 6.94979 6.26533 5.75054 5.40889 5.24917 5.28166 5.50482 5.91563 6.49645 7.20531 8.07372 9.16729 10.5713 12.2352 14.0242 15.8884 17.822 19.9056 22.4369 26.3777 35.1838 64.1758 185.714 1062.54 1051.48 181.836 62.8195 32.5694 22.0336 17.0177 13.9629 11.8028 10.1524 8.84493 7.78561 6.92315 6.23541 5.71664 5.37094 5.20824 5.24036 5.46627 5.88101 6.46402 7.17012 8.03325 9.11653 10.5117 12.1738 13.9541 15.8072 17.7304 19.8057 22.3329 26.2776 35.1066 64.1472 185.678 1062.6 1051.48 181.864 62.8384 32.5414 21.9949 16.9863 13.9376 11.7807 10.1307 8.82261 7.76225 6.89776 6.20673 5.68362 5.33339 5.16728 5.19912 5.43014 5.85101 6.43489 7.14031 7.99901 9.07243 10.4555 12.1112 13.8838 15.7274 17.6421 19.7107 22.2336 26.1784 35.0224 64.0996 185.631 1062.65 1051.48 181.887 62.8564 32.5132 21.9515 16.9471 13.9047 11.7527 10.105 8.79781 7.73761 6.87178 6.17771 5.65029 5.29559 5.12665 5.15966 5.39875 5.82802 6.41262 7.11915 7.97562 9.04168 10.4102 12.0553 13.8216 15.6568 17.5643 19.6272 22.1448 26.0856 34.9351 64.0369 185.578 1062.7 1051.48 181.905 62.8694 32.4792 21.8981 16.8978 13.8646 11.7213 10.0784 8.77351 7.71409 6.84683 6.1492 5.61688 5.25746 5.08607 5.12145 5.37029 5.80909 6.39559 7.10527 7.96185 9.02236 10.3757 12.0081 13.7672 15.5928 17.4918 19.5476 22.0582 25.9924 34.8442 63.9681 185.527 1062.75 1051.48 181.918 62.8749 32.4342 21.8312 16.8377 13.8193 11.6895 10.0538 8.75171 7.69264 6.82287 6.12043 5.58215 5.21743 5.04379 5.08268 5.34344 5.79398 6.38482 7.10109 7.96142 9.0198 10.3601 11.9803 13.7336 15.5505 17.4407 19.488 21.9888 25.9118 34.7609 63.9075 185.493 1062.82 1051.48 181.939 62.882 32.385 21.7606 16.7801 13.7825 11.6692 10.0407 8.73946 7.67801 6.80286 6.09296 5.54646 5.17467 4.99756 5.03949 5.31278 5.77666 6.37438 7.10037 7.96782 9.02698 10.3555 11.9637 13.7121 15.5204 17.4008 19.4376 21.9258 25.8358 34.6853 63.8658 185.479 1062.91 1051.48 181.978 62.9055 32.3462 21.7013 16.7392 13.7653 11.6675 10.0429 8.7382 7.67007 6.78585 6.0655 5.50835 5.12745 4.94523 4.98914 5.2751 5.75431 6.36241 7.10212 7.9814 9.04569 10.3648 11.9627 13.7101 15.5142 17.3889 19.417 21.8906 25.7811 34.6234 63.8389 185.479 1063.02 1051.47 182.038 62.9536 32.3299 21.6674 16.7271 13.7755 11.6879 10.0609 8.74681 7.66702 6.77016 6.03679 5.46688 5.0747 4.88498 4.9286 5.22507 5.71926 6.34057 7.09633 7.99011 9.06122 10.3694 11.9546 13.7006 15.5022 17.3742 19.3964 21.8565 25.7272 34.5646 63.822 185.481 1063.16 1051.47 182.105 63.0209 32.3377 21.6588 16.7382 13.8023 11.7171 10.0819 8.75444 7.66056 6.75038 6.00382 5.42073 5.01633 4.8183 4.86304 5.16856 5.67294 6.31372 7.08917 8.0006 9.0805 10.377 11.9476 13.6931 15.4961 17.3724 19.3964 21.8467 25.6926 34.5113 63.7993 185.476 1063.31 1051.47 182.155 63.0869 32.3565 21.6623 16.7556 13.8274 11.7389 10.0939 8.75318 7.64589 6.72319 5.96513 5.37 4.95309 4.74607 4.79141 5.10379 5.61708 6.28043 7.07763 8.00721 9.09418 10.3748 11.9241 13.6609 15.4594 17.3376 19.3659 21.813 25.643 34.4534 63.779 185.474 1063.5 1051.47 182.157 63.1146 32.3525 21.6411 16.7397 13.8161 11.7277 10.0788 8.72944 7.61137 6.67804 5.91599 5.31589 4.88749 4.67096 4.71671 5.03665 5.56195 6.25216 7.07515 8.02586 9.12205 10.389 11.9178 13.6433 15.4346 17.3136 19.3474 21.7934 25.6063 34.4005 63.7571 185.483 1063.64 1051.47 182.118 63.0955 32.3063 21.5723 16.6741 13.7623 11.6862 10.044 8.69077 7.56107 6.6177 5.8612 5.2675 4.827 4.59507 4.63627 4.96179 5.50106 6.2184 7.06769 8.03917 9.14478 10.4017 11.9091 13.6182 15.3951 17.2641 19.2955 21.7422 25.5536 34.3607 63.7789 185.558 1063.85 1051.47 182.061 63.0405 32.2181 21.4573 16.5674 13.6818 11.6323 10.0046 8.6473 7.49944 6.55164 5.80436 5.21724 4.76496 4.51527 4.5488 4.87842 5.43355 6.17751 7.05384 8.04734 9.16731 10.4267 11.9241 13.6309 15.4051 17.2633 19.2829 21.7175 25.5175 34.34 63.8339 185.45 1063.92 1051.46 182.098 63.064 32.1701 21.3653 16.4919 13.6453 11.625 10.0031 8.62796 7.45097 6.49692 5.74958 5.15602 4.6939 4.4287 4.44822 4.77287 5.33724 6.09906 6.99538 8.00506 9.13824 10.4082 11.9015 13.6222 15.4162 17.2734 19.2785 21.696 25.4865 34.3079 63.6549 183.576 1064.17 1051.46 182.281 63.2381 32.2385 21.3714 16.5144 13.7001 11.6871 10.0402 8.61912 7.40584 6.43933 5.67789 5.06909 4.60602 4.33542 4.34052 4.6516 5.21424 5.98067 6.88588 7.90387 9.04906 10.3391 11.8359 13.5956 15.4516 17.3366 19.3296 21.7031 25.4358 34.1849 63.2862 181.645 1064.17 1051.46 182.541 63.5423 32.4421 21.5034 16.6486 13.8359 11.7862 10.0722 8.57639 7.3245 6.34646 5.56895 4.95069 4.49413 4.23118 4.23146 4.524 5.06825 5.81554 6.70541 7.71076 8.85125 10.1526 11.6524 13.4595 15.411 17.3696 19.3898 21.732 25.3825 34.0036 62.8279 179.946 1064.48 1051.46 182.654 63.7576 32.6238 21.6293 16.7473 13.885 11.7504 9.94518 8.37877 7.11054 6.14283 5.37369 4.77259 4.3447 4.12025 4.147 4.43906 4.96124 5.67082 6.52176 7.4956 8.60917 9.89505 11.3898 13.2271 15.2775 17.3333 19.3953 21.6981 25.2388 33.7197 62.3694 178.936 1064.5 1051.46 182.479 63.6819 32.5912 21.5678 16.6174 13.6472 11.3949 9.50469 7.92972 6.72316 5.8083 5.09222 4.5499 4.18664 4.03344 4.11225 4.42675 4.9374 5.60328 6.39736 7.31569 8.38191 9.62789 11.0941 12.919 15.0453 17.2248 19.3881 21.7186 25.1766 33.4863 61.9382 178.163 1064.86 1051.45 182.092 63.3169 32.2708 21.1893 16.1001 12.9782 10.6301 8.73478 7.26849 6.21216 5.41221 4.80396 4.36714 4.10563 4.02967 4.16332 4.5084 5.02525 5.67108 6.42301 7.28375 8.28728 9.47687 10.8965 12.6729 14.776 16.9764 19.181 21.5339 24.9642 33.2244 61.6561 177.825 1065.01 1051.46 181.611 62.7437 31.6594 20.4476 15.1866 11.9629 9.63666 7.89175 6.65713 5.78738 5.14886 4.68192 4.362 4.1666 4.11926 4.25978 4.61133 5.14376 5.80897 6.56955 7.41719 8.38336 9.52623 10.9111 12.6653 14.7393 16.9458 19.2001 21.5925 24.9825 33.1177 61.4685 177.687 1065.4 1051.46 181.183 62.0842 30.8285 19.4372 14.0724 10.9013 8.76642 7.28414 6.31528 5.64425 5.16009 4.80185 4.52157 4.30474 4.2137 4.30839 4.6414 5.19425 5.91344 6.73973 7.63839 8.61635 9.73634 11.0896 12.7976 14.7373 16.795 18.9529 21.335 24.8082 33.1232 61.7082 178.059 1065.48 1051.46 181.12 61.7292 30.1894 18.6288 13.2918 10.3212 8.45909 7.21773 6.4208 5.86668 5.44626 5.08383 4.73062 4.44397 4.27365 4.27602 4.52896 5.0536 5.81926 6.75679 7.79849 8.91454 10.1379 11.5665 13.3496 15.3081 17.3354 19.4273 21.7034 25.0443 33.3216 62.1662 178.736 1066.14 1051.46 182.133 62.6397 30.7115 18.8686 13.487 10.6194 8.88627 7.71983 6.93904 6.36782 5.88837 5.43121 5.01206 4.66045 4.40368 4.27436 4.32442 4.65767 5.31934 6.28258 7.45856 8.75262 10.1256 11.6323 13.45 15.4106 17.3692 19.3828 21.6892 25.25 33.9023 62.9774 179.183 1065.75 1051.46 183.761 64.6871 32.5804 20.3966 14.7554 11.7185 9.868 8.6117 7.70608 7.02167 6.41628 5.86716 5.38221 4.97303 4.64862 4.41652 4.29588 4.3411 4.6982 5.468 6.65717 8.15298 9.8242 11.6048 13.5607 15.8418 18.0405 20.0577 22.0993 25.2095 33.4971 62.515 178.695 1066.64 1051.46 184.172 65.6615 33.791 21.5301 15.6071 12.2727 10.2879 8.99431 8.07293 7.33049 6.66922 6.07759 5.5628 5.13319 4.79263 4.53979 4.37167 4.29393 4.33953 4.63689 5.37635 6.6382 8.32446 10.2442 12.2676 14.5228 16.9688 19.3354 21.7865 25.2251 33.5237 62.1683 178.137 1066.04 1051.46 176.089 62.8302 32.4915 20.7667 15.0871 11.9614 10.0455 8.74059 7.7551 6.9536 6.28232 5.72017 5.25735 4.8842 4.59196 4.37946 4.25762 4.25091 4.39492 4.77088 5.4505 6.52591 8.05486 9.99242 12.1825 14.554 17.1082 19.3354 21.4829 24.6721 33.01 62.0463 178.391 1066.6 1051.46 176.422 63.5955 32.8681 20.9587 15.2298 12.0203 9.98973 8.57063 7.50536 6.675 6.02245 5.51147 5.10954 4.79037 4.54047 4.35733 4.24554 4.22283 4.32718 4.64478 5.23297 6.14638 7.42797 9.10781 11.1546 13.486 16.1852 18.6813 21.142 24.6193 33.1627 62.3985 179.02 1066.41 1051.47 177.196 64.517 33.7027 21.5831 15.6146 12.1914 10.0082 8.51364 7.44508 6.65932 6.06378 5.59454 5.21636 4.92046 4.70774 4.57239 4.50727 4.5275 4.68004 5.08594 5.81909 6.94193 8.47682 10.4167 12.7194 15.3851 18.0044 20.134 22.2123 25.6344 34.7597 64.6063 180.275 1067.25 1051.48 176.994 64.1543 33.1822 20.9724 14.9885 11.6188 9.54108 8.17988 7.2466 6.57842 6.07641 5.68008 5.35478 5.08385 4.86286 4.69415 4.58118 4.52522 4.51831 4.57258 4.80371 5.4016 6.53457 8.27796 10.5726 13.2441 16.2579 18.6264 20.4736 22.9851 30.4283 58.3613 174.401 1066.97 1051.49 176.784 63.6554 32.504 20.2389 14.3009 11.0516 9.14269 7.97287 7.23308 6.748 6.41233 6.16081 5.95261 5.76274 5.57713 5.39085 5.20911 5.05734 4.95907 4.95172 5.03752 5.29582 5.96941 7.40142 9.84856 13.1804 17.0388 20.6087 23.2298 26.0936 33.8611 62.7919 179.286 1068.03 1051.49 177.103 63.9302 32.5445 20.0873 14.0936 10.9189 9.1534 8.12905 7.49386 7.0575 6.71988 6.43282 6.17786 5.95232 5.7603 5.60842 5.50273 5.46233 5.44976 5.41704 5.35098 5.3204 5.48802 6.2085 7.80142 10.4649 14.0886 17.6752 20.331 23.5074 31.4933 59.4038 175.828 1068.23 1051.52 181.038 66.4907 33.7642 20.7637 14.8394 11.9989 10.5784 9.79994 9.29433 8.88793 8.50075 8.09995 7.6783 7.23911 6.7864 6.34132 5.92334 5.53492 5.17354 4.8314 4.49632 4.14821 3.81566 3.60057 3.99294 5.53642 8.74438 13.5876 17.3708 19.6776 27.9056 61.7545 184.632 1069.41 1051.58 171.869 55.5342 25.4182 16.3474 13.9332 13.4717 13.3749 13.2171 12.9413 12.5594 12.0813 11.5186 10.9139 10.3143 9.75115 9.2613 8.89354 8.70343 8.74836 9.09243 9.76322 10.7433 12.1098 13.9069 16.149 18.9285 22.3865 26.7605 32.5162 41.2714 57.492 93.5675 206.937 1070.64 537.559 23.8184 23.9659 24.0365 24.0684 24.0861 24.0974 24.1035 24.1048 24.1019 24.0954 24.0856 24.0732 24.0584 24.0418 24.024 24.0055 23.987 23.969 23.9522 23.9372 23.9239 23.9119 23.9018 23.8932 23.8861 23.8799 23.8745 23.8696 23.8663 23.8679 23.8796 23.9058 23.9462 550.25 537.428 23.6868 23.7167 23.6644 23.6083 23.5701 23.5459 23.53 23.5191 23.5115 23.5064 23.5032 23.5015 23.501 23.5016 23.5033 23.506 23.5098 23.5147 23.5207 23.5279 23.5363 23.5462 23.5576 23.571 23.5867 23.6057 23.629 23.6585 23.6964 23.7424 23.7836 23.7759 23.647 533.423 1051.38 167.85 49.2209 21.6342 13.0235 9.37159 7.39956 6.16981 5.3417 4.75792 4.33482 4.0239 3.79509 3.62781 3.51087 3.43864 3.40816 3.41829 3.4695 3.56383 3.70504 3.89899 4.15428 4.4837 4.90722 5.45403 6.16506 7.10827 8.41434 10.3978 14.0253 22.8582 51.3645 169.925 1044.96 1051.42 176.863 56.0199 25.2162 14.3474 9.41474 6.78692 5.28242 4.38063 3.80859 3.43089 3.17834 3.01045 2.90259 2.83954 2.81192 2.81432 2.84415 2.9012 2.98743 3.10716 3.26749 3.47923 3.75855 4.12994 4.63143 5.32792 6.3332 7.84677 10.3026 14.9091 25.5283 56.4057 176.401 1046.23 1051.45 177.752 58.5975 27.7001 16.3949 11.0149 8.02113 6.23782 5.15061 4.45628 3.98929 3.66828 3.44633 3.2955 3.1989 3.14639 3.1322 3.15358 3.21019 3.30378 3.43836 3.62074 3.86165 4.17766 4.59469 5.15425 5.92859 7.04451 8.71999 11.4131 16.3554 27.3579 58.4405 178.25 1047.43 1051.48 174.294 58.8904 28.8716 17.8297 12.422 9.27767 7.30419 6.03476 5.19688 4.61828 4.20518 3.90719 3.69431 3.54848 3.45897 3.41971 3.42782 3.48282 3.58631 3.74208 3.95666 4.24048 4.60998 5.09131 5.72674 6.59221 7.81505 9.60257 12.3948 17.382 28.2693 58.9067 177.253 1048.42 1051.5 174.334 59.4614 29.7752 19.0161 13.7018 10.5012 8.38647 6.94631 5.96059 5.26399 4.75227 4.37224 4.09198 3.89229 3.76177 3.69407 3.68618 3.73761 3.84995 4.02696 4.27508 4.60473 5.03254 5.58507 6.30539 7.27397 8.61291 10.5031 13.3534 18.2911 28.9011 58.7935 173.764 1049.33 1051.51 174.729 59.9061 30.4025 19.9139 14.7453 11.559 9.36875 7.8056 6.6888 5.88114 5.27833 4.82078 4.47559 4.22299 4.05141 3.95451 3.92945 3.97582 4.09532 4.29165 4.57111 4.94392 5.4265 6.04543 6.84662 7.9115 9.34948 11.3191 14.2002 19.0702 29.4572 59.0445 173.61 1050.12 1051.52 175.197 60.3194 30.8955 20.6375 15.6319 12.5012 10.2787 8.62522 7.39158 6.47778 5.78706 5.25362 4.84404 4.53835 4.32505 4.19798 4.15464 4.19468 4.32017 4.53485 4.84502 5.26084 5.7988 6.48573 7.37181 8.53613 10.0689 12.1081 15.0068 19.8036 30.005 59.4268 173.935 1050.85 1051.53 175.674 60.6332 31.2487 21.1938 16.3524 13.301 11.079 9.36618 8.03868 7.03232 6.26256 5.65977 5.19032 4.83447 4.58105 4.42442 4.3626 4.39518 4.52486 4.75554 5.09355 5.54897 6.13817 6.88813 7.85266 9.10725 10.7225 12.8176 15.7224 20.4428 30.4686 59.7501 174.321 1051.49 1051.54 176.304 60.9423 31.5343 21.6394 16.9489 13.9854 11.7857 10.0412 8.64522 7.55347 6.70636 6.03911 5.51353 5.11018 4.81834 4.63305 4.55305 4.5775 4.71007 4.95512 5.31907 5.81201 6.4503 7.26105 8.30145 9.64219 11.3331 13.4751 16.3785 21.0236 30.8936 60.0713 174.753 1052.08 1051.55 177.451 61.2768 31.7568 21.983 17.4281 14.5557 12.3932 10.6373 9.19231 8.03004 7.11526 6.39011 5.81318 5.36566 5.0376 4.82498 4.72719 4.74259 4.87607 5.13276 5.51913 6.0453 6.7276 7.59314 8.70196 10.1196 11.876 14.0565 16.9546 21.5297 31.2576 60.345 175.214 1052.61 1051.55 179.695 61.8385 32.0233 22.2937 17.839 15.0474 12.9264 11.1702 9.689 8.46742 7.49282 6.71518 6.091 5.60235 5.24024 5.00166 4.88617 4.89156 5.02397 5.28971 5.69538 6.25112 6.97316 7.88884 9.06056 10.5478 12.3618 14.574 17.4649 21.978 31.5842 60.6086 175.78 1053.09 1051.55 182.671 62.5806 32.3284 22.5773 18.1909 15.468 13.3886 11.6389 10.1315 8.86134 7.83536 7.01142 6.34494 5.81909 5.42591 5.16337 5.03013 5.02457 5.15381 5.42557 5.84655 6.42691 7.18285 8.14381 9.37188 10.9172 12.7785 15.0158 17.8991 22.3603 31.8667 60.8745 176.687 1053.53 1051.56 183.504 62.9262 32.5253 22.7984 18.4821 15.8249 13.7874 12.0487 10.523 9.21343 8.14378 7.27947 6.57573 6.01689 5.59604 5.31064 5.15982 5.14299 5.26778 5.54333 5.97669 6.57805 7.36371 8.3653 9.6436 11.2381 13.1375 15.3942 18.2712 22.6942 32.1389 61.2595 178.521 1053.92 1051.55 183.696 63.0935 32.6517 22.9677 18.7173 16.1193 14.1209 12.3954 10.8588 9.52061 8.41489 7.51592 6.78099 6.19423 5.74939 5.44316 5.27588 5.24819 5.36817 5.64585 6.08908 6.70813 7.51928 8.55644 9.87885 11.5151 13.4455 15.7177 18.5942 23.0064 32.4616 61.8853 181.424 1054.29 1051.55 183.832 63.2309 32.7596 23.106 18.9045 16.3528 14.3879 12.6782 11.1391 9.78288 8.64955 7.7222 6.96154 6.35184 5.88579 5.56094 5.37929 5.34196 5.45763 5.73707 6.18915 6.82416 7.65834 8.72797 10.0907 11.7641 13.7194 15.9992 18.8652 23.2525 32.6738 62.1662 182.548 1054.63 1051.55 183.905 63.327 32.8437 23.209 19.0372 16.5172 14.58 12.8892 11.3569 9.99344 8.842 7.89413 7.11443 6.48676 6.00353 5.66356 5.47033 5.42551 5.53838 5.82041 6.28158 6.93223 7.78853 8.88901 10.2903 11.9995 13.9779 16.2597 19.1029 23.4422 32.7797 62.1777 182.638 1054.96 1051.54 183.892 63.3519 32.885 23.2621 19.1021 16.6017 14.6899 13.0244 11.5099 10.1509 8.99058 8.02981 7.23808 6.5975 6.10149 5.75067 5.54943 5.50016 5.61286 5.89972 6.37171 7.03943 7.91906 9.05093 10.4915 12.2397 14.2451 16.5302 19.3454 23.6245 32.865 62.1598 182.693 1055.29 1051.54 183.779 63.2815 32.8631 23.2479 19.0868 16.6004 14.7178 13.0878 11.6038 10.2604 9.09877 8.13126 7.33324 6.68468 6.18033 5.82272 5.61712 5.56671 5.68237 5.97691 6.46198 7.14893 8.05406 9.21873 10.7005 12.4936 14.5351 16.8321 19.6236 23.8413 32.9878 62.2035 182.823 1055.64 1051.54 183.579 63.1105 32.7646 23.1556 18.9901 16.523 14.6803 13.0982 11.6557 10.3359 9.17745 8.20696 7.40572 6.75222 6.24305 5.88183 5.67484 5.62612 5.74736 6.05192 6.55208 7.26015 8.19278 9.39145 10.9162 12.761 14.8503 17.1735 19.9544 24.1207 33.1868 62.3577 183.063 1056 1051.54 183.326 62.8557 32.5894 22.9884 18.8285 16.3967 14.6096 13.0866 11.6916 10.3978 9.24235 8.26894 7.46535 6.80793 6.29502 5.93138 5.72424 5.67845 5.80632 6.12152 6.63692 7.36591 8.32581 9.55732 11.1241 13.0248 15.1725 17.539 20.331 24.4669 33.4752 62.6346 183.409 1056.37 1051.54 183.076 62.5648 32.3626 22.7793 18.6458 16.2677 14.5487 13.0896 11.7409 10.4692 9.31272 8.33301 7.52451 6.86115 6.34292 5.9756 5.76725 5.72322 5.85624 6.18004 6.70781 7.45408 8.43702 9.69593 11.2986 13.2523 15.4627 17.8886 20.7194 24.858 33.8391 63.0072 183.811 1056.72 1051.54 182.897 62.3031 32.1307 22.5759 18.4937 16.1865 14.5403 13.1398 11.8273 10.5693 9.40817 8.41456 7.5934 6.9201 6.39308 6.01875 5.80571 5.75961 5.89335 6.22052 6.75432 7.51019 8.5071 9.7827 11.4084 13.4015 15.6675 18.1616 21.0609 25.2457 34.236 63.4093 184.183 1057.03 1051.55 182.872 62.1642 31.9629 22.4376 18.4232 16.1946 14.6174 13.2627 11.9695 10.7095 9.5339 8.52083 7.68209 6.99374 6.45258 6.06572 5.84221 5.78774 5.91515 6.23786 6.76872 7.52327 8.52107 9.79846 11.428 13.4341 15.7313 18.2867 21.2772 25.5568 34.596 63.7393 184.413 1057.26 1051.55 183.048 62.2231 31.9203 22.4121 18.4688 16.3147 14.7935 13.4657 12.1714 10.8922 9.69126 8.65461 7.79441 7.08536 6.52439 6.11917 5.87901 5.80924 5.9224 6.23175 6.74951 7.49069 8.47486 9.73794 11.35 13.3354 15.6246 18.212 21.2938 25.7064 34.8356 63.9002 184.415 1057.38 1051.55 183.404 62.4991 32.0291 22.5163 18.6362 16.5431 15.0579 13.7341 12.4178 11.1037 9.86946 8.80766 7.92419 7.19073 6.60635 6.17893 5.9177 5.82734 5.91999 6.20877 6.70529 7.42379 8.38321 9.62055 11.1996 13.1348 15.3723 17.9422 21.0799 25.6289 34.8811 63.8351 184.177 1057.4 1051.54 183.851 62.9417 32.2707 22.7328 18.9028 16.8511 15.377 14.032 12.674 11.315 10.0458 8.96086 8.05508 7.29728 6.68996 6.24051 5.95757 5.84499 5.91465 6.17975 6.65156 7.34366 8.27424 9.48337 11.0266 12.8974 15.0507 17.549 20.676 25.3133 34.6878 63.5252 183.722 1057.34 1051.53 184.243 63.4262 32.5819 23.0163 19.2229 17.1875 15.6947 14.3031 12.8886 11.4829 10.1879 9.08531 8.16092 7.38559 6.76157 6.29519 5.99452 5.86289 5.91212 6.15585 6.60541 7.2741 8.17971 9.36772 10.8855 12.6979 14.7571 17.1441 20.185 24.817 34.2546 62.9738 183.096 1057.26 1051.52 184.456 63.8184 32.8934 23.3191 19.5419 17.4862 15.9388 14.479 13.0046 11.5619 10.2569 9.1504 8.21904 7.43742 6.80673 6.33241 6.02217 5.87926 5.91581 6.14609 6.58188 7.23669 8.12847 9.31026 10.8236 12.6003 14.5791 16.8414 19.7378 24.2576 33.6459 62.2174 182.343 1057.2 1051.51 184.439 64.0327 33.1599 23.6035 19.8027 17.6736 16.0334 14.4952 12.9748 11.5201 10.2284 9.13635 8.21347 7.43929 6.81431 6.34355 6.03483 5.89194 5.92765 6.15701 6.59267 7.24879 8.14414 9.34048 10.8758 12.6493 14.5787 16.7297 19.4547 23.7766 32.9895 61.361 181.568 1057.21 1051.5 184.229 64.0685 33.3726 23.8367 19.9446 17.6823 15.9251 14.3209 12.7878 11.3562 10.1025 9.04246 8.14285 7.38901 6.78165 6.32617 6.03102 5.90116 5.9502 6.19387 6.6457 7.3209 8.24567 9.48576 11.0655 12.8683 14.7884 16.8605 19.4179 23.4957 32.4327 60.5539 180.916 1057.35 1051.49 183.905 63.9729 33.5244 23.9663 19.9061 17.4737 15.6105 13.9792 12.4775 11.1022 9.90341 8.88565 8.01929 7.29487 6.71441 6.28448 6.0146 5.91127 5.98917 6.26459 6.75174 7.46656 8.44245 9.74996 11.4035 13.2741 15.2282 17.2615 19.675 23.5027 32.1232 60.0042 180.607 1057.66 1051.48 183.535 63.7843 33.5759 23.922 19.65 17.0646 15.147 13.5428 12.1108 10.8104 9.66886 8.69342 7.8633 7.17234 6.62456 6.22803 5.99338 5.92866 6.04964 6.37308 6.91386 7.68895 8.73683 10.1334 11.8903 13.866 15.8962 17.9332 20.2392 23.8443 32.1781 59.936 180.898 1058.15 1051.47 183.132 63.4867 33.4526 23.6521 19.1963 16.5312 14.6324 13.1028 11.7591 10.5317 9.43574 8.49376 7.69674 7.03899 6.52642 6.16838 5.97622 5.95921 6.13408 6.51792 7.12631 7.97803 9.11429 10.6171 12.5034 14.6184 16.7639 18.8457 21.0851 24.516 32.6524 60.5165 181.949 1058.81 1051.47 182.666 63.0306 33.0977 23.1705 18.6275 15.9816 14.1654 12.7341 11.4742 10.3016 9.23156 8.31002 7.53943 6.9116 6.43367 6.11568 5.96906 6.00367 6.23685 6.68585 7.36707 8.30221 9.53326 11.149 13.1808 15.4609 17.7559 19.9216 22.1347 25.4374 33.4735 61.7085 183.659 1059.57 1051.47 182.127 62.4025 32.5328 22.5688 18.062 15.5191 13.8197 12.4844 11.2866 10.1428 9.07768 8.16288 7.40962 6.80537 6.35756 6.07615 5.9718 6.05414 6.34049 6.84803 7.59399 8.60413 9.92058 11.6378 13.8078 16.2602 18.731 21.0219 23.2602 26.496 34.542 63.3127 185.555 1060.27 1051.48 181.546 61.6535 31.8519 21.9683 17.6017 15.2103 13.6327 12.3737 11.2088 10.0684 8.99267 8.07006 7.3213 6.73173 6.30539 6.05107 5.97811 6.09516 6.41868 6.96514 7.75227 8.80912 10.1822 11.966 14.2295 16.8305 19.4851 21.9415 24.2586 27.4637 35.5671 64.953 187.415 1060.76 1051.49 181.024 60.9143 31.2009 21.4878 17.316 15.0868 13.6165 12.4082 11.2485 10.0887 8.98808 8.04555 7.28924 6.7021 6.28292 6.03959 5.98009 6.11138 6.44798 7.00457 7.79871 8.86015 10.2382 12.024 14.3046 16.9896 19.805 22.4685 24.9513 28.1685 36.1372 65.1191 183.85 1060.94 1051.5 180.702 60.3568 30.7131 21.2011 17.2307 15.1501 13.7652 12.5835 11.4076 10.2116 9.07367 8.10119 7.32475 6.72387 6.29389 6.04208 5.97505 6.09752 6.42111 6.95767 7.72282 8.74406 10.0686 11.7798 13.9809 16.6461 19.555 22.4477 25.2339 28.6684 36.6164 65.1298 181.645 1060.78 1051.51 180.722 60.1258 30.4747 21.1356 17.3406 15.3839 14.0626 12.8888 11.6817 10.4377 9.25256 8.24087 7.43162 6.80072 6.3422 6.06306 5.96886 6.06198 6.3508 6.8437 7.55266 8.50017 9.72667 11.3027 13.3379 15.8668 18.7566 21.832 25.0146 28.9253 37.1957 65.7937 182.826 1060.38 1051.53 181.144 60.3116 30.5195 21.2824 17.621 15.761 14.4849 13.3054 12.0567 10.7556 9.51515 8.45702 7.60493 6.93096 6.42971 6.10836 5.97191 6.02077 6.26057 6.69647 7.33592 8.19496 9.30453 10.7202 12.5453 14.8507 17.5929 20.7214 24.2576 28.763 37.5323 66.2858 186.296 1059.81 1051.54 181.897 60.8939 30.8209 21.6022 18.0326 16.2452 14.9989 13.8024 12.5028 11.1364 9.83445 8.72625 7.82652 7.10247 6.55078 6.17897 5.99199 5.98883 6.17341 6.54877 7.11833 7.89175 8.89029 10.1559 11.7758 13.827 16.3279 19.3488 23.0682 28.1137 37.476 66.1275 185.815 1059.19 1051.54 182.797 61.7412 31.3005 22.0326 18.5254 16.7923 15.5607 14.3337 12.972 11.533 10.1668 9.00934 8.06333 7.28987 6.68831 6.26617 6.02844 5.97318 6.10365 6.4223 6.92995 7.63149 8.54012 9.68739 11.1404 12.9588 15.1876 17.9792 21.6639 27.0337 36.9678 65.6605 185.038 1058.58 1051.53 183.578 62.6275 31.8404 22.4989 19.0439 17.3519 16.1158 14.837 13.3976 11.8818 10.4566 9.25596 8.27016 7.45624 6.81453 6.35134 6.07135 5.97197 6.05671 6.32864 6.78768 7.43589 8.28102 9.34861 10.6867 12.3254 14.3075 16.8217 20.3015 25.722 36.0451 64.8941 184.144 1058.03 1051.52 184.069 63.3507 32.339 22.9477 19.5456 17.8759 16.6033 15.2416 13.7058 12.113 10.6449 9.41437 8.40183 7.56515 6.90065 6.41285 6.10587 5.9769 6.03018 6.27031 6.69769 7.31353 8.12259 9.14895 10.4245 11.9435 13.73 15.9774 19.1687 24.4161 34.8582 63.8511 183.145 1057.58 1051.51 184.224 63.8035 32.7507 23.372 20.0149 18.3239 16.9588 15.4723 13.8265 12.1685 10.683 9.44809 8.431 7.59321 6.92706 6.43492 6.1201 5.97997 6.01984 6.24621 6.66117 7.26661 8.06634 9.08723 10.3476 11.8007 13.4448 15.4622 18.3495 23.2915 33.5966 62.6063 182.061 1057.24 1051.5 184.118 64.0069 33.1052 23.8073 20.4532 18.6565 17.1179 15.4632 13.71 12.0199 10.5555 9.34742 8.35123 7.5356 6.88983 6.41416 6.11112 5.97894 6.02437 6.256 6.67854 7.29614 8.11351 9.16319 10.449 11.8789 13.4251 15.2539 17.8559 22.4389 32.424 61.283 180.945 1057.02 1051.5 183.885 64.0758 33.4816 24.2905 20.8395 18.8172 17.0255 15.1827 13.3524 11.6873 10.2836 9.12856 8.17911 7.40774 6.80179 6.36027 6.08591 5.97883 6.04763 6.30267 6.75125 7.40075 8.26714 9.38447 10.725 12.164 13.6491 15.3252 17.6702 21.8863 31.4449 60.0026 179.88 1056.94 1051.49 183.653 64.1485 33.9468 24.7989 21.0995 18.7364 16.6555 14.6565 12.81 11.2248 9.91537 8.83648 7.95301 7.24009 6.68603 6.29028 6.05692 5.98884 6.09703 6.39362 6.88796 7.58982 8.5312 9.7482 11.1723 12.6489 14.1007 15.6508 17.764 21.6259 30.7108 58.8589 178.943 1057 1051.48 183.499 64.3147 34.4922 25.2354 21.1382 18.3802 16.045 13.9689 12.1844 10.7141 9.51059 8.51932 7.71008 7.06149 6.56458 6.22081 6.03664 6.01837 6.17994 6.53539 7.09598 7.87328 8.91445 10.2561 11.787 13.3224 14.7625 16.2081 18.1108 21.6385 30.2442 57.933 178.23 1057.23 1051.48 183.438 64.5712 35.0143 25.4674 20.8922 17.777 15.2885 13.232 11.5635 10.2186 9.11913 8.21533 7.47867 6.89264 6.45258 6.16325 6.03403 6.07474 6.30249 6.73334 7.38093 8.26216 9.42809 10.9051 12.5577 14.1718 15.6222 16.9832 18.6928 21.9091 30.0613 57.311 177.869 1057.65 1051.46 183.43 64.834 35.3627 25.3932 20.3677 17.0149 14.4996 12.5432 11.0063 9.77619 8.77122 7.9452 7.27299 6.74361 6.35747 6.12343 6.05408 6.1627 6.46988 6.99343 7.74879 8.75568 10.0596 11.6838 13.4764 15.1904 16.6708 17.9643 19.4982 22.4346 30.2003 57.1428 178.102 1058.31 1051.45 183.396 64.9679 35.4037 24.9867 19.6418 16.2085 13.7694 11.9468 10.5354 9.40498 8.47906 7.71605 7.09671 6.61628 6.28055 6.1026 6.0979 6.28296 6.6821 7.31473 8.194 9.33524 10.7899 12.5818 14.5255 16.3586 17.8891 19.1338 20.5147 23.2192 30.721 57.6475 179.255 1059.24 1051.44 183.246 64.8431 35.0749 24.3022 18.823 15.4463 13.1439 11.4599 10.1579 9.10809 8.24181 7.52553 6.94738 6.50887 6.22068 6.09962 6.16333 6.43108 6.93134 7.68587 8.69294 9.96517 11.5912 13.5633 15.66 17.6327 19.2391 20.458 21.7168 24.2521 31.6504 58.9871 181.526 1060.4 1051.43 182.907 64.3845 34.4044 23.4485 18.0084 14.7857 12.6495 11.0931 9.8762 8.88306 8.05577 7.37074 6.82338 6.42045 6.17638 6.11064 6.24179 6.59068 7.18894 8.05971 9.19009 10.604 12.4064 14.5429 16.8017 18.9361 20.6524 21.8715 23.0412 25.481 32.959 61.1186 184.613 1061.66 1051.42 182.344 63.5999 33.4939 22.5519 17.2826 14.2665 12.3003 10.8516 9.6891 8.72532 7.91889 7.25216 6.7262 6.35161 6.14519 6.12772 6.31735 6.73512 7.41444 8.37703 9.61068 11.1606 13.1236 15.4127 17.8402 20.1524 22.0146 23.2567 24.3419 26.7061 34.4317 63.8771 188.037 1062.78 1051.42 181.595 62.5854 32.4881 21.7281 16.7077 13.9116 12.0975 10.7307 9.59526 8.63782 7.83605 7.17474 6.65941 6.30279 6.12239 6.1386 6.36798 6.83056 7.55962 8.57649 9.88658 11.5347 13.5996 16.0293 18.6283 21.131 23.174 24.4727 25.4579 27.6463 35.4136 65.5579 189.461 1063.54 1051.42 180.757 61.4922 31.5346 21.0641 16.3194 13.728 12.0374 10.7252 9.59787 8.62655 7.81176 7.14404 6.62726 6.27475 6.10354 6.13224 6.37512 6.85031 7.58992 8.61565 9.94695 11.6247 13.7302 16.2588 19.0084 21.704 23.9596 25.3845 26.3139 28.2845 35.9465 65.9901 184.086 1063.83 1051.43 179.975 60.4915 30.748 20.6029 16.1252 13.7062 12.1078 10.8286 9.69422 8.69532 7.85446 7.16734 6.63457 6.26964 6.08827 6.1062 6.33461 6.78851 7.4974 8.48445 9.77445 11.4061 13.4773 16.0265 18.8683 21.731 24.2167 25.8697 26.877 28.7022 36.2167 66.1973 183.015 1063.68 1051.44 179.395 59.72 30.1936 20.3519 16.1045 13.8258 12.2979 11.0378 9.88491 8.8475 7.96865 7.24888 6.68556 6.29208 6.08243 6.06912 6.25983 6.66526 7.30982 8.21596 9.41226 10.9351 12.8909 15.3602 18.1997 21.1595 23.8556 25.8324 27.1176 28.9886 36.3244 65.9384 182.075 1063.23 1051.45 179.107 59.2527 29.8859 20.2923 16.2296 14.0632 12.5914 11.3426 10.1654 9.08138 8.15406 7.38982 6.78323 6.34753 6.09519 6.03577 6.17365 6.51472 7.07667 7.87784 8.94585 10.3188 12.0979 14.3889 17.1165 20.0697 22.9163 25.2627 27.0169 29.192 36.4112 65.4382 181.083 1062.62 1051.47 179.141 59.1079 29.8062 20.3914 16.4694 14.3924 12.9673 11.7274 10.5245 9.38887 8.40438 7.5861 6.92651 6.43871 6.13396 6.01956 6.09725 6.36845 6.8442 7.53705 8.46931 9.6764 11.2462 13.2949 15.8156 18.6566 21.5732 24.2669 26.5971 29.3214 36.592 64.9159 180.221 1061.97 1051.49 179.452 59.2447 29.9085 20.6077 16.7905 14.786 13.4022 12.1715 10.9448 9.75567 8.70689 7.82707 7.10844 6.56291 6.20069 6.02766 6.04369 6.24644 6.64131 7.23514 8.04343 9.09505 10.4581 12.2454 14.5057 17.1567 20.0516 22.9983 25.8899 29.3373 37.0199 64.9189 179.857 1061.34 1051.5 179.96 59.5992 30.142 20.9016 17.1628 15.2189 13.8729 12.652 11.4033 10.1614 9.042 8.09504 7.31588 6.71107 6.29053 6.05964 6.017 6.15722 6.48111 6.99065 7.69493 8.61536 9.7995 11.347 13.3413 15.7622 18.5482 21.6116 24.932 29.0817 37.4228 65.8232 185.571 1060.76 1051.51 180.554 60.0809 30.4493 21.234 17.5581 15.6675 14.3559 13.1438 11.8728 10.5772 9.38492 8.36974 7.53099 6.86876 6.39287 6.10862 6.01376 6.10033 6.36547 6.80704 7.42842 8.2442 9.28771 10.6391 12.3921 14.5772 17.1942 20.2467 23.8213 28.5185 37.4353 65.8239 185.808 1060.24 1051.52 181.143 60.6067 30.782 21.5742 17.9541 16.1117 14.8294 13.621 12.3244 10.9738 9.70866 8.62724 7.73293 7.01869 6.49402 6.16417 6.02623 6.07006 6.28993 6.6804 7.24002 7.97702 8.91556 10.117 11.6714 13.6411 16.0647 19.0163 22.6873 27.7551 37.1679 65.5533 185.282 1059.8 1051.53 181.659 61.1089 31.1047 21.9004 18.3337 16.5344 15.2731 14.0592 12.7306 11.324 9.98892 8.84629 7.90321 7.14534 6.58122 6.21588 6.04568 6.05862 6.24667 6.60181 7.11883 7.80089 8.66483 9.75671 11.1587 12.9474 15.183 17.9872 21.6382 26.9114 36.7138 65.1771 184.733 1059.43 1051.54 182.068 61.5438 31.3955 22.1999 18.6853 16.9225 15.6706 14.4386 13.0696 11.6061 10.2073 9.01149 8.02876 7.2379 6.64557 6.25619 6.06527 6.05922 6.22821 6.56216 7.05306 7.70018 8.5148 9.53142 10.823 12.4688 14.5383 17.1817 20.7413 26.0883 36.1594 64.7415 184.215 1059.14 1051.54 182.376 61.9037 31.6545 22.4751 19.0084 17.2711 16.0126 14.7461 13.3264 11.8065 10.3537 9.1161 8.10475 7.29272 6.68397 6.282 6.08136 6.06718 6.22827 6.55303 7.03133 7.65964 8.4451 9.41434 10.6314 12.1704 14.1016 16.5907 20.0235 25.3531 35.5795 64.2772 183.735 1058.93 1051.54 182.613 62.2047 31.894 22.7343 19.3038 17.5745 16.2896 14.9719 13.4939 11.922 10.4295 9.16446 8.13627 7.31439 6.69972 6.29492 6.0937 6.08031 6.24259 6.56781 7.04435 7.66657 8.43856 9.38231 10.5531 12.0142 13.8321 16.1803 19.4734 24.7284 35.0192 63.8048 183.294 1058.78 1051.54 182.805 62.4727 32.1316 22.9882 19.576 17.8325 16.5008 15.1198 13.5816 11.9655 10.4477 9.16771 8.13208 7.30906 6.69671 6.29688 6.10243 6.09699 6.26782 6.60138 7.08507 7.71182 8.48347 9.42032 10.5687 11.9751 13.7003 15.9228 19.0757 24.2231 34.5093 63.3481 182.905 1058.68 1051.54 182.954 62.7144 32.3715 23.24 19.8252 18.0443 16.6493 15.1985 13.6009 11.9466 10.4141 9.12934 8.09438 7.27813 6.67588 6.28834 6.10738 6.11612 6.3015 6.64944 7.14675 7.78548 8.56608 9.50982 10.6546 12.0269 13.679 15.7915 18.8098 23.831 34.0607 62.9118 182.554 1058.63 1051.54 183.055 62.9246 32.6096 23.4845 20.0488 18.213 16.743 15.216 13.5573 11.8688 10.3319 9.05318 8.02701 7.22511 6.64057 6.27213 6.11066 6.13903 6.34415 6.71164 7.22807 7.88486 8.68143 9.64146 10.7945 12.1456 13.7399 15.759 18.6545 23.5437 33.6818 62.5139 182.26 1058.61 1051.53 183.105 63.0986 32.8441 23.7258 20.2545 18.3466 16.7859 15.1726 13.4508 11.7345 10.2046 8.94298 7.93343 7.15289 6.5931 6.25019 6.11391 6.16697 6.39653 6.78826 7.32881 8.00943 8.82871 9.8128 10.9813 12.3166 13.8605 15.798 18.5847 23.3483 33.3762 62.1602 182.018 1058.63 1051.53 183.101 63.2369 33.0836 23.9741 20.4459 18.441 16.7706 15.0628 13.2808 11.5469 10.036 8.80158 7.81707 7.06529 6.53694 6.22574 6.12017 6.2028 6.46115 6.88092 7.44914 8.15754 9.00963 10.0275 11.2105 12.5302 14.0278 15.8901 18.5759 23.2195 33.1337 61.8584 181.831 1058.68 1051.53 183.066 63.348 33.3214 24.215 20.6071 18.4842 16.691 14.8856 13.051 11.3138 9.8335 8.6347 7.68311 6.96721 6.47655 6.20263 6.13276 6.24956 6.54116 6.99342 7.59361 8.33382 9.22372 10.2799 11.4791 12.7846 14.2372 16.0258 18.6116 23.1314 32.9162 61.565 181.663 1058.75 1051.52 182.991 63.4071 33.5382 24.436 20.73 18.4727 16.5491 14.6475 12.7703 11.0478 9.60654 8.44829 7.53813 6.86479 6.41696 6.18471 6.15456 6.30939 6.63822 7.12715 7.76382 8.54062 9.47327 10.5715 11.7879 13.0789 14.4868 16.2032 18.6909 23.0869 32.7324 61.2844 181.509 1058.84 1051.52 182.883 63.4454 33.7504 24.638 20.8109 18.4046 16.3483 14.3585 12.4525 10.7586 9.36575 8.25472 7.39159 6.76469 6.36271 6.17507 6.18765 6.38361 6.75299 7.28223 7.95977 8.7789 9.76019 10.9032 12.1359 13.412 14.7769 16.4246 18.8191 23.0957 32.6032 61.0628 181.423 1058.96 1051.52 182.77 63.482 33.9588 24.8125 20.8421 18.2783 16.0947 14.0314 12.1138 10.4615 9.12401 8.06403 7.25037 6.67158 6.31688 6.17568 6.23337 6.47326 6.88624 7.45691 8.17474 9.04538 10.0854 11.2715 12.5199 13.7832 15.1085 16.6915 18.9976 23.1604 32.533 60.9087 181.416 1059.12 1051.51 182.658 63.5225 34.1578 24.9505 20.8208 18.0992 15.8007 13.6832 11.7723 10.1715 8.89227 7.88367 7.11927 6.58825 6.28079 6.18671 6.29112 6.57738 7.0372 7.65049 8.40681 9.33115 10.4356 11.6686 12.9364 14.1907 15.4799 17.0017 19.2237 23.2777 32.5199 60.8219 181.486 1059.32 1051.51 182.553 63.5686 34.3393 25.0445 20.7475 17.8761 15.4801 13.3292 11.4422 9.89869 8.67618 7.71683 6.99992 6.51518 6.25386 6.20685 6.35956 6.696 7.20311 7.85396 8.64887 9.62906 10.8033 12.0876 13.3787 14.6288 15.8871 17.3524 19.4951 23.4454 32.5625 60.8036 181.634 1059.54 1051.5 182.455 63.6207 34.4983 25.0949 20.6317 17.6251 15.1506 12.9845 11.1366 9.64874 8.47672 7.56467 6.89307 6.45216 6.23465 6.23304 6.43352 6.82138 7.37526 8.061 8.89485 9.9315 11.1791 12.5173 13.8357 15.0883 16.3232 17.7389 19.8078 23.659 32.655 60.8456 181.848 1059.8 1051.5 182.363 63.6761 34.6327 25.106 20.4828 17.3579 14.8237 12.6564 10.8537 9.41981 8.29482 7.42703 6.79742 6.39722 6.22083 6.26255 6.50928 6.94611 7.54316 8.26333 9.13843 10.2315 11.5484 12.9402 14.2916 15.5576 16.7807 18.1558 20.1565 23.9115 32.7863 60.93 182.105 1060.07 1051.49 182.279 63.7323 34.7409 25.0808 20.3065 17.0802 14.5033 12.3464 10.5918 9.20961 8.12833 7.30129 6.71027 6.34759 6.20958 6.29289 6.58607 7.06624 7.6962 8.4518 9.36939 10.5175 11.8986 13.3472 14.7399 16.0307 17.2539 18.5979 20.5364 24.1977 32.9512 61.052 182.402 1060.37 1051.49 182.201 63.7849 34.8204 25.0205 20.1054 16.7941 14.1904 12.0537 10.3485 9.01521 7.97463 7.18537 6.62995 6.30165 6.19856 6.31968 6.65542 7.17428 7.83381 8.62364 9.58211 10.7818 12.2235 13.7304 15.1705 16.4975 17.7338 19.0579 20.9413 24.5117 33.1435 61.2049 182.731 1060.67 1051.48 182.115 63.8168 34.8595 24.9184 19.8755 16.4966 13.8817 11.7753 10.1201 8.83312 7.8311 7.07751 6.55534 6.2587 6.1873 6.34239 6.71603 7.26885 7.95517 8.77714 9.7744 11.0224 12.5208 14.085 15.5762 16.9487 18.211 19.5278 21.3649 24.8493 33.3622 61.3915 183.095 1060.97 1051.48 182.026 63.8249 34.8536 24.7729 19.6185 16.1904 13.5799 11.514 9.90757 8.66295 7.69835 6.97859 6.48711 6.21901 6.17573 6.36057 6.76704 7.34924 8.05983 8.91141 9.94495 11.2383 12.7893 14.408 15.9516 17.3766 18.6766 19.9984 21.7993 25.2046 33.6055 61.6162 183.494 1061.27 1051.47 181.922 63.7949 34.7918 24.5795 19.3353 15.88 13.2888 11.2698 9.71178 8.50795 7.5788 6.88987 6.42562 6.18241 6.16333 6.37352 6.80758 7.41464 8.14694 9.02534 10.0922 11.4278 13.0278 14.6974 16.2926 17.7746 19.1217 20.4603 22.2362 25.5723 33.8725 61.884 183.931 1061.56 1051.47 181.796 63.7161 34.668 24.3416 19.0357 15.5764 13.0178 11.0487 9.53764 8.37181 7.47443 6.81225 6.37105 6.14852 6.14942 6.38099 6.83684 7.4625 8.21443 9.11674 10.2136 11.588 13.2335 14.9498 16.5951 18.1367 19.5379 20.9032 22.6651 25.9439 34.1603 62.2 184.404 1061.83 1051.46 181.651 63.5899 34.4913 24.0778 18.7402 15.2964 12.7783 10.8582 9.38987 8.25733 7.3867 6.74623 6.32313 6.11643 6.13243 6.38026 6.85165 7.4904 8.25886 9.18151 10.3041 11.713 13.3996 15.1582 16.8516 18.4548 19.9167 21.318 23.0768 26.3101 34.4593 62.553 184.89 1062.09 1051.46 181.5 63.4308 34.2838 23.8139 18.4702 15.0541 12.5783 10.7031 9.27153 8.16629 7.31649 6.69206 6.28151 6.08498 6.10994 6.36701 6.84779 7.49573 8.27652 9.2153 10.3588 11.7967 13.5189 15.3146 17.0525 18.7173 20.2442 21.6904 23.4577 26.6585 34.7562 62.9207 185.35 1062.31 1051.46 181.365 63.2677 34.0782 23.5793 18.2461 14.8611 12.4239 10.5871 9.18515 8.10011 7.2646 6.6501 6.24614 6.05353 6.08038 6.33847 6.82146 7.4741 8.26222 9.21205 10.3709 11.8308 13.5823 15.4109 17.1893 18.913 20.5054 22.0022 23.788 26.9672 35.0233 63.2556 185.724 1062.51 1051.45 181.273 63.1377 33.911 23.4004 18.0827 14.724 12.3168 10.5101 9.12976 8.05751 7.23001 6.61979 6.21687 6.0222 6.04402 6.29467 6.77212 7.42443 8.21429 9.1694 10.3371 11.8109 13.5849 15.4443 17.2619 19.0399 20.6933 22.242 24.0541 27.2217 35.2424 63.5247 185.982 1062.66 1051.45 181.237 63.0654 33.8033 23.2858 17.9787 14.6371 12.2499 10.4641 9.09732 8.03139 7.20711 6.59735 6.19184 5.99101 6.00254 6.23842 6.70208 7.34805 8.13386 9.08808 10.2581 11.7372 13.5271 15.4165 17.2757 19.1031 20.8092 22.4058 24.2471 27.4118 35.4031 63.7095 186.119 1062.77 1051.45 181.244 63.0485 33.7521 23.2233 17.9171 14.5816 12.2034 10.4293 9.07052 8.00892 7.18746 6.57814 6.1696 5.96132 5.96006 6.17725 6.6189 7.2489 8.02557 8.97157 10.1357 11.6104 13.409 15.3301 17.2355 19.1142 20.8706 22.5105 24.3783 27.5429 35.5094 63.8164 186.16 1062.84 1051.45 181.264 63.0587 33.7306 23.1814 17.861 14.5203 12.1485 10.3842 9.03419 7.98034 7.16482 6.55837 6.14864 5.93416 5.92059 6.11824 6.53359 7.14124 7.90401 8.83432 9.98278 11.4416 13.2377 15.1847 17.1399 19.0779 20.8925 22.5808 24.4766 27.6427 35.5888 63.8836 186.162 1062.85 1051.45 181.264 63.0633 33.7002 23.1085 17.7628 14.4196 12.0628 10.317 8.98278 7.9423 7.13663 6.53601 6.12779 5.90994 5.88706 6.06779 6.45746 7.04089 7.78679 8.69629 9.82107 11.2541 13.033 14.9867 16.9841 18.985 20.871 22.6255 24.5641 27.7413 35.672 63.9446 186.161 1062.82 1051.45 181.245 63.0142 33.5846 22.9524 17.5996 14.2743 11.9486 10.2321 8.92112 7.89841 7.10522 6.51229 6.1074 5.88861 5.8599 6.02828 6.3969 6.95826 7.68715 8.57473 9.6722 11.0741 12.8207 14.7528 16.7707 18.8226 20.7823 22.6209 24.6282 27.8407 35.7729 64.023 186.176 1062.76 1051.45 181.121 62.842 33.3779 22.7367 17.4032 14.1145 11.8307 10.1493 8.86423 7.85973 7.0783 6.49195 6.08959 5.86996 5.83706 5.99686 6.3505 6.89492 7.60954 8.47839 9.55047 10.9207 12.6224 14.5067 16.5168 18.5944 20.6124 22.5384 24.6366 27.9175 35.8848 64.1309 186.206 1062.69 1051.45 180.993 62.6532 33.1507 22.5147 17.2149 13.9718 11.7339 10.088 8.82667 7.83698 7.06338 6.47973 6.07644 5.85329 5.81481 5.96672 6.30914 6.84145 7.54609 8.40272 9.45913 10.7981 12.4424 14.2728 16.2509 18.3209 20.3677 22.3675 24.5658 27.9432 35.9858 64.2661 186.247 1062.62 1051.45 180.894 62.4746 32.9292 22.3132 17.0596 13.8675 11.6751 10.0604 8.81693 7.83574 7.06396 6.4776 6.06861 5.83784 5.79049 5.93249 6.26385 6.78536 7.48107 8.32768 9.3734 10.6899 12.2887 14.0731 16.0055 18.0338 20.0706 22.1158 24.4082 27.8977 36.0437 64.3895 186.266 1062.58 1051.46 180.843 62.3366 32.7489 22.1685 16.9683 13.8239 11.6675 10.0732 8.83756 7.85642 7.07964 6.48499 6.06554 5.82284 5.76261 5.89116 6.20905 6.71866 7.40484 8.24142 9.27607 10.5771 12.1513 13.9052 15.7951 17.7678 19.7629 21.814 24.1755 27.7794 36.051 64.4794 186.229 1062.56 1051.46 180.85 62.2638 32.6389 22.1015 16.9502 13.8402 11.7044 10.1173 8.87983 7.89182 7.10512 6.49848 6.06544 5.80773 5.73128 5.8426 6.14305 6.63694 7.31062 8.13506 9.15522 10.4427 12.008 13.7502 15.6153 17.5426 19.4869 21.5106 23.8975 27.5848 35.9732 64.4737 186.098 1062.53 1051.46 180.916 62.2654 32.6061 22.1075 16.9921 13.9002 11.7703 10.1798 8.93341 7.93412 7.1348 6.51446 6.06651 5.79246 5.69813 5.78994 6.06992 6.54371 7.20038 8.00994 9.01119 10.2821 11.8438 13.5874 15.449 17.357 19.269 21.262 23.6451 27.3766 35.8541 64.4172 185.953 1062.5 1051.47 181.017 62.3222 32.6302 22.1609 17.0677 13.9803 11.8453 10.2444 8.98536 7.97324 7.16106 6.52745 6.06536 5.7758 5.66423 5.73665 5.99522 6.44619 7.08241 7.87447 8.85297 10.1013 11.6535 13.4002 15.2711 17.1837 19.093 21.0765 23.455 27.2063 35.7388 64.3431 185.817 1062.46 1051.47 181.132 62.4099 32.6853 22.2329 17.15 14.0578 11.911 10.2965 9.02452 8.00051 7.17714 6.5324 6.05857 5.7561 5.62998 5.6856 5.92467 6.35323 6.96819 7.74191 8.69716 9.91705 11.4461 13.1899 15.0705 16.9991 18.9279 20.9278 23.3175 27.0834 35.6427 64.2559 185.697 1062.38 1051.47 181.242 62.5036 32.7462 22.2976 17.2144 14.1122 11.952 10.325 9.04233 8.00935 7.17795 6.52536 6.04328 5.73163 5.59505 5.63821 5.86202 6.27152 6.86692 7.62277 8.55524 9.74462 11.2429 12.9732 14.8536 16.7953 18.7506 20.7826 23.2009 26.9884 35.5608 64.154 185.58 1062.29 1051.48 181.327 62.5778 32.7887 22.3341 17.2445 14.1323 11.9608 10.3243 9.03512 7.99728 7.16175 6.50508 6.01853 5.70172 5.55909 5.59486 5.80899 6.20517 6.78533 7.52575 8.43803 9.59934 11.0652 12.7718 14.6382 16.581 18.5558 20.621 23.0754 26.8929 35.4788 64.0407 185.461 1062.2 1051.48 181.389 62.6249 32.8008 22.332 17.2343 14.1153 11.9372 10.2964 9.00573 7.96732 7.13129 6.47374 5.98576 5.66699 5.52188 5.55467 5.76447 6.15376 6.72454 7.45365 8.35056 9.48949 10.9257 12.6037 14.4466 16.3774 18.3581 20.4467 22.9346 26.7854 35.3918 63.9333 185.357 1062.12 1051.48 181.425 62.6363 32.7733 22.2875 17.1858 14.0666 11.8883 10.249 8.96147 7.92589 7.09183 6.43532 5.94767 5.62884 5.48357 5.51646 5.72603 6.11394 6.68094 7.4031 8.29016 9.41368 10.8272 12.4793 14.2953 16.204 18.1755 20.2725 22.7839 26.6658 35.301 63.8485 185.286 1062.08 1051.48 181.45 62.6259 32.716 22.2126 17.1126 14.0006 11.8281 10.1946 8.91281 7.88146 7.04998 6.39474 5.90757 5.58902 5.44435 5.47878 5.69047 6.08062 6.64771 7.36612 8.24786 9.3635 10.7655 12.4004 14.1927 16.0755 18.0271 20.1177 22.6391 26.5451 35.2163 63.8048 185.266 1062.09 1051.48 181.463 62.5974 32.636 22.1198 17.0295 13.9312 11.7692 10.1438 8.86831 7.84073 7.01088 6.35578 5.86802 5.5489 5.40437 5.44047 5.65518 6.04964 6.61928 7.336 8.21549 9.32782 10.7269 12.3554 14.1323 15.993 17.9216 19.9963 22.5155 26.4366 35.1476 63.8113 185.299 1062.14 1051.48 181.471 62.5607 32.5457 22.0231 16.95 13.8699 11.7206 10.1035 8.83305 7.80747 6.97735 6.32054 5.83049 5.5093 5.36375 5.4008 5.61844 6.01796 6.59121 7.30699 8.18538 9.29605 10.6972 12.3288 14.0996 15.9461 17.856 19.9131 22.4233 26.3504 35.0991 63.858 185.368 1062.23 1051.48 181.486 62.5334 32.4629 21.9392 16.8876 13.8271 11.6903 10.0792 8.81064 7.78432 6.95143 6.29067 5.79626 5.47111 5.32278 5.35935 5.57913 5.98285 6.55916 7.27347 8.15005 9.25792 10.6624 12.3027 14.0743 15.9149 17.814 19.8579 22.3577 26.285 35.0662 63.9244 185.446 1062.34 1051.48 181.51 62.5212 32.3963 21.8754 16.8475 13.8054 11.6783 10.0695 8.79926 7.76939 6.93157 6.2651 5.76475 5.43409 5.28147 5.31615 5.53691 5.94325 6.52123 7.23293 8.10613 9.20851 10.6144 12.2656 14.0419 15.8835 17.7809 19.8198 22.3127 26.2367 35.041 63.9849 185.504 1062.44 1051.48 181.544 62.5287 32.3531 21.8369 16.8311 13.8033 11.681 10.0702 8.79513 7.75962 6.91554 6.2424 5.73524 5.39814 5.24023 5.27196 5.49253 5.89994 6.47802 7.1857 8.0533 9.14645 10.5488 12.2085 13.9888 15.8344 17.7365 19.7786 22.271 26.1927 35.011 64.0168 185.525 1062.52 1051.48 181.582 62.5522 32.3312 21.8179 16.8296 13.8106 11.6887 10.0727 8.79132 7.74974 6.89953 6.21997 5.70615 5.3626 5.19931 5.22806 5.44832 5.8569 6.43534 7.13808 7.99848 9.07938 10.4727 12.1354 13.9163 15.7653 17.6752 19.7266 22.2247 26.1463 34.9701 64.01 185.504 1062.57 1051.48 181.622 62.5858 32.3234 21.8085 16.8315 13.8169 11.6929 10.0709 8.78336 7.73668 6.8814 6.19629 5.67635 5.3267 5.15833 5.1846 5.40685 5.81905 6.39699 7.09599 7.94894 9.01667 10.3939 12.0482 13.825 15.6736 17.5898 19.6519 22.1597 26.085 34.9107 63.9628 185.448 1062.6 1051.48 181.664 62.6261 32.3225 21.7973 16.8247 13.8122 11.6867 10.0604 8.76862 7.71875 6.85992 6.17029 5.64501 5.29001 5.11779 5.14376 5.37203 5.79087 6.36772 7.06492 7.91197 8.96813 10.3259 11.9643 13.7327 15.5756 17.4931 19.5631 22.08 26.0096 34.8336 63.8829 185.369 1062.62 1051.48 181.699 62.6607 32.314 21.7712 16.8001 13.7917 11.6689 10.042 8.74871 7.69752 6.83611 6.14236 5.61194 5.25212 5.07735 5.10543 5.34292 5.77053 6.34786 7.04582 7.88978 8.9366 10.2746 11.894 13.6495 15.4803 17.3917 19.4626 21.9842 25.9178 34.7435 63.7927 185.293 1062.64 1051.48 181.728 62.6841 32.2883 21.7228 16.7548 13.7566 11.6428 10.0196 8.72726 7.67556 6.81133 6.11277 5.57658 5.21179 5.03523 5.06742 5.31738 5.75678 6.3375 7.04043 7.88555 8.92691 10.2481 11.8497 13.5924 15.4086 17.3087 19.3735 21.8928 25.8249 34.6514 63.7087 185.236 1062.69 1051.48 181.761 62.7051 32.2528 21.6632 16.7044 13.7234 11.6236 10.0062 8.71415 7.65996 6.79036 6.08435 5.54002 5.16842 4.989 5.02533 5.28936 5.74309 6.33056 7.04281 7.89366 8.93366 10.241 11.8267 13.5579 15.3586 17.2435 19.296 21.8059 25.7326 34.5661 63.6529 185.21 1062.78 1051.48 181.811 62.7367 32.2187 21.6059 16.663 13.7044 11.6197 10.0065 8.71122 7.65019 6.77118 6.05445 5.49946 5.11906 4.93523 4.9747 5.25308 5.72345 6.32179 7.04836 7.91079 8.9549 10.2517 11.8248 13.5498 15.3399 17.2127 19.2524 21.748 25.6608 34.4953 63.6209 185.206 1062.89 1051.48 181.887 62.7996 32.2108 21.5764 16.654 13.7175 11.6432 10.0273 8.72195 7.64831 6.75563 6.02491 5.45634 5.06418 4.87285 4.91266 5.20336 5.69107 6.30383 7.0482 7.92623 8.97757 10.2639 11.8235 13.5437 15.3257 17.1891 19.2172 21.6976 25.5946 34.434 63.6137 185.223 1063.05 1051.47 181.969 62.8815 32.2275 21.5747 16.6724 13.7515 11.6786 10.0529 8.73212 7.64216 6.73396 5.98848 5.40586 5.00112 4.80144 4.84255 5.14347 5.64335 6.27728 7.04393 7.94242 9.00492 10.2811 11.8269 13.5455 15.325 17.1865 19.2102 21.6775 25.552 34.3825 63.6075 185.236 1063.21 1051.47 182.037 62.9656 32.2599 21.5909 16.7024 13.7883 11.7095 10.0697 8.73137 7.6247 6.70198 5.94431 5.34963 4.93251 4.72391 4.76557 5.07331 5.58223 6.23983 7.03038 7.95012 9.02333 10.2866 11.8138 13.526 15.3003 17.1599 19.1825 21.6424 25.5006 34.3286 63.6034 185.251 1063.4 1051.47 182.056 63.0148 32.2751 21.5865 16.7019 13.7883 11.7031 10.0533 8.70221 7.58267 6.64868 5.88798 5.28949 4.8615 4.64361 4.68531 4.99962 5.51942 6.20343 7.02029 7.9629 9.04818 10.3008 11.8106 13.5163 15.2856 17.1443 19.1678 21.6219 25.4609 34.2749 63.5865 185.263 1063.55 1051.47 182.017 62.9999 32.2385 21.5312 16.6469 13.7383 11.6585 10.0104 8.65325 7.52169 6.57918 5.82582 5.23489 4.79595 4.56345 4.60052 4.91919 5.45124 6.16097 7.00342 7.96701 9.06314 10.3082 11.7991 13.4946 15.2565 17.1076 19.1264 21.5764 25.4096 34.235 63.6084 185.327 1063.76 1051.47 181.978 62.966 32.1671 21.4259 16.5424 13.6531 11.5947 9.9586 8.59723 7.44905 6.50485 5.76205 5.17822 4.72896 4.48041 4.51038 4.83195 5.3777 6.11209 6.98015 7.96507 9.07559 10.324 11.8049 13.5018 15.2689 17.115 19.1226 21.5567 25.3724 34.2036 63.6544 185.452 1063.84 1051.47 182.005 62.9773 32.1123 21.3291 16.4601 13.6067 11.5753 9.94407 8.56562 7.3909 6.44229 5.70018 5.11171 4.65457 4.39311 4.41063 4.72622 5.27873 6.02846 6.91466 7.91489 9.03866 10.2987 11.775 13.4874 15.2824 17.1364 19.1352 21.5514 25.3568 34.2158 63.7005 184.768 1064.09 1051.46 182.175 63.1421 32.176 21.332 16.4778 13.6538 11.6271 9.96957 8.54536 7.33679 6.37732 5.62275 5.02261 4.56716 4.30323 4.30818 4.6092 5.15721 5.90844 6.80077 7.80726 8.94151 10.221 11.701 13.4507 15.3107 17.2001 19.197 21.5785 25.3341 34.1358 63.3806 182.566 1064.1 1051.46 182.434 63.449 32.3839 21.4676 16.6121 13.7848 11.7172 9.99156 8.49414 7.24838 6.27877 5.51164 4.90639 4.46154 4.20808 4.2093 4.4913 5.01916 5.74884 6.62333 7.61592 8.74392 10.0327 11.5171 13.3123 15.2666 17.2334 19.2656 21.6248 25.3015 33.9587 62.8405 180.293 1064.41 1051.46 182.556 63.6783 32.5798 21.6039 16.7139 13.8286 11.6709 9.85494 8.291 7.0317 6.07541 5.32139 4.73729 4.32379 4.10907 4.13626 4.41794 4.92375 5.61475 6.44791 7.40586 8.50397 9.77468 11.2537 13.0721 15.1216 17.1876 19.2661 21.5936 25.1644 33.6694 62.3268 179.041 1064.43 1051.46 182.399 63.6287 32.5703 21.5539 16.5824 13.5795 11.3024 9.40723 7.84172 6.64847 5.75066 5.05389 4.53011 4.18036 4.03362 4.11181 4.41827 4.91522 5.56403 6.33975 7.24018 8.29024 9.52198 10.9732 12.7758 14.8932 17.0778 19.255 21.6099 25.0985 33.4278 61.8686 178.145 1064.8 1051.46 182.03 63.2895 32.2668 21.1742 16.0496 12.8928 10.5305 8.64322 7.19353 6.15548 5.37659 4.78751 4.36477 4.11111 4.03712 4.16903 4.50941 5.01727 5.64939 6.38404 7.22578 8.20966 9.38077 10.7842 12.5411 14.6337 16.8366 19.0539 21.4299 24.8894 33.1669 61.5813 177.762 1064.95 1051.46 181.563 62.7298 31.6544 20.4149 15.1143 11.8673 9.54638 7.82396 6.6088 5.76102 5.14017 4.684 4.36866 4.1742 4.12751 4.26915 4.62022 5.14787 5.80314 6.54965 7.38074 8.32891 9.45414 10.8234 12.5608 14.6215 16.8239 19.0844 21.494 24.9101 33.0688 61.4186 177.638 1065.35 1051.46 181.145 62.0764 30.8168 19.3918 13.9982 10.8243 8.70968 7.25477 6.30429 5.64549 5.16574 4.8065 4.52692 4.31016 4.22034 4.31751 4.65208 5.20239 5.91347 6.72733 7.61155 8.5751 9.68169 11.0236 12.7185 14.6466 16.7016 18.8674 21.2669 24.764 33.102 61.6916 178.028 1065.45 1051.46 181.11 61.7521 30.2018 18.6108 13.2588 10.2971 8.45619 7.22867 6.43649 5.88037 5.4544 5.09208 4.73894 4.45145 4.27991 4.28208 4.53624 5.06029 5.8201 6.7463 7.77416 8.87727 10.0902 11.511 13.2841 15.2322 17.2551 19.3515 21.6424 25.0068 33.3103 62.1621 178.701 1066.11 1051.46 182.148 62.7052 30.7784 18.914 13.5195 10.6532 8.9269 7.76169 6.97388 6.39528 5.91197 5.45066 5.02625 4.66913 4.40743 4.27397 4.32092 4.65134 5.30668 6.2572 7.41624 8.69485 10.0587 11.5622 13.378 15.343 17.3108 19.3367 21.6581 25.2354 33.9036 62.9793 179.146 1065.72 1051.46 183.711 64.7003 32.6287 20.4502 14.8018 11.7618 9.91292 8.65686 7.74669 7.05689 6.43774 5.8746 5.37773 4.96097 4.63393 4.40272 4.28361 4.32768 4.67711 5.42857 6.59042 8.05873 9.71077 11.4833 13.4383 15.7338 17.9592 20.0048 22.0736 25.2085 33.5137 62.515 178.622 1066.61 1051.46 183.989 65.5012 33.6797 21.4474 15.4847 12.2096 10.2779 8.96545 8.02748 7.29107 6.62117 6.0174 5.49312 5.0597 4.72239 4.47986 4.32698 4.2647 4.31988 4.60352 5.30499 6.51261 8.14711 10.0317 12.041 14.2844 16.7838 19.2206 21.7214 25.1745 33.4484 62.0253 177.932 1065.99 1051.46 175.858 62.3207 32.4593 20.7151 15.0348 11.8993 9.96989 8.64816 7.64335 6.82185 6.13641 5.56765 5.10544 4.73957 4.4612 4.2691 4.17343 4.1957 4.36458 4.74777 5.40807 6.43268 7.8881 9.75089 11.8877 14.2313 16.8076 19.1135 21.3576 24.6138 32.9482 61.908 178.199 1066.55 1051.46 176.277 63.4191 32.6869 20.7828 15.0625 11.8578 9.82653 8.40331 7.33416 6.50308 5.85271 5.34524 4.94849 4.63838 4.40252 4.23777 4.14891 4.15401 4.28682 4.61569 5.1889 6.05779 7.27111 8.87233 10.8491 13.1344 15.8123 18.3419 20.8691 24.4117 32.9671 62.1278 178.718 1066.35 1051.47 177.081 64.3762 33.5386 21.4089 15.4334 12.0047 9.81818 8.32357 7.2582 6.47625 5.88292 5.41706 5.04957 4.77245 4.57979 4.46112 4.41344 4.45659 4.65132 5.0823 5.8103 6.88389 8.32828 10.1584 12.3647 14.9698 17.6047 19.8256 22.0153 25.5154 34.6382 64.4151 180.084 1067.18 1051.48 176.903 64.0445 33.07 20.8623 14.8821 11.5174 9.44481 8.08685 7.15251 6.4779 5.9659 5.56071 5.23318 4.97023 4.76689 4.62101 4.53047 4.49436 4.51078 4.60348 4.90126 5.54515 6.65923 8.30073 10.4312 12.9384 15.8016 18.1399 20.0534 22.6804 30.2326 58.1979 174.242 1066.95 1051.49 176.779 63.7017 32.5985 20.3708 14.4556 11.2152 9.30429 8.12575 7.37367 6.87453 6.52347 6.25499 6.02814 5.81854 5.61397 5.41235 5.22196 5.07158 4.98746 5.00122 5.09567 5.37079 6.07338 7.51627 9.89424 13.0725 16.83 20.3047 22.9707 25.8835 33.6413 62.5178 179.032 1068 1051.49 177.116 64.0073 32.667 20.2354 14.2507 11.072 9.2943 8.25448 7.60415 7.15463 6.8061 6.50998 6.2473 6.01511 5.81791 5.66355 5.55904 5.5254 5.52385 5.50355 5.45229 5.44619 5.65682 6.42842 8.03362 10.6068 14.1035 17.3516 19.9673 23.2974 31.3774 59.3229 175.837 1068.18 1051.52 181.023 66.4871 33.773 20.7859 14.8693 12.0283 10.6014 9.81423 9.29984 8.88577 8.49249 8.08741 7.66306 7.22143 6.76503 6.3171 5.89638 5.50531 5.14311 4.80731 4.4849 4.15955 3.85501 3.69257 4.18629 5.8331 9.05044 13.6462 17.0344 19.3366 27.9599 62.1086 184.885 1069.41 1051.59 171.691 55.3471 25.2741 16.2696 13.9069 13.4722 13.3844 13.2257 12.943 12.55 12.0577 11.4811 10.8681 10.2659 9.70652 9.22859 8.88173 8.72017 8.7985 9.17989 9.87202 10.8706 12.2458 14.0315 16.2318 18.978 22.3871 26.7042 32.4159 41.1839 57.4236 93.4265 206.675 1070.66 537.559 23.8192 23.9669 24.0382 24.0707 24.0889 24.1003 24.1063 24.1073 24.1041 24.0971 24.0869 24.0739 24.0587 24.0417 24.0235 24.0047 23.986 23.9679 23.951 23.9361 23.9227 23.9108 23.9007 23.892 23.8847 23.8784 23.8728 23.8678 23.8647 23.8668 23.8791 23.9055 23.9461 550.256 537.381 23.5147 23.4927 23.4325 23.3815 23.3499 23.3314 23.3202 23.3132 23.3087 23.306 23.3045 23.3041 23.3045 23.3055 23.3072 23.3096 23.3125 23.3161 23.3204 23.3255 23.3316 23.3389 23.3477 23.3584 23.3716 23.3881 23.4092 23.4369 23.4736 23.5195 23.5649 23.5758 23.501 533.37 1051.37 168.542 49.8094 21.6725 12.7442 9.06828 7.20618 6.12149 5.42884 4.9581 4.62633 4.38504 4.20764 4.07864 3.98876 3.93256 3.90712 3.91142 3.94607 4.01327 4.11701 4.26351 4.46192 4.72546 5.07341 5.53457 6.15422 7.00491 8.22824 10.1671 13.8523 22.9456 51.7632 170.263 1044.89 1051.42 171.808 55.4885 25.1259 14.0879 9.02884 6.40486 4.96278 4.11937 3.59561 3.25868 3.03769 2.89262 2.79996 2.74551 2.7208 2.72103 2.74405 2.78991 2.86069 2.96079 3.09745 3.28189 3.53119 3.87155 4.34414 5.01627 6.00528 7.53767 10.0994 14.9325 25.8892 57.0712 177.108 1046.2 1051.45 172.889 57.8127 27.5126 16.1554 10.6469 7.60608 5.85276 4.81384 4.16559 3.74118 3.45631 3.26332 3.13436 3.05288 3.00905 2.99738 3.01528 3.06251 3.14091 3.25463 3.4108 3.62081 3.90247 4.28391 4.81045 5.55746 6.65968 8.36537 11.1646 16.2593 27.2904 57.6507 172.474 1047.4 1051.48 173.664 58.8829 28.8939 17.725 12.17 8.94046 6.9563 5.71999 4.92372 4.38409 4.00601 3.73725 3.54727 3.41795 3.33869 3.30355 3.30978 3.35696 3.44676 3.58312 3.7729 4.02721 4.36378 4.81087 5.41422 6.25047 7.46014 9.28606 12.1797 17.2892 28.166 58.1627 172.397 1048.42 1051.5 174.384 59.67 29.888 18.9951 13.5421 10.2452 8.09659 6.6694 5.71403 5.05026 4.56968 4.21651 3.95789 3.77434 3.65448 3.59205 3.58414 3.63029 3.73212 3.89346 4.12101 4.42569 4.82502 5.34705 6.03778 6.9787 8.30754 10.2388 13.1871 18.2502 28.9447 58.7531 172.964 1049.34 1051.51 174.86 60.1595 30.5492 19.9567 14.678 11.3992 9.15874 7.5859 6.48377 5.69878 5.1193 4.68318 4.35605 4.1176 3.95605 3.86502 3.84166 3.88556 3.99844 4.18405 4.44892 4.80364 5.26527 5.86168 6.639 7.68362 9.1241 11.1378 14.1049 19.0791 29.56 59.1923 173.452 1050.15 1051.52 175.285 60.5601 31.0444 20.7143 15.6277 12.4152 10.1364 8.45895 7.22539 6.32312 5.64782 5.13027 4.73516 4.44164 4.23777 4.11721 4.07729 4.11772 4.24044 4.44926 4.75057 5.15469 5.67846 6.3498 7.21846 8.37069 9.91527 11.9984 14.9672 19.8393 30.116 59.6136 173.95 1050.9 1051.53 175.604 60.8376 31.3854 21.2879 16.3949 13.2768 10.9982 9.25162 7.91161 6.90613 6.1435 5.55038 5.0911 4.7448 4.49968 4.3497 4.29259 4.32803 4.45849 4.68785 5.02251 5.47274 6.05537 6.79858 7.75665 9.01116 10.6459 12.7826 15.7404 20.5057 30.5823 59.9481 174.359 1051.57 1051.54 175.911 61.0678 31.6374 21.7302 17.0154 14.0011 11.7479 9.96409 8.54679 7.44797 6.6017 5.93923 5.42041 5.02453 4.74009 4.56155 4.48724 4.51653 4.65272 4.90009 5.26513 5.75821 6.39625 7.20766 8.25058 9.60042 11.3154 13.4948 16.4347 21.0976 30.9929 60.2478 174.739 1052.18 1051.54 176.239 61.2486 31.813 22.0613 17.5053 14.5968 12.3858 10.5882 9.11599 7.94057 7.02156 6.29716 5.7241 5.28223 4.96072 4.7548 4.66345 4.6853 4.82482 5.08692 5.47825 6.00929 6.69707 7.57008 8.6898 10.1248 11.9087 14.1219 17.0413 21.6099 31.3395 60.4879 175.058 1052.74 1051.55 176.757 61.4427 31.9542 22.3165 17.8958 15.0892 12.9302 11.1349 9.6247 8.38699 7.4053 6.62596 6.00378 5.51954 5.16329 4.93128 4.82296 4.83599 4.97622 5.24956 5.66286 6.22672 6.95822 7.88619 9.0748 10.5852 12.4282 14.6678 17.5666 22.0525 31.6361 60.6868 175.345 1053.24 1051.55 177.87 61.722 32.0838 22.5183 18.2113 15.4989 13.3945 11.6104 10.0745 8.78708 7.7524 6.92513 6.2593 5.73683 5.34884 5.09253 4.96704 4.96984 5.10796 5.38862 5.81885 6.40939 7.17751 8.15467 9.40439 10.9763 12.867 15.1269 18.0067 22.4217 31.8748 60.828 175.599 1053.69 1051.55 180.221 62.2805 32.3001 22.7273 18.4914 15.8516 13.7945 12.0239 10.4703 9.14328 8.06425 7.19559 6.49145 5.93501 5.51844 5.23972 5.09704 5.08863 5.22249 5.50732 5.95041 6.56263 7.36144 8.38094 9.683 11.3051 13.2324 15.5062 18.3682 22.7236 32.0625 60.9259 175.891 1054.09 1051.55 183.259 63.0383 32.582 22.9358 18.7336 16.146 14.1286 12.3731 10.8092 9.45294 8.33842 7.43536 6.69908 6.11379 5.67274 5.37299 5.21363 5.19414 5.32274 5.60958 6.06225 6.69175 7.5156 8.57052 9.91667 11.5795 13.5346 15.816 18.6599 22.9646 32.2057 61.0042 176.395 1054.46 1051.55 183.985 63.3618 32.7551 23.0897 18.9193 16.3752 14.3937 12.6565 11.091 9.71667 8.57505 7.64402 6.88173 6.27276 5.81079 5.49239 5.31805 5.2884 5.4121 5.69994 6.16041 6.80443 7.6495 8.73489 10.1193 11.8167 13.7936 16.0778 18.9013 23.1603 32.3271 61.1605 177.705 1054.8 1051.54 184.081 63.4812 32.8465 23.1862 19.0405 16.5296 14.5803 12.8664 11.3103 9.92998 8.77057 7.81876 7.03683 6.40987 5.93062 5.59667 5.41033 5.37274 5.49305 5.78265 6.25092 6.90874 7.77345 8.88662 10.306 12.0359 14.0338 16.3207 19.127 23.3579 32.5197 61.6479 180.667 1055.13 1051.54 184.05 63.4956 32.8766 23.2248 19.0903 16.6021 14.6831 12.9991 11.464 10.0895 8.92161 7.95674 7.1622 6.52259 6.03064 5.68546 5.49087 5.44859 5.56828 5.86187 6.33973 7.01269 7.89792 9.03869 10.4927 12.2569 14.2794 16.5722 19.3633 23.5678 32.7234 62.0598 182.626 1055.46 1051.53 183.914 63.4035 32.837 23.1947 19.06 16.5888 14.7032 13.0585 11.5565 10.1988 9.03003 8.05857 7.25792 6.61054 6.11046 5.75872 5.56001 5.51683 5.63942 5.94016 6.43037 7.12097 8.02908 9.1988 10.6888 12.492 14.5461 16.8509 19.6273 23.7928 32.8935 62.2152 182.972 1055.8 1051.53 183.689 63.2067 32.7201 23.0882 18.9498 16.4995 14.6566 13.0625 11.6039 10.2707 9.10551 8.13131 7.32876 6.67753 6.17309 5.81838 5.61899 5.5782 5.7069 6.01785 6.52284 7.23349 8.16696 9.36721 10.8949 12.743 14.838 17.1651 19.9336 24.0587 33.094 62.3775 183.211 1056.16 1051.53 183.413 62.9254 32.5283 22.9103 18.777 16.3617 14.5754 13.0418 11.6318 10.3254 9.16399 8.18779 7.3842 6.73041 6.22354 5.86779 5.66961 5.63299 5.76941 6.09181 6.61239 7.34362 8.30301 9.53337 11.0983 12.995 15.1398 17.5028 20.2792 24.3778 33.3636 62.6386 183.54 1056.52 1051.54 183.139 62.6076 32.286 22.6908 18.5829 16.2205 14.5024 13.0332 11.67 10.386 9.22429 8.2433 7.43673 6.77904 6.26884 5.91133 5.71375 5.68067 5.8239 6.15635 6.69043 7.43958 8.42182 9.67807 11.2754 13.2185 15.417 17.8295 20.6375 24.7383 33.7046 62.9981 183.935 1056.86 1051.54 182.932 62.3145 32.0361 22.4743 18.4165 16.124 14.4788 13.0687 11.7425 10.4725 9.3057 8.31381 7.49827 6.83271 6.31573 5.95326 5.75307 5.72004 5.86612 6.20394 6.74588 7.5062 8.50347 9.77642 11.395 13.3732 15.6198 18.0905 20.9577 25.1009 34.0828 63.3955 184.312 1057.16 1051.55 182.866 62.1356 31.8451 22.3179 18.3274 16.113 14.5367 13.1732 11.8676 10.5978 9.41871 8.40919 7.57812 6.89984 6.37101 5.99825 5.78986 5.75079 5.89295 6.22862 6.7698 7.53113 8.53134 9.80727 11.4296 13.4192 15.6926 18.2168 21.1661 25.398 34.4319 63.7293 184.553 1057.38 1051.55 182.99 62.1427 31.7705 22.2668 18.3481 16.2085 14.6889 13.354 12.0502 10.7645 9.56323 8.53237 7.68197 6.9852 6.43859 6.04943 5.82636 5.7741 5.90432 6.22905 6.75964 7.51031 8.49963 9.76337 11.3697 13.34 15.6055 18.1588 21.1935 25.5522 34.6755 63.9077 184.583 1057.5 1051.55 183.299 62.3666 31.8435 22.3402 18.4855 16.4077 14.9261 13.5986 12.2776 10.9622 9.73148 8.67778 7.80591 7.08637 6.51766 6.10747 5.8645 5.79299 5.90429 6.21034 6.72186 7.45229 8.41965 9.6601 11.2357 13.1595 15.3776 17.9173 21.0096 25.5031 34.7456 63.876 184.387 1057.52 1051.55 183.721 62.7716 32.054 22.5254 18.7197 16.6844 15.2175 13.875 12.5197 11.1661 9.90455 8.82977 7.93681 7.19355 6.60196 6.16953 5.90463 5.8109 5.89952 6.18255 6.67038 7.37582 8.31623 9.53024 11.0718 12.9351 15.0757 17.5531 20.6454 25.2352 34.5989 63.6151 183.988 1057.47 1051.54 184.138 63.2579 32.3527 22.7847 19.0105 16.9929 15.5139 14.1344 12.7325 11.3395 10.0553 8.96403 8.05258 7.29051 6.68037 6.2289 5.94421 5.82958 5.89625 6.15674 6.62151 7.30313 8.21871 9.41191 10.9285 12.7359 14.7885 17.1661 20.1898 24.7942 34.2314 63.1313 183.43 1057.39 1051.53 184.43 63.7032 32.6775 23.0749 19.3094 17.2754 15.7525 14.3176 12.8664 11.4424 10.1493 9.05292 8.13221 7.36043 6.73969 6.27621 5.97796 5.84823 5.8986 6.14228 6.59014 7.25501 8.15434 9.33934 10.8499 12.6216 14.5975 16.8608 19.7591 24.2783 33.6891 62.4465 182.745 1057.34 1051.52 184.528 64.012 32.9791 23.3598 19.5664 17.4691 15.8688 14.3691 12.8795 11.4449 10.1623 9.07599 8.15866 7.38867 6.76783 6.30214 5.99982 5.86462 5.90868 6.146 6.58817 7.24872 8.14612 9.34069 10.8693 12.6354 14.5627 16.7215 19.4648 23.8134 33.0788 61.6463 182.019 1057.35 1051.5 184.429 64.1432 33.2264 23.6025 19.7265 17.5143 15.8138 14.2572 12.7558 11.3393 10.0879 9.02649 8.12518 7.36837 6.75827 6.30128 6.0062 5.87763 5.92838 6.17306 6.62406 7.29594 8.21449 9.44465 11.011 12.8015 14.7177 16.8013 19.3891 23.5161 32.535 60.8648 181.383 1057.47 1051.49 184.196 64.1246 33.4065 23.7586 19.738 17.3766 15.5802 13.9961 12.5184 11.1479 9.94178 8.91385 8.03738 7.30237 6.71226 6.27437 5.99829 5.8898 5.96243 6.23112 6.70876 7.4106 8.37003 9.65724 11.2877 13.1386 15.0856 17.1324 19.5849 23.4775 32.2009 60.2952 181.041 1057.75 1051.49 183.893 63.9909 33.4914 23.7742 19.57 17.0663 15.2111 13.6417 12.2193 10.9105 9.75121 8.75676 7.90854 7.2003 6.63713 6.22743 5.98145 5.90608 6.01551 6.32485 6.8474 7.59917 8.61897 9.98283 11.704 13.6504 15.6691 17.7212 20.073 23.753 32.1995 60.1592 181.239 1058.2 1051.48 183.536 63.7388 33.426 23.6022 19.2278 16.6352 14.7799 13.2656 11.9152 10.667 9.54462 8.57669 7.75574 7.07633 6.54494 6.17071 5.96412 5.9328 6.09145 6.45514 7.03759 7.85614 8.95251 10.4088 12.2446 14.3181 16.4465 18.5454 20.8382 24.3521 32.6012 60.6311 182.147 1058.8 1051.48 183.109 63.3332 33.157 23.2347 18.763 16.165 14.3678 12.9326 11.6524 10.4497 9.34705 8.39535 7.59808 6.94732 6.45011 6.1157 5.95417 5.97335 6.18812 6.61333 7.26314 8.15715 9.33768 10.8933 12.8579 15.0815 17.3511 19.5349 21.8094 25.2041 33.3504 61.7003 183.692 1059.5 1051.48 182.589 62.7498 32.6774 22.7239 18.2638 15.7419 14.0406 12.6875 11.4603 10.2805 9.17959 8.23392 7.45514 6.83031 6.36614 6.07129 5.95473 6.02375 6.29293 6.77668 7.48957 8.45434 9.71246 11.358 13.4452 15.8231 18.2545 20.5598 22.8648 26.1975 34.3356 63.158 185.456 1060.16 1051.48 182.008 62.0262 32.0572 22.1761 17.8293 15.4374 13.8437 12.5578 11.3576 10.1774 9.0643 8.11418 7.34518 6.74011 6.30317 6.04148 5.96229 6.07173 6.38338 6.91068 7.66855 8.68255 9.99548 11.7015 13.8723 16.38 18.9744 21.4318 23.8185 27.1418 35.3584 64.7858 187.273 1060.64 1051.49 181.456 61.2813 31.4264 21.7048 17.5344 15.2924 13.798 12.5564 11.3565 10.1549 9.01885 8.05395 7.28431 6.68961 6.26829 6.02625 5.96915 6.10154 6.43527 6.98206 7.75644 8.7843 10.1107 11.825 14.0125 16.5917 19.3213 21.9545 24.487 27.8325 35.964 65.1399 184.701 1060.84 1051.5 181.079 60.6797 30.9215 21.3955 17.4186 15.3203 13.906 12.6847 11.4637 10.2248 9.05534 8.06795 7.28703 6.68791 6.26536 6.02449 5.96961 6.10332 6.435 6.97394 7.73307 8.73635 10.027 11.6856 13.8092 16.372 19.1765 21.9956 24.7776 28.3025 36.4178 65.1538 182.066 1060.74 1051.52 181.036 60.4004 30.6509 21.2955 17.4916 15.5143 14.158 12.9372 11.6798 10.393 9.18216 8.16438 7.35997 6.73995 6.29782 6.03857 5.96555 6.07934 6.38653 6.8935 7.61025 8.55671 9.7705 11.3201 13.3065 15.7555 18.5425 21.5135 24.6278 28.5518 36.938 65.68 182.481 1060.41 1051.53 181.405 60.5392 30.6615 21.4085 17.7369 15.8522 14.5331 13.2979 11.9943 10.6527 9.39446 8.34007 7.50163 6.84616 6.36848 6.07402 5.96576 6.04256 6.30853 6.7672 7.42479 8.29587 9.41006 10.8226 12.629 14.8864 17.5488 20.5711 23.9977 28.4394 37.2675 66.2638 186.504 1059.92 1051.54 182.132 61.0928 30.9411 21.7033 18.1184 16.2977 14.9973 13.7364 12.3805 10.9804 9.67171 8.5775 7.69883 6.9987 6.47523 6.1346 5.97998 6.00908 6.22442 6.62749 7.22088 8.01358 9.02644 10.3029 11.9237 13.9517 16.4017 19.3399 22.9448 27.8709 37.199 66.0647 186.036 1059.34 1051.54 183.002 61.9125 31.4021 22.111 18.5793 16.8009 15.5036 14.2066 12.7934 11.3347 9.97732 8.84285 7.92214 7.17576 6.60474 6.21552 6.0117 5.99045 6.15372 6.50224 7.03588 7.7589 8.6845 9.8473 11.3094 13.1179 15.3182 18.0592 21.6596 26.9091 36.7475 65.5805 185.242 1058.76 1051.53 183.776 62.7902 31.9339 22.5564 19.0611 17.3089 15.9987 14.653 13.1747 11.6567 10.258 9.08625 8.12697 7.34242 6.73147 6.3005 6.05365 5.98808 6.10605 6.40869 6.89448 7.56438 8.4257 9.50772 10.8539 12.4827 14.4434 16.9278 20.3598 25.6974 35.9225 64.8538 184.363 1058.21 1051.52 184.26 63.5145 32.432 22.9834 19.5189 17.7734 16.4253 15.0107 13.4575 11.8812 10.4507 9.25401 8.26902 7.46042 6.82443 6.36658 6.0911 5.99527 6.08216 6.35413 6.80954 7.4476 8.27159 9.30855 10.585 12.0847 13.8434 16.0648 19.2287 24.4305 34.8026 63.8446 183.379 1057.75 1051.51 184.4 63.9616 32.8391 23.3802 19.9393 18.1636 16.7322 15.2154 13.5763 11.9504 10.5067 9.30493 8.3131 7.50011 6.85948 6.39509 6.11072 6.00399 6.07911 6.3401 6.78644 7.41709 8.23294 9.2612 10.5119 11.93 13.5316 15.5157 18.3814 23.3031 33.5776 62.6443 182.33 1057.39 1051.51 184.267 64.1399 33.1705 23.7758 20.3271 18.4525 16.8697 15.2097 13.4812 11.8299 10.403 9.22205 8.24687 7.45248 6.8299 6.38092 6.10869 6.0118 6.09593 6.36691 6.82628 7.47464 8.31614 9.37564 10.6368 12.0106 13.4944 15.2758 17.8554 22.4363 32.4294 61.3793 181.273 1057.16 1051.5 184.015 64.1784 33.5124 24.2183 20.6786 18.5999 16.79 14.9603 13.1601 11.5289 10.1531 9.0184 8.08653 7.33369 6.74946 6.33455 6.09248 6.02386 6.13653 6.43821 6.93258 7.62216 8.52258 9.65423 10.9599 12.3217 13.7182 15.3249 17.6371 21.8604 31.4654 60.1665 180.292 1057.07 1051.49 183.757 64.2031 33.9262 24.6867 20.9197 18.5263 16.4484 14.4721 12.6538 11.094 9.80485 8.74205 7.87339 7.1772 6.64405 6.27517 6.07554 6.04875 6.20554 6.55588 7.1058 7.85989 8.84912 10.0894 11.472 12.849 14.1821 15.6365 17.7023 21.576 30.7479 59.1016 179.45 1057.13 1051.49 183.578 64.3208 34.421 25.0946 20.9586 18.1956 15.8783 13.8282 12.0667 10.6149 9.4262 8.44703 7.64962 7.0154 6.53777 6.22012 6.07003 6.09462 6.30814 6.72325 7.34901 8.19309 9.29897 10.6725 12.1551 13.5729 14.8683 16.1926 18.0341 21.5801 30.3149 58.3006 178.906 1057.37 1051.48 183.554 64.5767 34.9234 25.3191 20.7281 17.627 15.166 13.136 11.4871 10.1563 9.06708 8.17099 7.44221 6.86706 6.44343 6.17828 6.08236 6.16658 6.44897 6.94476 7.66575 8.62569 9.86467 11.3784 12.9831 14.4702 15.7541 16.9678 18.6001 21.8359 30.1437 57.7601 178.659 1057.81 1051.47 183.592 64.8641 35.2704 25.2529 20.2346 16.9137 14.4342 12.5046 10.9842 9.76262 8.76071 7.9354 7.26476 6.74075 6.36644 6.15303 6.11463 6.26608 6.62993 7.2246 8.05807 9.14098 10.5199 12.1899 13.939 15.5242 16.8234 17.9469 19.3865 22.3392 30.2766 57.6416 178.968 1058.49 1051.45 183.631 65.0556 35.3468 24.8979 19.5814 16.1901 13.7857 11.9821 10.5764 9.44301 8.50941 7.73779 7.11229 6.63101 6.30214 6.14085 6.1641 6.39023 6.8468 7.55632 8.51042 9.71582 11.2523 13.0949 15.0014 16.7134 18.0591 19.1181 20.3884 23.1012 30.7803 58.1729 180.168 1059.43 1051.44 183.571 65.0047 35.0827 24.2978 18.8581 15.5205 13.2413 11.5614 10.2499 9.18351 8.29833 7.56495 6.97461 6.5311 6.24682 6.14009 6.22956 6.53619 7.09188 7.92016 8.99508 10.3282 12.0394 14.0623 16.1286 17.9947 19.4243 20.451 21.5873 24.1222 31.6932 59.5083 182.445 1060.61 1051.43 183.285 64.5993 34.4835 23.5324 18.1282 14.9333 12.8071 11.2384 9.99572 8.97329 8.11848 7.41143 6.84968 6.44123 6.20135 6.15027 6.30717 6.69493 7.35047 8.28433 9.4645 10.941 12.8297 15.0207 17.257 19.3004 20.8536 21.8788 22.9167 25.355 33.033 61.7185 185.541 1061.88 1051.42 182.737 63.8375 33.6256 22.6969 17.4533 14.453 12.4845 11.0123 9.81063 8.80789 7.97083 7.28183 6.74326 6.36601 6.16674 6.166 6.38162 6.83611 7.5685 8.58467 9.85989 11.474 13.5244 15.8714 18.2884 20.5278 22.2443 23.2892 24.2243 26.5653 34.4843 64.5245 189.268 1063 1051.42 181.964 62.8123 32.6373 21.8952 16.8943 14.1063 12.2813 10.8828 9.7025 8.70159 7.86818 7.18777 6.66459 6.31038 6.14166 6.17766 6.43346 6.92905 7.70185 8.76444 10.1125 11.8252 13.9774 16.4611 19.0706 21.5293 23.4541 24.5564 25.3689 27.5121 35.4459 65.8164 187.218 1063.74 1051.43 181.064 61.6663 31.6587 21.2172 16.499 13.9124 12.2037 10.8555 9.6824 8.66742 7.82345 7.14174 6.62225 6.27714 6.12203 6.17384 6.44439 6.95011 7.72309 8.78549 10.1589 11.8919 14.0604 16.6413 19.4245 22.1151 24.2999 25.5552 26.2963 28.1984 36.0712 66.6051 184.492 1064 1051.43 180.218 60.6049 30.8347 20.7304 16.2859 13.8731 12.2561 10.9404 9.76068 8.72014 7.85347 7.15599 6.62378 6.26911 6.10612 6.14863 6.40511 6.88865 7.62807 8.64574 9.96716 11.6367 13.7499 16.3377 19.2159 22.101 24.5691 26.1146 26.9564 28.6877 36.3913 66.8849 183.756 1063.8 1051.45 179.604 59.7957 30.2519 20.4591 16.2499 13.9812 12.4371 11.1425 9.94705 8.87102 7.9686 7.23938 6.67649 6.29235 6.0996 6.10888 6.32534 6.75778 7.42974 8.36237 9.58354 11.1323 13.112 15.5974 18.4506 21.4233 24.1204 26.0482 27.2312 29.0226 36.4947 66.53 182.709 1063.29 1051.46 179.352 59.3524 29.9523 20.4028 16.3771 14.2221 12.7372 11.4578 10.2425 9.12316 8.17255 7.39645 6.78623 6.35478 6.11367 6.0709 6.22873 6.59134 7.17556 7.99875 9.08806 10.4812 12.277 14.5732 17.2904 20.2257 23.0518 25.3668 27.0752 29.2208 36.5574 65.9081 181.565 1062.64 1051.48 179.505 59.3099 29.9244 20.5296 16.6341 14.5666 13.1324 11.8691 10.6354 9.46859 8.45963 7.62425 6.95373 6.46161 6.15896 6.05209 6.14103 6.42555 6.91565 7.62304 8.56991 9.792 11.3772 13.4318 15.9342 18.7374 21.6088 24.2623 26.568 29.2985 36.6815 65.2745 180.581 1061.97 1051.49 180.003 59.6249 30.1198 20.7943 16.9844 14.9855 13.5992 12.3564 11.1083 9.89148 8.81456 7.90972 7.1704 6.60974 6.23858 6.06246 6.07986 6.28678 6.68719 7.28685 8.10096 9.15908 10.5331 12.3289 14.575 17.1875 20.0302 22.9291 25.7973 29.2584 37.0136 65.0324 179.832 1061.34 1051.51 180.696 60.1784 30.4566 21.1389 17.3882 15.4488 14.1104 12.8911 11.6302 10.3606 9.20541 8.22331 7.41315 6.78275 6.34317 6.09984 6.05015 6.1868 6.50882 7.01671 7.71861 8.63599 9.82184 11.3742 13.3598 15.7516 18.4937 21.5142 24.8134 28.9816 37.3951 65.891 184.765 1060.75 1051.52 181.375 60.7891 30.8302 21.5023 17.8085 15.9287 14.6365 13.4364 12.1567 10.828 9.58847 8.52749 7.64955 6.95474 6.45393 6.15235 6.0463 6.12555 6.38507 6.82091 7.43508 8.24132 9.27441 10.6184 12.3609 14.5192 17.0992 20.1181 23.6785 28.3966 37.3777 65.8794 185.935 1060.22 1051.53 181.997 61.3916 31.2065 21.8677 18.2344 16.4116 15.1549 13.9584 12.6462 11.2509 9.9259 8.78969 7.85138 7.1022 6.55194 6.20519 6.05703 6.09463 6.30975 6.69476 7.24646 7.9719 8.89452 10.0794 11.6139 13.5486 15.9286 18.8399 22.4903 27.5745 37.0451 65.5098 185.342 1059.76 1051.53 182.442 61.8622 31.5203 22.198 18.6335 16.8621 15.6244 14.4116 13.0526 11.5877 10.184 8.98273 7.99613 7.20685 6.62229 6.24581 6.07106 6.083 6.27089 6.62431 7.13609 7.80781 8.65518 9.72637 11.1011 12.8481 15.0328 17.7863 21.4015 26.6738 36.5217 65.0507 184.734 1059.38 1051.54 182.746 62.2133 31.7756 22.4881 18.9908 17.2584 16.0196 14.7691 13.3496 11.8155 10.3455 9.09408 8.07439 7.26142 6.65901 6.26882 6.08288 6.0844 6.26079 6.59957 7.0907 7.73174 8.53237 9.52714 10.7862 12.384 14.3949 16.9776 20.4876 25.8169 35.921 64.5665 184.177 1059.09 1051.54 182.941 62.4657 31.9885 22.7489 19.3091 17.5961 16.331 15.0202 13.5294 11.9312 10.4129 9.13038 8.09411 7.27338 6.66769 6.27692 6.09178 6.09445 6.27134 6.60868 7.09464 7.72394 8.50175 9.45297 10.637 12.1232 13.9856 16.3992 19.7648 25.0602 35.3143 64.093 183.708 1058.9 1051.54 183.059 62.6524 32.1808 22.9915 19.588 17.8657 16.5465 15.1576 13.5928 11.9437 10.4009 9.10866 8.0717 7.25624 6.65799 6.27563 6.09913 6.11032 6.29527 6.63963 7.13069 7.76163 8.53491 9.47077 10.6183 12.0325 13.7805 16.0434 19.2491 24.4429 34.7431 63.6346 183.308 1058.78 1051.54 183.149 62.8198 32.3767 23.2265 19.8306 18.0673 16.6716 15.1987 13.5684 11.8861 10.3402 9.05503 8.02784 7.22527 6.64035 6.27132 6.10791 6.132 6.32969 6.68628 7.18847 7.82856 8.60749 9.54521 10.6825 12.0561 13.7252 15.8725 18.9401 24.016 34.2953 63.2615 183.038 1058.73 1051.54 183.221 62.9875 32.5886 23.4581 20.0386 18.2077 16.7228 15.1682 13.4841 11.7842 10.2511 8.98387 7.9715 7.18531 6.61743 6.26514 6.11821 6.15876 6.3731 6.74628 7.26461 7.91959 8.71101 9.66062 10.8011 12.1494 13.7588 15.8141 18.7654 23.7235 33.9366 62.9174 182.796 1058.73 1051.54 183.265 63.1393 32.7995 23.6717 20.2032 18.2872 16.71 15.0836 13.3609 11.6569 10.1465 8.90307 7.90797 7.13994 6.59136 6.25843 6.13074 6.19061 6.42468 6.81795 7.35656 8.03146 8.84138 9.81076 10.9622 12.2898 13.8439 15.8151 18.6606 23.5025 33.6211 62.5655 182.544 1058.74 1051.53 183.289 63.293 33.0231 23.8722 20.3303 18.3212 16.658 14.9709 13.219 11.5166 10.0307 8.81158 7.83481 7.08687 6.56041 6.25034 6.14556 6.22832 6.48557 6.90229 7.46479 8.16423 9.00259 10.0016 11.1649 12.4715 13.9715 15.8597 18.5993 23.3214 33.3303 62.2112 182.294 1058.77 1051.53 183.296 63.4326 33.2409 24.0604 20.4405 18.3395 16.5915 14.8418 13.0588 11.3577 9.89467 8.69928 7.74373 7.02053 6.5216 6.24001 6.16355 6.27431 6.55959 7.00433 7.59488 8.3226 9.19583 10.2306 11.4071 12.6955 14.1451 15.9519 18.5815 23.1697 33.0453 61.8465 182.054 1058.81 1051.53 183.281 63.5551 33.4668 24.2645 20.5607 18.3575 16.5118 14.6864 12.864 11.1665 9.72641 8.55677 7.63032 6.9396 6.47538 6.22898 6.187 6.33143 6.65017 7.12818 7.75203 8.51322 9.4262 10.5005 11.6926 12.9656 14.3692 16.1014 18.6288 23.0876 32.8186 61.518 181.862 1058.88 1051.52 183.234 63.6525 33.6963 24.4783 20.6769 18.3524 16.3925 14.4819 12.6196 10.9321 9.52328 8.38814 7.49951 6.84888 6.42614 6.22118 6.21943 6.40278 6.7599 7.27602 7.93821 8.73843 9.69594 10.8112 12.0176 13.2752 14.6363 16.3006 18.7357 23.0786 32.6834 61.3152 181.813 1058.99 1051.52 183.155 63.7201 33.9198 24.6826 20.7631 18.2989 16.2151 14.2204 12.3273 10.6615 9.29424 8.20234 7.35909 6.75495 6.37935 6.22127 6.26501 6.49216 6.89192 7.44896 8.15143 8.99938 10.0091 11.1609 12.3779 13.6197 14.9398 16.539 18.8865 23.1193 32.6014 61.1705 181.835 1059.13 1051.52 183.061 63.774 34.1329 24.8585 20.799 18.1823 15.9745 13.9065 11.9986 10.3684 9.05205 8.01026 7.21785 6.66461 6.3401 6.23306 6.32687 6.60279 7.05058 7.65108 8.3935 9.29271 10.358 11.5472 12.7747 14.0002 15.2793 16.8149 19.0785 23.2069 32.5721 61.0896 181.931 1059.3 1051.51 182.962 63.8082 34.3182 24.9846 20.7692 17.9977 15.6762 13.5542 11.6522 10.0707 8.81173 7.82383 7.08472 6.58417 6.31253 6.2591 6.40676 6.73648 7.23494 7.87706 8.66021 9.61379 10.7393 11.9678 13.206 14.4153 15.6542 17.1286 19.3131 23.3446 32.6028 61.0888 182.119 1059.52 1051.51 182.849 63.8212 34.4641 25.0491 20.6718 17.7551 15.3398 13.1881 11.3136 9.78975 8.58913 7.65483 6.96794 6.5186 6.29857 6.29847 6.50123 6.8882 7.43772 8.11794 8.94398 9.95569 11.1464 12.4161 13.6653 14.8598 16.0611 17.478 19.5883 23.5303 32.6917 61.1666 182.388 1059.76 1051.51 182.741 63.8257 34.5695 25.0539 20.5207 17.4802 14.9974 12.8397 11.0101 9.54488 8.39765 7.51325 6.87359 6.4704 6.29775 6.34826 6.60497 7.0477 7.64511 8.36332 9.23452 10.3081 11.5677 12.8789 14.141 15.3257 16.4952 17.8593 19.8994 23.7551 32.8231 61.2956 182.701 1060.04 1051.5 182.666 63.8497 34.6534 25.0241 20.3505 17.2122 14.6872 12.5402 10.7607 9.34996 8.24793 7.40424 6.80265 6.4372 6.30486 6.40127 6.71104 7.20336 7.83817 8.59693 9.51732 10.6579 11.9876 13.3432 14.6247 15.8076 16.9518 18.2671 20.2385 24.0064 32.9749 61.4388 183.013 1060.34 1051.5 182.632 63.9075 34.7351 24.9882 20.1932 16.9809 14.4321 12.3034 10.5702 9.20405 8.13628 7.32292 6.7498 6.41313 6.31266 6.44735 6.80423 7.34123 8.01116 8.81089 9.77997 10.9875 12.3929 13.7998 15.1098 16.3005 17.4267 18.6965 20.5983 24.2731 33.1304 61.5721 183.306 1060.65 1051.49 182.629 64.0003 34.8294 24.9677 20.0676 16.7974 14.2338 12.1222 10.4253 9.09187 8.04849 7.25736 6.7057 6.39111 6.31565 6.48149 6.87852 7.45502 8.15857 8.99895 10.0171 11.2887 12.769 14.2386 15.5908 16.8036 17.9222 19.1505 20.9806 24.5545 33.2875 61.6948 183.59 1060.95 1051.49 182.62 64.098 34.9255 24.9559 19.9622 16.6429 14.0672 11.9682 10.2973 8.98797 7.96428 7.1925 6.6601 6.36525 6.31162 6.50397 6.93454 7.54459 8.27907 9.15766 10.2239 11.5548 13.1073 14.6523 16.0637 17.3167 18.4418 19.6349 21.3914 24.8574 33.4563 61.8268 183.899 1061.25 1051.48 182.572 64.1608 34.9926 24.9221 19.8438 16.4826 13.8971 11.8081 10.1578 8.87037 7.86784 7.11766 6.60675 6.33349 6.30299 6.52258 6.98121 7.61526 8.37832 9.29106 10.4011 11.7856 13.4067 15.0351 16.5223 17.8375 18.99 20.1592 21.8434 25.1972 33.6616 62.0171 184.296 1061.55 1051.47 182.469 64.1566 34.9981 24.8347 19.6828 16.2883 13.6979 11.6214 9.99327 8.7315 7.75532 7.03111 6.54533 6.29673 6.2917 6.5393 7.02326 7.67693 8.46468 9.40678 10.5543 11.9857 13.669 15.379 16.9525 18.3532 19.5627 20.7318 22.355 25.5998 33.9369 62.3156 184.827 1061.83 1051.47 182.306 64.063 34.9155 24.6717 19.4617 16.0461 13.4612 11.4074 9.80966 8.58011 7.63501 6.93946 6.48022 6.25699 6.27765 6.55279 7.06027 7.73111 8.54064 9.50835 10.6875 12.1596 13.8968 15.6752 17.3322 18.8316 20.1279 21.3297 22.9172 26.0692 34.2976 62.744 185.49 1062.11 1051.47 182.103 63.8884 34.7463 24.4398 19.193 15.7738 13.2098 11.1921 9.634 8.44007 7.52514 6.8552 6.41835 6.21583 6.25729 6.55503 7.08192 7.76733 8.59612 9.58687 10.7936 12.3027 14.0859 15.9164 17.6444 19.2433 20.6453 21.9117 23.4955 26.5795 34.7199 63.2609 186.191 1062.38 1051.46 181.914 63.6903 34.5367 24.1869 18.9266 15.5204 12.9885 11.0139 9.49728 8.33438 7.44151 6.78822 6.3643 6.17241 6.22377 6.53289 7.07091 7.76643 8.61013 9.61999 10.85 12.3907 14.2121 16.082 17.8661 19.5553 21.0674 22.4204 24.0326 27.0769 35.1454 63.7707 186.781 1062.62 1051.46 181.8 63.547 34.3653 23.99 18.7288 15.3376 12.8347 10.8999 9.41444 8.26973 7.38816 6.74119 6.31943 6.12605 6.17318 6.47774 7.01466 7.71345 8.5648 9.58727 10.8346 12.3989 14.2515 16.1571 17.9865 19.7502 21.359 22.8006 24.4585 27.4833 35.4851 64.146 187.112 1062.83 1051.46 181.792 63.5176 34.2933 23.8947 18.626 15.2368 12.7482 10.8405 9.37432 8.23714 7.35862 6.71073 6.28345 6.07892 6.10871 6.3912 6.91175 7.60423 8.45158 9.47551 10.7299 12.3045 14.1813 16.1302 18.0056 19.8325 21.5191 23.0384 24.7466 27.7625 35.69 64.3086 187.138 1062.99 1051.45 181.853 63.5907 34.3244 23.8939 18.5981 15.19 12.698 10.8036 9.34751 8.21323 7.33631 6.6873 6.25398 6.03611 6.04276 6.29108 6.78105 7.45682 8.2862 9.29676 10.5429 12.1106 14.001 16.0022 17.9335 19.8211 21.5661 23.1387 24.8841 27.8961 35.7545 64.2711 186.936 1063.07 1051.45 181.918 63.7062 34.4037 23.9175 18.5679 15.1245 12.6221 10.7389 9.29535 8.16986 7.30138 6.65796 6.22488 5.99933 5.98724 6.20138 6.65223 7.30106 8.10231 9.08539 10.3055 11.8463 13.733 15.7836 17.7888 19.7549 21.567 23.1854 24.9487 27.9449 35.7416 64.146 186.68 1063.09 1051.44 181.924 63.7837 34.4437 23.8692 18.4494 14.9784 12.4844 10.6226 9.20052 8.09611 7.24652 6.61778 6.19363 5.96964 5.94945 6.14252 6.55646 7.16855 7.9429 8.89176 10.0729 11.5711 13.4296 15.4948 17.5647 19.6184 21.5235 23.2205 25.0233 28.0119 35.753 64.0494 186.521 1063.05 1051.44 181.808 63.7184 34.3294 23.6597 18.1928 14.726 12.266 10.445 9.06133 7.99149 7.17089 6.56511 6.15792 5.94462 5.92749 6.11268 6.50294 7.08681 7.83835 8.7555 9.8958 11.3486 13.163 15.1987 17.2993 19.4199 21.4121 23.2022 25.0756 28.0972 35.8331 64.0736 186.538 1062.96 1051.44 181.526 63.4321 34.0099 23.284 17.8139 14.3896 11.9926 10.2341 8.90453 7.87858 7.09201 6.51203 6.12439 5.92579 5.91869 6.10713 6.48864 7.05639 7.79207 8.68545 9.79014 11.2008 12.9563 14.9241 17.0272 19.2019 21.2817 23.1755 25.1405 28.2313 36.0298 64.3314 186.789 1062.87 1051.44 181.25 63.0881 33.5951 22.8329 17.3966 14.046 11.7326 10.048 8.77619 7.79221 7.03457 6.4742 6.10038 5.91263 5.91511 6.11173 6.49711 7.06357 7.79543 8.68072 9.77115 11.135 12.7847 14.6499 16.7049 18.8933 21.0518 23.0768 25.1782 28.3769 36.2653 64.6518 187.024 1062.79 1051.45 181.02 62.7259 33.1604 22.3998 17.0279 13.7701 11.5514 9.94088 8.7182 7.76352 7.02061 6.46554 6.09202 5.90304 5.90538 6.10478 6.49622 7.06861 7.80391 8.69372 9.78745 11.1238 12.6937 14.4547 16.4041 18.5126 20.667 22.7962 25.0692 28.4303 36.4354 64.8888 187.09 1062.75 1051.45 180.872 62.4128 32.7553 22.0325 16.7597 13.6131 11.4912 9.94214 8.74869 7.80256 7.05515 6.48825 6.09958 5.89492 5.88331 6.07276 6.46094 7.03452 7.77093 8.66399 9.76521 11.1071 12.6537 14.3474 16.1826 18.1462 20.1899 22.3205 24.7276 28.2905 36.476 65.0105 186.991 1062.72 1051.45 180.883 62.2527 32.5007 21.8605 16.707 13.655 11.5909 10.0619 8.86318 7.89888 7.12713 6.5335 6.11754 5.886 5.84886 6.01582 6.38836 6.95417 7.68615 8.5757 9.67814 11.0423 12.6172 14.3029 16.0722 17.9031 19.7837 21.8018 24.224 27.9358 36.3427 65.036 186.803 1062.76 1051.46 181.027 62.2763 32.4644 21.9207 16.86 13.8487 11.7857 10.2361 9.00749 8.01118 7.208 6.5838 6.13737 5.87452 5.80471 5.93821 6.2802 6.82479 7.54355 8.42082 9.50777 10.8808 12.5141 14.2486 16.0312 17.813 19.576 21.4498 23.7854 27.5384 36.1229 65.0121 186.649 1062.84 1051.46 181.268 62.4503 32.6014 22.1303 17.1136 14.098 12.0047 10.4166 9.15031 8.12003 7.28638 6.63354 6.1583 5.86463 5.76048 5.85505 6.15469 6.66349 7.35778 8.20929 9.26547 10.6237 12.2995 14.102 15.9566 17.7854 19.5394 21.3381 23.5722 27.2751 35.9343 64.969 186.527 1062.92 1051.47 181.524 62.6853 32.8118 22.3829 17.3745 14.3298 12.1938 10.5638 9.26172 8.20226 7.34413 6.66901 6.17134 5.85298 5.72009 5.77986 6.03703 6.50243 7.16334 7.9822 9.00064 10.3115 11.9683 13.8232 15.7623 17.6898 19.5295 21.3615 23.5614 27.1944 35.8145 64.8678 186.426 1062.91 1051.47 181.746 62.9212 33.0282 22.6113 17.5855 14.5 12.3203 10.6536 9.32359 8.24349 7.36941 6.68051 6.16906 5.83509 5.68309 5.71811 5.94275 6.36581 6.98512 7.76981 8.7443 9.99717 11.5998 13.4548 15.4427 17.4622 19.4253 21.3711 23.627 27.2381 35.7703 64.7186 186.307 1062.8 1051.47 181.887 63.0903 33.186 22.7587 17.7013 14.5756 12.3613 10.6696 9.32362 8.23395 7.35408 6.66106 6.14562 5.80653 5.64722 5.67088 5.87725 6.27107 6.85638 7.60966 8.54196 9.73763 11.2678 13.0683 15.0448 17.1043 19.166 21.2453 23.6181 27.2794 35.7491 64.52 186.126 1062.61 1051.48 181.957 63.1821 33.2658 22.8115 17.7175 14.5607 12.324 10.6197 9.26954 8.18055 7.30378 6.61474 6.10327 5.76765 5.61098 5.63552 5.8387 6.22131 6.78822 7.51971 8.42097 9.57042 11.0286 12.746 14.6584 16.6921 18.7869 20.9581 23.4501 27.2079 35.6796 64.284 185.882 1062.39 1051.48 181.97 63.1952 33.2618 22.7712 17.6451 14.4706 12.2249 10.52 9.1765 8.09675 7.22983 6.55033 6.04796 5.72122 5.57356 5.60746 5.8191 6.20691 6.77321 7.49751 8.38593 9.50606 10.9026 12.539 14.3648 16.3244 18.3863 20.5846 23.1583 27.0203 35.5547 64.0718 185.655 1062.2 1051.48 181.929 63.1332 33.1767 22.6515 17.5076 14.3313 12.0893 10.3945 9.0654 8.00017 7.14648 6.47877 5.98728 5.67139 5.53546 5.58302 5.80982 6.21338 6.79126 7.51962 8.41112 9.52312 10.886 12.4659 14.2078 16.0686 18.0447 20.2032 22.802 26.7455 35.374 63.8948 185.479 1062.07 1051.48 181.857 63.0177 33.0286 22.4757 17.3301 14.1688 11.9448 10.2681 8.95707 7.90784 7.06725 6.41024 5.92814 5.62167 5.49659 5.55798 5.80178 6.22567 6.82091 7.5591 8.46235 9.58628 10.9531 12.5138 14.2011 15.9712 17.8382 19.9037 22.4642 26.4439 35.1743 63.8001 185.422 1062.05 1051.48 181.776 62.8764 32.8454 22.2775 17.147 14.0135 11.8168 10.1616 8.86814 7.83321 7.00252 6.35224 5.87527 5.57396 5.4557 5.52728 5.78528 6.22839 6.8411 7.5903 8.50757 9.65479 11.0553 12.6342 14.3101 16.0278 17.8031 19.7604 22.2378 26.2011 35.0179 63.8346 185.524 1062.15 1051.48 181.713 62.7448 32.662 22.0904 16.9874 13.8882 11.7216 10.0883 8.80984 7.78418 6.95769 6.30832 5.83072 5.52885 5.41163 5.48762 5.75439 6.21185 6.83829 7.59657 8.52523 9.69686 11.146 12.7685 14.4714 16.1852 17.9145 19.7886 22.1737 26.0817 34.9501 63.9915 185.751 1062.35 1051.48 181.681 62.6457 32.5021 21.9369 16.8712 13.8092 11.6715 10.0563 8.78671 7.76314 6.93408 6.2794 5.7953 5.48701 5.36477 5.43906 5.70942 6.17379 6.80562 7.57069 8.50729 9.6923 11.1795 12.8587 14.6132 16.3639 18.0991 19.9373 22.2529 26.0908 34.9701 64.2096 186.014 1062.59 1051.48 181.689 62.5983 32.3883 21.8368 16.8131 13.7859 11.6697 10.0637 8.79405 7.76493 6.92725 6.26229 5.76715 5.44774 5.31514 5.38163 5.6487 6.11137 6.74166 7.50724 8.44494 9.63015 11.1382 12.8724 14.685 16.4955 18.278 20.1308 22.4165 26.1921 35.0459 64.4165 186.233 1062.8 1051.48 181.722 62.5979 32.3291 21.7972 16.8141 13.8123 11.7055 10.0972 8.81914 7.77897 6.92922 6.25163 5.74334 5.41038 5.26416 5.31817 5.5752 6.02897 6.6517 7.41021 8.33993 9.51285 11.0234 12.7969 14.6573 16.5295 18.3797 20.2851 22.5833 26.3214 35.128 64.5469 186.347 1062.94 1051.48 181.776 62.6394 32.3229 21.8078 16.8543 13.8644 11.7549 10.1362 8.84532 7.79262 6.93087 6.2413 5.72047 5.3742 5.21398 5.25409 5.49811 5.93916 6.55061 7.29633 8.21104 9.36203 10.856 12.6447 14.5342 16.4555 18.3735 20.3489 22.6916 26.4239 35.1795 64.5714 186.338 1062.99 1051.48 181.84 62.7076 32.3522 21.8443 16.9058 13.9162 11.797 10.1648 8.86113 7.7976 6.92617 6.22695 5.69567 5.33781 5.16499 5.19215 5.42384 5.85259 6.45143 7.18204 8.07888 9.20563 10.6629 12.4321 14.3343 16.2862 18.2573 20.2996 22.7003 26.4542 35.173 64.4895 186.216 1062.96 1051.48 181.9 62.7835 32.3938 21.8792 16.9416 13.9453 11.8154 10.1718 8.85858 7.78802 6.91056 6.205 5.66634 5.29995 5.1178 5.13553 5.35966 5.78087 6.36721 7.08266 7.96024 9.06052 10.4762 12.2106 14.106 16.0678 18.0719 20.1662 22.6218 26.4094 35.1069 64.3281 186.022 1062.89 1051.48 181.949 62.8503 32.4255 21.8904 16.9445 13.9409 11.8046 10.1547 8.83689 7.76371 6.88378 6.17484 5.63161 5.25996 5.07277 5.0867 5.30965 5.72822 6.30491 7.00784 7.8674 8.94152 10.3162 12.0085 13.8805 15.8336 17.8507 19.9785 22.4772 26.3005 34.9953 64.1345 185.811 1062.83 1051.48 181.978 62.8924 32.4278 21.8621 16.9054 13.8999 11.7651 10.1157 8.79861 7.72664 6.84692 6.13674 5.59113 5.21703 5.02892 5.04521 5.27508 5.69804 6.26992 6.96604 7.81226 8.86429 10.2036 11.8543 13.6932 15.6248 17.6398 19.7858 22.3146 26.1664 34.8652 63.946 185.623 1062.79 1051.48 181.999 62.913 32.3983 21.7969 16.8338 13.8351 11.7099 10.0669 8.754 7.6851 6.80621 6.09479 5.54687 5.17107 4.98409 5.00662 5.24954 5.68297 6.25542 6.95163 7.79121 8.82735 10.1384 11.751 13.5499 15.4472 17.4441 19.5936 22.1429 26.0218 34.7406 63.8062 185.497 1062.82 1051.48 182.021 62.9229 32.3469 21.7095 16.748 13.7643 11.6544 10.0214 8.71366 7.64689 6.76711 6.05257 5.50074 5.12228 4.93652 4.9671 5.22729 5.67665 6.25593 6.96015 7.80176 8.83084 10.1229 11.7066 13.4698 15.3291 17.2959 19.4324 21.9882 25.8876 34.6362 63.7286 185.436 1062.91 1051.48 182.055 62.94 32.2948 21.6247 16.6733 13.7102 11.6171 9.99299 8.68771 7.61917 6.73462 6.0135 5.45459 5.07051 4.88334 4.92011 5.19742 5.66547 6.25689 6.97522 7.82596 8.85463 10.1323 11.6926 13.4264 15.2496 17.1813 19.2925 21.841 25.7557 34.5535 63.7303 185.462 1063.07 1051.48 182.096 62.9678 32.2521 21.5555 16.6211 13.6794 11.5998 9.98041 8.67321 7.59887 6.70643 5.97617 5.4077 5.01523 4.82385 4.86527 5.15781 5.64352 6.25383 6.99248 7.85993 8.89529 10.1619 11.7034 13.4177 15.2153 17.1188 19.2039 21.7345 25.6478 34.4853 63.76 185.501 1063.25 1051.47 182.123 62.9985 32.2259 21.5101 16.5941 13.6697 11.5976 9.97819 8.66587 7.58367 6.68209 5.94161 5.3619 4.95842 4.75993 4.80443 5.10695 5.60355 6.23774 7.00012 7.88779 8.93202 10.1851 11.7049 13.4012 15.1769 17.0582 19.1215 21.6336 25.5407 34.4155 63.7919 185.537 1063.47 1051.47 182.133 63.0231 32.2037 21.4687 16.5649 13.6522 11.5854 9.96664 8.65108 7.563 6.6538 5.90567 5.3164 4.90123 4.694 4.73938 5.04953 5.55746 6.21835 7.00761 7.91901 8.97542 10.2163 11.7156 13.3977 15.1565 17.0225 19.0721 21.5684 25.4603 34.3505 63.8076 185.574 1063.63 1051.47 182.125 63.0345 32.1759 21.4141 16.5147 13.6142 11.5592 9.94768 8.63306 7.54032 6.62261 5.87267 5.2799 4.85079 4.62944 4.66979 4.98376 5.50328 6.19013 7.00554 7.93936 9.00703 10.2363 11.7152 13.3811 15.1183 16.9637 18.9983 21.485 25.3746 34.297 63.8427 185.481 1063.84 1051.47 182.111 63.0258 32.1215 21.3242 16.4292 13.5526 11.5243 9.93037 8.6187 7.51635 6.58808 5.84159 5.25384 4.80994 4.56819 4.59812 4.91329 5.44583 6.1586 7.00097 7.95824 9.04083 10.2678 11.7351 13.3957 15.1216 16.947 18.9598 21.4272 25.3011 34.2176 63.6736 184.017 1063.89 1051.47 182.175 63.077 32.0965 21.2487 16.3656 13.5287 11.5372 9.96049 8.64114 7.51243 6.56989 5.82202 5.23161 4.77108 4.5054 4.51752 4.82598 5.36704 6.09896 6.96252 7.9379 9.03384 10.2655 11.7262 13.3941 15.1269 16.9408 18.9286 21.3691 25.224 34.1134 63.347 182.002 1064.11 1051.47 182.388 63.2829 32.1876 21.2661 16.3957 13.5994 11.6323 10.0492 8.69683 7.52272 6.55701 5.79655 5.19034 4.7204 4.43925 4.43162 4.72651 5.26927 6.01115 6.88762 7.87431 8.98232 10.228 11.6886 13.3862 15.1639 16.9916 18.957 21.3453 25.1353 33.956 63.0278 180.769 1064.09 1051.46 182.716 63.6537 32.4378 21.4272 16.5606 13.7835 11.8028 10.1713 8.74922 7.51656 6.52353 5.74151 5.11643 4.64479 4.36001 4.33858 4.61573 5.14866 5.88269 6.75266 7.7319 8.83766 10.0931 11.5519 13.2901 15.1485 17.0338 19.0152 21.3696 25.0855 33.8085 62.7065 179.604 1064.4 1051.46 182.934 63.9792 32.7064 21.6239 16.7421 13.9416 11.8956 10.1756 8.66326 7.38629 6.3892 5.60001 4.97543 4.51786 4.25664 4.25289 4.5317 5.05503 5.76766 6.6118 7.56529 8.6485 9.89442 11.3459 13.1182 15.0633 17.0223 19.0284 21.3381 24.9539 33.5681 62.3631 178.863 1064.43 1051.46 182.843 64.0102 32.7771 21.6704 16.747 13.8664 11.7098 9.89008 8.31993 7.05617 6.0995 5.34405 4.7584 4.34793 4.14744 4.19656 4.50632 5.0303 5.71552 6.51965 7.43111 8.47134 9.68226 11.1141 12.8977 14.92 16.9797 19.0586 21.3727 24.9011 33.3673 62.0253 178.293 1064.8 1051.46 182.488 63.7064 32.5445 21.4138 16.3826 13.357 11.0801 9.20267 7.68037 6.54508 5.68512 5.01959 4.52476 4.20737 4.09416 4.21477 4.57129 5.11284 5.78538 6.5585 7.42917 8.42487 9.5919 10.9876 12.7431 14.7522 16.8221 18.9174 21.2257 24.7143 33.1541 61.8547 178.115 1064.98 1051.46 182.024 63.1772 32.0133 20.7874 15.5912 12.434 10.1302 8.34055 6.99856 6.04934 5.33862 4.80492 4.42833 4.20935 4.15373 4.30684 4.68314 5.24298 5.93263 6.71377 7.57758 8.55088 9.6938 11.0819 12.8369 14.8335 16.9145 19.0395 21.3488 24.7626 33.0825 61.7586 178.087 1065.4 1051.46 181.635 62.59 31.2797 19.8775 14.5462 11.3861 9.2099 7.63893 6.56102 5.8 5.24367 4.83739 4.55169 4.34043 4.26005 4.37321 4.7321 5.31202 6.0522 6.89289 7.80358 8.79477 9.92852 11.3048 13.0161 14.9023 16.8667 18.9106 21.2037 24.6784 33.1599 62.071 178.504 1065.53 1051.46 181.626 62.3309 30.7439 19.1406 13.7806 10.7644 8.81878 7.46386 6.56268 5.93072 5.4667 5.11246 4.79217 4.52108 4.35108 4.3556 4.62986 5.18915 5.98497 6.93764 7.98402 9.10538 10.3418 11.8029 13.605 15.5322 17.4797 19.4514 21.611 24.9113 33.3214 62.4794 179.12 1066.23 1051.46 182.63 63.3033 31.3508 19.4277 13.9678 11.0144 9.1795 7.89765 7.02536 6.40659 5.93256 5.51385 5.11657 4.76762 4.49642 4.3484 4.39957 4.7679 5.48012 6.47682 7.65743 8.94272 10.3158 11.8499 13.7191 15.6809 17.5934 19.5209 21.7337 25.2531 34.0101 63.3629 179.608 1065.88 1051.46 183.922 65.0353 32.999 20.7936 15.0884 11.9838 10.0648 8.73761 7.7774 7.07616 6.47671 5.93755 5.45687 5.04319 4.70577 4.45452 4.31812 4.37395 4.78308 5.62042 6.84776 8.34716 10.0102 11.7991 13.819 16.1324 18.3042 20.2252 22.1358 25.1694 33.5407 62.7763 178.923 1066.81 1051.46 183.852 65.3818 33.6002 21.3696 15.3741 12.1392 10.2048 8.90218 7.96385 7.21696 6.56599 5.98529 5.47649 5.05 4.71404 4.46904 4.30908 4.2368 4.29308 4.6216 5.39804 6.67675 8.34724 10.2355 12.2631 14.6023 17.1358 19.5384 21.9137 25.2025 33.4241 62.1565 178.148 1066.17 1051.46 175.608 61.8435 32.0658 20.2655 14.6469 11.5912 9.71686 8.43051 7.45224 6.65225 5.97939 5.41713 4.96025 4.60312 4.33906 4.16656 4.09467 4.14345 4.34054 4.7495 5.4457 6.51737 8.02074 9.91039 12.0507 14.4385 17.0248 19.3501 21.5736 24.7491 33.0468 62.123 178.439 1066.78 1051.46 176.201 63.2808 32.5211 20.6132 14.8938 11.6905 9.66278 8.24367 7.17509 6.33819 5.67734 5.16153 4.76601 4.46775 4.2496 4.10544 4.04131 4.07376 4.22582 4.53668 5.05711 5.85813 7.01636 8.59739 10.5859 12.8957 15.6151 18.2154 20.7725 24.2537 32.6784 61.7763 178.474 1066.47 1051.47 177.071 64.3147 33.4388 21.2835 15.2854 11.8322 9.61685 8.08954 6.99086 6.18178 5.57795 5.12644 4.79392 4.55655 4.39751 4.31219 4.31204 4.42167 4.69809 5.17524 5.88813 6.87512 8.18103 9.86872 11.9833 14.5796 17.2602 19.6421 22.0021 25.591 34.7344 64.6272 180.496 1067.29 1051.47 176.981 64.0806 33.0733 20.8381 14.8299 11.4338 9.32615 7.9288 6.95039 6.23026 5.6808 5.25907 4.94471 4.72334 4.57967 4.49897 4.47171 4.49967 4.59285 4.82332 5.26016 5.97858 7.03605 8.47713 10.3212 12.6062 15.1578 17.4183 19.4515 22.3368 30.2288 58.5614 174.824 1067.03 1051.48 177.127 64.1725 33.1207 20.9068 14.9844 11.7209 9.7732 8.54742 7.74187 7.18603 6.77636 6.44807 6.16159 5.89555 5.64257 5.40709 5.20592 5.08082 5.06411 5.1509 5.32045 5.75367 6.67138 8.25396 10.526 13.3722 16.8522 20.0069 22.6074 25.5917 33.6303 62.9672 179.657 1068.1 1051.49 177.572 64.6189 33.2925 20.8313 14.8057 11.579 9.74756 8.65317 7.95256 7.46052 7.07857 6.75801 6.47885 6.23653 6.03358 5.87604 5.7691 5.73756 5.74187 5.73568 5.71911 5.788 6.12737 7.06261 8.76263 11.2217 14.2919 17.0637 19.6575 23.239 31.4944 59.6043 176.27 1068.18 1051.53 181.709 67.0768 34.1549 21.0202 15.0211 12.1279 10.6564 9.82546 9.26814 8.81327 8.38356 7.95015 7.50843 7.05995 6.60446 6.16168 5.74889 5.36659 5.01486 4.69703 4.39031 4.10157 3.83967 3.80852 4.50886 6.29995 9.37239 13.3251 16.0026 18.4711 28.1029 63.1462 185.844 1069.4 1051.6 171.705 54.9283 24.8168 16.0083 13.849 13.5259 13.4665 13.2865 12.9529 12.4876 11.9097 11.2557 10.5921 9.96355 9.40657 8.96469 8.68622 8.61932 8.81556 9.32182 10.0801 11.153 12.5729 14.3503 16.5423 19.2582 22.6114 26.8619 32.5572 41.4373 57.8058 93.7184 206.608 1070.81 537.565 23.8398 23.9944 24.0667 24.0983 24.1152 24.1251 24.1292 24.128 24.1225 24.1132 24.1008 24.0857 24.0685 24.0498 24.0303 24.0106 23.9914 23.9733 23.9568 23.9424 23.9288 23.9172 23.9068 23.8979 23.8898 23.8826 23.8758 23.8696 23.8657 23.8677 23.8804 23.9074 23.9484 550.332 537.347 23.3679 23.2978 23.2383 23.2031 23.1862 23.1784 23.1746 23.1727 23.1718 23.1714 23.1713 23.1715 23.172 23.1726 23.1736 23.1748 23.1763 23.1783 23.1806 23.1835 23.187 23.1912 23.1964 23.2028 23.2111 23.2218 23.2361 23.2559 23.2837 23.3211 23.3638 23.3915 23.372 533.328 1051.36 162.231 48.348 20.9876 12.2116 8.71634 7.07041 6.18149 5.6437 5.28817 5.03774 4.85435 4.71792 4.61719 4.54593 4.50045 4.47878 4.48017 4.5049 4.55449 4.63204 4.74251 4.8932 5.09507 5.36489 5.72985 6.23509 6.96056 8.06493 9.92201 13.6083 22.7941 51.6077 169.917 1044.77 1051.42 169.978 54.6226 24.3978 13.3265 8.37179 5.9258 4.62664 3.88677 3.44012 3.15846 2.97601 2.85698 2.78091 2.73594 2.71505 2.71433 2.73206 2.76834 2.82502 2.90595 3.0176 3.17009 3.37918 3.66968 4.08217 4.68504 5.60065 7.06466 9.57801 14.3768 25.1541 55.3221 169.979 1046.08 1051.46 172.165 57.152 26.7917 15.3273 9.83222 6.90616 5.29209 4.3626 3.79451 3.43161 3.19349 3.03566 2.93255 2.86908 2.83637 2.82943 2.84591 2.88555 2.95001 3.04316 3.17172 3.34658 3.58512 3.91524 4.38275 5.06537 6.10095 7.7472 10.5251 15.6477 26.6727 56.819 171.012 1047.25 1051.48 173.124 58.3111 28.2396 16.9555 11.3722 8.20411 6.32496 5.19439 4.48541 4.01522 3.6925 3.4674 3.31111 3.20672 3.1443 3.11831 3.12609 3.16718 3.24308 3.35748 3.51698 3.73245 4.02142 4.41228 4.95184 5.71957 6.85767 8.62658 11.517 16.6755 27.5969 57.5517 171.706 1048.24 1051.5 173.841 59.0866 29.2677 18.2866 12.7867 9.51388 7.44184 6.1095 5.2419 4.65165 4.23158 3.92734 3.70737 3.55313 3.45388 3.40362 3.39953 3.44105 3.5296 3.66875 3.8649 4.12866 4.4773 4.93914 5.56135 6.42483 7.67711 9.56328 12.518 17.6308 28.371 58.1626 172.377 1049.13 1051.52 174.332 59.5863 29.9723 19.3227 13.9953 10.7137 8.51992 7.02301 6.0025 5.29027 4.77199 4.38662 4.10049 3.89386 3.75533 3.67867 3.66096 3.70163 3.80207 3.96573 4.19877 4.5116 4.92148 5.45685 6.16519 7.13377 8.5045 10.4844 13.4666 18.4893 29.0092 58.6322 172.916 1049.92 1051.53 174.756 59.9912 30.5074 20.1451 15.0059 11.7683 9.51092 7.89268 6.73539 5.9059 5.29314 4.82852 4.47695 4.21787 4.03951 3.93553 3.90308 3.94166 4.05285 4.24013 4.5097 4.87197 5.34411 5.9546 6.75211 7.82866 9.31407 11.3744 14.3639 19.2807 29.5846 59.0639 173.425 1050.65 1051.54 175.106 60.3084 30.9066 20.7886 15.8378 12.6768 10.3978 8.69319 7.42119 6.48662 5.78683 5.24783 4.83384 4.52397 4.30636 4.17485 4.12688 4.16212 4.28246 4.49152 4.79558 5.20499 5.73697 6.42047 7.30942 8.4935 10.0787 12.2027 15.186 19.9931 30.092 59.441 173.873 1051.32 1051.54 175.43 60.5772 31.2129 21.2934 16.519 13.4516 11.1816 9.42252 8.06091 7.03131 6.24923 5.64101 5.16806 4.80952 4.55378 4.39503 4.33123 4.36195 4.48971 4.71836 5.0543 5.50795 6.09673 6.85007 7.82634 9.11046 10.7832 12.9573 15.9263 20.6298 30.5455 59.7834 174.283 1051.93 1051.55 175.767 60.8039 31.4425 21.6812 17.0656 14.0991 11.8611 10.0758 8.64886 7.53684 6.679 6.00692 5.47884 5.07421 4.78188 4.59662 4.51698 4.54212 4.67541 4.92108 5.28559 5.77945 6.42017 7.23746 8.29329 9.6665 11.4133 13.6251 16.5749 21.1842 30.9381 60.077 174.641 1052.49 1051.55 176.244 61.0277 31.6241 21.9797 17.5019 14.637 12.4459 10.6543 9.18065 8.00014 7.07549 6.34546 5.76639 5.31854 4.99145 4.78069 4.68536 4.70385 4.8406 5.10041 5.48977 6.01918 6.70613 7.58034 8.70657 10.1569 11.9645 14.2035 17.132 21.6586 31.2723 60.3222 174.954 1052.99 1051.55 177.18 61.3201 31.7869 22.2148 17.8542 15.087 12.9494 11.1635 9.65672 8.41997 7.43739 6.65561 6.03024 5.54262 5.18317 4.94837 4.83769 4.84848 4.98644 5.25723 5.66732 6.22709 6.95379 7.8774 9.06441 10.5792 12.4347 14.6914 17.5973 22.0527 31.5442 60.5084 175.221 1053.46 1051.55 179.141 61.8245 32.0023 22.4393 18.1615 15.4738 13.3846 11.6084 10.0775 8.79522 7.76347 6.93651 6.27014 5.74686 5.35813 5.10126 4.97521 4.97732 5.11428 5.39288 5.81955 6.40451 7.16484 8.1327 9.37285 10.9376 12.8275 15.093 17.9755 22.3693 31.7537 60.6355 175.469 1053.88 1051.55 182.109 62.623 32.3221 22.678 18.4345 15.8012 13.7513 11.9865 10.4398 9.12283 8.05148 7.18684 6.4856 5.93151 5.51703 5.24022 5.09921 5.09212 5.22654 5.51056 5.95066 6.55685 7.34592 8.35217 9.63778 11.242 13.1552 15.421 18.2769 22.6148 31.9037 60.7131 175.776 1054.26 1051.54 183.728 63.1476 32.5651 22.8665 18.6473 16.0568 14.0423 12.2935 10.7409 9.40088 8.30007 7.40585 6.6764 6.09689 5.6609 5.36577 5.21065 5.19488 5.32636 5.61451 6.06602 6.69071 7.50503 8.54547 9.87158 11.5095 13.4398 15.6999 18.5255 22.809 32.0142 60.7882 176.351 1054.62 1051.54 183.946 63.3555 32.7026 22.9878 18.7891 16.2339 14.254 12.5281 10.9809 9.62952 8.50902 7.59323 6.84212 6.24244 5.78867 5.47783 5.31053 5.28743 5.41691 5.70908 6.17138 6.81346 7.65142 8.72386 10.0883 11.7586 13.7055 15.9591 18.7534 22.9857 32.1294 60.9648 177.607 1054.98 1051.53 183.979 63.4339 32.7674 23.0447 18.8556 16.3271 14.3823 12.6884 11.1604 9.80995 8.67821 7.74742 6.98067 6.36625 5.89829 5.57504 5.3989 5.37118 5.50082 5.79855 6.27274 6.93289 7.7948 8.89886 10.3015 12.0068 13.9749 16.2267 18.9929 23.18 32.2917 61.3155 179.686 1055.33 1051.53 183.909 63.4047 32.7592 23.0312 18.8426 16.3368 14.4307 12.7789 11.2833 9.94611 8.80869 7.86695 7.09037 6.46623 5.98861 5.65723 5.4762 5.44749 5.58055 5.88663 6.37508 7.05532 7.94293 9.07927 10.5208 12.2657 14.2627 16.5211 19.2659 23.412 32.4995 61.7138 181.541 1055.69 1051.53 183.744 63.2605 32.6658 22.9398 18.7524 16.2749 14.4169 12.8173 11.3631 10.0457 8.90579 7.95635 7.1744 6.54395 6.06036 5.72512 5.54325 5.51745 5.65763 5.97537 6.48098 7.18392 8.09966 9.26945 10.7509 12.5402 14.575 16.8512 19.5849 23.6946 32.7499 62.0623 182.498 1056.07 1051.53 183.506 63.009 32.4844 22.7762 18.6028 16.1666 14.3686 12.8292 11.4202 10.1237 8.98096 8.02448 7.23917 6.60478 6.11782 5.78147 5.60153 5.58136 5.73136 6.06323 6.58764 7.31468 8.25987 9.46314 10.984 12.8208 14.9009 17.2074 19.946 24.033 33.0573 62.4106 182.971 1056.44 1051.53 183.25 62.6981 32.2415 22.5676 18.431 16.0538 14.3246 12.8468 11.4796 10.1996 9.05085 8.08577 7.29641 6.65791 6.16778 5.83066 5.65301 5.63872 5.79856 6.14416 6.68637 7.43617 8.40929 9.64352 11.2005 13.0834 15.212 17.5601 20.3255 24.4182 33.4357 62.8099 183.247 1056.8 1051.54 183.05 62.4014 31.9866 22.3591 18.2826 15.9797 14.323 12.901 11.566 10.2945 9.13534 8.15822 7.36077 6.7149 6.21887 5.8781 5.69966 5.68786 5.85374 6.20873 6.76381 7.53091 8.52609 9.78487 11.3705 13.2914 15.4643 17.8609 20.6761 24.8132 33.8739 63.3205 183.734 1057.12 1051.54 182.979 62.2068 31.7844 22.2045 18.2032 15.981 14.392 13.0135 11.6968 10.4243 9.25246 8.25734 7.44463 6.78685 6.27968 5.92937 5.74369 5.72731 5.89154 6.24771 6.8068 7.58164 8.58858 9.8615 11.4633 13.4052 15.6068 18.049 20.9313 25.1471 34.2805 63.8235 184.629 1057.36 1051.55 183.105 62.2053 31.7018 22.1521 18.2262 16.0794 14.5462 13.1959 11.8825 10.5974 9.40648 8.39151 7.56013 6.88392 6.35815 5.99008 5.78826 5.75756 5.90957 6.25572 6.80694 7.57668 8.58161 9.85558 11.4587 13.399 15.6049 18.0772 21.0314 25.3504 34.558 64.0674 184.852 1057.51 1051.55 183.435 62.4397 31.7755 22.2226 18.3592 16.2735 14.7795 13.4412 12.1178 10.8113 9.59707 8.56171 7.70882 7.00811 6.45682 6.06323 5.83659 5.78179 5.91063 6.23515 6.76634 7.51777 8.50686 9.76981 11.3617 13.2794 15.4616 17.9358 20.946 25.3762 34.6645 64.0584 184.687 1057.57 1051.55 183.897 62.8798 31.9994 22.4057 18.5849 16.541 15.0675 13.7253 12.3815 11.0488 9.81114 8.75668 7.881 7.15225 6.57158 6.14783 5.89067 5.80482 5.90235 6.1961 6.6973 7.41986 8.38209 9.62547 11.1994 13.0816 15.2166 17.6576 20.6845 25.2007 34.5633 63.7966 184.288 1057.56 1051.54 184.352 63.4151 32.3194 22.6619 18.8644 16.841 15.368 14.008 12.6364 11.2774 10.0227 8.9514 8.05299 7.29816 6.68957 6.23621 5.94812 5.8298 5.8936 6.15317 6.62011 7.30872 8.23846 9.45875 11.0151 12.8598 14.9356 17.311 20.299 24.8378 34.2343 63.2759 183.677 1057.5 1051.52 184.649 63.8974 32.6604 22.944 19.1523 17.1236 15.6286 14.2384 12.8373 11.4567 10.1929 9.11152 8.19592 7.42101 6.79056 6.31364 6.00047 5.8553 5.89058 6.12062 6.55726 7.21514 8.1148 9.31526 10.8612 12.678 14.6974 16.9882 19.8822 24.3548 33.7017 62.5166 182.896 1057.45 1051.51 184.739 64.2356 32.9719 23.2188 19.4075 17.3391 15.7965 14.3672 12.9415 11.5501 10.2872 9.20434 8.27973 7.4937 6.85145 6.36194 6.03537 5.87573 5.89538 6.10881 6.52804 7.16802 8.05053 9.24333 10.7912 12.5964 14.5757 16.7825 19.5467 23.8688 33.0615 61.6112 182.041 1057.45 1051.5 184.622 64.3793 33.2192 23.4614 19.5958 17.4477 15.8339 14.3622 12.9225 11.5344 10.2821 9.20464 8.27966 7.49376 6.85289 6.36578 6.04226 5.88614 5.90933 6.12574 6.54695 7.18765 8.07703 9.28619 10.8492 12.6643 14.6311 16.7735 19.3994 23.5154 32.4602 60.7147 181.27 1057.55 1051.49 184.342 64.3318 33.3876 23.6475 19.6846 17.4203 15.7217 14.2124 12.7722 11.3997 10.1639 9.09785 8.18292 7.41066 6.78712 6.32037 6.01943 5.88803 5.9375 6.18073 6.62859 7.29498 8.21425 9.46085 11.0624 12.9148 14.9004 17.0084 19.5111 23.4061 32.0591 60.0392 180.809 1057.79 1051.48 183.959 64.1241 33.4615 23.7316 19.6297 17.2329 15.4571 13.9264 12.4997 11.152 9.93677 8.88928 7.99733 7.25425 6.66535 6.23758 5.97879 5.89271 5.99024 6.28312 6.78145 7.49844 8.47121 9.77661 11.4403 13.3564 15.3907 17.4972 19.9071 23.6029 31.9845 59.7988 180.893 1058.2 1051.48 183.504 63.7806 33.406 23.6493 19.3915 16.883 15.0632 13.537 12.1381 10.8212 9.63037 8.61006 7.75463 7.0554 6.51622 6.14277 5.94173 5.91702 6.07938 6.43954 7.00692 7.79475 8.84036 10.2221 11.969 13.9716 16.0788 18.2124 20.5641 24.1068 32.2982 60.1574 181.688 1058.76 1051.48 182.964 63.2735 33.1474 23.3382 18.9632 16.4066 14.596 13.1052 11.7451 10.4608 9.29621 8.31002 7.50064 6.85429 6.37327 6.06226 5.9271 5.97205 6.20809 6.64516 7.29209 8.1631 9.29417 10.7649 12.6121 14.7189 16.9163 19.098 21.4233 24.8641 32.9793 61.1772 183.211 1059.43 1051.48 182.329 62.5825 32.6483 22.8153 18.4169 15.8972 14.1478 12.7129 11.3925 10.1352 8.99421 8.04314 7.28071 6.68671 6.2622 6.01155 5.94002 6.05231 6.35986 6.87232 7.59809 8.55333 9.77226 11.3355 13.2889 15.5073 17.8045 20.051 22.3841 25.7841 33.942 62.6803 185.062 1060.1 1051.48 181.633 61.7427 31.966 22.1932 17.8809 15.4677 13.808 12.4305 11.1395 9.89843 8.77393 7.85149 7.12697 6.57414 6.19364 5.99009 5.96852 6.13385 6.49793 7.07034 7.86037 8.88616 10.1823 11.8282 13.8732 16.1947 18.5905 20.9096 23.2726 26.6746 34.9944 64.4731 187.041 1060.61 1051.49 181.007 60.9084 31.2628 21.6315 17.478 15.202 13.6335 12.3011 11.0247 9.78788 8.6699 7.76222 7.05735 6.52521 6.16687 5.98754 5.99218 6.18558 6.57962 7.18413 8.00995 9.07634 10.4207 12.1203 14.2256 16.6267 19.1131 21.518 23.9318 27.3155 35.6141 64.9966 184.907 1060.88 1051.5 180.633 60.2842 30.7154 21.2573 17.2799 15.1362 13.6449 12.3425 11.068 9.82476 8.70143 7.78902 7.07978 6.54302 6.17976 5.99621 5.99746 6.18766 6.57787 7.17782 7.99992 9.06438 10.41 12.1125 14.2295 16.674 19.2451 21.7756 24.3215 27.7649 36.0088 65.0032 181.69 1060.86 1051.51 180.67 60.0592 30.4513 21.1288 17.2997 15.2645 13.8338 12.5515 11.2721 10.0127 8.86916 7.93355 7.19736 6.63027 6.23521 6.01969 5.98892 6.14573 6.49926 7.05804 7.83441 8.84866 10.1388 11.7783 13.8359 16.2635 18.9012 21.6068 24.4139 28.1074 36.4387 65.1215 180.824 1060.6 1051.52 181.185 60.3354 30.5225 21.2499 17.5207 15.5655 14.1823 12.9145 11.6245 10.3392 9.16172 8.1862 7.40396 6.78618 6.33862 6.06996 5.98555 6.08663 6.37974 6.87101 7.57014 8.49507 9.67973 11.1929 13.1116 15.4297 18.0616 20.9347 24.0985 28.2443 36.9149 65.9263 184.453 1060.15 1051.53 182.053 61.0556 30.8836 21.5656 17.893 15.9985 14.6556 13.398 12.0898 10.7672 9.54402 8.51512 7.67418 6.99524 6.48482 6.15264 6.00448 6.04006 6.26358 6.67837 7.28967 8.11017 9.16633 10.5196 12.2452 14.3619 16.8614 19.7781 23.2499 27.9294 37.0129 65.8683 185.845 1059.56 1051.52 183.018 62.0339 31.4355 22.0086 18.3702 16.5256 15.2148 13.9568 12.6149 11.2365 9.95189 8.8607 7.95726 7.21658 6.6449 6.25216 6.04417 6.01924 6.17977 6.52688 7.06126 7.78908 8.7276 9.9281 11.4543 13.3276 15.5873 18.3651 21.9395 27.0533 36.659 65.3315 184.994 1058.92 1051.52 183.643 62.8728 31.9663 22.4552 18.8688 17.0783 15.7889 14.5086 13.107 11.6508 10.293 9.13811 8.17822 7.3871 6.76908 6.33266 6.08269 6.01592 6.13362 6.43557 6.91907 7.58463 8.44085 9.52767 10.8923 12.5426 14.5304 17.0415 20.4759 25.7478 35.8017 64.5115 184.012 1058.29 1051.51 183.865 63.3658 32.3473 22.8461 19.3497 17.6121 16.3124 14.9637 13.4618 11.907 10.4758 9.26907 8.27138 7.4535 6.81551 6.36255 6.09732 6.01536 6.11742 6.40289 6.86736 7.50742 8.32479 9.3495 10.6109 12.0945 13.8425 16.0576 19.2083 24.3628 34.6212 63.4824 183.009 1057.77 1051.51 183.785 63.547 32.6127 23.2208 19.819 18.0862 16.6962 15.2016 13.5565 11.904 10.4303 9.20909 8.20951 7.40041 6.77582 6.33678 6.08404 6.01321 6.1259 6.42238 6.89834 7.54834 8.36889 9.38235 10.599 11.9759 13.5387 15.4879 18.3176 23.1905 33.3881 62.339 182.04 1057.39 1051.5 183.528 63.5039 32.8351 23.6374 20.2719 18.4201 16.8144 15.1015 13.3133 11.6162 10.1685 8.98927 8.03106 7.26571 6.68235 6.27955 6.05796 6.01545 6.15635 6.48347 6.99476 7.68531 8.54897 9.60123 10.8257 12.144 13.5687 15.2996 17.8407 22.386 32.3354 61.2628 181.227 1057.19 1051.5 183.23 63.4327 33.1633 24.1324 20.6355 18.4886 16.5656 14.6335 12.7758 11.1361 9.78587 8.69247 7.8082 7.10741 6.5781 6.21967 6.03533 6.0271 6.20355 6.57132 7.13202 7.88351 8.82955 9.97537 11.2562 12.5601 13.8867 15.4376 17.7262 21.9582 31.5949 60.3911 180.604 1057.18 1051.5 183.015 63.4625 33.5944 24.5462 20.7085 18.1643 15.955 13.9189 12.1171 10.62 9.40647 8.41558 7.61186 6.9744 6.49474 6.17569 6.0243 6.0473 6.25815 6.66815 7.28358 8.1064 9.15908 10.4411 11.8257 13.16 14.4248 15.819 17.8623 21.7615 31.0058 59.5244 179.922 1057.33 1051.49 183.036 63.7381 34.0977 24.7797 20.4882 17.5927 15.2286 13.2212 11.5583 10.213 9.11598 8.21111 7.47163 6.88237 6.43976 6.15051 6.02551 6.0758 6.31981 6.77435 7.452 8.35338 9.51784 10.9574 12.4856 13.9042 15.16 16.4334 18.2469 21.8099 30.6223 58.762 179.343 1057.63 1051.48 183.202 64.1502 34.5357 24.8193 20.1122 16.9845 14.5865 12.6756 11.1538 9.92548 8.91085 8.06697 7.37194 6.81605 6.40039 6.13507 6.03391 6.1113 6.38994 6.89239 7.6364 8.62612 9.89876 11.4842 13.1899 14.7497 16.055 17.2507 18.8589 22.0934 30.4438 58.1537 178.957 1058.1 1051.46 183.456 64.5887 34.8512 24.7311 19.7096 16.4639 14.1041 12.3029 10.8835 9.72812 8.76673 7.96097 7.29362 6.76004 6.36549 6.12276 6.0475 6.15611 6.47442 7.02996 7.84167 8.91696 10.2946 12.0229 13.9285 15.6765 17.0913 18.26 19.6915 22.6136 30.5135 57.8376 178.976 1058.75 1051.45 183.578 64.8487 34.9458 24.4924 19.2897 16.0272 13.7391 12.0237 10.671 9.56258 8.63289 7.84947 7.20071 6.68697 6.31694 6.10497 6.06701 6.2199 6.59075 7.20953 8.09278 9.25326 10.7425 12.6195 14.7244 16.6859 18.2583 19.4514 20.7437 23.3899 30.919 58.0582 179.754 1059.6 1051.44 183.376 64.7306 34.7438 24.0935 18.8257 15.6092 13.4029 11.7604 10.4573 9.37855 8.46774 7.70084 7.07208 6.58563 6.25202 6.08581 6.10169 6.31549 6.75391 7.44605 8.40535 9.65244 11.2638 13.2993 15.5889 17.7716 19.5368 20.8 21.9965 24.4243 31.7268 59.0621 181.604 1060.63 1051.43 182.988 64.3197 34.2838 23.533 18.2819 15.1647 13.0647 11.4891 10.2186 9.1584 8.26331 7.51686 6.9171 6.47001 6.18657 6.08072 6.16491 6.45294 6.96962 7.73889 8.77483 10.1103 11.8526 14.0449 16.4903 18.891 20.8805 22.2618 23.4191 25.7104 32.9723 60.9764 184.548 1061.75 1051.43 182.379 63.5813 33.5487 22.8124 17.6694 14.702 12.7265 11.2216 9.97264 8.92375 8.04917 7.32997 6.76666 6.36615 6.13937 6.0994 6.25597 6.6207 7.21655 8.05992 9.16858 10.5943 12.4342 14.7179 17.3011 19.9083 22.1385 23.6765 24.8463 27.0859 34.5313 63.6399 187.864 1062.75 1051.43 181.541 62.538 32.5853 22.0022 17.0654 14.2858 12.4369 10.9972 9.77167 8.73158 7.87339 7.18093 6.65197 6.2936 6.11664 6.13325 6.35046 6.7779 7.43783 8.3445 9.51418 10.9844 12.8567 15.1989 17.8821 20.6506 23.104 24.8276 26.0399 28.2069 35.8197 66.0761 190.823 1063.39 1051.43 180.572 61.3319 31.5588 21.2509 16.5831 13.996 12.2593 10.8731 9.66518 8.62808 7.77772 7.10058 6.59057 6.25581 6.10741 6.15659 6.4083 6.87045 7.56413 8.50184 9.69891 11.1813 13.0466 15.3832 18.0834 20.9208 23.5203 25.4377 26.769 28.8761 36.417 66.4416 185.665 1063.56 1051.44 179.752 60.2605 30.6994 20.701 16.2931 13.8753 12.2313 10.8857 9.68781 8.64653 7.79012 7.1072 6.59088 6.25096 6.09894 6.14519 6.39374 6.85157 7.53885 8.4683 9.65583 11.1235 12.9569 15.2419 17.8895 20.6979 23.3358 25.4059 26.9286 29.1025 36.6168 66.3885 183.233 1063.34 1051.45 179.206 59.492 30.1139 20.3948 16.2048 13.9261 12.3603 11.0501 9.8582 8.80379 7.92378 7.21107 6.66093 6.28542 6.09652 6.10364 6.31019 6.72197 7.35737 8.2309 9.36172 10.7741 12.5447 14.7529 17.3199 20.0565 22.6809 24.8829 26.6501 29.0149 36.5343 65.9274 181.857 1062.91 1051.47 179.142 59.1781 29.8623 20.3432 16.3139 14.1426 12.6434 11.3655 10.1748 9.09555 8.17397 7.41025 6.8037 6.36888 6.11849 6.06099 6.19871 6.53478 7.08368 7.8599 8.8858 10.1917 11.8536 13.9532 16.4295 19.1047 21.7394 24.0978 26.1618 28.816 36.3361 65.2062 180.668 1062.38 1051.48 179.615 59.4117 29.976 20.5327 16.5935 14.4968 13.0544 11.8073 10.6126 9.49586 8.5164 7.68583 7.00822 6.50057 6.1764 6.04339 6.10211 6.3517 6.80067 7.45963 8.34912 9.50248 10.9956 12.9232 15.2681 17.8891 20.5944 23.1923 25.6536 28.7324 36.3181 64.5203 179.637 1061.82 1051.49 180.361 59.9969 30.3111 20.8615 16.9778 14.944 13.5571 12.3396 11.1321 9.9598 8.90515 7.99649 7.24141 6.65833 6.26097 6.05595 6.04147 6.21207 6.56974 7.11892 7.87356 8.86225 10.1502 11.8389 13.9686 16.4656 19.2092 22.0616 24.9979 28.681 36.6933 64.9343 181.113 1061.22 1051.5 180.956 60.5627 30.668 21.2252 17.4071 15.4403 14.1068 12.9099 11.673 10.4228 9.27585 8.28349 7.45342 6.80301 6.3444 6.08199 6.01096 6.12134 6.40927 6.87302 7.51885 8.36686 9.46496 10.9084 12.778 15.0677 17.7385 20.7351 24.0828 28.3895 36.9336 65.3761 185.543 1060.63 1051.51 181.293 60.9494 30.9329 21.5432 17.8221 15.9338 14.6442 13.4443 12.1536 10.8089 9.56036 8.48728 7.59704 6.89905 6.40096 6.10358 5.99868 6.07235 6.31603 6.72277 7.29191 8.03499 8.98283 10.214 11.8239 13.8562 16.3421 19.3202 22.9145 27.7492 36.8402 65.1769 185.193 1060.05 1051.52 181.583 61.2475 31.1567 21.8567 18.2485 16.4285 15.1483 13.901 12.5238 11.0766 9.73324 8.59509 7.66674 6.94388 6.42848 6.11742 5.99944 6.05775 6.28066 6.65739 7.18187 7.85801 8.70583 9.78228 11.1754 12.9604 15.2096 18.0359 21.6736 26.8353 36.4214 64.793 184.602 1059.56 1051.53 181.731 61.4054 31.334 22.1569 18.6444 16.8542 15.5373 14.2072 12.7338 11.2006 9.79206 8.61776 7.67591 6.94964 6.43532 6.12682 6.0109 6.06926 6.28858 6.65575 7.16117 7.80318 8.59304 9.56817 10.8041 12.3886 14.4125 17.0351 20.5802 25.8738 35.8219 64.3368 184.036 1059.18 1051.54 181.771 61.4338 31.4378 22.3809 18.9299 17.1342 15.7566 14.341 12.7915 11.2073 9.77138 8.59012 7.65459 6.93908 6.43641 6.13943 6.0344 6.1027 6.33046 6.70324 7.2092 7.84297 8.60962 9.53079 10.6669 12.1036 13.9367 16.3499 19.7294 25.0119 35.1868 63.9275 183.676 1058.96 1051.54 181.973 61.603 31.614 22.6089 19.1687 17.3346 15.8858 14.3955 12.7923 11.1839 9.74584 8.57229 7.64748 6.94239 6.44903 6.16133 6.06641 6.14614 6.38684 6.77363 7.29355 7.93904 8.71121 9.62478 10.7258 12.083 13.7854 16.0247 19.225 24.4115 34.684 63.657 183.53 1058.9 1051.55 182.296 61.8999 31.8592 22.845 19.3737 17.4784 15.9571 14.4084 12.7769 11.171 9.75314 8.59569 7.67789 6.97538 6.48183 6.19359 6.09983 6.18361 6.43207 6.83055 7.36593 8.03003 8.82226 9.75625 10.8689 12.2037 13.8304 15.9434 18.9896 24.0466 34.3095 63.4185 183.361 1058.93 1051.55 182.696 62.3232 32.1675 23.0752 19.5425 17.5865 16.0178 14.4468 12.817 11.2266 9.82683 8.67461 7.74984 7.03639 6.53083 6.23201 6.13104 6.2118 6.46199 6.86731 7.41485 8.09648 8.91142 9.87957 11.0267 12.364 13.9503 15.9804 18.9087 23.8323 33.9952 63.0865 183.077 1058.97 1051.54 183.024 62.7594 32.4869 23.2977 19.7061 17.7055 16.1108 14.5335 12.9076 11.3216 9.92325 8.76222 7.8211 7.09163 6.57227 6.2629 6.15519 6.23293 6.48391 6.89415 7.45123 8.14778 8.98436 9.98575 11.1653 12.507 14.0651 16.0357 18.8746 23.6868 33.7388 62.7334 182.781 1058.98 1051.54 183.26 63.1447 32.784 23.4972 19.852 17.8216 16.2165 14.6386 13.0092 11.4121 10.0001 8.82124 7.86137 7.11873 6.59194 6.27981 6.17289 6.2539 6.51003 6.92692 7.49229 8.19968 9.05748 10.0881 11.2855 12.6246 14.1541 16.0668 18.8196 23.5278 33.4775 62.3588 182.471 1058.95 1051.53 183.322 63.3837 33.0102 23.6743 20.0099 17.9707 16.3543 14.7515 13.0839 11.4478 10.0061 8.80639 7.83548 7.09305 6.57479 6.276 6.18451 6.28146 6.55323 6.98472 7.56333 8.28286 9.15748 10.2076 11.4124 12.7416 14.24 16.0958 18.7633 23.3636 33.203 61.9765 182.181 1058.91 1051.52 183.211 63.4607 33.1862 23.8767 20.2151 18.1499 16.4742 14.7879 13.0389 11.3514 9.88799 8.68589 7.728 7.00979 6.52249 6.25687 6.19775 6.32501 6.62459 7.08061 7.67987 8.41579 9.30646 10.3688 11.5691 12.875 14.3322 16.1277 18.7147 23.2148 32.9416 61.5977 181.899 1058.88 1051.52 183.004 63.4128 33.3368 24.114 20.4399 18.292 16.4896 14.6722 12.8297 11.1108 9.65778 8.48498 7.5678 6.89643 6.45835 6.241 6.22707 6.39594 6.73379 7.22407 7.85273 8.61214 9.52237 10.5942 11.7803 13.0491 14.45 16.1722 18.6683 23.0605 32.6774 61.2455 181.653 1058.87 1051.52 182.823 63.3585 33.5206 24.3794 20.6315 18.3291 16.3525 14.3967 12.4867 10.7753 9.36765 8.25091 7.39371 6.78262 6.40374 6.24332 6.2829 6.50173 6.88657 7.42037 8.08853 8.88392 9.82419 10.9063 12.0719 13.2927 14.6253 16.2635 18.6613 22.9388 32.4319 60.9148 181.478 1058.92 1051.52 182.666 63.3255 33.7395 24.6226 20.7227 18.2208 16.0712 14.0127 12.0821 10.4162 9.07722 8.02902 7.23779 6.6896 6.37171 6.27092 6.36814 6.64225 7.08049 7.66498 8.38119 9.22694 10.2127 11.3121 12.4581 13.6267 14.8835 16.4321 18.7326 22.9034 32.2867 60.7346 181.479 1059.05 1051.52 182.501 63.274 33.907 24.7495 20.6693 17.9853 15.7102 13.6029 11.6934 10.0944 8.82892 7.84624 7.11538 6.62464 6.36391 6.32152 6.47788 6.81087 7.307 7.94474 8.71344 9.62347 10.6717 11.8009 12.9338 14.0517 15.2314 16.6886 18.8929 22.9635 32.2523 60.7101 181.658 1059.26 1051.52 182.351 63.2236 34.0227 24.789 20.5461 17.7264 15.3749 13.2538 11.381 9.84666 8.64274 7.71124 7.02791 6.58426 6.37317 6.38502 6.6002 6.99628 7.55044 8.23378 9.05894 10.0482 11.1767 12.3495 13.4796 14.5548 15.6629 17.0318 19.1416 23.115 32.3179 60.812 181.964 1059.54 1051.52 182.253 63.2267 34.1326 24.8132 20.4407 17.5225 15.1187 12.9923 11.152 9.66758 8.5069 7.61058 6.96213 6.55555 6.38632 6.44727 6.71933 7.17658 7.78404 8.5117 9.39553 10.4719 11.6923 12.9205 14.0637 15.1144 16.1649 17.4522 19.4674 23.3392 32.4491 60.9704 182.307 1059.85 1051.51 182.191 63.2836 34.2686 24.8732 20.3955 17.3934 14.938 12.7982 10.981 9.52807 8.39339 7.52234 6.90064 6.52364 6.38934 6.49406 6.82165 7.33298 7.98171 8.75546 9.6952 10.856 12.1785 13.4804 14.6621 15.7135 16.7238 17.9358 19.8526 23.612 32.6116 61.1298 182.63 1060.18 1051.51 182.123 63.3729 34.4421 24.9792 20.3974 17.3033 14.7844 12.6197 10.816 9.38656 8.27304 7.42513 6.82828 6.47817 6.37453 6.51699 6.89312 7.45141 8.13718 8.95486 9.94384 11.1772 12.6043 13.9978 15.2467 16.3313 17.3279 18.4777 20.2954 23.9326 32.8041 61.2839 182.939 1060.48 1051.5 182.044 63.4764 34.634 25.0884 20.3809 17.1783 14.5894 12.4014 10.6158 9.21479 8.12781 7.3081 6.73991 6.41846 6.34452 6.52023 6.93615 7.53209 8.24974 9.10648 10.1413 11.4298 12.9401 14.4407 15.7851 16.9392 17.9567 19.0689 20.7995 24.311 33.0305 61.4392 183.245 1060.77 1051.49 181.972 63.5878 34.8135 25.149 20.2911 16.9746 14.3255 12.1309 10.3782 9.01669 7.96499 7.18005 6.64479 6.35411 6.30997 6.51725 6.96303 7.58187 8.32567 9.21321 10.2856 11.6162 13.1913 14.7947 16.2482 17.5024 18.5805 19.6881 21.3483 24.7325 33.2743 61.5645 183.499 1061.02 1051.49 181.917 63.7048 34.9617 25.1382 20.1137 16.6899 14.0019 11.8254 10.1235 8.81239 7.80324 7.05695 6.55553 6.29416 6.27654 6.51022 6.97831 7.61305 8.37748 9.28932 10.3925 11.7578 13.3817 15.0674 16.6213 17.9873 19.158 20.2983 21.9127 25.1737 33.5178 61.6399 183.689 1061.25 1051.48 181.869 63.8147 35.0606 25.0437 19.8486 16.3369 13.6418 11.5155 9.87732 8.62111 7.65831 6.95021 6.47911 6.24164 6.24387 6.49632 6.98054 7.62826 8.41017 9.34354 10.4753 11.8744 13.5411 15.2912 16.9251 18.391 19.6623 20.8612 22.4595 25.6175 33.7693 61.7069 183.871 1061.45 1051.47 181.797 63.8716 35.0565 24.8266 19.4856 15.9322 13.2727 11.2213 9.65507 8.45476 7.53564 6.86065 6.41424 6.19511 6.21137 6.47579 6.9703 7.6278 8.42346 9.37541 10.5332 11.9664 13.6801 15.4946 17.1996 18.7493 20.1079 21.3673 22.9701 26.0584 34.0574 61.848 184.14 1061.65 1051.46 181.65 63.7866 34.864 24.4528 19.0427 15.52 12.9373 10.9685 9.46783 8.31514 7.43131 6.78281 6.35672 6.15333 6.18167 6.45499 6.95573 7.61888 8.42236 9.38632 10.5617 12.0225 13.7839 15.668 17.4528 19.0902 20.5274 21.8312 23.4324 26.4708 34.3796 62.1421 184.594 1061.86 1051.46 181.417 63.5424 34.5198 24.0254 18.6358 15.1849 12.6788 10.7711 9.31567 8.19683 7.33888 6.71131 6.303 6.11503 6.1563 6.43924 6.9452 7.61088 8.41733 9.38668 10.5694 12.0475 13.8454 15.7845 17.6529 19.4017 20.9476 22.3146 23.9201 26.9184 34.7835 62.6502 185.272 1062.11 1051.46 181.185 63.2548 34.1772 23.6822 18.343 14.9487 12.4908 10.6218 9.19675 8.10122 7.26157 6.64951 6.25511 6.07963 6.13158 6.42251 6.93216 7.59823 8.40497 9.37556 10.5589 12.0459 13.8577 15.8078 17.728 19.5855 21.27 22.75 24.4046 27.3934 35.2507 63.2995 186.026 1062.39 1051.46 181.078 63.0623 33.948 23.4794 18.1791 14.8122 12.3775 10.5344 9.1285 8.04382 7.2122 6.60708 6.21866 6.0476 6.10175 6.39252 6.90063 7.56504 8.37068 9.34119 10.525 12.0186 13.8254 15.7468 17.669 19.5923 21.4029 23.0309 24.7939 27.815 35.6655 63.8548 186.535 1062.65 1051.45 181.161 63.0661 33.9151 23.4666 18.1727 14.7954 12.3534 10.5165 9.11308 8.02504 7.1919 6.58634 6.19651 6.0209 6.06578 6.34252 6.83839 7.4965 8.29655 9.26327 10.4464 11.942 13.7317 15.609 17.4945 19.4171 21.2845 23.0383 24.9515 28.0694 35.9231 64.1095 186.572 1062.85 1051.45 181.391 63.2861 34.0997 23.6275 18.281 14.8486 12.3743 10.5251 9.1122 8.01751 7.18346 6.57845 6.18665 6.0034 6.03238 6.28348 6.75521 7.40112 8.18993 9.14865 10.3304 11.8249 13.601 15.4527 17.3007 19.1716 20.9944 22.7584 24.7487 27.9617 35.8492 63.9596 186.171 1062.97 1051.44 181.663 63.6341 34.4037 23.8361 18.3743 14.858 12.351 10.491 9.07559 7.98862 7.16578 6.57044 6.18336 5.9974 6.01365 6.23848 6.67507 7.29525 8.06695 9.00931 10.1821 11.6675 13.4401 15.3088 17.1668 19.0206 20.7971 22.514 24.4865 27.712 35.5979 63.6257 185.699 1063.01 1051.44 181.808 63.8997 34.6002 23.8712 18.2749 14.6951 12.1839 10.3445 8.95847 7.90515 7.11386 6.54453 6.17643 6.00155 6.01918 6.2319 6.63789 7.22641 7.97942 8.89697 10.0442 11.5045 13.2704 15.172 17.0839 18.9719 20.7376 22.4065 24.3264 27.5292 35.4276 63.4397 185.541 1062.91 1051.43 181.667 63.8364 34.4358 23.5336 17.8492 14.2803 11.8328 10.0716 8.76217 7.77437 7.03512 6.50575 6.16844 6.01766 6.05338 6.2747 6.67067 7.23857 7.97498 8.86728 9.97518 11.3889 13.1161 15.0227 17.0261 19.0384 20.8977 22.5839 24.4542 27.6086 35.5467 63.7039 185.916 1062.71 1051.43 181.264 63.3644 33.7998 22.7749 17.133 13.7008 11.4062 9.77773 8.57206 7.65932 6.97181 6.47805 6.16714 6.03913 6.09742 6.34124 6.7543 7.32578 8.05851 8.94968 10.0226 11.3297 12.9211 14.7554 16.7922 18.9437 21.014 22.9022 24.8772 28.0294 35.9408 64.1677 186.358 1062.55 1051.44 180.843 62.6737 32.9488 21.9635 16.4942 13.2598 11.133 9.62806 8.50454 7.63967 6.97508 6.48856 6.17764 6.04928 6.1121 6.36846 6.80191 7.39715 8.15526 9.06327 10.1176 11.3472 12.8016 14.4907 16.4235 18.5478 20.7172 22.832 25.0607 28.3765 36.3191 64.5002 186.541 1062.44 1051.44 180.664 62.226 32.3882 21.4902 16.1733 13.0906 11.0901 9.67235 8.59647 7.74566 7.0698 6.55572 6.20956 6.0458 6.07965 6.32013 6.75691 7.36856 8.14056 9.07462 10.1747 11.4203 12.821 14.3777 16.1302 18.0844 20.179 22.3791 24.8449 28.4582 36.6863 65.1467 187.087 1062.48 1051.44 180.6 61.9284 31.9577 21.1379 15.9907 13.0782 11.2069 9.86528 8.81614 7.95375 7.24085 6.67553 6.27205 6.05046 6.03041 6.22676 6.63856 7.24173 8.0069 8.94146 10.0814 11.4142 12.8751 14.396 16.001 17.7284 19.6138 21.7331 24.2945 28.1508 36.7391 65.6514 187.445 1062.67 1051.44 180.544 61.6373 31.5537 20.9267 16.0541 13.347 11.5791 10.2553 9.16789 8.23891 7.45054 6.81118 6.3384 6.05181 5.9697 6.10803 6.47368 7.05035 7.80074 8.71669 9.85665 11.2705 12.8597 14.4633 16.0488 17.6184 19.2418 21.1173 23.5801 27.5132 36.3196 65.5144 187.092 1063 1051.45 180.555 61.5761 31.5407 21.1937 16.5456 13.9139 12.1093 10.6919 9.49713 8.47114 7.6041 6.90226 6.37687 6.04059 5.90584 5.98507 6.28811 6.81578 7.53621 8.42265 9.52514 10.9419 12.655 14.4127 16.1275 17.7283 19.2165 20.818 23.007 26.8105 35.6576 64.9007 186.324 1063.3 1051.46 180.849 61.9061 31.9786 21.8234 17.2282 14.5189 12.5778 11.0215 9.71406 8.60627 7.68326 6.94276 6.38739 6.02225 5.85346 5.88752 6.13001 6.59447 7.268 8.10791 9.15973 10.5177 12.2323 14.1159 16.0131 17.8077 19.4101 20.9571 22.9345 26.499 35.2386 64.4723 185.891 1063.38 1051.47 181.196 62.3511 32.5405 22.4696 17.8088 14.9496 12.8479 11.1623 9.76875 8.61063 7.66233 6.91122 6.35146 5.9817 5.80308 5.81715 6.02413 6.4325 7.04625 7.83747 8.82882 10.1092 11.7508 13.647 15.6455 17.6259 19.4619 21.1865 23.1873 26.6152 35.1605 64.3125 185.902 1063.2 1051.47 181.466 62.7432 33.0319 22.9418 18.1334 15.0979 12.8565 11.0856 9.65209 8.48524 7.54632 6.81289 6.27273 5.92044 5.75456 5.77345 5.97198 6.35076 6.92067 7.66853 8.60267 9.80883 11.3543 13.1756 15.1728 17.2402 19.2612 21.2193 23.3985 26.8604 35.2549 64.1881 185.946 1062.84 1051.48 181.586 62.9752 33.3164 23.1057 18.1102 14.9302 12.6126 10.8214 9.40246 8.26773 7.36726 6.67255 6.16876 5.84962 5.71347 5.75745 5.97241 6.35166 6.90251 7.61948 8.50891 9.64311 11.0754 12.7787 14.7116 16.7886 18.915 21.0631 23.4567 27.0703 35.4497 64.1651 185.943 1062.45 1051.48 181.556 62.9832 33.3111 22.9432 17.8039 14.559 12.2382 10.4809 9.11213 8.03013 7.17897 6.52875 6.0655 5.78461 5.686 5.76706 6.016 6.42176 6.98466 7.69777 8.56319 9.61931 10.919 12.4762 14.2745 16.2704 18.4116 20.6822 23.2693 27.0708 35.5142 64.0308 185.7 1062.08 1051.49 181.482 62.8545 33.108 22.6012 17.3885 14.1475 11.8703 10.1718 8.86243 7.83235 7.02448 6.41058 5.97966 5.73033 5.66545 5.78406 6.07321 6.51923 7.11891 7.85815 8.72984 9.75438 10.9674 12.381 13.993 15.8047 17.8283 20.0986 22.8065 26.7938 35.3725 63.7889 185.349 1061.8 1051.49 181.343 62.6015 32.7674 22.1818 16.9697 13.7827 11.5741 9.94056 8.68516 7.69613 6.91837 6.32702 5.91489 5.68445 5.64237 5.79096 6.11811 6.60984 7.25044 8.02381 8.94006 9.9962 11.198 12.5252 13.9653 15.5441 17.3383 19.4631 22.1666 26.2846 35.0517 63.5495 185.112 1061.69 1051.49 181.24 62.3621 32.4325 21.8208 16.6536 13.5378 11.3967 9.81524 8.59636 7.63057 6.86539 6.27963 5.86979 5.64211 5.60745 5.77296 6.13036 6.65979 7.33239 8.135 9.10368 10.2476 11.521 12.8583 14.2125 15.5982 17.1283 18.9998 21.5596 25.7072 34.6787 63.46 185.116 1061.8 1051.49 181.184 62.1786 32.1644 21.5674 16.4647 13.4163 11.3283 9.78152 8.58158 7.62265 6.85497 6.2606 5.83902 5.59937 5.55603 5.72116 6.09167 6.6414 7.33384 8.16321 9.17389 10.4096 11.8079 13.2487 14.6421 15.9551 17.2882 18.8879 21.2007 25.2377 34.3319 63.4736 185.279 1062.1 1051.49 181.21 62.1032 32.0063 21.4364 16.3948 13.3989 11.3472 9.81964 8.62424 7.65886 6.87706 6.26364 5.82009 5.55712 5.49107 5.63786 6.00007 6.55243 7.25418 8.10296 9.13498 10.4293 11.9697 13.5696 15.1059 16.4905 17.7669 19.1787 21.2365 25.0653 34.1641 63.6475 185.609 1062.51 1051.49 181.303 62.127 31.9408 21.3955 16.409 13.456 11.4297 9.90981 8.70712 7.72462 6.92041 6.28158 5.81054 5.51825 5.42125 5.53724 5.87299 6.40942 7.10518 7.95486 8.99191 10.3029 11.9317 13.7016 15.4343 17.0052 18.3824 19.7541 21.6386 25.2393 34.2333 63.945 186 1062.91 1051.49 181.413 62.1979 31.928 21.4139 16.4872 13.5724 11.5592 10.0315 8.8081 7.79945 6.96802 6.30198 5.80335 5.48194 5.35279 5.43332 5.732 6.23729 6.91169 7.74103 8.76161 10.0519 11.7022 13.599 15.5119 17.311 18.9067 20.398 22.2445 25.6647 34.4719 64.2466 186.321 1063.17 1051.48 181.479 62.2696 31.9568 21.4912 16.6222 13.7284 11.7052 10.1502 8.89504 7.85676 6.99939 6.31026 5.78962 5.44529 5.29015 5.33995 5.60233 6.07175 6.71687 7.51138 8.4946 9.73818 11.3549 13.2909 15.3085 17.2935 19.1373 20.8598 22.816 26.1642 34.7641 64.4324 186.468 1063.25 1051.49 181.525 62.3532 32.0355 21.6132 16.7737 13.8714 11.8164 10.2236 8.93626 7.87436 6.99949 6.29635 5.76273 5.40451 5.23278 5.26153 5.49603 5.93401 6.55037 7.30828 8.24875 9.43944 10.9839 12.8703 14.9075 16.9835 19.0117 20.9781 23.1419 26.5539 35.0139 64.4642 186.41 1063.15 1051.49 181.581 62.4538 32.1428 21.7359 16.8897 13.9568 11.8637 10.2364 8.92565 7.85099 6.96914 6.2614 5.72328 5.35933 5.17977 5.19771 5.41618 5.83256 6.42529 7.15104 8.05061 9.18772 10.6565 12.4615 14.4458 16.5152 18.6185 20.7505 23.1235 26.6917 35.1269 64.3373 186.173 1062.93 1051.49 181.641 62.5512 32.236 21.8092 16.9304 13.9618 11.8394 10.1916 8.87154 7.79616 6.91677 6.21177 5.67523 5.31144 5.13088 5.1468 5.36239 5.77179 6.34853 7.0512 7.91817 9.01004 10.414 12.1367 14.0396 16.0464 18.1355 20.3283 22.8372 26.5679 35.0691 64.0974 185.832 1062.7 1051.49 181.704 62.6276 32.2815 21.8066 16.887 13.8934 11.7601 10.1106 8.79553 7.72865 6.85697 6.1575 5.62451 5.26342 5.08623 5.10768 5.33165 5.74522 6.31461 7.00478 7.84981 8.90816 10.2635 11.9181 13.7413 15.6706 17.7017 19.8803 22.4395 26.2805 34.8815 63.8336 185.526 1062.54 1051.49 181.767 62.6764 32.268 21.7318 16.7817 13.7836 11.6601 10.0236 8.72143 7.66554 6.80115 6.10554 5.57449 5.21565 5.04363 5.07569 5.31696 5.74379 6.31393 7.00299 7.83859 8.87758 10.2024 11.8098 13.5704 15.4313 17.3988 19.5346 22.0904 25.9809 34.6667 63.6355 185.344 1062.52 1051.49 181.829 62.7055 32.2123 21.6192 16.6601 13.6778 11.5767 9.95868 8.66888 7.62009 6.75791 6.06118 5.52782 5.16813 4.99978 5.04323 5.3057 5.7511 6.3285 7.02583 7.8626 8.89381 10.2019 11.7802 13.4964 15.3027 17.2141 19.3037 21.8374 25.7451 34.501 63.5518 185.289 1062.63 1051.48 181.892 62.7317 32.1462 21.5097 16.5608 13.6054 11.5293 9.92672 8.64325 7.59445 6.72777 6.02406 5.48333 5.1184 4.95 5.0022 5.28573 5.75283 6.34367 7.05776 7.90624 8.94071 10.2428 11.8076 13.4979 15.2649 17.1311 19.1797 21.6867 25.5938 34.4036 63.5784 185.37 1062.84 1051.48 181.963 62.779 32.1019 21.4342 16.5082 13.5822 11.5258 9.93063 8.64467 7.58762 6.70964 5.99336 5.44032 5.06516 4.89132 4.94661 5.24596 5.73326 6.3409 7.07625 7.9435 8.98842 10.2878 11.8476 13.5288 15.2708 17.1006 19.1097 21.5858 25.4844 34.3447 63.6649 185.487 1063.1 1051.48 182.024 62.8344 32.0834 21.3972 16.4987 13.5983 11.553 9.95571 8.65912 7.58767 6.69436 5.96285 5.39519 5.00714 4.82483 4.88128 5.19016 5.68837 6.31673 7.07563 7.96645 9.02714 10.323 11.8812 13.5721 15.3116 17.1256 19.1074 21.5521 25.4298 34.3213 63.7675 185.596 1063.35 1051.48 182.089 62.9153 32.1015 21.3993 16.5248 13.6409 11.5957 9.98709 8.67388 7.58514 6.67569 5.92908 5.34667 4.94466 4.75189 4.80627 5.11886 5.62302 6.26994 7.04919 7.96071 9.03403 10.3182 11.867 13.5715 15.321 17.1371 19.1072 21.5272 25.3823 34.3015 63.8633 185.696 1063.57 1051.47 182.089 62.9457 32.1031 21.3953 16.5391 13.6636 11.6136 9.99225 8.66421 7.56174 6.64009 5.8839 5.2911 4.87689 4.67452 4.72706 5.04309 5.55371 6.21947 7.01753 7.94646 9.02821 10.2959 11.8282 13.5427 15.3086 17.1432 19.1224 21.5299 25.3511 34.2464 63.8217 185.372 1063.68 1051.47 182.039 62.9299 32.0779 21.3645 16.5174 13.6469 11.5957 9.96889 8.63162 7.51861 6.58714 5.8313 5.23653 4.8099 4.59561 4.64417 4.96285 5.48145 6.16644 6.9822 7.92419 9.00801 10.2553 11.761 13.468 15.2385 17.0892 19.0871 21.5009 25.3064 34.1677 63.6105 183.964 1063.83 1051.47 181.97 62.8785 32.0141 21.2834 16.4381 13.5792 11.5416 9.92325 8.5828 7.45722 6.5192 5.77216 5.1845 4.74655 4.51703 4.55934 4.88063 5.41037 6.11688 6.95335 7.9102 8.99826 10.2326 11.7121 13.4052 15.1742 17.0333 19.0494 21.4766 25.2734 34.0947 63.416 183.005 1063.82 1051.47 181.972 62.8751 31.9628 21.1946 16.3559 13.5256 11.5147 9.90712 8.55704 7.40742 6.46281 5.71975 5.13301 4.68322 4.43645 4.46633 4.78262 5.31946 6.04262 6.89769 7.86847 8.96289 10.1931 11.6517 13.3337 15.0998 16.9535 18.9707 21.4065 25.2112 34.0243 63.2372 182.047 1064 1051.47 182.134 63.0274 32.0175 21.1838 16.3536 13.555 11.5596 9.93996 8.55643 7.36967 6.41025 5.6594 5.06659 4.61232 4.35662 4.37137 4.67184 5.20554 5.93509 6.80251 7.78493 8.89006 10.1301 11.5798 13.2739 15.0666 16.9264 18.9353 21.3569 25.1462 33.9316 63.0366 181.251 1063.97 1051.47 182.434 63.3665 32.2415 21.3213 16.4883 13.698 11.679 10.0063 8.55697 7.3234 6.34431 5.57968 4.98248 4.5364 4.28248 4.28047 4.55128 5.06282 5.77668 6.63631 7.61419 8.72106 9.97326 11.419 13.1416 14.9932 16.8837 18.8907 21.2849 25.0318 33.752 62.6702 179.975 1064.26 1051.46 182.645 63.6927 32.5106 21.5114 16.6481 13.8172 11.7238 9.96741 8.44385 7.17631 6.19777 5.43916 4.8575 4.43816 4.2077 4.20966 4.4604 4.94241 5.62078 6.44784 7.39965 8.48906 9.7406 11.1871 12.949 14.8921 16.8497 18.8671 21.2086 24.8603 33.475 62.2552 179.016 1064.31 1051.46 182.568 63.7557 32.6074 21.56 16.6302 13.703 11.5017 9.6659 8.1085 6.86432 5.93429 5.22174 4.68757 4.3184 4.13657 4.17325 4.43249 4.89405 5.52657 6.29744 7.19628 8.23947 9.45738 10.8883 12.6607 14.6954 16.7615 18.8374 21.1637 24.7297 33.2275 61.8787 178.253 1064.69 1051.46 182.244 63.5114 32.4218 21.3141 16.2526 13.1844 10.8902 9.03489 7.53895 6.4124 5.5859 4.96311 4.51002 4.22109 4.1115 4.20666 4.50889 4.97963 5.58155 6.29576 7.12723 8.10526 9.27191 10.6709 12.4186 14.4815 16.6181 18.7479 21.0677 24.563 33.0049 61.6889 177.976 1064.91 1051.46 181.842 63.0754 31.9642 20.7251 15.4881 12.3087 10.0162 8.25946 6.93313 5.99207 5.30288 4.79438 4.43896 4.22765 4.18226 4.3259 4.66303 5.1542 5.75666 6.44855 7.23565 8.1536 9.2619 10.6247 12.3565 14.4184 16.5984 18.8003 21.1585 24.6056 32.9431 61.5931 177.904 1065.29 1051.46 181.57 62.62 31.3265 19.8786 14.5058 11.3416 9.19671 7.65531 6.54616 5.77957 5.22679 4.82842 4.54404 4.36168 4.32145 4.46317 4.81124 5.33232 5.97391 6.6966 7.49214 8.38866 9.45671 10.785 12.4828 14.4499 16.5453 18.7117 21.0736 24.5569 33.0107 61.868 178.253 1065.48 1051.46 181.687 62.4912 30.8854 19.2101 13.7996 10.7685 8.83418 7.49997 6.5677 5.92313 5.45978 5.09667 4.79304 4.56529 4.4505 4.51064 4.81621 5.35653 6.07045 6.88948 7.77714 8.74489 9.85998 11.2305 12.9487 14.885 16.9548 19.1105 21.4319 24.7995 33.1502 62.1545 178.726 1066.11 1051.46 182.648 63.4316 31.486 19.5044 13.9859 11.0001 9.16699 7.93494 7.05985 6.42393 5.91944 5.49402 5.12846 4.82013 4.59074 4.4975 4.63067 5.07412 5.80363 6.72903 7.76232 8.86469 10.069 11.4839 13.1894 15.0321 16.9754 19.0538 21.4516 25.091 33.8382 63.082 179.296 1065.79 1051.46 183.773 64.9569 32.9621 20.7448 15.0082 11.8847 9.97051 8.68943 7.75684 7.02597 6.42535 5.91805 5.48216 5.10552 4.78653 4.54421 4.44107 4.59683 5.13778 6.05558 7.24658 8.60715 10.074 11.672 13.5952 15.6335 17.6519 19.6256 21.7052 24.9015 33.3212 62.4872 178.632 1066.72 1051.46 183.653 65.1688 33.3995 21.191 15.2222 12.0627 10.0939 8.82269 7.89189 7.15019 6.53317 6.00657 5.55219 5.1642 4.84402 4.59329 4.41483 4.33895 4.46234 4.96688 5.92391 7.27624 8.87257 10.5636 12.3805 14.526 16.7463 19.0282 21.4979 24.9813 33.3844 62.2012 178.139 1066.07 1051.46 175.46 62.5299 31.9226 20.1317 14.5131 11.422 9.52711 8.25235 7.33162 6.62279 6.0447 5.55531 5.13976 4.79862 4.53761 4.36338 4.2858 4.32454 4.51348 4.9354 5.68893 6.86042 8.4603 10.3667 12.4464 14.8047 16.9846 18.9974 21.1342 24.3791 32.7571 61.7746 177.935 1066.8 1051.46 176.205 63.2754 32.5029 20.5821 14.8764 11.7225 9.7737 8.4466 7.45878 6.66919 6.01442 5.47521 5.05027 4.73565 4.51741 4.37908 4.31359 4.32989 4.44924 4.70657 5.158 5.8843 6.98349 8.52947 10.4797 12.7836 15.3327 17.7784 20.2776 23.7542 32.1068 60.9637 177.593 1066.43 1051.47 177.223 64.5965 33.8117 21.7298 15.7903 12.3746 10.1654 8.60442 7.43262 6.52737 5.83354 5.32593 4.982 4.76841 4.64896 4.60306 4.63537 4.76929 5.06082 5.53809 6.23018 7.1731 8.4165 10.0454 12.1617 14.5496 16.8256 18.9553 21.2375 24.8182 33.9076 63.7441 179.913 1067.32 1051.47 177.17 64.4727 33.5904 21.4085 15.3926 11.9451 9.7602 8.27778 7.22162 6.43957 5.84561 5.39662 5.07468 4.86844 4.7614 4.73312 4.76791 4.85991 5.05479 5.3899 5.89984 6.62432 7.61213 8.9301 10.6852 12.7492 14.8045 16.739 18.764 21.9379 30.2226 58.9532 175.556 1066.96 1051.48 176.956 64.2038 33.296 21.1442 15.2413 11.9855 10.0438 8.82113 8.01159 7.44227 7.00946 6.64945 6.32448 6.01594 5.72154 5.45545 5.25202 5.1764 5.22965 5.48343 5.98856 6.82019 8.0589 9.74265 11.8825 14.6142 17.3451 19.7346 21.8559 24.9491 33.7872 63.976 180.615 1068.35 1051.49 178.04 65.2739 33.8738 21.2714 15.1365 11.8456 9.97604 8.85347 8.12889 7.61837 7.22774 6.9123 6.6529 6.44053 6.26673 6.12081 5.99027 5.89253 5.80304 5.74552 5.78639 6.0018 6.60944 7.76389 9.5618 12.06 14.6562 17.0517 19.5488 23.0815 31.2316 59.3783 176.193 1068.33 1051.53 182.436 67.3702 33.9572 20.5872 14.5799 11.7716 10.3839 9.59943 9.04682 8.56496 8.09324 7.62021 7.15305 6.69916 6.26067 5.84459 5.46541 5.12056 4.80589 4.50247 4.21756 3.95405 3.80327 4.11455 5.15368 7.11155 10.0511 12.8507 14.6568 17.6569 28.9208 65.1617 187.503 1069.55 1051.61 171.551 53.605 23.6432 15.5303 13.964 13.9059 13.8677 13.5884 13.1017 12.467 11.7384 10.9867 10.2807 9.65919 9.15692 8.81004 8.65367 8.72464 9.08146 9.66206 10.4977 11.6153 13.0249 14.7763 16.939 19.5926 22.8525 26.9699 32.6523 41.6812 58.1531 93.7833 206.051 1070.91 537.575 23.8767 24.0395 24.1076 24.1333 24.1467 24.1542 24.156 24.1526 24.1448 24.1331 24.1183 24.101 24.082 24.0621 24.0418 24.0219 24.0029 23.9854 23.97 23.9552 23.942 23.9299 23.9187 23.9082 23.8981 23.8881 23.8782 23.8692 23.8635 23.8654 23.879 23.9068 23.9484 550.36 537.326 23.2803 23.1865 23.1368 23.1187 23.1155 23.1176 23.1207 23.1238 23.1263 23.1281 23.1293 23.1298 23.1297 23.1291 23.1279 23.1262 23.124 23.1214 23.1185 23.1154 23.112 23.1087 23.1054 23.1025 23.1 23.0985 23.0987 23.1016 23.1094 23.1254 23.1531 23.1922 23.235 533.379 1051.36 161.526 48.2366 20.9975 12.3988 9.16951 7.76614 7.05694 6.64253 6.37035 6.1772 6.03454 5.92831 5.85102 5.79841 5.76794 5.75814 5.76825 5.79812 5.84821 5.91977 6.01515 6.13845 6.29672 6.50215 6.77642 7.15982 7.73161 8.66066 10.3478 13.8922 22.8268 50.5105 163.277 1044.86 1051.43 170.09 54.6289 24.2128 13.0911 8.23057 5.91045 4.71489 4.04816 3.6492 3.39705 3.23189 3.12224 3.05058 3.00678 2.98491 2.98165 2.9955 3.02641 3.07579 3.14669 3.24441 3.37752 3.55989 3.81429 4.17951 4.72446 5.57783 6.99383 9.51067 14.4017 25.3149 55.4363 169.699 1046.12 1051.47 172.494 57.2892 26.6767 15.0698 9.55629 6.66965 5.1014 4.21241 3.67715 3.33892 3.11906 2.97453 2.8808 2.8235 2.79411 2.78777 2.80213 2.83678 2.89311 2.97469 3.08788 3.24334 3.45835 3.76138 4.2002 4.85736 5.88077 7.54706 10.4047 15.686 26.9328 57.2559 171.488 1047.26 1051.5 173.476 58.4719 28.1861 16.7951 11.1702 7.99336 6.12181 5.00305 4.31875 3.87747 3.57891 3.37337 3.23255 3.13997 3.08597 3.06514 3.07479 3.11429 3.18492 3.29013 3.43634 3.63451 3.90277 4.2711 4.78966 5.54405 6.69077 8.5032 11.4735 16.7572 27.8606 58.0296 172.299 1048.25 1051.51 174.226 59.2985 29.306 18.2659 12.733 9.42659 7.33127 5.98803 5.12463 4.55178 4.15219 3.86574 3.66062 3.51848 3.4288 3.38579 3.38664 3.43067 3.5191 3.65524 3.8453 4.10003 4.4375 4.8879 5.50208 6.37427 7.66037 9.59438 12.6119 17.8032 28.6724 58.6798 173.026 1049.14 1051.52 174.748 59.8415 30.112 19.4532 14.1012 10.7642 8.51689 6.98414 5.94493 5.23287 4.72481 4.35096 4.07609 3.87998 3.75115 3.68336 3.67371 3.72155 3.82818 3.9969 4.23388 4.54968 4.96221 5.50184 6.22273 7.22334 8.64454 10.6768 13.7003 18.7445 29.3193 59.1196 173.529 1049.95 1051.53 175.161 60.2875 30.7311 20.3925 15.2381 11.9328 9.5978 7.9189 6.72469 5.88071 5.26633 4.80531 4.46009 4.20897 4.03964 3.94552 3.92362 3.97334 4.09612 4.29532 4.57717 4.95235 5.43909 6.06852 6.8989 8.02706 9.57136 11.6855 14.7005 19.5967 29.8972 59.5185 173.999 1050.69 1051.53 175.452 60.6111 31.1831 21.1078 16.1471 12.9149 10.5471 8.76755 7.44584 6.4848 5.77286 5.22969 4.81682 4.51186 4.3021 4.18076 4.14487 4.19382 4.32934 4.55502 4.8773 5.30719 5.86337 6.57767 7.51171 8.75802 10.4109 12.5915 15.591 20.3509 30.4056 59.8632 174.398 1051.37 1051.54 175.692 60.8354 31.4859 21.6217 16.8409 13.704 11.3434 9.505 8.08876 7.02906 6.23122 5.61539 5.14137 4.78667 4.53858 4.39049 4.33972 4.38554 4.53035 4.77797 5.13517 5.61328 6.23138 7.02175 8.04855 9.39869 11.143 13.3754 16.3563 20.9983 30.8423 60.1557 174.739 1052 1051.54 175.981 61.0207 31.6964 21.9903 17.3658 14.3311 12.0037 10.1388 8.65724 7.51651 6.64405 5.96483 5.43624 5.03624 4.75245 4.57875 4.5129 4.55383 4.70483 4.97009 5.3566 5.87594 6.54749 7.40378 8.51123 9.95036 11.7695 14.0408 17.0029 21.5488 31.221 60.4137 175.039 1052.58 1051.54 176.498 61.1961 31.8374 22.2448 17.7548 14.8235 12.5463 10.6787 9.15487 7.95156 7.01723 6.28332 5.70626 5.26495 4.94781 4.74945 4.66817 4.70227 4.85608 5.13433 5.54408 6.09704 6.81266 7.72352 8.89807 10.4102 12.2876 14.5862 17.5304 21.9989 31.5275 60.6067 175.27 1053.11 1051.54 177.868 61.5236 31.977 22.4351 18.0528 15.2188 12.9997 11.1442 9.59497 8.3439 7.35824 6.57677 5.95626 5.47698 5.12842 4.90617 4.80898 4.83428 4.98758 5.27435 5.70161 6.28095 7.0316 7.98625 9.21488 10.7844 12.704 15.0188 17.9459 22.3547 31.7664 60.7404 175.448 1053.58 1051.54 180.64 62.21 32.23 22.6364 18.3126 15.5545 13.3894 11.552 9.98755 8.69948 7.67078 6.84761 6.1881 5.67408 5.29623 5.0511 4.93751 4.95233 5.10213 5.39333 5.83284 6.43198 7.20969 8.20092 9.47358 11.0826 13.0279 15.3482 18.2571 22.6181 31.9297 60.7968 175.572 1054 1051.54 183.199 62.9581 32.5278 22.8374 18.5409 15.8412 13.7242 11.9072 10.3344 9.01795 7.95357 7.09439 6.40057 5.85553 5.45117 5.18495 5.05498 5.05866 5.20327 5.49638 5.94471 6.55909 7.35791 8.37827 9.68522 11.321 13.2783 15.5932 18.4797 22.7982 32.0211 60.7849 175.699 1054.38 1051.53 183.914 63.3362 32.7266 22.9884 18.7189 16.0693 13.9965 12.2026 10.6286 9.29228 8.20004 7.31162 6.58936 6.01828 5.59143 5.30646 5.16157 5.15512 5.29482 5.58933 6.04515 6.67244 7.48874 8.53323 9.86784 11.5217 13.4813 15.7814 18.6381 22.9125 32.0537 60.7344 175.97 1054.73 1051.53 184.044 63.5112 32.8414 23.0834 18.8361 16.2273 14.1955 12.429 10.8623 9.51481 8.4028 7.49263 6.74864 6.15743 5.71331 5.41326 5.25664 5.24308 5.38044 5.67812 6.14261 6.78333 7.61674 8.68379 10.0433 11.7117 13.6688 15.9473 18.7663 22.9916 32.0623 60.729 176.747 1055.07 1051.52 184.024 63.5565 32.8828 23.1175 18.8823 16.3049 14.3125 12.5797 11.0297 9.67917 8.55501 7.63095 6.8725 6.26791 5.81197 5.50206 5.33899 5.32328 5.46308 5.76805 6.24507 6.90276 7.75648 8.84828 10.2342 11.9196 13.8759 16.1314 18.9077 23.0817 32.1091 60.9042 178.464 1055.41 1051.52 183.863 63.4576 32.8347 23.0768 18.8465 16.2946 14.343 12.6516 11.1284 9.78283 8.65361 7.72306 6.95726 6.34633 5.88497 5.57171 5.40876 5.39718 5.54541 5.86334 6.35846 7.03878 7.91861 9.04018 10.4576 12.1673 14.1307 16.3681 19.1013 23.2224 32.2242 61.2156 180.367 1055.77 1051.52 183.577 63.2112 32.6852 22.9508 18.7257 16.2007 14.2939 12.6507 11.1647 9.83502 8.70488 7.77126 7.00488 6.39449 5.93459 5.62475 5.46832 5.46696 5.62946 5.966 6.48498 7.19405 8.10678 9.26432 10.7196 12.4639 14.4463 16.6755 19.371 23.4379 32.4078 61.5166 181.301 1056.15 1051.52 183.199 62.834 32.4331 22.7388 18.5301 16.0435 14.1915 12.6036 11.1601 9.85205 8.7235 7.79005 7.02872 6.42335 5.96928 5.66733 5.52155 5.5344 5.71516 6.07429 6.6213 7.36395 8.3155 9.51485 11.0144 12.8035 14.8174 17.0516 19.7209 23.74 32.6737 61.8009 181.252 1056.55 1051.52 182.798 62.3827 32.1046 22.4641 18.2946 15.866 14.08 12.5507 11.1486 9.86052 8.73294 7.80048 7.04548 6.44628 5.99892 5.70545 5.57073 5.59811 5.79761 6.17996 6.75538 7.5329 8.52596 9.77062 11.3192 13.1608 15.217 17.4704 20.1309 24.1196 33.0296 62.1197 180.575 1056.95 1051.53 182.461 61.948 31.7615 22.1852 18.0802 15.7259 14.0087 12.5313 11.1609 9.88543 8.7558 7.82274 7.07183 6.47611 6.03226 5.74362 5.61592 5.65346 5.86706 6.26773 6.86656 7.67451 8.70586 9.99437 11.5926 13.4898 15.5957 17.8843 20.5605 24.5457 33.4552 62.5282 180.053 1057.31 1051.54 182.268 61.6175 31.4698 21.9622 17.9377 15.6614 14.005 12.566 11.2145 9.94431 8.81111 7.87533 7.12367 6.52545 6.07809 5.78633 5.65699 5.69519 5.91258 6.32059 6.93121 7.75763 8.81557 10.1378 11.7774 13.7237 15.8808 18.2213 20.9485 24.9734 33.9019 62.9501 180.022 1057.59 1051.54 182.262 61.4572 31.2792 21.8292 17.8856 15.6811 14.0747 12.6624 11.321 10.0525 8.91654 7.97478 7.21504 6.60602 6.14542 5.83966 5.69673 5.72251 5.92931 6.32914 6.9347 7.76115 8.82585 10.1622 11.8234 13.7998 15.9981 18.4006 21.2165 25.3497 34.3898 63.5528 180.909 1057.78 1051.55 182.515 61.5579 31.2456 21.8102 17.9304 15.7846 14.2176 12.8247 11.4897 10.2215 9.08214 8.13126 7.35599 6.72619 6.24154 5.9101 5.74107 5.74074 5.92197 6.29751 6.88045 7.68701 8.73622 10.0634 11.7206 13.6963 15.9082 18.3596 21.2755 25.5526 34.7498 64.291 184.596 1057.85 1051.55 183.078 62.0063 31.4263 21.9308 18.0801 15.9721 14.4341 13.057 11.7266 10.4568 9.31196 8.34628 7.54694 6.88756 6.36947 6.0023 5.79645 5.75842 5.90144 6.23918 6.78499 7.55556 8.57164 9.87304 11.5082 13.4548 15.6428 18.1033 21.091 25.5026 34.7953 64.2434 184.863 1057.83 1051.54 183.846 62.776 31.8324 22.1949 18.3329 16.2398 14.7199 13.3544 12.0249 10.7479 9.59254 8.60654 7.77687 7.08191 6.5243 6.11502 5.86552 5.78217 5.8785 6.1691 6.66764 7.3915 8.36352 9.63271 11.2443 13.1535 15.2946 17.721 20.7229 25.2216 34.5842 63.8252 184.325 1057.75 1051.53 184.617 63.6845 32.3765 22.5482 18.6479 16.5532 15.0419 13.6827 12.3493 11.059 9.88798 8.87892 8.01714 7.28561 6.68823 6.23669 5.9431 5.81329 5.86074 6.10073 6.54706 7.21781 8.13838 9.37147 10.9652 12.8486 14.9488 17.3226 20.283 24.7872 34.1605 63.1702 183.59 1057.65 1051.51 185.093 64.424 32.894 22.914 18.9824 16.878 15.3601 13.9924 12.6441 11.3335 10.1441 9.11336 8.22326 7.46061 6.8305 6.34467 6.01519 5.84695 5.85283 6.04808 6.44602 7.06463 7.93115 9.12176 10.6951 12.5642 14.6445 16.9754 19.8642 24.2881 33.5634 62.2835 182.683 1057.59 1051.5 185.18 64.8275 33.2839 23.244 19.2849 17.1423 15.5845 14.1881 12.8229 11.5009 10.3031 9.26033 8.35224 7.5698 6.92006 6.41455 6.06503 5.8754 5.85742 6.02534 6.39089 6.97036 7.7962 8.94902 10.4884 12.3395 14.4121 16.7158 19.5248 23.8064 32.8733 61.2309 181.685 1057.59 1051.49 185.052 64.9279 33.5054 23.4705 19.4635 17.2521 15.641 14.2224 12.8587 11.5446 10.3481 9.30016 8.38361 7.59284 6.93776 6.42999 6.08091 5.89375 5.87894 6.0487 6.4122 6.98227 7.79124 8.92011 10.4302 12.2612 14.3244 16.6052 19.3339 23.4459 32.2477 60.2372 180.844 1057.69 1051.49 184.868 64.9173 33.6766 23.6523 19.5551 17.2494 15.5837 14.1543 12.8044 11.5007 10.2976 9.23659 8.31105 7.51938 6.87292 6.38271 6.05871 5.90309 5.92443 6.13204 6.53202 7.13313 7.96462 9.1034 10.6073 12.4247 14.4721 16.7225 19.3743 23.3308 31.892 59.6309 180.522 1057.94 1051.48 184.646 64.8506 33.8339 23.8056 19.5889 17.1841 15.4697 14.0287 12.6789 11.3636 10.1298 9.04414 8.11501 7.33842 6.72368 6.27859 6.0096 5.91718 6.00783 6.28779 6.76041 7.43126 8.32662 9.51748 11.0528 12.8795 14.9151 17.1286 19.7031 23.5318 31.9391 59.6733 181.005 1058.37 1051.48 184.231 64.5339 33.7967 23.7948 19.4832 17.0092 15.2591 13.7942 12.4159 11.0645 9.79542 8.70212 7.79873 7.07074 6.52098 6.15194 5.96605 5.9625 6.14678 6.52298 7.09258 7.8601 8.84998 10.128 11.7336 13.6012 15.6407 17.8191 20.3201 24.0538 32.4293 60.5088 182.384 1058.96 1051.49 183.47 63.7649 33.389 23.4914 19.1563 16.665 14.8974 13.4018 11.9843 10.6035 9.3326 8.27592 7.43789 6.79013 6.32875 6.05262 5.96196 6.05631 6.34178 6.82172 7.49661 8.37201 9.47226 10.8603 12.5675 14.5053 16.5671 18.7182 21.1605 24.8457 33.3069 62.0032 184.376 1059.63 1051.49 182.532 62.7175 32.7176 22.9503 18.6482 16.1837 14.4216 12.9099 11.4746 10.1007 8.87322 7.88846 7.13396 6.57214 6.19637 6.00543 5.99968 6.18019 6.55483 7.12734 7.89891 8.87662 10.085 11.5894 13.4163 15.4507 17.5597 19.7 22.0964 25.7666 34.4405 63.958 186.476 1060.27 1051.5 181.597 61.592 31.9059 22.2861 18.0771 15.684 13.9588 12.4611 11.042 9.70777 8.54512 7.63337 6.94771 6.44899 6.13222 5.99866 6.05016 6.28949 6.72647 7.3658 8.21022 9.26693 10.5614 12.1593 14.0824 16.2081 18.3831 20.5457 22.9098 26.5051 35.2005 65.0608 187.213 1060.74 1051.51 180.964 60.6855 31.1672 21.6906 17.6095 15.3152 13.6543 12.1994 10.8198 9.53286 8.42214 7.55333 6.89817 6.42181 6.12355 6.00799 6.07882 6.3401 6.80298 7.47375 8.35794 9.46256 10.8146 12.4782 14.4673 16.6553 18.8777 21.0678 23.4301 26.9726 35.5927 65.0258 182.047 1060.97 1051.52 180.884 60.2712 30.7154 21.34 17.3869 15.2002 13.6177 12.2151 10.8708 9.60981 8.5149 7.64539 6.97623 6.47904 6.15747 6.01892 6.06866 6.31131 6.75871 7.41946 8.30317 9.42058 10.7982 12.5004 14.5389 16.7816 19.0664 21.3217 23.727 27.2566 35.8401 65.173 181.204 1060.96 1051.52 181.5 60.5702 30.7351 21.3523 17.4797 15.3777 13.8592 12.4923 11.1597 9.89418 8.78292 7.87934 7.16302 6.61305 6.23587 6.0405 6.03295 6.21725 6.6044 7.20449 8.03103 9.10231 10.4488 12.1413 14.1987 16.493 18.8892 21.3216 23.9278 27.5872 36.1009 65.0249 180.436 1060.7 1051.52 182.66 61.5922 31.2597 21.7316 17.8683 15.8095 14.328 12.971 11.6198 10.3203 9.17155 8.21664 7.43673 6.81868 6.36942 6.09865 6.01251 6.11321 6.40909 6.90876 7.6253 8.5803 9.81158 11.3991 13.3782 15.6552 18.1483 20.826 23.8053 27.8583 36.5648 65.4785 181.708 1060.25 1051.52 183.418 62.5074 31.8142 22.1976 18.3678 16.3454 14.8762 13.5013 12.1105 10.7647 9.57383 8.5689 7.72952 7.04889 6.5334 6.19288 6.03321 6.05447 6.26173 6.65978 7.25622 8.0677 9.13245 10.5282 12.3028 14.4188 16.8609 19.6678 22.9975 27.5502 36.5659 65.4229 185.465 1059.65 1051.51 183.776 63.0921 32.216 22.5868 18.8066 16.8002 15.3157 13.9112 12.4861 11.1016 9.86963 8.82184 7.93957 7.21783 6.66217 6.28136 6.08026 6.05673 6.21284 6.54918 7.06569 7.76855 8.68113 9.86943 11.3911 13.2408 15.455 18.1597 21.6284 26.6186 36.1133 64.7608 184.828 1058.98 1051.51 183.733 63.297 32.3889 22.7891 19.0649 17.0832 15.5989 14.1772 12.7185 11.2871 10.0058 8.92083 8.01495 7.27816 6.71409 6.32961 6.12801 6.10531 6.26103 6.59134 7.08899 7.7493 8.57701 9.61317 10.9078 12.474 14.3702 16.7765 20.0831 25.2112 35.1538 63.9048 183.997 1058.34 1051.5 183.589 63.2947 32.432 22.9165 19.2781 17.3277 15.8197 14.3356 12.8004 11.2999 9.96859 8.85937 7.95023 7.22395 6.68117 6.32615 6.16039 6.17913 6.38063 6.75749 7.29627 7.98209 8.80501 9.77769 10.9256 12.265 13.8631 15.929 18.9236 23.9254 34.1114 63.1853 183.449 1057.85 1051.51 183.26 63.1461 32.5014 23.1477 19.567 17.5657 15.9291 14.2963 12.6451 11.0851 9.74372 8.65338 7.7786 7.09552 6.60018 6.29489 6.18158 6.25795 6.52484 6.97507 7.59266 8.35526 9.23926 10.235 11.3329 12.5247 13.8871 15.6587 18.3496 23.1215 33.3314 62.7914 183.372 1057.61 1051.51 183.04 63.1258 32.8298 23.6399 19.9669 17.7297 15.8231 13.9822 12.2367 10.6909 9.42477 8.41529 7.61032 6.98788 6.54322 6.28136 6.20887 6.32969 6.65146 7.17247 7.88041 8.75281 9.76359 10.8777 12.0178 13.137 14.3379 15.8997 18.369 22.9322 33.0177 62.6434 183.366 1057.76 1051.51 182.786 62.9972 33.0765 23.8613 19.8694 17.2912 15.1612 13.2711 11.6308 10.2754 9.18198 8.29114 7.56529 6.99115 6.57053 6.31658 6.24454 6.36729 6.70219 7.25723 8.02848 9.0004 10.1695 11.4629 12.7027 13.8114 14.8972 16.2618 18.4778 22.7589 32.5833 62.0529 182.67 1058.07 1051.51 183.308 63.4789 33.4665 23.9021 19.5492 16.7633 14.6153 12.8531 11.4037 10.2196 9.23375 8.39585 7.68958 7.1118 6.67229 6.39162 6.29241 6.39508 6.72701 7.30874 8.13301 9.19392 10.5319 12.0455 13.4659 14.6517 15.6792 16.8627 18.7982 22.7234 32.1901 61.4685 182.341 1058.52 1051.49 184.519 64.7645 34.3281 24.2443 19.5416 16.6146 14.4934 12.8383 11.5033 10.3891 9.42571 8.58403 7.85786 7.24979 6.7739 6.45415 6.31696 6.38772 6.70355 7.30332 8.18066 9.31337 10.7723 12.5265 14.2427 15.6355 16.6933 17.7178 19.3475 22.8543 31.8164 60.6384 181.787 1058.99 1051.47 185.318 65.7523 34.9358 24.4676 19.6275 16.7139 14.6688 13.093 11.7953 10.6724 9.67575 8.79183 8.02117 7.36905 6.85164 6.49218 6.31595 6.34751 6.62646 7.20398 8.09266 9.27979 10.81 12.7333 14.8327 16.6001 17.8489 18.791 20.1052 23.1269 31.4356 59.645 181.144 1059.5 1051.46 185.28 66.1053 35.2792 24.7519 19.939 17.0561 15.0144 13.4039 12.0409 10.8409 9.76973 8.82476 8.00895 7.32886 6.80045 6.44228 6.27339 6.31203 6.592 7.16198 8.05227 9.27061 10.8582 12.8875 15.2838 17.5245 19.1627 20.1978 21.2626 23.8011 31.4915 59.3133 181.489 1060.15 1051.45 184.786 65.951 35.4089 24.949 20.0745 17.1205 15.0272 13.3601 11.9173 10.6428 9.52554 8.55952 7.7482 7.09805 6.62016 6.32626 6.22745 6.33409 6.67002 7.26996 8.17095 9.40059 11.0124 13.1111 15.7006 18.3529 20.4824 21.8197 22.8089 24.9621 32.1654 59.9682 183.165 1061 1051.45 184.142 65.3272 35.0668 24.6075 19.6347 16.6502 14.5655 12.9015 11.4415 10.1394 9.02369 8.0976 7.35221 6.79064 6.41876 6.24298 6.26662 6.49226 6.93318 7.6035 8.53131 9.76788 11.4013 13.5731 16.2656 19.1271 21.6625 23.3947 24.5082 26.4796 33.4419 61.7001 185.913 1061.99 1051.45 183.229 64.2816 34.2573 23.8215 18.8824 15.9752 13.9452 12.2938 10.825 9.52998 8.46298 7.61928 6.97761 6.53653 6.29795 6.2643 6.43093 6.79354 7.35971 8.13206 9.12227 10.3644 11.9803 14.125 16.7803 19.728 22.5076 24.5452 25.8502 27.8528 34.951 64.1995 189.101 1062.87 1051.45 182 62.8803 33.1055 22.8067 18.02 15.2379 13.2668 11.6326 10.186 8.95079 7.97539 7.2375 6.70935 6.38832 6.27644 6.37481 6.67241 7.15971 7.83959 8.70334 9.75249 11.0117 12.5778 14.6098 17.1718 20.1279 23.0744 25.3825 26.8806 28.9305 36.3431 66.9174 192.015 1063.4 1051.45 180.44 61.1027 31.7114 21.7243 17.1776 14.5451 12.6532 11.076 9.70313 8.56394 7.68377 7.02984 6.5784 6.33157 6.29631 6.47725 6.86363 7.44593 8.22546 9.1825 10.3019 11.5868 13.1021 14.9691 17.2547 19.9235 22.754 25.2839 27.2373 29.6217 37.2487 67.9588 189.845 1063.4 1051.46 179.466 59.8621 30.6864 20.9332 16.5677 14.0611 12.2682 10.7888 9.51736 8.46736 7.64446 7.01822 6.57586 6.32727 6.28605 6.46346 6.85719 7.46569 8.29742 9.33503 10.5548 11.9408 13.5161 15.3181 17.3306 19.5464 21.9126 24.2695 26.504 29.4046 37.42 67.6144 184.493 1063.09 1051.47 179.106 59.1305 29.9505 20.3467 16.1386 13.7803 12.1373 10.803 9.65368 8.68128 7.87892 7.22776 6.73208 6.41148 6.28669 6.37498 6.68339 7.21972 8.00258 9.03116 10.2961 11.7958 13.5163 15.4092 17.3664 19.2887 21.1516 23.0551 25.203 28.4502 36.9257 66.7773 182.241 1062.76 1051.48 179.77 59.4102 29.8895 20.2628 16.1287 13.8893 12.3918 11.196 10.1447 9.20914 8.38285 7.66216 7.0673 6.62779 6.37207 6.32256 6.49131 6.8887 7.53715 8.45276 9.65041 11.1612 12.9933 15.0684 17.2225 19.2503 20.9984 22.563 24.3722 27.5482 36.2109 65.9189 181.108 1062.52 1051.49 181.556 60.8535 30.5957 20.7 16.5229 14.3352 12.9398 11.8536 10.8734 9.9436 9.06403 8.25005 7.53508 6.95728 6.55355 6.35178 6.36625 6.6038 7.08049 7.81452 8.83471 10.2038 11.9808 14.124 16.4869 18.845 20.9479 22.7025 24.433 27.3419 35.6436 64.9544 180.214 1062.22 1051.48 183.267 62.7028 31.7693 21.5357 17.2577 15.0696 13.7383 12.7387 11.8024 10.831 9.84962 8.91366 8.06401 7.34302 6.79478 6.45109 6.32612 6.42032 6.73927 7.2917 8.099 9.22552 10.7688 12.7588 15.1139 17.6748 20.2219 22.5446 24.7028 27.6679 35.4557 63.8125 178.842 1061.68 1051.48 183.993 63.9897 32.7385 22.2795 17.9824 15.8616 14.6264 13.7035 12.7709 11.693 10.5318 9.42706 8.43846 7.59711 6.94729 6.51616 6.31144 6.32417 6.5487 6.98138 7.62807 8.52605 9.77086 11.4573 13.5897 16.1176 18.9316 21.8546 24.7897 28.3872 36.2832 64.526 181.749 1061.06 1051.5 183.5 63.678 32.5394 22.2985 18.2554 16.3546 15.2742 14.4093 13.4209 12.1871 10.8226 9.55494 8.46612 7.56814 6.89591 6.46299 6.2631 6.27534 6.48328 6.87189 7.4331 8.17539 9.15511 10.4689 12.1869 14.3531 16.9935 20.0964 23.658 28.164 36.6752 64.6825 184.976 1060.36 1051.52 183.773 63.6282 32.4204 22.4084 18.6499 16.9706 16.0071 15.1167 13.9585 12.4777 10.8866 9.47682 8.32503 7.41837 6.77302 6.38385 6.23038 6.28355 6.52141 6.92326 7.47358 8.16855 9.03213 10.1307 11.5389 13.3164 15.5484 18.3583 21.9541 26.981 36.3186 64.6009 184.969 1059.75 1051.53 183.442 63.1724 32.2212 22.6302 19.214 17.7383 16.782 15.6811 14.1872 12.3956 10.6164 9.1436 8.0097 7.16536 6.59837 6.28696 6.20216 6.31295 6.5974 7.03402 7.60516 8.30145 9.1281 10.1276 11.3716 12.9313 14.9065 17.4702 20.9499 26.1632 36.0626 64.8658 185.314 1059.37 1051.54 182.949 62.5754 32.0214 22.9308 19.7956 18.3456 17.1466 15.6386 13.7727 11.7934 10.025 8.65099 7.6363 6.91293 6.45228 6.22936 6.21713 6.38938 6.72844 7.21471 7.83037 8.56176 9.40345 10.3658 11.4951 12.8638 14.5761 16.8498 20.1214 25.3882 35.7349 65.0893 185.578 1059.19 1051.55 182.572 62.1547 32.0015 23.3186 20.2658 18.601 17.0095 15.1417 13.1128 11.1921 9.60616 8.39412 7.48797 6.83788 6.42186 6.22537 6.2314 6.4219 6.78577 7.3083 7.97525 8.77413 9.69537 10.7403 11.9205 13.2535 14.8173 16.8377 19.8012 24.8226 35.2157 65.0423 185.701 1059.45 1051.55 182.13 61.7971 32.0768 23.5613 20.3085 18.2647 16.345 14.3704 12.4641 10.7843 9.42989 8.36401 7.52651 6.89844 6.47371 6.25191 6.22753 6.38977 6.73264 7.2464 7.92225 8.75451 9.74265 10.9005 12.2139 13.6397 15.2227 17.1659 19.9455 24.6835 34.7856 64.5105 184.927 1059.84 1051.55 182.29 61.8789 32.1224 23.3435 19.7508 17.4877 15.5797 13.8237 12.2197 10.7996 9.59472 8.5844 7.74532 7.08148 6.60278 6.32166 6.24098 6.35298 6.65253 7.13096 7.78118 8.60141 9.60606 10.8168 12.2083 13.7274 15.3964 17.3788 20.101 24.6548 34.4453 63.842 184.238 1060.02 1051.54 183.302 62.8518 32.571 23.2732 19.4018 17.1063 15.3593 13.8425 12.4418 11.1282 9.93972 8.89512 7.99964 7.27179 6.72907 6.38938 6.25811 6.32671 6.58873 7.03496 7.65833 8.45877 9.4604 10.6898 12.114 13.682 15.4165 17.4726 20.2533 24.8059 34.4532 63.5608 184.095 1060 1051.53 183.991 63.7721 33.0388 23.3112 19.2821 17.0357 15.4656 14.1428 12.8624 11.5664 10.3251 9.20567 8.2378 7.44475 6.84489 6.45632 6.28302 6.31362 6.53906 6.94871 7.53471 8.29793 9.27228 10.4882 11.9021 13.4675 15.2128 17.2953 20.1142 24.6922 34.2601 62.9923 183.478 1059.8 1051.52 184.2 64.3378 33.358 23.3801 19.373 17.2887 15.9001 14.686 13.4002 12.0063 10.6387 9.41461 8.37409 7.53262 6.90213 6.49522 6.31006 6.33056 6.54399 6.93683 7.4988 8.22995 9.1684 10.3441 11.7083 13.2219 14.9185 16.9584 19.7458 24.3067 33.8387 62.3103 182.767 1059.55 1051.52 183.983 64.4039 33.4598 23.5238 19.6993 17.786 16.4684 15.2033 13.7736 12.2091 10.7077 9.40666 8.33475 7.49068 6.87651 6.49625 6.34063 6.3892 6.62604 7.03421 7.6 8.32257 9.23547 10.3604 11.653 13.0822 14.6873 16.633 19.3297 23.816 33.2973 61.6307 182.21 1059.33 1051.53 183.748 64.2868 33.5601 23.8779 20.2442 18.3875 16.9784 15.514 13.8595 12.1188 10.5239 9.19599 8.13727 7.33343 6.77802 6.46579 6.37961 6.49452 6.79175 7.25067 7.85423 8.59969 9.51231 10.5989 11.8146 13.138 14.6211 16.4403 19.0185 23.4155 32.8725 61.2304 182.029 1059.21 1051.53 183.565 64.14 33.7654 24.398 20.8335 18.8609 17.2121 15.4693 13.5863 11.7218 10.1099 8.81849 7.8201 7.09892 6.64066 6.42991 6.44173 6.64728 7.02657 7.55668 8.2188 9.01155 9.94975 11.0165 12.1624 13.3756 14.7233 16.3988 18.8425 23.141 32.582 61.0323 182.05 1059.19 1051.53 183.292 63.9602 34.0239 24.8979 21.2501 19.0279 17.0675 15.0429 12.983 11.0854 9.53499 8.33904 7.45236 6.85301 6.51878 6.42722 6.5485 6.85213 7.31924 7.92662 8.65584 9.50859 10.4884 11.5519 12.6418 13.7534 14.9691 16.5012 18.8087 23.0041 32.4322 61.0416 182.297 1059.27 1051.53 182.94 63.7633 34.2846 25.2668 21.4013 18.8471 16.5623 14.3087 12.1701 10.3436 8.92646 7.8714 7.12411 6.65738 6.44809 6.47327 6.70085 7.09903 7.64897 8.32907 9.12755 10.0474 11.0803 12.158 13.215 14.2509 15.3597 16.7701 18.9602 23.056 32.442 61.2388 182.749 1059.49 1051.53 182.435 63.4731 34.4017 25.3304 21.1529 18.2632 15.7319 13.3825 11.3032 9.63617 8.39077 7.48674 6.87259 6.5246 6.4251 6.55461 6.87983 7.36576 7.98481 8.722 9.59021 10.5843 11.6792 12.784 13.8277 14.8161 15.8516 17.1742 19.2735 23.2834 32.6259 61.6141 183.379 1059.85 1051.53 181.954 63.0703 34.2523 25.0262 20.5615 17.4466 14.8217 12.5211 10.5932 9.10996 8.01956 7.2346 6.71704 6.45262 6.43237 6.64307 7.05287 7.60813 8.27423 9.06636 10.006 11.0913 12.2663 13.4162 14.4675 15.4342 16.423 17.6824 19.712 23.6547 32.9735 62.1764 184.159 1060.32 1051.53 181.754 62.7928 34.0059 24.5852 19.9232 16.7116 14.1105 11.9327 10.1729 8.84097 7.85186 7.12943 6.6551 6.42573 6.44191 6.69845 7.15986 7.75862 8.46662 9.30471 10.3144 11.511 12.7872 14.0091 15.1014 16.0827 17.0566 18.2757 20.2475 24.12 33.3882 62.7463 184.915 1060.81 1051.53 182.029 62.9191 33.9322 24.2899 19.5037 16.2817 13.761 11.7155 10.0944 8.84687 7.88773 7.16736 6.67965 6.43099 6.43103 6.68581 7.16196 7.78414 8.52782 9.40731 10.468 11.759 13.1648 14.4891 15.6568 16.6882 17.6774 18.8754 20.7955 24.5873 33.7491 63.0761 185.229 1061.2 1051.52 182.628 63.404 34.0881 24.2486 19.4195 16.2508 13.8224 11.8668 10.3113 9.07612 8.08801 7.32268 6.78104 6.4735 6.41398 6.6172 7.06929 7.69728 8.4585 9.36632 10.4606 11.8221 13.3635 14.8087 16.0764 17.1815 18.2036 19.3837 21.2368 24.913 33.8869 62.9763 185.043 1061.45 1051.51 183.164 63.9891 34.4192 24.4839 19.68 16.5671 14.1815 12.2425 10.6682 9.38507 8.33848 7.51423 6.91309 6.5435 6.41732 6.54975 6.94983 7.56438 8.32388 9.24472 10.3697 11.7645 13.3849 14.9792 16.3726 17.5671 18.6305 19.7949 21.5737 25.1084 33.8323 62.5497 184.535 1061.56 1051.49 183.439 64.4941 34.8547 24.906 20.1215 17.0104 14.5954 12.5987 10.9525 9.60039 8.49749 7.62963 6.99432 6.59496 6.4381 6.53402 6.88957 7.47094 8.21959 9.13584 10.2722 11.6769 13.3444 15.0822 16.6166 17.9114 19.011 20.1422 21.8304 25.2182 33.6993 62.0465 184.075 1061.59 1051.49 183.375 64.7561 35.2406 25.2969 20.4652 17.2944 14.8103 12.7258 11.0001 9.59721 8.46964 7.59838 6.97484 6.59634 6.46336 6.57825 6.9372 7.5096 8.2489 9.15136 10.2764 11.6743 13.3651 15.2051 16.883 18.3043 19.4531 20.5236 22.0653 25.2611 33.5243 61.6489 183.92 1061.57 1051.48 182.96 64.6506 35.3753 25.388 20.438 17.1867 14.6581 12.5376 10.7747 9.36733 8.2716 7.44955 6.8864 6.57596 6.51544 6.70043 7.11368 7.71272 8.45927 9.36031 10.4769 11.8756 13.5741 15.4372 17.2163 18.7892 20.0671 21.1541 22.5805 25.5791 33.652 61.7863 184.617 1061.64 1051.48 182.42 64.2646 35.1825 25.1131 20.0606 16.764 14.2332 12.1343 10.4034 9.0531 8.03222 7.28759 6.80461 6.57966 6.61077 6.88822 7.38019 8.0283 8.80294 9.73084 10.8693 12.3028 14.0048 15.8077 17.5891 19.2498 20.6703 21.8682 23.3156 26.2627 34.3231 62.807 186.297 1061.82 1051.49 182.138 63.8953 34.8345 24.6797 19.5956 16.3161 13.828 11.7917 10.1354 8.85572 7.89331 7.20028 6.77151 6.61128 6.72158 7.09026 7.65392 8.34396 9.16785 10.1474 11.3519 12.83 14.4882 16.2287 17.9827 19.6942 21.2344 22.5637 24.111 27.1308 35.3329 64.3423 188.202 1062.13 1051.48 182.276 63.7933 34.5878 24.3905 19.3477 16.1242 13.6861 11.7012 10.0987 8.84507 7.88337 7.18832 6.76622 6.62819 6.78013 7.21033 7.83026 8.56112 9.43417 10.4668 11.7319 13.2277 14.8236 16.4797 18.1831 19.9392 21.6095 23.1011 24.7871 27.8983 36.2118 65.6271 189.395 1062.58 1051.47 182.892 64.2043 34.7571 24.5463 19.5519 16.3486 13.8977 11.8916 10.2721 8.97892 7.96329 7.22332 6.7676 6.60801 6.75414 7.20226 7.85563 8.62367 9.54438 10.6343 11.9635 13.4774 15.0002 16.5359 18.1356 19.8772 21.629 23.2642 25.0778 28.2314 36.5269 66.057 189.317 1063.04 1051.46 183.645 64.9501 35.2894 25.0682 20.0715 16.7999 14.2521 12.174 10.4824 9.11473 8.04422 7.26285 6.76865 6.56695 6.66827 7.08103 7.72503 8.50765 9.4595 10.6016 11.9902 13.5422 15.0376 16.4581 17.8976 19.5144 21.2621 23.0518 25.0564 28.2629 36.4196 65.7724 188.526 1063.42 1051.44 184.082 65.6171 35.9107 25.6959 20.6226 17.1902 14.4919 12.3029 10.5322 9.12375 8.04261 7.26146 6.76205 6.5386 6.59631 6.94823 7.54611 8.3127 9.26581 10.4446 11.8746 13.4936 15.0874 16.4865 17.748 19.0501 20.4713 22.1365 24.2808 27.6833 35.7258 64.5415 186.948 1063.6 1051.43 184.205 66.1278 36.5485 26.2487 20.9031 17.1894 14.3195 12.0576 10.288 8.92883 7.91466 7.1973 6.74607 6.54706 6.59784 6.90292 7.44394 8.17051 9.07714 10.2226 11.6369 13.3141 15.0924 16.6812 18.0128 19.1518 20.1474 21.2876 23.0829 26.5077 34.8617 63.7826 186.326 1063.61 1051.43 184.114 66.4791 36.987 26.2955 20.4882 16.5094 13.5873 11.4115 9.79094 8.591 7.71939 7.11842 6.75757 6.62564 6.71937 7.03153 7.54114 8.22602 9.08209 10.1551 11.4993 13.1356 14.965 16.7616 18.3961 19.8117 20.8669 21.7381 23.0955 26.224 34.7787 64.4608 187.559 1063.67 1051.42 183.91 66.423 36.6499 25.3124 19.1443 15.1869 12.4951 10.606 9.25055 8.26711 7.56233 7.08847 6.82789 6.78042 6.9478 7.31632 7.84703 8.5195 9.34644 10.3576 11.6192 13.1483 14.8714 16.6733 18.4376 20.1195 21.5121 22.5881 23.871 26.6867 34.9112 64.6771 188.191 1063.58 1051.42 182.72 64.9344 34.7279 23.1182 17.1838 13.7113 11.492 9.96999 8.8795 8.08081 7.50374 7.12294 6.94057 6.97058 7.22088 7.67444 8.2855 9.02823 9.90341 10.904 12.0769 13.5172 15.2423 17.1054 18.9138 20.5623 21.8802 22.9213 24.2167 27.0699 35.5069 66.0778 190.715 1063.52 1051.44 180.798 62.3837 32.2041 21.0719 15.7768 12.8361 10.9917 9.71202 8.76397 8.04919 7.51479 7.14847 6.97439 7.02566 7.32336 7.85433 8.56569 9.42488 10.4276 11.5467 12.7772 14.1814 15.8682 17.844 19.9433 21.8618 23.2299 24.1141 25.3665 28.5335 38.0047 70.5787 195.55 1063.58 1051.45 180.534 61.7307 31.6078 20.6276 15.4553 12.6515 10.9709 9.84948 9.00371 8.30662 7.7149 7.24226 6.94169 6.87349 7.08575 7.59342 8.32976 9.23116 10.3378 11.6494 13.0984 14.6564 16.3404 18.1931 20.3334 22.5946 24.4161 25.4831 26.7411 30.0486 39.9062 72.0341 189.808 1063.82 1051.45 181.95 62.5935 31.6362 20.2789 15.1711 12.6366 11.2416 10.3327 9.59715 8.90037 8.2196 7.59917 7.11285 6.83741 6.83775 7.15986 7.78019 8.61761 9.66336 10.9478 12.5397 14.3519 16.1516 17.937 19.9321 22.221 24.446 25.9832 27.1533 29.8974 39.2563 70.3167 185.097 1064.47 1051.44 181.667 61.9419 30.7105 19.7174 15.202 13.1608 12.0845 11.3126 10.5515 9.71896 8.85154 8.03202 7.35046 6.88037 6.67647 6.7845 7.23144 7.96499 8.91069 10.0925 11.5857 13.461 15.456 17.3078 19.1428 21.1152 23.1716 25.0822 26.7495 29.2014 37.4628 67.4602 182.263 1065.38 1051.46 181.336 61.6805 30.5337 20.0366 16.0937 14.3949 13.3816 12.4502 11.4178 10.3239 9.25594 8.28671 7.48113 6.88807 6.54014 6.46999 6.71315 7.2755 8.09957 9.1526 10.5026 12.2395 14.3423 16.4699 18.4151 20.2247 21.8665 23.4837 25.3817 28.3408 36.3425 65.4245 180.624 1065.47 1051.48 182.6 63.0869 31.8793 21.6149 17.8116 15.9903 14.6735 13.3709 12.02 10.7035 9.48891 8.42597 7.55519 6.90372 6.48109 6.29554 6.36234 6.7125 7.35759 8.23366 9.38694 10.8922 12.8104 15.0827 17.3322 19.3762 21.0592 22.4911 24.2017 27.3119 35.4627 63.8916 178.922 1064.6 1051.48 183.727 64.5263 33.4972 23.4023 19.4906 17.318 15.5537 13.8394 12.1971 10.7027 9.39293 8.29679 7.42904 6.79463 6.38627 6.19414 6.21029 6.43439 6.8984 7.61103 8.5679 9.83516 11.467 13.5474 15.9494 18.2913 20.3061 21.9243 23.5798 26.5587 34.6814 63.6711 185.13 1063.46 1051.49 183.848 65.0975 34.6123 24.718 20.5179 17.8359 15.5728 13.5101 11.6895 10.1431 8.8674 7.85337 7.08691 6.55439 6.2403 6.12838 6.1997 6.43716 6.83774 7.40936 8.19299 9.24629 10.6278 12.4398 14.6916 17.1725 19.5944 21.6817 23.5604 26.4017 34.0761 62.5432 184.94 1062.64 1051.48 183.28 64.8976 34.9656 24.9873 20.2473 17.0441 14.4737 12.3405 10.6025 9.21053 8.11787 7.28792 6.69334 6.31606 6.14211 6.15581 6.3332 6.65276 7.10528 7.67828 8.37412 9.24429 10.3812 11.8708 13.7825 16.1063 18.693 21.2683 23.7122 26.8485 34.3086 62.0457 184.811 1062.3 1051.49 182.572 64.2564 34.4884 24.1626 18.9893 15.5912 13.0641 11.1125 9.59863 8.42521 7.52955 6.8723 6.43137 6.19623 6.15959 6.30677 6.60606 7.02899 7.56123 8.17993 8.8747 9.6619 10.6095 11.8196 13.381 15.3642 17.7733 20.4809 23.3568 26.9805 34.6542 62.0463 184.738 1062.15 1051.49 182.103 63.6018 33.7403 23.1214 17.7811 14.4247 12.0582 10.299 8.96597 7.94707 7.17757 6.62516 6.27841 6.13801 6.20605 6.4706 6.89303 7.43722 8.08417 8.79897 9.55488 10.3458 11.209 12.225 13.4823 15.0826 17.132 19.6781 22.7429 26.8762 35.1978 63.1633 185.883 1061.96 1051.49 181.499 62.7759 32.8369 22.0987 16.7883 13.5819 11.4002 9.80923 8.61296 7.6975 7.001 6.50092 6.19755 6.10366 6.23243 6.5778 7.09881 7.74827 8.51335 9.37052 10.2706 11.185 12.0866 12.9969 13.9954 15.2143 16.8254 18.9971 21.9522 26.4047 35.4595 64.3509 186.892 1061.85 1051.5 181.066 62.0758 32.0256 21.289 16.1196 13.1031 11.0945 9.63229 8.52143 7.65486 6.97706 6.47621 6.164 6.06519 6.20631 6.59389 7.17762 7.88785 8.71625 9.68496 10.7954 11.9482 13.0204 13.9645 14.8255 15.7216 16.8889 18.613 21.2648 25.7298 35.2533 64.8753 186.942 1062.23 1051.5 180.873 61.5944 31.434 20.7914 15.8063 12.9652 11.0894 9.70843 8.6339 7.76982 7.06822 6.52571 6.16251 6.01229 6.11314 6.48696 7.08858 7.84189 8.74098 9.7804 11.0203 12.4282 13.7589 14.8992 15.842 16.6103 17.4172 18.653 20.8531 25.0547 34.7145 65.0708 187.494 1063.01 1051.5 181.052 61.5458 31.2486 20.6899 15.8425 13.1162 11.319 9.97676 8.89928 8.00157 7.24493 6.63066 6.18513 5.94734 5.96346 6.2713 6.84616 7.61513 8.56518 9.68747 11.0168 12.6009 14.2467 15.6842 16.873 17.7501 18.4122 19.2723 20.9775 24.7181 34.0975 63.9941 181.649 1063.81 1051.5 181.53 61.8848 31.3749 20.8397 16.0906 13.4514 11.7091 10.3791 9.27225 8.3149 7.48031 6.77687 6.23391 5.89003 5.7907 5.98172 6.47379 7.20918 8.14904 9.30522 10.7018 12.3953 14.3191 16.1641 17.7432 18.9381 19.6902 20.3561 21.6697 24.9762 34.1255 64.0681 181.003 1064.36 1051.5 182.059 62.3647 31.6205 21.1111 16.4924 13.9521 12.244 10.8829 9.69896 8.64642 7.71617 6.92135 6.2888 5.85017 5.64209 5.70511 6.07009 6.71173 7.5715 8.67277 10.0463 11.7502 13.8274 16.0838 18.1542 19.8522 20.9658 21.6759 22.7383 25.6339 34.4514 64.4485 181.437 1064.62 1051.49 182.273 62.6886 31.8884 21.5002 17.044 14.5741 12.8356 11.3709 10.0539 8.88115 7.85864 6.99317 6.30129 5.80247 5.52025 5.48527 5.7272 6.24781 7.00453 7.98882 9.24883 10.8632 12.879 15.2967 17.853 20.1341 21.8423 22.9073 23.9289 26.4279 34.6568 64.339 181.672 1064.59 1051.5 182.342 62.9373 32.2313 21.9984 17.6347 15.1268 13.2603 11.6399 10.1886 8.92512 7.85017 6.95578 6.24575 5.72785 5.41468 5.32534 5.4795 5.89735 6.55835 7.41121 8.51598 9.95575 11.7962 14.1208 16.881 19.6136 21.9577 23.6499 24.9772 27.326 35.0341 64.4505 183.24 1064.32 1051.5 182.457 63.1977 32.6128 22.4646 18.0639 15.4202 13.3882 11.6315 10.0985 8.79924 7.71668 6.82993 6.13269 5.62532 5.31413 5.21105 5.32643 5.67721 6.25825 7.00903 7.97678 9.24029 10.8763 12.9662 15.5955 18.4749 21.2308 23.5603 25.4648 28.0278 35.4454 64.6593 187.22 1063.87 1051.5 182.517 63.3884 32.9184 22.7595 18.2238 15.4095 13.2371 11.4001 9.84435 8.556 7.49924 6.64502 5.98098 5.5039 5.21745 5.1302 5.24714 5.57623 6.10994 6.79488 7.66269 8.78416 10.2342 12.1047 14.4797 17.1837 20.0018 22.7025 25.1728 28.2052 35.6287 64.2191 186.706 1063.33 1051.5 182.469 63.4569 33.0742 22.8263 18.1122 15.1435 12.8838 11.026 9.49408 8.24861 7.23983 6.43343 5.81412 5.37821 5.12999 5.07803 5.22412 5.5686 6.09304 6.74445 7.55399 8.5836 9.90649 11.6093 13.7137 16.1121 18.7499 21.5048 24.3066 27.8173 35.5349 63.7485 185.942 1062.8 1051.49 182.341 63.3905 33.0359 22.6509 17.7678 14.6977 12.4143 10.588 9.11368 7.93077 6.98053 6.22616 5.65311 5.26045 5.05583 5.05062 5.24611 5.63131 6.17121 6.82011 7.61024 8.59829 9.86244 11.4472 13.309 15.4172 17.793 20.4154 23.314 27.1477 35.2371 63.4177 185.416 1062.46 1051.49 182.182 63.2107 32.8148 22.2889 17.2915 14.1889 11.9383 10.1786 8.77683 7.65843 6.76151 6.05064 5.51524 5.15938 4.99592 5.04108 5.29716 5.73024 6.29237 6.96392 7.76492 8.75135 10.0054 11.5209 13.2096 15.0782 17.1831 19.5894 22.4404 26.455 34.8993 63.3348 185.305 1062.41 1051.49 182.05 63 32.5001 21.8539 16.8104 13.7349 11.5491 9.86374 8.52802 7.4605 6.60059 5.91721 5.40503 5.07352 4.9408 5.02814 5.33987 5.82133 6.41631 7.12688 7.96152 8.97592 10.2562 11.762 13.3649 15.0676 16.9384 19.1024 21.8123 25.8892 34.6421 63.5204 185.537 1062.68 1051.48 181.958 62.8018 32.1784 21.4624 16.4331 13.4147 11.2961 9.67167 8.38338 7.34666 6.50385 5.82968 5.32361 4.99965 4.881 4.99577 5.34385 5.85711 6.49091 7.2459 8.12429 9.17925 10.5021 12.0433 13.6367 15.2601 16.9695 18.9143 21.4316 25.4635 34.4478 63.82 185.894 1063.15 1051.48 181.933 62.6913 31.9435 21.1912 16.2036 13.2449 11.1794 9.59524 8.3335 7.30816 6.46509 5.78486 5.27017 4.93813 4.81617 4.93852 5.30013 5.82846 6.49551 7.29173 8.21678 9.31659 10.6781 12.2744 13.9227 15.5621 17.2205 19.0331 21.3726 25.287 34.4143 64.3067 186.536 1063.64 1051.48 181.961 62.6762 31.8234 21.0537 16.1135 13.2034 11.1729 9.61045 8.35692 7.32726 6.4724 5.77623 5.24222 4.88854 4.74512 4.85084 5.20521 5.73676 6.42134 7.24483 8.2069 9.34182 10.7161 12.3471 14.0704 15.7783 17.4743 19.2579 21.4824 25.2211 34.1846 63.6642 182.417 1064.03 1051.48 181.993 62.7145 31.7884 21.0097 16.1121 13.2384 11.2282 9.67416 8.41752 7.37608 6.50535 5.78978 5.23249 4.8517 4.6787 4.75551 5.08939 5.61334 6.3006 7.13564 8.12084 9.27947 10.6488 12.2927 14.0854 15.8751 17.655 19.4896 21.6832 25.2804 34.022 63.1542 180.142 1064.18 1051.47 182.02 62.7843 31.8149 21.0261 16.1589 13.3095 11.3092 9.75499 8.49 7.43489 6.54767 5.81337 5.2338 4.82616 4.62264 4.66696 4.97373 5.48179 6.15852 6.98765 7.97448 9.13511 10.4821 12.113 13.9441 15.7908 17.6446 19.5513 21.7748 25.3189 33.9245 62.8934 179.513 1064.26 1051.47 182.05 62.8549 31.8521 21.0421 16.1912 13.3634 11.3769 9.82433 8.55097 7.48284 6.58016 5.83317 5.23933 4.81101 4.5837 4.60379 4.88955 5.38405 6.05095 6.86958 7.84668 8.99586 10.3177 11.9156 13.7613 15.664 17.5913 19.5774 21.8558 25.3886 33.8877 62.7212 179.308 1064.15 1051.47 182.115 62.9489 31.9046 21.0616 16.2197 13.418 11.4525 9.90249 8.61764 7.53232 6.6108 5.85624 5.25869 4.81371 4.56394 4.56356 4.83292 5.31833 5.97976 6.78683 7.74334 8.86301 10.1473 11.6908 13.5109 15.4353 17.4059 19.4518 21.7926 25.3713 33.868 62.6386 179.238 1064.19 1051.47 182.271 63.1097 31.9866 21.0854 16.2473 13.4774 11.5387 9.99412 8.69266 7.58087 6.63864 5.87922 5.28439 4.82908 4.56069 4.54557 4.80703 5.29562 5.9673 6.77712 7.72189 8.81524 10.0657 11.5627 13.3526 15.2871 17.2945 19.3913 21.7741 25.37 33.8489 62.6027 179.388 1064.07 1051.47 182.539 63.398 32.1731 21.2021 16.3737 13.6339 11.7044 10.1412 8.80284 7.64937 6.68178 5.9149 5.31777 4.85459 4.5667 4.52999 4.77872 5.27343 5.96061 6.77895 7.71431 8.77875 9.9887 11.4331 13.1694 15.0725 17.0816 19.2123 21.6475 25.2995 33.8252 62.5843 179.313 1064.25 1051.47 182.809 63.7326 32.4264 21.3814 16.5459 13.8074 11.8541 10.249 8.867 7.6766 6.69366 5.92616 5.32601 4.86511 4.57031 4.51726 4.75612 5.2616 5.97128 6.80906 7.7487 8.80144 9.98967 11.3984 13.0942 14.9671 16.9668 19.1086 21.5586 25.2089 33.7227 62.4906 179.149 1064.3 1051.47 182.861 63.8917 32.5852 21.5053 16.6566 13.8941 11.8969 10.2489 8.84044 7.64021 6.66249 5.90457 5.30793 4.85313 4.56213 4.50495 4.73755 5.24674 5.96672 6.81417 7.75159 8.79194 9.96269 11.3392 12.9844 14.791 16.7198 18.8103 21.2587 24.9521 33.5084 62.2409 178.716 1064.61 1051.46 182.757 63.8648 32.5872 21.4629 16.5449 13.71 11.6624 10.0078 8.63019 7.47895 6.5456 5.81892 5.2472 4.81708 4.55663 4.53045 4.78332 5.30352 6.03202 6.89144 7.84012 8.89119 10.0791 11.4708 13.1268 14.9139 16.7668 18.7206 21.0046 24.5754 33.1537 62.044 178.467 1064.88 1051.46 182.753 63.8582 32.5151 21.2519 16.2042 13.3039 11.269 9.69096 8.41566 7.35774 6.48022 5.78761 5.24821 4.85024 4.6168 4.60787 4.86261 5.37701 6.10127 6.96447 7.92532 8.99115 10.2011 11.6294 13.3245 15.1211 16.9529 18.8702 21.1099 24.6268 33.1659 62.0757 178.475 1065.21 1051.46 183.073 64.1369 32.5781 21.0418 15.8173 12.8849 10.9224 9.46151 8.30277 7.34459 6.53754 5.87483 5.3566 4.97428 4.74567 4.71316 4.93319 5.43346 6.17515 7.08174 8.09743 9.21558 10.4828 11.9931 13.7717 15.5926 17.3517 19.0906 21.1129 24.5159 33.2132 62.4646 178.868 1065.49 1051.46 183.611 64.6931 32.8748 21.0137 15.606 12.6676 10.7958 9.44477 8.37981 7.49171 6.73636 6.1019 5.58736 5.18941 4.90929 4.77935 4.87665 5.29077 6.0164 6.9753 8.08082 9.29393 10.6486 12.2406 14.1454 16.1337 18.0988 20.009 22.0089 25.1158 33.4297 62.6169 179.137 1066.13 1051.46 184.07 65.3613 33.4664 21.3805 15.7942 12.7914 10.9325 9.61905 8.58274 7.70675 6.95384 6.32019 5.80194 5.38466 5.05632 4.83352 4.78723 5.03309 5.65075 6.61421 7.82332 9.18516 10.6651 12.3155 14.1986 16.041 17.8215 19.6909 21.9212 25.4371 34.1076 63.3801 179.539 1065.92 1051.46 184.182 65.7816 34.0277 21.8973 16.1943 13.0897 11.1638 9.80429 8.73274 7.83462 7.07631 6.44861 5.93508 5.50927 5.15135 4.86578 4.69265 4.72028 5.08499 5.86161 7.04935 8.59294 10.3905 12.3501 14.6074 16.8005 18.6174 20.1457 21.8005 24.7456 33.0474 62.2059 178.472 1066.86 1051.46 182.851 65.0704 33.5015 21.4856 15.812 12.67 10.6739 9.25288 8.17083 7.32977 6.67514 6.1563 5.72509 5.3516 5.03557 4.80114 4.67919 4.69944 4.89884 5.35166 6.14446 7.35026 8.99234 10.9795 13.2199 15.8194 18.1544 20.0753 21.9813 25.1192 33.613 62.8427 179.016 1066.15 1051.46 178.552 63.0567 32.0351 20.1754 14.52 11.3671 9.41254 8.12774 7.25693 6.64185 6.1689 5.76392 5.39713 5.07986 4.84704 4.73034 4.74154 4.87888 5.17274 5.66286 6.41762 7.52192 9.07093 11.0887 13.5173 16.3761 18.8943 20.7679 22.2868 24.8834 33.1536 62.5853 178.76 1067.26 1051.46 176.557 63.6333 32.778 20.7332 14.9278 11.7482 9.86149 8.66529 7.84052 7.20596 6.66469 6.17812 5.74774 5.39879 5.1619 5.05086 5.04947 5.13347 5.27886 5.52583 5.94187 6.60576 7.61298 9.09627 11.1587 13.872 16.829 19.5701 21.9253 24.8094 32.5492 61.1289 177.601 1066.53 1051.47 177.524 65.0705 34.4046 22.4366 16.6292 13.3646 11.3099 9.88334 8.8038 7.93151 7.2017 6.59178 6.1038 5.75507 5.56558 5.53185 5.60887 5.77587 6.04982 6.46807 7.09315 7.99355 9.23587 10.9275 13.1712 15.6205 18.0355 20.3345 22.5949 25.8165 34.4458 64.1497 180.354 1067.62 1051.47 177.468 65.3979 35.0536 23.2565 17.4748 14.1344 11.9576 10.4133 9.2562 8.36316 7.66355 7.10608 6.64439 6.24195 5.89468 5.64649 5.55658 5.62504 5.87374 6.24715 6.7243 7.33967 8.18039 9.38836 11.1581 13.3232 15.564 17.6892 19.8256 22.9137 30.8959 59.4441 176.175 1067.08 1051.48 177.772 65.6549 35.0239 22.8479 16.7339 13.187 10.949 9.46916 8.46523 7.77322 7.28786 6.93493 6.65697 6.40503 6.13927 5.83979 5.54629 5.34949 5.34309 5.76716 6.69838 7.98093 9.38919 10.9036 12.8024 15.2506 17.9885 20.6068 22.9429 26.2245 35.4118 66.1653 182.881 1068.69 1051.49 179.589 67.06 35.3121 22.1541 15.482 11.7817 9.64954 8.38558 7.60807 7.10911 6.77967 6.56422 6.43069 6.34873 6.27646 6.1695 6.00224 5.7965 5.55597 5.39043 5.47897 6.07333 7.19771 8.77354 10.7292 13.0635 15.3634 17.651 20.2603 23.9834 32.3851 60.734 177.171 1068.68 1051.54 183.33 68.0909 34.2499 20.5145 14.3602 11.5917 10.3124 9.61574 9.09975 8.60889 8.10008 7.57821 7.06538 6.58357 6.1462 5.75448 5.39876 5.05599 4.70785 4.3539 4.00502 3.6942 3.59071 4.01026 5.02438 6.72801 9.21665 11.7399 13.711 17.2454 28.9755 65.2534 187.271 1069.27 1051.63 173.368 55.5167 25.1321 16.593 14.8249 14.6527 14.4571 13.9751 13.2869 12.4811 11.6172 10.7495 9.93864 9.23387 8.67857 8.31423 8.17955 8.32982 8.69515 9.30379 10.1819 11.3416 12.8065 14.61 16.8115 19.5002 22.8093 27.0186 32.8443 42.0138 58.5255 94.0506 206.095 1070.79 537.597 23.9258 24.0878 24.1452 24.1678 24.1839 24.1939 24.197 24.1941 24.1859 24.1736 24.1578 24.1398 24.1202 24.1 24.08 24.0608 24.043 24.027 24.0115 23.9972 23.9836 23.9704 23.9574 23.9441 23.9301 23.915 23.899 23.8833 23.8713 23.8685 23.8799 23.9075 23.9498 550.385 537.347 23.4094 23.388 23.3733 23.3711 23.3771 23.386 23.3951 23.4034 23.4103 23.4157 23.4197 23.4221 23.4231 23.4225 23.4205 23.4171 23.4122 23.4059 23.3984 23.3895 23.3795 23.3683 23.3562 23.3432 23.3295 23.3154 23.3011 23.2874 23.2755 23.2673 23.2649 23.2679 23.2725 533.338 1051.38 162.877 48.6313 21.2095 12.672 9.49956 8.07886 7.30832 6.82081 6.48025 6.2304 6.04494 5.90994 5.81743 5.76259 5.74233 5.75456 5.7979 5.87145 5.97486 6.10838 6.27314 6.47131 6.70654 6.98567 7.32236 7.74549 8.31909 9.20047 10.8035 14.2958 23.3126 51.1587 163.944 1044.73 1051.45 170.746 55.2157 24.5915 13.4793 8.69069 6.39369 5.18202 4.48455 4.05261 3.77014 3.57927 3.44916 3.36241 3.3088 3.28217 3.27894 3.2973 3.3368 3.39834 3.48425 3.59877 3.74892 3.94618 4.20989 4.5742 5.10248 5.91836 7.27757 9.7473 14.6911 25.8676 56.3436 170.562 1045.91 1051.49 173.24 58.0774 27.3345 15.7148 10.184 7.20786 5.51853 4.53043 3.92089 3.52423 3.25907 3.08007 2.96095 2.88602 2.84584 2.83487 2.85021 2.89106 2.95855 3.05605 3.18981 3.37042 3.61516 3.95243 4.42982 5.12944 6.19808 7.91144 10.8284 16.2322 27.7423 58.361 172.426 1047.04 1051.51 173.945 59.0278 28.7542 17.4066 11.7354 8.41639 6.38033 5.12812 4.35552 3.85697 3.51912 3.28701 3.129 3.02627 2.96757 2.94636 2.95926 3.00535 3.08602 3.20526 3.37051 3.59431 3.89698 4.31127 4.89138 5.73201 6.99127 8.91912 11.9868 17.3587 28.6009 58.9071 172.937 1048.03 1051.53 174.429 59.5639 29.6659 18.7089 13.1261 9.66873 7.41111 5.94641 5.01014 4.39758 3.97704 3.68087 3.47293 3.33214 3.24612 3.20788 3.21389 3.2632 3.35732 3.50033 3.69986 3.96883 4.32848 4.81365 5.4848 6.44587 7.84533 9.89139 12.9882 18.2137 29.1214 59.1696 173.319 1048.92 1051.54 174.727 59.8932 30.2759 19.7024 14.3113 10.8535 8.48259 6.86272 5.77632 5.04413 4.53027 4.1579 3.88795 3.69778 3.57434 3.5104 3.50244 3.54958 3.65348 3.81829 4.05167 4.36666 4.78497 5.34285 6.10866 7.1863 8.69656 10.8108 13.879 18.9122 29.472 59.2862 173.558 1049.71 1051.54 175.063 60.2089 30.7597 20.5066 15.3361 11.9503 9.53275 7.79891 6.57796 5.72535 5.11108 4.65372 4.3129 4.06514 3.89694 3.80087 3.77336 3.81346 3.92291 4.10593 4.37027 4.72921 5.20508 5.83532 6.69327 7.88125 9.49624 11.6725 14.7078 19.5542 29.7793 59.36 173.739 1050.42 1051.55 175.341 60.5139 31.1521 21.1492 16.1949 12.9213 10.5069 8.69548 7.35634 6.38792 5.67366 5.12985 4.71629 4.40937 4.19539 4.06666 4.01933 4.05211 4.16651 4.36646 4.65952 5.0589 5.58722 6.28271 7.22161 8.50553 10.2154 12.4544 15.4734 20.1692 30.1057 59.4935 173.998 1051.07 1051.55 175.575 60.7618 31.4459 21.6447 16.8971 13.7567 11.3779 9.51786 8.07804 6.99452 6.17952 5.55305 5.0713 4.71047 4.45638 4.3008 4.23939 4.26994 4.39352 4.61339 4.93636 5.37498 5.95134 6.70346 7.70767 9.06436 10.8465 13.1371 16.1548 20.7536 30.4786 59.7119 174.304 1051.66 1051.55 175.733 60.9127 31.6252 22.0093 17.4634 14.4622 12.1308 10.2348 8.70479 7.51167 6.60189 5.90161 5.36145 4.95677 4.67238 4.49918 4.43213 4.46774 4.60689 4.85195 5.20869 5.68844 6.31193 7.11561 8.17368 9.58227 11.4077 13.724 16.7372 21.2801 30.8728 59.9987 174.644 1052.21 1051.55 175.89 61.0093 31.7484 22.3014 17.9338 15.0519 12.7557 10.8214 9.20973 7.92421 6.93754 6.17917 5.59471 5.15801 4.85272 4.66906 4.60147 4.6455 4.80261 5.07483 5.46705 5.98935 6.66056 7.5146 8.62235 10.0713 11.9161 14.2278 17.2172 21.7174 31.2276 60.2763 174.949 1052.72 1051.55 176.274 61.1188 31.8388 22.5305 18.3107 15.5194 13.2402 11.2682 9.59574 8.25101 7.2152 6.4171 5.80093 5.3396 5.01637 4.82173 4.75048 4.79792 4.96728 5.26132 5.68482 6.24708 6.9652 7.87016 9.02988 10.5191 12.3726 14.6596 17.6041 22.0552 31.4997 60.48 175.169 1053.21 1051.55 177.924 61.4705 32.0057 22.7556 18.6123 15.8616 13.5842 11.5921 9.8965 8.53413 7.47765 6.65473 6.01374 5.5284 5.18311 4.96992 4.88498 4.92403 5.09288 5.39634 5.84012 6.43377 7.19371 8.15212 9.37069 10.9022 12.7636 15.0197 17.9057 22.289 31.6498 60.5411 175.261 1053.66 1051.54 182.834 62.7299 32.4927 23.0434 18.8459 16.0844 13.8133 11.8357 10.1573 8.80835 7.74918 6.90937 6.24522 5.73297 5.35955 5.11952 5.01018 5.02912 5.18419 5.48344 5.93427 6.54748 7.34006 8.3483 9.62839 11.2087 13.0876 15.3197 18.1445 22.4441 31.6962 60.481 175.284 1054.09 1051.53 184.001 63.3788 32.8626 23.2436 18.9661 16.1947 13.9589 12.0332 10.4001 9.07761 8.02198 7.16897 6.48243 5.94226 5.53859 5.26838 5.13021 5.12358 5.25814 5.54484 5.99279 6.61425 7.42761 8.4745 9.81031 11.4449 13.3563 15.5817 18.354 22.5615 31.6814 60.3492 175.328 1054.51 1051.53 184.186 63.6718 33.0599 23.306 18.9609 16.2029 14.0336 12.1878 10.6151 9.3193 8.26603 7.40176 6.69505 6.13012 5.70061 5.40428 5.24189 5.21478 5.33316 5.6096 6.05411 6.6796 7.50535 8.57681 9.95302 11.6372 13.5906 15.8281 18.5659 22.6893 31.6787 60.2581 175.584 1054.91 1051.52 184.097 63.715 33.0821 23.2342 18.8521 16.1356 14.0552 12.3024 10.7908 9.5102 8.45033 7.57355 6.8493 6.26605 5.81968 5.50908 5.33673 5.30461 5.42269 5.70314 6.15576 6.79246 7.63188 8.71906 10.1176 11.8364 13.8271 16.0853 18.8072 22.871 31.7688 60.3479 176.286 1055.31 1051.52 183.756 63.4791 32.9056 23.0351 18.6593 16.0088 14.0285 12.3695 10.9122 9.63271 8.55185 7.65673 6.91811 6.32633 5.87739 5.57093 5.40978 5.39507 5.53556 5.84176 6.3221 6.98609 7.85009 8.95378 10.3629 12.0984 14.1094 16.3806 19.096 23.1318 32.0061 60.706 177.387 1055.72 1051.52 183.23 62.9642 32.5227 22.7163 18.4061 15.8497 13.967 12.3813 10.9572 9.66874 8.55084 7.63156 6.89112 6.3082 5.8771 5.59675 5.46884 5.49337 5.67752 6.02978 6.55723 7.26662 8.17122 9.30208 10.7232 12.466 14.4789 16.7461 19.4543 23.49 32.4095 61.2868 178.198 1056.14 1051.53 182.653 62.2723 32.0002 22.3378 18.1417 15.6885 13.8819 12.3331 10.91 9.60005 8.45629 7.53335 6.81004 6.25291 5.85452 5.61306 5.52909 5.60232 5.83898 6.24606 6.83055 7.59721 8.55674 9.73181 11.1803 12.9344 14.9421 17.1948 19.8931 23.9461 32.9579 62.0089 178.463 1056.58 1051.54 182.177 61.5864 31.4739 21.984 17.9096 15.5386 13.7729 12.2319 10.8021 9.489 8.35425 7.45301 6.75671 6.22699 5.85677 5.64532 5.59409 5.70411 5.98263 6.43634 7.07259 7.89688 8.918 10.1536 11.6518 13.4327 15.441 17.6778 20.3663 24.4429 33.5592 62.7651 178.678 1057 1051.54 181.914 61.0817 31.0617 21.7003 17.7147 15.3986 13.6627 12.1414 10.7357 9.45697 8.36069 7.48796 6.8076 6.28511 5.91649 5.70445 5.65368 5.76817 6.05811 6.53191 7.19893 8.06774 9.14681 10.4517 12.0231 13.8612 15.8929 18.1262 20.8066 24.8977 34.0923 63.3907 178.892 1057.36 1051.55 182.038 60.9505 30.851 21.5044 17.5648 15.303 13.6237 12.1621 10.8188 9.59985 8.54844 7.69196 7.00395 6.45856 6.05595 5.80345 5.71046 5.78486 6.04125 6.49259 7.15239 8.03485 9.15224 10.5262 12.188 14.1071 16.194 18.4598 21.1591 25.2536 34.4263 63.6379 178.816 1057.61 1051.55 182.812 61.454 30.9839 21.4844 17.5408 15.3351 13.7355 12.3605 11.098 9.94393 8.93201 8.07817 7.3634 6.77128 6.30492 5.97656 5.80092 5.7896 5.96201 6.33771 6.93598 7.77851 8.88733 10.3019 12.0514 14.0685 16.247 18.5966 21.3705 25.5036 34.5821 63.4671 178.424 1057.74 1051.55 184.228 62.7273 31.5984 21.7731 17.7418 15.5526 14.0292 12.7504 11.5736 10.4788 9.4951 8.63319 7.88176 7.23124 6.68523 6.2606 5.97693 5.84811 5.8975 6.15096 6.63209 7.36878 8.39519 9.77975 11.5716 13.6779 15.9721 18.45 21.3575 25.6144 34.7529 63.8268 180.466 1057.73 1051.53 185.925 64.5562 32.6328 22.3328 18.1543 15.9599 14.5063 13.3222 12.2252 11.1724 10.1923 9.3058 8.50901 7.79411 7.16522 6.64206 6.2482 5.99747 5.91512 6.0314 6.37008 6.95919 7.83828 9.09938 10.8316 12.9574 15.3426 17.9564 21.0171 25.4127 34.551 63.5846 183.729 1057.59 1051.51 187.207 66.3759 33.8425 23.0436 18.7197 16.5221 15.1287 14.0275 12.9926 11.951 10.9342 9.99346 9.13439 8.34425 7.63095 7.01742 6.53081 6.18333 5.99914 6.00914 6.23299 6.69204 7.42023 8.51001 10.0782 12.0994 14.4694 17.147 20.3109 24.8039 33.9102 62.5042 182.791 1057.36 1051.49 186.015 66.9623 34.557 23.5722 19.2376 17.1002 15.784 14.7563 13.7593 12.6923 11.5933 10.5582 9.60768 8.72279 7.92184 7.23274 6.68539 6.2894 6.06456 6.03598 6.21497 6.61259 7.25101 8.20654 9.58984 11.411 13.6196 16.2118 19.3691 23.8972 32.9596 61.0938 181.416 1057.14 1051.48 180.18 65.8597 34.4145 23.676 19.5306 17.5546 16.3566 15.3916 14.3865 13.2368 12.0032 10.8257 9.74734 8.75844 7.88696 7.16402 6.61631 6.24699 6.06642 6.0863 6.30659 6.72753 7.35917 8.26191 9.52029 11.1395 13.1106 15.4845 18.4875 22.937 31.9296 59.7305 180.135 1057.02 1051.48 177.852 64.2898 33.6567 23.5019 19.7639 18.0217 16.9043 15.8883 14.734 13.3827 11.9421 10.5799 9.37031 8.3253 7.46452 6.80669 6.36045 6.11616 6.07078 6.2205 6.5548 7.06476 7.75519 8.67072 9.85892 11.3184 13.0636 15.18 17.9365 22.1947 31.0779 58.7611 179.35 1057.06 1051.48 177.565 63.5 33.2338 23.6855 20.2495 18.5251 17.2311 15.9155 14.424 12.7762 11.1283 9.67639 8.48898 7.54979 6.84846 6.37729 6.12549 6.07601 6.21869 6.53981 7.02129 7.64786 8.42061 9.36937 10.5162 11.856 13.4128 15.2899 17.789 21.8231 30.5886 58.3481 179.275 1057.31 1051.49 182.539 63.2648 33.1411 24.0695 20.5459 18.4839 16.7559 15.0108 13.1929 11.3959 9.79706 8.53289 7.57711 6.87387 6.40385 6.15316 6.10904 6.25693 6.58627 7.07603 7.70009 8.44094 9.29816 10.2879 11.414 12.6636 14.0656 15.7412 18.0268 21.8906 30.6279 58.756 180.259 1057.82 1051.49 182.059 62.4349 33.0003 24.0027 20.0589 17.5213 15.4067 13.4419 11.6065 9.98932 8.70127 7.73285 7.01807 6.52479 6.24185 6.16578 6.28965 6.60391 7.10002 7.75022 8.51862 9.38323 10.3463 11.4079 12.5387 13.7158 14.9846 16.4988 18.6461 22.4747 31.4341 60.3838 182.579 1058.64 1051.49 181.19 61.5461 32.5195 23.2245 18.8525 16.0479 13.8746 12.0368 10.4539 9.13849 8.1205 7.35371 6.78945 6.41853 6.24457 6.27713 6.51748 6.96292 7.60942 8.42348 9.35988 10.3826 11.4996 12.6923 13.8699 14.9898 16.1291 17.4951 19.544 23.4336 32.891 63.2645 186.224 1059.68 1051.48 180.398 60.6831 31.6564 22.0087 17.4715 14.7288 12.7615 11.1964 9.88706 8.79523 7.92958 7.2614 6.76166 6.43346 6.29281 6.36222 6.6557 7.18305 7.95103 8.92722 10.059 11.2986 12.6416 14.0284 15.3103 16.4088 17.4278 18.6474 20.581 24.431 34.0569 64.4897 182.209 1060.73 1051.48 179.968 60.0088 30.7317 20.9332 16.4568 13.9016 12.1768 10.853 9.75095 8.80828 8.02177 7.38549 6.8863 6.53122 6.34569 6.36391 6.61668 7.13327 7.94326 9.03555 10.3656 11.8907 13.5648 15.247 16.7222 17.8465 18.7086 19.7132 21.4753 25.2315 34.9816 65.6603 181.849 1061.55 1051.48 180.197 59.8806 30.2174 20.3468 15.9684 13.5786 12.0391 10.8901 9.93531 9.09658 8.35686 7.7187 7.17938 6.74824 6.45579 6.34284 6.45194 6.82814 7.5283 8.58295 9.99424 11.7652 13.8491 16.0467 18.0134 19.4536 20.2518 20.828 22.0635 25.4623 35.185 65.9575 181.751 1062 1051.49 181.128 60.5043 30.3213 20.3242 15.9916 13.6808 12.2384 11.1979 10.3435 9.57988 8.87614 8.22932 7.64023 7.12125 6.70502 6.43492 6.35637 6.51384 6.96712 7.78367 8.99312 10.6519 12.9113 15.6258 18.3694 20.6932 22.1656 22.7623 23.3235 25.7288 34.7617 65.327 180.963 1062.11 1051.49 182.687 61.9402 31.0709 20.7753 16.3781 14.0826 12.6925 11.727 10.9512 10.2449 9.55953 8.89067 8.24435 7.63525 7.10018 6.68562 6.43744 6.39041 6.58607 7.07079 7.90414 9.15931 11.0026 13.6037 16.7417 19.9697 22.7205 24.4967 25.4541 27.1266 34.6043 64.0748 179.659 1061.8 1051.48 184.193 63.5737 32.0339 21.4133 16.9568 14.6914 13.3637 12.4782 11.7801 11.1132 10.4043 9.66913 8.93323 8.21356 7.55683 7.01712 6.64328 6.462 6.49972 6.77926 7.32192 8.16981 9.43098 11.2976 13.8869 17.0816 20.5466 23.7548 26.2884 28.814 35.5725 63.2832 178.062 1060.97 1051.48 184.975 64.8103 32.9396 22.1149 17.6427 15.4116 14.1515 13.3631 12.7623 12.1386 11.3771 10.5024 9.59329 8.71315 7.91798 7.27196 6.82368 6.58793 6.57413 6.78292 7.20598 7.84681 8.74994 10.0273 11.8116 14.1935 17.2106 20.7417 24.5005 28.6782 36.3887 63.8567 184.009 1059.78 1051.48 184.73 65.1091 33.2905 22.4264 18.0307 15.9659 14.9334 14.3756 13.9193 13.2673 12.3163 11.1522 9.93997 8.84368 7.92992 7.24777 6.82305 6.6445 6.69688 6.95659 7.39331 7.98595 8.74198 9.71702 10.9938 12.6684 14.89 17.8376 21.6834 26.8699 35.997 63.7048 183.678 1058.65 1051.5 183.143 63.7133 32.3576 21.9856 18.1622 16.652 16.0686 15.7288 15.1327 14.0454 12.5791 10.9604 9.48807 8.32653 7.48103 6.9438 6.69296 6.68888 6.89762 7.2802 7.79609 8.41395 9.12303 9.94632 10.9452 12.2091 13.8711 16.1619 19.4907 24.7327 34.7294 63.2431 183.222 1057.91 1051.53 181.159 61.3327 30.7534 21.592 18.7202 17.7729 17.292 16.5436 15.2207 13.4305 11.5021 9.77167 8.47511 7.58876 7.03111 6.76417 6.7485 6.94392 7.31781 7.82809 8.43204 9.0956 9.80571 10.57 11.4242 12.4559 13.8083 15.7123 18.6267 23.6238 33.9361 63.4338 183.971 1057.62 1051.58 180.996 60.2945 30.2399 21.9894 19.5282 18.502 17.4881 15.9921 14.0737 12.0539 10.2633 8.89833 7.95256 7.32782 6.96958 6.85856 6.97398 7.29251 7.7921 8.43009 9.15642 9.92512 10.712 11.5195 12.3716 13.3435 14.5774 16.3105 19.0124 23.8329 34.3069 64.583 185.126 1057.87 1051.59 181.892 60.5733 30.7072 22.7266 20.1284 18.6183 16.9715 15.0239 13.0276 11.2434 9.80141 8.7206 7.93048 7.36242 7.00211 6.8612 6.94903 7.2674 7.81542 8.56225 9.455 10.4283 11.4164 12.3907 13.3529 14.3756 15.6391 17.4166 20.1475 24.8496 35.0186 65.2413 185.703 1058.58 1051.59 182.943 61.6748 31.787 23.5297 20.3486 18.1601 16.0613 14.0671 12.3312 10.9067 9.7695 8.86765 8.14247 7.55627 7.10936 6.82998 6.75255 6.90618 7.32283 8.00742 8.9396 10.104 11.4473 12.8102 14.0332 15.1301 16.3415 18.0642 20.865 25.8235 36.2413 66.1344 185.445 1059.38 1051.55 185.484 64.2345 33.2473 23.7862 19.6853 17.0507 15.0059 13.3573 12.0299 10.9585 10.0686 9.30194 8.63077 8.03696 7.51195 7.07654 6.77347 6.6429 6.73738 7.11356 7.79676 8.75986 10.0568 11.7425 13.5164 15.0764 16.4266 17.9078 20.2041 24.6368 34.7946 64.7294 184.255 1059.27 1051.51 187.442 67.164 35.0546 24.2574 19.5493 16.8315 14.9883 13.6317 12.5697 11.6747 10.8609 10.0914 9.36421 8.67974 8.04012 7.47503 7.02883 6.73125 6.6205 6.74718 7.15365 7.87861 8.95684 10.4514 12.362 14.38 16.2383 17.9788 20.1111 23.9258 33.0592 61.9995 182.494 1059.24 1051.48 182.024 67.0663 35.5561 24.3647 19.6207 17.1532 15.6192 14.5136 13.5887 12.6955 11.7792 10.8618 9.97968 9.14562 8.36786 7.68822 7.15223 6.78173 6.60122 6.64367 6.93171 7.49468 8.40032 9.73609 11.5216 13.6402 15.8145 17.9078 20.1839 23.7537 32.0742 59.5579 180.093 1059.18 1051.47 178.7 65.8 35.0145 24.2365 20.0079 17.9894 16.7218 15.694 14.6567 13.4938 12.2713 11.0968 10.0136 9.02887 8.16746 7.46845 6.96331 6.65542 6.54911 6.6513 6.96286 7.49933 8.326 9.52796 11.1216 13.0644 15.2353 17.4939 19.9238 23.4045 31.1716 57.2927 177.407 1058.89 1051.45 177.011 64.5475 34.6983 24.6276 20.8184 18.9117 17.537 16.2401 14.8247 13.2714 11.737 10.3644 9.17942 8.18431 7.40534 6.8559 6.53369 6.419 6.49749 6.75513 7.17898 7.78793 8.64063 9.78568 11.2492 13.0354 15.1081 17.3873 19.9027 23.3712 30.8374 56.1453 176.17 1058.73 1051.45 177.543 64.7613 35.075 25.3455 21.4126 19.0724 17.1548 15.2863 13.3832 11.5553 9.9863 8.72946 7.76202 7.06872 6.62898 6.41731 6.40224 6.55189 6.84565 7.26241 7.78679 8.42935 9.24395 10.2978 11.6321 13.2636 15.1834 17.3645 19.8564 23.2719 30.4535 55.0378 175.074 1058.85 1051.45 182.418 64.2342 34.8372 25.225 20.6849 17.6412 15.1201 12.863 10.8978 9.35138 8.21478 7.40777 6.87964 6.59349 6.51949 6.62625 6.87106 7.22137 7.66284 8.17788 8.75957 9.41648 10.1984 11.1869 12.4425 13.982 15.7937 17.8627 20.2632 23.6597 31.0283 56.5481 178.473 1059.57 1051.45 181.356 62.9596 34.0361 23.8557 18.6037 15.1565 12.5895 10.6118 9.14271 8.1118 7.41147 6.96807 6.74771 6.73114 6.89956 7.21801 7.63545 8.1241 8.673 9.26335 9.89208 10.5764 11.3701 12.3503 13.5849 15.0927 16.8622 18.9155 21.3616 24.9296 32.9669 60.8378 185.372 1060.8 1051.44 179.666 61.2058 32.0714 21.4511 16.2223 13.1327 11.0656 9.5874 8.52018 7.77581 7.27841 6.98856 6.90199 7.02267 7.34278 7.82334 8.40354 9.05156 9.74848 10.4605 11.1755 11.9174 12.767 13.8308 15.172 16.7131 18.2893 20.0359 22.492 26.697 36.1474 66.8845 191.844 1061.9 1051.45 177.792 58.8121 29.5468 19.279 14.6432 12.1252 10.5205 9.36943 8.50146 7.85777 7.39658 7.10658 7.01131 7.14184 7.51463 8.10393 8.84204 9.68247 10.5894 11.4969 12.3537 13.1532 13.9828 15.0393 16.5093 18.4281 20.4703 22.1386 23.8639 27.5759 37.8216 70.3446 193.596 1062.81 1051.46 178.353 58.2029 28.4071 18.3709 14.1189 11.9441 10.6145 9.66738 8.93185 8.331 7.82909 7.43085 7.17205 7.10644 7.29217 7.76694 8.50399 9.4509 10.6125 11.9718 13.3547 14.4926 15.2955 15.9847 16.8813 18.2639 20.1956 22.4182 24.7536 28.2591 37.6071 68.2531 183.337 1063.66 1051.45 180.824 59.9262 29.2485 18.9614 14.6725 12.5099 11.2293 10.3621 9.70459 9.15277 8.64888 8.1717 7.73874 7.39681 7.2156 7.28105 7.66729 8.40137 9.44572 10.7839 12.5605 14.6515 16.4344 17.6586 18.4563 18.9756 19.6701 21.1586 23.6801 27.9192 37.9438 68.4121 182.825 1063.82 1051.44 182.735 62.2447 30.9135 20.2022 15.7272 13.5098 12.2408 11.4165 10.803 10.2662 9.72806 9.16504 8.59689 8.05813 7.60414 7.31033 7.25411 7.51211 8.18187 9.25447 10.6807 12.6386 15.1105 17.496 19.3775 20.5931 20.9866 21.2132 22.4279 26.0648 36.0805 66.5594 181.751 1063.51 1051.43 183.814 63.8011 32.3691 21.7542 17.3295 15.0364 13.6637 12.755 12.0585 11.4047 10.7043 9.96019 9.20765 8.48228 7.85441 7.396 7.1661 7.2055 7.56894 8.33186 9.51386 11.132 13.3925 16.1821 18.9247 21.2481 22.5759 22.7659 22.945 25.2106 34.2223 64.6834 180.947 1063.39 1051.43 183.796 65.1669 34.263 23.4065 18.559 16.0059 14.5616 13.6733 12.9812 12.2193 11.2815 10.2595 9.26029 8.361 7.64003 7.15387 6.92781 6.96066 7.25649 7.83204 8.74445 10.083 11.9554 14.4431 17.4036 20.5189 23.1193 24.4389 24.7071 25.9143 33.329 63.3499 181.024 1063.26 1051.44 183.06 65.124 34.1721 23.1206 18.4939 16.3499 15.2414 14.4399 13.4935 12.2264 10.7913 9.45843 8.34332 7.48217 6.90452 6.60628 6.56053 6.73294 7.10246 7.65651 8.41169 9.4491 10.8907 12.8504 15.4382 18.6317 22.0618 24.9152 26.5416 27.9656 34.2123 62.8887 180.338 1062.78 1051.48 179.934 60.5393 30.47 21.0995 17.6948 16.1407 15.021 13.7171 12.0929 10.3904 8.95311 7.86821 7.10295 6.63569 6.43088 6.44793 6.64079 6.97341 7.4273 7.98559 8.64828 9.44123 10.4493 11.8073 13.6536 16.1268 19.2566 22.7272 25.8929 28.9133 35.713 64.169 186.919 1061.61 1051.52 178.772 58.1521 29.2387 20.9615 17.8977 16.1366 14.4683 12.6174 10.7784 9.24856 8.10905 7.30101 6.77712 6.50296 6.44903 6.58595 6.87591 7.29103 7.81612 8.4261 9.10617 9.86097 10.7383 11.818 13.185 14.9534 17.2784 20.2579 23.8394 28.3047 36.8012 65.9641 188.491 1060.63 1051.54 178.408 57.8727 29.7836 21.7192 18.3534 16.0776 13.9598 11.9314 10.1743 8.82703 7.85384 7.17355 6.74235 6.53379 6.53079 6.71648 7.0628 7.5475 8.15892 8.86566 9.63802 10.4579 11.3496 12.3591 13.5125 14.8623 16.5547 18.8469 22.1379 27.2605 37.3901 67.9239 189.855 1060.2 1051.56 176.728 56.6084 29.4316 21.4799 17.8737 15.3696 13.2331 11.3854 9.86404 8.68947 7.84214 7.24591 6.84796 6.63737 6.61431 6.77907 7.12025 7.62989 8.30554 9.12009 10.0412 11.039 12.1148 13.3039 14.6214 16.0718 17.7039 19.6413 22.2897 26.9055 37.4533 69.0341 188.887 1060.84 1051.58 178.642 57.7719 29.7148 21.1913 17.2748 14.7002 12.7018 11.0987 9.82586 8.84314 8.08893 7.4971 7.03991 6.72309 6.56438 6.58596 6.80316 7.22778 7.87671 8.74319 9.805 11.0291 12.375 13.8092 15.2725 16.7695 18.4631 20.5951 23.4473 27.8773 37.7176 67.8297 182.404 1062 1051.57 182.311 60.8068 31.0429 21.4474 17.0678 14.478 12.6877 11.3351 10.2873 9.46564 8.80555 8.25389 7.77139 7.34402 6.98439 6.73212 6.63637 6.73557 7.06914 7.66645 8.54396 9.7413 11.2872 13.0479 14.8366 16.5265 18.1435 19.9293 22.3876 26.6435 36.4796 66.0313 179.705 1061.55 1051.54 185.284 64.2482 32.9354 22.4257 17.7612 15.1233 13.333 12.006 11.0286 10.3185 9.7686 9.27766 8.78973 8.2874 7.78184 7.32503 6.98162 6.79836 6.81788 7.07762 7.6009 8.41953 9.62393 11.2784 13.2406 15.3087 17.3418 19.3495 21.6531 25.3331 34.2073 63.5599 179.859 1060.97 1051.51 186.022 66.0493 34.1127 23.0959 18.3427 15.6812 13.9017 12.6775 11.8608 11.288 10.7956 10.2851 9.73132 9.13168 8.50764 7.91591 7.42677 7.0894 6.9457 7.03203 7.35956 7.93662 8.81357 10.0836 11.7674 13.7829 16.0277 18.4435 21.1552 24.9623 33.2106 61.438 182.784 1060.61 1051.51 185.883 66.4974 34.7202 23.7728 18.9666 16.1971 14.4816 13.464 12.8484 12.3861 11.9008 11.3085 10.6021 9.80873 8.99438 8.24014 7.63693 7.23537 7.06513 7.14112 7.44953 7.97493 8.7333 9.78243 11.1607 12.861 14.893 17.3087 20.2886 24.5695 33.2119 60.9081 182.406 1059.98 1051.52 178.208 65.1426 34.6622 23.713 18.8367 16.3246 14.9865 14.3059 13.9778 13.6927 13.1689 12.3175 11.2025 10.028 8.95261 8.05873 7.43437 7.09979 7.04542 7.24407 7.65227 8.23685 9.00261 9.98155 11.184 12.6244 14.375 16.5898 19.5873 24.2207 33.5275 61.6394 182.963 1059.29 1051.53 182.778 66.9047 35.3575 23.8085 18.9589 16.8389 16.0392 15.8789 15.7467 15.1087 13.8849 12.2776 10.6394 9.21479 8.08967 7.32313 6.92592 6.84786 7.03259 7.42168 7.96134 8.61566 9.3847 10.2877 11.3321 12.5477 14.0298 15.9747 18.7851 23.4489 33.077 61.4054 182.247 1058.61 1051.54 184.896 65.8844 34.1895 23.2613 19.2993 18.0031 17.7238 17.4837 16.5765 14.8968 12.792 10.7709 9.13784 7.93032 7.14468 6.75137 6.68491 6.87208 7.2584 7.78985 8.41938 9.11338 9.86373 10.6794 11.5701 12.5742 13.7992 15.4639 18.0159 22.525 32.2262 60.873 181.798 1058.25 1051.56 183.06 63.5392 32.5636 22.9995 20.127 19.2917 18.6952 17.4593 15.431 13.0078 10.7493 9.03274 7.84964 7.08978 6.68938 6.59442 6.74938 7.10346 7.62216 8.26108 8.97675 9.73225 10.5085 11.2938 12.0863 12.9359 13.9709 15.4292 17.7804 22.132 31.8629 61.0768 182.393 1058.49 1051.58 181.929 61.8577 31.8647 23.6283 21.1788 19.8282 18.113 15.8172 13.3065 11.0359 9.29895 8.09193 7.28388 6.79236 6.57853 6.61573 6.87071 7.30993 7.91261 8.64312 9.46308 10.3387 11.2295 12.0743 12.8522 13.6263 14.5504 15.8869 18.1154 22.3522 32.0942 61.7845 183.344 1059.27 1051.6 180.954 60.7744 31.9872 24.2679 21.2232 18.8251 16.3048 13.8331 11.6652 9.92896 8.65323 7.74418 7.11009 6.72169 6.57157 6.65363 6.94735 7.42765 8.07254 8.86031 9.78468 10.814 11.879 12.8558 13.7062 14.4849 15.3505 16.5786 18.6641 22.7299 32.3052 62.0814 183.684 1060.22 1051.61 180.805 60.6584 32.2553 23.9827 20.0952 17.2361 14.8147 12.7786 11.0877 9.70389 8.62435 7.79856 7.18523 6.78912 6.62147 6.68793 6.97635 7.46229 8.11369 8.91093 9.90046 11.0788 12.3239 13.4846 14.4932 15.3784 16.2724 17.443 19.3835 23.2117 32.4882 62.1463 183.915 1061.06 1051.6 181.709 61.5297 32.5093 23.441 19.2174 16.5264 14.5054 12.8299 11.3476 10.0302 8.92922 8.0433 7.36084 6.90184 6.68346 6.71472 6.98644 7.4715 8.12654 8.92309 9.92197 11.1711 12.5525 13.8763 15.0567 16.1051 17.1089 18.2993 20.1495 23.7656 32.6948 62.092 184.108 1061.63 1051.58 183.077 62.8981 33.0191 23.472 19.3132 16.9118 15.138 13.5462 11.9983 10.5444 9.29939 8.28907 7.51147 6.98593 6.7258 6.73722 7.00875 7.50598 8.17397 8.98155 9.98408 11.2532 12.7062 14.1192 15.412 16.5902 17.7209 19.003 20.8829 24.4362 33.1472 62.317 184.679 1061.91 1051.57 183.62 63.7401 33.571 24.0542 20.1409 17.9 16.0962 14.3174 12.5269 10.8641 9.47073 8.3633 7.5302 6.98169 6.72459 6.76072 7.07443 7.61397 8.31121 9.1474 10.1699 11.4528 12.9283 14.3655 15.6849 16.9005 18.0875 19.4392 21.3888 24.9942 33.6802 62.7206 185.484 1061.81 1051.56 183.211 63.7952 33.9999 24.8304 21.0242 18.6234 16.5241 14.4668 12.4987 10.7598 9.3455 8.24172 7.42868 6.91379 6.70323 6.79838 7.18169 7.77988 8.51579 9.3949 10.4558 11.7739 13.2815 14.7308 16.0369 17.2205 18.3771 19.7256 21.7212 25.4389 34.2945 63.4196 186.348 1061.48 1051.54 182.868 63.7361 34.3576 25.2772 21.2232 18.5073 16.2078 14.1003 12.177 10.5163 9.16666 8.1083 7.33402 6.85756 6.68696 6.82419 7.24744 7.87267 8.63328 9.54393 10.6418 12.0012 13.5591 15.0612 16.3988 17.5772 18.6926 19.9969 21.9952 25.7941 34.7622 63.7305 186.266 1060.99 1051.52 182.841 63.8558 34.5367 25.2026 20.9078 18.1308 15.8974 13.8779 12.0169 10.4066 9.08502 8.03893 7.27937 6.81897 6.65907 6.79518 7.20484 7.81297 8.56232 9.46953 10.5774 11.951 13.537 15.1079 16.5265 17.7595 18.852 20.0415 21.881 25.5429 34.3835 62.8621 184.656 1060.42 1051.5 182.893 64.0855 34.7189 25.2248 20.9101 18.1841 15.9604 13.8883 11.9741 10.3356 9.00133 7.96287 7.22659 6.79046 6.64197 6.76447 7.13479 7.70116 8.41348 9.29131 10.3789 11.7241 13.2994 14.9154 16.4317 17.8009 19.0129 20.2085 21.8718 25.1712 33.502 61.3117 182.764 1060.17 1051.49 183.012 64.4803 35.1914 25.6928 21.3311 18.4621 16.0236 13.7551 11.7455 10.0887 8.77913 7.79829 7.13195 6.76233 6.66667 6.81749 7.17752 7.70984 8.38885 9.21973 10.2557 11.5487 13.0816 14.6958 16.2574 17.708 19.0418 20.3759 22.1064 25.2739 33.1141 60.0423 181.452 1060.17 1051.48 182.836 64.6737 35.7103 26.2216 21.5986 18.3796 15.6556 13.2414 11.2154 9.61949 8.40926 7.54269 6.99069 6.72886 6.73243 6.96855 7.38569 7.94288 8.62646 9.43538 10.4265 11.6522 13.0915 14.6672 16.2598 17.7431 19.039 20.2499 21.8235 24.8525 32.5823 59.3804 181.212 1060.36 1051.48 181.899 64.14 35.5817 25.8927 20.9001 17.426 14.6282 12.2918 10.4179 9.00288 7.97251 7.26568 6.85412 6.7197 6.84367 7.19299 7.70793 8.34047 9.08688 9.9416 10.9111 12.0496 13.3981 14.9348 16.5809 18.2082 19.6571 20.9042 22.3538 25.209 33.053 60.9148 184.325 1061.2 1051.49 181.062 63.2357 34.6454 24.6739 19.5249 16.0866 13.4777 11.4149 9.81063 8.61035 7.73634 7.14292 6.82065 6.76632 6.97126 7.406 7.9992 8.69819 9.52124 10.4623 11.4881 12.6214 13.903 15.3506 16.9563 18.6662 20.3193 21.8682 23.6955 26.9706 35.3516 64.5349 188.926 1061.75 1051.49 182.29 63.7651 34.3495 23.9182 18.6691 15.3569 12.9724 11.1404 9.71745 8.61557 7.77999 7.19823 6.87305 6.80917 7.00747 7.45284 8.07296 8.80732 9.68354 10.7132 11.8613 13.0855 14.3726 15.7277 17.2269 18.939 20.678 22.2569 24.0851 27.6376 36.8371 67.1014 190.664 1061.94 1051.48 183.808 64.5857 34.2453 23.5704 18.4693 15.3835 13.1823 11.4683 10.0841 8.96622 8.0971 7.46897 7.0782 6.92574 7.01547 7.34937 7.89689 8.60532 9.46645 10.5071 11.7534 13.1391 14.5285 15.8643 17.2553 18.9269 20.9495 23.1739 25.4585 28.6718 37.0751 67.1937 189.554 1063.33 1051.46 183.985 64.8319 34.4009 23.965 19.1096 16.1009 13.8682 12.0821 10.6372 9.4878 8.59906 7.94124 7.49555 7.25377 7.21288 7.37603 7.7446 8.32562 9.10832 10.0721 11.2753 12.7149 14.2292 15.6731 16.9988 18.2981 19.741 21.6642 24.4125 28.4755 36.5828 64.5298 184.551 1064.26 1051.45 184.718 65.9738 35.6067 25.2164 20.2665 17.0427 14.6087 12.7041 11.2168 10.0644 9.18004 8.51701 8.0533 7.77679 7.67993 7.75755 7.99637 8.39691 9.00329 9.85523 10.9151 12.1109 13.3873 14.7252 16.1035 17.4727 18.7421 19.9967 21.7234 25.0045 32.7974 59.0973 178.761 1063.56 1051.44 185.431 67.3709 37.1734 26.5086 21.1037 17.5173 14.9068 12.9696 11.5189 10.4183 9.57652 8.94615 8.51236 8.27489 8.2409 8.40978 8.75508 9.24779 9.88441 10.676 11.613 12.6421 13.7094 14.8031 15.9647 17.2577 18.6714 20.1531 21.8423 24.6168 31.7695 58.5264 181.53 1062.57 1051.43 184.579 67.4089 37.4373 26.1821 20.222 16.474 13.9936 12.2986 11.0834 10.1696 9.47925 8.99881 8.74516 8.74564 9.02039 9.55619 10.2936 11.1558 12.0654 12.9699 13.822 14.5504 15.1388 15.6413 16.1517 16.7768 17.6162 18.8166 20.7127 24.3226 33.2774 63.2697 189.185 1061.34 1051.44 181.475 63.6854 33.3936 22.0984 16.7455 13.9386 12.3442 11.2903 10.4394 9.72791 9.23934 9.0341 9.14589 9.5809 10.3015 11.2339 12.2822 13.3496 14.3334 15.1358 15.7061 16.029 16.2149 16.4709 16.9342 17.634 18.5248 19.7723 22.0024 26.775 38.4627 72.7458 198.595 1061.56 1051.48 180.138 60.3356 29.9715 19.5965 15.2613 13.1564 11.9357 11.0344 10.2372 9.54739 9.08251 8.91787 9.08574 9.60192 10.4444 11.5564 12.8649 14.2938 15.7316 17.0195 18.006 18.4763 18.344 17.9512 17.8553 18.4956 20.0542 22.4139 25.6666 31.1153 43.5417 78.1197 199.609 1063.24 1051.47 184.542 64.4019 32.6777 21.4719 16.7023 14.3202 12.8581 11.7474 10.7829 9.88297 9.0535 8.40466 8.02891 8.00449 8.41741 9.26107 10.4365 11.9364 13.8142 15.9826 18.1037 19.8698 21.0831 21.6135 21.514 20.9594 20.5406 21.4081 24.4961 30.6068 42.8114 74.4576 189.35 1064.87 1051.45 186.279 66.8729 34.5359 23.0469 18.3021 15.5904 13.6722 12.3968 11.5852 10.936 10.2315 9.44594 8.65737 7.95081 7.43755 7.2617 7.54202 8.28362 9.40896 11.0434 13.2786 15.9914 18.7267 21.0752 23.0084 24.3814 24.8396 24.2739 24.0174 26.6957 37.1133 67.3881 180.348 1066.19 1051.43 183.502 64.3974 33.184 22.2703 17.1955 14.4496 13.2352 12.9064 12.8137 12.4284 11.5859 10.5472 9.55271 8.66571 7.92245 7.37834 7.07507 7.04704 7.3605 8.06784 9.1793 10.7815 13.0775 16.0033 19.044 22.043 24.5713 25.982 26.2665 26.8872 33.277 61.702 176.961 1066.58 1051.46 178.97 60.3606 29.9457 19.5668 15.817 14.7368 14.6182 14.5537 14.0348 12.9663 11.6299 10.3441 9.22981 8.30079 7.57497 7.0758 6.80932 6.76129 6.92346 7.30069 7.93234 8.88774 10.2203 11.9919 14.2192 16.8642 19.7791 22.6915 25.3674 28.3209 35.2465 62.8356 181.114 1063.81 1051.49 180.382 61.2888 30.4699 20.7764 17.8314 16.8096 16.0354 14.9523 13.5327 12.0156 10.613 9.40357 8.41692 7.6606 7.12268 6.79044 6.64957 6.67911 6.86582 7.2024 7.70087 8.38627 9.25867 10.3226 11.6218 13.2418 15.2908 17.8918 21.2731 26.1726 35.5425 63.6209 183.029 1059.65 1051.5 182.881 63.7103 33.1198 23.6694 20.1186 17.9416 15.9659 14.0327 12.2592 10.726 9.45237 8.4384 7.67222 7.13639 6.80512 6.65315 6.65607 6.79166 7.04669 7.41368 7.90613 8.53135 9.25615 10.0503 10.9215 11.9354 13.2291 15.0425 17.8348 22.6814 32.7914 61.6196 181.247 1057.08 1051.49 183.158 65.0588 35.358 25.4586 20.5957 17.1852 14.4705 12.2903 10.576 9.26131 8.28085 7.57676 7.10364 6.82851 6.72363 6.76227 6.91456 7.16041 7.48924 7.89 8.37268 8.94624 9.58498 10.2483 10.9087 11.5947 12.4228 13.6371 15.7244 19.8032 29.1963 57.4758 177.507 1056.12 1051.47 182.708 65.3743 35.5288 24.3836 18.4682 14.6725 12.0814 10.279 9.01677 8.13619 7.53742 7.15938 6.96521 6.93007 7.0293 7.23191 7.50387 7.83196 8.21363 8.64318 9.12411 9.67768 10.316 10.9861 11.5972 12.1245 12.6815 13.5192 15.11 18.5789 27.491 56.2537 178.065 1056.64 1051.48 181.916 63.5413 32.809 21.2547 15.601 12.3928 10.4091 9.1094 8.2284 7.63215 7.25486 7.06611 7.05175 7.19857 7.47964 7.85062 8.26649 8.71296 9.18546 9.6811 10.2176 10.8307 11.5777 12.4582 13.2904 13.8731 14.3171 15.0063 16.5194 20.087 29.5413 59.8639 182.987 1057.85 1051.5 181.583 61.9658 30.9695 19.7288 14.5268 11.6899 9.95595 8.80505 8.00066 7.43431 7.0635 6.88186 6.90042 7.13 7.55775 8.13067 8.77694 9.46279 10.1633 10.84 11.4812 12.1222 12.8771 13.8864 15.139 16.2645 16.9413 17.5736 19.1117 23.1073 33.5651 65.279 187.832 1059.62 1051.51 181.044 61.0905 30.2221 19.2406 14.2685 11.6025 9.98282 8.89477 8.10424 7.50481 7.05901 6.77149 6.67271 6.80345 7.19086 7.81705 8.5978 9.50167 10.5313 11.6168 12.6632 13.5445 14.2862 15.1058 16.2096 17.6072 18.9355 19.923 21.2703 24.8985 35.2689 67.1462 188.784 1062.13 1051.51 180.745 60.7388 29.9415 19.1266 14.3197 11.7896 10.2721 9.24905 8.48071 7.85334 7.32294 6.89147 6.59403 6.48845 6.6394 7.09397 7.80101 8.68181 9.75834 11.0589 12.5996 14.1199 15.3436 16.2975 17.1884 18.1776 19.3612 20.6724 22.1951 25.3972 35.0662 65.4658 180.453 1064.07 1051.52 181.104 60.9858 30.0564 19.3121 14.628 12.2093 10.7814 9.82274 9.08786 8.45532 7.872 7.33041 6.85686 6.5027 6.3332 6.41729 6.81617 7.51275 8.44203 9.61535 11.0852 12.9141 14.9356 16.7322 18.1783 19.2799 20.097 20.9802 22.3766 25.3883 34.503 64.6683 180.202 1064.83 1051.52 181.838 61.6991 30.5429 19.7897 15.18 12.8398 11.4794 10.5685 9.85225 9.20172 8.56092 7.92359 7.3187 6.79622 6.41234 6.22049 6.27702 6.64652 7.33948 8.27173 9.46879 11.0153 12.9914 15.3352 17.7068 19.7018 21.0854 21.9673 22.9599 25.3574 33.2616 62.3493 178.543 1064.76 1051.52 182.945 62.8927 31.3974 20.5186 15.9323 13.6525 12.3519 11.4747 10.7458 10.0294 9.27789 8.5035 7.75327 7.0853 6.55484 6.20413 6.07237 6.1987 6.64496 7.39708 8.36787 9.63399 11.2819 13.399 15.9991 18.6618 20.916 22.5495 23.8468 26.0934 33.3469 62.1811 184.891 1064.14 1051.51 183.604 63.7866 32.1056 21.1691 16.6895 14.5525 13.3563 12.5014 11.6925 10.8113 9.85763 8.88693 7.97038 7.17175 6.54336 6.11834 5.91873 5.95986 6.27266 6.87271 7.71109 8.79215 10.2052 12.0371 14.3836 17.0812 19.7655 22.1632 24.2507 27.019 34.316 62.5387 185.569 1063.41 1051.5 183.329 63.8932 32.3594 21.598 17.4153 15.5159 14.4052 13.4649 12.4196 11.2237 9.98654 8.8187 7.78383 6.9319 6.29642 5.8954 5.72937 5.79207 6.09207 6.63645 7.39588 8.36977 9.63593 11.2763 13.3407 15.729 18.3488 21.067 23.8237 27.3436 35.1061 62.9844 185.598 1062.75 1051.51 182.751 63.573 32.4054 22.1083 18.2542 16.4103 15.1185 13.8348 12.3983 10.8799 9.45924 8.23649 7.23339 6.46482 5.93535 5.64397 5.57763 5.71922 6.06844 6.61884 7.34376 8.26388 9.45253 10.9512 12.7361 14.7821 17.123 19.7722 22.7977 26.8638 35.1637 63.0111 185.128 1062.15 1051.52 182.42 63.2963 32.599 22.7522 18.9299 16.7887 15.0378 13.2927 11.5373 9.91247 8.55001 7.46518 6.62983 6.02887 5.65255 5.49529 5.5424 5.77464 6.19101 6.7725 7.49413 8.39733 9.5414 10.9079 12.4548 14.2048 16.2219 18.6073 21.5737 25.8729 34.5924 62.6077 184.33 1061.57 1051.52 182.219 63.1395 32.8824 23.1475 18.9615 16.3007 14.0945 12.099 10.337 8.88483 7.74552 6.86549 6.20683 5.75481 5.50785 5.46848 5.62157 5.94527 6.4361 7.06131 7.80547 8.72274 9.83573 11.0917 12.4643 13.9722 15.6876 17.7548 20.4869 24.7605 33.713 62.0048 183.572 1061.14 1051.51 182.143 63.1063 32.9932 22.9561 18.2566 15.2132 12.8692 10.9612 9.41558 8.20225 7.25621 6.51824 5.96921 5.6106 5.45546 5.51551 5.77153 6.19393 6.76023 7.42962 8.22211 9.1745 10.2757 11.4695 12.724 14.051 15.5222 17.2989 19.7511 23.859 32.8894 61.5008 183.121 1061 1051.51 182.105 63.0236 32.7521 22.322 17.3205 14.2064 11.9778 10.2705 8.92582 7.86152 7.01122 6.33631 5.83476 5.52372 5.42971 5.57382 5.93363 6.45185 7.08819 7.82294 8.6852 9.70486 10.8376 12.0133 13.1951 14.398 15.6977 17.2589 19.4717 23.3751 32.3762 61.3195 183.211 1061.28 1051.5 182.159 62.9536 32.3912 21.6931 16.6261 13.6043 11.5322 9.97431 8.73971 7.73821 6.91504 6.24828 5.74928 5.44733 5.38081 5.58314 6.02695 6.62791 7.34755 8.17296 9.12424 10.241 11.4548 12.654 13.7997 14.9164 16.1023 17.5355 19.61 23.3885 32.4008 61.7664 184.024 1061.98 1051.49 182.201 62.8849 32.0833 21.2822 16.2772 13.3763 11.4178 9.93823 8.74312 7.74779 6.9088 6.21614 5.68996 5.36711 5.29435 5.51806 6.00384 6.65851 7.4702 8.40491 9.46774 10.7157 12.0761 13.3678 14.5377 15.5974 16.6755 18.0041 20.0051 23.7589 32.9685 63.1339 185.811 1063 1051.49 182.279 62.9058 31.9337 21.1079 16.1952 13.393 11.4996 10.0464 8.84703 7.82548 6.94804 6.21348 5.64581 5.28331 5.17462 5.37403 5.85809 6.53365 7.40117 8.42455 9.60596 10.9764 12.5006 13.9951 15.3178 16.4226 17.4074 18.561 20.4026 24.0582 33.2341 63.2358 183.203 1064.01 1051.48 182.37 63.0049 31.9223 21.0979 16.277 13.5517 11.6913 10.231 8.99772 7.92929 7.00293 6.22365 5.61488 5.21146 5.05861 5.21107 5.65864 6.31404 7.1784 8.22792 9.4784 10.9308 12.5917 14.3386 15.9317 17.2632 18.3196 19.3416 20.9108 24.2968 33.3457 63.1107 179.896 1064.74 1051.48 182.386 63.0844 31.9701 21.1807 16.4492 13.7823 11.9269 10.4282 9.13484 8.00744 7.03492 6.22214 5.5864 5.15531 4.9686 5.07802 5.48245 6.10018 6.92288 7.94298 9.18256 10.6363 12.3057 14.2038 16.1023 17.7758 19.1141 20.235 21.6608 24.7301 33.5405 63.3124 179.847 1065.06 1051.48 182.264 63.0169 31.9389 21.2239 16.5796 13.954 12.0866 10.5406 9.18841 8.01697 7.02356 6.20435 5.56471 5.12395 4.91959 5.00399 5.38163 5.97275 6.7565 7.7249 8.90004 10.2825 11.8741 13.7758 15.8483 17.8167 19.5251 20.9535 22.4777 25.3773 33.857 63.5205 180.167 1065.01 1051.48 182.028 62.854 31.894 21.2974 16.7152 14.0775 12.1551 10.5492 9.15552 7.97259 6.99298 6.19681 5.5726 5.13201 4.91732 4.9894 5.35912 5.94598 6.71844 7.65361 8.76326 10.0483 11.5234 13.3119 15.3411 17.4076 19.3829 21.1655 22.9572 25.8863 34.0885 63.4586 180.242 1064.65 1051.48 181.93 62.7698 31.8875 21.3273 16.6974 13.977 11.9972 10.3912 9.0461 7.92528 7.00268 6.24858 5.64367 5.19676 4.95993 5.0124 5.38039 5.98435 6.77998 7.72158 8.80697 10.0314 11.4182 13.0713 14.9335 16.9097 18.9489 20.9584 23.0258 26.1036 34.1547 63.207 180.371 1064.2 1051.48 182.072 62.8672 31.9122 21.2484 16.5234 13.7689 11.8294 10.3182 9.08246 8.04834 7.17489 6.43319 5.81616 5.33073 5.03581 5.035 5.38186 6.00593 6.84323 7.81983 8.91678 10.122 11.4634 13.0077 14.6866 16.4802 18.4163 20.4751 22.7388 26.0504 34.199 63.1918 181.112 1063.92 1051.48 182.463 63.1895 32.0311 21.182 16.3904 13.6803 11.8476 10.4543 9.31019 8.32629 7.45922 6.68758 6.02658 5.48596 5.11722 5.039 5.33684 5.96488 6.84372 7.87291 9.01251 10.2381 11.5733 13.0634 14.6252 16.2648 18.0502 20.0251 22.3234 25.7696 34.047 63.04 181.344 1063.86 1051.48 183.051 63.814 32.4106 21.3502 16.5295 13.8996 12.169 10.8471 9.72557 8.72535 7.81335 6.97555 6.2442 5.64316 5.20379 5.03562 5.24965 5.83778 6.71714 7.77854 8.96065 10.2229 11.5684 13.049 14.5591 16.1008 17.7731 19.6639 21.9561 25.4817 33.8418 62.6858 180.151 1064.14 1051.47 183.358 64.3265 32.8238 21.624 16.8189 14.2746 12.6012 11.2781 10.108 9.03648 8.05177 7.15104 6.36371 5.72177 5.25682 5.06078 5.23244 5.7753 6.61563 7.66518 8.85776 10.1473 11.5173 13.0264 14.5312 15.994 17.5347 19.2836 21.4845 25.0328 33.5619 62.523 179.421 1064.33 1051.47 183.1 64.3019 32.8971 21.7086 16.9702 14.494 12.823 11.4449 10.2022 9.07105 8.0525 7.14489 6.35889 5.72201 5.28222 5.11803 5.29828 5.80981 6.58928 7.57635 8.72894 10.022 11.432 13.0214 14.6024 16.052 17.4879 19.1014 21.2207 24.7803 33.435 62.5371 179.022 1064.91 1051.47 182.899 64.1816 32.8417 21.662 16.9181 14.4067 12.6712 11.2405 9.98533 8.87817 7.90542 7.0526 6.32097 5.74008 5.36533 5.26539 5.48145 5.98124 6.70785 7.61383 8.68452 9.93126 11.3534 13.0188 14.7456 16.2793 17.6206 18.9847 20.8778 24.4217 33.3191 62.627 178.843 1064.99 1051.47 183.116 64.4617 33.0843 21.7783 16.8616 14.1889 12.3547 10.9135 9.72019 8.70487 7.82262 7.04972 6.39129 5.88002 5.56429 5.49833 5.71347 6.18701 6.86842 7.71392 8.71649 9.90826 11.3239 13.0423 14.9986 16.8558 18.3793 19.6089 21.1273 24.3539 33.2747 62.8191 178.983 1065.49 1051.46 184.597 66.1723 34.4616 22.5629 17.0835 14.0556 12.0948 10.6859 9.59985 8.699 7.90588 7.19898 6.59366 6.11998 5.81317 5.71711 5.87746 6.29599 6.9349 7.74428 8.70608 9.84541 11.2132 12.9218 15.0132 17.2259 19.1844 20.6024 21.859 24.5734 33.1873 62.84 179.257 1065.69 1051.46 185.311 67.0227 35.0989 22.7936 16.9704 13.8073 11.8963 10.6224 9.66668 8.85428 8.10935 7.42422 6.82237 6.33075 5.97544 5.79649 5.85462 6.18707 6.7807 7.56407 8.47733 9.5233 10.7711 12.3519 14.4515 17.037 19.7775 22.0519 23.6454 25.9652 33.8607 63.2647 179.754 1066.11 1051.46 184.374 66.1764 34.4732 22.3072 16.5742 13.5174 11.7303 10.5515 9.62457 8.77508 7.96003 7.21203 6.5791 6.08841 5.75046 5.58999 5.66561 6.02362 6.65937 7.50553 8.46628 9.50958 10.7151 12.1252 13.7967 15.9192 18.6074 21.5756 24.2918 27.4107 35.6087 65.1896 181.36 1066.46 1051.46 183.874 65.6024 33.9932 21.9916 16.4348 13.5005 11.7209 10.4206 9.30093 8.28795 7.41603 6.72587 6.21267 5.83824 5.57946 5.46657 5.57691 5.97057 6.6555 7.59642 8.69841 9.88766 11.223 12.6433 14.1115 15.7178 17.5554 19.6944 22.1996 25.7005 34.2 63.7662 180.201 1066.96 1051.46 183.024 64.7203 33.3008 21.4405 15.8433 12.6666 10.5439 8.97866 7.81758 7.00392 6.46459 6.09784 5.81534 5.58743 5.4525 5.48177 5.72067 6.17677 6.87138 7.82105 9.00674 10.3607 11.8931 13.4188 14.7971 16.1481 17.6865 19.5349 21.9334 25.966 35.8699 66.942 183.466 1066.52 1051.47 182.566 64.0554 32.3056 19.9525 13.8921 10.4951 8.49385 7.32671 6.65926 6.25451 5.95572 5.69622 5.49199 5.40136 5.47367 5.7136 6.11921 6.7064 7.50433 8.54533 9.84397 11.3946 13.1743 14.8567 16.2227 17.2568 18.2379 19.5945 21.7297 25.7725 35.9883 66.8045 181.991 1067.86 1051.47 183.536 64.7062 32.4011 19.6803 13.5589 10.3351 8.58683 7.61766 7.03979 6.63882 6.31263 6.02966 5.79442 5.62329 5.53309 5.5436 5.67856 5.99576 6.54209 7.38024 8.5658 10.111 12.0296 14.1586 15.8547 16.7768 17.1774 17.8467 19.5229 23.2233 32.7414 62.5145 178.035 1066.84 1051.47 184.716 66.0675 33.7873 21.1139 15.0501 11.8364 10.0204 8.91907 8.18154 7.63007 7.18599 6.82568 6.54996 6.36426 6.27229 6.28303 6.41552 6.70276 7.19275 7.95359 9.08878 10.6928 12.8033 15.4223 17.8716 19.457 19.7839 19.6285 20.534 24.1943 34.5457 65.4413 181.273 1068.58 1051.47 185.952 68.2041 36.5632 24.2855 18.3488 15.022 12.9322 11.4865 10.4051 9.55206 8.86164 8.2961 7.81914 7.39255 6.99941 6.67764 6.52892 6.62043 6.93631 7.3976 8.0087 8.88892 10.2566 12.4059 15.3866 18.2333 19.8362 19.8899 19.6773 21.6991 30.595 60.6966 177.648 1068.68 1051.47 179.319 68.055 37.9011 26.0152 20.042 16.4947 14.1325 12.434 11.1516 10.1549 9.36807 8.73781 8.20623 7.7085 7.26004 6.86346 6.51931 6.29936 6.25501 6.836 8.16574 9.72367 11.1148 12.5863 14.8267 17.9535 21.1887 23.175 23.7929 25.7433 35.3615 67.6875 184.775 1070.19 1051.49 180.579 68.362 36.6867 23.4261 16.5485 12.5717 10.1385 8.60533 7.63024 7.01776 6.64637 6.43081 6.30075 6.19016 6.04578 5.85211 5.63916 5.4747 5.40738 5.53777 6.05229 7.08582 8.63558 10.5956 13.0332 15.5689 18.2052 20.8096 23.2521 26.6047 35.306 63.5076 180.9 1069.89 1051.53 184.45 66.7918 32.1747 18.4643 12.6702 10.2175 9.13068 8.56189 8.15715 7.77592 7.37669 6.96517 6.5642 6.19495 5.86743 5.58132 5.33096 5.09743 4.85045 4.56722 4.25393 3.99548 3.9799 4.40036 5.27584 6.83164 9.2014 11.88 14.0192 17.1458 27.7571 62.9153 184.912 1068.07 1051.62 175.583 52.2526 22.202 15.615 14.857 14.5974 13.9676 13.1253 12.2078 11.2631 10.3281 9.44351 8.64914 7.98412 7.48539 7.18568 7.13363 7.26196 7.57696 8.09963 8.85131 9.86922 11.2031 12.9124 15.0789 17.7859 21.1864 25.5408 31.4969 40.7554 57.4476 93.4288 205.899 1069.36 537.609 23.9768 24.1401 24.1872 24.2059 24.2196 24.2258 24.2255 24.2198 24.2098 24.1965 24.1811 24.1643 24.147 24.1297 24.1129 24.0971 24.0826 24.0683 24.0547 24.0413 24.0281 24.0147 24.0007 23.9855 23.9686 23.9493 23.9271 23.9029 23.8809 23.8687 23.8744 23.9017 23.9469 550.079 537.492 23.8457 23.9725 24.0134 24.0342 24.0551 24.0765 24.0963 24.1136 24.1284 24.1404 24.1497 24.1563 24.1603 24.1619 24.1611 24.1581 24.1527 24.145 24.1351 24.1229 24.1084 24.0917 24.0731 24.0528 24.0311 24.0083 23.9851 23.962 23.9396 23.9159 23.8807 23.804 23.6397 533.075 1051.45 168.006 48.3852 20.0696 11.3871 7.91984 6.1049 4.96446 4.181 3.61098 3.18664 2.8642 2.62026 2.44438 2.33119 2.27735 2.28042 2.33834 2.44933 2.61167 2.8236 3.08614 3.40985 3.80765 4.28978 4.87312 5.59362 6.49573 7.68974 9.53511 13.1797 22.5088 51.9118 170.981 1044.31 1051.48 177.177 55.448 24.4859 13.9685 9.44401 7.12745 5.83535 5.09041 4.63176 4.32899 4.12397 3.98407 3.88951 3.82789 3.79136 3.77531 3.7775 3.79769 3.83747 3.90029 3.99174 4.12004 4.29772 4.54475 4.89485 5.41379 6.217 7.51123 9.79134 14.4121 25.4953 57.3116 177.929 1045.48 1051.49 181.104 60.0355 28.8552 17.7624 12.4379 9.29137 7.31027 6.08107 5.29847 4.77232 4.40934 4.157 3.98373 3.87012 3.80425 3.779 3.79072 3.83838 3.92348 4.05002 4.22515 4.46033 4.77339 5.19264 5.7654 6.57937 7.76077 9.49043 12.2154 17.2123 28.384 59.3433 174.813 1046.69 1051.49 179.582 60.1656 30.1191 19.5023 14.0853 10.6444 8.38682 6.95129 6.02988 5.41268 4.98712 4.68981 4.48259 4.34209 4.2541 4.21035 4.20669 4.2424 4.31977 4.44446 4.62672 4.88294 5.2383 5.73069 6.4183 7.40056 8.80966 10.7874 13.6547 18.4995 29.069 59.0568 173.169 1047.79 1051.49 177.299 60.5943 31.137 20.7327 15.3243 11.7993 9.41344 7.8321 6.78274 6.06318 5.55406 5.18876 4.92707 4.7444 4.6256 4.56164 4.54761 4.58232 4.66671 4.80514 5.00699 5.28857 5.67638 6.21202 6.95938 8.01984 9.53433 11.6519 14.6316 19.4409 29.7494 59.4134 173.442 1048.79 1051.5 176.324 60.4413 31.3927 21.3061 16.1026 12.6684 10.2649 8.59282 7.43649 6.62485 6.03938 5.61048 5.29768 5.07589 4.92946 4.84898 4.82912 4.86853 4.96699 5.12722 5.35678 5.67027 6.09245 6.66351 7.44682 8.54454 10.0975 12.252 15.2446 19.9632 29.9874 59.3224 173.359 1049.7 1051.5 176.91 60.7691 31.674 21.7208 16.6832 13.3568 10.9651 9.23268 7.98819 7.09394 6.43931 5.95287 5.59406 5.33749 5.16733 5.07427 5.05264 5.10087 5.21874 5.40777 5.67358 6.0287 6.49539 7.11048 7.93312 9.06032 10.625 12.7722 15.7446 20.3955 30.2633 59.4856 173.704 1050.5 1051.51 176.955 61.0107 31.8947 22.0667 17.1931 13.9727 11.592 9.80463 8.4789 7.50707 6.78888 6.25093 5.85073 5.56254 5.37074 5.26656 5.24394 5.3005 5.43767 5.65752 5.9645 6.36979 6.89405 7.57165 8.45995 9.64788 11.2457 13.3836 16.3149 20.9058 30.6765 59.8414 174.127 1051.25 1051.52 178.095 61.1936 31.9523 22.2549 17.5379 14.4164 12.07 10.2682 8.90268 7.88451 7.12428 6.54959 6.1167 5.80071 5.58748 5.4693 5.44024 5.49763 5.64479 5.88569 6.22433 6.67104 7.24554 7.98072 8.93432 10.1853 11.8174 13.9459 16.8263 21.3338 30.9841 60.0689 174.438 1051.9 1051.52 180.314 61.7444 32.1408 22.4659 17.8619 14.8438 12.5542 10.7618 9.37214 8.31152 7.50671 6.88957 6.4154 6.06164 5.81706 5.67454 5.629 5.67899 5.82773 6.08109 6.44498 6.92927 7.55338 8.35112 9.37852 10.7005 12.3788 14.5124 17.3568 21.806 31.3964 60.4804 174.909 1052.51 1051.53 182.63 62.3157 32.3524 22.6934 18.1889 15.2683 13.0447 11.2795 9.88098 8.78365 7.92969 7.26249 6.73953 6.34034 6.05534 5.87885 5.8079 5.84128 5.98155 6.23579 6.61183 7.11955 7.77862 8.62645 9.71686 11.0989 12.8188 14.9614 17.7744 22.1502 31.6248 60.6169 175.075 1053.05 1051.53 183.156 62.7083 32.6143 22.9727 18.5415 15.7083 13.5553 11.8232 10.4151 9.2737 8.35639 7.62442 7.04222 6.59034 6.26006 6.04655 5.94827 5.96345 6.09434 6.34722 6.7304 7.25493 7.94036 8.82696 9.96622 11.3933 13.143 15.2922 18.0835 22.406 31.7895 60.7172 175.252 1053.53 1051.53 183.551 63.089 32.8951 23.2468 18.8707 16.1198 14.0348 12.3274 10.897 9.70089 8.71757 7.92315 7.28728 6.79007 6.42254 6.18042 6.06192 6.06433 6.1893 6.44202 6.8309 7.36809 8.07331 8.98902 10.1624 11.6156 13.3763 15.5177 18.2803 22.5455 31.8178 60.6392 175.273 1053.96 1051.52 184.062 63.6265 33.2543 23.5266 19.174 16.4857 14.4471 12.742 11.2731 10.0185 8.97796 8.13396 7.45774 6.92928 6.53804 6.27983 6.15223 6.15173 6.27956 6.5399 6.94057 7.49411 8.22146 9.16444 10.3638 11.8336 13.5938 15.7139 18.4359 22.6386 31.7996 60.5168 175.315 1054.37 1051.51 184.312 64.0046 33.5236 23.7372 19.4048 16.7549 14.7326 13.0098 11.4997 10.1983 9.11953 8.24727 7.55091 7.00915 6.61035 6.35023 6.22594 6.23393 6.37557 6.65447 7.07725 7.65612 8.41323 9.38932 10.6188 12.1069 13.8647 15.9568 18.6257 22.7513 31.786 60.3876 175.43 1054.75 1051.51 184.346 64.1372 33.6203 23.8161 19.4895 16.8416 14.8104 13.0718 11.544 10.2289 9.14433 8.27252 7.57931 7.04308 6.65277 6.40393 6.29408 6.32048 6.48547 6.79246 7.24705 7.86128 8.65748 9.67535 10.9444 12.4583 14.2174 16.2797 18.8886 22.9263 31.8314 60.3509 175.902 1055.14 1051.51 184.031 63.9352 33.5052 23.7133 19.3682 16.703 14.6682 12.9457 11.4466 10.1623 9.10642 8.26072 7.59031 7.07454 6.70407 6.47526 6.38658 6.43696 6.63034 6.97062 7.46262 8.11879 8.96173 10.0301 11.3486 12.8967 14.6607 16.6926 19.2405 23.2004 32.0267 60.6186 177.257 1055.53 1051.51 183.595 63.5026 33.205 23.4322 19.0614 16.402 14.4138 12.7587 11.3286 10.1025 9.09056 8.27938 7.63777 7.1466 6.79826 6.59046 6.52321 6.59773 6.8201 7.19547 7.72836 8.43226 9.33149 10.4632 11.8441 13.4359 15.2083 17.2074 19.6922 23.5905 32.4171 61.2304 178.778 1055.97 1051.51 183.007 62.9449 32.8614 23.1488 18.7809 16.1509 14.2226 12.6424 11.2866 10.12 9.1437 8.35512 7.73174 7.255 6.91897 6.72346 6.67077 6.76482 7.014 7.42508 8.00347 8.76285 9.73102 10.944 12.4035 14.0511 15.8367 17.7979 20.2096 24.0467 32.911 61.9074 178.94 1056.45 1051.52 181.921 62.0017 32.3993 22.8693 18.5498 15.9678 14.1044 12.5953 11.303 10.1807 9.22138 8.43039 7.80447 7.3288 6.99427 6.80219 6.75729 6.86631 7.13998 7.58702 8.21441 9.03599 10.0847 11.3964 12.9551 14.6822 16.5048 18.4438 20.781 24.54 33.4439 62.6032 178.717 1056.96 1051.53 180.716 60.8324 31.7786 22.4665 18.2485 15.7644 13.9951 12.5559 11.2982 10.1809 9.21244 8.4122 7.78274 7.30709 6.97335 6.78324 6.74346 6.86294 7.15494 7.63073 8.30038 9.17911 10.3042 11.7173 13.3935 15.2303 17.1281 19.0823 21.3677 25.0559 34.0137 63.392 179.022 1057.44 1051.55 180.634 60.3637 31.3859 22.1409 18.0263 15.6565 13.9765 12.5802 11.3201 10.1769 9.19034 8.39154 7.7638 7.28363 6.94408 6.74657 6.69827 6.809 7.09442 7.56963 8.24998 9.15449 10.3209 11.8035 13.5935 15.5682 17.595 19.6386 21.9455 25.5951 34.5818 64.1102 179.471 1057.83 1051.56 181.94 61.0807 31.5786 22.1699 18.0812 15.7811 14.1536 12.7733 11.5004 10.3413 9.35541 8.55812 7.92122 7.42339 7.05767 6.82627 6.73771 6.80255 7.03859 7.46584 8.10583 8.98279 10.1327 11.6128 13.4555 15.5724 17.7844 19.9938 22.4134 26.0952 35.0599 64.6043 179.865 1058.03 1051.55 183.599 62.4314 32.1608 22.4687 18.3393 16.0662 14.4773 13.1319 11.8898 10.7554 9.78153 8.9821 8.32563 7.78803 7.36508 7.06398 6.89774 6.87851 7.02597 7.36578 7.92575 8.73736 9.83912 11.2727 13.0961 15.3068 17.7283 20.1911 22.8279 26.6233 35.5061 64.6885 179.518 1058.04 1051.53 184.667 63.6009 32.6494 22.6759 18.5067 16.2837 14.7955 13.5735 12.4501 11.3989 10.4492 9.62178 8.90812 8.29384 7.77822 7.37529 7.10199 6.97015 7.00001 7.22245 7.66989 8.38018 9.39793 10.772 12.5515 14.8043 17.4846 20.3566 23.3966 27.419 36.1878 65.4824 184.033 1057.87 1051.53 185.299 64.3785 32.8088 22.611 18.5246 16.4771 15.19 14.1586 13.1875 12.2237 11.2838 10.3948 9.56251 8.81423 8.17642 7.65658 7.26229 7.00098 6.89217 6.97155 7.27346 7.83707 8.71007 9.94939 11.6189 13.8082 16.5833 19.8537 23.535 28.1559 36.8098 64.7537 183.898 1057.55 1051.53 186.769 65.9523 33.5395 22.8659 18.7775 16.8829 15.7942 14.9563 14.1087 13.1493 12.1213 11.1067 10.1449 9.28744 8.54567 7.91614 7.41035 7.02944 6.79028 6.72989 6.87807 7.26612 7.93525 8.94191 10.3605 12.3078 14.9075 18.1899 22.2336 27.602 36.8761 63.6511 181.559 1057.01 1051.52 182.108 66.6491 34.5363 23.5396 19.4037 17.6121 16.6676 15.9397 15.0951 14.0248 12.8425 11.6871 10.6302 9.6941 8.86994 8.16778 7.60016 7.16161 6.85897 6.71782 6.75609 6.99445 7.46565 8.22112 9.34031 10.9647 13.2386 16.2125 20.0728 25.5765 35.4356 62.2002 179.529 1056.28 1051.49 182.085 68.1032 35.9569 24.5037 20.1433 18.3664 17.5636 16.9511 16.0512 14.783 13.3849 12.0802 10.9179 9.89786 9.02267 8.29895 7.733 7.30984 7.02349 6.88546 6.90223 7.08334 7.44997 8.04311 8.95244 10.3262 12.2903 14.9218 18.4257 23.6096 33.4045 60.4315 178.157 1055.59 1051.45 180.713 67.3535 35.6425 24.3799 20.6073 19.5418 19.1179 18.338 16.9047 15.1226 13.4136 11.9426 10.6855 9.63377 8.78462 8.12568 7.64413 7.31566 7.12652 7.07701 7.16486 7.39068 7.76625 8.3362 9.19238 10.4422 12.181 14.5106 17.6664 22.4796 31.998 59.2702 178.045 1055.3 1051.43 178.997 64.6526 34.1225 25.2063 22.9321 21.9743 20.6256 18.5708 16.1806 13.9579 12.1146 10.63 9.46206 8.58547 7.96133 7.5483 7.30798 7.20753 7.22556 7.35106 7.57896 7.91146 8.36326 8.9884 9.87827 11.1164 12.7826 14.9705 17.9179 22.4861 31.855 59.6465 179.738 1055.73 1051.44 180.306 62.5033 34.9206 27.6682 24.5784 21.8627 18.9002 15.9375 13.3637 11.3015 9.71054 8.54207 7.73662 7.2335 6.9792 6.92729 7.03919 7.2858 7.62995 8.0311 8.46665 8.9355 9.46505 10.1014 10.9086 11.982 13.4497 15.4805 18.3758 23.0232 32.6711 61.3539 182.435 1056.74 1051.46 180.297 63.3926 36.8105 27.9358 22.7163 18.6266 15.2483 12.5821 10.5867 9.12712 8.0826 7.36838 6.9244 6.71241 6.71004 6.8977 7.23939 7.70623 8.28273 8.94954 9.66989 10.3833 11.0691 11.7439 12.4533 13.2943 14.3999 15.9741 18.456 22.9572 32.9488 62.7645 184.794 1058.08 1051.47 181.193 64.2439 36.3461 25.5932 19.5336 15.5135 12.6724 10.6699 9.26246 8.27094 7.59114 7.15897 6.93785 6.90918 7.06251 7.38132 7.83548 8.41745 9.12873 9.94468 10.8482 11.8062 12.7339 13.5653 14.2592 14.9089 15.7399 17.0015 19.1119 23.2379 33.2053 64.1698 186.899 1059.67 1051.47 181.688 63.7834 34.5409 23.2394 17.4257 13.938 11.6339 10.0564 8.96173 8.19498 7.66944 7.33958 7.18615 7.20766 7.41057 7.79316 8.33619 9.03805 9.89763 10.8813 11.9631 13.1338 14.3033 15.3522 16.1887 16.8066 17.4453 18.459 20.3542 24.4101 34.6303 65.7129 182.631 1060.95 1051.45 181.982 63.0074 33.0357 21.8353 16.4384 13.3932 11.4536 10.1154 9.16124 8.47542 7.9814 7.63997 7.44237 7.399 7.53201 7.86203 8.3945 9.14706 10.1357 11.3339 12.7032 14.2395 15.8411 17.2503 18.2622 18.7325 18.9428 19.7332 21.7527 26.0678 36.8656 68.6861 184.874 1061.55 1051.44 181.854 62.2285 32.0651 21.146 16.0704 13.3066 11.6073 10.4567 9.61166 8.94736 8.41093 7.99216 7.68513 7.49956 7.46694 7.62378 8.00087 8.63973 9.58978 10.867 12.464 14.3727 16.5718 18.8425 20.7959 21.9193 21.7156 20.9086 21.628 25.9495 37.4656 69.5491 185.153 1061.76 1051.44 181.945 61.9514 31.4937 20.5849 15.6266 13.0497 11.5796 10.6702 10.0481 9.55319 9.09266 8.63135 8.18489 7.80062 7.52258 7.3887 7.44212 7.73767 8.3553 9.38297 10.8994 12.942 15.509 18.6041 22.0114 25.0281 26.6714 25.9295 24.1266 25.1726 35.2839 67.3416 182.502 1061.94 1051.44 182.403 61.6799 30.6051 19.8229 15.234 13.0377 11.914 11.3001 10.9094 10.5665 10.1625 9.65923 9.08042 8.49753 7.98479 7.58012 7.31712 7.23967 7.41192 7.91895 8.86871 10.3966 12.6403 15.7179 19.6899 24.1994 28.2231 30.3344 29.6185 28.3 33.5567 62.6887 177.902 1062.1 1051.46 183.541 62.6436 31.0537 20.3284 15.9735 13.9793 13.0185 12.5482 12.2565 11.9136 11.4056 10.7704 10.0885 9.41968 8.79532 8.25295 7.83028 7.55254 7.45403 7.58063 7.97845 8.72074 9.93657 11.8453 14.8037 19.0493 24.1214 28.8773 31.8964 32.9914 36.472 61.2703 177.771 1061.7 1051.47 186.068 65.9436 33.8807 22.7083 17.981 15.7346 14.7208 14.3285 14.068 13.5798 12.8317 11.9726 11.095 10.2399 9.45158 8.77551 8.25266 7.89581 7.71717 7.73442 7.9529 8.38433 9.07059 10.1315 11.7994 14.3748 18.1181 22.9809 28.3201 33.3769 39.9423 63.7727 182.515 1060.18 1051.48 185.78 66.3864 34.6079 23.253 18.671 17.1399 16.9618 16.9161 16.2967 15.1336 13.7791 12.4422 11.2242 10.1575 9.27664 8.605 8.1531 7.90585 7.84999 7.97358 8.25729 8.68874 9.28062 10.1016 11.2752 12.968 15.4286 18.944 23.7119 29.9503 39.5825 66.1454 185.87 1058.35 1051.48 182.696 63.0749 31.9029 22.6418 20.7076 20.6762 20.2257 18.7196 16.5825 14.3837 12.4155 10.8349 9.64339 8.79357 8.24411 7.95051 7.86766 7.95461 8.18085 8.51526 8.93046 9.4122 9.97407 10.6744 11.6422 13.0917 15.3038 18.5995 23.325 30.1283 41.6006 71.6724 192.932 1057.59 1051.52 179.265 59.1181 30.7844 25.2934 24.4876 23.1994 20.518 17.1855 14.065 11.6177 9.92448 8.86654 8.28281 8.03801 8.0348 8.20225 8.48133 8.84407 9.26346 9.70609 10.1503 10.5921 11.0677 11.6255 12.3711 13.5113 15.3537 18.321 22.9903 30.3157 43.2707 75.7565 196.565 1057.84 1051.57 175.933 56.764 31.7627 26.4146 23.8156 20.825 17.4703 14.3705 11.8966 10.137 9.01392 8.38483 8.10189 8.066 8.2314 8.56139 9.01609 9.5763 10.2135 10.8846 11.5601 12.2284 12.925 13.6683 14.4919 15.5388 17.0584 19.3425 22.8853 28.9867 41.5336 74.2755 193.837 1059.5 1051.68 177.725 56.0386 29.8702 22.799 19.4933 17.0038 14.7828 12.8051 11.1414 9.84925 8.9295 8.32612 7.94985 7.75738 7.7501 7.937 8.31772 8.89325 9.65679 10.5646 11.5694 12.6338 13.7512 14.9844 16.3539 17.897 19.8161 22.4641 26.2094 31.878 42.9601 72.6382 184.11 1060.63 1051.63 193.908 70.2392 37.4295 26.8454 22.2604 19.4713 17.2149 15.0722 13.0673 11.4071 10.2005 9.38871 8.82858 8.39797 8.03934 7.74612 7.54497 7.46979 7.56368 7.87303 8.43028 9.25746 10.3671 11.7632 13.4507 15.4297 17.6725 20.2751 23.79 29.5838 41.3296 71.6877 183.338 1058.74 1051.48 195.613 75.7561 41.846 29.6249 24.29 21.1067 18.4879 15.937 13.5828 11.7489 10.5387 9.86444 9.54148 9.36491 9.18657 8.94938 8.67717 8.39745 8.11888 7.86971 7.69279 7.63567 7.741 8.05512 8.64498 9.6076 11.038 13.0271 15.8012 20.2363 29.4351 56.457 173.58 1054.03 1051.44 190.856 73.1645 40.3354 27.9922 22.5273 19.2919 16.7424 14.5586 12.837 11.7008 11.1257 10.9023 10.7577 10.5223 10.1901 9.81164 9.42927 9.06079 8.71319 8.40365 8.15968 8.01998 8.02297 8.20539 8.61522 9.32765 10.4859 12.3205 15.1091 19.5121 28.2561 53.9122 170.55 1054.03 1051.41 184.344 73.2184 41.9975 29.4391 23.2995 19.7241 17.2692 15.4383 14.1362 13.3798 13.0736 12.9615 12.7882 12.4635 12.0106 11.4593 10.862 10.2714 9.71186 9.20972 8.79921 8.5232 8.41501 8.4988 8.81204 9.44851 10.5838 12.394 15.0857 19.2775 27.6187 52.4829 167.762 1054.65 1051.38 177.019 66.9284 38.2509 27.6025 22.5564 19.7099 18.0339 17.1234 16.568 15.9927 15.2915 14.4619 13.5459 12.6194 11.7086 10.8407 10.0619 9.3967 8.84435 8.42493 8.16233 8.06508 8.12878 8.36173 8.81729 9.59161 10.7988 12.5459 14.9503 18.5081 25.5799 48.0075 162.011 1054.74 1051.38 181.009 65.912 36.9571 26.577 21.8185 19.1709 17.4352 16.1231 14.9774 13.8476 12.748 11.7484 10.8316 10.008 9.30223 8.73615 8.32533 8.06407 7.94583 7.96859 8.12408 8.40451 8.80711 9.35055 10.1031 11.1682 12.6216 14.4735 16.7379 19.9147 26.5231 49.0628 165.7 1055.79 1051.38 183.67 66.6923 36.4351 25.1596 19.6356 16.388 14.2454 12.7183 11.5549 10.6124 9.82551 9.18711 8.70056 8.36674 8.18632 8.15239 8.24532 8.44731 8.74384 9.11636 9.55497 10.0696 10.6953 11.4902 12.5501 13.9567 15.6489 17.5328 19.813 23.4687 31.8011 58.9357 181.499 1057.16 1051.39 180.373 61.6367 31.5063 20.7247 15.8796 13.3096 11.7614 10.7053 9.90371 9.272 8.80124 8.50531 8.38058 8.41829 8.60509 8.91381 9.30561 9.76473 10.278 10.8263 11.4212 12.1242 13.0445 14.3136 16.0583 18.1452 20.0199 21.5074 23.3658 27.3027 37.4809 69.2937 195.058 1059.85 1051.42 174.069 55.5889 27.7073 18.5485 14.5676 12.3994 10.9978 10.0056 9.30267 8.83802 8.57748 8.49683 8.57964 8.81838 9.19979 9.69459 10.267 10.9014 11.5678 12.2241 12.8828 13.6543 14.7447 16.405 18.792 21.6465 24.2097 26.1592 28.2919 32.4682 43.6399 77.6971 201.011 1061.52 1051.46 175.939 56.9154 28.6163 19.173 14.9562 12.5707 11.0027 9.92885 9.21648 8.7847 8.5762 8.56201 8.74202 9.12635 9.70691 10.4424 11.2806 12.2028 13.1564 14.0122 14.7039 15.364 16.2758 17.7603 19.898 22.2443 24.0035 25.2735 27.5485 32.8537 45.5636 79.7994 199.747 1063.06 1051.5 179.238 58.8192 29.5296 19.7663 15.4618 13.0586 11.495 10.4224 9.6796 9.16778 8.83341 8.65713 8.64399 8.81499 9.19104 9.77405 10.5476 11.5147 12.6666 13.9683 15.2982 16.4625 17.4923 18.7187 20.5614 23.2389 26.157 27.8924 28.5462 31.2094 41.4695 72.225 186.695 1065.01 1051.47 189.661 68.4023 36.0413 24.5669 19.1349 15.7879 13.4445 11.7997 10.7075 10.0201 9.58234 9.26736 8.99989 8.75631 8.56008 8.46464 8.5347 8.84056 9.4711 10.4955 11.9549 13.8999 16.2176 18.4435 20.1786 21.5122 22.4667 23.5451 25.5487 29.3937 38.1397 64.8715 175.359 1063.41 1051.4 191.95 72.6139 39.4884 27.0009 20.9427 17.0956 14.3315 12.374 11.1138 10.4169 10.1021 9.9822 9.92215 9.85137 9.72501 9.54121 9.32762 9.11988 8.93824 8.82967 8.86545 9.13785 9.76801 10.9099 12.7124 15.2102 18.1479 20.9278 23.097 25.3487 30.994 54.3593 171.439 1059.28 1051.38 188.95 71.0247 38.6908 26.2424 20.4389 17.2436 15.2138 13.8118 12.8472 12.2147 11.7786 11.4233 11.0961 10.7758 10.4396 10.0832 9.72861 9.39987 9.10116 8.84725 8.66703 8.6084 8.73203 9.12403 9.92951 11.3635 13.6678 16.9585 20.9903 25.4631 32.1727 53.5959 169.421 1056.93 1051.37 182.571 70.5306 40.7047 29.4321 24.0911 20.9959 18.8402 17.1739 15.8362 14.7116 13.7348 12.8784 12.1205 11.4262 10.7628 10.1334 9.56042 9.05899 8.62953 8.29597 8.09411 8.05672 8.21076 8.60277 9.3363 10.565 12.4918 15.3519 19.31 24.5102 32.5363 54.5192 169.202 1056.53 1051.36 185.515 71.1586 41.2451 29.3399 23.2441 19.6175 17.1702 15.3307 13.8297 12.5417 11.433 10.4846 9.65812 8.94381 8.34387 7.86346 7.50858 7.27162 7.15282 7.16223 7.31006 7.60881 8.07128 8.72858 9.6417 10.8639 12.4421 14.4767 17.2096 21.2955 29.2273 53.3272 171.377 1056.91 1051.38 185.856 67.5388 35.3993 22.8988 16.8227 13.4099 11.3018 9.91695 8.97266 8.31729 7.86501 7.56456 7.38828 7.31771 7.33596 7.42324 7.55763 7.7336 7.95769 8.25039 8.65759 9.24432 10.0791 11.2156 12.6881 14.4671 16.4958 18.87 21.9857 26.9346 37.2723 67.9276 193.203 1059.18 1051.44 171.144 51.3918 23.3682 14.8149 11.4867 9.91303 9.05983 8.55809 8.25896 8.09913 8.05029 8.09473 8.21307 8.37787 8.55897 8.73583 8.90152 9.06848 9.25328 9.50653 9.92628 10.6428 11.7496 13.2444 15.029 16.8955 18.7771 20.9844 24.1628 29.6128 41.1567 73.8867 197.25 1061.14 1051.47 170.791 52.0247 25.2355 16.8302 13.1773 11.1579 9.88716 9.0601 8.54538 8.27298 8.19589 8.27599 8.47533 8.75094 9.06152 9.37885 9.68436 9.96878 10.2131 10.4234 10.6802 11.1431 12.0373 13.4966 15.4523 17.6658 19.8835 22.1186 24.9516 30.0801 42.2758 76.3986 197.913 1062.06 1051.51 166.928 49.5459 24.6866 17.2479 13.9115 11.8933 10.5522 9.69225 9.17036 8.90116 8.84502 8.97782 9.27861 9.71699 10.2577 10.8763 11.5551 12.2745 12.983 13.6184 14.1391 14.5095 14.8483 15.445 16.5472 18.257 20.6215 23.7607 28.2036 35.5489 49.9053 83.803 197.006 1062.67 1051.59 173.534 53.4438 26.9843 18.9896 15.4343 13.2302 11.6358 10.4907 9.72454 9.24029 8.97231 8.88878 8.9747 9.23184 9.66367 10.2661 11.0381 11.9938 13.1128 14.3473 15.6594 17.0213 18.3574 19.591 20.661 21.6149 22.7432 24.6617 28.1645 34.4564 46.9935 77.5728 187.835 1063.85 1051.53 190.411 67.9323 35.5684 24.7601 20.3835 18.0451 16.0561 14.0333 12.315 11.116 10.3775 9.92517 9.60466 9.34789 9.16322 9.10294 9.22611 9.58174 10.2022 11.0807 12.19 13.4793 14.8465 16.2752 17.7063 19.0473 20.4394 22.2644 25.1005 30.1054 40.4141 67.4223 176.045 1060.23 1051.44 190.392 71.4201 38.9975 27.8092 23.8351 21.8495 19.4735 16.5107 13.891 12.1252 11.1967 10.8289 10.7041 10.5843 10.3216 9.89196 9.41012 8.99654 8.71602 8.62918 8.76754 9.14214 9.74741 10.5534 11.5145 12.5946 13.812 15.3075 17.4965 21.4388 30.4643 58.3496 175.795 1053.63 1051.44 183.811 66.0352 35.5721 26.1877 22.972 20.6787 17.8445 15.1211 13.2086 12.1826 11.8351 11.8524 11.946 11.8576 11.4471 10.7854 10.0574 9.40066 8.86153 8.47868 8.28172 8.28094 8.47617 8.86928 9.45652 10.2383 11.2446 12.5872 14.5932 18.1679 26.2414 51.8242 169.939 1052.49 1051.48 185.237 66.7802 35.8422 25.9005 22.1201 19.4596 16.9294 14.9743 13.8214 13.2999 13.0823 12.8963 12.5071 11.864 11.0987 10.3315 9.6189 8.98854 8.46251 8.0928 7.9179 7.94982 8.18726 8.62934 9.28227 10.169 11.3467 12.949 15.3186 19.4009 28.2682 54.9686 173.165 1054.35 1051.5 185.246 67.6833 37.5716 27.048 21.6589 18.3152 16.5445 15.8321 15.5148 15.0507 14.3128 13.3455 12.3017 11.2807 10.3228 9.47294 8.77359 8.23254 7.85557 7.66022 7.64447 7.79557 8.10386 8.57007 9.20955 10.0626 11.2074 12.7815 15.1157 19.1466 27.9324 54.5787 172.934 1055.55 1051.54 180.695 62.6545 32.769 23.1589 19.9553 18.903 18.2513 17.2097 15.7135 14.1117 12.6287 11.3078 10.1752 9.24406 8.51832 7.99352 7.65844 7.48842 7.46482 7.57261 7.79547 8.12303 8.55585 9.10864 9.81264 10.7206 11.921 13.5724 16.0262 20.2438 29.4204 57.199 177.512 1056.83 1051.6 176.767 57.0632 30.792 24.2667 21.8417 19.8134 17.4236 14.9764 12.8502 11.1437 9.82445 8.85286 8.18252 7.76628 7.5585 7.51542 7.59386 7.76086 7.99301 8.26825 8.57323 8.90863 9.29466 9.77505 10.419 11.3241 12.6285 14.5492 17.5013 22.501 32.7894 62.0997 183.461 1057.66 1051.61 177.569 58.3463 33.5958 26.8054 23.0729 19.4459 15.9057 12.9973 10.8335 9.30859 8.31287 7.73448 7.47742 7.46441 7.63128 7.91717 8.26323 8.64104 9.03195 9.40823 9.75193 10.0603 10.3535 10.683 11.1356 11.8377 12.9705 14.8162 17.8845 23.3301 34.531 65.217 186.83 1058.05 1051.59 180.085 60.9136 35.6603 28.1542 23.7259 19.6118 15.7792 12.739 10.5612 9.06332 8.10653 7.58416 7.40966 7.51198 7.82545 8.27827 8.79809 9.35743 9.94138 10.5153 11.0496 11.5248 11.9365 12.3173 12.7407 13.3474 14.3501 16.0406 18.9017 24.0703 35.0907 66.1501 187.416 1059.94 1051.56 180.343 61.8739 36.3438 28.2548 23.3941 19.1144 15.3056 12.3576 10.2625 8.81667 7.87565 7.33524 7.12273 7.1876 7.48861 7.97688 8.58755 9.28709 10.0619 10.8758 11.7119 12.5506 13.3445 14.0575 14.717 15.3727 16.2519 17.7414 20.4059 25.3564 36.2143 67.4407 188.134 1061.02 1051.56 182.094 63.5282 36.6448 27.8166 22.7024 18.5701 15.1089 12.4286 10.4887 9.10042 8.12156 7.48136 7.13476 7.05175 7.20795 7.57446 8.10747 8.77952 9.58172 10.4833 11.4607 12.5046 13.6111 14.7454 15.8767 16.9384 17.945 19.1826 21.2797 25.5169 35.6035 65.8425 182.023 1061.39 1051.57 182.282 63.5044 35.7835 26.5359 21.405 17.7129 14.9097 12.728 10.9715 9.58214 8.53785 7.7865 7.29261 7.0397 7.01464 7.20242 7.58111 8.13919 8.8818 9.79683 10.8709 12.0877 13.4374 14.921 16.5191 18.1368 19.6111 20.9783 22.7242 26.1841 35.4322 65.3153 181.072 1061.67 1051.59 181.441 62.2779 34.1652 24.716 19.8905 16.881 14.7725 13.0762 11.5609 10.2232 9.15103 8.33899 7.73999 7.33751 7.12764 7.1087 7.27684 7.6341 8.19735 8.97673 9.9831 11.223 12.6939 14.3922 16.3393 18.4987 20.6384 22.5757 24.5167 27.5834 35.8344 65.3523 186.215 1061.39 1051.61 182.164 61.8587 32.6471 23.0632 18.8421 16.6177 15.16 13.8921 12.6188 11.3863 10.3087 9.41397 8.67445 8.08634 7.66659 7.42777 7.37092 7.49158 7.79723 8.30027 9.02065 9.98756 11.2365 12.8058 14.7491 17.1279 19.8806 22.793 25.7653 29.4044 37.0173 64.3957 184.461 1061.1 1051.62 185.439 64.125 33.1846 23.2716 19.4083 17.6441 16.5877 15.6062 14.4554 13.1785 11.9611 10.8803 9.92223 9.09874 8.44779 7.99208 7.73424 7.6575 7.75127 8.01691 8.46038 9.09952 9.96843 11.1214 12.6387 14.6406 17.2684 20.6205 24.7812 30.1302 38.9612 65.0254 183.35 1060.88 1051.59 189.745 68.7698 36.0764 25.2132 21.1259 19.4432 18.6461 17.8877 16.6997 15.1799 13.6517 12.2567 11.0099 9.9397 9.08465 8.46075 8.06348 7.86418 7.83819 7.97617 8.26923 8.71561 9.32728 10.1416 11.2251 12.6617 14.5878 17.2716 21.2239 27.3914 38.1793 65.215 182.148 1059.78 1051.55 181.996 68.4998 36.7696 25.6899 21.9285 21.0185 20.8815 20.2323 18.6581 16.6076 14.6079 12.8564 11.356 10.1248 9.17497 8.4972 8.06904 7.85077 7.81293 7.94051 8.21649 8.62692 9.16667 9.85423 10.7238 11.8076 13.1888 15.0934 18.0774 23.4014 34.2884 62.8556 180.378 1057.94 1051.53 178.647 66.1749 35.6442 25.7545 23.3676 23.1575 22.6619 21.048 18.5987 16.043 13.8505 12.0814 10.664 9.56862 8.768 8.22984 7.92175 7.80738 7.86435 8.07863 8.43353 8.91183 9.49944 10.1984 11.0225 11.9795 13.1103 14.5857 16.8921 21.2545 31.1594 59.8426 178.76 1056.65 1051.51 176.91 65.1157 36.1721 27.6299 24.9862 23.2117 20.9704 18.3316 15.7423 13.5608 11.882 10.6112 9.64374 8.93082 8.43557 8.13403 8.00996 8.04994 8.24876 8.59938 9.08698 9.6901 10.3859 11.164 12.0082 12.8746 13.765 14.8407 16.5586 20.0433 28.6726 56.1479 175.589 1055.09 1051.5 183.878 66.2394 37.0253 27.5103 22.7655 19.3139 16.5541 14.417 12.8107 11.5812 10.5964 9.79863 9.17265 8.70741 8.39873 8.25324 8.27431 8.46532 8.83191 9.36739 10.0521 10.8543 11.7355 12.6659 13.5849 14.3949 15.0907 15.8656 17.1866 20.1553 28.1631 55.3528 175.944 1054.84 1051.5 181.989 63.564 33.9544 23.4475 18.3092 15.3513 13.5207 12.314 11.4457 10.7329 10.0773 9.47353 8.97796 8.62985 8.44093 8.42278 8.58365 8.93544 9.49351 10.2532 11.1925 12.2684 13.42 14.5859 15.6582 16.5054 17.1416 17.841 19.1116 22.098 30.4243 58.9036 181.398 1056.68 1051.52 181.392 61.5975 31.3092 20.8405 16.2324 13.8631 12.5076 11.6539 11.0448 10.5229 9.99852 9.47264 9.02163 8.70414 8.54589 8.56474 8.77612 9.20094 9.8686 10.7903 11.9594 13.3431 14.8767 16.4782 18.0015 19.1824 19.8266 20.4281 21.9005 25.5684 35.0118 65.1687 187.76 1059.31 1051.54 185.156 64.6313 32.8272 21.5905 16.6934 14.2106 12.8212 11.9857 11.4311 10.9779 10.4966 9.95025 9.41859 9.00305 8.74144 8.65966 8.78001 9.1239 9.72643 10.6213 11.8391 13.3958 15.2787 17.4415 19.8574 22.2675 23.8895 24.3477 24.905 28.0753 38.4513 70.2569 192.096 1062.97 1051.52 190.944 71.3255 38.043 25.2618 19.3728 16.2669 14.4601 13.3434 12.5971 11.9926 11.3804 10.7263 10.0844 9.53107 9.1127 8.85443 8.77619 8.88306 9.18882 9.73197 10.5718 11.7835 13.4472 15.6234 18.3874 21.8223 25.4767 28.1456 29.2802 30.4696 37.7442 67.5755 182.806 1065.87 1051.46 192.22 75.4105 42.0339 28.3926 21.659 17.908 15.6983 14.41 13.6287 13.0055 12.3412 11.623 10.9136 10.2796 9.76991 9.40783 9.20312 9.15474 9.25262 9.5027 9.9295 10.5729 11.4926 12.7848 14.602 17.16 20.6696 25.0448 29.603 33.7814 40.4727 66.8484 180.673 1067.28 1051.42 191.597 73.5335 40.4105 26.8045 20.1931 16.9612 15.4817 14.7868 14.3129 13.7666 13.0939 12.3743 11.6825 11.0669 10.5537 10.1517 9.86816 9.70802 9.66576 9.74566 9.96601 10.344 10.8904 11.6255 12.6018 13.9337 15.8343 18.6675 23.0379 29.8506 41.2634 69.7587 187.203 1063.53 1051.4 186.507 68.809 37.0559 25.2529 20.4911 18.5507 17.6055 16.8998 16.1303 15.2357 14.3032 13.4179 12.6259 11.9454 11.3749 10.9091 10.5485 10.2941 10.1388 10.0803 10.1235 10.2742 10.5317 10.8955 11.3742 11.9979 12.8349 14.0379 16.0024 19.8156 28.7929 55.8784 173.663 1056.81 1051.4 185.468 70.2902 41.0291 30.5844 25.7229 22.7684 20.5557 18.6846 17.0127 15.537 14.2848 13.2625 12.4458 11.7922 11.2747 10.8712 10.5673 10.3569 10.2327 10.1987 10.2675 10.4508 10.7428 11.1128 11.5153 11.9168 12.3275 12.8536 13.8023 16.048 22.7086 48.3228 171.166 1054.8 1051.39 192.55 75.9187 43.4475 29.8818 22.6869 18.3096 15.447 13.5197 12.2273 11.3931 10.9116 10.7077 10.7059 10.822 10.97 11.0773 11.1031 11.0435 10.8913 10.6475 10.3249 9.96181 9.61088 9.30774 9.07668 8.96037 9.05987 9.61116 11.188 15.3751 27.1982 63.5904 192.76 1054.93 1051.48 169.507 49.2304 22.2459 14.6656 12.1508 11.3462 11.2373 11.4087 11.6126 11.6726 11.528 11.2503 10.9326 10.6278 10.3481 10.113 9.93749 9.82958 9.79405 9.84392 9.9926 10.2538 10.6443 11.1963 11.9565 13.017 14.5674 16.9739 20.9956 28.3579 43.4674 79.7911 200.925 1060.59 1051.7 133.319 32.3665 18.051 14.4459 12.8613 12.191 12.0461 12.206 12.5405 12.9202 13.2545 13.5259 13.7188 13.8194 13.8224 13.7443 13.6175 13.4872 13.3975 13.3892 13.4932 13.7339 14.1346 14.7292 15.576 16.7889 18.5871 21.321 25.6252 32.8923 46.7563 79.6242 196.982 1068.09 1051.84 159.969 41.7761 21.6417 17.5141 15.5535 13.2973 11.3177 10.3239 10.1686 10.4258 10.881 11.4545 12.0818 12.7412 13.4225 14.1068 14.7762 15.4165 16.01 16.5706 17.127 17.694 18.2803 18.8849 19.4886 20.0593 20.6072 21.4425 23.1135 26.8968 36.4829 65.2594 182.668 1066.06 1051.63 197.515 73.898 38.5354 25.1244 19.2289 16.2755 14.5461 13.3161 12.1872 10.9808 9.80493 8.89546 8.33648 8.0723 8.03173 8.18573 8.51119 9.00066 9.63758 10.3685 11.1711 12.0589 13.084 14.3316 15.7847 17.4311 19.3023 21.4942 24.2902 28.6443 37.9447 65.335 177.168 1057.9 1051.51 192.652 73.5495 39.7798 25.8177 18.7155 14.8307 12.8789 12.2159 12.3152 12.5142 12.2604 11.623 10.9049 10.2366 9.64635 9.1639 8.80478 8.56058 8.40694 8.33399 8.32625 8.35678 8.41083 8.52024 8.78596 9.36221 10.4724 12.5157 16.1681 22.8033 35.8974 67.6971 184.683 1052.01 1051.51 186.102 67.7742 35.3898 22.8468 17.4848 15.4582 15.0757 15.3718 15.6054 15.3021 14.4731 13.3774 12.2429 11.1842 10.2616 9.49997 8.91438 8.49134 8.19585 8.00158 7.89026 7.84693 7.85162 7.88396 7.94062 8.06535 8.37162 9.09563 10.7768 14.8076 25.4647 57.5796 178.805 1049.58 1051.47 187.412 68.8204 37.0508 25.9832 21.8421 20.1164 19.0621 17.954 16.5564 14.9523 13.3332 11.854 10.5998 9.60492 8.85571 8.30914 7.93137 7.68817 7.54219 7.47269 7.46435 7.50279 7.57619 7.67736 7.80728 7.98402 8.26319 8.78328 9.89794 12.6313 20.5915 49.1823 171.637 1049.17 1051.44 187.285 70.5003 40.5917 29.7805 24.2971 20.4966 17.4016 14.7959 12.657 10.9771 9.71586 8.80715 8.18249 7.7782 7.53471 7.40538 7.35644 7.36643 7.41895 7.50617 7.62261 7.76213 7.92118 8.09922 8.29551 8.51162 8.77154 9.17153 9.98205 12.0017 18.2512 43.3481 165.049 1050.4 1051.42 188.257 72.829 41.4978 27.7432 19.8087 14.8113 11.648 9.68685 8.50886 7.83603 7.48878 7.35269 7.35397 7.44315 7.58501 7.75333 7.9291 8.11012 8.29198 8.46572 8.61228 8.702 8.70944 8.63359 8.5041 8.37365 8.32273 8.49551 9.21754 11.4156 18.5506 46.4524 170.703 1049.26 1051.42 187.089 67.3033 32.086 17.9225 11.8383 9.16768 8.00581 7.56329 7.49633 7.64334 7.91965 8.26978 8.63302 8.96562 9.25086 9.4784 9.63723 9.72459 9.73941 9.70113 9.63966 9.57279 9.49126 9.39499 9.33013 9.39752 9.77354 10.7725 13.0466 18.2018 30.7926 65.6331 189.242 1052.13 1051.46 172.929 49.5673 19.9946 11.9091 9.24833 8.21739 7.82333 7.76138 7.92077 8.24412 8.67849 9.15359 9.58653 9.95177 10.2483 10.4716 10.6133 10.6607 10.5998 10.4609 10.334 10.3459 10.5967 11.1082 11.8284 12.7304 13.9189 15.7168 18.8243 24.7966 37.6526 70.575 189.421 1058.45 1051.49 162.957 42.4826 17.6892 11.3242 8.98469 7.88918 7.34811 7.13288 7.15431 7.37521 7.78176 8.34566 9.00236 9.67235 10.312 10.874 11.317 11.6476 11.8621 11.9773 11.9966 11.9215 11.7906 11.7456 12.0681 12.9878 14.551 16.8468 20.2999 26.2103 38.3032 69.8213 188.349 1063.4 1051.53 166.838 45.9177 19.6191 12.4977 9.82281 8.47511 7.63755 7.05952 6.67598 6.46977 6.42862 6.56454 6.89651 7.42553 8.11284 8.89056 9.72151 10.6267 11.5586 12.4066 13.1229 13.7016 14.0928 14.2624 14.2125 14.1115 14.3491 15.3561 17.8766 22.8243 33.7151 63.4676 178.274 1065.86 1051.57 172.588 51.0102 22.5584 14.2275 11.0945 9.57623 8.65902 7.99944 7.47051 7.03282 6.66443 6.36046 6.1402 6.02885 6.05073 6.22528 6.56117 7.06778 7.76567 8.6489 9.72244 10.9626 12.2828 13.5941 14.7557 15.6336 16.2151 16.6644 17.4995 19.9516 27.9879 56.1541 171.258 1063.2 1051.59 177.942 56.0763 25.7856 16.2125 12.458 10.6788 9.67745 9.00911 8.49349 8.05796 7.66733 7.30716 6.98348 6.70852 6.49173 6.3404 6.26312 6.268 6.36898 6.5885 6.95401 7.50384 8.29587 9.39669 10.8399 12.6272 14.721 17.0597 19.705 23.3389 31.1599 58.3006 178.669 1059.21 1051.58 181.572 59.9368 28.4461 17.9198 13.673 11.6998 10.6743 10.0554 9.58887 9.16585 8.74796 8.32422 7.90488 7.50741 7.14164 6.8161 6.54681 6.34245 6.21449 6.18814 6.28581 6.52825 6.94168 7.56651 8.4881 9.84079 11.7701 14.4664 18.2691 23.9942 34.3276 61.9198 180.012 1056.76 1051.56 184.779 63.6025 31.0748 19.7177 15.0983 13.0556 12.1077 11.5878 11.1416 10.6255 10.0431 9.43339 8.82749 8.25042 7.71244 7.22391 6.80521 6.46152 6.20054 6.04879 6.02959 6.15822 6.44582 6.90728 7.57673 8.54284 9.95898 12.0516 15.2914 20.8582 32.0364 61.0293 178.793 1055.96 1051.54 185.991 65.6689 32.917 21.3222 16.7108 14.7861 13.9522 13.4379 12.8399 12.0436 11.1343 10.2199 9.3523 8.56216 7.85856 7.24791 6.74579 6.3481 6.05506 5.88763 5.86387 5.99321 6.28306 6.74351 7.3943 8.29644 9.55462 11.3175 13.9728 18.6596 28.9287 57.9822 176.842 1056.14 1051.53 185.021 65.6046 33.3689 22.1114 17.9375 16.3708 15.6639 14.9823 13.9914 12.7374 11.4391 10.2312 9.15636 8.23506 7.46704 6.84452 6.36713 6.02179 5.80303 5.72335 5.79118 6.00971 6.3834 6.92087 7.64649 8.61623 9.90028 11.5969 14.0214 18.2128 27.6624 56.1317 175.876 1056.8 1051.52 183.372 64.2228 32.74 22.4872 19.0567 17.6606 16.5871 15.2586 13.676 12.0765 10.623 9.35954 8.29893 7.43789 6.76648 6.26639 5.92275 5.71881 5.64866 5.71789 5.92821 6.2794 6.77297 7.41589 8.24188 9.3042 10.6433 12.3445 14.7112 18.7496 27.8844 56.0308 176.291 1057.65 1051.51 182.386 63.1517 32.6604 23.3213 19.8796 17.8524 15.9955 14.0976 12.2901 10.6955 9.34373 8.23117 7.34396 6.66271 6.16937 5.84917 5.68434 5.65695 5.7622 5.99922 6.36288 6.84865 7.45551 8.19618 9.10503 10.2137 11.5534 13.2314 15.5865 19.657 28.8709 57.2076 177.92 1058.48 1051.51 182.093 63.1005 33.356 24.0009 19.8382 17.0169 14.6377 12.5596 10.8031 9.36059 8.2015 7.29439 6.60913 6.12187 5.81727 5.68505 5.70818 5.86958 6.16286 6.57601 7.09308 7.70274 8.40314 9.21445 10.1606 11.2487 12.5184 14.1085 16.3985 20.4638 29.7583 58.3817 179.45 1059.25 1051.5 182.209 63.5578 33.9772 24.0434 19.1023 15.7573 13.1991 11.1889 9.6111 8.37637 7.41914 6.69319 6.16994 5.83564 5.68806 5.7263 5.93 6.27851 6.76239 7.35447 8.02681 8.76279 9.56745 10.439 11.3561 12.3334 13.452 14.8957 17.0794 21.0976 30.425 59.3316 180.732 1059.94 1051.5 182.241 63.6591 33.8252 23.2485 17.8502 14.4087 11.9916 10.2024 8.83846 7.78184 6.96327 6.34726 5.92082 5.68645 5.65706 5.84097 6.21181 6.74096 7.41548 8.1967 9.05154 9.9637 10.9257 11.8904 12.7845 13.6203 14.5361 15.7941 17.8711 21.902 31.3969 60.8438 182.761 1060.95 1051.49 182.026 63.175 32.9146 21.9656 16.5528 13.3455 11.2189 9.66276 8.44869 7.48877 6.73532 6.16261 5.77129 5.57747 5.60909 5.88995 6.39932 7.08894 7.92291 8.87057 9.9391 11.1147 12.3218 13.4614 14.4157 15.1688 15.9065 16.9748 18.9495 23.0814 33.0821 63.7359 186.161 1062.61 1051.49 181.544 62.2817 31.7103 20.7691 15.6253 12.736 10.865 9.48091 8.36179 7.43587 6.68875 6.1065 5.68941 5.46194 5.46319 5.73797 6.28881 7.06231 8.03043 9.18021 10.4773 11.9593 13.5859 15.112 16.3268 17.1136 17.672 18.5186 20.3219 24.332 34.4762 65.9302 188.568 1064.52 1051.49 181.385 61.7574 30.936 20.0912 15.1947 12.5346 10.8306 9.5544 8.49567 7.59026 6.82978 6.20468 5.71726 5.39419 5.27581 5.41609 5.85748 6.5745 7.53629 8.76801 10.2393 11.9411 13.9685 16.1709 18.0584 19.3121 19.8096 20.1418 21.387 25.0436 34.9957 65.7658 182.074 1065.56 1051.49 181.753 61.9089 30.7821 19.9564 15.2214 12.7115 11.1126 9.89724 8.86763 7.96823 7.18084 6.49639 5.92379 5.48473 5.20963 5.14278 5.34215 5.84139 6.6248 7.70017 9.10051 10.8254 12.9305 15.5348 18.3944 20.7947 22.153 22.3984 22.6066 24.9446 33.9929 64.2131 179.906 1065.45 1051.49 182.555 62.723 31.2133 20.2461 15.5674 13.1381 11.5972 10.4159 9.40029 8.48631 7.65344 6.90603 6.25909 5.72943 5.3356 5.10195 5.06394 5.27821 5.79594 6.58363 7.67647 9.13011 11.0235 13.4391 16.4773 19.9564 22.8575 24.4235 24.8106 25.8829 32.8076 61.4954 177.183 1064.83 1051.48 183.019 63.2847 31.5256 20.4887 15.9695 13.7104 12.2656 11.1066 10.0555 9.06961 8.15351 7.32507 6.60185 5.99809 5.52613 5.19929 5.03454 5.05356 5.31687 5.86642 6.66725 7.76221 9.24916 11.2556 13.8563 17.2537 21.0928 24.2417 26.1914 27.7533 33.4285 60.67 182.256 1064.43 1051.48 182.774 63.332 31.7704 20.9794 16.7148 14.5636 13.0754 11.7924 10.5962 9.47865 8.45778 7.55221 6.7741 6.12995 5.62412 5.26297 5.05648 5.01351 5.16524 5.56818 6.22659 7.10409 8.29029 9.9059 12.0585 14.9417 18.6284 22.4116 25.6585 28.5822 34.6018 60.5257 182.023 1063.86 1051.48 182.615 63.4737 32.2397 21.6616 17.4295 15.1473 13.4563 11.9821 10.6412 9.43162 8.36572 7.45001 6.68317 6.06028 5.57849 5.24071 5.05595 5.03344 5.19943 5.5951 6.21457 7.01731 8.06618 9.46302 11.3223 13.8496 17.14 20.8321 24.5683 28.4702 35.3702 61.1104 182.399 1063.68 1051.48 182.486 63.5427 32.6053 22.1577 17.8118 15.2985 13.3862 11.7548 10.3334 9.1075 8.0673 7.19833 6.48492 5.91513 5.48484 5.19915 5.07041 5.11354 5.3601 5.82912 6.4826 7.29546 8.31387 9.62839 11.3804 13.7098 16.5979 19.9611 23.7292 28.1948 36.0554 62.5996 184.017 1063.12 1051.48 182.637 63.8152 32.9861 22.4153 17.7498 14.9231 12.8168 11.1211 9.72781 8.57801 7.62881 6.84855 6.21683 5.72399 5.37089 5.16842 5.13323 5.28634 5.6652 6.24659 6.97027 7.85837 8.93974 10.3159 12.1338 14.3765 16.9685 19.9294 23.3355 27.813 36.4863 64.705 186.655 1063.43 1051.48 182.457 63.4814 32.5368 21.7771 16.9489 14.1029 12.0972 10.5475 9.29415 8.25859 7.39746 6.68726 6.11738 5.68575 5.39844 5.27053 5.31977 5.5683 6.02938 6.66116 7.43986 8.38574 9.53609 11.0087 12.8864 15.1011 17.6437 20.5046 23.7053 27.942 36.7557 66.0733 188.594 1063.78 1051.48 182.657 63.439 32.212 21.2608 16.3911 13.6087 11.7034 10.2501 9.07796 8.11148 7.3125 6.66167 6.14923 5.77306 5.54095 5.47166 5.58497 5.90328 6.42405 7.09888 7.92482 8.92113 10.1459 11.6874 13.5388 15.6786 18.1848 21.1515 24.6281 29.1787 38.4429 68.1402 184.409 1064.83 1051.48 183.247 63.9083 32.3012 21.0718 16.1565 13.4523 11.6498 10.2904 9.19619 8.29345 7.54722 6.93577 6.44491 6.07148 5.82811 5.74195 5.84138 6.1527 6.67567 7.36054 8.19419 9.19382 10.4206 11.9166 13.6066 15.4378 17.4733 19.9352 23.198 28.0555 37.9426 67.8873 183.148 1065.65 1051.48 185.169 66.0707 33.9063 22.011 16.7064 13.824 11.9341 10.5353 9.44383 8.57993 7.89219 7.3371 6.88058 6.50827 6.23396 6.09599 6.13849 6.39988 6.89178 7.56942 8.40375 9.40645 10.6256 12.0612 13.61 15.2384 16.9604 18.8838 21.445 25.7773 35.3458 64.3369 178.469 1064.97 1051.47 188.322 69.7014 36.945 24.0604 17.9501 14.6109 12.5205 11.0721 10.0103 9.20532 8.57477 8.05795 7.60891 7.20573 6.8609 6.6191 6.54033 6.68012 7.07712 7.70902 8.54229 9.60038 10.8796 12.2827 13.6374 14.916 16.1675 17.4214 18.9216 21.7622 29.6457 57.4882 177.786 1064.97 1051.46 188.591 71.0043 38.8293 25.9518 19.5395 15.886 13.6032 12.0744 10.9814 10.1447 9.4745 8.92264 8.44605 8.00678 7.59451 7.24251 7.02278 7.0164 7.28268 7.82793 8.6309 9.71075 11.0527 12.6014 14.0609 15.2589 16.3303 17.465 18.8203 21.2098 28.3272 56.5204 180.613 1062.97 1051.45 186.924 70.0996 38.8688 26.6568 20.5965 17.0775 14.8026 13.2087 12.0143 11.0811 10.3395 9.72655 9.17199 8.63168 8.11856 7.70617 7.50411 7.61601 8.08735 8.91336 10.1284 11.8465 14.0159 16.295 18.2333 19.4565 20.1212 21.1241 23.0637 26.8323 36.9943 69.9126 189.539 1065.23 1051.46 187.775 69.7738 37.6777 25.0067 18.7416 15.1515 12.8738 11.3183 10.1914 9.31578 8.57191 7.89509 7.29461 6.85424 6.68102 6.81447 7.19553 7.7583 8.42957 9.17559 10.1159 11.4986 13.5479 16.2122 19.0413 21.3153 22.5649 23.4269 25.353 30.0601 41.8109 74.4354 189.661 1069.3 1051.47 183.836 64.919 32.8125 20.4792 14.6453 11.4499 9.48553 8.17394 7.26044 6.6248 6.21119 6.00565 6.01561 6.23188 6.58677 6.96955 7.3109 7.62148 7.90837 8.20364 8.59188 9.20615 10.2208 11.8049 13.9998 16.5804 19.0359 21.0079 23.0404 27.0307 37.7751 69.1861 183.728 1067.5 1051.47 181.982 62.7882 30.5045 17.8596 11.7604 8.56286 6.91666 6.1524 5.8804 5.87478 6.01876 6.28615 6.70411 7.26145 7.83938 8.31049 8.62165 8.7818 8.83136 8.87111 9.03456 9.44961 10.2059 11.3502 12.8899 14.7896 16.9663 19.4024 22.5397 28.0273 40.2596 72.1619 185.512 1065.87 1051.48 179.08 58.622 25.6583 13.266 8.40803 6.69934 6.16755 5.98699 5.9115 5.96674 6.19375 6.58768 7.11179 7.69717 8.2587 8.7456 9.10475 9.28088 9.22978 8.98262 8.67246 8.55193 8.91478 9.92391 11.5348 13.5731 15.8611 18.3356 21.2861 25.9784 36.3528 65.4535 177.485 1065.21 1051.49 178.872 58.3737 25.8129 13.8094 8.86831 6.8136 6.00195 5.72651 5.65575 5.62108 5.56502 5.52466 5.5897 5.84861 6.31798 6.96669 7.7664 8.64663 9.5211 10.2631 10.7744 10.9703 10.7686 10.1945 9.69269 9.84518 10.9491 13.0422 16.2346 21.3745 31.9863 61.6167 176.108 1065.04 1051.48 180.616 60.3409 27.439 15.0192 9.8641 7.79494 7.05106 6.83714 6.80054 6.8015 6.7984 6.7759 6.70682 6.56233 6.36815 6.23723 6.31671 6.70194 7.40665 8.40709 9.69285 11.1123 12.3748 13.2031 13.3001 12.8605 12.6709 13.5501 16.1932 21.7201 33.5788 64.8651 180.498 1069.86 1051.48 182.947 63.0704 30.3132 17.9634 12.712 10.4227 9.42375 8.96827 8.71897 8.52967 8.34419 8.14862 7.94895 7.76308 7.60965 7.48695 7.36448 7.21756 7.01482 6.84224 6.96455 7.61833 8.84687 10.6759 12.5052 13.6817 14.073 14.1569 15.0086 18.5253 28.918 59.7188 176.423 1068.93 1051.48 185.213 67.6015 36.5663 25.0104 19.6863 16.8033 15.011 13.7567 12.7913 11.9914 11.2867 10.6411 10.043 9.49221 8.9721 8.54109 8.17635 7.94232 7.89734 8.01584 8.40638 8.92539 9.37127 9.73387 10.6452 12.5771 15.0628 17.4238 19.8105 24.009 34.8926 66.4003 182.076 1068.72 1051.47 189.423 73.6276 42.7028 30.4311 24.1554 20.3468 17.7519 15.8354 14.3372 13.113 12.0811 11.1997 10.4477 9.813 9.28757 8.86216 8.52283 8.26847 8.08265 7.94469 7.83232 7.72383 7.62349 7.57834 7.74305 8.41381 9.88024 12.2098 15.3085 19.5944 28.4187 55.9078 171.376 1065.53 1051.52 191.21 75.8054 42.1913 28.1838 21.1926 17.213 14.6786 12.936 11.6724 10.7046 9.92637 9.28348 8.75333 8.32407 7.98558 7.72436 7.52703 7.37088 7.24036 7.10115 6.90928 6.6438 6.30563 5.85152 5.19507 4.27672 3.14883 2.16773 2.34148 5.75381 16.8962 51.2568 180.098 1060.93 1051.65 179.519 55.9079 25.0753 17.6385 15.646 14.0662 12.6486 11.8288 11.3487 10.766 10.0039 9.21521 8.5215 7.95941 7.52531 7.20935 7.0102 6.93915 6.93043 7.00115 7.1756 7.48899 7.99018 8.74796 9.86677 11.5133 13.9549 17.6372 23.3578 32.7185 49.5937 86.2453 201.834 1064.42 537.613 24.0223 24.1693 24.1992 24.2123 24.2277 24.2347 24.2289 24.2137 24.1961 24.1794 24.1634 24.1476 24.132 24.1167 24.1016 24.0872 24.0734 24.0605 24.0478 24.0359 24.0243 24.0131 24.002 23.9908 23.9788 23.9656 23.9504 23.9327 23.913 23.8943 23.8853 23.8993 23.9441 549.789 359.761 14.218 14.3897 14.496 14.5678 14.6214 14.6636 14.6971 14.7239 14.7453 14.7622 14.7753 14.7852 14.7923 14.797 14.7994 14.7997 14.7981 14.7945 14.7889 14.7813 14.7714 14.7591 14.7441 14.726 14.7045 14.6791 14.6492 14.6138 14.5713 14.5202 14.4529 14.3509 14.1646 356.4 528.009 4.88529 5.13845 5.2696 5.33689 5.39128 5.44212 5.48841 5.5292 5.56421 5.59348 5.61719 5.63557 5.64884 5.6572 5.6608 5.65978 5.6542 5.64411 5.6295 5.61038 5.58674 5.55853 5.52578 5.48861 5.44734 5.40255 5.35515 5.30665 5.25916 5.21228 5.14646 5.01461 4.76745 523.413 528.035 4.79259 4.97083 5.05843 5.12161 5.20079 5.28166 5.35277 5.41148 5.45881 5.49635 5.52551 5.54738 5.56273 5.57211 5.57591 5.57435 5.56752 5.55539 5.53782 5.51456 5.48524 5.44943 5.40662 5.35628 5.29797 5.2316 5.15794 5.08039 5.00807 4.95529 4.91673 4.83497 4.65208 523.872 528.032 4.73875 4.90888 5.02818 5.13435 5.25187 5.36224 5.45512 5.5291 5.58669 5.63108 5.66487 5.68991 5.70743 5.71825 5.72288 5.72163 5.71463 5.70183 5.68307 5.65799 5.62607 5.58658 5.53864 5.48117 5.41299 5.33289 5.23969 5.13361 5.02005 4.91411 4.82753 4.72593 4.56308 524.387 528.011 4.67861 4.82151 4.91505 5.00272 5.12407 5.25519 5.37316 5.46884 5.54265 5.59831 5.63967 5.66969 5.69039 5.70309 5.70861 5.70741 5.69967 5.68535 5.66417 5.63564 5.59898 5.55324 5.49729 5.42999 5.35034 5.25767 5.15203 5.03571 4.91631 4.80873 4.72383 4.63099 4.49429 524.965 527.976 4.61918 4.74935 4.84387 4.95011 5.10346 5.26719 5.41114 5.52572 5.61282 5.67751 5.72466 5.75821 5.78105 5.79503 5.8013 5.80048 5.79279 5.77817 5.75623 5.72626 5.68721 5.63776 5.57645 5.50189 5.41285 5.3081 5.18671 5.04979 4.90502 4.77101 4.66698 4.5704 4.44997 525.531 527.943 4.5678 4.68985 4.78492 4.895 5.05115 5.22055 5.37229 5.49568 5.59152 5.66366 5.71631 5.75343 5.77831 5.79332 5.79993 5.79893 5.79061 5.77484 5.75111 5.71847 5.67557 5.62082 5.55279 5.4705 5.37349 5.26173 5.13587 4.99844 4.85672 4.7271 4.62591 4.53372 4.42692 526.073 527.928 4.5342 4.65356 4.75993 4.89111 5.06801 5.25393 5.41598 5.54551 5.64561 5.72117 5.77649 5.81542 5.84136 5.85691 5.86373 5.86269 5.85408 5.83767 5.81275 5.77805 5.73175 5.67181 5.59643 5.50436 5.39491 5.268 5.1252 4.9718 4.81983 4.68981 4.5922 4.50763 4.41419 526.579 527.934 4.52794 4.65187 4.77472 4.92236 5.10091 5.27685 5.42572 5.54607 5.64224 5.71775 5.77485 5.81591 5.84362 5.8605 5.8683 5.86794 5.8597 5.8433 5.8179 5.782 5.73354 5.67042 5.59109 5.49465 5.38053 5.24857 5.1004 4.94213 4.78801 4.66247 4.56849 4.49046 4.40793 527.071 527.953 4.54242 4.67109 4.80164 4.94989 5.11682 5.28229 5.42734 5.55008 5.65264 5.73613 5.80087 5.84806 5.88024 5.90029 5.91034 5.91158 5.90438 5.88843 5.86276 5.82566 5.77477 5.70776 5.62294 5.51929 5.3961 5.25345 5.09404 4.92629 4.76753 4.64471 4.55331 4.48033 4.4063 527.53 527.97 4.56194 4.69151 4.81877 4.95659 5.10401 5.25594 5.39372 5.51503 5.62163 5.71302 5.78687 5.84205 5.88026 5.90467 5.91805 5.922 5.91709 5.90312 5.8792 5.84367 5.79435 5.72908 5.64631 5.54471 5.42273 5.27902 5.11501 4.93957 4.77331 4.64647 4.55207 4.47998 4.41093 527.944 527.966 4.56819 4.69392 4.80884 4.92966 5.0542 5.18818 5.32056 5.44768 5.56874 5.67883 5.77096 5.84084 5.88931 5.92046 5.93832 5.94528 5.94228 5.92934 5.90581 5.87018 5.82046 5.75485 5.67231 5.57216 5.45312 5.31313 5.15152 4.97473 4.80351 4.66866 4.56657 4.49117 4.42404 528.292 527.938 4.55411 4.67578 4.7795 4.88832 4.99649 5.11196 5.24077 5.37745 5.51607 5.64553 5.75453 5.83706 5.89376 5.92976 5.95042 5.95907 5.95681 5.94397 5.92038 5.88465 5.8349 5.76962 5.68829 5.59087 5.4766 5.34324 5.18867 5.01667 4.84634 4.70515 4.59428 4.51336 4.4462 528.574 527.904 4.52935 4.65039 4.74894 4.85058 4.94799 5.05126 5.18253 5.33558 5.49529 5.64192 5.76159 5.84976 5.90903 5.94568 5.96589 5.97305 5.96866 5.9532 5.92662 5.88749 5.83387 5.76481 5.68104 5.58401 5.47401 5.34885 5.20535 5.04513 4.88523 4.74481 4.62886 4.54341 4.4756 528.796 527.885 4.51024 4.63186 4.72872 4.82565 4.91916 5.02895 5.18498 5.36762 5.54614 5.69671 5.81085 5.89064 5.94229 5.97272 5.98768 5.98998 5.98098 5.96091 5.92937 5.8843 5.82346 5.74653 5.65598 5.55525 5.4461 5.32683 5.19402 5.04882 4.90651 4.77464 4.66008 4.57428 4.50661 528.983 527.889 4.50835 4.62892 4.72542 4.82404 4.93126 5.07788 5.27351 5.47416 5.64483 5.77415 5.86621 5.92883 5.96882 5.99144 6.00053 5.99769 5.98365 5.95817 5.92017 5.86674 5.79531 5.70681 5.60623 5.49956 5.3902 5.27693 5.15644 5.03063 4.90797 4.78868 4.68061 4.5987 4.53154 529.163 527.918 4.52761 4.6476 4.74976 4.86574 5.00875 5.20105 5.41386 5.59791 5.73672 5.83665 5.90802 5.95795 5.99062 6.00876 6.01447 6.00827 5.99039 5.96011 5.91537 5.85227 5.76768 5.66386 5.54848 5.43081 5.31742 5.20895 5.10261 4.99977 4.89608 4.78962 4.68965 4.61212 4.54314 529.357 527.972 4.56695 4.69 4.80709 4.95304 5.13205 5.33976 5.53197 5.67966 5.78603 5.86355 5.92191 5.96561 5.99611 6.01411 6.02038 6.01455 5.99645 5.96488 5.91684 5.84757 5.75285 5.63478 5.50206 5.36724 5.2427 5.13452 5.04193 4.96117 4.87564 4.78181 4.68987 4.61367 4.53844 529.577 528.046 4.6229 4.75083 4.88562 5.05628 5.2464 5.4345 5.59287 5.70814 5.78999 5.85212 5.90389 5.94813 5.98345 6.00795 6.02106 6.02182 6.00987 5.98388 5.94047 5.87414 5.77945 5.65529 5.50749 5.34906 5.19904 5.07463 4.98278 4.91665 4.84786 4.76714 4.68293 4.60626 4.52286 529.796 528.12 4.68313 4.81059 4.95278 5.13301 5.31584 5.47515 5.5995 5.6868 5.74629 5.79292 5.83881 5.8876 5.93472 5.97361 6.00081 6.01528 6.01686 6.0048 5.97641 5.92641 5.84901 5.73884 5.59429 5.42121 5.23724 5.06998 4.94496 4.86997 4.81202 4.74579 4.67108 4.59565 4.50623 529.974 528.15 4.72254 4.84538 4.98182 5.16126 5.33715 5.47768 5.57343 5.63092 5.66192 5.68316 5.71377 5.76428 5.82938 5.89357 5.94484 5.98043 6.00122 6.00839 6.00101 5.97572 5.92784 5.85259 5.74229 5.59125 5.40188 5.19302 5.00151 4.86578 4.78867 4.72715 4.66124 4.58968 4.4985 530.069 528.095 4.70477 4.84497 4.98472 5.15223 5.32397 5.46043 5.54429 5.57607 5.57029 5.55035 5.54445 5.57864 5.65728 5.75695 5.84681 5.91246 5.95621 5.98304 5.99484 5.99054 5.96826 5.92724 5.86229 5.7652 5.62504 5.43598 5.21192 4.99573 4.84118 4.74459 4.67046 4.59901 4.50769 530.043 527.998 4.64476 4.81842 4.97268 5.13015 5.29016 5.42081 5.50206 5.52695 5.49948 5.43973 5.38865 5.39146 5.469 5.59918 5.73368 5.83639 5.90485 5.94887 5.97464 5.98304 5.97408 5.94982 5.91072 5.85396 5.77104 5.6476 5.47056 5.24637 5.02092 4.85242 4.73343 4.64146 4.54021 529.896 527.914 4.57362 4.76728 4.9372 5.09142 5.23313 5.34744 5.41751 5.43145 5.38387 5.29356 5.22406 5.23893 5.35034 5.51741 5.68166 5.80446 5.88385 5.93325 5.96145 5.97099 5.96439 5.94506 5.91606 5.87801 5.82628 5.74978 5.63242 5.45945 5.24084 5.03039 4.85691 4.72521 4.6008 529.679 527.86 4.51794 4.71261 4.88277 5.02916 5.15266 5.24176 5.27574 5.23838 5.1424 5.05531 5.06332 5.1874 5.38404 5.58778 5.74831 5.85143 5.91151 5.94407 5.95605 5.95135 5.935 5.9125 5.88882 5.86547 5.83717 5.79166 5.71232 5.58395 5.40442 5.19622 4.9943 4.82947 4.68182 529.502 527.838 4.49395 4.67857 4.82696 4.93943 5.01068 5.02341 4.9724 4.89724 4.87674 4.97161 5.16939 5.40938 5.62811 5.78547 5.87548 5.91876 5.93431 5.93042 5.91235 5.88596 5.85852 5.83746 5.82758 5.82793 5.82963 5.81624 5.76939 5.67313 5.51883 5.31585 5.10064 4.92152 4.76386 529.462 527.847 4.4864 4.63562 4.72484 4.76417 4.76098 4.74416 4.77174 4.8967 5.11602 5.37526 5.61149 5.78234 5.87549 5.90858 5.90879 5.89127 5.86096 5.82147 5.77955 5.74506 5.72807 5.73505 5.76545 5.81026 5.85335 5.87504 5.85583 5.77726 5.62586 5.40852 5.17062 4.98751 4.83211 529.569 527.876 4.4862 4.59675 4.65664 4.7028 4.78524 4.94838 5.19093 5.45478 5.67622 5.81949 5.88318 5.88728 5.861 5.82593 5.78584 5.7363 5.67747 5.6218 5.58809 5.59114 5.63617 5.71498 5.80777 5.8932 5.95609 5.98512 5.96735 5.88544 5.72446 5.49072 5.23523 5.03868 4.87397 529.862 527.914 4.54364 4.68725 4.82408 5.00822 5.24729 5.50337 5.70446 5.81986 5.86098 5.85556 5.8264 5.78592 5.74227 5.69255 5.62541 5.53808 5.46319 5.44635 5.50348 5.60981 5.72802 5.83574 5.92628 5.99729 6.04414 6.05785 6.02554 5.93182 5.76706 5.54119 5.2987 5.08086 4.88429 530.308 527.965 4.67492 4.90463 5.14192 5.39071 5.61461 5.76488 5.84243 5.86976 5.86568 5.83883 5.7913 5.72789 5.65843 5.57716 5.47443 5.37893 5.35035 5.40877 5.53014 5.67134 5.79639 5.89498 5.97252 6.0325 6.07146 6.08041 6.04631 5.95594 5.80373 5.60049 5.37385 5.1309 4.88273 530.82 528.024 4.80033 5.07878 5.34186 5.56855 5.7403 5.85273 5.91083 5.92267 5.90024 5.85652 5.79849 5.7268 5.64387 5.54956 5.434 5.30893 5.23203 5.25094 5.36968 5.5509 5.7333 5.86596 5.94235 5.97909 5.99072 5.98294 5.95152 5.88543 5.77416 5.61527 5.41123 5.15206 4.86102 531.471 528.05 4.86152 5.14431 5.39333 5.62344 5.80911 5.93872 6.00636 6.0131 5.97399 5.91428 5.85293 5.79336 5.72433 5.63567 5.52722 5.38856 5.22455 5.09227 5.04506 5.10382 5.26355 5.48596 5.70853 5.86878 5.94199 5.93939 5.8788 5.77787 5.64974 5.49697 5.31083 5.07078 4.79143 532.148 528.043 4.86582 5.13086 5.37065 5.64247 5.8863 6.05752 6.14745 6.16551 6.11895 6.01761 5.90156 5.82859 5.8005 5.77171 5.72442 5.65598 5.54843 5.3859 5.18352 5.00253 4.88309 4.84528 4.91467 5.08032 5.30227 5.52297 5.67166 5.70741 5.64348 5.50412 5.30726 5.0566 4.76684 532.479 528.03 4.84819 5.12787 5.38012 5.65369 5.90437 6.08506 6.18778 6.22606 6.21835 6.17922 6.11298 6.00955 5.85646 5.69092 5.62037 5.67224 5.73447 5.73318 5.67608 5.5714 5.40585 5.18583 4.97622 4.80724 4.69854 4.69217 4.79446 4.96452 5.12949 5.20665 5.16546 5.01271 4.76807 532.661 528.015 4.81976 5.12873 5.38861 5.62828 5.84618 6.01655 6.13086 6.19348 6.21363 6.20152 6.16626 6.1152 6.05348 5.98185 5.89026 5.75464 5.57569 5.4361 5.43387 5.54883 5.67306 5.7287 5.70552 5.60011 5.38806 5.12851 4.88675 4.7163 4.6582 4.70399 4.77872 4.78916 4.69963 532.765 527.978 4.79246 5.13576 5.40793 5.62771 5.81698 5.97086 6.0832 6.15418 6.18889 6.19465 6.1786 6.14651 6.10245 6.04799 5.98134 5.89837 5.79881 5.69312 5.59548 5.51569 5.46219 5.44251 5.46173 5.52933 5.63234 5.70318 5.67284 5.51069 5.26029 5.02635 4.87662 4.79731 4.72387 531.861 527.927 4.74363 5.09999 5.37797 5.57914 5.73335 5.85395 5.94611 6.01425 6.06218 6.09246 6.10613 6.10321 6.08237 6.03972 5.9682 5.86438 5.74005 5.61796 5.52122 5.47203 5.47956 5.52109 5.56944 5.61934 5.66985 5.7156 5.75084 5.75948 5.70474 5.55348 5.33445 5.10884 4.9112 530.006 527.873 4.65662 4.97706 5.2292 5.41886 5.57632 5.7159 5.83664 5.93165 5.9947 6.02251 6.00934 5.94641 5.83672 5.70101 5.56559 5.45129 5.37422 5.34142 5.3541 5.41155 5.49632 5.58851 5.68372 5.77873 5.86129 5.9168 5.93244 5.90127 5.82443 5.70299 5.52717 5.29865 5.05319 528.937 527.848 4.67736 5.01125 5.26732 5.45118 5.58176 5.6646 5.69693 5.66749 5.57655 5.45388 5.32881 5.22172 5.14759 5.11357 5.12013 5.17007 5.2698 5.39697 5.52161 5.63957 5.76334 5.89823 6.02935 6.13366 6.1972 6.20741 6.15663 6.052 5.90777 5.73397 5.53108 5.30652 5.04702 528.847 527.868 4.72597 5.01491 5.16499 5.21499 5.19216 5.1147 5.0236 4.95341 4.92379 4.93743 4.98416 5.05807 5.15935 5.27498 5.39876 5.54408 5.71384 5.86444 5.95312 6.0077 6.08451 6.18641 6.28299 6.35135 6.38368 6.37548 6.31197 6.17469 5.96463 5.71679 5.47394 5.25705 5.00127 529.294 527.898 4.65544 4.82629 4.87816 4.87482 4.87923 4.92431 5.00863 5.12362 5.26399 5.40114 5.50679 5.59188 5.65118 5.66317 5.67785 5.76164 5.8996 6.03407 6.13602 6.20828 6.26561 6.31821 6.36793 6.40971 6.43324 6.42312 6.3565 6.20784 5.96721 5.66832 5.38707 5.16187 4.92027 530.123 527.96 4.74407 4.95613 5.11263 5.27439 5.43638 5.54177 5.55166 5.50272 5.43576 5.38158 5.3883 5.47112 5.6075 5.75678 5.88527 5.98751 6.06983 6.13733 6.19407 6.24333 6.28747 6.3278 6.36403 6.3931 6.40837 6.39806 6.34449 6.22639 6.02843 5.76144 5.47452 5.20119 4.91429 530.701 527.995 4.89482 5.22284 5.51177 5.6813 5.71481 5.65784 5.56456 5.48077 5.42538 5.3928 5.38506 5.41516 5.50609 5.64678 5.80284 5.94803 6.06882 6.16052 6.22526 6.26738 6.29028 6.29573 6.28441 6.25645 6.21209 6.14969 6.06422 5.94758 5.79188 5.59595 5.36741 5.11116 4.83654 531.657 528.079 5.17427 5.58021 5.86172 5.98905 6.01331 5.95249 5.81305 5.62521 5.43057 5.26419 5.1447 5.0875 5.1137 5.20657 5.32433 5.44853 5.57802 5.71196 5.84507 5.96793 6.06861 6.13764 6.17216 6.17413 6.14588 6.08775 5.9977 5.87253 5.70943 5.50737 5.26809 4.99928 4.71706 531.973 528.188 5.33263 5.77971 6.10808 6.34418 6.50163 6.57456 6.53101 6.33453 5.99256 5.58628 5.23754 5.02392 4.9344 4.90732 4.88934 4.86616 4.84963 4.85956 4.91138 5.00776 5.13103 5.25134 5.34926 5.41792 5.45707 5.46814 5.4523 5.40887 5.33386 5.22159 5.06801 4.87326 4.6371 533.243 528.238 5.34292 5.79827 6.17255 6.50746 6.72036 6.79699 6.78052 6.71173 6.61746 6.51388 6.40521 6.28444 6.14117 5.96571 5.75225 5.50338 5.23404 4.96668 4.73611 4.60221 4.59653 4.66697 4.74513 4.80688 4.85416 4.88872 4.90832 4.91045 4.89473 4.85771 4.7915 4.68708 4.5385 532.773 528.07 5.02253 5.47112 5.80728 6.07759 6.28946 6.42398 6.48288 6.48411 6.45061 6.40374 6.35796 6.31642 6.27951 6.25012 6.22973 6.21822 6.20937 6.18151 6.10197 5.94759 5.72501 5.46698 5.21101 5.0051 4.9167 4.94797 5.00543 5.03225 5.02193 4.97132 4.88086 4.73664 4.5104 527.058 527.826 4.5658 4.89037 5.19686 5.47418 5.71228 5.9041 6.0462 6.14145 6.19812 6.22606 6.23351 6.22609 6.2077 6.18117 6.14798 6.10877 6.06415 6.0144 5.95948 5.89904 5.83096 5.75282 5.66621 5.57252 5.46869 5.34172 5.17503 4.96691 4.75404 4.64748 4.70377 4.74865 4.67269 524.522 527.813 4.51506 4.75836 4.96658 5.13852 5.26921 5.35601 5.40103 5.41471 5.40869 5.39097 5.36604 5.33645 5.30379 5.26929 5.23443 5.20076 5.16894 5.1391 5.11164 5.08713 5.0658 5.04871 5.03751 5.03265 5.03259 5.03434 5.03316 5.02245 4.9896 4.9414 4.78425 4.57208 4.5243 524.18 527.946 4.59791 4.74203 4.83368 4.89841 4.94008 4.96487 4.9825 5.00152 5.02688 5.05978 5.09662 5.12978 5.15355 5.16904 5.18075 5.19261 5.20709 5.22606 5.2534 5.29189 5.34327 5.40931 5.49243 5.59383 5.70903 5.8317 5.95164 6.0594 6.14499 6.19199 6.16619 6.01215 5.61955 525.052 527.856 4.48525 4.67555 4.83832 4.96751 5.06682 5.14376 5.21602 5.29667 5.39188 5.4997 5.60336 5.68331 5.7421 5.81583 5.92507 6.05177 6.18035 6.30598 6.42079 6.51444 6.58356 6.63215 6.66639 6.69094 6.70724 6.71487 6.70901 6.67826 6.60459 6.46843 6.25976 5.97701 5.52535 526.213 527.765 4.65128 5.01461 5.23376 5.32701 5.36847 5.38725 5.44453 5.58522 5.75728 5.91551 6.05388 6.16251 6.24095 6.30271 6.35694 6.40614 6.45106 6.49171 6.52817 6.56095 6.59108 6.61967 6.6473 6.67358 6.69788 6.71916 6.73242 6.72495 6.67498 6.55522 6.35139 6.06885 5.61123 527.145 527.805 4.82905 5.11547 5.19602 5.21926 5.24081 5.28852 5.37286 5.49803 5.65391 5.82009 5.97768 6.11368 6.22376 6.30985 6.37586 6.42623 6.46497 6.49535 6.52074 6.54479 6.57113 6.60272 6.64145 6.68874 6.7447 6.80523 6.86039 6.89271 6.87509 6.77459 6.57361 6.27667 5.79464 527.072 527.909 5.02129 5.26552 5.28136 5.2346 5.18138 5.15668 5.18521 5.2766 5.42028 5.59604 5.78154 5.95438 6.09773 6.21591 6.31497 6.39391 6.45313 6.49508 6.52412 6.54649 6.56983 6.60269 6.6546 6.73083 6.82452 6.92217 7.00688 7.05622 7.04156 6.93503 6.72064 6.3741 5.79745 528.132 527.958 5.23124 5.41304 5.29325 5.10811 4.97237 4.95281 5.04422 5.1735 5.28974 5.39336 5.49578 5.60486 5.72897 5.87673 6.04839 6.22991 6.38683 6.50646 6.59419 6.65215 6.68476 6.70089 6.71057 6.72109 6.73435 6.74574 6.74356 6.71103 6.63063 6.48666 6.26218 5.91765 5.38332 531.69 528.143 5.66485 5.99324 5.8256 5.4417 5.18374 5.12997 5.15029 5.14734 5.11157 5.04817 4.95579 4.84671 4.75904 4.74537 4.84015 5.03443 5.28227 5.54092 5.78746 6.00796 6.18999 6.32419 6.41537 6.47331 6.50122 6.49795 6.45722 6.36868 6.22439 6.02262 5.76126 5.42289 4.97771 532.267 528.106 5.33479 5.7468 6.01455 6.23079 6.3772 6.43748 6.42169 6.34316 6.20189 5.98366 5.67255 5.27789 4.85338 4.50032 4.34891 4.41142 4.5576 4.70152 4.84551 5.00363 5.17407 5.3435 5.4967 5.6252 5.72447 5.79083 5.81864 5.80004 5.72769 5.60007 5.41881 5.17505 4.84609 535.263 528.001 5.12353 5.53565 5.77803 5.94437 6.05661 6.11847 6.13981 6.13429 6.1165 6.102 6.10485 6.1189 6.09607 5.97501 5.74033 5.42939 5.10278 4.82325 4.63499 4.54488 4.55313 4.65121 4.80601 4.98074 5.14481 5.27489 5.35441 5.3748 5.33968 5.2615 5.14451 4.98015 4.7366 533.519 527.846 4.68504 5.02888 5.28818 5.48509 5.633 5.7385 5.80883 5.85346 5.87902 5.88991 5.88863 5.87542 5.84833 5.8049 5.74592 5.67619 5.6025 5.534 5.4771 5.42918 5.37814 5.30468 5.19808 5.0657 4.93948 4.87403 4.91483 5.0472 5.20194 5.30517 5.30299 5.16974 4.85764 525.977 527.818 4.55217 4.79275 4.96075 5.07659 5.15107 5.19318 5.21243 5.21593 5.20789 5.19007 5.16358 5.13007 5.09162 5.04996 5.00661 4.96299 4.92171 4.88709 4.86729 4.87491 4.92262 5.00791 5.11801 5.23905 5.35772 5.46071 5.53381 5.5647 5.55261 5.52506 5.53543 5.5314 5.25325 524.691 527.87 4.55527 4.74258 4.86976 4.95727 5.01848 5.06631 5.10837 5.14609 5.17551 5.19074 5.19052 5.17892 5.16158 5.14235 5.12395 5.11029 5.10722 5.1256 5.18554 5.30885 5.49992 5.739 5.9954 6.24178 6.46383 6.65199 6.79566 6.87812 6.87314 6.7485 6.48515 6.10518 5.56275 525.969 527.774 4.50276 4.74686 4.90721 5.0126 5.10586 5.21158 5.32808 5.44158 5.5368 5.6143 5.70452 5.83132 5.96817 6.09581 6.2176 6.33562 6.44462 6.53901 6.61827 6.68637 6.74903 6.8114 6.87649 6.94535 7.01793 7.08744 7.14063 7.16045 7.12183 6.98894 6.73346 6.34861 5.7535 525.883 527.868 4.78792 5.00815 5.0452 5.02839 5.10465 5.35085 5.6378 5.87555 6.04404 6.14861 6.22347 6.28768 6.34523 6.39759 6.44581 6.49105 6.53454 6.57774 6.62236 6.67002 6.72188 6.77827 6.83837 6.89999 6.95939 7.01306 7.05129 7.05351 6.99566 6.85746 6.63057 6.29418 5.72517 527.114 528.014 4.87035 4.94077 4.91111 4.95024 5.04064 5.14676 5.2638 5.38852 5.51883 5.65086 5.77827 5.89721 6.00673 6.1076 6.20059 6.28732 6.36923 6.44747 6.52298 6.59623 6.66706 6.7345 6.79641 6.85006 6.88993 6.90634 6.88679 6.81715 6.68332 6.4735 6.17824 5.78032 5.22058 529.071 527.939 4.8704 4.96837 5.09453 5.18615 5.20703 5.21076 5.19824 5.1823 5.16968 5.16576 5.17355 5.19226 5.21928 5.25194 5.28836 5.32849 5.37187 5.41801 5.46624 5.51575 5.56623 5.61811 5.67242 5.72968 5.78861 5.84265 5.87891 5.88026 5.83312 5.72874 5.55917 5.31104 4.94034 533.634 528.397 5.85271 6.27923 6.45113 6.50792 6.50233 6.45139 6.3626 6.24216 6.09906 5.95147 5.81944 5.71644 5.64181 5.58716 5.54534 5.51307 5.48894 5.47094 5.45604 5.44113 5.42409 5.40348 5.37697 5.34172 5.29804 5.25125 5.20561 5.15906 5.10642 5.04071 4.95243 4.82791 4.64602 532.757 528.305 5.59499 6.0172 6.28434 6.49159 6.63597 6.72884 6.78707 6.82328 6.84326 6.85077 6.84702 6.8319 6.80429 6.76213 6.70304 6.62636 6.5364 6.44371 6.35991 6.29063 6.23536 6.19279 6.15951 6.11847 6.04595 5.93703 5.79979 5.64377 5.47833 5.30617 5.11867 4.89297 4.59224 526.501 528.143 5.52384 6.08572 6.42341 6.65719 6.81848 6.91234 6.95058 6.94969 6.92591 6.88978 6.84619 6.79922 6.75171 6.70544 6.66119 6.61888 6.57739 6.53535 6.49137 6.44432 6.39346 6.33852 6.28008 6.21688 6.14065 6.04183 5.92769 5.81271 5.7006 5.59252 5.47932 5.33762 5.06258 525.145 527.87 4.82808 5.26405 5.59017 5.83727 6.02655 6.16886 6.27138 6.34162 6.38685 6.41301 6.42698 6.43414 6.43794 6.44036 6.44196 6.44221 6.43936 6.4303 6.41173 6.3805 6.33262 6.26482 6.17637 6.07012 5.95262 5.82951 5.71068 5.6106 5.53936 5.4954 5.4598 5.37853 5.12189 524.04 527.803 4.61851 4.94861 5.21383 5.42009 5.56981 5.66263 5.70012 5.69672 5.66811 5.62567 5.57671 5.52694 5.48166 5.44468 5.41906 5.40525 5.40066 5.40088 5.40218 5.40198 5.39885 5.39131 5.37797 5.3587 5.33316 5.3038 5.27654 5.25837 5.25815 5.28617 5.34751 5.4059 5.23932 524.533 527.907 4.71166 4.91426 5.01804 5.07193 5.08124 5.05806 5.02394 4.99686 4.98137 4.97428 4.97377 4.9805 4.99651 5.02464 5.06399 5.11001 5.15787 5.2039 5.24611 5.28489 5.32144 5.35724 5.39347 5.43238 5.4746 5.52372 5.58645 5.67258 5.78968 5.93576 6.08908 6.14323 5.83398 524.732 527.899 4.70028 4.97884 5.18946 5.34045 5.43601 5.49213 5.52455 5.55308 5.59545 5.65476 5.7305 5.82686 5.94335 6.06676 6.17865 6.26741 6.33352 6.3851 6.43209 6.48205 6.53873 6.602 6.66865 6.73338 6.78907 6.82916 6.84521 6.8245 6.74833 6.59522 6.35548 6.04135 5.5681 525.937 527.862 5.02972 5.53332 5.82996 5.93058 5.9093 5.8392 5.74045 5.65664 5.64048 5.68624 5.76826 5.86851 5.9747 6.08101 6.18427 6.28143 6.37037 6.45049 6.52255 6.58772 6.64702 6.70078 6.74851 6.78872 6.81885 6.83515 6.83081 6.79277 6.70383 6.54876 6.32315 6.01968 5.53226 526.813 527.89 5.4352 5.91647 6.04311 6.02084 5.97233 5.93355 5.90124 5.86638 5.82487 5.78014 5.74169 5.71869 5.72227 5.76138 5.83561 5.93845 6.06224 6.19857 6.33666 6.4639 6.57078 6.65399 6.71389 6.74976 6.75942 6.73902 6.68348 6.58818 6.45013 6.2691 6.04536 5.75305 5.29597 528.643 528.052 5.56516 6.05759 6.24829 6.30232 6.30003 6.25551 6.17774 6.08172 5.97887 5.87716 5.78369 5.70448 5.64382 5.604 5.5851 5.58597 5.60617 5.64696 5.71135 5.8016 5.91756 6.05527 6.20516 6.34983 6.46517 6.53036 6.53777 6.48723 6.37722 6.20517 5.97025 5.65735 5.19438 529.494 528.099 5.40176 5.90584 6.26554 6.54287 6.71826 6.79402 6.79018 6.72769 6.62162 6.4851 6.33574 6.19529 6.07863 5.98556 5.9063 5.83108 5.75129 5.65911 5.55713 5.46022 5.38403 5.33769 5.33072 5.37257 5.46371 5.58811 5.72017 5.82956 5.88015 5.84529 5.71168 5.46419 5.06258 531.927 528.086 5.45075 5.95043 6.27864 6.51122 6.65157 6.71915 6.74062 6.73561 6.71627 6.69009 6.66159 6.63448 6.60986 6.58672 6.56248 6.53205 6.48458 6.40225 6.27444 6.11384 5.94019 5.76079 5.57988 5.42048 5.30725 5.23868 5.20269 5.19268 5.20025 5.20613 5.17544 5.06977 4.84818 533.919 528.151 5.48596 5.98814 6.32173 6.5616 6.70035 6.75613 6.75742 6.72778 6.68373 6.63592 6.58883 6.54464 6.50459 6.46772 6.43139 6.39189 6.34556 6.28536 6.2058 6.11737 6.04257 5.99797 5.97913 5.96769 5.94705 5.90737 5.83367 5.70891 5.54879 5.38099 5.21482 5.04103 4.80844 530.907 528.13 5.35463 5.84966 6.18522 6.44365 6.62121 6.71712 6.74802 6.73489 6.69528 6.64216 6.58492 6.52969 6.47909 6.43249 6.38707 6.33926 6.28617 6.22754 6.16889 6.12156 6.09565 6.08865 6.09095 6.096 6.09837 6.0957 6.0841 6.05254 5.97976 5.83535 5.59309 5.25227 4.90132 527.553 528.059 5.1355 5.61108 5.93204 6.16986 6.34435 6.45777 6.51993 6.54467 6.54455 6.52845 6.50106 6.46368 6.41498 6.3519 6.27273 6.18308 6.0991 6.03956 6.01683 6.0335 6.07785 6.13208 6.18673 6.2343 6.26787 6.28331 6.27164 6.21604 6.10175 5.92023 5.66331 5.33032 4.95097 527.316 528.003 4.90385 5.31484 5.61414 5.84472 6.03522 6.18948 6.30525 6.37968 6.41104 6.39833 6.34073 6.24239 6.12092 6.00547 5.92736 5.90736 5.94563 6.02774 6.12843 6.22599 6.31214 6.38581 6.4454 6.48651 6.50186 6.48202 6.41757 6.30289 6.13609 5.91734 5.65038 5.34885 4.97501 527.721 528.042 4.91265 5.3134 5.61373 5.84422 6.02872 6.16664 6.25032 6.2717 6.2299 6.14192 6.04066 5.95929 5.91997 5.93061 5.98297 6.05622 6.13507 6.21229 6.28629 6.35687 6.4242 6.4873 6.54214 6.58264 6.60307 6.59495 6.54529 6.44025 6.27049 6.03801 5.76229 5.469 5.08557 528.125 528.253 5.11307 5.47972 5.73841 5.92113 6.04352 6.10771 6.11795 6.08781 6.04162 6.00554 5.99435 6.00807 6.03961 6.08144 6.12927 6.18138 6.23757 6.29696 6.35789 6.42126 6.48738 6.55221 6.61015 6.6547 6.67906 6.6722 6.62047 6.51188 6.33875 6.10522 5.83427 5.54511 5.15324 528.692 528.537 5.32789 5.62959 5.82782 5.95833 6.02299 6.02619 5.99108 5.95396 5.94388 5.96428 6.00018 6.03711 6.0695 6.09861 6.12875 6.16399 6.20619 6.25523 6.31102 6.37436 6.44448 6.51751 6.58963 6.65429 6.69744 6.7032 6.6598 6.55793 6.39185 6.16557 5.89787 5.60047 5.19229 528.937 528.47 5.28973 5.65504 5.8687 5.99169 6.05745 6.0702 6.04355 6.0029 5.97371 5.96364 5.96111 5.95453 5.94551 5.94436 5.9594 5.98907 6.02573 6.06545 6.11246 6.17164 6.24316 6.32555 6.42188 6.53188 6.63208 6.69344 6.69735 6.63304 6.4957 6.29021 6.03297 5.72963 5.29381 528.788 528.192 4.97599 5.34444 5.61483 5.77802 5.87498 5.93449 5.96981 5.99286 6.01883 6.05317 6.08828 6.10984 6.10643 6.07255 6.01054 5.93552 5.87449 5.85149 5.87008 5.91226 5.96834 6.04286 6.13593 6.25917 6.41947 6.57108 6.67251 6.69622 6.62776 6.46983 6.24162 5.94857 5.48644 528.673 528.01 4.7441 5.06906 5.34284 5.55716 5.71639 5.84 5.94382 6.03481 6.11658 6.18896 6.24532 6.27687 6.27668 6.24097 6.1703 6.07263 5.96422 5.86465 5.7921 5.76129 5.77434 5.81656 5.87964 5.97037 6.10362 6.27602 6.44942 6.58044 6.62924 6.5706 6.40637 6.14905 5.69197 528.502 527.942 4.70758 5.03468 5.31076 5.53985 5.72253 5.86819 5.98813 6.08708 6.16546 6.22205 6.25341 6.25653 6.23004 6.17467 6.09438 5.99655 5.89213 5.79545 5.7245 5.6957 5.71226 5.76496 5.85277 5.98147 6.13691 6.29591 6.44259 6.56076 6.62509 6.60345 6.47358 6.22911 5.76496 528.778 527.959 4.74061 5.05574 5.3035 5.49845 5.64996 5.76727 5.85668 5.92101 5.96137 5.97889 5.97523 5.95273 5.91434 5.86362 5.80623 5.75126 5.71128 5.69898 5.71948 5.77184 5.86109 5.99067 6.14716 6.30791 6.45369 6.57279 6.65903 6.70616 6.70287 6.63185 6.47868 6.22741 5.76885 529.659 528.001 4.72996 4.98744 5.1679 5.29779 5.39376 5.46407 5.51298 5.54348 5.55835 5.56015 5.55177 5.53765 5.52494 5.52312 5.54043 5.58187 5.65117 5.74702 5.86417 5.99794 6.14231 6.2939 6.44904 6.59994 6.73492 6.84146 6.90947 6.93106 6.89779 6.80049 6.6366 6.39722 5.96651 529.216 527.975 4.65601 4.86648 5.00087 5.09319 5.16534 5.22644 5.27933 5.32556 5.36845 5.41394 5.4688 5.53997 5.63122 5.73952 5.85774 5.97641 6.08927 6.19398 6.29209 6.3871 6.4843 6.59091 6.71228 6.84491 6.97374 7.07819 7.13926 7.14433 7.08757 6.96924 6.79492 6.54954 6.10084 530.79 527.939 4.73706 4.98034 5.14408 5.28431 5.41159 5.5277 5.6387 5.75294 5.87567 6.00305 6.12492 6.23419 6.32999 6.41476 6.48944 6.55313 6.60503 6.6452 6.6752 6.69858 6.72101 6.74992 6.79426 6.86012 6.94095 7.01597 7.05888 7.04823 6.97417 6.84079 6.65684 6.38288 5.87904 533.436 527.973 4.97173 5.2763 5.47609 5.64116 5.78092 5.91721 6.06751 6.23169 6.39831 6.55586 6.69615 6.81396 6.91013 6.98944 7.05368 7.10219 7.13388 7.14739 7.1416 7.11633 7.0732 7.01639 6.95002 6.87931 6.81259 6.75419 6.69831 6.62778 6.52209 6.36693 6.15013 5.83755 5.37763 534.427 528.044 5.14828 5.5177 5.70855 5.79884 5.81311 5.80664 5.83503 5.91808 6.04694 6.20273 6.36875 6.53454 6.69418 6.84447 6.9836 7.10997 7.22162 7.31598 7.38991 7.43995 7.46268 7.45449 7.41101 7.32702 7.19833 7.02474 6.81377 6.57962 6.33552 6.08184 5.7911 5.43737 5.06974 535.3 528.006 5.01134 5.45092 5.68103 5.77566 5.76161 5.64959 5.47663 5.30069 5.1779 5.13887 5.1804 5.27919 5.41175 5.56287 5.7237 5.88861 6.05422 6.21829 6.37878 6.53334 6.67932 6.81386 6.93316 7.03156 7.09943 7.12064 7.07394 6.94871 6.75577 6.51981 6.25137 5.92753 5.50432 534.029 527.926 4.70357 5.04671 5.25568 5.32969 5.30446 5.20285 5.04311 4.85616 4.68585 4.57356 4.53722 4.56598 4.63543 4.72302 4.81569 4.9087 4.99986 5.08914 5.17838 5.26974 5.36566 5.46819 5.5798 5.70462 5.8495 6.024 6.23509 6.468 6.65611 6.70632 6.60088 6.33558 5.81948 534.558 527.89 4.5384 4.73177 4.8387 4.8853 4.90172 4.90691 4.91229 4.92665 4.95701 5.00668 5.07317 5.14903 5.22567 5.29676 5.3582 5.40702 5.4406 5.45658 5.45434 5.43499 5.40078 5.35383 5.2952 5.2253 5.14697 5.07332 5.04147 5.11853 5.35148 5.65895 5.85578 5.81421 5.45232 536.236 527.93 4.7616 5.0348 5.20599 5.33853 5.45475 5.55721 5.6464 5.72373 5.79121 5.8505 5.90232 5.94645 5.98228 6.00959 6.02793 6.03682 6.03585 6.02441 6.00193 5.96778 5.92122 5.86114 5.78591 5.69383 5.58419 5.45796 5.32204 5.19693 5.12118 5.1252 5.17993 5.21185 5.16765 533.499 527.932 4.78673 5.15618 5.45191 5.69168 5.88338 6.03694 6.15866 6.25443 6.32938 6.38752 6.43126 6.46177 6.47975 6.48567 6.48005 6.46371 6.43777 6.40362 6.36277 6.31676 6.2671 6.2154 6.16291 6.10786 6.04721 5.97789 5.89033 5.76108 5.56311 5.33615 5.21435 5.22069 5.21564 532.224 527.863 4.85098 5.24787 5.5741 5.87363 6.13541 6.34602 6.51672 6.66151 6.78457 6.88952 6.97597 7.04067 7.0815 7.09874 7.09347 7.06715 7.02217 6.96216 6.8921 6.81801 6.74577 6.67728 6.61239 6.5498 6.48161 6.39327 6.26791 6.09427 5.88475 5.68279 5.50737 5.31903 5.04633 532.767 527.906 5.29986 5.82764 6.2009 6.4666 6.66403 6.81772 6.94129 7.04076 7.11753 7.17184 7.20508 7.22051 7.22209 7.21286 7.19438 7.16716 7.13086 7.08527 7.03029 6.96472 6.88798 6.80133 6.70608 6.60331 6.49024 6.36141 6.21495 6.05134 5.87154 5.67291 5.4413 5.15399 4.79528 532.118 528.024 5.67835 6.13966 6.32698 6.42324 6.48126 6.51017 6.51491 6.5017 6.47626 6.44346 6.40702 6.36904 6.33058 6.29192 6.25311 6.21373 6.17358 6.13212 6.08842 6.04162 5.99019 5.93238 5.86643 5.78976 5.6998 5.59483 5.47381 5.33718 5.18517 5.01781 4.83434 4.63834 4.44877 530.618 528.269 5.90244 6.35758 6.4288 6.35872 6.25173 6.14426 6.04667 5.95903 5.87915 5.80484 5.73392 5.66441 5.59321 5.51924 5.4442 5.36886 5.29305 5.21637 5.13831 5.05828 4.9755 4.88923 4.80171 4.71692 4.6387 4.57203 4.52024 4.48306 4.45456 4.42333 4.37824 4.31424 4.24023 528.441 528.229 5.9058 6.59232 6.86614 6.91368 6.85853 6.76338 6.65681 6.55245 6.45554 6.36633 6.28259 6.20129 6.1197 6.03572 5.94828 5.85697 5.7616 5.66219 5.55904 5.45266 5.34369 5.23271 5.1201 5.00638 4.89209 4.77829 4.6668 4.56304 4.47742 4.42407 4.40298 4.37691 4.29695 527.723 528.073 5.3755 6.00597 6.358 6.52769 6.59044 6.59164 6.55741 6.50279 6.43615 6.36184 6.28197 6.19761 6.1095 6.01831 5.92477 5.82963 5.73361 5.63718 5.54075 5.44451 5.34865 5.25323 5.15811 5.06299 4.96745 4.87106 4.77352 4.67514 4.57882 4.4809 4.37099 4.30365 4.29783 529.246 527.916 4.60608 4.88544 5.0756 5.18674 5.24131 5.25942 5.256 5.24097 5.22028 5.19725 5.17339 5.14914 5.12434 5.09866 5.07178 5.04346 5.01355 4.98176 4.94789 4.91162 4.87277 4.83132 4.78728 4.74056 4.69055 4.63566 4.57276 4.49643 4.39568 4.25457 4.1332 4.22167 4.40811 526.223 527.807 4.42251 4.58703 4.69503 4.79628 4.90656 5.01292 5.10203 5.17119 5.22324 5.26167 5.28898 5.30676 5.31612 5.3181 5.31435 5.30681 5.29771 5.2893 5.28328 5.27994 5.27776 5.27379 5.26461 5.247 5.21774 5.17327 5.10963 5.02423 4.9222 4.82705 4.7782 4.77753 4.7165 527.229 527.843 4.53684 4.73435 4.92767 5.12496 5.27551 5.38559 5.47357 5.54641 5.60505 5.65128 5.68705 5.71443 5.73556 5.75258 5.7659 5.77439 5.77664 5.77157 5.75898 5.73965 5.71483 5.68579 5.65376 5.61998 5.58535 5.55016 5.5139 5.47517 5.43166 5.37883 5.30396 5.17004 4.89795 531.403 527.909 4.68771 4.76686 4.79131 4.85505 4.91077 4.94925 4.97522 4.99233 5.00342 5.01137 5.01946 5.03016 5.04605 5.0691 5.10045 5.13976 5.18441 5.23023 5.27247 5.30638 5.32772 5.33324 5.32205 5.29704 5.26467 5.23111 5.19906 5.16709 5.12968 5.0772 4.99411 4.85683 4.62732 529.108 528.144 4.93303 5.08877 5.13359 5.15409 5.16742 5.17645 5.18147 5.18204 5.17782 5.16926 5.15643 5.13942 5.11724 5.08853 5.05217 5.00689 4.95279 4.89319 4.83523 4.78698 4.75627 4.74872 4.76531 4.80165 4.84972 4.89843 4.93595 4.9535 4.94999 4.91819 4.84266 4.70186 4.48117 526.341 528.142 4.96527 5.16561 5.25723 5.32246 5.38029 5.43047 5.46961 5.49462 5.50594 5.50208 5.4806 5.44063 5.38376 5.31351 5.23431 5.15836 5.09901 5.05821 5.03332 5.02101 5.01705 5.0177 5.02004 5.02292 5.02722 5.03514 5.04893 5.06897 5.091 5.10331 5.07829 4.95865 4.67616 525.967 528.043 4.88217 5.15013 5.28942 5.38876 5.48302 5.57119 5.63717 5.66914 5.66301 5.61251 5.50759 5.36049 5.20701 5.07658 4.98089 4.9194 4.88775 4.8803 4.89471 4.9301 4.98191 5.04442 5.11146 5.17961 5.24663 5.31118 5.37184 5.4253 5.46468 5.47133 5.40984 5.2329 4.89911 526.814 527.996 4.87148 5.17952 5.34117 5.44384 5.51904 5.56195 5.55449 5.47253 5.31354 5.12173 4.95097 4.83623 4.7805 4.77114 4.7956 4.84619 4.90843 4.97455 5.05305 5.15564 5.28293 5.42629 5.57254 5.70489 5.80602 5.86561 5.87997 5.84624 5.76033 5.62053 5.43432 5.21175 4.89315 527.754 527.995 4.87936 5.18379 5.3242 5.37876 5.3741 5.29564 5.13506 4.94671 4.80496 4.75249 4.77858 4.85661 4.95264 5.03062 5.08916 5.13976 5.1893 5.24922 5.3341 5.44256 5.5549 5.65292 5.7303 5.79141 5.83905 5.86939 5.87629 5.85124 5.78011 5.65217 5.4715 5.24891 4.9267 528.224 528.004 4.86145 5.13368 5.23148 5.23227 5.14649 4.99951 4.87524 4.85047 4.92363 5.02805 5.09845 5.12246 5.11573 5.09323 5.07049 5.06877 5.10964 5.19369 5.30246 5.41686 5.52525 5.6226 5.70822 5.78229 5.84336 5.88753 5.90823 5.89513 5.83566 5.72111 5.55406 5.33549 5.00001 528.529 527.992 4.78408 5.00922 5.09033 5.0808 5.01372 4.97264 5.01875 5.11541 5.18841 5.20917 5.18995 5.15497 5.11961 5.08906 5.06494 5.05693 5.08522 5.16198 5.27937 5.41309 5.53832 5.64471 5.73369 5.80866 5.87064 5.91727 5.94228 5.93535 5.88445 5.78139 5.62712 5.41505 5.07118 528.742 527.952 4.68435 4.8751 4.97065 5.02086 5.0658 5.14497 5.24252 5.30949 5.32865 5.30566 5.25481 5.19299 5.13379 5.08155 5.03507 4.99958 4.99482 5.04353 5.15429 5.31276 5.4818 5.62378 5.73275 5.8178 5.88565 5.93688 5.96641 5.96482 5.92098 5.82686 5.68141 5.47299 5.12386 529.228 527.925 4.66653 4.86546 4.99551 5.11378 5.2234 5.31856 5.38634 5.41648 5.40983 5.37233 5.31348 5.24468 5.17604 5.11363 5.05709 5.00191 4.95045 4.92539 4.95958 5.07389 5.2624 5.47857 5.65929 5.78548 5.87095 5.92847 5.95958 5.95793 5.91407 5.82058 5.6755 5.46496 5.11671 530.118 527.921 4.69495 4.91785 5.07276 5.21507 5.33336 5.41399 5.45553 5.46287 5.44226 5.40046 5.34505 5.2839 5.22309 5.16533 5.11069 5.05681 4.99803 4.93029 4.87011 4.86059 4.94265 5.13163 5.38884 5.62715 5.78991 5.88164 5.92383 5.92352 5.87707 5.78067 5.63503 5.42582 5.08766 531.121 527.931 4.73898 4.97954 5.14053 5.28347 5.40119 5.47603 5.50808 5.50551 5.47687 5.42932 5.37002 5.30688 5.2475 5.19662 5.15389 5.11449 5.07215 5.02008 4.94888 4.8578 4.78422 4.79206 4.92835 5.18447 5.47213 5.69073 5.80407 5.83596 5.80626 5.72069 5.58425 5.38578 5.06487 531.598 527.94 4.76595 5.01486 5.174 5.30989 5.42361 5.49908 5.53336 5.53272 5.50546 5.45885 5.39898 5.33207 5.26563 5.20759 5.16315 5.13173 5.1072 5.0812 5.04548 4.9895 4.89942 4.78314 4.70468 4.74721 4.94713 5.2391 5.5025 5.65256 5.68874 5.64327 5.53346 5.35197 5.04732 532.155 527.943 4.77057 5.02639 5.18985 5.3203 5.42491 5.50002 5.53935 5.54502 5.52281 5.47885 5.41913 5.35019 5.27947 5.2156 5.16577 5.13232 5.11205 5.0986 5.08517 5.06459 5.02823 4.96118 4.85039 4.72596 4.67951 4.79486 5.04609 5.31001 5.47346 5.51034 5.44932 5.29996 5.02517 533.064 527.938 4.74519 5.01232 5.17855 5.3019 5.39825 5.47032 5.51402 5.52769 5.51338 5.47442 5.41489 5.34194 5.26624 5.19849 5.14661 5.11269 5.09369 5.08434 5.07979 5.07627 5.06876 5.04846 5.00358 4.92033 4.8058 4.72646 4.78354 4.98347 5.21306 5.34987 5.36058 5.26186 5.02275 533.964 527.929 4.71035 4.9814 5.14912 5.27122 5.36484 5.43458 5.48018 5.49766 5.48566 5.44437 5.37686 5.29427 5.21622 5.15359 5.1099 5.08295 5.06816 5.06117 5.05926 5.0615 5.06713 5.07395 5.07482 5.05557 5.00121 4.91112 4.83115 4.851 4.98828 5.14647 5.21064 5.15613 4.95906 533.419 527.928 4.71372 4.99057 5.15446 5.26823 5.35312 5.41219 5.4464 5.45231 5.42611 5.36853 5.28935 5.20895 5.14615 5.10233 5.07399 5.05628 5.04518 5.03819 5.03493 5.03636 5.0449 5.06323 5.09075 5.11975 5.13327 5.11159 5.04928 4.97861 4.95969 5.01293 5.05739 5.0161 4.85642 532.047 527.922 4.70037 4.97573 5.13249 5.23535 5.30808 5.35522 5.37605 5.36439 5.31949 5.25188 5.18101 5.12627 5.0891 5.06453 5.04741 5.03441 5.02339 5.01413 5.00783 5.00677 5.01526 5.03891 5.08186 5.14219 5.20674 5.2525 5.2562 5.20785 5.12556 5.05444 5.00609 4.93574 4.78399 530.767 527.923 4.72304 5.00057 5.14553 5.22862 5.27962 5.30204 5.29175 5.25069 5.19234 5.1354 5.09466 5.06879 5.05119 5.0369 5.02372 5.01065 4.99814 4.98768 4.98146 4.98356 4.99938 5.03455 5.09293 5.17337 5.26572 5.35041 5.40403 5.40535 5.34445 5.23641 5.11584 4.99467 4.81249 530.611 527.925 4.72215 4.97705 5.09854 5.1609 5.18937 5.18584 5.15695 5.11803 5.08566 5.06708 5.05566 5.04464 5.03178 5.0171 5.00113 4.9857 4.97297 4.96539 4.9678 4.98683 5.02801 5.0926 5.17637 5.27139 5.36817 5.45552 5.5192 5.54068 5.5014 5.39732 5.25327 5.09623 4.87686 530.644 527.921 4.69925 4.9196 5.02726 5.0885 5.11784 5.11808 5.10228 5.08622 5.07624 5.06559 5.05024 5.0315 5.0115 4.99149 4.97366 4.96025 4.95337 4.95794 4.98091 5.02727 5.09667 5.18298 5.27794 5.37423 5.46548 5.54454 5.60137 5.62107 5.58614 5.48808 5.34399 5.17477 4.93925 531.451 527.929 4.71239 4.91627 5.01395 5.0707 5.09408 5.0923 5.08321 5.07684 5.06761 5.05178 5.03092 5.00936 4.9891 4.97157 4.95925 4.95401 4.95983 4.98328 5.02952 5.09782 5.1809 5.27061 5.36151 5.45033 5.53372 5.60543 5.6549 5.66696 5.62465 5.51925 5.36486 5.181 4.94238 531.933 527.929 4.66823 4.8543 4.95608 5.02648 5.06983 5.0941 5.10524 5.10225 5.08432 5.05605 5.02521 4.99795 4.97638 4.96243 4.95849 4.9685 5.00052 5.06066 5.14593 5.24248 5.33668 5.42131 5.49604 5.56331 5.62408 5.67502 5.70762 5.70876 5.66413 5.56634 5.4225 5.2361 4.98263 533.236 527.941 4.69932 4.9072 5.02416 5.11571 5.18547 5.21932 5.21751 5.18913 5.14652 5.099 5.0526 5.01282 4.98377 4.96521 4.95783 4.96412 4.99057 5.04618 5.13302 5.23906 5.34668 5.44069 5.51317 5.5642 5.59687 5.6124 5.60885 5.58124 5.52305 5.43076 5.30768 5.14468 4.91134 533.556 527.936 4.70122 4.93811 5.06354 5.15044 5.21268 5.2376 5.22589 5.19147 5.1495 5.10777 5.06807 5.03239 5.00525 4.99068 4.98892 5.00138 5.03328 5.09039 5.17294 5.27468 5.38457 5.48952 5.57694 5.63708 5.66475 5.65924 5.62201 5.5546 5.45874 5.33802 5.19639 5.02664 4.81211 535.04 527.915 4.62213 4.89101 5.04087 5.13289 5.19999 5.24591 5.27091 5.27936 5.27721 5.26651 5.24504 5.21003 5.16245 5.10952 5.06309 5.03337 5.02113 5.02534 5.04997 5.10132 5.17748 5.26906 5.3632 5.44637 5.50628 5.53337 5.52207 5.47202 5.38729 5.27392 5.13554 4.96696 4.75072 535.04 527.873 4.49116 4.72335 4.89149 5.00205 5.08275 5.14692 5.19795 5.23945 5.27278 5.29711 5.31029 5.30917 5.29076 5.25399 5.20171 5.14151 5.08369 5.03779 5.01016 5.00275 5.01627 5.05448 5.11637 5.19131 5.26523 5.32625 5.36559 5.37673 5.35462 5.29445 5.18746 5.01469 4.75062 534.73 527.854 4.50532 4.74111 4.91342 5.03645 5.12539 5.19476 5.25241 5.30031 5.33868 5.36672 5.38369 5.38874 5.38102 5.36075 5.32934 5.28889 5.24132 5.18787 5.12955 5.06835 5.0075 4.95122 4.90679 4.88305 4.87957 4.88523 4.88917 4.88669 4.87712 4.85972 4.82697 4.75686 4.61245 532.952 527.855 4.49581 4.71572 4.87048 4.981 5.06286 5.12628 5.17752 5.22006 5.25577 5.28549 5.30909 5.32552 5.33318 5.33089 5.31851 5.29585 5.26301 5.22115 5.17218 5.11783 5.05718 4.98753 4.90999 4.83613 4.7884 4.78587 4.82713 4.88364 4.92918 4.95015 4.95247 4.96164 4.90228 527.621 527.824 4.43445 4.62028 4.75226 4.85014 4.92243 4.97392 5.00859 5.02941 5.0386 5.03864 5.03258 5.02379 5.01543 5.00981 5.00833 5.01254 5.02493 5.04811 5.08363 5.13106 5.18765 5.24872 5.30879 5.36346 5.41038 5.44782 5.47182 5.47286 5.43927 5.36952 5.27679 5.15787 4.95612 533.115 527.887 4.7202 4.99184 5.15546 5.20163 5.15575 5.09408 5.07067 5.08553 5.116 5.14962 5.18179 5.21031 5.23464 5.25511 5.27214 5.28585 5.29607 5.30244 5.30471 5.30271 5.29653 5.28636 5.27216 5.25332 5.2287 5.19713 5.15795 5.11021 5.05116 4.97725 4.8833 4.75455 4.56692 534.394 527.865 4.61805 4.93749 5.16183 5.29972 5.36148 5.36335 5.33128 5.28973 5.25144 5.22025 5.19627 5.17785 5.16268 5.14891 5.13545 5.12177 5.10746 5.09249 5.07708 5.06147 5.04598 5.03058 5.01489 4.99837 4.98021 4.9591 4.93314 4.8999 4.85659 4.79906 4.71945 4.60367 4.432 530.141 527.825 4.33507 4.48492 4.60866 4.70815 4.78547 4.84444 4.89049 4.92902 4.96308 4.99245 5.01452 5.02708 5.03076 5.02891 5.02606 5.02618 5.03171 5.04277 5.05826 5.07663 5.0961 5.11529 5.13385 5.15153 5.16755 5.182 5.19527 5.20619 5.20992 5.1955 5.146 5.0349 4.78967 530.045 527.845 4.48054 4.66143 4.78318 4.86134 4.90721 4.93763 4.96787 5.00423 5.04578 5.08827 5.12808 5.16424 5.1959 5.2221 5.24295 5.2596 5.27227 5.28025 5.28311 5.2802 5.27035 5.25248 5.22656 5.19417 5.15849 5.12263 5.08923 5.05962 5.03294 5.00376 4.95874 4.86773 4.66916 532.272 527.863 4.66469 4.95402 5.12471 5.20735 5.23858 5.24617 5.24605 5.24506 5.24423 5.24219 5.23705 5.22686 5.21024 5.18596 5.15472 5.11912 5.08122 5.04267 5.00522 4.97065 4.94049 4.91559 4.89541 4.87826 4.86189 4.84407 4.82293 4.79591 4.75878 4.70503 4.62669 4.51713 4.37516 531.983 527.834 4.41663 4.6067 4.75483 4.8723 4.96361 5.03178 5.07917 5.10889 5.1248 5.13064 5.12843 5.11893 5.10287 5.08134 5.05588 5.0278 4.99807 4.96859 4.942 4.92082 4.90685 4.9002 4.8991 4.90192 4.90736 4.91348 4.91706 4.91481 4.90332 4.87652 4.81812 4.69085 4.47318 529.93 527.859 4.53767 4.75531 4.89382 4.98201 5.03945 5.07978 5.10829 5.12732 5.13916 5.14457 5.14359 5.13657 5.12378 5.10539 5.08221 5.05526 5.02553 4.99393 4.96102 4.92796 4.89504 4.86168 4.82745 4.79351 4.76203 4.73351 4.70852 4.6897 4.68057 4.6831 4.69106 4.66659 4.52597 529.212 527.869 4.58731 4.80097 4.90926 4.96674 4.99666 5.01049 5.0146 5.01184 5.00335 4.98972 4.97142 4.94904 4.92329 4.89511 4.8655 4.83549 4.80595 4.77786 4.75147 4.72756 4.70673 4.68853 4.67165 4.65451 4.63617 4.61612 4.59519 4.57661 4.56299 4.55391 4.54447 4.51341 4.40373 529.147 527.828 4.35615 4.48456 4.56311 4.61263 4.64356 4.6615 4.66995 4.67152 4.66813 4.66121 4.65182 4.64082 4.62897 4.61694 4.60533 4.59469 4.5855 4.57824 4.57336 4.5711 4.57166 4.57536 4.5827 4.5939 4.60713 4.61818 4.62585 4.63397 4.64569 4.65581 4.64818 4.59965 4.4697 529.442 527.808 4.20332 4.25842 4.3024 4.33782 4.36623 4.38886 4.40682 4.42112 4.43264 4.44218 4.4505 4.45826 4.46601 4.4741 4.4825 4.49113 4.50072 4.51267 4.52735 4.54471 4.56452 4.58687 4.61256 4.63863 4.65335 4.64063 4.60241 4.58127 4.61044 4.66657 4.70466 4.68598 4.57802 529.548 527.83 4.2009 4.24533 4.28605 4.31783 4.33729 4.34772 4.35362 4.35801 4.36301 4.37069 4.38215 4.39731 4.41493 4.43203 4.44519 4.4574 4.48332 4.53527 4.60035 4.65689 4.69301 4.71044 4.71763 4.72051 4.7208 4.71824 4.71256 4.70426 4.69256 4.67073 4.62812 4.55155 4.42691 533.238 359.762 13.9872 14.0663 14.1071 14.1222 14.1217 14.1125 14.1012 14.0979 14.1151 14.1563 14.207 14.2458 14.2641 14.268 14.2661 14.2622 14.2577 14.2536 14.2502 14.2464 14.2419 14.2368 14.2314 14.2255 14.2191 14.2121 14.2041 14.1949 14.1838 14.1703 14.1535 14.1329 14.1093 367.242 ) ; boundaryField { frontAndBack { blending binomial2; n 2; beta1 0.075; type omegaWallFunction; value nonuniform List<scalar> 1050 ( 364.648 537.626 537.62 537.696 537.635 537.586 537.523 537.473 537.428 537.381 537.347 537.326 537.347 537.492 359.761 13.6467 24.0657 23.8814 24.1957 24.1722 24.1285 23.9841 23.8398 23.6868 23.5147 23.3679 23.2803 23.4094 23.8457 14.218 15.0252 24.3783 24.0114 24.3591 24.3186 24.2741 24.0947 23.9147 23.7167 23.4927 23.2978 23.1865 23.388 23.9725 14.3897 14.6862 24.7131 24.2043 24.4652 24.3497 24.2713 24.0688 23.874 23.6644 23.4325 23.2383 23.1368 23.3733 24.0134 14.496 14.6346 24.9376 24.3713 24.5701 24.3783 24.2516 24.0257 23.819 23.6083 23.3815 23.2031 23.1187 23.3711 24.0342 14.5678 14.5742 25.0569 24.4803 24.6502 24.4077 24.2427 23.9964 23.7798 23.5701 23.3499 23.1862 23.1155 23.3771 24.0551 14.6214 14.534 25.1103 24.5538 24.702 24.4294 24.2395 23.9776 23.7542 23.5459 23.3314 23.1784 23.1176 23.386 24.0765 14.6636 14.5037 25.1199 24.6018 24.7338 24.4421 24.2372 23.9642 23.7367 23.53 23.3202 23.1746 23.1207 23.3951 24.0963 14.6971 14.4801 25.0999 24.6231 24.7518 24.4488 24.2338 23.9531 23.7239 23.5191 23.3132 23.1727 23.1238 23.4034 24.1136 14.7239 14.4623 25.0619 24.6192 24.7603 24.4516 24.2301 23.9441 23.7143 23.5115 23.3087 23.1718 23.1263 23.4103 24.1284 14.7453 14.4508 25.0128 24.6098 24.7625 24.452 24.2265 23.9368 23.7071 23.5064 23.306 23.1714 23.1281 23.4157 24.1404 14.7622 14.4443 24.959 24.6029 24.7607 24.4512 24.2233 23.9311 23.7019 23.5032 23.3045 23.1713 23.1293 23.4197 24.1497 14.7753 14.4412 24.9061 24.5977 24.7562 24.4499 24.2208 23.927 23.6985 23.5015 23.3041 23.1715 23.1298 23.4221 24.1563 14.7852 14.4401 24.8663 24.5934 24.7505 24.4488 24.2193 23.9246 23.6968 23.501 23.3045 23.172 23.1297 23.4231 24.1603 14.7923 14.4401 24.8375 24.5896 24.7444 24.4483 24.219 23.9239 23.6966 23.5016 23.3055 23.1726 23.1291 23.4225 24.1619 14.797 14.4407 24.8204 24.5868 24.7388 24.4486 24.2199 23.9249 23.6978 23.5033 23.3072 23.1736 23.1279 23.4205 24.1611 14.7994 14.4417 24.8123 24.5841 24.7352 24.45 24.2221 23.9275 23.7004 23.506 23.3096 23.1748 23.1262 23.4171 24.1581 14.7997 14.4427 24.8127 24.5812 24.7345 24.4526 24.2255 23.9316 23.7044 23.5098 23.3125 23.1763 23.124 23.4122 24.1527 14.7981 14.444 24.819 24.5792 24.7371 24.4561 24.2301 23.9373 23.7097 23.5147 23.3161 23.1783 23.1214 23.4059 24.145 14.7945 14.4453 24.83 24.5768 24.742 24.4605 24.2357 23.9445 23.7164 23.5207 23.3204 23.1806 23.1185 23.3984 24.1351 14.7889 14.4467 24.8446 24.5741 24.7475 24.4653 24.2421 23.953 23.7244 23.5279 23.3255 23.1835 23.1154 23.3895 24.1229 14.7813 14.448 24.8637 24.5721 24.7524 24.4702 24.2491 23.9628 23.7338 23.5363 23.3316 23.187 23.112 23.3795 24.1084 14.7714 14.4486 24.8854 24.5706 24.7554 24.4744 24.2564 23.9736 23.7446 23.5462 23.3389 23.1912 23.1087 23.3683 24.0917 14.7591 14.4479 24.904 24.5673 24.7557 24.4774 24.2636 23.9854 23.7569 23.5576 23.3477 23.1964 23.1054 23.3562 24.0731 14.7441 14.4443 24.9136 24.561 24.7517 24.4783 24.2703 23.9981 23.7709 23.571 23.3584 23.2028 23.1025 23.3432 24.0528 14.726 14.4357 24.9089 24.5492 24.7418 24.4761 24.276 24.0115 23.787 23.5867 23.3716 23.2111 23.1 23.3295 24.0311 14.7045 14.4204 24.8835 24.5248 24.7235 24.4696 24.2806 24.0259 23.8055 23.6057 23.3881 23.2218 23.0985 23.3154 24.0083 14.6791 14.3937 24.8298 24.4794 24.6937 24.4575 24.284 24.0417 23.8275 23.629 23.4092 23.2361 23.0987 23.3011 23.9851 14.6492 14.3535 24.7416 24.4093 24.6483 24.4382 24.286 24.06 23.8548 23.6585 23.4369 23.2559 23.1016 23.2874 23.962 14.6138 14.2978 24.6089 24.3109 24.5832 24.4094 24.2886 24.0829 23.8896 23.6964 23.4736 23.2837 23.1094 23.2755 23.9396 14.5713 14.2252 24.415 24.1718 24.4907 24.3732 24.2941 24.1114 23.9315 23.7424 23.5195 23.3211 23.1254 23.2673 23.9159 14.5202 14.1344 24.1625 23.9888 24.379 24.332 24.2939 24.1328 23.9657 23.7836 23.5649 23.3638 23.1531 23.2649 23.8807 14.4529 14.0225 23.9174 23.8132 24.2535 24.2568 24.2361 24.0938 23.9411 23.7759 23.5758 23.3915 23.1922 23.2679 23.804 14.3509 13.8851 23.7078 23.6676 24.0291 24.0305 24.0016 23.8883 23.7693 23.647 23.501 23.372 23.235 23.2725 23.6397 14.1646 356.121 532.015 532.489 533.048 533.359 533.516 533.535 533.513 533.423 533.37 533.328 533.379 533.338 533.075 356.4 359.778 537.598 537.627 537.613 537.583 537.569 537.561 537.559 537.559 537.565 537.575 537.597 537.609 537.613 359.762 14.0355 23.9877 24.014 23.9744 23.9021 23.8542 23.8256 23.8184 23.8192 23.8398 23.8767 23.9258 23.9768 24.0223 13.9872 14.1352 24.1478 24.1752 24.14 24.0685 24.0122 23.9752 23.9659 23.9669 23.9944 24.0395 24.0878 24.1401 24.1693 14.0663 14.1814 24.1893 24.2108 24.188 24.1333 24.0837 24.0464 24.0365 24.0382 24.0667 24.1076 24.1452 24.1872 24.1992 14.1071 14.1909 24.2043 24.2217 24.2034 24.1563 24.114 24.0786 24.0684 24.0707 24.0983 24.1333 24.1678 24.2059 24.2123 14.1222 14.1815 24.2167 24.2321 24.2148 24.1682 24.1299 24.0963 24.0861 24.0889 24.1152 24.1467 24.1839 24.2196 24.2277 14.1217 14.1694 24.2183 24.237 24.2205 24.1739 24.1386 24.1071 24.0974 24.1003 24.1251 24.1542 24.1939 24.2258 24.2347 14.1125 14.1709 24.2079 24.2355 24.2196 24.1734 24.1412 24.1124 24.1035 24.1063 24.1292 24.156 24.197 24.2255 24.2289 14.1012 14.194 24.191 24.2287 24.2129 24.1676 24.1385 24.1126 24.1048 24.1073 24.128 24.1526 24.1941 24.2198 24.2137 14.0979 14.2284 24.1736 24.2176 24.2014 24.1574 24.1313 24.1086 24.1019 24.1041 24.1225 24.1448 24.1859 24.2098 24.1961 14.1151 14.256 24.1574 24.2035 24.1861 24.1435 24.1205 24.1008 24.0954 24.0971 24.1132 24.1331 24.1736 24.1965 24.1794 14.1563 14.2686 24.1417 24.1873 24.168 24.1267 24.1065 24.0899 24.0856 24.0869 24.1008 24.1183 24.1578 24.1811 24.1634 14.207 14.2702 24.126 24.17 24.1481 24.1078 24.0901 24.0763 24.0732 24.0739 24.0857 24.101 24.1398 24.1643 24.1476 14.2458 14.2668 24.1103 24.1523 24.1272 24.0875 24.0717 24.0604 24.0584 24.0587 24.0685 24.082 24.1202 24.147 24.132 14.2641 14.2617 24.0948 24.1348 24.1064 24.0666 24.0521 24.0429 24.0418 24.0417 24.0498 24.0621 24.1 24.1297 24.1167 14.268 14.2561 24.0797 24.1179 24.0863 24.0459 24.0319 24.0243 24.024 24.0235 24.0303 24.0418 24.08 24.1129 24.1016 14.2661 14.2507 24.0651 24.1022 24.0674 24.0258 24.0118 24.0052 24.0055 24.0047 24.0106 24.0219 24.0608 24.0971 24.0872 14.2622 14.2461 24.0512 24.088 24.0502 24.0071 23.9923 23.9862 23.987 23.986 23.9914 24.0029 24.043 24.0826 24.0734 14.2577 14.2416 24.0382 24.0741 24.0341 23.9901 23.9741 23.968 23.969 23.9679 23.9733 23.9854 24.027 24.0683 24.0605 14.2536 14.2369 24.0256 24.0612 24.0188 23.9744 23.9577 23.9511 23.9522 23.951 23.9568 23.97 24.0115 24.0547 24.0478 14.2502 14.2318 24.0135 24.0486 24.0046 23.9597 23.943 23.9362 23.9372 23.9361 23.9424 23.9552 23.9972 24.0413 24.0359 14.2464 14.2266 24.0019 24.0365 23.991 23.9464 23.9294 23.9227 23.9239 23.9227 23.9288 23.942 23.9836 24.0281 24.0243 14.2419 14.2212 23.9907 24.0242 23.9778 23.934 23.9176 23.9108 23.9119 23.9108 23.9172 23.9299 23.9704 24.0147 24.0131 14.2368 14.2154 23.9798 24.0114 23.9644 23.9225 23.907 23.9006 23.9018 23.9007 23.9068 23.9187 23.9574 24.0007 24.002 14.2314 14.2091 23.9689 23.9974 23.9505 23.9113 23.8977 23.8918 23.8932 23.892 23.8979 23.9082 23.9441 23.9855 23.9908 14.2255 14.2027 23.9576 23.9815 23.9356 23.9003 23.8894 23.8844 23.8861 23.8847 23.8898 23.8981 23.9301 23.9686 23.9788 14.2191 14.1957 23.9456 23.9625 23.9192 23.8893 23.8817 23.8779 23.8799 23.8784 23.8826 23.8881 23.915 23.9493 23.9656 14.2121 14.188 23.9323 23.9397 23.9015 23.8783 23.8746 23.8722 23.8745 23.8728 23.8758 23.8782 23.899 23.9271 23.9504 14.2041 14.1793 23.9175 23.9135 23.884 23.8684 23.8683 23.8672 23.8696 23.8678 23.8696 23.8692 23.8833 23.9029 23.9327 14.1949 14.1691 23.9014 23.8879 23.8705 23.8624 23.8645 23.8641 23.8663 23.8647 23.8657 23.8635 23.8713 23.8809 23.913 14.1838 14.1568 23.8866 23.8715 23.8669 23.8643 23.8669 23.8663 23.8679 23.8668 23.8677 23.8654 23.8685 23.8687 23.8943 14.1703 14.1421 23.8795 23.8738 23.8781 23.8782 23.8802 23.8789 23.8796 23.8791 23.8804 23.879 23.8799 23.8744 23.8853 14.1535 14.1247 23.8922 23.8992 23.9057 23.9061 23.9075 23.9055 23.9058 23.9055 23.9074 23.9068 23.9075 23.9017 23.8993 14.1329 14.1054 23.9339 23.9436 23.9481 23.9479 23.9488 23.9463 23.9462 23.9461 23.9484 23.9484 23.9498 23.9469 23.9441 14.1093 367.325 549.526 549.898 550.344 550.358 550.346 550.264 550.25 550.256 550.332 550.36 550.385 550.079 549.789 367.242 ) ; } topAndBottom { blending binomial2; n 2; beta1 0.075; type omegaWallFunction; value nonuniform List<scalar> 10500 ( 359.761 528.009 528.035 528.032 528.011 527.976 527.943 527.928 527.934 527.953 527.97 527.966 527.938 527.904 527.885 527.889 527.918 527.972 528.046 528.12 528.15 528.095 527.998 527.914 527.86 527.838 527.847 527.876 527.914 527.965 528.024 528.05 528.043 528.03 528.015 527.978 527.927 527.873 527.848 527.868 527.898 527.96 527.995 528.079 528.188 528.238 528.07 527.826 527.813 527.946 527.856 527.765 527.805 527.909 527.958 528.143 528.106 528.001 527.846 527.818 527.87 527.774 527.868 528.014 527.939 528.397 528.305 528.143 527.87 527.803 527.907 527.899 527.862 527.89 528.052 528.099 528.086 528.151 528.13 528.059 528.003 528.042 528.253 528.537 528.47 528.192 528.01 527.942 527.959 528.001 527.975 527.939 527.973 528.044 528.006 527.926 527.89 527.93 527.932 527.863 527.906 528.024 528.269 528.229 528.073 527.916 527.807 527.843 527.909 528.144 528.142 528.043 527.996 527.995 528.004 527.992 527.952 527.925 527.921 527.931 527.94 527.943 527.938 527.929 527.928 527.922 527.923 527.925 527.921 527.929 527.929 527.941 527.936 527.915 527.873 527.854 527.855 527.824 527.887 527.865 527.825 527.845 527.863 527.834 527.859 527.869 527.828 527.808 527.83 359.762 14.218 4.88529 4.79259 4.73875 4.67861 4.61918 4.5678 4.5342 4.52794 4.54242 4.56194 4.56819 4.55411 4.52935 4.51024 4.50835 4.52761 4.56695 4.6229 4.68313 4.72254 4.70477 4.64476 4.57362 4.51794 4.49395 4.4864 4.4862 4.54364 4.67492 4.80033 4.86152 4.86582 4.84819 4.81976 4.79246 4.74363 4.65662 4.67736 4.72597 4.65544 4.74407 4.89482 5.17427 5.33263 5.34292 5.02253 4.5658 4.51506 4.59791 4.48525 4.65128 4.82905 5.02129 5.23124 5.66485 5.33479 5.12353 4.68504 4.55217 4.55527 4.50276 4.78792 4.87035 4.8704 5.85271 5.59499 5.52384 4.82808 4.61851 4.71166 4.70028 5.02972 5.4352 5.56516 5.40176 5.45075 5.48596 5.35463 5.1355 4.90385 4.91265 5.11307 5.32789 5.28973 4.97599 4.7441 4.70758 4.74061 4.72996 4.65601 4.73706 4.97173 5.14828 5.01134 4.70357 4.5384 4.7616 4.78673 4.85098 5.29986 5.67835 5.90244 5.9058 5.3755 4.60608 4.42251 4.53684 4.68771 4.93303 4.96527 4.88217 4.87148 4.87936 4.86145 4.78408 4.68435 4.66653 4.69495 4.73898 4.76595 4.77057 4.74519 4.71035 4.71372 4.70037 4.72304 4.72215 4.69925 4.71239 4.66823 4.69932 4.70122 4.62213 4.49116 4.50532 4.49581 4.43445 4.7202 4.61805 4.33507 4.48054 4.66469 4.41663 4.53767 4.58731 4.35615 4.20332 4.2009 13.9872 14.3897 5.13845 4.97083 4.90888 4.82151 4.74935 4.68985 4.65356 4.65187 4.67109 4.69151 4.69392 4.67578 4.65039 4.63186 4.62892 4.6476 4.69 4.75083 4.81059 4.84538 4.84497 4.81842 4.76728 4.71261 4.67857 4.63562 4.59675 4.68725 4.90463 5.07878 5.14431 5.13086 5.12787 5.12873 5.13576 5.09999 4.97706 5.01125 5.01491 4.82629 4.95613 5.22284 5.58021 5.77971 5.79827 5.47112 4.89037 4.75836 4.74203 4.67555 5.01461 5.11547 5.26552 5.41304 5.99324 5.7468 5.53565 5.02888 4.79275 4.74258 4.74686 5.00815 4.94077 4.96837 6.27923 6.0172 6.08572 5.26405 4.94861 4.91426 4.97884 5.53332 5.91647 6.05759 5.90584 5.95043 5.98814 5.84966 5.61108 5.31484 5.3134 5.47972 5.62959 5.65504 5.34444 5.06906 5.03468 5.05574 4.98744 4.86648 4.98034 5.2763 5.5177 5.45092 5.04671 4.73177 5.0348 5.15618 5.24787 5.82764 6.13966 6.35758 6.59232 6.00597 4.88544 4.58703 4.73435 4.76686 5.08877 5.16561 5.15013 5.17952 5.18379 5.13368 5.00922 4.8751 4.86546 4.91785 4.97954 5.01486 5.02639 5.01232 4.9814 4.99057 4.97573 5.00057 4.97705 4.9196 4.91627 4.8543 4.9072 4.93811 4.89101 4.72335 4.74111 4.71572 4.62028 4.99184 4.93749 4.48492 4.66143 4.95402 4.6067 4.75531 4.80097 4.48456 4.25842 4.24533 14.0663 14.496 5.2696 5.05843 5.02818 4.91505 4.84387 4.78492 4.75993 4.77472 4.80164 4.81877 4.80884 4.7795 4.74894 4.72872 4.72542 4.74976 4.80709 4.88562 4.95278 4.98182 4.98472 4.97268 4.9372 4.88277 4.82696 4.72484 4.65664 4.82408 5.14192 5.34186 5.39333 5.37065 5.38012 5.38861 5.40793 5.37797 5.2292 5.26732 5.16499 4.87816 5.11263 5.51177 5.86172 6.10808 6.17255 5.80728 5.19686 4.96658 4.83368 4.83832 5.23376 5.19602 5.28136 5.29325 5.8256 6.01455 5.77803 5.28818 4.96075 4.86976 4.90721 5.0452 4.91111 5.09453 6.45113 6.28434 6.42341 5.59017 5.21383 5.01804 5.18946 5.82996 6.04311 6.24829 6.26554 6.27864 6.32173 6.18522 5.93204 5.61414 5.61373 5.73841 5.82782 5.8687 5.61483 5.34284 5.31076 5.3035 5.1679 5.00087 5.14408 5.47609 5.70855 5.68103 5.25568 4.8387 5.20599 5.45191 5.5741 6.2009 6.32698 6.4288 6.86614 6.358 5.0756 4.69503 4.92767 4.79131 5.13359 5.25723 5.28942 5.34117 5.3242 5.23148 5.09033 4.97065 4.99551 5.07276 5.14053 5.174 5.18985 5.17855 5.14912 5.15446 5.13249 5.14553 5.09854 5.02726 5.01395 4.95608 5.02416 5.06354 5.04087 4.89149 4.91342 4.87048 4.75226 5.15546 5.16183 4.60866 4.78318 5.12471 4.75483 4.89382 4.90926 4.56311 4.3024 4.28605 14.1071 14.5678 5.33689 5.12161 5.13435 5.00272 4.95011 4.895 4.89111 4.92236 4.94989 4.95659 4.92966 4.88832 4.85058 4.82565 4.82404 4.86574 4.95304 5.05628 5.13301 5.16126 5.15223 5.13015 5.09142 5.02916 4.93943 4.76417 4.7028 5.00822 5.39071 5.56855 5.62344 5.64247 5.65369 5.62828 5.62771 5.57914 5.41886 5.45118 5.21499 4.87482 5.27439 5.6813 5.98905 6.34418 6.50746 6.07759 5.47418 5.13852 4.89841 4.96751 5.32701 5.21926 5.2346 5.10811 5.4417 6.23079 5.94437 5.48509 5.07659 4.95727 5.0126 5.02839 4.95024 5.18615 6.50792 6.49159 6.65719 5.83727 5.42009 5.07193 5.34045 5.93058 6.02084 6.30232 6.54287 6.51122 6.5616 6.44365 6.16986 5.84472 5.84422 5.92113 5.95833 5.99169 5.77802 5.55716 5.53985 5.49845 5.29779 5.09319 5.28431 5.64116 5.79884 5.77566 5.32969 4.8853 5.33853 5.69168 5.87363 6.4666 6.42324 6.35872 6.91368 6.52769 5.18674 4.79628 5.12496 4.85505 5.15409 5.32246 5.38876 5.44384 5.37876 5.23227 5.0808 5.02086 5.11378 5.21507 5.28347 5.30989 5.3203 5.3019 5.27122 5.26823 5.23535 5.22862 5.1609 5.0885 5.0707 5.02648 5.11571 5.15044 5.13289 5.00205 5.03645 4.981 4.85014 5.20163 5.29972 4.70815 4.86134 5.20735 4.8723 4.98201 4.96674 4.61263 4.33782 4.31783 14.1222 14.6214 5.39128 5.20079 5.25187 5.12407 5.10346 5.05115 5.06801 5.10091 5.11682 5.10401 5.0542 4.99649 4.94799 4.91916 4.93126 5.00875 5.13205 5.2464 5.31584 5.33715 5.32397 5.29016 5.23313 5.15266 5.01068 4.76098 4.78524 5.24729 5.61461 5.7403 5.80911 5.8863 5.90437 5.84618 5.81698 5.73335 5.57632 5.58176 5.19216 4.87923 5.43638 5.71481 6.01331 6.50163 6.72036 6.28946 5.71228 5.26921 4.94008 5.06682 5.36847 5.24081 5.18138 4.97237 5.18374 6.3772 6.05661 5.633 5.15107 5.01848 5.10586 5.10465 5.04064 5.20703 6.50233 6.63597 6.81848 6.02655 5.56981 5.08124 5.43601 5.9093 5.97233 6.30003 6.71826 6.65157 6.70035 6.62121 6.34435 6.03522 6.02872 6.04352 6.02299 6.05745 5.87498 5.71639 5.72253 5.64996 5.39376 5.16534 5.41159 5.78092 5.81311 5.76161 5.30446 4.90172 5.45475 5.88338 6.13541 6.66403 6.48126 6.25173 6.85853 6.59044 5.24131 4.90656 5.27551 4.91077 5.16742 5.38029 5.48302 5.51904 5.3741 5.14649 5.01372 5.0658 5.2234 5.33336 5.40119 5.42361 5.42491 5.39825 5.36484 5.35312 5.30808 5.27962 5.18937 5.11784 5.09408 5.06983 5.18547 5.21268 5.19999 5.08275 5.12539 5.06286 4.92243 5.15575 5.36148 4.78547 4.90721 5.23858 4.96361 5.03945 4.99666 4.64356 4.36623 4.33729 14.1217 14.6636 5.44212 5.28166 5.36224 5.25519 5.26719 5.22055 5.25393 5.27685 5.28229 5.25594 5.18818 5.11196 5.05126 5.02895 5.07788 5.20105 5.33976 5.4345 5.47515 5.47768 5.46043 5.42081 5.34744 5.24176 5.02341 4.74416 4.94838 5.50337 5.76488 5.85273 5.93872 6.05752 6.08506 6.01655 5.97086 5.85395 5.7159 5.6646 5.1147 4.92431 5.54177 5.65784 5.95249 6.57456 6.79699 6.42398 5.9041 5.35601 4.96487 5.14376 5.38725 5.28852 5.15668 4.95281 5.12997 6.43748 6.11847 5.7385 5.19318 5.06631 5.21158 5.35085 5.14676 5.21076 6.45139 6.72884 6.91234 6.16886 5.66263 5.05806 5.49213 5.8392 5.93355 6.25551 6.79402 6.71915 6.75613 6.71712 6.45777 6.18948 6.16664 6.10771 6.02619 6.0702 5.93449 5.84 5.86819 5.76727 5.46407 5.22644 5.5277 5.91721 5.80664 5.64959 5.20285 4.90691 5.55721 6.03694 6.34602 6.81772 6.51017 6.14426 6.76338 6.59164 5.25942 5.01292 5.38559 4.94925 5.17645 5.43047 5.57119 5.56195 5.29564 4.99951 4.97264 5.14497 5.31856 5.41399 5.47603 5.49908 5.50002 5.47032 5.43458 5.41219 5.35522 5.30204 5.18584 5.11808 5.0923 5.0941 5.21932 5.2376 5.24591 5.14692 5.19476 5.12628 4.97392 5.09408 5.36335 4.84444 4.93763 5.24617 5.03178 5.07978 5.01049 4.6615 4.38886 4.34772 14.1125 14.6971 5.48841 5.35277 5.45512 5.37316 5.41114 5.37229 5.41598 5.42572 5.42734 5.39372 5.32056 5.24077 5.18253 5.18498 5.27351 5.41386 5.53197 5.59287 5.5995 5.57343 5.54429 5.50206 5.41751 5.27574 4.9724 4.77174 5.19093 5.70446 5.84243 5.91083 6.00636 6.14745 6.18778 6.13086 6.0832 5.94611 5.83664 5.69693 5.0236 5.00863 5.55166 5.56456 5.81305 6.53101 6.78052 6.48288 6.0462 5.40103 4.9825 5.21602 5.44453 5.37286 5.18521 5.04422 5.15029 6.42169 6.13981 5.80883 5.21243 5.10837 5.32808 5.6378 5.2638 5.19824 6.3626 6.78707 6.95058 6.27138 5.70012 5.02394 5.52455 5.74045 5.90124 6.17774 6.79018 6.74062 6.75742 6.74802 6.51993 6.30525 6.25032 6.11795 5.99108 6.04355 5.96981 5.94382 5.98813 5.85668 5.51298 5.27933 5.6387 6.06751 5.83503 5.47663 5.04311 4.91229 5.6464 6.15866 6.51672 6.94129 6.51491 6.04667 6.65681 6.55741 5.256 5.10203 5.47357 4.97522 5.18147 5.46961 5.63717 5.55449 5.13506 4.87524 5.01875 5.24252 5.38634 5.45553 5.50808 5.53336 5.53935 5.51402 5.48018 5.4464 5.37605 5.29175 5.15695 5.10228 5.08321 5.10524 5.21751 5.22589 5.27091 5.19795 5.25241 5.17752 5.00859 5.07067 5.33128 4.89049 4.96787 5.24605 5.07917 5.10829 5.0146 4.66995 4.40682 4.35362 14.1012 14.7239 5.5292 5.41148 5.5291 5.46884 5.52572 5.49568 5.54551 5.54607 5.55008 5.51503 5.44768 5.37745 5.33558 5.36762 5.47416 5.59791 5.67966 5.70814 5.6868 5.63092 5.57607 5.52695 5.43145 5.23838 4.89724 4.8967 5.45478 5.81986 5.86976 5.92267 6.0131 6.16551 6.22606 6.19348 6.15418 6.01425 5.93165 5.66749 4.95341 5.12362 5.50272 5.48077 5.62521 6.33453 6.71173 6.48411 6.14145 5.41471 5.00152 5.29667 5.58522 5.49803 5.2766 5.1735 5.14734 6.34316 6.13429 5.85346 5.21593 5.14609 5.44158 5.87555 5.38852 5.1823 6.24216 6.82328 6.94969 6.34162 5.69672 4.99686 5.55308 5.65664 5.86638 6.08172 6.72769 6.73561 6.72778 6.73489 6.54467 6.37968 6.2717 6.08781 5.95396 6.0029 5.99286 6.03481 6.08708 5.92101 5.54348 5.32556 5.75294 6.23169 5.91808 5.30069 4.85616 4.92665 5.72373 6.25443 6.66151 7.04076 6.5017 5.95903 6.55245 6.50279 5.24097 5.17119 5.54641 4.99233 5.18204 5.49462 5.66914 5.47253 4.94671 4.85047 5.11541 5.30949 5.41648 5.46287 5.50551 5.53272 5.54502 5.52769 5.49766 5.45231 5.36439 5.25069 5.11803 5.08622 5.07684 5.10225 5.18913 5.19147 5.27936 5.23945 5.30031 5.22006 5.02941 5.08553 5.28973 4.92902 5.00423 5.24506 5.10889 5.12732 5.01184 4.67152 4.42112 4.35801 14.0979 14.7453 5.56421 5.45881 5.58669 5.54265 5.61282 5.59152 5.64561 5.64224 5.65264 5.62163 5.56874 5.51607 5.49529 5.54614 5.64483 5.73672 5.78603 5.78999 5.74629 5.66192 5.57029 5.49948 5.38387 5.1424 4.87674 5.11602 5.67622 5.86098 5.86568 5.90024 5.97399 6.11895 6.21835 6.21363 6.18889 6.06218 5.9947 5.57655 4.92379 5.26399 5.43576 5.42538 5.43057 5.99256 6.61746 6.45061 6.19812 5.40869 5.02688 5.39188 5.75728 5.65391 5.42028 5.28974 5.11157 6.20189 6.1165 5.87902 5.20789 5.17551 5.5368 6.04404 5.51883 5.16968 6.09906 6.84326 6.92591 6.38685 5.66811 4.98137 5.59545 5.64048 5.82487 5.97887 6.62162 6.71627 6.68373 6.69528 6.54455 6.41104 6.2299 6.04162 5.94388 5.97371 6.01883 6.11658 6.16546 5.96137 5.55835 5.36845 5.87567 6.39831 6.04694 5.1779 4.68585 4.95701 5.79121 6.32938 6.78457 7.11753 6.47626 5.87915 6.45554 6.43615 5.22028 5.22324 5.60505 5.00342 5.17782 5.50594 5.66301 5.31354 4.80496 4.92363 5.18841 5.32865 5.40983 5.44226 5.47687 5.50546 5.52281 5.51338 5.48566 5.42611 5.31949 5.19234 5.08566 5.07624 5.06761 5.08432 5.14652 5.1495 5.27721 5.27278 5.33868 5.25577 5.0386 5.116 5.25144 4.96308 5.04578 5.24423 5.1248 5.13916 5.00335 4.66813 4.43264 4.36301 14.1151 14.7622 5.59348 5.49635 5.63108 5.59831 5.67751 5.66366 5.72117 5.71775 5.73613 5.71302 5.67883 5.64553 5.64192 5.69671 5.77415 5.83665 5.86355 5.85212 5.79292 5.68316 5.55035 5.43973 5.29356 5.05531 4.97161 5.37526 5.81949 5.85556 5.83883 5.85652 5.91428 6.01761 6.17922 6.20152 6.19465 6.09246 6.02251 5.45388 4.93743 5.40114 5.38158 5.3928 5.26419 5.58628 6.51388 6.40374 6.22606 5.39097 5.05978 5.4997 5.91551 5.82009 5.59604 5.39336 5.04817 5.98366 6.102 5.88991 5.19007 5.19074 5.6143 6.14861 5.65086 5.16576 5.95147 6.85077 6.88978 6.41301 5.62567 4.97428 5.65476 5.68624 5.78014 5.87716 6.4851 6.69009 6.63592 6.64216 6.52845 6.39833 6.14192 6.00554 5.96428 5.96364 6.05317 6.18896 6.22205 5.97889 5.56015 5.41394 6.00305 6.55586 6.20273 5.13887 4.57356 5.00668 5.8505 6.38752 6.88952 7.17184 6.44346 5.80484 6.36633 6.36184 5.19725 5.26167 5.65128 5.01137 5.16926 5.50208 5.61251 5.12173 4.75249 5.02805 5.20917 5.30566 5.37233 5.40046 5.42932 5.45885 5.47885 5.47442 5.44437 5.36853 5.25188 5.1354 5.06708 5.06559 5.05178 5.05605 5.099 5.10777 5.26651 5.29711 5.36672 5.28549 5.03864 5.14962 5.22025 4.99245 5.08827 5.24219 5.13064 5.14457 4.98972 4.66121 4.44218 4.37069 14.1563 14.7753 5.61719 5.52551 5.66487 5.63967 5.72466 5.71631 5.77649 5.77485 5.80087 5.78687 5.77096 5.75453 5.76159 5.81085 5.86621 5.90802 5.92191 5.90389 5.83881 5.71377 5.54445 5.38865 5.22406 5.06332 5.16939 5.61149 5.88318 5.8264 5.7913 5.79849 5.85293 5.90156 6.11298 6.16626 6.1786 6.10613 6.00934 5.32881 4.98416 5.50679 5.3883 5.38506 5.1447 5.23754 6.40521 6.35796 6.23351 5.36604 5.09662 5.60336 6.05388 5.97768 5.78154 5.49578 4.95579 5.67255 6.10485 5.88863 5.16358 5.19052 5.70452 6.22347 5.77827 5.17355 5.81944 6.84702 6.84619 6.42698 5.57671 4.97377 5.7305 5.76826 5.74169 5.78369 6.33574 6.66159 6.58883 6.58492 6.50106 6.34073 6.04066 5.99435 6.00018 5.96111 6.08828 6.24532 6.25341 5.97523 5.55177 5.4688 6.12492 6.69615 6.36875 5.1804 4.53722 5.07317 5.90232 6.43126 6.97597 7.20508 6.40702 5.73392 6.28259 6.28197 5.17339 5.28898 5.68705 5.01946 5.15643 5.4806 5.50759 4.95097 4.77858 5.09845 5.18995 5.25481 5.31348 5.34505 5.37002 5.39898 5.41913 5.41489 5.37686 5.28935 5.18101 5.09466 5.05566 5.05024 5.03092 5.02521 5.0526 5.06807 5.24504 5.31029 5.38369 5.30909 5.03258 5.18179 5.19627 5.01452 5.12808 5.23705 5.12843 5.14359 4.97142 4.65182 4.4505 4.38215 14.207 14.7852 5.63557 5.54738 5.68991 5.66969 5.75821 5.75343 5.81542 5.81591 5.84806 5.84205 5.84084 5.83706 5.84976 5.89064 5.92883 5.95795 5.96561 5.94813 5.8876 5.76428 5.57864 5.39146 5.23893 5.1874 5.40938 5.78234 5.88728 5.78592 5.72789 5.7268 5.79336 5.82859 6.00955 6.1152 6.14651 6.10321 5.94641 5.22172 5.05807 5.59188 5.47112 5.41516 5.0875 5.02392 6.28444 6.31642 6.22609 5.33645 5.12978 5.68331 6.16251 6.11368 5.95438 5.60486 4.84671 5.27789 6.1189 5.87542 5.13007 5.17892 5.83132 6.28768 5.89721 5.19226 5.71644 6.8319 6.79922 6.43414 5.52694 4.9805 5.82686 5.86851 5.71869 5.70448 6.19529 6.63448 6.54464 6.52969 6.46368 6.24239 5.95929 6.00807 6.03711 5.95453 6.10984 6.27687 6.25653 5.95273 5.53765 5.53997 6.23419 6.81396 6.53454 5.27919 4.56598 5.14903 5.94645 6.46177 7.04067 7.22051 6.36904 5.66441 6.20129 6.19761 5.14914 5.30676 5.71443 5.03016 5.13942 5.44063 5.36049 4.83623 4.85661 5.12246 5.15497 5.19299 5.24468 5.2839 5.30688 5.33207 5.35019 5.34194 5.29427 5.20895 5.12627 5.06879 5.04464 5.0315 5.00936 4.99795 5.01282 5.03239 5.21003 5.30917 5.38874 5.32552 5.02379 5.21031 5.17785 5.02708 5.16424 5.22686 5.11893 5.13657 4.94904 4.64082 4.45826 4.39731 14.2458 14.7923 5.64884 5.56273 5.70743 5.69039 5.78105 5.77831 5.84136 5.84362 5.88024 5.88026 5.88931 5.89376 5.90903 5.94229 5.96882 5.99062 5.99611 5.98345 5.93472 5.82938 5.65728 5.469 5.35034 5.38404 5.62811 5.87549 5.861 5.74227 5.65843 5.64387 5.72433 5.8005 5.85646 6.05348 6.10245 6.08237 5.83672 5.14759 5.15935 5.65118 5.6075 5.50609 5.1137 4.9344 6.14117 6.27951 6.2077 5.30379 5.15355 5.7421 6.24095 6.22376 6.09773 5.72897 4.75904 4.85338 6.09607 5.84833 5.09162 5.16158 5.96817 6.34523 6.00673 5.21928 5.64181 6.80429 6.75171 6.43794 5.48166 4.99651 5.94335 5.9747 5.72227 5.64382 6.07863 6.60986 6.50459 6.47909 6.41498 6.12092 5.91997 6.03961 6.0695 5.94551 6.10643 6.27668 6.23004 5.91434 5.52494 5.63122 6.32999 6.91013 6.69418 5.41175 4.63543 5.22567 5.98228 6.47975 7.0815 7.22209 6.33058 5.59321 6.1197 6.1095 5.12434 5.31612 5.73556 5.04605 5.11724 5.38376 5.20701 4.7805 4.95264 5.11573 5.11961 5.13379 5.17604 5.22309 5.2475 5.26563 5.27947 5.26624 5.21622 5.14615 5.0891 5.05119 5.03178 5.0115 4.9891 4.97638 4.98377 5.00525 5.16245 5.29076 5.38102 5.33318 5.01543 5.23464 5.16268 5.03076 5.1959 5.21024 5.10287 5.12378 4.92329 4.62897 4.46601 4.41493 14.2641 14.797 5.6572 5.57211 5.71825 5.70309 5.79503 5.79332 5.85691 5.8605 5.90029 5.90467 5.92046 5.92976 5.94568 5.97272 5.99144 6.00876 6.01411 6.00795 5.97361 5.89357 5.75695 5.59918 5.51741 5.58778 5.78547 5.90858 5.82593 5.69255 5.57716 5.54956 5.63567 5.77171 5.69092 5.98185 6.04799 6.03972 5.70101 5.11357 5.27498 5.66317 5.75678 5.64678 5.20657 4.90732 5.96571 6.25012 6.18117 5.26929 5.16904 5.81583 6.30271 6.30985 6.21591 5.87673 4.74537 4.50032 5.97501 5.8049 5.04996 5.14235 6.09581 6.39759 6.1076 5.25194 5.58716 6.76213 6.70544 6.44036 5.44468 5.02464 6.06676 6.08101 5.76138 5.604 5.98556 6.58672 6.46772 6.43249 6.3519 6.00547 5.93061 6.08144 6.09861 5.94436 6.07255 6.24097 6.17467 5.86362 5.52312 5.73952 6.41476 6.98944 6.84447 5.56287 4.72302 5.29676 6.00959 6.48567 7.09874 7.21286 6.29192 5.51924 6.03572 6.01831 5.09866 5.3181 5.75258 5.0691 5.08853 5.31351 5.07658 4.77114 5.03062 5.09323 5.08906 5.08155 5.11363 5.16533 5.19662 5.20759 5.2156 5.19849 5.15359 5.10233 5.06453 5.0369 5.0171 4.99149 4.97157 4.96243 4.96521 4.99068 5.10952 5.25399 5.36075 5.33089 5.00981 5.25511 5.14891 5.02891 5.2221 5.18596 5.08134 5.10539 4.89511 4.61694 4.4741 4.43203 14.268 14.7994 5.6608 5.57591 5.72288 5.70861 5.8013 5.79993 5.86373 5.8683 5.91034 5.91805 5.93832 5.95042 5.96589 5.98768 6.00053 6.01447 6.02038 6.02106 6.00081 5.94484 5.84681 5.73368 5.68166 5.74831 5.87548 5.90879 5.78584 5.62541 5.47443 5.434 5.52722 5.72442 5.62037 5.89026 5.98134 5.9682 5.56559 5.12013 5.39876 5.67785 5.88527 5.80284 5.32433 4.88934 5.75225 6.22973 6.14798 5.23443 5.18075 5.92507 6.35694 6.37586 6.31497 6.04839 4.84015 4.34891 5.74033 5.74592 5.00661 5.12395 6.2176 6.44581 6.20059 5.28836 5.54534 6.70304 6.66119 6.44196 5.41906 5.06399 6.17865 6.18427 5.83561 5.5851 5.9063 6.56248 6.43139 6.38707 6.27273 5.92736 5.98297 6.12927 6.12875 5.9594 6.01054 6.1703 6.09438 5.80623 5.54043 5.85774 6.48944 7.05368 6.9836 5.7237 4.81569 5.3582 6.02793 6.48005 7.09347 7.19438 6.25311 5.4442 5.94828 5.92477 5.07178 5.31435 5.7659 5.10045 5.05217 5.23431 4.98089 4.7956 5.08916 5.07049 5.06494 5.03507 5.05709 5.11069 5.15389 5.16315 5.16577 5.14661 5.1099 5.07399 5.04741 5.02372 5.00113 4.97366 4.95925 4.95849 4.95783 4.98892 5.06309 5.20171 5.32934 5.31851 5.00833 5.27214 5.13545 5.02606 5.24295 5.15472 5.05588 5.08221 4.8655 4.60533 4.4825 4.44519 14.2661 14.7997 5.65978 5.57435 5.72163 5.70741 5.80048 5.79893 5.86269 5.86794 5.91158 5.922 5.94528 5.95907 5.97305 5.98998 5.99769 6.00827 6.01455 6.02182 6.01528 5.98043 5.91246 5.83639 5.80446 5.85143 5.91876 5.89127 5.7363 5.53808 5.37893 5.30893 5.38856 5.65598 5.67224 5.75464 5.89837 5.86438 5.45129 5.17007 5.54408 5.76164 5.98751 5.94803 5.44853 4.86616 5.50338 6.21822 6.10877 5.20076 5.19261 6.05177 6.40614 6.42623 6.39391 6.22991 5.03443 4.41142 5.42939 5.67619 4.96299 5.11029 6.33562 6.49105 6.28732 5.32849 5.51307 6.62636 6.61888 6.44221 5.40525 5.11001 6.26741 6.28143 5.93845 5.58597 5.83108 6.53205 6.39189 6.33926 6.18308 5.90736 6.05622 6.18138 6.16399 5.98907 5.93552 6.07263 5.99655 5.75126 5.58187 5.97641 6.55313 7.10219 7.10997 5.88861 4.9087 5.40702 6.03682 6.46371 7.06715 7.16716 6.21373 5.36886 5.85697 5.82963 5.04346 5.30681 5.77439 5.13976 5.00689 5.15836 4.9194 4.84619 5.13976 5.06877 5.05693 4.99958 5.00191 5.05681 5.11449 5.13173 5.13232 5.11269 5.08295 5.05628 5.03441 5.01065 4.9857 4.96025 4.95401 4.9685 4.96412 5.00138 5.03337 5.14151 5.28889 5.29585 5.01254 5.28585 5.12177 5.02618 5.2596 5.11912 5.0278 5.05526 4.83549 4.59469 4.49113 4.4574 14.2622 14.7981 5.6542 5.56752 5.71463 5.69967 5.79279 5.79061 5.85408 5.8597 5.90438 5.91709 5.94228 5.95681 5.96866 5.98098 5.98365 5.99039 5.99645 6.00987 6.01686 6.00122 5.95621 5.90485 5.88385 5.91151 5.93431 5.86096 5.67747 5.46319 5.35035 5.23203 5.22455 5.54843 5.73447 5.57569 5.79881 5.74005 5.37422 5.2698 5.71384 5.8996 6.06983 6.06882 5.57802 4.84963 5.23404 6.20937 6.06415 5.16894 5.20709 6.18035 6.45106 6.46497 6.45313 6.38683 5.28227 4.5576 5.10278 5.6025 4.92171 5.10722 6.44462 6.53454 6.36923 5.37187 5.48894 6.5364 6.57739 6.43936 5.40066 5.15787 6.33352 6.37037 6.06224 5.60617 5.75129 6.48458 6.34556 6.28617 6.0991 5.94563 6.13507 6.23757 6.20619 6.02573 5.87449 5.96422 5.89213 5.71128 5.65117 6.08927 6.60503 7.13388 7.22162 6.05422 4.99986 5.4406 6.03585 6.43777 7.02217 7.13086 6.17358 5.29305 5.7616 5.73361 5.01355 5.29771 5.77664 5.18441 4.95279 5.09901 4.88775 4.90843 5.1893 5.10964 5.08522 4.99482 4.95045 4.99803 5.07215 5.1072 5.11205 5.09369 5.06816 5.04518 5.02339 4.99814 4.97297 4.95337 4.95983 5.00052 4.99057 5.03328 5.02113 5.08369 5.24132 5.26301 5.02493 5.29607 5.10746 5.03171 5.27227 5.08122 4.99807 5.02553 4.80595 4.5855 4.50072 4.48332 14.2577 14.7945 5.64411 5.55539 5.70183 5.68535 5.77817 5.77484 5.83767 5.8433 5.88843 5.90312 5.92934 5.94397 5.9532 5.96091 5.95817 5.96011 5.96488 5.98388 6.0048 6.00839 5.98304 5.94887 5.93325 5.94407 5.93042 5.82147 5.6218 5.44635 5.40877 5.25094 5.09227 5.3859 5.73318 5.4361 5.69312 5.61796 5.34142 5.39697 5.86444 6.03407 6.13733 6.16052 5.71196 4.85956 4.96668 6.18151 6.0144 5.1391 5.22606 6.30598 6.49171 6.49535 6.49508 6.50646 5.54092 4.70152 4.82325 5.534 4.88709 5.1256 6.53901 6.57774 6.44747 5.41801 5.47094 6.44371 6.53535 6.4303 5.40088 5.2039 6.3851 6.45049 6.19857 5.64696 5.65911 6.40225 6.28536 6.22754 6.03956 6.02774 6.21229 6.29696 6.25523 6.06545 5.85149 5.86465 5.79545 5.69898 5.74702 6.19398 6.6452 7.14739 7.31598 6.21829 5.08914 5.45658 6.02441 6.40362 6.96216 7.08527 6.13212 5.21637 5.66219 5.63718 4.98176 5.2893 5.77157 5.23023 4.89319 5.05821 4.8803 4.97455 5.24922 5.19369 5.16198 5.04353 4.92539 4.93029 5.02008 5.0812 5.0986 5.08434 5.06117 5.03819 5.01413 4.98768 4.96539 4.95794 4.98328 5.06066 5.04618 5.09039 5.02534 5.03779 5.18787 5.22115 5.04811 5.30244 5.09249 5.04277 5.28025 5.04267 4.96859 4.99393 4.77786 4.57824 4.51267 4.53527 14.2536 14.7889 5.6295 5.53782 5.68307 5.66417 5.75623 5.75111 5.81275 5.8179 5.86276 5.8792 5.90581 5.92038 5.92662 5.92937 5.92017 5.91537 5.91684 5.94047 5.97641 6.00101 5.99484 5.97464 5.96145 5.95605 5.91235 5.77955 5.58809 5.50348 5.53014 5.36968 5.04506 5.18352 5.67608 5.43387 5.59548 5.52122 5.3541 5.52161 5.95312 6.13602 6.19407 6.22526 5.84507 4.91138 4.73611 6.10197 5.95948 5.11164 5.2534 6.42079 6.52817 6.52074 6.52412 6.59419 5.78746 4.84551 4.63499 5.4771 4.86729 5.18554 6.61827 6.62236 6.52298 5.46624 5.45604 6.35991 6.49137 6.41173 5.40218 5.24611 6.43209 6.52255 6.33666 5.71135 5.55713 6.27444 6.2058 6.16889 6.01683 6.12843 6.28629 6.35789 6.31102 6.11246 5.87008 5.7921 5.7245 5.71948 5.86417 6.29209 6.6752 7.1416 7.38991 6.37878 5.17838 5.45434 6.00193 6.36277 6.8921 7.03029 6.08842 5.13831 5.55904 5.54075 4.94789 5.28328 5.75898 5.27247 4.83523 5.03332 4.89471 5.05305 5.3341 5.30246 5.27937 5.15429 4.95958 4.87011 4.94888 5.04548 5.08517 5.07979 5.05926 5.03493 5.00783 4.98146 4.9678 4.98091 5.02952 5.14593 5.13302 5.17294 5.04997 5.01016 5.12955 5.17218 5.08363 5.30471 5.07708 5.05826 5.28311 5.00522 4.942 4.96102 4.75147 4.57336 4.52735 4.60035 14.2502 14.7813 5.61038 5.51456 5.65799 5.63564 5.72626 5.71847 5.77805 5.782 5.82566 5.84367 5.87018 5.88465 5.88749 5.8843 5.86674 5.85227 5.84757 5.87414 5.92641 5.97572 5.99054 5.98304 5.97099 5.95135 5.88596 5.74506 5.59114 5.60981 5.67134 5.5509 5.10382 5.00253 5.5714 5.54883 5.51569 5.47203 5.41155 5.63957 6.0077 6.20828 6.24333 6.26738 5.96793 5.00776 4.60221 5.94759 5.89904 5.08713 5.29189 6.51444 6.56095 6.54479 6.54649 6.65215 6.00796 5.00363 4.54488 5.42918 4.87491 5.30885 6.68637 6.67002 6.59623 5.51575 5.44113 6.29063 6.44432 6.3805 5.40198 5.28489 6.48205 6.58772 6.4639 5.8016 5.46022 6.11384 6.11737 6.12156 6.0335 6.22599 6.35687 6.42126 6.37436 6.17164 5.91226 5.76129 5.6957 5.77184 5.99794 6.3871 6.69858 7.11633 7.43995 6.53334 5.26974 5.43499 5.96778 6.31676 6.81801 6.96472 6.04162 5.05828 5.45266 5.44451 4.91162 5.27994 5.73965 5.30638 4.78698 5.02101 4.9301 5.15564 5.44256 5.41686 5.41309 5.31276 5.07389 4.86059 4.8578 4.9895 5.06459 5.07627 5.0615 5.03636 5.00677 4.98356 4.98683 5.02727 5.09782 5.24248 5.23906 5.27468 5.10132 5.00275 5.06835 5.11783 5.13106 5.30271 5.06147 5.07663 5.2802 4.97065 4.92082 4.92796 4.72756 4.5711 4.54471 4.65689 14.2464 14.7714 5.58674 5.48524 5.62607 5.59898 5.68721 5.67557 5.73175 5.73354 5.77477 5.79435 5.82046 5.8349 5.83387 5.82346 5.79531 5.76768 5.75285 5.77945 5.84901 5.92784 5.96826 5.97408 5.96439 5.935 5.85852 5.72807 5.63617 5.72802 5.79639 5.7333 5.26355 4.88309 5.40585 5.67306 5.46219 5.47956 5.49632 5.76334 6.08451 6.26561 6.28747 6.29028 6.06861 5.13103 4.59653 5.72501 5.83096 5.0658 5.34327 6.58356 6.59108 6.57113 6.56983 6.68476 6.18999 5.17407 4.55313 5.37814 4.92262 5.49992 6.74903 6.72188 6.66706 5.56623 5.42409 6.23536 6.39346 6.33262 5.39885 5.32144 6.53873 6.64702 6.57078 5.91756 5.38403 5.94019 6.04257 6.09565 6.07785 6.31214 6.4242 6.48738 6.44448 6.24316 5.96834 5.77434 5.71226 5.86109 6.14231 6.4843 6.72101 7.0732 7.46268 6.67932 5.36566 5.40078 5.92122 6.2671 6.74577 6.88798 5.99019 4.9755 5.34369 5.34865 4.87277 5.27776 5.71483 5.32772 4.75627 5.01705 4.98191 5.28293 5.5549 5.52525 5.53832 5.4818 5.2624 4.94265 4.78422 4.89942 5.02823 5.06876 5.06713 5.0449 5.01526 4.99938 5.02801 5.09667 5.1809 5.33668 5.34668 5.38457 5.17748 5.01627 5.0075 5.05718 5.18765 5.29653 5.04598 5.0961 5.27035 4.94049 4.90685 4.89504 4.70673 4.57166 4.56452 4.69301 14.2419 14.7591 5.55853 5.44943 5.58658 5.55324 5.63776 5.62082 5.67181 5.67042 5.70776 5.72908 5.75485 5.76962 5.76481 5.74653 5.70681 5.66386 5.63478 5.65529 5.73884 5.85259 5.92724 5.94982 5.94506 5.9125 5.83746 5.73505 5.71498 5.83574 5.89498 5.86596 5.48596 4.84528 5.18583 5.7287 5.44251 5.52109 5.58851 5.89823 6.18641 6.31821 6.3278 6.29573 6.13764 5.25134 4.66697 5.46698 5.75282 5.04871 5.40931 6.63215 6.61967 6.60272 6.60269 6.70089 6.32419 5.3435 4.65121 5.30468 5.00791 5.739 6.8114 6.77827 6.7345 5.61811 5.40348 6.19279 6.33852 6.26482 5.39131 5.35724 6.602 6.70078 6.65399 6.05527 5.33769 5.76079 5.99797 6.08865 6.13208 6.38581 6.4873 6.55221 6.51751 6.32555 6.04286 5.81656 5.76496 5.99067 6.2939 6.59091 6.74992 7.01639 7.45449 6.81386 5.46819 5.35383 5.86114 6.2154 6.67728 6.80133 5.93238 4.88923 5.23271 5.25323 4.83132 5.27379 5.68579 5.33324 4.74872 5.0177 5.04442 5.42629 5.65292 5.6226 5.64471 5.62378 5.47857 5.13163 4.79206 4.78314 4.96118 5.04846 5.07395 5.06323 5.03891 5.03455 5.0926 5.18298 5.27061 5.42131 5.44069 5.48952 5.26906 5.05448 4.95122 4.98753 5.24872 5.28636 5.03058 5.11529 5.25248 4.91559 4.9002 4.86168 4.68853 4.57536 4.58687 4.71044 14.2368 14.7441 5.52578 5.40662 5.53864 5.49729 5.57645 5.55279 5.59643 5.59109 5.62294 5.64631 5.67231 5.68829 5.68104 5.65598 5.60623 5.54848 5.50206 5.50749 5.59429 5.74229 5.86229 5.91072 5.91606 5.88882 5.82758 5.76545 5.80777 5.92628 5.97252 5.94235 5.70853 4.91467 4.97622 5.70552 5.46173 5.56944 5.68372 6.02935 6.28299 6.36793 6.36403 6.28441 6.17216 5.34926 4.74513 5.21101 5.66621 5.03751 5.49243 6.66639 6.6473 6.64145 6.6546 6.71057 6.41537 5.4967 4.80601 5.19808 5.11801 5.9954 6.87649 6.83837 6.79641 5.67242 5.37697 6.15951 6.28008 6.17637 5.37797 5.39347 6.66865 6.74851 6.71389 6.20516 5.33072 5.57988 5.97913 6.09095 6.18673 6.4454 6.54214 6.61015 6.58963 6.42188 6.13593 5.87964 5.85277 6.14716 6.44904 6.71228 6.79426 6.95002 7.41101 6.93316 5.5798 5.2952 5.78591 6.16291 6.61239 6.70608 5.86643 4.80171 5.1201 5.15811 4.78728 5.26461 5.65376 5.32205 4.76531 5.02004 5.11146 5.57254 5.7303 5.70822 5.73369 5.73275 5.65929 5.38884 4.92835 4.70468 4.85039 5.00358 5.07482 5.09075 5.08186 5.09293 5.17637 5.27794 5.36151 5.49604 5.51317 5.57694 5.3632 5.11637 4.90679 4.90999 5.30879 5.27216 5.01489 5.13385 5.22656 4.89541 4.8991 4.82745 4.67165 4.5827 4.61256 4.71763 14.2314 14.726 5.48861 5.35628 5.48117 5.42999 5.50189 5.4705 5.50436 5.49465 5.51929 5.54471 5.57216 5.59087 5.58401 5.55525 5.49956 5.43081 5.36724 5.34906 5.42121 5.59125 5.7652 5.85396 5.87801 5.86547 5.82793 5.81026 5.8932 5.99729 6.0325 5.97909 5.86878 5.08032 4.80724 5.60011 5.52933 5.61934 5.77873 6.13366 6.35135 6.40971 6.3931 6.25645 6.17413 5.41792 4.80688 5.0051 5.57252 5.03265 5.59383 6.69094 6.67358 6.68874 6.73083 6.72109 6.47331 5.6252 4.98074 5.0657 5.23905 6.24178 6.94535 6.89999 6.85006 5.72968 5.34172 6.11847 6.21688 6.07012 5.3587 5.43238 6.73338 6.78872 6.74976 6.34983 5.37257 5.42048 5.96769 6.096 6.2343 6.48651 6.58264 6.6547 6.65429 6.53188 6.25917 5.97037 5.98147 6.30791 6.59994 6.84491 6.86012 6.87931 7.32702 7.03156 5.70462 5.2253 5.69383 6.10786 6.5498 6.60331 5.78976 4.71692 5.00638 5.06299 4.74056 5.247 5.61998 5.29704 4.80165 5.02292 5.17961 5.70489 5.79141 5.78229 5.80866 5.8178 5.78548 5.62715 5.18447 4.74721 4.72596 4.92033 5.05557 5.11975 5.14219 5.17337 5.27139 5.37423 5.45033 5.56331 5.5642 5.63708 5.44637 5.19131 4.88305 4.83613 5.36346 5.25332 4.99837 5.15153 5.19417 4.87826 4.90192 4.79351 4.65451 4.5939 4.63863 4.72051 14.2255 14.7045 5.44734 5.29797 5.41299 5.35034 5.41285 5.37349 5.39491 5.38053 5.3961 5.42273 5.45312 5.4766 5.47401 5.4461 5.3902 5.31742 5.2427 5.19904 5.23724 5.40188 5.62504 5.77104 5.82628 5.83717 5.82963 5.85335 5.95609 6.04414 6.07146 5.99072 5.94199 5.30227 4.69854 5.38806 5.63234 5.66985 5.86129 6.1972 6.38368 6.43324 6.40837 6.21209 6.14588 5.45707 4.85416 4.9167 5.46869 5.03259 5.70903 6.70724 6.69788 6.7447 6.82452 6.73435 6.50122 5.72447 5.14481 4.93948 5.35772 6.46383 7.01793 6.95939 6.88993 5.78861 5.29804 6.04595 6.14065 5.95262 5.33316 5.4746 6.78907 6.81885 6.75942 6.46517 5.46371 5.30725 5.94705 6.09837 6.26787 6.50186 6.60307 6.67906 6.69744 6.63208 6.41947 6.10362 6.13691 6.45369 6.73492 6.97374 6.94095 6.81259 7.19833 7.09943 5.8495 5.14697 5.58419 6.04721 6.48161 6.49024 5.6998 4.6387 4.89209 4.96745 4.69055 5.21774 5.58535 5.26467 4.84972 5.02722 5.24663 5.80602 5.83905 5.84336 5.87064 5.88565 5.87095 5.78991 5.47213 4.94713 4.67951 4.8058 5.00121 5.13327 5.20674 5.26572 5.36817 5.46548 5.53372 5.62408 5.59687 5.66475 5.50628 5.26523 4.87957 4.7884 5.41038 5.2287 4.98021 5.16755 5.15849 4.86189 4.90736 4.76203 4.63617 4.60713 4.65335 4.7208 14.2191 14.6791 5.40255 5.2316 5.33289 5.25767 5.3081 5.26173 5.268 5.24857 5.25345 5.27902 5.31313 5.34324 5.34885 5.32683 5.27693 5.20895 5.13452 5.07463 5.06998 5.19302 5.43598 5.6476 5.74978 5.79166 5.81624 5.87504 5.98512 6.05785 6.08041 5.98294 5.93939 5.52297 4.69217 5.12851 5.70318 5.7156 5.9168 6.20741 6.37548 6.42312 6.39806 6.14969 6.08775 5.46814 4.88872 4.94797 5.34172 5.03434 5.8317 6.71487 6.71916 6.80523 6.92217 6.74574 6.49795 5.79083 5.27489 4.87403 5.46071 6.65199 7.08744 7.01306 6.90634 5.84265 5.25125 5.93703 6.04183 5.82951 5.3038 5.52372 6.82916 6.83515 6.73902 6.53036 5.58811 5.23868 5.90737 6.0957 6.28331 6.48202 6.59495 6.6722 6.7032 6.69344 6.57108 6.27602 6.29591 6.57279 6.84146 7.07819 7.01597 6.75419 7.02474 7.12064 6.024 5.07332 5.45796 5.97789 6.39327 6.36141 5.59483 4.57203 4.77829 4.87106 4.63566 5.17327 5.55016 5.23111 4.89843 5.03514 5.31118 5.86561 5.86939 5.88753 5.91727 5.93688 5.92847 5.88164 5.69073 5.2391 4.79486 4.72646 4.91112 5.11159 5.2525 5.35041 5.45552 5.54454 5.60543 5.67502 5.6124 5.65924 5.53337 5.32625 4.88523 4.78587 5.44782 5.19713 4.9591 5.182 5.12263 4.84407 4.91348 4.73351 4.61612 4.61818 4.64063 4.71824 14.2121 14.6492 5.35515 5.15794 5.23969 5.15203 5.18671 5.13587 5.1252 5.1004 5.09404 5.11501 5.15152 5.18867 5.20535 5.19402 5.15644 5.10261 5.04193 4.98278 4.94496 5.00151 5.21192 5.47056 5.63242 5.71232 5.76939 5.85583 5.96735 6.02554 6.04631 5.95152 5.8788 5.67166 4.79446 4.88675 5.67284 5.75084 5.93244 6.15663 6.31197 6.3565 6.34449 6.06422 5.9977 5.4523 4.90832 5.00543 5.17503 5.03316 5.95164 6.70901 6.73242 6.86039 7.00688 6.74356 6.45722 5.81864 5.35441 4.91483 5.53381 6.79566 7.14063 7.05129 6.88679 5.87891 5.20561 5.79979 5.92769 5.71068 5.27654 5.58645 6.84521 6.83081 6.68348 6.53777 5.72017 5.20269 5.83367 6.0841 6.27164 6.41757 6.54529 6.62047 6.6598 6.69735 6.67251 6.44942 6.44259 6.65903 6.90947 7.13926 7.05888 6.69831 6.81377 7.07394 6.23509 5.04147 5.32204 5.89033 6.26791 6.21495 5.47381 4.52024 4.6668 4.77352 4.57276 5.10963 5.5139 5.19906 4.93595 5.04893 5.37184 5.87997 5.87629 5.90823 5.94228 5.96641 5.95958 5.92383 5.80407 5.5025 5.04609 4.78354 4.83115 5.04928 5.2562 5.40403 5.5192 5.60137 5.6549 5.70762 5.60885 5.62201 5.52207 5.36559 4.88917 4.82713 5.47182 5.15795 4.93314 5.19527 5.08923 4.82293 4.91706 4.70852 4.59519 4.62585 4.60241 4.71256 14.2041 14.6138 5.30665 5.08039 5.13361 5.03571 5.04979 4.99844 4.9718 4.94213 4.92629 4.93957 4.97473 5.01667 5.04513 5.04882 5.03063 4.99977 4.96117 4.91665 4.86997 4.86578 4.99573 5.24637 5.45945 5.58395 5.67313 5.77726 5.88544 5.93182 5.95594 5.88543 5.77787 5.70741 4.96452 4.7163 5.51069 5.75948 5.90127 6.052 6.17469 6.20784 6.22639 5.94758 5.87253 5.40887 4.91045 5.03225 4.96691 5.02245 6.0594 6.67826 6.72495 6.89271 7.05622 6.71103 6.36868 5.80004 5.3748 5.0472 5.5647 6.87812 7.16045 7.05351 6.81715 5.88026 5.15906 5.64377 5.81271 5.6106 5.25837 5.67258 6.8245 6.79277 6.58818 6.48723 5.82956 5.19268 5.70891 6.05254 6.21604 6.30289 6.44025 6.51188 6.55793 6.63304 6.69622 6.58044 6.56076 6.70616 6.93106 7.14433 7.04823 6.62778 6.57962 6.94871 6.468 5.11853 5.19693 5.76108 6.09427 6.05134 5.33718 4.48306 4.56304 4.67514 4.49643 5.02423 5.47517 5.16709 4.9535 5.06897 5.4253 5.84624 5.85124 5.89513 5.93535 5.96482 5.95793 5.92352 5.83596 5.65256 5.31001 4.98347 4.851 4.97861 5.20785 5.40535 5.54068 5.62107 5.66696 5.70876 5.58124 5.5546 5.47202 5.37673 4.88669 4.88364 5.47286 5.11021 4.8999 5.20619 5.05962 4.79591 4.91481 4.6897 4.57661 4.63397 4.58127 4.70426 14.1949 14.5713 5.25916 5.00807 5.02005 4.91631 4.90502 4.85672 4.81983 4.78801 4.76753 4.77331 4.80351 4.84634 4.88523 4.90651 4.90797 4.89608 4.87564 4.84786 4.81202 4.78867 4.84118 5.02092 5.24084 5.40442 5.51883 5.62586 5.72446 5.76706 5.80373 5.77416 5.64974 5.64348 5.12949 4.6582 5.26029 5.70474 5.82443 5.90777 5.96463 5.96721 6.02843 5.79188 5.70943 5.33386 4.89473 5.02193 4.75404 4.9896 6.14499 6.60459 6.67498 6.87509 7.04156 6.63063 6.22439 5.72769 5.33968 5.20194 5.55261 6.87314 7.12183 6.99566 6.68332 5.83312 5.10642 5.47833 5.7006 5.53936 5.25815 5.78968 6.74833 6.70383 6.45013 6.37722 5.88015 5.20025 5.54879 5.97976 6.10175 6.13609 6.27049 6.33875 6.39185 6.4957 6.62776 6.62924 6.62509 6.70287 6.89779 7.08757 6.97417 6.52209 6.33552 6.75577 6.65611 5.35148 5.12118 5.56311 5.88475 5.87154 5.18517 4.45456 4.47742 4.57882 4.39568 4.9222 5.43166 5.12968 4.94999 5.091 5.46468 5.76033 5.78011 5.83566 5.88445 5.92098 5.91407 5.87707 5.80626 5.68874 5.47346 5.21306 4.98828 4.95969 5.12556 5.34445 5.5014 5.58614 5.62465 5.66413 5.52305 5.45874 5.38729 5.35462 4.87712 4.92918 5.43927 5.05116 4.85659 5.20992 5.03294 4.75878 4.90332 4.68057 4.56299 4.64569 4.61044 4.69256 14.1838 14.5202 5.21228 4.95529 4.91411 4.80873 4.77101 4.7271 4.68981 4.66247 4.64471 4.64647 4.66866 4.70515 4.74481 4.77464 4.78868 4.78962 4.78181 4.76714 4.74579 4.72715 4.74459 4.85242 5.03039 5.19622 5.31585 5.40852 5.49072 5.54119 5.60049 5.61527 5.49697 5.50412 5.20665 4.70399 5.02635 5.55348 5.70299 5.73397 5.71679 5.66832 5.76144 5.59595 5.50737 5.22159 4.85771 4.97132 4.64748 4.9414 6.19199 6.46843 6.55522 6.77459 6.93503 6.48666 6.02262 5.60007 5.2615 5.30517 5.52506 6.7485 6.98894 6.85746 6.4735 5.72874 5.04071 5.30617 5.59252 5.4954 5.28617 5.93576 6.59522 6.54876 6.2691 6.20517 5.84529 5.20613 5.38099 5.83535 5.92023 5.91734 6.03801 6.10522 6.16557 6.29021 6.46983 6.5706 6.60345 6.63185 6.80049 6.96924 6.84079 6.36693 6.08184 6.51981 6.70632 5.65895 5.1252 5.33615 5.68279 5.67291 5.01781 4.42333 4.42407 4.4809 4.25457 4.82705 5.37883 5.0772 4.91819 5.10331 5.47133 5.62053 5.65217 5.72111 5.78139 5.82686 5.82058 5.78067 5.72069 5.64327 5.51034 5.34987 5.14647 5.01293 5.05444 5.23641 5.39732 5.48808 5.51925 5.56634 5.43076 5.33802 5.27392 5.29445 4.85972 4.95015 5.36952 4.97725 4.79906 5.1955 5.00376 4.70503 4.87652 4.6831 4.55391 4.65581 4.66657 4.67073 14.1703 14.4529 5.14646 4.91673 4.82753 4.72383 4.66698 4.62591 4.5922 4.56849 4.55331 4.55207 4.56657 4.59428 4.62886 4.66008 4.68061 4.68965 4.68987 4.68293 4.67108 4.66124 4.67046 4.73343 4.85691 4.9943 5.10064 5.17062 5.23523 5.2987 5.37385 5.41123 5.31083 5.30726 5.16546 4.77872 4.87662 5.33445 5.52717 5.53108 5.47394 5.38707 5.47452 5.36741 5.26809 5.06801 4.7915 4.88086 4.70377 4.78425 6.16619 6.25976 6.35139 6.57361 6.72064 6.26218 5.76126 5.41881 5.14451 5.30299 5.53543 6.48515 6.73346 6.63057 6.17824 5.55917 4.95243 5.11867 5.47932 5.4598 5.34751 6.08908 6.35548 6.32315 6.04536 5.97025 5.71168 5.17544 5.21482 5.59309 5.66331 5.65038 5.76229 5.83427 5.89787 6.03297 6.24162 6.40637 6.47358 6.47868 6.6366 6.79492 6.65684 6.15013 5.7911 6.25137 6.60088 5.85578 5.17993 5.21435 5.50737 5.4413 4.83434 4.37824 4.40298 4.37099 4.1332 4.7782 5.30396 4.99411 4.84266 5.07829 5.40984 5.43432 5.4715 5.55406 5.62712 5.68141 5.6755 5.63503 5.58425 5.53346 5.44932 5.36058 5.21064 5.05739 5.00609 5.11584 5.25327 5.34399 5.36486 5.4225 5.30768 5.19639 5.13554 5.18746 4.82697 4.95247 5.27679 4.8833 4.71945 5.146 4.95874 4.62669 4.81812 4.69106 4.54447 4.64818 4.70466 4.62812 14.1535 14.3509 5.01461 4.83497 4.72593 4.63099 4.5704 4.53372 4.50763 4.49046 4.48033 4.47998 4.49117 4.51336 4.54341 4.57428 4.5987 4.61212 4.61367 4.60626 4.59565 4.58968 4.59901 4.64146 4.72521 4.82947 4.92152 4.98751 5.03868 5.08086 5.1309 5.15206 5.07078 5.0566 5.01271 4.78916 4.79731 5.10884 5.29865 5.30652 5.25705 5.16187 5.20119 5.11116 4.99928 4.87326 4.68708 4.73664 4.74865 4.57208 6.01215 5.97701 6.06885 6.27667 6.3741 5.91765 5.42289 5.17505 4.98015 5.16974 5.5314 6.10518 6.34861 6.29418 5.78032 5.31104 4.82791 4.89297 5.33762 5.37853 5.4059 6.14323 6.04135 6.01968 5.75305 5.65735 5.46419 5.06977 5.04103 5.25227 5.33032 5.34885 5.469 5.54511 5.60047 5.72963 5.94857 6.14905 6.22911 6.22741 6.39722 6.54954 6.38288 5.83755 5.43737 5.92753 6.33558 5.81421 5.21185 5.22069 5.31903 5.15399 4.63834 4.31424 4.37691 4.30365 4.22167 4.77753 5.17004 4.85683 4.70186 4.95865 5.2329 5.21175 5.24891 5.33549 5.41505 5.47299 5.46496 5.42582 5.38578 5.35197 5.29996 5.26186 5.15613 5.0161 4.93574 4.99467 5.09623 5.17477 5.181 5.2361 5.14468 5.02664 4.96696 5.01469 4.75686 4.96164 5.15787 4.75455 4.60367 5.0349 4.86773 4.51713 4.69085 4.66659 4.51341 4.59965 4.68598 4.55155 14.1329 14.1646 4.76745 4.65208 4.56308 4.49429 4.44997 4.42692 4.41419 4.40793 4.4063 4.41093 4.42404 4.4462 4.4756 4.50661 4.53154 4.54314 4.53844 4.52286 4.50623 4.4985 4.50769 4.54021 4.6008 4.68182 4.76386 4.83211 4.87397 4.88429 4.88273 4.86102 4.79143 4.76684 4.76807 4.69963 4.72387 4.9112 5.05319 5.04702 5.00127 4.92027 4.91429 4.83654 4.71706 4.6371 4.5385 4.5104 4.67269 4.5243 5.61955 5.52535 5.61123 5.79464 5.79745 5.38332 4.97771 4.84609 4.7366 4.85764 5.25325 5.56275 5.7535 5.72517 5.22058 4.94034 4.64602 4.59224 5.06258 5.12189 5.23932 5.83398 5.5681 5.53226 5.29597 5.19438 5.06258 4.84818 4.80844 4.90132 4.95097 4.97501 5.08557 5.15324 5.19229 5.29381 5.48644 5.69197 5.76496 5.76885 5.96651 6.10084 5.87904 5.37763 5.06974 5.50432 5.81948 5.45232 5.16765 5.21564 5.04633 4.79528 4.44877 4.24023 4.29695 4.29783 4.40811 4.7165 4.89795 4.62732 4.48117 4.67616 4.89911 4.89315 4.9267 5.00001 5.07118 5.12386 5.11671 5.08766 5.06487 5.04732 5.02517 5.02275 4.95906 4.85642 4.78399 4.81249 4.87686 4.93925 4.94238 4.98263 4.91134 4.81211 4.75072 4.75062 4.61245 4.90228 4.95612 4.56692 4.432 4.78967 4.66916 4.37516 4.47318 4.52597 4.40373 4.4697 4.57802 4.42691 14.1093 356.4 523.413 523.872 524.387 524.965 525.531 526.073 526.579 527.071 527.53 527.944 528.292 528.574 528.796 528.983 529.163 529.357 529.577 529.796 529.974 530.069 530.043 529.896 529.679 529.502 529.462 529.569 529.862 530.308 530.82 531.471 532.148 532.479 532.661 532.765 531.861 530.006 528.937 528.847 529.294 530.123 530.701 531.657 531.973 533.243 532.773 527.058 524.522 524.18 525.052 526.213 527.145 527.072 528.132 531.69 532.267 535.263 533.519 525.977 524.691 525.969 525.883 527.114 529.071 533.634 532.757 526.501 525.145 524.04 524.533 524.732 525.937 526.813 528.643 529.494 531.927 533.919 530.907 527.553 527.316 527.721 528.125 528.692 528.937 528.788 528.673 528.502 528.778 529.659 529.216 530.79 533.436 534.427 535.3 534.029 534.558 536.236 533.499 532.224 532.767 532.118 530.618 528.441 527.723 529.246 526.223 527.229 531.403 529.108 526.341 525.967 526.814 527.754 528.224 528.529 528.742 529.228 530.118 531.121 531.598 532.155 533.064 533.964 533.419 532.047 530.767 530.611 530.644 531.451 531.933 533.236 533.556 535.04 535.04 534.73 532.952 527.621 533.115 534.394 530.141 530.045 532.272 531.983 529.93 529.212 529.147 529.442 529.548 533.238 367.242 364.648 527.977 528.435 528.341 528.201 528.083 528.041 528.044 528.025 528.068 528.122 528.244 528.127 528.059 528.016 527.988 527.954 527.902 527.893 527.929 528.001 528.057 528.114 528.115 528.034 527.948 527.901 527.891 527.896 527.904 527.91 527.913 527.917 527.924 527.938 527.96 527.99 528.024 528.051 528.062 528.047 528.01 527.965 527.926 527.909 527.925 527.983 528.082 528.211 528.339 528.403 528.299 528.096 527.933 527.844 527.802 527.806 527.843 527.867 527.866 527.895 528.008 528.241 528.198 528.058 527.951 527.854 527.801 527.833 527.89 527.925 527.957 528.099 528.329 528.431 528.286 528.024 527.812 527.802 527.914 528.003 527.95 527.902 528.109 528.567 528.521 528.125 527.846 527.815 527.95 528.041 527.937 527.872 527.916 528.09 528.181 528.17 528.087 527.99 527.916 527.886 527.916 527.949 527.919 527.876 527.861 527.888 527.958 528.026 528.074 528.072 528.038 527.996 527.958 527.931 527.927 527.928 527.916 527.892 527.89 527.915 527.974 528.023 528.024 527.987 527.962 527.951 527.956 527.938 527.913 527.898 527.875 527.878 527.871 527.883 527.884 527.846 527.842 527.891 527.845 527.813 527.864 527.84 527.836 527.864 527.843 527.808 527.811 527.853 359.778 13.6467 5.89797 5.08706 4.91634 4.85608 4.77035 4.72243 4.61481 4.54394 4.52168 4.8005 4.89839 4.8013 4.72747 4.6351 4.5933 4.55123 4.51685 4.52966 4.57917 4.63142 4.67357 4.72077 4.74288 4.70871 4.63797 4.56874 4.51896 4.49162 4.49716 4.5241 4.56028 4.59975 4.64183 4.68847 4.73779 4.78529 4.82938 4.86033 4.87753 4.87403 4.84857 4.81029 4.77357 4.75325 4.77111 4.81646 4.8606 4.90417 4.94907 4.98389 4.93415 4.7854 4.62322 4.5117 4.4779 4.51507 4.49677 4.55886 4.84599 5.1908 5.34777 5.30737 5.1582 5.00816 4.84297 4.62194 4.52594 4.652 4.716 4.895 5.25164 5.44774 5.63667 5.64876 5.45033 4.98647 4.45508 4.56454 4.83051 4.90237 4.9034 5.06883 5.57575 5.77688 5.69168 5.14641 4.52995 4.59678 4.91756 4.95433 4.83393 4.98172 5.15679 5.21745 5.17511 5.12141 4.97219 4.76069 4.61563 4.60348 4.68513 4.69298 4.60388 4.58639 4.6682 4.75784 4.84197 4.90563 4.93816 4.90309 4.82749 4.73806 4.67836 4.67986 4.70496 4.66418 4.60237 4.57843 4.62982 4.74147 4.86948 4.89689 4.826 4.71345 4.71546 4.7637 4.76827 4.65998 4.59339 4.65749 4.68136 4.6942 4.61369 4.6956 4.60045 4.40351 4.54088 4.74562 4.38051 4.35231 4.58014 4.49458 4.44672 4.56451 4.42306 4.23198 4.18052 4.22843 14.0355 15.0252 6.05823 4.89217 4.86942 4.90121 4.83984 4.78225 4.57193 4.53445 4.56781 5.02309 5.05459 4.91995 4.85904 4.74206 4.70418 4.65838 4.63312 4.65494 4.69784 4.74767 4.79785 4.8544 4.87617 4.85001 4.79779 4.72762 4.654 4.60341 4.60442 4.64435 4.70419 4.76759 4.82953 4.88872 4.94726 5.0054 5.06266 5.11438 5.15722 5.17911 5.17093 5.13957 5.09775 5.06378 5.06412 5.07479 5.06278 5.0594 5.08029 5.10109 5.07839 4.98497 4.84991 4.73136 4.69835 4.73132 4.63811 4.78685 5.30722 5.70036 5.79476 5.72118 5.49132 5.34138 5.21815 4.94049 4.79969 4.90895 4.93257 5.2671 5.72202 5.85322 6.16007 6.12806 5.92616 5.46963 4.71345 4.83845 5.06904 5.12122 5.22197 5.45794 5.918 6.17208 6.17992 5.66322 4.82486 4.88191 5.19948 5.22724 5.16321 5.41026 5.56202 5.6103 5.52713 5.44848 5.34229 5.10261 4.91146 4.88758 4.95533 4.91746 4.81087 4.8392 4.97337 5.07255 5.14566 5.19019 5.19712 5.18605 5.13638 5.04376 4.97525 4.9814 5.00218 4.91372 4.7963 4.77081 4.85588 4.99369 5.13018 5.16441 5.11855 5.00809 5.02151 5.08768 5.07503 4.8954 4.78183 4.8661 4.90104 4.93589 4.89005 5.03511 4.88225 4.5773 4.76833 5.08305 4.54832 4.48946 4.81011 4.72557 4.64852 4.77916 4.57195 4.30354 4.21749 4.2808 14.1352 14.6862 5.85406 4.47726 4.68077 4.83678 4.80003 4.68001 4.3638 4.52536 4.73298 5.28161 5.21139 4.99885 4.96611 4.82845 4.81231 4.76128 4.73784 4.74885 4.76383 4.82527 4.90871 4.98808 5.00468 4.96837 4.91483 4.83147 4.73483 4.67226 4.68272 4.74494 4.83233 4.9199 5.00018 5.06931 5.13416 5.19779 5.2596 5.31578 5.36124 5.38872 5.38893 5.36281 5.31453 5.2638 5.23911 5.19433 5.1258 5.11193 5.15604 5.19473 5.18347 5.11884 5.03346 4.92108 4.88425 4.8701 4.69955 5.00414 5.68529 5.91756 5.97177 6.0019 5.75148 5.58077 5.47531 5.19464 5.0281 5.04506 5.05032 5.55382 5.91464 5.99841 6.5078 6.46445 6.25914 5.85587 4.96402 5.07681 5.15028 5.2127 5.41696 5.62966 5.96072 6.39068 6.52641 6.0623 5.09662 5.1286 5.32392 5.35569 5.39283 5.62059 5.71112 5.82007 5.77043 5.68133 5.57869 5.34001 5.14506 5.11399 5.11758 5.03151 4.95286 5.05449 5.20787 5.29417 5.34336 5.37308 5.37348 5.35736 5.31602 5.23328 5.1835 5.19611 5.18843 5.04945 4.90465 4.89741 5.01129 5.13175 5.25351 5.30226 5.2623 5.17741 5.2257 5.29184 5.24598 5.01792 4.8932 4.98982 5.02685 5.08001 5.07034 5.26746 5.08024 4.71043 4.91342 5.29042 4.68356 4.57355 4.95085 4.89789 4.80678 4.8978 4.65596 4.35389 4.24988 4.32856 14.1814 14.6346 5.5709 4.32384 4.41801 4.6632 4.6399 4.39954 4.17453 4.75211 5.05331 5.52031 5.38977 5.09239 5.11505 4.9518 4.97406 4.90601 4.86615 4.83013 4.81827 4.94794 5.08334 5.17035 5.17178 5.10253 5.01891 4.90351 4.78227 4.7256 4.77314 4.8783 5.00135 5.11319 5.21021 5.28875 5.35843 5.41937 5.47313 5.51447 5.54276 5.55766 5.55219 5.52292 5.46493 5.40005 5.34411 5.2274 5.10512 5.13455 5.25329 5.33507 5.32314 5.25023 5.18638 5.07439 5.03538 4.9483 4.73049 5.2283 5.92905 5.91573 5.98787 6.16198 5.98784 5.79603 5.67021 5.38441 5.20789 5.10337 5.1304 5.75561 5.8878 6.02253 6.70997 6.68857 6.53489 6.16037 5.20444 5.29339 5.16936 5.24393 5.51694 5.65298 5.8511 6.49317 6.80432 6.37352 5.34801 5.36327 5.3903 5.427 5.54603 5.66586 5.72966 5.89086 5.93814 5.87786 5.75335 5.49919 5.31512 5.28231 5.20441 5.08442 5.06154 5.22225 5.3536 5.41512 5.44817 5.4834 5.51558 5.49231 5.43934 5.36315 5.32673 5.34199 5.29807 5.11879 4.97067 4.9866 5.09409 5.17276 5.27679 5.36664 5.34743 5.28594 5.35575 5.41486 5.33401 5.08163 4.97374 5.07481 5.09484 5.17184 5.20602 5.42304 5.21889 4.81189 4.99653 5.38387 4.79554 4.62109 5.00724 5.01455 4.93149 4.96292 4.70214 4.38855 4.27828 4.36381 14.1909 14.5742 5.39419 4.5204 4.20308 4.42403 4.35065 4.15928 4.38396 5.20135 5.40252 5.71841 5.57904 5.2397 5.33352 5.1348 5.17983 5.07032 4.98137 4.87588 4.92993 5.18123 5.32192 5.37445 5.33771 5.21261 5.09046 4.93847 4.81295 4.80124 4.91507 5.06698 5.21356 5.33113 5.42568 5.49501 5.55594 5.6068 5.65265 5.68716 5.70685 5.70891 5.69108 5.65195 5.58112 5.5028 5.3992 5.18107 5.06615 5.24297 5.44283 5.54317 5.53086 5.42009 5.32923 5.19917 5.16146 4.98383 4.77387 5.44155 6.02057 5.82518 5.91911 6.19777 6.14819 5.97789 5.83371 5.52748 5.34505 5.11641 5.19808 5.87742 5.78354 6.00402 6.78227 6.79259 6.73911 6.39133 5.42733 5.47072 5.15607 5.24354 5.55232 5.5969 5.67243 6.51587 6.98779 6.60592 5.57767 5.56997 5.429 5.47017 5.63238 5.63204 5.69693 5.86073 6.01514 6.00953 5.88886 5.61693 5.44914 5.40451 5.24127 5.0997 5.15073 5.33929 5.42852 5.46877 5.49523 5.52302 5.59033 5.59763 5.54184 5.46705 5.4401 5.44723 5.36337 5.15125 5.0093 5.04318 5.12148 5.15839 5.23102 5.36829 5.4057 5.3741 5.45284 5.49439 5.3775 5.11252 5.02864 5.11262 5.10627 5.21049 5.31475 5.52948 5.31741 4.88842 5.02687 5.39538 4.89155 4.64783 5.01647 5.08401 5.02459 4.99756 4.72244 4.41217 4.30237 4.38267 14.1815 14.534 5.32256 4.77888 4.12069 4.20491 4.1016 4.34999 4.90602 5.5973 5.67354 5.87114 5.75309 5.46051 5.58735 5.34378 5.37431 5.19398 5.04048 4.93846 5.18474 5.4746 5.55786 5.56195 5.47165 5.2773 5.1213 4.94985 4.87566 4.95091 5.13799 5.31529 5.45875 5.55482 5.62485 5.66588 5.70404 5.73449 5.76892 5.79943 5.82037 5.82201 5.79902 5.75147 5.66836 5.57282 5.38604 5.07755 5.14454 5.48916 5.68328 5.76038 5.74922 5.60775 5.47245 5.3101 5.27124 4.98789 4.85054 5.61982 5.96901 5.73581 5.8006 6.11434 6.23135 6.10117 5.96137 5.63907 5.44775 5.10306 5.26258 5.92108 5.69428 5.9595 6.74266 6.82184 6.86186 6.55493 5.6225 5.59991 5.12377 5.2411 5.54833 5.51239 5.5197 6.48862 7.06678 6.76082 5.77723 5.73299 5.4463 5.49347 5.66032 5.58398 5.63656 5.76835 6.02351 6.06842 5.97367 5.70702 5.56528 5.49114 5.24019 5.09904 5.23383 5.40945 5.45873 5.48292 5.5051 5.52388 5.60004 5.65304 5.62111 5.55369 5.53515 5.52693 5.39966 5.15846 5.03138 5.07691 5.11994 5.13425 5.17012 5.32825 5.43816 5.44998 5.53296 5.54846 5.39305 5.12045 5.05576 5.10835 5.0939 5.21495 5.38566 5.60241 5.38806 4.94623 5.02835 5.36998 4.97869 4.66927 5.01608 5.12341 5.09076 5.01576 4.72618 4.42804 4.32222 4.38931 14.1694 14.5037 5.30311 4.9978 4.28459 4.18355 4.20864 4.90426 5.36762 5.85656 5.86194 5.98226 5.89894 5.69012 5.77835 5.52146 5.50686 5.2502 5.08457 5.12017 5.51718 5.71141 5.73917 5.70601 5.56685 5.31989 5.15096 5.00032 5.03963 5.19975 5.41171 5.56684 5.67877 5.741 5.78179 5.79297 5.80573 5.80879 5.82641 5.84942 5.8742 5.88391 5.86517 5.81445 5.72132 5.59419 5.27986 5.03825 5.40423 5.76455 5.87965 5.91991 5.91329 5.77368 5.60451 5.41407 5.36231 4.97283 4.95857 5.75102 5.83807 5.67742 5.67227 5.96171 6.2536 6.16507 6.0476 5.72727 5.52008 5.0785 5.32082 5.90514 5.65693 5.88499 6.61425 6.81611 6.91204 6.65689 5.78726 5.6898 5.08713 5.24894 5.53556 5.43968 5.44658 6.43578 7.06364 6.84274 5.94305 5.85453 5.44452 5.49872 5.64443 5.55172 5.56945 5.66425 5.99289 6.07197 6.00786 5.77383 5.66651 5.54414 5.21051 5.10292 5.31235 5.44202 5.46558 5.4758 5.49285 5.51114 5.5674 5.66072 5.66856 5.62467 5.61251 5.58384 5.41022 5.14875 5.0474 5.09493 5.11954 5.1313 5.13174 5.26424 5.44504 5.51018 5.59589 5.58121 5.38638 5.11345 5.06173 5.08699 5.08094 5.20587 5.41145 5.64731 5.43883 4.99035 5.02415 5.33859 5.06243 4.69868 5.02416 5.14736 5.13674 5.02398 4.71922 4.43861 4.33855 4.39026 14.1709 14.4801 5.30949 5.20041 4.6899 4.44959 4.63742 5.44605 5.64543 6.02592 5.98315 6.05809 6.00228 5.84909 5.87752 5.63426 5.55695 5.26493 5.19336 5.41692 5.79781 5.87366 5.87524 5.81503 5.63939 5.38698 5.24364 5.15618 5.29963 5.47857 5.66428 5.7736 5.84907 5.8775 5.8922 5.8773 5.8689 5.84673 5.84409 5.85084 5.87525 5.89449 5.88528 5.83546 5.73233 5.53678 5.13749 5.18333 5.72681 5.95205 6.0032 6.01034 6.00295 5.89242 5.71184 5.51139 5.42639 4.9552 5.08874 5.8415 5.67037 5.64491 5.5721 5.82823 6.24772 6.18403 6.09437 5.79644 5.56317 5.0553 5.37415 5.86351 5.65105 5.78376 6.42999 6.79786 6.909 6.70608 5.92615 5.75011 5.05294 5.27344 5.52671 5.39726 5.43446 6.38308 7.01222 6.86267 6.07874 5.94345 5.42615 5.48716 5.61056 5.53998 5.51421 5.57898 5.94513 6.04055 6.00343 5.82288 5.74865 5.55948 5.1658 5.12366 5.38087 5.45365 5.46358 5.46104 5.46946 5.49366 5.51976 5.63262 5.68458 5.67413 5.67019 5.61553 5.39542 5.13098 5.06342 5.10641 5.13071 5.15155 5.13088 5.19233 5.42415 5.54579 5.63744 5.59138 5.36156 5.09846 5.0578 5.06673 5.0759 5.2052 5.40223 5.66686 5.4751 5.02414 5.02593 5.31314 5.14191 4.74523 5.04411 5.16363 5.16863 5.02436 4.70538 4.44572 4.3523 4.39066 14.194 14.4623 5.33024 5.37631 5.14282 4.82607 5.11484 5.8028 5.802 6.14081 6.05454 6.10689 6.06371 5.93048 5.9115 5.68633 5.55966 5.31753 5.41355 5.72437 5.9814 5.99454 5.98403 5.90933 5.72153 5.50645 5.41126 5.39021 5.58058 5.72186 5.86456 5.92754 5.97371 5.9736 5.96848 5.93274 5.90805 5.86477 5.84313 5.82469 5.83804 5.86049 5.86042 5.81184 5.68823 5.39477 5.09553 5.48384 5.9661 6.0581 6.07114 6.04639 6.03091 5.95825 5.78856 5.59848 5.45602 4.95011 5.2298 5.88805 5.47632 5.62309 5.50641 5.74013 6.26256 6.1766 6.1085 5.84867 5.57595 5.04253 5.42576 5.79816 5.65181 5.67327 6.22394 6.78194 6.87709 6.71351 6.04448 5.78489 5.02664 5.32261 5.52187 5.38228 5.43477 6.33882 6.93625 6.83404 6.19046 6.00346 5.39399 5.46564 5.58111 5.54539 5.47401 5.50526 5.8763 5.9857 5.9765 5.85936 5.80517 5.53354 5.12074 5.16408 5.43055 5.45806 5.45992 5.44613 5.44315 5.47053 5.48046 5.5807 5.67323 5.6987 5.70301 5.61698 5.35918 5.11303 5.08098 5.11819 5.15987 5.19813 5.15928 5.13655 5.37435 5.55114 5.65166 5.57685 5.32364 5.08107 5.05277 5.05378 5.08637 5.22687 5.38216 5.6654 5.50049 5.0498 5.03638 5.29664 5.20815 4.81084 5.07258 5.17475 5.19018 5.01748 4.68746 4.45065 4.36439 4.3933 14.2284 14.4508 5.35673 5.50761 5.48796 5.16154 5.50169 5.99159 5.90376 6.21534 6.09514 6.13784 6.09601 5.96079 5.91502 5.7094 5.58222 5.47093 5.68882 5.95514 6.09871 6.09471 6.07796 6.00275 5.83013 5.67262 5.62108 5.64027 5.82276 5.9086 6.01461 6.04053 6.067 6.0454 6.02806 5.97762 5.94202 5.8817 5.84203 5.7943 5.78331 5.79293 5.79448 5.74086 5.57498 5.24483 5.23738 5.8076 6.09601 6.12441 6.1054 6.04792 6.01616 5.97843 5.83591 5.66773 5.44915 4.96771 5.36965 5.89899 5.3387 5.60252 5.46641 5.6529 6.29047 6.14867 6.09768 5.88403 5.55901 5.04727 5.48131 5.70157 5.65188 5.57206 6.03109 6.77619 6.83629 6.6901 6.1443 5.79789 5.01499 5.39764 5.52268 5.39033 5.41891 6.2898 6.84963 6.76876 6.28273 6.03381 5.35325 5.44377 5.56205 5.56541 5.44882 5.42693 5.76092 5.91382 5.94056 5.88396 5.83004 5.47224 5.0883 5.22209 5.45984 5.46299 5.45948 5.43502 5.41902 5.44194 5.45864 5.51618 5.63796 5.69674 5.70597 5.58492 5.3094 5.10085 5.09981 5.13573 5.21821 5.28115 5.21303 5.11629 5.30111 5.52437 5.63531 5.53827 5.27802 5.06554 5.05112 5.05282 5.12599 5.27964 5.37336 5.64913 5.51718 5.06887 5.05477 5.28977 5.24823 4.88746 5.10344 5.18068 5.203 5.00366 4.6674 4.4543 4.37556 4.39921 14.256 14.4443 5.38051 5.59878 5.71303 5.41179 5.77409 6.08126 5.97822 6.26016 6.12011 6.15938 6.11521 5.9712 5.92154 5.74424 5.67584 5.69698 5.92791 6.10291 6.18596 6.17913 6.16341 6.09621 5.95654 5.85171 5.8268 5.86016 6.00709 6.04759 6.12824 6.12763 6.14357 6.10817 6.08642 6.02834 5.9875 5.91494 5.85845 5.77991 5.73585 5.71136 5.6969 5.62359 5.42221 5.21908 5.51251 6.05099 6.1603 6.17249 6.12609 6.03592 5.97482 5.96368 5.85716 5.70958 5.4117 5.01041 5.50205 5.9021 5.36398 5.60146 5.45511 5.5429 6.22537 6.09137 6.07025 5.90149 5.51969 5.07523 5.5522 5.61076 5.65161 5.48821 5.87568 6.77554 6.79282 6.64534 6.22614 5.79541 5.02225 5.48847 5.5377 5.41792 5.38586 6.21698 6.76419 6.67795 6.35837 6.03579 5.31214 5.43084 5.55378 5.60176 5.44472 5.34504 5.60217 5.8362 5.9028 5.89316 5.81754 5.38924 5.07776 5.29359 5.47552 5.47499 5.47138 5.43416 5.39905 5.41154 5.44667 5.45431 5.58113 5.66655 5.67407 5.52291 5.25568 5.09773 5.11832 5.16878 5.31884 5.40602 5.30267 5.12985 5.22109 5.46781 5.58886 5.48024 5.22986 5.05447 5.05727 5.07289 5.20239 5.36241 5.38548 5.62452 5.5263 5.08245 5.07909 5.29108 5.25406 4.95973 5.13033 5.18072 5.20756 4.98354 4.64654 4.4573 4.38634 4.40845 14.2686 14.4412 5.39741 5.65769 5.85622 5.581 5.95236 6.11985 6.03336 6.28484 6.13845 6.17774 6.13493 5.98793 5.9546 5.81509 5.82979 5.91672 6.09466 6.19935 6.25835 6.24884 6.24106 6.18375 6.08181 6.01349 6.00193 6.03466 6.1414 6.15467 6.21839 6.20118 6.21373 6.17182 6.15203 6.09289 6.05233 5.97386 5.90492 5.79883 5.71713 5.64514 5.59657 5.49807 5.33623 5.35979 5.81486 6.18925 6.203 6.20836 6.14753 6.02924 5.92406 5.92324 5.85418 5.71698 5.35785 5.07973 5.63563 5.90463 5.57657 5.65426 5.48493 5.42506 6.03914 5.99854 6.03436 5.90093 5.4709 5.1288 5.64556 5.59317 5.65837 5.42441 5.75352 6.76796 6.74713 6.58816 6.29091 5.78413 5.04766 5.58116 5.58031 5.46175 5.34005 6.11037 6.69292 6.57676 6.41962 6.01491 5.27912 5.437 5.56198 5.66341 5.47581 5.2733 5.44377 5.77279 5.86395 5.88291 5.76228 5.30013 5.09203 5.36899 5.48406 5.50776 5.51441 5.46045 5.38922 5.38169 5.43197 5.41183 5.50763 5.60664 5.60613 5.44163 5.20748 5.10448 5.13625 5.23421 5.4584 5.56352 5.42925 5.1669 5.15553 5.38984 5.51773 5.40999 5.18378 5.04826 5.07716 5.12712 5.30477 5.46526 5.41915 5.59696 5.52851 5.09143 5.10709 5.29636 5.22831 5.01371 5.14952 5.17436 5.20394 4.95807 4.62583 4.46014 4.3971 4.42043 14.2702 14.4401 5.40713 5.69071 5.95152 5.69112 6.06547 6.13202 6.0724 6.29656 6.15442 6.19592 6.16194 6.02284 6.01632 5.91555 5.99534 6.08477 6.20276 6.26953 6.31716 6.30548 6.30816 6.25977 6.19308 6.14638 6.14216 6.16819 6.24143 6.24214 6.29203 6.26804 6.28023 6.23904 6.22442 6.16912 6.13326 6.05599 5.98314 5.86037 5.74622 5.62586 5.54075 5.44241 5.39304 5.60929 6.05821 6.25343 6.23984 6.23387 6.17453 6.03936 5.88276 5.86344 5.82769 5.68773 5.30782 5.17657 5.75987 5.87628 5.85032 5.7676 5.5613 5.34322 5.85651 5.89009 5.99539 5.8837 5.42764 5.20872 5.76641 5.68648 5.68735 5.38108 5.64321 6.73932 6.70123 6.52814 6.34046 5.76803 5.08686 5.66711 5.66141 5.52147 5.28622 5.96885 6.64591 6.487 6.46755 5.97733 5.25961 5.46861 5.60138 5.75936 5.55291 5.23426 5.32178 5.74225 5.81924 5.8495 5.66689 5.22065 5.12865 5.43539 5.49684 5.57758 5.60626 5.53544 5.40766 5.35336 5.40928 5.39536 5.43031 5.52051 5.5111 5.35587 5.17232 5.11917 5.15682 5.33963 5.62094 5.73974 5.58357 5.23038 5.11632 5.30437 5.43174 5.33529 5.14357 5.04642 5.11986 5.21245 5.41831 5.57725 5.47211 5.57042 5.52431 5.09649 5.13714 5.3006 5.18215 5.04527 5.15997 5.16129 5.19214 4.92852 4.6061 4.46315 4.40806 4.43422 14.2668 14.4401 5.40977 5.70184 6.01745 5.7629 6.13441 6.13051 6.09727 6.29971 6.16858 6.21302 6.19486 6.071 6.09184 6.02188 6.13235 6.19752 6.27208 6.32172 6.35947 6.34859 6.35987 6.31934 6.2812 6.24664 6.24848 6.26656 6.31473 6.31165 6.34854 6.32423 6.33602 6.29957 6.29177 6.24515 6.21894 6.14953 6.08265 5.95961 5.83129 5.68033 5.57511 5.50946 5.57748 5.87377 6.214 6.2791 6.26389 6.24767 6.20308 6.06879 5.86683 5.79424 5.77892 5.62867 5.27854 5.29231 5.85476 5.77914 6.04954 5.9125 5.67287 5.30917 5.7434 5.83716 5.9553 5.85162 5.40038 5.3136 5.91689 5.86016 5.74837 5.35897 5.52918 6.67024 6.65797 6.47584 6.37607 5.74797 5.13419 5.74265 5.78185 5.59948 5.23403 5.79993 6.62462 6.43072 6.50063 5.92754 5.25472 5.52268 5.69199 5.88626 5.67686 5.24534 5.23483 5.73756 5.75849 5.78727 5.5468 5.16527 5.18516 5.49215 5.53661 5.68855 5.75208 5.6718 5.4773 5.33524 5.37925 5.39618 5.36923 5.42408 5.40836 5.28081 5.15391 5.13725 5.18919 5.47423 5.78098 5.9177 5.7561 5.32747 5.10244 5.22619 5.34249 5.26335 5.11235 5.04995 5.18451 5.31286 5.53043 5.69 5.54046 5.54768 5.5139 5.09803 5.1682 5.30047 5.12865 5.06016 5.16223 5.1412 5.17226 4.89629 4.58814 4.46656 4.4193 4.45025 14.2617 14.4407 5.40614 5.69326 6.06198 5.80963 6.17203 6.12201 6.10925 6.29587 6.17984 6.22522 6.22591 6.12017 6.16255 6.11398 6.22954 6.26784 6.31633 6.35787 6.38586 6.37891 6.39593 6.36264 6.34618 6.31783 6.32486 6.33542 6.36614 6.3627 6.38756 6.36588 6.37614 6.34545 6.34376 6.30648 6.29167 6.23594 6.1853 6.07711 5.95792 5.80622 5.70484 5.68001 5.81197 6.08729 6.29162 6.28332 6.2636 6.24264 6.22379 6.11225 5.88346 5.73642 5.71442 5.55916 5.28168 5.41792 5.92722 5.70103 6.15451 6.05014 5.80477 5.29651 5.65386 5.92776 5.9111 5.80672 5.39304 5.43928 6.07877 6.04319 5.83764 5.35958 5.40318 6.53721 6.61967 6.44029 6.39734 5.72363 5.18464 5.80401 5.92939 5.69918 5.19681 5.61959 6.61909 6.41589 6.51465 5.8686 5.2631 5.59487 5.83339 6.03505 5.84258 5.30568 5.1617 5.71392 5.67166 5.6911 5.42379 5.1421 5.25863 5.54386 5.6239 5.82859 5.93637 5.86925 5.61222 5.34973 5.34247 5.39944 5.33764 5.34422 5.32059 5.22832 5.1514 5.15603 5.24933 5.61077 5.91729 6.08149 5.93779 5.45494 5.10656 5.16478 5.26127 5.20147 5.08907 5.06284 5.25907 5.40953 5.63047 5.79718 5.61955 5.53005 5.49696 5.09625 5.1995 5.29476 5.07836 5.06805 5.15718 5.11384 5.14456 4.86242 4.57229 4.4705 4.43105 4.47339 14.2561 14.4417 5.39773 5.66603 6.08819 5.83813 6.18596 6.1096 6.10928 6.28495 6.18586 6.22877 6.2496 6.16041 6.21864 6.18318 6.29118 6.30823 6.34247 6.37829 6.39788 6.39691 6.41738 6.39107 6.39109 6.36527 6.37659 6.38035 6.39892 6.39577 6.40977 6.39127 6.39898 6.37341 6.37644 6.34708 6.34278 6.30084 6.26926 6.18617 6.09408 5.96538 5.88406 5.88573 6.02364 6.22259 6.31721 6.26907 6.23546 6.21326 6.22499 6.15921 5.93029 5.71442 5.65039 5.50503 5.32318 5.55391 5.99748 5.81127 6.214 6.15548 5.94732 5.30444 5.55117 6.10744 5.84339 5.75532 5.40797 5.57463 6.21048 6.19003 5.94633 5.38649 5.26302 6.32678 6.5895 6.42391 6.40251 5.69481 5.23457 5.84728 6.08105 5.81789 5.18524 5.45134 6.61035 6.42757 6.50519 5.80311 5.28296 5.68324 5.99423 6.18535 6.04151 5.4113 5.09379 5.6314 5.5655 5.57052 5.32095 5.15156 5.33737 5.58632 5.75184 5.97247 6.11583 6.10032 5.81532 5.42032 5.30164 5.39409 5.33342 5.29974 5.26604 5.20184 5.16024 5.17561 5.34732 5.72987 6.01948 6.21732 6.11907 5.60587 5.12806 5.12126 5.19723 5.15478 5.07112 5.09219 5.33114 5.48919 5.71121 5.89356 5.70493 5.51849 5.47273 5.0912 5.23032 5.28324 5.03805 5.07714 5.1457 5.07957 5.10971 4.82818 4.55872 4.47506 4.44389 4.50991 14.2507 14.4427 5.38619 5.62063 6.097 5.85223 6.18061 6.09407 6.09781 6.26573 6.18483 6.22135 6.26239 6.1875 6.2573 6.229 6.32374 6.32705 6.35336 6.38316 6.39689 6.40258 6.4252 6.40565 6.41868 6.39331 6.4082 6.4058 6.41537 6.41208 6.41613 6.40019 6.40458 6.38297 6.38956 6.36637 6.37113 6.34108 6.3267 6.26757 6.20562 6.11099 6.05505 6.06439 6.17253 6.2921 6.31094 6.23612 6.18067 6.15663 6.19844 6.19447 5.99783 5.73727 5.61365 5.48924 5.40354 5.69345 6.07197 6.04872 6.26408 6.22698 6.08784 5.33899 5.40757 6.14798 5.72657 5.70789 5.44159 5.70012 6.27256 6.29338 6.06427 5.44492 5.12787 6.05745 6.56728 6.41948 6.38977 5.66247 5.28412 5.8811 6.21552 5.94674 5.20226 5.32 6.5762 6.44714 6.47082 5.73405 5.31089 5.77687 6.139 6.31261 6.2552 5.5616 5.04457 5.5013 5.47537 5.45638 5.25547 5.19079 5.41173 5.62195 5.88944 6.10143 6.26093 6.31844 6.07069 5.56009 5.27307 5.37454 5.34479 5.28535 5.24269 5.19622 5.1743 5.19871 5.46812 5.82796 6.09351 6.31704 6.28988 5.77442 5.17362 5.09005 5.14851 5.11959 5.05768 5.13847 5.39447 5.55051 5.77385 5.97518 5.79236 5.51583 5.44018 5.08279 5.25992 5.26608 5.0102 5.09147 5.12858 5.03958 5.06894 4.79475 4.54762 4.48032 4.45833 4.55664 14.2461 14.444 5.37372 5.55726 6.08792 5.85462 6.15793 6.07445 6.07517 6.23648 6.17548 6.20114 6.26157 6.19932 6.27798 6.25315 6.33242 6.32906 6.34973 6.37283 6.38333 6.39546 6.41987 6.40668 6.43066 6.40463 6.42259 6.41465 6.4168 6.41265 6.40706 6.39253 6.39284 6.37388 6.38326 6.36488 6.37771 6.35803 6.35876 6.31992 6.28255 6.21654 6.18115 6.1887 6.26145 6.3177 6.28309 6.18285 6.09693 6.06776 6.13821 6.20584 6.07279 5.79402 5.631 5.52442 5.51791 5.82072 6.13126 6.25017 6.31471 6.27642 6.20914 5.40581 5.22889 5.98044 5.57477 5.67623 5.48986 5.80696 6.27084 6.36378 6.17911 5.53635 5.03268 5.78173 6.5388 6.41774 6.35887 5.62903 5.33556 5.93364 6.32519 6.07729 5.24451 5.23798 6.49721 6.46396 6.41294 5.66425 5.3412 5.85593 6.25109 6.41058 6.45553 5.75242 5.03108 5.36194 5.44029 5.37684 5.23241 5.25678 5.48728 5.68502 6.01413 6.21284 6.37312 6.48771 6.34267 5.77262 5.28645 5.33685 5.36016 5.2895 5.24043 5.20277 5.1917 5.24076 5.58764 5.91114 6.15344 6.38335 6.44034 5.95425 5.24968 5.06746 5.11021 5.09214 5.0508 5.19523 5.44931 5.59962 5.82277 6.03976 5.87729 5.52643 5.39835 5.07087 5.28745 5.24381 4.99505 5.11097 5.10532 4.99565 5.02411 4.76317 4.5392 4.4864 4.47467 4.60155 14.2416 14.4453 5.36283 5.47629 6.05883 5.84702 6.11786 6.04831 6.04194 6.19528 6.15666 6.16651 6.2446 6.19413 6.28056 6.2574 6.32085 6.31636 6.3313 6.34738 6.35677 6.37464 6.40126 6.39382 6.42784 6.40062 6.42129 6.40847 6.40366 6.39779 6.38221 6.36747 6.36273 6.34486 6.35654 6.34192 6.36249 6.35259 6.36753 6.34704 6.32978 6.28514 6.26329 6.26589 6.30746 6.31333 6.23652 6.10317 5.97376 5.93463 6.03353 6.18248 6.14135 5.86657 5.70351 5.60493 5.64564 5.92639 6.13779 6.3733 6.3669 6.31613 6.29504 5.51246 5.08023 5.74947 5.46463 5.66985 5.55026 5.90154 6.27439 6.41913 6.28038 5.65494 4.99428 5.56213 6.4808 6.41254 6.31133 5.5979 5.39299 6.03017 6.41988 6.20229 5.3033 5.19905 6.36521 6.46963 6.33445 5.59607 5.36857 5.90825 6.33356 6.48854 6.614 5.97417 5.05909 5.22455 5.46074 5.33918 5.24925 5.33832 5.5723 5.80496 6.12487 6.31278 6.46739 6.6049 6.58973 6.04516 5.36502 5.27983 5.3714 5.3026 5.24967 5.21534 5.21329 5.32269 5.697 5.98883 6.20862 6.42567 6.56107 6.13769 5.35582 5.05451 5.08066 5.07192 5.05877 5.25553 5.49939 5.64055 5.85881 6.08677 5.95467 5.55271 5.34736 5.05534 5.31199 5.2173 4.99234 5.13283 5.07446 4.95026 4.97731 4.73363 4.53364 4.49342 4.49302 4.63345 14.2369 14.4467 5.35612 5.37872 6.00626 5.82976 6.05852 6.01118 5.99853 6.13946 6.127 6.11578 6.20858 6.16977 6.26474 6.24302 6.29092 6.2892 6.29708 6.30615 6.31566 6.33857 6.36851 6.36598 6.41022 6.38166 6.40471 6.38771 6.37548 6.36687 6.34006 6.3228 6.31146 6.29253 6.30614 6.29443 6.32307 6.32333 6.3529 6.35085 6.35198 6.32493 6.31223 6.30838 6.32195 6.28512 6.16884 5.98872 5.81224 5.75711 5.86755 6.10988 6.19184 5.94265 5.79772 5.70499 5.76388 6.00658 6.09542 6.43842 6.42196 6.3566 6.34354 5.65817 4.98432 5.55033 5.48593 5.69125 5.62056 5.99569 6.34302 6.47165 6.36207 5.78582 5.00139 5.43286 6.3811 6.39908 6.24992 5.57331 5.46291 6.16737 6.50576 6.31596 5.36894 5.18768 6.18839 6.45916 6.23876 5.53155 5.39196 5.95184 6.39925 6.55414 6.72377 6.20955 5.13178 5.08148 5.49895 5.34055 5.29723 5.41928 5.65984 5.96255 6.22879 6.40814 6.55642 6.69272 6.77391 6.34722 5.52211 5.22078 5.36985 5.32179 5.26568 5.23349 5.24133 5.44271 5.80025 6.06946 6.26699 6.45229 6.64385 6.31515 5.48897 5.05379 5.05858 5.05805 5.08894 5.31649 5.54837 5.67454 5.88157 6.1161 6.01935 5.59196 5.2894 5.03689 5.33269 5.18906 4.99945 5.15197 5.03505 4.90735 4.93197 4.70687 4.53121 4.50157 4.51347 4.64951 14.2318 14.448 5.35595 5.26713 5.92537 5.8013 5.97613 5.9554 5.94441 6.06573 6.08458 6.0474 6.14982 6.12314 6.22982 6.21065 6.24275 6.24632 6.24523 6.24732 6.25721 6.28479 6.31982 6.3213 6.37696 6.34728 6.37225 6.35194 6.3308 6.31818 6.27765 6.25448 6.23405 6.21076 6.22577 6.216 6.25354 6.26549 6.31158 6.33014 6.35014 6.33953 6.33382 6.32255 6.3101 6.23501 6.07802 5.8529 5.66295 5.5826 5.65006 5.96223 6.20955 6.0212 5.88084 5.80183 5.86893 6.06997 6.09405 6.4787 6.48028 6.40762 6.36082 5.83059 4.93878 5.38448 5.65433 5.72531 5.69817 6.09789 6.46642 6.52585 6.42419 5.91299 5.03387 5.37233 6.24942 6.37418 6.17786 5.55862 5.55359 6.32036 6.58048 6.41369 5.43429 5.19146 5.98759 6.43053 6.1292 5.47312 5.41384 6.02367 6.46164 6.61236 6.79646 6.44134 5.25803 4.95299 5.51625 5.36674 5.36196 5.49746 5.75198 6.11887 6.33083 6.50339 6.64762 6.76906 6.88675 6.63881 5.7585 5.19501 5.34296 5.34651 5.28911 5.26063 5.29299 5.57949 5.90255 6.15887 6.33951 6.47048 6.68398 6.47538 5.64378 5.07189 5.042 5.05503 5.14006 5.37823 5.59994 5.70529 5.89139 6.12592 6.06676 5.63628 5.2286 5.01785 5.34981 5.16088 5.01232 5.1623 4.98864 4.87343 4.89067 4.68306 4.5325 4.51114 4.53662 4.65606 14.2266 14.4486 5.36378 5.14703 5.80957 5.75761 5.8645 5.8674 5.87718 5.97151 6.02665 5.96059 6.06375 6.04946 6.17423 6.16023 6.1746 6.18511 6.17287 6.16742 6.17714 6.20949 6.25236 6.25712 6.32633 6.29638 6.32251 6.30002 6.26747 6.24923 6.19134 6.15766 6.12507 6.09261 6.10754 6.09822 6.14468 6.17074 6.23646 6.28036 6.3221 6.32878 6.32945 6.3108 6.27469 6.16566 5.97636 5.74204 5.59098 5.48307 5.44634 5.7279 6.16853 6.10358 5.94518 5.89247 5.96409 6.12771 6.19645 6.51899 6.54015 6.4752 6.35003 6.00845 4.95436 5.24725 5.87332 5.75227 5.78235 6.21294 6.6062 6.58318 6.46847 6.0247 5.07847 5.34243 6.10513 6.33614 6.09881 5.55836 5.6716 6.46449 6.64207 6.49263 5.49455 5.2037 5.78605 6.38325 6.00778 5.42289 5.43907 6.1394 6.53036 6.66985 6.83882 6.64604 5.43956 4.87712 5.49701 5.40436 5.43407 5.58611 5.88561 6.25683 6.43317 6.60017 6.74418 6.84446 6.95027 6.87192 6.05424 5.23778 5.28013 5.37367 5.32464 5.30642 5.39394 5.71812 6.0061 6.25795 6.43498 6.49023 6.68129 6.60564 5.81293 5.11589 5.03097 5.0719 5.20438 5.44189 5.65901 5.73914 5.88804 6.11309 6.09349 5.67533 5.16923 5.00199 5.36368 5.13348 5.02769 5.16031 4.94001 4.85623 4.85422 4.66206 4.5383 4.52226 4.56138 4.65963 14.2212 14.4479 5.37902 5.02897 5.65079 5.69107 5.71379 5.72234 5.78849 5.85584 5.94791 5.85528 5.94626 5.94169 6.09478 6.09142 6.08312 6.1015 6.07579 6.0614 6.06986 6.10746 6.1622 6.17033 6.25565 6.22773 6.25372 6.2309 6.18404 6.15888 6.0805 6.03159 5.98468 5.93743 5.94841 5.93695 5.9892 6.03072 6.11836 6.19422 6.26353 6.29087 6.29912 6.27507 6.21992 6.08762 5.8919 5.69971 5.61699 5.49984 5.33341 5.45952 6.02681 6.17842 5.99383 5.98066 6.0493 6.18282 6.35804 6.57098 6.59898 6.55565 6.31372 6.15641 5.02772 5.13485 6.0193 5.77029 5.87382 6.34034 6.73322 6.64377 6.49576 6.11262 5.12634 5.32668 5.98122 6.28385 6.01685 5.57748 5.81597 6.58643 6.68999 6.55137 5.5464 5.22062 5.62282 6.31792 5.87804 5.38469 5.47856 6.2844 6.60712 6.7327 6.85729 6.79216 5.66242 4.86644 5.44181 5.45216 5.51475 5.69821 6.0737 6.37889 6.53578 6.69773 6.84558 6.92598 6.98655 7.00806 6.37293 5.37717 5.19319 5.38803 5.37943 5.38451 5.54467 5.85548 6.11054 6.36173 6.55309 6.52585 6.64009 6.69183 5.98658 5.19071 5.0303 5.10971 5.27365 5.50805 5.73015 5.78475 5.87694 6.07748 6.09776 5.69975 5.11282 4.99484 5.37408 5.10699 5.04284 5.14638 4.89414 4.85673 4.82198 4.64374 4.54832 4.53423 4.58136 4.66258 14.2154 14.4443 5.39844 4.93106 5.4404 5.58931 5.50988 5.47771 5.65428 5.71873 5.84143 5.7316 5.79724 5.79176 5.98576 6.0052 5.96528 5.99065 5.94983 5.92429 5.93027 5.97283 6.04438 6.05794 6.16157 6.14066 6.16492 6.14516 6.08281 6.05122 5.95358 5.88596 5.82413 5.75654 5.75764 5.74019 5.79048 5.84424 5.95206 6.06516 6.17 6.22482 6.24428 6.21983 6.15569 6.01973 5.84827 5.73014 5.70437 5.60482 5.35259 5.23358 5.76876 6.21152 6.03135 6.06237 6.12266 6.23473 6.51713 6.63625 6.65384 6.63505 6.2665 6.23539 5.14205 5.03724 6.05031 5.78681 5.97124 6.47126 6.83194 6.70571 6.50547 6.17198 5.17126 5.31817 5.9254 6.21218 5.93485 5.61614 5.97404 6.68446 6.72485 6.58927 5.5875 5.23736 5.5514 6.22788 5.74586 5.36702 5.55166 6.43218 6.68563 6.80384 6.86169 6.86519 5.9026 4.92044 5.35005 5.51038 5.60957 5.84538 6.26737 6.49022 6.63671 6.79376 6.94684 7.01352 7.00855 7.05026 6.66227 5.61891 5.1265 5.35986 5.44527 5.5041 5.71692 5.9896 6.21322 6.46144 6.67791 6.58619 6.57068 6.72046 6.15216 5.29741 5.04365 5.15614 5.34008 5.57481 5.81361 5.85051 5.87122 6.02469 6.07953 5.70301 5.05787 5.00162 5.38081 5.08107 5.05482 5.12398 4.85361 4.87038 4.79306 4.62816 4.56046 4.54498 4.58693 4.66457 14.2091 14.4357 5.4169 4.87955 5.17173 5.43538 5.24449 5.0908 5.41944 5.55419 5.70259 5.58897 5.62057 5.59186 5.83763 5.90374 5.8235 5.85013 5.79445 5.75273 5.75539 5.8001 5.89364 5.91741 6.04044 6.03547 6.05775 6.04653 5.96987 5.93257 5.81929 5.72993 5.6544 5.56412 5.54726 5.51883 5.55876 5.61723 5.74079 5.89055 6.03916 6.13138 6.17006 6.15467 6.09514 5.97449 5.84994 5.80045 5.80044 5.7243 5.47329 5.12242 5.45097 6.1518 6.0689 6.12687 6.18461 6.29287 6.64606 6.711 6.70099 6.69648 6.22894 6.23722 5.27966 4.95477 6.00446 5.80539 6.06787 6.59131 6.89848 6.76384 6.49591 6.20056 5.2088 5.30509 5.92794 6.10351 5.85534 5.66517 6.12498 6.7639 6.7484 6.60511 5.61654 5.24682 5.56308 6.0919 5.6192 5.37774 5.67079 6.55735 6.75802 6.88116 6.8592 6.87608 6.13493 5.04128 5.23519 5.57125 5.71966 6.03224 6.41978 6.59133 6.73246 6.88432 7.0397 7.0987 7.0231 7.02521 6.855 5.93769 5.14964 5.27221 5.48701 5.63642 5.87307 6.11201 6.3088 6.54735 6.7853 6.6608 6.48838 6.68476 6.29523 5.43427 5.07091 5.19301 5.39436 5.63626 5.90151 5.93398 5.8791 5.9625 6.04008 5.68154 5.00186 5.02426 5.38292 5.05411 5.06255 5.09867 4.82044 4.89026 4.76775 4.61555 4.57176 4.55225 4.57242 4.66556 14.2027 14.4204 5.42726 4.9012 4.85167 5.21044 4.94439 4.58437 5.01741 5.32882 5.52906 5.42709 5.42753 5.34406 5.63215 5.78264 5.66493 5.67768 5.61129 5.54791 5.54527 5.58443 5.69974 5.74068 5.8861 5.90751 5.93034 5.93345 5.8468 5.80548 5.68536 5.57501 5.48914 5.38084 5.34024 5.29575 5.31362 5.3619 5.48698 5.66711 5.86637 6.00952 6.08045 6.08371 6.04182 5.95135 5.87781 5.87023 5.86957 5.80137 5.60742 5.15352 5.14838 5.953 6.11045 6.16104 6.23825 6.37082 6.73868 6.78902 6.73504 6.72403 6.20368 6.17908 5.43145 4.89558 5.88421 5.83599 6.15116 6.686 6.9325 6.80749 6.4642 6.19618 5.23578 5.27552 5.92406 5.93958 5.78149 5.71333 6.25305 6.82842 6.75969 6.5957 5.63258 5.24065 5.57989 5.89061 5.50641 5.41118 5.82045 6.64222 6.8166 6.95461 6.8538 6.83633 6.32645 5.22468 5.13646 5.60961 5.8346 6.21703 6.51876 6.67578 6.81617 6.96253 7.1137 7.16614 7.0304 6.95465 6.91132 6.27107 5.31926 5.16149 5.45715 5.71772 5.97901 6.20869 6.38858 6.60884 6.85319 6.72162 6.40482 6.58856 6.3987 5.59758 5.11783 5.20693 5.42587 5.68249 5.97845 6.01789 5.89342 5.89453 5.98045 5.63411 4.94324 5.06005 5.37859 5.02377 5.06568 5.07535 4.79478 4.90819 4.74599 4.60591 4.57984 4.55675 4.55229 4.66523 14.1957 14.3937 5.41876 4.99331 4.5314 4.90685 4.66915 4.16148 4.48823 4.98011 5.30768 5.24585 5.23498 5.07462 5.35775 5.62339 5.50409 5.48058 5.41042 5.32365 5.31334 5.33548 5.45982 5.51987 5.68654 5.74594 5.77549 5.79923 5.71198 5.66844 5.5539 5.43012 5.33878 5.22524 5.16369 5.10338 5.09053 5.11103 5.21231 5.39806 5.63938 5.84397 5.96449 5.99864 5.98538 5.93123 5.89975 5.90792 5.89405 5.82266 5.67608 5.28284 4.94222 5.61951 6.1191 6.1607 6.2769 6.45497 6.79248 6.85583 6.74455 6.70106 6.17313 6.06628 5.58224 4.87344 5.67554 5.89704 6.20511 6.74043 6.92772 6.81831 6.40443 6.15448 5.24953 5.22902 5.89226 5.74388 5.71524 5.7539 6.36626 6.87662 6.75174 6.55471 5.63347 5.21689 5.5638 5.64088 5.41117 5.4514 5.97254 6.67942 6.85451 7.00768 6.84263 6.75204 6.43595 5.44818 5.09538 5.59828 5.92467 6.32534 6.56144 6.72828 6.87523 7.01657 7.1549 7.19704 7.02039 6.85252 6.85307 6.51966 5.63481 5.13603 5.33992 5.68735 6.00182 6.25884 6.43862 6.6315 6.86288 6.73777 6.3182 6.44435 6.44338 5.77867 5.20365 5.19877 5.42533 5.70149 6.02568 6.0783 5.89659 5.8175 5.89934 5.56091 4.88212 5.10287 5.36575 4.98794 5.06325 5.0554 4.77342 4.9169 4.72835 4.59903 4.58349 4.56089 4.55737 4.6639 14.188 14.3535 5.37898 5.10837 4.34634 4.5835 4.40504 4.09456 4.09889 4.51373 5.00286 5.04124 5.05293 4.8352 5.03579 5.39172 5.34297 5.27501 5.2052 5.10272 5.08527 5.08337 5.19254 5.26081 5.43582 5.53815 5.58344 5.63219 5.55854 5.51577 5.41929 5.29911 5.2101 5.10873 5.03886 4.97166 4.92975 4.91264 4.96424 5.11473 5.36285 5.6197 5.80149 5.8799 5.90152 5.8825 5.88152 5.88821 5.86036 5.78783 5.6647 5.40097 4.8921 5.23948 6.0244 6.13128 6.27695 6.49132 6.78914 6.87976 6.7068 6.61193 6.1151 5.89885 5.68627 4.9082 5.43058 5.96393 6.21446 6.73123 6.86291 6.7693 6.30649 6.06798 5.24542 5.1685 5.84244 5.58586 5.65913 5.78469 6.48852 6.89782 6.71353 6.47239 5.61375 5.17953 5.52405 5.40477 5.33708 5.48907 6.12286 6.67302 6.8558 7.0194 6.81244 6.62806 6.4478 5.67324 5.1407 5.52711 5.94171 6.31317 6.52967 6.72177 6.88768 7.02644 7.14368 7.17121 6.97381 6.72476 6.71574 6.60282 5.99402 5.31857 5.22622 5.52988 5.90573 6.23202 6.43609 6.59555 6.79935 6.68732 6.21404 6.26528 6.41218 5.95535 5.35309 5.19769 5.39118 5.68016 6.02468 6.09442 5.87286 5.72628 5.79346 5.46247 4.82008 5.14562 5.34213 4.945 5.05311 5.03871 4.75094 4.91286 4.71757 4.59406 4.58314 4.56424 4.59467 4.66016 14.1793 14.2978 5.29726 5.18267 4.392 4.43679 4.17941 4.18422 4.08554 4.15429 4.61651 4.8056 4.87695 4.67119 4.73875 5.0758 5.15185 5.07226 5.00536 4.90466 4.886 4.86749 4.94098 4.99565 5.15054 5.28107 5.34815 5.42083 5.37685 5.34304 5.27545 5.18386 5.10896 5.02618 4.95922 4.8959 4.8443 4.80205 4.79798 4.87739 5.07634 5.34188 5.57482 5.70417 5.76244 5.77544 5.79227 5.79026 5.75723 5.69509 5.58911 5.42737 4.97422 4.93491 5.76961 6.06958 6.21656 6.43015 6.68758 6.8043 6.58647 6.44681 6.00981 5.69055 5.70444 5.00564 5.21616 5.97393 6.18969 6.64148 6.70477 6.6293 6.15842 5.92727 5.21493 5.09154 5.76576 5.54445 5.6187 5.79949 6.61568 6.87111 6.63105 6.33675 5.56388 5.12815 5.46401 5.27944 5.29298 5.51596 6.27999 6.62476 6.79584 6.96763 6.74444 6.46787 6.37068 5.84624 5.27704 5.42541 5.8502 6.16483 6.38244 6.61629 6.82012 6.96296 7.05636 7.06984 6.87031 6.56838 6.52211 6.54242 6.2249 5.67561 5.33637 5.38094 5.70427 6.10099 6.35238 6.48373 6.65874 6.56637 6.07914 6.06089 6.31163 6.08554 5.56249 5.25704 5.34094 5.60854 5.96089 6.05602 5.81519 5.6166 5.65597 5.33827 4.76084 5.18434 5.30578 4.8929 5.03089 5.02402 4.72023 4.89498 4.71626 4.58945 4.58032 4.56469 4.64067 4.64904 14.1691 14.2252 5.16708 5.18225 4.55423 4.56171 4.1847 4.39152 4.26643 4.13607 4.31576 4.57454 4.71053 4.58606 4.54909 4.74419 4.90485 4.86898 4.81967 4.74423 4.73119 4.71293 4.74874 4.776 4.88126 5.00466 5.08352 5.17039 5.16657 5.15755 5.12442 5.06631 5.00746 4.94125 4.88333 4.83034 4.78441 4.74021 4.71285 4.7349 4.84856 5.05785 5.29555 5.46184 5.55521 5.59516 5.6128 5.60495 5.58426 5.54759 5.46505 5.36174 5.06757 4.8011 5.39595 5.92528 6.08834 6.25698 6.4434 6.56532 6.35366 6.20792 5.84093 5.45732 5.626 5.12999 5.06873 5.86599 6.15148 6.4863 6.44115 6.38314 5.95437 5.72527 5.14485 4.99465 5.64084 5.61421 5.61211 5.77901 6.6872 6.76528 6.48984 6.13597 5.47102 5.05609 5.37498 5.30924 5.29267 5.49787 6.41031 6.52186 6.65565 6.83671 6.62109 6.27263 6.21002 5.9055 5.44764 5.38031 5.68478 5.89126 6.08914 6.37727 6.63994 6.79938 6.87749 6.88427 6.69676 6.37472 6.28567 6.38627 6.26726 5.96238 5.6717 5.48244 5.55992 5.90603 6.18503 6.30564 6.46202 6.38866 5.90881 5.83372 6.15649 6.12544 5.76097 5.39717 5.32547 5.5046 5.84207 5.96775 5.72655 5.48322 5.47862 5.18723 4.71383 5.21837 5.25313 4.82736 4.98832 5.00675 4.67278 4.85735 4.72468 4.58359 4.57669 4.5598 4.6674 4.6246 14.1568 14.1344 4.98805 5.09732 4.67326 4.74747 4.4192 4.58022 4.47421 4.34484 4.27584 4.44279 4.59958 4.55335 4.48035 4.51531 4.65588 4.67921 4.66806 4.62576 4.61951 4.60832 4.6256 4.63384 4.68612 4.77117 4.84168 4.92482 4.95315 4.96666 4.95724 4.92639 4.88599 4.83784 4.79399 4.75513 4.7218 4.68751 4.65909 4.65522 4.70716 4.83609 5.02069 5.18636 5.30031 5.35033 5.35809 5.3571 5.36541 5.35851 5.30222 5.23681 5.07368 4.8152 5.08188 5.65 5.88028 5.99217 6.07821 6.17295 6.03172 5.91375 5.59618 5.20503 5.43901 5.19956 4.99125 5.63739 6.06045 6.28785 6.12444 6.06482 5.70036 5.46159 5.02407 4.87402 5.44737 5.66014 5.6713 5.76527 6.6094 6.55026 6.27923 5.85908 5.32142 4.95282 5.2357 5.37899 5.3579 5.48541 6.41051 6.3432 6.43789 6.62422 6.42519 6.03548 5.96792 5.83937 5.54456 5.43241 5.567 5.604 5.72006 6.0387 6.35815 6.54125 6.61817 6.62336 6.44916 6.13289 6.01284 6.15254 6.1797 6.05052 5.90933 5.71148 5.59338 5.76699 6.00095 6.11392 6.25167 6.16674 5.69791 5.57878 5.94559 6.07397 5.85357 5.53312 5.3701 5.4297 5.7174 5.85206 5.60296 5.31658 5.2573 5.00855 4.69414 5.24048 5.1713 4.73978 4.91131 4.97379 4.60108 4.78111 4.73072 4.57132 4.56845 4.54686 4.66001 4.58071 14.1421 14.0225 4.7743 4.93411 4.68441 4.81237 4.62324 4.67425 4.57385 4.49102 4.37701 4.42412 4.53939 4.52224 4.44859 4.40786 4.47854 4.52504 4.54574 4.53235 4.52925 4.52151 4.52892 4.52862 4.54981 4.59808 4.64897 4.71512 4.75634 4.78546 4.79506 4.788 4.76761 4.73589 4.70482 4.67781 4.65518 4.63028 4.60582 4.59206 4.60817 4.67256 4.78592 4.91335 5.02667 5.08947 5.10958 5.11978 5.12849 5.12552 5.0871 5.05114 4.98087 4.82239 4.9046 5.3109 5.56861 5.68333 5.72017 5.78336 5.69291 5.56798 5.27966 4.94052 5.16435 5.14961 4.93757 5.34793 5.7984 6.00739 5.82423 5.72924 5.39241 5.14266 4.85197 4.72899 5.1685 5.61048 5.74444 5.86707 6.32304 6.21085 5.96491 5.49104 5.10417 4.80907 5.01483 5.36746 5.45768 5.60783 6.18696 6.07348 6.14981 6.31053 6.11047 5.71874 5.62991 5.63902 5.49238 5.43586 5.49042 5.41606 5.44035 5.71798 6.03069 6.21386 6.28596 6.27634 6.10246 5.81276 5.68659 5.83329 5.9651 5.97338 5.93735 5.79324 5.6291 5.68322 5.84163 5.92911 6.01449 5.86976 5.42438 5.29744 5.66676 5.90346 5.80289 5.56711 5.40376 5.39949 5.60527 5.69347 5.41049 5.10093 4.98963 4.79962 4.69198 5.20644 5.02672 4.6171 4.77761 4.88818 4.50307 4.6324 4.69293 4.52612 4.52909 4.5174 4.61513 4.50973 14.1247 13.8851 4.53721 4.6852 4.57911 4.72374 4.67683 4.65429 4.5439 4.49987 4.42944 4.43408 4.47898 4.44316 4.37635 4.33776 4.37554 4.42114 4.44815 4.44495 4.4365 4.42577 4.42562 4.42149 4.42944 4.45663 4.49104 4.5409 4.58225 4.61958 4.64484 4.65675 4.65371 4.63575 4.61447 4.59459 4.57617 4.554 4.52886 4.50701 4.49995 4.52169 4.58085 4.66649 4.75941 4.8276 4.86709 4.88165 4.86518 4.83588 4.79604 4.77243 4.76013 4.70755 4.74367 4.99456 5.22488 5.35527 5.38435 5.42241 5.34088 5.17577 4.9262 4.67888 4.83009 4.92208 4.8327 5.08208 5.42092 5.60398 5.44414 5.30855 5.00559 4.77936 4.62968 4.56098 4.765 5.29911 5.55294 5.73477 5.80396 5.67772 5.45163 5.01557 4.80184 4.6181 4.67159 5.12482 5.323 5.50452 5.69262 5.61556 5.68879 5.78186 5.57348 5.25066 5.16415 5.24748 5.26464 5.2711 5.29093 5.17822 5.14743 5.34257 5.58509 5.73605 5.79254 5.75559 5.58939 5.36826 5.27711 5.40523 5.57401 5.67586 5.70367 5.60588 5.481 5.5026 5.60662 5.65994 5.64757 5.43676 5.0774 4.99621 5.29971 5.52827 5.50099 5.37938 5.30272 5.31229 5.42381 5.40651 5.11353 4.81953 4.67237 4.54865 4.60049 4.99888 4.7703 4.44725 4.55559 4.67531 4.37716 4.42111 4.53178 4.39811 4.41068 4.42974 4.51758 4.39976 14.1054 356.121 523.251 524.064 524.304 524.848 524.787 525.435 525.846 526.121 526.212 526.65 526.575 526.287 526.309 526.667 527.035 527.415 527.945 528.471 528.609 528.618 528.58 528.647 528.714 528.688 528.695 528.666 528.789 529.049 529.499 530.103 530.661 531.07 531.227 531.253 531.223 531.206 531.153 531.011 530.712 530.255 529.697 529.255 529.117 529.313 529.649 530.014 530.421 530.85 531.291 531.615 531.819 531.846 531.317 530.067 529.157 529.202 529.505 530.13 531.243 532.43 533.788 534.496 533.894 533.843 534.616 532.096 528.636 527.826 528.192 529.245 531.25 532.191 534.128 533.347 527.105 524.785 524.596 524.706 526.28 527.399 529.414 531.39 534.842 532.53 526.505 525.33 524.787 524.944 526.616 527.639 527.931 528.692 530.884 532.519 533.294 534.427 533.921 531.97 531.014 530.714 530.175 529.617 529.377 529.57 530.299 531.656 533.189 534.216 534.517 534.369 534.035 533.971 534.055 533.713 532.709 531.803 531.357 531.819 533.231 534.928 535.547 535.305 535.004 534.906 534.307 532.976 531.418 531.054 531.736 533.592 535.905 536.102 534.213 531.384 525.723 528.221 533.092 531.411 530.072 531.573 532.202 530.233 528.815 529.449 529.974 529.98 530.463 533.452 367.325 ) ; } hot { blending binomial2; n 2; beta1 0.075; type omegaWallFunction; value nonuniform List<scalar> 2250 ( 356.121 523.251 524.064 524.304 524.848 524.787 525.435 525.846 526.121 526.212 526.65 526.575 526.287 526.309 526.667 527.035 527.415 527.945 528.471 528.609 528.618 528.58 528.647 528.714 528.688 528.695 528.666 528.789 529.049 529.499 530.103 530.661 531.07 531.227 531.253 531.223 531.206 531.153 531.011 530.712 530.255 529.697 529.255 529.117 529.313 529.649 530.014 530.421 530.85 531.291 531.615 531.819 531.846 531.317 530.067 529.157 529.202 529.505 530.13 531.243 532.43 533.788 534.496 533.894 533.843 534.616 532.096 528.636 527.826 528.192 529.245 531.25 532.191 534.128 533.347 527.105 524.785 524.596 524.706 526.28 527.399 529.414 531.39 534.842 532.53 526.505 525.33 524.787 524.944 526.616 527.639 527.931 528.692 530.884 532.519 533.294 534.427 533.921 531.97 531.014 530.714 530.175 529.617 529.377 529.57 530.299 531.656 533.189 534.216 534.517 534.369 534.035 533.971 534.055 533.713 532.709 531.803 531.357 531.819 533.231 534.928 535.547 535.305 535.004 534.906 534.307 532.976 531.418 531.054 531.736 533.592 535.905 536.102 534.213 531.384 525.723 528.221 533.092 531.411 530.072 531.573 532.202 530.233 528.815 529.449 529.974 529.98 530.463 533.452 367.325 532.015 1042.19 1044.26 1044.03 1046.32 1045.85 1047.49 1047.5 1049.13 1049.29 1050.77 1051.22 1051.74 1051.44 1051.59 1051.69 1052.16 1052.68 1053.52 1054.31 1055.04 1055.56 1055.98 1056.18 1056.14 1055.92 1055.63 1055.48 1055.52 1055.81 1056.23 1056.72 1057.14 1057.5 1057.81 1058.16 1058.59 1059.04 1059.46 1059.78 1059.95 1059.97 1059.85 1059.63 1059.29 1058.71 1057.91 1057.07 1056.53 1056.52 1056.96 1057.73 1058.7 1059.7 1060.41 1060.64 1060.83 1061.44 1061.65 1060.92 1059.99 1059.56 1060.13 1060.76 1061.31 1062.77 1062.62 1061.1 1060.59 1061.18 1060.98 1060.1 1059.47 1059.42 1060.96 1061.47 1060.42 1057.76 1056.69 1057.6 1057.79 1058.01 1058.61 1060.32 1062.43 1063.53 1061.32 1057.14 1055.36 1055.67 1055.86 1056.3 1057.06 1058.23 1059.87 1061.54 1063.2 1064.17 1064.2 1063.47 1062 1060.53 1059.82 1059.96 1060.58 1061.2 1061.62 1062.13 1062.93 1063.81 1064.56 1065.07 1065.25 1064.81 1063.89 1062.93 1062.34 1062.22 1062.69 1063.6 1064.85 1066 1066.55 1065.87 1064.45 1062.59 1061.47 1061.35 1062.63 1064.02 1066.28 1067.75 1067.35 1065.36 1062.25 1058.72 1060.1 1065.91 1069.19 1067.35 1066.12 1064 1064.78 1069.47 1067.95 1067.19 1064.67 1060.38 1063.51 549.526 532.489 1043.73 1044.28 1045.27 1046.33 1046.66 1047.59 1047.96 1048.91 1049.38 1050.34 1051.12 1051.8 1052.15 1052.41 1052.63 1052.92 1053.29 1053.83 1054.49 1055.21 1055.87 1056.35 1056.58 1056.57 1056.41 1056.19 1056.01 1055.94 1055.98 1056.18 1056.53 1057.04 1057.68 1058.43 1059.22 1059.96 1060.5 1060.75 1060.71 1060.45 1060.04 1059.55 1059 1058.41 1057.83 1057.34 1057.02 1056.94 1057.09 1057.49 1058.15 1059.02 1059.99 1060.91 1061.67 1062.3 1062.7 1062.84 1062.74 1062.48 1062.01 1061.5 1061.26 1061.32 1061.7 1061.96 1061.85 1061.54 1060.89 1059.96 1059.16 1058.82 1058.95 1059.55 1060.39 1060.87 1060.75 1060.35 1059.83 1059.23 1058.84 1058.89 1059.4 1060.48 1061.76 1062.66 1062.49 1061.82 1061.07 1060.26 1059.74 1059.73 1060.06 1060.61 1061.37 1062.23 1063.04 1063.72 1064.13 1064.16 1063.9 1063.49 1063.05 1062.63 1062.25 1062 1061.97 1062.26 1062.77 1063.36 1063.87 1064.26 1064.41 1064.22 1063.77 1063.3 1062.96 1062.82 1062.9 1063.21 1063.68 1064.19 1064.41 1064.28 1063.91 1063.69 1063.67 1063.91 1064.16 1064.6 1065.23 1065.43 1065.59 1064.93 1064.74 1064.9 1066.11 1066.98 1067.64 1067.13 1067.66 1066.59 1068.22 1068.64 1069.91 1070.25 1068.29 1069.07 549.898 533.048 1045.17 1045.38 1047.05 1047.37 1048.31 1048.8 1049.49 1050.05 1050.62 1051.25 1051.87 1052.46 1052.91 1053.29 1053.58 1053.86 1054.14 1054.5 1054.95 1055.5 1056.07 1056.59 1056.98 1057.19 1057.22 1057.12 1056.95 1056.8 1056.74 1056.81 1057.05 1057.45 1058 1058.64 1059.29 1059.81 1060.12 1060.18 1060.04 1059.76 1059.41 1059.06 1058.73 1058.45 1058.23 1058.06 1057.95 1057.92 1057.99 1058.21 1058.6 1059.21 1060.04 1060.99 1061.91 1062.63 1063.05 1063.15 1063 1062.64 1062.11 1061.47 1060.84 1060.35 1060.05 1059.93 1059.88 1059.74 1059.52 1059.27 1059.06 1058.89 1058.78 1058.8 1058.93 1059.19 1059.48 1059.61 1059.63 1059.58 1059.58 1059.66 1059.81 1060.09 1060.52 1061.15 1061.74 1062.06 1062.13 1062.05 1061.94 1061.89 1061.89 1061.92 1061.99 1062.14 1062.37 1062.7 1063.05 1063.29 1063.36 1063.28 1063.12 1062.93 1062.73 1062.53 1062.36 1062.3 1062.4 1062.61 1062.85 1063.04 1063.11 1063.07 1062.95 1062.84 1062.77 1062.77 1062.88 1063.08 1063.33 1063.56 1063.71 1063.75 1063.74 1063.71 1063.8 1063.87 1064.16 1064.32 1064.74 1064.89 1065.18 1065.29 1065.54 1065.74 1066.37 1066.13 1067.11 1066.39 1067.46 1066.69 1067.63 1067.17 1068.69 1068.95 1069.38 1070.89 550.344 533.359 1045.61 1046.06 1047.67 1048.07 1049.04 1049.5 1050.19 1050.67 1051.22 1051.71 1052.23 1052.71 1053.15 1053.53 1053.86 1054.17 1054.48 1054.82 1055.21 1055.66 1056.13 1056.57 1056.92 1057.14 1057.21 1057.17 1057.07 1056.98 1056.95 1057.04 1057.28 1057.69 1058.27 1058.96 1059.63 1060.16 1060.45 1060.45 1060.21 1059.8 1059.32 1058.83 1058.38 1058.01 1057.72 1057.53 1057.44 1057.46 1057.62 1057.95 1058.47 1059.22 1060.17 1061.24 1062.24 1063 1063.4 1063.42 1063.14 1062.65 1062.06 1061.45 1060.88 1060.41 1060.03 1059.75 1059.52 1059.31 1059.11 1058.91 1058.73 1058.59 1058.53 1058.55 1058.64 1058.8 1058.96 1059.1 1059.21 1059.32 1059.43 1059.58 1059.79 1060.08 1060.44 1060.82 1061.17 1061.46 1061.67 1061.81 1061.91 1061.98 1062.05 1062.13 1062.23 1062.35 1062.49 1062.63 1062.73 1062.79 1062.8 1062.75 1062.65 1062.52 1062.38 1062.27 1062.22 1062.24 1062.3 1062.4 1062.48 1062.55 1062.58 1062.59 1062.57 1062.57 1062.58 1062.65 1062.77 1062.91 1063.06 1063.19 1063.31 1063.39 1063.49 1063.56 1063.72 1063.8 1064.08 1064.15 1064.51 1064.59 1064.94 1065.11 1065.45 1065.61 1066.25 1065.91 1066.85 1066.2 1066.95 1066.52 1067.31 1066.93 1068.26 1068.32 1069.52 1071 550.358 533.516 1045.7 1046.53 1047.99 1048.69 1049.64 1050.23 1050.92 1051.43 1051.97 1052.42 1052.88 1053.3 1053.7 1054.06 1054.39 1054.7 1055.01 1055.32 1055.65 1056.01 1056.38 1056.72 1057.01 1057.19 1057.28 1057.28 1057.23 1057.19 1057.21 1057.34 1057.61 1058.05 1058.65 1059.34 1059.98 1060.45 1060.63 1060.52 1060.19 1059.71 1059.17 1058.65 1058.19 1057.82 1057.54 1057.38 1057.32 1057.39 1057.6 1057.97 1058.55 1059.35 1060.36 1061.46 1062.47 1063.21 1063.56 1063.54 1063.23 1062.75 1062.18 1061.6 1061.03 1060.51 1060.05 1059.67 1059.35 1059.1 1058.9 1058.75 1058.64 1058.58 1058.55 1058.57 1058.63 1058.72 1058.85 1059 1059.18 1059.37 1059.57 1059.78 1060 1060.26 1060.55 1060.86 1061.18 1061.5 1061.78 1062.03 1062.23 1062.39 1062.51 1062.59 1062.66 1062.72 1062.76 1062.78 1062.79 1062.79 1062.76 1062.73 1062.67 1062.61 1062.54 1062.47 1062.42 1062.38 1062.36 1062.37 1062.4 1062.44 1062.47 1062.51 1062.55 1062.59 1062.65 1062.71 1062.8 1062.89 1063 1063.12 1063.25 1063.37 1063.52 1063.62 1063.82 1063.89 1064.15 1064.18 1064.51 1064.57 1064.92 1065.11 1065.5 1065.61 1066.3 1065.91 1066.85 1066.2 1066.83 1066.5 1067.29 1067.02 1068.06 1068.17 1069.38 1070.82 550.346 533.535 1045.38 1046.46 1047.75 1048.62 1049.54 1050.23 1050.92 1051.48 1052.02 1052.49 1052.94 1053.35 1053.74 1054.09 1054.42 1054.74 1055.05 1055.38 1055.72 1056.08 1056.43 1056.75 1057.01 1057.18 1057.25 1057.25 1057.2 1057.18 1057.21 1057.36 1057.67 1058.15 1058.79 1059.51 1060.18 1060.64 1060.8 1060.65 1060.26 1059.72 1059.13 1058.56 1058.05 1057.64 1057.33 1057.15 1057.08 1057.15 1057.37 1057.77 1058.39 1059.26 1060.33 1061.5 1062.56 1063.3 1063.63 1063.56 1063.2 1062.67 1062.07 1061.47 1060.89 1060.38 1059.93 1059.55 1059.24 1058.99 1058.81 1058.67 1058.58 1058.53 1058.52 1058.55 1058.61 1058.7 1058.83 1058.98 1059.15 1059.34 1059.56 1059.79 1060.05 1060.33 1060.62 1060.92 1061.22 1061.51 1061.77 1062.02 1062.23 1062.41 1062.55 1062.65 1062.72 1062.74 1062.74 1062.72 1062.69 1062.66 1062.61 1062.56 1062.51 1062.45 1062.39 1062.34 1062.29 1062.26 1062.24 1062.24 1062.26 1062.3 1062.33 1062.38 1062.43 1062.48 1062.53 1062.6 1062.67 1062.77 1062.88 1063.01 1063.15 1063.29 1063.46 1063.59 1063.79 1063.86 1064.11 1064.12 1064.44 1064.48 1064.86 1065.01 1065.41 1065.5 1066.17 1065.77 1066.67 1066.05 1066.63 1066.4 1067.22 1066.98 1068.02 1068.18 1069.41 1070.68 550.264 533.513 1045.21 1046.43 1047.68 1048.66 1049.59 1050.36 1051.09 1051.71 1052.28 1052.78 1053.25 1053.66 1054.04 1054.39 1054.71 1055.02 1055.33 1055.66 1056 1056.35 1056.69 1056.99 1057.22 1057.35 1057.38 1057.33 1057.25 1057.2 1057.22 1057.37 1057.68 1058.18 1058.84 1059.59 1060.27 1060.75 1060.9 1060.74 1060.32 1059.75 1059.14 1058.55 1058.02 1057.6 1057.29 1057.09 1057.02 1057.08 1057.3 1057.71 1058.34 1059.24 1060.37 1061.6 1062.71 1063.49 1063.82 1063.74 1063.35 1062.78 1062.16 1061.54 1060.96 1060.44 1059.98 1059.59 1059.26 1059.01 1058.82 1058.69 1058.61 1058.58 1058.58 1058.63 1058.7 1058.81 1058.94 1059.11 1059.3 1059.51 1059.75 1060.01 1060.28 1060.57 1060.87 1061.17 1061.47 1061.76 1062.02 1062.26 1062.47 1062.64 1062.77 1062.85 1062.89 1062.89 1062.86 1062.81 1062.76 1062.7 1062.65 1062.62 1062.59 1062.56 1062.52 1062.47 1062.42 1062.38 1062.34 1062.33 1062.34 1062.38 1062.43 1062.49 1062.54 1062.6 1062.65 1062.7 1062.75 1062.82 1062.91 1063.02 1063.16 1063.31 1063.5 1063.64 1063.85 1063.92 1064.17 1064.17 1064.48 1064.5 1064.86 1065.01 1065.4 1065.48 1066.14 1065.75 1066.64 1066.04 1066.6 1066.41 1067.25 1066.97 1068.03 1068.23 1069.41 1070.64 550.25 533.423 1044.96 1046.23 1047.43 1048.42 1049.33 1050.12 1050.85 1051.49 1052.08 1052.61 1053.09 1053.53 1053.92 1054.29 1054.63 1054.96 1055.29 1055.64 1056 1056.37 1056.72 1057.03 1057.26 1057.38 1057.4 1057.34 1057.26 1057.2 1057.21 1057.35 1057.66 1058.15 1058.81 1059.57 1060.27 1060.76 1060.94 1060.78 1060.38 1059.81 1059.19 1058.58 1058.03 1057.58 1057.24 1057.02 1056.94 1057 1057.23 1057.65 1058.31 1059.24 1060.4 1061.66 1062.78 1063.54 1063.83 1063.68 1063.23 1062.62 1061.97 1061.34 1060.76 1060.24 1059.8 1059.43 1059.14 1058.93 1058.78 1058.68 1058.63 1058.61 1058.63 1058.68 1058.75 1058.84 1058.96 1059.12 1059.32 1059.54 1059.8 1060.07 1060.37 1060.67 1060.97 1061.27 1061.56 1061.83 1062.09 1062.31 1062.51 1062.66 1062.77 1062.84 1062.85 1062.82 1062.76 1062.69 1062.62 1062.58 1062.56 1062.53 1062.5 1062.46 1062.38 1062.29 1062.2 1062.12 1062.08 1062.09 1062.14 1062.23 1062.34 1062.44 1062.52 1062.57 1062.6 1062.62 1062.64 1062.69 1062.78 1062.89 1063.05 1063.21 1063.4 1063.55 1063.76 1063.84 1064.09 1064.1 1064.41 1064.43 1064.8 1064.95 1065.35 1065.45 1066.11 1065.72 1066.61 1065.99 1066.55 1066.35 1067.18 1066.95 1068 1068.18 1069.41 1070.66 550.256 533.37 1044.89 1046.2 1047.4 1048.42 1049.34 1050.15 1050.9 1051.57 1052.18 1052.74 1053.24 1053.69 1054.09 1054.46 1054.8 1055.13 1055.46 1055.8 1056.16 1056.52 1056.86 1057.16 1057.38 1057.5 1057.52 1057.47 1057.39 1057.34 1057.35 1057.47 1057.75 1058.2 1058.8 1059.5 1060.16 1060.64 1060.84 1060.74 1060.41 1059.92 1059.34 1058.76 1058.21 1057.75 1057.39 1057.16 1057.07 1057.13 1057.37 1057.81 1058.49 1059.43 1060.61 1061.88 1063 1063.74 1064 1063.8 1063.29 1062.64 1061.97 1061.34 1060.75 1060.22 1059.76 1059.38 1059.09 1058.9 1058.78 1058.73 1058.73 1058.74 1058.77 1058.81 1058.88 1058.99 1059.13 1059.3 1059.52 1059.76 1060.04 1060.34 1060.65 1060.95 1061.25 1061.55 1061.83 1062.11 1062.38 1062.62 1062.83 1062.99 1063.07 1063.09 1063.05 1062.96 1062.87 1062.79 1062.75 1062.72 1062.76 1062.84 1062.92 1062.91 1062.8 1062.61 1062.39 1062.2 1062.07 1062.05 1062.15 1062.35 1062.59 1062.8 1062.94 1062.99 1062.96 1062.89 1062.83 1062.79 1062.82 1062.91 1063.07 1063.25 1063.47 1063.63 1063.84 1063.89 1064.11 1064.09 1064.4 1064.43 1064.8 1064.98 1065.4 1065.53 1066.23 1065.88 1066.81 1066.17 1066.78 1066.47 1067.29 1067.03 1068.1 1068.18 1069.4 1070.81 550.332 533.328 1044.77 1046.08 1047.25 1048.24 1049.13 1049.92 1050.65 1051.32 1051.93 1052.49 1052.99 1053.46 1053.88 1054.26 1054.62 1054.98 1055.33 1055.69 1056.07 1056.44 1056.8 1057.12 1057.36 1057.51 1057.57 1057.56 1057.5 1057.45 1057.45 1057.55 1057.79 1058.2 1058.76 1059.43 1060.1 1060.61 1060.88 1060.86 1060.6 1060.15 1059.56 1058.92 1058.29 1057.77 1057.39 1057.19 1057.18 1057.33 1057.63 1058.1 1058.75 1059.6 1060.63 1061.75 1062.75 1063.39 1063.56 1063.34 1062.91 1062.38 1061.82 1061.22 1060.63 1060.05 1059.56 1059.18 1058.96 1058.9 1058.93 1058.97 1058.98 1058.95 1058.91 1058.88 1058.87 1058.92 1059.05 1059.26 1059.54 1059.85 1060.18 1060.48 1060.77 1061.02 1061.25 1061.45 1061.65 1061.86 1062.11 1062.39 1062.65 1062.85 1062.97 1063.01 1062.91 1062.71 1062.55 1062.44 1062.48 1062.67 1063 1063.3 1063.38 1063.2 1062.84 1062.45 1062.08 1061.8 1061.69 1061.8 1062.1 1062.51 1062.91 1063.17 1063.25 1063.15 1062.93 1062.7 1062.54 1062.52 1062.63 1062.84 1063.1 1063.35 1063.57 1063.68 1063.83 1063.82 1064 1063.97 1064.26 1064.31 1064.69 1064.91 1065.29 1065.48 1066.11 1065.79 1066.72 1066.07 1066.8 1066.43 1067.32 1066.96 1068.35 1068.33 1069.55 1070.91 550.36 533.379 1044.86 1046.12 1047.26 1048.25 1049.14 1049.95 1050.69 1051.37 1052 1052.58 1053.11 1053.58 1054 1054.38 1054.73 1055.07 1055.41 1055.77 1056.15 1056.55 1056.95 1057.31 1057.59 1057.78 1057.85 1057.83 1057.75 1057.65 1057.59 1057.59 1057.69 1057.94 1058.37 1058.96 1059.63 1060.27 1060.74 1060.97 1060.96 1060.7 1060.25 1059.65 1058.98 1058.34 1057.85 1057.61 1057.76 1058.07 1058.52 1058.99 1059.5 1060.15 1061 1061.99 1062.87 1063.4 1063.4 1063.09 1062.76 1062.52 1062.22 1061.68 1061.06 1060.36 1059.75 1059.37 1059.19 1059.45 1059.84 1060.02 1060 1059.8 1059.55 1059.33 1059.21 1059.19 1059.27 1059.49 1059.85 1060.32 1060.81 1061.2 1061.45 1061.56 1061.59 1061.57 1061.64 1061.82 1062.13 1062.58 1063.04 1063.42 1063.6 1063.61 1063.67 1063.58 1063.52 1063.58 1063.82 1064.47 1065.38 1065.47 1064.6 1063.46 1062.64 1062.3 1062.15 1061.96 1061.85 1062.23 1063.01 1063.81 1064.36 1064.62 1064.59 1064.32 1063.87 1063.33 1062.8 1062.46 1062.41 1062.68 1063.15 1063.64 1064.03 1064.18 1064.26 1064.15 1064.19 1064.07 1064.25 1064.3 1064.61 1064.88 1065.21 1065.49 1066.13 1065.92 1066.86 1066.15 1067.26 1066.53 1067.62 1067.08 1068.69 1068.68 1069.27 1070.79 550.385 533.338 1044.73 1045.91 1047.04 1048.03 1048.92 1049.71 1050.42 1051.07 1051.66 1052.21 1052.72 1053.21 1053.66 1054.09 1054.51 1054.91 1055.31 1055.72 1056.14 1056.58 1057 1057.36 1057.61 1057.74 1057.73 1057.59 1057.36 1057.14 1057.02 1057.06 1057.31 1057.82 1058.64 1059.68 1060.73 1061.55 1062 1062.11 1061.8 1060.97 1059.78 1058.65 1057.91 1057.62 1057.87 1058.58 1059.38 1059.27 1059.24 1059.18 1058.89 1058.73 1058.85 1059.57 1060.8 1061.9 1062.81 1063.66 1063.82 1063.51 1063.39 1063.26 1062.78 1061.61 1060.63 1060.2 1060.84 1062 1061.55 1060.97 1060.61 1059.98 1059.29 1058.61 1058.25 1058.49 1059.27 1060.22 1061.06 1061.63 1061.91 1061.81 1061.48 1060.99 1060.42 1060.17 1060.17 1060.36 1061.2 1061.75 1061.94 1063.33 1064.26 1063.56 1062.57 1061.34 1061.56 1063.24 1064.87 1066.19 1066.58 1063.81 1059.65 1057.08 1056.12 1056.64 1057.85 1059.62 1062.13 1064.07 1064.83 1064.76 1064.14 1063.41 1062.75 1062.15 1061.57 1061.14 1061 1061.28 1061.98 1063 1064.01 1064.74 1065.06 1065.01 1064.65 1064.2 1063.92 1063.86 1064.14 1064.33 1064.91 1064.99 1065.49 1065.69 1066.11 1066.46 1066.96 1066.52 1067.86 1066.84 1068.58 1068.68 1070.19 1069.89 1068.07 1069.36 550.079 533.075 1044.31 1045.48 1046.69 1047.79 1048.79 1049.7 1050.5 1051.25 1051.9 1052.51 1053.05 1053.53 1053.96 1054.37 1054.75 1055.14 1055.53 1055.97 1056.45 1056.96 1057.44 1057.83 1058.03 1058.04 1057.87 1057.55 1057.01 1056.28 1055.59 1055.3 1055.73 1056.74 1058.08 1059.67 1060.95 1061.55 1061.76 1061.94 1062.1 1061.7 1060.18 1058.35 1057.59 1057.84 1059.5 1060.63 1058.74 1054.03 1054.03 1054.65 1054.74 1055.79 1057.16 1059.85 1061.52 1063.06 1065.01 1063.41 1059.28 1056.93 1056.53 1056.91 1059.18 1061.14 1062.06 1062.67 1063.85 1060.23 1053.63 1052.49 1054.35 1055.55 1056.83 1057.66 1058.05 1059.94 1061.02 1061.39 1061.67 1061.39 1061.1 1060.88 1059.78 1057.94 1056.65 1055.09 1054.84 1056.68 1059.31 1062.97 1065.87 1067.28 1063.53 1056.81 1054.8 1054.93 1060.59 1068.09 1066.06 1057.9 1052.01 1049.58 1049.17 1050.4 1049.26 1052.13 1058.45 1063.4 1065.86 1063.2 1059.21 1056.76 1055.96 1056.14 1056.8 1057.65 1058.48 1059.25 1059.94 1060.95 1062.61 1064.52 1065.56 1065.45 1064.83 1064.43 1063.86 1063.68 1063.12 1063.43 1063.78 1064.83 1065.65 1064.97 1064.97 1062.97 1065.23 1069.3 1067.5 1065.87 1065.21 1065.04 1069.86 1068.93 1068.72 1065.53 1060.93 1064.42 549.789 356.4 523.413 523.872 524.387 524.965 525.531 526.073 526.579 527.071 527.53 527.944 528.292 528.574 528.796 528.983 529.163 529.357 529.577 529.796 529.974 530.069 530.043 529.896 529.679 529.502 529.462 529.569 529.862 530.308 530.82 531.471 532.148 532.479 532.661 532.765 531.861 530.006 528.937 528.847 529.294 530.123 530.701 531.657 531.973 533.243 532.773 527.058 524.522 524.18 525.052 526.213 527.145 527.072 528.132 531.69 532.267 535.263 533.519 525.977 524.691 525.969 525.883 527.114 529.071 533.634 532.757 526.501 525.145 524.04 524.533 524.732 525.937 526.813 528.643 529.494 531.927 533.919 530.907 527.553 527.316 527.721 528.125 528.692 528.937 528.788 528.673 528.502 528.778 529.659 529.216 530.79 533.436 534.427 535.3 534.029 534.558 536.236 533.499 532.224 532.767 532.118 530.618 528.441 527.723 529.246 526.223 527.229 531.403 529.108 526.341 525.967 526.814 527.754 528.224 528.529 528.742 529.228 530.118 531.121 531.598 532.155 533.064 533.964 533.419 532.047 530.767 530.611 530.644 531.451 531.933 533.236 533.556 535.04 535.04 534.73 532.952 527.621 533.115 534.394 530.141 530.045 532.272 531.983 529.93 529.212 529.147 529.442 529.548 533.238 367.242 ) ; } cold { blending binomial2; n 2; beta1 0.075; type omegaWallFunction; value nonuniform List<scalar> 2250 ( 364.648 527.977 528.435 528.341 528.201 528.083 528.041 528.044 528.025 528.068 528.122 528.244 528.127 528.059 528.016 527.988 527.954 527.902 527.893 527.929 528.001 528.057 528.114 528.115 528.034 527.948 527.901 527.891 527.896 527.904 527.91 527.913 527.917 527.924 527.938 527.96 527.99 528.024 528.051 528.062 528.047 528.01 527.965 527.926 527.909 527.925 527.983 528.082 528.211 528.339 528.403 528.299 528.096 527.933 527.844 527.802 527.806 527.843 527.867 527.866 527.895 528.008 528.241 528.198 528.058 527.951 527.854 527.801 527.833 527.89 527.925 527.957 528.099 528.329 528.431 528.286 528.024 527.812 527.802 527.914 528.003 527.95 527.902 528.109 528.567 528.521 528.125 527.846 527.815 527.95 528.041 527.937 527.872 527.916 528.09 528.181 528.17 528.087 527.99 527.916 527.886 527.916 527.949 527.919 527.876 527.861 527.888 527.958 528.026 528.074 528.072 528.038 527.996 527.958 527.931 527.927 527.928 527.916 527.892 527.89 527.915 527.974 528.023 528.024 527.987 527.962 527.951 527.956 527.938 527.913 527.898 527.875 527.878 527.871 527.883 527.884 527.846 527.842 527.891 527.845 527.813 527.864 527.84 527.836 527.864 527.843 527.808 527.811 527.853 359.778 537.626 1051.51 1051.71 1051.67 1051.77 1051.69 1051.7 1051.64 1051.63 1051.62 1051.66 1051.64 1051.62 1051.6 1051.59 1051.56 1051.53 1051.5 1051.49 1051.48 1051.49 1051.5 1051.51 1051.52 1051.53 1051.52 1051.5 1051.48 1051.47 1051.47 1051.46 1051.45 1051.44 1051.43 1051.42 1051.42 1051.41 1051.42 1051.42 1051.43 1051.45 1051.46 1051.47 1051.47 1051.47 1051.48 1051.48 1051.49 1051.48 1051.47 1051.46 1051.47 1051.5 1051.51 1051.49 1051.47 1051.45 1051.45 1051.45 1051.44 1051.44 1051.44 1051.44 1051.48 1051.5 1051.5 1051.47 1051.44 1051.43 1051.45 1051.47 1051.5 1051.57 1051.61 1051.63 1051.63 1051.59 1051.51 1051.44 1051.44 1051.47 1051.5 1051.55 1051.67 1051.71 1051.72 1051.66 1051.57 1051.48 1051.46 1051.49 1051.51 1051.5 1051.48 1051.47 1051.49 1051.52 1051.54 1051.55 1051.53 1051.49 1051.47 1051.48 1051.49 1051.49 1051.48 1051.47 1051.47 1051.47 1051.48 1051.5 1051.51 1051.51 1051.5 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.48 1051.49 1051.49 1051.49 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.48 1051.49 1051.49 1051.48 1051.47 1051.48 1051.51 1051.62 537.598 537.62 1051.51 1051.57 1051.57 1051.59 1051.57 1051.58 1051.57 1051.58 1051.58 1051.6 1051.61 1051.6 1051.59 1051.58 1051.56 1051.54 1051.52 1051.51 1051.51 1051.51 1051.51 1051.52 1051.54 1051.54 1051.54 1051.53 1051.52 1051.5 1051.49 1051.48 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.47 1051.48 1051.49 1051.5 1051.51 1051.51 1051.51 1051.51 1051.5 1051.49 1051.49 1051.49 1051.49 1051.5 1051.5 1051.48 1051.47 1051.45 1051.43 1051.42 1051.41 1051.41 1051.41 1051.42 1051.45 1051.47 1051.49 1051.5 1051.5 1051.5 1051.49 1051.48 1051.47 1051.48 1051.5 1051.52 1051.56 1051.59 1051.6 1051.59 1051.55 1051.5 1051.47 1051.47 1051.48 1051.5 1051.53 1051.55 1051.56 1051.57 1051.54 1051.49 1051.45 1051.44 1051.47 1051.5 1051.51 1051.51 1051.51 1051.5 1051.49 1051.49 1051.48 1051.47 1051.46 1051.47 1051.48 1051.49 1051.49 1051.49 1051.49 1051.49 1051.49 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.52 1051.62 537.627 537.696 1051.52 1051.54 1051.56 1051.56 1051.57 1051.57 1051.57 1051.56 1051.56 1051.57 1051.57 1051.58 1051.58 1051.57 1051.56 1051.55 1051.53 1051.52 1051.52 1051.52 1051.52 1051.52 1051.53 1051.54 1051.54 1051.53 1051.52 1051.51 1051.49 1051.49 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.48 1051.49 1051.5 1051.5 1051.51 1051.52 1051.52 1051.51 1051.51 1051.5 1051.49 1051.48 1051.47 1051.46 1051.45 1051.45 1051.44 1051.44 1051.44 1051.44 1051.44 1051.44 1051.44 1051.45 1051.46 1051.47 1051.48 1051.5 1051.51 1051.52 1051.53 1051.53 1051.53 1051.53 1051.52 1051.53 1051.53 1051.54 1051.54 1051.54 1051.53 1051.52 1051.51 1051.49 1051.48 1051.49 1051.49 1051.5 1051.5 1051.5 1051.5 1051.49 1051.47 1051.46 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.45 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.48 1051.49 1051.54 1051.65 537.613 537.635 1051.47 1051.48 1051.51 1051.52 1051.54 1051.55 1051.55 1051.56 1051.56 1051.56 1051.56 1051.56 1051.56 1051.55 1051.55 1051.54 1051.53 1051.52 1051.52 1051.52 1051.52 1051.52 1051.53 1051.53 1051.53 1051.53 1051.52 1051.51 1051.5 1051.49 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.49 1051.5 1051.51 1051.52 1051.52 1051.52 1051.51 1051.5 1051.5 1051.49 1051.48 1051.47 1051.47 1051.46 1051.45 1051.44 1051.43 1051.43 1051.42 1051.42 1051.42 1051.43 1051.44 1051.45 1051.47 1051.49 1051.5 1051.52 1051.53 1051.53 1051.54 1051.54 1051.53 1051.53 1051.53 1051.53 1051.54 1051.54 1051.54 1051.53 1051.52 1051.51 1051.5 1051.5 1051.49 1051.49 1051.49 1051.49 1051.48 1051.48 1051.47 1051.47 1051.47 1051.46 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.48 1051.49 1051.54 1051.63 537.583 537.586 1051.45 1051.47 1051.5 1051.51 1051.53 1051.54 1051.55 1051.55 1051.56 1051.56 1051.56 1051.56 1051.55 1051.55 1051.54 1051.54 1051.53 1051.52 1051.52 1051.52 1051.52 1051.52 1051.53 1051.53 1051.53 1051.53 1051.52 1051.51 1051.49 1051.48 1051.48 1051.47 1051.47 1051.46 1051.47 1051.47 1051.48 1051.49 1051.5 1051.52 1051.52 1051.53 1051.52 1051.52 1051.51 1051.5 1051.5 1051.49 1051.48 1051.47 1051.46 1051.45 1051.44 1051.43 1051.42 1051.42 1051.42 1051.43 1051.44 1051.45 1051.46 1051.48 1051.5 1051.51 1051.52 1051.53 1051.54 1051.54 1051.55 1051.55 1051.54 1051.54 1051.54 1051.54 1051.53 1051.53 1051.53 1051.52 1051.52 1051.51 1051.5 1051.5 1051.49 1051.49 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.48 1051.49 1051.53 1051.6 537.569 537.523 1051.42 1051.44 1051.47 1051.49 1051.51 1051.53 1051.54 1051.55 1051.55 1051.55 1051.56 1051.56 1051.55 1051.55 1051.55 1051.54 1051.53 1051.53 1051.53 1051.52 1051.53 1051.53 1051.53 1051.54 1051.53 1051.53 1051.52 1051.51 1051.5 1051.49 1051.48 1051.47 1051.47 1051.46 1051.46 1051.47 1051.48 1051.49 1051.51 1051.52 1051.53 1051.53 1051.53 1051.52 1051.51 1051.51 1051.5 1051.49 1051.48 1051.47 1051.46 1051.45 1051.44 1051.43 1051.42 1051.42 1051.42 1051.42 1051.43 1051.45 1051.46 1051.48 1051.5 1051.51 1051.52 1051.53 1051.54 1051.54 1051.54 1051.54 1051.54 1051.54 1051.54 1051.53 1051.53 1051.53 1051.52 1051.52 1051.52 1051.51 1051.5 1051.5 1051.49 1051.49 1051.48 1051.48 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.45 1051.45 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.48 1051.49 1051.49 1051.52 1051.59 537.561 537.473 1051.4 1051.43 1051.46 1051.49 1051.5 1051.52 1051.53 1051.54 1051.55 1051.55 1051.56 1051.56 1051.56 1051.55 1051.55 1051.55 1051.54 1051.54 1051.53 1051.53 1051.53 1051.54 1051.54 1051.54 1051.54 1051.54 1051.53 1051.52 1051.5 1051.49 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.48 1051.5 1051.51 1051.53 1051.54 1051.54 1051.53 1051.53 1051.52 1051.51 1051.5 1051.49 1051.49 1051.48 1051.47 1051.45 1051.44 1051.43 1051.42 1051.42 1051.42 1051.43 1051.44 1051.45 1051.47 1051.49 1051.5 1051.52 1051.53 1051.53 1051.54 1051.54 1051.54 1051.54 1051.54 1051.54 1051.54 1051.53 1051.53 1051.53 1051.52 1051.52 1051.51 1051.51 1051.5 1051.5 1051.49 1051.49 1051.48 1051.48 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.45 1051.45 1051.45 1051.45 1051.45 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.45 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.48 1051.49 1051.49 1051.52 1051.58 537.559 537.428 1051.38 1051.42 1051.45 1051.48 1051.5 1051.51 1051.52 1051.53 1051.54 1051.55 1051.55 1051.55 1051.56 1051.55 1051.55 1051.55 1051.54 1051.54 1051.54 1051.54 1051.54 1051.54 1051.55 1051.55 1051.55 1051.54 1051.53 1051.52 1051.51 1051.5 1051.49 1051.48 1051.47 1051.47 1051.47 1051.48 1051.49 1051.5 1051.51 1051.53 1051.54 1051.54 1051.53 1051.52 1051.51 1051.5 1051.5 1051.49 1051.48 1051.48 1051.46 1051.45 1051.44 1051.43 1051.42 1051.42 1051.42 1051.43 1051.44 1051.45 1051.47 1051.49 1051.5 1051.51 1051.52 1051.53 1051.54 1051.54 1051.54 1051.54 1051.54 1051.54 1051.53 1051.53 1051.53 1051.52 1051.52 1051.52 1051.51 1051.51 1051.5 1051.5 1051.49 1051.49 1051.48 1051.48 1051.47 1051.47 1051.46 1051.46 1051.46 1051.45 1051.45 1051.45 1051.45 1051.45 1051.45 1051.45 1051.45 1051.45 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.48 1051.49 1051.49 1051.52 1051.59 537.559 537.381 1051.37 1051.42 1051.45 1051.48 1051.5 1051.51 1051.52 1051.53 1051.54 1051.54 1051.55 1051.55 1051.55 1051.55 1051.55 1051.54 1051.54 1051.53 1051.53 1051.53 1051.54 1051.54 1051.55 1051.55 1051.55 1051.55 1051.54 1051.53 1051.52 1051.5 1051.49 1051.49 1051.48 1051.48 1051.48 1051.48 1051.49 1051.5 1051.52 1051.53 1051.54 1051.54 1051.53 1051.52 1051.51 1051.51 1051.5 1051.49 1051.49 1051.48 1051.47 1051.45 1051.44 1051.43 1051.42 1051.42 1051.43 1051.43 1051.45 1051.46 1051.48 1051.49 1051.51 1051.52 1051.53 1051.53 1051.54 1051.54 1051.54 1051.54 1051.54 1051.54 1051.53 1051.53 1051.53 1051.52 1051.52 1051.52 1051.51 1051.51 1051.51 1051.5 1051.5 1051.49 1051.49 1051.48 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.45 1051.45 1051.44 1051.44 1051.44 1051.44 1051.45 1051.45 1051.45 1051.46 1051.46 1051.47 1051.47 1051.47 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.48 1051.49 1051.53 1051.6 537.565 537.347 1051.36 1051.42 1051.46 1051.48 1051.5 1051.52 1051.53 1051.54 1051.54 1051.55 1051.55 1051.55 1051.55 1051.55 1051.54 1051.54 1051.53 1051.53 1051.53 1051.53 1051.53 1051.54 1051.54 1051.55 1051.55 1051.55 1051.54 1051.52 1051.51 1051.5 1051.49 1051.48 1051.48 1051.48 1051.48 1051.48 1051.49 1051.5 1051.51 1051.52 1051.53 1051.52 1051.52 1051.51 1051.51 1051.5 1051.5 1051.5 1051.49 1051.48 1051.46 1051.45 1051.44 1051.43 1051.43 1051.43 1051.43 1051.44 1051.45 1051.47 1051.48 1051.49 1051.5 1051.51 1051.52 1051.53 1051.54 1051.54 1051.55 1051.55 1051.54 1051.54 1051.53 1051.52 1051.52 1051.52 1051.52 1051.52 1051.52 1051.52 1051.51 1051.51 1051.5 1051.49 1051.49 1051.48 1051.47 1051.46 1051.46 1051.46 1051.46 1051.45 1051.45 1051.44 1051.44 1051.43 1051.43 1051.44 1051.44 1051.44 1051.44 1051.45 1051.46 1051.47 1051.47 1051.48 1051.48 1051.49 1051.49 1051.49 1051.49 1051.49 1051.49 1051.49 1051.48 1051.49 1051.49 1051.49 1051.49 1051.49 1051.49 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.48 1051.49 1051.53 1051.61 537.575 537.326 1051.36 1051.43 1051.47 1051.5 1051.51 1051.52 1051.53 1051.53 1051.54 1051.54 1051.54 1051.54 1051.54 1051.54 1051.53 1051.53 1051.52 1051.52 1051.52 1051.52 1051.52 1051.53 1051.54 1051.54 1051.55 1051.55 1051.54 1051.53 1051.51 1051.5 1051.49 1051.49 1051.48 1051.48 1051.49 1051.49 1051.5 1051.51 1051.52 1051.52 1051.52 1051.52 1051.51 1051.51 1051.5 1051.51 1051.51 1051.51 1051.51 1051.49 1051.47 1051.46 1051.45 1051.45 1051.45 1051.45 1051.45 1051.46 1051.47 1051.48 1051.49 1051.48 1051.48 1051.5 1051.52 1051.53 1051.54 1051.55 1051.55 1051.55 1051.54 1051.53 1051.52 1051.52 1051.53 1051.53 1051.53 1051.53 1051.53 1051.53 1051.53 1051.53 1051.52 1051.51 1051.49 1051.49 1051.48 1051.48 1051.49 1051.48 1051.47 1051.46 1051.44 1051.43 1051.43 1051.42 1051.42 1051.44 1051.45 1051.45 1051.44 1051.46 1051.48 1051.48 1051.49 1051.48 1051.49 1051.49 1051.49 1051.5 1051.5 1051.5 1051.5 1051.5 1051.49 1051.5 1051.5 1051.5 1051.5 1051.49 1051.49 1051.49 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.48 1051.49 1051.54 1051.63 537.597 537.347 1051.38 1051.45 1051.49 1051.51 1051.53 1051.54 1051.54 1051.55 1051.55 1051.55 1051.55 1051.55 1051.55 1051.54 1051.53 1051.53 1051.52 1051.52 1051.52 1051.53 1051.54 1051.54 1051.55 1051.55 1051.55 1051.53 1051.51 1051.49 1051.48 1051.48 1051.48 1051.49 1051.49 1051.49 1051.48 1051.48 1051.48 1051.49 1051.49 1051.48 1051.48 1051.48 1051.5 1051.53 1051.58 1051.59 1051.59 1051.55 1051.51 1051.48 1051.47 1051.45 1051.45 1051.45 1051.45 1051.44 1051.45 1051.46 1051.45 1051.44 1051.43 1051.43 1051.44 1051.48 1051.52 1051.54 1051.56 1051.58 1051.57 1051.54 1051.51 1051.51 1051.52 1051.53 1051.54 1051.56 1051.58 1051.6 1051.61 1051.6 1051.58 1051.57 1051.56 1051.54 1051.52 1051.5 1051.49 1051.48 1051.48 1051.49 1051.49 1051.48 1051.46 1051.45 1051.44 1051.43 1051.44 1051.48 1051.47 1051.45 1051.43 1051.46 1051.49 1051.5 1051.49 1051.47 1051.48 1051.5 1051.51 1051.51 1051.52 1051.52 1051.52 1051.51 1051.5 1051.51 1051.52 1051.52 1051.51 1051.51 1051.5 1051.49 1051.49 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.47 1051.47 1051.47 1051.46 1051.46 1051.46 1051.46 1051.46 1051.47 1051.47 1051.47 1051.47 1051.47 1051.49 1051.53 1051.62 537.609 537.492 1051.45 1051.48 1051.49 1051.49 1051.49 1051.5 1051.5 1051.51 1051.52 1051.52 1051.53 1051.53 1051.53 1051.52 1051.51 1051.51 1051.51 1051.51 1051.51 1051.52 1051.53 1051.55 1051.56 1051.55 1051.53 1051.53 1051.53 1051.52 1051.49 1051.45 1051.43 1051.44 1051.46 1051.47 1051.47 1051.45 1051.44 1051.44 1051.44 1051.46 1051.47 1051.48 1051.48 1051.52 1051.57 1051.68 1051.63 1051.48 1051.44 1051.41 1051.38 1051.38 1051.38 1051.39 1051.42 1051.46 1051.5 1051.47 1051.4 1051.38 1051.37 1051.36 1051.38 1051.44 1051.47 1051.51 1051.59 1051.53 1051.44 1051.44 1051.48 1051.5 1051.54 1051.6 1051.61 1051.59 1051.56 1051.56 1051.57 1051.59 1051.61 1051.62 1051.59 1051.55 1051.53 1051.51 1051.5 1051.5 1051.52 1051.54 1051.52 1051.46 1051.42 1051.4 1051.4 1051.39 1051.48 1051.7 1051.84 1051.63 1051.51 1051.51 1051.47 1051.44 1051.42 1051.42 1051.46 1051.49 1051.53 1051.57 1051.59 1051.58 1051.56 1051.54 1051.53 1051.52 1051.51 1051.51 1051.5 1051.5 1051.49 1051.49 1051.49 1051.49 1051.49 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.48 1051.47 1051.46 1051.45 1051.46 1051.47 1051.47 1051.48 1051.49 1051.48 1051.48 1051.48 1051.47 1051.52 1051.65 537.613 359.761 528.009 528.035 528.032 528.011 527.976 527.943 527.928 527.934 527.953 527.97 527.966 527.938 527.904 527.885 527.889 527.918 527.972 528.046 528.12 528.15 528.095 527.998 527.914 527.86 527.838 527.847 527.876 527.914 527.965 528.024 528.05 528.043 528.03 528.015 527.978 527.927 527.873 527.848 527.868 527.898 527.96 527.995 528.079 528.188 528.238 528.07 527.826 527.813 527.946 527.856 527.765 527.805 527.909 527.958 528.143 528.106 528.001 527.846 527.818 527.87 527.774 527.868 528.014 527.939 528.397 528.305 528.143 527.87 527.803 527.907 527.899 527.862 527.89 528.052 528.099 528.086 528.151 528.13 528.059 528.003 528.042 528.253 528.537 528.47 528.192 528.01 527.942 527.959 528.001 527.975 527.939 527.973 528.044 528.006 527.926 527.89 527.93 527.932 527.863 527.906 528.024 528.269 528.229 528.073 527.916 527.807 527.843 527.909 528.144 528.142 528.043 527.996 527.995 528.004 527.992 527.952 527.925 527.921 527.931 527.94 527.943 527.938 527.929 527.928 527.922 527.923 527.925 527.921 527.929 527.929 527.941 527.936 527.915 527.873 527.854 527.855 527.824 527.887 527.865 527.825 527.845 527.863 527.834 527.859 527.869 527.828 527.808 527.83 359.762 ) ; } } // ************************************************************************* //
37d7db022703dd03670a3179133786d1b49aa459
5a1ea304e98c78f730e0a6b37a5aa4413822bec8
/lt_pttsnt.cpp
97212ff02e25b5bc0f268c63235626f2d5e60290
[]
no_license
minhduc462001/languageC
367ed779543dd0e2c12c670ffd5f6d77ab86af90
1d1929ec5cffc28e567c1d1ab42598192531a8e4
refs/heads/main
2023-07-11T12:48:33.575956
2021-08-18T09:11:54
2021-08-18T09:11:54
397,538,538
0
0
null
null
null
null
UTF-8
C++
false
false
343
cpp
lt_pttsnt.cpp
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int dem = 0; while(n%2==0){ dem++; n/=2; } if(dem>0){ cout<<2<<" "<<dem<<endl; } for(int i = 3;i<=sqrt(n);i+=2){ dem = 0; while(n%i==0){ dem++; n/=i; } if(dem>0){ cout<<i<<" "<<dem<<endl; } } if(n>2) cout<<n<<" 1"<<endl; return 0; }
5553d941d5845b2cca6a2fe556df798e69e4b212
93f34109c7d520e8ab2fac6aeb7a61492a0fa082
/asso.cpp
24ffc5bb2e9a8e4842ed5e8d80d4a1493a60bf86
[]
no_license
meguriri/AssoMangeSystem
6f3a94d2241be5157d35df861c35c8c9329878ba
47e7f4b285ba865d8a771a8656ac55849c6f82ad
refs/heads/main
2023-06-19T04:22:49.993775
2021-07-13T05:16:31
2021-07-13T05:16:31
385,484,181
0
0
null
null
null
null
UTF-8
C++
false
false
16
cpp
asso.cpp
#include"asso.h"
5e35c549aa356ff7b4e0051bbcfca56d9cd09837
53c3c3ee9f51556f64375076a677ef892c6d3654
/fancy_core/Common/CameraController.cpp
7908f899d42ebb1b7af33643cfd3721028740547
[]
no_license
domme/FANCY
75133d47bb6c349e8d6ce60cc7777fcd907a1bb2
f6451ead9a4758b16bee3f019e6fbff7487a5f70
refs/heads/master
2023-06-24T15:49:59.992434
2023-06-18T21:02:06
2023-06-18T21:02:06
7,263,701
29
1
null
null
null
null
UTF-8
C++
false
false
3,927
cpp
CameraController.cpp
#include "fancy_core_precompile.h" #include "CameraController.h" #include "Input.h" #include "Camera.h" #include "MathIncludes.h" namespace Fancy { //---------------------------------------------------------------------------// CameraController::CameraController(Camera* aCamera) : myMoveSpeed(30.0f) , myCamera(aCamera) , myMouseSensitivity(0.1f, 0.1f) , myLastMousePos(0, 0) , myFocusPoint(0.0f) , myFocusPointDistance(10.0f) { } //---------------------------------------------------------------------------// CameraController::~CameraController() { } //---------------------------------------------------------------------------// void CameraController::Update(float aDeltaTime, const Fancy::InputState& anInputState) { Mode currentMode = Mode::FPS; if (anInputState.myModifierKeyMask & InputState::MOD_KEY_ALT || anInputState.myModifierKeyMask & InputState::MOD_KEY_SHIFT) currentMode = Mode::TRACKBALL; if (currentMode == Mode::TRACKBALL) { UpdateTrackballCamera(aDeltaTime, anInputState); } else { UpdateFPSCamera(aDeltaTime, anInputState); } myCamera->UpdateView(); myLastMousePos = anInputState.myMousePos; myLastMode = currentMode; } //---------------------------------------------------------------------------// void CameraController::UpdateFPSCamera(float aDeltaTime, const Fancy::InputState& anInputState) { if (!(anInputState.myMouseBtnMask & InputState::MOUSE_BTN_RIGHT)) return; glm::float3 camForward = myCamera->myOrientation * glm::float3(0.0f, 0.0f, 1.0f); glm::float3 camSide = myCamera->myOrientation * glm::float3(1.0f, 0.0f, 0.0f); const float movementSpeed = myMoveSpeed * aDeltaTime; if (anInputState.myKeyState['w']) myCamera->myPosition += camForward * movementSpeed; if (anInputState.myKeyState['s']) myCamera->myPosition -= camForward * movementSpeed; if (anInputState.myKeyState['a']) myCamera->myPosition -= camSide * movementSpeed; if (anInputState.myKeyState['d']) myCamera->myPosition += camSide * movementSpeed; if (anInputState.myKeyState['q']) myCamera->myPosition.y -= movementSpeed; if (anInputState.myKeyState['e']) myCamera->myPosition.y += movementSpeed; glm::int2 mouseDelta = anInputState.myMousePos - myLastMousePos; float pitch = glm::radians((float)mouseDelta.y) * myMouseSensitivity.y; float yaw = glm::radians((float)mouseDelta.x) * myMouseSensitivity.x; glm::quat pitchQuat = glm::quat(glm::float3(pitch, 0.0f, 0.0f)); glm::quat yawQuat = glm::quat(glm::float3(0.0f, yaw, 0.0f)); myCamera->myOrientation = yawQuat * myCamera->myOrientation * pitchQuat; myFocusPoint = myCamera->myPosition + myCamera->myOrientation * glm::float3(0.0f, 0.0f, myFocusPointDistance); } void CameraController::UpdateTrackballCamera(float /*aDeltaTime*/, const Fancy::InputState& anInputState) { if (anInputState.myMouseBtnMask & InputState::MOUSE_BTN_LEFT) { glm::ivec2 mouseDelta = anInputState.myMousePos - myLastMousePos; float pitch = glm::radians((float)mouseDelta.y) * myMouseSensitivity.y; float yaw = glm::radians((float)mouseDelta.x) * myMouseSensitivity.x; glm::float3 centerToCamDir = glm::normalize(myCamera->myPosition - myFocusPoint); if (centerToCamDir.y < -0.9) pitch = glm::max<float>(pitch, 0.0f); else if (centerToCamDir.y > 0.9) pitch = glm::min<float>(pitch, 0.0f); glm::quat pitchQuat(glm::float3(pitch, 0.0f, 0.0f)); glm::quat yawQuat(glm::float3(0.0f, yaw, 0.0f)); myCamera->myOrientation = yawQuat * myCamera->myOrientation * pitchQuat; myCamera->myPosition = myFocusPoint + (myCamera->myOrientation * glm::float3(0.0f, 0.0f, -1.0f)) * myFocusPointDistance; } } //---------------------------------------------------------------------------// }
6cefad7cdc150585989b91db635e0ef68754be1c
82c61690641bab935c1dbd226f9cf2c7c0c4de84
/yangkv/memory/message_queue.cpp
b72969ce3f0359177d9e5667f6275a2ebff3d880
[]
no_license
toozn/yangkv
46cdce8fb71af53857af01d0bdf0415f6a86a9da
648d36caab1a90a8d0a9e4c1edacb989e7ac3b06
refs/heads/master
2020-04-09T17:21:27.315264
2019-03-09T12:36:44
2019-03-09T12:36:44
160,478,539
0
0
null
null
null
null
UTF-8
C++
false
false
1,200
cpp
message_queue.cpp
#include "message_queue.h" #include <unistd.h> MessageQueue::MessageQueue() { w_ptr = 1; r_ptr = 1; } MessageQueue::~MessageQueue() { unsigned long long begin = r_ptr; unsigned long long end = w_ptr - 1; for (unsigned long long i = begin; i <= end; i++) { int pos = i % kQueueSize; delete queue_[pos]; } } void MessageQueue::push(Message* msg) { lock_guard<mutex> lock(lock_); //msg->Debug(); while(w_ptr - r_ptr >= kQueueSize) usleep(5); queue_[w_ptr % kQueueSize] = msg; w_ptr++; } void MessageQueue::pop() { assert(w_ptr > r_ptr); r_ptr++; } Message* MessageQueue::getFront() { assert(w_ptr > r_ptr); return queue_[r_ptr % kQueueSize]; } bool MessageQueue::isFull() { return (w_ptr - r_ptr == kQueueSize); } bool MessageQueue::isEmpty() { return (w_ptr == r_ptr); } Message* MessageQueue::search(const string& key, const unsigned long long idx) { unsigned long long begin = w_ptr - 1; unsigned long long end = r_ptr; for (unsigned long long i = begin; i >= end; i--) { auto msg = queue_[i % kQueueSize]; if (key == msg->key && idx <= msg->id) { return msg; } } return nullptr; }
a27dfba1ad7e796c6939fdaf9c412edc3e6959ad
7f179f81a5aff2ee4f95bf3d00b40e1b59783c17
/UEPrototype/Source/UEPrototype/Private/Core/VPPlayerState.cpp
31a783254455b9e5c4c1c3b8afd5d55011a301d1
[ "MIT" ]
permissive
sanghun219/Prototype
2cb928db15cb36113c8a1a60a7bcf4265b59fe26
4fdcd43ab3f6040927df4f91b033fb31261724dc
refs/heads/master
2023-03-18T12:39:08.408368
2019-08-18T08:43:45
2019-08-18T08:43:45
219,662,598
0
0
MIT
2019-11-05T05:10:52
2019-11-05T05:10:52
null
UTF-8
C++
false
false
533
cpp
VPPlayerState.cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "VPPlayerState.h" #include "UEPrototype.h" #include "CorePlayerModuleManager.h" #include "PlayerTaskManager.h" AVPPlayerState::AVPPlayerState() { // DEBUG VP_CTOR; } void AVPPlayerState::BeginPlay() { UPlayerTaskManager* LocalPlayerTaskManager = UPlayerTaskManager::GetGlobalPlayerTaskManager(); if (IsValid(LocalPlayerTaskManager) == false) { return; } /* 참조합니다 */ PlayerTaskManager = LocalPlayerTaskManager; }
669083ecbef6f7ab5a3619b14e30c17092811a5d
1e1fa9a41b751977f91e45cdc2c0e20e5ba8a968
/map/map/mapDoc.cpp
da69f6876a670b4ccf4e9ed1c77bf105e820adab
[]
no_license
xihutou/mfc-1
5b25e441501e79832d8fbd18d3991eaab8c1a757
41ef7bb1bd8cb4c3f8b2a1bc16b76e41e3073f2c
refs/heads/master
2021-01-18T08:43:40.459051
2015-06-08T14:23:16
2015-06-08T14:23:16
null
0
0
null
null
null
null
UHC
C++
false
false
4,450
cpp
mapDoc.cpp
// mapDoc.cpp : CmapDoc 클래스의 구현 // #include "stdafx.h" // SHARED_HANDLERS는 미리 보기, 축소판 그림 및 검색 필터 처리기를 구현하는 ATL 프로젝트에서 정의할 수 있으며 // 해당 프로젝트와 문서 코드를 공유하도록 해 줍니다. #ifndef SHARED_HANDLERS #include "map.h" #endif #include "mapDoc.h" #include <propkey.h> #ifdef _DEBUG #define new DEBUG_NEW #endif // CmapDoc IMPLEMENT_DYNCREATE(CmapDoc, CDocument) BEGIN_MESSAGE_MAP(CmapDoc, CDocument) END_MESSAGE_MAP() // CmapDoc 생성/소멸 CmapDoc::CmapDoc() : m_pImageMap(NULL) , m_nWidthGridMap(0) , m_nHeightGridMap(0) , m_pImageGridMap(NULL) , m_pGridMap(NULL) { // TODO: 여기에 일회성 생성 코드를 추가합니다. } CmapDoc::~CmapDoc() { } BOOL CmapDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; // TODO: 여기에 재초기화 코드를 추가합니다. // SDI 문서는 이 문서를 다시 사용합니다. return TRUE; } // CmapDoc serialization void CmapDoc::Serialize(CArchive& ar) { if (ar.IsStoring()) { // TODO: 여기에 저장 코드를 추가합니다. } else { if(m_pImageMap != NULL) delete m_pImageMap; // TODO: 여기에 로딩 코드를 추가합니다. } m_pImageMap = new CImage; //나번 문제 CFile *fp = ar.GetFile(); //나번 문제 m_pImageMap->Load(fp->GetFilePath()); //나번 문제 m_nWidthGridMap = m_pImageMap->GetWidth(); m_nHeightGridMap = m_pImageMap->GetHeight(); m_pGridMap = new short[m_nWidthGridMap*m_nHeightGridMap]; } #ifdef SHARED_HANDLERS // 축소판 그림을 지원합니다. void CmapDoc::OnDrawThumbnail(CDC& dc, LPRECT lprcBounds) { // 문서의 데이터를 그리려면 이 코드를 수정하십시오. dc.FillSolidRect(lprcBounds, RGB(255, 255, 255)); CString strText = _T("TODO: implement thumbnail drawing here"); LOGFONT lf; CFont* pDefaultGUIFont = CFont::FromHandle((HFONT) GetStockObject(DEFAULT_GUI_FONT)); pDefaultGUIFont->GetLogFont(&lf); lf.lfHeight = 36; CFont fontDraw; fontDraw.CreateFontIndirect(&lf); CFont* pOldFont = dc.SelectObject(&fontDraw); dc.DrawText(strText, lprcBounds, DT_CENTER | DT_WORDBREAK); dc.SelectObject(pOldFont); } // 검색 처리기를 지원합니다. void CmapDoc::InitializeSearchContent() { CString strSearchContent; // 문서의 데이터에서 검색 콘텐츠를 설정합니다. // 콘텐츠 부분은 ";"로 구분되어야 합니다. // 예: strSearchContent = _T("point;rectangle;circle;ole object;"); SetSearchContent(strSearchContent); } void CmapDoc::SetSearchContent(const CString& value) { if (value.IsEmpty()) { RemoveChunk(PKEY_Search_Contents.fmtid, PKEY_Search_Contents.pid); } else { CMFCFilterChunkValueImpl *pChunk = NULL; ATLTRY(pChunk = new CMFCFilterChunkValueImpl); if (pChunk != NULL) { pChunk->SetTextValue(PKEY_Search_Contents, value, CHUNK_TEXT); SetChunkValue(pChunk); } } } #endif // SHARED_HANDLERS // CmapDoc 진단 #ifdef _DEBUG void CmapDoc::AssertValid() const { CDocument::AssertValid(); } void CmapDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG // CmapDoc 명령 void CmapDoc::ConstructOccupancyGridMap(void) { m_nWidthGridMap = m_pImageMap->GetWidth(); m_nHeightGridMap = m_pImageMap->GetHeight(); int nSizeOfMap = m_nWidthGridMap* m_nHeightGridMap; if(!m_pImageGridMap) { delete m_pImageGridMap; delete m_pGridMap; } m_pImageGridMap = new CImage(); m_pGridMap = new short[nSizeOfMap]; m_pImageGridMap->Create(m_nWidthGridMap,m_nHeightGridMap,24); int x, y; for(y = 0 ; y < m_nHeightGridMap ; y++) { for(x = 0 ; x < m_nWidthGridMap ; x++) { if(RGBCompare(m_pImageMap->GetPixel(x, y), m_pRoadColor)) { m_pImageGridMap->SetPixel(x, y, RGB(255, 255, 255)); m_pGridMap[x + y * m_nHeightGridMap] = 1; } } } } bool CmapDoc::RGBCompare(COLORREF color, vector<COLORREF> pathColor) { bool RGB_flag = false; int colorR = GetRValue(color); int colorG = GetGValue(color); int colorB = GetBValue(color); for(int i = 0 ; i < pathColor.size() ; i++) { int pathColorR = GetRValue(pathColor[i]); int pathColorG = GetGValue(pathColor[i]); int pathColorB = GetBValue(pathColor[i]); if(abs(colorR - pathColorR) < 10) { if(abs(colorG - pathColorG) < 10) { if(abs(colorB - pathColorB) < 10) { ///////원래는 5 RGB_flag = true; break; } } } } return RGB_flag; }
0ab453c12fcf4426ed3fe5480e5d1ab5cf3c6d34
b058a701a42e0402c945c62b80934f29e569960f
/Nebraska.hpp
36986efe5843a2707f33fdca8478b992b4380ff5
[]
no_license
calista95/Oregon-Trail
ccb9fb8fc4f59b0f1540a4fce79a4008cfa8631d
fd822b0e17fe44535d0f1502ab2e5ac30ca8f530
refs/heads/master
2020-03-08T13:41:10.791791
2019-04-11T00:29:56
2019-04-11T00:29:56
128,164,140
1
0
null
null
null
null
UTF-8
C++
false
false
416
hpp
Nebraska.hpp
/*******************************************************************************File: Nebraska.hpp Name: Calista Wong Description: This is the header file for the Nebraska class. ***************************************************************************/ #ifndef NEBRASKA_HPP #define NEBRASKA_HPP #include "Space.hpp" class Nebraska : public Space { public: Nebraska(); bool challenge(); }; #endif
8833f6cda86776735881ec2cef8b7bb66700a5f2
73c10a3fb7473e577823d892d9520797f86c0e2a
/app_make_ghittree_from_lv3/HittreeLv3Reader.cpp
d1e4b467d1a938b30de764dc03079c26bbb92555
[]
no_license
goroyabu/ghittree_converter_from_lv3
a4a50495ee9b18b4c7de2d87132a058b73838bd6
80651b16f67d232dba13dac6777bf3e7f26f0ebc
refs/heads/master
2021-08-09T02:20:27.900064
2017-11-11T22:19:09
2017-11-11T22:19:09
108,125,601
0
0
null
null
null
null
UTF-8
C++
false
false
1,058
cpp
HittreeLv3Reader.cpp
#include "HittreeLv3Reader.h" HittreeLv3Reader::HittreeLv3Reader(const TString inputfilename){ fFileName = inputfilename; LoadFile(); SetBranch(); } HittreeLv3Reader::~HittreeLv3Reader(){ } void HittreeLv3Reader::LoadFile(){ fFile = new TFile(fFileName,"read"); fTree = (TTree*)fFile->Get("hittree_lv3"); fNentries = fTree->GetEntries(); fReadEntry = 0; } void HittreeLv3Reader::SetBranch(){ fTree->SetBranchStatus("*",0); fTree->SetBranchStatus("nhit",1); fTree->SetBranchStatus("*_lv3",1); fTree->SetBranchAddress("nhit",&f_nhit); fTree->SetBranchAddress("detid_lv3",f_detid_lv3); fTree->SetBranchAddress("detector_material_lv3",f_detector_material_lv3); fTree->SetBranchAddress("pos_x_lv3",f_pos_x_lv3); fTree->SetBranchAddress("pos_y_lv3",f_pos_y_lv3); fTree->SetBranchAddress("pos_z_lv3",f_pos_z_lv3); fTree->SetBranchAddress("delta_x_lv3",f_delta_x_lv3); fTree->SetBranchAddress("delta_y_lv3",f_delta_y_lv3); fTree->SetBranchAddress("delta_z_lv3",f_delta_z_lv3); fTree->SetBranchAddress("epi_lv3",f_epi_lv3); }
cec4fedae83193c530fcea1b4fc3d724b46a2e5e
d526da621dca09bb031ba3abc48c5dbe59b35088
/#126.cpp
f92ae656c0d5b0892d15e5726ae2cf724fcf0348
[ "Apache-2.0" ]
permissive
fli217/LeetCode
6a41e65907a7745a6d1b37177b81bf4ac2ff4191
ed7a25b96595531009e55de9aeebe758ca0734d2
refs/heads/master
2021-05-30T01:41:31.269875
2015-11-03T06:50:19
2015-11-03T06:50:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,477
cpp
#126.cpp
/*============================================================ Problem: Word Ladder II ============================================================== Given two words (beginWord and endWord), and a dictionary's word list, find all shortest transformation sequence(s) from beginWord to endWord, such that: Only one letter can be changed at a time Each intermediate word must exist in the word list For example, Given: beginWord = "hit" endWord = "cog" wordList = ["hot","dot","dog","lot","log"] Return [ ["hit","hot","dot","dog","cog"], ["hit","hot","lot","log","cog"] ] Note: All words have the same length. All words contain only lowercase alphabetic characters. ============================================================*/ struct Node { string word; vector<Node*> parent; Node(string w) { word = w; parent.clear(); } }; class Solution { private: vector<vector<string>> res; vector<string> tmp; void generatePath(Node* p) { int n = p->parent.size(); if (n==0) { res.push_back(tmp); return; } for (int i=0; i<n; i++) { tmp.push_back(p->parent[i]->word); generatePath(p->parent[i]); tmp.pop_back(); } } public: vector<vector<string>> findLadders(string beginWord, string endWord, unordered_set<string>& wordList) { vector<Node*> curLevel; vector<Node*> nextLevel; map<string, Node*> word2node; swap(beginWord, endWord); int levelSize, wordSize = beginWord.size(); bool found = false; Node *curL, *nextL; curL = new Node(beginWord); curLevel.push_back(curL); wordList.erase(beginWord); wordList.insert(endWord); while (!curLevel.empty() && !found) { nextLevel.clear(); word2node.clear(); levelSize = curLevel.size(); for (int i=0; i<levelSize; i++) { curL = curLevel[i]; string word = curL->word; // upper level for (int j=0; j<wordSize; j++) { char oldchar = word[j]; for (word[j]='a'; word[j]<='z'; word[j]++) { if (wordList.count(word)) { // now we found a valid child-word, let's yield a child. if (!found && word==endWord) found = true; map<string, Node*>::iterator it = word2node.find(word); if (it==word2node.end()) { nextL = new Node(word); word2node[word] = nextL; nextLevel.push_back(nextL); } else nextL = it->second; nextL->parent.push_back(curL); } } word[j] = oldchar; } } for (int i=0; i<nextLevel.size(); i++) wordList.erase(nextLevel[i]->word); curLevel = nextLevel; } if (!found) return res; curL = word2node.find(endWord)->second; res.clear(); tmp = vector<string>(1, endWord); generatePath(curL); return res; } };
90dd8a5694a2e7f1563d1b2e6a8d6f203bb6ebe8
2fc2e340c465808746439d32c4cfd8c2bec6736c
/left_rotate.cpp
ed5718af14e28617a7de0bd5b69e729aea78bca7
[]
no_license
pjha1994/javatempfiles
f8db1c559428a3fbdc7a5ec13bb9382472db772f
8a2b5d586ca01c5f05ee57f5f07d8faff93c9a5e
refs/heads/master
2021-01-13T10:48:46.562127
2016-11-27T00:28:03
2016-11-27T00:28:03
72,289,862
0
0
null
null
null
null
UTF-8
C++
false
false
214
cpp
left_rotate.cpp
#include<iostream> using namespace std; int main(){ ios_base::sync_with_stdio(false); int n,temp,d; cin>>n>>d; int *a = new int[n]; for(int i =0;i<n;i++){ cin>>temp; a[(i+n-d)%n] = temp; } return 0; }
8b61007b093ce7e00adf3d8c7d4775c2d1d72af1
b1a3d30df938b77e2d5003e3e1f96df84f6b77aa
/Parking/Driver.cpp
a59273859a7d46faddb7978827af751f32f526f9
[]
no_license
lotstrom/Autonomous-Car
219b3120e1fe0b7a806ff757e7a7b4735939454e
c578281c16ea9a15b28561ec979045221696ff04
refs/heads/master
2021-01-23T15:52:38.359492
2015-06-28T18:51:46
2015-06-28T18:51:46
38,209,815
3
0
null
null
null
null
UTF-8
C++
false
false
8,518
cpp
Driver.cpp
#include <stdio.h> #include <math.h> #include <sys/time.h> #include "core/io/ContainerConference.h" #include "core/data/Container.h" #include "core/data/Constants.h" #include "core/data/control/VehicleControl.h" #include "core/data/environment/VehicleData.h" // Data structures from msv-data library: #include "SteeringData.h" #include "SensorBoardData.h" #include "UserButtonData.h" #include "Driver.h" #define count 7 ///// Can be either 7 for the A parking lot or 4 for the B parking lot///// #define speed 80 namespace msv { using namespace std; using namespace core::base; using namespace core::data; using namespace core::data::control; using namespace core::data::environment; Driver::Driver(const int32_t &argc, char **argv) : ConferenceClientModule(argc, argv, "Driver") { } Driver::~Driver() {} void Driver::setUp() { // This method will be call automatically _before_ running body(). } void Driver::tearDown() { // This method will be call automatically _after_ return from body(). } // This method will do THE MAIN data processing job. ModuleState::MODULE_EXITCODE Driver::body() { timeval time1,time2,time3,time4,time5,storedtime,storedtime2; float distance; int counter = 0; //int count = 5; bool readIR= true; bool gettime= true; bool gettime2= true; //can be removed later bool gettime3= true; //can be removed later bool parking= false; bool turning = false; bool turning2= false; //bool CheckScenario= true; double timeshift; double timeshift2; double timeshift3; double Timechange; double Adjust = 0; VehicleControl vc; while (getModuleState() == ModuleState::RUNNING) { // In the following, you find example for the various data sources that are available: // 1. Get most recent vehicle data: Container containerVehicleData = getKeyValueDataStore().get(Container::VEHICLEDATA); VehicleData vd = containerVehicleData.getData<VehicleData> (); cerr << "Most recent vehicle data: '" << vd.toString() << "'" << endl; // 2. Get most recent sensor board data: Container containerSensorBoardData = getKeyValueDataStore().get(Container::USER_DATA_0); SensorBoardData sbd = containerSensorBoardData.getData<SensorBoardData> (); cerr << "Most recent sensor board data: '" << sbd.toString() << "'" << endl; // 3. Get most recent user button data: Container containerUserButtonData = getKeyValueDataStore().get(Container::USER_BUTTON); UserButtonData ubd = containerUserButtonData.getData<UserButtonData> (); cerr << "Most recent user button data: '" << ubd.toString() << "'" << endl; // 4. Get most recent steering data as fill from lanedetector for example: Container containerSteeringData = getKeyValueDataStore().get(Container::USER_DATA_1); SteeringData sd = containerSteeringData.getData<SteeringData> (); cerr << "Most recent steering data: '" << sd.toString() << "'" << endl; /* int USFrontRight = sbd.getDistance(4); if(CheckScenario){ if (USFrontRight< 10) count = 4; if (USFrontRight> 10) count = 7; CheckScenario = false; } */ if (count ==4){ turning = true; }else if(count==7){ turning = false; Adjust = 4; }else if(count == 100){ turning = false; } if(turning){ if(gettime2){ gettimeofday(&time5,NULL); storedtime2 = time5; gettime2=false; } gettimeofday(&time4,NULL); timeshift2 = (time4.tv_sec-storedtime2.tv_sec) * 1000; timeshift2 += (time4.tv_usec-storedtime2.tv_usec) / 1000; timeshift2 = timeshift2/1000; cerr << "time SHIFT 2: '" << timeshift2 << "'" << endl; if(timeshift2>1.0&&timeshift2<2.0){ vc.setSteeringWheelAngle(0); vc.setSpeed(80); } if(timeshift2>5.0&&timeshift2<17.0){ vc.setSteeringWheelAngle(24); vc.setSpeed(80); cerr << "Let's turn a bit to the Right" << endl; } if(timeshift2>17.5&&timeshift2<27.8){ vc.setSteeringWheelAngle(-25); vc.setSpeed(80); cerr << "Now let's turn a bit to the Left" << endl; } if(timeshift2>28.7&&timeshift2<49.0){ vc.setSteeringWheelAngle(0); vc.setSpeed(80); cerr << "Good good, Now let's drive Straight" << endl; } if(timeshift2>50.0&&timeshift2<63.3){ vc.setSteeringWheelAngle(-25); vc.setSpeed(80); cerr << "Alright, Now we drive Left" << endl; } if(timeshift2>45.7&&timeshift2<74.5){ vc.setSteeringWheelAngle(0); vc.setSpeed(45); cerr << "Now backwards, to check the first park" << endl; } if(timeshift2>75.5&&timeshift2<75.9){ vc.setSteeringWheelAngle(0); vc.setSpeed(80); counter=0; turning=false; } } cerr << "the IR data '" << sbd.getDistance(0) << "'" << endl; //cerr << "the US data '" << sbd.getDistance(4) << "'" << endl; if(parking==false && turning == false && turning2 == false){ vc.setSpeed(speed); int IRFrontRight = sbd.getDistance(0); if(IRFrontRight> 250 && IRFrontRight<800 && readIR){ gettimeofday(&time1,NULL); readIR = false; } if((IRFrontRight<250 || IRFrontRight>800) && readIR == false){ gettimeofday(&time2,NULL); counter++; readIR = true; } Timechange = (time2.tv_sec-time1.tv_sec) * 1000; Timechange += (time2.tv_usec-time1.tv_usec) / 1000; Timechange = Timechange/1000; cerr << "time change: '" << Timechange << "'" << endl; distance = speed*Timechange; cerr << "Distance '" << distance << "'" << endl; cerr << "counter '" << counter << "'" << endl; if(counter<count){ if(Timechange > 3 && Timechange < 5){ parking= true; } }else{ vc.setSpeed(speed); turning2 = true; } } if(parking && turning == false){ if(gettime){ storedtime = time2; gettime=false; } gettimeofday(&time3,NULL); cerr << "Nice '" << Timechange << "' more than enough!" << endl; timeshift = (time3.tv_sec-storedtime.tv_sec) * 1000; timeshift += (time3.tv_usec-storedtime.tv_usec) / 1000; timeshift = timeshift/1000; cerr << "time SHIFT: '" << timeshift << "'" << endl; if(timeshift>1.0 &&timeshift<1.5){ vc.setSteeringWheelAngle(25); vc.setSpeed(74); usleep(1000000); vc.setSpeed(45); } if(timeshift>10&&timeshift<10.5){ vc.setSpeed(74); } } if(turning2){ if(gettime3){ gettimeofday(&time4,NULL); storedtime2 = time4; gettime3=false; } gettimeofday(&time5,NULL); timeshift3 = (time5.tv_sec-storedtime2.tv_sec) * 1000; timeshift3 += (time5.tv_usec-storedtime2.tv_usec) / 1000; timeshift3 = timeshift3/1000; cerr << "time SHIFT 3: '" << timeshift3 << "'" << endl; if(timeshift3>4.0&&timeshift3<18.4){ vc.setSteeringWheelAngle(-25); vc.setSpeed(80); cerr << "No parking spot, let's make a turn left!" << endl; } if(timeshift3>19.1&&timeshift3<25.5){ vc.setSteeringWheelAngle(0); vc.setSpeed(45); cerr << "Now backwards!" << endl; } if(timeshift3>(26.4+Adjust)&&timeshift3<(42.8+Adjust)){ vc.setSteeringWheelAngle(-25); vc.setSpeed(80); cerr << "Now more left!" << endl; } if(timeshift3>(43.6+Adjust)&&timeshift3<(52.0+Adjust)){ vc.setSteeringWheelAngle(0); vc.setSpeed(45); cerr << "Now backwards, to check the first park" << endl; } if(timeshift3>(53.5+Adjust)&&timeshift3<(53.9+Adjust)){ //Was 52.5 vc.setSteeringWheelAngle(0); vc.setSpeed(80); counter=0; turning2=false; } } // You can also turn on or off various lights: vc.setBrakeLights(false); vc.setLeftFlashingLights(false); vc.setRightFlashingLights(true); // Create container for finally sending the data. Container c(Container::VEHICLECONTROL, vc); // Send container. getConference().send(c); } return ModuleState::OKAY; } } // msv
3e59758538e4c88c9eab0d0386bc1267fce89dd6
39252a51ea92efcc61122e5d6f89935638ce2812
/Line.cpp
12fc656d58d6cfee0b183774077d2d724a9cb481
[]
no_license
mandemeskel/CSE165-Mini-Project-0
dd6a48b48a7c28e0f72b3aa2e64a24d599fdde31
b9dcda35913d8fdd742ae423e036a598833f4687
refs/heads/master
2021-01-20T13:58:38.909228
2017-02-23T06:50:51
2017-02-23T06:50:51
82,718,407
0
0
null
null
null
null
UTF-8
C++
false
false
976
cpp
Line.cpp
// /** // * Michael T. Andemeskel // * mandemeskel@ucmerced.edu // * CSE165 Spring 2017 // * // * Copyright 2017 // * // * Lab info: // **/ // #include <iostream> // #if defined WIN32 // #include <freeglut.h> // #elif defined __APPLE__ // #include <GLUT/glut.h> // #else // #include <GL/freeglut.h> // #endif // #include "Line.h" // using namespace std; // Line::Line( Point * point, float size, Direction dir ) { // this->start = *point; // this->end = *point; // does this make a new copy? // this->length = size; // if( dir == Direction.x ) { // this->end.x += this->length; // } else { // this->end.y += this->length; // } // } // void Line::draw() { // glColor3f( // this->start.r, // this->start.g, // this->start.b // ); // glBegin( GL_LINES ); // glVertex2f( this->start.x, this->start.y ); // glVertex2f( this->end.x, this->end.y ); // glEnd(); // }
3b6de1b3206e0cb1dee91013d0d168d231558df3
34513923e5faa755dc54477ba40821b99be8fc70
/MotionDetectorTest/MotionDetectorTest.ino
8243fa909262a0a82ee5f7dcc722423b39176265
[]
no_license
jeffwrule/CosmicDance
5f92dcbae5e263175517b1a28a44f2630331c379
3e07d175d16431484644fc717622524d3354f7fa
refs/heads/master
2022-12-24T08:45:37.818912
2022-10-22T20:35:38
2022-10-22T20:35:38
23,025,556
0
0
null
null
null
null
UTF-8
C++
false
false
1,821
ino
MotionDetectorTest.ino
/* Blink Turns an LED on for one second, then off for one second, repeatedly. Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to the correct LED pin independent of which board is used. If you want to know what pin the on-board LED is connected to on your Arduino model, check the Technical Specs of your board at: https://www.arduino.cc/en/Main/Products modified 8 May 2014 by Scott Fitzgerald modified 2 Sep 2016 by Arturo Guadalupi modified 8 Sep 2016 by Colby Newman This example code is in the public domain. http://www.arduino.cc/en/Tutorial/Blink */ #define MOTION_PIN 8 #define INDICATOR_LED 2 // the setup function runs once when you press reset or power the board int last_motion_read=0; void setup() { // initialize digital pin LED_BUILTIN as an output. Serial.begin(250000); pinMode(INDICATOR_LED, OUTPUT); pinMode(MOTION_PIN, INPUT); last_motion_read=0; digitalWrite(LED_BUILTIN, LOW); // turn the LED on (HIGH is the voltage level) } unsigned long start_millis; // the loop function runs over and over again forever void loop() { int motion_value; unsigned long cur_millis; motion_value = digitalRead(MOTION_PIN); if (last_motion_read != motion_value) { start_millis = millis(); Serial.println(F("state changed, resetting counter!")); digitalWrite(INDICATOR_LED, motion_value); // turn the LED on (HIGH is the voltage level) } cur_millis=millis(); last_motion_read = motion_value; Serial.print("pin D2="); Serial.print(motion_value); Serial.print(", Current Value="); Serial.print(motion_value); Serial.print(F(", Seconds in state=")); Serial.println((cur_millis - start_millis) / 1000.0); }
804e26e4f4ba545c4d8affc13199302049766d27
52ca2d44f5595b58140f00bbeffc2381ec0ce087
/PengA02PA2/src/LL.h
888c14d5023e78416532538d8372919eb29cd3de
[]
no_license
MacPeng/Data-Structures
74e1b55a40a661b0f1996cd3d31f5404dc47b9e8
d01fa2f6764faca49a912a2fed9ed0f2217d96e0
refs/heads/main
2023-07-18T10:25:51.593613
2021-08-31T03:07:01
2021-08-31T03:07:01
377,214,549
0
0
null
null
null
null
UTF-8
C++
false
false
3,297
h
LL.h
/* * LL.h * * Created on: Sep 24, 2019 * Author: mikepeng */ #ifndef LL_H_ #define LL_H_ #include <iostream> using namespace std; template <class T> struct LLnode { LLnode * fwdptr; T theData; }; template <class T> class LL{ private: LLnode<T> * llh; public: void push_front (T s); void push_back (T s); int list_length (); string retrieve_front (); string retrieve_back (); void display_list (); void destroy_list(); bool search_list(T target); bool delete_node(T target); LL(); }; template <class T> void LL<T>::push_front (T s) { if (llh == nullptr) { LLnode<T> * LLptr = new LLnode<T>(); LLptr -> theData = s; LLptr -> fwdptr = nullptr; llh = LLptr; } else { LLnode<T> * LLptr = new LLnode<T>(); LLptr->theData = s; LLnode<T> * temp = llh; llh = LLptr; LLptr->fwdptr = temp; } } template <class T> void LL<T>::push_back (T s) { if (llh == nullptr) { LLnode<T> * LLptr = new LLnode<T>(); LLptr -> fwdptr = nullptr; LLptr -> theData = s; llh = LLptr; } else { LLnode<T> * LLptr = new LLnode<T>(); LLptr -> theData = s; LLnode<T> * temp = llh; if (temp != nullptr) { while (temp -> fwdptr != nullptr) { temp = temp -> fwdptr; } } // else // { // llh = LLptr; // } LLptr -> fwdptr = nullptr; temp -> fwdptr = LLptr; } } template <class T> int LL<T>::list_length () { int counter = 0; LLnode<T> * curr = llh; if(curr == nullptr) { return 0; } while (curr != nullptr) { counter++; curr = curr -> fwdptr; } return counter; } template <class T> string LL<T>::retrieve_front () { if (llh == nullptr) { throw " Sorry, this linked list is empty. "; } else { return llh -> theData; } } template <class T> string LL<T>::retrieve_back () { LLnode<T> * curr = llh; if (llh == nullptr) { throw " Sorry, this linked list is empty. "; } else { while (curr -> fwdptr != nullptr) { curr = curr -> fwdptr; } return curr -> theData; } } template <class T> void LL<T>::display_list () { LLnode<T> * curr = llh; int counter = 0; if (llh == nullptr) { cout << " Sorry, this linked list is empty. " << endl; } else { while (curr != nullptr) { cout << "node "<< counter << " data -> "<< curr -> theData<<endl; curr = curr->fwdptr; counter++; } } } template <class T> void LL<T>::destroy_list() { LLnode<T> * curr = llh; LLnode<T> * temp; while (curr != nullptr) { temp = curr; curr = curr -> fwdptr; delete temp; } llh = nullptr; } template <class T> bool LL<T>::search_list(T target) { LLnode<T> * curr = llh; while (curr != nullptr) { if (curr -> theData == target) { return true; } curr = curr -> fwdptr; } return false; } template <class T> bool LL<T>::delete_node(T target) { LLnode<T> * curr = llh; LLnode<T> * temp; if (curr == nullptr) return false; if (curr != nullptr && curr -> theData == target) { llh = curr -> fwdptr; delete curr; return true; } while (curr != nullptr && curr -> theData != target) { temp = curr; curr = curr -> fwdptr; } if(temp == nullptr) return false; temp -> fwdptr = curr -> fwdptr; delete curr; return true; } template <class T> LL<T>::LL() { llh = nullptr; } #endif /* LL_H_ */
d08595d19baba88ee835684c98fcb1ba00b2669b
9dfdf844965b476212936907d3b683fd61f990a3
/panel.h
4cb997a95d59fe335c508b55f2d8e19c180b5b73
[]
no_license
Nglittleguy/AnimationHub
ef848e820b7acd780ff2ba11e9cc7ef3f4b4d0e6
b0c90a079da4eeec1f98d3ec8e6ff912803725c8
refs/heads/main
2023-03-22T12:58:41.569016
2021-03-20T05:44:06
2021-03-20T05:44:06
349,638,765
0
0
null
null
null
null
UTF-8
C++
false
false
526
h
panel.h
#pragma once #include <iosfwd> #include <string> #include "givio.h" #include "givr.h" #include "imgui/imgui.h" namespace panel { extern bool showPanel; extern ImVec4 clear_color; // animation extern bool playModel; extern bool resetModel; extern bool stepModel; extern float dt; extern bool loadPendulumModel; extern bool loadDoublePendulumModel; extern bool loadParticleModel; extern bool loadMassSpring1Model; extern bool loadMassSpring2Model; // reset extern bool resetView; void updateMenu(); } // namespace panel
967bbbec4ddfb49b10f1a3130e42e242e8828f8f
3282ccae547452b96c4409e6b5a447f34b8fdf64
/SimModel_Python_API/simmodel_swig/SimModel_Dll_lib/framework/SimControlScheme_AvailabilityManagerScheme_NightVentilation.cxx
1d5419616debaf5324b320841341df8dc5678499
[ "MIT" ]
permissive
EnEff-BIM/EnEffBIM-Framework
c8bde8178bb9ed7d5e3e5cdf6d469a009bcb52de
6328d39b498dc4065a60b5cc9370b8c2a9a1cddf
refs/heads/master
2021-01-18T00:16:06.546875
2017-04-18T08:03:40
2017-04-18T08:03:40
28,960,534
3
0
null
2017-04-18T08:03:40
2015-01-08T10:19:18
C++
UTF-8
C++
false
false
20,905
cxx
SimControlScheme_AvailabilityManagerScheme_NightVentilation.cxx
// Copyright (c) 2005-2014 Code Synthesis Tools CC // // This program was generated by CodeSynthesis XSD, an XML Schema to // C++ data binding compiler. // // 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // // In addition, as a special exception, Code Synthesis Tools CC gives // permission to link this program with the Xerces-C++ library (or with // modified versions of Xerces-C++ that use the same license as Xerces-C++), // and distribute linked combinations including the two. You must obey // the GNU General Public License version 2 in all respects for all of // the code used other than Xerces-C++. If you modify this copy of the // program, you may extend this exception to your version of the program, // but you are not obligated to do so. If you do not wish to do so, delete // this exception statement from your version. // // Furthermore, Code Synthesis Tools CC makes a special exception for // the Free/Libre and Open Source Software (FLOSS) which is described // in the accompanying FLOSSE file. // // Begin prologue. // // // End prologue. #include <xsd/cxx/pre.hxx> #include "SimControlScheme_AvailabilityManagerScheme_NightVentilation.hxx" namespace schema { namespace simxml { namespace ResourcesGeneral { // SimControlScheme_AvailabilityManagerScheme_NightVentilation // const SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_Name_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_Name () const { return this->SimCntrlSchm_Name_; } SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_Name_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_Name () { return this->SimCntrlSchm_Name_; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_Name (const SimCntrlSchm_Name_type& x) { this->SimCntrlSchm_Name_.set (x); } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_Name (const SimCntrlSchm_Name_optional& x) { this->SimCntrlSchm_Name_ = x; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_Name (::std::auto_ptr< SimCntrlSchm_Name_type > x) { this->SimCntrlSchm_Name_.set (x); } const SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_ApplicSchedName_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_ApplicSchedName () const { return this->SimCntrlSchm_ApplicSchedName_; } SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_ApplicSchedName_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_ApplicSchedName () { return this->SimCntrlSchm_ApplicSchedName_; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_ApplicSchedName (const SimCntrlSchm_ApplicSchedName_type& x) { this->SimCntrlSchm_ApplicSchedName_.set (x); } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_ApplicSchedName (const SimCntrlSchm_ApplicSchedName_optional& x) { this->SimCntrlSchm_ApplicSchedName_ = x; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_ApplicSchedName (::std::auto_ptr< SimCntrlSchm_ApplicSchedName_type > x) { this->SimCntrlSchm_ApplicSchedName_.set (x); } const SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_FanSchedName_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_FanSchedName () const { return this->SimCntrlSchm_FanSchedName_; } SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_FanSchedName_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_FanSchedName () { return this->SimCntrlSchm_FanSchedName_; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_FanSchedName (const SimCntrlSchm_FanSchedName_type& x) { this->SimCntrlSchm_FanSchedName_.set (x); } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_FanSchedName (const SimCntrlSchm_FanSchedName_optional& x) { this->SimCntrlSchm_FanSchedName_ = x; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_FanSchedName (::std::auto_ptr< SimCntrlSchm_FanSchedName_type > x) { this->SimCntrlSchm_FanSchedName_.set (x); } const SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_CntlZoneName_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_CntlZoneName () const { return this->SimCntrlSchm_CntlZoneName_; } SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_CntlZoneName_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_CntlZoneName () { return this->SimCntrlSchm_CntlZoneName_; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_CntlZoneName (const SimCntrlSchm_CntlZoneName_type& x) { this->SimCntrlSchm_CntlZoneName_.set (x); } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_CntlZoneName (const SimCntrlSchm_CntlZoneName_optional& x) { this->SimCntrlSchm_CntlZoneName_ = x; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_CntlZoneName (::std::auto_ptr< SimCntrlSchm_CntlZoneName_type > x) { this->SimCntrlSchm_CntlZoneName_.set (x); } const SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_VentTempSchedName_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempSchedName () const { return this->SimCntrlSchm_VentTempSchedName_; } SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_VentTempSchedName_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempSchedName () { return this->SimCntrlSchm_VentTempSchedName_; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempSchedName (const SimCntrlSchm_VentTempSchedName_type& x) { this->SimCntrlSchm_VentTempSchedName_.set (x); } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempSchedName (const SimCntrlSchm_VentTempSchedName_optional& x) { this->SimCntrlSchm_VentTempSchedName_ = x; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempSchedName (::std::auto_ptr< SimCntrlSchm_VentTempSchedName_type > x) { this->SimCntrlSchm_VentTempSchedName_.set (x); } const SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_VentTempDiff_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempDiff () const { return this->SimCntrlSchm_VentTempDiff_; } SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_VentTempDiff_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempDiff () { return this->SimCntrlSchm_VentTempDiff_; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempDiff (const SimCntrlSchm_VentTempDiff_type& x) { this->SimCntrlSchm_VentTempDiff_.set (x); } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempDiff (const SimCntrlSchm_VentTempDiff_optional& x) { this->SimCntrlSchm_VentTempDiff_ = x; } const SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_VentTempLowLimit_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempLowLimit () const { return this->SimCntrlSchm_VentTempLowLimit_; } SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_VentTempLowLimit_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempLowLimit () { return this->SimCntrlSchm_VentTempLowLimit_; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempLowLimit (const SimCntrlSchm_VentTempLowLimit_type& x) { this->SimCntrlSchm_VentTempLowLimit_.set (x); } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_VentTempLowLimit (const SimCntrlSchm_VentTempLowLimit_optional& x) { this->SimCntrlSchm_VentTempLowLimit_ = x; } const SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_NightVentFlowFract_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_NightVentFlowFract () const { return this->SimCntrlSchm_NightVentFlowFract_; } SimControlScheme_AvailabilityManagerScheme_NightVentilation::SimCntrlSchm_NightVentFlowFract_optional& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_NightVentFlowFract () { return this->SimCntrlSchm_NightVentFlowFract_; } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_NightVentFlowFract (const SimCntrlSchm_NightVentFlowFract_type& x) { this->SimCntrlSchm_NightVentFlowFract_.set (x); } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimCntrlSchm_NightVentFlowFract (const SimCntrlSchm_NightVentFlowFract_optional& x) { this->SimCntrlSchm_NightVentFlowFract_ = x; } } } } #include <xsd/cxx/xml/dom/parsing-source.hxx> #include <xsd/cxx/tree/type-factory-map.hxx> namespace _xsd { static const ::xsd::cxx::tree::type_factory_plate< 0, char > type_factory_plate_init; } namespace schema { namespace simxml { namespace ResourcesGeneral { // SimControlScheme_AvailabilityManagerScheme_NightVentilation // SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimControlScheme_AvailabilityManagerScheme_NightVentilation () : ::schema::simxml::ResourcesGeneral::SimControlScheme_AvailabilityManagerScheme (), SimCntrlSchm_Name_ (this), SimCntrlSchm_ApplicSchedName_ (this), SimCntrlSchm_FanSchedName_ (this), SimCntrlSchm_CntlZoneName_ (this), SimCntrlSchm_VentTempSchedName_ (this), SimCntrlSchm_VentTempDiff_ (this), SimCntrlSchm_VentTempLowLimit_ (this), SimCntrlSchm_NightVentFlowFract_ (this) { } SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimControlScheme_AvailabilityManagerScheme_NightVentilation (const RefId_type& RefId) : ::schema::simxml::ResourcesGeneral::SimControlScheme_AvailabilityManagerScheme (RefId), SimCntrlSchm_Name_ (this), SimCntrlSchm_ApplicSchedName_ (this), SimCntrlSchm_FanSchedName_ (this), SimCntrlSchm_CntlZoneName_ (this), SimCntrlSchm_VentTempSchedName_ (this), SimCntrlSchm_VentTempDiff_ (this), SimCntrlSchm_VentTempLowLimit_ (this), SimCntrlSchm_NightVentFlowFract_ (this) { } SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimControlScheme_AvailabilityManagerScheme_NightVentilation (const SimControlScheme_AvailabilityManagerScheme_NightVentilation& x, ::xml_schema::flags f, ::xml_schema::container* c) : ::schema::simxml::ResourcesGeneral::SimControlScheme_AvailabilityManagerScheme (x, f, c), SimCntrlSchm_Name_ (x.SimCntrlSchm_Name_, f, this), SimCntrlSchm_ApplicSchedName_ (x.SimCntrlSchm_ApplicSchedName_, f, this), SimCntrlSchm_FanSchedName_ (x.SimCntrlSchm_FanSchedName_, f, this), SimCntrlSchm_CntlZoneName_ (x.SimCntrlSchm_CntlZoneName_, f, this), SimCntrlSchm_VentTempSchedName_ (x.SimCntrlSchm_VentTempSchedName_, f, this), SimCntrlSchm_VentTempDiff_ (x.SimCntrlSchm_VentTempDiff_, f, this), SimCntrlSchm_VentTempLowLimit_ (x.SimCntrlSchm_VentTempLowLimit_, f, this), SimCntrlSchm_NightVentFlowFract_ (x.SimCntrlSchm_NightVentFlowFract_, f, this) { } SimControlScheme_AvailabilityManagerScheme_NightVentilation:: SimControlScheme_AvailabilityManagerScheme_NightVentilation (const ::xercesc::DOMElement& e, ::xml_schema::flags f, ::xml_schema::container* c) : ::schema::simxml::ResourcesGeneral::SimControlScheme_AvailabilityManagerScheme (e, f | ::xml_schema::flags::base, c), SimCntrlSchm_Name_ (this), SimCntrlSchm_ApplicSchedName_ (this), SimCntrlSchm_FanSchedName_ (this), SimCntrlSchm_CntlZoneName_ (this), SimCntrlSchm_VentTempSchedName_ (this), SimCntrlSchm_VentTempDiff_ (this), SimCntrlSchm_VentTempLowLimit_ (this), SimCntrlSchm_NightVentFlowFract_ (this) { if ((f & ::xml_schema::flags::base) == 0) { ::xsd::cxx::xml::dom::parser< char > p (e, true, false, true); this->parse (p, f); } } void SimControlScheme_AvailabilityManagerScheme_NightVentilation:: parse (::xsd::cxx::xml::dom::parser< char >& p, ::xml_schema::flags f) { this->::schema::simxml::ResourcesGeneral::SimControlScheme_AvailabilityManagerScheme::parse (p, f); for (; p.more_content (); p.next_content (false)) { const ::xercesc::DOMElement& i (p.cur_element ()); const ::xsd::cxx::xml::qualified_name< char > n ( ::xsd::cxx::xml::dom::name< char > (i)); // SimCntrlSchm_Name // if (n.name () == "SimCntrlSchm_Name" && n.namespace_ () == "http://d-alchemy.com/schema/simxml/ResourcesGeneral") { ::std::auto_ptr< SimCntrlSchm_Name_type > r ( SimCntrlSchm_Name_traits::create (i, f, this)); if (!this->SimCntrlSchm_Name_) { this->SimCntrlSchm_Name_.set (r); continue; } } // SimCntrlSchm_ApplicSchedName // if (n.name () == "SimCntrlSchm_ApplicSchedName" && n.namespace_ () == "http://d-alchemy.com/schema/simxml/ResourcesGeneral") { ::std::auto_ptr< SimCntrlSchm_ApplicSchedName_type > r ( SimCntrlSchm_ApplicSchedName_traits::create (i, f, this)); if (!this->SimCntrlSchm_ApplicSchedName_) { this->SimCntrlSchm_ApplicSchedName_.set (r); continue; } } // SimCntrlSchm_FanSchedName // if (n.name () == "SimCntrlSchm_FanSchedName" && n.namespace_ () == "http://d-alchemy.com/schema/simxml/ResourcesGeneral") { ::std::auto_ptr< SimCntrlSchm_FanSchedName_type > r ( SimCntrlSchm_FanSchedName_traits::create (i, f, this)); if (!this->SimCntrlSchm_FanSchedName_) { this->SimCntrlSchm_FanSchedName_.set (r); continue; } } // SimCntrlSchm_CntlZoneName // if (n.name () == "SimCntrlSchm_CntlZoneName" && n.namespace_ () == "http://d-alchemy.com/schema/simxml/ResourcesGeneral") { ::std::auto_ptr< SimCntrlSchm_CntlZoneName_type > r ( SimCntrlSchm_CntlZoneName_traits::create (i, f, this)); if (!this->SimCntrlSchm_CntlZoneName_) { this->SimCntrlSchm_CntlZoneName_.set (r); continue; } } // SimCntrlSchm_VentTempSchedName // if (n.name () == "SimCntrlSchm_VentTempSchedName" && n.namespace_ () == "http://d-alchemy.com/schema/simxml/ResourcesGeneral") { ::std::auto_ptr< SimCntrlSchm_VentTempSchedName_type > r ( SimCntrlSchm_VentTempSchedName_traits::create (i, f, this)); if (!this->SimCntrlSchm_VentTempSchedName_) { this->SimCntrlSchm_VentTempSchedName_.set (r); continue; } } // SimCntrlSchm_VentTempDiff // if (n.name () == "SimCntrlSchm_VentTempDiff" && n.namespace_ () == "http://d-alchemy.com/schema/simxml/ResourcesGeneral") { if (!this->SimCntrlSchm_VentTempDiff_) { this->SimCntrlSchm_VentTempDiff_.set (SimCntrlSchm_VentTempDiff_traits::create (i, f, this)); continue; } } // SimCntrlSchm_VentTempLowLimit // if (n.name () == "SimCntrlSchm_VentTempLowLimit" && n.namespace_ () == "http://d-alchemy.com/schema/simxml/ResourcesGeneral") { if (!this->SimCntrlSchm_VentTempLowLimit_) { this->SimCntrlSchm_VentTempLowLimit_.set (SimCntrlSchm_VentTempLowLimit_traits::create (i, f, this)); continue; } } // SimCntrlSchm_NightVentFlowFract // if (n.name () == "SimCntrlSchm_NightVentFlowFract" && n.namespace_ () == "http://d-alchemy.com/schema/simxml/ResourcesGeneral") { if (!this->SimCntrlSchm_NightVentFlowFract_) { this->SimCntrlSchm_NightVentFlowFract_.set (SimCntrlSchm_NightVentFlowFract_traits::create (i, f, this)); continue; } } break; } } SimControlScheme_AvailabilityManagerScheme_NightVentilation* SimControlScheme_AvailabilityManagerScheme_NightVentilation:: _clone (::xml_schema::flags f, ::xml_schema::container* c) const { return new class SimControlScheme_AvailabilityManagerScheme_NightVentilation (*this, f, c); } SimControlScheme_AvailabilityManagerScheme_NightVentilation& SimControlScheme_AvailabilityManagerScheme_NightVentilation:: operator= (const SimControlScheme_AvailabilityManagerScheme_NightVentilation& x) { if (this != &x) { static_cast< ::schema::simxml::ResourcesGeneral::SimControlScheme_AvailabilityManagerScheme& > (*this) = x; this->SimCntrlSchm_Name_ = x.SimCntrlSchm_Name_; this->SimCntrlSchm_ApplicSchedName_ = x.SimCntrlSchm_ApplicSchedName_; this->SimCntrlSchm_FanSchedName_ = x.SimCntrlSchm_FanSchedName_; this->SimCntrlSchm_CntlZoneName_ = x.SimCntrlSchm_CntlZoneName_; this->SimCntrlSchm_VentTempSchedName_ = x.SimCntrlSchm_VentTempSchedName_; this->SimCntrlSchm_VentTempDiff_ = x.SimCntrlSchm_VentTempDiff_; this->SimCntrlSchm_VentTempLowLimit_ = x.SimCntrlSchm_VentTempLowLimit_; this->SimCntrlSchm_NightVentFlowFract_ = x.SimCntrlSchm_NightVentFlowFract_; } return *this; } SimControlScheme_AvailabilityManagerScheme_NightVentilation:: ~SimControlScheme_AvailabilityManagerScheme_NightVentilation () { } } } } #include <istream> #include <xsd/cxx/xml/sax/std-input-source.hxx> #include <xsd/cxx/tree/error-handler.hxx> namespace schema { namespace simxml { namespace ResourcesGeneral { } } } #include <xsd/cxx/post.hxx> // Begin epilogue. // // // End epilogue.
559ec59f8552bc7cfcac366188b3da4721ffb423
d447a436270c00453ebab219f88a1970710e8e27
/Client/src/Task.cpp
a04cdbdfbdb7e089b843fbbe8f656ec95d9411ad
[]
no_license
davwiener/client-server
4e3f959f81923f8dd5ecd6d615e0bceab7430489
be972c789cd13a89eb85d931e55aaecb17b4fb66
refs/heads/master
2020-04-17T01:31:29.127028
2019-01-16T19:13:28
2019-01-16T19:13:28
166,095,876
0
0
null
null
null
null
UTF-8
C++
false
false
86
cpp
Task.cpp
// // Created by david on 17/01/17. // #include "../include/Task.h" Task::~Task() { }
878d012938ee6ffdca0cf02959a2d9270e95ebf8
eb4ba6bf51880eb8af06bcceddd96936cd5d409a
/assignment-client/src/AssignmentClientMonitor.cpp
6414f3364426df840f87b67db5aa3f35c3003248
[ "Apache-2.0" ]
permissive
adamrwoodbury/hifi
1526e8badca81d15bcf81b57361f2c69a36eba54
d7cc76e48bf6fec7ae4312176abf9397b6507561
refs/heads/master
2021-01-18T13:57:59.539942
2015-05-02T07:35:49
2015-05-02T07:35:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,092
cpp
AssignmentClientMonitor.cpp
// // AssignmentClientMonitor.cpp // assignment-client/src // // Created by Stephen Birarda on 1/10/2014. // Copyright 2014 High Fidelity, Inc. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // #include <signal.h> #include <LogHandler.h> #include <AddressManager.h> #include "AssignmentClientMonitor.h" #include "AssignmentClientApp.h" #include "AssignmentClientChildData.h" #include "PacketHeaders.h" #include "SharedUtil.h" const QString ASSIGNMENT_CLIENT_MONITOR_TARGET_NAME = "assignment-client-monitor"; const int WAIT_FOR_CHILD_MSECS = 500; AssignmentClientMonitor::AssignmentClientMonitor(const unsigned int numAssignmentClientForks, const unsigned int minAssignmentClientForks, const unsigned int maxAssignmentClientForks, Assignment::Type requestAssignmentType, QString assignmentPool, QUuid walletUUID, QString assignmentServerHostname, quint16 assignmentServerPort) : _numAssignmentClientForks(numAssignmentClientForks), _minAssignmentClientForks(minAssignmentClientForks), _maxAssignmentClientForks(maxAssignmentClientForks), _requestAssignmentType(requestAssignmentType), _assignmentPool(assignmentPool), _walletUUID(walletUUID), _assignmentServerHostname(assignmentServerHostname), _assignmentServerPort(assignmentServerPort) { qDebug() << "_requestAssignmentType =" << _requestAssignmentType; // start the Logging class with the parent's target name LogHandler::getInstance().setTargetName(ASSIGNMENT_CLIENT_MONITOR_TARGET_NAME); // create a NodeList so we can receive stats from children DependencyManager::registerInheritance<LimitedNodeList, NodeList>(); auto addressManager = DependencyManager::set<AddressManager>(); auto nodeList = DependencyManager::set<LimitedNodeList>(DEFAULT_ASSIGNMENT_CLIENT_MONITOR_PORT); connect(&nodeList->getNodeSocket(), &QUdpSocket::readyRead, this, &AssignmentClientMonitor::readPendingDatagrams); qint64 pid = QCoreApplication::applicationPid (); nodeList->putLocalPortIntoSharedMemory(QString(ASSIGNMENT_CLIENT_MONITOR_LOCAL_PORT_SMEM_KEY) + "-" + QString::number(pid), this, nodeList->getNodeSocket().localPort()); // use QProcess to fork off a process for each of the child assignment clients for (unsigned int i = 0; i < _numAssignmentClientForks; i++) { spawnChildClient(); } connect(&_checkSparesTimer, &QTimer::timeout, this, &AssignmentClientMonitor::checkSpares); _checkSparesTimer.start(NODE_SILENCE_THRESHOLD_MSECS * 3); } AssignmentClientMonitor::~AssignmentClientMonitor() { stopChildProcesses(); } void AssignmentClientMonitor::waitOnChildren(int msecs) { QMutableListIterator<QProcess*> i(_childProcesses); while (i.hasNext()) { QProcess* childProcess = i.next(); bool finished = childProcess->waitForFinished(msecs); if (finished) { i.remove(); } } } void AssignmentClientMonitor::stopChildProcesses() { auto nodeList = DependencyManager::get<NodeList>(); nodeList->eachNode([&](const SharedNodePointer& node) { qDebug() << "asking child" << node->getUUID() << "to exit."; node->activateLocalSocket(); QByteArray diePacket = byteArrayWithPopulatedHeader(PacketTypeStopNode); nodeList->writeUnverifiedDatagram(diePacket, *node->getActiveSocket()); }); // try to give all the children time to shutdown waitOnChildren(WAIT_FOR_CHILD_MSECS); // ask more firmly QMutableListIterator<QProcess*> i(_childProcesses); while (i.hasNext()) { QProcess* childProcess = i.next(); childProcess->terminate(); } // try to give all the children time to shutdown waitOnChildren(WAIT_FOR_CHILD_MSECS); // ask even more firmly QMutableListIterator<QProcess*> j(_childProcesses); while (j.hasNext()) { QProcess* childProcess = j.next(); childProcess->kill(); } waitOnChildren(WAIT_FOR_CHILD_MSECS); } void AssignmentClientMonitor::aboutToQuit() { stopChildProcesses(); // clear the log handler so that Qt doesn't call the destructor on LogHandler qInstallMessageHandler(0); } void AssignmentClientMonitor::spawnChildClient() { QProcess *assignmentClient = new QProcess(this); _childProcesses.append(assignmentClient); // unparse the parts of the command-line that the child cares about QStringList _childArguments; if (_assignmentPool != "") { _childArguments.append("--" + ASSIGNMENT_POOL_OPTION); _childArguments.append(_assignmentPool); } if (!_walletUUID.isNull()) { _childArguments.append("--" + ASSIGNMENT_WALLET_DESTINATION_ID_OPTION); _childArguments.append(_walletUUID.toString()); } if (_assignmentServerHostname != "") { _childArguments.append("--" + CUSTOM_ASSIGNMENT_SERVER_HOSTNAME_OPTION); _childArguments.append(_assignmentServerHostname); } if (_assignmentServerPort != DEFAULT_DOMAIN_SERVER_PORT) { _childArguments.append("--" + CUSTOM_ASSIGNMENT_SERVER_PORT_OPTION); _childArguments.append(QString::number(_assignmentServerPort)); } if (_requestAssignmentType != Assignment::AllTypes) { _childArguments.append("--" + ASSIGNMENT_TYPE_OVERRIDE_OPTION); _childArguments.append(QString::number(_requestAssignmentType)); } // tell children which shared memory key to use qint64 pid = QCoreApplication::applicationPid (); _childArguments.append("--" + PARENT_PID_OPTION); _childArguments.append(QString::number(pid)); // make sure that the output from the child process appears in our output assignmentClient->setProcessChannelMode(QProcess::ForwardedChannels); assignmentClient->start(QCoreApplication::applicationFilePath(), _childArguments); qDebug() << "Spawned a child client with PID" << assignmentClient->pid(); } void AssignmentClientMonitor::checkSpares() { auto nodeList = DependencyManager::get<NodeList>(); QUuid aSpareId = ""; unsigned int spareCount = 0; unsigned int totalCount = 0; nodeList->removeSilentNodes(); nodeList->eachNode([&](const SharedNodePointer& node) { AssignmentClientChildData *childData = static_cast<AssignmentClientChildData*>(node->getLinkedData()); totalCount ++; if (childData->getChildType() == "none") { spareCount ++; aSpareId = node->getUUID(); } }); // Spawn or kill children, as needed. If --min or --max weren't specified, allow the child count // to drift up or down as far as needed. if (spareCount < 1 || totalCount < _minAssignmentClientForks) { if (!_maxAssignmentClientForks || totalCount < _maxAssignmentClientForks) { spawnChildClient(); } } if (spareCount > 1) { if (!_minAssignmentClientForks || totalCount > _minAssignmentClientForks) { // kill aSpareId qDebug() << "asking child" << aSpareId << "to exit."; SharedNodePointer childNode = nodeList->nodeWithUUID(aSpareId); childNode->activateLocalSocket(); QByteArray diePacket = byteArrayWithPopulatedHeader(PacketTypeStopNode); nodeList->writeUnverifiedDatagram(diePacket, childNode); } } waitOnChildren(0); } void AssignmentClientMonitor::readPendingDatagrams() { auto nodeList = DependencyManager::get<NodeList>(); QByteArray receivedPacket; HifiSockAddr senderSockAddr; while (nodeList->getNodeSocket().hasPendingDatagrams()) { receivedPacket.resize(nodeList->getNodeSocket().pendingDatagramSize()); nodeList->getNodeSocket().readDatagram(receivedPacket.data(), receivedPacket.size(), senderSockAddr.getAddressPointer(), senderSockAddr.getPortPointer()); if (nodeList->packetVersionAndHashMatch(receivedPacket)) { if (packetTypeForPacket(receivedPacket) == PacketTypeNodeJsonStats) { QUuid packetUUID = uuidFromPacketHeader(receivedPacket); SharedNodePointer matchingNode = nodeList->sendingNodeForPacket(receivedPacket); if (!matchingNode) { // The parent only expects to be talking with prorams running on this same machine. if (senderSockAddr.getAddress() == QHostAddress::LocalHost || senderSockAddr.getAddress() == QHostAddress::LocalHostIPv6) { if (!packetUUID.isNull()) { matchingNode = DependencyManager::get<LimitedNodeList>()->addOrUpdateNode (packetUUID, NodeType::Unassigned, senderSockAddr, senderSockAddr, false, false); AssignmentClientChildData *childData = new AssignmentClientChildData("unknown"); matchingNode->setLinkedData(childData); } else { // tell unknown assignment-client child to exit. qDebug() << "asking unknown child to exit."; QByteArray diePacket = byteArrayWithPopulatedHeader(PacketTypeStopNode); nodeList->writeUnverifiedDatagram(diePacket, senderSockAddr); } } } if (matchingNode) { // update our records about how to reach this child matchingNode->setLocalSocket(senderSockAddr); // push past the packet header QDataStream packetStream(receivedPacket); packetStream.skipRawData(numBytesForPacketHeader(receivedPacket)); // decode json QVariantMap unpackedVariantMap; packetStream >> unpackedVariantMap; QJsonObject unpackedStatsJSON = QJsonObject::fromVariantMap(unpackedVariantMap); // get child's assignment type out of the decoded json QString childType = unpackedStatsJSON["assignment_type"].toString(); AssignmentClientChildData *childData = static_cast<AssignmentClientChildData*>(matchingNode->getLinkedData()); childData->setChildType(childType); // note when this child talked matchingNode->setLastHeardMicrostamp(usecTimestampNow()); } } else { // have the NodeList attempt to handle it nodeList->processNodeData(senderSockAddr, receivedPacket); } } } }
4eb2c6b16773a3e7a46f894124a7fa689f17ca55
9866fcd00c98c7e95517e5430a1d1fd46d346be0
/htws_engine/basics/file/file_path.h
a4f7504804fbab59663c801d650c44fd5f046155
[]
no_license
hearthewarsong/htws_engine
8ee9f0939e15c8830d19587e8cdf0f9b725c9306
c0d7fed2cb68b450dc33b5d03a3da09b3d1541b7
refs/heads/master
2021-01-01T17:52:30.159566
2014-12-25T13:49:59
2014-12-25T13:49:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
356
h
file_path.h
/* * file_path.h * * Created on: Aug 24, 2014 * Author: hearthewarsong */ #ifndef FILE_PATH_H_ #define FILE_PATH_H_ class FilePath { string path; public: FilePath(const char* file_path); OWNERSHIP FILE* FOpen(const char* mode = "r") const; const string& GetPath() const { return path; } virtual ~FilePath(); }; #endif /* FILE_PATH_H_ */
738eb94a88713db11ce6aa268e2cc8c1ee767a9f
201bc82653e46fd071db3ffee41fe01f7ab63967
/sqlite/db.cpp
c2c73ffd65c7243bb2cf1c63572a532968e9a06b
[ "BSD-3-Clause" ]
permissive
edlai/libhv
5f0b5b0ef5a8abdd6d226e5a90702d6fbe4a114c
b6c7680f66216089fab0b02cb5177ceedd95f4e6
refs/heads/master
2021-01-14T22:32:57.758277
2020-02-24T16:43:50
2020-02-24T16:43:50
242,782,037
4
0
BSD-3-Clause
2020-02-24T16:12:21
2020-02-24T16:12:21
null
UTF-8
C++
false
false
3,928
cpp
db.cpp
#include "db.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #define BUSY_TIMEOUT 5000 // ms int db_open(const char* dbfile, HDB* phdb) { if (sqlite3_open(dbfile, phdb) != SQLITE_OK) { fprintf(stderr, "sqlite3_open %s failed!\n", dbfile); return SQL_ERR; } sqlite3_busy_timeout(*phdb, BUSY_TIMEOUT); return SQL_OK; } int db_close(HDB* phdb) { if (phdb == NULL || *phdb == NULL) { return SQL_ERR; } int ret = sqlite3_close(*phdb); *phdb = NULL; return ret; } int db_exec(HDB hdb, const char* sql) { char *errmsg; //printf("sql: %s\n", sql); if (sqlite3_exec(hdb, sql, NULL, NULL, &errmsg) != SQLITE_OK) { fprintf(stderr, "sqlite3_exec sql: %s err: %s\n", sql, errmsg); return SQL_ERR; } return SQL_OK; } int db_exec_with_result(HDB hdb, const char* sql, DBTable* table) { int row, col; char **results; char *errmsg; //printf("sql: %s\n", sql); if (sqlite3_get_table(hdb, sql, &results, &row, &col, &errmsg) != SQLITE_OK) { fprintf(stderr, "sqlite3_get_table sql: %s err: %s\n", sql, errmsg); return SQL_ERR; } // convert char** to DBTable DBRecord record; for (int r = 0; r <= row; ++r) { // note: row[0] is thead DBRow tr; for (int c = 0; c < col; ++c) { tr.push_back(results[r*col + c]); } table->push_back(tr); } sqlite3_free_table(results); return SQL_OK; } int db_exec_cb(HDB hdb, const char* sql, db_callback cb, void* userdata) { char *errmsg; //printf("sql: %s\n", sql); if (sqlite3_exec(hdb, sql, cb, userdata, &errmsg) != SQLITE_OK) { fprintf(stderr, "sqlite3_exec sql: %s err: %s\n", sql, errmsg); return SQL_ERR; } return SQL_OK; } ///////////////////////////////////////////////////////////////////////////////// // select count(*) from sqlite_master where type='table' and name='$table_name'; int dbtable_exist(HDB hdb, const char* table_name) { std::string where; where = "type='table' and name="; where += '\''; where += table_name; where += '\''; return dbtable_count(hdb, "sqlite_master", where.c_str()); } int dbtable_count(HDB hdb, const char* table_name, const char* where) { std::string sql; sql_count(sql, table_name, where); DBTable table; if (db_exec_with_result(hdb, sql.c_str(), &table) == SQL_OK) { return atoi(table[1][0].c_str()); } return 0; } int dbtable_select(HDB hdb, const char* table_name, const char* keys, const char* where, DBTable* table, const KeyVal* options) { std::string sql; sql_select(sql, table_name, keys, where, options); return db_exec_with_result(hdb, sql.c_str(), table); } int dbtable_insert(HDB hdb, const char* table_name, const char* keys, const char* values) { std::string sql; sql_insert(sql, table_name, keys, values); return db_exec(hdb, sql.c_str()); } int dbtable_replace(HDB hdb, const char* table_name, const char* keys, const char* values) { std::string sql; sql_replace(sql, table_name, keys, values); return db_exec(hdb, sql.c_str()); } int dbtable_update(HDB hdb, const char* table_name, const char* set, const char* where) { std::string sql; sql_update(sql, table_name, set, where); return db_exec(hdb, sql.c_str()); } int dbtable_delete(HDB hdb, const char* table_name, const char* where) { std::string sql; sql_delete(sql, table_name, where); return db_exec(hdb, sql.c_str()); } //////////////////////////////////////////////////////////////////////////////// int dbtable_get_index(const char* key, const DBTable& table) { if (table.size() == 0) { return -1; } const DBRow& thead = table[0]; for (size_t i = 0; i < thead.size(); ++i) { if (strcmp(key, thead[i].c_str()) == 0) { return i; } } return -1; }
daacc61f39275f8a55dd576c8d9f4e7a03e44e8a
b7139acb3448d39dbeb8597c7f65d4a378ddc330
/2017/q14_7.cpp
321b6ee9d326e0ac59b68182c8c4a836e269e497
[]
no_license
linsallyzhao/earlyobjects-exercises
3f88e2d48674fdd431ecfd7e57c0fe2fa30c93f8
746a2489eb135fee8c04c74e3e763b07853e6796
refs/heads/master
2021-08-24T13:27:43.256219
2017-12-10T00:38:56
2017-12-10T00:38:56
113,711,078
1
0
null
null
null
null
UTF-8
C++
false
false
444
cpp
q14_7.cpp
#include <string> #include <iostream> using namespace std; void reverPrint (string &str, int size); int main() { string test; cout << "Please enter a string: \n"; getline(cin, test); reverPrint (test, test.length()); return 0; } void reverPrint (string &str, int size) { if (size == 1){ cout << str[0]; } else if (size > 1){ cout << str[size - 1]; reverPrint(str, size - 1); } }
757fc123f0c2aa470236fa023f1f4b2728dc4834
cb80a8562d90eb969272a7ff2cf52c1fa7aeb084
/inletTest5/0.011/U
6a779793715bc06f76bc8a9bff279e9287392a76
[]
no_license
mahoep/inletCFD
eb516145fad17408f018f51e32aa0604871eaa95
0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2
refs/heads/main
2023-08-30T22:07:41.314690
2021-10-14T19:23:51
2021-10-14T19:23:51
314,657,843
0
0
null
null
null
null
UTF-8
C++
false
false
742,058
U
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "0.011"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 31566 ( (-89.7429 0.543256 -2.29722e-19) (-90.0908 0.175937 0) (-89.313 0.172839 0) (-88.9637 0.54041 -7.1686e-19) (-88.2873 0.913038 1.2038e-18) (-87.0851 1.31043 -2.10143e-19) (-85.4112 1.74299 0) (-83.2749 2.18126 1.02036e-19) (-80.6982 2.63086 1.06017e-19) (-77.7924 3.06564 -2.10406e-19) (-74.5586 3.4943 -3.35124e-21) (-71.0669 3.90952 0) (-67.3258 4.31481 0) (-63.3711 4.70786 0) (-59.2248 5.08785 0) (-54.9184 5.45302 -2.63932e-23) (-50.4817 5.80281 0) (-45.945 6.13828 0) (-41.3382 6.45983 0) (-36.6916 6.76847 0) (-32.0345 7.06687 0) (-27.395 7.35744 0) (-22.8003 7.64235 0) (-18.275 7.92325 0) (-13.8373 8.20037 0) (-9.48892 8.47328 0) (-5.17443 8.74234 0) (-0.542847 9.08081 0) (3.37561 9.78083 0) (5.73936 9.26287 0) (8.64676 7.90963 0) (11.2124 6.24063 0) (13.9633 4.37943 0) (16.5273 3.13216 0) (18.7924 2.28695 0) (20.9986 1.5964 0) (22.8101 1.27394 0) (24.2961 1.02518 0) (25.5101 0.831312 0) (26.5066 0.673429 0) (27.3219 0.542447 0) (27.9868 0.433492 0) (28.5268 0.342496 0) (28.9633 0.266352 0) (29.3153 0.202364 0) (29.6011 0.147207 0) (29.8377 0.0956636 0) (30.0279 0.0479564 0) (30.1571 0.0140931 0) (30.2152 -2.73309e-05 0) (30.2291 -0.00184421 0) (30.2338 -0.00127171 0) (30.2349 -0.000860707 0) (30.2187 -0.00306507 0) (30.1644 -0.0116698 0) (30.0809 -0.0234954 0) (29.9865 -0.0339577 0) (29.8892 -0.0418741 0) (29.7911 -0.0478807 0) (29.6922 -0.0523283 5.32106e-23) (29.5922 -0.0554855 0) (29.4911 -0.0575758 0) (29.3896 -0.0587708 0) (29.2883 -0.05922 0) (29.1879 -0.0590599 0) (29.0889 -0.0584117 0) (28.9919 -0.0573779 0) (28.8971 -0.0560412 0) (28.8049 -0.0544638 0) (28.7155 -0.0526894 0) (28.6291 -0.0507481 0) (28.546 -0.0486636 0) (28.4663 -0.0464593 0) (28.3901 -0.0441605 0) (28.3176 -0.0417944 0) (28.2488 -0.0393864 0) (28.1837 -0.0369557 0) (28.1222 -0.0345169 0) (28.0644 -0.0320852 0) (28.0102 -0.0296784 0) (27.9595 -0.0273124 0) (27.9122 -0.024997 0) (27.8681 -0.0227354 5.26096e-23) (27.827 -0.0205309 0) (27.7888 -0.0183926 0) (27.7531 -0.016337 0) (27.7193 -0.0143782 0) (27.6865 -0.0125056 0) (27.6541 -0.0106657 0) (27.6229 -0.00878961 -5.14834e-23) (27.5964 -0.00689345 -1.01613e-22) (27.579 -0.00526342 -3.94156e-22) (27.5719 -0.00418021 -7.34311e-22) (27.5726 -0.00358042 0) (27.5773 -0.00325815 0) (27.5834 -0.00307994 0) (27.5899 -0.00296335 0) (27.5959 -0.00291374 -2.66453e-20) (27.6009 -0.00294131 0) (27.6039 -0.00343149 0) (27.6038 -0.0049126 0) (27.5944 -0.00509477 0) (27.58 -0.003344 0) (27.5532 -0.00899572 0) (27.499 -0.0181854 -2.22968e-19) (27.4289 -0.0313306 2.70445e-19) (27.3363 -0.0474872 0) (27.199 -0.0620042 1.90269e-19) (27.0491 -0.0706568 -2.29882e-19) (26.4395 -0.090868 0) (26.0074 -0.0882478 0) (27.0387 -0.118598 0) (27.2349 -0.105401 -1.81761e-18) (27.2568 -0.127669 3.47835e-19) (26.9973 -0.139282 -1.06476e-19) (25.5283 -0.0952249 6.50857e-20) (25.0181 -0.094007 -2.78567e-19) (26.935 -0.139283 9.33508e-20) (27.2774 -0.134097 -3.12261e-19) (27.2858 -0.135557 3.02625e-19) (26.8551 -0.133091 2.2929e-20) (24.5188 -0.0880532 2.24824e-19) (24.0271 -0.0811502 -1.29518e-20) (26.7603 -0.13012 -2.15635e-20) (27.2764 -0.13815 -1.80529e-20) (27.2512 -0.137275 1.80451e-20) (26.6349 -0.123893 0) (23.5584 -0.0743084 1.30246e-20) (23.1095 -0.0699732 0) (26.5007 -0.119964 -1.34722e-21) (27.2155 -0.136768 0) (27.17 -0.133239 0) (26.3447 -0.114322 1.34732e-21) (22.6603 -0.067237 0) (22.226 -0.065028 -8.15814e-22) (26.2074 -0.112291 1.34311e-21) (27.1195 -0.131841 -1.12597e-21) (27.0635 -0.129889 1.13106e-21) (26.0652 -0.108502 -1.34489e-21) (21.8146 -0.0609237 4.08526e-22) (21.4298 -0.0562376 6.58931e-27) (25.9214 -0.103272 -3.36303e-22) (27.004 -0.126457 0) (26.9392 -0.122948 1.4486e-19) (25.7735 -0.0985082 3.36377e-22) (21.0644 -0.0517754 4.08681e-22) (20.7252 -0.0472242 0) (25.6257 -0.0929981 0) (26.8705 -0.118754 0) (26.7973 -0.114847 -1.44883e-19) (25.4761 -0.0881739 0) (20.4057 -0.0431073 0) (20.1112 -0.0390608 0) (25.3288 -0.0827954 0) (26.7215 -0.110418 0) (26.6423 -0.106637 -1.44895e-19) (25.1808 -0.0784827 0) (19.8349 -0.0356754 0) (19.5793 -0.0324023 0) (25.0362 -0.0737301 0) (26.5616 -0.102482 0) (26.4778 -0.0992437 0) (24.8911 -0.0702646 0) (19.3383 -0.0298511 0) (19.1129 -0.0273854 0) (24.7497 -0.0663663 0) (26.3934 -0.0956959 -1.44906e-19) (26.3063 -0.0931784 0) (24.6075 -0.0638285 0) (18.8983 -0.0256081 0) (18.6948 -0.0238695 0) (24.4688 -0.060812 0) (26.2191 -0.0903413 0) (26.1295 -0.0886712 0) (24.3291 -0.0592161 0) (18.4983 -0.0227735 0) (18.309 -0.0215813 0) (24.1922 -0.0569755 0) (26.0401 -0.0865215 -1.44911e-19) (25.9483 -0.0856155 0) (24.0536 -0.0561711 0) (18.1234 -0.0210059 0) (17.9422 -0.0202215 0) (23.9172 -0.0545711 0) (25.8569 -0.0840746 0) (25.7633 -0.0838006 0) (23.7788 -0.054391 0) (17.7623 -0.0200221 0) (17.5851 -0.0194838 0) (23.6423 -0.0531965 0) (25.6704 -0.0826381 -1.44915e-19) (25.5755 -0.0827482 0) (23.5035 -0.053391 0) (17.4077 -0.01948 0) (17.2323 -0.019023 0) (23.3666 -0.0523492 0) (25.4814 -0.0817033 0) (25.3856 -0.0819329 0) (23.2274 -0.0526753 0) (17.0562 -0.0190702 0) (16.8823 -0.0185834 0) (23.0904 -0.0515801 0) (25.2909 -0.0808042 -1.44923e-19) (25.1945 -0.0809926 0) (22.9511 -0.0518867 0) (16.7081 -0.0186049 0) (16.5367 -0.017999 0) (22.8144 -0.050577 0) (25.0995 -0.0796347 1.44928e-19) (25.003 -0.0797541 0) (22.6757 -0.0508495 0) (16.3656 -0.018014 0) (16.198 -0.0173372 0) (22.54 -0.0493394 0) (24.9082 -0.078139 0) (24.8119 -0.0781777 0) (22.4025 -0.0495403 0) (16.031 -0.0173119 0) (15.8682 -0.0166067 0) (22.2684 -0.0479122 0) (24.7176 -0.0764084 0) (24.622 -0.0764329 0) (22.1325 -0.0481206 0) (15.7057 -0.0166327 0) (15.5475 -0.0159631 0) (22.0002 -0.0464658 0) (24.5285 -0.0745904 0) (24.434 -0.0746245 -1.44935e-19) (21.8663 -0.0467699 0) (15.3892 -0.0162004 0) (15.2344 -0.015872 0) (21.7365 -0.0451981 0) (24.3422 -0.0726496 0) (24.2502 -0.0723752 0) (21.6063 -0.0454921 0) (15.0776 -0.0165644 0) (14.9237 -0.0161945 0) (21.4825 -0.0435108 0) (24.162 -0.069663 0) (24.0736 -0.0685421 0) (21.3594 -0.0431619 0) (14.7701 -0.0162725 0) (14.6234 -0.0151134 0) (21.2428 -0.0404044 0) (23.9886 -0.0650645 0) (23.9028 -0.0636663 0) (21.1266 -0.0396422 0) (14.4801 -0.014688 0) (14.3454 -0.0132091 0) (21.0161 -0.0366294 0) (23.8199 -0.0601452 0) (23.7355 -0.059032 -1.44918e-19) (20.9052 -0.0359814 0) (14.2146 -0.0127734 0) (14.092 -0.0113823 0) (20.7993 -0.0330991 0) (23.6537 -0.0558102 0) (23.57 -0.0550812 0) (20.6926 -0.0327345 0) (13.9726 -0.0111094 0) (13.8602 -0.0098747 0) (20.5906 -0.0300117 0) (23.4888 -0.0520889 0) (23.4055 -0.05158 0) (20.4875 -0.0299041 0) (13.7503 -0.00976488 0) (13.6465 -0.00867281 0) (20.3892 -0.0273114 0) (23.3249 -0.0486721 0) (23.2424 -0.0482881 0) (20.29 -0.0274561 0) (13.5446 -0.00870391 0) (13.4479 -0.00772062 0) (20.1957 -0.0249948 0) (23.163 -0.0454005 0) (23.0818 -0.0451124 -1.44873e-19) (20.1005 -0.0253255 0) (13.3526 -0.00784109 0) (13.2619 -0.00692228 0) (20.0101 -0.0229681 0) (23.004 -0.0423369 0) (22.9252 -0.0419608 0) (19.9195 -0.0232615 0) (13.1731 -0.00701346 0) (13.0886 -0.00618668 0) (19.8334 -0.0212276 0) (22.8499 -0.0396577 0) (22.7726 -0.0392937 0) (19.7464 -0.0214828 0) (13.0055 -0.00624075 0) (12.9266 -0.00544072 0) (19.6637 -0.0196392 0) (22.6994 -0.0373283 0) (22.6233 -0.0374134 0) (19.58 -0.0201292 0) (12.8494 -0.00553872 0) (12.7762 -0.00466874 0) (19.5003 -0.0180544 0) (22.5517 -0.035268 0) (22.4764 -0.0355744 0) (19.4192 -0.0186938 0) (12.7044 -0.0048113 0) (12.6364 -0.00400502 0) (19.342 -0.0167436 0) (22.4058 -0.0336138 0) (22.3314 -0.0341584 0) (19.2638 -0.0175366 0) (12.57 -0.00422715 0) (12.5064 -0.00352745 0) (19.1888 -0.015804 0) (22.2616 -0.032391 0) (22.1874 -0.0324457 0) (19.1124 -0.0162677 0) (12.4437 -0.00369146 0) (12.3838 -0.00311322 0) (19.0397 -0.0148431 0) (22.1187 -0.0309182 0) (22.046 -0.0309711 0) (18.9666 -0.0153412 0) (12.3255 -0.00330182 0) (12.2703 -0.00273601 0) (18.8981 -0.0138012 0) (21.9808 -0.0291514 0) (21.9105 -0.0297153 0) (18.8285 -0.0148019 0) (12.2156 -0.00311473 0) (12.1628 -0.0025172 0) (18.7628 -0.0130595 0) (21.8475 -0.0276144 0) (21.7795 -0.0287475 0) (18.6961 -0.0144267 0) (12.1105 -0.00303082 0) (12.0592 -0.00247411 0) (18.6326 -0.0127779 0) (21.7186 -0.0267313 0) (21.6522 -0.0282121 0) (18.5676 -0.0143511 0) (12.0077 -0.00306435 0) (11.9568 -0.00257582 0) (18.5056 -0.012884 0) (21.5928 -0.0264869 0) (21.528 -0.0282824 0) (18.4419 -0.0146304 0) (11.9055 -0.00322964 0) (11.8547 -0.00277094 0) (18.3812 -0.013239 0) (21.4703 -0.0267104 0) (21.4073 -0.0285486 0) (18.3189 -0.0149907 0) (11.8036 -0.00343392 0) (11.7529 -0.00297959 0) (18.2594 -0.0136184 0) (21.3513 -0.0270179 0) (21.29 -0.0289542 0) (18.1982 -0.0154068 0) (11.7017 -0.00366066 0) (11.6508 -0.00321319 0) (18.1396 -0.0140739 0) (21.2354 -0.0275079 0) (21.1756 -0.0295309 0) (18.0792 -0.0158867 0) (11.5993 -0.00389553 0) (11.5481 -0.00344359 0) (18.0213 -0.0145941 0) (21.122 -0.0281742 0) (21.0635 -0.0303508 0) (17.9614 -0.0164613 0) (11.4962 -0.00414134 0) (11.4447 -0.0036856 0) (17.9039 -0.0152095 0) (21.0107 -0.0290895 0) (20.9533 -0.0313793 0) (17.8442 -0.0171005 0) (11.3922 -0.00439343 0) (11.3406 -0.00387198 0) (17.7869 -0.0157992 0) (20.9011 -0.0301148 0) (20.8447 -0.0324359 0) (17.7276 -0.0176358 0) (11.2886 -0.00454772 0) (11.2379 -0.00398891 0) (17.6709 -0.0162854 0) (20.7929 -0.0311548 0) (20.7377 -0.0334993 0) (17.6124 -0.018068 0) (11.187 -0.00466745 0) (11.1378 -0.00410224 0) (17.5566 -0.0167116 0) (20.6864 -0.0322169 0) (20.6325 -0.0346061 0) (17.4991 -0.0184875 0) (11.0884 -0.00480557 0) (11.0406 -0.00422774 0) (17.4442 -0.0171037 0) (20.5813 -0.0332584 0) (20.5286 -0.0356563 0) (17.3874 -0.0188934 0) (10.9924 -0.00495822 0) (10.9454 -0.00438242 0) (17.333 -0.0174632 0) (20.4773 -0.0342811 0) (20.4249 -0.0366593 0) (17.2762 -0.0193459 0) (10.8973 -0.00516562 0) (10.8496 -0.00458998 0) (17.2211 -0.017959 0) (20.3732 -0.0351768 0) (20.3199 -0.037525 0) (17.1629 -0.0198662 0) (10.7998 -0.00539905 0) (10.7498 -0.00480892 0) (17.1061 -0.0184461 0) (20.267 -0.0358779 0) (20.212 -0.0381389 0) (17.0457 -0.020321 0) (10.6971 -0.00561649 0) (10.644 -0.00503711 0) (16.9865 -0.0188922 0) (20.1573 -0.0364343 0) (20.1004 -0.0387037 0) (16.9235 -0.0208107 0) (10.5877 -0.00589064 0) (10.5305 -0.00530083 0) (16.8617 -0.019335 0) (20.0438 -0.0369061 0) (19.9851 -0.0391912 0) (16.796 -0.0212962 0) (10.4704 -0.00617597 0) (10.4096 -0.00558845 0) (16.7317 -0.0197939 0) (19.9268 -0.0373253 0) (19.8666 -0.0396417 0) (16.6637 -0.0218141 0) (10.3455 -0.00651552 0) (10.2807 -0.00589916 0) (16.5972 -0.0202502 0) (19.8069 -0.0377014 0) (19.7454 -0.0400018 0) (16.5272 -0.0222493 0) (10.2131 -0.00679262 0) (10.1454 -0.00606769 0) (16.459 -0.0205585 0) (19.6848 -0.0379971 0) (19.6222 -0.0403393 0) (16.3874 -0.0225409 0) (10.0752 -0.00692638 0) (10.0052 -0.00611098 0) (16.3175 -0.0207191 0) (19.5603 -0.0383501 0) (19.4963 -0.0407837 0) (16.2438 -0.0226823 0) (9.93328 -0.0069236 0) (9.86212 -0.0060202 0) (16.1719 -0.0206643 0) (19.4326 -0.0388184 0) (19.3666 -0.0413591 0) (16.0963 -0.0226188 0) (9.78983 -0.00676334 0) (9.71883 -0.00578829 0) (16.0224 -0.0204166 0) (19.3006 -0.0394206 0) (19.2322 -0.0420324 0) (15.9449 -0.022381 0) (9.64734 -0.00642576 0) (9.57784 -0.00533359 0) (15.869 -0.0199974 0) (19.1636 -0.0399774 0) (19.0925 -0.0424728 0) (15.7899 -0.021953 0) (9.50887 -0.00584194 0) (9.44264 -0.00466058 0) (15.7123 -0.0194711 0) (19.0214 -0.0402306 0) (18.9482 -0.0425419 0) (15.6322 -0.0214921 0) (9.37729 -0.00519848 0) (9.31479 -0.00407719 0) (15.554 -0.0188639 0) (18.8755 -0.039914 0) (18.8012 -0.041812 0) (15.475 -0.020776 0) (9.25347 -0.00470294 0) (9.19554 -0.00362136 0) (15.3993 -0.0179943 0) (18.728 -0.0386568 0) (18.6541 -0.0403247 0) (15.324 -0.0199882 0) (9.13913 -0.00426956 0) (9.08595 -0.00328421 0) (15.2526 -0.0173454 0) (18.5818 -0.0370375 0) (18.5092 -0.0387718 0) (15.1816 -0.0194967 0) (9.03368 -0.00393855 0) (8.98391 -0.00306332 0) (15.1141 -0.0171231 0) (18.4382 -0.03566 0) (18.3671 -0.0377474 0) (15.0463 -0.0194926 0) (8.93393 -0.00382196 0) (8.88539 -0.00301692 0) (14.9814 -0.0173923 0) (18.2974 -0.0348685 0) (18.2269 -0.0372461 0) (14.9153 -0.0198992 0) (8.83568 -0.0037794 0) (8.78688 -0.00301237 0) (14.8511 -0.0179328 0) (18.1573 -0.0346002 0) (18.0865 -0.0373161 0) (14.7849 -0.0206301 0) (8.73611 -0.00380719 0) (8.68546 -0.0031757 0) (14.72 -0.0188429 0) (18.0162 -0.0350189 0) (17.9442 -0.0382382 0) (14.6523 -0.0217763 0) (8.63219 -0.00401623 0) (8.57843 -0.00344033 0) (14.5853 -0.0200573 0) (17.8721 -0.0362713 0) (17.7976 -0.0397438 0) (14.5147 -0.0230026 0) (8.52152 -0.00426801 0) (8.46407 -0.00363121 0) (14.4443 -0.021183 0) (17.7225 -0.0378646 0) (17.6445 -0.0413187 0) (14.3701 -0.0240201 0) (8.40375 -0.00440282 0) (8.34303 -0.00371547 0) (14.296 -0.0221196 0) (17.5655 -0.0394252 0) (17.4833 -0.0428002 0) (14.218 -0.024891 0) (8.27958 -0.00447502 0) (8.21597 -0.0037431 0) (14.14 -0.022923 0) (17.3999 -0.0408138 0) (17.313 -0.0440983 0) (14.0582 -0.0256461 0) (8.1498 -0.00445181 0) (8.08338 -0.00368737 0) (13.9764 -0.0236289 0) (17.2249 -0.0419034 0) (17.1334 -0.0450537 0) (13.8909 -0.0263843 0) (8.01448 -0.00436927 0) (7.94531 -0.0035361 0) (13.8055 -0.0242964 0) (17.0406 -0.042708 0) (16.9446 -0.0456211 0) (13.7167 -0.0269643 0) (7.87395 -0.00413413 0) (7.803 -0.00336633 0) (13.6283 -0.0249354 0) (16.8478 -0.0431734 0) (16.7482 -0.0458687 0) (13.5371 -0.027473 0) (7.73034 -0.00384988 0) (7.6579 -0.00303513 0) (13.4462 -0.0254519 0) (16.6476 -0.0434617 0) (16.5446 -0.0460305 0) (13.3525 -0.0279146 0) (7.58343 -0.00362425 0) (7.50885 -0.00291261 0) (13.2589 -0.0259309 0) (16.4407 -0.0435701 0) (16.3342 -0.045938 0) (13.1624 -0.0283346 0) (7.43159 -0.00341122 0) (7.3553 -0.00257541 0) (13.0667 -0.0260924 0) (16.2271 -0.0433193 0) (16.1181 -0.0454216 0) (12.9691 -0.028295 0) (7.27826 -0.00294792 0) (7.20339 -0.00216862 0) (12.873 -0.0259656 0) (16.0089 -0.0426587 0) (15.8987 -0.0443195 0) (12.7762 -0.027919 0) (7.12862 -0.00246282 0) (7.05674 -0.00163498 0) (12.6825 -0.0255117 0) (15.7897 -0.0416561 0) (15.6807 -0.0425673 0) (12.5885 -0.0270722 0) (6.98547 -0.00196518 0) (6.91676 -0.00128734 0) (12.497 -0.0250983 0) (15.5721 -0.040078 0) (15.4618 -0.0401998 0) (12.4042 -0.026252 0) (6.84787 -0.00134204 0) (6.78369 -0.000482354 0) (12.3164 -0.0234263 0) (15.3547 -0.0364144 0) (15.2498 -0.0363751 0) (12.231 -0.0243068 0) (6.72248 -0.000462215 0) (6.66652 0.000181467 0) (12.1518 -0.0216175 0) (15.1499 -0.0323041 0) (15.0541 -0.0326785 0) (12.0767 -0.022884 0) (6.61481 2.05355e-05 0) (6.56979 0.00105537 0) (12.0092 -0.0194931 0) (14.9643 -0.0277638 0) (14.8782 -0.0274726 0) (11.9452 -0.0201845 0) (6.52881 0.00108848 0) (6.49019 0.00203263 0) (11.8848 -0.0167505 0) (14.7949 -0.0221286 0) (14.7115 -0.0226111 0) (11.8234 -0.0179653 0) (6.45116 0.00195053 0) (6.42194 0.00258097 0) (11.7735 -0.0156082 0) (14.6378 -0.0181633 0) (14.5722 -0.0167216 0) (11.7301 -0.0155775 0) (6.40001 0.00308748 0) (6.38372 0.00415147 0) (11.6947 -0.0122385 0) (14.5141 -0.0108359 0) (14.4577 -0.0096173 0) (11.66 -0.0125469 0) (6.36917 0.00443158 0) (6.36057 0.00539422 0) (11.6334 -0.00872777 0) (14.4122 -0.00398281 0) (14.365 -0.00318834 0) (11.6095 -0.0089855 0) (6.35609 0.00574664 0) (6.36087 0.00649558 0) (11.5947 -0.00498342 0) (14.3347 0.00218749 0) (14.2964 0.00319589 0) (11.5819 -0.00506469 0) (6.36703 0.00645732 0) (6.38205 0.00678534 0) (11.58 -0.000539822 0) (14.2786 0.00888897 0) (14.2503 0.00925673 0) (11.5812 -0.000845634 0) (6.40015 0.00653037 0) (6.42695 0.00661334 0) (11.5941 0.00323833 0) (14.247 0.0143295 0) (14.2301 0.014505 0) (11.6091 0.00256151 0) (6.45567 0.00639742 0) (6.49318 0.00659885 0) (11.6366 0.00682207 0) (14.2436 0.0198547 0) (14.2398 0.0196374 0) (11.6654 0.00611674 0) (6.53346 0.00645697 0) (6.58161 0.00655007 0) (11.7057 0.0100618 0) (14.2688 0.0243385 0) (14.2766 0.0247296 0) (11.7467 0.00955036 0) (6.63184 0.0064583 0) (6.68761 0.00657415 0) (11.7983 0.0134782 0) (14.3198 0.0296625 0) (14.3376 0.0299262 0) (11.8486 0.0128261 0) (6.74411 0.00649605 0) (6.8083 0.00635834 0) (11.9117 0.0158891 0) (14.3945 0.0331466 0) (14.43 0.0349476 0) (11.9778 0.0160618 0) (6.87617 0.00630595 0) (6.95102 0.00666287 0) (12.0546 0.0197038 0) (14.5024 0.0387834 0) (14.5502 0.0403761 0) (12.131 0.0197608 0) (7.02719 0.00647323 0) (7.10692 0.0068327 0) (12.2163 0.0227105 0) (14.6323 0.0438343 0) (14.6899 0.0466663 0) (12.3008 0.0239328 0) (7.18874 0.0071282 0) (7.26998 0.0075747 0) (12.3909 0.0272379 0) (14.7786 0.0515937 0) (14.8459 0.0514899 0) (12.4822 0.0269677 0) (7.35528 0.00761083 0) (7.44783 0.00731094 0) (12.5837 0.0276739 0) (14.9465 0.0522353 0) (15.0223 0.0542969 0) (12.6828 0.0285172 0) (7.53846 0.0071114 0) (7.63258 0.00797377 0) (12.7904 0.0321416 0) (15.1316 0.0606794 0) (15.2245 0.0598724 1.44062e-19) (12.9035 0.0322994 0) (7.73388 0.0079975 0) (7.83161 0.00712849 0) (13.0183 0.0322769 0) (15.3424 0.0622949 0) (15.4279 0.0661282 0) (13.1225 0.0350319 0) (7.9208 0.00822418 0) (7.99598 0.00903705 0) (13.2178 0.0399768 0) (15.5308 0.0761093 0) (15.619 0.0589555 0) (13.3196 0.0317276 0) (8.07767 0.00690197 0) (8.18216 0.00255207 0) (13.4482 0.0223823 0) (15.7533 0.0468727 1.44002e-19) (15.8663 0.0501201 0) (13.5761 0.0238249 0) (8.2838 0.00347847 0) (8.35204 0.0079411 0) (13.675 0.0359162 0) (15.9778 0.0648982 1.43982e-19) (16.0309 0.0538556 0) (13.7328 0.0282169 0) (8.37943 0.00511299 0) (8.45042 -0.00152569 0) (13.8327 0.0131025 0) (16.1426 0.0338366 1.43961e-19) (16.26 0.0329397 0) (13.9582 0.0149494 0) (8.54519 -6.52827e-05 0) (8.6113 0.000193263 0) (14.0584 0.0163124 0) (16.3767 0.0345059 1.44059e-19) (16.4337 0.0335439 0) (14.1173 0.0171068 0) (8.63662 0.00105108 0) (8.65668 -0.00169329 0) (14.1713 0.0109839 0) (16.5067 0.026487 1.44102e-19) (16.5895 0.0217044 0) (14.2539 0.00630577 0) (8.70674 -0.0036713 0) (8.72781 0.000386907 0) (14.31 0.013134 0) (16.6697 0.0263554 1.44118e-19) (16.6699 0.0183324 0) (14.2983 0.0106585 0) (8.68398 0.00114973 0) (8.6854 -0.00926582 0) (14.3295 -0.0128037 0) (16.7243 -0.00918961 1.44098e-19) (16.8111 -0.00883074 0) (14.4083 -0.00980189 0) (8.73844 -0.00655213 0) (8.7299 -0.00221153 0) (14.4283 -0.00082882 0) (16.8573 -0.00192447 0) (16.8341 -0.00888464 0) (14.3879 -0.00619257 0) (8.66705 -0.00385816 0) (8.60828 -0.00682124 0) (14.3492 -0.012534 0) (16.8178 -0.0157259 0) (16.821 -0.0323078 0) (14.3346 -0.0224939 0) (8.57702 -0.00916525 0) (8.54101 -0.00520314 0) (14.3135 -0.0159021 0) (16.8197 -0.0297427 0) (16.748 -0.0306431 0) (14.2156 -0.0162378 0) (8.42935 -0.00479992 0) (8.30022 -0.0119415 0) (14.0982 -0.0338885 0) (16.6567 -0.0563499 0) (16.6146 -0.0763321 0) (14.0338 -0.0465178 0) (8.22622 -0.0151624 0) (8.13269 -0.0136341 0) (13.9512 -0.0461513 0) (16.5557 -0.0804869 0) (16.4359 -0.0774337 0) (13.8026 -0.0422426 0) (7.9756 -0.0108547 0) (7.83438 -0.018574 0) (13.6662 -0.0592268 0) (16.3277 -0.0940331 0) (16.2281 -0.0961771 0) (13.5404 -0.057321 0) (7.7068 -0.0153642 0) (7.5492 -0.0126785 0) (13.3806 -0.0526827 0) (16.0966 -0.0966147 0) (15.9034 -0.109767 0) (13.1534 -0.0648759 0) (7.32118 -0.0179884 0) (7.10059 -0.0221842 0) (12.9285 -0.0763338 0) (15.7056 -0.126799 0) (15.5779 -0.138656 0) (12.7856 -0.0837204 0) (6.96965 -0.0229834 -2.61319e-20) (6.81142 -0.0131061 -2.3219e-24) (12.6203 -0.0691394 0) (15.4534 -0.126499 0) (15.1321 -0.108275 3.65221e-20) (12.2759 -0.0569572 -4.36936e-20) (6.47917 -0.00967566 2.65152e-20) (6.07247 -0.0184439 0) (11.8501 -0.08206 4.40785e-20) (14.7541 -0.146972 -3.67144e-20) (14.5068 -0.192206 3.86962e-19) (11.583 -0.116217 -9.43826e-20) (5.82961 -0.0330733 0) (5.70147 -0.0399961 0) (11.4145 -0.132275 9.68432e-20) (14.39 -0.224892 -8.12666e-20) (14.2549 -0.23397 9.11952e-20) (11.2254 -0.130395 -5.52199e-19) (5.4767 -0.0301852 -2.70261e-19) (5.28079 -0.0479125 2.01229e-19) (11.018 -0.160398 -9.00035e-19) (14.1256 -0.272426 3.83173e-19) (13.7208 -0.272883 -4.06291e-19) (10.5512 -0.154945 7.27866e-19) (4.68295 -0.0448672 -2.18121e-19) (16.3386 -0.450167 0) (17.0263 -0.628149 1.51926e-19) (17.0606 -0.810269 -6.7599e-19) (16.9831 -0.998333 -5.77368e-19) (16.6517 -1.18744 0) (15.742 -1.44936 -1.43964e-19) (15.1488 -1.61371 8.69501e-24) (13.9696 -1.881 -1.82028e-20) (13.1576 -2.06966 1.82315e-20) (11.779 -2.34549 0) (10.8159 -2.55309 4.58195e-21) (9.34171 -2.82175 -4.58685e-21) (8.22645 -3.02875 0) (6.65465 -3.28327 0) (5.37157 -3.49061 0) (3.70627 -3.73237 0) (2.26813 -3.97298 0) (0.423883 -4.13781 0) (-1.08175 -4.55134 -1.47589e-19) (-3.27467 -4.5227 0) (-5.51493 -4.50681 0) (-9.23496 -4.51381 0) (-12.5618 -4.55041 0) (-17.9233 -4.60133 0) (-22.3753 -4.69635 0) (-29.1799 -4.79661 0) (-34.4795 -4.95587 0) (-42.4913 -5.08844 0) (-48.4138 -5.32186 0) (-56.9412 -5.40098 0) (-62.7973 -5.94389 1.47833e-19) (-73.7264 -5.78688 -1.50249e-19) (-78.9047 -6.83654 2.08645e-20) (-92.0773 -5.54263 2.05249e-19) (-91.3178 -8.72308 -7.55258e-20) (-174.06 -5.79948 -1.52582e-19) (-306.71 -8.79683 3.17269e-19) (-328.597 -11.9694 -4.03499e-20) (-328.641 -11.344 0) (-328.965 -11.3679 6.08721e-18) (-329.047 -11.3635 -1.31131e-17) (-329.101 -11.3499 3.48547e-18) (-329.127 -11.327 0) (-329.101 -11.3076 0) (-328.959 -11.2875 -1.25248e-19) (-328.338 -11.2291 0) (-328.1 -11.2105 1.62643e-20) (-327.709 -11.1799 -1.61469e-20) (-327.388 -11.1344 0) (-326.288 -11.2324 1.26865e-19) (-326.396 -10.627 -2.6826e-19) (-304.974 -11.5872 2.62121e-19) (-224.249 -8.91589 -1.19472e-18) (-98.9803 -1.66318 7.39958e-19) (-47.3718 0.6981 -4.02725e-19) (-33.3411 -0.183579 0) (-16.7998 0.348295 7.20621e-20) (-16.0492 0.4531 -3.28999e-19) (-32.5937 0.00954096 -6.65292e-19) (-46.6649 1.19084 1.01329e-22) (-45.5161 2.15497 0) (-31.263 0.0637347 0) (-14.605 0.71974 0) (-12.5696 1.00377 0) (-29.5279 -0.277452 -1.8681e-19) (-44.5204 2.7642 0) (-43.8329 2.262 0) (-27.5768 0.0736196 1.80434e-19) (-10.6396 0.890034 0) (-8.12508 0.15359 0) (-25.6448 1.1012 1.68474e-19) (-49.9789 0.72058 2.35835e-23) (-58.8801 -0.422658 0) (-24.3566 2.12534 -2.08694e-20) (-6.2686 -0.3927 7.56545e-20) (-1.45306 0.834113 1.31382e-23) (-21.941 2.19241 0) (-71.2211 -2.07556 0) (-83.976 -4.144 0) (-33.382 -0.423926 0) (7.4254 0.613563 -4.97148e-20) (-0.405633 -0.860248 0) (-42.3746 -1.76466 0) (-93.2903 -4.90277 0) (-98.6275 -4.45499 0) (-47.5568 -1.9629 0) (-3.97163 -1.04809 0) (-13.8512 -1.40061 0) (-54.3377 -2.52253 8.14238e-20) (-103.921 -4.72289 0) (-109.037 -4.69132 0) (-60.9805 -2.49461 3.30368e-22) (-21.0782 -1.16992 0) (-29.0171 -1.13558 0) (-67.656 -2.44434 -8.11756e-20) (-113.904 -4.47462 0) (-118.494 -4.1612 0) (-74.0064 -2.3134 0) (-36.2637 -1.03209 0) (-42.9766 -0.936766 0) (-79.9668 -2.16312 0) (-122.747 -3.83999 0) (-126.799 -3.55403 0) (-85.5804 -2.0278 0) (-49.2326 -0.860451 0) (-55.0399 -0.782168 0) (-90.8446 -1.88519 0) (-130.59 -3.28363 0) (-134.109 -3.02141 0) (-95.667 -1.73117 0) (-60.2611 -0.698125 0) (-64.9985 -0.636596 0) (-100.05 -1.60713 0) (-137.293 -2.78947 0) (-140.43 -2.6356 0) (-104.375 -1.54919 0) (-69.6637 -0.608795 0) (-74.3826 -0.59435 0) (-108.755 -1.53811 0) (-143.677 -2.59343 0) (-146.899 -2.47739 0) (-113.008 -1.45127 0) (-78.8616 -0.544705 0) (-83.0146 -0.500558 0) (-116.979 -1.35742 0) (-149.909 -2.32417 0) (-152.798 -2.18823 0) (-120.758 -1.28227 0) (-86.899 -0.465179 0) (-90.5762 -0.433942 0) (-124.345 -1.21627 0) (-155.56 -2.07461 0) (-158.261 -1.97909 0) (-127.813 -1.16014 0) (-94.079 -0.406364 0) (-97.4345 -0.381091 0) (-131.152 -1.11359 7.94736e-20) (-160.885 -1.89389 0) (-163.451 -1.82305 0) (-134.383 -1.06742 -7.96761e-20) (-100.661 -0.360875 0) (-103.774 -0.344738 0) (-137.54 -1.02895 7.9098e-20) (-165.996 -1.76221 0) (-168.518 -1.71525 0) (-140.626 -1.00328 -7.93157e-20) (-106.802 -0.329508 0) (-109.764 -0.319463 0) (-143.655 -0.975577 0) (-171.029 -1.67856 0) (-173.576 -1.6546 0) (-146.67 -0.957513 0) (-112.676 -0.311944 0) (-115.566 -0.307876 0) (-149.661 -0.945248 0) (-176.134 -1.64053 0) (-178.763 -1.64598 0) (-152.672 -0.934549 0) (-118.452 -0.308619 0) (-121.359 -0.31322 0) (-155.716 -0.932525 0) (-181.443 -1.65665 0) (-184.227 -1.67928 0) (-158.813 -0.937319 0) (-124.307 -0.317649 0) (-127.321 -0.326382 0) (-161.985 -0.951171 0) (-187.097 -1.71129 0) (-190.107 -1.75355 0) (-165.259 -0.973742 0) (-130.425 -0.334367 0) (-133.654 -0.348368 0) (-168.665 -1.00809 0) (-193.273 -1.81406 0) (-196.635 -1.89666 0) (-172.241 -1.05053 0) (-137.04 -0.36302 0) (-140.637 -0.387206 0) (-176.03 -1.10983 0) (-200.232 -2.00286 0) (-204.121 -2.1392 0) (-180.088 -1.18283 0) (-144.494 -0.414372 0) (-148.704 -0.45783 0) (-184.489 -1.28408 0) (-208.371 -2.31588 0) (-213.072 -2.5482 0) (-189.298 -1.41172 0) (-153.354 -0.507769 0) (-158.62 -0.583647 0) (-194.73 -1.62517 0) (-218.312 -2.86809 0) (-224.275 -3.34299 6.41163e-20) (-200.97 -1.92329 0) (-164.852 -0.740726 0) (-171.991 -1.26513 -3.71665e-19) (-207.967 -2.77766 3.83402e-19) (-230.917 -4.27377 0) (-237.998 -5.75806 -5.93968e-22) (-215.507 -4.24312 -6.89966e-19) (-179.686 -2.25902 -4.60473e-20) (-186.938 -4.13093 -1.43062e-18) (-222.908 -6.73252 2.43587e-18) (-245.129 -7.95204 -1.07604e-18) (-251.742 -10.2916 -1.96232e-18) (-229.592 -9.18592 1.14231e-18) (-193.206 -6.01356 0) (-198.358 -8.2206 2.93919e-18) (-235.518 -11.8483 -2.33363e-18) (-257.808 -12.7923 0) (-263.116 -15.0901 0) (-240.484 -14.0378 0) (-202.156 -10.0727 0) (-205.369 -11.5916 -2.54786e-18) (-244.937 -15.7809 2.37267e-18) (-268.083 -17.1938 1.96014e-18) (-273.206 -19.2303 1.87459e-18) (-249.31 -17.5316 -2.33101e-18) (-208.654 -13.1361 3.606e-19) (-214.907 -16.5802 -6.14068e-18) (-256.642 -21.4385 4.13271e-18) (-281.087 -23.2579 0) (-268.418 -23.6146 2.16153e-17) (-247.443 -21.4487 0) (-215.787 -17.6186 4.7846e-19) (-222.907 -19.2137 -6.15803e-19) (-258.082 -23.421 1.09151e-18) (-277.987 -26.3981 -9.91619e-19) (-282.539 -27.5274 3.33814e-19) (-262.777 -24.7377 0) (-225.274 -20.3696 0) (-226.01 -21.2501 -2.23038e-19) (-265.57 -25.91 -9.11573e-20) (-285.34 -28.2448 -4.47245e-19) (-288.136 -29.5735 4.78879e-18) (-268.49 -27.8611 -5.52026e-18) (-227.54 -22.6482 7.12271e-18) (-230.271 -25.0879 -6.5082e-18) (-272.352 -31.2739 -5.29244e-18) (-291.926 -32.3036 4.2926e-18) (-296.628 -35.4378 1.36583e-20) (-276.907 -33.8278 5.14958e-18) (-233.742 -26.8967 -1.47136e-19) (-237.816 -28.7224 1.89469e-19) (-281.706 -36.1092 -5.21676e-18) (-301.597 -38.2897 -5.11258e-19) (-306.761 -41.4734 -3.27343e-18) (-286.691 -39.1918 -4.35664e-18) (-242.492 -31.4168 5.85638e-18) (-249.777 -36.6264 -1.0808e-17) (-294.706 -45.1502 -2.27511e-20) (-314.64 -47.4915 6.19152e-18) (-304.03 -48.0727 3.31991e-20) (-285.149 -45.3578 2.5037e-17) (-251.032 -38.5821 0) (-259.425 -41.3298 -1.00882e-17) (-295.018 -48.5462 7.54941e-18) (-311.695 -51.9625 0) (-316.633 -55.0146 -5.13318e-18) (-300.537 -51.5156 6.70916e-18) (-263.543 -43.6358 2.43078e-19) (-267.148 -46.5357 0) (-305.246 -55.2023 0) (-321.107 -57.9983 0) (-326.946 -62.3882 -3.68771e-18) (-311.31 -60.4536 1.03763e-17) (-272.506 -50.6503 -3.61903e-20) (-279.261 -54.9872 7.82917e-19) (-318.412 -65.7095 -1.07516e-17) (-333.756 -67.7451 -4.81745e-19) (-344.199 -77.6914 0) (-329.316 -76.4613 1.05433e-18) (-289.769 -64.5834 -1.17379e-17) (-294.248 -69.8154 -3.0594e-17) (-323.723 -79.4762 1.22806e-17) (-338.976 -81.1167 2.05677e-17) (-348.198 -90.7893 0) (-335.702 -88.5408 0) (-306.034 -78.0452 1.99374e-17) (-314.828 -85.7482 -1.51673e-17) (-344.258 -97.8302 1.17947e-17) (-355.449 -99.9947 4.67796e-18) (-364.937 -113.235 8.52532e-18) (-355.18 -113.588 -1.28332e-19) (-325.963 -99.6559 -1.26216e-17) (-330.403 -109.112 1.5971e-17) (-350.482 -121.515 -1.30296e-17) (-361.17 -121.359 1.95579e-17) (-366.66 -137.971 5.40119e-18) (-357.225 -142.298 8.11981e-18) (-337.253 -128.973 -1.88929e-17) (-334.368 -147.995 -3.00019e-17) (-352.766 -164.492 -3.42055e-18) (-363.099 -156.191 3.16812e-17) (-338.279 -166.169 0) (-327.241 -171.328 3.06087e-17) (-316.314 -157.093 -3.50741e-17) (-218.756 -145.479 -4.74618e-17) (-241.996 -165.681 3.5885e-17) (-300.703 -133.201 -4.09982e-18) (-138.969 -84.8539 3.28912e-18) (-80.009 -70.5937 3.18493e-17) (-61.6666 -21.5348 0) (-4.49013 118.6 -1.74747e-21) (-13.1215 108.004 -3.31358e-18) (-21.0244 94.0811 -1.17984e-18) (-18.3075 42.6079 -1.76862e-18) (-18.124 43.9982 0) (-23.8208 38.7679 2.5422e-17) (-38.5281 41.3511 -3.55306e-17) (-37.3967 43.4365 2.58391e-17) (-35.4708 42.3471 -4.01954e-17) (-40.3091 33.378 4.45191e-17) (-40.7303 34.2372 -5.26744e-17) (-38.5711 30.9567 7.20996e-17) (-38.3986 26.4813 0) (-42.8742 30.5283 1.54148e-18) (-43.4911 30.4214 -1.36953e-18) (-43.9894 27.8985 3.37083e-18) (-42.6613 27.1807 1.96365e-17) (-37.953 23.3501 -5.01355e-17) (-38.7714 22.4606 0) (-44.6878 26.185 9.43949e-19) (-45.4912 26.7116 -2.81299e-18) (-45.1953 25.014 0) (-43.6519 24.1316 2.41003e-17) (-36.7831 20.1231 -2.91535e-17) (-36.7501 19.4302 8.53416e-22) (-42.746 22.9052 2.6094e-17) (-44.7855 23.9602 -3.55222e-17) (-46.2467 23.7481 2.27881e-17) (-44.8152 22.9603 -3.72635e-18) (-37.8015 19.4293 0) (-35.9717 18.0016 -8.87835e-19) (-43.5151 21.7709 1.56746e-18) (-45.4157 22.7972 -6.9584e-18) (-44.7766 22.2173 -3.49372e-17) (-42.4904 21.0566 -1.27741e-18) (-36.0109 17.7263 -2.32736e-17) (-37.116 18.0932 -6.10007e-19) (-44.5357 21.5215 0) (-46.2514 22.3673 -2.09113e-17) (-45.2176 21.7441 -1.37162e-18) (-43.1707 20.6207 2.61246e-17) (-35.4262 16.9957 -2.79676e-17) (-35.4916 17.0126 7.34468e-19) (-42.0771 20.2046 -1.25997e-18) (-44.4622 21.4233 3.46384e-17) (-45.9744 21.7565 0) (-44.1106 20.9039 8.92945e-19) (-36.5623 17.5624 -5.97384e-19) (-34.8632 16.6042 8.60316e-19) (-42.7237 20.1972 -1.51241e-18) (-44.8759 21.3677 0) (-44.1054 21.2097 0) (-41.6759 19.9646 0) (-34.9673 16.7476 -2.91842e-18) (-36.05 17.3646 2.36531e-18) (-43.7001 20.7226 2.73913e-17) (-45.6409 21.5948 -2.1039e-17) (-44.4919 21.336 -6.66716e-18) (-42.2985 20.1339 3.72906e-17) (-34.4901 16.582 -2.7044e-17) (-34.5868 16.797 -4.60719e-17) (-41.2673 20.0059 3.42704e-17) (-43.7213 21.2971 1.04948e-18) (-45.3045 21.7921 1.30988e-18) (-43.2994 20.9367 3.50262e-18) (-35.6788 17.5571 -5.85947e-19) (-34.204 16.7888 -5.33498e-17) (-41.9877 20.3827 1.18392e-17) (-44.1999 21.5981 1.31831e-17) (-43.4389 21.5893 0) (-40.9828 20.265 3.4226e-17) (-34.364 17.0336 -4.57013e-17) (-35.4392 17.8294 -1.1626e-18) (-43.0264 21.2597 3.50946e-18) (-45.0414 22.1277 0) (-43.9183 21.9596 0) (-41.6882 20.6744 0) (-33.962 17.0433 8.4206e-19) (-33.9961 17.3966 3.60984e-18) (-40.6747 20.7411 0) (-43.1574 22.0885 3.3449e-17) (-44.8214 22.6133 4.36618e-17) (-42.8064 21.7213 -2.84925e-17) (-35.1847 18.1867 -2.12961e-17) (-33.7354 17.423 -5.46306e-17) (-41.4728 21.1499 3.44843e-17) (-43.6958 22.4674 -1.34483e-17) (-42.9473 22.6441 0) (-40.4967 21.2876 -4.36281e-17) (-33.8511 17.8684 4.72126e-17) (-35.1481 18.7136 0) (-42.6965 22.3266 3.2686e-17) (-44.6682 23.1938 -2.16819e-17) (-43.509 22.9654 -1.69709e-17) (-41.3328 21.6483 1.26429e-17) (-33.6668 17.8374 -2.88572e-17) (-33.7996 18.1747 -2.57077e-17) (-40.1217 21.5081 1.93073e-17) (-42.5757 22.9526 -1.42126e-17) (-44.1826 23.5777 1.20657e-17) (-42.1313 22.5602 3.63977e-18) (-35.4371 19.2635 -2.1921e-17) (-34.4632 19.0315 -4.01707e-17) (-40.8033 22.3274 3.20445e-18) (-43.1278 23.7033 2.12504e-17) (-44.5976 24.3247 2.45956e-17) (-42.597 23.3716 -2.95705e-17) (-35.3041 19.8152 -3.28555e-18) (-33.7356 19.1326 1.60076e-18) (-41.3081 23.0669 0) (-43.5498 24.3691 -1.00373e-17) (-42.9148 24.4437 6.06514e-17) (-40.5428 23.0388 -3.77535e-17) (-34.0676 19.4894 0) (-35.0456 20.2384 0) (-42.5338 24.0265 -2.86316e-17) (-44.5426 25.0208 2.34069e-17) (-43.5154 25.0373 -3.13384e-17) (-41.2671 23.7083 2.47667e-17) (-33.5875 19.6044 8.348e-19) (-33.9309 19.8925 -6.75585e-17) (-40.4974 23.6099 3.91428e-17) (-42.8706 25.0652 0) (-44.5216 25.6849 2.15239e-17) (-42.5728 24.7185 0) (-35.0381 20.75 -1.20403e-18) (-33.5769 19.9446 2.59328e-17) (-41.2228 24.1681 1.57072e-18) (-43.3752 25.5602 -1.25983e-17) (-42.5044 25.6047 1.18949e-18) (-40.1266 24.108 -1.38305e-18) (-33.805 20.371 8.08861e-19) (-35.584 21.504 -1.49358e-18) (-42.2456 25.1512 -2.08003e-17) (-44.2463 26.2584 3.28159e-17) (-43.2008 26.3588 -2.90147e-17) (-40.902 24.8614 3.61916e-17) (-34.6659 21.2957 -1.32409e-18) (-35.5817 22.2 3.41214e-18) (-42.7734 26.08 2.7417e-17) (-44.728 27.0565 -2.15307e-17) (-43.6809 27.0608 1.35323e-17) (-41.4631 25.6961 -1.5223e-18) (-34.0712 21.4179 -5.7099e-17) (-34.4402 21.575 2.55302e-17) (-40.5537 25.3284 1.36176e-18) (-42.8966 26.8844 -1.87454e-17) (-44.4712 27.5215 1.60658e-17) (-42.5037 26.3164 -1.92801e-17) (-35.9158 22.5447 1.45066e-18) (-34.7504 22.3595 -4.33094e-17) (-41.1064 26.222 3.42504e-17) (-43.3975 27.7432 -3.56431e-17) (-45.0522 28.5262 -1.50384e-17) (-43.0684 27.5608 -1.67413e-18) (-35.8447 23.4156 0) (-34.5919 22.5584 -2.68567e-17) (-41.9974 26.9973 1.46285e-18) (-44.1727 28.4298 0) (-43.509 28.3343 1.6843e-17) (-41.1428 26.6848 4.07175e-17) (-34.5695 22.6082 -4.95165e-17) (-35.5333 23.5799 2.44952e-18) (-43.1308 27.9807 2.9456e-17) (-45.1081 29.0729 -2.32174e-17) (-44.0573 29.0713 3.74598e-17) (-41.8505 27.616 8.10139e-22) (-34.1971 22.9101 -3.03726e-17) (-34.7467 23.246 8.45126e-19) (-40.9352 27.3076 -4.93158e-17) (-43.2745 28.9273 2.49282e-17) (-44.9621 29.5978 -4.37521e-18) (-43.0823 28.4443 2.36845e-17) (-36.5548 24.4377 -2.52824e-17) (-35.5412 23.9556 2.14718e-21) (-41.5388 27.8416 7.43023e-17) (-43.748 29.4557 -4.12472e-18) (-45.2414 30.2629 3.44211e-17) (-43.3302 29.0981 -3.23532e-17) (-36.9473 25.1637 -2.24781e-17) (-36.0543 25.0568 0) (-42.0535 29.0103 2.97625e-17) (-44.2427 30.4791 -5.59049e-17) (-45.8899 31.1688 -2.19482e-21) (-44.0831 30.1768 3.21883e-17) (-37.2261 25.9282 -3.62432e-17) (-35.6292 24.7733 -5.63309e-17) (-42.8389 29.4552 -3.03112e-18) (-44.8873 30.9409 0) (-44.0356 30.7254 1.87038e-17) (-41.7361 28.9754 -1.90068e-17) (-35.4202 24.6828 7.99813e-19) (-36.949 26.1599 4.58446e-17) (-43.6043 30.4571 -2.4527e-18) (-45.6075 31.6426 0) (-44.6794 31.7826 -2.92755e-17) (-42.4845 30.2426 3.54104e-17) (-36.4326 26.1011 -4.13963e-17) (-37.6469 27.091 3.73579e-17) (-44.5499 31.5401 0) (-46.3704 32.5322 0) (-45.4092 32.2198 -1.12266e-17) (-43.3838 30.6672 -1.56792e-18) (-36.1957 25.8526 0) (-35.9252 25.8085 5.66925e-17) (-42.1957 30.1858 1.40749e-18) (-44.5125 31.9894 -1.93229e-17) (-46.0836 32.8925 -2.16599e-18) (-44.1335 31.6941 -2.09012e-17) (-37.6121 27.3546 7.2413e-17) (-37.0851 27.1539 -5.0695e-17) (-42.8055 31.2067 4.48891e-17) (-44.9951 32.8325 -6.3598e-17) (-46.6505 33.5919 1.92891e-18) (-44.8192 32.4063 1.40189e-17) (-38.6645 28.3072 -1.84087e-17) (-37.5611 27.7638 -3.95617e-18) (-43.5653 31.9273 -3.41326e-17) (-45.6875 33.5 -1.77736e-18) (-47.1485 34.221 1.27952e-18) (-45.3808 33.1075 2.56093e-17) (-38.488 28.5959 3.45514e-18) (-36.7927 27.4906 -2.65654e-18) (-44.0495 32.51 1.53799e-18) (-46.0964 34.09 6.88231e-18) (-45.2837 33.9724 -1.8116e-17) (-43.0206 32.2634 -4.35951e-17) (-36.9529 27.7821 1.10545e-16) (-38.8071 29.1122 -5.15197e-17) (-45.1575 33.5203 2.05713e-17) (-47.0098 34.7526 -2.15224e-18) (-45.9028 34.5599 1.43614e-17) (-43.7355 32.8856 0) (-38.0089 28.6962 -4.52621e-18) (-39.4748 29.7433 4.76807e-17) (-45.6896 34.0161 -5.32924e-17) (-47.4901 35.3151 1.91851e-17) (-46.4603 35.293 0) (-44.2862 33.6068 -3.67889e-17) (-38.1518 29.2295 8.6925e-17) (-39.1527 30.325 3.43096e-17) (-46.154 35.0817 -2.93086e-17) (-47.9966 36.1534 0) (-47.1148 36.011 2.36223e-17) (-45.0841 34.5207 -2.20507e-17) (-37.8564 29.319 0) (-37.9698 29.2158 5.33233e-17) (-44.1485 33.9105 0) (-46.3675 35.668 -1.21714e-18) (-47.9869 36.4656 1.74587e-17) (-46.1654 35.1996 2.1019e-17) (-39.7116 30.579 2.39247e-17) (-38.8042 30.0252 1.51355e-18) (-44.6915 34.4314 0) (-46.8512 36.1792 0) (-48.3881 37.044 0) (-46.5623 35.7507 1.18085e-18) (-40.2397 31.255 0) (-39.1843 30.9294 -3.97678e-17) (-45.2295 35.4563 3.84994e-17) (-47.3937 37.0897 3.5851e-18) (-49.0717 37.9172 1.70105e-17) (-47.2955 36.8809 -3.51512e-18) (-40.4021 32.0024 -2.34759e-18) (-38.9872 30.6878 0) (-46.2394 36.0593 0) (-48.2111 37.611 -7.09256e-18) (-47.3939 37.2304 -6.20693e-18) (-45.1641 35.4299 0) (-38.9455 30.616 3.40451e-18) (-40.6937 31.9552 -2.91729e-17) (-47.2206 36.7235 -1.3477e-18) (-48.9916 38.036 4.46892e-18) (-47.7738 37.8098 -4.31211e-18) (-45.629 36.0559 1.29908e-18) (-39.6851 31.4769 0) (-41.3271 32.8947 1.50403e-18) (-47.5535 37.4671 1.97993e-17) (-49.3592 38.7095 -1.24063e-17) (-48.2849 38.5376 0) (-46.1737 36.873 0) (-40.4682 32.4076 -4.49513e-18) (-42.0714 33.5301 4.8123e-17) (-48.2016 38.0294 -1.86033e-17) (-49.9283 39.2882 1.54414e-17) (-48.9722 39.0753 0) (-46.8772 37.4005 -4.36329e-18) (-40.8586 32.8603 4.52915e-17) (-41.8154 33.802 -2.32845e-18) (-48.7153 38.7366 1.74184e-18) (-50.4462 39.8858 0) (-49.5003 39.6772 0) (-47.4949 38.0685 2.87124e-17) (-40.2969 32.6501 3.04159e-17) (-40.255 32.5371 5.06531e-17) (-46.4722 37.4706 -4.33204e-17) (-48.7184 39.3273 1.49654e-17) (-50.3965 40.2239 -1.12501e-17) (-48.5872 38.9276 1.74684e-17) (-42.0931 34.0433 -4.88614e-17) (-41.3257 33.5996 -9.73319e-17) (-47.1395 38.2029 8.48012e-17) (-49.2893 39.9719 -1.93119e-17) (-50.8776 40.811 1.66557e-17) (-49.123 39.5833 0) (-43.0336 34.9964 -3.05892e-18) (-42.0489 34.1917 0) (-47.7414 38.703 4.97417e-18) (-49.8043 40.4207 0) (-51.2286 41.1943 1.59798e-17) (-49.56 39.8967 3.37598e-17) (-43.5262 35.3351 -4.24956e-22) (-42.3851 34.8242 0) (-48.0434 39.3412 3.86442e-17) (-50.1106 41.017 -1.60197e-17) (-51.7051 41.8531 0) (-49.9768 40.6277 0) (-43.951 36.0743 -1.38364e-18) (-42.9335 35.4559 1.30686e-18) (-48.769 40.0114 0) (-50.8393 41.6637 0) (-52.3525 42.4729 1.28732e-18) (-50.6482 41.3744 0) (-43.9636 36.4232 0) (-42.5378 35.1257 -5.841e-17) (-49.5917 40.597 0) (-51.5392 42.1661 -2.79376e-18) (-50.7718 41.6529 -1.95579e-17) (-48.5624 39.7527 2.31211e-17) (-42.5098 34.8839 0) (-44.1528 36.3289 5.29485e-17) (-50.5193 41.2063 2.14279e-17) (-52.2771 42.5446 -1.98458e-17) (-51.147 42.306 3.60457e-17) (-49.0348 40.5613 -3.86994e-17) (-43.2318 35.8578 -1.55976e-18) (-44.9766 37.2801 -1.51342e-18) (-51.0359 41.9635 -3.74655e-18) (-52.7478 43.1677 -1.6468e-17) (-51.7107 42.7783 0) (-49.6856 41.0933 1.24957e-18) (-44.1124 36.5592 -4.67242e-17) (-45.6172 37.6968 -4.75127e-17) (-51.537 42.2804 3.84516e-17) (-53.1795 43.5539 0) (-52.1304 43.2927 0) (-50.0802 41.606 -4.34404e-17) (-44.522 37.0955 4.46411e-17) (-46.0017 38.2802 4.65672e-17) (-51.9741 42.8622 -4.9983e-17) (-53.6786 44.1128 3.19497e-17) (-52.8071 43.8679 -1.74648e-18) (-50.7444 42.2058 0) (-44.8247 37.528 2.62253e-18) (-45.8381 38.4395 7.1378e-17) (-52.5911 43.5011 -5.71341e-22) (-54.276 44.6543 -2.05789e-17) (-53.4648 44.4031 -1.12016e-17) (-51.4939 42.8221 0) (-44.5115 37.3357 0) (-44.5242 37.0715 -5.39142e-17) (-50.554 42.022 4.83716e-17) (-52.7453 43.896 0) (-54.3111 44.7867 1.77119e-17) (-52.5737 43.497 -4.66575e-17) (-46.2528 38.5544 1.02815e-16) (-45.4494 38.0171 3.12942e-18) (-51.1639 42.7311 -4.01157e-17) (-53.2515 44.4546 5.10073e-17) (-54.8284 45.2469 1.64468e-17) (-53.1746 44.0025 -5.86169e-17) (-47.1694 39.3014 9.38183e-17) (-46.1204 38.4866 -4.81841e-17) (-51.7294 43.0614 3.86601e-17) (-53.7738 44.8038 0) (-55.2018 45.6185 -1.98458e-18) (-53.5261 44.316 0) (-47.623 39.7131 0) (-46.5518 39.0751 0) (-52.0973 43.6105 0) (-54.1723 45.3264 1.98705e-18) (-55.7304 46.1673 1.87962e-18) (-54.0074 44.953 2.26635e-18) (-48.0742 40.3343 -1.38291e-18) (-46.9618 39.4498 -4.37175e-17) (-52.8421 44.1862 3.20188e-17) (-54.9036 45.8497 -2.981e-17) (-56.3842 46.6289 -2.05916e-17) (-54.7383 45.5018 7.05279e-22) (-48.0237 40.3568 4.06767e-17) (-46.5667 38.966 -3.17248e-17) (-53.6746 44.6178 2.53505e-17) (-55.5747 46.2567 -1.25932e-17) (-54.7854 45.8255 1.22316e-18) (-52.5457 43.9368 -4.63316e-17) (-46.4921 38.9216 1.04777e-16) (-48.3225 40.3827 5.47344e-17) (-54.6497 45.363 0) (-56.3965 46.6936 0) (-55.3235 46.3079 0) (-53.2064 44.5369 2.58867e-18) (-47.4542 39.7812 -3.13578e-18) (-49.1644 41.0814 3.03179e-18) (-55.1939 45.8286 -2.48627e-18) (-56.8951 47.1351 1.65498e-17) (-55.8401 46.7481 1.2347e-17) (-53.7291 44.9859 4.99381e-18) (-48.1806 40.4056 -4.84692e-17) (-49.7963 41.5897 4.65437e-17) (-55.6725 46.2053 -4.34424e-17) (-57.3585 47.5236 3.9926e-18) (-56.3559 47.1891 3.16859e-17) (-54.2376 45.4392 -3.86007e-17) (-48.6835 40.8803 -4.65633e-17) (-50.2219 42.1444 -8.86448e-17) (-56.176 46.797 3.65998e-17) (-57.9244 48.0226 0) (-57.1226 47.6613 0) (-55.025 45.9679 0) (-49.1265 41.2187 0) (-50.1966 42.1067 -3.84096e-17) (-56.955 47.2814 2.77683e-17) (-58.6139 48.433 -1.94023e-17) (-57.8265 48.0475 8.44657e-18) (-55.911 46.3985 9.32068e-22) (-48.765 40.7309 -2.82754e-17) (-48.5676 40.5714 8.55322e-19) (-54.7875 45.7426 -2.85221e-18) (-57.0481 47.6145 -1.96956e-17) (-58.7272 48.4633 1.78411e-17) (-56.9809 47.158 2.67977e-18) (-50.5274 42.0635 0) (-49.7383 41.4137 -4.68796e-17) (-55.5781 46.203 0) (-57.6927 47.9865 0) (-59.2297 48.8499 -1.66652e-17) (-57.5026 47.5793 -3.98315e-17) (-51.4226 42.7995 4.40546e-17) (-50.6003 42.1759 5.00557e-17) (-56.1289 46.7496 0) (-58.233 48.4593 -2.07017e-17) (-59.7977 49.1909 2.20239e-17) (-58.1423 47.9436 -1.92701e-17) (-52.2703 43.3455 0) (-51.0417 42.3384 0) (-56.7581 46.9751 0) (-58.8351 48.7103 -5.97474e-18) (-60.3205 49.5296 3.78456e-18) (-58.6153 48.2834 -3.65683e-17) (-52.4953 43.5496 4.4402e-17) (-51.4083 42.8187 2.63086e-18) (-57.3942 47.5361 -4.31489e-18) (-59.4924 49.2073 0) (-60.9854 49.9993 2.06155e-17) (-59.2953 48.8554 -2.25662e-17) (-52.4472 43.7271 -3.46064e-18) (-51.2226 42.6791 9.11894e-19) (-58.2766 48.2283 -2.83601e-17) (-60.2755 49.7634 2.25091e-17) (-59.628 49.2176 -1.9765e-17) (-57.3684 47.3857 6.87852e-17) (-51.2514 42.3057 8.58803e-19) (-53.1821 43.6668 5.0297e-17) (-59.6172 48.723 -2.02394e-17) (-61.3019 49.9808 2.2191e-18) (-60.2902 49.4718 -2.36137e-17) (-58.2099 47.7672 7.90047e-17) (-52.2825 42.9313 -4.87675e-17) (-54.0084 44.2135 1.98979e-21) (-60.1643 48.9981 -3.73533e-17) (-61.8028 50.2436 2.06899e-18) (-60.7982 49.7818 2.06261e-18) (-58.7433 48.0733 -4.46695e-17) (-53.0339 43.4834 4.80192e-17) (-54.6222 44.8338 9.32742e-17) (-60.5601 49.4247 -3.33274e-17) (-62.2534 50.6137 0) (-61.3483 50.2389 0) (-59.2912 48.6124 3.33448e-17) (-53.7458 44.097 -4.69831e-17) (-55.3146 45.2502 4.3991e-17) (-61.2386 49.8472 -1.35923e-17) (-62.91 51.0024 -1.49873e-17) (-62.1562 50.6605 2.79125e-17) (-60.1081 49.103 -3.43502e-17) (-54.4165 44.5529 0) (-55.5864 45.3712 -3.66229e-17) (-62.1107 50.3073 -2.74514e-17) (-63.7055 51.3631 1.4191e-21) (-62.9947 50.9128 -3.46848e-17) (-61.1251 49.292 -1.55837e-18) (-54.1636 43.874 2.86893e-17) (-53.8792 43.7878 0) (-59.9193 48.6987 -2.12253e-17) (-62.2016 50.5058 2.05298e-17) (-63.9154 51.2911 0) (-62.1772 49.9968 -1.31392e-18) (-55.8848 45.159 -5.14292e-17) (-54.9585 44.4706 4.95334e-17) (-60.7867 49.1346 4.14808e-17) (-62.9569 50.8786 -1.66718e-17) (-64.5567 51.7277 1.61284e-17) (-62.8029 50.5882 0) (-56.7342 45.9123 4.6268e-17) (-56.1189 45.2674 -4.53292e-17) (-61.6462 49.7704 -3.84732e-17) (-63.7295 51.3438 4.79835e-17) (-65.3824 52.0161 2.8393e-17) (-63.7275 50.9125 -1.82384e-17) (-57.7711 46.3419 0) (-56.7325 45.4093 8.48363e-17) (-62.6098 50.026 -6.84993e-17) (-64.6595 51.5651 3.33425e-17) (-66.1628 52.1991 1.79041e-17) (-64.5976 51.1187 0) (-57.8795 46.1429 -3.71918e-17) (-56.4204 44.7911 2.89502e-17) (-63.5624 50.242 2.50625e-17) (-65.4385 51.7983 -1.38153e-18) (-64.664 51.3824 1.21894e-18) (-62.4107 49.6583 2.28198e-17) (-56.369 44.804 0) (-58.3748 46.068 -1.58726e-18) (-64.714 50.8735 -2.10378e-17) (-66.4065 52.1326 1.97017e-17) (-65.4515 51.8527 -5.26641e-17) (-63.3033 50.2524 4.04611e-17) (-57.5205 45.6268 -4.75269e-17) (-59.4607 46.9675 -4.7323e-17) (-65.4886 51.5437 0) (-67.196 52.5913 -2.01959e-18) (-66.4213 52.0641 3.37065e-17) (-64.3738 50.5174 -7.16993e-17) (-58.7908 46.0948 4.40467e-17) (-60.3407 47.0243 4.57201e-17) (-66.3586 51.4902 -4.53301e-18) (-67.9755 52.6624 1.87791e-18) (-67.1938 52.2791 -5.76172e-17) (-65.1019 50.7272 3.39679e-17) (-59.1419 46.2577 4.29237e-17) (-60.249 47.139 1.13905e-18) (-67.0439 51.9932 0) (-68.7001 53.0102 0) (-68.0942 52.7645 0) (-66.1627 51.2886 0) (-59.0076 45.9468 5.62302e-17) (-59.1767 45.9959 5.21394e-17) (-65.1881 50.7904 2.80352e-18) (-67.4584 52.4364 1.90098e-17) (-69.3198 53.1445 1.9296e-17) (-67.5663 52.0439 -4.40856e-17) (-61.3264 47.3409 2.51288e-17) (-60.9127 46.8991 -5.08463e-17) (-66.4388 51.3175 3.95758e-17) (-68.5639 52.7781 -5.09685e-17) (-70.395 53.2708 -1.7256e-17) (-68.7944 52.1686 -1.16174e-18) (-62.7606 47.7449 4.26849e-18) (-61.4413 46.7103 -3.95254e-18) (-67.5486 51.1977 5.36709e-18) (-69.6729 52.7599 1.75788e-18) (-71.1647 53.4535 1.27588e-18) (-69.499 52.4429 -3.42833e-18) (-62.5558 47.5887 2.32018e-18) (-61.3635 46.4283 5.77674e-17) (-68.6404 51.701 0) (-70.5748 53.1596 -1.38142e-18) (-69.9457 52.8136 -1.20771e-18) (-67.6444 51.1718 -2.80848e-18) (-61.4978 46.4428 0) (-63.6574 47.8694 0) (-70.0366 52.5383 1.30185e-18) (-71.8251 53.5688 -1.7221e-17) (-71.133 53.2335 -1.64728e-17) (-68.9834 51.8005 4.11928e-17) (-63.3336 47.4132 -5.06601e-17) (-65.2517 48.4302 2.84299e-18) (-71.346 52.7984 -1.16681e-18) (-73.0229 53.7583 -1.93608e-18) (-72.4322 53.1848 1.77077e-18) (-70.3248 51.7222 -3.33889e-17) (-64.3097 47.3716 4.22065e-17) (-65.4105 48.0619 7.38529e-17) (-72.337 52.8036 1.43131e-21) (-73.928 53.7637 -1.91444e-17) (-73.3598 53.4531 -1.37295e-17) (-71.4623 52.0415 2.49177e-17) (-64.0667 46.8141 5.69286e-17) (-64.1492 46.9199 0) (-70.4487 51.6654 0) (-72.7368 53.2104 -1.90979e-17) (-74.653 53.9003 -1.91826e-17) (-72.8708 52.9192 4.12953e-17) (-66.4069 48.2981 -2.51103e-17) (-66.2437 48.0728 4.75316e-17) (-71.9082 52.425 1.0554e-20) (-74.0655 53.7233 -3.02797e-17) (-76.092 54.1041 0) (-74.4518 53.2635 0) (-68.3862 49.0183 -1.41046e-18) (-67.5761 47.8407 -4.00339e-17) (-73.5604 52.0201 4.20633e-18) (-75.6143 53.4142 -3.11687e-17) (-77.0333 53.9472 2.49733e-18) (-75.4466 53.0511 -3.01406e-17) (-68.5769 48.5049 7.24033e-17) (-67.4132 47.3916 0) (-74.6926 52.3614 0) (-76.5679 53.6612 0) (-76.0736 53.4753 1.82287e-17) (-73.7837 52.0186 2.70046e-18) (-67.5908 47.4762 5.09241e-17) (-69.8231 48.8099 1.47499e-18) (-76.2441 53.2816 -2.18328e-17) (-78.0704 54.1412 1.59863e-17) (-77.7275 53.9659 2.85677e-17) (-75.6207 52.8352 -3.46981e-17) (-69.8412 48.5278 -1.32427e-18) (-71.6016 49.1204 7.3648e-17) (-78.2808 53.6037 -2.63437e-17) (-79.8077 54.2183 1.89852e-17) (-79.5237 53.465 4.0578e-18) (-77.7369 52.2101 -1.5285e-18) (-70.6268 47.4667 -2.81222e-17) (-70.2733 47.187 -3.20606e-18) (-76.5658 51.4873 2.44543e-17) (-78.8991 52.9938 -1.95594e-17) (-80.7009 53.6373 1.61597e-17) (-78.8928 52.6321 -2.44508e-18) (-72.2503 48.359 -4.44216e-17) (-71.7119 48.1518 2.64381e-18) (-77.9841 52.2684 0) (-80.2456 53.5276 -3.59238e-18) (-82.2818 54.0846 -1.64948e-17) (-80.4609 53.5254 0) (-73.3088 49.1294 -3.90939e-17) (-73.0593 48.3519 2.82649e-17) (-80.2995 53.0067 2.44511e-17) (-82.3552 53.8374 -4.05993e-18) (-82.1864 53.0611 2.44947e-17) (-79.9902 51.7698 2.71315e-18) (-74.1063 47.7253 0) (-75.9951 48.4348 -2.37326e-17) (-82.3728 52.3993 1.57475e-17) (-84.0147 53.346 -4.01987e-18) (-83.4986 52.9083 -2.4874e-17) (-81.2669 51.6415 3.55382e-17) (-75.0046 47.7955 0) (-76.2513 48.6241 1.13727e-18) (-83.4286 52.7892 8.39872e-19) (-85.195 53.4513 -2.50784e-18) (-85.2252 53.504 1.05576e-17) (-83.1884 52.5353 -1.49734e-18) (-75.7951 47.9564 -1.72988e-18) (-77.2381 48.3241 5.00137e-17) (-83.067 52.3959 -4.29536e-17) (-85.3238 53.4444 0) (-87.8086 53.4981 -1.57069e-17) (-86.0863 53.0832 1.19002e-18) (-79.9379 49.2939 0) (-79.6133 47.5611 -2.57791e-18) (-85.5962 51.1659 2.83927e-17) (-87.6957 52.3089 6.12402e-21) (-89.1218 52.5512 0) (-87.5054 51.8249 3.23204e-18) (-80.3858 47.8339 2.16583e-18) (-79.6287 47.1804 -2.55365e-17) (-87.1199 51.552 0) (-89.0939 52.4614 0) (-89.331 52.5039 3.10075e-17) (-87.0525 51.4946 0) (-80.6223 47.4174 2.18424e-17) (-82.8952 48.4092 0) (-90.1971 52.6348 0) (-91.9906 52.7985 0) (-92.6525 51.9027 1.02058e-17) (-90.723 51.55 -1.43649e-18) (-83.3335 47.3642 8.17782e-19) (-83.827 45.8537 -4.53025e-17) (-90.3528 49.5831 3.87421e-17) (-92.5921 50.6513 -3.22591e-17) (-94.1419 50.8688 0) (-92.4431 50.2727 0) (-84.8487 46.2524 0) (-84.6448 45.7434 -2.54631e-17) (-92.3628 50.0366 1.43144e-18) (-94.3653 50.7837 1.27472e-18) (-94.8392 50.8749 3.03453e-18) (-92.5864 50.2252 -1.18268e-18) (-86.3431 46.2141 -7.07448e-19) (-89.1729 46.774 3.73022e-17) (-96.1478 50.7143 -2.77471e-17) (-97.7211 50.5913 -2.57884e-18) (-98.3603 49.0968 3.91246e-18) (-96.7448 48.5303 -2.34442e-17) (-89.5919 44.7656 5.36831e-17) (-89.3762 43.8902 2.27836e-17) (-96.036 47.3206 -3.78763e-17) (-98.2855 48.1928 3.36886e-17) (-100.183 48.2954 -6.4004e-19) (-98.4615 48.0386 -2.74641e-17) (-90.8273 44.424 3.64292e-17) (-91.6948 44.3957 -2.56141e-17) (-99.0262 48.2584 0) (-101.019 48.3361 1.28405e-18) (-101.9 47.7456 -6.47074e-17) (-99.9721 47.6467 1.89494e-17) (-94.8388 44.2734 2.54405e-17) (-97.2171 43.0029 -2.87991e-18) (-103.534 46.2754 -1.28574e-17) (-104.493 46.478 0) (-104.932 45.1556 5.01032e-18) (-103.41 44.6847 9.86624e-18) (-96.2153 41.1552 -2.50566e-17) (-97.3253 41.2194 0) (-103.5 44.7161 4.53935e-18) (-105.532 45.0396 -3.90493e-18) (-108.484 44.4219 2.26508e-17) (-107.194 44.9748 -3.27256e-18) (-100.273 41.5783 1.70641e-17) (-101.693 39.8166 7.68329e-19) (-108.61 43.1371 0) (-110.015 42.6759 -1.18413e-18) (-110.912 40.9137 -2.84739e-17) (-109.177 40.5967 3.37568e-17) (-102.89 37.2831 -2.51797e-18) (-104.598 37.1961 1.85903e-18) (-112.203 40.591 6.90425e-19) (-113.19 40.1061 1.0319e-18) (-114.836 38.4717 1.00494e-17) (-113.666 39.5435 -3.00085e-17) (-106.063 36.1783 3.684e-17) (-108.035 33.6062 -2.35962e-17) (-115.095 36.957 1.04546e-17) (-116.276 36.375 -1.18486e-17) (-117.343 34.1789 3.55189e-20) (-115.773 34.4524 3.17353e-17) (-109.269 30.9008 -1.8656e-17) (-111.59 30.2469 0) (-119.185 33.5487 -1.84586e-17) (-119.687 32.3715 1.58306e-17) (-121.297 28.7834 8.18303e-18) (-121.07 30.0555 -1.39728e-17) (-112.873 26.5416 1.4824e-17) (-113.552 23.0409 -2.36486e-19) (-122.199 26.519 7.72125e-19) (-122.5 25.3957 -3.15673e-19) (-123.479 21.9357 -1.06192e-17) (-123.002 23.8248 1.35245e-17) (-114.678 20.3257 3.29477e-19) (-115.724 14.9393 -6.72699e-20) (-123.215 17.9637 2.74536e-19) (-123.611 17.3868 -3.60736e-19) (-122.529 13.7455 5.29092e-18) (-121.839 14.4929 -4.76025e-18) (-114.562 11.752 0) (-112.833 6.56973 0) (-119.392 8.2787 -3.59636e-21) (-120.399 9.12567 -1.21279e-18) (-117.39 5.77131 0) (-114.819 5.19609 4.82207e-19) (-108.624 4.3364 2.27216e-18) (-105.923 2.43755 0) (-113.842 3.43873 1.16802e-18) (-115.849 4.87516 0) (-111.944 2.76542 5.18404e-19) (-109.582 1.56933 -9.69628e-19) (-99.2991 0.784293 -4.06972e-19) (-96.335 0.432655 3.91839e-19) (-106.655 1.0565 -3.20323e-19) (-109.208 1.89907 -4.92377e-19) (-107.019 1.46442 -6.56844e-20) (-104.355 0.804443 3.99133e-20) (-93.9204 0.301724 -4.87206e-20) (-92.0412 0.229162 0) (-102.491 0.653822 0) (-105.204 1.19377 6.40433e-20) (-103.634 1.01316 -6.36411e-20) (-100.884 0.547905 0) (-90.4276 0.195255 -9.35639e-20) (-89.0426 0.168165 9.19229e-20) (-99.4978 0.469869 0) (-102.276 0.876231 3.14205e-20) (-101.073 0.769487 0) (-98.2722 0.412584 0) (-87.8198 0.140548 0) (-86.7598 0.123597 0) (-97.1907 0.364499 0) (-100.002 0.678193 0) (-99.0409 0.605919 0) (-96.2173 0.326075 0) (-85.7966 0.110023 0) (-84.9377 0.097666 0) (-95.344 0.293276 0) (-98.1766 0.54465 0) (-97.393 0.492465 0) (-94.5535 0.266346 -7.54701e-20) (-84.1628 0.0869615 0) (-83.4589 0.0785002 0) (-93.8349 0.242118 7.51366e-20) (-96.6803 0.447978 0) (-96.0233 0.409102 0) (-93.1756 0.220544 -7.55133e-20) (-82.8191 0.0711521 0) (-82.2323 0.0649626 0) (-92.5711 0.202284 7.51822e-20) (-95.4221 0.375506 0) (-94.8633 0.345704 0) (-92.0121 0.185738 -7.55472e-20) (-81.6934 0.0594756 0) (-81.1953 0.0547679 0) (-91.4953 0.171514 7.52181e-20) (-94.3477 0.319605 0) (-93.8652 0.296221 0) (-91.0141 0.158364 -7.55739e-20) (-80.7344 0.0506129 0) (-80.3055 0.0471426 0) (-90.5659 0.146806 7.52465e-20) (-93.4169 0.27574 0) (-92.9948 0.257622 6.27164e-20) (-90.1461 0.135551 0) (-79.9061 0.0440735 0) (-79.5329 0.0406613 0) (-89.7526 0.126873 0) (-92.6005 0.240616 -6.24491e-20) (-92.2282 0.224358 0) (-89.3834 0.119537 -7.56116e-20) (-79.1829 0.0373903 0) (-78.8532 0.0348952 0) (-89.0356 0.112029 7.5287e-20) (-91.8785 0.210432 0) (-91.5461 0.197777 0) (-88.7067 0.104889 -7.5625e-20) (-78.5442 0.0326875 0) (-78.2517 0.0308997 0) (-88.3955 0.0984209 7.5301e-20) (-91.2326 0.186526 0) (-90.9334 0.176452 6.27583e-20) (-88.1004 0.0918973 0) (-77.976 0.0292788 0) (-77.7148 0.0273191 0) (-87.8198 0.0870034 0) (-90.6504 0.166637 -6.24928e-20) (-90.3799 0.157021 0) (-87.5536 0.0829219 -7.56428e-20) (-77.4667 0.0254234 0) (-77.2299 0.0240562 0) (-87.2996 0.0783604 7.53205e-20) (-90.1227 0.148771 0) (-89.8758 0.141138 0) (-87.0572 0.0737826 0) (-77.0059 0.0227977 0) (-76.7925 0.0213387 0) (-86.8253 0.0704617 -7.56505e-20) (-89.6401 0.134153 0) (-89.4145 0.1278 0) (-86.6032 0.0667546 7.53291e-20) (-76.5871 0.0203922 0) (-76.3923 0.0194758 0) (-86.3902 0.0628663 0) (-89.1968 0.122122 6.27804e-20) (-88.9886 0.116385 -6.25162e-20) (-86.1854 0.0601401 0) (-76.2055 0.0182686 0) (-76.0261 0.0170353 0) (-85.9893 0.0579917 -7.56552e-20) (-88.7877 0.1106 0) (-88.5947 0.10567 0) (-85.8001 0.0554302 7.53345e-20) (-75.853 0.0161381 0) (-75.6881 0.0153475 0) (-85.6179 0.0529222 -7.56556e-20) (-88.4076 0.101171 0) (-88.228 0.0969246 0) (-85.4419 0.0506072 7.53351e-20) (-75.5281 0.0146645 0) (-75.3751 0.0140643 0) (-85.2722 0.0483025 -7.56549e-20) (-88.0533 0.0928872 0) (-87.8848 0.0893597 0) (-85.1076 0.0461159 7.53346e-20) (-75.2263 0.013588 0) (-75.0837 0.013107 0) (-84.9487 0.0437302 0) (-87.7208 0.0861715 6.27852e-20) (-87.5624 0.0827752 -6.25217e-20) (-84.7941 0.0422446 0) (-74.9458 0.0123113 0) (-74.8121 0.0114495 0) (-84.645 0.0411992 -7.56504e-20) (-87.4082 0.0792129 0) (-87.2589 0.0762024 0) (-84.4997 0.0397686 7.53307e-20) (-74.6819 0.010794 0) (-74.5569 0.0101505 0) (-84.3589 0.0384951 -7.5647e-20) (-87.113 0.0734788 0) (-86.9718 0.0709437 0) (-84.2215 0.0375242 -1.9233e-23) (-74.4344 0.00952971 0) (-74.3155 0.00919566 0) (-84.088 0.0361245 -1.89935e-23) (-86.8339 0.0684544 0) (-86.6992 0.0661795 0) (-83.9577 0.0346418 -1.87658e-23) (-74.2003 0.00897332 0) (-74.088 0.00886681 0) (-83.8309 0.0330283 7.53212e-20) (-86.568 0.0639586 0) (-86.4393 0.0619023 0) (-83.7073 0.0318687 -7.56354e-20) (-73.9799 0.0085715 0) (-73.8729 0.00834123 0) (-83.5863 0.030845 7.53161e-20) (-86.3142 0.0600106 0) (-86.1914 0.0581792 0) (-83.4685 0.029754 -7.56297e-20) (-73.77 0.00813778 0) (-73.6681 0.00800916 0) (-83.3528 0.0285851 7.53105e-20) (-86.0717 0.0564555 0) (-85.9541 0.0547262 0) (-83.2402 0.0272447 0) (-73.5701 0.00794212 0) (-73.4742 0.00774134 0) (-83.1295 0.0264025 0) (-85.8388 0.0532605 0) (-85.7263 0.0519714 0) (-83.0215 0.0256375 0) (-73.3798 0.00755639 0) (-73.2876 0.00726768 0) (-82.9154 0.0247723 0) (-85.6157 0.0508012 6.27587e-20) (-85.5075 0.0494138 -6.2496e-20) (-82.811 0.024076 0) (-73.1972 0.0069689 0) (-73.1089 0.00661927 0) (-82.7092 0.0234764 0) (-85.4007 0.0480015 6.27534e-20) (-85.2964 0.046579 -6.24904e-20) (-82.6089 0.0230536 0) (-73.0222 0.00621619 0) (-72.9375 0.00575312 0) (-82.5109 0.0228972 -7.55977e-20) (-85.1936 0.0450126 0) (-85.0928 0.0437674 0) (-82.4142 0.0223397 7.52788e-20) (-72.8534 0.00549173 0) (-72.7724 0.00530523 0) (-82.3196 0.0218629 -7.55894e-20) (-84.9934 0.0427378 0) (-84.8962 0.0417408 0) (-82.2261 0.021353 -1.63916e-23) (-72.6915 0.00518177 0) (-72.6122 0.00535896 0) (-82.1343 0.0202043 7.52663e-20) (-84.7999 0.0407672 0) (-84.7049 0.0401419 6.27312e-20) (-82.0442 0.0192237 0) (-72.5357 0.0054027 0) (-72.4598 0.0052909 0) (-81.9549 0.0187442 0) (-84.6118 0.0391835 -6.24683e-20) (-84.5199 0.0380906 0) (-81.8677 0.0184026 0) (-72.385 0.00514565 0) (-72.3116 0.00491402 0) (-81.7816 0.0179324 0) (-84.4294 0.0374405 6.27202e-20) (-84.3404 0.0364776 -6.24574e-20) (-81.6964 0.017686 0) (-72.239 0.00465678 0) (-72.168 0.00436796 0) (-81.6131 0.0176323 -7.55523e-20) (-84.2524 0.0353598 0) (-84.1658 0.034534 0) (-81.5305 0.0170493 7.52334e-20) (-72.097 0.00433517 0) (-72.0286 0.00438035 0) (-81.4494 0.0163113 0) (-84.0801 0.0337802 0) (-83.9956 0.0330859 0) (-81.3691 0.0159363 0) (-71.9609 0.00427353 0) (-71.8937 0.00413678 0) (-81.2901 0.0156348 0) (-83.9123 0.032356 0) (-83.8302 0.0316371 0) (-81.2121 0.0154408 0) (-71.8278 0.00392263 0) (-71.7626 0.00369613 0) (-81.1353 0.0153229 -7.55207e-20) (-83.7491 0.0309737 0) (-83.669 0.0303759 0) (-81.059 0.0147652 7.52019e-20) (-71.6975 0.0036958 0) (-71.6347 0.00373153 0) (-80.9842 0.0139793 0) (-83.5896 0.0299658 6.26796e-20) (-83.5114 0.0293869 -6.24166e-20) (-80.9096 0.013665 0) (-71.5723 0.0036078 0) (-71.5106 0.00341568 0) (-80.8366 0.0134395 0) (-83.4339 0.0287061 6.26706e-20) (-83.3577 0.0279448 -6.24076e-20) (-80.764 0.0133592 0) (-71.4497 0.00313447 0) (-71.3898 0.00280573 0) (-80.6929 0.0134945 -7.54865e-20) (-83.2821 0.027028 0) (-83.2075 0.0263308 0) (-80.6221 0.0132542 7.51675e-20) (-71.3296 0.00262004 0) (-71.2718 0.00244783 0) (-80.5527 0.0130633 -7.54744e-20) (-83.1337 0.02571 0) (-83.0608 0.025149 0) (-80.4835 0.0128909 -1.49446e-23) (-71.2133 0.00229282 0) (-71.1558 0.00235044 0) (-80.4153 0.0123129 7.51495e-20) (-82.9887 0.0245472 0) (-82.9172 0.0240222 0) (-80.3482 0.0119994 -7.54558e-20) (-71.1004 0.00221242 0) (-71.0438 0.00206433 0) (-80.2813 0.0117661 7.51369e-20) (-82.8466 0.0234568 0) (-82.7767 0.0229567 0) (-80.2158 0.0116765 -7.5443e-20) (-70.9896 0.00187207 0) (-70.9344 0.00165108 0) (-80.1505 0.0116825 -1.47489e-23) (-82.708 0.0224614 0) (-82.6398 0.0218762 0) (-80.0861 0.0113389 -1.47156e-23) (-70.8803 0.00164334 0) (-70.827 0.00171599 0) (-80.0224 0.0108548 -1.46822e-23) (-82.5723 0.02138 0) (-82.5055 0.0208292 0) (-79.9595 0.0102332 7.51044e-20) (-70.7742 0.00188469 0) (-70.7232 0.00193479 0) (-79.8975 0.00990477 -7.54099e-20) (-82.4392 0.0204503 0) (-82.3741 0.0200389 0) (-79.8357 0.0094419 7.50908e-20) (-70.671 0.00201195 0) (-70.6208 0.00209343 0) (-79.7749 0.00882947 0) (-82.3087 0.0197948 6.25908e-20) (-82.2452 0.0192181 -6.23266e-20) (-79.7143 0.00860146 0) (-70.5709 0.00197388 0) (-70.5213 0.00181536 0) (-79.6549 0.00848768 0) (-82.1813 0.0183279 0) (-82.1189 0.0177978 0) (-79.5962 0.00846868 0) (-70.4725 0.00156818 0) (-70.4239 0.00130133 0) (-79.538 0.00865208 -7.53678e-20) (-82.0568 0.0173686 0) (-81.9959 0.016944 0) (-79.4801 0.00849951 -1.44337e-23) (-70.3752 0.00123099 0) (-70.3274 0.00138752 0) (-79.4231 0.00764801 7.50414e-20) (-81.9353 0.0161987 0) (-81.8748 0.0157173 0) (-79.3669 0.00706246 0) (-70.2814 0.00149302 0) (-70.2355 0.0014514 0) (-79.3112 0.00685121 0) (-81.8156 0.0153021 0) (-81.7566 0.014802 0) (-79.2561 0.00667198 0) (-70.1897 0.00134277 0) (-70.1446 0.00116157 0) (-79.2017 0.00660863 0) (-81.6987 0.014353 0) (-81.6414 0.0138314 0) (-79.148 0.00655314 -7.53155e-20) (-70.0999 0.000941483 0) (-70.0548 0.00092524 0) (-79.0944 0.00612239 7.49962e-20) (-81.5846 0.0133627 0) (-81.5283 0.0130227 6.25141e-20) (-79.042 0.00551952 0) (-70.0118 0.000914415 0) (-69.9688 0.000699722 0) (-78.9896 0.00545116 0) (-81.4728 0.0124107 -6.22507e-20) (-81.4179 0.0116117 0) (-78.9386 0.00567833 -7.52841e-20) (-69.9264 0.000418911 0) (-69.8836 0.000306481 0) (-78.8876 0.00549427 -1.42325e-23) (-81.3638 0.0110717 0) (-81.3101 0.010647 0) (-78.8373 0.00478369 7.49568e-20) (-69.8416 0.00047925 0) (-69.8012 0.000504592 0) (-78.7879 0.00417823 0) (-81.2568 0.0103715 6.24823e-20) (-81.2044 0.00974925 -6.22187e-20) (-78.7385 0.00412571 0) (-69.7607 0.000308908 0) (-69.7209 5.96863e-06 0) (-78.6905 0.00436825 -7.52432e-20) (-81.1527 0.00893525 0) (-81.1016 0.00833378 0) (-78.6424 0.00421101 -1.41662e-23) (-69.6806 -0.00016534 0) (-69.6412 -8.15199e-05 0) (-78.5952 0.00362648 7.49154e-20) (-81.0511 0.00777608 0) (-81.0011 0.00732885 0) (-78.5489 0.00326045 -7.52179e-20) (-69.6037 -8.54139e-05 0) (-69.5648 -5.72439e-06 0) (-78.5026 0.00281168 7.48983e-20) (-80.9518 0.0068479 0) (-80.9031 0.00633749 0) (-78.4576 0.00224709 0) (-69.528 0.00011061 0) (-69.4912 8.76443e-05 0) (-78.4127 0.00194102 0) (-80.855 0.00587617 0) (-80.8076 0.00543857 0) (-78.3686 0.00165747 0) (-69.4546 8.4479e-05 0) (-69.4187 3.08462e-05 0) (-78.325 0.00129031 0) (-80.7607 0.00509892 6.24143e-20) (-80.7145 0.00452497 -6.21507e-20) (-78.2816 0.000995389 0) (-69.3831 -3.49406e-05 0) (-69.3482 -0.000118209 0) (-78.2394 0.000701034 0) (-80.6688 0.00392839 6.24001e-20) (-80.6238 0.00334368 -6.21363e-20) (-78.1973 0.000419803 0) (-69.3136 -0.000197224 0) (-69.2799 -0.000301302 0) (-78.1562 0.000128199 0) (-80.5793 0.00275023 6.23856e-20) (-80.5357 0.00209823 -6.21216e-20) (-78.1153 -0.000198319 0) (-69.2464 -0.0004237 0) (-69.2136 -0.000496948 0) (-78.0754 -0.000424427 0) (-80.4921 0.00160314 6.23714e-20) (-80.45 0.000969072 -6.21064e-20) (-78.0356 -0.000732387 0) (-69.1811 -0.000613463 0) (-69.1492 -0.000729829 0) (-77.9968 -0.000994716 0) (-80.4075 0.000357868 6.23564e-20) (-80.3665 -0.00031599 -6.20914e-20) (-77.9583 -0.00125565 0) (-69.1178 -0.000873425 0) (-69.087 -0.00103721 0) (-77.9207 -0.00151841 0) (-80.3254 -0.00114749 0) (-80.2854 -0.00158944 0) (-77.8837 -0.00170483 0) (-69.0568 -0.00113899 0) (-69.0268 -0.00129495 0) (-77.8472 -0.00194878 0) (-80.2459 -0.00219061 0) (-80.207 -0.00280823 0) (-77.8113 -0.00207069 0) (-68.9973 -0.00149863 0) (-68.9685 -0.00178941 0) (-77.7761 -0.0020917 -7.50415e-20) (-80.1689 -0.00345818 0) (-80.1312 -0.00413613 0) (-77.741 -0.00237413 7.47211e-20) (-68.9391 -0.00193546 0) (-68.912 -0.00207632 0) (-77.7073 -0.00268083 -7.50213e-20) (-80.0942 -0.00477101 0) (-80.0578 -0.00538938 0) (-77.6733 -0.0029521 7.47008e-20) (-68.8836 -0.00220328 0) (-68.8574 -0.00234661 0) (-77.6409 -0.00313546 -7.50006e-20) (-80.0222 -0.00600561 0) (-79.9871 -0.00660328 0) (-77.6082 -0.0033556 -1.41193e-23) (-68.8302 -0.0025009 0) (-68.8039 -0.00241306 0) (-77.5765 -0.0039385 7.46697e-20) (-79.9526 -0.00719588 0) (-79.9188 -0.00769925 0) (-77.5457 -0.00432567 -7.49692e-20) (-68.7793 -0.00243166 0) (-68.7534 -0.00236689 0) (-77.5148 -0.0048208 7.46485e-20) (-79.8855 -0.00824409 0) (-79.8531 -0.00890829 0) (-77.4853 -0.00546384 0) (-68.7297 -0.00227587 0) (-68.706 -0.00233101 0) (-77.456 -0.00581016 0) (-79.821 -0.00952307 0) (-79.7897 -0.0100981 0) (-77.4275 -0.00608914 0) (-68.6826 -0.00238483 0) (-68.6599 -0.00249396 0) (-77.3996 -0.00639485 0) (-79.7591 -0.010703 0) (-79.7291 -0.0112245 0) (-77.3722 -0.0066673 0) (-68.6374 -0.00257824 0) (-68.6155 -0.00267233 0) (-77.3456 -0.00696098 0) (-79.6999 -0.0117831 0) (-79.6713 -0.0124438 0) (-77.3195 -0.00730091 0) (-68.5941 -0.00277935 0) (-68.5734 -0.00289978 0) (-77.2941 -0.00765926 0) (-79.6434 -0.0131703 0) (-79.616 -0.0138549 0) (-77.2693 -0.00797937 0) (-68.5532 -0.00301366 0) (-68.5334 -0.00311099 0) (-77.2452 -0.00821432 0) (-79.5892 -0.0143691 0) (-79.5634 -0.0149561 0) (-77.2217 -0.00847759 0) (-68.5142 -0.00324495 0) (-68.4953 -0.00342668 0) (-77.1988 -0.00873713 0) (-79.5381 -0.0156482 0) (-79.5136 -0.0163237 0) (-77.1767 -0.00884716 0) (-68.4771 -0.00365023 0) (-68.4594 -0.00395655 0) (-77.1552 -0.0088668 -7.48e-20) (-79.4897 -0.0169991 0) (-79.4664 -0.0177062 0) (-77.1339 -0.00918078 7.44786e-20) (-68.4413 -0.004088 0) (-68.4254 -0.00419154 0) (-77.1141 -0.00953152 -7.4776e-20) (-79.4439 -0.0183547 0) (-79.422 -0.0189646 0) (-77.0941 -0.0098847 7.44545e-20) (-68.4084 -0.00424656 0) (-68.3935 -0.00426868 0) (-77.0756 -0.0102684 -7.47516e-20) (-79.4009 -0.0195409 0) (-79.3802 -0.0200164 0) (-77.0568 -0.0107762 7.443e-20) (-68.3775 -0.00424644 0) (-68.3636 -0.00423971 0) (-77.0396 -0.0114306 0) (-79.3604 -0.0204116 6.20602e-20) (-79.3413 -0.0211324 -6.17949e-20) (-77.0222 -0.0115112 0) (-68.3497 -0.004474 0) (-68.3363 -0.00480525 0) (-77.0063 -0.0113565 -7.47017e-20) (-79.3228 -0.0220702 0) (-79.305 -0.0228121 0) (-76.9903 -0.0115964 7.43799e-20) (-68.3225 -0.00502993 0) (-68.3108 -0.00524617 0) (-76.9757 -0.0116895 -7.46761e-20) (-79.2879 -0.0233943 0) (-79.2716 -0.0239874 0) (-76.961 -0.0117135 -1.41955e-23) (-68.298 -0.00551873 0) (-68.2863 -0.00561399 0) (-76.9473 -0.012049 -1.41955e-23) (-79.256 -0.0246761 0) (-79.241 -0.0252541 0) (-76.9342 -0.0124163 -1.4193e-23) (-68.2752 -0.00565581 0) (-68.2646 -0.0056098 0) (-76.9218 -0.0129068 -1.41924e-23) (-79.2267 -0.0258186 0) (-79.2131 -0.026457 0) (-76.91 -0.0135273 7.43019e-20) (-68.2543 -0.00550946 0) (-68.2457 -0.00556705 0) (-76.8993 -0.0138046 -7.45973e-20) (-79.2 -0.0269495 0) (-79.1878 -0.0275293 0) (-76.8885 -0.0140735 7.42751e-20) (-68.2359 -0.00562211 0) (-68.2281 -0.00572032 0) (-76.8791 -0.0143485 -7.45701e-20) (-79.1761 -0.0281224 0) (-79.1653 -0.0287375 0) (-76.8696 -0.014628 7.4248e-20) (-68.2193 -0.0058204 0) (-68.2124 -0.00589486 0) (-76.8615 -0.0148054 -7.45426e-20) (-79.1551 -0.0292994 0) (-79.1456 -0.029787 0) (-76.8533 -0.0150778 -1.41673e-23) (-68.2046 -0.00594806 0) (-68.1976 -0.00567638 0) (-76.8461 -0.0159215 7.42066e-20) (-79.1366 -0.0303013 0) (-79.1284 -0.0304919 6.18823e-20) (-76.8398 -0.01666 0) (-68.1922 -0.00554932 0) (-68.1867 -0.00554953 0) (-76.8335 -0.016925 0) (-79.1208 -0.030954 -6.16165e-20) (-79.114 -0.031481 0) (-76.8285 -0.0171715 0) (-68.1815 -0.00559724 0) (-68.1767 -0.00569182 0) (-76.8235 -0.0174159 0) (-79.1078 -0.0320347 0) (-79.1023 -0.0325772 0) (-76.8197 -0.0176519 0) (-68.1724 -0.00578447 0) (-68.1684 -0.00590166 0) (-76.8159 -0.0178596 0) (-79.0974 -0.0331394 0) (-79.0931 -0.0337224 6.18145e-20) (-76.8133 -0.0180227 0) (-68.1649 -0.00605396 0) (-68.1617 -0.00625244 0) (-76.8108 -0.0180569 0) (-79.0896 -0.0344076 -6.15485e-20) (-79.0868 -0.0351943 0) (-76.8094 -0.0179181 -7.43846e-20) (-68.1591 -0.00649077 0) (-68.156 -0.00650086 0) (-76.8079 -0.0183426 7.40619e-20) (-79.0843 -0.0357718 0) (-79.0828 -0.036272 0) (-76.8078 -0.0188308 0) (-68.1545 -0.00642344 0) (-68.1532 -0.00653849 0) (-76.8078 -0.0189041 0) (-79.0817 -0.0366968 0) (-79.0813 -0.037125 0) (-76.8086 -0.0188909 -7.4324e-20) (-68.1519 -0.00668491 0) (-68.1502 -0.00662315 0) (-76.8092 -0.0193232 7.40012e-20) (-79.0813 -0.0374893 0) (-79.0821 -0.0376874 6.17198e-20) (-76.8114 -0.0199729 0) (-68.1502 -0.006514 0) (-68.1501 -0.0065494 0) (-76.8131 -0.0201516 0) (-79.0834 -0.0381595 -6.14537e-20) (-79.0853 -0.0387186 0) (-76.8161 -0.0201719 0) (-68.15 -0.00655503 0) (-68.1503 -0.00668529 0) (-76.8193 -0.0204072 0) (-79.0877 -0.0389374 6.16828e-20) (-79.0908 -0.0394776 -6.14168e-20) (-76.8227 -0.0203796 0) (-68.1505 -0.00682442 0) (-68.1513 -0.00701856 0) (-76.8272 -0.0201985 -7.42138e-20) (-79.0945 -0.0401025 0) (-79.0983 -0.0404068 0) (-76.8312 -0.0205795 7.38907e-20) (-68.1514 -0.00694325 0) (-68.1529 -0.00680833 0) (-76.8367 -0.0211505 0) (-79.103 -0.0404987 6.16328e-20) (-79.108 -0.0408701 -6.13666e-20) (-76.8416 -0.0212513 0) (-68.1543 -0.00683652 0) (-68.1554 -0.00683346 0) (-76.8476 -0.0211782 0) (-79.1135 -0.0413258 0) (-79.1194 -0.0414589 6.15941e-20) (-76.8537 -0.021303 0) (-68.1567 -0.00698475 0) (-68.1578 -0.00717989 0) (-76.8599 -0.0211056 0) (-79.1259 -0.0419213 -6.13279e-20) (-79.1328 -0.0424889 0) (-76.8669 -0.0206173 -7.40978e-20) (-68.1592 -0.00748857 0) (-68.1598 -0.00760683 0) (-76.8735 -0.020586 -1.39226e-23) (-79.1399 -0.042832 0) (-79.1476 -0.0430967 0) (-76.8807 -0.0209297 7.37574e-20) (-68.1604 -0.0074223 0) (-68.1621 -0.00745266 0) (-76.8886 -0.0209835 -7.40463e-20) (-79.1556 -0.0432359 0) (-79.1637 -0.0433992 0) (-76.8957 -0.0209796 7.37228e-20) (-68.1623 -0.00741713 0) (-68.1634 -0.007395 0) (-76.9041 -0.0208527 -7.40112e-20) (-79.1725 -0.0434947 0) (-79.1812 -0.0434924 0) (-76.9114 -0.0207926 -1.38741e-23) (-68.1632 -0.00734379 0) (-68.1627 -0.0069722 0) (-76.9196 -0.0213176 7.36699e-20) (-79.1906 -0.0436924 0) (-79.1997 -0.0436318 0) (-76.9278 -0.0215833 0) (-68.163 -0.00670466 0) (-68.1624 -0.00653035 0) (-76.9358 -0.0214926 0) (-79.2093 -0.0433886 0) (-79.2188 -0.0430864 6.14326e-20) (-76.9438 -0.0214754 0) (-68.1607 -0.00643603 0) (-68.1587 -0.00637718 0) (-76.9514 -0.0212508 0) (-79.2287 -0.0430284 -6.11658e-20) (-79.2386 -0.0430853 0) (-76.9592 -0.020935 0) (-68.1558 -0.00629129 0) (-68.1521 -0.00627585 0) (-76.9668 -0.0207835 0) (-79.2485 -0.0427565 6.13899e-20) (-79.2585 -0.0427122 -6.11232e-20) (-76.9737 -0.0202962 0) (-68.1475 -0.00628413 0) (-68.1421 -0.00634807 0) (-76.9809 -0.0196098 -7.38285e-20) (-79.2685 -0.0427433 0) (-79.2783 -0.0425169 0) (-76.987 -0.019349 7.35044e-20) (-68.1345 -0.00619716 0) (-68.1274 -0.00601994 0) (-76.9935 -0.0190722 -7.37904e-20) (-79.2883 -0.0421233 0) (-79.2975 -0.0416563 0) (-76.9983 -0.0188704 7.34661e-20) (-68.1179 -0.00570112 0) (-68.1079 -0.00523554 0) (-77.0036 -0.0186884 0) (-79.3071 -0.0411178 0) (-79.3162 -0.0405788 0) (-77.0077 -0.0182161 0) (-68.096 -0.00501932 0) (-68.0821 -0.00476777 0) (-77.0111 -0.0175568 0) (-79.3248 -0.0399084 0) (-79.3334 -0.0391191 0) (-77.0136 -0.016724 0) (-68.0663 -0.00455901 0) (-68.0484 -0.0043956 0) (-77.0152 -0.0158452 -7.36725e-20) (-79.3414 -0.0383638 0) (-79.3488 -0.0375253 0) (-77.0151 -0.0152679 7.3348e-20) (-68.0274 -0.00401098 0) (-68.0056 -0.00353936 0) (-77.0147 -0.0147074 0) (-79.3559 -0.0366387 0) (-79.3619 -0.0354788 0) (-77.0124 -0.0135784 0) (-67.9803 -0.00320075 0) (-67.9521 -0.00292516 0) (-77.009 -0.0121649 -7.35912e-20) (-79.3677 -0.034223 0) (-79.3725 -0.0329854 0) (-77.0034 -0.0110646 -1.38435e-23) (-67.9198 -0.00251935 0) (-67.8847 -0.0017918 0) (-76.9964 -0.0102484 7.32459e-20) (-79.3765 -0.0315265 0) (-79.3796 -0.0298214 0) (-76.9879 -0.00910513 -7.35294e-20) (-67.8469 -0.00115127 0) (-67.8039 -0.000360384 0) (-76.9763 -0.00793821 7.32044e-20) (-79.3813 -0.0279965 0) (-79.3822 -0.0259895 0) (-76.9634 -0.00673349 0) (-67.7577 0.000577512 0) (-67.7064 0.0013698 0) (-76.9475 -0.00515965 0) (-79.3817 -0.0238041 0) (-79.3799 -0.0215064 0) (-76.9289 -0.00344284 0) (-67.6501 0.00219944 0) (-67.5888 0.00300212 0) (-76.9071 -0.00165653 0) (-79.3766 -0.0191052 0) (-79.3716 -0.0164767 0) (-76.8823 0.000317549 0) (-67.5216 0.00398019 0) (-67.4482 0.00508813 0) (-76.854 0.00247538 0) (-79.365 -0.013557 0) (-79.3566 -0.010454 0) (-76.8222 0.00475871 0) (-67.3677 0.00627245 0) (-67.2797 0.00754134 0) (-76.7865 0.00727725 0) (-79.3463 -0.00706595 0) (-79.334 -0.00320103 0) (-76.7468 0.0102656 0) (-67.1836 0.00891488 0) (-67.0787 0.0104203 0) (-76.7026 0.013448 0) (-79.3195 0.000972076 0) (-79.3029 0.00546208 0) (-76.6537 0.0168591 0) (-66.9642 0.0120406 0) (-66.8393 0.013833 0) (-76.5996 0.020663 0) (-79.2841 0.0103415 0) (-79.2631 0.0154476 0) (-76.54 0.0249245 0) (-66.7029 0.0157975 0) (-66.554 0.017874 0) (-76.4743 0.0294265 0) (-79.2393 0.0208314 0) (-79.2131 0.0265887 0) (-76.4024 0.0343793 0) (-66.392 0.0201039 0) (-66.2154 0.0225736 0) (-76.3239 0.039926 -7.31667e-20) (-79.1841 0.0329598 0) (-79.1526 0.0399178 0) (-76.2381 0.0456592 7.28427e-20) (-66.0217 0.0254799 0) (-65.8123 0.0286595 0) (-76.1449 0.0517803 -7.31245e-20) (-79.1183 0.047317 0) (-79.0811 0.0553391 0) (-76.0433 0.0584193 7.28008e-20) (-65.5828 0.0322914 0) (-65.3336 0.036393 0) (-75.9337 0.0656721 -7.3083e-20) (-79.0414 0.0640646 0) (-78.9988 0.0735073 0) (-75.8147 0.0734155 7.27599e-20) (-65.0608 0.0409918 0) (-64.7636 0.0461326 0) (-75.687 0.081705 0) (-78.9538 0.0837912 6.07863e-20) (-78.9069 0.0944786 1.19234e-23) (-75.549 0.0912127 0) (-64.4394 0.0514658 0) (-64.0849 0.0574243 0) (-75.4014 0.101987 -7.30034e-20) (-78.8582 0.105336 -6.07474e-20) (-78.8078 0.117149 0) (-75.2444 0.113434 -1.43649e-23) (-63.6967 0.0643458 0) (-63.2724 0.0724921 0) (-75.0769 0.125286 -1.43644e-23) (-78.7567 0.13007 0) (-78.7051 0.143849 0) (-74.8991 0.137871 -1.43469e-23) (-62.8083 0.0818416 0) (-62.3 0.0924599 0) (-74.7116 0.151267 7.26285e-20) (-78.654 0.158312 0) (-78.604 0.173594 0) (-74.5146 0.16605 -7.29138e-20) (-61.7448 0.104306 0) (-61.1338 0.117283 0) (-74.3098 0.181887 7.25961e-20) (-78.5568 0.18964 0) (-78.5128 0.206063 6.06794e-20) (-74.0971 0.198301 0) (-60.4679 0.130857 0) (-59.7391 0.143976 0) (-73.8781 0.214957 0) (-78.4731 0.221938 -6.04199e-20) (-78.4367 0.237445 6.06614e-20) (-73.6548 0.231087 0) (-58.9553 0.156447 0) (-58.1151 0.168086 0) (-73.4261 0.246638 0) (-78.4045 0.252935 -6.04034e-20) (-78.3751 0.268426 0) (-73.1953 0.2594 -7.28308e-20) (-57.222 0.177239 0) (-56.2724 0.179978 0) (-72.9627 0.268096 7.25236e-20) (-78.3483 0.282586 0) (-78.3152 0.293969 0) (-72.7076 0.273829 0) (-55.3164 0.174771 0) (-54.3714 0.16501 0) (-72.4219 0.277343 0) (-78.2714 0.303368 0) (-78.2168 0.311333 0) (-72.1017 0.278938 -7.28163e-20) (-53.45 0.152552 0) (-52.5612 0.138252 0) (-71.7453 0.27793 7.25132e-20) (-78.1495 0.318061 0) (-78.0689 0.323587 0) (-71.3488 0.274868 -7.28145e-20) (-51.7149 0.122457 0) (-50.9181 0.105616 0) (-70.9144 0.269724 7.25142e-20) (-77.9744 0.327726 0) (-77.8638 0.330428 0) (-70.438 0.262613 -7.28193e-20) (-50.1788 0.0888236 0) (-49.5012 0.0720564 0) (-69.9275 0.253213 -1.50012e-23) (-77.7371 0.331574 0) (-77.5909 0.331442 0) (-69.3833 0.240124 -1.51339e-23) (-48.8896 0.0563936 0) (-48.3446 0.0426925 0) (-68.8154 0.223721 7.25416e-20) (-77.4238 0.329709 0) (-77.2323 0.324825 0) (-68.23 0.204497 -7.28574e-20) (-47.866 0.0317546 0) (-47.4484 0.0257341 0) (-67.6422 0.181709 7.25718e-20) (-77.0164 0.317819 0) (-76.7631 0.309284 6.06356e-20) (-67.0722 0.156107 0) (-47.0857 0.0242481 0) (-46.7692 0.0240709 0) (-66.5369 0.131652 0) (-76.4739 0.298128 -6.03897e-20) (-76.147 0.286131 0) (-66.0394 0.109949 -7.29313e-20) (-46.4929 0.0245885 0) (-46.2496 0.0258874 0) (-65.5854 0.0907026 7.26445e-20) (-75.7895 0.274902 0) (-75.4025 0.262205 0) (-65.1714 0.0735864 -7.29652e-20) (-46.0351 0.0273544 0) (-45.8422 0.027669 0) (-64.8007 0.0592311 7.2676e-20) (-74.9994 0.247615 0) (-74.5821 0.230922 0) (-64.4673 0.0487185 -7.29947e-20) (-45.6678 0.0265893 0) (-45.5041 0.0249005 0) (-64.1705 0.044852 -1.70906e-23) (-74.164 0.212212 0) (-73.7618 0.192476 0) (-63.9014 0.0449999 -1.7242e-23) (-45.3477 0.0225329 0) (-45.194 0.0195449 0) (-63.6566 0.0468 7.27252e-20) (-73.3808 0.172721 0) (-73.0236 0.15362 0) (-63.4321 0.0503147 -7.30404e-20) (-45.0445 0.0157124 0) (-44.8958 0.0122361 0) (-63.2248 0.0543429 7.27444e-20) (-72.6942 0.136249 0) (-72.3889 0.120706 0) (-63.031 0.0584035 -7.30587e-20) (-44.7497 0.00951765 0) (-44.603 0.00807516 0) (-62.8484 0.062015 7.27614e-20) (-72.1099 0.107112 0) (-71.8533 0.0954126 0) (-62.6748 0.0639768 -7.30749e-20) (-44.4591 0.00697988 0) (-44.3148 0.00630787 0) (-62.5092 0.0645234 7.27768e-20) (-71.6204 0.0857885 0) (-71.4064 0.0784133 0) (-62.3495 0.0649812 -7.309e-20) (-44.1733 0.00609038 0) (-44.0303 0.00646774 0) (-62.1959 0.0648873 7.27915e-20) (-71.2087 0.0735583 0) (-71.0232 0.0710686 0) (-62.0468 0.0638108 -7.31042e-20) (-43.8895 0.00752681 0) (-43.7469 0.00913293 0) (-61.9011 0.0620024 7.28051e-20) (-70.8484 0.0710716 0) (-70.6804 0.0729831 0) (-61.7573 0.0595489 -7.31177e-20) (-43.6063 0.0111832 0) (-43.4632 0.0133849 0) (-61.6149 0.0570165 7.28182e-20) (-70.5178 0.0763241 0) (-70.3569 0.080617 0) (-61.4727 0.0543857 0) (-43.3214 0.0154985 0) (-43.1771 0.0163193 0) (-61.3304 0.0533305 0) (-70.1978 0.0835232 0) (-70.0371 0.0856703 0) (-61.1883 0.0529086 0) (-43.0337 0.0165942 0) (-42.8887 0.0164724 0) (-61.046 0.0528864 0) (-69.8765 0.0863953 0) (-69.7129 0.0864092 6.08672e-20) (-60.904 0.053149 0) (-42.7451 0.0161825 0) (-42.6002 0.0158442 0) (-60.7614 0.0536722 0) (-69.5483 0.0860603 -6.06174e-20) (-69.3795 0.0856961 6.08769e-20) (-60.6187 0.0542841 0) (-42.4564 0.0154638 0) (-42.3112 0.0150596 0) (-60.4748 0.0550301 0) (-69.209 0.0853495 -6.06268e-20) (-69.0332 0.0852272 0) (-60.3301 0.0561247 -7.31821e-20) (-42.1665 0.0147819 0) (-42.0195 0.0155712 0) (-60.1835 0.0558605 7.28813e-20) (-68.8543 0.0868931 0) (-68.6691 0.0887487 0) (-60.0351 0.0550545 0) (-41.873 0.0165988 0) (-41.7241 0.0169088 0) (-59.8848 0.0550909 0) (-68.48 0.0908491 6.09014e-20) (-68.286 0.0923077 -6.06507e-20) (-59.7322 0.0554398 0) (-41.5754 0.0169117 0) (-41.4247 0.0167252 0) (-59.5778 0.0559624 0) (-68.0859 0.0939409 6.09115e-20) (-67.8811 0.0954922 -6.06607e-20) (-59.4207 0.056826 0) (-41.2742 0.0162494 0) (-41.1216 0.015622 0) (-59.2612 0.0583413 -7.32281e-20) (-67.6694 0.0968574 0) (-67.4519 0.0997658 0) (-59.0985 0.0589683 -1.98024e-23) (-40.9682 0.0159193 0) (-40.8127 0.0171542 0) (-58.9322 0.0580645 7.29326e-20) (-67.2269 0.103017 0) (-66.9937 0.106145 0) (-58.7624 0.0582891 -7.32485e-20) (-40.6564 0.0177194 0) (-40.4972 0.0184339 0) (-58.5888 0.0586688 -2.04641e-23) (-66.7546 0.109632 0) (-66.5065 0.113775 0) (-58.4106 0.057308 7.29526e-20) (-40.337 0.0202718 0) (-40.1743 0.0214131 0) (-58.2281 0.0566251 0) (-66.2496 0.118075 6.09568e-20) (-65.9859 0.121038 -6.07053e-20) (-58.041 0.057348 0) (-40.0104 0.0214483 0) (-39.8443 0.0213346 0) (-57.8495 0.0581599 0) (-65.7127 0.124159 6.09696e-20) (-65.4323 0.12725 -6.0718e-20) (-57.6529 0.0591873 0) (-39.6774 0.0210599 0) (-39.5081 0.0208585 0) (-57.4512 0.0607246 -7.32992e-20) (-65.1414 0.130233 0) (-64.8425 0.135115 0) (-57.2437 0.0606264 7.29951e-20) (-39.3372 0.0219101 0) (-39.1639 0.0229613 0) (-57.0293 0.0599401 0) (-64.5314 0.140576 6.09976e-20) (-64.2124 0.144253 -6.07458e-20) (-56.8091 0.0609524 0) (-38.989 0.0228713 0) (-38.8123 0.0227573 0) (-56.5824 0.0619792 0) (-63.882 0.14773 0) (-63.542 0.152893 0) (-56.3488 0.062782 0) (-38.6342 0.0227319 0) (-38.4535 0.0224225 0) (-56.1073 0.0636813 0) (-63.1908 0.158544 6.10292e-20) (-62.8293 0.163052 -6.07771e-20) (-55.8578 0.0651005 0) (-38.2709 0.0217461 0) (-38.0864 0.020898 0) (-55.6005 0.0668467 0) (-62.455 0.167752 6.10465e-20) (-62.071 0.172393 -6.07943e-20) (-55.3346 0.0689956 0) (-37.9004 0.0198811 0) (-37.7123 0.0189968 0) (-55.0596 0.0718619 -7.33823e-20) (-61.6733 0.176823 0) (-61.2651 0.183572 0) (-54.7752 0.0726641 7.30764e-20) (-37.5218 0.0192629 0) (-37.3288 0.0192328 0) (-54.4793 0.0729178 0) (-60.8409 0.191018 6.10843e-20) (-60.4068 0.196067 -6.0832e-20) (-54.1737 0.0755833 0) (-37.1338 0.0177433 0) (-36.9368 0.0160775 0) (-53.8574 0.0787801 0) (-59.958 0.200469 0) (-59.4964 0.206879 0) (-53.5294 0.0824718 -7.34307e-20) (-36.7375 0.0144711 0) (-36.5345 0.0138554 0) (-53.1894 0.084615 7.31242e-20) (-59.0223 0.213998 0) (-58.5302 0.221525 0) (-52.8353 0.0870985 -7.34518e-20) (-36.3286 0.0131996 0) (-36.1187 0.0124351 0) (-52.4695 0.0897991 7.3145e-20) (-58.0274 0.229285 0) (-57.5057 0.237405 0) (-52.0881 0.0929416 -7.3474e-20) (-35.9052 0.0115187 0) (-35.6859 0.0107285 0) (-51.6938 0.0970911 -2.83276e-23) (-56.9726 0.245928 0) (-56.421 0.255615 0) (-51.2831 0.0995216 -2.86937e-23) (-35.4614 0.0114034 0) (-35.2305 0.0123937 0) (-50.8572 0.101482 7.319e-20) (-55.8533 0.26564 0) (-55.2665 0.275604 0) (-50.4137 0.105597 -7.3522e-20) (-34.9936 0.0123264 0) (-34.748 0.012327 0) (-49.9548 0.109829 7.32143e-20) (-54.6671 0.286225 0) (-54.0451 0.29753 0) (-49.4757 0.114481 -7.3548e-20) (-34.4946 0.0123937 0) (-34.2308 0.0125652 0) (-48.98 0.119464 7.32401e-20) (-53.4096 0.309398 0) (-52.7497 0.322062 0) (-48.4619 0.12497 -7.35756e-20) (-33.9573 0.0128094 0) (-33.6712 0.0131332 0) (-47.9257 0.130855 7.32675e-20) (-52.0752 0.33535 0) (-51.3745 0.34943 0) (-47.365 0.137274 -7.36049e-20) (-33.3735 0.0134313 0) (-33.0611 0.0137783 0) (-46.7845 0.144305 7.32967e-20) (-50.658 0.363927 0) (-49.9131 0.379326 0) (-46.1769 0.152057 -7.36361e-20) (-32.7343 0.0140834 0) (-32.3901 0.0146827 0) (-45.5467 0.161057 -3.33006e-23) (-49.15 0.395892 0) (-48.359 0.414216 0) (-44.8881 0.167266 7.33441e-20) (-32.0289 0.0170541 0) (-31.6484 0.0181562 0) (-44.2006 0.176596 -7.36868e-20) (-47.5391 0.432818 0) (-46.6982 0.452409 0) (-43.4861 0.186542 7.33784e-20) (-31.2473 0.0194324 0) (-30.8228 0.0206405 0) (-42.7373 0.197181 -7.37235e-20) (-45.822 0.473266 0) (-44.9223 0.495184 0) (-41.9585 0.208594 7.34153e-20) (-30.375 0.0218506 0) (-29.9015 0.0230949 0) (-41.1406 0.22087 -7.37629e-20) (-43.9835 0.518506 0) (-43.0183 0.543062 0) (-40.2891 0.2341 7.34549e-20) (-29.401 0.0245838 0) (-28.8705 0.0261885 0) (-39.3942 0.248398 -7.38049e-20) (-42.0099 0.569208 0) (-40.9721 0.59666 0) (-38.4622 0.263802 7.34974e-20) (-28.3083 0.0279512 0) (-27.7109 0.0296964 0) (-37.482 0.280538 -7.38498e-20) (-39.8867 0.625823 0) (-38.7675 0.657004 0) (-36.46 0.299732 -3.75639e-23) (-27.0753 0.0318444 0) (-26.3976 0.0364497 0) (-35.3873 0.316667 -3.77585e-23) (-37.5991 0.691591 0) (-36.3835 0.728686 0) (-34.2639 0.334575 -3.7898e-23) (-25.6761 0.0420559 0) (-24.9061 0.0487947 0) (-33.0871 0.353269 -3.79362e-23) (-35.1177 0.768791 0) (-33.7993 0.811414 0) (-31.8542 0.371555 7.36442e-20) (-24.0855 0.0564884 0) (-23.21 0.0627309 0) (-30.5587 0.394696 -7.40031e-20) (-32.4198 0.855311 0) (-30.9916 0.901741 0) (-29.2058 0.419449 7.37e-20) (-22.2746 0.0695819 0) (-21.275 0.0769175 0) (-27.7793 0.445661 -7.40604e-20) (-29.4891 0.951488 0) (-27.9315 1.00433 0) (-26.2886 0.474159 7.37595e-20) (-20.207 0.0850049 0) (-19.0648 0.0933242 0) (-24.7147 0.504377 -7.41208e-20) (-26.2901 1.06125 0) (-24.5851 1.12244 0) (-23.0684 0.536468 7.38231e-20) (-17.8429 0.103192 0) (-16.5357 0.115549 0) (-21.3268 0.569119 -7.4185e-20) (-22.7843 1.18925 0) (-20.9085 1.26142 0) (-19.5019 0.604804 7.38916e-20) (-15.1367 0.129807 0) (-13.6349 0.145149 0) (-17.5671 0.642656 -7.42526e-20) (-18.9219 1.34094 0) (-16.8436 1.42845 0) (-15.5312 0.685103 7.39653e-20) (-12.0242 0.162166 0) (-10.2944 0.18227 0) (-13.3615 0.729377 0) (-14.6331 1.5282 0) (-12.2963 1.64242 0) (-11.0579 0.78704 0) (-8.42845 0.204936 0) (-6.38095 0.235387 0) (-8.57691 0.859674 0) (-9.79122 1.77915 0) (-7.1061 1.94393 0) (-5.8807 0.946513 0) (-4.08034 0.27091 0) (-1.64029 0.39215 0) (-3.06601 1.20421 0) (-4.28829 2.28532 0) (-1.37342 2.57042 0) (0.527837 1.29061 0) (2.13352 0.398981 0) (4.99355 0.322258 0) (4.29398 1.14857 1.83669e-20) (2.57924 2.50251 -1.53194e-20) (6.17659 2.6163 -6.15348e-20) (7.8191 1.26008 0) (8.03688 0.382306 0) (11.531 0.427781 0) (11.7417 1.35978 -1.46034e-19) (10.1009 2.82665 1.22487e-19) (14.3312 3.19647 -2.56071e-19) (15.8757 1.55419 1.56353e-19) (15.2263 0.514767 -1.90051e-19) (19.5023 0.569288 0) (20.5043 1.74127 0) (18.9123 3.54723 7.94898e-19) (24.2496 4.15161 0) (25.7641 2.08569 0) (24.4163 0.767036 0) (28.3288 0.976439 0) (29.7086 2.54202 -3.68091e-19) (27.947 5.05482 3.11773e-19) (37.7118 5.55673 2.07171e-20) (39.9486 2.80175 2.48093e-20) (38.7157 1.0306 0) (34.1642 9.77357 2.28653e-19) (27.2461 16.0813 -4.9702e-19) (19.4492 21.1621 4.33858e-19) (10.2189 24.9256 -9.12974e-19) (1.58767 27.0397 8.66759e-19) (-6.57846 28.0689 -4.54706e-19) (-12.862 28.6664 4.50727e-19) (-18.1762 29.0688 1.436e-20) (-22.5478 29.3406 -1.42743e-20) (-26.2794 29.5554 -1.13162e-19) (-29.4928 29.7373 4.40537e-19) (-32.2822 29.928 -1.25906e-18) (-34.7503 30.148 8.01671e-19) (-36.8915 30.4209 0) (-38.805 30.9259 -1.27605e-17) (-41.2761 31.5163 4.9676e-18) (-42.3682 31.4663 -3.54188e-18) (-42.7813 30.9049 3.04123e-17) (-41.5483 30.0718 -4.51939e-18) (-40.5484 29.8097 -6.63763e-18) (-38.9912 29.9001 3.06952e-18) (-36.6875 29.9661 -9.74478e-19) (-33.8036 29.974 -2.62969e-19) (-30.2773 29.8061 2.57799e-19) (-26.2747 29.3733 -5.62727e-20) (-21.8097 28.4425 0) (-16.8675 26.9927 1.7891e-21) (-11.2863 25.0282 -2.13671e-24) (-5.03745 23.3487 -1.85071e-21) (1.12634 21.1673 0) (6.87374 20.2347 0) (12.3588 19.4275 0) (17.7585 18.7468 0) (23.1989 18.1344 0) (28.7492 17.5624 0) (34.4484 17.0185 0) (40.3107 16.494 0) (46.3333 15.9826 0) (52.5047 15.4683 0) (58.8449 14.9385 0) (65.4112 14.4309 0) (72.2438 13.9288 0) (79.3931 13.4285 0) (86.8919 12.9239 0) (94.7291 12.4109 0) (102.845 11.8886 0) (111.147 11.3541 0) (119.527 10.8045 0) (127.874 10.2413 0) (136.073 9.66756 0) (144.006 9.08787 0) (151.565 8.50959 -1.87297e-21) (158.673 7.93991 3.74345e-21) (165.305 7.39511 1.30962e-20) (171.566 6.86623 -7.44913e-20) (177.576 6.2675 5.95612e-20) (183.379 5.6123 -2.92301e-20) (188.828 4.91435 -1.17842e-19) (193.881 4.15721 1.13535e-19) (198.265 3.38283 0) (201.848 2.57142 -3.50774e-19) (204.546 1.8034 -8.03897e-19) (206.064 1.07512 1.06397e-18) (206.89 0.342949 -7.19006e-20) (208.584 0.340908 6.62398e-20) (209.463 0.341989 -1.47696e-19) (210.226 0.342626 5.75196e-19) (211.094 0.349046 -9.23768e-19) (211.971 0.346699 4.36652e-19) (212.864 0.349312 0) (213.742 0.348089 -2.76592e-20) (214.615 0.347691 2.80188e-20) (215.475 0.345788 -1.75293e-21) (216.325 0.343617 0) (217.165 0.340948 0) (217.994 0.338057 0) (218.813 0.335002 0) (219.621 0.331741 -1.40345e-20) (220.417 0.328266 1.40216e-20) (221.201 0.324898 0) (221.973 0.32135 0) (222.732 0.317723 0) (223.48 0.314013 0) (224.217 0.310225 2.7326e-23) (224.941 0.306585 0) (225.655 0.302815 -2.72823e-23) (226.358 0.299262 -5.44929e-23) (227.051 0.295606 -1.39271e-20) (227.734 0.291936 1.3911e-20) (228.407 0.288441 -1.39033e-20) (229.071 0.284855 1.38868e-20) (229.727 0.281461 0) (230.375 0.27794 0) (231.015 0.274553 0) (231.648 0.271234 0) (232.275 0.268018 2.70433e-23) (232.895 0.264902 0) (233.511 0.261719 0) (234.12 0.258722 -2.69401e-23) (234.726 0.2557 2.69407e-23) (235.326 0.252917 0) (235.922 0.250086 -1.37484e-20) (236.513 0.247337 1.37047e-20) (237.1 0.244874 -5.3645e-23) (237.682 0.242388 0) (238.26 0.240005 0) (238.833 0.237852 -1.36807e-20) (239.401 0.235716 1.3664e-20) (239.964 0.233794 0) (240.521 0.23188 2.66769e-23) (241.072 0.230151 -1.36267e-20) (241.618 0.228408 1.36101e-20) (242.156 0.226845 0) (242.689 0.225208 2.65727e-23) (243.214 0.223691 -1.35739e-20) (243.733 0.222109 1.35837e-20) (244.244 0.220621 -1.35481e-20) (244.748 0.218965 1.35246e-20) (245.245 0.217363 0) (245.735 0.215707 0) (246.218 0.21385 0) (246.693 0.211956 0) (247.162 0.209836 0) (247.623 0.207696 0) (248.078 0.20526 0) (248.526 0.202619 -2.62733e-23) (248.967 0.199911 -5.24715e-23) (249.401 0.196869 0) (249.828 0.193596 0) (250.249 0.190181 -1.33835e-20) (250.663 0.186409 1.33863e-20) (251.07 0.18252 0) (251.471 0.178399 -1.33448e-20) (251.865 0.173963 1.33283e-20) (252.252 0.169388 0) (252.632 0.164507 0) (253.005 0.159467 0) (253.372 0.154161 0) (253.731 0.148721 0) (254.084 0.143033 0) (254.429 0.137238 0) (254.766 0.131236 0) (255.097 0.12519 0) (255.419 0.118924 0) (255.735 0.11258 0) (256.042 0.106228 0) (256.341 0.0997783 0) (256.632 0.0933526 -1.31471e-20) (256.915 0.0868775 1.31332e-20) (257.19 0.080457 0) (257.456 0.0740091 0) (257.713 0.0677001 0) (257.961 0.0614959 0) (258.2 0.0554022 0) (258.429 0.0494397 0) (258.649 0.0436571 2.55195e-23) (258.858 0.0379809 0) (259.056 0.0324268 0) (259.244 0.0270489 0) (259.421 0.0218085 0) (259.586 0.0167556 0) (259.739 0.0117504 -1.29752e-20) (259.88 0.00688612 1.30322e-20) (260.007 0.00223917 2.5332e-23) (260.122 -0.00233459 -1.29397e-20) (260.222 -0.00682707 1.29264e-20) (260.308 -0.0112073 0) (260.378 -0.0155985 -1.29045e-20) (260.432 -0.019939 1.29156e-20) (260.47 -0.0243512 0) (260.49 -0.0290153 0) (260.493 -0.0336227 0) (260.478 -0.0381969 0) (260.447 -0.0428188 0) (260.403 -0.0473339 -1.2824e-20) (260.353 -0.0515584 1.28083e-20) (260.302 -0.0554497 0) (260.241 -0.0592213 2.50121e-23) (260.125 -0.0644429 -1.27817e-20) (259.935 -0.0707963 1.27791e-20) (259.693 -0.0778398 0) (259.419 -0.0852019 0) (259.128 -0.09258 0) (258.817 -0.0998695 -2.48701e-23) (258.467 -0.107929 0) (258.066 -0.116867 0) (257.613 -0.126697 2.48187e-23) (257.099 -0.13766 0) (256.517 -0.149947 0) (255.861 -0.163718 0) (255.12 -0.179249 0) (254.286 -0.196771 0) (253.348 -0.216734 0) (252.293 -0.239131 0) (251.108 -0.264092 2.47302e-23) (249.781 -0.292608 0) (248.302 -0.325071 0) (246.654 -0.361512 0) (244.822 -0.402551 -1.27192e-20) (242.79 -0.448489 1.26206e-20) (240.546 -0.499968 0) (238.073 -0.556889 0) (235.358 -0.620393 0) (232.387 -0.690675 0) (229.146 -0.768382 0) (225.623 -0.853756 0) (221.809 -0.946233 0) (217.692 -1.04636 0) (213.265 -1.15429 0) (208.52 -1.27 0) (203.454 -1.39327 0) (198.064 -1.52374 0) (192.348 -1.66085 0) (186.308 -1.80384 0) (179.949 -1.95171 0) (173.278 -2.10317 0) (166.304 -2.25668 0) (159.04 -2.41042 0) (151.503 -2.5623 0) (143.712 -2.71 0) (135.691 -2.85106 0) (127.466 -2.98285 0) (119.068 -3.10281 0) (110.528 -3.2086 0) (101.881 -3.2984 0) (93.1625 -3.37028 0) (84.4082 -3.42277 0) (75.6578 -3.45528 0) (66.9467 -3.46809 0) (58.2963 -3.46198 0) (49.6873 -3.43822 0) (41.1973 -3.39788 0) (32.964 -3.34197 0) (24.9722 -3.27125 0) (17.1415 -3.18687 0) (9.48945 -3.08881 0) (2.06895 -2.9757 0) (-5.10099 -2.84512 0) (-11.8921 -2.71187 0) (-18.3967 -2.57699 0) (-24.598 -2.44188 0) (-30.4941 -2.30754 0) (-36.0872 -2.17472 0) (-41.3804 -2.04403 0) (-46.3776 -1.91603 0) (-51.083 -1.79115 0) (-55.5021 -1.66983 0) (-59.6407 -1.55242 0) (-63.5057 -1.43926 0) (-67.1047 -1.33063 0) (-70.446 -1.22678 0) (-73.5388 -1.12789 0) (-76.3928 -1.03411 0) (-79.0187 -0.945552 0) (-81.4272 -0.862244 0) (-83.6297 -0.784182 0) (-85.6377 -0.711304 0) (-87.4629 -0.643502 0) (-89.1169 -0.580618 0) (-90.6108 -0.522457 0) (-91.9558 -0.468788 0) (-93.1624 -0.419353 0) (-94.2406 -0.373872 0) (-95.1998 -0.332055 0) (-96.0488 -0.293602 0) (-96.7958 -0.258217 0) (-97.4483 -0.225609 0) (-98.0131 -0.195495 0) (-98.4968 -0.167611 0) (-98.905 -0.141708 0) (-99.2432 -0.117556 2.47968e-23) (-99.5162 -0.0949502 0) (-99.7285 -0.0737039 0) (-99.8843 -0.0536593 0) (-99.9873 -0.0346814 0) (-100.041 -0.0166604 0) (-100.048 0.000495122 0) (-100.012 0.0168046 0) (-99.936 0.0323526 0) (-99.8298 0.0474758 0) (-99.6932 0.0620176 0) (-99.5142 0.0758311 0) (-99.2869 0.0888271 0) (-99.025 0.101045 0) (-98.7439 0.113045 0) (-98.4399 0.124472 0) (-98.1076 0.135218 0) (-97.7478 0.145269 0) (-97.3624 0.154606 0) (-96.953 0.163198 0) (-96.5216 0.171008 0) (-96.0701 0.178 0) (-95.6009 0.184139 0) (-95.1163 0.189356 -1.98654e-22) (-94.6189 0.193679 0) (-94.1111 0.196843 0) (-93.5952 0.198929 -1.57883e-21) (-93.0717 0.199205 0) (-92.5469 0.199179 1.25438e-20) (-92.0191 0.196009 3.9303e-19) (-91.5069 0.19494 -4.15656e-19) (-91.0132 0.187559 0) (-90.5743 0.182675 0) (-90.2287 0.556902 0) (-89.4747 0.962674 2.40455e-20) (-88.2182 1.40166 1.79041e-19) (-86.427 1.86039 1.7535e-19) (-84.175 2.31485 1.543e-19) (-81.5288 2.75593 -1.9542e-19) (-78.5475 3.18291 9.01078e-20) (-75.2597 3.59665 -9.05407e-20) (-71.6985 3.99798 -1.41858e-21) (-67.8942 4.38639 0) (-63.8788 4.7614 -1.77313e-22) (-59.6836 5.12263 0) (-55.3408 5.47003 0) (-50.8808 5.80381 0) (-46.334 6.12515 0) (-41.7293 6.43559 0) (-37.0949 6.73733 0) (-32.4582 7.03309 0) (-27.8455 7.32589 0) (-23.2813 7.6189 0) (-18.7875 7.91499 0) (-14.3801 8.21625 0) (-10.0622 8.52295 0) (-5.81278 8.83983 0) (-1.58477 9.222 0) (2.60583 9.68884 0) (6.6726 9.94246 0) (10.5416 9.92327 0) (13.9952 9.59026 0) (16.94 8.8758 0) (19.2414 7.77234 0) (20.9509 6.32102 0) (22.5241 5.1603 0) (23.9217 4.22558 0) (25.0972 3.27218 0) (26.1112 2.65138 0) (26.9998 2.15752 0) (27.7354 1.74169 0) (28.336 1.39192 0) (28.8235 1.09576 0) (29.2165 0.844028 0) (29.5327 0.628945 0) (29.7899 0.44367 0) (29.9994 0.284202 0) (30.1534 0.154948 0) (30.2317 0.0685318 0) (30.2465 0.0222066 0) (30.2411 -0.000333487 0) (30.2417 -0.0109963 0) (30.2481 -0.0217203 0) (30.243 -0.0377184 0) (30.2032 -0.0618214 0) (30.1257 -0.0929882 0) (30.028 -0.124766 0) (29.9246 -0.152374 0) (29.8209 -0.17459 0) (29.7173 -0.191904 0) (29.6134 -0.205005 0) (29.509 -0.214434 0) (29.4047 -0.220635 0) (29.301 -0.224022 0) (29.1987 -0.22499 0) (29.0983 -0.223923 0) (29.0002 -0.221174 0) (28.9046 -0.217054 0) (28.8119 -0.211824 0) (28.7222 -0.205681 0) (28.6357 -0.198779 0) (28.5526 -0.191248 0) (28.4729 -0.183203 0) (28.3969 -0.174762 0) (28.3245 -0.166041 0) (28.2558 -0.157139 0) (28.1907 -0.148123 0) (28.1292 -0.139028 0) (28.0713 -0.129881 0) (28.0169 -0.120721 0) (27.9657 -0.111601 0) (27.9178 -0.102556 0) (27.8729 -0.0936032 0) (27.831 -0.0847425 0) (27.7918 -0.0759766 0) (27.7552 -0.0673156 0) (27.7204 -0.0587653 0) (27.6866 -0.050319 0) (27.6532 -0.0420108 0) (27.6214 -0.0340729 0) (27.5951 -0.0271001 -1.38852e-21) (27.5784 -0.0219146 1.01362e-21) (27.5721 -0.0189866 1.90632e-20) (27.5732 -0.0177744 2.03613e-20) (27.578 -0.0173926 -3.16112e-20) (27.5843 -0.0174285 0) (27.591 -0.0179577 -1.6885e-20) (27.5972 -0.0197942 0) (27.6022 -0.0243058 -1.48856e-18) (27.6049 -0.030878 2.74532e-18) (27.6037 -0.0382517 -1.43277e-18) (27.5918 -0.0502849 -8.38241e-19) (27.565 -0.0818037 3.93266e-19) (27.5371 -0.105997 -6.11309e-19) (27.4854 -0.131164 0) (27.5047 -0.135342 6.79265e-21) (27.5178 -0.138143 -6.79713e-21) (27.5235 -0.140074 -8.52377e-22) (27.5233 -0.141113 4.26764e-21) (27.5174 -0.141671 -1.12636e-19) (27.5087 -0.141013 0) (27.4939 -0.139481 -5.47191e-20) (27.4771 -0.137778 0) (27.4542 -0.135506 5.47309e-20) (27.431 -0.13334 0) (27.402 -0.130724 5.47383e-20) (27.3736 -0.128492 0) (27.3391 -0.125941 5.47429e-20) (27.3059 -0.124004 5.4743e-20) (27.2664 -0.121716 5.47458e-20) (27.2292 -0.120173 0) (27.1855 -0.118374 0) (27.1448 -0.117266 -5.19949e-26) (27.0974 -0.115978 0) (27.0538 -0.115307 0) (27.0035 -0.1145 0) (26.9578 -0.11412 -6.41901e-26) (26.9053 -0.1136 0) (26.8582 -0.11326 0) (26.8041 -0.112766 0) (26.7563 -0.11228 -7.93416e-26) (26.7012 -0.111686 0) (26.653 -0.11096 8.44496e-26) (26.5973 -0.110241 0) (26.5489 -0.109215 0) (26.4928 -0.108348 0) (26.4446 -0.107069 0) (26.3883 -0.106102 0) (26.3405 -0.104609 0) (26.2844 -0.103493 5.47547e-20) (26.2374 -0.101571 0) (26.1818 -0.0998948 0) (26.1355 -0.0972032 0) (26.08 -0.0949386 0) (26.0338 -0.0918564 0) (25.9777 -0.0896082 0) (25.931 -0.0866461 0) (25.8739 -0.0847844 5.47529e-20) (25.8266 -0.0821431 0) (25.7686 -0.0806462 0) (25.7206 -0.0782325 0) (25.6616 -0.0769384 0) (25.6131 -0.0746818 0) (25.5532 -0.0735236 0) (25.504 -0.0713626 0) (25.4431 -0.0702176 5.47424e-20) (25.3934 -0.0681297 0) (25.3327 -0.0667221 0) (25.2834 -0.065047 0) (25.2227 -0.0638125 0) (25.1736 -0.0627492 0) (25.1129 -0.0619809 0) (25.0641 -0.0609373 0) (25.0038 -0.0604108 0) (24.9551 -0.0596378 0) (24.8952 -0.0593595 0) (24.8462 -0.0587141 0) (24.7857 -0.0581822 0) (24.7366 -0.0574832 0) (24.6765 -0.0569121 0) (24.6292 -0.0559557 0) (24.5702 -0.0553973 0) (24.5237 -0.0541592 0) (24.4658 -0.0544005 0) (24.42 -0.0530817 0) (24.3628 -0.0538424 0) (24.3175 -0.0527743 0) (24.261 -0.0537969 0) (24.2167 -0.052946 0) (24.1614 -0.0539275 0) (24.1186 -0.0531384 0) (24.0647 -0.05425 0) (24.0234 -0.0535792 0) (23.9708 -0.0548567 0) (23.9311 -0.0543282 0) (23.8799 -0.0558388 0) (23.8418 -0.0554601 0) (23.792 -0.0572 0) (23.7555 -0.0569142 0) (23.7071 -0.0588365 0) (23.6725 -0.0586224 0) (23.6257 -0.0606236 0) (23.5931 -0.0604599 0) (23.548 -0.062552 0) (23.5177 -0.0622248 0) (23.4743 -0.0642129 0) (23.4458 -0.0636665 0) (23.4035 -0.0655717 0) (23.3758 -0.0648294 0) (23.3336 -0.0667419 0) (23.3057 -0.0656216 0) (23.2628 -0.067257 0) (23.2341 -0.0658914 0) (23.1901 -0.0674243 0) (23.1604 -0.0659233 0) (23.1154 -0.0674526 0) (23.085 -0.0658378 0) (23.0391 -0.0673294 0) (23.0082 -0.0656495 0) (22.9617 -0.0671187 0) (22.9306 -0.0654291 0) (22.8839 -0.0669224 0) (22.8527 -0.0653035 0) (22.8058 -0.0668982 0) (22.7749 -0.0654628 0) (22.728 -0.0672248 0) (22.6974 -0.0660773 0) (22.6505 -0.0680744 0) (22.62 -0.0672467 0) (22.5727 -0.0694543 0) (22.5418 -0.0688567 0) (22.4934 -0.0711431 0) (22.4614 -0.0706188 0) (22.4111 -0.0728761 0) (22.3769 -0.0722533 0) (22.3239 -0.0744555 0) (22.2868 -0.0738803 0) (22.2303 -0.0760462 0) (22.1893 -0.0756375 0) (22.1287 -0.0780051 0) (22.0833 -0.0777213 0) (22.0179 -0.0802571 0) (21.9673 -0.0801948 0) (21.8968 -0.0829855 0) (21.8411 -0.0832945 0) (21.7655 -0.0864256 0) (21.7048 -0.0869541 0) (21.6243 -0.0901929 0) (21.5586 -0.0908537 0) (21.4732 -0.0941034 0) (21.4024 -0.0948252 0) (21.3118 -0.0980628 0) (21.2355 -0.0989353 0) (21.1391 -0.102217 0) (21.0567 -0.103171 0) (20.954 -0.106597 0) (20.8649 -0.107331 0) (20.7557 -0.110528 0) (20.6602 -0.111107 0) (20.5447 -0.113857 0) (20.4428 -0.114199 0) (20.321 -0.116724 0) (20.2132 -0.116968 0) (20.0857 -0.119063 0) (19.9722 -0.119296 0) (19.8398 -0.121191 0) (19.7213 -0.12123 0) (19.5848 -0.122416 0) (19.4628 -0.122823 0) (19.324 -0.123409 0) (19.1987 -0.123457 0) (19.0547 -0.122647 0) (18.9269 -0.120891 0) (18.7846 -0.119163 0) (18.6601 -0.116489 0) (18.5232 -0.114436 0) (18.4047 -0.110546 0) (18.2741 -0.107003 0) (18.159 -0.101817 0) (18.0281 -0.0981917 0) (17.9173 -0.0936182 0) (17.7996 -0.0884138 0) (17.6999 -0.081989 0) (17.5891 -0.0754912 0) (17.494 -0.0684777 0) (17.3927 -0.0619917 0) (17.3075 -0.0548923 0) (17.2175 -0.0482336 0) (17.143 -0.0412666 0) (17.0671 -0.0352434 0) (17.0051 -0.0284964 0) (16.9444 -0.0219968 0) (16.8985 -0.0136406 0) (16.855 -0.00760279 0) (16.8247 9.3569e-05 0) (16.796 0.0066486 0) (16.7806 0.0157248 0) (16.7645 0.0217245 0) (16.7634 0.02899 0) (16.7657 0.0360951 0) (16.7847 0.045617 0) (16.8026 0.0530571 0) (16.8344 0.0611087 0) (16.8644 0.0691625 0) (16.9073 0.0782708 0) (16.9519 0.0836297 0) (17.0088 0.0897243 0) (17.0612 0.09445 0) (17.1314 0.102036 0) (17.2068 0.105258 -8.21845e-25) (17.2866 0.116286 0) (17.3545 0.125127 0) (17.4319 0.135209 0) (17.5154 0.113028 5.45842e-20) (17.6127 0.101808 1.79246e-24) (17.7105 0.108662 5.45791e-20) (17.8029 0.119244 -8.81172e-25) (17.8615 0.107738 5.45646e-20) (17.9498 0.0866073 1.07759e-24) (18.0618 0.0829382 5.45648e-20) (18.1634 0.0805287 -8.48136e-25) (18.2271 0.077377 5.45816e-20) (18.2888 0.0712207 2.4995e-25) (18.3769 0.0682785 5.46069e-20) (18.4532 0.0664883 -1.66774e-24) (18.4712 0.0522245 5.46018e-20) (18.5216 0.0193685 1.38099e-24) (18.6102 0.0130168 5.45548e-20) (18.667 0.0139842 5.44427e-20) (18.6613 0.00702012 5.45442e-20) (18.6654 -0.00534826 5.44364e-20) (18.6846 -0.0285831 0) (18.7033 -0.0395467 0) (18.6594 -0.0458883 0) (18.6026 -0.0797557 0) (18.5767 -0.112205 0) (18.5435 -0.128971 0) (18.451 -0.130412 0) (18.3784 -0.151687 0) (18.3067 -0.156684 0) (18.2159 -0.174353 0) (18.0601 -0.190908 0) (17.9065 -0.215117 0) (17.8179 -0.235762 2.73172e-20) (17.7134 -0.2361 -2.72773e-20) (17.469 -0.219026 0) (17.1561 -0.278649 -2.2235e-19) (16.9632 -0.331313 1.14735e-19) (16.8883 -0.386205 -9.68834e-19) (16.7973 -0.399323 1.32948e-18) (16.6616 -0.423326 -1.15563e-18) (17.3396 -0.605762 1.08451e-18) (17.4969 -0.588416 -4.84511e-19) (17.5259 -0.819102 2.14256e-18) (17.3591 -0.814129 -1.00087e-18) (17.223 -1.0051 3.13105e-18) (17.406 -0.999763 -9.22791e-18) (17.5899 -0.949024 -1.51246e-18) (17.6652 -0.795524 6.56619e-18) (17.6179 -0.545039 -4.49661e-19) (17.7004 -0.45815 2.13303e-19) (17.8271 -0.64432 7.01219e-18) (17.9688 -0.58831 -1.07619e-18) (17.8698 -0.36561 7.3243e-19) (18.1452 -0.309352 -5.18748e-20) (18.218 -0.45586 6.57199e-18) (17.9968 -0.769657 -1.07369e-18) (18.3417 -0.668882 1.54163e-19) (18.4123 -0.51047 -5.72181e-18) (18.3621 -0.318081 -8.82387e-19) (18.4832 -0.313563 0) (18.5703 -0.435136 6.54801e-18) (18.6658 -0.46681 6.5295e-18) (18.5717 -0.285906 0) (18.7268 -0.262667 0) (18.8472 -0.363736 0) (18.6765 -0.586037 -1.24838e-18) (18.9815 -0.49032 -1.2418e-18) (18.9894 -0.391582 6.54779e-18) (18.8774 -0.244339 0) (18.9676 -0.221343 0) (19.1089 -0.318982 -2.5538e-20) (19.1733 -0.325955 8.14472e-19) (19.035 -0.205914 -8.54748e-19) (19.1131 -0.184321 8.56379e-19) (19.2717 -0.246587 -8.16929e-19) (19.2149 -0.396224 0) (19.4177 -0.295522 0) (19.366 -0.252736 8.14963e-19) (19.2032 -0.170931 -8.54607e-19) (19.2564 -0.144235 2.86568e-24) (19.4462 -0.184647 0) (19.4916 -0.158204 0) (19.2887 -0.099835 1.3049e-24) (19.3386 -0.064994 -1.47111e-24) (19.5361 -0.0877552 0) (19.5638 -0.187474 0) (19.6417 -0.0935814 0) (19.5899 -0.0842473 0) (19.38 -0.0507487 1.2376e-26) (19.3712 -0.0261739 2.7146e-24) (19.5897 -0.0291 0) (19.5885 -0.0155529 0) (19.3572 0.00186025 -2.58858e-20) (19.3501 0.0165581 -7.78264e-20) (19.578 0.0404856 0) (19.6683 -0.00183808 0) (19.6635 0.0740372 0) (19.5978 0.0386 0) (19.358 0.0281178 -2.58943e-20) (19.3085 0.0287144 -7.78313e-20) (19.5554 0.0691225 0) (19.5217 0.0840743 0) (19.2433 0.0493138 -2.58827e-20) (19.2003 0.0806105 -7.78223e-20) (19.477 0.13289 0) (19.6231 0.135121 0) (19.5565 0.185543 0) (19.4707 0.136156 0) (19.183 0.0981144 -2.58913e-20) (19.1051 0.104265 -7.78212e-20) (19.393 0.154654 0) (19.3435 0.168137 0) (19.0329 0.11338 -2.58791e-20) (18.9795 0.117007 -4.67336e-19) (19.288 0.189311 4.07213e-19) (19.4688 0.239279 0) (19.3757 0.268397 0) (19.2665 0.186027 4.07201e-19) (18.9346 0.122322 -4.6634e-19) (18.8409 0.126981 -4.67297e-19) (19.1772 0.192786 4.07225e-19) (19.1204 0.209339 4.07184e-19) (18.7558 0.139183 -4.66323e-19) (18.6795 0.153256 -4.67322e-19) (19.0388 0.226579 4.07233e-19) (19.265 0.295032 0) (19.1461 0.30136 0) (19.0161 0.22867 4.07261e-19) (18.6341 0.167432 -4.66424e-19) (18.5444 0.161371 -7.78082e-20) (18.9143 0.227868 0) (18.8816 0.229163 0) (18.4801 0.162407 -2.5881e-20) (18.4066 0.164328 -7.78124e-20) (18.7971 0.228047 0) (19.029 0.293243 0) (18.9165 0.269703 -1.23909e-18) (18.7703 0.21519 0) (18.3459 0.176457 9.81025e-25) (18.2663 0.172012 5.18974e-20) (18.6769 0.215652 6.51814e-18) (18.6588 0.194912 4.07375e-19) (18.2253 0.161163 -4.41093e-19) (18.1631 0.141694 -5.1901e-20) (18.5865 0.186127 -6.52534e-18) (18.8191 0.236508 1.24039e-18) (18.7452 0.18742 0) (18.5853 0.156947 4.07384e-19) (18.1255 0.133887 -4.15212e-19) (18.0732 0.125885 0) (18.5227 0.153293 0) (18.5309 0.118361 0) (18.0541 0.118229 0) (18.0153 0.103314 0) (18.4843 0.112113 0) (18.6993 0.128623 0) (18.6855 0.0662614 0) (18.5074 0.0728591 0) (18.007 0.0934352 0) (17.9847 0.0788916 0) (18.4794 0.0702484 0) (18.5177 0.028154 0) (17.9928 0.0680325 0) (17.9843 0.0531232 0) (18.5042 0.0278521 0) (18.7021 0.00230896 0) (18.7489 -0.0605791 0) (18.5545 -0.0178068 0) (18.0041 0.042936 0) (18.0099 0.0265625 0) (18.5562 -0.0140805 0) (18.6256 -0.0600122 0) (18.0476 0.0181968 0) (18.0728 0.00503758 0) (18.6462 -0.0531776 0) (18.8298 -0.119387 0) (18.943 -0.176049 0) (18.7323 -0.10028 0) (18.1275 -0.00325443 0) (18.1659 -0.0173272 0) (18.7665 -0.0912756 0) (18.8684 -0.138644 0) (18.2354 -0.0259493 0) (18.2881 -0.0386607 0) (18.9162 -0.126862 0) (19.0855 -0.229395 0) (19.2551 -0.278666 0) (19.0308 -0.175332 0) (18.3711 -0.0475574 0) (18.4363 -0.0611069 0) (19.0912 -0.160679 0) (19.2229 -0.209441 0) (18.5355 -0.0697877 0) (18.6153 -0.0815958 -4.15209e-19) (19.297 -0.192913 4.07544e-19) (19.4511 -0.323474 0) (19.6712 -0.364425 0) (19.4389 -0.242094 4.07502e-19) (18.7261 -0.08995 -4.15242e-19) (18.8196 -0.101804 -4.15254e-19) (19.5241 -0.223262 4.07596e-19) (19.6776 -0.271825 4.07566e-19) (18.9427 -0.109922 -4.15302e-19) (19.0471 -0.120835 0) (19.7717 -0.251534 0) (19.9118 -0.401396 0) (20.1684 -0.434191 -2.65884e-23) (19.9337 -0.299323 6.53012e-18) (19.1787 -0.128349 0) (19.2903 -0.138443 -4.15398e-19) (20.0351 -0.277793 -6.11632e-18) (20.2017 -0.32353 -6.11606e-18) (19.4287 -0.145781 -4.15468e-19) (19.5465 -0.154726 -4.15479e-19) (20.3072 -0.299802 6.9331e-18) (20.4367 -0.461067 2.51849e-23) (20.712 -0.479579 -2.15214e-23) (20.4765 -0.340961 6.93251e-18) (19.6888 -0.159347 -4.15525e-19) (19.8152 -0.166689 0) (20.5854 -0.313598 -6.53377e-18) (20.7625 -0.354092 -6.53335e-18) (19.9667 -0.171767 0) (20.0934 -0.17848 0) (20.872 -0.327389 0) (20.992 -0.491931 1.24135e-18) (21.2723 -0.498229 0) (21.0452 -0.36449 0) (20.2424 -0.182925 0) (20.37 -0.187511 0) (21.1548 -0.335667 0) (21.3285 -0.368843 0) (20.522 -0.189613 0) (20.6525 -0.192876 0) (21.4386 -0.339426 0) (21.5519 -0.498718 0) (21.8323 -0.493697 0) (21.6133 -0.368721 0) (20.8071 -0.194457 0) (20.9388 -0.195983 0) (21.7237 -0.338948 0) (21.8959 -0.362298 0) (21.0928 -0.196401 0) (21.2195 -0.195747 -4.15824e-19) (22.0001 -0.33378 4.08112e-19) (22.1059 -0.482094 0) (22.3645 -0.464481 0) (22.1624 -0.352086 4.08053e-19) (21.3659 -0.194882 -4.15869e-19) (21.489 -0.192113 0) (22.2597 -0.323729 0) (22.4152 -0.339271 0) (21.6307 -0.190727 0) (21.7467 -0.188134 0) (22.507 -0.313556 0) (22.6097 -0.445509 0) (22.8421 -0.426179 0) (22.6557 -0.325342 0) (21.8828 -0.18639 0) (21.9918 -0.182915 0) (22.7411 -0.302851 0) (22.8811 -0.310945 0) (22.1212 -0.181554 0) (22.2229 -0.178146 0) (22.9604 -0.292022 0) (23.0598 -0.407183 0) (23.2635 -0.387535 0) (23.0921 -0.296369 0) (22.345 -0.176481 0) (22.4388 -0.172355 0) (23.1645 -0.27973 0) (23.2871 -0.280226 0) (22.553 -0.170264 0) (22.6386 -0.165564 0) (23.3521 -0.266113 0) (23.4524 -0.366273 0) (23.6258 -0.344407 0) (23.4658 -0.263741 0) (22.745 -0.163278 0) (22.8224 -0.158577 -4.15678e-19) (23.524 -0.252516 4.07934e-19) (23.6282 -0.247111 -6.11801e-18) (22.9214 -0.156191 -4.15689e-19) (22.9926 -0.151156 -4.15684e-19) (23.6794 -0.238364 6.93507e-18) (23.7845 -0.322324 -2.8235e-23) (23.9286 -0.300707 3.08156e-23) (23.7749 -0.230186 6.93411e-18) (23.0841 -0.148703 -4.15708e-19) (23.1482 -0.143626 0) (23.8187 -0.22361 -6.53533e-18) (23.9072 -0.213455 -6.53445e-18) (23.2324 -0.141185 0) (23.2875 -0.136309 0) (23.9438 -0.209229 6.53581e-18) (24.0588 -0.279684 -3.3845e-23) (24.176 -0.259234 -1.24179e-18) (24.025 -0.197331 6.53477e-18) (23.3647 -0.133829 0) (23.4128 -0.129017 0) (24.055 -0.195344 0) (24.1298 -0.182089 0) (23.4833 -0.126379 0) (23.5247 -0.121664 0) (24.1538 -0.182052 0) (24.2812 -0.239884 0) (24.3761 -0.221683 0) (24.2233 -0.167768 0) (23.5889 -0.118922 0) (23.6243 -0.114403 0) (24.242 -0.16947 0) (24.3073 -0.154657 0) (23.6831 -0.111744 0) (23.7131 -0.10745 0) (24.3217 -0.157934 0) (24.4624 -0.204831 0) (24.5414 -0.189235 0) (24.3838 -0.142643 0) (23.767 -0.104793 0) (23.792 -0.100677 0) (24.3944 -0.147226 0) (24.454 -0.13183 0) (23.8416 -0.0979933 0) (23.8628 -0.0943289 0) (24.4616 -0.137523 0) (24.6146 -0.175045 0) (24.6839 -0.162313 0) (24.5201 -0.122271 0) (23.9093 -0.091804 0) (23.9278 -0.0887702 0) (24.5258 -0.129118 0) (24.5842 -0.113961 0) (23.9722 -0.0865958 0) (23.9885 -0.0843208 -4.15831e-19) (24.5881 -0.122486 4.08013e-19) (24.7505 -0.151205 0) (24.8146 -0.141983 0) (24.6459 -0.107151 4.07905e-19) (24.0316 -0.0828027 -4.15823e-19) (24.0477 -0.0810458 -4.15813e-19) (24.6479 -0.117708 4.07995e-19) (24.7056 -0.102017 4.07888e-19) (24.0898 -0.0802002 -4.15806e-19) (24.1051 -0.0789911 -4.15799e-19) (24.7054 -0.11474 -6.11967e-18) (24.8758 -0.135333 1.2419e-18) (24.9344 -0.131009 -1.2419e-18) (24.7629 -0.098475 4.07877e-19) (24.1468 -0.0787617 -4.15794e-19) (24.1617 -0.0779471 -4.1579e-19) (24.7608 -0.113393 6.93548e-18) (24.818 -0.096309 4.07872e-19) (24.2032 -0.078292 -4.15789e-19) (24.2178 -0.0777605 -4.1579e-19) (24.814 -0.113391 -6.11952e-18) (24.9902 -0.128719 1.24192e-18) (25.0435 -0.128239 0) (24.8708 -0.095397 4.07876e-19) (24.2589 -0.0787335 -4.15795e-19) (24.2731 -0.078392 -4.15801e-19) (24.8651 -0.114586 4.07978e-19) (24.9211 -0.095548 4.07888e-19) (24.3138 -0.0798855 -4.15809e-19) (24.3277 -0.0795768 -4.15817e-19) (24.9139 -0.116572 4.07993e-19) (25.0943 -0.129226 0) (25.1426 -0.131264 0) (24.969 -0.0964152 4.07906e-19) (24.3678 -0.0814219 -4.15828e-19) (24.3813 -0.0809936 -4.15839e-19) (24.9606 -0.118994 4.08015e-19) (25.0147 -0.0977139 4.07932e-19) (24.4208 -0.0830622 -4.15854e-19) (24.434 -0.0824444 -4.15868e-19) (25.0053 -0.12168 4.08044e-19) (25.1884 -0.133991 0) (25.2317 -0.137216 0) (25.0582 -0.0993748 4.07965e-19) (24.4727 -0.0847065 -4.15887e-19) (24.4854 -0.0838664 -4.15905e-19) (25.048 -0.124437 4.0808e-19) (25.0993 -0.101217 4.08004e-19) (24.5232 -0.0862292 -4.15928e-19) (24.5354 -0.0851082 -4.15949e-19) (25.0883 -0.126872 -6.12179e-18) (25.2723 -0.140611 1.24249e-18) (25.3104 -0.143747 -1.24265e-18) (25.138 -0.103011 4.08049e-19) (24.5722 -0.0874424 -4.15975e-19) (24.5839 -0.0858922 0) (25.1264 -0.128392 6.5384e-18) (25.175 -0.104397 0) (24.6196 -0.0878839 0) (24.6295 -0.0862812 -4.16049e-19) (25.1633 -0.128934 -6.1232e-18) (25.3469 -0.146088 1.24282e-18) (25.3827 -0.14688 0) (25.2103 -0.105533 4.08147e-19) (24.6647 -0.0880444 -4.16078e-19) (24.676 -0.0860388 -4.16102e-19) (25.1997 -0.128284 4.08267e-19) (25.2463 -0.105907 4.08197e-19) (24.7115 -0.0871925 -4.16131e-19) (24.7246 -0.0849239 0) (25.2377 -0.126117 0) (25.4197 -0.146337 0) (25.4595 -0.144569 0) (25.2857 -0.105345 0) (24.7616 -0.0853891 0) (24.7757 -0.0832792 -4.16206e-19) (25.2801 -0.123115 4.08365e-19) (25.3292 -0.104285 4.08293e-19) (24.8148 -0.0834215 -4.16233e-19) (24.8326 -0.0812919 -4.16254e-19) (25.327 -0.119717 4.08411e-19) (25.5033 -0.141683 0) (25.5513 -0.138504 0) (25.3776 -0.102813 4.08336e-19) (24.8737 -0.0811516 -4.1628e-19) (24.8941 -0.0792332 -4.16299e-19) (25.3783 -0.116173 4.08454e-19) (25.4304 -0.101328 4.08378e-19) (24.9371 -0.0790562 -4.16324e-19) (24.9596 -0.0774781 -4.16343e-19) (25.4336 -0.112945 -6.12736e-18) (25.603 -0.135467 1.24376e-18) (25.6579 -0.132864 -1.24389e-18) (25.4868 -0.100201 4.08418e-19) (25.0042 -0.0773901 -4.16367e-19) (25.0285 -0.0761519 -4.16386e-19) (25.492 -0.110152 6.94505e-18) (25.5459 -0.0994894 4.08459e-19) (25.0743 -0.0761545 -4.16411e-19) (25.1003 -0.0752354 -4.16431e-19) (25.5531 -0.107722 -6.12861e-18) (25.7154 -0.130714 1.24403e-18) (25.7755 -0.128916 0) (25.6075 -0.0991121 4.085e-19) (25.1472 -0.0753035 -4.16455e-19) (25.1746 -0.0746829 -4.16476e-19) (25.6164 -0.105627 4.08618e-19) (25.6712 -0.0989702 4.0854e-19) (25.2224 -0.0747744 -4.165e-19) (25.2512 -0.0743803 -4.16521e-19) (25.6818 -0.103819 4.08659e-19) (25.838 -0.127427 0) (25.9029 -0.12636 0) (25.7371 -0.0988869 4.0858e-19) (25.3 -0.0743647 -4.16545e-19) (25.3302 -0.0739655 0) (25.7492 -0.101998 0) (25.805 -0.0985457 0) (25.3795 -0.0736256 0) (25.4093 -0.0736093 0) (25.8175 -0.100147 0) (25.9693 -0.125681 0) (26.0355 -0.124877 0) (25.8728 -0.0985393 0) (25.4585 -0.0734 0) (25.4882 -0.0739912 -4.16652e-19) (25.885 -0.0990758 4.08769e-19) (25.9403 -0.100164 4.08683e-19) (25.5376 -0.0748574 -4.16673e-19) (25.5689 -0.0749213 0) (25.9536 -0.0991376 -6.54853e-18) (26.1027 -0.12479 1.24485e-18) (26.1731 -0.124951 -1.24496e-18) (26.0098 -0.102141 0) (25.619 -0.0769897 0) (25.6507 -0.076788 -4.16731e-19) (26.0264 -0.100002 6.95004e-18) (26.0828 -0.103198 4.08736e-19) (25.7018 -0.0780938 -4.16749e-19) (25.7367 -0.0777615 0) (26.1017 -0.100219 0) (26.2467 -0.125383 0) (26.3218 -0.126412 0) (26.1588 -0.103834 0) (25.7882 -0.0789011 0) (25.8227 -0.0785284 0) (26.1783 -0.100647 0) (26.2351 -0.104728 0) (25.8737 -0.0798249 0) (25.9081 -0.0793994 0) (26.255 -0.10133 0) (26.3967 -0.127696 0) (26.472 -0.129447 0) (26.3117 -0.106215 0) (25.9593 -0.0809842 0) (25.994 -0.0809644 -4.16874e-19) (26.3328 -0.103089 4.0891e-19) (26.3892 -0.107701 4.08803e-19) (26.0456 -0.0826423 -4.16881e-19) (26.0815 -0.0829867 -4.16899e-19) (26.4107 -0.105308 4.08918e-19) (26.5479 -0.131553 0) (26.6231 -0.134136 0) (26.4665 -0.10987 4.08806e-19) (26.1327 -0.085013 -4.16901e-19) (26.169 -0.0858452 0) (26.4885 -0.108044 0) (26.544 -0.11255 0) (26.2197 -0.0882336 0) (26.2557 -0.0893909 0) (26.5673 -0.11149 0) (26.6983 -0.136711 0) (26.7727 -0.139428 0) (26.6218 -0.114878 4.08792e-19) (26.3063 -0.0912416 -4.1692e-19) (26.3422 -0.0928356 -4.16932e-19) (26.6444 -0.115126 4.08904e-19) (26.6977 -0.117482 4.08779e-19) (26.3917 -0.0945166 -4.16922e-19) (26.4271 -0.0960908 0) (26.7194 -0.118753 0) (26.8449 -0.142409 0) (26.9147 -0.14554 0) (26.7716 -0.12025 0) (26.4756 -0.0979971 0) (26.5096 -0.0996117 0) (26.7926 -0.122602 0) (26.8432 -0.123306 0) (26.5569 -0.101833 0) (26.5901 -0.10359 0) (26.8636 -0.126745 0) (26.9818 -0.148786 0) (27.0461 -0.152155 0) (26.9125 -0.126774 0) (26.6361 -0.106209 0) (26.6682 -0.108195 -4.16927e-19) (26.9322 -0.131291 4.08849e-19) (26.979 -0.130648 4.08719e-19) (26.7127 -0.111157 -4.16908e-19) (26.7444 -0.113171 -4.16919e-19) (26.998 -0.13598 4.08832e-19) (27.1074 -0.155507 0) (27.1659 -0.158705 0) (27.0427 -0.134558 4.08701e-19) (26.7876 -0.116142 -4.16898e-19) (26.8188 -0.117778 0) (27.061 -0.140233 0) (27.1041 -0.137946 0) (26.8609 -0.120367 0) (26.8914 -0.121479 0) (27.122 -0.143737 0) (27.2218 -0.161489 0) (27.2754 -0.163633 0) (27.1635 -0.140631 0) (26.9329 -0.123709 0) (26.9634 -0.124443 0) (27.1815 -0.146511 0) (27.2214 -0.142699 0) (27.0042 -0.126471 0) (27.0346 -0.12692 0) (27.2394 -0.148659 0) (27.3266 -0.16513 0) (27.3755 -0.165979 0) (27.2774 -0.144232 0) (27.0745 -0.128786 0) (27.1045 -0.128989 -4.1685e-19) (27.2955 -0.150281 4.08725e-19) (27.3313 -0.145279 0) (27.1433 -0.130682 -5.21029e-20) (27.1733 -0.130586 0) (27.3493 -0.151313 6.53908e-18) (27.4218 -0.166156 -1.2455e-18) (27.4653 -0.165788 1.24546e-18) (27.3827 -0.145833 0) (27.2108 -0.132073 5.21003e-20) (27.2404 -0.131688 0) (27.4005 -0.151742 -6.54621e-18) (27.4315 -0.145935 -3.19531e-21) (27.2763 -0.132974 0) (27.3045 -0.132438 -4.16787e-19) (27.4488 -0.151747 4.11801e-19) (27.5053 -0.164942 0) (27.5414 -0.163593 1.24532e-18) (27.4768 -0.14581 0) (27.3384 -0.133648 5.20942e-20) (27.3655 -0.133077 -4.16761e-19) (27.4933 -0.151422 -6.1283e-18) (27.5178 -0.1456 4.05203e-19) (27.3969 -0.134328 -4.16722e-19) (27.4221 -0.1339 0) (27.5329 -0.150903 3.19505e-21) (27.5727 -0.161883 0) (27.5986 -0.1599 1.24504e-18) (27.5537 -0.145493 0) (27.4503 -0.135299 5.2022e-20) (27.4727 -0.135167 0) (27.567 -0.15042 -6.54214e-18) (27.5836 -0.14559 -3.19295e-21) (27.4972 -0.136697 0) (27.5165 -0.136801 -5.20152e-20) (27.5948 -0.149937 6.54328e-18) (27.6187 -0.157595 -1.24481e-18) (27.6331 -0.154857 -1.2445e-18) (27.6074 -0.145679 -8.15541e-19) (27.5371 -0.138307 8.32897e-19) (27.5531 -0.138563 -5.28195e-20) (27.6166 -0.149315 6.53781e-18) (27.625 -0.145425 8.15175e-19) (27.5693 -0.139785 -8.31069e-19) (27.5817 -0.14041 -8.12382e-22) (27.6316 -0.148298 -6.53443e-18) (27.6424 -0.151352 1.24877e-18) (27.6468 -0.146001 -1.24726e-18) (27.6366 -0.144241 7.34339e-18) (27.5938 -0.141274 -8.32432e-19) (27.6025 -0.141646 8.32385e-19) (27.6407 -0.146002 -8.06547e-19) (27.6422 -0.141143 6.51772e-18) (27.61 -0.14172 -1.62352e-21) (27.6139 -0.14116 -4.86972e-21) (27.6426 -0.141044 0) (27.6454 -0.137564 -1.23832e-18) (27.6363 -0.124415 1.38154e-18) (27.6391 -0.134413 -6.5253e-18) (27.6153 -0.13966 6.48875e-21) (27.6126 -0.137413 1.16861e-19) (27.6341 -0.131496 1.2679e-20) (27.6251 -0.122546 5.06014e-20) (27.6069 -0.133236 -1.29514e-20) (27.5964 -0.12871 0) (27.6143 -0.116147 -5.0253e-20) (27.6209 -0.10355 -4.52722e-19) (27.6048 -0.0759214 5.85009e-19) (27.6003 -0.104205 0) (27.5819 -0.121616 0) (27.561 -0.114652 0) (27.5828 -0.0951839 0) (27.6065 -0.0600514 1.08371e-18) (27.6104 -0.0853999 9.38326e-19) (27.6165 -0.108517 0) (27.624 -0.125368 -2.01508e-20) (27.6291 -0.137298 2.02771e-20) (27.6293 -0.147074 2.54109e-21) (27.6251 -0.154909 0) (27.6165 -0.161397 0) (27.6029 -0.166987 0) (27.5842 -0.171898 0) (27.5604 -0.176227 0) (27.5319 -0.17999 0) (27.4993 -0.183163 0) (27.4631 -0.185718 0) (27.4238 -0.187572 0) (27.3818 -0.188684 0) (27.3372 -0.189075 0) (27.2903 -0.188786 0) (27.241 -0.187885 0) (27.1893 -0.186492 0) (27.1349 -0.184734 0) (27.0778 -0.182734 0) (27.0179 -0.180611 0) (26.9553 -0.178444 0) (26.8902 -0.176296 0) (26.823 -0.174238 0) (26.7544 -0.172501 0) (26.6855 -0.170447 0) (26.6165 -0.168422 0) (26.5473 -0.166933 0) (26.478 -0.16552 0) (26.4091 -0.164835 0) (26.3418 -0.165338 0) (26.2772 -0.166901 0) (26.2152 -0.168681 0) (26.1539 -0.169775 0) (26.0929 -0.170986 0) (26.0339 -0.172954 0) (25.9772 -0.175378 0) (25.923 -0.178098 0) (25.8714 -0.181114 0) (25.8227 -0.184521 0) (25.7771 -0.18834 0) (25.7348 -0.19232 0) (25.696 -0.195891 0) (25.6605 -0.198301 0) (25.6275 -0.199001 0) (25.5955 -0.19774 0) (25.5632 -0.19473 0) (25.5294 -0.19054 0) (25.4933 -0.18596 0) (25.4544 -0.181857 0) (25.4127 -0.178856 0) (25.3683 -0.177308 0) (25.3211 -0.177473 0) (25.2712 -0.179748 0) (25.2185 -0.184607 0) (25.1631 -0.192424 0) (25.1048 -0.203408 0) (25.0438 -0.217559 0) (24.9801 -0.234608 0) (24.9136 -0.254023 0) (24.8431 -0.275571 0) (24.7669 -0.299441 0) (24.6837 -0.326053 0) (24.5916 -0.355798 0) (24.489 -0.389118 0) (24.3745 -0.425486 0) (24.2464 -0.463908 0) (24.1041 -0.50383 0) (23.9467 -0.544578 0) (23.7738 -0.585445 0) (23.5848 -0.625587 0) (23.3806 -0.664438 0) (23.1631 -0.70078 0) (22.9327 -0.736051 0) (22.6884 -0.771798 0) (22.4262 -0.803976 0) (22.1475 -0.826858 0) (21.8627 -0.843596 0) (21.577 -0.853044 0) (21.2896 -0.852971 0) (21.0013 -0.842565 0) (20.7157 -0.819287 0) (20.438 -0.783417 0) (20.1727 -0.735579 0) (19.9233 -0.677298 0) (19.6938 -0.61017 0) (19.488 -0.535117 0) (19.309 -0.451918 0) (19.1583 -0.361454 0) (19.0378 -0.265431 0) (18.9489 -0.166333 0) (18.8931 -0.0649143 0) (18.8704 0.0368864 0) (18.8804 0.133088 0) (18.9224 0.220431 0) (18.9932 0.296133 0) (19.0857 0.355491 0) (19.1855 0.396057 0) (19.2873 0.418139 0) (19.3874 0.415235 0) (19.4717 0.391734 0) (19.5377 0.335527 0) (19.5751 0.254306 0) (19.5761 0.164457 0) (19.5618 0.0601766 0) (19.5085 -0.073282 0) (19.3859 -0.214279 0) (19.196 -0.364237 0) (18.9237 -0.509714 0) (18.5808 -0.676153 0) (18.1998 -0.835369 1.27071e-21) (17.7544 -0.995403 1.01328e-20) (17.2905 -1.13341 4.03741e-20) (16.8622 -1.29387 1.6251e-19) (16.3076 -1.43537 -1.66166e-19) (16.2201 -1.44859 -9.04249e-19) (17.2036 -1.08641 0) (16.9284 -1.16066 0) (16.0046 -1.44898 1.05303e-18) (15.443 -1.59106 1.33145e-19) (15.7449 -1.54055 0) (14.4741 -1.89148 1.46048e-20) (14.2492 -1.89209 1.68206e-20) (13.4564 -2.05084 -1.26871e-20) (13.7663 -2.0061 7.52463e-18) (14.4506 -1.88457 -1.3614e-18) (15.0444 -1.81275 -8.34886e-20) (15.5398 -1.66734 -4.14753e-20) (13.196 -2.26708 -2.63124e-20) (12.668 -2.38002 1.05787e-19) (12.0749 -2.38653 -1.3741e-18) (12.2332 -2.3659 7.5656e-18) (12.0104 -2.35454 -4.23934e-21) (11.0444 -2.52829 0) (11.3084 -2.49523 3.6977e-21) (9.696 -2.84159 -7.59078e-18) (9.51079 -2.82867 0) (8.41754 -3.02155 0) (8.6152 -3.00162 3.70279e-21) (9.40442 -2.86738 1.37918e-18) (9.95202 -2.88413 0) (10.4788 -2.81159 3.97285e-21) (10.9857 -2.65684 0) (13.7476 -2.07596 0) (16.0909 -1.49362 0) (16.6639 -1.32254 0) (17.1912 -1.12453 0) (17.6886 -0.903279 0) (15.5387 -1.48178 0) (14.9429 -1.72094 0) (14.3352 -1.90777 0) (11.4905 -2.48197 0) (12.0634 -2.3109 0) (12.6689 -2.10955 0) (9.3635 -2.66431 0) (8.83957 -2.84223 0) (8.38306 -3.0289 0) (7.97267 -3.18193 0) (7.52838 -3.27291 1.3282e-21) (7.06453 -3.32154 0) (6.59217 -3.33345 2.41738e-22) (6.9762 -3.33919 7.59203e-18) (6.80294 -3.31502 0) (5.57476 -3.50649 0) (5.76292 -3.51932 -7.59586e-18) (4.08586 -3.82206 -7.60305e-18) (3.86958 -3.77689 0) (2.51434 -3.96145 0) (2.70284 -4.02941 7.60682e-18) (3.67578 -3.73819 -8.06314e-23) (4.03425 -3.70463 0) (4.37186 -3.63695 0) (0.868834 -3.92039 0) (0.638565 -4.00842 0) (0.417748 -4.07837 -1.38377e-18) (0.87476 -4.2844 7.61309e-18) (0.648092 -4.22246 0) (-0.815006 -4.47969 -9.5854e-19) (-0.775656 -4.42952 9.56046e-19) (-3.08208 -4.62878 -3.72089e-21) (-3.39624 -4.57164 0) (-5.43406 -4.57447 0) (-5.581 -4.73972 7.62368e-18) (-4.23301 -4.40138 -1.38683e-18) (-3.93739 -4.24563 0) (-3.77797 -4.10963 0) (-3.63981 -3.95201 0) (1.06875 -3.83317 0) (4.71519 -3.57727 0) (5.04456 -3.46422 0) (5.36376 -3.28708 0) (5.71711 -3.11413 0) (1.63369 -3.43674 0) (1.46896 -3.6014 0) (1.29053 -3.73843 0) (-3.51633 -3.81609 0) (-3.42474 -3.68732 0) (-3.36384 -3.54108 0) (-3.30329 -3.4052 0) (1.8347 -3.27438 0) (6.11318 -2.93902 0) (9.89797 -2.45358 0) (13.2686 -1.85922 0) (16.1185 -1.22133 0) (18.1409 -0.694577 0) (18.5276 -0.47749 0) (18.8347 -0.274536 0) (19.0549 -0.0858125 0) (17.6793 -0.399403 0) (17.1944 -0.676118 0) (16.6771 -0.947092 0) (13.8693 -1.58773 0) (14.4902 -1.29391 0) (15.145 -0.985713 0) (15.7962 -0.673204 0) (18.105 -0.123013 0) (19.2013 0.0988521 0) (19.3022 0.250766 0) (19.3481 0.358152 0) (19.3384 0.433419 0) (18.8459 0.422402 0) (18.6834 0.300382 0) (18.4425 0.122452 0) (16.4203 -0.365699 0) (16.998 -0.0798345 0) (17.5102 0.159989 0) (14.7367 -0.539031 2.14265e-20) (13.9068 -0.837578 0) (13.1133 -1.12885 0) (12.3646 -1.40909 0) (11.6649 -1.67765 0) (11.0222 -1.941 0) (10.442 -2.21162 0) (6.53939 -2.73836 0) (7.00456 -2.51384 0) (7.53935 -2.30502 0) (2.77882 -2.81651 0) (2.39356 -2.9486 0) (2.09 -3.11119 0) (-3.19189 -3.30132 0) (-3.02322 -3.21801 0) (-2.76369 -3.1765 0) (-2.38642 -3.21301 0) (3.2693 -2.72537 0) (8.16137 -2.11824 0) (8.87181 -1.9361 -2.14903e-20) (9.68433 -1.7448 2.14833e-20) (10.6194 -1.5304 0) (5.55509 -2.52956 0) (4.63846 -2.60186 0) (3.8844 -2.6599 0) (-1.86626 -3.3059 0) (-1.18089 -3.4262 0) (-0.318849 -3.54843 0) (-6.932 -4.47638 0) (-7.79861 -4.12231 0) (-8.48059 -3.82336 0) (-8.99896 -3.60813 0) (-9.38648 -3.48354 0) (-9.67405 -3.43764 0) (-9.89175 -3.46295 0) (-10.0396 -3.54499 0) (-10.1387 -3.67006 0) (-10.2409 -3.82453 0) (-10.3304 -3.99249 0) (-10.4228 -4.15569 0) (-10.5347 -4.30747 0) (-10.6753 -4.43586 0) (-10.9087 -4.53345 2.31009e-22) (-9.0809 -4.70542 7.62026e-18) (-9.36161 -4.5331 0) (-12.4389 -4.60279 0) (-12.5581 -4.81009 -7.61849e-18) (-17.692 -4.75664 -7.61185e-18) (-18.0034 -4.61705 0) (-22.2309 -4.73083 0) (-22.2926 -4.86904 7.60875e-18) (-20.0256 -4.58694 -3.11978e-22) (-19.8243 -4.4503 0) (-19.6788 -4.28204 0) (-30.9108 -4.68875 0) (-31.1153 -4.81447 0) (-31.4055 -4.87112 3.65627e-22) (-28.8545 -4.89723 7.6004e-18) (-29.2025 -4.80735 0) (-34.3176 -4.98598 0) (-34.3082 -5.11467 -7.59674e-18) (-42.1269 -5.19987 -7.58615e-18) (-42.4731 -5.10282 0) (-48.2552 -5.32404 0) (-48.2395 -5.33788 7.58245e-18) (-44.9523 -5.02567 -4.14716e-22) (-44.5578 -4.75805 0) (-44.2063 -4.43926 1.32984e-21) (-43.9544 -4.1349 1.33869e-21) (-30.7918 -4.50491 0) (-19.566 -4.11205 0) (-19.4655 -3.95025 0) (-19.3702 -3.80097 0) (-19.2477 -3.70495 0) (-30.661 -3.94752 0) (-30.6902 -4.10046 0) (-30.7289 -4.29579 0) (-43.8109 -3.94764 0) (-43.7498 -3.86001 0) (-43.7482 -3.84645 0) (-58.2805 -3.80959 0) (-58.1835 -4.1114 0) (-58.1055 -4.58115 0) (-58.0423 -5.09692 -1.33491e-21) (-58.1249 -5.59426 -1.32623e-21) (-58.4502 -5.91781 2.13e-20) (-58.9541 -5.92691 4.26009e-22) (-56.4279 -5.41669 7.57175e-18) (-56.8358 -5.40114 0) (-62.6283 -5.99706 -1.35946e-19) (-62.5235 -6.20365 -7.56992e-18) (-73.2231 -5.98722 -7.38119e-21) (-73.6183 -5.81637 1.52775e-19) (-78.8433 -6.82618 -1.69906e-20) (-78.9445 -6.71376 -7.61373e-18) (-75.6981 -5.51117 1.48674e-18) (-74.8096 -4.79271 -4.24448e-20) (-74.0091 -4.30865 -2.11367e-20) (-89.5529 -6.4982 -6.27876e-20) (-89.2485 -8.17386 1.68419e-19) (-89.4014 -10.1429 -4.28575e-19) (-90.7569 -5.42798 -8.88005e-19) (-91.7205 -5.51084 8.15473e-19) (-91.4421 -9.77353 -1.37008e-19) (-91.2742 -15.0687 0) (-173.7 -5.45176 7.48646e-18) (-176.33 -5.59555 4.12629e-19) (-306.2 -8.50395 -2.74768e-19) (-306.343 -7.38802 7.6566e-18) (-254.783 -6.07186 -2.36938e-18) (-251.001 -6.03091 -1.65276e-19) (-247.966 -5.70465 4.09961e-20) (-245.42 -5.10596 4.12164e-20) (-89.8623 -5.10188 0) (-73.5377 -4.21399 0) (-73.3471 -4.12619 0) (-73.4065 -3.98832 0) (-73.7215 -3.88982 0) (-90.4799 -3.23008 0) (-90.1222 -3.48414 0) (-89.9572 -4.02949 0) (-243.5 -4.44536 0) (-241.951 -3.80183 0) (-240.543 -3.25187 0) (-239.305 -2.98804 0) (-91.0351 -3.08931 0) (-74.0847 -3.94082 0) (-58.387 -3.78915 0) (-43.7628 -3.92843 0) (-30.5921 -3.89285 0) (-19.0855 -3.66739 0) (-18.8645 -3.68026 0) (-18.5499 -3.76364 0) (-18.1251 -3.93207 0) (-29.7898 -4.4157 0) (-30.2038 -4.11777 0) (-30.4558 -3.94787 0) (-43.7288 -4.13531 0) (-43.594 -4.49894 0) (-43.297 -5.03649 0) (-42.7664 -5.74859 0) (-29.1604 -4.83936 0) (-17.5594 -4.18938 0) (-16.8394 -4.55386 0) (-15.934 -5.01053 0) (-14.8399 -5.5344 0) (-25.4931 -6.8675 0) (-27.0481 -6.07621 0) (-28.26 -5.39203 0) (-41.9286 -6.63145 0) (-40.7047 -7.66451 0) (-38.9957 -8.80424 0) (-54.212 -10.6632 2.14092e-20) (-55.9611 -8.91257 5.34508e-24) (-57.1463 -7.37104 -2.142e-20) (-57.8896 -6.09106 0) (-58.299 -5.11037 0) (-58.462 -4.42014 0) (-58.4675 -3.98841 0) (-74.3574 -4.24367 0) (-74.5543 -4.8603 0) (-74.6205 -5.81262 0) (-92.8767 -4.93821 0) (-92.347 -3.88034 0) (-91.6985 -3.2756 0) (-238.049 -3.33574 0) (-236.452 -4.21447 0) (-234.301 -5.56346 0) (-231.277 -7.4956 0) (-93.1912 -6.56585 0) (-74.4615 -7.10819 0) (-73.9464 -8.7687 0) (-72.9323 -10.7727 0) (-71.2727 -13.0117 0) (-90.8982 -15.0806 0) (-92.4081 -11.7472 0) (-93.1159 -8.77486 0) (-227.07 -10.114 0) (-221.107 -13.4343 0) (-213.131 -17.1089 0) (-203.099 -20.885 -1.01268e-20) (-88.5531 -18.6665 0) (-68.8246 -15.3577 0) (-51.8237 -12.49 0) (-36.7775 -9.97461 0) (-23.6227 -7.71986 0) (-13.5485 -6.09262 0) (-5.84868 -4.84901 0) (0.782522 -3.66504 0) (6.65015 -2.44322 0) (11.6665 -1.29092 0) (15.5679 -0.250778 -2.14447e-20) (17.9262 0.33689 0) (18.9384 0.496242 0) (19.2998 0.476027 0) (19.2384 0.486101 0) (19.1641 0.467183 0) (19.0843 0.418645 -2.0908e-20) (18.9325 0.472072 0) (18.9656 0.518984 0) (18.9716 0.526742 0) (18.2281 0.441812 0) (18.4313 0.47904 0) (18.5503 0.459085 0) (18.6069 0.393167 0) (18.8867 0.39303 0) (19.0057 0.346088 2.08988e-20) (18.9417 0.25278 0) (18.901 0.143857 0) (18.8886 0.0231991 0) (18.8081 0.00441972 0) (18.8145 0.151776 0) (18.8435 0.283955 0) (18.6285 0.287228 0) (18.6419 0.149408 0) (18.6607 -0.0141321 0) (18.4121 -0.0693796 0) (18.3137 0.0963833 0) (18.1628 0.219023 0) (17.924 0.281864 0) (17.5529 0.267553 0) (17.0249 0.170635 0) (16.3513 -0.00511984 0) (12.7932 -1.02276 0) (13.9519 -0.735526 0) (15.0726 -0.462758 0) (10.8642 -1.84706 0) (9.34072 -2.11866 0) (7.9196 -2.31372 0) (2.11291 -3.73183 0) (3.66657 -3.70987 0) (5.42066 -3.55173 0) (7.34288 -3.30412 0) (12.418 -1.53055 0) (16.0721 -0.250726 0) (16.8839 -0.131112 0) (17.4777 -0.117915 0) (17.8727 -0.20495 0) (16.358 -0.740441 0) (15.2577 -0.920855 0) (13.9163 -1.20461 0) (9.36167 -2.97108 0) (11.3514 -2.55534 0) (13.2058 -2.11488 0) (14.8378 -1.72168 0) (17.1656 -0.695766 0) (18.1205 -0.36939 0) (18.4883 -0.262003 0) (18.6929 -0.19685 0) (18.8296 -0.153178 0) (18.9087 -0.104625 0) (18.9632 -0.235635 0) (19.0525 -0.366819 0) (19.1766 -0.494999 0) (19.0997 -0.65458 0) (18.9737 -0.487379 0) (18.8838 -0.318284 0) (18.7494 -0.392104 0) (18.8395 -0.595076 0) (18.967 -0.797105 0) (19.1328 -0.992531 0) (19.2615 -0.813194 0) (19.3341 -0.617436 0) (19.5218 -0.731336 0) (19.7364 -0.83261 0) (19.9756 -0.919158 0) (19.935 -1.20367 0) (19.6806 -1.09064 0) (19.456 -0.959432 0) (19.3389 -1.17702 0) (19.5841 -1.34404 0) (19.8628 -1.48772 0) (19.7614 -1.80004 0) (19.4559 -1.62514 0) (19.1885 -1.41867 0) (18.9676 -1.18742 0) (18.7939 -0.945891 0) (18.6611 -0.704487 0) (18.5639 -0.473905 0) (18.2833 -0.583039 0) (18.419 -0.831183 0) (18.57 -1.10677 0) (18.2494 -1.29451 0) (18.0107 -1.00771 0) (17.6879 -0.792431 0) (16.1597 -1.46414 0) (17.0845 -1.42384 0) (17.6704 -1.58957 0) (18.0743 -1.9013 0) (18.4839 -1.61806 0) (18.7585 -1.39367 0) (18.9983 -1.6715 0) (19.2914 -1.92269 0) (19.6268 -2.13473 0) (19.456 -2.50422 0) (19.0825 -2.24771 0) (18.7569 -1.94469 0) (18.4342 -2.26303 0) (18.8167 -2.61504 0) (19.245 -2.91796 0) (18.9877 -3.39263 0) (18.4681 -3.05493 0) (17.9435 -2.68655 0) (17.3131 -2.39078 0) (16.3716 -2.31508 0) (14.977 -2.54654 0) (13.1514 -3.04738 0) (11.0111 -3.65055 0) (8.66443 -4.24805 0) (6.16681 -4.79586 0) (3.6474 -5.24567 0) (1.21208 -5.4916 0) (-1.0198 -5.53872 0) (-2.89271 -5.43016 0) (-4.50762 -5.18688 0) (-12.0311 -6.67264 0) (-10.2354 -7.21357 0) (-8.13791 -7.64471 0) (-16.6485 -10.0222 -1.34153e-21) (-19.1887 -9.29908 2.14667e-20) (-21.5081 -8.54876 -2.14851e-20) (-34.0457 -11.095 0) (-30.8943 -12.191 0) (-27.4715 -13.1545 1.34091e-21) (-23.8116 -13.9454 2.68049e-21) (-13.754 -10.5909 0) (-5.74023 -7.88518 0) (-3.04339 -7.88102 0) (-0.0913556 -7.59274 0) (3.08031 -7.0135 0) (-3.57536 -10.3596 0) (-7.14475 -10.8115 0) (-10.5542 -10.8738 0) (-19.7909 -14.4877 0) (-15.5392 -14.6123 0) (-11.224 -14.2563 0) (-20.4298 -19.0494 0) (-25.7736 -19.3695 -5.35049e-21) (-31.0984 -19.1453 5.35308e-21) (-36.1809 -18.4095 -8.03115e-21) (-40.9194 -17.2345 0) (-45.1917 -15.7884 0) (-48.8136 -14.2034 0) (-65.6388 -17.6379 0) (-61.748 -19.8035 0) (-57.0649 -21.7964 0) (-76.7549 -28.0535 0) (-81.6016 -25.1414 8.36575e-20) (-85.4739 -22.024 0) (-191.173 -24.7269 0) (-177.653 -28.4529 7.98608e-20) (-162.81 -31.7423 -8.10589e-20) (-146.662 -35.3507 -1.61499e-19) (-70.8709 -30.6486 0) (-51.4855 -23.501 5.33291e-21) (-45.2319 -24.6881 -5.33774e-21) (-38.5948 -25.0575 2.42998e-24) (-31.9597 -24.699 1.06873e-20) (-48.9496 -31.9737 -2.66382e-21) (-56.6235 -32.7314 1.32965e-21) (-64.0823 -32.3164 0) (-129.444 -38.8471 -8.16932e-20) (-112.073 -41.4184 1.6343e-19) (-95.6975 -41.6614 0) (-81.0406 -39.9793 0) (-41.4687 -30.4801 -1.6239e-24) (-25.6178 -23.7861 -2.67294e-21) (-15.2423 -18.2654 0) (-6.93698 -13.5051 0) (0.100106 -9.54834 0) (6.08736 -6.26028 0) (8.92277 -5.44969 0) (11.5301 -4.65462 0) (13.8379 -3.94277 0) (10.1725 -6.51004 0) (7.09156 -7.48249 0) (3.77171 -8.50867 0) (-2.66614 -12.4457 0) (1.7173 -11.1384 0) (5.65124 -9.82207 0) (9.22498 -8.59168 0) (12.9574 -5.59088 0) (15.7088 -3.48732 0) (17.0436 -3.42997 0) (17.9485 -3.65528 0) (18.6617 -3.97178 0) (18.1996 -4.75664 0) (17.0241 -4.67126 0) (15.2935 -4.91669 0) (12.5196 -7.47159 0) (15.3326 -6.52986 0) (17.4 -6.01112 0) (15.9262 -8.16192 0) (12.6653 -9.54056 0) (8.76081 -10.9937 0) (4.56184 -12.4926 0) (-0.240775 -14.1496 0) (-5.21871 -15.7546 0) (-10.2021 -17.1576 0) (-19.6164 -22.5829 0) (-13.8049 -21.1239 0) (-8.09801 -19.4811 0) (-20.5324 -25.7976 0) (-27.5212 -27.5434 0) (-34.5016 -29.0602 3.99986e-21) (-68.3441 -38.2491 -5.2411e-21) (-56.8287 -36.2037 1.3198e-21) (-45.9592 -34.224 -1.32504e-21) (-35.7991 -32.0832 0) (-13.6403 -23.9257 0) (-2.44114 -17.6806 0) (3.37395 -15.6767 0) (8.45867 -13.6735 0) (13.1646 -11.492 0) (6.58379 -16.6256 0) (-0.11826 -19.5966 0) (-6.78387 -21.8792 0) (-26.4289 -29.8544 0) (-17.7131 -27.4309 0) (-9.3137 -24.4809 0) (-0.860456 -20.7724 0) (12.5246 -13.2756 0) (16.8249 -9.66016 0) (18.1981 -7.31449 0) (18.7744 -5.90038 0) (19.0877 -4.95723 0) (19.3265 -4.24263 0) (19.5321 -3.65382 0) (19.7116 -3.14801 0) (19.8646 -2.70167 0) (19.9929 -2.30161 0) (20.0944 -1.93929 0) (20.1678 -1.60333 0) (20.2156 -1.29636 0) (20.2357 -0.991334 0) (20.5117 -1.04834 0) (20.8018 -1.08948 0) (21.1018 -1.11497 0) (21.1469 -1.44936 0) (20.8276 -1.41904 0) (20.5153 -1.36801 0) (20.4911 -1.69028 0) (20.8266 -1.74924 0) (21.168 -1.78108 0) (21.5073 -1.78776 0) (21.4661 -1.45941 0) (21.4038 -1.12475 0) (21.7029 -1.12055 0) (21.9977 -1.10376 0) (22.2891 -1.07665 0) (22.3897 -1.38663 0) (22.0879 -1.42626 0) (21.7801 -1.45085 0) (21.8383 -1.77119 0) (22.1612 -1.73535 0) (22.4767 -1.68099 0) (22.5608 -1.99698 0) (22.2294 -2.06734 0) (21.8878 -2.11664 0) (21.5361 -2.14261 0) (21.1737 -2.14062 0) (20.8075 -2.10817 0) (20.4454 -2.04192 0) (20.3784 -2.42084 0) (20.774 -2.49399 0) (21.1707 -2.5249 0) (21.1662 -2.94201 0) (20.7319 -2.91536 0) (20.2942 -2.83718 0) (20.1974 -3.30048 0) (20.6864 -3.38122 0) (21.1658 -3.39947 0) (21.626 -3.36579 0) (21.5881 -2.92523 0) (21.5609 -2.51926 0) (21.9374 -2.48216 0) (22.3005 -2.417 0) (22.6493 -2.32771 0) (22.7506 -2.67416 0) (22.3822 -2.7868 0) (21.993 -2.87236 0) (22.0645 -3.2898 0) (22.4824 -3.17752 0) (22.8721 -3.03567 0) (23.2196 -2.87642 0) (23.0848 -2.54363 0) (22.971 -2.22151 0) (22.8718 -1.91071 0) (22.779 -1.61205 0) (22.6841 -1.33487 0) (22.5754 -1.04176 0) (22.8436 -0.997562 0) (23.0881 -0.949395 0) (23.3178 -0.900138 0) (23.4353 -1.14313 0) (23.2035 -1.21166 0) (22.9572 -1.27584 0) (23.056 -1.53737 0) (23.3068 -1.4564 0) (23.5421 -1.36906 0) (23.7652 -1.27875 0) (23.6566 -1.07167 0) (23.5373 -0.848572 0) (23.7432 -0.794897 0) (23.9328 -0.740611 0) (24.1061 -0.686121 0) (24.2276 -0.852353 0) (24.0537 -0.92536 0) (23.8635 -0.998702 0) (23.9732 -1.18727 0) (24.164 -1.09561 0) (24.3381 -1.00487 0) (24.4493 -1.16006 0) (24.276 -1.27044 0) (24.0849 -1.38259 0) (23.876 -1.49535 0) (23.6508 -1.60741 0) (23.4108 -1.71602 0) (23.1538 -1.81718 0) (23.2602 -2.10551 0) (23.5247 -1.98154 0) (23.7701 -1.85007 0) (23.9046 -2.0964 0) (23.6536 -2.25274 0) (23.3824 -2.40208 0) (23.5258 -2.70739 0) (23.8039 -2.52995 0) (24.0599 -2.34491 0) (24.2914 -2.15718 0) (24.1345 -1.93556 0) (23.9975 -1.71437 0) (24.2065 -1.57844 0) (24.3966 -1.44444 0) (24.5681 -1.31363 0) (24.6985 -1.46593 0) (24.5307 -1.61816 0) (24.3431 -1.77525 0) (24.4981 -1.97154 0) (24.6817 -1.79063 0) (24.8438 -1.61636 0) (25.0055 -1.76344 0) (24.8513 -1.96011 0) (24.6739 -2.16546 0) (24.4713 -2.3777 0) (24.2408 -2.59423 0) (23.9806 -2.81076 0) (23.6947 -3.02099 0) (23.3807 -3.22147 0) (23.0221 -3.41317 0) (22.6106 -3.59052 0) (22.1605 -3.73649 0) (21.6841 -3.84296 0) (21.1783 -3.90111 0) (20.6439 -3.89861 0) (20.0902 -3.8206 0) (19.9802 -4.41262 0) (20.6143 -4.47657 0) (21.2141 -4.45304 0) (21.2866 -5.06442 0) (20.6114 -5.13073 0) (19.8785 -5.0984 0) (19.7909 -5.91975 0) (20.6534 -5.87916 0) (21.4152 -5.74289 0) (22.093 -5.53236 0) (21.9026 -4.9227 0) (21.772 -4.36056 0) (22.2909 -4.21472 0) (22.7745 -4.02576 0) (23.206 -3.80828 0) (23.4308 -4.21905 0) (22.9835 -4.48238 0) (22.4674 -4.72505 0) (22.7042 -5.26631 0) (23.2469 -4.96135 0) (23.7039 -4.64408 0) (24.035 -5.0797 0) (23.5738 -5.4609 0) (23.0132 -5.83829 0) (22.3607 -6.19252 0) (21.6235 -6.49469 0) (20.7605 -6.73567 0) (19.689 -6.93321 0) (19.2672 -8.47489 0) (20.832 -7.78202 0) (21.8988 -7.28684 0) (21.9662 -8.40969 0) (20.1652 -9.35398 0) (17.1689 -10.7968 0) (7.92871 -16.416 0) (14.9228 -12.4671 0) (19.9567 -9.90107 0) (22.6942 -8.71908 0) (23.0686 -7.68369 0) (22.7236 -6.88183 0) (23.4079 -6.43136 0) (23.9731 -5.97393 0) (24.4329 -5.51881 0) (24.9026 -5.94888 0) (24.4446 -6.48314 0) (23.8575 -7.02508 0) (24.1136 -7.78896 0) (24.8892 -7.0671 0) (25.4153 -6.37678 0) (25.7971 -5.7706 0) (25.277 -5.42809 0) (24.8169 -5.06775 0) (24.4216 -4.69613 0) (24.0868 -4.32007 0) (23.8069 -3.94633 0) (23.574 -3.57925 0) (23.8971 -3.34157 0) (24.1897 -3.09361 0) (24.4504 -2.8434 0) (24.6918 -3.09044 0) (24.4347 -3.37693 0) (24.1382 -3.66519 0) (24.4233 -3.98918 0) (24.7184 -3.65773 0) (24.968 -3.33207 0) (25.1762 -3.01629 0) (24.911 -2.81006 0) (24.6769 -2.59604 0) (24.8728 -2.35553 0) (25.0415 -2.12469 0) (25.1853 -1.90519 0) (25.3837 -2.03869 0) (25.2535 -2.28188 0) (25.097 -2.5395 0) (25.3483 -2.71404 0) (25.4889 -2.42841 0) (25.6018 -2.1606 0) (25.8397 -2.26708 0) (25.7481 -2.55999 0) (25.6279 -2.87471 0) (25.4744 -3.21025 0) (25.2821 -3.56379 0) (25.0447 -3.93176 0) (24.7573 -4.31053 0) (25.1445 -4.62349 0) (25.4173 -4.19306 0) (25.6365 -3.78006 0) (26.0337 -3.97478 0) (25.8395 -4.43542 0) (25.5882 -4.92096 0) (26.0909 -5.19405 0) (26.3143 -4.6525 0) (26.4764 -4.14191 0) (26.5864 -3.6644 0) (26.1774 -3.54042 0) (25.8075 -3.38687 0) (25.9372 -3.01664 0) (26.032 -2.67195 0) (26.0975 -2.35356 0) (26.3768 -2.41509 0) (26.342 -2.75919 0) (26.2777 -3.13453 0) (26.6518 -3.22183 0) (26.6806 -2.81556 0) (26.6796 -2.44596 0) (26.6547 -2.11239 0) (26.387 -2.10184 0) (26.1382 -2.06117 0) (25.9063 -1.99592 0) (25.6904 -1.91103 0) (25.4903 -1.81072 0) (25.3062 -1.69821 0) (25.1381 -1.57701 0) (24.9854 -1.45033 0) (24.847 -1.32003 0) (24.7212 -1.18743 0) (24.6055 -1.05303 0) (24.4959 -0.91648 0) (24.3859 -0.78069 0) (24.2636 -0.632192 0) (24.406 -0.579791 0) (24.5335 -0.530221 0) (24.6475 -0.484147 0) (24.7708 -0.585657 0) (24.6569 -0.646063 0) (24.5288 -0.711493 0) (24.6381 -0.831743 0) (24.765 -0.751817 0) (24.8776 -0.677699 0) (24.9768 -0.610299 0) (24.8714 -0.530889 0) (24.7495 -0.44179 0) (24.8406 -0.403572 0) (24.922 -0.369157 0) (24.9961 -0.339053 0) (25.1087 -0.404118 0) (25.0378 -0.440653 0) (24.9595 -0.482624 0) (25.0636 -0.550664 0) (25.1398 -0.499848 0) (25.2066 -0.457687 0) (25.2986 -0.506199 0) (25.2348 -0.557091 0) (25.161 -0.618014 0) (25.0762 -0.688373 0) (24.9795 -0.767762 0) (24.8696 -0.855617 0) (24.7452 -0.951092 0) (24.8572 -1.06768 0) (24.9772 -0.95604 0) (25.0827 -0.853886 0) (25.19 -0.937332 0) (25.091 -1.05408 0) (24.9773 -1.18214 0) (25.108 -1.29411 0) (25.2132 -1.14946 0) (25.3036 -1.01779 0) (25.3812 -0.900083 0) (25.276 -0.832746 0) (25.175 -0.76208 0) (25.2557 -0.681163 0) (25.3258 -0.611215 0) (25.3861 -0.552324 0) (25.47 -0.595039 0) (25.415 -0.661606 0) (25.3506 -0.740792 0) (25.4476 -0.796803 0) (25.5041 -0.708119 0) (25.5519 -0.633771 0) (25.5912 -0.573394 0) (25.5161 -0.541018 0) (25.4372 -0.504846 0) (25.354 -0.465809 0) (25.2665 -0.422307 0) (25.1732 -0.372101 0) (25.0643 -0.312766 0) (25.1281 -0.289515 0) (25.1883 -0.26916 0) (25.2452 -0.252077 0) (25.3405 -0.301621 0) (25.2888 -0.321206 0) (25.2331 -0.34462 0) (25.3213 -0.391852 0) (25.3714 -0.366221 0) (25.4171 -0.345085 0) (25.459 -0.328086 0) (25.3887 -0.285878 0) (25.2991 -0.238464 0) (25.3501 -0.228433 0) (25.3985 -0.221739 0) (25.4445 -0.217985 0) (25.5182 -0.26069 0) (25.4771 -0.265738 0) (25.4341 -0.274 0) (25.498 -0.315057 0) (25.5349 -0.305791 0) (25.5703 -0.29993 0) (25.611 -0.337 0) (25.5819 -0.343283 0) (25.5518 -0.353123 0) (25.5199 -0.366823 0) (25.4849 -0.384602 0) (25.4461 -0.406787 0) (25.4027 -0.433583 0) (25.4801 -0.468987 0) (25.5166 -0.441772 0) (25.5477 -0.419327 0) (25.6065 -0.448758 0) (25.583 -0.47069 0) (25.5534 -0.49978 0) (25.6222 -0.526945 0) (25.6449 -0.494413 0) (25.6612 -0.472238 0) (25.6726 -0.455144 0) (25.626 -0.430907 0) (25.5751 -0.401255 0) (25.5996 -0.387351 0) (25.6223 -0.377354 0) (25.6445 -0.370967 0) (25.6731 -0.401063 0) (25.6579 -0.407371 0) (25.6427 -0.417196 0) (25.6816 -0.441963 0) (25.6894 -0.432554 0) (25.6977 -0.426445 0) (25.7191 -0.446386 0) (25.7172 -0.452125 0) (25.7162 -0.460938 0) (25.7145 -0.473429 0) (25.7104 -0.489936 0) (25.7014 -0.513215 0) (25.6861 -0.549344 0) (25.6629 -0.600892 0) (25.6322 -0.667643 0) (25.5941 -0.749924 0) (25.5477 -0.848296 0) (25.4918 -0.963041 0) (25.425 -1.09404 0) (25.3454 -1.24083 0) (25.2507 -1.40228 0) (25.4065 -1.50481 0) (25.4883 -1.32644 0) (25.5546 -1.16446 0) (25.6925 -1.22681 0) (25.642 -1.40369 0) (25.5756 -1.59871 0) (25.7574 -1.68044 0) (25.8054 -1.46925 0) (25.8373 -1.2784 0) (25.8563 -1.10868 0) (25.7301 -1.06926 0) (25.6082 -1.0201 0) (25.6511 -0.893842 0) (25.685 -0.785713 0) (25.7112 -0.695487 0) (25.788 -0.71642 0) (25.7761 -0.814281 0) (25.7574 -0.931794 0) (25.8655 -0.96069 0) (25.8669 -0.834407 0) (25.8625 -0.729359 0) (25.9357 -0.732851 0) (25.9577 -0.844288 0) (25.9753 -0.97846 0) (25.9862 -1.13585 0) (25.988 -1.3164 0) (25.9775 -1.52012 0) (25.9513 -1.74678 0) (26.1573 -1.79427 0) (26.1581 -1.55315 0) (26.1444 -1.33769 0) (26.3079 -1.33884 0) (26.3486 -1.56432 0) (26.3764 -1.81844 0) (26.6104 -1.81363 0) (26.5508 -1.5484 0) (26.4805 -1.3153 0) (26.4037 -1.11277 0) (26.2581 -1.14116 0) (26.1197 -1.14763 0) (26.0873 -0.982531 0) (26.0496 -0.841902 0) (26.0091 -0.725389 0) (26.0844 -0.705457 0) (26.144 -0.82531 0) (26.2027 -0.970302 0) (26.3236 -0.938919 0) (26.2427 -0.792217 0) (26.1632 -0.671489 0) (26.0877 -0.576493 0) (26.0265 -0.610462 0) (25.9681 -0.632578 0) (25.9114 -0.643774 0) (25.8544 -0.645078 0) (25.7946 -0.637622 0) (25.7309 -0.622557 0) (25.7444 -0.566312 0) (25.7516 -0.52663 0) (25.7534 -0.501709 0) (25.7898 -0.507437 0) (25.795 -0.534145 0) (25.7969 -0.57705 0) (25.844 -0.580695 0) (25.8321 -0.53527 0) (25.8195 -0.507107 0) (25.8063 -0.490053 0) (25.7816 -0.490881 0) (25.751 -0.485377 0) (25.7463 -0.473566 0) (25.7412 -0.465497 0) (25.7374 -0.460413 0) (25.7524 -0.468378 0) (25.7611 -0.472431 0) (25.7714 -0.479627 0) (25.7914 -0.479279 0) (25.7768 -0.473109 0) (25.7639 -0.4705 0) (25.7716 -0.467361 0) (25.788 -0.468155 0) (25.8061 -0.473138 0) (25.8248 -0.483289 0) (25.8434 -0.500542 0) (25.8644 -0.529563 0) (25.8873 -0.576416 0) (25.9295 -0.563185 0) (25.8948 -0.515896 0) (25.8642 -0.487259 0) (25.8853 -0.466304 0) (25.9259 -0.493364 0) (25.973 -0.540182 0) (26.019 -0.507033 0) (25.959 -0.461805 0) (25.9079 -0.436978 0) (25.8639 -0.426803 0) (25.8503 -0.452842 0) (25.8383 -0.471193 0) (25.8156 -0.462193 0) (25.7945 -0.458526 0) (25.7753 -0.45984 0) (25.7751 -0.449081 0) (25.7965 -0.445622 0) (25.821 -0.446796 0) (25.8265 -0.425564 0) (25.7961 -0.429232 0) (25.7718 -0.436489 0) (25.7672 -0.421037 0) (25.796 -0.407708 0) (25.833 -0.397721 0) (25.8782 -0.393826 0) (25.9314 -0.400039 0) (25.9939 -0.421352 0) (26.0677 -0.46311 0) (26.1529 -0.529242 0) (26.2472 -0.621303 0) (26.3478 -0.739558 0) (26.4522 -0.884642 0) (26.5584 -1.0582 0) (26.6644 -1.26269 0) (26.7671 -1.50085 0) (26.8619 -1.77511 0) (26.9438 -2.08758 0) (27.0082 -2.44024 0) (27.0497 -2.83444 0) (27.062 -3.27119 0) (27.0378 -3.75101 0) (26.9673 -4.27092 0) (26.8397 -4.8316 0) (26.6344 -5.45133 0) (26.2945 -6.1565 0) (25.7566 -6.8735 0) (24.6264 -7.7714 0) (22.0025 -8.90874 0) (16.3992 -11.9002 0) (8.23871 -16.6761 0) (-2.98726 -22.1504 0) (-13.5838 -26.7136 0) (-24.1533 -30.5744 0) (-34.8422 -34.0583 0) (-46.5348 -37.5301 0) (-59.7289 -41.0014 0) (-74.7665 -44.3749 0) (-91.7274 -47.5042 -5.17771e-21) (-109.829 -50.1659 5.16876e-21) (-128.72 -52.6748 0) (-148.8 -55.0771 0) (-171.042 -57.5657 -3.30323e-19) (-196.089 -59.2846 -1.65654e-19) (-220.48 -58.5461 3.2914e-19) (-242.067 -56.1085 1.59958e-21) (-261.808 -53.1888 1.22855e-18) (-279.215 -48.7597 1.05697e-18) (-293.292 -43.1035 2.4717e-18) (-304.174 -36.7378 1.25362e-18) (-312.402 -30.1428 -1.94742e-20) (-318.216 -23.5822 1.2245e-18) (-321.633 -17.7912 1.22985e-18) (-323.337 -13.1209 1.23372e-18) (-324.086 -9.70593 1.23832e-18) (-324.308 -7.41478 1.24293e-18) (-324.132 -6.14335 1.24669e-18) (-323.598 -5.75304 1.25032e-18) (-323.201 -6.29305 1.25236e-18) (-323.429 -7.60765 -1.25208e-18) (-324.149 -9.0227 0) (-325.223 -10.2285 0) (-326.603 -11.1234 -1.54464e-19) (-328.057 -11.4833 1.53501e-19) (-328.605 -11.595 -1.2072e-18) (-328.445 -12.9327 9.43057e-19) (-328.531 -12.1498 3.4571e-20) (-328.601 -11.3396 -2.19897e-18) (-328.605 -11.3482 6.51623e-18) (-328.864 -11.3992 -1.11292e-18) (-328.928 -11.3825 1.23247e-18) (-329.033 -11.3661 0) (-328.998 -11.3538 3.5961e-18) (-328.915 -11.3456 2.42903e-18) (-329.047 -11.3607 -7.53624e-18) (-329.082 -11.353 1.22875e-18) (-329.107 -11.3288 -2.0107e-18) (-329.063 -11.329 3.63769e-19) (-329.032 -11.3039 0) (-329.08 -11.3068 0) (-328.936 -11.2851 -3.23678e-19) (-328.886 -11.279 0) (-328.266 -11.2205 -1.98253e-19) (-328.315 -11.2265 4.38974e-19) (-328.076 -11.2066 1.17363e-19) (-328.023 -11.1974 9.94796e-20) (-327.63 -11.1688 0) (-327.684 -11.1772 -6.89089e-21) (-327.36 -11.1233 0) (-327.299 -11.0992 0) (-326.206 -11.2452 1.94662e-19) (-326.26 -11.2385 -2.17802e-19) (-326.365 -10.6393 2.20437e-19) (-326.256 -10.6632 -1.46061e-19) (-305.875 -11.5444 -4.99385e-20) (-305.359 -11.5818 1.12111e-19) (-225.078 -9.09233 -2.50193e-19) (-227.845 -9.47874 3.29675e-19) (-103.314 -1.87473 -1.25598e-19) (-98.4553 -1.58004 8.31986e-19) (-112.708 -2.9098 2.25985e-19) (-231.818 -9.97219 4.38173e-22) (-306.477 -11.4162 -4.50078e-19) (-326.087 -10.6568 1.74406e-19) (-326.131 -11.2197 8.75943e-20) (-327.21 -11.0614 1.05508e-23) (-327.549 -11.1522 0) (-327.944 -11.1804 8.9764e-20) (-328.195 -11.2099 2.70866e-19) (-328.811 -11.2684 -4.56668e-19) (-328.961 -11.2945 0) (-329.001 -11.3333 0) (-328.911 -11.3136 0) (-328.873 -11.2794 -3.60383e-19) (-328.716 -11.2526 4.33997e-19) (-328.109 -11.1937 -8.51518e-20) (-328.012 -11.17 2.07441e-20) (-328.612 -11.226 -8.53476e-20) (-328.776 -11.2461 0) (-328.836 -11.301 0) (-328.78 -11.2796 0) (-328.798 -11.3523 -3.80944e-19) (-328.624 -11.3037 0) (-328.589 -11.1723 2.75664e-18) (-328.391 -10.9788 -4.43355e-20) (-328.62 -11.1449 0) (-328.395 -10.9737 0) (-328.108 -10.5544 -2.88375e-23) (-327.755 -9.94245 -1.0348e-18) (-328.308 -10.6019 -3.80685e-19) (-327.449 -10.2594 0) (-327.28 -9.15143 -1.40965e-18) (-327.348 -9.67178 0) (-327.519 -9.9505 6.04088e-18) (-327.752 -10.3399 0) (-327.927 -10.5284 0) (-328.133 -10.8022 0) (-328.264 -10.9303 6.02934e-18) (-328.41 -11.074 -6.04333e-18) (-328.52 -11.1331 -6.00883e-18) (-328.639 -11.2189 -5.9346e-18) (-328.731 -11.2464 -9.38249e-20) (-328.669 -11.207 0) (-328.551 -11.1497 0) (-328.418 -11.0847 0) (-328.225 -11.0813 0) (-328.371 -11.1421 0) (-328.499 -11.1906 1.06602e-19) (-327.906 -11.1394 -2.07848e-20) (-327.783 -11.1006 0) (-327.634 -11.0499 0) (-327.3 -11.0203 0) (-327.473 -11.0609 0) (-327.612 -11.0937 0) (-327.733 -11.1254 -2.04778e-20) (-327.845 -11.1556 7.89679e-20) (-327.45 -11.1283 -7.83417e-20) (-327.108 -11.0139 3.84285e-23) (-326.062 -11.1644 -8.20114e-20) (-326.015 -11.1313 0) (-327.008 -10.9764 0) (-327.342 -11.1038 8.14441e-20) (-327.227 -11.086 -5.08723e-21) (-327.089 -11.0748 0) (-326.904 -11.0594 0) (-326.567 -10.9798 0) (-326.767 -10.97 0) (-326.902 -10.9634 -1.51427e-20) (-325.966 -11.1347 7.06817e-25) (-325.871 -11.1656 0) (-325.684 -11.2031 0) (-325.353 -11.2141 0) (-326.265 -10.965 0) (-326.646 -11.0197 0) (-327.074 -10.9571 0) (-327.445 -10.9765 0) (-328.049 -10.995 0) (-328.264 -10.9826 0) (-328.085 -10.8658 0) (-327.877 -10.6879 0) (-327.641 -10.4707 0) (-327.296 -10.4911 0) (-327.584 -10.7138 0) (-327.836 -10.8792 0) (-327.207 -10.8665 0) (-326.914 -10.7028 0) (-326.576 -10.4716 0) (-326.213 -10.1696 0) (-326.982 -10.2049 0) (-327.377 -10.1868 0) (-327.109 -9.86409 0) (-326.846 -9.4779 0) (-326.613 -9.07647 0) (-327.074 -9.1715 6.05318e-18) (-326.911 -8.90497 6.06664e-18) (-326.907 -8.39183 -1.41072e-18) (-327.277 -9.61723 0) (-326.485 -9.0649 0) (-326.748 -7.52224 0) (-326.78 -6.79057 1.40976e-18) (-326.5 -8.30631 0) (-325.717 -7.78035 -4.29562e-19) (-326.822 -6.10705 3.51191e-19) (-327.037 -5.58141 1.41051e-18) (-325.851 -7.04101 6.15728e-18) (-325.154 -6.56606 0) (-327.318 -5.26032 -1.40924e-18) (-327.939 -5.16158 0) (-325.54 -6.01557 -6.115e-18) (-325.296 -5.79866 0) (-328.697 -5.23452 -1.40592e-18) (-328.615 -5.49387 -3.78307e-19) (-328.184 -5.51966 0) (-327.837 -5.56383 -3.78522e-19) (-327.592 -5.59715 6.00924e-18) (-327.379 -5.74363 -3.31562e-19) (-327.18 -5.83989 0) (-327.02 -6.11297 -6.45023e-18) (-326.887 -6.31308 -4.72927e-20) (-326.849 -6.72472 -3.3206e-19) (-326.753 -6.98074 3.781e-19) (-326.74 -7.41112 -6.06547e-18) (-326.683 -7.67693 4.73551e-20) (-326.724 -8.15219 -4.73647e-20) (-326.748 -8.44669 0) (-326.291 -8.2871 0) (-326.413 -8.67013 0) (-325.929 -8.64358 0) (-326.121 -9.05846 0) (-326.371 -9.47393 0) (-326.665 -9.86199 0) (-325.856 -9.80479 0) (-325.538 -9.39632 0) (-325.285 -8.96519 0) (-324.538 -8.8381 0) (-324.801 -9.28373 0) (-325.153 -9.71581 0) (-325.566 -10.1085 0) (-326.003 -10.4362 0) (-326.419 -10.6836 0) (-326.781 -10.852 0) (-326.298 -10.9277 0) (-325.859 -10.755 0) (-325.359 -10.4838 0) (-324.692 -10.3902 0) (-325.299 -10.6987 0) (-325.84 -10.8847 0) (-324.849 -11.1361 0) (-324.196 -10.897 0) (-323.486 -10.5062 0) (-322.833 -10.0266 0) (-324.098 -9.98261 0) (-324.848 -10.1203 0) (-324.385 -9.69214 0) (-324.012 -9.23333 0) (-323.751 -8.77187 0) (-322.953 -8.57585 0) (-323.204 -9.04316 0) (-323.589 -9.52036 0) (-322.312 -9.51915 0) (-321.946 -9.01842 0) (-321.728 -8.53908 0) (-321.641 -8.08406 0) (-322.827 -8.13021 0) (-323.603 -8.3257 0) (-324.371 -8.40021 0) (-325.11 -8.53563 0) (-325.019 -8.12202 0) (-325.813 -8.24036 0) (-325.776 -7.85666 0) (-326.237 -7.90286 0) (-326.264 -7.53866 0) (-325.806 -7.49052 0) (-325.063 -7.36546 0) (-325.013 -7.73326 0) (-324.317 -7.59591 0) (-324.3 -7.98324 0) (-323.56 -7.90425 0) (-323.595 -7.5137 0) (-323.662 -7.12654 0) (-324.376 -7.22008 0) (-324.45 -6.85042 0) (-325.13 -7.00093 0) (-325.862 -7.13063 0) (-326.311 -7.18817 0) (-326.381 -6.84012 -3.59118e-19) (-326.463 -6.51203 4.04662e-19) (-326.602 -6.18139 0) (-326.214 -6.12362 0) (-326.04 -6.43457 -4.28293e-20) (-325.934 -6.77289 0) (-325.221 -6.6443 0) (-325.359 -6.30733 0) (-325.591 -6.00932 0) (-325.017 -5.89214 0) (-324.725 -6.16627 0) (-324.555 -6.49444 0) (-323.881 -6.38882 0) (-323.749 -6.74815 0) (-323.037 -6.55279 0) (-322.936 -6.93071 0) (-322.863 -7.31966 0) (-322.812 -7.71274 0) (-321.663 -7.65843 0) (-321.737 -7.24478 0) (-321.828 -6.83892 0) (-321.96 -6.45066 0) (-322.174 -6.09848 0) (-323.2 -6.1992 0) (-323.482 -5.89432 0) (-324.101 -6.06733 0) (-324.453 -5.81845 0) (-323.894 -5.67384 0) (-323.015 -5.60338 0) (-322.537 -5.8163 0) (-321.86 -5.67582 0) (-321.436 -5.90517 0) (-321.164 -6.23095 0) (-321.007 -6.60742 0) (-320.909 -7.00855 0) (-320.839 -7.41994 0) (-320.812 -7.83464 0) (-320.885 -8.27666 0) (-321.091 -8.74063 0) (-321.451 -9.23306 0) (-321.985 -9.74951 0) (-322.703 -10.2759 0) (-323.561 -10.7512 0) (-324.427 -11.0498 0) (-325.113 -11.0603 0) (-325.539 -10.9444 0) (-325.766 -10.8111 0) (-325.873 -10.7028 1.97829e-20) (-325.921 -10.6355 0) (-325.968 -10.6163 0) (-307.199 -11.2919 8.39355e-20) (-236.137 -10.3667 6.08738e-23) (-122.675 -4.39931 2.10622e-19) (-131.495 -5.75443 -1.51681e-19) (-240.044 -10.5425 -1.79769e-19) (-307.962 -11.2367 0) (-308.624 -11.258 0) (-309.169 -11.3257 0) (-309.532 -11.4311 0) (-249.052 -10.8732 0) (-246.467 -10.7763 0) (-243.467 -10.6651 -4.44322e-20) (-139.434 -6.70055 -4.97249e-20) (-146.679 -7.4453 0) (-152.957 -8.01594 0) (-157.889 -8.10119 0) (-251.085 -10.8682 0) (-309.562 -11.5211 0) (-309.101 -11.4637 0) (-308.391 -11.0298 0) (-307.844 -10.4506 0) (-253.669 -9.65097 8.96861e-20) (-252.783 -10.1302 0) (-252.153 -10.5899 0) (-161.133 -7.44174 0) (-163.953 -7.15682 0) (-167.02 -6.89471 0) (-170.171 -6.56428 0) (-254.782 -9.17832 -8.95249e-20) (-307.52 -9.87047 0) (-307.383 -9.32226 0) (-307.4 -8.80241 0) (-307.542 -8.30084 0) (-258.56 -7.74149 0) (-257.253 -8.21883 0) (-255.995 -8.69686 0) (-173.309 -6.17443 0) (-176.353 -5.77239 0) (-179.344 -5.38324 0) (-182.235 -5.01718 0) (-259.897 -7.28909 0) (-307.795 -7.82425 0) (-308.118 -7.37425 8.21905e-20) (-308.455 -6.93222 -8.25027e-20) (-308.811 -6.50657 8.21722e-20) (-263.687 -6.03556 0) (-262.465 -6.43213 0) (-261.224 -6.85491 0) (-184.988 -4.66508 0) (-187.521 -4.33648 0) (-189.982 -4.06847 0) (-192.494 -3.91592 0) (-264.959 -5.70929 0) (-309.235 -6.12494 -8.24966e-20) (-309.805 -5.82546 0) (-310.496 -5.61239 0) (-311.2 -5.39887 0) (-322.365 -5.47624 0) (-322.868 -5.28143 0) (-323.513 -5.41 0) (-324.367 -5.48528 0) (-324.893 -5.61654 0) (-325.412 -5.68507 0) (-325.926 -5.78718 0) (-326.483 -5.88098 0) (-326.808 -5.93299 3.59444e-19) (-327.08 -5.74483 0) (-327.364 -5.62942 4.04264e-19) (-327.671 -5.56986 0) (-327.492 -5.47129 0) (-327.149 -5.56437 -4.27907e-20) (-326.813 -5.69412 0) (-326.31 -5.61142 0) (-326.693 -5.47543 0) (-327.077 -5.37397 0) (-327.473 -5.30646 0) (-327.85 -5.41251 0) (-327.991 -5.5296 3.59023e-19) (-328.366 -5.56666 0) (-328.811 -5.57365 4.03672e-19) (-329.311 -5.57564 3.58011e-19) (-329.085 -5.51522 5.66994e-18) (-329.575 -5.49913 5.66533e-18) (-329.745 -5.50389 -1.40538e-18) (-326.145 -5.64231 -6.11836e-18) (-326.198 -5.77554 -3.80327e-19) (-330.683 -5.74781 -1.0499e-18) (-331.871 -6.17834 0) (-327.134 -5.91923 -6.10927e-18) (-327.12 -6.41932 0) (-332.872 -6.62721 -1.39747e-18) (-334.157 -7.44534 0) (-327.928 -6.98591 -6.10766e-18) (-327.862 -7.99963 0) (-335.221 -8.46159 -1.39134e-18) (-336.726 -9.95349 0) (-328.674 -9.10775 -6.10847e-18) (-328.506 -10.7874 0) (-337.912 -11.8088 -1.38333e-18) (-338.324 -10.6786 -3.73089e-19) (-337.579 -10.0107 0) (-336.744 -8.99089 -3.73902e-19) (-336.07 -8.49692 5.94668e-18) (-335.362 -7.75169 -3.27979e-19) (-334.719 -7.43218 0) (-334.01 -6.85347 -3.75363e-19) (-333.426 -6.64718 5.96704e-18) (-332.832 -6.26453 -3.29173e-19) (-332.262 -6.17377 0) (-331.638 -5.86486 -3.7663e-19) (-331.119 -5.8182 5.98521e-18) (-330.586 -5.6276 -3.30204e-19) (-330.103 -5.62593 0) (-330.393 -5.59187 0) (-329.842 -5.58505 4.03069e-19) (-329.764 -5.37621 -4.26626e-20) (-329.208 -5.3678 0) (-328.697 -5.37601 -4.27183e-20) (-328.246 -5.38849 0) (-327.901 -5.27009 0) (-328.376 -5.25886 0) (-328.906 -5.26401 0) (-328.595 -5.11454 0) (-328.045 -5.11232 0) (-327.546 -5.13337 0) (-327.089 -5.18248 0) (-326.662 -5.26253 0) (-326.246 -5.37358 0) (-325.83 -5.51457 0) (-325.343 -5.44331 0) (-325.788 -5.29383 0) (-326.233 -5.17047 0) (-325.779 -5.03089 0) (-325.307 -5.16045 0) (-324.839 -5.31389 0) (-324.006 -5.22601 0) (-324.501 -5.05748 0) (-325.007 -4.91394 0) (-325.537 -4.80217 0) (-326.27 -4.93119 0) (-326.692 -5.07698 0) (-327.18 -5.0153 0) (-327.709 -4.98442 0) (-328.284 -4.98143 0) (-327.956 -4.82464 0) (-327.351 -4.82949 0) (-326.791 -4.86412 0) (-326.098 -4.72482 0) (-326.697 -4.68131 0) (-327.337 -4.66936 0) (-326.861 -4.52433 0) (-326.192 -4.53874 0) (-325.564 -4.58378 0) (-324.971 -4.66188 0) (-324.411 -4.77459 0) (-323.879 -4.92003 0) (-323.368 -5.09243 0) (-312.57 -4.96853 0) (-311.886 -5.17853 0) (-270.488 -4.83866 -8.98062e-20) (-269.171 -5.06832 0) (-267.798 -5.29928 0) (-266.367 -5.50268 0) (-195.076 -3.81825 0) (-197.51 -3.65331 0) (-199.841 -3.46398 0) (-202.072 -3.29137 0) (-204.249 -3.14547 4.92234e-20) (-271.785 -4.63125 8.97572e-20) (-273.077 -4.45147 0) (-313.268 -4.78317 0) (-313.986 -4.63237 0) (-274.362 -4.30298 0) (-208.463 -2.93347 0) (-206.383 -3.02692 -4.928e-20) (-210.532 -2.85877 0) (-275.659 -4.18694 0) (-314.729 -4.51558 0) (-315.499 -4.43231 0) (-316.298 -4.383 0) (-317.135 -4.36449 0) (-279.633 -4.0235 0) (-278.279 -4.05056 0) (-276.962 -4.10415 0) (-212.58 -2.80521 0) (-214.623 -2.7711 0) (-216.699 -2.75669 0) (-218.792 -2.76027 0) (-281.011 -4.02424 0) (-318.011 -4.3754 0) (-327.573 -4.5391 0) (-328.024 -4.68654 0) (-328.608 -4.84726 0) (-328.91 -5.00335 0) (-329.196 -5.13763 0) (-329.486 -5.28676 0) (-330.109 -5.33003 0) (-330.356 -5.40296 0) (-330.973 -5.4741 0) (-330.96 -5.65704 3.57892e-19) (-331.552 -5.74385 0) (-331.618 -5.57953 0) (-331.453 -5.51076 0) (-330.766 -5.40322 0) (-330.531 -5.25469 0) (-329.843 -5.18313 0) (-329.583 -5.04999 0) (-330.302 -5.12356 0) (-331.063 -5.22906 0) (-331.255 -5.35947 0) (-332.017 -5.50298 0) (-332.171 -5.6578 0) (-332.29 -5.73288 0) (-332.171 -5.89384 3.57318e-19) (-332.817 -6.07118 0) (-333.501 -6.31765 4.01429e-19) (-334.201 -6.5938 0) (-334.51 -6.46402 0) (-333.734 -6.17234 -4.24619e-20) (-332.995 -5.92568 0) (-332.925 -5.8485 0) (-333.719 -6.08785 0) (-334.558 -6.38133 0) (-334.567 -6.22274 0) (-333.667 -5.9288 0) (-332.819 -5.69116 0) (-332.717 -5.55818 0) (-331.867 -5.37197 0) (-331.698 -5.22108 0) (-330.853 -5.07873 0) (-330.058 -4.97208 0) (-329.309 -4.896 0) (-328.758 -4.73154 0) (-329.542 -4.80482 0) (-330.377 -4.90868 0) (-331.267 -5.0475 0) (-332.215 -5.2271 0) (-332.595 -5.40498 0) (-333.551 -5.63723 0) (-333.619 -5.79356 0) (-334.58 -6.08508 0) (-334.575 -5.92536 0) (-334.321 -5.73733 0) (-333.23 -5.45436 0) (-332.991 -5.28857 0) (-331.926 -5.06704 0) (-330.935 -4.89238 0) (-330.011 -4.75685 0) (-329.145 -4.65474 0) (-328.334 -4.58248 0) (-318.936 -4.41513 0) (-319.911 -4.48352 0) (-320.947 -4.58277 0) (-285.488 -4.19964 0) (-283.927 -4.11336 0) (-282.446 -4.05476 0) (-220.949 -2.77979 0) (-223.152 -2.81533 0) (-225.452 -2.87133 0) (-227.832 -2.94821 0) (-287.117 -4.31386 0) (-322.045 -4.71487 0) (-323.222 -4.88588 0) (-324.482 -5.1008 0) (-325.846 -5.37145 0) (-334.141 -5.56488 0) (-335.392 -5.9057 0) (-335.501 -6.08564 0) (-335.676 -6.27858 0) (-335.609 -6.44106 0) (-335.526 -6.58071 0) (-335.446 -6.7388 0) (-335.324 -6.82742 0) (-334.943 -6.98294 3.56228e-19) (-335.708 -7.40386 0) (-336.538 -7.94811 4.00046e-19) (-337.389 -8.53357 0) (-338.067 -8.37229 0) (-337.096 -7.77263 -4.22861e-20) (-336.183 -7.256 0) (-336.389 -7.1711 0) (-337.396 -7.68792 0) (-338.475 -8.3012 0) (-339.628 -9.02355 0) (-339.097 -9.08013 0) (-338.312 -9.26946 3.5489e-19) (-339.231 -10.0823 0) (-340.259 -11.0719 3.98178e-19) (-341.278 -12.1432 3.52647e-19) (-339.159 -11.9463 5.59674e-18) (-339.949 -12.8581 5.59983e-18) (-339.62 -14.2713 -1.38203e-18) (-329.35 -12.5976 -6.10875e-18) (-328.911 -15.0311 0) (-340.804 -17.2549 -1.37365e-18) (-342.454 -20.8925 0) (-329.767 -17.7035 -6.11074e-18) (-328.693 -20.8155 0) (-343.159 -24.9296 -1.3653e-18) (-344.158 -29.4184 0) (-329.34 -24.3281 -6.12571e-18) (-327.009 -27.7911 -3.74439e-19) (-343.762 -33.9735 -1.01341e-18) (-343.571 -38.7033 0) (-327.14 -32.0027 0) (-322.944 -35.412 0) (-341.703 -43.333 -1.36312e-18) (-346.338 -41.6238 -3.66822e-19) (-346.289 -39.4532 0) (-346.778 -36.7595 -3.66779e-19) (-346.589 -34.6511 5.83575e-18) (-346.809 -32.0135 -3.21093e-19) (-346.397 -30.0257 0) (-346.056 -27.3592 -3.67627e-19) (-345.498 -25.4584 5.86019e-18) (-344.994 -22.9913 -3.22447e-19) (-344.259 -21.3181 0) (-343.398 -19.031 -3.69557e-19) (-342.598 -17.5768 5.89169e-18) (-341.746 -15.647 -3.24479e-19) (-340.906 -14.4866 0) (-343.482 -14.8047 0) (-342.407 -13.4166 3.96906e-19) (-343.851 -13.2817 -4.19205e-20) (-342.568 -12.0005 0) (-341.345 -10.8859 -4.2059e-20) (-340.187 -9.91029 0) (-340.86 -9.87542 0) (-342.172 -10.8717 0) (-343.564 -12.0268 0) (-344.519 -11.9622 0) (-342.954 -10.7713 0) (-341.484 -9.75192 0) (-340.112 -8.88493 0) (-338.836 -8.1517 0) (-337.652 -7.53282 0) (-336.551 -7.0138 0) (-336.716 -6.8723 0) (-337.912 -7.39149 0) (-339.207 -8.01398 0) (-339.575 -7.85467 0) (-338.163 -7.22776 0) (-336.868 -6.70804 0) (-336.785 -6.51119 0) (-338.188 -7.0294 0) (-339.73 -7.65941 0) (-341.427 -8.42535 0) (-341.117 -8.60947 0) (-340.611 -8.7573 0) (-342.132 -9.64234 0) (-343.771 -10.6917 0) (-345.523 -11.9275 0) (-346.585 -11.8965 0) (-344.625 -10.6033 0) (-342.799 -9.51641 0) (-343.294 -9.35745 0) (-345.335 -10.49 0) (-347.538 -11.8575 0) (-349.869 -13.4845 0) (-348.656 -13.4181 0) (-347.37 -13.3678 0) (-346.166 -13.3386 0) (-345.025 -13.3521 0) (-346.537 -14.8589 0) (-345.17 -14.7251 0) (-346.516 -16.3556 0) (-344.661 -16.4133 3.51949e-19) (-345.737 -18.1135 0) (-347.853 -18.1413 0) (-349.601 -18.422 0) (-348.073 -16.5511 0) (-349.6 -16.6822 0) (-347.871 -14.9115 0) (-349.282 -15.0227 0) (-351.211 -16.8891 0) (-353.103 -18.9517 0) (-351.31 -18.6416 0) (-352.953 -20.7679 0) (-351.081 -20.4565 0) (-349.157 -20.0958 0) (-346.878 -20.0229 3.5071e-19) (-347.831 -22.0349 0) (-348.821 -24.1977 3.92944e-19) (-349.552 -26.4301 0) (-352.484 -26.7278 0) (-351.501 -24.4145 -4.1451e-20) (-350.377 -22.1887 0) (-352.471 -22.6354 0) (-353.737 -24.9312 0) (-354.85 -27.3122 0) (-357.056 -27.8422 0) (-355.859 -25.4022 0) (-354.483 -23.0328 0) (-356.547 -23.5329 0) (-354.9 -21.1795 0) (-356.952 -21.6849 0) (-355.012 -19.3461 0) (-352.936 -17.162 0) (-350.793 -15.1761 0) (-352.265 -15.3751 -1.90892e-20) (-354.637 -17.5049 7.60731e-20) (-356.904 -19.8345 -7.60095e-22) (-358.971 -22.2894 7.47515e-20) (-360.787 -24.8111 1.77082e-20) (-358.695 -24.1247 -1.91213e-20) (-360.205 -26.6164 0) (-358.005 -25.9692 0) (-359.254 -28.4513 0) (-361.475 -29.1199 0) (-363.586 -29.8276 3.01367e-19) (-362.318 -27.3337 -2.26784e-19) (-364.381 -28.1038 -2.20959e-19) (-362.889 -25.6069 0) (-361.062 -23.035 -3.70135e-20) (-358.918 -20.4712 0) (-356.492 -17.9835 0) (-353.9 -15.6795 -1.32327e-19) (-351.229 -13.6115 7.5821e-20) (-348.615 -11.845 0) (-346.139 -10.3826 0) (-343.86 -9.19455 0) (-341.796 -8.23652 0) (-339.94 -7.46328 0) (-338.27 -6.83546 0) (-336.761 -6.3232 0) (-328.956 -6.11392 0) (-327.329 -5.70459 0) (-294.809 -5.20012 0) (-292.669 -4.8985 0) (-290.69 -4.65566 0) (-288.853 -4.46401 0) (-230.351 -3.05418 0) (-233 -3.18667 0) (-235.833 -3.35054 0) (-238.878 -3.5566 0) (-242.184 -3.81615 0) (-297.148 -5.57293 0) (-299.711 -6.03075 0) (-330.755 -6.61978 0) (-332.753 -7.24549 0) (-302.575 -6.60794 0) (-249.812 -4.54976 0) (-245.814 -4.13883 0) (-254.309 -5.08608 0) (-305.776 -7.33793 0) (-334.996 -8.02385 0) (-337.51 -9.00454 -1.98675e-20) (-340.314 -10.2528 0) (-343.375 -11.8308 0) (-317.78 -11.2064 0) (-313.399 -9.54463 0) (-309.377 -8.28358 2.18335e-20) (-259.355 -5.82404 -2.39456e-20) (-264.986 -6.93992 -4.73987e-20) (-271.071 -8.54858 2.37642e-19) (-277.277 -10.7299 0) (-322.363 -13.3045 0) (-346.599 -13.7685 0) (-349.854 -16.0402 2.32495e-19) (-352.966 -18.5534 -4.6284e-19) (-355.823 -21.2164 3.51094e-21) (-335.32 -21.1754 3.32202e-19) (-331.279 -18.4135 0) (-326.922 -15.7497 3.4007e-19) (-283.284 -13.2456 3.71188e-19) (-288.912 -15.9423 -3.74509e-19) (-294.099 -18.6021 -3.72075e-19) (-299.083 -21.2026 -3.56933e-19) (-338.992 -23.9647 -1.60945e-19) (-358.316 -23.9176 1.91489e-19) (-360.42 -26.5816 0) (-362.159 -29.1031 8.813e-22) (-363.753 -31.328 -1.48266e-19) (-365.619 -30.504 -3.82837e-22) (-366.704 -32.9465 -1.49338e-19) (-364.645 -32.3082 1.50912e-19) (-362.528 -31.6218 0) (-360.295 -30.9547 0) (-358.066 -30.3226 0) (-355.795 -29.7494 0) (-353.322 -29.1087 0) (-350.289 -28.7427 3.48502e-19) (-350.705 -31.1424 0) (-351.152 -33.531 3.90738e-19) (-351.245 -35.981 0) (-354.822 -36.5043 0) (-354.487 -34.0136 -4.11901e-20) (-353.977 -31.5475 0) (-356.563 -32.2266 0) (-357.166 -34.7293 0) (-357.615 -37.2506 0) (-357.928 -39.7864 0) (-355.027 -38.992 0) (-351.389 -38.377 3.46986e-19) (-351.148 -40.9015 0) (-351.039 -43.3491 3.89579e-19) (-350.527 -45.9137 3.45968e-19) (-345.194 -44.2383 5.50866e-18) (-345.156 -46.5335 5.55745e-18) (-340.426 -48.1315 -1.7141e-18) (-322.552 -40.067 3.78869e-19) (-316.595 -43.1524 -6.13146e-18) (-337.374 -52.8548 -1.36663e-18) (-335.183 -57.8289 -3.50393e-19) (-316.061 -48.1926 -5.81201e-18) (-308.045 -50.7234 -6.57175e-18) (-330.794 -62.6433 3.52741e-19) (-327.481 -67.6746 -8.80187e-20) (-307.255 -56.03 -6.29949e-18) (-296.554 -57.7151 7.84246e-19) (-321.346 -72.0976 -2.02453e-18) (-316.474 -76.1333 9.62532e-20) (-295.423 -63.383 -6.75755e-18) (-281.582 -63.3072 4.2257e-19) (-281.645 -78.8578 -1.12902e-18) (-308.681 -79.5827 6.3122e-18) (-324.26 -90.0836 -2.21929e-18) (-329.252 -84.0001 -1.17894e-18) (-328.76 -74.9653 0) (-332.933 -73.3265 6.4351e-18) (-333.262 -70.326 3.79498e-19) (-336.39 -67.9032 0) (-336.645 -64.8708 5.92125e-18) (-339.621 -62.3068 -6.33999e-18) (-339.772 -59.4928 0) (-341.818 -56.8004 -3.6774e-19) (-341.916 -54.2167 5.83387e-18) (-343.834 -51.6011 -3.21237e-19) (-343.91 -49.2023 0) (-349.542 -51.0658 0) (-350.241 -48.4393 3.89316e-19) (-354.599 -49.3066 -4.09894e-20) (-354.822 -46.6785 0) (-355.006 -44.0775 -4.10351e-20) (-355.061 -41.528 0) (-358.114 -42.3498 0) (-358.201 -44.9494 0) (-358.208 -47.5949 0) (-361.082 -48.4194 0) (-360.932 -45.7165 0) (-360.73 -43.0736 0) (-360.449 -40.4743 0) (-360.063 -37.9047 0) (-359.55 -35.3571 0) (-358.892 -32.8297 0) (-361.15 -33.4722 0) (-361.84 -36.0102 0) (-362.392 -38.5722 0) (-364.702 -39.257 0) (-364.117 -36.6828 0) (-363.399 -34.1379 1.9063e-20) (-365.551 -34.8316 -9.49931e-20) (-366.312 -37.3936 0) (-366.936 -39.9768 0) (-367.457 -42.5734 0) (-365.177 -41.8583 0) (-362.827 -41.1611 0) (-363.175 -43.7841 0) (-363.467 -46.4601 0) (-363.737 -49.2152 0) (-366.353 -50.0234 0) (-365.961 -47.207 0) (-365.582 -44.4979 0) (-367.935 -45.2157 0) (-368.432 -47.9617 0) (-368.981 -50.8618 0) (-371.666 -51.7987 0) (-370.908 -48.7727 1.48375e-19) (-370.239 -45.9559 -1.48544e-19) (-369.656 -43.3084 0) (-369.096 -40.7295 -3.72838e-20) (-368.46 -38.1413 0) (-367.667 -35.5251 7.48175e-20) (-366.752 -36.3633 -7.56296e-20) (-365.344 -33.7494 -7.53655e-20) (-352.389 -34.9531 3.2345e-19) (-348.835 -32.2301 -1.3729e-18) (-345.441 -29.6703 4.52894e-19) (-342.351 -26.8106 3.13879e-19) (-304.205 -23.7224 -3.44892e-19) (-310.235 -26.6538 -2.9001e-19) (-318.206 -31.1102 -4.38998e-18) (-292.541 -30.1153 7.52939e-20) (-298.172 -31.7144 9.09097e-19) (-325.082 -34.1846 4.26983e-21) (-329.61 -36.1528 7.49185e-19) (-355.231 -37.4521 0) (-357.369 -39.6661 2.84057e-19) (-367.838 -38.9467 1.13254e-19) (-368.707 -41.4424 -1.12729e-19) (-359.25 -41.8227 0) (-336.613 -39.2659 1.07026e-18) (-333.111 -37.6392 -3.68036e-19) (-305.191 -33.3994 0) (-301.913 -32.509 -8.59703e-19) (-309.046 -35.1379 -8.02345e-19) (-313.96 -38.0015 -2.31469e-18) (-340.552 -41.6313 1.04139e-18) (-361.265 -44.2719 -6.28054e-19) (-369.568 -43.9654 -7.40961e-20) (-370.559 -46.6715 1.481e-19) (-371.7 -49.6537 -3.63429e-19) (-372.924 -52.8907 5.78624e-19) (-368.335 -54.264 0) (-365.928 -50.6269 7.54189e-20) (-363.524 -47.2317 -3.06022e-19) (-344.825 -45.0084 1.00219e-18) (-349.169 -49.0536 -1.89657e-18) (-353.436 -53.4193 8.92856e-19) (-331.085 -49.7409 -1.41639e-18) (-324.849 -45.1972 3.42619e-18) (-319.406 -41.4102 1.46908e-18) (-338.668 -56.2663 -1.22187e-18) (-357.932 -57.8393 2.89063e-19) (-370.752 -57.8788 4.31991e-19) (-374.185 -56.3106 -2.90159e-19) (-372.491 -55.0334 0) (-369.59 -53.9402 0) (-366.78 -52.9788 0) (-364.011 -52.0763 0) (-361.207 -51.2027 0) (-358.166 -50.2997 0) (-358.078 -53.0755 0) (-354.269 -51.9961 0) (-353.929 -54.7621 0) (-349.126 -53.6986 3.4644e-19) (-348.231 -56.4108 0) (-353.486 -57.5975 0) (-357.805 -58.9123 0) (-357.963 -55.9481 0) (-361.423 -57.0784 0) (-361.32 -54.083 0) (-364.3 -55.0645 0) (-364.602 -58.1929 0) (-364.901 -61.465 0) (-361.509 -60.1931 0) (-361.558 -63.4328 0) (-357.602 -61.9855 0) (-353.027 -60.5214 0) (-347.684 -59.1766 3.46472e-19) (-346.572 -62.0249 0) (-345.815 -64.9813 3.89657e-19) (-344.323 -67.9262 0) (-350.832 -69.8249 0) (-351.734 -66.6392 -4.09194e-20) (-352.41 -63.5176 0) (-357.309 -65.1543 0) (-356.915 -68.4453 0) (-356.371 -71.8288 0) (-361.181 -73.8645 0) (-361.426 -70.2718 0) (-361.541 -66.7908 0) (-365.388 -68.4276 0) (-365.173 -64.8793 0) (-368.693 -66.4107 0) (-368.226 -62.8132 0) (-367.733 -59.3711 0) (-367.244 -56.0925 0) (-370.247 -57.2068 0) (-370.93 -60.6611 0) (-371.612 -64.2945 0) (-372.261 -68.0877 0) (-372.851 -72.024 0) (-369.106 -70.1512 0) (-369.437 -74.0279 0) (-365.515 -72.106 0) (-365.523 -75.9091 0) (-369.661 -78.0434 0) (-373.791 -80.3341 0) (-373.366 -76.1008 0) (-377.4 -78.3983 3.74232e-20) (-376.701 -74.1047 1.87374e-20) (-375.944 -69.9739 -7.36079e-20) (-375.124 -65.9816 1.83136e-20) (-374.252 -62.1397 -7.43021e-20) (-373.363 -58.4836 1.46937e-19) (-375.478 -59.9881 2.13984e-19) (-376.748 -63.8982 -1.45827e-19) (-377.945 -67.9768 -3.86595e-22) (-377.423 -70.1172 -1.63623e-19) (-375.437 -65.8889 2.55746e-19) (-373.185 -61.7742 -4.37734e-19) (-362.479 -62.4534 -3.05183e-19) (-366.498 -66.9175 1.92158e-19) (-370.074 -71.3061 -3.02944e-19) (-373.502 -75.9938 9.57421e-19) (-379.24 -74.4692 -3.55188e-19) (-379.054 -72.1512 0) (-380.102 -76.4435 1.25265e-19) (-381.126 -80.9409 -2.50892e-19) (-382.126 -85.7196 7.21354e-20) (-378.04 -82.882 0) (-378.588 -87.5975 -3.62411e-20) (-374.098 -84.7446 0) (-369.746 -82.2042 0) (-365.378 -79.8377 0) (-360.77 -77.5713 0) (-355.661 -75.319 7.83663e-20) (-349.834 -73.1031 0) (-343.251 -71.0145 0) (-341.358 -73.9598 -1.79074e-19) (-339.881 -76.9675 -1.80213e-19) (-337.38 -79.6427 6.13038e-18) (-345.073 -83.2796 2.87205e-22) (-346.97 -79.7918 3.30818e-19) (-348.491 -76.394 2.47811e-19) (-354.717 -78.8737 5.85522e-22) (-353.506 -82.603 0) (-352.045 -86.501 0) (-350.609 -90.7212 0) (-344.358 -87.2784 -7.18117e-19) (-338.352 -88.9301 0) (-347.753 -94.2348 0) (-345.478 -98.0967 8.33641e-20) (-337.53 -93.35 5.82452e-18) (-332.143 -95.2812 0) (-341.977 -101.393 0) (-349.863 -105.773 0) (-352.512 -101.913 -4.10576e-20) (-354.642 -97.8714 -1.58454e-19) (-356.564 -93.7538 1.57462e-19) (-358.035 -89.4601 0) (-359.259 -85.3345 -7.71738e-20) (-360.15 -81.3814 7.67443e-20) (-365.031 -83.8943 0) (-364.421 -88.0886 0) (-363.458 -92.4308 0) (-368.564 -95.5974 0) (-369.284 -90.9877 0) (-369.645 -86.5183 0) (-374.23 -89.3449 0) (-374.096 -94.1243 0) (-373.571 -99.0419 0) (-372.486 -104.005 0) (-367.384 -100.319 0) (-362.129 -96.9172 0) (-360.49 -101.323 -1.89206e-20) (-358.614 -105.63 -3.88285e-20) (-356.356 -109.803 0) (-362.035 -113.927 0) (-364.119 -109.514 0) (-365.86 -104.964 1.89771e-20) (-370.993 -108.878 0) (-369.287 -113.633 0) (-367.213 -118.212 0) (-364.501 -122.494 0) (-359.395 -118.129 0) (-353.591 -113.802 -1.94892e-20) (-346.852 -109.531 1.98846e-20) (-338.984 -105.164 0) (-330.617 -100.188 -4.66662e-20) (-321.149 -98.5002 7.4586e-19) (-302.504 -95.5925 -1.60144e-18) (-323.461 -107.409 0) (-326.063 -103.05 4.65895e-20) (-334.676 -108.955 0) (-330.969 -112.718 8.76295e-20) (-325.416 -114.32 -2.63243e-19) (-314.189 -105.538 6.29476e-18) (-311.279 -109.366 2.08063e-19) (-298.115 -102.005 9.82309e-20) (-265.666 -82.8202 -3.40449e-19) (-244.9 -83.3912 6.38102e-19) (-223.475 -79.6895 4.05573e-21) (-250.195 -96.517 0) (-259.015 -92.9998 -4.40633e-19) (-275.436 -99.2123 2.08242e-19) (-281.725 -96.9146 0) (-297.505 -112.076 -4.02267e-20) (-304.653 -108.253 -2.26077e-19) (-314.511 -116.994 0) (-320.331 -115.943 1.8482e-19) (-328.089 -120.606 0) (-333.662 -119.199 -5.22326e-21) (-338.678 -116.839 8.14871e-20) (-342.966 -113.261 -8.11198e-20) (-349.967 -117.588 0) (-345.456 -121.032 -9.65512e-21) (-340.1 -123.42 0) (-344.884 -127.312 -3.89448e-20) (-350.939 -125.267 9.61527e-21) (-355.813 -121.991 0) (-360.649 -126.253 0) (-355.071 -129.051 -9.45954e-21) (-347.962 -130.303 9.40009e-21) (-340.216 -130.116 -5.88876e-20) (-338.055 -127.957 7.85791e-20) (-334.03 -124.617 1.63138e-19) (-327.028 -124.774 5.10999e-19) (-321.214 -121.3 -6.80677e-19) (-315.737 -121.593 -4.00913e-19) (-305.343 -116.477 4.27792e-19) (-298.946 -115.915 0) (-314.063 -122.671 3.94211e-19) (-320.533 -124.594 -3.64969e-19) (-324.081 -126.635 -1.37368e-19) (-330.696 -127.44 1.70229e-19) (-332.669 -129.192 2.00364e-20) (-325.943 -128.233 -3.91517e-19) (-320.933 -127.167 3.90833e-19) (-318.389 -124.673 0) (-309.19 -121.815 0) (-302.771 -119.172 0) (-290.717 -112.302 6.44601e-18) (-277.468 -107.028 4.23204e-19) (-287.828 -109.713 -1.5103e-19) (-280.503 -111.871 -1.08457e-18) (-304.127 -123.687 -5.83543e-20) (-310.905 -122.799 3.75377e-19) (-314.987 -124.103 -3.57732e-19) (-322.039 -126.644 3.37413e-19) (-327.08 -128.373 -3.4468e-19) (-333.519 -129.853 0) (-340.938 -131.133 -4.85083e-21) (-349.211 -131.969 0) (-357.571 -131.885 0) (-364.372 -130.226 0) (-368.948 -126.935 0) (-372.008 -122.772 0) (-374.243 -118.128 0) (-376.024 -113.216 0) (-377.563 -108.141 0) (-378.634 -102.96 0) (-379.038 -97.7034 0) (-378.964 -92.5523 0) (-383.737 -96.2356 7.17124e-20) (-383.04 -90.8283 2.5157e-19) (-386.393 -94.7676 -2.08969e-19) (-384.701 -89.1118 2.10287e-19) (-382.863 -83.8556 -2.79296e-19) (-381.032 -79.0185 2.66973e-19) (-376.918 -81.1196 -5.54532e-19) (-380.406 -86.6227 1.37526e-19) (-383.846 -92.7543 -2.71085e-19) (-378.527 -95.694 -2.82467e-19) (-372.653 -87.8493 6.9421e-19) (-366.76 -80.9018 1.16511e-18) (-361.175 -74.854 -2.15985e-18) (-355.794 -69.7095 -1.66293e-18) (-350.685 -65.6398 -1.75717e-19) (-345.332 -61.4735 1.02935e-18) (-327.061 -59.4281 -1.24693e-18) (-321.717 -55.8119 -6.1136e-18) (-331.936 -62.3864 -2.85963e-21) (-337.86 -66.0714 1.14273e-18) (-344.768 -71.3731 1.41612e-18) (-352.936 -78.1664 1.11247e-18) (-362.182 -88.1931 -2.88194e-19) (-370.217 -98.0204 0) (-361.38 -101.351 -1.49625e-18) (-353.972 -92.3167 -7.64714e-18) (-368.641 -110.986 0) (-376.772 -107.456 7.35781e-20) (-383.508 -103.775 -6.17837e-19) (-386.884 -99.3311 1.40574e-19) (-389.239 -106.053 0) (-387.704 -100.706 0) (-388.383 -106.794 1.37555e-19) (-384.035 -101.846 -7.21908e-20) (-383.666 -107.482 0) (-388.041 -112.679 0) (-390.48 -118.672 -1.38936e-19) (-390.534 -112.702 1.33943e-19) (-389.278 -118.996 0) (-387.289 -111.641 2.83431e-19) (-381.835 -116.722 -2.65589e-19) (-384.691 -125.098 4.16347e-19) (-385.708 -132.372 2.71135e-19) (-389.71 -125.408 0) (-389.282 -131.228 -2.74373e-19) (-389.503 -124.334 -6.82434e-20) (-386.838 -118.18 -5.14772e-20) (-382.534 -112.823 -1.77293e-20) (-380.922 -118.045 0) (-378.96 -123.033 0) (-376.348 -127.567 0) (-379.669 -132.355 0) (-382.983 -128.346 1.75269e-20) (-385.208 -123.476 0) (-387.905 -129.552 0) (-385.195 -133.867 -1.79252e-20) (-380.507 -136.374 0) (-376.807 -137.809 0) (-383.679 -138.279 -2.292e-22) (-387.584 -135.882 1.36688e-19) (-382.088 -140.521 2.73613e-19) (-385.243 -137.997 -2.70053e-19) (-376.052 -142.802 0) (-378.701 -140.231 0) (-378.071 -132.888 1.45546e-19) (-375.307 -122.322 0) (-369.657 -133.848 -7.55462e-18) (-368.144 -148.449 -4.54552e-18) (-364.837 -152.035 0) (-356.979 -144.098 0) (-346.041 -131.535 1.96297e-20) (-369.294 -140.056 3.49074e-21) (-359.982 -133.557 0) (-375.745 -139.164 2.86617e-19) (-367.08 -134.883 -2.13646e-19) (-349.421 -124.213 1.47001e-19) (-324.093 -105.592 1.47194e-19) (-334.08 -117.109 -1.55468e-19) (-295.156 -95.1822 -2.95054e-19) (-300.629 -108.672 1.19917e-18) (-311.605 -131.559 -1.26087e-18) (-330.616 -163.175 0) (-177.516 -77.6592 -4.32746e-18) (-211.569 -73.8331 -1.40565e-18) (-235.34 -76.1194 0) (-251.862 -81.386 -3.91963e-20) (-296.327 -90.7491 -7.83631e-20) (-299.703 -92.0273 -8.42699e-22) (-319.107 -100.528 0) (-338.943 -115.363 0) (-357.008 -128.665 -5.36251e-20) (-367.816 -135.011 -1.83963e-20) (-373.115 -136.29 0) (-374.361 -134.698 0) (-372.538 -131.241 0) (-366.496 -133.29 0) (-358.092 -133.365 0) (-348.984 -132.455 0) (-347.437 -131.511 0) (-356.987 -133.462 0) (-366.435 -134.745 0) (-363.848 -134.377 0) (-353.837 -131.551 0) (-343.66 -127.824 0) (-334.704 -124.378 0) (-338.405 -128.811 0) (-340.452 -130.98 4.8391e-21) (-332.886 -128.944 0) (-326.492 -126.981 -5.35941e-21) (-322.25 -125.825 0) (-322.616 -123.57 5.8117e-18) (-325.501 -124.25 5.30624e-21) (-330.833 -126.124 0) (-328.352 -122.323 0) (-324.552 -121.788 0) (-322.781 -122.052 -5.84802e-18) (-319.051 -123.716 3.60358e-19) (-316.439 -124.57 -3.78377e-19) (-319.942 -126.535 8.66799e-21) (-321.032 -123.687 1.3647e-18) (-323.079 -120.812 -5.64956e-21) (-324.153 -119.81 0) (-326.585 -119.063 0) (-330.653 -119.19 0) (-337.482 -121.273 0) (-347.13 -125.617 0) (-357.815 -130.798 0) (-346.309 -121.855 0) (-337.093 -116.666 0) (-330.959 -114.863 0) (-324.391 -110.358 0) (-326.892 -108.973 0) (-331.175 -109.984 0) (-317.588 -100.651 0) (-316.823 -103.422 9.94518e-21) (-316.092 -107.05 0) (-316.001 -111.495 0) (-322.469 -112.774 0) (-327.224 -115.294 0) (-324.739 -116.801 0) (-323.025 -118.597 -3.43912e-19) (-322.188 -120.646 -5.47758e-18) (-321.019 -121.939 -5.42365e-18) (-320.799 -118.841 -3.4391e-19) (-321.338 -115.632 0) (-316.619 -116.242 0) (-317.472 -120.753 0) (-317.081 -124.815 0) (-318.72 -128.777 1.37182e-18) (-318.461 -133.036 -2.92811e-21) (-315.091 -134.684 -9.51261e-21) (-304.156 -148.037 1.20959e-18) (-310.716 -138.67 0) (-308.109 -133.988 1.37344e-18) (-312.102 -126.32 0) (-310.71 -122.42 0) (-309.535 -117.672 0) (-307.697 -112.018 0) (-305.663 -106.049 0) (-303.807 -100.4 -1.00326e-20) (-302.064 -95.7652 7.90852e-20) (-273.298 -92.8704 0) (-264.146 -86.9594 0) (-207.907 -78.147 0) (-183.587 -67.7834 4.18412e-20) (-150.336 -50.9463 -3.60544e-19) (-106.558 -20.1181 0) (-51.5355 37.1479 3.05198e-19) (-11.6946 41.381 0) (-20.3414 30.4129 8.74743e-19) (-56.623 -0.469886 -3.76403e-19) (-101.832 -32.705 0) (-35.8387 17.7522 0) (-23.6024 27.9302 0) (-23.6106 31.9383 2.99347e-18) (-28.8424 35.7666 8.74558e-18) (-35.9956 29.9866 0) (-39.8681 31.2578 -5.19007e-18) (-43.2168 29.5074 -2.61784e-18) (-44.3158 27.2167 2.21661e-18) (-45.2285 26.3965 -8.45328e-19) (-45.6196 25.3263 0) (-46.5822 24.8605 0) (-46.5338 24.0509 -6.79292e-18) (-46.1454 23.4189 1.22629e-17) (-47.2383 23.5791 0) (-46.813 22.907 6.71344e-18) (-46.1094 22.5155 -1.34528e-17) (-47.3171 22.9532 1.09454e-18) (-46.7085 22.4034 4.15001e-19) (-45.8691 22.2011 2.65152e-18) (-47.1775 22.7778 -1.92478e-18) (-46.4741 22.3123 -2.0427e-19) (-45.5635 22.2373 -1.63653e-18) (-46.9535 22.9131 -4.64112e-20) (-46.2176 22.5245 0) (-45.3001 22.515 -1.29786e-18) (-46.7347 23.2302 -4.60891e-20) (-45.969 22.876 1.92533e-18) (-45.033 22.9326 -1.07242e-17) (-46.5258 23.6759 -9.23543e-20) (-45.7526 23.3624 -6.44216e-18) (-44.8208 23.4695 0) (-46.35 24.2062 0) (-45.5791 23.9077 8.35705e-19) (-44.6229 23.9452 4.21068e-18) (-45.9829 24.7772 -7.74842e-19) (-45.1927 24.4955 1.92029e-18) (-46.4189 25.356 -7.21271e-19) (-45.6097 25.1318 0) (-44.7253 25.3254 -9.73934e-18) (-46.2461 26.07 1.3855e-18) (-45.5245 25.8241 0) (-44.6699 26.0016 2.55037e-18) (-46.1966 26.751 -9.00129e-20) (-45.443 26.4767 -6.28911e-18) (-44.5069 26.6048 -3.47222e-19) (-45.9416 27.4404 1.92605e-18) (-45.2031 27.1915 -3.89746e-18) (-46.4614 28.0501 6.5242e-19) (-45.6998 27.8432 -1.33404e-22) (-44.8153 28.0035 5.34658e-18) (-46.1746 28.8015 -1.30084e-18) (-45.4284 28.5483 1.23259e-17) (-46.7262 29.4321 -6.34945e-19) (-46.0325 29.2818 4.54192e-18) (-45.2617 29.377 -5.02517e-18) (-46.7247 30.1552 1.43256e-18) (-46.0358 29.8983 0) (-45.1653 30.0618 4.28546e-18) (-46.5819 30.8417 -7.99412e-19) (-45.8509 30.5285 -8.39582e-18) (-46.9334 31.4452 6.8787e-19) (-46.1984 31.2704 7.33633e-18) (-47.453 32.0826 -6.2792e-19) (-46.768 31.9074 -7.67493e-18) (-45.9407 31.9435 0) (-47.2203 32.8175 0) (-46.5452 32.6299 5.78028e-18) (-47.8643 33.4337 1.29497e-18) (-47.2276 33.248 -1.58144e-18) (-46.4277 33.2356 8.3322e-18) (-47.6967 34.0994 7.77783e-19) (-46.9946 33.8586 9.33488e-18) (-48.172 34.6922 -2.21688e-18) (-47.5298 34.4951 5.50515e-18) (-48.6867 35.2615 9.44164e-19) (-48.0007 35.0394 -4.66157e-18) (-47.1565 35.1504 2.72694e-18) (-48.5299 35.9542 -7.67109e-19) (-47.8723 35.6929 -5.15068e-18) (-49.0039 36.5105 -6.77819e-19) (-48.3437 36.2815 0) (-49.5166 37.0959 6.29688e-19) (-48.8902 36.9266 -3.91673e-19) (-48.153 36.9864 2.06571e-18) (-49.4784 37.7397 -1.35815e-18) (-48.8276 37.4143 -2.09248e-18) (-49.9106 38.2718 -2.15394e-18) (-49.2607 38.0572 1.16468e-19) (-50.4913 38.8371 -2.00225e-20) (-49.9127 38.6492 -6.42768e-18) (-49.1957 38.6044 3.54609e-18) (-50.4683 39.38 -4.00478e-19) (-49.8016 39.0255 3.23655e-18) (-50.8767 39.8934 1.4351e-18) (-50.2166 39.6652 -5.01739e-19) (-51.3327 40.4217 -5.89057e-19) (-50.7428 40.19 0) (-51.8619 40.9179 -1.91439e-18) (-51.2617 40.679 1.19826e-18) (-50.4986 40.69 -4.95614e-18) (-51.807 41.4767 0) (-51.1969 41.1671 -4.34365e-18) (-52.2944 41.9447 -3.6167e-19) (-51.6822 41.6789 -3.04361e-18) (-52.6753 42.4182 0) (-52.0322 42.1606 -9.69867e-18) (-53.079 42.919 1.30544e-18) (-52.5214 42.734 0) (-53.6586 43.4 2.49486e-18) (-53.1419 43.186 -4.71036e-18) (-52.4812 43.1016 0) (-53.6748 43.8555 -1.22586e-18) (-53.0698 43.522 1.06604e-18) (-54.1393 44.2952 1.06559e-18) (-53.5538 44.0445 3.50788e-18) (-54.5632 44.7406 1.69585e-19) (-53.9727 44.4845 0) (-54.9981 45.1847 0) (-54.4732 44.9745 -3.58552e-18) (-55.5636 45.6146 -7.73729e-20) (-55.06 45.3921 -1.56238e-18) (-54.4163 45.3377 2.76498e-18) (-55.6411 46.0463 -4.88779e-19) (-55.0883 45.7138 -8.54195e-18) (-56.1547 46.4129 -3.56052e-19) (-55.5929 46.1109 2.0052e-18) (-56.5616 46.8001 -1.87086e-18) (-55.9855 46.534 1.92976e-18) (-57.0152 47.209 -1.30091e-18) (-56.5163 46.99 0) (-57.6087 47.5905 0) (-57.1305 47.3459 1.56641e-18) (-56.4819 47.2289 3.13135e-18) (-57.7076 47.947 -3.94212e-19) (-57.1567 47.6001 0) (-58.2161 48.3055 -1.19452e-22) (-57.6633 48.0143 -1.05768e-17) (-58.6744 48.6775 1.54002e-18) (-58.1372 48.4209 0) (-59.178 49.0488 3.27346e-19) (-58.7119 48.8231 0) (-59.8047 49.3854 -2.49795e-18) (-59.359 49.1411 7.10323e-18) (-58.7405 49.0192 9.82924e-18) (-59.9934 49.6911 9.92901e-19) (-59.4858 49.3373 -5.3821e-18) (-60.5225 49.9988 7.18003e-19) (-60.0096 49.7149 7.10651e-18) (-61.0469 50.3054 0) (-60.5595 50.0226 -1.94981e-18) (-61.5512 50.6015 1.31063e-18) (-61.0932 50.3445 1.81757e-18) (-62.1654 50.9069 -1.25427e-18) (-61.7554 50.6921 0) (-61.2081 50.6159 0) (-62.4772 51.182 1.97614e-19) (-62.026 50.8114 2.12225e-21) (-63.0382 51.4005 -3.57719e-19) (-62.5453 51.076 0) (-63.5132 51.6794 -1.70568e-19) (-63.0406 51.4418 0) (-64.0795 51.9699 0) (-63.6741 51.7523 1.79579e-18) (-64.7791 52.2216 -1.85564e-18) (-64.4216 52.0066 5.44713e-18) (-63.8864 51.8506 2.06152e-18) (-65.1109 52.4509 -3.86947e-19) (-64.6684 52.1364 -4.22072e-18) (-65.7456 52.7126 1.39856e-18) (-65.3457 52.4976 -6.38066e-18) (-66.4561 52.9248 -6.59722e-19) (-66.1173 52.681 -3.62628e-18) (-67.1959 53.0907 -2.49957e-18) (-66.8699 52.8543 -3.13131e-18) (-66.3346 52.7039 -5.52341e-18) (-67.5722 53.2757 7.78816e-19) (-67.1627 52.9963 3.16477e-18) (-68.3119 53.4846 3.4959e-19) (-67.9734 53.2686 0) (-69.042 53.6344 6.54129e-19) (-68.7106 53.3737 7.1924e-18) (-69.775 53.8071 2.93423e-18) (-69.4757 53.6456 -3.08979e-18) (-69.0303 53.6178 -5.43789e-18) (-70.3835 54.0702 -5.73172e-19) (-70.1014 53.8615 6.20232e-18) (-71.3379 54.1576 -1.357e-18) (-71.0934 53.8847 3.67352e-18) (-72.1657 54.2336 -1.49439e-18) (-71.916 54.0445 2.7987e-22) (-71.4962 53.9904 0) (-72.8536 54.4332 0) (-72.6075 54.258 6.21757e-18) (-73.8868 54.4982 1.36338e-18) (-73.7271 54.2758 0) (-74.8222 54.5063 1.26093e-18) (-74.631 54.312 -3.13075e-18) (-74.2573 54.2703 2.74081e-18) (-75.6185 54.6703 0) (-75.4322 54.5713 0) (-76.8025 54.6866 0) (-76.7528 54.5039 7.25876e-18) (-77.8371 54.6107 3.09651e-19) (-77.7245 54.4368 0) (-77.4609 54.4326 -5.26981e-18) (-78.8747 54.7233 2.33451e-22) (-78.8159 54.6795 -1.42645e-18) (-80.2903 54.6188 1.27406e-18) (-80.3998 54.4668 -6.37724e-18) (-80.3256 54.1511 3.3711e-19) (-81.5566 54.421 -7.46917e-19) (-81.4421 54.2646 -2.88869e-18) (-82.8734 54.3139 -1.60794e-19) (-83.0811 54.2948 6.21638e-18) (-83.268 54.2131 -8.08994e-18) (-84.6071 54.1168 1.49405e-18) (-84.6492 53.8271 -1.91427e-18) (-85.8578 53.8251 7.95727e-19) (-85.9978 53.7812 -9.53248e-20) (-86.1882 54.0476 1.64958e-19) (-87.9716 53.6615 -1.27353e-18) (-88.3517 53.4773 -3.72116e-18) (-89.4734 53.0446 -1.23301e-18) (-89.7428 52.8387 1.45499e-18) (-89.9577 52.9759 -7.14187e-18) (-91.7772 52.5369 -1.35284e-18) (-92.5432 52.5004 1.53366e-18) (-93.313 51.8609 7.45231e-18) (-94.341 51.422 1.75294e-19) (-94.7287 51.0942 0) (-95.171 51.2047 0) (-97.0743 50.3825 -1.78963e-19) (-98.012 50.128 1.99542e-19) (-98.8426 49.2144 -1.15576e-17) (-99.9404 48.5956 0) (-100.721 48.2394 -1.99609e-18) (-101.72 48.198 1.08251e-17) (-103.275 46.7161 4.49675e-20) (-104.344 46.0845 -3.9173e-19) (-105.301 45.375 1.85446e-18) (-106.775 43.9855 0) (-108.348 43.4418 -5.80001e-18) (-110 42.0797 -4.36126e-18) (-110.62 40.1628 2.27582e-18) (-112.45 39.1043 0) (-114.55 37.3438 0) (-115.848 35.7133 -8.82734e-18) (-115.977 33.1924 -1.64816e-19) (-117.62 31.3546 0) (-119.433 28.1578 -3.24716e-18) (-120.677 25.03 -8.9426e-19) (-121.563 21.623 9.5835e-19) (-121.851 17.504 0) (-121.26 13.6069 -2.666e-19) (-119.605 9.46823 0) (-117.936 9.63376 -1.4354e-18) (-115.81 6.31449 -1.2862e-18) (-112.856 4.42829 1.48246e-18) (-110.515 3.3409 -1.19834e-20) (-108.507 2.65858 0) (-106.782 2.20034 0) (-105.275 1.87108 4.71424e-20) (-103.953 1.61968 -1.17054e-20) (-102.78 1.42169 0) (-101.734 1.26173 0) (-100.794 1.12975 0) (-99.946 1.01839 0) (-99.1753 0.923486 0) (-98.4727 0.841774 0) (-97.8242 0.770392 0) (-97.2296 0.708213 0) (-96.6761 0.653168 0) (-96.1646 0.604581 0) (-95.6853 0.561032 0) (-95.2396 0.522173 0) (-94.8194 0.487159 0) (-94.4265 0.455976 0) (-94.0542 0.427562 0) (-93.7045 0.401704 0) (-93.3716 0.377917 0) (-93.0577 0.356233 0) (-92.7577 0.336345 0) (-92.4736 0.318355 0) (-92.2011 0.301694 0) (-91.9422 0.28628 0) (-91.6932 0.271936 0) (-91.4553 0.258755 0) (-91.2276 0.246424 0) (-91.0076 0.234969 0) (-90.7971 0.224534 0) (-90.5931 0.214749 0) (-90.3973 0.205519 0) (-90.2073 0.196852 0) (-90.0244 0.188792 0) (-89.8468 0.181321 0) (-89.6754 0.174264 0) (-89.5083 0.167602 0) (-89.3469 0.161513 0) (-89.1891 0.155743 0) (-89.0365 0.15019 0) (-88.8872 0.144901 0) (-88.7423 0.139942 0) (-88.6009 0.135247 0) (-88.4628 0.130917 0) (-88.3279 0.126857 0) (-88.1959 0.123098 0) (-88.0673 0.119453 0) (-87.9408 0.115898 0) (-87.8176 0.112536 0) (-87.6962 0.109249 0) (-87.5777 0.106184 0) (-87.4612 0.103176 0) (-87.3471 0.100349 0) (-87.2353 0.0977267 0) (-87.1248 0.0952773 0) (-87.0169 0.0929903 0) (-86.9101 0.0907404 0) (-86.8057 0.0884282 0) (-86.7024 0.0862614 0) (-86.6012 0.0842144 0) (-86.5015 0.0821671 0) (-86.4028 0.0803002 0) (-86.3061 0.0785035 0) (-86.2103 0.0767589 0) (-86.1162 0.0751619 0) (-86.0235 0.0736065 0) (-85.9316 0.0720565 0) (-85.8413 0.0705126 0) (-85.7517 0.069002 0) (-85.6636 0.0675831 0) (-85.5765 0.0662102 0) (-85.4906 0.0648919 0) (-85.4057 0.0635818 0) (-85.3221 0.0621582 0) (-85.239 0.0607842 0) (-85.1573 0.0595643 0) (-85.076 0.0584328 0) (-84.9961 0.0573901 0) (-84.9167 0.0563385 0) (-84.8386 0.0552209 0) (-84.7609 0.0540732 0) (-84.6845 0.0529687 0) (-84.6086 0.0518211 0) (-84.5333 0.050738 0) (-84.4593 0.0495788 0) (-84.3856 0.0484611 0) (-84.3132 0.047387 0) (-84.2413 0.0462466 0) (-84.1701 0.0451886 0) (-84.0996 0.0440625 0) (-84.0298 0.0431316 0) (-83.9609 0.0421013 0) (-83.8925 0.0412158 0) (-83.8249 0.040347 0) (-83.7579 0.0394062 0) (-83.6915 0.0384659 0) (-83.6261 0.0374686 0) (-83.5613 0.0364915 0) (-83.4971 0.0353398 0) (-83.4334 0.0344245 0) (-83.3704 0.0334814 0) (-83.3081 0.0324362 0) (-83.2465 0.0314387 0) (-83.1856 0.0304098 0) (-83.1254 0.0292978 0) (-83.0656 0.0282318 0) (-83.0067 0.0272993 0) (-82.9482 0.0263458 0) (-82.8906 0.0253107 0) (-82.8334 0.0241776 0) (-82.7767 0.023155 0) (-82.721 0.0222372 0) (-82.6656 0.0213519 0) (-82.6111 0.0203451 0) (-82.5571 0.0191629 0) (-82.5036 0.0180607 0) (-82.4509 0.016911 0) (-82.3986 0.015724 0) (-82.347 0.0146291 0) (-82.2962 0.0135079 0) (-82.2459 0.0123921 0) (-82.1964 0.0112601 0) (-82.1473 0.0101548 0) (-82.099 0.00907276 0) (-82.0511 0.00801767 0) (-82.004 0.00686654 0) (-81.9573 0.00577322 0) (-81.9115 0.00459497 0) (-81.8661 0.00351695 0) (-81.8215 0.00250029 0) (-81.7772 0.00142165 0) (-81.7336 0.000409196 0) (-81.6907 -0.000706948 0) (-81.6485 -0.00175898 0) (-81.6069 -0.00280201 0) (-81.566 -0.00398139 0) (-81.5255 -0.00516286 0) (-81.4859 -0.00632642 0) (-81.4467 -0.00749572 0) (-81.4084 -0.00871398 0) (-81.3706 -0.0100187 0) (-81.3333 -0.0111825 0) (-81.2969 -0.0122897 0) (-81.261 -0.0133916 0) (-81.2257 -0.0144895 0) (-81.1911 -0.0156738 0) (-81.1572 -0.0170061 0) (-81.1239 -0.0183465 0) (-81.0914 -0.0196139 0) (-81.0595 -0.0207785 0) (-81.0283 -0.0219083 0) (-80.9976 -0.0231571 0) (-80.9677 -0.0244549 0) (-80.9385 -0.0257648 0) (-80.91 -0.0270306 0) (-80.8821 -0.0282 0) (-80.855 -0.0293411 0) (-80.8286 -0.0306015 0) (-80.8027 -0.0318602 0) (-80.7777 -0.0331173 0) (-80.7532 -0.0343926 0) (-80.7296 -0.0356717 0) (-80.7065 -0.0369048 0) (-80.6841 -0.0380497 0) (-80.6624 -0.0392256 0) (-80.6415 -0.0405161 0) (-80.6212 -0.0417926 0) (-80.6017 -0.0429968 0) (-80.5829 -0.0442855 0) (-80.5647 -0.04549 0) (-80.5473 -0.0466601 0) (-80.5305 -0.047895 0) (-80.5143 -0.0489991 0) (-80.499 -0.0501508 0) (-80.4841 -0.0513425 0) (-80.4702 -0.0525366 0) (-80.4568 -0.0536671 0) (-80.4444 -0.054657 0) (-80.4324 -0.0559135 0) (-80.4211 -0.0570298 0) (-80.4105 -0.0581339 0) (-80.4006 -0.0592236 0) (-80.3915 -0.0602938 0) (-80.3829 -0.0613505 0) (-80.3751 -0.0623821 0) (-80.3679 -0.0633812 0) (-80.3614 -0.0643479 0) (-80.3556 -0.0653295 0) (-80.3504 -0.0663882 0) (-80.3458 -0.0674593 0) (-80.3419 -0.0683765 0) (-80.3387 -0.0692922 0) (-80.3361 -0.0703326 0) (-80.3341 -0.0713135 0) (-80.3327 -0.0722239 0) (-80.332 -0.0731294 0) (-80.3318 -0.0738857 0) (-80.3322 -0.0747012 0) (-80.3333 -0.0755044 0) (-80.3349 -0.0763628 0) (-80.3371 -0.0771722 0) (-80.3397 -0.0779088 0) (-80.343 -0.0786257 0) (-80.3468 -0.0791764 0) (-80.351 -0.0797543 0) (-80.3559 -0.0802642 0) (-80.3612 -0.0808192 0) (-80.3669 -0.0814993 0) (-80.3731 -0.0819939 0) (-80.3798 -0.0824831 0) (-80.3869 -0.0829549 0) (-80.3944 -0.0833264 0) (-80.4024 -0.083785 0) (-80.4105 -0.0840126 0) (-80.4193 -0.0841356 0) (-80.4281 -0.0843783 0) (-80.4375 -0.0845553 0) (-80.4472 -0.0846912 0) (-80.4571 -0.0845724 0) (-80.4672 -0.0844544 0) (-80.4777 -0.0842547 0) (-80.4884 -0.0840501 0) (-80.4993 -0.0837739 0) (-80.5103 -0.0834407 0) (-80.5215 -0.0829808 0) (-80.5328 -0.0823721 0) (-80.5441 -0.0817362 0) (-80.5558 -0.0809204 0) (-80.5675 -0.0799988 0) (-80.5791 -0.0790003 0) (-80.5908 -0.0779368 0) (-80.6023 -0.076626 0) (-80.6141 -0.075107 0) (-80.6257 -0.0736306 0) (-80.6373 -0.0720827 0) (-80.6487 -0.0702168 0) (-80.66 -0.0682324 0) (-80.6712 -0.0660579 0) (-80.6822 -0.0635194 0) (-80.6931 -0.0606976 0) (-80.7038 -0.0576424 0) (-80.7141 -0.0544048 0) (-80.7243 -0.0509134 0) (-80.7343 -0.0472032 0) (-80.7441 -0.0432194 0) (-80.7538 -0.0390028 0) (-80.7632 -0.0344447 0) (-80.7724 -0.0296255 0) (-80.7814 -0.0245242 0) (-80.7905 -0.0191158 0) (-80.7996 -0.0132145 0) (-80.8088 -0.00694461 0) (-80.8179 -0.000252644 0) (-80.8275 0.00691165 0) (-80.8374 0.0144038 0) (-80.8477 0.0222568 0) (-80.8586 0.0306156 0) (-80.8701 0.0393902 0) (-80.8828 0.0489984 0) (-80.8969 0.0593587 0) (-80.9124 0.0702292 0) (-80.9295 0.0816296 0) (-80.9485 0.0934212 0) (-80.9696 0.105715 0) (-80.9932 0.118398 0) (-81.0193 0.13149 0) (-81.0483 0.144767 0) (-81.0805 0.158032 0) (-81.1152 0.170997 0) (-81.1525 0.183706 0) (-81.1917 0.196111 0) (-81.2326 0.208312 0) (-81.2743 0.220432 0) (-81.3162 0.231856 0) (-81.3575 0.24216 0) (-81.3985 0.251373 0) (-81.4384 0.259124 0) (-81.4773 0.265862 0) (-81.5145 0.271299 0) (-81.5498 0.275793 0) (-81.5828 0.279373 0) (-81.6128 0.281934 0) (-81.6388 0.283902 0) (-81.6595 0.28526 0) (-81.6745 0.285963 0) (-81.6819 0.285981 0) (-81.6804 0.285797 0) (-81.6691 0.285426 0) (-81.647 0.284954 0) (-81.6125 0.285225 0) (-81.5646 0.285839 0) (-81.5 0.285515 0) (-81.419 0.287494 0) (-81.3136 0.291725 0) (-81.1834 0.295706 0) (-81.0271 0.299266 0) (-80.8463 0.302698 0) (-80.6388 0.30585 0) (-80.4078 0.309239 0) (-80.1528 0.312422 0) (-79.8779 0.314135 0) (-79.584 0.31237 0) (-79.2769 0.306739 0) (-78.9581 0.297409 0) (-78.6333 0.284665 0) (-78.3039 0.269886 0) (-77.9754 0.254405 0) (-77.6491 0.240265 0) (-77.3261 0.2289 -9.01767e-20) (-77.0081 0.221611 9.01721e-20) (-76.6948 0.218386 0) (-76.3862 0.219569 0) (-76.0798 0.224061 0) (-75.774 0.230857 0) (-75.4671 0.238397 0) (-75.1572 0.246166 0) (-74.8456 0.25223 0) (-74.5279 0.257536 0) (-74.2073 0.262767 0) (-73.8829 0.26808 0) (-73.5509 0.273583 0) (-73.2163 0.279285 0) (-72.8738 0.285244 0) (-72.5286 0.291013 0) (-72.1767 0.296894 0) (-71.8179 0.303351 0) (-71.4558 0.30997 0) (-71.0863 0.316693 0) (-70.7092 0.324333 0) (-70.3284 0.332873 0) (-69.9376 0.341816 0) (-69.5431 0.350862 0) (-69.1385 0.359953 0) (-68.73 0.368813 0) (-68.312 0.377754 0) (-67.8869 0.388098 0) (-67.4542 0.39866 0) (-67.0128 0.408538 0) (-66.5641 0.419516 0) (-66.1084 0.431144 0) (-65.6404 0.443288 0) (-65.167 0.455644 0) (-64.6805 0.468165 0) (-64.1883 0.480544 0) (-63.6835 0.493017 0) (-63.1692 0.507158 0) (-62.6434 0.522466 0) (-62.1075 0.537036 0) (-61.5625 0.551638 0) (-61.0018 0.566696 0) (-60.4335 0.581897 0) (-59.8482 0.597456 0) (-59.2535 0.613998 0) (-58.6441 0.631847 0) (-58.0211 0.650846 0) (-57.3822 0.670509 0) (-56.7318 0.690123 0) (-56.0606 0.710785 0) (-55.3783 0.732231 0) (-54.6733 0.754832 0) (-53.9559 0.778298 0) (-53.214 0.802937 0) (-52.4568 0.829583 0) (-51.6761 0.857648 0) (-50.8762 0.886862 0) (-50.0519 0.918899 0) (-49.2021 0.952243 0) (-48.3295 0.987355 0) (-47.4268 1.02475 0) (-46.4987 1.06411 0) (-45.5369 1.10605 0) (-44.5466 1.1502 0) (-43.5187 1.19726 0) (-42.4585 1.24676 0) (-41.3566 1.29941 0) (-40.2178 1.35456 0) (-39.0343 1.41445 0) (-37.8057 1.47828 0) (-36.5287 1.54628 0) (-35.2006 1.6191 0) (-33.8157 1.69577 0) (-32.3772 1.77677 0) (-30.8725 1.86388 0) (-29.3069 1.95601 0) (-27.6665 2.05555 0) (-25.9561 2.16135 0) (-24.1599 2.27662 0) (-22.2818 2.39992 0) (-20.3039 2.5359 0) (-18.2276 2.68433 0) (-16.0337 2.85522 0) (-13.7136 3.05063 0) (-11.2322 3.27675 0) (-8.60321 3.53924 0) (-5.85785 3.94022 0) (-3.06446 4.4115 9.18077e-20) (0.319328 4.65102 -6.89163e-20) (4.05001 4.83699 -1.14443e-19) (7.92099 5.16641 3.20531e-19) (12.186 5.75158 -2.34606e-19) (16.6718 6.45196 5.9071e-23) (21.9689 7.40591 0) (25.4878 8.7587 -7.04265e-19) (20.1101 14.6686 3.86911e-19) (17.039 12.7643 3.93123e-19) (11.1766 17.3613 -9.19318e-23) (13.5658 19.5701 -1.54666e-19) (6.20215 23.5099 0) (4.55247 21.2078 0) (-2.22987 23.8827 0) (-1.08665 26.1125 2.0584e-19) (-7.6517 27.4974 -2.1086e-19) (-8.6411 25.839 0) (-14.1909 27.0322 0) (-13.4936 28.1759 -1.06418e-19) (-18.5212 28.6625 1.07213e-19) (-18.9788 27.8113 0) (-23.0716 28.3376 0) (-22.7647 29.0091 0) (-26.4036 29.2797 -3.17153e-19) (-26.5943 28.726 0) (-29.6366 29.0467 -9.6083e-19) (-29.5334 29.5013 4.14733e-19) (-32.2534 29.7224 -2.01092e-19) (-32.2835 29.3716 1.13721e-18) (-34.5566 29.7447 -2.81496e-18) (-34.6309 29.962 -3.09072e-18) (-36.655 30.2746 6.19547e-18) (-36.5658 30.2613 1.5356e-18) (-37.3673 29.8395 -1.1222e-18) (-38.8196 30.7174 9.53749e-22) (-40.6015 31.2226 3.41527e-19) (-38.3046 30.8156 6.32751e-18) (-42.3364 31.0921 -9.77702e-18) (-41.9832 30.6419 1.40508e-18) (-40.3145 30.5316 -2.06807e-18) (-40.4276 29.4312 0) (-37.837 28.4492 5.76889e-19) (-35.6717 28.4253 -6.11145e-18) (-33.5126 27.7507 -3.66213e-19) (-31.0412 27.0117 1.76561e-19) (-28.272 26.2021 8.64387e-20) (-25.1729 25.2589 0) (-21.7292 24.1337 0) (-17.934 22.754 0) (-13.8061 21.0291 0) (-9.43015 18.8686 0) (-4.95798 16.1897 -8.05773e-20) (-0.494893 12.9126 1.60796e-19) (3.92297 9.26283 -8.43899e-20) (8.01579 10.1769 8.54249e-20) (12.0938 11.2969 1.7936e-19) (6.77633 15.5803 -4.23341e-19) (3.34587 14.115 -1.62188e-19) (-1.91228 17.5594 -1.61779e-19) (0.954332 19.4411 3.36909e-19) (-4.8214 22.2614 -1.72187e-19) (-7.00059 20.4157 1.6536e-19) (-11.9253 22.5544 0) (-10.2005 24.2675 -1.75099e-19) (-15.1824 25.6422 0) (-16.4611 24.1554 0) (-20.5704 25.372 0) (-19.6328 26.642 0) (-23.5159 27.3678 8.8886e-20) (-24.2313 26.3186 -4.27148e-20) (-27.4714 27.0957 -4.32033e-20) (-26.8842 27.9148 -8.93067e-20) (-29.7905 28.3765 1.79854e-19) (-30.354 27.8007 0) (-32.9777 28.5486 3.62996e-19) (-32.2848 28.9058 -1.83248e-19) (-34.4456 29.5346 0) (-35.485 29.275 5.90007e-18) (0.244754 8.63228 4.23303e-20) (-3.68924 11.8896 -4.03969e-23) (-6.58176 10.9844 -9.50702e-24) (-3.20179 8.03674 -7.09309e-24) (-6.03027 7.42424 0) (-9.29645 10.162 0) (-11.8728 9.43061 0) (-8.76417 6.80057 0) (-11.3527 6.26471 0) (-14.3051 8.78189 0) (-17.402 11.2868 0) (-15.1421 12.0384 0) (-12.7643 12.8808 0) (-10.2842 13.8294 -2.03939e-20) (-7.68879 14.9186 -4.66106e-23) (-11.7804 17.5092 0) (-15.7623 19.6813 0) (-19.5368 21.4797 0) (-21.1965 20.3234 0) (-17.7136 18.4917 -1.06282e-20) (-14.0525 16.3375 1.04359e-20) (-16.2637 15.3032 0) (-18.4143 14.3771 0) (-20.4837 13.5427 0) (-23.4375 15.5514 0) (-21.5688 16.4446 0) (-19.6555 17.4206 0) (-22.8824 19.2531 0) (-24.5631 18.2531 0) (-26.2258 17.3225 0) (-27.8293 16.447 0) (-25.2307 14.7129 0) (-22.4675 12.7677 0) (-19.5733 10.6067 0) (-16.6522 8.22614 0) (-13.8523 5.84498 0) (-16.2501 5.48153 0) (-18.9363 7.75318 0) (-21.0954 7.3134 0) (-18.5003 5.15288 0) (-20.6308 4.86072 0) (-23.1402 6.9135 0) (-25.0893 6.55102 0) (-22.6574 4.59882 0) (-24.5874 4.36095 0) (-26.9505 6.22047 0) (-28.7286 5.91569 0) (-26.4274 4.14232 0) (-28.1838 3.94032 0) (-30.4283 5.63346 0) (-32.6146 7.36466 0) (-30.992 7.72532 0) (-29.2982 8.1136 0) (-27.5302 8.53317 0) (-25.6842 8.99036 0) (-23.7502 9.48833 0) (-21.7064 10.0266 0) (-24.4216 12.0898 0) (-26.3254 11.4736 0) (-28.1319 10.8927 0) (-30.4062 12.6257 0) (-28.734 13.2743 0) (-26.9899 13.9546 0) (-29.3915 15.6258 0) (-30.9624 14.8842 0) (-32.4922 14.1842 0) (-33.9483 13.5247 0) (-32.0003 12.0182 0) (-29.8571 10.3529 0) (-31.5137 9.85459 0) (-33.1061 9.39206 0) (-34.6358 8.96135 0) (-36.4402 10.4376 0) (-35.0137 10.9283 0) (-33.5339 11.4539 0) (-35.352 12.9066 0) (-36.712 12.3284 0) (-38.0287 11.7874 0) (-39.4113 13.0216 0) (-38.2086 13.6029 0) (-36.9721 14.2243 0) (-35.7001 14.8852 0) (-34.3837 15.5839 0) (-33.0095 16.3188 0) (-31.6225 17.1143 0) (-30.2461 17.9793 0) (-28.8296 18.8794 0) (-27.378 19.8297 0) (-25.9212 20.838 0) (-24.4662 21.8854 0) (-23.0537 22.9771 0) (-26.2937 24.2425 0) (-29.2525 25.3263 0) (-31.9307 26.2615 4.46266e-20) (-32.7942 25.2564 -6.74296e-20) (-30.2892 24.3496 -2.18964e-20) (-27.5039 23.2218 0) (-28.7494 22.201 0) (-29.9867 21.1875 0) (-31.2308 20.2346 0) (-33.396 21.3875 0) (-32.3469 22.3161 0) (-31.3329 23.3403 0) (-33.6261 24.2239 0) (-34.404 23.1788 -4.52142e-20) (-35.2921 22.323 4.52152e-20) (-36.9157 23.0918 -4.75965e-20) (-36.1154 23.8145 4.76518e-20) (-35.5801 24.868 3.79032e-19) (-34.9752 25.9481 4.70133e-20) (-34.3459 27.0797 -3.57489e-24) (-36.4442 27.8005 0) (-36.7578 26.4917 -6.28561e-18) (-38.1234 26.377 -3.52614e-18) (-37.1249 25.557 -5.54695e-19) (-37.5211 24.5189 1.01811e-19) (-39.2992 25.0713 0) (-38.3061 24.0283 -1.0119e-19) (-38.8787 22.7158 7.41602e-18) (-37.6753 22.0418 -7.61898e-19) (-36.2005 21.3595 0) (-34.4575 20.4514 0) (-32.4644 19.3141 0) (-33.6619 18.4226 0) (-34.8602 17.588 0) (-36.0724 16.8312 0) (-37.5465 17.9205 0) (-36.4944 18.6861 0) (-35.4832 19.547 0) (-37.0613 20.4575 0) (-37.8927 19.5718 0) (-38.7946 18.8226 4.52316e-20) (-39.7211 18.068 -4.5229e-20) (-38.5975 17.1768 0) (-37.253 16.1038 0) (-38.3944 15.4106 0) (-39.5071 14.7543 0) (-40.5916 14.1452 0) (-41.5714 15.159 0) (-40.5992 15.7785 0) (-39.6123 16.4635 0) (-40.6155 17.3443 0) (-41.4749 16.641 -4.50653e-20) (-42.3441 16.0367 0) (-42.9103 16.7601 0) (-42.1327 17.2997 4.28261e-19) (-41.3891 18.0359 0) (-40.6152 18.7531 4.76792e-20) (-39.8108 19.586 -4.76676e-20) (-39.0457 20.2362 0) (-38.3737 21.1638 0) (-39.3939 21.9362 0) (-40.0735 22.7846 -1.54301e-18) (-41.8442 23.5908 -6.00043e-19) (-41.0526 21.7139 9.75044e-20) (-39.9702 20.9165 0) (-40.5929 20.5903 0) (-41.3231 19.456 -6.51107e-18) (-42.2354 19.6717 1.44595e-18) (-41.9241 18.8784 0) (-42.6309 17.9432 6.14977e-18) (-43.3445 18.9106 -1.59612e-18) (-43.2612 17.77 0) (-44.0601 16.7695 0) (-43.7263 16.0566 0) (-43.2256 15.3926 0) (-42.5389 14.5466 0) (-41.6588 13.5616 0) (-40.5814 12.4717 0) (-39.3026 11.2781 0) (-37.815 9.97711 0) (-36.1055 8.55836 0) (-34.17 7.02806 0) (-32.0549 5.37072 0) (-29.8624 3.75267 0) (-31.4684 3.57774 0) (-33.6126 5.12561 0) (-35.1058 4.89615 0) (-33.0064 3.41412 0) (-34.4805 3.26076 0) (-36.5381 4.68109 0) (-37.9132 4.47908 0) (-35.8948 3.11676 0) (-37.2526 2.98141 0) (-39.2342 4.28927 0) (-40.5042 4.11073 0) (-38.5571 2.85437 0) (-39.8144 2.736 0) (-41.7281 3.94091 8.07679e-20) (-43.4601 5.1884 0) (-42.283 5.40496 0) (-41.0605 5.63561 0) (-39.79 5.88068 0) (-38.4687 6.14118 0) (-37.0937 6.41818 0) (-35.6619 6.71333 0) (-37.518 8.18076 0) (-38.8759 7.82605 0) (-40.182 7.4928 0) (-41.6447 8.75416 0) (-40.4152 9.13718 0) (-39.1393 9.54447 0) (-40.5333 10.7979 0) (-41.722 10.3446 0) (-42.8696 9.9179 0) (-43.979 9.51439 0) (-42.83 8.39277 0) (-41.4388 7.17897 0) (-42.6487 6.88339 0) (-43.8143 6.60484 0) (-44.9376 6.34276 0) (-46.1379 7.42932 0) (-45.0768 7.73099 0) (-43.9724 8.05193 0) (-45.0499 9.1332 0) (-46.0881 8.77166 0) (-47.087 8.43453 0) (-48.0528 8.11625 0) (-47.1658 7.14362 0) (-46.0216 6.09579 0) (-44.5946 4.98478 0) (-42.9055 3.78047 -4.0454e-23) (-41.022 2.62541 0) (-42.1832 2.51936 0) (-44.038 3.63175 -8.10709e-20) (-45.1312 3.49271 0) (-43.3047 2.41792 0) (-44.3864 2.32278 0) (-46.1864 3.36153 0) (-47.2062 3.23776 0) (-45.4311 2.2334 0) (-46.4408 2.14934 0) (-48.1923 3.12107 0) (-49.1465 3.01099 0) (-47.4174 2.07021 0) (-48.3629 1.99568 0) (-50.0706 2.90716 0) (-51.524 3.84861 0) (-50.6288 3.98367 0) (-49.705 4.12693 0) (-48.751 4.27891 0) (-47.7649 4.44018 0) (-46.7449 4.61128 0) (-45.6888 4.79271 0) (-47.0679 5.86313 0) (-48.0784 5.64407 0) (-49.0553 5.43787 0) (-50.0489 6.38317 0) (-49.1192 6.62141 0) (-48.1589 6.87463 0) (-48.99 7.81454 0) (-49.8974 7.53032 0) (-50.7773 7.2631 0) (-51.6317 7.01086 0) (-50.9498 6.1584 0) (-50.0006 5.24353 0) (-50.916 5.06033 0) (-51.8032 4.88761 0) (-52.6638 4.72486 0) (-53.4934 5.55761 0) (-52.6706 5.74619 0) (-51.8232 5.94633 0) (-52.4611 6.77273 0) (-53.2684 6.54862 0) (-54.0502 6.33789 0) (-54.3762 7.07361 0) (-53.6341 7.30462 0) (-52.8673 7.55246 0) (-52.0822 7.81417 0) (-51.2743 8.09118 0) (-50.4467 8.38248 0) (-49.5919 8.6934 0) (-48.7122 9.02359 0) (-47.8078 9.37202 0) (-46.8729 9.74201 0) (-45.905 10.1377 0) (-44.9078 10.555 0) (-43.876 10.9957 0) (-42.8157 11.4585 0) (-41.7154 11.9512 0) (-42.696 13.0072 0) (-43.7052 12.4776 0) (-44.6801 11.9861 0) (-45.289 12.8997 0) (-44.3962 13.4053 0) (-43.4809 13.9648 0) (-44.0744 14.7922 0) (-44.8944 14.2042 -4.50291e-20) (-45.7145 13.7089 0) (-46.543 13.1702 0) (-46.1717 12.3963 0) (-45.6338 11.5134 0) (-46.5574 11.0639 0) (-47.4538 10.6373 0) (-48.3227 10.2424 0) (-48.6533 11.0531 -8.76513e-20) (-47.8493 11.4625 0) (-47.0245 11.9175 0) (-47.3281 12.669 0) (-48.0798 12.1912 -4.49932e-20) (-48.8254 11.7907 0) (-48.8653 12.4055 0) (-48.1691 12.7516 4.27701e-19) (-47.4821 13.2702 -3.81627e-19) (-46.7778 13.7734 0) (-45.9771 14.3929 0) (-45.2168 14.8267 4.27998e-19) (-44.4765 15.4682 -3.8186e-19) (-44.6899 16.3246 4.10663e-19) (-44.7582 17.081 6.34196e-18) (-45.6994 18.3602 -1.1057e-18) (-46.0096 16.5854 0) (-45.4515 15.4679 -4.10254e-19) (-46.1035 15.4312 0) (-46.9219 14.4878 6.51283e-18) (-47.4911 14.8405 -1.57711e-18) (-47.4971 14.0916 4.10394e-19) (-48.1948 13.32 -4.09992e-19) (-48.539 14.4328 6.29289e-18) (-48.7871 13.3417 0) (-49.5778 12.5744 6.50529e-18) (-49.6079 11.9042 0) (-49.5799 11.3583 0) (-49.4468 10.6514 8.7664e-20) (-49.1679 9.86753 0) (-49.9914 9.51143 0) (-50.7939 9.17414 0) (-51.5717 8.86246 0) (-51.6999 9.59198 0) (-50.9672 9.91485 0) (-50.217 10.273 0) (-50.2999 10.9624 0) (-50.9988 10.589 -4.49547e-20) (-51.6933 10.2702 0) (-52.3946 9.9235 0) (-52.4254 9.27191 0) (-52.3351 8.56402 0) (-53.078 8.28142 0) (-53.8043 8.01432 0) (-54.5098 7.76748 0) (-54.4919 8.42906 0) (-53.8185 8.68611 0) (-53.1302 8.9701 0) (-53.0633 9.60612 0) (-53.7162 9.31261 -4.49092e-20) (-54.3641 9.05603 0) (-54.1582 9.58304 0) (-53.5372 9.80129 4.26773e-19) (-52.9055 10.1158 -3.80843e-19) (-52.2884 10.4293 0) (-51.5838 10.8394 0) (-50.9217 11.1116 4.27324e-19) (-50.2625 11.5146 -3.81302e-19) (-50.1178 12.308 4.09976e-19) (-49.9799 12.9962 -1.57642e-18) (-50.2053 14.3316 0) (-51.0048 12.7126 0) (-50.8154 11.6718 -4.0946e-19) (-51.3797 11.7237 0) (-52.1541 11.0721 6.49388e-18) (-52.4368 11.5292 -7.86093e-18) (-52.6674 10.8666 4.09317e-19) (-53.3498 10.3634 -4.0857e-19) (-53.3188 11.2642 6.33889e-18) (-53.8437 10.3897 0) (-54.5758 9.86332 6.4753e-18) (-54.8212 9.26214 0) (-55.0178 8.78012 0) (-55.1597 8.17446 0) (-55.2039 7.53067 0) (-55.1031 6.85426 0) (-54.8133 6.1375 0) (-54.2932 5.37953 0) (-53.4992 4.57118 0) (-52.3922 3.72115 0) (-50.9663 2.80913 0) (-49.2788 1.92541 0) (-50.1669 1.85911 0) (-51.8352 2.71655 0) (-52.6787 2.62905 0) (-51.0287 1.7965 0) (-51.8656 1.73734 0) (-53.4981 2.54632 0) (-54.2949 2.46797 0) (-52.679 1.6816 0) (-53.4702 1.62858 0) (-55.0701 2.39379 0) (-55.8247 2.32349 0) (-54.2402 1.57828 0) (-54.99 1.53059 0) (-56.5599 2.25679 0) (-57.8267 3.00312 0) (-57.1111 3.08993 0) (-56.377 3.18134 0) (-55.6234 3.27774 0) (-54.8492 3.37952 0) (-54.0535 3.48705 0) (-53.2349 3.60078 0) (-54.3107 4.42602 0) (-55.0997 4.28885 0) (-55.8673 4.15912 0) (-56.565 4.90217 0) (-55.8278 5.05242 0) (-55.0709 5.21133 0) (-55.5561 5.94812 0) (-56.28 5.76903 0) (-56.986 5.59992 0) (-57.6753 5.43969 0) (-57.2835 4.75976 0) (-56.6146 4.03624 0) (-57.3427 3.91978 0) (-58.0525 3.80932 0) (-58.7449 3.70443 0) (-59.3352 4.37492 0) (-58.6677 4.4966 0) (-57.9841 4.62474 0) (-58.3482 5.28784 0) (-59.0056 5.14379 0) (-59.6484 5.0071 0) (-60.2772 4.87669 0) (-59.9874 4.25908 0) (-59.4208 3.60468 0) (-58.5247 2.92057 0) (-57.2765 2.19364 0) (-55.722 1.48423 0) (-56.4334 1.44059 0) (-57.9755 2.13363 0) (-58.6577 2.0765 0) (-57.1298 1.39899 0) (-57.8072 1.35963 0) (-59.3239 2.02199 0) (-59.9747 1.96991 0) (-58.471 1.32194 0) (-59.1174 1.28616 0) (-60.6109 1.9201 0) (-61.2331 1.87224 0) (-59.7503 1.25276 0) (-60.3691 1.22084 0) (-61.8418 1.82628 0) (-62.9794 2.43924 0) (-62.3847 2.49917 0) (-61.7771 2.56174 0) (-61.1561 2.62711 0) (-60.5209 2.69546 0) (-59.8711 2.76699 0) (-59.2059 2.84194 0) (-60.0808 3.50973 0) (-60.7258 3.41925 0) (-61.3562 3.33296 0) (-61.8583 3.94296 0) (-61.2483 4.04343 0) (-60.6249 4.14872 0) (-60.8925 4.75223 0) (-61.4959 4.63386 0) (-62.0849 4.52091 0) (-62.6631 4.41176 0) (-62.4553 3.84691 0) (-61.9729 3.25042 0) (-62.576 3.17132 0) (-63.1677 3.0961 0) (-63.7449 3.02396 0) (-64.175 3.58328 0) (-63.6145 3.66745 0) (-63.0408 3.7555 0) (-63.2315 4.3069 0) (-63.787 4.20655 0) (-64.3322 4.11016 0) (-64.2821 4.61889 0) (-63.7531 4.72445 0) (-63.2137 4.83526 0) (-62.6616 4.95169 0) (-62.1014 5.07276 0) (-61.5296 5.1983 0) (-60.945 5.33037 0) (-60.3486 5.46766 0) (-59.7408 5.61215 0) (-59.1208 5.76295 0) (-58.488 5.92208 0) (-57.8414 6.08977 0) (-57.1798 6.26673 0) (-56.5048 6.45181 0) (-55.813 6.64708 0) (-55.8829 7.30472 0) (-56.5472 7.09133 0) (-57.1945 6.89328 0) (-57.0765 7.50079 0) (-56.4502 7.70893 0) (-55.8108 7.93489 0) (-55.644 8.52689 0) (-56.2621 8.29457 -4.4847e-20) (-56.8724 8.08016 0) (-57.4821 7.85591 0) (-57.697 7.29438 0) (-57.8321 6.70248 0) (-58.4559 6.52156 0) (-59.0686 6.35007 0) (-59.6686 6.18837 0) (-59.4831 6.7501 0) (-58.8987 6.91922 0) (-58.3021 7.10145 0) (-58.0623 7.65012 0) (-58.6372 7.46617 -4.47362e-20) (-59.1955 7.28401 0) (-58.7577 7.72326 0) (-58.2658 7.91106 4.23963e-19) (-57.713 8.11857 -3.78631e-19) (-57.193 8.32306 0) (-56.5887 8.58224 0) (-56.0118 8.77383 4.25791e-19) (-55.4027 9.01791 -3.80073e-19) (-55.0613 9.70056 4.08093e-19) (-54.6543 10.3131 -7.90924e-18) (-54.0165 11.2659 1.28188e-18) (-55.4197 10.0188 4.91099e-20) (-55.7168 9.30635 -4.07035e-19) (-56.139 9.26281 0) (-56.7966 8.83002 6.44504e-18) (-56.6258 9.22736 -1.62141e-18) (-57.2275 8.66911 4.06198e-19) (-57.8102 8.3442 -4.05046e-19) (-57.2732 8.90942 4.91207e-20) (-58.154 8.24591 0) (-58.726 7.89419 6.41724e-18) (-59.275 7.48656 0) (-59.7403 7.08786 0) (-60.059 6.58158 0) (-60.2596 6.03035 0) (-60.8401 5.88089 0) (-61.4074 5.73853 0) (-61.9638 5.60431 0) (-61.6854 6.12173 -8.70087e-20) (-61.1583 6.2711 8.6792e-20) (-60.6156 6.42321 -8.68114e-20) (-60.2457 6.90368 0) (-60.7457 6.73569 -4.45701e-20) (-61.2253 6.55964 0) (-61.691 6.38031 0) (-62.1925 5.96947 8.69655e-20) (-62.5057 5.47539 0) (-63.036 5.35147 0) (-63.5505 5.23075 0) (-64.0507 5.11181 0) (-63.5965 5.5374 -8.6724e-20) (-63.1448 5.68094 8.65054e-20) (-62.676 5.82193 -8.6536e-20) (-62.1274 6.21262 0) (-62.5633 6.06096 -4.4403e-20) (-62.9736 5.89177 0) (-62.2473 6.19844 0) (-61.8934 6.3844 4.20205e-19) (-61.4678 6.56086 -3.75279e-19) (-61.0789 6.72441 0) (-60.6314 6.9278 0) (-60.2094 7.11288 4.22217e-19) (-59.723 7.30093 -3.76967e-19) (-59.1172 7.75657 4.04536e-19) (-58.3571 8.25507 -1.62183e-18) (-56.9206 8.82236 0) (-58.8911 7.91807 4.9138e-20) (-59.6327 7.47969 -4.0327e-19) (-59.9113 7.35166 0) (-60.4157 7.06107 6.38641e-18) (-59.8486 7.35952 -1.6222e-18) (-60.7605 6.93045 4.02531e-19) (-61.2072 6.68195 -4.01088e-19) (-60.2792 7.00965 4.91442e-20) (-61.4269 6.53141 0) (-61.8643 6.28775 6.34819e-18) (-62.6295 6.01713 0) (-63.3694 5.72962 0) (-64.029 5.39229 8.66838e-20) (-64.5305 4.99289 0) (-64.7974 4.51837 0) (-64.8647 4.01752 0) (-64.724 3.50242 0) (-64.3116 2.95395 0) (-63.5617 2.38184 0) (-62.4375 1.78209 0) (-60.9747 1.19011 0) (-61.5675 1.16037 0) (-63.0206 1.73965 0) (-63.5915 1.69908 0) (-62.149 1.13086 0) (-62.7165 1.10278 0) (-64.1507 1.66014 0) (-64.6999 1.62185 8.01167e-20) (-63.2756 1.07643 0) (-63.8195 1.05119 0) (-65.2365 1.58522 -8.04456e-20) (-65.7635 1.5504 0) (-64.3546 1.02673 0) (-64.8788 1.0035 0) (-66.2802 1.5166 0) (-67.324 2.03658 0) (-66.8174 2.08081 0) (-66.3011 2.12652 0) (-65.7747 2.17376 0) (-65.238 2.2228 0) (-64.6905 2.27381 0) (-64.1319 2.32676 0) (-64.8667 2.88693 0) (-65.4109 2.82257 0) (-65.9444 2.76061 0) (-66.311 3.2754 0) (-65.7921 3.34839 0) (-65.2632 3.42396 0) (-65.3887 3.92839 0) (-65.9027 3.84254 0) (-66.4068 3.76002 0) (-66.9006 3.68092 0) (-66.8202 3.20468 0) (-66.4678 2.70084 0) (-66.9812 2.6432 0) (-67.4851 2.58753 0) (-67.9797 2.5336 0) (-68.2928 3.00662 0) (-67.8109 3.07031 0) (-67.3201 3.13632 0) (-67.3834 3.60588 0) (-67.8549 3.53283 0) (-68.3142 3.46089 0) (-68.7603 3.38981 0) (-68.7657 2.94528 0) (-68.4652 2.48126 0) (-67.8212 1.99381 0) (-66.7872 1.48393 0) (-65.394 0.980585 0) (-65.899 0.95792 0) (-67.2849 1.45247 0) (-67.7735 1.42196 0) (-66.3939 0.936844 0) (-66.8813 0.916434 0) (-68.2534 1.39241 0) (-68.7248 1.36373 0) (-67.3582 0.896928 0) (-67.8284 0.878046 0) (-69.1879 1.33589 0) (-69.6432 1.30894 0) (-68.2889 0.859911 0) (-68.7423 0.842717 0) (-70.0908 1.2828 0) (-71.0645 1.73164 0) (-70.6246 1.76577 0) (-70.1774 1.80091 0) (-69.7225 1.83709 0) (-69.2597 1.87435 0) (-68.7887 1.91277 0) (-68.3093 1.95254 0) (-68.942 2.43056 0) (-69.4105 2.38143 0) (-69.8713 2.33389 0) (-70.1294 2.77801 0) (-69.6843 2.83161 0) (-69.2295 2.88686 0) (-69.1916 3.31983 0) (-69.6057 3.25012 0) (-70.0012 3.17944 0) (-70.378 3.10756 0) (-70.564 2.72549 0) (-70.3244 2.28791 0) (-70.7702 2.24365 0) (-71.2087 2.20158 0) (-71.6401 2.16201 0) (-71.7907 2.57153 0) (-71.3966 2.62275 0) (-70.9868 2.67384 0) (-70.7356 3.03452 0) (-71.0738 2.95954 0) (-71.3925 2.88167 0) (-70.6095 3.09812 0) (-70.3426 3.19628 0) (-70.0608 3.29299 0) (-69.7635 3.38938 0) (-69.4484 3.48632 0) (-69.1147 3.58255 0) (-68.7627 3.67746 0) (-68.3931 3.77125 0) (-68.0046 3.86492 0) (-67.5981 3.95706 0) (-67.1732 4.04854 0) (-66.7305 4.14061 0) (-66.2688 4.23393 0) (-65.7925 4.3273 0) (-65.3012 4.42183 0) (-64.9901 4.87581 0) (-65.434 4.75999 0) (-65.8593 4.64448 0) (-65.2254 4.98255 0) (-64.8431 5.12029 0) (-64.4415 5.25322 0) (-63.7406 5.57536 0) (-64.1139 5.43299 -4.42052e-20) (-64.4597 5.2672 0) (-64.7919 5.1156 0) (-65.5894 4.8454 0) (-66.2675 4.52739 0) (-66.657 4.41178 0) (-67.0317 4.29727 0) (-67.387 4.18212 0) (-66.5906 4.44768 0) (-66.2723 4.58451 0) (-65.9353 4.71333 0) (-65.1041 4.96936 0) (-65.4193 4.83135 -4.39409e-20) (-65.7066 4.6671 0) (-64.7803 4.86012 0) (-64.5389 5.04132 4.14527e-19) (-64.226 5.20556 -3.70456e-19) (-63.9435 5.34779 0) (-63.6215 5.51278 0) (-63.3284 5.6964 4.17693e-19) (-62.962 5.86548 -3.73173e-19) (-62.1641 6.16057 3.99995e-19) (-61.1142 6.52623 -1.622e-18) (-58.9837 6.83711 0) (-61.4613 6.17574 4.91317e-20) (-62.5462 5.93422 -3.98355e-19) (-62.7188 5.77169 0) (-63.0928 5.56269 6.30042e-18) (-62.1861 5.75171 -1.62109e-18) (-63.3532 5.43932 3.96929e-19) (-63.6808 5.23105 -3.95165e-19) (-62.4696 5.41156 4.90999e-20) (-63.8161 5.06457 0) (-64.1283 4.87781 6.24814e-18) (-65.0465 4.70478 0) (-65.9808 4.52242 0) (-66.8909 4.31352 0) (-67.7241 4.06647 0) (-68.0436 3.95354 0) (-68.3498 3.84121 0) (-68.6409 3.72613 0) (-67.7196 3.92818 -8.54896e-20) (-67.4553 4.06165 8.52903e-20) (-67.1764 4.18597 0) (-66.2403 4.38623 0) (-66.5057 4.25616 -4.36251e-20) (-66.7461 4.09972 0) (-66.975 3.96383 0) (-67.9679 3.79914 0) (-68.9158 3.6109 0) (-69.1768 3.49932 0) (-69.428 3.38905 0) (-69.6676 3.27683 0) (-68.6591 3.43485 0) (-68.4381 3.56053 0) (-68.205 3.67824 0) (-67.1927 3.83834 0) (-67.417 3.71733 4.33608e-20) (-67.6208 3.57228 -8.68781e-20) (-66.5768 3.69989 0) (-66.4055 3.8535 4.07463e-19) (-66.1755 3.99481 -3.64219e-19) (-65.9766 4.10902 0) (-65.753 4.25566 0) (-65.5505 4.42544 4.11058e-19) (-65.2825 4.57737 -3.67406e-19) (-64.3471 4.76217 3.93636e-19) (-63.0889 5.03242 -1.61965e-18) (-60.4626 5.22635 -2.02507e-20) (-63.3218 4.71636 4.90522e-20) (-64.6302 4.57883 -3.91801e-19) (-64.7418 4.42018 0) (-65.0077 4.25016 6.19422e-18) (-63.8628 4.37604 -1.61782e-18) (-65.1936 4.14286 3.90258e-19) (-65.4374 3.98087 -3.88377e-19) (-64.0528 4.08668 4.8993e-20) (-65.5289 3.83388 0) (-65.7611 3.67855 6.13967e-18) (-66.7684 3.563 0) (-67.8146 3.44619 0) (-68.8675 3.31411 0) (-69.8945 3.16567 0) (-70.8614 2.99973 0) (-71.6916 2.80186 0) (-72.1667 2.51925 0) (-72.064 2.12402 0) (-71.4976 1.69847 0) (-70.5311 1.25763 0) (-69.1889 0.825224 0) (-69.6265 0.80854 0) (-70.9641 1.2333 0) (-71.3911 1.20902 7.98999e-20) (-70.0594 0.792907 0) (-70.4831 0.777056 0) (-71.81 1.18564 -8.02257e-20) (-72.2231 1.16324 0) (-70.9002 0.761687 0) (-71.312 0.746848 0) (-72.6299 1.1412 0) (-73.0311 1.11947 0) (-71.7161 0.732697 0) (-72.1155 0.719004 0) (-73.4268 1.09811 0) (-74.3668 1.50339 0) (-73.9734 1.52646 0) (-73.5742 1.55133 0) (-73.1697 1.57778 0) (-72.7599 1.60565 0) (-72.3449 1.63528 0) (-71.9243 1.66629 0) (-72.4797 2.08745 0) (-72.8862 2.05195 0) (-73.2823 2.01695 0) (-73.176 2.35065 0) (-72.8604 2.40953 0) (-72.5236 2.46545 0) (-71.9722 2.72091 0) (-72.2357 2.63856 0) (-72.4832 2.55448 0) (-72.7157 2.46942 0) (-73.47 2.28834 0) (-73.6652 1.98195 0) (-74.0325 1.94624 0) (-74.3817 1.90867 0) (-74.7105 1.86845 0) (-74.2314 2.08519 0) (-73.9961 2.15561 0) (-73.7429 2.22327 0) (-72.9347 2.38481 0) (-73.1418 2.30062 0) (-73.338 2.21625 0) (-73.5241 2.13228 0) (-74.4502 2.01242 0) (-75.017 1.82495 0) (-74.7533 1.48177 0) (-73.8175 1.07727 0) (-72.5076 0.705823 0) (-72.8954 0.692843 0) (-74.2038 1.05725 0) (-74.5863 1.03848 0) (-73.2772 0.679626 0) (-73.6531 0.666967 0) (-74.9656 1.02129 0) (-75.3422 1.0063 0) (-74.0251 0.654173 0) (-74.3916 0.640912 0) (-75.7162 0.994117 0) (-76.0873 0.984513 0) (-74.753 0.628076 0) (-75.1114 0.615288 0) (-76.4544 0.976746 0) (-77.0598 1.30177 0) (-76.7934 1.33602 0) (-76.5018 1.36671 0) (-76.187 1.39402 0) (-75.8514 1.41831 0) (-75.4982 1.44033 0) (-75.1312 1.46106 0) (-75.2999 1.77791 0) (-75.5589 1.7273 0) (-75.7955 1.67317 0) (-75.0259 1.78983 0) (-74.846 1.86397 0) (-74.6545 1.93838 0) (-73.7011 2.04952 0) (-73.8704 1.96784 0) (-74.0321 1.88684 0) (-74.1862 1.8068 0) (-75.1951 1.71624 0) (-76.0113 1.61572 0) (-76.2087 1.5553 0) (-76.3903 1.4927 0) (-76.5584 1.42871 0) (-75.6499 1.50144 0) (-75.5062 1.57198 0) (-75.3549 1.64356 0) (-74.3331 1.72838 0) (-74.4737 1.65136 0) (-74.608 1.57535 0) (-73.5017 1.64526 0) (-73.3743 1.72658 0) (-73.2414 1.80861 0) (-73.1035 1.8921 0) (-72.9594 1.978 0) (-72.8084 2.06504 0) (-72.6508 2.15258 0) (-72.4871 2.24156 0) (-72.3158 2.33303 0) (-72.1358 2.42564 0) (-71.9473 2.51851 0) (-71.7508 2.61259 0) (-71.5448 2.70897 0) (-71.3278 2.80603 0) (-71.1001 2.90264 0) (-70.111 3.05885 0) (-70.3202 2.95366 0) (-70.52 2.84707 0) (-69.4513 2.9727 -8.42453e-20) (-69.2642 3.09054 8.40729e-20) (-69.0672 3.20114 0) (-67.9993 3.33034 0) (-68.1913 3.21705 -4.29377e-20) (-68.3642 3.08269 0) (-68.5294 2.96568 0) (-69.6271 2.85983 0) (-70.7095 2.742 0) (-70.8909 2.64142 0) (-71.0669 2.54229 0) (-71.2354 2.44212 0) (-70.1221 2.54215 0) (-69.9634 2.65124 0) (-69.7961 2.75454 0) (-68.687 2.8588 0) (-68.8508 2.75363 4.2658e-20) (-68.9994 2.63095 -8.54605e-20) (-67.888 2.7172 0) (-67.7641 2.84406 4.002e-19) (-67.5931 2.9667 -3.57733e-19) (-67.4473 3.05959 0) (-67.2822 3.1878 0) (-67.1368 3.32775 4.03823e-19) (-66.9383 3.45985 -3.60974e-19) (-65.9217 3.57937 3.86852e-19) (-64.5336 3.77945 -1.61566e-18) (-61.573 3.90481 -2.02821e-20) (-64.6883 3.51406 4.8925e-20) (-66.1329 3.43402 -3.84942e-19) (-66.2068 3.29736 0) (-66.41 3.15451 6.08537e-18) (-65.1162 3.23517 -1.61323e-18) (-66.5493 3.06374 3.83477e-19) (-66.7331 2.93396 -3.81549e-19) (-65.2422 2.99338 -6.2582e-18) (-66.7926 2.80706 0) (-66.9725 2.67562 6.03197e-18) (-68.0327 2.59767 0) (-69.1416 2.52244 0) (-70.2722 2.43718 0) (-71.3953 2.34348 0) (-71.5487 2.24924 0) (-71.6977 2.15659 0) (-71.8407 2.06344 0) (-70.6954 2.14297 0) (-70.5595 2.24336 0) (-70.4164 2.33934 0) (-69.277 2.42387 0) (-69.418 2.32639 4.23075e-20) (-69.546 2.21479 -8.47567e-20) (-69.6693 2.11452 0) (-70.8241 2.04599 0) (-71.9764 1.97175 0) (-72.1067 1.88422 0) (-72.2336 1.79813 0) (-72.3553 1.71187 0) (-71.1871 1.77509 0) (-71.0703 1.8671 0) (-70.9475 1.95571 0) (-69.786 2.02399 0) (-69.9076 1.93428 4.19621e-20) (-70.0184 1.83325 -8.40639e-20) (-68.8701 1.89274 0) (-68.7783 1.99562 3.93149e-19) (-68.6498 2.10006 -3.51403e-19) (-68.5409 2.17455 0) (-68.4132 2.28617 0) (-68.3067 2.40084 3.96635e-19) (-68.1586 2.51437 -3.54535e-19) (-67.0945 2.5933 3.80161e-19) (-65.6265 2.73991 -7.80082e-18) (-62.4474 2.82064 4.14259e-20) (-65.7293 2.51992 6.24806e-18) (-67.2555 2.47708 -3.78226e-19) (-67.3036 2.35975 0) (-67.4642 2.2386 5.97981e-18) (-66.0767 2.28995 -7.78772e-18) (-67.5706 2.16443 3.7692e-19) (-67.7121 2.06046 -3.74988e-19) (-66.1598 2.09001 -6.23749e-18) (-67.7508 1.95266 0) (-67.8966 1.84097 5.9287e-18) (-68.9838 1.78877 0) (-70.126 1.74082 0) (-71.2979 1.68566 0) (-72.4711 1.62693 0) (-73.6232 1.56521 0) (-74.7359 1.50053 0) (-75.7863 1.43211 0) (-76.715 1.36412 0) (-77.3001 1.2637 0) (-76.8155 0.969708 0) (-75.4654 0.603157 0) (-75.8186 0.592094 0) (-77.1678 0.962114 0) (-77.5072 0.952397 0) (-76.1698 0.582878 0) (-76.522 0.576569 0) (-77.8294 0.939189 0) (-78.1299 0.92203 0) (-76.8761 0.573041 0) (-77.2306 0.573081 0) (-78.4056 0.901019 0) (-78.6541 0.876478 0) (-77.5856 0.576318 0) (-77.9393 0.580392 0) (-78.8747 0.848495 0) (-78.4272 0.916767 0) (-78.3052 0.970344 0) (-78.1745 1.02407 0) (-78.0334 1.07701 0) (-77.8786 1.12811 0) (-77.7069 1.17658 0) (-77.5151 1.22189 0) (-76.8616 1.30002 0) (-76.999 1.2373 0) (-77.1278 1.17637 0) (-76.1557 1.23257 0) (-76.0389 1.2978 0) (-75.9158 1.36425 0) (-74.8579 1.42741 0) (-74.9746 1.35574 0) (-75.0858 1.28526 0) (-75.1916 1.21613 0) (-76.2664 1.16855 0) (-77.2487 1.11723 0) (-77.3622 1.0597 0) (-77.4693 1.0035 0) (-77.5705 0.948565 0) (-76.5654 0.984548 0) (-76.4709 1.04459 0) (-76.3714 1.10591 0) (-75.2923 1.14879 0) (-75.3884 1.08303 0) (-75.4799 1.01861 0) (-75.5667 0.955664 0) (-76.6549 0.925879 0) (-77.6662 0.894898 0) (-78.5414 0.864338 0) (-79.0687 0.817263 0) (-78.2866 0.584293 0) (-78.6254 0.585978 0) (-79.2388 0.782984 0) (-79.3881 0.746229 0) (-78.9488 0.584161 0) (-79.254 0.578331 8.30597e-20) (-79.5202 0.707426 0) (-79.6388 0.667235 0) (-79.5348 0.569003 -8.33713e-20) (-79.7903 0.556681 0) (-79.7473 0.626489 0) (-79.8479 0.585895 0) (-80.017 0.541011 0) (-80.217 0.522763 0) (-79.9413 0.546416 0) (-79.1526 0.551623 0) (-79.0821 0.591378 0) (-79.0067 0.632628 0) (-78.9262 0.675402 0) (-78.8401 0.719669 0) (-78.7476 0.765698 0) (-78.6481 0.81387 0) (-77.7565 0.842544 0) (-77.8416 0.79148 0) (-77.9219 0.74165 0) (-76.8956 0.759001 0) (-76.8198 0.813176 0) (-76.7396 0.86877 0) (-75.6491 0.894605 0) (-75.7274 0.835234 0) (-75.8018 0.77732 0) (-75.872 0.72091 0) (-76.9672 0.706272 0) (-77.9973 0.693053 0) (-78.0682 0.64579 0) (-78.1349 0.599976 0) (-78.1974 0.555666 0) (-77.158 0.557732 0) (-77.0982 0.605664 0) (-77.0346 0.655159 0) (-75.9385 0.666394 0) (-76.0014 0.613613 0) (-76.0608 0.562383 0) (-74.918 0.570917 0) (-74.8579 0.625247 0) (-74.7947 0.681001 0) (-74.7284 0.738536 0) (-74.6584 0.798502 0) (-74.5845 0.859867 0) (-74.507 0.922554 0) (-74.4261 0.987002 0) (-74.3411 1.05394 0) (-74.2515 1.12227 0) (-74.1579 1.19178 0) (-74.0605 1.26296 0) (-73.9584 1.3366 0) (-73.8513 1.41161 0) (-73.7394 1.48763 0) (-72.5822 1.54597 0) (-72.69 1.4665 0) (-72.7942 1.38733 0) (-71.61 1.43673 0) (-71.5097 1.52048 0) (-71.404 1.6023 0) (-70.227 1.65719 0) (-70.3324 1.57453 -4.15525e-20) (-70.4277 1.48353 0) (-70.522 1.3989 0) (-71.7054 1.35497 0) (-72.8925 1.30942 0) (-72.9868 1.23527 0) (-73.0785 1.16272 0) (-73.1664 1.09076 0) (-71.9735 1.12844 0) (-71.8871 1.2043 0) (-71.7966 1.27869 0) (-70.6096 1.32212 0) (-70.7004 1.24705 4.12888e-20) (-70.7839 1.16534 -8.27137e-20) (-69.6192 1.20586 0) (-69.5502 1.28723 3.86391e-19) (-69.4539 1.37558 -3.45356e-19) (-69.3707 1.43692 0) (-69.269 1.53386 0) (-69.1901 1.62566 3.89745e-19) (-69.0789 1.72134 -3.48343e-19) (-67.9896 1.77422 3.73767e-19) (-66.4764 1.8817 -7.7742e-18) (-63.1594 1.93374 1.31904e-18) (-66.5426 1.70021 4.86061e-20) (-68.1134 1.68136 -3.71837e-19) (-68.1442 1.5826 0) (-68.278 1.47925 5.87889e-18) (-66.8332 1.51128 -1.60219e-18) (-68.36 1.41883 3.70693e-19) (-68.4687 1.33506 -3.68747e-19) (-66.8849 1.34756 -6.21554e-18) (-68.4918 1.24512 0) (-68.6147 1.15006 5.83048e-18) (-69.7105 1.11633 0) (-70.8662 1.08774 0) (-72.0556 1.05384 0) (-73.2499 1.01994 0) (-73.3294 0.952771 0) (-73.4065 0.887326 0) (-73.4804 0.822749 0) (-72.2843 0.849512 0) (-72.2107 0.917408 0) (-72.1335 0.984558 0) (-70.942 1.0177 0) (-71.0199 0.949929 0) (-71.0922 0.877331 0) (-71.164 0.807113 0) (-72.3544 0.782366 0) (-73.5502 0.759195 0) (-73.6165 0.699153 0) (-73.6805 0.640849 0) (-73.7417 0.583612 0) (-72.5477 0.6001 0) (-72.4856 0.66027 0) (-72.4205 0.720238 0) (-71.2291 0.744005 0) (-71.2958 0.683259 0) (-71.3576 0.619141 0) (-70.1934 0.644055 0) (-70.1424 0.706298 0) (-70.0709 0.779517 -3.39609e-19) (-70.0076 0.827533 0) (-69.9257 0.909825 6.8299e-19) (-69.8659 0.981198 0) (-69.7829 1.06165 -3.42442e-19) (-68.687 1.09659 3.67708e-19) (-67.1515 1.17566 -7.74628e-18) (-63.7542 1.20959 2.10571e-20) (-67.1911 1.02855 6.20434e-18) (-68.7826 1.02198 0) (-68.799 0.940717 -7.26672e-19) (-68.9122 0.853379 5.78349e-18) (-67.4369 0.872472 -1.54684e-18) (-68.9764 0.806667 3.64806e-19) (-69.0607 0.740645 0) (-67.4658 0.74217 -6.19311e-18) (-69.0703 0.667712 0) (-69.1739 0.587766 5.73814e-18) (-70.2659 0.56896 0) (-71.4193 0.556173 0) (-72.6066 0.540334 0) (-73.7992 0.527338 0) (-74.9746 0.518008 0) (-76.1166 0.512734 0) (-77.214 0.511405 0) (-78.2559 0.51292 0) (-79.2185 0.513372 0) (-80.0279 0.509063 0) (-80.3917 0.502245 0) (-80.5436 0.480293 0) (-80.1079 0.474401 0) (-80.1818 0.442418 7.84398e-20) (-80.6757 0.457557 0) (-80.7911 0.434808 0) (-80.2492 0.413118 -7.83942e-20) (-80.3112 0.386211 7.86239e-20) (-80.8928 0.412359 0) (-80.9833 0.390567 0) (-80.3673 0.36102 -1.84502e-23) (-80.4185 0.337331 -1.8312e-23) (-81.0648 0.36919 0) (-81.1389 0.348311 0) (-80.465 0.314981 -7.8501e-20) (-79.5592 0.291932 0) (-79.523 0.318878 0) (-79.4823 0.347157 0) (-79.4382 0.376978 0) (-79.3899 0.408466 0) (-79.3367 0.441776 0) (-79.2799 0.476749 0) (-78.3105 0.471853 0) (-78.3615 0.432447 0) (-78.4086 0.394929 0) (-77.3612 0.383069 0) (-77.3155 0.424044 0) (-77.2665 0.466861 0) (-76.169 0.465063 0) (-76.2182 0.419161 0) (-76.2644 0.375022 0) (-76.3071 0.332681 0) (-77.4032 0.34399 0) (-78.4519 0.359346 0) (-78.4918 0.325487 0) (-78.5275 0.293458 0) (-78.5603 0.263132 0) (-77.5094 0.237648 0) (-77.4772 0.271355 0) (-77.4418 0.306771 0) (-76.3464 0.292335 0) (-76.3829 0.253846 0) (-76.4164 0.217052 0) (-76.4467 0.181874 0) (-77.5384 0.2056 0) (-78.5896 0.234326 0) (-79.592 0.266386 0) (-80.5077 0.293713 0) (-81.2067 0.327894 0) (-81.2689 0.308205 0) (-80.5463 0.273486 0) (-80.5814 0.254224 7.80831e-20) (-81.325 0.289543 0) (-81.3752 0.27207 0) (-80.6125 0.235984 -1.76949e-23) (-80.6401 0.21895 -7.83511e-20) (-81.4194 0.255804 0) (-81.4572 0.241513 0) (-80.6644 0.203324 0) (-80.6846 0.189138 0) (-81.4884 0.229785 0) (-81.5126 0.220106 0) (-80.7009 0.176167 0) (-79.7325 0.123848 0) (-79.7215 0.140348 0) (-79.7075 0.158106 0) (-79.6904 0.177247 0) (-79.6704 0.197722 0) (-79.6474 0.219377 0) (-79.6213 0.242234 0) (-78.6156 0.207058 0) (-78.6385 0.181241 0) (-78.6585 0.156782 0) (-77.607 0.11929 0) (-77.587 0.146544 0) (-77.5642 0.175267 0) (-76.474 0.148627 0) (-76.4985 0.117087 0) (-76.5203 0.0870491 0) (-76.5392 0.0584166 0) (-77.6241 0.0934369 0) (-78.6756 0.133639 0) (-78.6899 0.111867 0) (-78.7014 0.0914453 0) (-78.7103 0.0722784 0) (-77.6593 0.0244253 0) (-77.6502 0.04612 0) (-77.6385 0.0690762 0) (-76.5553 0.0314784 0) (-76.5689 0.0060208 0) (-76.58 -0.0181532 0) (-75.4705 -0.0545313 0) (-75.4563 -0.0279185 0) (-75.4397 -3.67009e-05 0) (-75.4209 0.0293685 0) (-75.3992 0.0608932 0) (-75.3746 0.0936635 0) (-75.3475 0.127885 0) (-75.3178 0.163813 0) (-75.2852 0.202101 0) (-75.2495 0.24182 0) (-75.211 0.283105 0) (-75.1697 0.326177 0) (-75.1258 0.371703 0) (-75.0784 0.418823 0) (-75.0277 0.467536 0) (-73.8534 0.474542 0) (-73.9055 0.423491 0) (-73.9551 0.373649 0) (-72.7672 0.380234 0) (-72.7158 0.432802 0) (-72.6616 0.485544 0) (-71.4745 0.50041 0) (-71.5309 0.446693 4.03372e-20) (-71.583 0.390683 -8.08145e-20) (-71.6352 0.334911 0) (-72.8156 0.32784 0) (-74.0013 0.324729 0) (-74.0442 0.279272 0) (-74.0852 0.235541 0) (-74.1237 0.193109 0) (-72.9456 0.189918 -7.86972e-20) (-72.9038 0.234939 7.85367e-20) (-72.8603 0.280432 0) (-71.6809 0.286489 0) (-71.728 0.239737 -3.99798e-20) (-71.7701 0.191635 0) (-70.621 0.201604 0) (-70.5864 0.246828 3.74028e-19) (-70.5344 0.305646 -3.3427e-19) (-70.4881 0.340197 0) (-70.4246 0.408143 0) (-70.382 0.461681 3.76918e-19) (-70.3206 0.527691 -3.36878e-19) (-69.2306 0.547454 3.62006e-19) (-67.6922 0.600715 -7.71804e-18) (-64.2595 0.619713 2.09896e-20) (-67.7108 0.486242 6.18202e-18) (-69.3047 0.489594 -3.60048e-19) (-69.3079 0.424832 0) (-69.4023 0.352095 5.69468e-18) (-67.919 0.358819 -7.70424e-18) (-69.4516 0.318123 3.59327e-19) (-69.5163 0.268145 -3.57388e-19) (-67.9272 0.25969 4.81756e-20) (-69.5132 0.211313 0) (-69.5986 0.145612 5.65347e-18) (-70.6758 0.14071 0) (-71.8133 0.14303 0) (-72.9836 0.144804 0) (-74.159 0.151533 0) (-74.1912 0.113291 0) (-74.2216 0.0766629 0) (-74.2495 0.0412946 0) (-73.0839 0.0283226 -7.82027e-20) (-73.0519 0.0661451 7.80335e-20) (-73.0185 0.104601 0) (-71.8499 0.101793 0) (-71.8875 0.0619105 -3.9709e-20) (-71.9207 0.0212817 0) (-71.9547 -0.0204999 0) (-73.1122 -0.0098988 0) (-74.2744 0.00659292 0) (-74.2965 -0.0249759 0) (-74.3167 -0.0551003 0) (-74.3348 -0.0840891 0) (-73.1838 -0.106517 0) (-73.1617 -0.0752077 0) (-73.1375 -0.0433033 0) (-71.9826 -0.0548806 0) (-72.0109 -0.0882099 3.95261e-20) (-72.0361 -0.122115 -7.92197e-20) (-70.9125 -0.127907 0) (-70.894 -0.0972281 3.68791e-19) (-70.8594 -0.0521948 -3.29537e-19) (-70.8297 -0.0305884 0) (-70.7833 0.0234954 0) (-70.7568 0.0609257 3.71307e-19) (-70.7138 0.112743 -3.31813e-19) (-69.6407 0.117906 3.56786e-19) (-68.1183 0.145817 -1.58777e-18) (-64.6868 0.146813 0) (-68.1161 0.061307 4.8095e-20) (-69.6963 0.0753886 -3.54878e-19) (-69.6869 0.0260981 0) (-69.7635 -0.0329277 5.61493e-18) (-68.2897 -0.0397048 -1.58514e-18) (-69.7981 -0.0545422 3.54419e-19) (-69.8453 -0.0899415 -3.52544e-19) (-68.277 -0.110206 -6.15122e-18) (-69.8295 -0.132395 0) (-69.897 -0.185084 5.57951e-18) (-70.9504 -0.175677 0) (-72.061 -0.157682 0) (-73.2032 -0.138401 0) (-74.3501 -0.112628 0) (-75.4821 -0.0801484 0) (-76.5885 -0.0411515 0) (-77.6658 0.00391561 0) (-78.7164 0.0542649 0) (-79.7404 0.108513 0) (-80.7131 0.164316 0) (-81.5304 0.212122 0) (-81.5416 0.205507 0) (-80.7212 0.153477 0) (-80.7252 0.143547 0) (-81.5473 0.200041 0) (-81.5467 0.195362 0) (-80.7253 0.134358 0) (-80.7214 0.12578 0) (-81.5412 0.191305 0) (-81.5301 0.187818 0) (-80.7138 0.117736 0) (-80.7025 0.11005 0) (-81.5146 0.184601 0) (-81.4947 0.181086 0) (-80.6879 0.1025 0) (-79.7105 0.0250983 0) (-79.7235 0.0352692 0) (-79.7337 0.0458402 0) (-79.741 0.0569026 0) (-79.7455 0.0686005 0) (-79.7468 0.0810187 0) (-79.7452 0.0942739 0) (-78.7197 0.037369 0) (-78.7205 0.0214915 0) (-78.7185 0.00651626 0) (-77.6704 -0.050788 0) (-77.6712 -0.0335536 0) (-77.6697 -0.0153683 0) (-76.5945 -0.0627032 0) (-76.5983 -0.0830601 0) (-76.5998 -0.102452 0) (-76.5991 -0.12102 0) (-77.6672 -0.0671892 0) (-78.7141 -0.00767544 0) (-78.7071 -0.0211416 0) (-78.6977 -0.0340073 0) (-78.686 -0.0463675 0) (-77.6444 -0.111797 0) (-77.6541 -0.0975276 0) (-77.6617 -0.082724 0) (-76.5961 -0.138502 0) (-76.5912 -0.155152 0) (-76.5845 -0.171194 0) (-76.5758 -0.186773 0) (-77.6328 -0.125625 0) (-78.6722 -0.0583725 0) (-79.695 0.0151429 0) (-80.6699 0.0949118 0) (-81.4711 0.177063 0) (-81.4439 0.172392 0) (-80.6494 0.0871985 7.79409e-20) (-80.6257 0.0792848 -7.82622e-20) (-81.4147 0.167108 0) (-81.3823 0.160761 0) (-80.6001 0.0710642 -7.79511e-20) (-80.573 0.0624386 7.82778e-20) (-81.3485 0.153692 0) (-81.3127 0.145887 0) (-80.5437 0.0532079 0) (-80.5133 0.0434335 0) (-81.2762 0.137273 0) (-81.2385 0.127697 0) (-80.482 0.0332912 0) (-79.532 -0.0561435 0) (-79.5594 -0.0454594 0) (-79.586 -0.0348929 0) (-79.6112 -0.0245673 0) (-79.6349 -0.0144914 0) (-79.657 -0.00454124 0) (-79.677 0.00530568 0) (-78.6564 -0.0700776 0) (-78.6386 -0.0815859 0) (-78.6195 -0.0929778 0) (-77.5875 -0.164643 0) (-77.6042 -0.151925 0) (-77.6193 -0.138962 0) (-76.5653 -0.201614 0) (-76.5533 -0.215939 0) (-76.5399 -0.229934 0) (-76.5251 -0.24372 0) (-77.5695 -0.177208 0) (-78.5981 -0.104372 0) (-78.5761 -0.115648 0) (-78.5527 -0.126929 0) (-78.5284 -0.138295 0) (-77.5085 -0.213634 0) (-77.5298 -0.20163 0) (-77.5502 -0.189522 0) (-76.509 -0.256977 0) (-76.4919 -0.269883 0) (-76.474 -0.282569 0) (-75.421 -0.3453 0) (-75.435 -0.331866 0) (-75.4483 -0.318154 0) (-75.4608 -0.303996 0) (-75.4718 -0.288816 0) (-75.4814 -0.273555 0) (-75.4896 -0.257912 0) (-75.4966 -0.241674 0) (-75.5017 -0.22422 0) (-75.5048 -0.206433 0) (-75.5061 -0.188009 0) (-75.5058 -0.168712 0) (-75.5032 -0.147861 0) (-75.4982 -0.126338 0) (-75.4912 -0.10386 0) (-74.3626 -0.138255 0) (-74.3736 -0.162738 0) (-74.3827 -0.186363 0) (-73.2482 -0.21748 0) (-73.2348 -0.191771 0) (-73.2194 -0.165684 0) (-72.0805 -0.185794 0) (-72.1002 -0.21314 3.93048e-20) (-72.1172 -0.240983 -7.87916e-20) (-72.1339 -0.271206 0) (-73.2592 -0.244021 0) (-74.3893 -0.209823 0) (-74.3934 -0.230725 0) (-74.3962 -0.250812 0) (-74.3974 -0.270303 0) (-73.2806 -0.308889 -7.70582e-20) (-73.2743 -0.287743 7.68511e-20) (-73.2672 -0.266333 0) (-72.1455 -0.294195 0) (-72.1578 -0.316799 -3.90508e-20) (-72.1668 -0.339938 0) (-71.0766 -0.360226 0) (-71.0725 -0.340561 3.64552e-19) (-71.0536 -0.307127 -3.25645e-19) (-71.0396 -0.29665 0) (-71.0093 -0.254389 0) (-70.9983 -0.229872 3.6653e-19) (-70.9719 -0.191218 -3.27473e-19) (-69.924 -0.200881 3.52258e-19) (-68.4328 -0.198725 -7.66664e-18) (-65.0321 -0.22063 2.09233e-20) (-68.4095 -0.256511 6.14246e-18) (-69.9631 -0.229674 -3.50423e-19) (-69.9414 -0.266003 0) (-70.0006 -0.313007 5.54762e-18) (-68.5495 -0.33376 -7.65618e-18) (-70.0206 -0.323786 3.5032e-19) (-70.0522 -0.347014 -3.48538e-19) (-68.516 -0.38051 -6.1347e-18) (-70.025 -0.378164 0) (-70.0766 -0.420288 5.51964e-18) (-71.0997 -0.397797 0) (-72.1768 -0.36573 0) (-73.284 -0.331384 0) (-74.3964 -0.29 0) (-74.3934 -0.307458 0) (-74.3894 -0.324355 0) (-74.3843 -0.340873 0) (-73.2851 -0.38556 0) (-73.2857 -0.36777 0) (-73.285 -0.34991 0) (-72.1814 -0.384492 0) (-72.1868 -0.403212 3.89554e-20) (-72.1902 -0.422549 -7.81205e-20) (-72.1941 -0.444876 0) (-73.2829 -0.404882 0) (-74.3774 -0.35784 0) (-74.3688 -0.372765 0) (-74.3598 -0.38727 0) (-74.35 -0.401487 0) (-73.2687 -0.450559 0) (-73.274 -0.435506 0) (-73.2784 -0.420442 0) (-72.1932 -0.460306 0) (-72.1934 -0.475887 3.88267e-20) (-72.192 -0.49207 -7.78764e-20) (-71.1377 -0.522874 0) (-71.144 -0.510709 3.61448e-19) (-71.1368 -0.485335 -3.22759e-19) (-71.1348 -0.482416 0) (-71.1177 -0.448748 0) (-71.1195 -0.433152 3.62855e-19) (-71.1071 -0.404099 -3.24073e-19) (-70.0901 -0.426999 3.48629e-19) (-68.6411 -0.447838 -7.64709e-18) (-65.2997 -0.493988 2.09367e-20) (-68.5986 -0.48525 6.12807e-18) (-70.1152 -0.44554 -3.46905e-19) (-70.0832 -0.472314 0) (-70.1282 -0.510211 5.49561e-18) (-68.711 -0.543764 -1.52978e-18) (-70.1366 -0.513488 3.47188e-19) (-70.1562 -0.528066 -3.45524e-19) (-68.6606 -0.573041 0) (-70.1207 -0.551081 0) (-70.1604 -0.585179 5.47563e-18) (-71.1501 -0.553116 0) (-72.1915 -0.5114 0) (-73.2622 -0.467241 0) (-74.339 -0.416235 0) (-75.4059 -0.358722 0) (-76.4553 -0.295102 0) (-77.4865 -0.22552 0) (-78.5034 -0.149664 0) (-79.5038 -0.0669909 0) (-80.45 0.0227463 7.80081e-20) (-81.2005 0.117418 0) (-81.1626 0.106555 0) (-80.4172 0.0118708 -7.83365e-20) (-80.3848 0.000916933 0) (-81.1249 0.095176 0) (-81.0874 0.0834841 0) (-80.3522 -0.0100778 0) (-80.3197 -0.0210134 0) (-81.0509 0.0717927 0) (-81.0148 0.0600663 0) (-80.2875 -0.0317938 0) (-80.2558 -0.042375 0) (-80.9802 0.0484594 0) (-80.9464 0.0370589 0) (-80.2245 -0.0526662 0) (-79.3015 -0.140813 0) (-79.3303 -0.131049 0) (-79.3592 -0.120927 0) (-79.3883 -0.110493 0) (-79.4174 -0.0997948 0) (-79.4464 -0.0889283 0) (-79.4753 -0.0779514 0) (-78.4779 -0.160929 0) (-78.4519 -0.17204 0) (-78.4257 -0.182946 0) (-77.4175 -0.259506 0) (-77.4409 -0.248455 0) (-77.4639 -0.237129 0) (-76.4359 -0.307116 0) (-76.416 -0.318736 0) (-76.3958 -0.33004 0) (-76.3752 -0.341072 0) (-77.3939 -0.270262 0) (-78.3994 -0.193601 0) (-78.3729 -0.203899 0) (-78.3465 -0.213804 0) (-78.3201 -0.2233 0) (-77.3222 -0.299766 0) (-77.3461 -0.290378 0) (-77.3701 -0.280553 0) (-76.3542 -0.351453 0) (-76.3331 -0.361303 0) (-76.3119 -0.370711 0) (-76.2905 -0.37974 0) (-77.2982 -0.30872 0) (-78.2938 -0.232369 0) (-79.2731 -0.150186 0) (-80.1939 -0.0626321 0) (-80.9142 0.0260155 0) (-80.8831 0.0154254 0) (-80.1639 -0.0721605 0) (-80.1345 -0.0812716 0) (-80.8534 0.0052225 0) (-80.8248 -0.00456216 0) (-80.1058 -0.0899633 0) (-80.0777 -0.0982472 0) (-80.7975 -0.0139378 0) (-80.7713 -0.0229092 0) (-80.0503 -0.106122 0) (-80.0235 -0.113601 0) (-80.7461 -0.0315708 0) (-80.7219 -0.0398193 0) (-79.9974 -0.120677 0) (-79.0836 -0.203563 0) (-79.1095 -0.197164 0) (-79.1358 -0.190386 0) (-79.1625 -0.183203 0) (-79.1896 -0.175598 0) (-79.2171 -0.167571 0) (-79.2449 -0.159106 0) (-78.2676 -0.240939 0) (-78.2415 -0.249013 0) (-78.2157 -0.256625 0) (-77.2264 -0.332306 0) (-77.2502 -0.324941 0) (-77.2741 -0.317101 0) (-76.269 -0.388039 0) (-76.2475 -0.395752 0) (-76.226 -0.402998 0) (-76.2045 -0.409872 0) (-77.2026 -0.339238 0) (-78.1901 -0.263801 0) (-78.1646 -0.270511 0) (-78.1395 -0.276784 0) (-78.1146 -0.282661 0) (-77.1321 -0.357046 0) (-77.1554 -0.351542 0) (-77.1789 -0.345633 0) (-76.183 -0.416053 0) (-76.1616 -0.421704 0) (-76.1403 -0.426954 0) (-75.1364 -0.49249 0) (-75.1551 -0.487399 0) (-75.1739 -0.481933 0) (-75.193 -0.475933 0) (-75.2118 -0.46886 0) (-75.2303 -0.461634 0) (-75.249 -0.453972 0) (-75.2677 -0.445724 0) (-75.2861 -0.436359 0) (-75.304 -0.426828 0) (-75.3219 -0.416875 0) (-75.3397 -0.406373 0) (-75.357 -0.394803 0) (-75.3736 -0.383145 0) (-75.39 -0.371159 0) (-74.3268 -0.429013 0) (-74.3145 -0.441396 0) (-74.3018 -0.453471 0) (-73.2374 -0.505434 0) (-73.2459 -0.492863 0) (-73.2538 -0.480269 0) (-72.1866 -0.523955 0) (-72.1831 -0.536767 3.87258e-20) (-72.1783 -0.550133 -7.76871e-20) (-72.1747 -0.566666 0) (-73.2282 -0.519611 0) (-74.2883 -0.466033 0) (-74.2739 -0.476588 0) (-74.2597 -0.48668 0) (-74.2454 -0.496393 0) (-73.1967 -0.550176 0) (-73.2071 -0.540203 0) (-73.2173 -0.530148 0) (-72.1671 -0.576481 0) (-72.161 -0.586521 3.86503e-20) (-72.1539 -0.597036 -7.75475e-20) (-71.1337 -0.633753 0) (-71.1457 -0.627654 3.59415e-19) (-71.1454 -0.608688 -3.20839e-19) (-71.1505 -0.611431 0) (-71.1415 -0.584385 0) (-71.1512 -0.575255 3.60307e-19) (-71.148 -0.553119 -3.21686e-19) (-70.1645 -0.585462 3.45988e-19) (-68.7622 -0.623726 -7.63351e-18) (-65.4989 -0.690017 2.08926e-20) (-68.7063 -0.645933 6.11842e-18) (-70.1797 -0.596621 -3.44374e-19) (-70.1415 -0.616289 0) (-70.1769 -0.646912 5.45924e-18) (-68.7985 -0.689404 -7.62873e-18) (-70.1781 -0.644316 3.45017e-19) (-70.1899 -0.652185 -3.43452e-19) (-68.7385 -0.704703 -6.11516e-18) (-70.15 -0.668493 0) (-70.1822 -0.695712 5.44621e-18) (-71.1402 -0.657585 0) (-72.1483 -0.6107 0) (-73.1856 -0.561712 0) (-74.2304 -0.506538 0) (-74.2147 -0.514664 0) (-74.1994 -0.522301 0) (-74.1842 -0.529554 0) (-73.1499 -0.584423 0) (-73.1616 -0.577077 0) (-73.1732 -0.569643 0) (-72.1388 -0.617747 0) (-72.131 -0.625001 3.85976e-20) (-72.1225 -0.632708 -7.74523e-20) (-72.1155 -0.643575 0) (-73.1379 -0.593339 0) (-74.1685 -0.537252 0) (-74.1522 -0.542998 0) (-74.1364 -0.548301 0) (-74.1208 -0.553279 0) (-73.0997 -0.608645 0) (-73.1121 -0.603717 0) (-73.1245 -0.598754 0) (-72.1048 -0.647989 0) (-72.0959 -0.652639 3.85652e-20) (-72.0864 -0.657772 -7.73969e-20) (-71.0964 -0.697385 0) (-71.1111 -0.696903 3.58293e-19) (-71.1141 -0.683911 -3.19748e-19) (-71.1226 -0.691904 0) (-71.1178 -0.671155 0) (-71.1315 -0.667994 3.5875e-19) (-71.1331 -0.652129 -3.202e-19) (-70.1813 -0.690268 3.44256e-19) (-68.8238 -0.741187 -1.52691e-18) (-65.6488 -0.820149 4.05168e-20) (-68.7606 -0.749802 0) (-70.1906 -0.695004 -3.42741e-19) (-70.1497 -0.708057 0) (-70.1793 -0.732045 5.43646e-18) (-68.8403 -0.779788 -1.5265e-18) (-70.1769 -0.723955 3.43694e-19) (-70.1844 -0.725846 -3.42226e-19) (-68.7752 -0.782247 0) (-70.1429 -0.735893 0) (-70.1706 -0.756966 5.42973e-18) (-71.1 -0.715332 0) (-72.0786 -0.666103 0) (-73.0871 -0.61519 0) (-74.1048 -0.558766 0) (-75.1176 -0.497501 0) (-76.1192 -0.431909 0) (-77.109 -0.362195 0) (-78.0901 -0.288181 0) (-79.0581 -0.209626 0) (-79.9719 -0.127478 0) (-80.6983 -0.0475481 0) (-80.6761 -0.0547779 0) (-79.9471 -0.133958 0) (-79.9229 -0.140096 0) (-80.6544 -0.0616266 0) (-80.6336 -0.0681305 0) (-79.8992 -0.145901 0) (-79.8763 -0.151332 0) (-80.6135 -0.0742832 0) (-80.5941 -0.0801295 0) (-79.8541 -0.156527 0) (-79.8323 -0.161467 0) (-80.5753 -0.0856719 0) (-80.557 -0.0909658 0) (-79.8111 -0.166086 0) (-78.8937 -0.242998 0) (-78.9157 -0.239135 0) (-78.938 -0.235022 0) (-78.9611 -0.230566 0) (-78.9848 -0.22579 0) (-79.0086 -0.22073 0) (-79.0332 -0.215344 0) (-78.0658 -0.293313 0) (-78.042 -0.298075 0) (-78.0185 -0.302503 0) (-77.0412 -0.375131 0) (-77.0635 -0.371175 0) (-77.0861 -0.366888 0) (-76.0981 -0.436257 0) (-76.0773 -0.440158 0) (-76.0567 -0.443737 0) (-76.0364 -0.447099 0) (-77.0193 -0.378805 0) (-77.9955 -0.306633 0) (-77.9729 -0.310463 0) (-77.9507 -0.313986 0) (-77.929 -0.317232 0) (-76.9556 -0.387751 0) (-76.9764 -0.385056 0) (-76.9976 -0.382097 0) (-76.0162 -0.449939 0) (-75.9965 -0.452413 0) (-75.9771 -0.454641 0) (-75.9581 -0.456714 0) (-76.9352 -0.390223 0) (-77.9077 -0.320235 0) (-78.8723 -0.246621 0) (-79.7904 -0.170391 0) (-80.5392 -0.0959828 0) (-80.5217 -0.10069 0) (-79.7703 -0.174386 0) (-79.7504 -0.178116 -7.85291e-20) (-80.5047 -0.105099 0) (-80.488 -0.109175 0) (-79.7317 -0.181568 7.88702e-20) (-79.7129 -0.184904 0) (-80.4716 -0.112915 0) (-80.4556 -0.116407 0) (-79.6947 -0.187982 0) (-79.677 -0.190799 0) (-80.4399 -0.11965 0) (-80.4244 -0.122618 0) (-79.6597 -0.19339 0) (-78.7365 -0.265187 0) (-78.7544 -0.263212 0) (-78.7727 -0.261031 0) (-78.7916 -0.258633 0) (-78.8108 -0.256026 0) (-78.8311 -0.253117 0) (-78.8513 -0.249999 0) (-77.8869 -0.322957 0) (-77.8666 -0.325411 0) (-77.8468 -0.327649 0) (-76.8765 -0.395882 0) (-76.8956 -0.394231 0) (-76.9151 -0.392366 0) (-75.9393 -0.458326 0) (-75.921 -0.459647 0) (-75.9032 -0.460772 0) (-75.8858 -0.461776 0) (-76.8579 -0.39735 0) (-77.8276 -0.329687 0) (-77.8088 -0.331469 0) (-77.7905 -0.333024 0) (-77.7728 -0.334379 0) (-76.8051 -0.400217 0) (-76.8222 -0.399465 0) (-76.8398 -0.39853 0) (-75.8687 -0.462377 0) (-75.8522 -0.462717 0) (-75.8362 -0.462903 0) (-74.8624 -0.522563 0) (-74.8768 -0.522908 0) (-74.8917 -0.523136 0) (-74.9073 -0.52314 0) (-74.9232 -0.522406 0) (-74.9393 -0.521752 0) (-74.9558 -0.520938 0) (-74.9729 -0.519858 0) (-74.9902 -0.517974 0) (-75.0076 -0.516139 0) (-75.0254 -0.51409 0) (-75.0436 -0.511691 0) (-75.0619 -0.508402 0) (-75.0801 -0.505111 0) (-75.0987 -0.501531 0) (-74.0883 -0.562411 0) (-74.0725 -0.565696 0) (-74.057 -0.568741 0) (-73.0481 -0.62406 0) (-73.0606 -0.621195 0) (-73.0733 -0.618378 0) (-72.0673 -0.668179 0) (-72.0578 -0.670558 3.85507e-20) (-72.0478 -0.673497 -7.73759e-20) (-72.0397 -0.679656 0) (-73.0354 -0.628595 0) (-74.0412 -0.572368 0) (-74.0252 -0.57426 0) (-74.0098 -0.575892 0) (-73.9949 -0.577362 0) (-72.9972 -0.63204 -7.63136e-20) (-73.0089 -0.630929 7.60285e-20) (-73.0217 -0.629912 0) (-72.0282 -0.67976 0) (-72.0189 -0.680206 -3.84912e-20) (-72.0085 -0.681332 0) (-71.0448 -0.721732 0) (-71.0602 -0.725454 3.57909e-19) (-71.0644 -0.717128 -3.1933e-19) (-71.0743 -0.729283 0) (-71.0714 -0.713771 0) (-71.0866 -0.715576 3.58021e-19) (-71.0906 -0.705091 -3.19467e-19) (-70.1672 -0.746502 3.43315e-19) (-68.8502 -0.806291 -1.52633e-18) (-65.7625 -0.892568 0) (-68.7839 -0.803413 0) (-70.1733 -0.745938 -3.41888e-19) (-70.1316 -0.753398 0) (-70.1579 -0.771893 5.42567e-18) (-68.8551 -0.822169 4.57283e-18) (-70.1539 -0.75938 3.43091e-19) (-70.1593 -0.756703 -3.41699e-19) (-68.7892 -0.814539 4.77156e-20) (-70.1178 -0.761945 0) (-70.1434 -0.77825 5.42371e-18) (-71.0476 -0.735183 0) (-72.0008 -0.685662 0) (-72.9848 -0.63496 0) (-73.9799 -0.579464 0) (-73.9647 -0.579932 0) (-73.95 -0.580206 0) (-73.9367 -0.580341 0) (-72.9484 -0.634075 0) (-72.9599 -0.634327 0) (-72.9717 -0.634781 0) (-71.9896 -0.684148 0) (-71.9808 -0.68302 -3.85045e-20) (-71.9709 -0.682652 0) (-71.9639 -0.685491 0) (-72.9372 -0.635621 0) (-73.9226 -0.581248 0) (-73.9087 -0.580575 0) (-73.8957 -0.579755 0) (-73.8833 -0.578878 0) (-72.9045 -0.631133 -7.64297e-20) (-72.9142 -0.632552 7.61363e-20) (-72.9252 -0.634186 0) (-71.9535 -0.68265 0) (-71.9456 -0.680242 -3.85266e-20) (-71.9367 -0.678655 0) (-70.9953 -0.717976 0) (-71.0093 -0.724532 3.58042e-19) (-71.0128 -0.719436 -3.19401e-19) (-71.0219 -0.734434 0) (-71.0189 -0.722706 0) (-71.0337 -0.728006 3.57921e-19) (-71.0379 -0.721449 -3.19315e-19) (-70.1394 -0.764007 3.42992e-19) (-68.858 -0.828737 -1.57383e-18) (-65.8549 -0.917775 0) (-68.7925 -0.81727 4.77254e-20) (-70.1445 -0.759627 -3.41634e-19) (-70.1037 -0.762991 0) (-70.129 -0.777454 5.4236e-18) (-68.86 -0.82766 -1.57422e-18) (-70.1255 -0.761807 3.43011e-19) (-70.1308 -0.756026 -3.41673e-19) (-68.7963 -0.812891 -6.11568e-18) (-70.0912 -0.757819 0) (-70.1165 -0.770723 5.42504e-18) (-70.9991 -0.728227 0) (-71.9308 -0.680232 0) (-72.8943 -0.63156 0) (-73.871 -0.578704 0) (-74.8483 -0.522351 0) (-75.8207 -0.463013 0) (-76.7885 -0.400817 0) (-77.7556 -0.335552 0) (-78.7192 -0.266965 0) (-79.6429 -0.195786 0) (-80.4092 -0.125325 0) (-80.3944 -0.127787 0) (-79.6265 -0.197973 0) (-79.6105 -0.199933 0) (-80.3797 -0.130085 0) (-80.3653 -0.132259 0) (-79.595 -0.201693 0) (-79.5798 -0.203227 0) (-80.3513 -0.134217 0) (-80.3372 -0.136051 0) (-79.5652 -0.204586 0) (-79.5509 -0.205768 0) (-80.3238 -0.137679 0) (-80.3103 -0.139098 0) (-79.537 -0.206745 0) (-78.6119 -0.273946 0) (-78.6258 -0.273496 0) (-78.6401 -0.272872 0) (-78.6549 -0.272067 0) (-78.6702 -0.271076 0) (-78.686 -0.2699 0) (-78.7024 -0.268535 0) (-77.7389 -0.336506 0) (-77.7227 -0.33725 0) (-77.7071 -0.337815 0) (-76.742 -0.401228 0) (-76.7569 -0.401274 0) (-76.7724 -0.401157 0) (-75.8056 -0.462743 0) (-75.7911 -0.462236 0) (-75.7772 -0.461599 0) (-75.7637 -0.460908 0) (-76.7275 -0.401049 0) (-77.6921 -0.338214 0) (-77.6775 -0.338412 0) (-77.6636 -0.338423 0) (-77.6502 -0.338272 0) (-76.6876 -0.399243 0) (-76.7003 -0.400009 0) (-76.7136 -0.40063 0) (-75.7507 -0.45986 0) (-75.7384 -0.458595 0) (-75.7267 -0.457219 0) (-75.7155 -0.455813 0) (-76.6754 -0.398367 0) (-77.6373 -0.337982 0) (-78.5986 -0.274249 0) (-79.5236 -0.207611 0) (-80.297 -0.140396 0) (-80.2843 -0.141508 0) (-79.5105 -0.208313 0) (-79.4979 -0.208856 0) (-80.2714 -0.142508 0) (-80.2593 -0.143267 0) (-79.4857 -0.209241 0) (-79.474 -0.209488 0) (-80.2471 -0.143927 0) (-80.2354 -0.144493 0) (-79.4627 -0.209631 0) (-79.4518 -0.209606 0) (-80.2241 -0.144938 0) (-80.2127 -0.145284 0) (-79.4414 -0.209473 0) (-78.5199 -0.272173 0) (-78.5296 -0.272877 0) (-78.5398 -0.273458 0) (-78.5505 -0.273897 0) (-78.5618 -0.274202 0) (-78.5735 -0.274371 0) (-78.5858 -0.274391 0) (-77.6249 -0.337515 0) (-77.6132 -0.336881 0) (-77.602 -0.336106 0) (-76.6424 -0.394603 0) (-76.6528 -0.396 0) (-76.6638 -0.397275 0) (-75.7048 -0.454075 0) (-75.6948 -0.452143 0) (-75.6854 -0.450122 0) (-75.6766 -0.448085 0) (-76.6325 -0.393114 0) (-77.5914 -0.335209 0) (-77.5813 -0.334156 0) (-77.5718 -0.332955 0) (-77.5629 -0.331635 0) (-76.6066 -0.387622 0) (-76.6146 -0.389576 0) (-76.6232 -0.391426 0) (-75.6683 -0.445737 0) (-75.6606 -0.443213 0) (-75.6537 -0.440621 0) (-74.7005 -0.490944 0) (-74.7061 -0.494182 0) (-74.7125 -0.497399 0) (-74.7197 -0.500479 0) (-74.7273 -0.502934 0) (-74.7353 -0.505579 0) (-74.7441 -0.508182 0) (-74.7537 -0.510629 0) (-74.7636 -0.512419 0) (-74.7739 -0.5144 0) (-74.785 -0.516321 0) (-74.7967 -0.518049 0) (-74.8089 -0.5191 0) (-74.8213 -0.520309 0) (-74.8344 -0.521431 0) (-73.8587 -0.577026 0) (-73.8474 -0.575252 0) (-73.8367 -0.57346 0) (-72.8662 -0.624012 -7.65072e-20) (-72.8743 -0.626406 7.62108e-20) (-72.8837 -0.629066 0) (-71.9216 -0.676263 0) (-71.915 -0.672742 -3.85571e-20) (-71.9075 -0.670118 0) (-71.903 -0.670607 0) (-72.8576 -0.623462 0) (-73.8263 -0.57239 0) (-73.8159 -0.569859 0) (-73.8065 -0.567241 0) (-73.7979 -0.564633 0) (-72.8346 -0.613325 0) (-72.8414 -0.616528 0) (-72.8487 -0.62006 0) (-71.8954 -0.665666 0) (-71.8902 -0.661208 3.86532e-20) (-71.8849 -0.657671 -7.76044e-20) (-70.9621 -0.694493 0) (-70.9732 -0.703019 3.58523e-19) (-70.9742 -0.700292 -3.19804e-19) (-70.9807 -0.717311 0) (-70.9759 -0.708345 0) (-70.9886 -0.715959 3.5825e-19) (-70.991 -0.712138 -3.19569e-19) (-70.114 -0.753876 3.43128e-19) (-68.863 -0.820056 -7.62881e-18) (-65.9387 -0.907047 6.36136e-22) (-68.8018 -0.802382 6.11804e-18) (-70.12 -0.746882 -3.41805e-19) (-70.0819 -0.747322 0) (-70.1078 -0.758892 5.42765e-18) (-68.8694 -0.806724 -1.52817e-18) (-70.1066 -0.741003 3.43315e-19) (-70.1139 -0.733011 -3.42009e-19) (-68.8109 -0.786634 0) (-70.0776 -0.732277 0) (-70.1044 -0.742695 5.43145e-18) (-70.9684 -0.702345 0) (-71.8819 -0.657219 0) (-72.8282 -0.611872 0) (-73.7895 -0.56278 0) (-73.7813 -0.559498 0) (-73.7741 -0.556166 0) (-73.7676 -0.552868 0) (-72.8116 -0.599365 -7.66852e-20) (-72.8158 -0.603335 7.63849e-20) (-72.8214 -0.607653 0) (-71.8762 -0.651443 0) (-71.8731 -0.646153 -3.86347e-20) (-71.8693 -0.641887 0) (-71.8685 -0.640602 0) (-72.8071 -0.597211 0) (-73.7615 -0.55031 0) (-73.7556 -0.546364 0) (-73.7507 -0.542388 0) (-73.7467 -0.538468 0) (-72.7973 -0.582684 -7.67814e-20) (-72.7991 -0.58731 7.64797e-20) (-72.8025 -0.592317 0) (-71.8648 -0.634103 0) (-71.8639 -0.628061 -3.86791e-20) (-71.8623 -0.623107 0) (-70.956 -0.656431 0) (-70.963 -0.666388 3.59236e-19) (-70.9603 -0.665458 -3.20414e-19) (-70.9631 -0.683958 0) (-70.9551 -0.677085 0) (-70.9643 -0.686355 3.58861e-19) (-70.9636 -0.684555 -3.20089e-19) (-70.1049 -0.723959 3.43562e-19) (-68.88 -0.788676 -7.63576e-18) (-66.0275 -0.869396 2.09157e-20) (-68.8255 -0.766502 6.1239e-18) (-70.1135 -0.715172 -3.42269e-19) (-70.0793 -0.713421 0) (-70.1074 -0.722842 5.43597e-18) (-68.8963 -0.76647 -7.63974e-18) (-70.1098 -0.703287 3.43856e-19) (-70.1203 -0.693732 -3.42581e-19) (-68.846 -0.742317 4.78291e-20) (-70.0884 -0.691046 0) (-70.1181 -0.699624 5.44113e-18) (-70.966 -0.66246 0) (-71.8637 -0.621099 0) (-72.7951 -0.579875 0) (-73.7429 -0.535303 0) (-74.6954 -0.487915 0) (-75.6473 -0.438031 0) (-76.5992 -0.385595 0) (-77.5546 -0.330213 0) (-78.5107 -0.271358 0) (-79.4315 -0.209242 0) (-80.202 -0.145489 0) (-80.1917 -0.145554 0) (-79.422 -0.208847 0) (-79.4129 -0.208361 0) (-80.1814 -0.145591 0) (-80.1719 -0.145481 0) (-79.4044 -0.207778 0) (-79.3963 -0.207098 0) (-80.1623 -0.145324 0) (-80.1535 -0.145044 0) (-79.3887 -0.206329 0) (-79.3816 -0.205465 0) (-80.1447 -0.14469 0) (-80.1366 -0.14427 0) (-79.375 -0.204539 0) (-78.4619 -0.262533 0) (-78.4672 -0.264087 0) (-78.4731 -0.265555 0) (-78.4795 -0.26692 0) (-78.4865 -0.268182 0) (-78.494 -0.269347 0) (-78.5021 -0.270411 0) (-77.5468 -0.328648 0) (-77.5397 -0.326955 0) (-77.5331 -0.325163 0) (-76.5806 -0.378601 0) (-76.5862 -0.381037 0) (-76.5923 -0.383388 0) (-75.6415 -0.435152 0) (-75.6364 -0.432118 0) (-75.632 -0.429032 0) (-75.6282 -0.425963 0) (-76.5757 -0.376107 0) (-77.5271 -0.323285 0) (-77.5218 -0.321284 0) (-77.517 -0.31917 0) (-77.5129 -0.31697 0) (-76.5646 -0.367803 0) (-76.5676 -0.370664 0) (-76.5713 -0.37345 0) (-75.6249 -0.42262 0) (-75.6224 -0.419134 0) (-75.6205 -0.415606 0) (-75.6193 -0.412106 0) (-76.5622 -0.364893 0) (-77.5093 -0.314691 0) (-78.4572 -0.260886 0) (-79.3689 -0.203482 0) (-80.129 -0.143789 0) (-80.1216 -0.14327 0) (-79.3633 -0.20234 0) (-79.3582 -0.201189 0) (-80.1146 -0.142646 0) (-80.1082 -0.141817 0) (-79.3538 -0.199969 7.91991e-20) (-79.3497 -0.198667 -1.49436e-23) (-80.1021 -0.140912 0) (-80.097 -0.139998 0) (-79.3461 -0.197201 -7.9552e-20) (-79.3433 -0.19563 0) (-80.0917 -0.139256 0) (-80.0874 -0.138357 0) (-79.3409 -0.194032 0) (-78.4404 -0.246925 0) (-78.441 -0.249156 0) (-78.4423 -0.251308 0) (-78.4441 -0.253379 0) (-78.4464 -0.255384 0) (-78.4495 -0.257311 0) (-78.4531 -0.259142 0) (-77.5064 -0.312297 0) (-77.5041 -0.309801 0) (-77.5024 -0.307224 0) (-76.5589 -0.355389 0) (-76.5593 -0.358644 0) (-76.5604 -0.361829 0) (-75.6187 -0.408341 0) (-75.6187 -0.404439 0) (-75.6196 -0.400499 0) (-75.621 -0.396591 0) (-76.5591 -0.35209 0) (-77.5013 -0.304576 0) (-77.5009 -0.301821 0) (-77.5011 -0.298969 0) (-77.502 -0.296047 0) (-76.5636 -0.341466 0) (-76.5614 -0.345085 0) (-76.5599 -0.348644 0) (-75.623 -0.392426 0) (-75.6258 -0.388133 0) (-75.6294 -0.383812 0) (-74.6964 -0.423492 0) (-74.6915 -0.428527 0) (-74.6873 -0.433584 0) (-74.6841 -0.438547 0) (-74.6814 -0.442945 0) (-74.6792 -0.447584 0) (-74.6778 -0.45224 0) (-74.6773 -0.456781 0) (-74.6773 -0.460748 0) (-74.6777 -0.464955 0) (-74.679 -0.469174 0) (-74.6811 -0.473278 0) (-74.6837 -0.476803 0) (-74.6868 -0.480547 0) (-74.6907 -0.484288 0) (-73.7395 -0.530791 0) (-73.7371 -0.526274 0) (-73.7355 -0.521832 0) (-72.7925 -0.563668 -7.68798e-20) (-72.792 -0.568825 7.65773e-20) (-72.7929 -0.574395 0) (-71.8624 -0.614001 0) (-71.8638 -0.607378 -3.87258e-20) (-71.8645 -0.601891 0) (-71.8683 -0.599256 0) (-72.7928 -0.560295 0) (-73.7343 -0.518146 0) (-73.7334 -0.513136 0) (-73.7336 -0.508117 0) (-73.7346 -0.503193 0) (-72.7975 -0.542618 0) (-72.7949 -0.548232 0) (-72.7931 -0.554296 0) (-71.8694 -0.591611 0) (-71.873 -0.584456 3.88336e-20) (-71.8767 -0.578461 -7.79717e-20) (-70.9846 -0.607741 0) (-70.9869 -0.618678 3.60062e-19) (-70.9796 -0.618995 -3.21145e-19) (-70.9777 -0.638533 0) (-70.9657 -0.633255 0) (-70.9704 -0.643717 3.59641e-19) (-70.9654 -0.643417 -3.20769e-19) (-70.1227 -0.679429 3.44183e-19) (-68.9201 -0.740498 -1.57788e-18) (-66.1335 -0.811329 -1.28033e-18) (-68.8744 -0.714949 6.13069e-18) (-70.1352 -0.66943 -3.42917e-19) (-70.1058 -0.66597 0) (-70.1372 -0.673799 5.44675e-18) (-68.9513 -0.711627 -7.64846e-18) (-70.1442 -0.653026 3.44546e-19) (-70.1588 -0.642558 -3.43283e-19) (-68.9107 -0.684597 -6.1343e-18) (-70.132 -0.638362 0) (-70.1652 -0.645509 5.45259e-18) (-70.9989 -0.612315 0) (-71.8826 -0.575254 0) (-72.8006 -0.538686 0) (-73.736 -0.499042 0) (-73.7377 -0.493577 0) (-73.7405 -0.488098 0) (-73.7443 -0.482721 0) (-72.8132 -0.51955 0) (-72.8079 -0.525634 0) (-72.8034 -0.532187 0) (-71.8863 -0.567096 0) (-71.8924 -0.559412 3.88825e-20) (-71.8988 -0.552937 -7.80701e-20) (-71.9073 -0.549166 0) (-72.8189 -0.515119 0) (-73.7484 -0.47811 0) (-73.7528 -0.472207 0) (-73.7584 -0.466307 0) (-73.7649 -0.460519 0) (-72.84 -0.494584 -7.71767e-20) (-72.8315 -0.501124 7.6873e-20) (-72.8245 -0.508157 0) (-71.9137 -0.540543 0) (-71.9228 -0.532351 -3.88714e-20) (-71.9314 -0.525481 0) (-71.0528 -0.550113 0) (-71.0498 -0.561917 4.01104e-20) (-71.0374 -0.563401 3.21998e-19) (-71.0301 -0.583852 0) (-71.0134 -0.579949 0) (-71.0131 -0.591363 3.60501e-19) (-71.0033 -0.592293 -3.21533e-19) (-70.1748 -0.624152 3.44922e-19) (-68.9913 -0.679894 -1.53236e-18) (-66.2658 -0.737304 0) (-68.9556 -0.651504 0) (-70.1918 -0.613227 -3.43667e-19) (-70.1678 -0.608312 0) (-70.2031 -0.614799 5.45896e-18) (-69.0407 -0.645588 -1.55555e-18) (-70.2153 -0.592883 -2.58555e-19) (-70.2353 -0.581595 -8.61433e-20) (-69.0104 -0.61597 7.6441e-18) (-70.214 -0.576085 -5.48422e-18) (-70.2514 -0.582023 5.46517e-18) (-71.072 -0.553418 0) (-71.9428 -0.521195 0) (-72.8482 -0.489739 0) (-73.7717 -0.455474 0) (-74.7019 -0.418689 0) (-75.6335 -0.379527 0) (-76.5664 -0.337812 0) (-77.5035 -0.293065 0) (-78.4404 -0.244629 0) (-79.3391 -0.192385 0) (-80.0831 -0.137397 0) (-80.0799 -0.13636 0) (-79.3379 -0.190682 0) (-79.3373 -0.188886 0) (-80.0768 -0.135227 0) (-80.0742 -0.134082 0) (-79.3372 -0.187087 0) (-79.3377 -0.185225 0) (-80.0725 -0.132844 0) (-80.071 -0.131572 0) (-79.3389 -0.183305 0) (-79.3406 -0.181357 0) (-80.0703 -0.130273 0) (-80.0702 -0.128918 0) (-79.3429 -0.179308 0) (-78.4578 -0.22663 0) (-78.4534 -0.229391 0) (-78.4497 -0.232086 0) (-78.4466 -0.234721 0) (-78.4441 -0.237288 0) (-78.4422 -0.239798 0) (-78.441 -0.242255 0) (-77.5056 -0.289986 0) (-77.5084 -0.286818 0) (-77.5118 -0.283592 0) (-76.579 -0.326181 0) (-76.5741 -0.330125 0) (-76.5699 -0.334021 0) (-75.6383 -0.374997 0) (-75.6438 -0.370348 0) (-75.6501 -0.365684 0) (-75.6571 -0.36107 0) (-76.5846 -0.322213 0) (-77.5159 -0.280317 0) (-77.5207 -0.276956 0) (-77.5261 -0.273518 0) (-77.5323 -0.270021 0) (-76.6054 -0.309697 0) (-76.5977 -0.313931 0) (-76.5908 -0.31812 0) (-75.6646 -0.356221 0) (-75.6729 -0.351261 0) (-75.682 -0.34629 0) (-75.6918 -0.34137 0) (-76.6137 -0.305443 0) (-77.539 -0.266479 0) (-78.4629 -0.22382 0) (-79.3459 -0.177228 0) (-80.0704 -0.127583 0) (-80.0716 -0.126141 0) (-79.3494 -0.175094 0) (-79.3537 -0.172911 0) (-80.073 -0.124703 0) (-80.0753 -0.123209 0) (-79.3585 -0.170693 0) (-79.364 -0.168434 0) (-80.0779 -0.121678 0) (-80.0814 -0.120128 0) (-79.3701 -0.16616 0) (-79.3768 -0.163795 0) (-80.0856 -0.11853 0) (-80.09 -0.116956 0) (-79.3843 -0.161409 0) (-78.5166 -0.202645 0) (-78.5069 -0.205817 0) (-78.4979 -0.208947 0) (-78.4896 -0.212016 0) (-78.4819 -0.215037 0) (-78.4749 -0.218016 0) (-78.4685 -0.220948 0) (-77.5465 -0.262858 0) (-77.5546 -0.259163 0) (-77.5634 -0.255422 0) (-76.6428 -0.292105 0) (-76.6323 -0.296604 0) (-76.6226 -0.301069 0) (-75.7021 -0.336221 0) (-75.7133 -0.330968 0) (-75.7252 -0.325712 0) (-75.7378 -0.320517 0) (-76.6539 -0.287594 0) (-77.5729 -0.251644 0) (-77.5831 -0.247797 0) (-77.594 -0.243881 0) (-77.6056 -0.239923 0) (-76.6914 -0.273532 0) (-76.6781 -0.278267 0) (-76.6656 -0.282972 0) (-75.751 -0.315103 0) (-75.7651 -0.309592 0) (-75.7799 -0.304086 0) (-74.8693 -0.331981 0) (-74.8529 -0.338267 0) (-74.8374 -0.344615 0) (-74.8229 -0.35089 0) (-74.8089 -0.35665 0) (-74.7954 -0.362672 0) (-74.7828 -0.368747 0) (-74.7711 -0.374742 0) (-74.76 -0.380208 0) (-74.7494 -0.385929 0) (-74.7397 -0.391692 0) (-74.7308 -0.397369 0) (-74.7226 -0.40251 0) (-74.7148 -0.407906 0) (-74.7079 -0.413343 0) (-73.7789 -0.449164 0) (-73.7873 -0.442867 0) (-73.7966 -0.436703 0) (-72.8774 -0.468082 0) (-72.8666 -0.474968 0) (-72.8566 -0.482379 0) (-71.952 -0.512144 0) (-71.9636 -0.503538 3.898e-20) (-71.9754 -0.496293 -7.8266e-20) (-71.9893 -0.491581 0) (-72.8887 -0.462802 0) (-73.8063 -0.431306 0) (-73.8163 -0.424657 0) (-73.8276 -0.418019 0) (-73.8397 -0.411516 0) (-72.9263 -0.440067 0) (-72.9126 -0.447305 0) (-72.8998 -0.455072 0) (-72.0013 -0.482159 0) (-72.0157 -0.473181 3.90281e-20) (-72.0303 -0.465579 -7.8362e-20) (-71.164 -0.48525 0) (-71.1552 -0.497717 3.6184e-19) (-71.1374 -0.500079 -3.22724e-19) (-71.1247 -0.521264 0) (-71.1029 -0.518467 0) (-71.0971 -0.530605 4.01603e-20) (-71.082 -0.532565 3.22393e-19) (-70.2665 -0.559669 -3.4563e-19) (-69.0998 -0.60891 -1.46158e-18) (-66.4312 -0.651178 0) (-69.0763 -0.578234 2.39794e-20) (-70.2887 -0.548095 0) (-70.2704 -0.541952 0) (-70.3102 -0.547464 5.47135e-18) (-69.17 -0.570499 -1.58467e-18) (-70.328 -0.524689 3.46095e-19) (-70.3529 -0.512889 -3.44857e-19) (-69.1515 -0.538966 0) (-70.3378 -0.506235 0) (-70.3799 -0.511277 5.4778e-18) (-71.1884 -0.48754 0) (-72.047 -0.460444 0) (-72.9404 -0.434409 0) (-73.8522 -0.40577 0) (-73.8651 -0.398785 0) (-73.8792 -0.391815 0) (-73.8943 -0.384996 0) (-72.9866 -0.410641 0) (-72.9701 -0.418206 0) (-72.9544 -0.426329 0) (-72.0619 -0.450664 0) (-72.0791 -0.441298 3.90751e-20) (-72.0966 -0.433371 -7.84558e-20) (-72.1161 -0.427863 0) (-73.0037 -0.404646 0) (-73.9097 -0.378937 0) (-73.9255 -0.37166 0) (-73.9425 -0.364404 0) (-73.9604 -0.357308 0) (-73.0586 -0.379992 0) (-73.0392 -0.387841 0) (-73.0206 -0.396266 0) (-72.1339 -0.41778 0) (-72.154 -0.408085 3.91209e-20) (-72.1744 -0.399879 -7.85471e-20) (-71.32 -0.414262 0) (-71.3053 -0.427289 3.62711e-19) (-71.2819 -0.430472 -3.23502e-19) (-71.2634 -0.452286 0) (-71.2362 -0.450434 0) (-71.2246 -0.463202 3.6228e-19) (-71.204 -0.466014 -3.23117e-19) (-70.4006 -0.488069 3.46498e-19) (-69.2495 -0.53042 -7.67215e-18) (-66.6339 -0.556135 4.13578e-20) (-69.2378 -0.497776 6.1532e-18) (-70.4281 -0.475965 -3.45253e-19) (-70.4161 -0.468788 0) (-70.4606 -0.473477 5.48406e-18) (-69.3404 -0.488568 -7.6768e-18) (-70.4842 -0.449884 3.46887e-19) (-70.5145 -0.437579 -3.45644e-19) (-69.3349 -0.45509 -6.15692e-18) (-70.5056 -0.429937 0) (-70.5527 -0.43431 5.49021e-18) (-71.3498 -0.415723 0) (-72.1968 -0.394035 0) (-73.0786 -0.373695 0) (-73.9788 -0.350971 0) (-74.8862 -0.325961 0) (-75.7953 -0.298646 0) (-76.7053 -0.268793 0) (-77.6178 -0.235936 0) (-78.527 -0.199436 0) (-79.3924 -0.158986 0) (-80.0955 -0.115287 0) (-80.1013 -0.113596 0) (-79.4011 -0.156526 0) (-79.4105 -0.154061 0) (-80.1079 -0.11188 0) (-80.1152 -0.110172 0) (-79.4206 -0.151542 0) (-79.4313 -0.148962 0) (-80.1232 -0.108422 0) (-80.1316 -0.106686 0) (-79.4427 -0.146367 0) (-79.4548 -0.143749 0) (-80.141 -0.104892 0) (-80.1507 -0.1031 0) (-79.4675 -0.141107 0) (-78.6185 -0.175832 0) (-78.6034 -0.17931 0) (-78.5889 -0.182759 0) (-78.5752 -0.186172 0) (-78.5621 -0.189544 0) (-78.5497 -0.19288 0) (-78.538 -0.196177 0) (-77.6308 -0.231883 0) (-77.6444 -0.227774 0) (-77.6588 -0.22363 0) (-76.7513 -0.254093 0) (-76.7353 -0.259032 0) (-76.7199 -0.263949 0) (-75.8114 -0.292996 0) (-75.8283 -0.287258 0) (-75.846 -0.28153 0) (-75.8643 -0.275874 0) (-76.7681 -0.249153 0) (-77.6738 -0.21946 0) (-77.6896 -0.215231 0) (-77.706 -0.210951 0) (-77.7232 -0.206644 0) (-76.8227 -0.233892 0) (-76.8037 -0.239012 0) (-76.7855 -0.244116 0) (-75.8833 -0.270016 0) (-75.9031 -0.264077 0) (-75.9236 -0.258155 0) (-75.9448 -0.252311 0) (-76.8423 -0.22878 0) (-77.741 -0.20232 0) (-78.6344 -0.17233 0) (-79.481 -0.138444 0) (-80.1615 -0.101251 8.42175e-20) (-80.1725 -0.0994141 -8.45754e-20) (-79.4951 -0.135753 0) (-79.5099 -0.133037 0) (-80.1846 -0.0975285 0) (-80.197 -0.095659 0) (-79.5254 -0.130298 0) (-79.5416 -0.12754 0) (-80.2105 -0.0937463 0) (-80.2243 -0.0918463 0) (-79.5585 -0.12476 0) (-79.576 -0.121984 0) (-80.2391 -0.0898564 0) (-80.2542 -0.0877271 0) (-79.5945 -0.119215 7.97497e-20) (-78.7646 -0.146916 0) (-78.744 -0.150645 0) (-78.724 -0.154337 0) (-78.7047 -0.157994 0) (-78.6861 -0.161615 0) (-78.6681 -0.165216 0) (-78.6509 -0.168791 0) (-77.7596 -0.197943 0) (-77.7788 -0.193519 0) (-77.7988 -0.189072 0) (-76.9053 -0.213038 0) (-76.8836 -0.218312 0) (-76.8626 -0.223577 0) (-75.9667 -0.246273 0) (-75.9893 -0.240159 0) (-76.0128 -0.23407 0) (-76.0368 -0.228064 0) (-76.9278 -0.207776 0) (-77.8194 -0.184611 0) (-77.8408 -0.180103 0) (-77.8628 -0.175552 0) (-77.8856 -0.170982 0) (-76.9994 -0.191622 0) (-76.9748 -0.197028 0) (-76.9509 -0.20243 0) (-76.0616 -0.221873 0) (-76.0871 -0.215614 0) (-76.1133 -0.209387 0) (-75.2269 -0.224608 0) (-75.199 -0.231653 0) (-75.172 -0.238794 0) (-75.1458 -0.245891 0) (-75.1202 -0.252518 0) (-75.0952 -0.259423 0) (-75.071 -0.266412 0) (-75.0477 -0.273349 0) (-75.025 -0.279802 0) (-75.0028 -0.286529 0) (-74.9815 -0.293332 0) (-74.9611 -0.300076 0) (-74.9413 -0.306327 0) (-74.9221 -0.312848 0) (-74.9037 -0.319438 0) (-73.9975 -0.343434 0) (-74.0174 -0.335923 0) (-74.0383 -0.328582 0) (-73.1423 -0.348252 0) (-73.1199 -0.356353 0) (-73.0984 -0.365047 0) (-72.2176 -0.383684 0) (-72.2405 -0.373698 3.91653e-20) (-72.2639 -0.365246 -7.86356e-20) (-72.2891 -0.359102 0) (-73.1651 -0.341686 0) (-74.0595 -0.321997 0) (-74.0812 -0.31423 0) (-74.104 -0.306494 0) (-74.1278 -0.298938 0) (-73.2376 -0.315552 0) (-73.2123 -0.323871 0) (-73.1879 -0.332802 0) (-72.3128 -0.348516 0) (-72.3387 -0.338272 3.92082e-20) (-72.365 -0.329607 -7.8721e-20) (-71.5219 -0.338487 0) (-71.5013 -0.351935 3.63539e-19) (-71.4722 -0.355742 -3.24242e-19) (-71.4478 -0.378008 0) (-71.4152 -0.376898 0) (-71.3976 -0.390151 3.63131e-19) (-71.3713 -0.393666 -3.23877e-19) (-70.5793 -0.410389 3.47269e-19) (-69.4424 -0.445331 -7.68144e-18) (-66.877 -0.454258 2.10261e-20) (-69.4431 -0.411079 6.16059e-18) (-70.6124 -0.397917 -3.46028e-19) (-70.6066 -0.389848 0) (-70.6561 -0.393948 5.49623e-18) (-69.5556 -0.400853 -7.68601e-18) (-70.6857 -0.369736 3.47642e-19) (-70.7216 -0.357138 -3.46403e-19) (-69.5625 -0.365935 -6.1642e-18) (-70.7189 -0.348684 0) (-70.7709 -0.352547 5.50208e-18) (-71.5573 -0.339286 0) (-72.3931 -0.323199 0) (-73.2633 -0.308748 0) (-74.152 -0.292136 0) (-74.1765 -0.284166 0) (-74.2023 -0.276233 0) (-74.2289 -0.268491 0) (-73.3445 -0.282009 0) (-73.3163 -0.290515 0) (-73.289 -0.299655 0) (-72.4196 -0.312406 0) (-72.4484 -0.301929 0) (-72.4776 -0.293079 0) (-72.5085 -0.286447 0) (-73.3731 -0.275 0) (-74.256 -0.261503 0) (-74.2834 -0.253366 0) (-74.312 -0.245278 0) (-74.3415 -0.2374 0) (-73.4629 -0.247808 0) (-73.4319 -0.256439 0) (-73.4017 -0.265737 0) (-72.538 -0.275491 0) (-72.5696 -0.264829 3.92891e-20) (-72.6016 -0.255852 -7.88819e-20) (-71.7696 -0.259133 -6.51177e-19) (-71.7432 -0.272792 3.64313e-19) (-71.7084 -0.277087 -3.24935e-19) (-71.6782 -0.299691 0) (-71.6401 -0.299155 6.5051e-19) (-71.6166 -0.312754 0) (-71.5846 -0.316834 -3.24595e-19) (-70.8035 -0.328074 3.48004e-19) (-69.6799 -0.355307 -1.53827e-18) (-67.1613 -0.347009 0) (-69.6928 -0.319728 0) (-70.8421 -0.315362 0) (-70.8426 -0.306583 -6.9071e-19) (-70.8971 -0.310259 5.50775e-18) (-69.8156 -0.308816 -1.54024e-18) (-70.9325 -0.285555 3.48349e-19) (-70.974 -0.272818 -3.47121e-19) (-69.8343 -0.272835 4.81704e-20) (-70.9775 -0.263802 6.91391e-19) (-71.0344 -0.267338 5.5132e-18) (-71.8103 -0.259466 0) (-72.6353 -0.249059 0) (-73.4943 -0.240634 0) (-74.3714 -0.230262 0) (-75.2553 -0.217841 0) (-76.1402 -0.203245 0) (-77.0246 -0.186231 0) (-77.9091 -0.166404 0) (-78.786 -0.143181 0) (-79.6133 -0.116448 -1.52867e-23) (-80.2704 -0.0856015 0) (-80.2872 -0.0836131 0) (-79.6327 -0.113552 -8.0096e-20) (-79.6531 -0.1106 0) (-80.3045 -0.0817224 0) (-80.3226 -0.079781 0) (-79.6741 -0.107673 0) (-79.6958 -0.104756 0) (-80.3414 -0.0777876 0) (-80.3608 -0.0757731 0) (-79.7182 -0.101828 0) (-79.7412 -0.0988718 0) (-80.381 -0.0736982 0) (-80.4018 -0.0716328 0) (-79.7649 -0.095911 0) (-78.9549 -0.116553 0) (-78.9287 -0.1204 0) (-78.9032 -0.124253 0) (-78.8784 -0.128096 0) (-78.8543 -0.131888 0) (-78.8309 -0.135666 0) (-78.8081 -0.139439 0) (-77.9332 -0.161779 0) (-77.9581 -0.157133 0) (-77.9836 -0.152504 0) (-77.1044 -0.169744 0) (-77.0773 -0.175258 0) (-77.0506 -0.18076 0) (-76.1678 -0.196916 0) (-76.1959 -0.190525 0) (-76.2254 -0.184178 0) (-76.2548 -0.177945 0) (-77.1328 -0.164227 0) (-78.0098 -0.147838 0) (-78.0367 -0.143091 0) (-78.0643 -0.13836 0) (-78.0925 -0.133652 0) (-77.2209 -0.147395 0) (-77.1906 -0.153015 0) (-77.1613 -0.158656 0) (-76.2851 -0.171534 0) (-76.3163 -0.165049 0) (-76.3481 -0.158595 0) (-76.3805 -0.152243 0) (-77.2518 -0.141842 0) (-78.1214 -0.128887 0) (-78.9818 -0.112676 0) (-79.7894 -0.0929412 0) (-80.4234 -0.0695701 0) (-80.4456 -0.0675021 0) (-79.8144 -0.0899486 0) (-79.8402 -0.0869512 0) (-80.4685 -0.0655028 0) (-80.4922 -0.0634951 0) (-79.8666 -0.0839273 0) (-79.8938 -0.0809105 0) (-80.5163 -0.0614709 0) (-80.5415 -0.0594038 0) (-79.9216 -0.0778868 0) (-79.9501 -0.0748568 0) (-80.5669 -0.0573285 0) (-80.5934 -0.0552102 0) (-79.9792 -0.0718205 0) (-79.1887 -0.0851712 0) (-79.1571 -0.0891278 0) (-79.1262 -0.0930795 0) (-79.096 -0.0970212 0) (-79.0664 -0.100952 0) (-79.0375 -0.104861 0) (-79.0093 -0.108762 0) (-78.1511 -0.124074 0) (-78.1814 -0.119291 0) (-78.2124 -0.114488 0) (-77.3482 -0.124859 0) (-77.315 -0.130547 0) (-77.2831 -0.136234 0) (-76.4133 -0.145715 0) (-76.4476 -0.139145 0) (-76.4818 -0.132659 0) (-76.5169 -0.126259 0) (-77.3815 -0.119231 0) (-78.244 -0.109654 0) (-78.2763 -0.104809 0) (-78.3093 -0.0999527 0) (-78.343 -0.0950989 0) (-77.4859 -0.102075 0) (-77.4504 -0.107795 0) (-77.4156 -0.113532 0) (-76.5526 -0.119687 0) (-76.5891 -0.113076 0) (-76.6263 -0.106518 0) (-75.7645 -0.108648 0) (-75.7258 -0.116032 0) (-75.6877 -0.12353 0) (-75.6505 -0.131028 0) (-75.614 -0.138058 0) (-75.5779 -0.145366 0) (-75.5425 -0.152854 0) (-75.508 -0.160303 0) (-75.4741 -0.167277 0) (-75.4406 -0.174568 0) (-75.4079 -0.181953 0) (-75.3761 -0.189267 0) (-75.345 -0.19615 0) (-75.3143 -0.203341 0) (-75.2843 -0.210617 0) (-74.4017 -0.221995 0) (-74.4332 -0.213754 0) (-74.4655 -0.205726 0) (-73.5928 -0.213041 -7.79257e-20) (-73.5587 -0.221775 0) (-73.5257 -0.231236 0) (-72.6675 -0.237989 0) (-72.7023 -0.227159 -3.92668e-20) (-72.7366 -0.218068 0) (-72.7732 -0.211145 0) (-73.6265 -0.205751 7.79517e-20) (-74.4982 -0.19847 0) (-74.5312 -0.190117 0) (-74.5654 -0.181768 0) (-74.6005 -0.173623 0) (-73.7335 -0.17778 -7.79941e-20) (-73.6966 -0.186646 0) (-73.6609 -0.196233 0) (-72.8082 -0.199993 0) (-72.8456 -0.189043 -3.93029e-20) (-72.8827 -0.179898 0) (-72.0618 -0.177541 -6.52409e-19) (-72.0296 -0.191232 3.65031e-19) (-71.9894 -0.19589 -3.25573e-19) (-71.9536 -0.218715 0) (-71.9102 -0.218558 -6.51804e-19) (-71.8809 -0.232251 3.64682e-19) (-71.8434 -0.23674 -3.25261e-19) (-71.0726 -0.24243 3.48685e-19) (-69.9621 -0.261733 -1.58925e-18) (-67.4872 -0.235775 0) (-69.9866 -0.225333 4.81963e-20) (-71.1168 -0.229678 -3.47458e-19) (-71.1233 -0.220461 6.92045e-19) (-71.1827 -0.223874 5.51844e-18) (-70.1192 -0.214085 -1.59011e-18) (-71.2237 -0.198767 3.49007e-19) (-71.2705 -0.185974 -3.47782e-19) (-70.1495 -0.177261 4.82216e-20) (-71.28 -0.176537 6.92671e-19) (-71.3416 -0.179887 5.52346e-18) (-72.1076 -0.177529 0) (-72.9221 -0.172838 0) (-73.7699 -0.170389 7.80193e-20) (-74.6358 -0.166276 0) (-74.6718 -0.157822 0) (-74.7084 -0.149382 0) (-74.7463 -0.141195 0) (-73.8847 -0.14216 0) (-73.8455 -0.151102 0) (-73.8069 -0.160762 0) (-72.9598 -0.1616 0) (-72.9999 -0.150535 -3.93373e-20) (-73.0397 -0.14131 0) (-73.0816 -0.134134 0) (-73.9242 -0.134701 0) (-74.7843 -0.133773 0) (-74.8228 -0.125219 0) (-74.8621 -0.116711 0) (-74.903 -0.108489 0) (-74.0468 -0.106293 0) (-74.0049 -0.115293 0) (-73.9638 -0.125034 0) (-73.122 -0.122827 0) (-73.1647 -0.111697 -3.937e-20) (-73.2071 -0.102449 0) (-72.3966 -0.0944464 -6.53534e-19) (-72.3589 -0.108117 3.65679e-19) (-72.3135 -0.113034 -3.26153e-19) (-72.2723 -0.135974 0) (-72.224 -0.136123 -6.52986e-19) (-72.189 -0.149826 3.65363e-19) (-72.1462 -0.154642 -3.25871e-19) (-71.3854 -0.154654 3.49315e-19) (-70.2869 -0.165974 -1.59094e-18) (-67.8538 -0.122452 0) (-70.3227 -0.128864 4.8246e-20) (-71.4349 -0.141884 -3.48091e-19) (-71.4472 -0.132289 6.93267e-19) (-71.5111 -0.135599 5.52825e-18) (-70.4648 -0.117566 -1.59174e-18) (-71.5575 -0.110275 3.49609e-19) (-71.6096 -0.0975443 -3.48386e-19) (-70.5062 -0.080224 4.82697e-20) (-71.6247 -0.0878099 6.93835e-19) (-71.6908 -0.0911188 5.53281e-18) (-72.4473 -0.0942017 0) (-73.2516 -0.0951985 0) (-74.0889 -0.0987899 0) (-74.9434 -0.101044 0) (-75.8039 -0.101517 0) (-76.6641 -0.10005 0) (-77.522 -0.0963848 0) (-78.3773 -0.0902519 0) (-79.2209 -0.0812125 0) (-80.0091 -0.068781 0) (-80.6202 -0.0531093 0) (-80.6481 -0.0509925 0) (-80.0396 -0.0657346 0) (-80.0708 -0.0626818 0) (-80.6763 -0.0488863 0) (-80.7055 -0.0467602 0) (-80.1026 -0.0596296 0) (-80.1351 -0.0565807 0) (-80.735 -0.0446111 0) (-80.7655 -0.0424708 0) (-80.1683 -0.0535575 0) (-80.2021 -0.0505121 0) (-80.7966 -0.0403362 0) (-80.8283 -0.0382559 0) (-80.2366 -0.0474633 0) (-79.4652 -0.0533798 0) (-79.4283 -0.0573513 0) (-79.3921 -0.0613297 0) (-79.3566 -0.0653058 0) (-79.3217 -0.069281 0) (-79.2874 -0.0732591 0) (-79.2539 -0.0772402 0) (-78.4123 -0.0853782 0) (-78.4479 -0.0805021 0) (-78.4842 -0.0756301 0) (-77.6344 -0.0791685 0) (-77.5963 -0.0849029 0) (-77.5588 -0.0906469 0) (-76.7025 -0.0934338 0) (-76.7414 -0.0867652 0) (-76.7816 -0.0801878 0) (-76.8217 -0.0737184 0) (-77.6731 -0.073441 0) (-78.5212 -0.0707543 0) (-78.5588 -0.0658791 0) (-78.597 -0.0610105 0) (-78.6359 -0.0561401 0) (-77.7933 -0.0562231 0) (-77.7526 -0.0619577 0) (-77.7126 -0.0676938 0) (-76.8626 -0.0670537 0) (-76.9045 -0.0603928 0) (-76.947 -0.0538716 0) (-76.9897 -0.0474424 0) (-77.8346 -0.050509 0) (-78.6755 -0.0512785 0) (-79.5027 -0.0494136 0) (-80.2717 -0.0443971 0) (-80.8608 -0.0362357 0) (-80.8939 -0.0341916 0) (-80.3076 -0.0413325 0) (-80.344 -0.0383057 0) (-80.9275 -0.0320485 0) (-80.962 -0.0298686 0) (-80.3811 -0.0352886 0) (-80.4189 -0.0322635 0) (-80.997 -0.0277625 0) (-81.0329 -0.0257481 0) (-80.4573 -0.0292217 0) (-80.4963 -0.0261794 0) (-81.0692 -0.0237569 0) (-81.1062 -0.0217281 0) (-80.536 -0.0231629 0) (-79.7832 -0.0217885 0) (-79.7412 -0.0257081 0) (-79.6999 -0.0296438 0) (-79.6592 -0.0335829 0) (-79.6191 -0.0375228 0) (-79.5796 -0.0414772 0) (-79.5408 -0.0454435 0) (-78.7156 -0.04641 0) (-78.7564 -0.0415414 0) (-78.7979 -0.0366951 0) (-77.9624 -0.0333087 0) (-77.9191 -0.0390116 0) (-77.8765 -0.0447589 0) (-77.0332 -0.0408356 0) (-77.0774 -0.0342183 0) (-77.1223 -0.0276889 0) (-77.1678 -0.021273 0) (-78.0062 -0.0276583 0) (-78.84 -0.0318764 0) (-78.8827 -0.0270505 0) (-78.926 -0.0222253 0) (-78.9699 -0.0174239 0) (-78.1414 -0.0106488 0) (-78.0957 -0.0163006 0) (-78.0507 -0.0219799 0) (-77.2138 -0.0147471 0) (-77.2604 -0.00821884 0) (-77.3077 -0.00174635 0) (-76.4703 0.00926104 0) (-76.4213 0.0020444 0) (-76.3729 -0.00540878 0) (-76.3256 -0.012905 0) (-76.2787 -0.0199781 0) (-76.2323 -0.027322 0) (-76.1865 -0.0348148 0) (-76.1419 -0.0422783 0) (-76.0971 -0.0493619 0) (-76.0534 -0.0567776 0) (-76.0101 -0.0643472 0) (-75.9679 -0.0718544 0) (-75.9256 -0.0789387 0) (-75.8847 -0.0863601 0) (-75.8435 -0.0939358 0) (-74.9848 -0.0924807 0) (-75.0265 -0.0839293 0) (-75.0701 -0.0756736 0) (-74.2193 -0.0703024 0) (-74.1748 -0.0793194 0) (-74.131 -0.0891026 0) (-73.2945 -0.0838297 0) (-73.3398 -0.0726683 -3.9401e-20) (-73.3848 -0.0634395 0) (-73.4319 -0.0561667 0) (-74.2639 -0.0627974 0) (-75.1128 -0.068181 0) (-75.1567 -0.0595752 0) (-75.2015 -0.0510538 0) (-75.2472 -0.0429035 0) (-74.4019 -0.0342444 0) (-74.3548 -0.0433028 7.79674e-20) (-74.3089 -0.053115 -7.79457e-20) (-73.4773 -0.0447971 0) (-73.5251 -0.0336416 -3.94299e-20) (-73.5726 -0.0244147 0) (-72.7722 -0.0108853 -6.54544e-19) (-72.7293 -0.0243637 3.66265e-19) (-72.6789 -0.029376 -3.26673e-19) (-72.6325 -0.0523296 0) (-72.5794 -0.0526062 -6.54053e-19) (-72.5391 -0.0662176 3.6598e-19) (-72.4912 -0.0712139 -3.2642e-19) (-71.7398 -0.0657312 3.49889e-19) (-70.6528 -0.0690244 -1.59253e-18) (-68.2585 -0.00824611 -2.04408e-20) (-70.6995 -0.0315384 4.82927e-20) (-71.7944 -0.0530419 -3.48667e-19) (-71.8123 -0.0431974 6.94375e-19) (-71.8806 -0.0465651 5.53715e-18) (-70.8506 -0.0205569 -1.59328e-18) (-71.9321 -0.0211717 3.50154e-19) (-71.9891 -0.00859582 -3.48933e-19) (-70.9024 0.0169624 4.83147e-20) (-72.0097 0.00127725 6.94885e-19) (-72.0802 -0.00217234 5.54126e-18) (-72.8276 -0.0105837 0) (-73.6222 -0.017209 0) (-74.4491 -0.0268229 0) (-75.2925 -0.0354007 0) (-75.3388 -0.0268561 0) (-75.3858 -0.0183313 0) (-75.4343 -0.0101804 0) (-74.5944 0.00139426 0) (-74.545 -0.00754163 0) (-74.4962 -0.0172217 0) (-73.6701 -0.00591967 0) (-73.7204 0.00513991 -3.94582e-20) (-73.7703 0.0142317 0) (-73.8223 0.0214115 0) (-74.6441 0.00880545 0) (-75.4823 -0.00281024 0) (-75.5312 0.00561627 0) (-75.5805 0.0140586 0) (-75.6311 0.0221595 0) (-74.7967 0.0367987 0) (-74.7449 0.0279823 0) (-74.6937 0.0183534 0) (-73.8726 0.0326359 0) (-73.9253 0.0436366 -3.94841e-20) (-73.9777 0.0526025 0) (-73.1868 0.0718685 -6.55444e-19) (-73.139 0.0586358 3.66787e-19) (-73.0839 0.0536945 -3.27136e-19) (-73.0324 0.0309418 0) (-72.9747 0.0307131 -6.55008e-19) (-72.9293 0.0173279 3.66534e-19) (-72.8766 0.0122959 -3.26912e-19) (-72.1342 0.0231995 3.50405e-19) (-71.058 0.0276571 -1.59401e-18) (-68.7007 0.104711 0) (-71.115 0.0651937 4.8336e-20) (-72.1936 0.0356617 -3.49185e-19) (-72.2168 0.045559 6.95366e-19) (-72.2894 0.0419745 5.54514e-18) (-71.2749 0.0755362 -1.59471e-18) (-72.3459 0.0672627 3.50641e-19) (-72.4076 0.0795407 -3.49423e-19) (-71.3368 0.112997 4.83564e-20) (-72.4333 0.089401 6.9582e-19) (-72.508 0.0856651 5.5488e-18) (-73.2467 0.0720299 0) (-74.032 0.0596972 0) (-74.8487 0.044107 0) (-75.6817 0.0294551 0) (-76.5194 0.0161996 0) (-77.3556 0.00462044 0) (-78.1877 -0.00504481 0) (-79.0145 -0.0126504 0) (-79.8258 -0.0178851 0) (-80.5763 -0.0201679 0) (-81.1439 -0.0196383 0) (-81.1821 -0.0174823 0) (-80.6173 -0.0172316 0) (-80.6591 -0.0143044 8.01441e-20) (-81.2211 -0.0152544 0) (-81.2607 -0.0131037 0) (-80.7009 -0.0113596 -8.04774e-20) (-80.7441 -0.0084112 8.01624e-20) (-81.301 -0.0110435 0) (-81.3419 -0.00900326 0) (-80.7872 -0.00541077 -8.04958e-20) (-80.8313 -0.00243754 0) (-81.3832 -0.00703194 0) (-81.4255 -0.00503454 0) (-80.8759 0.000508217 0) (-80.141 0.00908617 0) (-80.0942 0.00528176 0) (-80.0479 0.00146954 0) (-80.0023 -0.00236922 0) (-79.9572 -0.00621478 0) (-79.9128 -0.0100835 0) (-79.869 -0.013987 0) (-79.0597 -0.00787338 0) (-79.1054 -0.00311347 0) (-79.1518 0.00160172 0) (-78.3302 0.0116983 0) (-78.2821 0.00615881 0) (-78.2346 0.000569151 0) (-77.404 0.0110792 0) (-77.4529 0.0175792 0) (-77.5029 0.0239891 0) (-77.5532 0.0302109 0) (-78.3789 0.0172182 0) (-79.1988 0.0062998 0) (-79.2463 0.0110123 0) (-79.2945 0.0157109 0) (-79.3433 0.0203767 0) (-78.5285 0.0338327 0) (-78.478 0.0283423 0) (-78.4281 0.0227906 0) (-77.6038 0.0365672 0) (-77.6553 0.0429418 0) (-77.7073 0.0492295 0) (-77.7599 0.0553971 0) (-78.5796 0.0392587 0) (-79.3926 0.025005 0) (-80.1884 0.0128639 0) (-80.9212 0.00342456 0) (-81.468 -0.00301881 0) (-81.5115 -0.00100892 0) (-80.967 0.00631936 0) (-81.0135 0.00920047 0) (-81.5553 0.00103186 0) (-81.5999 0.0030471 0) (-81.0606 0.0120429 0) (-81.1083 0.0148877 0) (-81.6451 0.0050577 0) (-81.6908 0.00701589 0) (-81.1565 0.0177264 0) (-81.2054 0.0205711 0) (-81.7374 0.00894155 0) (-81.7843 0.0109178 0) (-81.2549 0.0233937 0) (-80.5372 0.0389449 0) (-80.4856 0.0352694 0) (-80.4346 0.0315728 0) (-80.3842 0.0278666 0) (-80.3344 0.0241483 0) (-80.2851 0.0204064 0) (-80.2365 0.0166395 0) (-79.4426 0.0296345 0) (-79.4931 0.0342581 0) (-79.5442 0.0388494 0) (-78.7362 0.0555826 0) (-78.6834 0.0501749 0) (-78.6312 0.0447152 0) (-77.813 0.061682 0) (-77.8668 0.0679756 0) (-77.9212 0.0741741 0) (-77.9761 0.0802358 0) (-78.7896 0.0609224 0) (-79.596 0.0434022 0) (-79.6482 0.0479517 0) (-79.7011 0.0524941 0) (-79.7546 0.0570028 0) (-78.9532 0.0769753 0) (-78.8981 0.0716579 0) (-78.8435 0.0662891 0) (-78.0315 0.0864167 0) (-78.0875 0.0926069 0) (-78.1442 0.0987012 0) (-77.3296 0.122178 0) (-77.2714 0.115321 0) (-77.2139 0.108296 0) (-77.1572 0.101248 0) (-77.1009 0.094584 0) (-77.045 0.0876098 0) (-76.9898 0.0804681 0) (-76.9353 0.0733007 0) (-76.8813 0.0665126 0) (-76.8277 0.0594328 0) (-76.7748 0.0522073 0) (-76.7227 0.0449728 0) (-76.6712 0.0381058 0) (-76.6201 0.0309141 0) (-76.569 0.0235737 0) (-75.7327 0.0378352 0) (-75.7848 0.0461679 0) (-75.8376 0.0541716 0) (-75.0087 0.0717991 -7.83783e-20) (-74.9541 0.0631002 7.81183e-20) (-74.901 0.0535418 -7.80963e-20) (-74.0846 0.0708063 0) (-74.1397 0.081702 -3.9508e-20) (-74.1944 0.0905368 0) (-74.251 0.0975275 0) (-75.0627 0.0790484 7.84015e-20) (-75.8906 0.0613746 0) (-75.9438 0.0696036 0) (-75.998 0.0778202 0) (-76.0535 0.0856841 0) (-75.2294 0.106391 0) (-75.173 0.0978027 0) (-75.1171 0.0883671 0) (-74.306 0.108514 0) (-74.3633 0.119293 -3.95314e-20) (-74.4202 0.127978 0) (-73.6387 0.152702 -6.56239e-19) (-73.5861 0.13983 3.67249e-19) (-73.5265 0.135102 -3.27546e-19) (-73.4703 0.112612 0) (-73.4082 0.112552 -6.55855e-19) (-73.358 0.0994961 3.67025e-19) (-73.3006 0.0946565 -3.27348e-19) (-72.5669 0.110863 3.50864e-19) (-71.501 0.122932 -1.59538e-18) (-69.1783 0.216014 0) (-71.5677 0.160278 4.83761e-20) (-72.6308 0.122944 -3.49646e-19) (-72.659 0.132742 6.96246e-19) (-72.7357 0.128826 5.55223e-18) (-71.7361 0.169744 -1.59603e-18) (-72.7969 0.153914 3.51072e-19) (-72.8631 0.165785 -3.49856e-19) (-71.8074 0.206933 4.8395e-20) (-72.8937 0.17551 6.96645e-19) (-72.9724 0.171409 5.55546e-18) (-73.7029 0.152656 0) (-74.4791 0.134851 0) (-75.286 0.113503 0) (-76.1085 0.0927802 0) (-76.1642 0.100922 0) (-76.2208 0.108988 0) (-76.2782 0.11675 0) (-75.4596 0.140449 -7.84794e-20) (-75.4005 0.132024 7.81847e-20) (-75.3426 0.122699 0) (-74.5363 0.145692 0) (-74.596 0.156338 -3.95523e-20) (-74.6551 0.164888 0) (-74.7162 0.171639 0) (-75.5183 0.147441 0) (-76.3358 0.123759 0) (-76.3937 0.131783 0) (-76.4526 0.139717 0) (-76.5122 0.147349 0) (-75.6987 0.173974 -7.8517e-20) (-75.6373 0.165691 7.82228e-20) (-75.5772 0.156507 0) (-74.7757 0.182331 0) (-74.8375 0.192845 -3.95721e-20) (-74.8989 0.201239 0) (-74.1262 0.231313 -6.56934e-19) (-74.069 0.218808 3.67651e-19) (-74.0051 0.214305 -3.27906e-19) (-73.9443 0.192143 0) (-73.878 0.192309 -6.56598e-19) (-73.8231 0.179606 3.67457e-19) (-73.7614 0.174984 -3.27732e-19) (-73.0359 0.196375 3.51268e-19) (-71.9798 0.215905 -1.59665e-18) (-69.6905 0.324594 -2.04835e-20) (-72.0558 0.252941 4.84131e-20) (-73.1042 0.208049 -3.50053e-19) (-73.1372 0.217708 6.97019e-19) (-73.2178 0.213408 5.55848e-18) (-72.2323 0.261401 -1.59725e-18) (-73.2836 0.23824 3.5145e-19) (-73.3541 0.249684 -3.50237e-19) (-72.3128 0.298202 4.84306e-20) (-73.3895 0.259237 6.97368e-19) (-73.4721 0.254708 5.5613e-18) (-74.1946 0.230995 0) (-74.9621 0.207839 0) (-75.7596 0.180829 0) (-76.572 0.154225 0) (-77.3881 0.128724 0) (-78.2014 0.104659 0) (-79.0089 0.0822263 0) (-79.8086 0.061454 0) (-80.5895 0.0426171 0) (-81.305 0.0261924 0) (-81.8321 0.0128747 0) (-81.8802 0.0148054 0) (-81.3557 0.0289553 0) (-81.4069 0.0317232 0) (-81.9292 0.0166821 0) (-81.9786 0.0185774 0) (-81.4588 0.0345205 0) (-81.5113 0.037262 0) (-82.0286 0.0205039 0) (-82.0794 0.0224119 0) (-81.5644 0.0399984 0) (-81.6181 0.0427178 0) (-82.1305 0.0243063 0) (-82.1826 0.0261759 0) (-81.6724 0.0454241 0) (-80.9714 0.0677201 0) (-80.9151 0.0641809 0) (-80.8593 0.0606221 0) (-80.8042 0.0570541 0) (-80.7496 0.0534966 0) (-80.6958 0.0499379 0) (-80.6421 0.046321 0) (-79.8636 0.0658888 0) (-79.9184 0.0703753 0) (-79.9743 0.0748252 0) (-79.1795 0.097963 0) (-79.122 0.0927591 0) (-79.0652 0.0875052 0) (-78.2591 0.11073 0) (-78.3175 0.116785 0) (-78.3764 0.122756 0) (-78.4359 0.128617 0) (-79.2375 0.103119 0) (-80.0307 0.079213 0) (-80.0876 0.0835989 0) (-80.1452 0.0879744 0) (-80.2033 0.0923166 0) (-79.4149 0.118571 0) (-79.3551 0.113459 0) (-79.296 0.108292 0) (-78.4958 0.134583 0) (-78.5564 0.140535 0) (-78.6176 0.14639 0) (-78.6794 0.152124 0) (-79.4751 0.123618 0) (-80.262 0.0966199 0) (-81.0283 0.0712358 0) (-81.7272 0.0481135 0) (-82.2349 0.0280767 0) (-82.288 0.0299484 0) (-81.7827 0.0507701 0) (-81.8388 0.0534369 0) (-82.3418 0.0318039 0) (-82.3961 0.033599 0) (-81.8954 0.0560951 0) (-81.9527 0.0587684 0) (-82.4512 0.0353892 0) (-82.5066 0.0371925 0) (-82.0106 0.0614174 0) (-82.069 0.0640568 0) (-82.5629 0.0389555 0) (-82.6197 0.0407751 0) (-82.1281 0.0667019 0) (-81.4432 0.095451 0) (-81.3822 0.0920322 0) (-81.3217 0.0885981 0) (-81.2619 0.0851543 0) (-81.2026 0.0817004 0) (-81.1439 0.078229 0) (-81.0858 0.0747368 0) (-80.3213 0.100919 0) (-80.3811 0.10521 0) (-80.4416 0.109468 0) (-79.6594 0.138766 0) (-79.5974 0.133754 0) (-79.536 0.128692 0) (-78.7416 0.157969 0) (-78.8045 0.163798 0) (-78.8679 0.169542 0) (-78.9319 0.175182 0) (-79.722 0.143727 0) (-80.5026 0.113693 0) (-80.5642 0.117919 0) (-80.6264 0.122137 0) (-80.6891 0.126328 0) (-79.9131 0.15863 0) (-79.8488 0.153696 0) (-79.7851 0.148712 0) (-78.9963 0.18093 0) (-79.0615 0.18667 0) (-79.1272 0.192317 0) (-78.334 0.227492 0) (-78.2669 0.221133 0) (-78.2005 0.214617 0) (-78.1348 0.208075 0) (-78.0698 0.201927 0) (-78.0045 0.195484 0) (-77.9405 0.188801 0) (-77.877 0.18212 0) (-77.8139 0.175821 0) (-77.7513 0.169228 0) (-77.6893 0.162473 0) (-77.6281 0.155686 0) (-77.5675 0.149292 0) (-77.5067 0.142593 0) (-77.4471 0.135658 0) (-76.6321 0.162104 0) (-76.6934 0.16993 0) (-76.7552 0.177427 0) (-75.9464 0.20688 0) (-75.8832 0.198738 0) (-75.8206 0.189724 0) (-75.0238 0.218355 0) (-75.0878 0.228691 -3.95912e-20) (-75.1514 0.236877 0) (-75.2168 0.243314 0) (-76.0097 0.213575 0) (-76.8172 0.18413 0) (-76.8795 0.191862 0) (-76.9427 0.199558 0) (-77.0071 0.206873 0) (-76.203 0.239148 0) (-76.1377 0.231155 0) (-76.0729 0.222298 0) (-75.2806 0.253654 0) (-75.3468 0.263829 -3.96084e-20) (-75.4125 0.271839 0) (-74.6485 0.307034 -6.57534e-19) (-74.5869 0.294991 3.67999e-19) (-74.5187 0.290819 -3.28218e-19) (-74.4535 0.269055 0) (-74.3831 0.269534 -6.57246e-19) (-74.3237 0.257279 3.67832e-19) (-74.2576 0.252956 -3.28068e-19) (-73.5401 0.279378 3.5162e-19) (-72.4935 0.3061 -1.59783e-18) (-70.2351 0.429866 -2.04927e-20) (-72.5783 0.342574 4.84473e-20) (-73.6126 0.290529 -3.50409e-19) (-73.6503 0.299925 6.97691e-19) (-73.7348 0.295163 5.56391e-18) (-72.7629 0.349896 -1.59838e-18) (-73.8049 0.319678 3.51778e-19) (-73.8796 0.330573 -3.50568e-19) (-72.8521 0.386107 4.84631e-20) (-73.9195 0.33985 6.9799e-19) (-74.0059 0.334872 5.56633e-18) (-74.7209 0.306408 0) (-75.4801 0.278121 0) (-76.2684 0.245698 0) (-77.0711 0.213435 0) (-77.1357 0.221019 0) (-77.2014 0.228566 0) (-77.2676 0.235788 0) (-76.4683 0.270816 0) (-76.4008 0.262977 0) (-76.3338 0.254263 0) (-75.5461 0.288297 0) (-75.6144 0.298322 -3.96244e-20) (-75.6823 0.306164 0) (-75.752 0.312306 0) (-76.5359 0.277229 0) (-77.3339 0.242223 0) (-77.4007 0.249685 0) (-77.4683 0.257121 0) (-77.5371 0.264169 0) (-76.7423 0.301933 0) (-76.6726 0.294228 0) (-76.6035 0.28565 0) (-75.8201 0.322324 0) (-75.8905 0.33221 -3.96391e-20) (-75.9606 0.339887 0) (-75.2047 0.380069 -6.58045e-19) (-75.1387 0.368431 3.68297e-19) (-75.0664 0.364526 -3.28485e-19) (-74.9968 0.343102 0) (-74.9223 0.343878 -6.57801e-19) (-74.8585 0.332035 3.68154e-19) (-74.7883 0.327995 -3.28357e-19) (-74.0782 0.359256 3.51924e-19) (-73.0406 0.392877 -1.5989e-18) (-70.8124 0.531404 0) (-73.1341 0.428881 4.84782e-20) (-74.155 0.369923 -3.50716e-19) (-74.1972 0.379099 6.98266e-19) (-74.2855 0.373903 5.56857e-18) (-73.3266 0.435131 -1.5994e-18) (-74.36 0.398165 3.52058e-19) (-74.4388 0.408588 -3.50851e-19) (-73.4244 0.470906 4.84927e-20) (-74.4833 0.417658 6.98519e-19) (-74.5735 0.412256 5.57062e-18) (-75.2812 0.379143 0) (-76.0324 0.345883 0) (-76.8121 0.308218 0) (-77.6055 0.270463 0) (-78.4015 0.23357 0) (-79.1934 0.197844 0) (-79.978 0.163501 0) (-80.7525 0.130481 0) (-81.5049 0.0988399 0) (-82.1878 0.0692854 0) (-82.6769 0.0425874 0) (-82.7351 0.0443789 0) (-82.2481 0.0718672 0) (-82.309 0.074433 0) (-82.7935 0.0462131 0) (-82.853 0.0480414 0) (-82.3706 0.0769757 0) (-82.4328 0.0795437 0) (-82.9129 0.0498631 0) (-82.9733 0.0516014 0) (-82.4953 0.0820988 0) (-82.5586 0.0846506 0) (-83.0345 0.0533004 0) (-83.096 0.0550204 0) (-82.6225 0.0871738 0) (-81.953 0.122237 0) (-81.8872 0.118946 0) (-81.8221 0.115651 0) (-81.7576 0.112318 0) (-81.6935 0.108945 0) (-81.6299 0.105582 0) (-81.5671 0.102218 0) (-80.8164 0.134631 0) (-80.8809 0.138759 0) (-80.9461 0.142878 0) (-80.1762 0.178062 0) (-80.1093 0.173241 0) (-80.0434 0.168387 0) (-79.2602 0.20349 0) (-79.3274 0.209178 0) (-79.3957 0.214715 0) (-79.464 0.22013 0) (-80.243 0.182913 0) (-81.012 0.146945 0) (-81.0779 0.151046 0) (-81.1448 0.155139 0) (-81.2123 0.159203 0) (-80.4481 0.197375 0) (-80.3792 0.192584 0) (-80.3109 0.187752 0) (-79.5331 0.225688 0) (-79.6028 0.231276 0) (-79.6731 0.23677 0) (-79.7439 0.242138 0) (-80.5176 0.202105 0) (-81.2803 0.163235 0) (-82.0194 0.125525 0) (-82.6871 0.0896941 0) (-83.1586 0.0567476 0) (-83.2214 0.0585299 0) (-82.7523 0.0922106 0) (-82.8181 0.0947037 0) (-83.2851 0.0602473 0) (-83.3495 0.0619201 0) (-82.8845 0.0972204 0) (-82.9516 0.0997162 0) (-83.4142 0.0636218 0) (-83.48 0.065321 0) (-83.0193 0.10221 0) (-83.0876 0.104709 0) (-83.5461 0.0671212 0) (-83.613 0.0689202 0) (-83.1566 0.107206 0) (-82.5018 0.148441 0) (-82.431 0.14517 0) (-82.3608 0.141897 0) (-82.2913 0.138632 0) (-82.2224 0.135371 0) (-82.1541 0.132095 0) (-82.0865 0.128813 0) (-81.349 0.167274 0) (-81.4183 0.171315 0) (-81.4881 0.175339 0) (-80.7297 0.216399 0) (-80.6584 0.211653 0) (-80.5877 0.206871 0) (-79.8152 0.247636 0) (-79.8872 0.253161 0) (-79.9599 0.25861 0) (-80.033 0.263941 0) (-80.8016 0.221096 0) (-81.5586 0.17934 0) (-81.6297 0.183355 0) (-81.7014 0.187382 0) (-81.7738 0.1914 0) (-81.0209 0.235346 0) (-80.9472 0.230606 0) (-80.8741 0.225839 0) (-80.1067 0.269413 0) (-80.1811 0.274923 0) (-80.2562 0.280365 0) (-79.4826 0.326649 0) (-79.4063 0.320514 0) (-79.3307 0.314236 0) (-79.2559 0.307982 0) (-79.1816 0.302138 0) (-79.1076 0.295997 0) (-79.0344 0.289704 0) (-78.962 0.283423 0) (-78.8899 0.277539 0) (-78.8183 0.271345 0) (-78.7474 0.264991 0) (-78.6772 0.258647 0) (-78.6075 0.252711 0) (-78.5385 0.246472 0) (-78.4693 0.240059 0) (-77.6747 0.277783 0) (-77.7444 0.285138 0) (-77.8152 0.292114 0) (-77.025 0.332527 0) (-76.9532 0.324956 0) (-76.8818 0.316509 0) (-76.1027 0.355766 0) (-76.1753 0.365527 -3.96527e-20) (-76.2476 0.373058 0) (-76.3215 0.378939 0) (-77.097 0.33871 0) (-77.886 0.298316 0) (-77.9571 0.305561 0) (-78.0293 0.312759 0) (-78.1022 0.319652 0) (-77.3164 0.362721 0) (-77.2423 0.355248 0) (-77.1689 0.346915 0) (-76.394 0.388757 0) (-76.4685 0.398454 3.9727e-20) (-76.5434 0.405825 -7.97408e-20) (-75.7951 0.450903 -6.5848e-19) (-75.7247 0.439561 3.68541e-19) (-75.6481 0.435822 -3.28709e-19) (-75.5742 0.414643 0) (-75.4956 0.415682 -6.58268e-19) (-75.4274 0.404221 3.68428e-19) (-75.353 0.400427 -3.28602e-19) (-74.6501 0.436411 3.5218e-19) (-73.6209 0.476672 -1.59988e-18) (-71.4212 0.629307 0) (-73.7229 0.512258 4.85064e-20) (-74.731 0.446611 -3.50976e-19) (-74.7777 0.455611 6.98749e-19) (-74.8698 0.45005 5.57249e-18) (-73.9234 0.517617 -1.60033e-18) (-74.9486 0.474125 3.52291e-19) (-75.0316 0.484164 -3.51088e-19) (-74.0298 0.553131 4.85193e-20) (-75.0807 0.493158 6.98956e-19) (-75.1747 0.487451 5.57418e-18) (-75.8757 0.449771 0) (-76.6193 0.411616 0) (-77.3907 0.368842 0) (-78.1754 0.325804 0) (-78.2488 0.332986 0) (-78.3232 0.340121 0) (-78.3984 0.346956 0) (-77.6169 0.392659 0) (-77.5405 0.385258 0) (-77.4649 0.376989 0) (-76.694 0.421386 0) (-76.7707 0.43102 3.97382e-20) (-76.8479 0.438292 -7.97628e-20) (-76.9259 0.444037 0) (-77.6934 0.398737 0) (-78.4738 0.353065 0) (-78.5495 0.360222 0) (-78.6263 0.367346 0) (-78.7038 0.374176 0) (-77.9265 0.422529 0) (-77.8478 0.415137 0) (-77.7699 0.406867 0) (-77.0029 0.453815 0) (-77.0819 0.463465 3.97483e-20) (-77.1613 0.470709 -7.97823e-20) (-76.4204 0.520617 0) (-76.3454 0.509433 3.68743e-19) (-76.2643 0.50571 -3.2889e-19) (-76.186 0.484612 0) (-76.1034 0.485776 0) (-76.0307 0.474549 3.68648e-19) (-75.9518 0.470869 -3.28805e-19) (-75.2557 0.511474 3.5239e-19) (-74.2343 0.558122 -1.60075e-18) (-72.0613 0.724619 -1.33468e-18) (-74.3451 0.593504 6.21734e-18) (-75.3408 0.521329 -3.51185e-19) (-75.3923 0.530336 0) (-75.4883 0.524552 5.57568e-18) (-74.5534 0.598331 -7.75664e-18) (-75.5714 0.5486 3.52483e-19) (-75.6588 0.558397 -3.51281e-19) (-74.6687 0.633988 -4.8538e-20) (-75.7126 0.56749 0) (-75.8106 0.5617 5.57702e-18) (-76.5052 0.519485 0) (-77.2417 0.476465 0) (-78.0053 0.428617 0) (-78.7816 0.38029 0) (-79.5593 0.332499 0) (-80.3317 0.285701 0) (-81.0953 0.240046 0) (-81.8468 0.195402 0) (-82.5732 0.151706 0) (-83.2262 0.109718 0) (-83.6806 0.0706049 0) (-83.7486 0.0722799 0) (-83.2965 0.112208 0) (-83.3675 0.114702 0) (-83.8177 0.0739592 0) (-83.887 0.075755 0) (-83.4391 0.117203 0) (-83.5115 0.119717 0) (-83.9574 0.0775967 0) (-84.0283 0.0794875 0) (-83.5846 0.122188 0) (-83.6583 0.124613 8.08427e-20) (-84.0999 0.0813421 0) (-84.1722 0.0830737 0) (-83.7323 0.127182 -8.08629e-20) (-83.0915 0.174773 0) (-83.0156 0.17144 0) (-82.9402 0.168091 0) (-82.8656 0.164746 0) (-82.7913 0.161506 0) (-82.718 0.158248 0) (-82.6453 0.154973 0) (-81.9204 0.199423 0) (-81.9946 0.203462 0) (-82.0695 0.207498 0) (-81.3221 0.254324 0) (-81.2458 0.249578 0) (-81.1702 0.244801 0) (-80.4079 0.291186 0) (-80.4847 0.296697 0) (-80.5622 0.302139 0) (-80.6403 0.307529 0) (-81.3989 0.259057 0) (-82.145 0.211532 0) (-82.2214 0.215595 0) (-82.2982 0.219668 0) (-82.3757 0.223761 0) (-81.6335 0.273533 0) (-81.5548 0.268703 0) (-81.4766 0.263875 0) (-80.7192 0.313126 0) (-80.7984 0.31878 0) (-80.8787 0.324288 0) (-80.9592 0.329763 0) (-81.713 0.27838 0) (-82.4539 0.227873 0) (-83.1683 0.178109 0) (-83.8074 0.129783 0) (-84.2452 0.0847876 0) (-84.3189 0.0865306 0) (-83.8831 0.132384 0) (-83.9596 0.135001 0) (-84.3934 0.0883102 0) (-84.4686 0.0900351 0) (-84.0368 0.137626 0) (-84.1148 0.140287 0) (-84.5448 0.0917505 0) (-84.6214 0.0935913 0) (-84.1935 0.142932 0) (-84.2733 0.145575 8.05771e-20) (-84.6991 0.0955209 0) (-84.7776 0.0974835 0) (-84.3535 0.148396 -8.0595e-20) (-83.7261 0.202359 0) (-83.6439 0.198818 0) (-83.5628 0.195282 0) (-83.4824 0.191781 0) (-83.4028 0.188323 0) (-83.3239 0.184894 0) (-83.2457 0.181487 0) (-82.5328 0.232032 0) (-82.6124 0.236231 0) (-82.6928 0.240452 0) (-81.9558 0.293256 0) (-81.8742 0.288274 0) (-81.7932 0.283306 0) (-81.0405 0.335438 0) (-81.1226 0.341177 0) (-81.2054 0.346904 0) (-81.2889 0.352608 0) (-82.0381 0.298257 0) (-82.7738 0.244697 0) (-82.8556 0.249008 0) (-82.9382 0.253386 0) (-83.0215 0.257812 0) (-82.2896 0.313758 0) (-82.205 0.308542 0) (-82.1212 0.303363 0) (-81.373 0.358511 0) (-81.458 0.364495 0) (-81.5437 0.370495 0) (-80.7879 0.428346 0) (-80.7007 0.421617 0) (-80.6148 0.414723 0) (-80.5296 0.407961 0) (-80.4454 0.401716 0) (-80.3611 0.395294 0) (-80.278 0.388685 0) (-80.1957 0.382186 0) (-80.1141 0.376169 0) (-80.033 0.369897 0) (-79.9523 0.363489 0) (-79.8727 0.357149 0) (-79.7934 0.351306 0) (-79.7144 0.345138 0) (-79.6365 0.338784 0) (-78.8597 0.387456 0) (-78.939 0.394629 0) (-79.0191 0.401543 0) (-78.2459 0.452515 -7.87361e-20) (-78.1645 0.445104 0) (-78.0841 0.436773 0) (-77.321 0.486289 0) (-77.4025 0.49598 -3.9695e-20) (-77.484 0.503287 0) (-77.5668 0.509109 0) (-78.3266 0.45868 7.87529e-20) (-79.0991 0.407718 0) (-79.1797 0.414966 0) (-79.2615 0.422238 0) (-79.3438 0.429205 0) (-78.5744 0.482952 0) (-78.4907 0.475405 7.84925e-20) (-78.4082 0.466902 -7.84777e-20) (-77.6484 0.519058 0) (-77.7325 0.528867 -3.9702e-20) (-77.8164 0.536279 0) (-77.0825 0.591104 0) (-77.0025 0.579832 3.68902e-19) (-76.9167 0.575893 -3.29027e-19) (-76.8337 0.554593 0) (-76.7467 0.555624 0) (-76.6692 0.544443 3.68831e-19) (-76.5858 0.540646 -3.28964e-19) (-75.896 0.585859 3.52556e-19) (-74.8816 0.638756 -1.50431e-18) (-72.7344 0.819663 0) (-75.0016 0.674642 4.85539e-20) (-75.9857 0.595611 -3.51358e-19) (-76.042 0.60486 0) (-76.1421 0.599123 5.57814e-18) (-75.2189 0.679464 -1.6019e-18) (-76.23 0.623459 3.52619e-19) (-76.3219 0.633227 -3.51424e-19) (-75.3435 0.715813 4.85638e-20) (-76.3808 0.64272 0) (-76.483 0.637157 5.57907e-18) (-77.1717 0.590282 0) (-77.9016 0.542287 0) (-78.658 0.489239 0) (-79.4264 0.4355 0) (-79.5095 0.44292 0) (-79.5939 0.450402 0) (-79.679 0.457624 0) (-78.9133 0.514169 0) (-78.8272 0.506378 0) (-78.7417 0.497686 0) (-77.9858 0.552477 0) (-78.0724 0.562557 -3.97087e-20) (-78.1588 0.570205 0) (-78.2467 0.576518 0) (-78.9996 0.52074 0) (-79.7643 0.464179 0) (-79.8502 0.471881 0) (-79.9374 0.479683 0) (-80.0254 0.487251 0) (-79.2633 0.546735 0) (-79.1743 0.538571 0) (-79.0861 0.529517 0) (-78.3335 0.587095 0) (-78.4229 0.597582 -3.97136e-20) (-78.5122 0.60561 0) (-77.7846 0.665738 0) (-77.6991 0.653824 3.69002e-19) (-77.6081 0.649122 -3.29118e-19) (-77.5199 0.627145 0) (-77.4282 0.62761 0) (-77.3456 0.616091 3.68959e-19) (-77.2572 0.611844 -3.29079e-19) (-76.5734 0.661821 3.5267e-19) (-75.5652 0.720959 -1.60223e-18) (-73.4424 0.917502 0) (-75.6949 0.758152 4.8573e-20) (-76.6678 0.671789 -3.51477e-19) (-76.7293 0.681715 0) (-76.8339 0.676468 5.5798e-18) (-75.9215 0.763933 -1.60253e-18) (-76.9269 0.701625 3.52708e-19) (-77.0241 0.711938 -3.51517e-19) (-76.0566 0.802338 4.85812e-20) (-77.0885 0.722472 0) (-77.1956 0.717699 5.58031e-18) (-77.8789 0.665794 0) (-78.6028 0.612389 0) (-79.3524 0.553727 0) (-80.1136 0.494193 0) (-80.8751 0.434931 0) (-81.6301 0.376497 0) (-82.3749 0.319016 0) (-83.1057 0.262268 0) (-83.8085 0.206026 0) (-84.4346 0.151218 0) (-84.8565 0.0993507 0) (-84.9366 0.101216 0) (-84.5164 0.154049 0) (-84.5991 0.156905 0) (-85.0172 0.103173 0) (-85.0991 0.105149 0) (-84.6827 0.159815 0) (-84.7672 0.162767 0) (-85.1815 0.10721 0) (-85.2652 0.109273 0) (-84.8526 0.165779 0) (-84.9389 0.168853 0) (-85.3494 0.111417 0) (-85.435 0.113577 0) (-85.0262 0.172 0) (-84.4115 0.233302 0) (-84.3226 0.229172 0) (-84.2348 0.225132 0) (-84.1478 0.22118 0) (-84.0617 0.21731 0) (-83.9765 0.2135 0) (-83.8922 0.209743 0) (-83.1906 0.266813 0) (-83.2763 0.271447 0) (-83.3629 0.276142 0) (-82.6358 0.335453 0) (-82.548 0.3299 0) (-82.461 0.324405 0) (-81.7173 0.382731 0) (-81.8054 0.389083 0) (-81.8943 0.395468 0) (-81.984 0.401876 0) (-82.7244 0.341066 0) (-83.4503 0.280904 0) (-83.5386 0.285777 0) (-83.6279 0.290766 0) (-83.718 0.295854 0) (-82.9956 0.358777 0) (-82.9043 0.35276 0) (-82.8139 0.34684 0) (-82.0745 0.408558 0) (-82.1659 0.415402 0) (-82.2583 0.42232 0) (-82.3516 0.429307 0) (-83.0878 0.364893 0) (-83.8091 0.301044 0) (-84.5013 0.237522 0) (-85.1144 0.175218 0) (-85.5212 0.115861 0) (-85.6085 0.118168 0) (-85.2037 0.178496 0) (-85.2939 0.181875 0) (-85.6969 0.120521 0) (-85.7864 0.122923 0) (-85.3852 0.185378 0) (-85.4776 0.189051 -8.06342e-20) (-85.877 0.125369 0) (-85.9689 0.127923 0) (-85.5715 0.192716 8.06548e-20) (-85.6659 0.196463 0) (-86.0616 0.130544 0) (-86.1559 0.133197 0) (-85.7617 0.200372 0) (-85.159 0.270481 0) (-85.0618 0.265346 0) (-84.9657 0.260337 0) (-84.8708 0.25544 0) (-84.7766 0.250822 0) (-84.6838 0.246292 0) (-84.592 0.24185 0) (-83.9012 0.30638 0) (-83.9942 0.311866 0) (-84.0884 0.317488 0) (-83.3705 0.384352 0) (-83.2752 0.377712 0) (-83.181 0.371214 0) (-82.4458 0.436613 0) (-82.541 0.444125 0) (-82.6373 0.45176 0) (-82.7345 0.459535 0) (-83.4668 0.39115 0) (-84.1835 0.323258 0) (-84.28 0.329217 0) (-84.3774 0.335343 0) (-84.4758 0.34166 0) (-83.7623 0.412949 0) (-83.6628 0.405478 0) (-83.5643 0.398213 0) (-82.8331 0.467728 0) (-82.9324 0.476211 0) (-83.0333 0.484753 0) (-82.2922 0.557399 0) (-82.1908 0.547676 0) (-82.0902 0.538049 0) (-81.9909 0.528719 0) (-81.8931 0.520129 0) (-81.7954 0.511563 0) (-81.6994 0.50294 0) (-81.6043 0.494574 0) (-81.5101 0.486833 0) (-81.4167 0.47902 0) (-81.3243 0.471227 0) (-81.2329 0.463586 0) (-81.1422 0.4565 0) (-81.0523 0.449288 0) (-80.9632 0.442051 0) (-80.2024 0.502336 0) (-80.2924 0.510618 0) (-80.3838 0.518603 0) (-79.6251 0.581228 0) (-79.5331 0.572537 0) (-79.4418 0.562974 0) (-78.6925 0.623506 0) (-78.7849 0.634557 -3.97169e-20) (-78.8772 0.643116 0) (-78.9708 0.650526 0) (-79.7174 0.5888 0) (-80.4751 0.526079 0) (-80.5672 0.534811 0) (-80.6605 0.54372 0) (-80.7553 0.552368 0) (-79.9999 0.618359 0) (-79.9045 0.608948 0) (-79.8099 0.598689 0) (-79.0637 0.662374 0) (-79.1593 0.674188 -3.97185e-20) (-79.255 0.683487 0) (-78.5332 0.749581 0) (-78.4413 0.736361 3.69041e-19) (-78.3441 0.73023 -3.29155e-19) (-78.2498 0.706882 0) (-78.1526 0.706121 0) (-78.0641 0.693663 3.6903e-19) (-77.97 0.688353 -3.29144e-19) (-77.2915 0.74353 3.52732e-19) (-76.2884 0.809115 -1.60281e-18) (-74.1884 1.02336 -2.05512e-20) (-76.4294 0.849113 4.85887e-20) (-77.3916 0.754326 -3.51543e-19) (-77.4591 0.765645 0) (-77.5689 0.761534 5.58057e-18) (-76.6669 0.857291 -1.60305e-18) (-77.6681 0.788266 3.52739e-19) (-77.7713 0.799755 -3.51552e-19) (-76.8143 0.899432 4.85949e-20) (-77.8422 0.812124 0) (-77.9549 0.808947 5.58056e-18) (-78.6336 0.751319 0) (-79.352 0.691777 0) (-80.0956 0.626734 0) (-80.85 0.56057 0) (-80.9457 0.570077 0) (-81.0431 0.579834 0) (-81.1411 0.589532 0) (-80.3894 0.659068 -7.87831e-20) (-80.2899 0.648704 0) (-80.1917 0.637513 0) (-79.4484 0.70463 0) (-79.5476 0.717498 -3.97183e-20) (-79.647 0.727829 0) (-79.7477 0.737311 0) (-80.4884 0.668591 7.87983e-20) (-81.2403 0.598655 0) (-81.3399 0.609231 0) (-81.4413 0.620114 0) (-81.5437 0.630916 0) (-80.7945 0.704741 0) (-80.6909 0.693052 7.8528e-20) (-80.589 0.680529 -7.85166e-20) (-79.8481 0.751492 0) (-79.9514 0.765731 -3.97156e-20) (-80.0551 0.777434 0) (-79.3382 0.850765 0) (-79.2384 0.835018 3.69e-19) (-79.1334 0.826255 -3.29129e-19) (-79.0317 0.800382 0) (-78.9278 0.797333 0) (-78.8322 0.783033 3.69033e-19) (-78.7313 0.775756 -3.29149e-19) (-78.0576 0.836915 3.52728e-19) (-77.058 0.909585 -1.60326e-18) (-74.98 1.14564 0) (-77.2125 0.954668 4.86005e-20) (-78.1643 0.849433 -3.51543e-19) (-78.2391 0.863226 0) (-78.3551 0.861333 5.58041e-18) (-77.4635 0.967442 -1.602e-18) (-78.4618 0.891 2.64142e-19) (-78.5728 0.904797 -2.64013e-19) (-77.6257 1.01633 4.86476e-20) (-78.6516 0.920399 0) (-78.7713 0.920143 5.5796e-18) (-79.4461 0.855531 0) (-80.16 0.788481 0) (-80.8983 0.715625 0) (-81.6469 0.641387 0) (-82.3946 0.567155 0) (-83.1348 0.493531 0) (-83.8631 0.420655 0) (-84.5756 0.348177 0) (-85.2576 0.275772 0) (-85.8588 0.204402 0) (-86.2509 0.136021 0) (-86.3475 0.138901 0) (-85.9571 0.208558 0) (-86.0568 0.212896 0) (-86.4456 0.141841 0) (-86.5447 0.144986 0) (-86.1579 0.21734 0) (-86.2606 0.221901 0) (-86.6457 0.148343 0) (-86.7479 0.151892 0) (-86.3645 0.226758 0) (-86.4702 0.231746 0) (-86.8516 0.155404 0) (-86.9571 0.158855 0) (-86.5768 0.237079 0) (-85.9857 0.318747 0) (-85.8773 0.311921 0) (-85.7705 0.305321 0) (-85.6649 0.298934 0) (-85.561 0.292817 0) (-85.4585 0.286931 0) (-85.3574 0.281249 0) (-84.6766 0.354935 0) (-84.779 0.361942 0) (-84.8827 0.369187 0) (-84.1734 0.445542 0) (-84.0686 0.436972 0) (-83.9652 0.428669 0) (-83.2378 0.502779 0) (-83.3421 0.51237 0) (-83.4477 0.522227 0) (-83.5548 0.532394 0) (-84.2795 0.454406 0) (-84.9877 0.376671 0) (-85.0946 0.384427 0) (-85.2023 0.3926 0) (-85.312 0.401067 0) (-84.6068 0.483303 0) (-84.496 0.473356 0) (-84.387 0.463665 0) (-83.663 0.543145 0) (-83.7735 0.554238 0) (-83.8846 0.565741 0) (-83.9975 0.577616 0) (-84.7188 0.493676 0) (-85.4231 0.409881 0) (-86.0957 0.325866 0) (-86.6855 0.24259 0) (-87.0638 0.162511 0) (-87.1727 0.166341 0) (-86.7959 0.248309 0) (-86.9081 0.254257 0) (-87.283 0.170455 0) (-87.3957 0.174712 0) (-87.0222 0.260463 0) (-87.1383 0.266944 0) (-87.5099 0.179263 0) (-87.6263 0.183962 0) (-87.2564 0.273722 0) (-87.3766 0.280857 0) (-87.7451 0.188801 0) (-87.8658 0.193964 0) (-87.4991 0.28833 0) (-86.9184 0.385735 0) (-86.7947 0.375951 0) (-86.6732 0.366618 0) (-86.5538 0.357719 0) (-86.4364 0.349226 0) (-86.321 0.3411 0) (-86.2074 0.333319 0) (-85.536 0.419078 0) (-85.6507 0.428679 0) (-85.7672 0.438693 0) (-85.0657 0.527766 0) (-84.9482 0.515926 0) (-84.8326 0.504557 0) (-84.1121 0.590161 0) (-84.2285 0.603276 0) (-84.3468 0.616901 0) (-84.4668 0.631072 0) (-85.185 0.540123 0) (-85.8857 0.44915 0) (-86.0061 0.460118 0) (-86.1287 0.471622 0) (-86.2535 0.483671 0) (-85.5554 0.580961 0) (-85.4297 0.566714 0) (-85.3063 0.553104 0) (-84.5889 0.646034 0) (-84.713 0.661726 0) (-84.8394 0.678127 0) (-84.1103 0.775826 0) (-83.9833 0.757448 0) (-83.8582 0.739633 0) (-83.7357 0.722523 0) (-83.6153 0.706699 0) (-83.4959 0.691398 0) (-83.3788 0.676423 0) (-83.2636 0.662134 0) (-83.1501 0.6489 0) (-83.038 0.635935 0) (-82.9271 0.623228 0) (-82.8178 0.611013 0) (-82.7104 0.599745 0) (-82.6035 0.588684 0) (-82.4984 0.577705 0) (-81.7511 0.653344 0) (-81.8574 0.665726 0) (-81.9647 0.678204 0) (-81.2185 0.756582 -7.87712e-20) (-81.1099 0.743219 0) (-81.0029 0.729135 0) (-80.2648 0.804372 0) (-80.3728 0.8204 -3.97114e-20) (-80.4812 0.833865 0) (-80.591 0.846919 0) (-81.3269 0.769381 7.87848e-20) (-82.0733 0.690297 0) (-82.1827 0.704082 0) (-82.2944 0.718378 0) (-82.4073 0.732779 0) (-81.6632 0.816748 0) (-81.5492 0.801153 0) (-81.4371 0.784858 0) (-80.701 0.865034 0) (-80.8143 0.883374 0) (-80.9283 0.899179 0) (-80.2155 0.981803 6.58874e-19) (-80.1053 0.961757 0) (-79.9904 0.948625 -3.2901e-19) (-79.879 0.918482 0) (-79.7665 0.911501 0) (-79.6619 0.893916 3.68952e-19) (-79.5523 0.883257 -3.2908e-19) (-78.8826 0.9518 3.52642e-19) (-77.8843 1.03268 -1.60355e-18) (-75.827 1.29685 0) (-78.0563 1.08643 4.86067e-20) (-78.9979 0.967442 -3.51462e-19) (-79.0817 0.985442 0) (-79.2057 0.987331 5.57856e-18) (-78.3236 1.10733 4.61524e-18) (-79.3223 1.02167 3.5256e-19) (-79.4428 1.03966 0) (-78.5062 1.16743 0) (-79.5322 1.06072 -6.99268e-19) (-79.6611 1.0654 5.57707e-18) (-80.3333 0.991664 0) (-81.0437 0.914878 0) (-81.7777 0.831884 0) (-82.5214 0.747125 0) (-82.637 0.763239 0) (-82.7551 0.780041 0) (-82.8748 0.797133 0) (-82.1328 0.887465 0) (-82.0124 0.868994 0) (-81.8936 0.85 0) (-81.1596 0.935868 0) (-81.2792 0.957206 -3.96933e-20) (-81.3997 0.976012 0) (-81.5216 0.995099 0) (-82.2541 0.905689 0) (-82.9958 0.814309 0) (-83.1189 0.833517 0) (-83.2445 0.853575 0) (-83.372 0.87405 0) (-82.6316 0.971942 0) (-82.5033 0.949775 7.84683e-20) (-82.3774 0.927135 -7.84638e-20) (-81.6446 1.01978 0) (-81.7716 1.04497 -3.96783e-20) (-81.8998 1.06769 0) (-81.1895 1.16295 0) (-81.0652 1.13564 3.68608e-19) (-80.9368 1.11523 -3.2878e-19) (-80.8124 1.07798 0) (-80.6884 1.06442 0) (-80.5717 1.04122 3.68759e-19) (-80.4506 1.02491 0) (-79.7839 1.10318 0) (-78.7837 1.19423 -1.55507e-18) (-76.7454 1.49674 0) (-78.9788 1.2624 4.86069e-20) (-79.9105 1.1242 -3.51276e-19) (-80.0064 1.14916 0) (-80.1409 1.15743 5.57506e-18) (-79.2682 1.2968 -1.60364e-18) (-80.271 1.19962 3.52298e-19) (-80.4047 1.22459 -3.51131e-19) (-79.4779 1.37533 4.86039e-20) (-80.5082 1.25457 0) (-80.6494 1.26749 5.57242e-18) (-81.3208 1.18129 0) (-82.0295 1.09117 0) (-82.7609 0.994203 0) (-83.5011 0.894891 0) (-84.2391 0.794953 0) (-84.9679 0.695257 0) (-85.6833 0.595886 0) (-86.3805 0.496308 0) (-87.0445 0.396006 0) (-87.6239 0.296187 0) (-87.9892 0.199376 0) (-88.1147 0.205138 0) (-87.7512 0.304441 0) (-87.881 0.313125 0) (-88.2432 0.211132 0) (-88.374 0.217553 0) (-88.0136 0.322252 0) (-88.1491 0.331857 0) (-88.508 0.224316 0) (-88.6449 0.231441 0) (-88.2875 0.34201 0) (-88.4291 0.352739 0) (-88.7851 0.238925 0) (-88.9287 0.246809 0) (-88.5741 0.364091 0) (-88.0029 0.484929 0) (-87.8568 0.470088 0) (-87.7141 0.456041 0) (-87.5745 0.442743 0) (-87.4379 0.430142 0) (-87.3041 0.418179 0) (-87.173 0.406808 0) (-86.51 0.50961 0) (-86.642 0.523613 0) (-86.7768 0.53834 0) (-86.0818 0.645592 0) (-85.9463 0.628193 0) (-85.8135 0.611623 0) (-85.0988 0.713398 0) (-85.2322 0.732494 0) (-85.3683 0.752491 0) (-85.5071 0.773453 0) (-86.22 0.66388 0) (-86.9143 0.553838 0) (-87.0548 0.570204 0) (-87.1984 0.587491 0) (-87.3453 0.605744 0) (-86.653 0.725209 0) (-86.5054 0.703659 0) (-86.3612 0.683222 0) (-85.6487 0.79572 0) (-85.7934 0.819248 0) (-85.9414 0.843998 0) (-86.0927 0.870065 0) (-86.8039 0.747956 0) (-87.4957 0.625031 0) (-88.1525 0.500619 0) (-88.7227 0.376099 0) (-89.0758 0.255058 0) (-89.227 0.263725 0) (-88.875 0.388836 0) (-89.0312 0.402325 0) (-89.3817 0.273064 0) (-89.5411 0.282919 0) (-89.1917 0.41664 0) (-89.3567 0.431832 0) (-89.7046 0.293501 0) (-89.8733 0.304682 0) (-89.5265 0.447992 0) (-89.7013 0.465194 0) (-90.0467 0.316737 0) (-90.2258 0.329579 0) (-89.8815 0.483532 0) (-89.3175 0.640965 0) (-89.1366 0.617004 0) (-88.961 0.594519 0) (-88.7904 0.573403 0) (-88.6245 0.553556 0) (-88.4631 0.534861 0) (-88.3058 0.51724 0) (-87.6497 0.64547 0) (-87.8077 0.667142 0) (-87.9698 0.690119 0) (-87.2794 0.824794 0) (-87.1169 0.79769 0) (-86.9584 0.772094 0) (-86.2475 0.897822 0) (-86.4062 0.927252 0) (-86.5689 0.958349 0) (-86.7358 0.991257 0) (-87.4462 0.85353 0) (-88.1363 0.714501 0) (-88.3074 0.740444 0) (-88.4834 0.768066 0) (-88.6647 0.797479 0) (-87.9751 0.951362 0) (-87.7937 0.916711 0) (-87.6175 0.884132 0) (-86.9071 1.0264 0) (-87.0833 1.06379 0) (-87.2646 1.10349 0) (-86.538 1.25478 0) (-86.357 1.2102 0) (-86.1811 1.16808 0) (-86.0101 1.12844 0) (-85.8433 1.09159 0) (-85.6805 1.05662 0) (-85.5217 1.0234 0) (-85.3669 0.992032 0) (-85.2154 0.962831 0) (-85.0671 0.934966 0) (-84.922 0.908369 0) (-84.7801 0.883154 0) (-84.641 0.859673 0) (-84.5044 0.837141 0) (-84.3704 0.815526 0) (-83.6326 0.917987 0) (-83.7671 0.942177 0) (-83.9042 0.967166 0) (-83.1651 1.07417 -7.86962e-20) (-83.0273 1.04724 7.84165e-20) (-82.8924 1.02004 0) (-82.1609 1.12063 0) (-82.2967 1.15084 -3.96593e-20) (-82.434 1.17865 0) (-82.5731 1.20782 0) (-83.3041 1.10171 0) (-84.0435 0.99288 0) (-84.1854 1.02115 0) (-84.3308 1.05086 0) (-84.4794 1.08172 0) (-83.7403 1.1997 0) (-83.5915 1.16634 0) (-83.4459 1.1332 0) (-82.7146 1.24349 0) (-82.8606 1.28024 3.96948e-20) (-83.0094 1.31461 -7.96623e-20) (-82.2991 1.42793 0) (-82.1547 1.3883 3.68153e-19) (-82.0071 1.35567 -3.28388e-19) (-81.8642 1.30657 0) (-81.7242 1.28206 0) (-81.5907 1.24943 3.68411e-19) (-81.4536 1.22371 -3.28609e-19) (-80.7882 1.31536 3.52105e-19) (-79.7813 1.41958 -1.60354e-18) (-77.7592 1.77653 0) (-80.0083 1.51144 4.85984e-20) (-80.9305 1.34546 -3.50943e-19) (-81.043 1.38191 0) (-81.1922 1.40082 5.56902e-18) (-80.3282 1.56841 -1.60335e-18) (-81.3413 1.45603 3.51859e-19) (-81.4938 1.49284 -3.50698e-19) (-80.576 1.67736 -6.22505e-18) (-81.6172 1.53768 0) (-81.776 1.56442 5.56472e-18) (-82.4497 1.46048 0) (-83.1598 1.35128 0) (-83.8914 1.23417 0) (-84.6308 1.11374 0) (-84.7854 1.14882 0) (-84.9442 1.18584 0) (-85.1071 1.22451 0) (-84.3671 1.35604 0) (-84.2045 1.31424 0) (-84.0456 1.27313 0) (-83.3135 1.39514 0) (-83.4725 1.44052 3.96625e-20) (-83.6349 1.48373 -7.95955e-20) (-83.7991 1.53026 0) (-84.5327 1.39966 0) (-85.2734 1.26496 0) (-85.4438 1.30916 0) (-85.6193 1.35598 0) (-85.7998 1.40519 0) (-85.0572 1.55348 0) (-84.8774 1.50035 0) (-84.7023 1.44857 0) (-83.9678 1.58495 0) (-84.1426 1.64182 3.96216e-20) (-84.3218 1.69692 -7.95108e-20) (-83.6063 1.83694 0) (-83.4321 1.77555 3.6743e-19) (-83.2563 1.7216 -3.27756e-19) (-83.0864 1.65209 0) (-82.9229 1.60905 0) (-82.7651 1.56012 3.67833e-19) (-82.6048 1.51835 -3.28109e-19) (-81.9376 1.62923 3.51553e-19) (-80.9153 1.75106 -7.76549e-18) (-78.9031 2.1883 2.13675e-20) (-81.1883 1.88247 6.22364e-18) (-82.1024 1.67491 -3.50396e-19) (-82.2391 1.73078 0) (-82.4094 1.76781 5.55933e-18) (-81.5512 1.97812 -7.7635e-18) (-82.586 1.84529 3.51164e-19) (-82.7659 1.90275 -3.50015e-19) (-81.8543 2.13889 -6.22162e-18) (-82.9187 1.97328 0) (-83.1031 2.02405 5.55256e-18) (-83.7856 1.8941 0) (-84.5032 1.75674 0) (-85.2408 1.60947 0) (-85.9848 1.45704 0) (-86.7239 1.30202 0) (-87.4511 1.14571 0) (-88.162 0.988266 0) (-88.8516 0.828832 0) (-89.5041 0.666521 0) (-90.0674 0.503116 0) (-90.4106 0.343183 0) (-90.602 0.357592 0) (-90.2595 0.524062 0) (-90.4582 0.546462 0) (-90.7995 0.373181 0) (-91.0047 0.389787 0) (-90.6639 0.57046 0) (-90.8771 0.596182 0) (-91.2168 0.407741 0) (-91.4378 0.426918 0) (-91.0984 0.623818 0) (-91.3284 0.653543 0) (-91.667 0.447739 0) (-91.9059 0.470086 0) (-91.5677 0.68557 0) (-91.006 0.904249 0) (-90.7668 0.862554 0) (-90.5369 0.823834 0) (-90.3155 0.787828 0) (-90.102 0.754308 0) (-89.8959 0.723033 0) (-89.6968 0.693827 0) (-89.0444 0.862333 0) (-89.2437 0.898159 0) (-89.4497 0.936491 0) (-88.7593 1.11499 0) (-88.5536 1.0699 0) (-88.3547 1.02772 0) (-87.6433 1.19093 0) (-87.8417 1.23925 0) (-88.0466 1.2908 0) (-88.2584 1.3459 0) (-88.972 1.16324 0) (-89.663 0.977557 0) (-89.8841 1.02165 0) (-90.1135 1.06906 0) (-90.3519 1.12006 0) (-89.6579 1.3306 0) (-89.4207 1.27076 0) (-89.1922 1.21507 0) (-88.4774 1.40516 0) (-88.7044 1.46879 0) (-88.94 1.53704 0) (-89.1844 1.6104 0) (-89.9043 1.39502 0) (-90.5999 1.17501 0) (-91.255 0.949206 0) (-91.8171 0.72015 0) (-92.1555 0.494043 0) (-92.4154 0.520162 0) (-92.0774 0.757519 0) (-92.3494 0.798001 0) (-92.688 0.54832 0) (-92.9728 0.579054 0) (-92.6342 0.841901 0) (-92.9328 0.889629 0) (-93.2725 0.612308 0) (-93.5868 0.648766 0) (-93.2464 0.941637 0) (-93.5764 0.998463 0) (-93.9187 0.688426 0) (-94.268 0.732106 0) (-93.9243 1.06068 0) (-93.3504 1.3907 0) (-93.0056 1.31025 0) (-92.678 1.23668 0) (-92.3664 1.16927 0) (-92.0694 1.10736 0) (-91.7858 1.05036 0) (-91.5146 0.997781 0) (-90.8583 1.23436 0) (-91.1278 1.29856 0) (-91.4095 1.36808 0) (-90.7071 1.62108 0) (-90.4281 1.53977 0) (-90.1608 1.46458 0) (-89.4384 1.68969 0) (-89.7029 1.77531 0) (-89.9786 1.86771 0) (-90.2661 1.96768 0) (-90.9985 1.7092 0) (-91.7041 1.44352 0) (-92.0128 1.52558 0) (-92.3368 1.61503 0) (-92.6774 1.71271 0) (-91.9583 2.02291 0) (-91.623 1.90926 0) (-91.3034 1.80498 0) (-90.5663 2.07634 0) (-90.8805 2.19443 0) (-91.2096 2.32284 0) (-90.4367 2.61401 0) (-90.1147 2.47203 0) (-89.8066 2.34102 0) (-89.5118 2.22023 0) (-89.229 2.10926 0) (-88.9572 2.00645 0) (-88.696 1.91091 0) (-88.4451 1.82229 0) (-88.2033 1.74052 0) (-87.9698 1.66428 0) (-87.7445 1.593 0) (-87.5271 1.52652 0) (-87.3168 1.46495 0) (-87.1128 1.4072 0) (-86.9153 1.3529 0) (-86.175 1.51359 0) (-86.3715 1.57375 0) (-86.5743 1.63736 0) (-85.8264 1.80653 0) (-85.6251 1.73798 0) (-85.4296 1.67179 0) (-84.6906 1.82593 0) (-84.8851 1.89819 3.95697e-20) (-85.0848 1.96941 -7.94035e-20) (-85.2876 2.04742 0) (-86.0326 1.87947 0) (-86.7828 1.70489 0) (-86.9981 1.77849 0) (-87.2213 1.8572 0) (-87.4524 1.94091 0) (-86.6949 2.13647 0) (-86.4664 2.04645 0) (-86.2454 1.96024 0) (-85.498 2.13634 0) (-85.717 2.23001 3.95037e-20) (-85.9428 2.32357 -7.92676e-20) (-85.2098 2.50336 0) (-84.9907 2.40199 3.66259e-19) (-84.7724 2.30961 -3.26754e-19) (-84.5617 2.20406 0) (-84.3628 2.12793 0) (-84.1688 2.04968 3.66921e-19) (-83.9739 1.97916 -3.27313e-19) (-83.2981 2.11847 3.50675e-19) (-82.2457 2.26357 -7.7608e-18) (-80.2291 2.82152 4.20658e-20) (-82.5853 2.46328 6.21896e-18) (-83.4963 2.19196 -3.49536e-19) (-83.6688 2.28215 0) (-83.8707 2.35122 5.54409e-18) (-83.011 2.62685 -7.75722e-18) (-84.0886 2.46787 3.50063e-19) (-84.3089 2.56236 -3.48918e-19) (-83.394 2.87943 -6.21544e-18) (-84.5045 2.67925 0) (-84.7271 2.77387 5.53332e-18) (-85.4327 2.60605 0) (-86.1721 2.42649 0) (-86.9296 2.23292 0) (-87.691 2.03039 0) (-87.9383 2.12806 0) (-88.1957 2.2331 0) (-88.4633 2.34552 0) (-87.689 2.57439 0) (-87.4262 2.45392 0) (-87.1728 2.33951 0) (-86.4113 2.54297 0) (-86.6609 2.66656 3.94198e-20) (-86.919 2.79173 -7.9095e-20) (-87.1818 2.92984 0) (-87.96 2.70433 0) (-88.7406 2.46648 0) (-89.0291 2.59878 0) (-89.3305 2.74189 0) (-89.6448 2.89608 0) (-88.8421 3.16653 0) (-88.5361 3.00231 0) (-88.2417 2.84765 0) (-87.4569 3.085 0) (-87.7443 3.25071 3.93126e-20) (-88.0424 3.42072 -7.88749e-20) (-87.2613 3.65948 0) (-86.9745 3.47947 3.64373e-19) (-86.6925 3.31267 -3.25161e-19) (-86.4204 3.13777 0) (-86.1678 2.99848 0) (-85.918 2.86435 3.65426e-19) (-85.6709 2.74081 -3.2605e-19) (-84.9728 2.92189 3.49293e-19) (-83.8596 3.09487 -1.5524e-18) (-81.7969 3.83386 0) (-84.2946 3.4191 0) (-85.2204 3.04622 -3.48143e-19) (-85.4448 3.2002 0) (-85.6931 3.32953 5.51953e-18) (-84.8083 3.70522 -1.55121e-18) (-85.9719 3.52046 3.48326e-19) (-86.2514 3.6857 -3.47165e-19) (-85.3025 4.12635 0) (-86.5096 3.89079 0) (-86.7877 4.06813 5.50232e-18) (-87.5492 3.84964 0) (-88.3458 3.60868 0) (-89.1584 3.34475 0) (-89.9716 3.06318 0) (-90.7731 2.76839 0) (-91.5544 2.46287 0) (-92.3106 2.14712 0) (-93.036 1.81967 0) (-93.7142 1.47893 0) (-94.2919 1.129 0) (-94.6385 0.779891 0) (-95.0302 0.832821 0) (-94.681 1.20424 0) (-95.0938 1.28741 0) (-95.4474 0.891151 0) (-95.8907 0.956222 0) (-95.5327 1.37968 0) (-96.0007 1.48246 0) (-96.3653 1.02853 0) (-96.8724 1.10989 0) (-96.5009 1.59743 0) (-97.0371 1.72669 0) (-97.4188 1.20123 0) (-98.0062 1.30508 0) (-97.6135 1.87273 0) (-96.9708 2.43102 0) (-96.4102 2.24541 0) (-95.8868 2.08055 0) (-95.3971 1.93347 0) (-94.9377 1.80167 0) (-94.5057 1.68309 0) (-94.0986 1.57598 0) (-93.4142 1.93714 0) (-93.8139 2.06652 0) (-94.2369 2.20944 0) (-93.4845 2.5979 0) (-93.072 2.43301 0) (-92.6813 2.28332 0) (-91.9164 2.61622 0) (-92.297 2.78436 0) (-92.6974 2.96894 0) (-93.119 3.17227 0) (-93.9204 2.78012 0) (-94.6856 2.36785 0) (-95.1622 2.54414 0) (-95.6697 2.74106 0) (-96.2109 2.96188 0) (-95.3902 3.45858 0) (-94.8711 3.20737 0) (-94.3819 2.98231 0) (-93.5634 3.39725 0) (-94.0324 3.64659 0) (-94.5276 3.9234 0) (-95.0505 4.23159 0) (-95.9417 3.7399 0) (-96.7892 3.21059 0) (-97.5728 2.64105 0) (-98.2354 2.03867 0) (-98.6436 1.42311 0) (-99.3344 1.55915 0) (-98.9082 2.2284 0) (-99.6388 2.44687 0) (-100.089 1.71647 0) (-100.916 1.89992 0) (-100.435 2.70035 0) (-101.305 2.99721 0) (-101.827 2.11692 0) (-102.835 2.37756 0) (-102.259 3.3487 0) (-103.306 3.76919 -8.99884e-20) (-103.956 2.69343 1.06392e-20) (-105.205 3.0858 -2.13801e-20) (-104.453 4.2766 2.40532e-19) (-103.379 5.33794 7.87567e-20) (-102.344 4.75206 0) (-101.383 4.25562 0) (-100.495 3.83198 0) (-99.6766 3.46801 0) (-98.9204 3.15343 0) (-98.221 2.87999 0) (-97.4079 3.4919 0) (-98.0709 3.81127 0) (-98.7819 4.17508 0) (-97.8149 4.8143 0) (-97.1519 4.41225 0) (-96.5281 4.05605 0) (-95.6023 4.57598 0) (-96.1846 4.96125 0) (-96.7978 5.39222 0) (-97.4412 5.87395 0) (-98.5181 5.26875 0) (-99.5444 4.59093 0) (-100.36 5.0678 0) (-101.23 5.61598 0) (-102.149 6.24681 0) (-100.852 7.01393 0) (-100.041 6.36251 0) (-99.2612 5.78265 0) (-98.1128 6.41138 0) (-98.8082 7.00737 0) (-99.5186 7.66215 0) (-98.163 8.21131 0) (-97.5438 7.5649 0) (-96.9281 6.96404 0) (-96.3259 6.41351 0) (-95.7418 5.91429 0) (-95.1787 5.46288 0) (-94.6389 5.05555 0) (-94.1231 4.68875 0) (-93.6307 4.35887 0) (-93.1609 4.06083 0) (-92.7133 3.79085 0) (-92.2875 3.54613 0) (-91.8817 3.32442 0) (-91.4944 3.12231 0) (-91.1251 2.93746 0) (-90.3128 3.24663 0) (-90.6699 3.44655 0) (-91.0431 3.66375 0) (-90.1911 3.98407 0) (-89.8324 3.75509 0) (-89.4879 3.54142 0) (-88.664 3.81883 0) (-88.9963 4.0453 3.91752e-20) (-89.3411 4.28075 -7.85934e-20) (-89.6915 4.54117 0) (-90.5619 4.23407 0) (-91.432 3.90096 0) (-91.8382 4.16271 0) (-92.2632 4.45014 0) (-92.7069 4.76517 0) (-91.7679 5.13944 0) (-91.3503 4.81272 0) (-90.9478 4.51045 0) (-90.0579 4.83139 0) (-90.4388 5.14656 3.89986e-20) (-90.8318 5.47807 -7.82334e-20) (-89.9188 5.78333 0) (-89.5514 5.44301 3.61351e-19) (-89.1898 5.12748 -3.22606e-19) (-88.8373 4.81711 0) (-88.5103 4.55483 0) (-88.1821 4.30867 3.63038e-19) (-87.8604 4.08041 -3.24032e-19) (-87.1035 4.31855 3.47109e-19) (-85.868 4.5096 -7.7391e-18) (-83.6471 5.4943 2.19276e-20) (-86.4234 5.06194 6.19805e-18) (-87.417 4.54095 -3.45936e-19) (-87.7116 4.81762 0) (-88.0212 5.06124 5.48063e-18) (-87.0377 5.57437 -7.7296e-18) (-88.3744 5.3948 3.45578e-19) (-88.7193 5.69643 -3.44402e-19) (-87.6414 6.30212 4.82846e-20) (-89.0447 6.07128 0) (-89.3785 6.40383 5.45375e-18) (-90.2801 6.14637 0) (-91.2279 5.8438 0) (-92.1972 5.4977 0) (-93.1679 5.11158 0) (-93.647 5.49532 0) (-94.1444 5.91831 0) (-94.6582 6.38261 0) (-93.5637 6.79774 -7.69249e-20) (-93.0966 6.32862 7.67172e-20) (-92.64 5.89399 0) (-91.6368 6.24978 0) (-92.0561 6.6912 -3.87493e-20) (-92.4795 7.15683 0) (-92.8961 7.66216 0) (-94.0333 7.30734 0) (-95.1843 6.89099 0) (-95.72 7.44664 0) (-96.2615 8.04485 0) (-96.7975 8.67624 0) (-95.4376 9.0626 0) (-94.9775 8.45258 0) (-94.5058 7.86194 0) (-93.3106 8.21268 0) (-93.7184 8.79285 3.85023e-20) (-94.1135 9.37721 -7.73588e-20) (-92.8594 9.63375 0) (-92.5244 9.06291 3.56791e-19) (-92.1676 8.50895 -3.18645e-19) (-91.798 7.95647 0) (-91.4324 7.46647 0) (-91.0493 7.00148 3.59252e-19) (-90.6632 6.56773 -3.20818e-19) (-89.7553 6.84953 3.43667e-19) (-88.285 6.97879 -1.59305e-18) (-85.6376 8.16184 -2.05292e-20) (-88.8877 7.92054 4.81924e-20) (-90.1132 7.25435 -3.425e-19) (-90.4409 7.75282 0) (-90.7689 8.19065 5.4212e-18) (-89.499 8.77741 -1.58998e-18) (-91.1224 8.76153 3.41352e-19) (-91.4416 9.26665 -3.40284e-19) (-89.9961 9.9174 -6.1662e-18) (-91.7057 9.87194 0) (-91.9646 10.3902 5.40093e-18) (-93.1582 10.2219 0) (-94.4858 9.99094 0) (-95.8826 9.69512 0) (-97.3147 9.33218 0) (-98.7659 8.8973 0) (-100.227 8.37418 0) (-101.678 7.74101 0) (-103.109 6.97212 0) (-104.484 6.03272 -7.87351e-20) (-105.71 4.89819 -1.602e-19) (-106.602 3.58656 0) (-108.16 4.23975 0) (-107.071 5.67047 0) (-108.517 6.64393 -3.58484e-19) (-109.891 5.12454 -6.39434e-19) (-111.773 6.36696 1.69262e-19) (-109.992 7.88176 1.59055e-19) (-111.394 9.45641 0) (-113.685 8.15915 6.51497e-19) (-115.244 10.7029 1.3346e-18) (-112.572 11.4767 1.60636e-19) (-113.367 13.8836 8.213e-20) (-116.114 13.629 0) (-118.778 13.4023 0) (-119.032 16.9744 0) (-116.391 16.6687 -8.89297e-20) (-113.711 16.49 8.2625e-20) (-110.983 16.4547 8.11198e-20) (-110.641 14.2306 -8.06929e-20) (-109.981 12.1756 -4.7751e-19) (-109.063 10.4105 0) (-107.984 8.99534 1.57319e-19) (-106.828 7.83666 -1.56952e-19) (-105.644 6.85704 0) (-104.086 7.80227 0) (-105.046 8.74344 1.47714e-19) (-105.971 9.83041 -1.58226e-19) (-104.031 10.4739 -9.91327e-21) (-103.285 9.43841 9.84988e-21) (-102.495 8.54699 0) (-100.911 9.14174 0) (-101.568 9.99571 0) (-102.184 10.9884 9.85327e-21) (-102.749 12.1365 0) (-104.717 11.7062 3.98741e-20) (-106.819 11.1489 -3.98504e-20) (-107.547 12.7268 2.0034e-19) (-108.087 14.5174 1.21275e-19) (-108.389 16.4502 -8.10564e-20) (-105.992 16.4417 -1.00964e-20) (-105.744 14.7275 -4.02332e-20) (-105.305 13.1332 -4.00858e-20) (-103.227 13.4404 0) (-103.58 14.8813 0) (-103.78 16.4223 9.9877e-21) (-103.808 18.0223 0) (-106.03 18.2199 -1.00759e-20) (-108.425 18.4499 1.01532e-20) (-110.988 18.7353 0) (-113.629 19.1288 1.88555e-22) (-116.182 19.6929 2.63839e-19) (-118.741 20.4459 4.01783e-19) (-117.977 23.6115 3.83016e-19) (-116.874 26.5069 1.4237e-18) (-115.457 29.1548 -2.81756e-22) (-113.414 27.6375 0) (-114.621 25.219 0) (-115.561 22.5648 -3.38904e-19) (-113.176 21.6876 -1.62823e-19) (-112.419 24.1001 -3.2152e-19) (-111.415 26.3301 3.16773e-19) (-110.236 28.3425 -2.36547e-19) (-112.054 29.7855 5.46657e-19) (-113.923 31.4004 -1.11194e-18) (-112.154 33.3575 -3.17663e-19) (-113.836 35.104 0) (-111.65 36.8672 -1.64657e-19) (-109.682 38.262 6.31576e-19) (-108.559 36.4536 0) (-110.319 35.0306 1.55909e-19) (-108.968 33.3224 0) (-110.558 31.6853 -3.10107e-19) (-108.938 30.1667 -2.3479e-19) (-107.55 31.7868 3.14531e-19) (-106.114 33.2137 0) (-107.372 34.7491 3.10067e-19) (-105.815 36.0084 -3.12183e-19) (-106.863 37.6832 -6.18731e-19) (-107.804 39.4574 1.40253e-21) (-108.523 41.3253 -3.38568e-19) (-106.626 42.2087 3.26231e-19) (-104.849 42.9463 -3.21238e-19) (-105.026 44.5889 3.54042e-19) (-103.433 45.214 3.35647e-19) (-103.204 43.6006 -3.17742e-19) (-101.652 44.1465 0) (-101.857 45.6711 -4.92076e-19) (-101.723 47.0678 1.57737e-18) (-100.347 47.3998 -3.38887e-19) (-99.0364 47.7221 -2.05858e-20) (-98.8076 48.9942 3.84325e-19) (-97.5774 49.228 3.386e-19) (-97.7291 47.9593 -3.22028e-19) (-97.6804 46.6404 3.17174e-19) (-99.0087 46.3707 0) (-100.386 46.039 6.43403e-19) (-100.188 44.5976 0) (-98.8023 44.9843 3.17631e-19) (-97.474 45.3084 2.77907e-22) (-96.1995 45.5698 -2.39213e-19) (-96.4022 46.8445 -1.591e-19) (-96.4626 48.1105 0) (-96.3465 49.3246 1.10015e-20) (-95.9459 50.398 -1.11289e-20) (-94.9363 50.4988 1.66795e-19) (-93.8975 50.578 -3.62836e-19) (-93.4748 51.6237 -1.69673e-18) (-92.4807 51.6016 -3.26422e-19) (-92.8235 50.5577 -6.31401e-19) (-91.7778 50.4797 1.24896e-18) (-91.5044 51.4882 -3.15421e-19) (-90.9653 52.3753 -3.34706e-19) (-90.1888 52.2958 -6.29912e-19) (-89.353 52.1734 6.22433e-19) (-88.8356 53.0088 6.54901e-19) (-88.0524 52.8181 5.72029e-22) (-87.347 53.4731 1.22277e-18) (-86.742 53.3081 0) (-86.1131 53.1332 -6.3372e-19) (-85.4983 53.7574 -1.67619e-19) (-84.9403 53.5912 -6.50887e-19) (-84.23 54.08 0) (-83.7484 53.9323 -6.5335e-19) (-84.3198 53.3696 6.35828e-19) (-84.7118 52.6931 6.31985e-19) (-85.4233 52.9252 1.26263e-18) (-85.7433 52.1761 -6.31706e-19) (-86.5161 52.393 6.27744e-19) (-87.279 52.6018 -1.2569e-18) (-87.6148 51.7836 6.27322e-19) (-88.4758 51.9887 6.24042e-19) (-88.7119 51.0787 -6.27098e-19) (-89.6396 51.2386 0) (-90.5681 51.3701 -6.20734e-19) (-90.7698 50.3792 0) (-89.7878 50.2662 0) (-88.8255 50.137 3.17124e-19) (-88.8449 49.1778 -1.23313e-22) (-89.8273 49.2705 -4.77594e-19) (-90.8387 49.3498 4.74319e-19) (-91.8827 49.4127 -3.15874e-19) (-92.9616 49.4515 9.43167e-19) (-94.069 49.4477 -3.16976e-19) (-95.1884 49.394 -6.39713e-19) (-95.255 48.2142 -3.1689e-19) (-94.0932 48.2879 4.76011e-19) (-92.9635 48.3252 -3.18001e-19) (-92.8569 47.1924 -3.98119e-20) (-93.9969 47.1142 3.85541e-23) (-95.1767 46.9992 -1.59192e-19) (-94.9744 45.7759 0) (-93.7955 45.9385 0) (-92.6562 46.0609 3.9479e-20) (-91.5551 46.1474 0) (-91.7545 47.2388 -7.94717e-20) (-91.8674 48.3281 3.18163e-19) (-90.8065 48.3066 1.58814e-19) (-89.7808 48.2662 0) (-88.7875 48.2095 0) (-88.6595 47.232 0) (-89.6571 47.2541 -9.85076e-21) (-90.6882 47.258 6.91478e-20) (-90.4903 46.2045 9.76803e-21) (-89.4599 46.2373 9.70228e-21) (-88.4622 46.2497 0) (-87.4962 46.2452 0) (-87.6937 47.1948 0) (-87.8261 48.139 0) (-87.8929 49.0742 2.3861e-19) (-87.8892 49.9976 -3.98543e-19) (-87.8037 50.9039 -3.1671e-19) (-86.9199 50.7276 4.78005e-19) (-86.7743 51.5803 -6.3264e-19) (-85.9472 51.3785 3.19187e-19) (-85.1364 51.1752 8.73508e-24) (-84.9722 51.9526 -1.59927e-19) (-84.2125 51.7278 3.21353e-19) (-84.0022 52.4543 0) (-83.6882 53.1346 9.40016e-23) (-83.2381 53.7335 6.37965e-19) (-82.5879 54.206 8.42671e-19) (-82.1769 54.0467 -6.50814e-19) (-81.4318 54.4087 0) (-81.1011 54.3159 -6.50696e-19) (-80.6722 54.1235 6.34578e-19) (-80.0092 54.518 -3.33e-19) (-79.6558 54.319 0) (-78.832 54.581 0) (-78.6474 54.4604 0) (-78.3472 54.2774 3.24425e-22) (-77.7094 54.5741 -3.23587e-19) (-77.4371 54.3996 1.28485e-18) (-76.712 54.6297 -3.44416e-19) (-76.5186 54.46 -8.4411e-23) (-75.7011 54.5771 1.79243e-18) (-75.631 54.4891 6.52027e-19) (-76.2611 54.2567 -6.38724e-19) (-75.9496 54.0268 -3.75784e-22) (-75.4448 54.3287 -1.27717e-18) (-74.7975 54.5066 6.58557e-19) (-74.6331 54.3642 0) (-73.9051 54.4918 3.46978e-19) (-73.8053 54.3497 3.31297e-19) (-72.9953 54.382 1.44027e-18) (-72.9995 54.3089 -4.09103e-19) (-72.8962 54.1619 1.27451e-18) (-72.2342 54.2583 3.27796e-19) (-72.1556 54.1339 0) (-71.4249 54.1873 1.72197e-19) (-71.3935 54.0573 0) (-70.5726 54.0282 3.54564e-19) (-70.6433 53.9491 8.08479e-19) (-71.2962 53.8732 6.49914e-23) (-71.1452 53.6556 6.3534e-19) (-70.6177 53.8014 6.32662e-19) (-69.9398 53.8213 -1.93302e-18) (-69.9558 53.7046 1.91091e-18) (-69.2456 53.6761 -1.33647e-18) (-69.2993 53.5829 -6.52712e-19) (-68.5622 53.5269 -3.50384e-19) (-68.6531 53.4396 0) (-67.8754 53.3142 0) (-68.0172 53.2964 0) (-68.0467 53.1806 6.35265e-19) (-67.379 53.1378 -1.2972e-18) (-67.4417 53.0403 1.27902e-18) (-66.7142 52.9642 -1.3367e-18) (-66.8314 52.8766 -9.90625e-24) (-66.0725 52.766 -1.04927e-18) (-66.2289 52.6859 0) (-65.4509 52.5054 -2.06868e-22) (-65.6356 52.4799 1.30117e-18) (-66.2818 52.5412 -6.42829e-19) (-66.8014 52.5054 1.29804e-22) (-66.8489 52.7136 6.43494e-19) (-67.3462 52.6495 0) (-67.4243 52.8682 -2.18446e-23) (-67.8929 52.7738 6.42759e-19) (-67.9975 52.9981 -1.27302e-18) (-68.4411 52.8775 3.22244e-19) (-68.5692 53.1061 -6.39845e-19) (-68.6453 53.2966 0) (-69.1482 53.204 3.21259e-19) (-69.2554 53.4149 0) (-69.7387 53.2924 1.70141e-22) (-69.8781 53.519 6.38082e-19) (-70.3376 53.3627 3.2044e-19) (-70.5072 53.5997 1.17948e-22) (-70.9453 53.4105 3.20267e-19) (-71.3004 53.1672 -9.76661e-19) (-71.5636 53.4365 -6.44023e-19) (-71.7989 53.6929 -9.57026e-19) (-71.9995 53.9314 6.38729e-19) (-72.4656 53.7091 3.20123e-19) (-72.7063 53.955 -6.36315e-19) (-73.1387 53.6947 -3.21005e-19) (-73.4113 53.9433 0) (-73.6368 54.1624 -9.62991e-19) (-74.1261 53.9117 3.20001e-19) (-74.4008 54.153 -6.41264e-19) (-74.8545 53.8578 0) (-75.173 54.1096 -6.35501e-19) (-75.5934 53.7712 1.27979e-18) (-75.9248 53.3794 0) (-76.3424 53.6513 -3.21653e-19) (-76.7382 53.9151 -9.5516e-19) (-77.1057 54.1678 6.36739e-19) (-77.5449 53.7747 -9.53721e-19) (-77.9657 54.0393 -6.30987e-19) (-78.3662 53.5919 -3.18604e-19) (-78.8332 53.8546 6.29876e-19) (-79.2648 54.097 0) (-79.7056 53.6244 -9.49087e-19) (-80.1994 53.8814 6.31494e-19) (-80.5924 53.352 0) (-81.1472 53.6102 2.95242e-22) (-81.6827 53.8466 1.27289e-18) (-82.094 53.2766 3.17476e-19) (-82.6828 53.5138 -1.8993e-18) (-83.0425 52.8929 6.34313e-19) (-83.2962 52.2171 -1.60375e-19) (-82.597 51.9811 0) (-82.3883 52.6481 -3.20803e-19) (-81.7331 52.4004 -1.61046e-19) (-81.488 53.0263 -6.38832e-19) (-80.8774 52.7688 3.21788e-19) (-80.2692 52.5108 3.23157e-19) (-80.0298 53.087 -1.60449e-19) (-79.4632 52.822 3.22113e-19) (-79.193 53.3605 -6.36996e-19) (-78.6676 53.0911 -1.61385e-19) (-78.1378 52.8198 4.05123e-19) (-77.8807 53.3179 9.64801e-19) (-77.3875 53.0414 -1.61785e-19) (-77.1038 53.5012 3.21553e-19) (-76.6497 53.2259 1.621e-19) (-76.1881 52.9493 1.62878e-19) (-76.3982 52.4911 8.11937e-20) (-76.8922 52.7657 -2.43792e-19) (-77.0838 52.278 0) (-77.6087 52.5483 -4.05092e-20) (-77.7796 52.0296 4.02617e-20) (-78.3351 52.2931 -8.09621e-20) (-78.8968 52.5571 -2.07411e-23) (-79.0705 51.9982 2.01728e-20) (-79.666 52.2538 -3.63217e-19) (-79.8152 51.6617 -5.01984e-20) (-80.4442 51.9067 8.07875e-20) (-81.0837 52.1528 0) (-81.2299 51.5131 8.04217e-20) (-81.9073 51.7466 -2.41575e-19) (-82.023 51.0694 -9.00528e-20) (-82.7374 51.2873 8.05258e-20) (-83.4672 51.5061 1.23098e-23) (-83.5721 50.7718 8.00943e-20) (-84.3443 50.9728 -2.4057e-19) (-84.4106 50.1959 -8.96316e-20) (-85.2239 50.3739 8.0142e-20) (-86.06 50.551 -2.40077e-19) (-86.1003 49.7052 -7.96429e-20) (-86.9807 49.8528 0) (-86.9707 48.9621 0) (-86.8956 48.058 0) (-85.9941 47.9685 0) (-86.0773 48.8431 0) (-85.2118 48.7191 -9.78134e-21) (-85.2468 49.554 9.92245e-21) (-84.4185 49.4004 9.84637e-21) (-83.614 49.2448 0) (-83.6198 50.0167 0) (-82.8509 49.8372 0) (-82.82 50.5714 0) (-82.087 50.3716 9.89795e-21) (-82.1029 49.6569 0) (-82.0727 48.9276 0) (-82.8323 49.0871 0) (-82.7661 48.3242 0) (-83.5572 48.459 0) (-84.3721 48.5908 0) (-84.2732 47.7697 0) (-85.1204 47.872 0) (-84.9747 47.0161 0) (-85.8526 47.0848 0) (-86.7586 47.145 0) (-86.5609 46.2265 0) (-85.6547 46.1958 0) (-84.7763 46.1553 0) (-83.9245 46.1066 0) (-84.1236 46.9405 0) (-83.298 46.8588 0) (-83.4514 47.6627 0) (-82.6539 47.5516 0) (-81.8797 47.4371 0) (-81.9979 48.1867 0) (-81.2517 48.0463 0) (-81.3342 48.7661 0) (-81.3748 49.4754 0) (-81.3723 50.1715 0) (-81.3249 50.8516 0) (-80.6431 50.6342 0) (-80.5667 51.2802 0) (-79.9175 51.0482 9.93711e-21) (-79.282 50.8164 0) (-79.1975 51.4171 -1.99826e-20) (-78.5917 51.173 -9.91615e-21) (-78.4842 51.7431 1.00433e-20) (-77.9079 51.4888 0) (-77.3413 51.2349 0) (-77.2319 51.7666 0) (-76.6925 51.5044 0) (-76.5648 52.0085 0) (-76.0522 51.7394 0) (-75.9074 52.2165 0) (-75.7241 52.6719 8.14713e-20) (-75.4949 53.1017 1.14852e-23) (-75.2107 53.4999 0) (-74.8131 53.2226 0) (-74.5084 53.5901 -3.23051e-19) (-74.1433 53.3153 -4.88637e-19) (-73.8184 53.6539 9.68104e-19) (-73.4845 53.3839 3.25182e-19) (-73.7657 53.0355 1.63561e-19) (-73.9967 52.6589 8.15849e-20) (-74.4071 52.9417 -8.1689e-20) (-74.6232 52.54 0) (-75.0599 52.8211 -1.22357e-19) (-75.2604 52.3934 4.0509e-20) (-74.7993 52.1141 0) (-74.342 51.8344 0) (-74.1872 52.2575 0) (-73.7532 51.9739 0) (-73.5849 52.3739 0) (-73.381 52.752 8.18219e-20) (-73.1345 53.1047 -8.19335e-20) (-72.8348 53.4272 2.18448e-22) (-72.5122 53.1483 -3.26233e-19) (-72.1936 53.4431 -3.22835e-19) (-71.9005 53.1675 1.63141e-19) (-71.5922 52.8856 0) (-71.8361 52.5758 0) (-72.1779 52.8638 1.63776e-19) (-72.4094 52.532 0) (-72.7747 52.8201 -4.0864e-20) (-72.9925 52.4652 4.06872e-20) (-73.1735 52.0871 0) (-72.7636 51.7986 0) (-72.603 52.1758 0) (-72.2138 51.8846 0) (-72.0417 52.2411 0) (-71.6729 51.948 -1.00836e-20) (-71.4899 52.2844 1.01908e-20) (-71.2735 52.5988 -8.20535e-20) (-71.0171 52.8882 2.45817e-19) (-70.7099 53.146 0) (-70.4505 52.8695 -3.27443e-19) (-70.1289 53.1034 -6.49172e-19) (-69.8935 52.8311 -1.64051e-19) (-69.5572 53.0419 2.13879e-23) (-69.346 52.7762 2.825e-23) (-68.9949 52.9658 9.73244e-19) (-68.8071 52.7074 1.63642e-19) (-68.5948 52.4337 -2.47039e-19) (-68.2751 52.6231 3.2632e-19) (-68.0822 52.351 1.64453e-19) (-67.7484 52.5216 3.25761e-19) (-67.5754 52.2515 -4.93854e-19) (-67.2257 52.4021 3.2626e-19) (-67.0744 52.1361 -1.64279e-19) (-66.7082 52.2666 -3.2386e-19) (-66.2665 52.3479 0) (-65.7267 52.3596 0) (-65.0358 52.2513 1.28406e-18) (-65.1761 52.1557 6.35687e-19) (-64.4417 52.0127 -1.32178e-18) (-64.639 51.9396 -6.49649e-19) (-63.9166 51.7622 5.12552e-19) (-64.124 51.7159 0) (-63.4075 51.5269 -1.77955e-19) (-63.5988 51.4774 -6.7161e-19) (-62.82 51.2397 -7.28413e-19) (-63.0473 51.2206 -9.8741e-19) (-63.1993 51.1167 -4.34476e-22) (-62.4982 50.9538 0) (-62.6967 50.8743 6.40275e-19) (-61.9604 50.6779 0) (-62.1984 50.6158 0) (-61.4648 50.393 0) (-61.711 50.344 0) (-60.9567 50.1041 -1.78532e-19) (-61.2116 50.0553 -6.9371e-19) (-60.4158 49.7568 1.48041e-18) (-60.6932 49.7489 -1.31499e-18) (-61.3672 49.9256 1.30033e-18) (-61.4621 49.7431 -1.93884e-18) (-60.8894 49.645 1.27966e-18) (-60.166 49.4337 -6.48258e-19) (-60.4069 49.3481 1.92487e-18) (-59.6351 49.1055 -1.66435e-18) (-59.93 49.0348 6.52006e-19) (-59.1644 48.7592 -1.20023e-18) (-59.4713 48.705 3.30926e-19) (-58.6992 48.4097 8.87373e-19) (-59.0058 48.36 -1.00798e-18) (-58.1862 48.0123 -1.45032e-18) (-58.5158 48.0023 -9.84639e-19) (-58.7637 47.8974 1.91152e-18) (-58.0209 47.6391 0) (-58.312 47.5554 0) (-57.5236 47.2693 6.63554e-19) (-57.8664 47.2034 6.4931e-19) (-57.0924 46.8918 -8.52711e-19) (-57.4347 46.8387 -6.59187e-19) (-56.6533 46.5164 4.41354e-19) (-56.9855 46.4582 8.38151e-20) (-56.1411 46.0873 1.71624e-18) (-56.503 46.0564 1.38894e-18) (-57.2262 46.3155 6.47939e-19) (-57.8175 46.4833 4.47028e-23) (-57.6609 46.6915 6.52527e-19) (-58.2277 46.8384 0) (-58.0867 47.0518 -6.46645e-19) (-58.6362 47.1779 1.62726e-18) (-58.5111 47.3947 -6.41635e-19) (-59.0419 47.5014 0) (-58.9338 47.7236 0) (-59.4459 47.8146 0) (-59.3564 48.0427 -6.43365e-19) (-59.2121 48.2282 -3.25065e-19) (-59.7824 48.361 -3.25572e-19) (-59.6626 48.5625 1.95674e-18) (-60.2108 48.6733 -1.36722e-22) (-60.1092 48.8828 -6.47533e-19) (-60.6422 48.9709 6.48461e-19) (-60.5597 49.1864 -6.43641e-19) (-61.073 49.2515 -3.2445e-19) (-61.0117 49.4718 6.40083e-19) (-61.5038 49.5182 6.49245e-19) (-61.5028 49.2615 -6.56687e-23) (-61.4684 48.9809 0) (-61.088 48.9968 0) (-61.0677 48.717 -3.33687e-19) (-60.6737 48.7183 3.30225e-19) (-60.6687 48.4405 1.66996e-19) (-60.2607 48.4254 -3.07228e-23) (-60.2726 48.1521 -6.39609e-23) (-59.8515 48.1225 -9.84385e-19) (-59.8801 47.8564 3.31963e-19) (-59.8761 47.5681 -8.37309e-20) (-59.4898 47.5538 0) (-59.4986 47.2676 1.67e-19) (-59.1002 47.243 0) (-59.1209 46.9577 -1.67063e-19) (-58.709 46.9209 -3.30483e-19) (-58.7432 46.636 -3.34427e-19) (-58.3164 46.5842 -6.82583e-23) (-58.3666 46.3033 5.01798e-19) (-57.9253 46.2373 -6.57755e-19) (-57.4084 46.121 0) (-56.7905 45.9404 -1.27504e-18) (-56.0224 45.6487 1.2875e-18) (-56.355 45.5541 -1.91908e-18) (-55.5432 45.2347 6.61927e-19) (-55.9245 45.1552 -2.59678e-18) (-55.1246 44.8077 1.70148e-19) (-55.5099 44.741 -1.39903e-22) (-54.6985 44.3782 3.98569e-19) (-55.083 44.3154 -1.34311e-18) (-54.2252 43.9061 3.62065e-19) (-54.6212 43.8717 6.57364e-19) (-54.9463 43.7495 2.55772e-18) (-54.1511 43.4213 0) (-54.526 43.3207 -1.28919e-18) (-53.6813 42.9615 0) (-54.1117 42.8809 -2.44866e-23) (-53.2883 42.492 -1.38033e-18) (-53.7137 42.4243 3.34785e-19) (-52.8783 42.024 -1.08e-18) (-53.299 41.9499 3.40931e-19) (-52.4013 41.4914 0) (-52.855 41.4562 -3.34629e-19) (-53.6271 41.8005 -3.29796e-19) (-53.8909 41.6037 6.55147e-19) (-53.229 41.3428 -1.3011e-18) (-52.4116 40.9673 1.32702e-18) (-52.822 40.877 -6.56556e-19) (-51.952 40.4723 2.57323e-19) (-52.409 40.4003 -1.00473e-18) (-51.5319 39.9751 -3.59599e-19) (-51.9908 39.9071 6.83626e-19) (-51.0783 39.4279 0) (-51.5382 39.3843 -6.49444e-19) (-51.9295 39.2591 -8.15907e-24) (-51.0675 38.8594 1.33923e-18) (-51.5075 38.7622 -1.31678e-18) (-50.5784 38.3327 8.76066e-19) (-51.0573 38.2372 -5.01765e-19) (-50.1042 37.7415 1.80432e-19) (-50.5968 37.672 0) (-51.0237 37.5353 0) (-50.1421 37.1141 -1.31672e-18) (-50.6137 37.006 -1.3056e-18) (-49.6781 36.554 0) (-50.1846 36.4471 0) (-49.2105 35.9242 0) (-49.7513 35.8668 9.88241e-19) (-50.2041 35.7367 -2.58898e-18) (-49.3205 35.2923 1.32498e-18) (-49.8077 35.19 -6.55648e-19) (-48.8646 34.7219 -1.74564e-19) (-49.3943 34.6263 7.02038e-23) (-48.4122 34.099 1.09275e-18) (-48.9554 34.0365 -2.00058e-18) (-49.4123 33.8981 -2.29594e-22) (-48.49 33.4355 6.79934e-19) (-48.9956 33.3169 -1.65061e-18) (-47.9645 32.785 1.06099e-18) (-48.5453 32.7092 -1.96917e-18) (-49.4156 33.1385 6.50511e-19) (-50.1104 33.4636 6.56342e-19) (-49.7911 33.7009 1.30494e-18) (-50.4447 33.9956 0) (-50.1548 34.2449 -6.55463e-19) (-49.8089 34.4584 6.57349e-19) (-50.5111 34.7802 6.59299e-19) (-50.1953 35.0111 -1.30943e-18) (-50.8575 35.3023 9.48911e-24) (-50.565 35.5427 1.95409e-18) (-51.1953 35.811 -1.29715e-22) (-50.9224 36.061 -6.52172e-19) (-50.588 36.2742 6.51474e-19) (-51.2808 36.5809 -1.97073e-18) (-50.9816 36.8181 6.5186e-19) (-51.6396 37.0914 6.58145e-19) (-51.3667 37.3376 1.29628e-18) (-51.9913 37.5876 -6.59663e-19) (-51.7388 37.8425 6.52462e-19) (-51.4289 38.0608 6.5375e-19) (-52.1173 38.3444 6.56981e-19) (-51.8453 38.5816 -1.31043e-18) (-52.4913 38.831 -6.60116e-19) (-52.2431 39.0706 1.25564e-22) (-52.8535 39.3 1.32668e-18) (-52.6237 39.546 1.40012e-22) (-52.3391 39.7519 1.58004e-22) (-53.0022 40.021 1.5253e-22) (-52.7445 40.242 6.62329e-19) (-53.377 40.4841 6.60809e-19) (-53.1365 40.7093 6.56986e-19) (-53.7403 40.93 -1.32323e-18) (-53.518 41.1609 1.30618e-18) (-54.0972 41.3656 6.62239e-19) (-54.2559 41.0936 3.35335e-19) (-54.3758 40.795 -6.78466e-19) (-53.9127 40.6617 3.34518e-19) (-54.0457 40.3651 0) (-53.564 40.2182 0) (-53.7119 39.9253 1.6929e-19) (-53.2099 39.7627 -1.00165e-18) (-53.3754 39.4769 3.37238e-19) (-53.507 39.1686 8.52199e-20) (-53.0356 39.0208 -1.00866e-18) (-53.1826 38.7155 -1.03838e-22) (-52.6915 38.5538 6.67144e-19) (-52.8557 38.2525 3.38402e-19) (-52.342 38.075 -6.6513e-19) (-52.5264 37.782 0) (-52.6767 37.4686 8.51215e-20) (-52.1958 37.3023 -3.35568e-19) (-52.3632 36.9942 1.6955e-19) (-51.8638 36.8126 3.34359e-19) (-52.0493 36.512 -3.38104e-19) (-51.53 36.3145 6.64379e-19) (-51.7348 36.0247 0) (-51.9042 35.7153 8.52939e-20) (-51.4186 35.5309 -3.36383e-19) (-51.6043 35.228 1.70049e-19) (-51.0995 35.0289 1.00416e-18) (-51.3027 34.7332 -6.65233e-23) (-50.7751 34.517 6.67174e-19) (-50.9984 34.2309 -6.77485e-19) (-51.1882 33.9271 2.56136e-19) (-50.691 33.7199 -3.35679e-19) (-50.9015 33.4259 3.39653e-19) (-50.3828 33.202 -3.33978e-19) (-49.7721 32.9242 -2.44891e-23) (-49.0358 32.5702 6.48172e-19) (-48.1327 32.0907 -6.65468e-19) (-48.6696 31.9959 -6.62933e-19) (-47.7078 31.4949 7.11628e-19) (-48.2802 31.4057 -6.85083e-19) (-47.2959 30.8279 3.77662e-19) (-47.8613 30.7872 -3.46501e-19) (-48.7261 31.2506 1.33868e-18) (-49.4388 31.611 -1.25886e-22) (-49.0932 31.828 -6.60981e-19) (-49.7602 32.1524 -1.32983e-18) (-49.4355 32.3816 1.30705e-18) (-50.0729 32.6804 -1.65704e-18) (-50.6138 32.9211 6.77399e-19) (-50.8107 32.6229 8.5439e-20) (-50.3253 32.4111 1.13762e-23) (-50.5387 32.1219 1.71006e-19) (-50.0325 31.8933 3.37486e-19) (-50.2649 31.6136 1.70465e-19) (-49.7334 31.3646 3.34896e-19) (-49.1033 31.0547 0) (-48.3448 30.6662 1.32905e-18) (-47.3719 30.1381 -1.40146e-18) (-47.9026 30.0565 -3.29393e-19) (-48.3827 29.9236 -6.49082e-19) (-47.4333 29.4462 -1.01216e-18) (-47.9852 29.3347 -6.63282e-19) (-46.9488 28.7665 -1.78549e-19) (-47.5704 28.7085 -1.99948e-18) (-48.0954 28.5985 1.31856e-18) (-47.1798 28.0917 -1.0409e-18) (-47.7408 28.0078 9.00725e-23) (-46.7198 27.4257 1.00053e-23) (-47.3339 27.4008 6.91354e-19) (-47.8445 27.3049 -8.38873e-19) (-46.8794 26.743 -1.79481e-19) (-47.4283 26.7052 0) (-48.2708 27.1584 0) (-48.6445 26.9865 0) (-47.9252 26.5967 1.31758e-18) (-46.952 26.0474 6.93268e-19) (-47.5457 26.0097 6.57612e-19) (-48.3568 26.4559 -1.30585e-18) (-48.9741 26.7981 9.95282e-19) (-49.4719 27.0734 -6.78189e-19) (-49.213 27.297 6.7334e-19) (-48.92 27.5098 -3.32371e-19) (-48.5863 27.7064 3.32102e-19) (-48.1983 27.8738 6.6817e-19) (-48.8766 28.2417 -3.86953e-23) (-48.5215 28.4368 -6.61508e-19) (-49.1537 28.7686 3.33624e-19) (-48.8263 28.9832 -6.59033e-19) (-48.44 29.1721 1.96557e-18) (-49.1274 29.5228 3.30082e-19) (-48.7863 29.7403 1.1262e-22) (-49.4216 30.0531 3.31595e-19) (-49.1118 30.2842 1.31218e-18) (-48.7539 30.4891 -6.55363e-19) (-49.4261 30.8254 -3.32014e-19) (-49.7068 30.5762 -6.72293e-19) (-49.9511 30.3105 6.78658e-19) (-50.4042 30.5237 -1.71764e-19) (-50.21 30.8166 -3.42538e-19) (-49.9881 31.0976 -6.77912e-19) (-50.4671 31.3194 -2.5775e-19) (-50.6441 31.0147 -8.63015e-20) (-50.8 30.7011 6.46581e-20) (-51.152 30.849 2.15031e-20) (-51.0269 31.1794 0) (-50.8849 31.5029 6.47305e-20) (-50.7236 31.8179 -4.29978e-20) (-51.1269 31.9873 4.30933e-20) (-50.9801 32.3108 1.72204e-19) (-51.3701 32.4668 -2.14936e-20) (-51.236 32.7977 -8.61268e-20) (-51.0815 33.1178 -8.57107e-20) (-51.4924 33.2799 8.60058e-20) (-51.3517 33.6091 0) (-51.7493 33.7585 0) (-51.6222 34.0952 8.60187e-20) (-51.4749 34.4208 -8.56514e-20) (-51.8936 34.5753 8.59552e-20) (-51.7607 34.9082 0) (-52.1656 35.0499 -2.1449e-20) (-52.0459 35.3891 1.71174e-19) (-52.4385 35.5182 0) (-52.3311 35.8627 -8.58269e-20) (-52.2033 36.1946 1.70874e-19) (-52.6165 36.3306 -8.5709e-20) (-52.5017 36.6691 8.5504e-20) (-52.9022 36.7935 -2.13944e-20) (-52.8002 37.1379 0) (-53.1885 37.2498 0) (-53.0989 37.5984 -8.56388e-20) (-52.9897 37.9332 0) (-53.3974 38.0514 -1.06911e-19) (-53.3013 38.391 2.55954e-19) (-53.6954 38.4976 -2.13555e-20) (-53.6116 38.8409 -1.27917e-19) (-53.9929 38.9357 -1.27929e-19) (-53.9207 39.2814 1.7102e-19) (-53.8288 39.6119 -3.40953e-19) (-54.2288 39.7137 0) (-54.1489 40.0477 0) (-54.536 40.1388 -2.1323e-20) (-54.4674 40.4754 0) (-54.8426 40.5559 8.5158e-20) (-54.7843 40.8946 -1.27795e-19) (-54.7036 41.2171 4.23306e-19) (-54.5956 41.5199 -3.3708e-19) (-54.4518 41.7988 0) (-54.2638 42.0502 9.89881e-19) (-54.0248 42.2665 0) (-54.638 42.4924 -3.29924e-19) (-54.4155 42.7164 1.30767e-18) (-55.0126 42.9188 -9.82919e-19) (-54.8065 43.1474 0) (-55.3843 43.3288 6.5354e-19) (-55.1966 43.5626 -6.44466e-19) (-55.7543 43.728 0) (-55.5865 43.9689 -6.47001e-19) (-55.3655 44.1688 1.30344e-18) (-55.9786 44.3745 -1.31007e-18) (-55.7816 44.588 6.53292e-19) (-56.3696 44.7729 3.79567e-23) (-56.187 44.9934 3.94806e-23) (-56.7598 45.1574 9.79346e-19) (-56.5942 45.3832 1.28597e-18) (-57.1484 45.5265 1.2984e-18) (-57.0013 45.7577 -6.40369e-19) (-57.5362 45.8845 -6.52288e-19) (-57.6188 45.6152 -1.3426e-22) (-57.6656 45.3203 3.35254e-19) (-57.246 45.2596 -3.31561e-19) (-57.3054 44.9662 1.67663e-19) (-56.8727 44.8929 -6.63276e-19) (-56.9459 44.6012 -1.67803e-19) (-56.4989 44.5127 -3.31824e-19) (-56.5875 44.2257 5.0273e-19) (-56.1258 44.1228 6.58998e-19) (-56.2312 43.8433 -3.34405e-19) (-56.6458 43.9188 0) (-57.0118 43.963 -1.05853e-19) (-56.9903 44.2899 -8.45624e-20) (-57.3465 44.3232 -2.11488e-20) (-57.3367 44.6526 -1.69024e-19) (-57.6833 44.6745 -2.11064e-20) (-57.6849 45.0054 -1.68663e-19) (-58.0219 45.0169 -2.10682e-20) (-58.0339 45.3491 4.20845e-20) (-58.0259 45.6655 -3.35995e-19) (-57.9923 45.9628 3.32457e-19) (-58.3869 46.002 0) (-58.3836 45.6837 0) (-58.3615 45.3505 -4.20474e-20) (-58.3245 45.0045 2.09565e-20) (-58.2755 44.6475 0) (-57.9945 44.6716 2.10081e-20) (-57.9547 44.3154 0) (-57.666 44.3304 2.10515e-20) (-57.6358 43.975 0) (-57.3396 43.9806 2.10951e-20) (-57.3192 43.6265 0) (-57.0156 43.6225 0) (-56.6793 43.5954 -8.47944e-20) (-56.303 43.5416 1.68684e-19) (-55.8758 43.4549 0) (-55.9607 43.1562 -3.36775e-19) (-55.5205 43.0587 6.64724e-19) (-55.6183 42.7619 8.43906e-19) (-55.1641 42.651 6.68104e-19) (-55.2759 42.3565 3.38054e-19) (-54.8069 42.2294 -1.00299e-18) (-54.9349 41.941 1.68826e-19) (-55.0304 41.6325 -3.39963e-19) (-55.0998 41.3067 1.70467e-19) (-55.1486 40.9656 -6.37294e-20) (-55.4779 41.012 2.11458e-20) (-55.4547 41.3683 0) (-55.4158 41.7122 -8.51358e-20) (-55.3577 42.0424 8.50211e-20) (-55.733 42.1113 -2.1257e-20) (-55.6867 42.4447 0) (-56.0521 42.502 -2.12139e-20) (-56.0171 42.8373 -1.69493e-19) (-56.3724 42.8838 -2.11708e-20) (-56.3481 43.2207 2.11404e-19) (-56.6935 43.2571 2.11128e-20) (-57.0049 43.2701 2.10257e-20) (-56.9822 42.9069 0) (-56.6923 42.9059 2.10662e-20) (-56.6785 42.5436 0) (-56.3808 42.5338 2.11184e-20) (-56.3761 42.1723 0) (-56.0704 42.1533 2.11627e-20) (-56.0751 41.793 5.26275e-21) (-55.7617 41.7646 -5.30188e-21) (-55.7758 41.406 0) (-55.7775 41.0369 0) (-55.7686 40.6585 0) (-55.488 40.6445 0) (-55.1808 40.6112 0) (-55.1993 40.2454 0) (-54.884 40.2035 2.12417e-20) (-54.9112 39.8393 0) (-54.587 39.7885 0) (-54.6235 39.4261 0) (-54.2901 39.3658 0) (-54.3362 39.0055 0) (-54.3695 38.6344 0) (-54.0491 38.5774 2.1274e-20) (-54.0918 38.2084 0) (-53.7621 38.142 2.1322e-20) (-53.8146 37.7755 0) (-53.4753 37.6992 0) (-53.5379 37.3358 0) (-53.5876 36.9628 0) (-53.2619 36.89 2.13207e-20) (-53.3211 36.5206 0) (-52.9865 36.4382 0) (-53.0557 36.0732 0) (-52.7121 35.9807 0) (-52.7917 35.6207 0) (-52.8579 35.2521 0) (-52.529 35.1632 2.13786e-20) (-52.6053 34.7996 0) (-52.2676 34.7004 0) (-52.3546 34.3422 0) (-52.0078 34.232 0) (-52.106 33.8797 0) (-52.1905 33.5201 0) (-51.8593 33.4128 0) (-51.9543 33.0594 0) (-51.6143 32.9416 0) (-51.7199 32.595 2.14193e-20) (-51.8118 32.2414 0) (-51.4871 32.127 0) (-51.5893 31.7801 0) (-51.2559 31.6551 2.15293e-20) (-51.3693 31.3158 0) (-51.4689 30.9708 0) (-51.7562 31.0701 0) (-51.6786 31.4274 0) (-51.9598 31.5177 0) (-51.8914 31.8819 0) (-52.1663 31.9633 0) (-52.1066 32.3337 0) (-52.0363 32.6994 0) (-52.3242 32.7826 0) (-52.2629 33.154 0) (-52.5442 33.2284 0) (-52.4917 33.6051 0) (-52.4288 33.9767 0) (-52.7228 34.0523 0) (-52.6694 34.4289 0) (-52.9565 34.4953 0) (-52.9123 34.8766 0) (-53.1927 34.934 0) (-53.1574 35.3197 0) (-53.1122 35.6999 0) (-53.4047 35.7586 0) (-53.3682 36.143 0) (-53.6537 36.1933 0) (-53.6258 36.5815 0) (-53.9043 36.6238 0) (-53.8844 37.0151 0) (-53.8549 37.3994 0) (-54.1441 37.4433 0) (-54.123 37.8299 0) (-54.4047 37.8656 0) (-54.3919 38.254 0) (-54.6662 38.2816 0) (-54.6616 38.6714 0) (-54.6478 39.0533 0) (-54.9321 39.0818 0) (-54.9267 39.465 0) (-55.2037 39.4853 0) (-55.2064 39.8696 0) (-55.4764 39.8819 0) (-55.487 40.2674 0) (-55.7504 40.2719 0) (-55.7241 39.8781 0) (-55.6906 39.478 0) (-55.4575 39.4891 0) (-55.4313 39.0898 0) (-55.1925 39.0934 0) (-55.1738 38.6948 0) (-54.9287 38.6909 0) (-54.9176 38.2931 0) (-54.8995 37.8889 0) (-54.6627 37.8847 0) (-54.6518 37.4815 0) (-54.4089 37.47 0) (-54.4053 37.0681 0) (-54.1561 37.0495 0) (-54.1598 36.6496 0) (-54.1558 36.2443 2.06774e-20) (-53.9154 36.2264 0) (-53.9184 35.8241 0) (-53.6725 35.7994 0) (-53.6828 35.4008 0) (-53.4314 35.3686 0) (-53.4495 34.9741 0) (-53.46 34.576 0) (-53.2191 34.5437 0) (-53.2377 34.1496 0) (-52.9915 34.1093 0) (-53.0183 33.7192 0) (-52.7666 33.6707 0) (-52.8016 33.2849 0) (-52.8283 32.8953 2.08384e-20) (-52.5873 32.8472 0) (-52.6216 32.4623 0) (-52.3755 32.4066 0) (-52.4176 32.0268 0) (-52.4511 31.6439 0) (-52.2164 31.5892 0) (-52.2575 31.2118 0) (-52.0181 31.1497 0) (-52.0668 30.7784 0) (-51.8229 30.7089 0) (-51.5558 30.6211 0) (-51.2622 30.5127 0) (-50.9375 30.3803 0) (-50.5748 30.2212 1.72542e-19) (-50.1639 30.0305 -3.42567e-19) (-49.6896 29.801 -3.37184e-19) (-49.9228 29.5343 3.40806e-19) (-49.4239 29.2873 -3.35237e-19) (-49.6796 29.0361 -5.09599e-19) (-49.9021 28.7725 8.60136e-20) (-49.433 28.5335 -3.48064e-23) (-49.6761 28.2844 -1.71095e-19) (-49.1813 28.0253 -3.36556e-19) (-49.4471 27.7928 -6.79064e-19) (-49.681 27.5495 2.57268e-19) (-49.8879 27.2986 8.60084e-20) (-50.2449 27.4845 -8.64753e-20) (-50.0778 27.7572 8.6517e-20) (-49.8894 28.0245 1.72181e-19) (-50.2697 28.2168 -1.08152e-19) (-50.0972 28.4984 1.2932e-19) (-50.4635 28.6764 -4.31968e-20) (-50.3055 28.9702 8.64976e-20) (-50.1267 29.2567 -8.60496e-20) (-50.5148 29.4407 -2.15724e-20) (-50.3507 29.7396 1.2904e-19) (-50.7252 29.9109 -4.30999e-20) (-51.0586 30.0537 0) (-51.1651 29.7223 0) (-50.8579 29.5946 2.15392e-20) (-50.9749 29.2734 0) (-50.6597 29.1355 0) (-50.7877 28.8249 0) (-50.9008 28.5101 0) (-50.6036 28.3771 2.15871e-20) (-50.7275 28.0737 0) (-50.4227 27.93 0) (-50.5579 27.6392 0) (-50.6767 27.3452 0) (-50.3923 27.2081 0) (-50.0701 27.0425 -8.64593e-20) (-49.6992 26.8431 6.86435e-19) (-49.2617 26.6004 -6.72452e-19) (-48.7326 26.3032 0) (-48.0628 25.9317 2.76389e-23) (-47.1733 25.4301 4.33214e-19) (-47.7532 25.3933 -3.42022e-19) (-46.7896 24.8192 -7.55373e-19) (-47.4204 24.8462 3.53087e-19) (-47.9372 24.8134 3.43286e-19) (-47.0553 24.2613 3.73217e-19) (-47.6124 24.3021 -1.87966e-23) (-48.094 24.2897 0) (-47.2285 23.7644 -1.48349e-18) (-47.7755 23.8361 3.06695e-19) (-48.231 23.8547 -1.8849e-18) (-47.4145 23.3663 1.85322e-19) (-47.928 23.4782 4.4095e-20) (-48.3391 23.538 -1.37685e-18) (-47.5894 23.1048 7.46909e-19) (-48.0497 23.2753 4.43767e-20) (-48.3822 23.3931 0) (-47.722 23.0575 1.89146e-19) (-48.0658 23.2982 2.24029e-19) (-48.2443 23.4799 -3.49028e-19) (-47.694 23.3346 -1.91001e-19) (-47.8242 23.6616 5.4012e-19) (-47.7187 23.8972 -7.04482e-19) (-47.2727 24.0665 0) (-46.9772 24.4593 0) (-46.3432 24.6748 0) (-45.9081 25.4603 0) (-44.7377 25.7579 5.2941e-19) (-43.0975 25.5817 -1.19333e-18) (-41.92 27.5659 -8.94502e-19) (-39.1006 26.7332 -5.8499e-22) (-36.537 24.743 -6.74281e-19) (-32.1665 27.0266 1.37409e-18) (-30.2506 21.6642 -1.75414e-19) (-31.0444 17.3072 1.76832e-19) (-34.1336 18.3062 0) (-34.8385 21.8598 0) (-38.3434 20.65 0) (-39.5838 22.9641 0) (-41.2694 24.655 -2.41221e-22) (-43.0385 23.1754 2.17199e-22) (-44.2747 24.115 -1.01222e-18) (-45.4198 24.5911 8.51217e-19) (-46.1587 23.6779 -6.79103e-19) (-46.8553 23.9649 6.82397e-19) (-47.3858 24.0154 0) (-47.8066 23.6086 1.70757e-19) (-48.1011 23.6626 -3.41545e-19) (-48.2509 23.6084 6.88505e-19) (-48.6088 23.5181 -6.84076e-19) (-48.6511 23.5206 3.3965e-19) (-48.579 23.4748 0) (-48.9604 23.571 3.39823e-19) (-48.8459 23.5834 0) (-48.641 23.5711 6.80029e-19) (-49.0707 23.7718 -3.3822e-19) (-48.8661 23.8159 6.74299e-19) (-48.5877 23.8439 1.35701e-18) (-49.0671 24.1073 -1.35238e-18) (-48.809 24.1834 1.00916e-18) (-48.486 24.2442 3.37869e-19) (-49.0072 24.5492 -1.01368e-18) (-48.7124 24.6533 6.72677e-19) (-48.3574 24.7419 -1.01657e-18) (-48.9223 25.0777 -6.74947e-19) (-48.6003 25.2054 1.0091e-18) (-48.2163 25.3123 -3.37063e-19) (-48.8306 25.6703 3.35354e-19) (-48.4835 25.8138 -6.62346e-19) (-49.0506 26.1339 3.34282e-19) (-49.511 26.3933 -5.10897e-19) (-49.7249 26.1769 4.15058e-23) (-49.3205 25.9498 6.19135e-23) (-49.5509 25.7546 -1.71561e-19) (-49.1249 25.5119 -5.95269e-23) (-49.3739 25.3412 1.71144e-19) (-49.5858 25.1625 3.4478e-19) (-49.1933 24.9374 -1.69997e-19) (-49.4204 24.7877 3.42898e-19) (-49.6071 24.6297 2.58634e-19) (-49.2494 24.4337 -1.69925e-19) (-49.4437 24.3074 5.14346e-19) (-49.593 24.1702 -8.62145e-20) (-49.2671 24.018 -8.54858e-24) (-49.4126 23.9148 2.16341e-23) (-49.5053 23.7947 8.62905e-20) (-49.2058 23.7094 0) (-49.2742 23.6233 -6.86147e-19) (-49.2779 23.506 4.32769e-19) (-48.9868 23.5235 0) (-48.93 23.4282 0) (-48.7967 23.2728 0) (-48.4609 23.4465 -5.67401e-23) (-48.2144 23.2825 1.72216e-19) (-47.883 23.0009 0) (-47.3837 23.4082 0) (-46.8585 23.0265 -1.72149e-19) (-46.2759 22.4243 3.45948e-19) (-45.3412 23.1022 3.41243e-19) (-44.491 22.193 1.72261e-19) (-43.7678 20.9326 0) (-41.942 21.7104 -3.42732e-19) (-41.0912 19.8522 0) (-40.6418 17.7861 0) (-37.7463 18.0407 -8.82413e-20) (-37.746 15.1971 8.91622e-20) (-34.8815 14.8908 8.95321e-20) (-34.3474 12.7447 0) (-69.3576 -7.92018 0) (-136.514 -53.2102 0) (-165.159 -67.3108 4.17465e-20) (-226.86 -86.4895 0) (-241.826 -94.0441 0) (-280.648 -99.3037 0) (-286.651 -105.903 0) (-253.705 -100.905 0) (-208.009 -87.7901 0) (-188.625 -78.2685 1.02585e-20) (-130.568 -51.026 -1.08669e-20) (-102.074 -32.1629 -4.4311e-20) (-51.6006 -0.0194207 0) (-78.413 -19.8457 5.62497e-21) (-104.569 -38.9201 -5.5336e-21) (-155.814 -66.1846 0) (-177.532 -78.9021 0) (-224.152 -96.4059 0) (-263.389 -107.356 0) (-291.497 -112.029 0) (-295.41 -117.522 0) (-298.478 -122.268 -3.52712e-19) (-300.098 -126.599 -5.64893e-18) (-283.611 -123.89 -5.60032e-18) (-277.471 -118.818 -3.53454e-19) (-271.324 -113.357 0) (-237.483 -104.179 0) (-248.411 -111.195 0) (-256.093 -117.64 0) (-280.427 -131.575 1.40656e-18) (-285.919 -140.018 -6.16423e-18) (-250.267 -132.034 -6.11617e-18) (-231.914 -118.249 2.79503e-18) (-225.951 -107.802 -6.03242e-18) (-211.514 -99.1924 0) (-196.043 -89.7982 0) (-150.97 -69.572 0) (-128.857 -55.201 0) (-87.4763 -28.7526 0) (-65.0372 -11.2924 0) (-45.4138 3.78727 -1.13793e-20) (-37.483 11.2556 -9.05928e-20) (-38.6049 12.2055 0) (-40.617 8.92426 1.13129e-20) (-45.1974 4.16639 0) (-58.1186 -7.11624 0) (-76.6481 -21.5627 0) (-109.283 -45.2402 0) (-129.93 -59.9362 0) (-170.433 -82.0367 -3.6621e-19) (-185.488 -92.8396 -5.77712e-18) (-150.462 -73.8519 -6.29767e-18) (-171.297 -90.2669 1.43827e-18) (-112.777 -49.7757 0) (-95.8674 -36.2611 0) (-71.859 -15.6747 0) (-56.4118 -3.63295 0) (-47.7095 4.00716 0) (-43.9902 7.6987 0) (-42.0181 10.437 0) (-40.9803 13.1425 0) (-40.5971 15.5908 -2.22806e-20) (-43.0353 15.8145 2.22032e-20) (-42.9847 17.6524 -2.20716e-20) (-43.2527 19.388 4.37416e-20) (-44.9467 19.1478 -4.36951e-20) (-45.2316 20.4622 0) (-45.705 21.5706 6.2491e-23) (-46.7127 21.1843 -8.69959e-20) (-47.0868 21.9723 6.53171e-20) (-47.4938 22.5723 0) (-48.0632 22.2583 -8.69318e-20) (-48.3444 22.7074 2.60107e-23) (-48.5963 23.039 8.6648e-20) (-48.9519 22.8554 -8.68781e-20) (-49.1091 23.1342 1.5664e-23) (-49.2209 23.3467 8.65841e-20) (-49.4873 23.277 -8.68494e-20) (-49.5396 23.483 -1.08833e-19) (-49.5468 23.6527 -8.64668e-20) (-49.7888 23.6715 -8.67971e-20) (-49.7639 23.8558 -2.16956e-20) (-49.6993 24.0206 1.13397e-23) (-49.9471 24.101 -8.67522e-20) (-49.8687 24.2876 1.30906e-23) (-49.756 24.4633 9.93623e-24) (-50.023 24.5861 -8.67178e-20) (-49.9081 24.785 1.38517e-23) (-49.763 24.977 1.00668e-23) (-50.0549 25.1288 -8.67113e-20) (-49.9152 25.3432 -8.67665e-20) (-49.7483 25.552 1.73081e-19) (-50.0661 25.7239 0) (-49.909 25.9533 8.6524e-20) (-50.2166 26.1164 -8.65386e-20) (-50.0689 26.3639 1.73175e-19) (-49.8974 26.6064 0) (-50.2296 26.7822 8.64356e-20) (-50.368 26.5181 0) (-50.4864 26.2506 0) (-50.726 26.3603 0) (-50.6319 26.6457 0) (-50.5209 26.9284 0) (-50.7798 27.0486 0) (-50.8676 26.7497 0) (-50.9407 26.4487 0) (-50.9995 26.1457 0) (-50.8041 26.0723 0) (-50.5864 25.9797 0) (-50.3425 25.8648 0) (-50.4478 25.6095 0) (-50.1991 25.49 0) (-50.3091 25.2517 0) (-50.3971 25.0088 0) (-50.1684 24.9092 0) (-50.2567 24.6838 0) (-50.3207 24.4512 0) (-50.1086 24.3793 0) (-50.166 24.163 0) (-50.1964 23.9345 0) (-49.9923 23.9009 2.16968e-20) (-50.006 23.6837 0) (-49.9906 23.4447 0) (-49.7763 23.4625 2.17053e-20) (-49.7302 23.2222 0) (-49.6561 22.9436 0) (-49.396 23.0254 0) (-49.2744 22.7186 0) (-49.1347 22.347 0) (-48.7635 22.4959 0) (-48.5629 22.0441 0) (-48.3751 21.4911 0) (-47.7841 21.6763 2.17488e-20) (-47.5453 20.9561 0) (-47.3901 20.1017 0) (-46.4282 20.2109 0) (-46.2924 19.075 0) (-46.3525 17.8417 0) (-44.8787 17.6913 2.19534e-20) (-45.0454 16.1336 0) (-45.5123 14.5179 0) (-43.4338 13.8597 0) (-44.2685 11.7401 0) (-45.6459 9.5583 0) (-47.5352 11.215 0) (-46.3349 12.8629 0) (-47.9311 13.9005 0) (-47.1418 15.2185 0) (-46.6254 16.5502 0) (-47.8199 16.9788 0) (-47.4943 18.072 0) (-47.3618 19.1297 0) (-48.1979 19.2442 0) (-48.1599 20.0805 0) (-48.2298 20.8346 0) (-48.7872 20.7829 0) (-48.8696 21.3812 0) (-48.9931 21.9027 0) (-49.3582 21.8118 0) (-49.458 22.2438 0) (-49.5618 22.6195 0) (-49.8142 22.5472 0) (-49.8887 22.8814 0) (-49.9498 23.1789 0) (-50.1464 23.1436 0) (-50.1837 23.4284 0) (-50.2015 23.6907 0) (-50.3773 23.693 0) (-50.3796 23.958 0) (-50.3613 24.21 0) (-50.5364 24.2441 0) (-50.51 24.5061 0) (-50.4638 24.7606 0) (-50.6489 24.8197 0) (-50.6005 25.0873 0) (-50.5336 25.3504 0) (-50.7339 25.4285 0) (-50.6687 25.7057 0) (-50.8664 25.7818 0) (-51.0442 25.8405 0) (-51.0751 25.5331 0) (-50.9134 25.4888 0) (-50.9458 25.1929 0) (-50.7824 25.148 0) (-50.8149 24.8636 0) (-50.8318 24.5744 2.11656e-20) (-50.6796 24.5467 0) (-50.6934 24.267 0) (-50.6912 23.9794 0) (-50.544 23.9729 0) (-50.5346 23.6905 0) (-50.5101 23.395 0) (-50.3566 23.4123 0) (-50.3205 23.113 0) (-50.273 22.7926 0) (-50.094 22.8328 0) (-50.0327 22.4929 0) (-49.97 22.1214 0) (-49.7355 22.1724 0) (-49.6635 21.7543 0) (-49.6106 21.2923 0) (-49.2781 21.3214 0) (-49.2355 20.7744 0) (-49.2489 20.1773 0) (-48.7707 20.1143 0) (-48.844 19.3885 0) (-49.0279 18.6254 0) (-48.3711 18.3504 0) (-48.699 17.4271 0) (-49.1908 16.5101 0) (-48.3393 15.8909 0) (-49.0696 14.846 0) (-50.0184 13.8886 0) (-49.0065 12.6632 0) (-50.4196 11.5397 0) (-49.1981 9.66767 0) (-47.7406 7.44369 0) (-51.1141 5.02392 0) (-57.6723 1.02871 -3.97954e-19) (-69.4602 -6.36868 7.17027e-18) (-90.0969 -30.3043 6.60664e-18) (-116.975 -48.7789 -2.62385e-18) (-147.452 -76.2573 -3.88761e-19) (-194.41 -110.512 0) (-253.518 -144.867 1.2638e-18) (-269.614 -156.069 -1.0179e-20) (-305.022 -151.206 -2.52672e-21) (-308.89 -137.761 1.13004e-20) (-293.692 -123.824 -4.15925e-20) (-267.562 -109.967 -4.15569e-20) (-236.242 -94.2117 1.05861e-21) (-203.559 -76.1822 -8.4114e-20) (-183.742 -72.7774 0) (-163.295 -69.0258 -1.04123e-20) (-142.549 -65.1399 1.0346e-20) (-184.256 -84.7276 0) (-203.396 -88.4935 -2.65774e-21) (-220.819 -91.5788 0) (-253.891 -108.184 0) (-238.257 -106.423 1.22182e-20) (-220.513 -104.054 -1.07863e-20) (-201.212 -100.776 -1.33e-21) (-164.111 -80.2308 0) (-122.055 -60.7724 0) (-102.756 -56.324 0) (-84.6112 -51.8035 0) (-68.0943 -47.2127 0) (-105.548 -63.5385 0) (-124.485 -69.386 0) (-144.163 -75.1526 0) (-181.122 -95.5813 0) (-160.996 -89.0913 0) (-141.461 -82.3771 0) (-174.489 -101.691 0) (-193.858 -108.477 0) (-213.665 -115.01 0) (-233.942 -119.764 1.36775e-21) (-252.668 -121.865 -1.33803e-21) (-268.561 -122.931 2.2878e-20) (-282.03 -123.536 2.1229e-20) (-300.57 -139.45 -5.19015e-21) (-289.996 -139.869 5.31386e-21) (-276.608 -138.724 1.36183e-21) (-287.16 -152.743 0) (-296.532 -153.488 0) (-302.574 -152.843 0) (-280.198 -160.701 0) (-284.157 -162.217 0) (-282.471 -162.786 0) (-276.358 -162.489 1.31891e-21) (-274.496 -150.819 0) (-259.564 -136.311 0) (-240.462 -132.465 0) (-222.3 -127.178 0) (-204.551 -121.052 0) (-228.343 -139.844 0) (-243.923 -144.719 0) (-259.264 -148.292 0) (-266.91 -161.675 0) (-256.07 -159.776 0) (-243.94 -156.316 0) (-249.844 -169.452 0) (-257.13 -170.936 0) (-262.105 -170.383 0) (-264.089 -168.347 -2.87384e-23) (-261.229 -165.003 0) (-252.374 -159.586 -1.34717e-21) (-237.644 -151.246 0) (-216.913 -136 0) (-184.894 -107.161 1.26307e-18) (-97.9319 -32.7421 -6.15774e-18) (-73.4231 -8.41218 -1.96625e-18) (-58.8359 3.85733 7.18861e-18) (-54.5356 6.73137 -3.94375e-19) (-51.4989 8.27839 0) (-52.2167 10.5685 0) (-54.1726 9.64601 0) (-56.343 7.99409 0) (-55.5474 10.4681 6.59421e-18) (-54.0094 11.5463 0) (-52.5723 12.2741 0) (-51.1933 13.0235 5.52027e-21) (-51.6322 14.167 -2.72036e-20) (-50.6656 14.8666 -4.82402e-20) (-49.8495 15.6474 5.33013e-21) (-50.3401 16.3549 4.25335e-20) (-49.772 17.0829 0) (-49.3367 17.8482 2.1254e-20) (-49.7842 18.2161 -2.12024e-20) (-49.5112 18.8811 0) (-49.3358 19.5411 0) (-49.7017 19.6854 0) (-49.6165 20.2505 0) (-49.5903 20.7891 2.12023e-20) (-49.8659 20.8123 -6.34119e-20) (-49.8768 21.2797 0) (-49.9148 21.717 0) (-50.1183 21.6897 0) (-50.165 22.082 0) (-50.219 22.4493 2.11603e-20) (-50.3755 22.4105 -2.10995e-20) (-50.4271 22.7562 0) (-50.4733 23.0842 0) (-50.606 23.0544 0) (-50.6453 23.3749 0) (-50.6745 23.6826 2.11299e-20) (-50.7981 23.6684 -6.31841e-20) (-50.8224 23.9778 0) (-50.8341 24.2795 2.1119e-20) (-50.9597 24.282 -2.10448e-20) (-50.9683 24.5903 -2.10596e-20) (-50.9639 24.8937 0) (-51.0976 24.911 0) (-51.0927 25.2235 0) (-51.225 25.2414 4.19282e-20) (-51.221 25.563 2.09644e-20) (-51.2048 25.8834 0) (-51.1759 26.2019 0) (-51.1342 26.5185 0) (-51.0797 26.8333 0) (-51.0121 27.1463 0) (-50.9311 27.4576 0) (-50.8364 27.7669 0) (-51.0865 27.8715 0) (-51.0001 28.1921 0) (-51.2458 28.2888 0) (-51.1678 28.6196 0) (-51.0778 28.9481 0) (-51.3394 29.049 0) (-51.2584 29.3871 0) (-51.5152 29.4797 0) (-51.4428 29.827 0) (-51.3587 30.1717 0) (-51.631 30.2678 0) (-51.6951 29.9117 0) (-51.7488 29.5535 0) (-51.9622 29.6104 0) (-51.9254 29.9783 0) (-51.8791 30.3447 0) (-52.1061 30.4045 2.09158e-20) (-52.1363 30.0286 0) (-52.1575 29.6515 0) (-52.17 29.2749 2.08081e-20) (-51.99 29.2418 -2.08401e-20) (-51.7928 29.1941 0) (-51.5767 29.1303 0) (-51.6283 28.7795 0) (-51.4092 28.7087 0) (-51.4683 28.3665 0) (-51.517 28.0226 2.10221e-20) (-51.3123 27.9559 0) (-51.3675 27.6214 0) (-51.1602 27.5489 0) (-51.2218 27.2246 0) (-51.2713 26.8989 0) (-51.3092 26.5718 0) (-51.4678 26.61 0) (-51.4449 26.9483 2.09625e-20) (-51.4117 27.2854 0) (-51.5841 27.3305 0) (-51.5557 27.6772 2.09663e-20) (-51.7268 27.7178 -2.08895e-20) (-51.7033 28.0733 -2.0914e-20) (-51.6705 28.4271 0) (-51.8546 28.4723 0) (-51.8279 28.8338 2.08874e-20) (-52.0099 28.8737 2.08256e-20) (-52.1756 28.9006 4.16279e-20) (-52.1753 28.5264 7.77047e-24) (-52.0225 28.5049 2.49579e-19) (-52.0274 28.1349 -8.35292e-20) (-51.8729 28.1097 1.28275e-23) (-51.8825 27.7456 -8.35712e-20) (-51.8828 27.3802 1.68517e-19) (-51.7407 27.3613 -8.37504e-20) (-51.7445 27.0045 -2.51638e-19) (-51.6023 26.9827 -2.08934e-20) (-51.6114 26.6351 8.36464e-20) (-51.6116 26.2851 -8.37199e-20) (-51.4804 26.2697 0) (-51.3355 26.2429 0) (-51.3501 25.9119 0) (-51.3525 25.5798 6.28298e-20) (-51.3438 25.2477 -4.19147e-20) (-51.4503 25.2436 0) (-51.4711 25.5845 0) (-51.4816 25.9275 0) (-51.6009 25.9322 1.68692e-19) (-51.5776 25.5787 -3.41148e-19) (-51.5455 25.2316 5.18708e-19) (-51.6306 25.216 3.61322e-19) (-51.6729 25.565 0) (-51.7084 25.9301 3.40727e-19) (-51.7304 26.2924 -3.37907e-19) (-51.7409 26.6502 1.68422e-19) (-51.8563 26.6589 1.72141e-19) (-51.872 27.0154 -1.70332e-19) (-51.9855 27.0177 -1.75575e-19) (-52.0112 27.3913 0) (-52.0242 27.7639 -3.36081e-19) (-52.1522 27.7769 1.36978e-18) (-52.1677 28.1512 -5.06018e-19) (-52.2947 28.1598 0) (-52.3146 28.5377 0) (-52.3261 28.9159 0) (-52.3341 29.2944 0) (-52.3363 29.6783 1.66517e-19) (-52.3297 30.0637 0) (-52.3142 30.4486 -2.08057e-20) (-52.2901 30.8315 0) (-52.495 30.8697 0) (-52.4768 31.2582 2.0789e-20) (-52.6778 31.2911 2.07241e-20) (-52.6663 31.6834 2.07454e-20) (-52.6478 32.0741 0) (-52.8589 32.1066 0) (-52.8473 32.5023 2.07698e-20) (-53.0544 32.528 -2.06877e-20) (-53.0494 32.9282 -2.07253e-20) (-53.0375 33.3254 0) (-53.254 33.3512 0) (-53.2492 33.752 2.07235e-20) (-53.4611 33.7713 -6.19166e-20) (-53.4637 34.1748 0) (-53.6711 34.1867 -4.11611e-20) (-53.6813 34.5936 2.06023e-20) (-53.6854 34.9985 0) (-53.9023 35.0087 2.05633e-20) (-53.9139 35.4178 0) (-54.1264 35.4211 0) (-54.1445 35.8345 0) (-54.3526 35.8315 0) (-54.3768 36.2481 -2.05593e-20) (-54.3945 36.6606 0) (-54.6102 36.6581 0) (-54.6342 37.0724 2.05704e-20) (-54.8444 37.0643 -6.14411e-20) (-54.8749 37.479 0) (-55.0798 37.4642 -4.08518e-20) (-55.117 37.8795 2.04608e-20) (-55.1485 38.2901 0) (-55.3606 38.2739 0) (-55.3988 38.6846 0) (-55.6056 38.6616 2.03489e-20) (-55.6508 39.0723 0) (-55.8524 39.0422 0) (-55.9048 39.4534 0) (-55.9516 39.8598 0) (-55.9921 40.2607 0) (-56.0257 40.6553 0) (-56.0514 41.0428 0) (-56.0683 41.4224 0) (-56.3355 41.4203 0) (-56.3605 41.8007 0) (-56.6212 41.7905 0) (-56.6543 42.1714 0) (-56.9083 42.1531 0) (-56.9495 42.5342 0) (-57.197 42.508 0) (-57.2464 42.8891 0) (-57.2876 43.2623 0) (-57.5451 43.2362 0) (-57.595 43.6099 0) (-57.8461 43.5753 0) (-57.9047 43.9494 0) (-58.1495 43.9064 0) (-58.2167 44.281 0) (-58.4552 44.2298 0) (-58.5307 44.6047 0) (-58.5982 44.9717 0) (-58.6559 45.3292 0) (-58.7022 45.676 0) (-58.7345 46.0105 -1.05377e-19) (-58.7498 46.3311 -8.42101e-20) (-59.0875 46.3294 0) (-59.1145 46.6515 0) (-59.4422 46.6385 8.40387e-20) (-59.4804 46.9611 8.39889e-20) (-59.7983 46.9377 0) (-59.8469 47.2608 -4.19499e-20) (-60.1555 47.2274 4.18541e-20) (-60.2142 47.5508 -8.4034e-20) (-60.255 47.8596 1.67694e-19) (-60.5835 47.8324 -8.39686e-20) (-60.6365 48.144 2.51792e-19) (-60.9558 48.1053 0) (-61.0214 48.4186 -1.67672e-19) (-61.3314 48.3676 0) (-61.4092 48.6816 0) (-61.7096 48.6189 0) (-61.7991 48.9333 -2.08729e-19) (-61.8708 49.2333 8.34397e-20) (-61.9191 49.5154 -3.31038e-19) (-61.9371 49.776 3.28103e-19) (-61.9164 50.0093 -6.52117e-19) (-61.848 50.2061 6.5219e-19) (-62.3729 50.2673 -1.30332e-18) (-62.3229 50.4704 6.49418e-19) (-62.8303 50.5097 -6.49804e-19) (-62.7985 50.7183 2.18656e-22) (-63.2868 50.7355 -6.26707e-23) (-63.2741 50.9492 6.38605e-19) (-63.7428 50.9478 1.25394e-22) (-63.7485 51.167 1.28735e-18) (-63.7019 51.3467 3.24403e-19) (-64.2287 51.3816 3.25024e-19) (-64.21 51.5775 1.30045e-18) (-64.7161 51.5889 -1.94784e-18) (-64.7167 51.7921 1.93353e-18) (-65.2084 51.7809 -6.44545e-19) (-65.2278 51.9921 1.22487e-22) (-65.7024 51.958 1.28617e-18) (-65.7435 52.1788 6.35541e-19) (-66.2003 52.119 -1.29045e-18) (-66.0945 51.8649 -6.53022e-19) (-65.9586 51.5918 3.29846e-19) (-65.6152 51.7083 -6.52774e-19) (-65.4952 51.4374 -4.96257e-19) (-65.139 51.5359 9.84083e-19) (-65.036 51.2686 1.65708e-19) (-64.6668 51.3495 -6.56866e-19) (-64.5828 51.0875 -1.65667e-19) (-64.2014 51.1519 -3.26957e-19) (-64.136 50.8974 -3.29836e-19) (-64.4724 50.8088 1.66371e-19) (-64.7642 50.6906 8.31772e-20) (-64.9091 50.9857 -8.32018e-20) (-65.1922 50.854 8.30204e-20) (-65.3518 51.1514 -2.49214e-19) (-65.6261 51.0055 0) (-65.8004 51.3043 3.31493e-19) (-66.0649 51.143 0) (-66.2529 51.442 -2.06642e-19) (-66.4264 51.7307 8.26631e-20) (-66.5802 52.0065 6.55943e-19) (-66.9011 51.8562 1.65416e-19) (-66.711 51.5659 -8.28116e-20) (-66.5083 51.2662 4.12003e-20) (-66.2962 50.9582 0) (-66.0769 50.643 0) (-65.8662 50.8348 0) (-65.6595 50.5189 0) (-65.4406 50.6972 0) (-65.2464 50.381 0) (-65.0203 50.5469 0) (-64.8386 50.2312 -1.02694e-20) (-64.6053 50.3848 1.03615e-20) (-64.3415 50.5165 -8.33002e-20) (-64.0407 50.6229 2.49081e-19) (-63.6937 50.6983 -3.28813e-19) (-63.6121 50.4257 -1.65853e-19) (-63.2531 50.4882 3.28442e-19) (-63.1854 50.2167 1.66205e-19) (-62.8128 50.2646 3.29481e-19) (-62.7604 49.9946 1.66431e-19) (-62.3735 50.026 3.29543e-19) (-62.338 49.7597 6.64963e-19) (-62.2751 49.4744 -1.67119e-19) (-62.1909 49.1737 8.3686e-20) (-62.0902 48.8593 4.16594e-20) (-62.3492 48.7628 0) (-62.4732 49.0888 -1.04163e-20) (-62.5852 49.4038 -8.35948e-20) (-62.6825 49.7064 -8.35721e-20) (-62.9829 49.6235 8.34557e-20) (-63.0932 49.9271 -2.5049e-19) (-63.3839 49.8315 0) (-63.5067 50.1355 -3.17202e-23) (-63.7879 50.0275 0) (-63.9227 50.3318 1.24653e-19) (-64.1949 50.2118 4.14549e-20) (-64.4355 50.0696 0) (-64.2571 49.7458 0) (-64.0364 49.8966 0) (-63.8689 49.5723 -1.0252e-20) (-63.6407 49.7121 1.03467e-20) (-63.4841 49.3871 -1.02787e-20) (-63.2483 49.5158 1.03728e-20) (-63.1025 49.1903 0) (-62.8591 49.308 0) (-62.7243 48.9821 1.03292e-20) (-62.5807 48.6468 0) (-62.788 48.5134 0) (-62.9486 48.8558 0) (-63.1492 48.7125 0) (-63.3197 49.0536 0) (-63.5135 48.9002 0) (-63.6941 49.2398 0) (-63.8811 49.0762 0) (-64.0718 49.4144 0) (-64.2522 49.2405 0) (-64.4531 49.5772 0) (-64.649 49.9077 0) (-64.8384 49.7281 0) (-65.0452 50.0577 0) (-65.228 49.867 0) (-65.4463 50.1959 0) (-65.6225 49.9938 0) (-65.8519 50.3213 0) (-66.0209 50.107 0) (-66.262 50.4331 0) (-66.4993 50.7538 0) (-66.7316 51.0684 0) (-66.9575 51.3763 -1.02954e-20) (-67.1753 51.6769 0) (-67.3825 51.969 -8.26731e-20) (-67.6463 51.7736 1.65017e-19) (-67.8707 52.0668 -2.4773e-19) (-68.1238 51.8547 0) (-68.3652 52.1485 -1.64708e-19) (-68.6079 51.9195 0) (-68.866 52.2133 -8.24971e-20) (-69.1135 52.4992 -3.29674e-19) (-69.3736 52.2622 8.23265e-20) (-69.6399 52.5502 8.2344e-20) (-69.8895 52.2952 0) (-70.1752 52.5851 -1.64409e-19) (-70.4141 52.3107 0) (-70.72 52.602 1.6392e-19) (-70.9477 52.3075 0) (-70.6177 52.0122 0) (-70.2853 51.7137 -1.00805e-20) (-70.103 52.0152 1.0189e-20) (-69.7882 51.7159 0) (-69.5967 52.0001 0) (-69.299 51.7004 -1.01484e-20) (-69.0985 51.9678 1.02514e-20) (-68.8173 51.6678 5.09038e-21) (-68.5318 51.3627 0) (-68.3427 51.6189 0) (-68.0724 51.3127 0) (-67.8745 51.5537 0) (-67.6194 51.2466 0) (-67.4129 51.4726 0) (-67.1725 51.165 1.01997e-20) (-66.9268 50.8511 0) (-67.0971 50.6162 0) (-67.3598 50.9339 0) (-67.5223 50.6857 0) (-67.7986 51.0014 0) (-67.9533 50.7394 0) (-68.2434 51.0531 0) (-68.3902 50.777 0) (-68.6946 51.0884 0) (-68.9979 51.3964 -5.03723e-21) (-69.1526 51.1069 0) (-69.471 51.4131 0) (-69.6174 51.1082 0) (-69.9516 51.4123 0) (-70.0895 51.0915 0) (-70.4397 51.3933 0) (-70.7905 51.6929 0) (-71.1409 51.99 0) (-71.304 51.6526 0) (-70.9357 51.3552 0) (-70.5688 51.056 0) (-70.6742 50.7037 0) (-71.0555 51.001 0) (-71.4394 51.2969 0) (-71.8257 51.5915 0) (-71.9511 51.2175 0) (-72.3559 51.5087 0) (-72.4705 51.1158 0) (-72.8943 51.4028 0) (-73.322 51.6889 0) (-73.4407 51.2725 0) (-73.889 51.5539 0) (-73.9948 51.1163 0) (-74.4643 51.3919 0) (-74.9398 51.667 0) (-75.4211 51.9419 0) (-75.5465 51.4704 0) (-75.0477 51.2015 0) (-74.5563 50.9325 0) (-74.0724 50.6631 0) (-73.5958 50.3932 0) (-73.5315 50.8401 0) (-73.0744 50.5632 0) (-72.9974 50.9904 0) (-72.5592 50.7075 0) (-72.6234 50.2854 0) (-72.6637 49.8509 0) (-73.1263 50.1225 0) (-73.1538 49.6699 0) (-73.6344 49.9335 9.51705e-21) (-74.1229 50.1961 0) (-74.6198 50.4579 0) (-75.1251 50.7193 0) (-75.639 50.9808 0) (-76.1616 51.2425 0) (-76.2378 50.7282 0) (-76.7846 50.9814 0) (-76.8431 50.442 0) (-77.4146 50.6854 0) (-77.9974 50.9291 0) (-78.0505 50.3524 0) (-78.6597 50.5845 0) (-78.6905 49.9802 0) (-79.3265 50.1987 0) (-79.9772 50.4166 0) (-79.996 49.769 0) (-80.6755 49.9707 0) (-80.666 49.2925 0) (-80.616 48.6023 0) (-79.9168 48.4358 0) (-79.9755 49.108 0) (-79.3024 48.9215 0) (-79.3329 49.5662 0) (-78.6855 49.3623 0) (-78.053 49.1574 -1.89586e-20) (-78.0687 49.7612 0) (-77.4603 49.5416 0) (-77.4539 50.1203 0) (-76.8695 49.888 0) (-76.8649 49.3214 9.46488e-21) (-76.8299 48.7444 -4.68359e-20) (-77.4347 48.9515 0) (-77.3777 48.3522 7.46417e-20) (-78.0041 48.5432 -1.87554e-20) (-78.6455 48.7331 0) (-78.5712 48.0944 0) (-79.2357 48.2663 0) (-79.1342 47.6038 -7.43056e-20) (-79.8208 47.7551 0) (-80.5263 47.9025 0) (-80.3979 47.1963 -3.71284e-20) (-81.1281 47.3189 0) (-80.9643 46.5869 7.38552e-20) (-81.7189 46.6815 -3.70985e-20) (-82.4967 46.7721 0) (-82.2959 45.9887 0) (-83.0982 46.0505 0) (-82.8546 45.2419 -7.33803e-20) (-83.6779 45.272 0) (-84.5268 45.2935 9.25961e-21) (-85.4021 45.3057 0) (-86.3046 45.3068 0) (-87.2357 45.2944 0) (-88.1971 45.2662 0) (-89.1898 45.2198 0) (-90.2148 45.1515 0) (-91.273 45.0569 0) (-92.3659 44.9307 0) (-93.4951 44.7671 0) (-94.6641 44.56 7.88664e-20) (-95.8753 44.3021 -8.97856e-23) (-97.1335 43.9873 0) (-98.4444 43.6068 7.96064e-20) (-99.8097 43.1557 0) (-101.243 42.6276 0) (-102.748 42.0086 0) (-104.336 41.2848 0) (-106.02 40.4469 0) (-105.219 38.7421 -3.10475e-19) (-103.638 39.6572 0) (-102.126 40.4526 0) (-101.373 38.9476 -1.57448e-19) (-102.807 38.0926 0) (-104.289 37.1184 4.68274e-19) (-103.261 35.6262 3.94272e-20) (-104.677 34.4863 -1.57113e-19) (-103.416 33.0863 0) (-104.719 31.8108 0) (-105.985 30.3886 0) (-107.189 28.8127 7.94772e-20) (-108.306 27.0849 -1.5957e-19) (-109.293 25.2026 -1.00157e-20) (-110.102 23.1581 -1.60902e-19) (-110.683 20.9873 1.62322e-19) (-108.205 20.4501 0) (-107.753 22.4031 0) (-107.098 24.2694 1.00393e-20) (-104.95 23.4912 0) (-105.492 21.7828 0) (-105.859 20.0142 0) (-103.664 19.6439 0) (-103.354 21.2538 0) (-102.894 22.8229 0) (-102.301 24.329 0) (-104.258 25.1145 0) (-106.278 26.0191 0) (-105.327 27.6441 -9.97811e-21) (-104.281 29.1442 0) (-103.167 30.527 0) (-101.55 29.3861 0) (-102.535 28.0609 0) (-103.445 26.6388 9.92317e-21) (-101.595 25.7587 0) (-100.795 27.1056 0) (-99.9212 28.3716 -1.95466e-20) (-98.3006 27.4593 1.93708e-20) (-99.0821 26.2518 0) (-99.7914 24.9788 0) (-100.413 23.6389 0) (-100.932 22.2395 0) (-101.333 20.7931 0) (-101.603 19.3189 0) (-101.733 17.8422 0) (-101.717 16.3913 0) (-101.56 14.9931 0) (-101.275 13.6785 0) (-100.885 12.4776 0) (-100.417 11.4059 0) (-99.898 10.4603 0) (-99.3479 9.63287 0) (-97.8073 10.0445 0) (-98.276 10.847 0) (-98.7146 11.7453 0) (-97.07 12.0172 0) (-96.7003 11.1655 0) (-96.3017 10.3909 0) (-94.8444 10.6717 0) (-95.1796 11.4223 3.91579e-20) (-95.4911 12.2272 -7.91782e-20) (-95.7498 13.1134 0) (-97.3914 12.9582 0) (-99.1038 12.7479 0) (-99.4222 13.8611 0) (-99.6508 15.07 0) (-99.7723 16.3478 0) (-97.9218 16.2922 0) (-97.8309 15.1175 0) (-97.6499 13.9967 0) (-95.9557 14.0923 0) (-96.0981 15.1426 3.98543e-20) (-96.1641 16.2265 -8.02737e-20) (-94.5237 16.1502 0) (-94.495 15.1317 3.70338e-19) (-94.3716 14.158 -3.29604e-19) (-94.2087 13.2177 0) (-94.0084 12.3823 0) (-93.7549 11.609 3.63185e-19) (-93.4686 10.8972 -3.2242e-19) (-92.2414 11.0761 3.43925e-19) (-90.4804 10.9273 -7.70042e-18) (-87.145 11.9792 1.98193e-21) (-90.8043 12.3491 6.19412e-18) (-92.5002 11.723 -3.45161e-19) (-92.6682 12.5272 0) (-92.8485 13.2618 5.53451e-18) (-91.1341 13.7292 -1.55044e-18) (-92.9864 14.1961 3.50983e-19) (-93.0998 15.0641 -3.51959e-19) (-91.1286 15.5621 0) (-93.0511 16.0939 0) (-93.0493 17.0146 5.59751e-18) (-94.4886 17.1984 0) (-96.1367 17.353 0) (-97.909 17.5101 0) (-99.7737 17.6728 0) (-99.651 19.026 0) (-99.4074 20.3832 0) (-99.0509 21.7213 0) (-97.2427 21.258 0) (-97.5647 20.0159 0) (-97.7889 18.7583 0) (-96.0144 18.5147 0) (-95.8115 19.6886 0) (-95.516 20.8454 0) (-95.1405 21.9871 -3.97998e-20) (-96.8266 22.4745 0) (-98.5892 23.0242 0) (-98.0343 24.2812 0) (-97.3984 25.4845 0) (-96.6963 26.6334 0) (-95.1198 25.8824 2.33864e-19) (-95.7513 24.7944 -5.83369e-20) (-96.3251 23.6558 0) (-94.6813 23.1021 0) (-94.1693 24.1807 -1.38958e-19) (-93.5959 25.2055 1.59207e-19) (-92.1647 24.6054 -3.31874e-19) (-92.7089 23.6412 -8.22489e-20) (-93.1478 22.6192 3.6923e-19) (-93.5746 21.5558 4.10015e-20) (-93.8992 20.4813 4.12782e-20) (-94.1943 19.3889 2.89079e-19) (-94.3618 18.2978 -3.31191e-19) (-92.927 18.0973 3.52709e-19) (-91.1435 17.2566 -1.55484e-18) (-87.1453 17.6571 0) (-90.6476 19.2648 0) (-92.7871 19.0765 -3.53056e-19) (-92.4407 20.1651 0) (-92.2108 21.1313 -5.57337e-18) (-90.2668 21.052 1.55792e-18) (-91.8133 22.186 -3.51346e-19) (-91.438 23.1267 0) (-89.3378 22.9474 0) (-90.8797 24.0788 3.5676e-19) (-90.4772 24.9138 5.47406e-19) (-91.6322 25.5306 3.35559e-19) (-92.9804 26.1989 0) (-94.4345 26.9346 -1.5575e-19) (-95.9388 27.7365 1.54594e-19) (-97.4612 28.608 0) (-98.9885 29.5632 0) (-100.511 30.6209 0) (-102.005 31.7917 0) (-100.815 32.9383 -9.79328e-21) (-102.107 34.2342 -2.94772e-20) (-100.811 35.2656 0) (-101.873 36.6339 0) (-100.516 37.527 0) (-99.1892 38.3153 0) (-99.988 39.6978 1.57376e-19) (-100.678 41.1422 1.58079e-19) (-99.2888 41.7381 -1.57806e-19) (-97.9581 42.2481 9.74199e-23) (-96.6779 42.6834 -7.86722e-20) (-96.1133 41.4006 0) (-97.3586 40.9151 0) (-98.6496 40.3509 0) (-97.9002 39.008 0) (-96.6512 39.614 0) (-95.4446 40.1441 0) (-94.6788 38.9399 0) (-95.8401 38.3767 0) (-97.0383 37.7335 0) (-98.2711 37.0047 0) (-99.5306 36.1854 0) (-98.4301 34.9131 0) (-99.6183 33.9764 0) (-98.3433 32.7976 0) (-99.4371 31.7605 9.74472e-21) (-98.0162 30.6817 -9.66999e-21) (-97.0204 31.7132 0) (-96.0119 32.6507 0) (-97.2468 33.7371 0) (-96.153 34.5877 0) (-97.2532 35.7557 0) (-96.0899 36.5138 0) (-94.946 37.1924 0) (-93.826 37.7913 0) (-92.9126 36.6813 0) (-93.9798 36.0555 0) (-95.0625 35.3586 0) (-93.9762 34.2764 0) (-94.9961 33.5009 0) (-93.8042 32.4936 0) (-94.7452 31.6504 -3.83566e-20) (-95.6724 30.7191 -7.70392e-20) (-96.5791 29.6992 -1.54448e-19) (-95.1397 28.8021 -1.16369e-22) (-94.3221 29.8115 1.55175e-19) (-93.4639 30.7337 -1.16747e-19) (-92.1805 29.8863 3.98465e-20) (-93.0012 28.9849 0) (-93.7161 27.978 6.24268e-19) (-92.3423 27.2008 -6.17603e-19) (-91.7906 28.2008 -1.70185e-19) (-89.5508 27.5708 -6.16939e-19) (-90.9688 29.1177 1.67939e-19) (-90.3402 29.9435 6.70203e-19) (-91.4237 30.7283 -6.73284e-19) (-92.6001 31.5708 7.7227e-20) (-91.7052 32.3423 0) (-92.851 33.2682 0) (-91.8938 33.9834 0) (-92.9566 34.984 0) (-91.9466 35.6272 0) (-90.9529 36.2068 9.1878e-21) (-91.8682 37.2386 -9.2223e-21) (-92.7365 38.3141 0) (-93.5505 39.4298 0) (-94.2774 40.6028 0) (-94.9102 41.8147 0) (-95.4438 43.0494 0) (-94.2535 43.3537 0) (-93.1028 43.6042 0) (-91.989 43.8081 0) (-91.528 42.6978 0) (-92.6202 42.4553 0) (-93.7469 42.1636 0) (-93.147 40.9938 0) (-92.0509 41.3251 0) (-90.9866 41.605 0) (-89.9524 41.8415 0) (-90.4684 42.8986 0) (-90.9097 43.9723 0) (-89.8636 44.1031 0) (-88.8495 44.2061 0) (-87.8666 44.2863 0) (-87.4731 43.315 9.24101e-21) (-88.4418 43.2016 0) (-89.44 43.0645 0) (-88.947 42.0414 9.22594e-21) (-87.9697 42.2118 0) (-87.02 42.3583 -4.56572e-20) (-86.5123 41.4236 3.62326e-20) (-87.4371 41.2431 0) (-88.3886 41.04 -9.10193e-21) (-89.3651 40.8073 0) (-90.3673 40.5364 9.20678e-21) (-91.3977 40.2209 0) (-92.4569 39.8534 0) (-91.6847 38.7667 9.19591e-21) (-90.6661 39.1588 0) (-89.6748 39.5027 -9.08312e-21) (-88.9201 38.5219 -7.22173e-20) (-89.8679 38.1534 0) (-90.8515 37.7295 -9.12738e-21) (-89.9808 36.7277 0) (-89.035 37.1905 0) (-88.1258 37.5966 2.89345e-19) (-87.2608 37.9529 0) (-88.0025 38.8491 3.60384e-20) (-88.7109 39.8054 3.62096e-20) (-87.7706 40.0685 0) (-86.8518 40.3025 0) (-85.9572 40.5174 0) (-85.3653 39.6469 5.80698e-19) (-86.2251 39.3957 0) (-87.1036 39.1349 0) (-86.4028 38.2527 -1.45709e-19) (-85.5759 38.5294 5.86244e-19) (-84.7568 38.8007 -5.70047e-19) (-84.1768 37.9906 -4.62536e-18) (-84.9278 37.7234 -3.04897e-19) (-85.6793 37.4313 -1.5004e-19) (-86.5158 37.1149 -1.48237e-19) (-87.3233 36.7145 -1.16561e-18) (-88.1865 36.2637 1.45969e-19) (-89.0841 35.7741 1.47164e-19) (-90.0039 35.2346 1.84743e-20) (-90.9414 34.6397 0) (-89.918 33.7282 0) (-90.8179 33.0646 0) (-89.7731 32.2276 -3.14134e-19) (-90.5655 31.495 -3.16242e-19) (-89.5044 30.7223 3.34386e-19) (-88.3399 29.2658 0) (-86.8921 30.701 3.07329e-19) (-88.8076 31.4467 3.35302e-19) (-87.9383 32.116 0) (-88.8992 32.8877 0) (-88.1134 33.5099 -3.8829e-20) (-89.0454 34.3342 1.88348e-20) (-88.1765 34.8812 -2.94997e-19) (-87.3443 35.3833 8.93226e-19) (-86.5314 35.8534 2.8809e-19) (-85.7689 34.9945 5.38094e-18) (-86.5343 34.5617 0) (-87.2792 34.0549 3.05446e-19) (-86.4376 33.3018 -5.68685e-18) (-85.5475 31.9662 1.36705e-18) (-87.2519 32.7469 0) (-84.1037 32.9932 -1.3422e-18) (-85.7653 33.7914 0) (-84.9434 34.1725 6.3566e-18) (-84.2269 35.285 -1.20978e-18) (-85.8023 36.3118 -6.44052e-19) (-84.9598 36.6535 1.615e-19) (-84.2966 36.9571 -5.10367e-18) (-82.8477 35.9908 -3.22621e-19) (-83.5191 37.1757 5.74303e-18) (-82.75 38.0541 1.07617e-18) (-84.0266 39.1022 -8.00869e-19) (-84.5563 39.8859 0) (-85.097 40.7145 0) (-85.6165 41.5831 0) (-86.099 42.4841 0) (-86.5343 43.4082 0) (-86.9143 44.347 0) (-85.9915 44.3904 9.25237e-21) (-85.0967 44.419 0) (-84.228 44.4352 -9.1473e-21) (-83.8833 43.5862 -7.27372e-20) (-84.7407 43.5404 0) (-85.6241 43.4823 -9.13436e-21) (-85.2065 42.5887 0) (-84.3397 42.6757 1.44789e-19) (-83.4966 42.7521 -4.35907e-19) (-82.6858 42.8213 0) (-83.0531 43.6214 7.26939e-20) (-83.3862 44.4416 -7.29985e-20) (-82.5696 44.4361 7.27831e-20) (-81.778 44.4254 1.45771e-19) (-82.0551 45.2053 2.19101e-19) (-81.2811 45.1654 -1.46451e-19) (-81.5178 45.9232 1.10255e-19) (-80.7636 45.8541 -1.46726e-19) (-80.0318 45.7803 -1.4739e-19) (-80.2323 46.4875 1.8441e-19) (-79.5225 46.3827 7.37515e-20) (-79.6888 47.0693 7.40139e-20) (-78.9989 46.936 -7.37711e-20) (-78.8316 46.2697 -7.37895e-20) (-78.6346 45.6111 1.49693e-19) (-79.3258 45.7033 1.48489e-19) (-79.1067 45.0347 7.5688e-19) (-79.8014 45.0786 5.90671e-19) (-80.5323 45.1234 0) (-80.2807 44.3989 0) (-81.0133 44.4128 2.9424e-19) (-80.7168 43.6723 5.942e-19) (-81.4685 43.6557 -1.46363e-19) (-82.2471 43.6417 0) (-81.8918 42.8656 4.42082e-19) (-81.1373 42.9016 -5.96422e-19) (-80.3987 42.9352 -5.87411e-19) (-80.0933 42.2382 -6.77934e-19) (-80.7967 42.1776 6.19194e-19) (-81.5083 42.1152 1.04636e-22) (-82.2967 42.0435 1.19335e-18) (-83.0755 41.938 1.1648e-18) (-83.902 41.8293 -2.89813e-19) (-84.7461 41.7152 -1.44959e-19) (-84.2521 40.8735 1.46353e-19) (-83.4422 41.0086 0) (-82.6383 41.1349 -8.57921e-19) (-82.2242 40.3623 4.63412e-18) (-82.9767 40.23 -6.1225e-19) (-83.7296 40.074 3.01588e-19) (-83.1943 39.3046 1.6219e-19) (-82.5031 39.4766 3.32532e-19) (-81.256 38.4751 1.54047e-18) (-81.7206 39.5479 -5.53385e-18) (-80.8454 40.2052 -3.028e-18) (-81.9057 41.2981 4.50449e-18) (-81.1066 41.3775 -1.63637e-19) (-80.4434 41.4653 0) (-79.4223 40.4259 0) (-79.7204 41.4725 6.0699e-18) (-78.8924 41.9964 -6.40372e-19) (-79.7415 42.9927 -5.51079e-18) (-80.0185 43.6957 0) (-79.3302 43.6994 -4.68339e-18) (-79.5541 44.3767 -1.15702e-18) (-78.8757 44.3882 -6.50445e-18) (-78.1251 43.3532 1.20638e-18) (-78.1632 44.3213 5.0059e-18) (-78.4093 44.9665 -1.5474e-19) (-77.7845 44.8972 9.49099e-19) (-77.9794 45.5151 0) (-78.1637 46.1542 0) (-78.3282 46.801 -1.4766e-19) (-78.4649 47.4494 7.39306e-20) (-77.813 47.2936 -2.9606e-19) (-77.9233 47.9213 1.11522e-19) (-77.2912 47.7472 -1.48382e-19) (-76.6734 47.5723 0) (-76.7655 48.1601 3.72583e-20) (-76.1677 47.9674 7.44937e-20) (-76.2384 48.537 -7.46925e-20) (-76.2819 49.1009 0) (-76.2969 49.6556 0) (-76.2825 50.1987 0) (-75.7327 49.9556 0) (-75.7007 50.4753 0) (-75.1733 50.2225 0) (-74.6555 49.9698 -1.90776e-20) (-74.6642 49.4697 -1.88844e-20) (-75.1932 49.7125 0) (-75.1856 49.1908 0) (-75.7357 49.4231 0) (-75.7112 48.8803 -7.49509e-20) (-75.6599 48.3286 7.44378e-20) (-75.095 48.1225 0) (-75.1523 48.6601 2.23703e-19) (-74.6063 48.4421 1.49602e-19) (-74.6469 48.9596 1.1239e-19) (-74.1196 48.7291 4.42145e-24) (-74.1455 49.2269 -7.51487e-20) (-74.1472 49.7168 0) (-73.648 49.4628 -4.71466e-20) (-73.1578 49.2078 1.12781e-19) (-72.6762 48.9516 -7.49362e-20) (-72.6811 49.4057 -7.53686e-20) (-72.2163 49.141 -2.19444e-23) (-72.208 49.579 0) (-72.1783 50.007 9.53225e-21) (-72.1262 50.4238 -9.63801e-21) (-72.0508 50.8278 0) (-71.6355 50.5391 9.67784e-21) (-71.5495 50.9252 0) (-71.1514 50.632 0) (-70.757 50.3378 0) (-70.3665 50.0424 1.91821e-20) (-70.2958 50.405 0) (-70.2038 50.7552 0) (-69.8409 50.4527 0) (-69.7402 50.7875 0) (-69.3924 50.4816 -4.8776e-21) (-69.2835 50.8015 0) (-68.9504 50.4925 0) (-68.8336 50.7978 0) (-68.5148 50.4859 0) (-68.1967 50.1714 9.75637e-21) (-68.0855 50.4623 0) (-67.7809 50.1446 9.78951e-21) (-67.6621 50.4221 0) (-67.3706 50.1012 9.82199e-21) (-67.2444 50.3657 0) (-66.9655 50.0418 0) (-66.8319 50.2938 0) (-66.6771 50.5317 0) (-66.4241 50.2073 0) (-66.1688 49.8782 0) (-65.9116 49.545 0) (-65.7769 49.7761 0) (-65.5306 49.441 0) (-65.3894 49.661 0) (-65.1535 49.3238 0) (-65.0059 49.5329 0) (-64.7807 49.1941 0) (-64.627 49.3928 0) (-64.4121 49.0522 0) (-64.553 48.8508 0) (-64.6761 48.6374 0) (-64.9156 48.9825 0) (-65.0327 48.759 0) (-65.2823 49.1018 0) (-65.3934 48.8679 0) (-65.6529 49.208 0) (-65.7578 48.9638 1.93945e-20) (-66.0278 49.3017 9.75544e-21) (-66.2969 49.6364 0) (-66.565 49.9672 0) (-66.686 49.7141 0) (-66.4062 49.3826 0) (-66.1263 49.0475 -9.68115e-21) (-65.846 48.7097 1.93006e-20) (-65.5663 48.3706 -3.8499e-20) (-65.4877 48.6236 -3.86464e-20) (-65.2183 48.2815 7.71e-20) (-65.1333 48.525 0) (-64.8734 48.1798 7.72805e-20) (-64.7826 48.4135 0) (-64.5325 48.0655 7.75179e-20) (-64.4358 48.2892 0) (-64.3235 48.5033 0) (-64.1944 48.7067 0) (-64.0473 48.8981 0) (-63.8393 48.5504 9.92584e-21) (-63.6861 48.732 0) (-63.4877 48.3821 9.95358e-21) (-63.3283 48.5541 0) (-63.1391 48.2021 9.98098e-21) (-62.9735 48.3646 0) (-62.7935 48.0106 0) (-62.6217 48.1639 0) (-62.4297 48.3033 0) (-62.2156 48.427 0) (-61.9768 48.533 0) (-61.8532 48.1966 -1.03106e-20) (-61.6069 48.2924 1.04006e-20) (-61.4935 47.9556 -1.03358e-20) (-61.2396 48.0412 1.04233e-20) (-61.1367 47.7042 0) (-60.8754 47.7795 0) (-60.7828 47.4427 -1.03834e-20) (-60.5142 47.5078 1.04659e-20) (-60.4317 47.1715 0) (-60.3384 46.8245 0) (-60.0827 46.8911 0) (-59.9986 46.5438 -1.03654e-20) (-59.7352 46.6015 1.04513e-20) (-59.6603 46.2537 -1.03898e-20) (-59.3891 46.3023 1.04731e-20) (-59.3237 45.9544 0) (-59.0447 45.9936 2.09925e-20) (-58.9889 45.6461 0) (-58.9224 45.288 0) (-59.1642 45.2289 0) (-59.2483 45.5961 0) (-59.4835 45.529 0) (-59.5759 45.8958 0) (-59.8044 45.8205 0) (-59.9053 46.1865 0) (-60.127 46.103 0) (-60.2364 46.468 0) (-60.4515 46.3762 0) (-60.5693 46.74 0) (-60.6802 47.0958 0) (-60.9045 47.0025 0) (-61.0245 47.3576 0) (-61.2423 47.2553 0) (-61.3715 47.6095 0) (-61.5829 47.4979 0) (-61.7215 47.8512 0) (-61.9263 47.7303 0) (-62.0742 48.0825 0) (-62.2726 47.9524 0) (-62.1105 47.5949 0) (-61.9441 47.2314 0) (-61.7731 47.3714 0) (-61.6154 47.0063 0) (-61.4386 47.1377 0) (-61.2896 46.771 0) (-61.107 46.8937 0) (-60.9666 46.5255 0) (-60.778 46.6398 0) (-60.646 46.2701 0) (-60.5094 45.8938 1.0038e-20) (-60.3278 46.0049 0) (-60.199 45.627 1.00637e-20) (-60.0115 45.7304 0) (-59.8906 45.3509 1.00891e-20) (-59.6969 45.4467 0) (-59.5838 45.066 1.01145e-20) (-59.384 45.1544 0) (-59.2785 44.7728 0) (-59.0727 44.8538 0) (-58.8466 44.9207 0) (-58.763 44.5455 0) (-58.6726 44.1635 0) (-58.5764 43.7756 0) (-58.3727 43.8479 0) (-58.2844 43.4603 0) (-58.0752 43.5248 0) (-57.995 43.1372 0) (-57.7802 43.1939 0) (-57.7081 42.806 0) (-57.4876 42.8549 0) (-57.4234 42.4667 0) (-57.6305 42.412 0) (-57.8199 42.345 2.01458e-20) (-57.9097 42.7438 0) (-58.0937 42.6695 2.00946e-20) (-58.1911 43.0674 0) (-58.3699 42.9857 0) (-58.4752 43.3828 0) (-58.6491 43.2935 0) (-58.7622 43.6907 1.00525e-20) (-58.871 44.0838 0) (-58.9747 44.4718 0) (-59.1675 44.3851 0) (-59.0517 43.992 0) (-58.9314 43.5943 -9.99411e-21) (-59.085 43.4878 -1.5968e-19) (-59.2159 43.889 7.982e-20) (-59.3428 44.2865 0) (-59.4655 44.6791 0) (-59.6352 44.5737 0) (-59.765 44.9651 -1.00354e-20) (-59.929 44.8535 0) (-60.0659 45.2428 -1.00093e-20) (-60.2243 45.1239 0) (-60.3686 45.5114 -9.98347e-21) (-60.5214 45.3852 0) (-60.6732 45.7707 -9.95746e-21) (-60.8218 46.1511 1.00123e-20) (-60.98 46.0202 -9.9313e-21) (-61.1365 46.3984 9.98633e-21) (-61.2892 46.2596 -9.90495e-21) (-61.4539 46.6356 0) (-61.6011 46.4886 0) (-61.7741 46.8625 0) (-61.9159 46.7072 1.97149e-20) (-62.0973 47.0791 0) (-62.2757 47.4463 0) (-62.4507 47.808 0) (-62.6099 47.6508 0) (-62.4232 47.2858 1.97844e-20) (-62.2338 46.9158 0) (-62.3546 46.7429 0) (-62.5541 47.1144 5.89834e-20) (-62.7516 47.4819 0) (-62.9467 47.8445 0) (-63.0825 47.6668 0) (-63.2863 48.0269 -9.89435e-21) (-63.4163 47.841 0) (-63.6288 48.1978 -9.86617e-21) (-63.7529 48.0026 0) (-63.9744 48.3566 -9.83795e-21) (-64.0927 48.1521 0) (-64.1953 47.9378 7.77558e-20) (-63.9546 47.5844 -1.55799e-19) (-63.8613 47.7976 0) (-63.6295 47.4411 0) (-63.5303 47.6448 0) (-63.3068 47.2848 2.35129e-19) (-63.2022 47.4801 7.83505e-20) (-62.9868 47.1157 -3.13931e-19) (-62.8768 47.3027 0) (-62.6696 46.9347 -2.35356e-19) (-62.4607 46.5631 1.57691e-19) (-62.2485 46.1887 -1.58903e-19) (-62.1527 46.3679 0) (-62.0418 46.5419 -1.96387e-20) (-61.8484 46.1655 0) (-61.7323 46.3315 0) (-61.5475 45.952 7.84611e-20) (-61.4259 46.1104 0) (-61.2488 45.728 1.57237e-19) (-61.1219 45.8788 0) (-60.9525 45.4938 1.57668e-19) (-60.8205 45.637 0) (-60.6586 45.2494 1.58098e-19) (-60.4946 44.8589 1.39957e-23) (-60.3669 44.9952 1.39998e-23) (-60.2098 44.6021 1.4185e-23) (-60.0769 44.7318 1.42361e-23) (-59.9266 44.3366 7.97166e-20) (-59.7886 44.4593 1.59117e-19) (-59.6451 44.0612 -1.59518e-19) (-59.5017 44.1776 7.97867e-20) (-59.3648 43.7774 -1.59476e-19) (-59.2243 43.3737 1.60402e-19) (-59.3491 43.2571 3.22895e-19) (-59.4992 43.6602 0) (-59.6195 43.5415 0) (-59.774 43.9394 -4.81887e-19) (-59.8885 43.8146 -9.79338e-19) (-60.0506 44.2069 0) (-60.1619 44.0747 1.19209e-22) (-60.3292 44.4668 0) (-60.4348 44.3283 -6.51346e-19) (-60.6087 44.7159 0) (-60.7811 45.1059 -1.58302e-19) (-60.8903 44.957 3.19391e-19) (-61.0699 45.3431 -1.5789e-19) (-61.1743 45.1854 0) (-61.3614 45.5696 -1.57414e-19) (-61.4618 45.4062 6.35338e-19) (-61.655 45.787 0) (-61.7497 45.6168 1.58809e-19) (-61.9496 45.9935 -1.57446e-19) (-62.0362 45.8199 1.60281e-19) (-61.8333 45.446 3.24861e-19) (-61.6222 45.0731 -6.41097e-19) (-61.5495 45.2407 3.22423e-19) (-61.3479 44.8708 -6.71431e-19) (-61.2673 45.0252 -3.2184e-19) (-61.0654 44.65 -1.27887e-18) (-60.9858 44.8047 -1.0242e-22) (-60.797 44.4301 6.74962e-19) (-60.7101 44.5706 -3.23984e-19) (-60.5233 44.189 -1.35822e-23) (-60.3401 43.8171 7.44762e-19) (-60.2588 43.9465 -1.63035e-23) (-60.08 43.5979 9.28353e-19) (-59.9856 43.6885 -6.44564e-19) (-59.8111 43.3126 -9.25303e-19) (-59.7241 43.4278 1.35821e-18) (-59.5587 43.0715 7.4174e-19) (-59.4553 43.1454 -6.37213e-19) (-59.2847 42.7511 1.78382e-19) (-59.1913 42.8512 4.97635e-19) (-59.0776 42.9682 -4.84995e-19) (-58.9496 43.0842 1.59826e-19) (-58.8069 43.1937 0) (-58.6801 42.7923 0) (-58.5326 42.8936 0) (-58.4143 42.4908 0) (-58.2615 42.5848 -9.99538e-20) (-58.1505 42.1799 1.19765e-19) (-57.9928 42.2673 -1.40293e-19) (-57.8887 41.8608 2.0013e-19) (-57.7261 41.9413 -1.00468e-19) (-57.5481 42.0122 -2.01971e-20) (-57.3534 42.0722 0) (-57.1407 42.1195 0) (-57.0781 41.7245 -1.01999e-20) (-56.8597 41.7645 0) (-56.8045 41.3692 0) (-56.5802 41.402 0) (-56.5323 41.0066 0) (-56.3023 41.0321 0) (-56.2616 40.6369 0) (-56.2141 40.2355 2.04519e-20) (-56.1606 39.8284 0) (-56.1016 39.4164 0) (-56.2821 39.3681 0) (-56.3526 39.7848 0) (-56.418 40.1973 -2.03264e-20) (-56.4781 40.6048 0) (-56.6767 40.56 0) (-56.7433 40.9675 2.03519e-20) (-56.9367 40.9168 -1.01258e-19) (-57.01 41.3232 0) (-57.1982 41.2658 -8.07956e-20) (-57.2782 41.6715 3.03742e-20) (-57.4613 41.6074 -6.04474e-20) (-57.6287 41.5332 1.20387e-19) (-57.5277 41.1215 8.04817e-20) (-57.3705 41.1982 -2.47506e-24) (-57.2757 40.7857 5.6604e-19) (-57.1139 40.8555 -2.14851e-24) (-57.0252 40.4418 -1.6188e-19) (-56.8588 40.5055 -8.08021e-20) (-56.7763 40.09 -3.34708e-23) (-56.6051 40.1479 0) (-56.5287 39.7314 0) (-56.4475 39.3113 1.63038e-19) (-56.3592 38.8892 3.23723e-23) (-56.2062 38.9486 0) (-56.0372 39.0006 -8.10603e-20) (-55.9693 38.5829 -9.65783e-25) (-55.7954 38.6272 -2.028e-20) (-55.7346 38.208 -4.05065e-20) (-55.5555 38.2461 -1.21868e-19) (-55.5006 37.8261 2.03e-19) (-55.3169 37.8582 -1.42563e-19) (-55.2681 37.4384 4.06986e-20) (-55.2139 37.0158 0) (-55.0373 37.0449 1.22465e-19) (-54.9895 36.6225 -8.19536e-20) (-54.8082 36.6452 8.17155e-20) (-54.7664 36.223 -4.93075e-19) (-54.58 36.2398 0) (-54.5439 35.8178 -1.64045e-19) (-54.5014 35.3929 3.30438e-19) (-54.3218 35.4121 0) (-54.2843 34.9915 -8.23342e-20) (-54.1015 35.006 6.15901e-20) (-54.0713 34.5912 4.1057e-20) (-53.8846 34.5982 -6.16146e-20) (-53.8618 34.1868 -1.23181e-19) (-53.8338 33.7754 1.65066e-19) (-53.6555 33.7784 1.23453e-19) (-53.6347 33.3689 -8.26756e-20) (-53.4527 33.3654 8.23896e-20) (-53.4384 32.9572 0) (-53.2524 32.9478 0) (-53.2444 32.5418 0) (-53.2296 32.1336 1.66741e-19) (-53.0524 32.1256 0) (-53.0431 31.7225 -2.49262e-19) (-52.8632 31.7093 -2.07103e-20) (-52.8618 31.3119 4.14187e-20) (-53.0295 31.3223 8.33698e-20) (-53.181 31.327 6.82509e-19) (-53.206 31.7252 -1.68377e-19) (-53.352 31.7218 8.66955e-19) (-53.3911 32.1351 3.35975e-19) (-53.4185 32.5472 0) (-53.5767 32.5484 -1.01578e-18) (-53.6085 32.9583 5.00548e-19) (-53.763 32.9535 6.77859e-19) (-53.8017 33.3639 -1.66417e-19) (-53.9542 33.3539 1.0634e-22) (-53.9972 33.7637 2.99121e-23) (-54.0364 34.1763 -1.64662e-19) (-54.1965 34.1574 -3.33531e-19) (-54.2421 34.574 8.26099e-20) (-54.3978 34.5498 -5.0669e-19) (-54.4509 34.9672 -3.33683e-19) (-54.6018 34.939 6.86287e-19) (-54.6654 35.3701 -5.31388e-23) (-54.7194 35.7982 -5.71372e-23) (-54.8789 35.7755 -1.00676e-18) (-54.9364 36.1988 4.98173e-19) (-55.0901 36.1687 -6.76219e-19) (-55.1553 36.5915 0) (-55.3068 36.557 3.36276e-19) (-55.3756 36.9797 3.30729e-19) (-55.4405 37.4034 -4.08294e-19) (-55.5989 37.3603 6.03434e-23) (-55.6691 37.785 3.25674e-19) (-55.8241 37.7376 6.00441e-23) (-55.8988 38.1619 8.13322e-20) (-56.0492 38.1093 5.86817e-23) (-56.1275 38.5306 8.14526e-20) (-56.2704 38.4762 1.66253e-19) (-56.187 38.0554 -3.37136e-19) (-56.0906 37.6324 1.33339e-18) (-55.9648 37.6854 -6.69264e-19) (-55.8735 37.2669 -6.988e-19) (-55.7445 37.3135 -1.00203e-18) (-55.6531 36.8941 6.64467e-19) (-55.5221 36.9375 -6.71817e-19) (-55.4403 36.5211 0) (-55.3539 36.1398 -9.66479e-20) (-55.2263 36.1378 0) (-55.1391 35.7286 0) (-55.0189 35.7526 7.03648e-19) (-54.9463 35.3719 -6.2946e-18) (-54.8105 35.3525 6.55956e-19) (-54.7309 34.9281 0) (-54.8741 34.6888 1.8974e-18) (-54.6594 34.4899 0) (-54.5389 34.5241 0) (-54.4775 34.1046 0) (-54.3431 34.1323 -4.83259e-23) (-54.2765 33.7235 6.77087e-19) (-54.1453 33.7461 1.01791e-18) (-54.0889 33.3431 -3.54422e-19) (-54.0303 32.9729 0) (-53.9001 32.9475 -6.71119e-19) (-53.8391 32.5475 -1.93321e-19) (-53.7165 32.5495 -7.08335e-19) (-53.6676 32.1775 -5.74998e-19) (-53.5331 32.1391 6.61127e-19) (-53.4765 31.7279 -7.4677e-19) (-53.645 31.4992 5.19516e-22) (-53.4339 31.3076 -6.11065e-18) (-53.3162 31.3278 -3.55595e-19) (-53.284 30.9239 -5.51999e-23) (-53.1568 30.9238 6.89985e-19) (-53.0127 30.9195 3.36732e-19) (-52.855 30.9122 -1.66271e-19) (-52.6829 30.8961 8.27968e-20) (-52.6805 30.4987 8.31652e-20) (-52.5052 30.4789 -8.29818e-20) (-52.5073 30.0864 0) (-52.5002 29.693 -1.67573e-19) (-52.6498 29.6994 3.37983e-19) (-52.6701 30.0998 -5.01703e-19) (-52.819 30.1083 3.41022e-19) (-52.8409 30.5101 1.67794e-19) (-52.9871 30.5152 3.05151e-23) (-53.1176 30.5194 6.77791e-19) (-53.067 30.1212 -9.75165e-19) (-52.9517 30.1152 -7.15238e-19) (-52.9089 29.7477 0) (-52.783 29.7065 0) (-52.7315 29.3067 -4.49107e-18) (-52.6169 29.2994 -1.04507e-18) (-52.4828 29.302 -5.07878e-19) (-52.462 28.9232 2.43458e-24) (-52.4413 28.5441 6.92846e-19) (-52.4073 28.1653 -6.84602e-19) (-52.5153 28.1967 7.10894e-18) (-52.5537 28.5464 -1.46036e-18) (-52.5833 28.9238 5.35771e-19) (-52.6875 28.9061 -6.13063e-18) (-52.8749 29.0926 1.3016e-18) (-53.0233 29.7332 7.14746e-18) (-53.2041 29.8897 -3.19055e-18) (-53.2406 30.5533 -1.17806e-18) (-53.3511 30.5229 7.48792e-18) (-53.5198 30.6435 1.45112e-18) (-53.3933 30.9117 0) (-53.4 29.8977 -6.39641e-18) (-53.264 28.4612 1.19455e-18) (-53.0613 29.0485 -4.08358e-18) (-52.9336 28.2133 4.07594e-19) (-52.7657 28.2874 1.09436e-18) (-52.6513 28.5415 1.97207e-19) (-52.6142 28.1694 2.18399e-19) (-52.4937 27.5611 -2.25928e-18) (-52.3629 27.7933 0) (-52.2646 27.7872 7.17488e-19) (-52.229 27.4446 -9.67495e-19) (-52.1232 27.4028 6.51782e-23) (-52.0811 27.0281 -7.55812e-19) (-52.2088 26.8231 -1.27772e-18) (-52.0454 26.6466 0) (-51.9583 26.6624 1.79784e-19) (-51.9302 26.2973 0) (-51.8372 26.2964 0) (-51.8019 25.9296 0) (-51.7523 25.5624 6.23461e-18) (-51.836 25.3568 -1.28285e-18) (-51.7002 25.1878 -1.94813e-19) (-51.6502 24.8363 6.03396e-19) (-51.5836 24.861 -1.11636e-18) (-51.5059 24.8839 -3.51899e-19) (-51.4202 24.9027 0) (-51.3246 24.9148 -8.41967e-20) (-51.2175 24.9178 0) (-51.199 24.592 8.41892e-20) (-51.0903 24.5955 1.06084e-23) (-51.0714 24.276 -8.42133e-20) (-51.041 23.9516 1.69895e-19) (-50.9387 23.9683 -8.4418e-20) (-50.906 23.6487 -2.11499e-19) (-50.8649 23.3246 3.40051e-19) (-50.7633 23.3511 8.43657e-20) (-50.7201 23.023 -8.44772e-20) (-50.6686 22.6833 1.70336e-19) (-50.5582 22.7204 0) (-50.505 22.3733 -1.69447e-19) (-50.452 22.0156 3.40529e-19) (-50.3244 22.0478 8.45105e-20) (-50.2798 21.6666 -8.46354e-20) (-50.2462 21.2671 0) (-50.0858 21.2734 8.47271e-20) (-50.0747 20.8355 -2.12295e-19) (-50.0932 20.3827 3.41457e-19) (-49.8925 20.3211 8.47011e-20) (-49.9654 19.8123 -8.48426e-20) (-50.0903 19.2943 1.71129e-19) (-49.8559 19.1062 0) (-50.0837 18.5282 -1.70262e-19) (-50.3876 17.9702 3.4229e-19) (-50.1558 17.5692 8.49238e-20) (-50.6329 16.9537 -8.52945e-20) (-51.2202 16.3801 -8.60088e-20) (-51.0455 15.6826 8.5561e-20) (-51.8622 15.0814 3.25558e-20) (-52.7507 14.5432 -1.11418e-20) (-52.7076 13.5565 4.47486e-20) (-53.7861 13.0051 -5.2981e-20) (-54.9072 12.273 0) (-58.715 7.89736 -1.59174e-18) (-72.2307 -8.47249 0) (-118.274 -50.7279 3.31837e-19) (-60.0891 9.72422 8.52447e-19) (-56.2042 12.9787 -2.4273e-18) (-54.6313 13.4887 0) (-53.6683 14.0353 5.82857e-21) (-53.3992 14.9734 -4.73782e-20) (-52.6281 15.3915 4.51555e-20) (-51.8925 15.8564 0) (-51.7784 16.458 0) (-51.2414 16.9367 0) (-50.7721 17.4393 -1.71919e-19) (-50.7973 17.8208 8.81581e-19) (-50.5045 18.2875 -3.49517e-19) (-50.2685 18.7791 -1.73116e-19) (-50.3686 18.9659 1.24883e-18) (-50.2396 19.4435 3.46036e-19) (-50.1476 19.9174 -5.1431e-19) (-50.2662 19.999 7.03827e-19) (-50.2327 20.4306 -3.48444e-19) (-50.2276 20.8522 0) (-50.3355 20.8576 1.77718e-18) (-50.3657 21.2584 -3.44857e-19) (-50.4052 21.6445 -1.7088e-19) (-50.5003 21.6215 1.05192e-18) (-50.5514 21.9834 -3.47658e-19) (-50.6101 22.3345 -1.72234e-19) (-50.6942 22.2914 1.24225e-18) (-50.7603 22.6453 3.44376e-19) (-50.8174 22.9905 -5.12019e-19) (-50.8997 22.9584 7.00518e-19) (-50.9508 23.2966 -1.73456e-19) (-50.9991 23.6236 0) (-51.0784 23.5942 0) (-51.1303 23.9307 0) (-51.1703 24.2634 -3.38751e-19) (-51.257 24.2475 -3.45461e-19) (-51.2952 24.5814 0) (-51.3795 24.565 0) (-51.4513 24.5413 0) (-51.3913 24.2117 -7.93037e-19) (-51.3302 24.231 7.23643e-19) (-51.2737 23.9219 6.07464e-18) (-51.2043 23.9111 6.74975e-19) (-51.1413 23.5749 0) (-51.2026 23.3451 4.70952e-22) (-51.3324 23.879 7.18127e-18) (-51.4397 23.968 -1.15521e-18) (-51.521 24.5417 -6.29434e-18) (-51.5841 24.4933 7.34728e-18) (-51.6921 24.5937 0) (-51.7687 24.0088 -1.24011e-18) (-51.9656 25.348 0) (-52.095 26.0361 0) (-52.0091 26.2872 0) (-51.9678 25.9335 0) (-51.8901 25.9603 0) (-52.2274 25.9903 -6.68718e-18) (-52.3332 25.3235 5.43487e-22) (-52.0848 25.2137 7.20324e-18) (-52.5362 26.7581 8.04871e-18) (-52.3772 26.7593 -1.10946e-18) (-52.6669 27.4945 -4.01801e-19) (-52.8142 27.418 0) (-52.9313 26.6948 3.29602e-19) (-52.673 26.5967 0) (-52.5342 24.9555 2.09745e-22) (-52.6808 24.5562 0) (-53.1499 26.37 3.51513e-19) (-53.5532 28.1403 -6.6205e-19) (-53.8961 29.9274 3.08018e-19) (-54.078 31.4363 0) (-53.8707 31.4343 1.09935e-18) (-54.0023 32.2914 -1.27666e-18) (-54.151 32.9343 6.79042e-18) (-54.3396 33.0664 3.61978e-22) (-54.2062 33.3307 -5.42239e-18) (-54.4024 33.7292 5.74555e-18) (-54.5189 33.6806 -7.37261e-18) (-54.6984 33.8121 -5.53299e-18) (-54.5945 34.0793 0) (-54.9272 33.1887 5.65356e-22) (-54.543 32.9373 2.60642e-20) (-54.4051 32.1151 -6.67774e-18) (-54.2227 32.2083 0) (-54.5661 31.3641 -5.16689e-22) (-54.2581 31.26 7.15692e-18) (-54.8272 31.0243 8.77463e-20) (-55.2596 32.8108 0) (-55.6577 34.6118 1.22944e-18) (-55.4641 35.3357 -5.10152e-18) (-55.2662 35.4541 -1.33894e-18) (-55.0691 35.3302 2.15102e-19) (-55.4702 36.0814 1.07851e-19) (-55.6687 36.1942 0) (-55.5564 36.4849 0) (-55.778 36.8866 0) (-55.8911 36.8172 -1.07524e-19) (-56.0854 36.9164 -1.34495e-18) (-56.2107 37.613 0) (-56.3115 38.0012 7.0795e-19) (-56.3976 38.4213 1.72789e-19) (-56.495 38.8277 0) (-56.5973 39.2505 0) (-56.6897 39.6713 1.62737e-19) (-56.8356 39.6088 -3.30834e-19) (-56.9326 40.0257 6.5297e-19) (-57.0741 39.9574 -6.01824e-23) (-57.1773 40.3708 -4.88541e-19) (-57.3154 40.2961 0) (-57.4234 40.7084 -2.95037e-23) (-57.5568 40.628 6.60999e-19) (-57.6713 41.0387 1.61901e-19) (-57.7814 41.4512 -2.41284e-19) (-57.9206 41.3622 -1.62322e-19) (-58.0366 41.7718 -8.00793e-20) (-58.1714 41.6773 3.22205e-19) (-58.2938 42.0852 0) (-58.4241 41.9842 1.61559e-19) (-58.5526 42.389 -1.59574e-19) (-58.6779 42.2816 3.21929e-19) (-58.8126 42.6837 0) (-58.9305 42.5721 1.63206e-19) (-58.791 42.1739 6.5862e-19) (-58.6419 41.7776 -6.50678e-19) (-58.5412 41.8808 -6.56027e-19) (-58.4006 41.4871 3.41016e-19) (-58.2934 41.5799 6.55105e-19) (-58.1545 41.18 1.15292e-22) (-58.0461 41.2709 -3.28507e-19) (-57.9165 40.8699 -6.86027e-19) (-57.8016 40.9525 6.5862e-19) (-57.6728 40.5475 -6.53671e-19) (-57.7857 40.5015 -5.62758e-19) (-57.6379 39.7847 -6.31084e-19) (-57.8918 40.3831 -2.05278e-19) (-58.0953 40.4116 -9.44502e-19) (-58.0162 40.7853 0) (-58.2605 41.1244 6.1538e-18) (-58.3583 40.9958 -4.08675e-19) (-58.5525 41.0113 9.51004e-19) (-58.7412 41.7099 -5.992e-18) (-58.8909 42.0723 -3.45588e-19) (-59.0331 42.4624 3.39113e-19) (-59.1175 42.3412 -1.82122e-19) (-59.3307 42.3819 0) (-59.6475 42.9291 2.06406e-19) (-59.8326 42.9152 2.07187e-22) (-60.1647 43.4418 -2.08259e-19) (-60.3499 43.4157 -2.63745e-18) (-60.6076 44.0865 5.95957e-18) (-60.6808 43.9141 6.6312e-18) (-60.8568 43.8581 6.29936e-19) (-60.8689 44.2867 0) (-61.1451 44.5326 1.47337e-18) (-61.2147 44.3473 6.51897e-18) (-61.3893 44.2782 -1.32541e-18) (-61.4143 44.714 -6.46314e-19) (-61.6945 44.9399 -1.85351e-19) (-61.9069 45.278 2.64001e-23) (-62.1087 45.6474 1.66218e-19) (-62.3303 46.0096 0) (-62.5522 46.3807 -3.17038e-19) (-62.7707 46.749 4.72274e-19) (-62.859 46.5612 0) (-63.0828 46.9233 -1.57803e-19) (-63.1653 46.7271 0) (-63.3978 47.0829 0) (-63.4771 46.8777 0) (-63.7151 47.2306 1.57624e-19) (-63.7872 47.0178 0) (-64.0347 47.3657 0) (-64.283 47.7162 -7.77671e-20) (-64.357 47.4882 0) (-64.6141 47.8337 -7.74089e-20) (-64.6826 47.5961 0) (-64.9497 47.9389 -1.54626e-19) (-65.0128 47.6917 -4.67281e-19) (-65.2884 48.0306 1.54106e-19) (-65.3454 47.7748 0) (-65.6296 48.1118 1.11166e-23) (-65.9182 48.4475 3.86132e-20) (-66.2079 48.7842 -1.54434e-19) (-66.4976 49.1181 0) (-66.7881 49.4492 0) (-67.0792 49.7769 0) (-67.1737 49.5001 0) (-67.4768 49.8238 -9.72627e-21) (-67.5643 49.5352 0) (-67.8797 49.8543 -9.6929e-21) (-67.9599 49.5526 0) (-68.2882 49.8678 -9.65924e-21) (-68.6185 50.1813 9.72257e-21) (-68.7024 49.8641 -9.62488e-21) (-69.0464 50.1738 0) (-69.1226 49.8428 0) (-69.4804 50.1485 -5.02922e-25) (-69.5485 49.8034 4.78017e-21) (-69.9206 50.105 9.62144e-21) (-69.98 49.7458 -9.5366e-21) (-69.5974 49.4482 3.80255e-20) (-69.2191 49.15 3.79106e-20) (-69.1799 49.5011 -3.81013e-20) (-68.8152 49.1979 7.59873e-20) (-68.7677 49.536 0) (-68.4164 49.2282 1.52452e-19) (-68.361 49.5531 0) (-68.0227 49.2406 1.52979e-19) (-67.6878 48.9283 3.06907e-19) (-67.6342 49.2357 9.68269e-24) (-67.3109 48.9186 -7.68713e-20) (-67.2506 49.2138 1.53812e-19) (-66.9393 48.891 4.74154e-23) (-66.872 49.1741 7.71866e-20) (-66.572 48.8455 -7.70482e-20) (-66.2733 48.5145 1.54819e-19) (-66.323 48.2422 -6.22357e-19) (-66.6307 48.567 1.54546e-19) (-66.6769 48.2862 -3.13425e-19) (-66.9913 48.6023 3.09651e-19) (-67.0287 48.3091 -3.13834e-19) (-67.3562 48.6159 9.4063e-23) (-67.3911 48.3094 6.2557e-19) (-67.7274 48.6146 -3.08837e-19) (-68.0691 48.921 -1.52899e-19) (-68.1008 48.5943 6.13712e-19) (-68.4553 48.8958 -4.57052e-19) (-68.4793 48.5578 3.07362e-19) (-68.8458 48.8523 0) (-68.8617 48.5015 -3.05763e-19) (-69.2411 48.7932 -2.27956e-19) (-69.6281 49.0848 3.79958e-20) (-70.02 49.3774 0) (-70.4166 49.6687 -1.90249e-20) (-70.8182 49.9595 -3.82334e-20) (-71.2245 50.2496 0) (-71.2757 49.8549 -3.80634e-20) (-71.6983 50.1395 -9.57294e-21) (-71.7394 49.7287 0) (-71.7595 49.3071 1.50836e-19) (-71.3183 49.0372 -1.51028e-19) (-71.3066 49.4504 1.1342e-19) (-70.88 49.1729 -2.27073e-19) (-70.8586 49.5705 3.79653e-20) (-70.4471 49.2865 -7.57782e-20) (-70.0415 49.0028 0) (-69.6417 48.7185 -1.532e-19) (-69.2472 48.4363 7.73182e-19) (-69.237 48.0807 -1.59895e-19) (-69.6404 48.3531 0) (-70.0453 48.6257 3.05359e-19) (-70.4602 48.8977 -1.51759e-19) (-70.4605 48.5058 -3.07344e-19) (-70.8848 48.7698 -1.51986e-19) (-70.8735 48.363 -6.13866e-19) (-71.3126 48.6176 0) (-71.76 48.8784 -7.52799e-20) (-71.7419 48.4437 0) (-72.2037 48.6962 7.49665e-20) (-72.1728 48.2478 0) (-72.6497 48.4932 7.50581e-20) (-73.1389 48.7385 -1.12529e-19) (-73.6373 48.9835 -1.12584e-19) (-73.6034 48.4988 1.50192e-19) (-73.0989 48.268 4.53703e-19) (-72.6026 48.0356 -1.52497e-19) (-72.1288 47.8003 -6.18037e-19) (-71.6555 47.5706 6.07993e-19) (-71.7061 48.009 0) (-71.2611 47.7794 -3.17644e-19) (-71.293 48.1949 3.06637e-19) (-70.8467 47.9496 6.05205e-19) (-70.8224 47.5689 0) (-70.1239 46.9943 1.2283e-18) (-70.7654 47.1013 6.1263e-18) (-70.8474 46.6075 -2.66828e-18) (-71.2116 47.36 0) (-71.6127 47.1648 0) (-72.0774 47.3614 0) (-72.5357 47.5817 -1.57814e-19) (-73.0415 47.8006 1.08089e-18) (-73.5487 48.0133 6.0251e-19) (-74.073 48.2264 -2.99109e-19) (-74.0117 47.7217 6.05449e-19) (-74.5449 47.9201 -3.00725e-19) (-74.4634 47.398 9.12098e-19) (-75.0156 47.5823 1.49901e-19) (-75.5829 47.7738 -2.23547e-19) (-75.4813 47.2214 3.02293e-19) (-76.0721 47.399 2.99958e-19) (-75.9566 46.8366 -2.04824e-24) (-76.5557 46.9847 -2.98568e-19) (-77.179 47.1386 1.48252e-19) (-77.0486 46.5317 6.00165e-19) (-77.6767 46.6657 2.96781e-19) (-77.5151 46.0414 6.01585e-19) (-77.3314 45.4157 -6.72548e-23) (-76.7366 45.3362 -4.85324e-18) (-76.9051 45.9364 -1.24082e-18) (-76.3031 45.8325 6.766e-19) (-76.4219 46.396 -5.85751e-19) (-75.8284 46.2946 0) (-75.2943 45.3669 6.07311e-19) (-76.123 45.1791 9.40636e-20) (-76.0794 44.3961 1.24651e-18) (-77.1628 44.8318 -5.19875e-19) (-76.9479 44.1642 -1.96188e-19) (-76.8695 43.3508 -1.45205e-18) (-77.5693 44.2776 5.13255e-18) (-75.2269 41.4326 2.41495e-18) (-75.5106 43.1479 -6.41364e-18) (-74.4527 43.098 6.73052e-18) (-74.8911 44.2209 -1.86205e-18) (-73.8045 44.0548 7.89347e-19) (-74.1456 45.0856 -1.97655e-18) (-74.6912 45.9857 5.67656e-18) (-74.8152 46.5181 -1.28105e-22) (-74.9204 47.0448 -9.1738e-19) (-74.3655 46.8723 -6.02109e-19) (-73.8535 46.7233 0) (-73.9407 47.2257 -3.15025e-19) (-73.4257 47.0623 -5.47467e-18) (-73.4798 47.5252 -5.90863e-19) (-72.9709 47.3525 -6.63634e-18) (-72.5823 46.5359 1.21584e-18) (-72.4524 47.1209 5.44834e-18) (-72.009 46.9187 0) (-71.6158 46.1669 -6.78416e-18) (-71.5456 46.6775 6.40121e-18) (-70.6855 44.5831 2.27158e-18) (-72.3631 45.5814 -6.51031e-18) (-73.4086 45.8981 1.9373e-18) (-73.3399 46.5163 0) (-74.2754 46.3782 -1.73986e-19) (-74.1465 45.7954 -1.65959e-22) (-73.0753 44.8413 6.2e-18) (-71.8971 43.1644 -9.06585e-19) (-72.0579 44.4453 -4.30828e-19) (-73.3301 42.8054 0) (-72.9528 41.3232 -1.287e-18) (-70.7571 41.0652 -1.74318e-19) (-68.7928 40.7474 1.7454e-19) (-69.8638 42.6481 -3.46099e-19) (-68.0391 42.0747 -3.44764e-19) (-68.8795 43.8358 1.77807e-18) (-69.7858 45.3366 -4.00639e-19) (-69.9662 46.1557 1.88765e-19) (-69.1413 45.7641 4.01672e-19) (-69.2557 46.4937 7.04565e-19) (-69.3751 47.3156 -1.22403e-18) (-69.6245 48.0072 8.44872e-19) (-70.0351 48.2465 -1.82331e-22) (-70.0325 47.8944 6.05293e-18) (-70.4514 48.1181 -6.37043e-19) (-70.426 47.724 -5.57365e-18) (-70.0046 47.4554 1.92078e-19) (-69.2123 47.7175 -1.72115e-19) (-68.854 47.4584 -3.54606e-19) (-68.8692 47.8062 3.25967e-19) (-68.8687 48.1501 6.23274e-19) (-68.4863 47.8698 -6.12757e-19) (-68.4888 48.2161 -9.32125e-19) (-68.1306 47.9416 6.46371e-19) (-68.1212 48.2656 -6.2155e-19) (-67.7649 47.9764 -6.18983e-19) (-67.7531 48.2978 -6.25183e-19) (-67.4162 48.0072 6.50292e-19) (-67.0798 47.7436 -4.80559e-18) (-67.0517 48.0094 -1.2371e-18) (-66.7307 47.7258 0) (-66.7123 48.0091 0) (-66.3976 47.7301 0) (-66.358 47.9705 -6.12842e-19) (-66.0443 47.6649 6.86177e-19) (-66.0177 47.9144 3.18944e-19) (-65.975 48.1814 0) (-65.678 47.8518 0) (-65.3923 47.5189 0) (-65.1005 47.1899 0) (-65.0628 47.4424 3.15692e-19) (-64.7873 47.1187 3.27387e-19) (-64.7401 47.3556 3.15408e-19) (-64.4636 47.0233 0) (-64.417 47.2576 0) (-64.1593 46.926 3.29517e-19) (-64.103 47.1442 -3.1739e-19) (-63.8448 46.8021 6.29185e-19) (-63.9032 46.6197 -9.87754e-23) (-63.5277 45.9608 -1.24448e-18) (-63.9462 46.359 -1.97656e-19) (-64.1054 46.1716 -9.30747e-19) (-64.2013 46.703 -5.39695e-19) (-64.513 46.822 5.73468e-18) (-64.5467 46.5422 6.29204e-18) (-64.703 46.3286 3.11692e-19) (-65.1409 46.9721 -5.75054e-18) (-65.4305 47.2685 0) (-65.7112 47.5934 0) (-65.7292 47.3244 -1.74981e-19) (-65.9141 47.1011 0) (-66.4165 47.411 0) (-66.5615 47.124 6.13338e-19) (-67.092 47.4015 -9.99016e-20) (-67.24 47.0953 6.48619e-19) (-67.4268 47.7023 6.23971e-19) (-67.7767 47.6903 0) (-67.7697 47.3235 -6.15644e-18) (-67.8968 46.9604 -1.24623e-18) (-68.1254 47.6124 5.31219e-19) (-68.4911 47.5576 3.52811e-19) (-68.4788 47.1692 5.9337e-18) (-68.5988 46.7858 3.56603e-22) (-67.8271 46.289 -8.29194e-19) (-66.6104 45.1028 -1.06249e-18) (-67.1746 46.4094 8.26296e-19) (-66.4925 45.797 0) (-66.5451 46.5369 -5.72001e-18) (-65.4647 45.318 1.21013e-18) (-65.8898 46.5273 2.46365e-20) (-65.2579 45.8629 -2.4552e-20) (-65.2906 46.4354 -1.4057e-18) (-65.4511 47.0154 1.79205e-19) (-65.1629 46.6788 6.33572e-18) (-64.7133 45.7865 -1.35621e-18) (-64.1493 45.2104 -5.73357e-18) (-64.1251 45.6447 0) (-63.5894 45.018 -7.35164e-18) (-63.5748 45.4799 -3.78402e-19) (-63.0698 44.8697 6.91731e-18) (-63.0095 45.2396 -7.15387e-19) (-62.9483 45.6971 1.86854e-18) (-62.9961 46.1891 0) (-62.9353 46.3772 -6.6493e-19) (-62.7053 46.0535 6.49912e-18) (-62.6276 46.2005 6.23986e-19) (-62.3956 45.8452 -7.01456e-19) (-62.3772 45.3854 -1.86303e-18) (-62.7705 45.8313 0) (-62.1681 45.4612 -1.78937e-19) (-61.9666 45.1044 -5.49718e-18) (-61.9148 44.6225 2.01966e-18) (-61.7546 44.7365 2.07049e-19) (-62.0152 44.3135 0) (-62.4737 44.967 7.55127e-19) (-62.5292 44.5641 0) (-62.2779 43.504 1.52897e-19) (-62.0653 43.8161 -6.9398e-18) (-61.3121 42.8946 1.52158e-19) (-61.4651 43.8921 -8.45301e-19) (-61.0667 43.1297 -6.61075e-18) (-60.9775 43.5698 5.45919e-18) (-60.3887 42.1333 1.37509e-18) (-60.4596 43.0829 -2.09733e-19) (-60.1066 42.3001 -7.03546e-18) (-59.982 42.681 1.03757e-18) (-59.4679 41.2375 -1.21886e-18) (-59.4589 42.1125 5.57498e-18) (-59.1288 41.2842 5.23974e-19) (-59.0004 41.5719 1.07147e-18) (-58.9751 41.9692 0) (-58.8301 41.5775 -6.59723e-18) (-58.7093 40.756 3.94041e-19) (-58.4081 40.0142 -6.65799e-18) (-58.2542 40.1701 0) (-57.9442 39.368 -6.22241e-18) (-57.8114 39.5696 -1.15301e-18) (-57.5337 38.8297 7.02413e-18) (-57.3687 38.9403 7.2595e-19) (-57.1878 39.1389 2.52654e-18) (-57.077 39.4865 -5.19911e-18) (-56.9647 39.5492 -6.90949e-19) (-56.8542 39.1736 5.62082e-19) (-56.7277 39.1939 6.46944e-19) (-56.611 38.7777 5.0922e-18) (-56.7384 38.4622 -2.51917e-18) (-56.9742 39.082 1.03659e-19) (-56.5102 38.3456 5.76111e-18) (-56.4207 37.9383 -6.48377e-18) (-56.5023 37.597 1.70778e-18) (-56.3185 37.5293 6.88934e-18) (-56.6956 37.5335 4.08671e-19) (-56.9399 38.2878 0) (-57.0938 38.1237 0) (-57.1783 37.3013 -1.22207e-18) (-56.8584 37.2754 0) (-56.4012 35.9961 1.53074e-19) (-56.2572 36.7613 -1.71641e-18) (-56.0653 35.921 0) (-55.8801 36.133 8.51782e-19) (-55.9552 34.19 0) (-56.1337 33.7342 0) (-56.6628 35.5049 -1.10817e-22) (-56.794 34.9924 1.77193e-19) (-57.3836 36.7371 -3.52618e-19) (-57.9685 38.4975 2.76823e-18) (-57.6737 38.53 1.52318e-22) (-58.5298 39.6686 -4.43182e-19) (-58.7897 39.5583 -6.53363e-19) (-58.836 40.501 3.11333e-19) (-58.1077 37.8671 7.08837e-19) (-57.4554 36.1606 -7.10056e-19) (-56.7917 34.4093 4.47812e-20) (-56.1177 32.6203 -4.49506e-20) (-56.1884 33.2077 4.47828e-20) (-55.5681 31.3896 2.83141e-23) (-55.5821 31.9277 -1.79078e-19) (-55.4786 32.4056 -5.77475e-23) (-54.9726 30.5857 8.93139e-20) (-55.0084 30.0897 4.5002e-20) (-54.9309 29.5355 0) (-54.7372 28.9228 2.81735e-21) (-55.4335 30.7917 0) (-55.1744 30.1348 0) (-55.9183 31.9723 0) (-56.6566 33.7666 2.2454e-20) (-57.3906 35.5182 -4.47519e-20) (-58.1224 37.2314 0) (-58.8687 38.9077 2.01114e-22) (-59.617 40.5195 2.32434e-22) (-59.6238 39.7833 4.39942e-19) (-60.455 41.3336 -1.75216e-19) (-60.3846 40.5156 8.81734e-20) (-61.3066 42.0011 1.74944e-19) (-61.1518 41.0838 -1.76182e-19) (-62.171 42.4909 -3.5021e-19) (-63.2373 43.8974 4.27459e-18) (-64.1192 44.5992 -7.41872e-18) (-64.2437 44.0799 3.24489e-19) (-64.6934 45.2771 6.12377e-19) (-63.907 42.8412 -1.06299e-22) (-65.2037 43.9754 -3.47272e-19) (-64.7537 42.6391 -8.74875e-20) (-66.1913 43.6393 -6.9685e-19) (-67.7573 44.6442 2.96252e-23) (-68.9418 44.8278 -6.86505e-18) (-68.4837 46.0514 1.99696e-19) (-67.7098 45.4693 6.68021e-18) (-67.1414 43.0106 3.5046e-19) (-65.5689 42.1621 8.76615e-20) (-64.0622 41.2334 1.76803e-19) (-62.6194 40.2228 0) (-63.3756 41.5615 0) (-62.0517 40.409 0) (-62.6479 41.6266 0) (-63.0322 42.771 1.42965e-22) (-61.9108 41.4602 -7.05088e-19) (-61.4455 40.3558 0) (-60.2786 39.0271 2.23062e-20) (-60.8116 40.0894 0) (-59.7357 38.6584 0) (-60.1479 39.6211 4.44809e-20) (-59.1674 38.1055 -4.46882e-20) (-59.4764 38.9776 -1.77827e-19) (-58.5828 37.3867 0) (-58.8005 38.1765 0) (-57.9876 36.5168 0) (-57.184 34.8119 4.48914e-20) (-56.833 34.0447 -4.48855e-20) (-57.7023 35.7419 2.24157e-20) (-57.2613 34.9025 0) (-58.206 36.5328 0) (-57.6619 35.6139 0) (-58.6872 37.1669 0) (-58.0266 36.1626 -1.3977e-21) (-59.1386 37.6275 0) (-58.3463 36.5321 0) (-59.5456 37.8963 -2.2333e-20) (-60.7769 39.1863 0) (-59.8957 37.9548 -4.4581e-20) (-61.2327 39.129 2.2261e-20) (-60.1786 37.7877 0) (-61.619 38.8246 0) (-63.1157 39.771 -2.21872e-20) (-64.6754 40.6254 4.42711e-20) (-66.3069 41.3928 0) (-65.1779 39.7197 0) (-66.9361 40.2929 0) (-65.5198 38.4982 -2.20862e-20) (-67.3795 38.8464 -4.40547e-20) (-69.3357 39.0547 -1.7445e-19) (-71.4185 39.1202 3.4353e-19) (-73.6125 39.0174 -3.44949e-19) (-76.0676 38.7699 -9.04866e-19) (-78.1283 40.6187 4.10286e-19) (-76.7814 40.5772 6.41651e-18) (-77.5315 42.034 -5.6485e-18) (-78.5509 39.0703 -7.86785e-19) (-79.8506 38.7914 1.31035e-18) (-78.8923 37.4844 2.97137e-19) (-76.4202 35.7546 3.21478e-19) (-77.5051 37.6289 0) (-78.8239 34.8417 -2.44816e-18) (-81.4899 34.5238 6.61691e-18) (-82.7469 33.8417 2.34794e-20) (-81.41 32.5151 0) (-78.374 31.0732 -9.70983e-19) (-80.0129 33.0874 6.36982e-18) (-80.6268 29.2534 8.19399e-20) (-83.9178 30.6316 0) (-85.0083 29.3688 -4.0657e-19) (-82.7779 26.8529 -1.3023e-18) (-86.3884 27.9455 6.08494e-18) (-87.2986 26.3567 -7.81322e-19) (-84.6979 23.9919 0) (-88.6233 24.6123 1.56658e-18) (-89.8965 25.7514 -6.84735e-18) (-91.0883 26.417 5.10971e-18) (-86.2155 20.8746 1.03375e-20) (-81.2787 19.4985 -1.07077e-20) (-82.0094 16.803 0) (-82.2724 14.2904 0) (-87.4221 14.5883 0) (-82.144 12.1181 0) (-81.7372 10.3286 0) (-86.4955 9.91117 1.33356e-18) (-81.1439 8.78839 0) (-80.4249 7.42643 0) (-84.6505 6.68337 1.29449e-18) (-79.6462 6.27486 0) (-78.8594 5.32964 0) (-82.6883 4.56068 0) (-78.0948 4.56535 0) (-77.3655 3.95085 0) (-80.979 3.26696 2.61402e-18) (-76.679 3.45602 0) (-76.0342 3.05623 0) (-79.5399 2.46947 2.59274e-18) (-75.4279 2.73192 0) (-74.8558 2.46692 0) (-78.3122 1.96139 1.31785e-18) (-74.3154 2.24818 0) (-73.8018 2.06598 0) (-77.2385 1.62403 0) (-73.3117 1.91272 0) (-72.8421 1.78225 0) (-76.276 1.38911 -1.31686e-18) (-72.3906 1.66978 0) (-71.9548 1.57145 0) (-75.3957 1.21659 0) (-71.533 1.48419 0) (-71.1236 1.40552 0) (-74.5782 1.0818 0) (-70.7255 1.33346 0) (-70.337 1.26641 0) (-73.8106 0.968906 2.05493e-20) (-69.9586 1.20289 0) (-69.5885 1.14194 0) (-73.0841 0.867992 0) (-69.2268 1.0827 0) (-68.8726 1.02445 0) (-72.3939 0.77194 1.31372e-18) (-68.5264 0.966611 0) (-68.1873 0.908785 0) (-71.7376 0.677155 2.05225e-20) (-67.856 0.850534 0) (-67.5316 0.791694 0) (-71.1129 0.580759 0) (-67.2144 0.732075 0) (-66.9044 0.671521 0) (-70.5199 0.481132 0) (-66.6018 0.609958 0) (-66.3061 0.547416 0) (-69.9587 0.377634 4.09763e-20) (-66.0181 0.483832 0) (-65.738 0.419244 0) (-69.4301 0.270732 0) (-65.4653 0.353867 0) (-65.2005 0.287835 0) (-68.9351 0.160619 0) (-64.9437 0.221257 0) (-64.6951 0.1543 0) (-68.4751 0.048406 0) (-64.455 0.0871407 0) (-64.2229 0.019904 0) (-68.0519 -0.065275 2.04366e-20) (-64.0009 -0.0474314 0) (-63.7869 -0.114935 0) (-67.6656 -0.17926 0) (-63.5816 -0.181955 0) (-63.3852 -0.248137 2.12615e-20) (-67.3188 -0.291775 0) (-63.1973 -0.313355 1.63113e-23) (-63.0186 -0.377436 -2.12422e-20) (-67.0136 -0.40122 2.60982e-18) (-62.8485 -0.440157 0) (-62.6876 -0.501163 0) (-66.7502 -0.505958 2.56701e-18) (-62.5344 -0.560176 0) (-62.3899 -0.616921 0) (-66.5276 -0.604614 -2.03586e-20) (-62.2526 -0.670998 0) (-62.1229 -0.721994 0) (-66.3437 -0.695586 -1.30033e-18) (-61.9986 -0.769612 0) (-61.8803 -0.813502 0) (-66.1964 -0.776025 2.58241e-18) (-61.7671 -0.853043 0) (-61.6571 -0.887663 0) (-66.0783 -0.842639 1.27912e-18) (-61.55 -0.916691 0) (-61.4434 -0.939265 0) (-65.9818 -0.89109 0) (-61.3372 -0.954495 0) (-61.2292 -0.961289 0) (-65.8971 -0.916261 1.29899e-18) (-61.1185 -0.958575 0) (-61.0032 -0.945153 0) (-65.811 -0.910377 -1.29702e-18) (-60.8826 -0.91944 0) (-60.7542 -0.88016 0) (-65.7099 -0.86289 -2.02778e-20) (-60.6186 -0.826263 0) (-60.4737 -0.756324 0) (-65.5794 -0.762908 2.55265e-18) (-60.3192 -0.669222 0) (-60.1531 -0.564106 0) (-65.4066 -0.600712 0) (-59.9755 -0.439944 0) (-59.7863 -0.295155 0) (-65.1751 -0.368086 2.55314e-18) (-59.5848 -0.127803 0) (-59.3681 0.0616788 0) (-64.8705 -0.0492407 1.29827e-18) (-59.1405 0.273701 0) (-58.9005 0.510239 0) (-64.4834 0.369375 1.27732e-18) (-58.6493 0.77348 0) (-58.385 1.0657 0) (-64.0175 0.899176 1.29873e-18) (-58.1091 1.38924 0) (-57.8185 1.74766 0) (-63.469 1.5534 1.27893e-18) (-57.512 2.14468 0) (-57.1874 2.58486 0) (-62.82 2.35482 2.55754e-18) (-56.8418 3.07361 0) (-56.4716 3.61697 0) (-62.0343 3.3358 1.2787e-18) (-56.0725 4.22173 0) (-55.6381 4.8958 0) (-61.0531 4.53299 4.05385e-20) (-55.1628 5.64783 0) (-54.6382 6.48822 0) (-59.7816 5.99097 0) (-54.0521 7.4304 0) (-53.3928 8.49069 0) (-58.0416 7.77806 0) (-52.645 9.68774 0) (-51.7895 11.0388 0) (-55.5859 9.98039 0) (-50.8001 12.5568 0) (-49.6516 14.2516 1.31334e-21) (-52.2096 12.7136 -5.85982e-22) (-48.3368 16.1327 -1.04702e-20) (-46.8983 18.1883 2.07125e-20) (-48.0607 16.1976 -1.27153e-18) (-45.3023 20.3538 0) (-43.6962 22.7838 6.51031e-19) (-43.4202 20.8006 -4.65605e-19) (-42.5303 25.2684 0) (-41.9196 27.4358 -4.32653e-20) (-41.0191 26.6112 1.60522e-18) (-41.4675 29.3865 -1.52342e-18) (-41.6608 29.0758 3.34631e-18) (-40.9082 29.289 -1.74907e-18) (-41.3608 28.0697 -1.48554e-18) (-39.7464 28.4038 7.46405e-19) (-39.344 29.4698 2.736e-20) (-36.9627 29.5619 -2.65625e-18) (-37.179 28.4932 3.38239e-19) (-33.7784 28.1968 2.43083e-20) (-33.8851 29.4726 8.59513e-19) (-30.1269 29.048 2.66041e-20) (-29.6876 27.5146 4.84454e-19) (-25.0158 26.5744 -9.74963e-20) (-25.8299 28.2553 0) (-20.9966 27.1219 -1.34244e-20) (-19.8076 25.4435 0) (-14.1586 24.1659 2.46832e-20) (-15.5486 25.6975 1.3567e-20) (-9.52717 24.0825 1.71131e-21) (-8.20909 22.9304 0) (-2.14928 21.8994 0) (-3.02401 22.6158 -1.72363e-21) (2.71862 21.1368 0) (3.48363 20.9136 0) (8.79893 20.0921 0) (8.05144 20.1924 0) (13.3127 19.4268 0) (14.0178 19.3819 0) (19.2662 18.7444 0) (18.602 18.7675 0) (23.9853 18.1626 0) (24.6156 18.1475 0) (30.1108 17.5814 0) (29.5082 17.5932 0) (35.1966 17.0516 0) (35.7764 17.0426 0) (41.6202 16.5274 0) (41.0592 16.5319 0) (47.0891 16.0266 0) (47.6398 16.026 0) (53.8288 15.5297 0) (53.2759 15.5226 0) (59.639 15.0198 0) (60.1926 15.043 0) (66.7701 14.5562 0) (66.2215 14.5211 0) (73.0742 14.0277 0) (73.6208 14.0716 0) (80.8022 13.5912 0) (80.253 13.5371 0) (87.7891 13.0427 0) (88.3454 13.108 0) (96.2353 12.616 0) (95.6686 12.5388 0) (103.828 12.0205 0) (104.408 12.1099 0) (112.769 11.5886 0) (112.172 11.4881 0) (120.593 10.9434 0) (121.209 11.053 0) (129.614 10.5032 0) (128.979 10.386 0) (137.214 9.81711 0) (137.864 9.93968 0) (145.839 9.36499 0) (145.176 9.24004 0) (152.756 8.65996 0) (153.426 8.78236 0) (160.549 8.19518 6.29817e-21) (159.876 8.08054 0) (166.532 7.50185 0) (167.203 7.60461 -1.88854e-20) (173.51 6.981 -3.7767e-20) (172.828 6.9204 0) (178.881 6.30623 0) (179.592 6.34304 1.50911e-19) (185.424 5.67237 -1.00133e-19) (184.705 5.64548 2.73777e-20) (190.195 4.94175 0) (190.923 4.96407 0) (196.009 4.21236 0) (195.268 4.19068 -4.28824e-19) (199.731 3.39939 4.32816e-19) (200.522 3.41332 0) (204.27 2.5918 -9.9445e-20) (203.433 2.58437 -1.03842e-23) (206.143 1.79766 5.9568e-19) (206.999 1.7941 -5.3504e-20) (208.678 1.04226 -2.21654e-19) (207.788 1.05386 -5.10958e-19) (209.444 1.04858 3.2602e-19) (207.747 1.80562 -6.40782e-19) (204.994 2.61418 7.36441e-19) (201.222 3.43956 -7.23215e-19) (196.68 4.23778 9.13893e-20) (191.584 4.99048 9.26175e-20) (186.076 5.7019 -9.34082e-20) (180.235 6.37838 -2.34344e-20) (174.132 7.0219 2.93133e-20) (167.808 7.63728 -5.86117e-21) (161.152 8.22475 0) (154.03 8.80928 0) (146.442 9.38915 0) (138.462 9.9596 0) (130.202 10.5166 0) (121.785 11.0578 0) (113.332 11.5824 0) (104.956 12.0904 0) (96.7673 12.5822 0) (88.8638 13.0597 0) (81.3127 13.5297 0) (74.131 13.9995 0) (67.2858 14.4743 0) (60.7114 14.9488 0) (54.3396 15.4369 0) (48.1502 15.9299 0) (42.1447 16.4202 0) (36.3202 16.922 0) (30.6764 17.441 0) (25.205 17.9771 0) (19.882 18.5271 0) (14.6622 19.0882 0) (9.47322 19.6765 0) (4.19501 20.3048 0) (-1.31609 20.9607 0) (-7.12353 21.6761 0) (-12.9846 22.5929 -2.29795e-20) (-18.6735 23.6198 0) (-24.0513 24.6132 0) (-29.0109 25.499 0) (-33.4397 26.2202 -3.58232e-19) (-37.2054 26.642 3.54582e-19) (-40.113 26.6239 -7.00208e-19) (-41.9579 26.1596 5.13087e-19) (-42.7442 23.8078 -5.84742e-19) (-40.4535 24.3338 3.41051e-19) (-40.777 21.8936 1.72043e-19) (-43.6572 21.387 -8.39499e-20) (-44.547 19.1099 4.26091e-20) (-41.0882 19.5524 -8.71346e-20) (-41.3977 17.3814 -1.48644e-23) (-45.3349 16.9514 -1.63311e-23) (-46.0459 14.9764 2.70441e-21) (-41.7233 15.4055 -2.7624e-21) (-36.9661 15.5918 0) (-36.8843 17.513 -3.3412e-20) (-36.8842 19.6254 6.62909e-20) (-36.964 21.9122 0) (-37.0981 24.318 4.32984e-20) (-32.9662 23.9347 8.73679e-20) (-28.2638 23.3139 -8.81121e-20) (-23.1392 22.5723 0) (-22.4089 20.5944 1.11348e-20) (-27.6249 21.1583 -1.1075e-20) (-32.5199 21.6338 0) (-32.195 19.4587 -1.11403e-20) (-32.0031 17.453 0) (-31.9325 15.6251 0) (-26.713 15.5656 0) (-26.8645 17.2704 -1.40794e-21) (-27.1609 19.135 1.68218e-20) (-21.8895 18.7452 -5.63157e-21) (-21.5554 17.0382 1.41386e-21) (-21.3756 15.468 0) (-15.9718 15.3706 0) (-16.1419 16.8058 0) (-16.4625 18.3506 0) (-16.9692 20.0109 0) (-17.7019 21.7809 0) (-12.0615 21.0125 0) (-6.33848 20.3583 0) (-0.694248 19.8662 0) (-0.253698 18.6956 0) (-5.79136 19.0206 0) (-11.399 19.4685 0) (-10.9535 17.9965 0) (-10.6799 16.6062 0) (-10.5427 15.2966 0) (-5.12057 15.2567 0) (-5.21817 16.4573 0) (-5.43152 17.7137 0) (0.0354862 17.5183 0) (0.202305 16.3666 0) (0.270985 15.253 0) (0.259105 14.1849 0) (-5.11726 14.1159 0) (-10.5153 14.0668 0) (-15.9235 14.0388 0) (-21.3219 14.0262 0) (-26.682 14.0127 0) (-31.9652 13.9706 0) (-37.119 13.8591 0) (-42.0702 13.6286 0) (-46.699 13.2033 0) (-47.3026 11.6252 0) (-42.4341 12.0401 0) (-42.8083 10.6255 0) (-47.8643 10.225 0) (-48.3874 8.98253 0) (-43.1875 9.36706 0) (-43.5678 8.24715 0) (-48.8765 7.87904 0) (-49.3348 6.89726 0) (-43.9459 7.24947 0) (-44.3204 6.35946 -2.21322e-20) (-49.766 6.0218 0) (-50.1735 5.23963 0) (-44.6885 5.56379 2.21224e-20) (-45.0522 4.85174 -2.21091e-20) (-50.5604 4.53997 0) (-50.9295 3.91306 0) (-45.4081 4.2134 2.20954e-20) (-45.7586 3.64041 0) (-51.2827 3.35052 0) (-51.6222 2.84522 0) (-46.1021 3.12576 0) (-46.4393 2.66239 0) (-51.9488 2.39058 0) (-52.2643 1.98087 0) (-46.771 2.24441 -2.20186e-20) (-47.0956 1.86734 2.2044e-20) (-52.5709 1.61125 0) (-52.8671 1.27741 0) (-47.4159 1.52632 0) (-42.0128 1.80834 0) (-41.67 2.1544 0) (-41.3243 2.53667 0) (-40.9757 2.95966 0) (-40.6246 3.42815 0) (-40.2715 3.94777 0) (-39.9168 4.5254 0) (-39.562 5.16758 0) (-39.2091 5.88218 0) (-38.8601 6.67888 0) (-38.5185 7.5671 0) (-38.1881 8.55993 0) (-37.8747 9.67029 0) (-37.5856 10.9129 0) (-37.3299 12.3038 0) (-32.0823 12.4778 0) (-32.2661 11.135 0) (-32.5014 9.92843 0) (-27.1008 10.1633 0) (-26.8943 11.3217 0) (-26.7491 12.6012 0) (-21.3702 12.7036 0) (-21.5001 11.4938 0) (-21.6944 10.3892 0) (-21.9393 9.38148 0) (-27.3546 9.1148 0) (-32.7757 8.84403 0) (-33.0793 7.86917 0) (-33.4041 6.99279 0) (-33.7444 6.20344 0) (-28.2995 6.53161 0) (-27.9618 7.30824 0) (-27.6446 8.1661 0) (-22.2235 8.46324 0) (-22.5379 7.62766 0) (-22.8756 6.86698 0) (-17.4691 7.20781 0) (-17.1314 7.9508 0) (-16.8183 8.76241 0) (-16.5364 9.6487 0) (-16.2942 10.6144 0) (-16.1023 11.6645 0) (-15.9734 12.8045 0) (-10.5772 12.9148 0) (-10.7117 11.8403 0) (-10.905 10.842 0) (-5.52556 11.0711 0) (-5.33186 12.0213 0) (-5.19218 13.0367 0) (0.178585 13.1668 0) (0.0398795 12.2033 0) (-0.147782 11.2967 0) (-0.377507 10.4463 0) (-5.76263 10.1847 0) (-11.1461 9.91715 0) (-11.4258 9.0626 0) (-11.7365 8.27536 0) (-12.0723 7.55101 0) (-6.67384 7.89249 0) (-6.34326 8.59777 0) (-6.03806 9.36065 0) (-0.643227 9.65169 0) (-0.938392 8.91276 0) (-1.2609 8.22719 0) (-1.60238 7.59333 0) (-7.02517 7.24251 0) (-12.4281 6.88626 0) (-17.8259 6.52911 0) (-23.2309 6.17553 0) (-28.6521 5.82916 0) (-34.0952 5.49275 0) (-34.4533 4.85202 0) (-34.8159 4.27401 0) (-35.1805 3.75273 0) (-29.7622 4.09708 0) (-29.3865 4.61774 0) (-29.0155 5.19333 0) (-23.5992 5.547 0) (-23.9774 4.97588 0) (-24.3622 4.45761 0) (-24.7518 3.98681 0) (-30.141 3.62539 0) (-35.5461 3.28168 0) (-35.9118 2.85556 0) (-36.2766 2.46987 0) (-36.6404 2.12028 0) (-31.2858 2.458 0) (-30.9036 2.81 0) (-30.5219 3.19775 0) (-25.1451 3.55899 0) (-25.5407 3.17031 0) (-25.938 2.81693 0) (-20.5861 3.19254 0) (-20.1771 3.54625 0) (-19.771 3.93472 0) (-19.3686 4.36152 0) (-18.9712 4.83009 0) (-18.5802 5.34451 0) (-18.1973 5.90957 0) (-12.7996 6.27696 0) (-13.1842 5.71936 0) (-13.5773 5.2102 0) (-8.16841 5.59327 0) (-7.77533 6.09598 0) (-7.39336 6.64469 0) (-1.96385 7.00812 0) (-2.3398 6.46949 0) (-2.72832 5.9748 0) (-3.12772 5.52082 0) (-8.57093 5.13291 0) (-13.9795 4.74504 0) (-14.3875 4.32052 0) (-14.8004 3.93342 0) (-15.2175 3.58043 0) (-9.81868 3.9764 0) (-9.39756 4.32739 0) (-8.98056 4.71194 0) (-3.5363 5.10476 0) (-3.95227 4.72434 0) (-4.37484 4.37666 0) (1.12959 4.77788 0) (1.54996 5.12091 0) (1.96243 5.49582 0) (2.36596 5.90527 0) (2.75868 6.3513 0) (3.13896 6.83636 0) (3.50525 7.36333 0) (3.855 7.93459 0) (4.18549 8.55156 0) (4.49185 9.2163 0) (4.77326 9.93099 0) (5.02379 10.6972 0) (5.23858 11.5143 0) (5.41268 12.3816 0) (5.53781 13.2987 0) (5.6097 14.2618 0) (5.61875 15.2651 0) (5.55482 16.3017 0) (5.40321 17.3599 0) (5.14352 18.4185 0) (4.74856 19.4304 0) (10.0248 18.9808 0) (15.2259 18.5314 0) (20.4508 18.0788 0) (20.9149 17.4527 0) (15.6604 17.794 0) (10.427 18.1157 0) (10.6978 17.1758 0) (10.8643 16.2136 0) (10.9458 15.2559 0) (16.2842 15.2098 0) (16.1688 16.0912 0) (15.9673 16.9628 0) (21.2622 16.7212 0) (21.5073 15.9363 0) (21.6658 15.1294 0) (27.1304 15.0106 0) (26.9283 15.742 0) (26.6414 16.4418 0) (26.2584 17.0799 0) (25.7723 17.6106 0) (31.2377 17.1355 0) (36.8731 16.6614 0) (42.69 16.1925 0) (43.2012 15.854 0) (37.3798 16.2725 0) (31.7374 16.6833 0) (32.1479 16.128 0) (32.4705 15.5078 0) (32.7123 14.85 0) (38.4382 14.6526 0) (38.162 15.2408 0) (37.8104 15.7886 0) (43.647 15.4307 0) (44.0221 14.9475 0) (44.3277 14.4238 0) (50.3939 14.1688 0) (50.063 14.6329 0) (49.6677 15.0585 0) (49.2084 15.4301 0) (48.692 15.7279 0) (54.8815 15.2582 0) (61.2638 14.7802 0) (67.8415 14.3184 0) (68.3788 14.1081 0) (61.7967 14.5526 0) (55.4051 14.9986 0) (55.8773 14.6736 0) (56.2909 14.3001 0) (56.6449 13.8909 0) (63.0844 13.5915 0) (62.7087 13.9489 0) (62.2785 14.2719 0) (68.8721 13.8579 0) (69.3176 13.578 0) (69.7138 13.2693 0) (76.5531 12.9433 0) (76.1483 13.2119 0) (75.6987 13.4572 0) (75.2056 13.6754 0) (74.6768 13.8593 0) (81.8564 13.4051 0) (89.4162 12.9536 0) (97.3358 12.4951 0) (97.8823 12.3806 0) (89.9464 12.8157 0) (82.3801 13.2438 0) (82.8644 13.0538 0) (83.3085 12.8402 0) (83.7138 12.6066 0) (91.3072 12.2642 0) (90.8899 12.4676 0) (90.4371 12.6524 0) (98.3904 12.2428 0) (98.8625 12.0846 0) (99.3013 11.9086 0) (99.7078 11.7185 0) (91.6895 12.046 0) (84.0799 12.3569 0) (76.9118 12.6548 0) (70.0589 12.9382 0) (63.4041 13.2101 0) (56.9391 13.4571 0) (50.6614 13.6798 0) (44.5659 13.8762 0) (38.6435 14.0428 0) (32.8804 14.1754 0) (27.2575 14.2693 0) (21.7499 14.3218 0) (16.3268 14.3379 0) (10.9561 14.3188 0) (10.9056 13.4118 0) (10.8003 12.5414 0) (10.6494 11.7139 0) (16.1093 11.8827 0) (16.232 12.6666 0) (16.3067 13.4871 0) (21.7691 13.5275 0) (21.7308 12.7567 0) (21.6419 12.0165 0) (21.5078 11.3099 0) (15.9438 11.1375 0) (10.4567 10.931 0) (10.2277 10.1942 0) (9.96738 9.50442 0) (9.67811 8.86048 0) (15.2369 9.15034 0) (15.5031 9.7705 0) (15.7404 10.4329 0) (21.3334 10.6396 0) (21.1235 10.008 0) (20.8826 9.41492 0) (26.632 9.65156 0) (26.8461 10.2163 0) (27.0257 10.8161 0) (27.1676 11.4508 0) (27.267 12.1175 0) (27.319 12.813 0) (27.318 13.533 0) (32.9816 13.4987 0) (33.022 12.8321 0) (33.0076 12.1842 0) (38.8838 12.2147 0) (38.8612 12.8134 0) (38.7829 13.4258 0) (44.7402 13.3176 0) (44.8543 12.7595 0) (44.9124 12.2106 0) (44.9193 11.6764 0) (38.8558 11.635 0) (32.9439 11.5601 0) (32.8357 10.9633 0) (32.6876 10.3972 0) (32.5036 9.86273 0) (38.5126 10.0463 0) (38.6659 10.5483 0) (38.7816 11.0783 0) (44.8791 11.1611 0) (44.7962 10.6688 0) (44.6743 10.2011 0) (44.5167 9.75894 0) (38.325 9.573 0) (32.287 9.36011 0) (26.3888 9.12205 0) (20.6121 8.85989 0) (14.9447 8.57194 0) (9.36446 8.26151 0) (9.03017 7.70596 0) (8.67753 7.19227 0) (8.30801 6.71855 0) (13.9381 7.07467 0) (14.2921 7.53523 0) (14.6284 8.03392 0) (20.318 8.34251 0) (20.0005 7.86176 0) (19.6648 7.41666 0) (19.3102 7.00521 0) (13.5684 6.64991 0) (7.92581 6.28233 0) (7.53015 5.88127 0) (7.12525 5.51361 0) (6.7096 5.17673 0) (12.3813 5.57047 0) (12.7885 5.89972 0) (13.1846 6.25883 0) (18.9404 6.62596 0) (18.5568 6.27732 0) (18.1605 5.95743 0) (24.0632 6.33421 0) (24.446 6.64286 0) (24.8149 6.97887 0) (25.1683 7.34391 0) (25.5046 7.73946 0) (25.8215 8.1667 0) (26.117 8.62727 0) (32.0413 8.88932 0) (31.7696 8.45037 0) (31.4747 8.04261 0) (37.5885 8.32639 0) (37.8605 8.71321 0) (38.1063 9.12862 0) (44.3266 9.3427 0) (44.1073 8.95253 0) (43.8618 8.58855 0) (43.5926 8.25025 0) (37.2954 7.96738 0) (31.1587 7.66457 0) (30.8238 7.31524 0) (30.472 6.99337 0) (30.1048 6.69748 0) (36.2997 7.047 0) (36.6489 7.32882 0) (36.9813 7.63519 0) (43.3015 7.93694 0) (42.9907 7.64766 0) (42.6619 7.38136 0) (49.204 7.69848 0) (49.5094 7.94763 0) (49.7973 8.21833 0) (50.0627 8.5112 0) (50.3057 8.82741 0) (50.5238 9.16732 0) (50.7147 9.53074 0) (50.8749 9.91734 0) (51.0016 10.327 0) (51.0914 10.7592 0) (51.1414 11.2128 0) (51.148 11.6857 0) (51.1072 12.1739 0) (51.0151 12.673 0) (50.8676 13.1777 0) (57.1749 13.0092 0) (57.354 12.5565 0) (57.4786 12.1067 0) (64.0338 12.0106 0) (63.8776 12.4119 0) (63.6683 12.814 0) (70.3502 12.5927 0) (70.5897 12.2402 0) (70.7766 11.8866 0) (70.9154 11.5356 0) (64.14 11.614 0) (57.5524 11.6645 0) (57.579 11.234 0) (57.562 10.8197 0) (57.5047 10.4239 0) (64.192 10.4923 0) (64.2156 10.8513 0) (64.1995 11.2261 0) (71.0082 11.1908 0) (71.0572 10.8564 0) (71.0664 10.5346 0) (78.1571 10.5355 0) (78.103 10.8232 0) (78.0121 11.1216 0) (77.8811 11.4274 0) (77.7074 11.7358 0) (77.4884 12.0448 0) (77.2244 12.3526 0) (84.4074 12.0953 0) (84.6962 11.8269 0) (84.9463 11.5558 0) (92.6335 11.3438 0) (92.352 11.5821 0) (92.0376 11.8172 0) (100.083 11.5182 0) (100.428 11.3114 0) (100.742 11.1007 0) (101.029 10.8878 0) (92.8832 11.1037 0) (85.1569 11.2842 0) (85.3327 11.0146 0) (85.4743 10.7502 0) (85.5841 10.4933 0) (93.4502 10.3981 0) (93.2901 10.6282 0) (93.1016 10.8642 0) (101.287 10.6749 0) (101.517 10.4644 0) (101.722 10.2586 0) (101.903 10.0582 0) (93.584 10.1748 0) (85.6645 10.2449 0) (78.1774 10.2589 0) (71.0387 10.227 0) (64.1294 10.1506 0) (57.4101 10.0478 0) (57.2809 9.69206 0) (57.1197 9.35673 0) (56.9318 9.0423 0) (63.7484 9.23414 0) (63.9053 9.52126 0) (64.0335 9.82682 0) (70.9775 9.9343 0) (70.8868 9.65588 0) (70.7684 9.3905 0) (70.6271 9.14184 0) (63.5636 8.96591 0) (56.7172 8.74954 0) (56.478 8.47876 0) (56.2185 8.22882 0) (55.9375 7.99842 0) (62.8813 8.26752 0) (63.1272 8.48414 0) (63.3555 8.71684 0) (70.4659 8.91205 0) (70.2856 8.69768 0) (70.0918 8.4981 0) (77.643 8.67502 0) (77.7742 8.8617 0) (77.89 9.06132 0) (77.9892 9.27386 0) (78.0694 9.50047 0) (78.1303 9.74102 0) (78.1673 9.99405 0) (85.7178 10.0055 0) (85.7461 9.77487 0) (85.7508 9.55425 0) (93.8405 9.55027 0) (93.7779 9.75018 0) (93.6927 9.95876 0) (102.06 9.86411 0) (102.195 9.6765 0) (102.31 9.4966 0) (102.405 9.32575 0) (93.8822 9.3608 0) (85.7343 9.34562 0) (85.6983 9.14977 0) (85.6456 8.9659 0) (85.5752 8.79379 0) (93.8996 8.85773 0) (93.9101 9.01475 0) (93.9048 9.18242 0) (102.482 9.16432 0) (102.543 9.01222 0) (102.59 8.86949 0) (102.622 8.73631 0) (93.8745 8.71163 0) (85.4916 8.63396 0) (77.4975 8.50194 0) (69.8853 8.31341 0) (62.6201 8.06946 0) (55.6388 7.78709 0) (48.8808 7.4708 0) (42.317 7.13757 0) (35.9357 6.78888 0) (29.7239 6.42652 0) (23.668 6.0517 0) (17.7534 5.66485 0) (11.9647 5.26951 0) (6.28629 4.86887 0) (0.702287 4.46458 0) (-4.80307 4.05934 0) (-10.2446 3.65642 0) (-15.6376 3.25903 0) (-20.997 2.87084 0) (-26.3361 2.49596 0) (-31.6675 2.13868 0) (-37.0025 1.80354 0) (-42.3522 1.49521 0) (-47.7308 1.21791 -2.1999e-20) (-53.156 0.975762 0) (-53.4369 0.703295 0) (-48.0398 0.938897 2.198e-20) (-48.3454 0.686425 -2.19728e-20) (-53.7105 0.457403 0) (-53.9771 0.23594 0) (-48.6451 0.458245 2.19539e-20) (-48.9421 0.252488 -2.19482e-20) (-54.2372 0.0370115 0) (-54.4893 -0.14164 0) (-49.2346 0.0676407 1.47669e-23) (-49.5223 -0.0986395 2.19186e-20) (-54.7314 -0.30068 0) (-54.9651 -0.439148 0) (-49.8033 -0.246795 0) (-50.078 -0.376434 0) (-55.1908 -0.557998 0) (-55.4073 -0.658249 0) (-50.3469 -0.487301 0) (-50.6096 -0.580457 0) (-55.6169 -0.740872 0) (-55.8173 -0.806746 0) (-50.866 -0.656804 0) (-51.1161 -0.717018 0) (-56.011 -0.856942 0) (-56.1978 -0.89253 0) (-51.3598 -0.762096 0) (-51.5977 -0.793124 0) (-56.3779 -0.914678 0) (-56.5528 -0.924615 0) (-51.8304 -0.810996 0) (-47.0537 -0.632005 0) (-46.7697 -0.606572 0) (-46.4818 -0.567688 0) (-46.1891 -0.514451 0) (-45.8914 -0.44574 0) (-45.5881 -0.360406 0) (-45.2803 -0.2583 0) (-44.9686 -0.139195 0) (-44.6521 -0.00363133 0) (-44.3306 0.149463 0) (-44.0067 0.320186 0) (-43.6811 0.510322 0) (-43.353 0.721129 0) (-43.0222 0.954188 0) (-42.6887 1.21136 0) (-37.3631 1.5161 0) (-37.722 1.25534 0) (-38.0795 1.01873 0) (-32.8104 1.34591 -2.22052e-20) (-32.4298 1.58517 0) (-32.049 1.8486 0) (-26.7349 2.20412 0) (-27.1338 1.9389 0) (-27.5336 1.69791 0) (-27.9335 1.47905 0) (-33.19 1.12883 1.42998e-23) (-38.4351 0.804314 -2.21722e-20) (-38.7901 0.610294 2.21733e-20) (-39.143 0.435372 0) (-39.4951 0.278871 0) (-34.3265 0.594702 -4.43406e-20) (-33.9483 0.754526 2.21649e-20) (-33.5688 0.932288 2.22137e-20) (-28.3338 1.28066 0) (-28.7343 1.10128 0) (-29.1351 0.939685 0) (-23.9102 1.30807 0) (-23.4908 1.47047 0) (-23.0724 1.65069 0) (-22.655 1.84994 0) (-22.2386 2.06973 0) (-21.8239 2.31168 0) (-21.4095 2.57805 0) (-16.0605 2.96631 0) (-16.4856 2.7 0) (-16.9127 2.45798 0) (-11.543 2.85807 0) (-11.1073 3.09933 0) (-10.6743 3.36479 0) (-5.23627 3.76999 0) (-5.67384 3.5065 0) (-6.11511 3.26711 0) (-6.56024 3.04978 0) (-11.9823 2.63885 0) (-17.3417 2.23811 0) (-17.7732 2.03874 0) (-18.206 1.8585 0) (-18.6405 1.69614 0) (-13.3139 2.09947 0) (-12.8669 2.26101 0) (-12.4234 2.44036 0) (-7.00879 2.85301 0) (-7.46073 2.67526 0) (-7.9154 2.51547 0) (-8.37293 2.37245 0) (-13.7614 1.95486 0) (-19.0765 1.5506 0) (-24.3306 1.1625 0) (-29.5362 0.794953 0) (-34.7039 0.451933 2.21762e-20) (-39.8457 0.139665 0) (-40.1951 0.0162303 0) (-40.5411 -0.090728 0) (-40.8825 -0.18163 -2.20703e-20) (-35.8323 0.12122 -2.2109e-20) (-35.4566 0.215993 -2.21544e-20) (-35.0816 0.325924 2.21296e-20) (-29.9372 0.666444 0) (-30.338 0.553449 0) (-30.7384 0.455639 0) (-31.1385 0.372928 0) (-36.2048 0.0410354 2.21134e-20) (-41.2209 -0.257591 1.38225e-23) (-41.5558 -0.318442 2.20887e-20) (-41.8865 -0.364518 0) (-42.2127 -0.396605 -2.20607e-20) (-37.3055 -0.112454 0) (-36.9418 -0.0754073 0) (-36.5749 -0.0244131 0) (-31.5359 0.304779 0) (-31.9321 0.25052 0) (-32.3267 0.209736 0) (-27.2782 0.563888 0) (-26.8594 0.607507 0) (-26.4385 0.664506 0) (-26.0169 0.735101 0) (-25.5952 0.819684 0) (-25.1732 0.918868 0) (-24.7516 1.03298 0) (-19.5139 1.42101 0) (-19.9528 1.3067 0) (-20.3919 1.20716 0) (-15.1178 1.61369 0) (-14.6637 1.71268 0) (-14.2126 1.82608 0) (-8.83265 2.24537 0) (-9.29572 2.13328 0) (-9.75981 2.03566 0) (-10.2264 1.95184 0) (-15.5728 1.52871 0) (-20.8328 1.1218 0) (-21.2727 1.05041 0) (-21.7137 0.992291 0) (-22.154 0.947164 0) (-16.9429 1.35349 0) (-16.4858 1.39902 0) (-16.029 1.4573 0) (-10.6945 1.88133 0) (-11.1638 1.82366 0) (-11.6341 1.77847 0) (-12.1051 1.74527 0) (-17.4002 1.32026 0) (-22.5938 0.914653 0) (-27.6968 0.532991 0) (-32.7177 0.182024 0) (-37.6656 -0.136302 0) (-42.5362 -0.415653 4.4102e-20) (-47.3312 -0.644502 0) (-52.0583 -0.816647 0) (-56.7237 -0.923471 0) (-56.8912 -0.912412 0) (-52.2818 -0.811281 0) (-52.5027 -0.795886 -2.18326e-20) (-57.0558 -0.89243 0) (-57.2208 -0.86459 0) (-52.7202 -0.771265 2.18688e-20) (-52.9374 -0.738442 0) (-57.3846 -0.82979 0) (-57.5509 -0.788809 0) (-53.1537 -0.698322 0) (-53.3707 -0.651709 -2.18337e-20) (-57.7183 -0.742251 0) (-57.8894 -0.690815 0) (-53.5886 -0.599171 1.57436e-23) (-53.8086 -0.541392 2.18534e-20) (-58.0649 -0.635226 0) (-58.2451 -0.575931 0) (-54.0317 -0.479098 0) (-54.2582 -0.412691 0) (-58.4303 -0.513243 0) (-58.6218 -0.447685 0) (-54.4889 -0.342813 0) (-54.7239 -0.270005 0) (-58.8199 -0.379713 0) (-59.0242 -0.309499 -2.16319e-20) (-54.9638 -0.194339 0) (-55.2093 -0.116445 0) (-59.2357 -0.237452 2.16431e-20) (-59.4548 -0.163917 0) (-55.4601 -0.0370119 0) (-51.3719 0.131297 0) (-51.0881 0.0479586 0) (-50.8088 -0.0332917 0) (-50.5341 -0.111903 0) (-50.2626 -0.187876 0) (-49.9934 -0.260427 0) (-49.7269 -0.328819 0) (-49.4624 -0.392099 0) (-49.1988 -0.450065 0) (-48.9359 -0.502007 0) (-48.6727 -0.547258 0) (-48.4096 -0.585109 0) (-48.1439 -0.614589 0) (-47.8763 -0.634903 0) (-47.6058 -0.645153 0) (-42.8538 -0.422138 -2.20639e-20) (-43.1691 -0.417068 0) (-43.4808 -0.401226 0) (-38.7263 -0.136256 0) (-38.3759 -0.147469 0) (-38.0223 -0.147747 0) (-33.1075 0.16659 0) (-33.4945 0.162885 0) (-33.879 0.170228 0) (-34.261 0.187994 0) (-39.0741 -0.114839 0) (-43.7899 -0.375489 0) (-44.097 -0.340711 0) (-44.4024 -0.2977 0) (-44.7067 -0.247221 0) (-40.1046 0.00363502 0) (-39.7629 -0.0441788 0) (-39.4195 -0.0839049 0) (-34.6407 0.215551 0) (-35.0181 0.252242 0) (-35.3947 0.297207 0) (-30.5738 0.629813 0) (-30.1684 0.586938 0) (-29.7609 0.552586 0) (-29.3519 0.527511 0) (-28.941 0.512348 0) (-28.5281 0.50778 0) (-28.1133 0.514466 0) (-23.0327 0.894277 0) (-23.4706 0.885522 0) (-23.9071 0.887864 0) (-18.7696 1.28971 0) (-18.3138 1.28886 0) (-17.8572 1.29887 0) (-12.5764 1.72361 0) (-13.0476 1.71302 0) (-13.5188 1.71301 0) (-13.989 1.72309 0) (-19.2245 1.30085 0) (-24.3423 0.900698 0) (-24.7758 0.923434 0) (-25.2081 0.955509 0) (-25.6384 0.996209 0) (-20.5822 1.39034 0) (-20.1312 1.3517 0) (-19.6782 1.32172 0) (-14.4596 1.74247 0) (-14.9279 1.77083 0) (-15.3957 1.80755 0) (-15.8622 1.85207 0) (-21.0316 1.43689 0) (-26.068 1.04464 0) (-30.9777 0.680497 0) (-35.7688 0.349892 0) (-40.4457 0.058813 -2.20379e-20) (-45.0107 -0.189937 0) (-45.3143 -0.126747 0) (-45.6182 -0.0587545 0) (-45.9239 0.0140976 0) (-41.4677 0.260046 0) (-41.1269 0.187677 0) (-40.7858 0.120588 2.20735e-20) (-36.1426 0.409581 0) (-36.516 0.475968 0) (-36.8888 0.547933 0) (-37.2614 0.624732 0) (-41.8092 0.337093 0) (-46.2315 0.0911205 0) (-46.5416 0.171395 0) (-46.8545 0.254841 0) (-47.1705 0.341102 0) (-42.8431 0.591367 0) (-42.4966 0.503471 0) (-42.152 0.418485 0) (-37.6343 0.705914 0) (-38.0081 0.790949 0) (-38.3829 0.879136 0) (-33.7833 1.20061 0) (-33.3843 1.11318 0) (-32.9834 1.02924 0) (-32.5839 0.949089 0) (-32.1837 0.873513 0) (-31.7825 0.803052 0) (-31.3805 0.73844 0) (-26.4952 1.10048 0) (-26.9219 1.16306 0) (-27.3474 1.23161 0) (-22.3735 1.61735 0) (-21.9275 1.55098 0) (-21.4803 1.49059 0) (-16.3272 1.90368 0) (-16.7914 1.96171 0) (-17.2534 2.02572 0) (-17.7136 2.09493 0) (-22.8177 1.68892 0) (-27.7716 1.30537 0) (-28.195 1.38382 0) (-28.6175 1.46623 0) (-29.0395 1.55204 0) (-24.144 1.92891 0) (-23.7024 1.8455 0) (-23.2609 1.7652 0) (-18.1734 2.1686 0) (-18.6302 2.24643 0) (-19.0863 2.32737 0) (-13.858 2.74261 0) (-13.3917 2.66465 0) (-12.9218 2.58997 0) (-12.4507 2.51905 0) (-11.9777 2.45252 0) (-11.5024 2.39106 0) (-11.0263 2.3352 0) (-10.5489 2.28568 0) (-10.0695 2.24316 0) (-9.58931 2.20813 0) (-9.10717 2.18117 0) (-8.62627 2.16253 0) (-8.14329 2.15327 0) (-7.66082 2.15374 0) (-7.17841 2.1644 0) (-6.69645 2.18578 0) (-6.21527 2.21833 0) (-5.73523 2.26254 0) (-5.25655 2.31898 0) (-4.77958 2.38793 0) (-4.3048 2.46992 0) (-3.83204 2.56549 0) (-3.36335 2.67512 0) (-2.89604 2.79993 0) (-2.43249 2.94054 0) (-1.97215 3.09784 0) (-1.51586 3.27296 0) (-1.06237 3.46721 0) (-0.614251 3.68184 0) (-0.170464 3.91836 0) (0.268729 4.17875 0) (5.85549 4.58792 0) (5.41793 4.33207 0) (4.9751 4.09953 0) (10.6662 4.51723 0) (11.1064 4.74457 0) (11.5395 4.99478 0) (17.3364 5.39771 0) (16.9103 5.1544 0) (16.4761 4.93341 0) (16.0343 4.73321 0) (10.22 4.31124 0) (4.52481 3.88846 0) (4.07243 3.69803 0) (3.61282 3.52628 0) (3.15074 3.37237 0) (8.84699 3.80805 0) (9.30961 3.9579 0) (9.76699 4.1252 0) (15.5862 4.55275 0) (15.1319 4.39062 0) (14.6711 4.24551 0) (20.64 4.68265 0) (21.0952 4.82202 0) (21.5436 4.97809 0) (21.9851 5.15206 0) (22.4194 5.34525 0) (22.8451 5.55863 0) (23.2616 5.79366 0) (29.3307 6.17899 0) (28.9262 5.95355 0) (28.5114 5.74902 0) (34.7665 6.14386 0) (35.1679 6.33838 0) (35.558 6.55308 0) (41.9573 6.91497 0) (41.5841 6.71242 0) (41.1988 6.52943 0) (40.802 6.36464 0) (34.3545 5.96813 0) (28.087 5.56398 0) (27.6546 5.3975 0) (27.2144 5.24849 0) (26.7667 5.1157 0) (33.0664 5.54434 0) (33.5041 5.66935 0) (33.9335 5.81023 0) (40.3947 6.21667 0) (39.9781 6.08452 0) (39.5536 5.96687 0) (39.1225 5.86147 0) (32.6216 5.43364 0) (26.3124 4.99786 0) (20.1788 4.55884 0) (14.2058 4.1166 0) (8.37841 3.67442 0) (2.6833 3.23493 0) (2.21272 3.11321 0) (1.73876 3.00632 0) (1.26146 2.91344 0) (6.95218 3.36345 0) (7.43156 3.45306 0) (7.90716 3.55643 0) (13.7359 4.00293 0) (13.2608 3.90356 0) (12.782 3.8177 0) (12.2993 3.74443 0) (6.46944 3.28684 0) (0.781279 2.83389 0) (0.298448 2.76706 0) (-0.186623 2.71245 0) (-0.673255 2.66964 0) (5.00545 3.12922 0) (5.49565 3.17024 0) (5.98378 3.22258 0) (11.8135 3.68302 0) (11.3249 3.63307 0) (10.834 3.59415 0) (16.8267 4.06131 0) (17.3156 4.09807 0) (17.8019 4.14545 0) (18.2853 4.20375 0) (18.7653 4.27335 0) (19.2412 4.35503 0) (19.7124 4.44985 0) (25.8522 4.89435 0) (25.3869 4.80466 0) (24.9166 4.72765 0) (31.25 5.17952 0) (31.7122 5.25201 0) (32.1696 5.33634 0) (38.6856 5.76883 0) (38.2436 5.68933 0) (37.7977 5.62085 0) (37.3483 5.56227 0) (30.7838 5.11777 0) (24.442 4.66224 0) (23.9637 4.60753 0) (23.482 4.56303 0) (22.9976 4.5285 0) (29.3676 4.99061 0) (29.8422 5.02313 0) (30.3144 5.06557 0) (36.8961 5.51304 0) (36.4419 5.4731 0) (35.9854 5.44209 0) (42.9106 5.87345 0) (43.3396 5.90319 0) (43.7663 5.94156 0) (44.1903 5.98875 0) (44.6113 6.0448 0) (45.0293 6.11015 0) (45.4439 6.18572 0) (45.8544 6.27267 0) (46.2612 6.37149 0) (46.6624 6.48243 0) (47.057 6.60761 0) (47.4437 6.74826 0) (47.8215 6.90361 0) (48.1883 7.07457 0) (48.5421 7.26336 0) (55.3254 7.59252 0) (54.9991 7.41376 0) (54.662 7.25239 0) (61.7706 7.57061 0) (62.0626 7.72221 0) (62.3463 7.88837 0) (69.6667 8.1427 0) (69.4391 7.98542 0) (69.1999 7.8416 0) (68.9544 7.71082 0) (61.4704 7.43244 0) (54.315 7.10688 0) (53.9629 6.97551 0) (53.6035 6.85747 0) (53.2391 6.75174 0) (60.5309 7.09331 0) (60.85 7.19424 0) (61.1634 7.30707 0) (68.6997 7.59231 0) (68.4387 7.48558 0) (68.1714 7.3901 0) (76.1888 7.63787 0) (76.4005 7.72733 0) (76.604 7.82723 0) (76.8016 7.93815 0) (76.9905 8.06061 0) (77.1701 8.19518 0) (77.34 8.34225 0) (85.3942 8.48633 0) (85.2844 8.35033 0) (85.1656 8.22581 0) (93.7268 8.33691 0) (93.7868 8.45151 0) (93.8364 8.57637 0) (102.643 8.61263 0) (102.653 8.49813 0) (102.654 8.39273 0) (102.647 8.29607 0) (93.657 8.23207 0) (85.0355 8.11226 0) (84.8977 8.00927 0) (84.7523 7.9164 0) (84.6003 7.83312 0) (93.406 7.97331 0) (93.4963 8.05074 0) (93.5811 8.13682 0) (102.632 8.20789 0) (102.611 8.12778 0) (102.585 8.05545 0) (102.555 7.99063 0) (93.3103 7.90411 0) (84.4427 7.75893 0) (75.9715 7.55831 0) (67.8987 7.30527 0) (60.2067 7.0034 0) (52.8697 6.65723 0) (52.4959 6.57385 0) (52.1181 6.50139 0) (51.7369 6.43888 0) (59.2076 6.7957 0) (59.5446 6.85515 0) (59.8777 6.92413 0) (67.6207 7.23052 0) (67.3383 7.16539 0) (67.0518 7.10929 0) (66.7617 7.06158 0) (58.8672 6.74502 0) (51.3524 6.3854 0) (50.9649 6.34051 0) (50.5746 6.30409 0) (50.1817 6.27591 0) (57.8276 6.64201 0) (58.1769 6.66844 0) (58.5235 6.70267 0) (66.4682 7.02187 0) (66.1717 6.98988 0) (65.8725 6.96526 0) (74.3355 7.23995 0) (74.5787 7.26288 0) (74.8195 7.29273 0) (75.0575 7.32987 0) (75.2921 7.37456 0) (75.523 7.42717 0) (75.7499 7.48824 0) (84.2799 7.6935 0) (84.1125 7.63642 0) (83.9413 7.58715 0) (92.9983 7.74309 0) (93.1059 7.78942 0) (93.2101 7.84295 0) (102.52 7.93311 0) (102.483 7.88251 0) (102.442 7.83849 0) (102.4 7.80078 0) (92.8879 7.70361 0) (83.7667 7.54528 0) (83.5892 7.51048 0) (83.4091 7.48249 0) (83.2269 7.46096 0) (92.5439 7.6235 0) (92.6602 7.64409 0) (92.775 7.6707 0) (102.355 7.76913 0) (102.31 7.74331 0) (102.264 7.72307 0) (102.217 7.70811 0) (92.4264 7.60859 0) (83.0431 7.44552 0) (74.0901 7.22352 0) (65.571 6.94753 0) (57.4754 6.62287 0) (49.7865 6.2555 0) (42.4795 5.85177 0) (35.5276 5.41937 0) (28.8905 4.96677 0) (22.5116 4.50335 0) (16.3357 4.03455 0) (10.3411 3.56574 0) (4.51344 3.09915 0) (-1.16143 2.63815 0) (-1.65073 2.61748 0) (-2.1408 2.60714 0) (-2.6313 2.60663 0) (3.03047 3.06946 0) (3.52557 3.0698 0) (4.02002 3.07952 0) (9.84662 3.54731 0) (9.35091 3.53829 0) (8.85442 3.53811 0) (8.3576 3.54633 0) (2.53509 3.07798 0) (-3.12187 2.61542 0) (-3.61294 2.63299 0) (-4.10227 2.65902 0) (-4.59189 2.69262 0) (1.04978 3.15177 0) (1.54456 3.11967 0) (2.03973 3.09488 0) (7.86086 3.56246 0) (7.36424 3.5861 0) (6.86893 3.61667 0) (12.8769 4.0827 0) (13.37 4.05392 0) (13.8648 4.03175 0) (14.3594 4.01651 0) (14.8544 4.00869 0) (15.3491 4.00877 0) (15.843 4.01722 0) (22.0227 4.48679 0) (21.5343 4.47868 0) (21.0447 4.47841 0) (27.4549 4.94271 0) (27.9343 4.94328 0) (28.4135 4.95119 0) (35.0675 5.40431 0) (34.6064 5.39648 0) (34.1452 5.39553 0) (33.6829 5.40101 0) (26.9753 4.94897 0) (20.5551 4.48553 0) (20.0659 4.4996 0) (19.5775 4.52017 0) (19.0901 4.54684 0) (25.5399 5.005 0) (26.0173 4.98054 0) (26.496 4.96173 0) (33.2204 5.41261 0) (32.7582 5.42987 0) (32.2965 5.45234 0) (31.8359 5.47963 0) (25.0633 5.03469 0) (18.6048 4.57919 0) (12.3855 4.11751 0) (6.37375 3.6534 0) (0.557769 3.19075 0) (-5.07965 2.73333 0) (-5.56621 2.7806 0) (-6.05196 2.8339 0) (-6.53505 2.89279 0) (-0.913609 3.34271 0) (-0.424497 3.28683 0) (0.0654391 3.2359 0) (5.88139 3.6962 0) (5.38987 3.74445 0) (4.9012 3.7975 0) (4.41385 3.85469 0) (-1.39911 3.4033 0) (-7.0166 2.95651 0) (-7.49605 3.02441 -2.22245e-20) (-7.97332 3.09591 1.53015e-23) (-8.44784 3.17056 2.22252e-20) (-2.84359 3.60694 0) (-2.36396 3.53606 0) (-1.88305 3.46795 0) (3.93027 3.91581 0) (3.44871 3.98022 0) (2.96999 4.04725 0) (9.00641 4.48784 0) (9.47978 4.4247 0) (9.95724 4.36412 0) (10.4373 4.30671 0) (10.9203 4.25287 0) (11.4065 4.20304 0) (11.8949 4.15774 0) (18.1202 4.6165 0) (17.6393 4.65862 0) (17.1602 4.70501 0) (23.6487 5.15091 0) (24.1178 5.10807 0) (24.5902 5.06925 0) (31.3766 5.51141 0) (30.9191 5.54729 0) (30.464 5.5868 0) (30.0122 5.62953 0) (23.183 5.19725 0) (16.6848 4.75514 0) (16.2127 4.80863 0) (15.7437 4.86514 0) (15.2784 4.92414 0) (21.8072 5.3535 0) (22.2621 5.29905 0) (22.7208 5.24675 0) (29.5637 5.67519 0) (29.1184 5.72345 0) (28.6782 5.77372 0) (35.9998 6.18234 0) (36.4173 6.13576 0) (36.8403 6.0911 0) (37.266 6.04865 0) (37.6947 6.00881 0) (38.1264 5.97186 0) (38.5602 5.93822 0) (38.9952 5.90839 0) (39.4313 5.88275 0) (39.868 5.86158 0) (40.3049 5.84527 0) (40.7416 5.83427 0) (41.1778 5.82906 0) (41.6129 5.83004 0) (42.0468 5.83749 0) (49.3892 6.24217 0) (48.9906 6.23532 0) (48.5907 6.23466 0) (56.4105 6.6046 0) (56.7671 6.60462 0) (57.1221 6.61057 0) (65.2675 6.93627 0) (64.9624 6.93112 0) (64.6561 6.93156 0) (64.3483 6.93707 0) (56.0516 6.61008 0) (48.1901 6.24004 0) (47.7872 6.25073 0) (47.3857 6.26644 0) (46.9834 6.28675 0) (54.976 6.65557 0) (55.3349 6.63589 0) (55.6937 6.62064 0) (64.042 6.9475 0) (63.7337 6.96241 0) (63.4264 6.98138 0) (72.3469 7.25721 0) (72.596 7.23917 0) (72.8449 7.22491 0) (73.096 7.2149 0) (73.3453 7.20934 0) (73.5947 7.20861 0) (73.8431 7.21319 0) (82.858 7.4358 0) (82.6721 7.43144 0) (82.4856 7.43214 0) (92.0711 7.59449 0) (92.19 7.59444 0) (92.3083 7.59902 0) (102.17 7.69812 0) (102.124 7.69279 0) (102.078 7.69176 0) (102.033 7.6948 0) (91.9537 7.59887 0) (82.2989 7.43737 0) (82.1128 7.44668 0) (81.9275 7.45991 0) (81.7433 7.47676 0) (91.6071 7.6343 0) (91.721 7.61912 0) (91.8372 7.60721 0) (101.989 7.70162 0) (101.948 7.71172 0) (101.908 7.72479 0) (101.871 7.74056 0) (91.4951 7.65235 0) (81.5607 7.4967 0) (72.0992 7.27865 0) (63.1196 7.00405 0) (54.6183 6.67923 0) (46.5817 6.31124 0) (46.181 6.33961 0) (45.7815 6.37154 0) (45.3836 6.40646 0) (53.5511 6.76948 0) (53.9045 6.73643 0) (54.26 6.70626 0) (62.8149 7.02999 0) (62.5107 7.05858 0) (62.2094 7.08971 0) (61.9103 7.12302 0) (53.2004 6.80501 0) (44.9886 6.44395 0) (44.5965 6.48369 0) (44.2077 6.52534 0) (43.8226 6.56861 0) (52.1652 6.9217 2.26533e-20) (52.5074 6.88152 -2.26381e-20) (52.8516 6.84244 0) (61.6158 7.15803 0) (61.3236 7.19434 0) (61.0375 7.23169 0) (70.4382 7.49015 0) (70.6648 7.45602 0) (70.8952 7.42258 0) (71.1297 7.39019 0) (71.3676 7.3592 0) (71.6096 7.33003 0) (71.8523 7.30305 0) (81.3802 7.51929 0) (81.2022 7.54426 0) (81.0273 7.57119 0) (91.1764 7.71965 0) (91.2794 7.69535 0) (91.3857 7.6728 0) (101.837 7.75849 0) (101.807 7.77826 0) (101.78 7.79958 0) (101.757 7.82194 0) (91.0773 7.74519 0) (80.8561 7.5996 0) (80.6889 7.62915 0) (80.5261 7.65947 0) (80.3682 7.6902 0) (90.8079 7.82565 0) (90.8927 7.79856 0) (90.9827 7.77162 0) (101.739 7.84497 0) (101.725 7.86829 0) (101.717 7.89152 0) (113.02 7.88428 0) (112.95 7.86509 0) (112.885 7.84556 0) (112.825 7.82615 0) (112.769 7.80726 0) (112.718 7.78916 0) (112.671 7.77232 0) (112.626 7.75721 0) (112.586 7.74422 0) (112.549 7.73365 0) (112.513 7.72578 0) (112.48 7.72102 0) (112.449 7.71981 0) (112.419 7.7224 0) (112.391 7.72901 0) (112.363 7.74001 0) (112.336 7.75564 0) (112.309 7.77616 0) (112.282 7.80185 0) (112.255 7.83292 0) (112.226 7.8696 0) (112.196 7.91206 0) (112.164 7.96052 0) (112.13 8.01519 0) (112.093 8.07639 0) (112.052 8.14437 0) (112.006 8.21938 0) (111.955 8.30162 0) (111.899 8.39133 0) (111.836 8.48868 0) (111.764 8.59399 0) (111.683 8.70731 0) (111.591 8.82892 0) (111.488 8.95878 0) (111.371 9.09676 0) (111.238 9.24282 0) (111.092 9.39688 0) (110.927 9.55854 0) (110.74 9.72695 0) (110.538 9.901 0) (110.31 10.0802 0) (110.064 10.2637 0) (109.79 10.4507 0) (109.493 10.6394 0) (109.17 10.8274 0) (108.821 11.0129 0) (108.443 11.194 0) (108.037 11.3681 0) (107.603 11.5321 0) (107.138 11.6825 0) (106.642 11.8159 0) (106.111 11.9296 0) (105.544 12.0219 0) (113.94 11.5312 0) (122.414 11.0225 0) (130.85 10.4952 0) (131.484 10.4595 0) (123.026 10.97 0) (114.53 11.4597 0) (115.084 11.3683 0) (115.606 11.258 0) (116.099 11.1313 0) (124.676 10.7042 0) (124.154 10.8094 0) (123.605 10.8988 0) (132.088 10.4061 0) (132.664 10.3351 0) (133.216 10.2489 0) (141.589 9.76449 0) (141.009 9.83457 0) (140.407 9.88985 0) (139.781 9.92818 0) (139.127 9.9497 0) (147.12 9.38845 0) (154.716 8.81628 0) (161.842 8.23835 0) (162.525 8.24342 0) (155.394 8.81469 0) (147.789 9.37822 0) (148.433 9.35203 0) (149.056 9.30958 0) (149.66 9.2528 0) (157.309 8.71863 0) (156.687 8.76516 0) (156.049 8.79774 0) (163.188 8.2333 0) (163.836 8.20785 0) (164.472 8.16877 0) (171.214 7.59666 0) (170.554 7.63053 -1.81929e-22) (169.884 7.65166 0) (169.202 7.65951 -2.29467e-20) (168.506 7.65333 2.28214e-20) (174.852 7.04341 2.2837e-20) (180.978 6.39809 -2.28578e-20) (186.833 5.72019 -2.27995e-20) (187.604 5.72707 0) (181.728 6.40515 5.73786e-21) (175.576 7.05123 -2.87057e-20) (176.287 7.04533 -1.45034e-21) (176.988 7.02643 -1.82131e-22) (177.681 6.99595 1.82578e-22) (183.918 6.35716 -1.82656e-22) (183.197 6.38374 3.64381e-22) (182.467 6.40008 7.2551e-21) (188.367 5.72304 -5.79191e-21) (189.121 5.70914 2.9111e-21) (189.869 5.68608 0) (195.471 4.98066 0) (194.699 5.00061 -2.89197e-21) (193.922 5.01242 -2.29911e-20) (193.14 5.01504 0) (192.352 5.00791 4.52298e-20) (197.457 4.25576 2.67277e-19) (202.015 3.46044 2.63767e-19) (205.803 2.637 -1.78248e-19) (206.646 2.65094 3.57467e-19) (202.835 3.47203 -1.76587e-19) (198.259 4.26447 1.34362e-19) (199.06 4.26351 -2.26787e-20) (199.859 4.25358 0) (200.653 4.23663 2.85824e-21) (205.293 3.45191 -2.81615e-21) (204.477 3.46597 0) (203.657 3.47332 0) (207.492 2.65402 -1.35331e-19) (208.335 2.6487 9.08279e-20) (209.171 2.63791 -2.27581e-20) (210.001 2.62311 2.1381e-20) (206.103 3.43299 0) (201.441 4.21391 1.78635e-22) (196.236 4.95393 -1.81159e-22) (190.609 5.6552 0) (184.632 6.32173 0) (178.365 6.95562 0) (171.866 7.5519 0) (165.098 8.11816 0) (157.917 8.66031 0) (150.248 9.18397 0) (142.15 9.68217 0) (133.746 10.1501 0) (125.173 10.5862 0) (116.564 10.9914 0) (117.002 10.8415 0) (117.415 10.6843 0) (117.802 10.5221 0) (126.523 10.1815 0) (126.095 10.3225 0) (125.646 10.4581 0) (134.254 10.0413 0) (134.742 9.92474 0) (135.21 9.80263 0) (135.658 9.67651 0) (126.927 10.0371 0) (118.164 10.3569 0) (118.504 10.1906 0) (118.818 10.0252 0) (119.113 9.8618 0) (128.016 9.59955 0) (127.672 9.74451 0) (127.31 9.89082 0) (136.087 9.54791 0) (136.498 9.41864 0) (136.891 9.28981 0) (145.591 8.93043 0) (145.148 9.04536 0) (144.691 9.15996 0) (144.216 9.27331 0) (143.726 9.38375 0) (143.219 9.48974 0) (142.693 9.58989 0) (150.821 9.10524 0) (151.379 9.01859 0) (151.922 8.9259 0) (159.672 8.43441 0) (159.099 8.51645 0) (158.515 8.59226 0) (165.715 8.05806 0) (166.323 7.99028 0) (166.921 7.91662 0) (167.51 7.83847 0) (160.233 8.34769 0) (152.452 8.82858 0) (152.966 8.72817 0) (153.468 8.62592 0) (153.956 8.52294 0) (161.846 8.07225 0) (161.319 8.16554 0) (160.782 8.25767 0) (168.088 7.75705 0) (168.656 7.67347 0) (169.215 7.58859 0) (169.762 7.50325 0) (162.361 7.97877 0) (154.431 8.41998 0) (146.02 8.8162 0) (137.268 9.16232 0) (128.339 9.45694 0) (119.386 9.70194 0) (119.64 9.54601 0) (119.876 9.39492 0) (120.095 9.24938 0) (129.211 9.05022 0) (128.936 9.18154 0) (128.647 9.31729 0) (137.629 9.03704 0) (137.976 8.91469 0) (138.309 8.79577 0) (138.629 8.68104 0) (129.472 8.92407 0) (120.297 9.11016 0) (120.486 8.97771 0) (120.661 8.85212 -2.31232e-20) (120.825 8.73354 2.31119e-20) (130.182 8.57993 0) (129.957 8.68873 0) (129.72 8.80353 0) (138.937 8.57091 0) (139.236 8.46551 0) (139.525 8.36515 0) (148.679 8.0887 0) (148.329 8.1817 0) (147.971 8.27888 0) (147.604 8.37987 0) (147.225 8.48455 0) (146.835 8.59263 0) (146.434 8.70337 0) (154.894 8.31784 0) (155.346 8.21715 0) (155.787 8.11857 0) (163.844 7.70322 0) (163.36 7.79366 0) (162.866 7.8857 0) (170.301 7.41799 0) (170.829 7.33357 0) (171.35 7.2503 0) (171.86 7.16872 0) (164.319 7.61484 0) (156.217 8.02262 0) (156.638 7.92953 0) (157.051 7.83956 0) (157.456 7.75311 0) (165.696 7.36482 0) (165.245 7.44534 0) (164.786 7.5288 0) (172.364 7.089 0) (172.86 7.01154 0) (173.349 6.93658 0) (180.581 6.47202 0) (180.06 6.54159 0) (179.531 6.61328 0) (178.996 6.68681 0) (178.452 6.76206 0) (177.901 6.83855 0) (177.339 6.91605 0) (176.77 6.99405 0) (176.19 7.07215 0) (175.6 7.14962 0) (175.001 7.2259 0) (174.392 7.29991 0) (173.774 7.37075 0) (173.147 7.43732 0) (172.511 7.49817 0) (179.042 6.90708 2.33306e-20) (179.711 6.85182 -1.99107e-23) (180.371 6.79155 -1.94932e-23) (186.728 6.17671 0) (186.037 6.23014 0) (185.339 6.2789 0) (191.343 5.61776 0) (192.069 5.57503 0) (192.787 5.52804 0) (193.495 5.47767 0) (187.408 6.11965 0) (181.023 6.72737 -2.33252e-20) (181.664 6.66034 0) (182.295 6.59122 0) (182.916 6.5208 2.32811e-20) (189.391 5.93451 0) (188.741 5.99765 0) (188.08 6.05958 0) (194.194 5.42481 0) (194.883 5.37011 0) (195.561 5.31418 0) (201.365 4.65807 0) (200.661 4.70672 -2.31416e-20) (199.947 4.75434 2.31352e-20) (199.223 4.80016 -2.31423e-20) (198.489 4.8439 2.31348e-20) (197.746 4.8846 0) (196.995 4.92156 0) (202.223 4.18639 0) (202.998 4.15503 0) (203.764 4.12059 0) (208.489 3.35644 0) (207.702 3.38458 0) (206.906 3.41027 0) (210.822 2.60556 0) (211.636 2.58572 0) (212.44 2.56408 0) (213.235 2.54097 0) (209.267 3.32634 0) (204.521 4.08365 -2.27993e-20) (205.268 4.04469 2.28272e-20) (206.005 4.00448 0) (206.732 3.96301 0) (211.538 3.22782 0) (210.791 3.26176 0) (210.034 3.29469 0) (214.02 2.51668 0) (214.793 2.49138 0) (215.556 2.46527 0) (216.307 2.4386 0) (212.273 3.19319 0) (207.448 3.92072 0) (202.058 4.60849 0) (196.23 5.25745 0) (190.033 5.87066 0) (183.528 6.44962 -2.33128e-20) (184.129 6.37856 0) (184.722 6.30777 -2.32781e-20) (185.304 6.23777 4.65317e-20) (191.899 5.67906 0) (191.286 5.74253 0) (190.664 5.80656 0) (196.888 5.20035 0) (197.537 5.14322 0) (198.177 5.08647 0) (198.807 5.03032 0) (192.502 5.61657 0) (185.88 6.16865 -2.32762e-20) (186.446 6.10113 0) (187.006 6.03507 0) (187.558 5.97082 0) (194.267 5.43597 0) (193.686 5.49468 0) (193.097 5.55511 0) (199.43 4.97493 0) (200.044 4.92066 0) (200.651 4.8675 0) (206.649 4.26433 0) (206.018 4.31173 2.30417e-20) (205.381 4.35983 -2.30392e-20) (204.734 4.4089 2.30452e-20) (204.08 4.45837 -2.30645e-20) (203.416 4.50829 0) (202.742 4.55846 0) (208.153 3.87797 0) (208.849 3.83502 0) (209.535 3.79213 0) (214.417 3.08734 0) (213.713 3.12272 0) (212.998 3.15808 0) (217.047 2.41147 0) (217.776 2.38403 0) (218.495 2.3566 0) (219.202 2.32923 0) (215.111 3.05206 0) (210.211 3.74945 0) (210.878 3.70719 0) (211.537 3.66553 2.26902e-20) (212.187 3.62458 -2.26686e-20) (217.138 2.94807 0) (216.471 2.98235 0) (215.795 3.01704 0) (219.9 2.30197 0) (220.589 2.27498 0) (221.267 2.24842 0) (224.311 1.55687 0) (223.624 1.5757 0) (222.927 1.59483 0) (222.221 1.61392 0) (221.504 1.63322 0) (220.776 1.65248 0) (220.037 1.67159 0) (219.286 1.69055 0) (218.524 1.70919 0) (217.75 1.7274 0) (216.964 1.74492 0) (216.167 1.7618 0) (215.36 1.7779 0) (214.542 1.79301 0) (213.715 1.80681 -7.5541e-22) (212.879 1.81914 1.51029e-21) (212.035 1.82954 9.65351e-20) (211.181 1.8372 1.58192e-21) (210.318 1.84057 -1.43311e-19) (209.45 1.83732 -1.89834e-19) (208.582 1.82516 -1.9036e-19) (210.3 1.06114 1.0513e-19) (211.181 1.06783 3.10471e-19) (212.065 1.07027 -2.08011e-19) (212.939 1.06813 2.0741e-19) (213.804 1.06407 0) (214.659 1.05806 1.64546e-21) (215.504 1.05095 8.23836e-22) (216.34 1.04275 0) (217.165 1.03391 0) (217.981 1.02454 0) (218.785 1.01471 0) (219.578 1.00437 2.56981e-23) (220.359 0.993592 0) (221.128 0.982676 0) (221.885 0.971564 0) (222.63 0.960397 0) (223.364 0.949259 -2.56166e-23) (224.086 0.93801 0) (224.798 0.92676 2.55768e-23) (225.499 0.91561 5.10622e-23) (226.19 0.90456 0) (226.871 0.89362 2.55141e-23) (224.988 1.53824 0) (221.938 2.22204 0) (217.797 2.91444 0) (212.831 3.58421 2.2661e-20) (207.273 4.21797 0) (201.252 4.81552 0) (194.841 5.37869 0) (188.104 5.9084 0) (181.096 6.4046 0) (173.831 6.86417 0) (166.142 7.28728 0) (157.855 7.67016 0) (149.022 7.99991 0) (139.806 8.2698 0) (130.399 8.47709 0) (120.978 8.62206 0) (121.122 8.51765 0) (121.258 8.4202 0) (121.386 8.32967 0) (131.006 8.20467 0) (130.81 8.28946 0) (130.608 8.38029 0) (140.08 8.17959 0) (140.348 8.09445 0) (140.61 8.01455 0) (140.868 7.93974 0) (131.196 8.12572 0) (121.509 8.24584 0) (121.628 8.16869 0) (121.741 8.0979 0) (121.851 8.03327 0) (131.746 7.92284 0) (131.565 7.98498 0) (131.383 8.0526 0) (141.122 7.86996 0) (141.374 7.80499 0) (141.623 7.74502 0) (151.284 7.50079 0) (150.971 7.55899 0) (150.654 7.6216 0) (150.336 7.68846 0) (150.014 7.7598 0) (149.689 7.83545 0) (149.358 7.91552 0) (158.247 7.59096 0) (158.635 7.51548 0) (159.017 7.44377 0) (167.446 7.07376 0) (167.015 7.14179 0) (166.581 7.21293 0) (174.308 6.79449 0) (174.781 6.72748 0) (175.249 6.66339 0) (175.713 6.60215 0) (167.872 7.00916 0) (159.396 7.37578 0) (159.771 7.31172 0) (160.144 7.25145 0) (160.515 7.19497 0) (169.133 6.83541 0) (168.716 6.89 0) (168.295 6.94792 0) (176.174 6.54387 0) (176.632 6.48849 0) (177.088 6.43593 0) (177.542 6.3864 0) (169.551 6.78411 0) (160.885 7.14227 0) (151.597 7.4467 0) (141.87 7.68989 0) (131.925 7.86618 0) (121.958 7.97466 0) (122.063 7.92189 0) (122.168 7.87483 0) (122.269 7.83324 0) (132.453 7.72727 0) (132.276 7.76857 0) (132.102 7.81481 0) (142.117 7.63938 0) (142.362 7.59349 0) (142.607 7.55213 0) (142.852 7.51518 0) (132.627 7.69092 0) (122.372 7.79693 0) (122.472 7.76581 0) (122.574 7.73962 0) (122.675 7.71824 0) (133.153 7.60939 0) (132.977 7.63206 0) (132.802 7.6592 0) (143.098 7.48255 0) (143.345 7.45425 0) (143.592 7.43009 0) (153.773 7.18382 0) (153.46 7.20948 0) (153.149 7.23895 0) (152.839 7.27243 0) (152.529 7.30989 0) (152.218 7.35135 0) (151.908 7.3969 0) (161.252 7.09332 0) (161.62 7.04808 0) (161.987 7.00656 0) (170.795 6.65045 0) (170.381 6.6916 0) (169.966 6.73619 0) (177.996 6.33987 0) (178.447 6.29634 0) (178.899 6.25591 0) (179.35 6.2185 0) (171.209 6.61264 0) (162.354 6.96871 0) (162.722 6.93454 0) (163.089 6.90407 0) (163.458 6.87715 0) (172.451 6.51935 0) (172.036 6.54714 0) (171.622 6.57819 0) (179.801 6.18417 0) (180.251 6.15296 0) (180.703 6.12483 0) (188.449 5.69721 0) (187.966 5.72524 0) (187.484 5.75618 0) (187.001 5.79004 0) (186.518 5.82671 0) (186.035 5.8661 0) (185.551 5.90827 0) (185.066 5.95317 0) (184.58 6.00062 0) (184.091 6.05084 0) (183.6 6.10358 0) (183.107 6.15878 0) (182.611 6.21655 0) (182.111 6.27681 0) (181.606 6.33955 0) (188.644 5.84799 0) (189.179 5.78955 0) (189.709 5.73322 2.31703e-20) (196.532 5.21697 0) (195.973 5.26911 0) (195.41 5.32308 0) (201.846 4.76492 0) (202.435 4.71567 0) (203.018 4.6679 0) (203.598 4.62159 0) (197.086 5.16664 0) (190.237 5.67899 -4.63576e-20) (190.759 5.62711 2.31871e-20) (191.28 5.57718 0) (191.798 5.52958 0) (198.731 5.02645 0) (198.185 5.07128 0) (197.637 5.11801 0) (204.174 4.57674 0) (204.747 4.53346 0) (205.317 4.49172 0) (211.49 3.9253 2.29151e-20) (210.9 3.96355 1.51156e-23) (210.306 4.00289 -2.29294e-20) (209.708 4.04355 0) (209.107 4.08545 0) (208.501 4.12847 0) (207.89 4.17268 0) (213.466 3.54474 -4.52849e-20) (214.097 3.50594 4.52546e-20) (214.721 3.46833 -2.26305e-20) (219.732 2.81701 0) (219.093 2.84893 0) (218.449 2.88129 0) (222.6 2.19616 0) (223.255 2.17075 0) (223.902 2.14568 0) (224.543 2.12097 0) (220.364 2.78592 0) (215.34 3.43134 0) (215.955 3.39535 0) (216.566 3.36028 0) (217.173 3.32617 0) (222.232 2.69643 0) (221.614 2.72555 0) (220.991 2.7554 0) (225.179 2.09662 0) (225.808 2.07288 0) (226.433 2.04971 0) (227.052 2.02714 0) (222.846 2.66813 0) (217.776 3.29317 0) (212.078 3.88829 0) (205.885 4.45156 0) (199.275 4.98355 0) (192.314 5.48421 2.31172e-20) (192.83 5.44109 -2.31213e-20) (193.343 5.40055 0) (193.856 5.36238 0) (200.898 4.86711 0) (200.358 4.90378 0) (199.816 4.94266 0) (206.451 4.41314 0) (207.016 4.37649 0) (207.58 4.34162 0) (208.144 4.30869 0) (201.438 4.83256 0) (194.369 5.32663 2.30947e-20) (194.882 5.29346 -2.30988e-20) (195.394 5.26306 0) (195.907 5.23521 0) (203.057 4.74316 0) (202.517 4.77067 0) (201.977 4.80051 0) (208.707 4.27775 0) (209.27 4.24881 0) (209.833 4.22196 0) (216.161 3.67262 0) (215.579 3.69839 0) (214.998 3.72595 0) (214.416 3.7552 0) (213.833 3.78615 0) (213.249 3.81872 0) (212.665 3.85278 0) (218.378 3.26128 2.24974e-20) (218.977 3.23052 -2.25183e-20) (219.575 3.20081 0) (224.672 2.58817 0) (224.067 2.61379 0) (223.457 2.64055 0) (227.668 2.005 0) (228.281 1.98353 0) (228.89 1.96266 0) (229.496 1.94245 0) (225.276 2.56345 0) (220.171 3.1725 0) (220.767 3.14558 0) (221.361 3.12009 0) (221.954 3.09606 0) (227.078 2.49599 0) (226.479 2.51743 0) (225.879 2.53987 0) (230.099 1.92316 0) (230.7 1.90457 0) (231.298 1.88685 0) (231.893 1.87027 0) (227.675 2.47569 0) (222.547 3.07354 0) (216.742 3.64869 0) (210.397 4.19724 0) (203.598 4.71806 0) (196.42 5.20999 0) (188.933 5.672 0) (181.155 6.09988 0) (172.866 6.49484 0) (163.827 6.85373 0) (154.086 7.16188 0) (143.84 7.4099 0) (133.33 7.59102 0) (122.779 7.70145 0) (122.882 7.68906 0) (122.986 7.68066 0) (123.093 7.67608 0) (133.87 7.55919 0) (133.689 7.56601 0) (133.508 7.57662 0) (144.09 7.39348 0) (144.342 7.38075 0) (144.594 7.37151 0) (144.85 7.36543 0) (134.055 7.5558 0) (123.201 7.67502 0) (123.311 7.6772 0) (123.424 7.68241 0) (123.54 7.69024 0) (134.62 7.56251 0) (134.428 7.55772 0) (134.241 7.55542 0) (145.107 7.36222 0) (145.368 7.36161 0) (145.629 7.36357 0) (156.325 7.09872 0) (155.999 7.09971 0) (155.676 7.10282 0) (155.354 7.10848 0) (155.034 7.11702 0) (154.716 7.12866 0) (154.401 7.14353 0) (164.198 6.83369 0) (164.569 6.81694 0) (164.942 6.80327 0) (174.117 6.44007 0) (173.699 6.45533 0) (173.282 6.47354 0) (181.607 6.07784 0) (182.06 6.05875 0) (182.513 6.04246 0) (182.968 6.02888 0) (174.536 6.42761 0) (165.317 6.79258 0) (165.693 6.78461 0) (166.071 6.77896 0) (166.452 6.77546 0) (175.802 6.40479 0) (175.379 6.41009 0) (174.956 6.41768 0) (183.423 6.01781 0) (183.879 6.0091 0) (184.336 6.0023 0) (184.794 5.99719 0) (176.227 6.40129 0) (166.833 6.77404 0) (156.654 7.09968 0) (145.895 7.36759 0) (134.815 7.56955 0) (123.658 7.70026 0) (123.78 7.71227 0) (123.906 7.72592 0) (124.035 7.74062 0) (135.418 7.59971 0) (135.213 7.58864 0) (135.013 7.57843 0) (146.163 7.37326 0) (146.434 7.38001 0) (146.711 7.38781 0) (146.987 7.39643 0) (135.629 7.61159 0) (124.169 7.7559 0) (124.307 7.77158 0) (124.45 7.78725 0) (124.598 7.80239 0) (136.282 7.64672 0) (136.059 7.63541 0) (135.84 7.62366 0) (147.273 7.40486 0) (147.558 7.41307 0) (147.85 7.42052 0) (159.041 7.13044 0) (158.689 7.12644 0) (158.341 7.12159 0) (157.997 7.11631 0) (157.656 7.11113 0) (157.321 7.10624 0) (156.985 7.10235 0) (167.218 6.77413 0) (167.604 6.77548 0) (167.994 6.77759 0) (177.513 6.39831 0) (177.082 6.3984 0) (176.653 6.39925 0) (185.254 5.99355 0) (185.715 5.99115 0) (186.178 5.98946 0) (186.642 5.98812 0) (177.945 6.3986 0) (168.386 6.78002 0) (168.781 6.78255 0) (169.179 6.78463 0) (169.58 6.78576 0) (179.257 6.39796 0) (178.817 6.39887 0) (178.38 6.39894 0) (187.108 5.9868 0) (187.576 5.9851 0) (188.046 5.98259 0) (196.283 5.53545 0) (195.783 5.54003 0) (195.285 5.54369 0) (194.79 5.54684 0) (194.296 5.5499 0) (193.803 5.55323 0) (193.312 5.55717 0) (192.822 5.56206 0) (192.333 5.56843 0) (191.845 5.57648 0) (191.357 5.58647 0) (190.871 5.59855 0) (190.386 5.61297 0) (189.901 5.62995 0) (189.417 5.64958 0) (196.934 5.18739 0) (197.448 5.16737 0) (197.963 5.14981 0) (205.222 4.65674 0) (204.679 4.675 0) (204.139 4.69538 0) (210.961 4.17459 0) (211.525 4.15401 0) (212.089 4.13557 0) (212.653 4.11906 0) (205.764 4.64087 0) (198.479 5.13462 0) (198.996 5.12164 -2.29917e-20) (199.512 5.11072 2.29966e-20) (200.03 5.10145 0) (207.396 4.60428 0) (206.852 4.61478 0) (206.308 4.62686 0) (213.218 4.10418 0) (213.784 4.091 0) (214.349 4.07923 0) (220.805 3.52885 0) (220.226 3.54139 -2.26878e-20) (219.645 3.55534 2.26641e-20) (219.066 3.57064 -2.27176e-20) (218.484 3.58763 2.26941e-20) (217.904 3.60622 0) (217.323 3.62654 0) (223.139 3.05246 -2.23857e-20) (223.73 3.03292 2.23852e-20) (224.319 3.01505 0) (229.456 2.42262 0) (228.864 2.43907 0) (228.27 2.45672 0) (232.486 1.85451 0) (233.076 1.83979 0) (233.663 1.82589 0) (234.247 1.81277 0) (230.045 2.40733 0) (224.909 2.99847 0) (225.496 2.98322 0) (226.083 2.96928 0) (226.669 2.95643 0) (231.801 2.3677 0) (231.218 2.37994 0) (230.633 2.39304 0) (234.827 1.80078 0) (235.404 1.78924 0) (235.977 1.77837 0) (236.546 1.76802 0) (232.38 2.35591 0) (227.253 2.94441 0) (221.384 3.51726 0) (214.915 4.06866 0) (207.941 4.59517 0) (200.549 5.09377 0) (201.07 5.08728 0) (201.591 5.08167 0) (202.114 5.07658 0) (209.583 4.5729 0) (209.035 4.57979 0) (208.488 4.5871 0) (215.482 4.05903 0) (216.048 4.05008 0) (216.616 4.04149 0) (217.183 4.03292 0) (210.132 4.56608 0) (202.638 5.07163 0) (203.163 5.06644 0) (203.691 5.06057 0) (204.22 5.05361 0) (211.787 4.54212 0) (211.234 4.55107 0) (210.682 4.55893 0) (217.751 4.02403 0) (218.32 4.01446 0) (218.889 4.00384 0) (225.427 3.44295 0) (224.851 3.45489 0) (224.274 3.46589 0) (223.697 3.47624 0) (223.12 3.48625 0) (222.542 3.49624 0) (221.963 3.50648 0) (227.835 2.93306 0) (228.416 2.9221 0) (228.996 2.91132 0) (234.104 2.32288 0) (233.532 2.33367 0) (232.958 2.3446 0) (237.11 1.75817 0) (237.671 1.74858 0) (238.227 1.73893 0) (238.778 1.72919 0) (234.672 2.31212 0) (229.574 2.90051 2.22105e-20) (230.149 2.8893 -2.21891e-20) (230.724 2.8773 0) (231.297 2.86464 0) (236.358 2.27697 0) (235.799 2.28923 0) (235.237 2.30085 0) (239.325 1.71937 0) (239.867 1.70901 0) (240.405 1.69798 0) (243.263 1.15475 0) (242.748 1.16306 1.82086e-22) (242.227 1.17091 0) (241.7 1.17848 0) (241.167 1.18592 0) (240.628 1.19346 0) (240.083 1.20103 0) (239.534 1.20864 0) (238.978 1.21652 0) (238.418 1.22477 0) (237.852 1.23347 0) (237.282 1.24265 0) (236.708 1.25236 0) (236.128 1.26273 0) (235.546 1.27368 0) (234.959 1.28531 0) (234.368 1.29758 0) (233.775 1.31047 0) (233.177 1.32401 0) (232.576 1.33807 0) (231.972 1.35264 0) (231.364 1.36762 0) (230.752 1.3831 0) (230.135 1.39907 0) (229.513 1.41538 0) (228.886 1.43201 0) (228.254 1.44895 0) (227.615 1.46623 0) (226.97 1.4838 0) (226.318 1.50176 0) (225.657 1.51992 0) (227.543 0.882817 0) (228.206 0.87211 2.54706e-23) (228.861 0.861634 0) (229.508 0.851374 0) (230.148 0.841163 0) (230.781 0.831129 0) (231.408 0.821216 -2.5345e-23) (232.029 0.81148 0) (232.645 0.802053 0) (233.256 0.792696 2.52376e-23) (233.863 0.783675 -2.52633e-23) (234.464 0.77494 0) (235.062 0.766498 0) (235.656 0.758376 5.0382e-23) (236.245 0.750637 5.02841e-23) (236.831 0.743255 0) (237.412 0.73625 0) (237.988 0.729627 0) (238.56 0.723343 2.50693e-23) (239.127 0.717433 0) (239.689 0.711831 -2.50208e-23) (240.244 0.706504 0) (240.795 0.70138 -1.27502e-20) (241.34 0.696551 2.55227e-20) (241.878 0.691938 -1.27786e-20) (242.41 0.6872 0) (242.935 0.68276 0) (243.454 0.678146 0) (243.966 0.673485 2.47954e-23) (244.471 0.668475 -1.98473e-22) (244.969 0.663335 0) (245.461 0.657906 0) (243.773 1.14591 0) (240.938 1.68627 0) (236.914 2.26361 0) (231.869 2.85092 0) (226.004 3.42983 0) (219.459 3.99186 0) (212.341 4.53168 0) (204.752 5.04512 0) (196.785 5.52948 0) (188.519 5.97875 0) (179.699 6.3958 0) (169.985 6.78557 0) (159.397 7.1332 0) (148.147 7.42682 0) (136.509 7.65694 0) (124.752 7.81674 0) (113.096 7.90287 0) (101.715 7.91432 0) (90.7287 7.85256 0) (80.2155 7.72102 0) (70.2187 7.52461 0) (60.7542 7.26941 0) (51.8296 6.96263 0) (43.4421 6.61287 0) (35.5857 6.23005 0) (28.2416 5.82535 0) (21.3581 5.40947 0) (14.818 4.98501 0) (8.53551 4.55271 0) (2.49562 4.11652 0) (-3.31819 3.68024 0) (-8.92033 3.24756 0) (-14.3243 2.82298 0) (-19.5399 2.41103 0) (-24.5828 2.01533 0) (-29.4608 1.64072 0) (-34.1841 1.29061 0) (-38.7581 0.969815 0) (-43.1915 0.681536 0) (-47.4895 0.429528 0) (-51.6606 0.216312 0) (-55.7168 0.0436711 0) (-59.6809 -0.0892526 0) (-59.9142 -0.0139559 0) (-55.9802 0.125308 0) (-56.2501 0.207684 0) (-60.1554 0.0617803 0) (-60.4047 0.137603 0) (-56.5264 0.290849 0) (-56.8089 0.374332 0) (-60.6616 0.213685 0) (-60.9257 0.289909 0) (-57.0979 0.457846 0) (-57.3933 0.541136 0) (-61.1976 0.365975 0) (-61.4766 0.441682 0) (-57.6954 0.623968 -2.18956e-20) (-58.0028 0.706212 2.19171e-20) (-61.7632 0.516686 0) (-62.0564 0.590854 0) (-58.3171 0.787474 -2.19256e-20) (-58.6365 0.867775 1.73396e-23) (-62.3566 0.664123 0) (-62.6635 0.736357 0) (-58.962 0.947015 1.74184e-23) (-59.2932 1.02509 1.74921e-23) (-62.977 0.807467 0) (-63.2971 0.877446 0) (-59.6301 1.10206 1.75752e-23) (-59.9723 1.178 2.1942e-20) (-63.6236 0.946345 0) (-63.9566 1.01428 0) (-60.3208 1.25286 -2.19497e-20) (-56.5883 1.50778 0) (-56.2261 1.42735 0) (-55.8685 1.34595 0) (-55.515 1.26356 0) (-55.1669 1.17989 0) (-54.8232 1.09516 0) (-54.4844 1.00939 0) (-54.1504 0.922579 0) (-53.8211 0.834839 0) (-53.497 0.746453 0) (-53.178 0.657592 0) (-52.8643 0.568545 0) (-52.5558 0.479573 0) (-52.252 0.39092 0) (-51.9537 0.302996 0) (-47.8121 0.519676 0) (-48.1388 0.611205 0) (-48.4692 0.703599 0) (-44.2515 0.961773 0) (-43.8955 0.867213 0) (-43.542 0.773607 0) (-39.1353 1.06239 0) (-39.5132 1.15667 0) (-39.8931 1.25205 0) (-40.2742 1.34795 0) (-44.6099 1.05679 0) (-48.8032 0.79637 0) (-49.1412 0.889275 0) (-49.4832 0.982043 0) (-49.8291 1.07437 0) (-45.7017 1.34196 0) (-45.335 1.2472 0) (-44.971 1.15204 0) (-40.6568 1.44415 0) (-41.0412 1.54034 0) (-41.4272 1.63618 0) (-36.9959 1.95494 0) (-36.5925 1.85925 0) (-36.1896 1.76326 0) (-35.7876 1.6673 0) (-35.3856 1.57165 0) (-34.9848 1.47656 0) (-34.5834 1.3828 0) (-29.8819 1.73143 0) (-30.3025 1.82372 0) (-30.7224 1.91735 0) (-25.8943 2.28574 0) (-25.4579 2.19427 0) (-25.0213 2.10397 0) (-19.9931 2.49676 0) (-20.4427 2.58426 0) (-20.8926 2.67279 0) (-21.3381 2.76221 0) (-26.3291 2.37794 0) (-31.1421 2.01174 0) (-31.5612 2.10644 0) (-31.9801 2.2012 0) (-32.3985 2.29568 0) (-27.6255 2.65552 0) (-27.1946 2.56311 0) (-26.7624 2.47047 0) (-21.7831 2.85191 0) (-22.2255 2.9417 0) (-22.666 3.03132 0) (-23.1039 3.12056 0) (-28.055 2.74743 0) (-32.817 2.38964 0) (-37.4001 2.05013 0) (-41.8151 1.73151 0) (-46.0713 1.43611 0) (-50.1791 1.16609 0) (-50.5325 1.25698 -2.20618e-20) (-50.8901 1.34678 1.74894e-23) (-51.2511 1.43547 1.75841e-23) (-47.1958 1.71298 -4.41557e-20) (-46.8184 1.62169 -1.74818e-23) (-46.4439 1.52936 2.20754e-20) (-42.2041 1.82608 0) (-42.5952 1.91959 0) (-42.9876 2.0121 0) (-43.3816 2.10356 0) (-47.5759 1.8032 1.77282e-23) (-51.6163 1.52302 2.20664e-20) (-51.9843 1.60947 0) (-52.3563 1.69494 0) (-52.7319 1.77952 0) (-48.731 2.06804 -2.2107e-20) (-48.3439 1.98053 2.2065e-20) (-47.9581 1.89236 2.21022e-20) (-43.7772 2.19399 0) (-44.1738 2.28363 0) (-44.5721 2.37263 0) (-40.2418 2.69234 0) (-39.8346 2.60292 0) (-39.4274 2.51299 0) (-39.0214 2.42221 0) (-38.6153 2.33057 0) (-38.2097 2.238 0) (-37.805 2.1445 0) (-33.234 2.48301 0) (-33.6515 2.57546 0) (-34.0678 2.66709 0) (-29.3354 3.01896 0) (-28.9099 2.92921 0) (-28.4832 2.83868 0) (-23.5406 3.20898 0) (-23.9736 3.29674 0) (-24.4052 3.38384 0) (-24.8336 3.47016 0) (-29.7591 3.10778 0) (-34.4845 2.75768 0) (-34.8996 2.84754 0) (-35.3145 2.93678 0) (-35.7286 3.02558 0) (-31.0204 3.37061 0) (-30.6015 3.2834 0) (-30.181 3.19584 0) (-25.2603 3.55558 0) (-25.6834 3.64063 0) (-26.1045 3.72546 0) (-26.5223 3.81039 0) (-31.4374 3.45778 0) (-36.142 3.11425 0) (-40.6494 2.78155 0) (-44.9722 2.46129 0) (-49.1216 2.15504 0) (-53.111 1.86352 0) (-56.9551 1.5875 0) (-60.6738 1.327 2.19496e-20) (-64.2959 1.0814 0) (-64.6417 1.14793 0) (-61.0334 1.40055 -2.19569e-20) (-61.3976 1.47405 2.19567e-20) (-64.994 1.21417 0) (-65.353 1.28047 0) (-61.768 1.54778 0) (-62.144 1.6224 0) (-65.7183 1.34752 0) (-66.0909 1.41594 0) (-62.5263 1.69872 0) (-62.9148 1.77762 0) (-66.4711 1.48642 0) (-66.8587 1.56001 0) (-63.3098 1.86012 0) (-63.7117 1.94755 0) (-67.2545 1.63791 0) (-67.6592 1.72158 0) (-64.121 2.04156 0) (-64.5384 2.14405 0) (-68.0739 1.81281 0) (-68.4989 1.91399 0) (-64.9647 2.25746 0) (-65.4009 2.38476 0) (-68.9362 2.02782 0) (-69.3869 2.15762 -2.17668e-20) (-65.8481 2.52942 0) (-66.3071 2.69564 0) (-69.8527 2.30755 2.17882e-20) (-70.3354 2.4828 0) (-66.7798 2.88864 -2.19669e-20) (-63.1011 3.28231 0) (-62.642 3.07536 0) (-62.1921 2.89595 0) (-61.7508 2.73905 0) (-61.3178 2.60041 0) (-60.892 2.47652 0) (-60.4737 2.36432 0) (-60.0614 2.26145 0) (-59.6551 2.16585 0) (-59.2547 2.07585 0) (-58.859 1.98999 0) (-58.4685 1.90697 0) (-58.0832 1.82597 0) (-57.7026 1.74613 0) (-57.3265 1.6668 0) (-53.4936 1.94724 0) (-53.8799 2.03115 0) (-54.2697 2.1158 0) (-50.3069 2.41725 0) (-49.9094 2.32909 0) (-49.5142 2.24188 0) (-45.3728 2.55009 0) (-45.7757 2.6394 0) (-46.1794 2.72983 0) (-46.5843 2.82213 0) (-50.7067 2.50707 0) (-54.6629 2.20188 0) (-55.0604 2.29036 0) (-55.4612 2.38215 -2.20951e-20) (-55.8664 2.47838 1.89084e-23) (-51.9226 2.79669 -2.21043e-20) (-51.5145 2.69571 -2.20999e-20) (-51.1097 2.5995 2.20794e-20) (-46.9905 2.91733 0) (-47.3982 3.01653 0) (-47.8068 3.12086 0) (-43.5055 3.44974 0) (-43.0984 3.34353 0) (-42.6899 3.24279 0) (-42.2818 3.14618 0) (-41.8733 3.0526 0) (-41.4657 2.96104 0) (-41.0572 2.87092 0) (-36.5545 3.20326 0) (-36.9662 3.29313 0) (-37.3769 3.38449 0) (-32.6764 3.72421 0) (-32.2654 3.63401 0) (-31.8524 3.54541 0) (-26.9382 3.89567 0) (-27.3499 3.98204 0) (-27.7588 4.0701 0) (-28.1643 4.16058 0) (-33.085 3.81679 0) (-37.7863 3.47815 0) (-38.1945 3.57498 0) (-38.6012 3.67602 0) (-39.0062 3.78252 0) (-34.2947 4.11817 0) (-33.8944 4.01267 0) (-33.4911 3.91261 0) (-28.5662 4.25429 0) (-28.9641 4.35218 0) (-29.3576 4.45537 0) (-29.7463 4.56514 0) (-34.6915 4.23047 0) (-39.4092 3.89593 0) (-43.913 3.5627 0) (-48.2162 3.23179 0) (-52.3324 2.90413 1.90215e-23) (-56.2755 2.58068 1.90166e-23) (-56.6889 2.69074 1.91351e-23) (-57.1071 2.81058 2.21211e-20) (-57.5295 2.94287 0) (-53.5789 3.28437 0) (-53.1605 3.14575 -2.21276e-20) (-52.7454 3.0198 4.42118e-20) (-48.6268 3.35124 0) (-49.0381 3.48121 0) (-49.45 3.62408 0) (-49.8621 3.78256 0) (-53.9998 3.43863 0) (-57.9574 3.09052 0) (-58.3906 3.25698 0) (-58.8293 3.44633 0) (-59.2732 3.66348 0) (-55.2758 4.03163 0) (-54.8487 3.80803 0) (-54.4232 3.61187 0) (-50.274 3.95987 0) (-50.6849 4.1597 0) (-51.0941 4.38593 0) (-46.7148 4.72611 0) (-46.3244 4.50058 0) (-45.9292 4.30027 0) (-45.5303 4.12157 0) (-45.1285 3.96124 0) (-44.7247 3.81634 0) (-44.3194 3.68425 0) (-39.8096 4.01785 0) (-40.2073 4.15016 0) (-40.6014 4.29506 0) (-35.8553 4.62458 0) (-35.4725 4.48179 0) (-35.0843 4.35109 0) (-30.1296 4.68293 0) (-30.5067 4.81031 0) (-30.8768 4.94913 0) (-31.2388 5.10142 0) (-36.2324 4.78168 0) (-40.991 4.45504 0) (-41.3762 4.63252 0) (-41.7549 4.83035 0) (-42.1251 5.05216 0) (-37.3122 5.36421 0) (-36.9624 5.14883 0) (-36.6013 4.95568 0) (-31.5924 5.26941 0) (-31.9336 5.45557 0) (-32.265 5.66191 0) (-26.9663 5.946 0) (-26.6575 5.7505 0) (-26.334 5.5736 0) (-25.9984 5.41343 0) (-25.6524 5.26782 0) (-25.2957 5.13477 0) (-24.9315 5.01223 0) (-24.5594 4.89873 0) (-24.1807 4.79277 0) (-23.796 4.69304 0) (-23.4057 4.59841 0) (-23.0108 4.50789 0) (-22.6104 4.42058 0) (-22.206 4.33557 0) (-21.7969 4.25223 0) (-21.3845 4.16976 0) (-20.9676 4.08787 0) (-20.5471 4.00618 0) (-20.1233 3.92434 0) (-19.696 3.84204 0) (-19.2648 3.75896 0) (-18.8309 3.67521 0) (-18.3923 3.59091 0) (-17.9527 3.50555 0) (-17.5083 3.41976 0) (-17.0617 3.33357 0) (-16.612 3.24719 0) (-16.1596 3.16087 0) (-15.7039 3.07499 0) (-15.2474 2.9897 0) (-14.7853 2.90571 0) (-9.38985 3.32649 0) (-9.8565 3.40683 0) (-10.3199 3.48813 0) (-4.72547 3.90871 0) (-4.25969 3.83147 0) (-3.79199 3.75506 0) (2.02469 4.18748 0) (1.55698 4.25965 0) (1.09296 4.33266 0) (0.633498 4.40619 0) (-5.18694 3.98665 0) (-10.7801 3.57025 0) (-11.237 3.65275 0) (-11.6904 3.73525 0) (-12.1401 3.81762 0) (-6.5475 4.22146 0) (-6.09828 4.14326 0) (-5.64468 4.06497 0) (0.179212 4.48015 0) (-0.27106 4.55422 0) (-0.716176 4.628 0) (5.36894 5.03335 0) (5.80636 4.96413 0) (6.24914 4.89451 0) (6.69682 4.82501 0) (7.15013 4.75576 0) (7.60704 4.68687 0) (8.06984 4.61916 0) (14.3605 5.04714 0) (13.9075 5.11044 0) (13.4596 5.17483 0) (20.039 5.58565 0) (20.4739 5.52568 0) (20.9131 5.46677 0) (27.8125 5.87851 0) (27.3873 5.93281 0) (26.9681 5.98779 0) (26.5559 6.04324 0) (19.61 5.64614 0) (13.0177 5.23988 0) (12.58 5.30496 0) (12.1484 5.36995 0) (11.7224 5.43452 0) (18.3593 5.82694 0) (18.77 5.76704 0) (19.1869 5.7067 0) (26.1495 6.09884 0) (25.7498 6.15423 0) (25.3568 6.20917 0) (24.9709 6.26355 0) (17.955 5.88627 0) (11.3024 5.49855 0) (4.93693 5.10208 0) (-1.15654 4.70133 0) (-6.99245 4.2992 0) (-12.5861 3.89954 0) (-13.029 3.98086 0) (-13.4661 4.06168 0) (-13.902 4.14148 0) (-8.29987 4.52866 0) (-7.8689 4.45288 0) (-7.43292 4.37633 0) (-1.5913 4.7741 0) (-2.0223 4.84606 0) (-2.44621 4.91734 0) (-2.86564 4.98789 0) (-8.72621 4.60374 0) (-14.331 4.22083 0) (-14.7574 4.29942 0) (-15.1786 4.37754 0) (-15.5957 4.45554 0) (-9.97416 4.82602 0) (-9.56388 4.7522 0) (-9.14712 4.67829 0) (-3.27868 5.05797 0) (-3.68573 5.12756 0) (-4.08772 5.19677 0) (2.07919 5.56448 0) (2.46867 5.50014 0) (2.86471 5.43544 0) (3.26706 5.37019 0) (3.67599 5.30427 0) (4.08934 5.23755 0) (4.51042 5.17021 0) (10.8883 5.56198 0) (10.4812 5.62469 0) (10.0792 5.6864 0) (16.7816 6.05993 0) (17.1658 6.00291 0) (17.557 5.94496 0) (24.5919 6.31723 0) (24.2195 6.37004 0) (23.8564 6.42203 0) (23.4992 6.47309 0) (16.4044 6.11612 0) (9.68517 5.74744 0) (9.29708 5.80778 0) (8.91586 5.8675 0) (8.54157 5.92678 0) (15.3146 6.28047 0) (15.6706 6.22628 0) (16.034 6.17156 0) (23.1501 6.5233 0) (22.8092 6.57274 0) (22.4747 6.6213 0) (30.182 6.94535 0) (30.4853 6.90312 0) (30.7988 6.85989 0) (31.1205 6.81557 0) (31.4507 6.77014 0) (31.7899 6.72367 0) (32.1362 6.67619 0) (32.4912 6.62784 0) (32.8538 6.57873 0) (33.2239 6.52897 0) (33.6015 6.47874 0) (33.9859 6.42824 0) (34.3775 6.37793 0) (34.7736 6.32798 0) (35.1774 6.27865 0) (43.0666 6.65765 0) (42.6962 6.70286 0) (42.3324 6.74847 0) (50.8519 7.08686 0) (51.1724 7.04544 0) (51.4983 7.00395 0) (60.4771 7.30727 0) (60.2056 7.34502 0) (59.9402 7.38233 0) (59.6811 7.41908 0) (50.5394 7.1281 0) (41.9729 6.79408 0) (41.622 6.83954 0) (41.2776 6.88464 0) (40.9408 6.92908 0) (49.6407 7.24781 0) (49.9325 7.20879 0) (50.2319 7.16878 0) (59.4292 7.45501 0) (59.1848 7.48984 0) (58.9482 7.5233 0) (68.851 7.74618 0) (69.0244 7.71835 0) (69.2057 7.68884 0) (69.3946 7.65787 0) (69.5908 7.62573 0) (69.7936 7.59268 0) (70.0027 7.55889 0) (80.0688 7.75144 0) (79.9283 7.78106 0) (79.7944 7.80965 0) (90.5284 7.92801 0) (90.5885 7.90409 0) (90.6554 7.87885 0) (101.718 7.93628 0) (101.728 7.95698 0) (101.745 7.97607 0) (101.769 7.99344 0) (90.4752 7.95041 0) (79.6674 7.837 0) (79.5477 7.86282 0) (79.4357 7.88684 0) (79.3318 7.90888 0) (90.361 8.00547 0) (90.3912 7.98939 0) (90.4294 7.97098 0) (101.8 8.00869 0) (101.838 8.02144 0) (101.884 8.03154 0) (101.938 8.0388 0) (90.3392 8.019 0) (79.2362 7.92868 0) (68.6869 7.77217 0) (58.72 7.55523 0) (49.3571 7.28563 0) (40.612 6.97266 0) (40.2912 7.01523 0) (39.9785 7.05659 0) (39.6761 7.09679 0) (48.558 7.39063 0) (48.8163 7.35732 0) (49.0819 7.32221 0) (58.5004 7.58559 0) (58.2889 7.61394 0) (58.0891 7.64028 0) (57.8967 7.66458 0) (48.3111 7.42235 0) (39.3819 7.1357 0) (39.097 7.17325 0) (38.8223 7.20951 0) (38.5564 7.24424 0) (47.6283 7.50713 0) (47.8446 7.48066 0) (48.0732 7.45239 0) (57.715 7.68674 0) (57.5432 7.70671 0) (57.3825 7.72457 0) (67.7908 7.88781 0) (67.8896 7.87899 0) (67.998 7.86749 0) (68.1166 7.85339 0) (68.2439 7.83676 0) (68.3841 7.8176 0) (68.5285 7.79596 0) (79.1494 7.94593 0) (79.0714 7.96061 0) (79.0027 7.97255 0) (90.3257 8.04197 0) (90.3212 8.03736 0) (90.3258 8.02966 0) (102.001 8.04292 0) (102.072 8.04374 0) (102.152 8.04103 0) (102.239 8.03468 0) (90.3394 8.04333 0) (78.9442 7.98157 0) (78.8933 7.98752 0) (78.8545 7.99045 0) (78.8255 7.99051 0) (90.4372 8.0267 0) (90.3952 8.03554 0) (90.3624 8.04116 0) (102.339 8.02473 0) (102.445 8.01109 0) (102.56 7.99358 0) (102.687 7.97234 0) (90.4914 8.01449 0) (78.8056 7.98741 0) (67.7043 7.89396 0) (57.2314 7.74019 0) (47.4208 7.53184 0) (38.3005 7.27769 0) (29.8871 6.98678 0) (22.1496 6.6693 0) (14.9658 6.33428 0) (8.17416 5.98585 0) (1.69613 5.62875 0) (-4.4835 5.26605 0) (-10.3799 4.89999 0) (-16.0084 4.53368 0) (-16.4167 4.61231 0) (-16.8186 4.69206 0) (-17.2171 4.77329 0) (-11.5622 5.12657 0) (-11.174 5.04974 0) (-10.7798 4.97439 0) (-4.8729 5.33567 0) (-5.25587 5.4061 0) (-5.63217 5.47783 0) (-6.00144 5.55141 0) (-11.944 5.20544 0) (-17.6082 4.85685 0) (-17.9952 4.94333 0) (-18.3756 5.03372 0) (-18.7495 5.12888 0) (-13.0492 5.46193 0) (-12.688 5.37233 0) (-12.3195 5.28707 0) (-6.36355 5.62739 0) (-6.71793 5.70676 0) (-7.06431 5.79006 0) (-0.779513 6.11145 0) (-0.449892 6.03511 0) (-0.111809 5.96226 0) (0.234769 5.89222 0) (0.589131 5.82445 0) (0.950968 5.75828 0) (1.32005 5.6932 0) (7.81416 6.04492 0) (7.4616 6.10443 0) (7.11669 6.16475 0) (13.9656 6.496 0) (14.2912 6.44169 0) (14.6246 6.38788 0) (21.8323 6.71681 0) (21.5231 6.76416 0) (21.224 6.81186 0) (20.9323 6.85994 0) (13.6485 6.55119 0) (6.77986 6.22633 0) (6.45123 6.28997 0) (6.13136 6.35582 0) (5.82055 6.42472 0) (12.7503 6.7275 0) (13.0403 6.66646 0) (13.3399 6.6079 0) (20.6507 6.90891 0) (20.3789 6.95914 0) (20.1176 7.01112 0) (19.8676 7.06527 0) (12.4704 6.79158 0) (5.51934 6.4973 0) (-1.09997 6.19195 0) (-7.40205 5.87805 0) (-13.4024 5.55678 0) (-19.1164 5.2298 0) (-19.4755 5.33764 0) (-19.8261 5.45382 0) (-20.1667 5.57971 0) (-14.4056 5.88371 0) (-14.0823 5.76636 0) (-13.7468 5.65787 0) (-7.73041 5.97155 0) (-8.04851 6.07145 0) (-8.35517 6.17903 0) (-8.64909 6.29592 0) (-14.7182 6.01135 0) (-20.4963 5.71698 0) (-20.8138 5.86761 0) (-21.1181 6.03332 0) (-21.4063 6.21591 0) (-15.5691 6.4725 0) (-15.3013 6.30427 0) (-15.017 6.15105 0) (-8.92913 6.42362 0) (-9.19333 6.56347 0) (-9.44182 6.71639 0) (-3.00834 6.94877 0) (-2.78091 6.81172 0) (-2.53447 6.68598 0) (-2.27402 6.57077 0) (-1.99879 6.46525 0) (-1.71063 6.36797 0) (-1.41064 6.27724 0) (5.22825 6.57412 0) (4.94807 6.65571 0) (4.67939 6.74292 0) (11.6997 7.00493 0) (11.9442 6.93003 0) (12.2014 6.85912 0) (19.6299 7.1219 0) (19.4054 7.18135 0) (19.1956 7.24443 0) (19.0017 7.31235 0) (11.4689 7.08612 0) (4.42313 6.83715 0) (4.18085 6.93967 0) (3.95401 7.05104 0) (3.74472 7.17173 0) (10.8722 7.37454 0) (11.0536 7.27081 0) (11.2523 7.17475 0) (18.8246 7.38585 0) (18.6654 7.46537 0) (18.5259 7.55105 0) (26.8717 7.68751 0) (26.9649 7.62154 0) (27.0774 7.56019 0) (27.2089 7.50363 0) (27.3578 7.4516 0) (27.5231 7.40327 0) (27.7035 7.35735 0) (27.8983 7.31303 0) (28.1066 7.27008 0) (28.3277 7.22835 0) (28.5608 7.18759 0) (28.8052 7.14741 0) (29.0606 7.10747 0) (29.3256 7.06757 0) (29.6022 7.02755 0) (38.0567 7.31027 0) (37.8219 7.34166 0) (37.599 7.37225 0) (46.8668 7.59711 0) (47.0399 7.57681 0) (47.2248 7.55513 0) (57.0912 7.75363 0) (56.9643 7.76512 0) (56.8465 7.77472 0) (56.7428 7.78271 0) (46.7055 7.61639 0) (37.3872 7.40237 0) (37.1874 7.43209 0) (37 7.46171 0) (36.8255 7.49153 0) (46.2976 7.66932 0) (46.4204 7.65222 0) (46.5565 7.63467 0) (56.6506 7.78921 0) (56.5713 7.79444 0) (56.5054 7.79866 0) (67.4158 7.87383 0) (67.4197 7.88237 0) (67.4367 7.88939 0) (67.4667 7.89465 0) (67.5086 7.89796 0) (67.5631 7.89898 0) (67.6277 7.89759 0) (78.7973 7.98125 0) (78.7991 7.97234 0) (78.8137 7.96057 0) (90.7117 7.9577 0) (90.6275 7.97988 0) (90.5537 7.99883 0) (102.823 7.94739 0) (102.968 7.91868 0) (103.126 7.88651 0) (103.292 7.85117 0) (90.8074 7.93257 0) (78.8388 7.9462 0) (78.8768 7.92959 0) (78.9255 7.91062 0) (78.9871 7.88941 0) (91.1658 7.84082 0) (91.0337 7.87396 0) (90.9139 7.90467 0) (103.47 7.81257 0) (103.66 7.7709 0) (103.86 7.7263 0) (104.073 7.679 0) (91.309 7.80552 0) (79.0632 7.86644 0) (67.4252 7.86391 0) (56.4533 7.80202 0) (46.1887 7.68614 0) (36.6646 7.52174 0) (36.5179 7.55247 0) (36.3862 7.58403 0) (36.27 7.61716 0) (45.9511 7.73773 0) (46.0149 7.71985 0) (46.0943 7.70287 0) (56.4155 7.80471 0) (56.3925 7.80711 0) (56.385 7.8098 0) (56.3938 7.8134 0) (45.9037 7.75733 0) (36.1703 7.65294 0) (36.0883 7.69206 0) (36.0244 7.73463 0) (35.9826 7.78074 0) (45.8717 7.83022 0) (45.8625 7.80338 0) (45.8739 7.77915 0) (56.4196 7.81829 0) (56.4636 7.82466 0) (56.5268 7.83281 0) (67.9193 7.78449 0) (67.7989 7.79447 0) (67.6948 7.8052 0) (67.6091 7.81669 0) (67.5401 7.82872 0) (67.4868 7.84093 0) (67.4487 7.85282 0) (79.1522 7.84197 0) (79.2554 7.81622 0) (79.3733 7.78957 0) (91.8215 7.68857 0) (91.6367 7.72906 0) (91.4661 7.76816 0) (104.299 7.62941 0) (104.537 7.57772 0) (104.788 7.52419 0) (105.053 7.46913 0) (92.0209 7.64704 0) (79.5065 7.76245 0) (79.6558 7.73518 0) (79.8219 7.70797 0) (80.0059 7.68069 0) (92.7137 7.51839 0) (92.4663 7.56187 0) (92.2356 7.60473 0) (105.332 7.41279 0) (105.627 7.35532 0) (105.935 7.29675 0) (106.262 7.23717 0) (92.9778 7.47421 0) (80.2079 7.65334 0) (68.0603 7.77508 0) (56.6109 7.84249 0) (45.8989 7.85951 0) (35.9602 7.83064 0) (26.8028 7.75829 0) (18.4076 7.6427 0) (10.7098 7.48615 0) (3.55479 7.30261 0) (-3.21727 7.09792 0) (-9.67066 6.88349 0) (-15.8187 6.65714 0) (-21.6768 6.41696 0) (-27.2595 6.16187 0) (-32.579 5.89126 0) (-37.6509 5.60472 0) (-42.486 5.30141 0) (-47.0984 4.98101 0) (-51.5002 4.64309 0) (-55.7036 4.28754 0) (-59.7219 3.91409 0) (-63.5698 3.52293 0) (-67.2659 3.11475 2.20097e-20) (-70.8377 2.68933 0) (-71.3605 2.93523 0) (-67.7678 3.38143 0) (-68.2851 3.69814 0) (-71.9068 3.2304 0) (-72.4777 3.58707 0) (-68.8186 4.07561 0) (-69.3665 4.52627 0) (-73.0751 4.0191 0) (-73.6972 4.54369 0) (-69.9237 5.06491 0) (-70.4843 5.70776 -2.19554e-20) (-74.3383 5.18273 0) (-74.9899 5.95673 0) (-71.035 6.47014 2.20007e-20) (-71.5591 7.36356 0) (-75.6326 6.88557 0) (-76.2389 7.98145 0) (-72.0308 8.39266 0) (-72.4203 9.54281 0) (-76.7683 9.23419 0) (-77.1792 10.6191 0) (-72.7002 10.7937 0) (-72.8416 12.1968 0) (-77.4253 12.1978 0) (-77.4558 14.062 0) (-72.8058 13.8235 0) (-72.5353 15.6644 -2.7498e-21) (-77.1918 16.1923 -1.9058e-20) (-76.5772 18.4937 2.18305e-20) (-71.9904 17.6584 0) (-67.4367 16.931 0) (-67.9386 15.1861 0) (-68.2161 13.5767 0) (-68.3008 12.1433 0) (-68.2361 10.8891 0) (-68.0513 9.75414 0) (-67.7674 8.698 0) (-67.4013 7.73982 0) (-66.9757 6.89212 0) (-66.511 6.15514 0) (-66.0244 5.5222 0) (-65.5279 4.98246 0) (-65.0293 4.52376 0) (-64.5346 4.1348 0) (-64.0477 3.80442 0) (-60.1749 4.20439 0) (-60.6306 4.54169 0) (-61.0863 4.9348 0) (-56.9728 5.31055 -2.20889e-20) (-56.5549 4.92017 0) (-56.1309 4.58151 0) (-51.9011 4.93644 0) (-52.294 5.27146 0) (-52.6749 5.65401 0) (-53.0399 6.08957 0) (-57.379 5.75995 2.1567e-23) (-61.5375 5.39256 0) (-61.9777 5.92359 0) (-62.3986 6.5371 0) (-62.7887 7.24049 0) (-58.4562 7.52784 0) (-58.1302 6.86299 0) (-57.7673 6.2753 2.21297e-20) (-53.3818 6.58343 0) (-53.6922 7.14053 0) (-53.9627 7.76391 0) (-49.2937 7.95632 0) (-49.0713 7.37596 0) (-48.8064 6.8524 0) (-48.5079 6.38366 0) (-48.1824 5.9663 0) (-47.8354 5.59646 0) (-47.473 5.26962 0) (-42.8345 5.58167 0) (-43.1676 5.89668 0) (-43.4814 6.25021 0) (-38.5613 6.50785 0) (-38.2784 6.17349 0) (-37.9736 5.87342 0) (-32.8772 6.1461 0) (-33.1558 6.42868 0) (-33.4092 6.74136 0) (-33.6349 7.08658 0) (-38.8178 6.87938 0) (-43.7709 6.64593 0) (-44.0312 7.08678 0) (-44.2551 7.5748 0) (-44.435 8.11129 0) (-39.3726 8.23392 0) (-39.2294 7.74141 0) (-39.0425 7.29022 0) (-33.8275 7.46579 0) (-33.9818 7.87962 0) (-34.0924 8.32865 0) (-34.1537 8.8124 0) (-39.4653 8.76749 0) (-44.5641 8.69599 0) (-49.4646 8.59331 0) (-54.1823 8.45405 0) (-58.7329 8.27151 0) (-63.1332 8.03719 0) (-63.4148 8.92508 0) (-63.6176 9.89447 0) (-63.7304 10.9284 0) (-59.1393 10.9245 0) (-59.0839 9.97982 0) (-58.9464 9.09142 0) (-54.3395 9.20846 0) (-54.4239 10.0213 0) (-54.431 10.8845 0) (-54.3494 11.8033 0) (-59.0958 11.941 0) (-63.7351 12.0551 0) (-63.6131 13.3253 0) (-63.3268 14.7424 0) (-62.8525 16.2784 2.21344e-20) (-58.1899 15.6787 0) (-58.6477 14.3218 0) (-58.9429 13.0694 0) (-54.1684 12.8078 0) (-53.8638 13.9168 0) (-53.416 15.1173 0) (-48.5041 14.583 0) (-48.9467 13.5218 0) (-49.2614 12.5409 0) (-49.4687 11.6448 0) (-49.5819 10.813 0) (-49.6154 10.0263 0) (-49.5747 9.28473 0) (-44.6341 9.3269 0) (-44.638 10.0008 0) (-44.5704 10.7144 0) (-39.3773 10.5937 0) (-39.4734 9.94977 0) (-39.501 9.34025 0) (-34.1598 9.32919 0) (-34.1054 9.8771 0) (-33.9854 10.4544 0) (-33.7962 11.0604 0) (-39.2095 11.2715 0) (-44.4285 11.4673 0) (-44.1996 12.2677 0) (-43.8735 13.1332 0) (-43.4332 14.0685 0) (-38.1851 13.5699 0) (-38.6251 12.7492 0) (-38.9632 11.9863 0) (-33.5336 11.697 0) (-33.187 12.3679 0) (-32.7462 13.0827 0) (-32.2012 13.8395 0) (-37.6313 14.4376 0) (-42.8671 15.0561 0) (-47.9239 15.7017 0) (-52.8153 16.3807 0) (-57.5596 17.1038 -2.21231e-20) (-62.1778 17.8859 -2.21437e-20) (-66.7001 18.7472 -2.76267e-21) (-71.1622 19.7182 2.75541e-21) (-75.611 20.8446 0) (-80.0987 22.2034 0) (-78.5517 24.7562 4.27868e-20) (-76.7536 27.0051 -1.2837e-19) (-74.8123 28.8097 8.61376e-20) (-71.1295 26.9009 -1.9654e-19) (-72.813 25.1834 -2.1809e-20) (-74.3344 23.1193 0) (-70.0708 21.7443 0) (-68.7552 23.6217 0) (-67.2719 25.2263 4.4018e-20) (-65.6848 26.4987 0) (-69.3539 28.2318 -1.0957e-19) (-72.7942 30.1643 1.74067e-19) (-75.9554 32.3409 -3.03735e-19) (-73.7443 33.3505 0) (-70.7841 31.2077 0) (-68.778 32.0275 2.19784e-20) (-71.5524 34.1049 3.4843e-19) (-73.9463 36.3282 -6.9709e-19) (-71.7156 36.7732 0) (-69.4382 34.6447 -4.39666e-20) (-66.8031 32.6319 1.43072e-23) (-63.8469 30.7328 1.78441e-23) (-65.6901 30.1058 -2.20682e-20) (-67.5367 29.2748 2.20236e-20) (-64.0267 27.5064 0) (-62.3198 28.3214 -2.76382e-21) (-60.5931 28.9466 0) (-58.8589 29.3879 0) (-62.0174 31.1635 0) (-64.8714 33.0293 0) (-67.3989 34.978 6.61449e-20) (-69.5852 37.0093 -4.38e-20) (-67.5612 37.0649 7.72465e-23) (-65.6321 36.9585 2.21315e-20) (-63.7849 36.701 -4.70927e-20) (-62.0092 36.3016 0) (-63.7468 38.0193 0) (-62.0485 37.4188 0) (-63.5048 39.0401 0) (-61.9036 38.258 -2.77989e-20) (-60.3631 37.3742 0) (-58.8421 35.8802 0) (-60.4162 36.7038 5.55608e-21) (-58.6475 35.1203 0) (-60.2991 35.7721 0) (-58.2527 34.1124 0) (-59.9637 34.58 0) (-61.7293 34.9112 2.77072e-21) (-63.5533 35.096 -2.2149e-20) (-65.4402 35.1228 -4.4215e-20) (-62.9862 33.2351 0) (-61.1497 33.2689 0) (-59.3581 33.1422 0) (-56.6781 31.4028 0) (-58.4288 31.4864 0) (-60.2098 31.4104 0) (-57.1269 29.6542 0) (-55.4051 29.7552 0) (-53.7001 29.7008 0) (-52.0164 29.5006 0) (-54.9602 31.1703 0) (-57.612 32.8662 0) (-55.9107 32.4513 0) (-54.2532 31.9069 0) (-56.5933 33.5176 0) (-54.9824 32.8038 0) (-57.0499 34.3533 0) (-55.5021 33.4781 0) (-57.3207 34.9528 2.77866e-21) (-58.8774 36.3924 -2.7819e-21) (-57.4409 35.3169 0) (-58.7877 36.6628 0) (-57.4415 35.4535 0) (-58.6034 36.703 2.23107e-20) (-57.3483 35.3762 0) (-56.125 33.9715 -1.39471e-21) (-57.1754 35.0959 2.79228e-21) (-56.0344 33.5901 2.7928e-21) (-56.941 34.6317 -2.79549e-21) (-55.8784 33.036 2.79642e-21) (-56.6561 33.9992 -2.7989e-21) (-55.6675 32.3248 0) (-56.3304 33.2154 0) (-55.411 31.4736 0) (-55.9718 32.297 2.24582e-20) (-56.3848 33.0621 -2.24912e-20) (-55.5861 31.2649 0) (-54.7858 29.4208 0) (-53.9815 27.5306 2.81159e-21) (-54.4225 28.2535 -5.62907e-21) (-53.6601 26.3285 2.81538e-21) (-54.0262 27.0124 -2.81725e-21) (-54.2747 27.6436 0) (-54.4107 28.2177 0) (-54.4385 28.7341 -8.99429e-20) (-54.3592 29.1949 -3.56992e-19) (-54.1725 29.5757 1.78047e-19) (-53.7532 27.7768 1.78127e-19) (-53.8628 27.3454 0) (-53.3214 25.4714 4.51399e-20) (-53.2787 25.9465 -4.47958e-20) (-52.7475 24.0843 -2.25365e-20) (-52.7324 23.5651 0) (-52.6333 22.9982 0) (-53.2736 24.9453 2.26094e-20) (-53.8741 26.8551 -2.25906e-20) (-53.7867 26.311 2.25984e-20) (-53.1328 24.3681 -2.26059e-20) (-52.4456 22.3848 0) (-52.1628 21.7267 0) (-52.8935 23.7411 0) (-53.5966 25.7125 0) (-53.2978 25.0605 0) (-52.5492 23.066 0) (-51.778 21.0266 0) (-51.285 20.2884 0) (-52.0938 22.3476 0) (-52.8846 24.36 0) (-52.3512 23.6144 0) (-53.1707 25.595 0) (-52.5517 24.8144 0) (-53.408 26.7572 0) (-54.2619 28.6524 0) (-55.1157 30.4994 0) (-54.5004 29.6788 0) (-53.5961 27.8325 0) (-52.6958 25.9357 0) (-51.7969 23.9894 0) (-50.8979 21.9951 0) (-51.6911 22.8253 0) (-50.8236 20.7879 0) (-51.5206 21.5876 0) (-50.6769 19.5127 0) (-49.9471 18.7004 0) (-49.0896 17.8552 0) (-49.9961 19.9509 0) (-49.0321 19.0799 0) (-49.9651 21.1274 0) (-50.8994 23.1238 0) (-51.8378 25.07 0) (-52.7811 26.9636 0) (-53.7324 28.8053 0) (-54.6938 30.5929 0) (-53.8121 29.6593 0) (-54.8362 31.3779 0) (-53.8281 30.3781 0) (-54.9195 32.0168 0) (-53.771 30.9458 0) (-54.9335 32.4938 0) (-53.6299 31.347 0) (-54.8666 32.7935 0) (-56.1361 34.164 0) (-54.7011 32.9009 0) (-56.0496 34.1518 0) (-54.4202 32.8065 0) (-55.8478 33.9267 0) (-54.0015 32.5005 0) (-52.5457 31.4255 0) (-51.1334 30.2585 0) (-53.036 31.597 0) (-51.6903 30.3021 0) (-53.3908 31.5677 0) (-52.1156 30.1559 0) (-50.8739 28.667 0) (-52.425 29.8273 0) (-51.2504 28.2379 0) (-52.6356 29.3304 0) (-51.5245 27.6494 0) (-52.7584 28.6769 0) (-51.7074 26.914 0) (-52.8039 27.8824 0) (-51.8097 26.0497 0) (-50.8264 24.1616 0) (-49.6555 23.2144 0) (-50.6741 25.0932 0) (-49.3672 24.0977 0) (-50.436 25.9046 0) (-48.9816 24.8562 0) (-50.103 26.5798 0) (-48.4876 25.4745 0) (-49.6655 27.106 0) (-47.8749 25.9409 0) (-49.1118 27.4716 0) (-50.3829 28.9262 0) (-48.427 27.664 0) (-49.7605 29.0035 0) (-47.5966 27.6771 0) (-48.9889 28.8914 0) (-50.422 30.0161 0) (-51.8983 31.0474 0) (-53.4175 31.9782 0) (-51.0658 30.4618 0) (-52.6384 31.2414 0) (-50.0194 29.6745 0) (-51.6298 30.2976 0) (-53.2771 30.799 0) (-50.358 29.1635 0) (-48.7281 28.6981 0) (-47.1299 28.1123 0) (-43.9734 26.5603 0) (-45.5548 27.1149 0) (-47.162 27.5515 0) (-48.7908 27.8628 0) (-50.4365 28.0411 0) (-52.0937 28.0784 0) (-53.7557 27.9666 0) (-55.4151 27.6975 0) (-57.0622 27.2638 0) (-58.6861 26.6589 2.76156e-21) (-60.2752 25.879 0) (-61.8031 24.9223 -2.76216e-21) (-63.2446 23.7285 -2.76314e-21) (-64.5734 22.251 0) (-65.7377 20.5535 0) (-61.3075 19.4975 0) (-60.2547 21.0255 0) (-59.0445 22.3712 2.76211e-21) (-54.6666 21.1255 0) (-55.785 19.911 0) (-56.7546 18.5406 2.2146e-20) (-52.059 17.6595 0) (-51.1513 18.8831 0) (-50.105 19.9702 0) (-48.9449 20.8812 0) (-53.4313 22.1341 0) (-57.7176 23.4752 2.76074e-21) (-56.2959 24.3693 0) (-54.8069 25.1018 0) (-53.2728 25.6734 0) (-49.2379 24.1656 0) (-50.694 23.6363 0) (-52.0978 22.9593 0) (-47.6854 21.6332 0) (-46.354 22.2499 0) (-44.9663 22.7311 0) (-40.4644 21.3625 0) (-41.7926 20.9339 0) (-43.06 20.3804 0) (-44.2554 19.703 0) (-45.354 18.8888 0) (-46.3426 17.9231 0) (-47.2034 16.8362 0) (-42.1735 16.0586 0) (-41.3505 17.0185 0) (-40.4085 17.8698 0) (-35.264 16.9045 0) (-36.166 16.1606 0) (-36.9572 15.3185 0) (-31.5459 14.6082 0) (-30.7805 15.3404 0) (-29.9135 15.9858 0) (-28.9509 16.5302 0) (-34.2614 17.5339 0) (-39.3618 18.59 0) (-38.2218 19.192 0) (-37.0103 19.6802 0) (-35.7381 20.0543 0) (-30.7876 18.8018 0) (-32.0103 18.4835 0) (-33.1711 18.0608 0) (-27.9068 16.9823 0) (-26.7933 17.3401 0) (-25.6184 17.6031 0) (-24.3914 17.7711 0) (-29.5132 19.0164 0) (-34.4131 20.3142 0) (-39.088 21.6671 0) (-43.5325 23.0771 0) (-47.7408 24.5486 0) (-51.7045 26.0866 0) (-50.113 26.346 0) (-48.5093 26.4572 0) (-46.8998 26.4262 0) (-43.1011 24.8575 0) (-44.6625 24.8897 0) (-46.2113 24.7883 0) (-42.0621 23.2909 0) (-40.5641 23.375 0) (-39.0494 23.3348 0) (-37.5256 23.1745 0) (-41.5357 24.6976 0) (-45.294 26.261 0) (-43.6987 25.9681 -2.21814e-20) (-42.1177 25.554 2.21797e-20) (-40.5588 25.0263 -2.22026e-20) (-36.8913 23.5137 0) (-38.4255 24.0198 0) (-39.9757 24.4164 0) (-36.0026 22.8997 0) (-34.4854 22.5158 0) (-32.9807 22.0281 0) (-28.8351 20.5734 0) (-30.307 21.0459 0) (-31.7887 21.4208 0) (-33.2729 21.6933 0) (-34.7544 21.8587 0) (-36.2236 21.9121 0) (-37.6712 21.8494 0) (-33.0472 20.462 0) (-31.6479 20.4994 0) (-30.2245 20.4294 0) (-25.4682 19.0486 0) (-26.8446 19.1374 0) (-28.1962 19.1277 0) (-23.1227 17.8447 0) (-21.8199 17.8259 0) (-20.491 17.7168 0) (-19.1447 17.5199 0) (-24.0746 18.8638 0) (-28.7863 20.2556 0) (-27.3419 19.9822 0) (-25.9 19.614 0) (-24.4634 19.1537 0) (-19.8753 17.7733 0) (-21.271 18.2225 0) (-22.6725 18.587 0) (-17.7883 17.2385 0) (-16.4305 16.876 0) (-15.0785 16.436 0) (-10.0791 15.1441 0) (-11.3851 15.5762 0) (-12.695 15.9373 0) (-14.0027 16.2242 0) (-15.2996 16.434 0) (-16.579 16.5642 0) (-17.8324 16.6122 0) (-19.0522 16.5761 0) (-20.2312 16.4543 0) (-21.3596 16.2463 0) (-22.4279 15.9524 0) (-23.4281 15.573 0) (-24.3525 15.11 0) (-25.187 14.5569 0) (-25.9276 13.9263 0) (-26.5662 13.2609 0) (-27.1022 12.6064 0) (-27.5431 11.9866 0) (-27.8967 11.399 0) (-28.1731 10.8371 0) (-28.3793 10.2999 0) (-28.519 9.78651 0) (-28.5959 9.29769 0) (-28.6148 8.83476 0) (-28.5807 8.39941 0) (-28.4986 7.9933 0) (-28.3734 7.61704 0) (-28.2097 7.27032 0) (-28.0124 6.95284 0) (-27.7851 6.66351 0) (-27.5343 6.40039 0) (-21.928 6.6377 0) (-22.1558 6.87965 0) (-22.3574 7.14437 0) (-16.4318 7.31837 0) (-16.2523 7.07915 0) (-16.0476 6.859 0) (-9.87745 7.06571 0) (-10.0621 7.26366 0) (-10.2192 7.47765 0) (-10.3474 7.70768 0) (-16.5801 7.57742 0) (-22.5291 7.43306 0) (-22.6668 7.74664 0) (-22.7663 8.08536 0) (-22.8238 8.4493 0) (-16.8082 8.48261 0) (-16.7718 8.15949 0) (-16.6939 7.85765 0) (-10.4431 7.95524 0) (-10.5 8.22139 0) (-10.5197 8.50549 0) (-3.94413 8.52259 0) (-3.93806 8.27615 0) (-3.89432 8.04414 0) (-3.81555 7.82718 0) (-3.70708 7.62453 0) (-3.56942 7.43547 0) (-3.40485 7.26001 0) (3.3862 7.44425 0) (3.2413 7.59691 0) (3.12334 7.76059 0) (10.3677 7.87225 0) (10.4562 7.73495 0) (10.571 7.60619 0) (18.313 7.74079 0) (18.2416 7.84524 0) (18.199 7.95549 0) (18.1834 8.07162 0) (10.3103 8.01781 0) (3.03275 7.93354 0) (2.97548 8.11762 0) (2.95185 8.31533 0) (2.9656 8.52465 0) (10.3416 8.50922 0) (10.2942 8.33641 0) (10.2846 8.17231 0) (18.2008 8.19474 0) (18.2493 8.32546 0) (18.334 8.46282 0) (18.4562 8.60496 0) (10.4275 8.68893 0) (3.01982 8.74364 0) (-3.9091 8.78204 0) (-10.4961 8.80617 0) (-16.8001 8.82609 0) (-22.8349 8.83775 0) (-22.7952 9.24899 0) (-22.7002 9.68135 0) (-22.5455 10.1337 0) (-16.4694 9.96234 0) (-16.6349 9.5674 0) (-16.7438 9.18825 0) (-10.4266 9.12185 0) (-10.3075 9.4509 0) (-10.1359 9.79209 0) (-9.9085 10.1448 0) (-16.2437 10.3727 0) (-22.3272 10.6054 0) (-22.0416 11.0967 0) (-21.6838 11.6082 0) (-21.245 12.1416 0) (-15.1667 11.6928 0) (-15.5966 11.2383 0) (-15.9542 10.7982 0) (-9.62078 10.5082 0) (-9.26921 10.8795 0) (-8.84977 11.2595 0) (-2.23571 10.842 0) (-2.65196 10.5282 0) (-3.00254 10.2197 0) (-3.29245 9.91619 0) (-3.5246 9.62024 0) (-3.70248 9.33277 0) (-3.82961 9.05293 0) (3.11749 8.97087 0) (3.26125 9.20462 0) (3.4547 9.44372 0) (10.9448 9.25355 0) (10.7274 9.06207 0) (10.5551 8.87368 0) (18.6172 8.75002 0) (18.8187 8.89697 0) (19.0624 9.04529 0) (19.3498 9.19438 0) (11.2105 9.44761 0) (3.70109 9.68745 0) (4.00259 9.93447 0) (4.36142 10.1837 0) (4.77939 10.435 0) (12.3165 10.0337 0) (11.895 9.83863 0) (11.5267 9.64309 0) (19.6829 9.34327 0) (20.0628 9.49072 0) (20.4908 9.63605 0) (29.391 9.23675 0) (28.9531 9.13687 0) (28.5586 9.03324 0) (28.2065 8.92662 0) (27.8959 8.81816 0) (27.6252 8.70889 0) (27.3932 8.59956 0) (27.1985 8.49088 0) (27.0397 8.38371 0) (26.9158 8.27964 0) (26.8242 8.18042 0) (26.7657 8.08664 0) (26.7343 7.99794 0) (26.7313 7.91381 0) (26.7533 7.83388 0) (35.9612 7.88399 0) (35.986 7.94024 0) (36.036 7.9996 0) (46.1234 7.96084 0) (46.026 7.9249 0) (45.9516 7.89107 0) (56.7133 7.85334 0) (56.8402 7.86559 0) (56.9892 7.87919 0) (57.1621 7.89402 0) (46.2467 7.99895 0) (36.1116 8.06237 0) (36.2169 8.12877 0) (36.3493 8.19897 0) (36.5134 8.27228 0) (46.7775 8.12713 0) (46.5727 8.08253 0) (46.3958 8.03956 0) (57.3596 7.9103 0) (57.5829 7.9278 0) (57.8331 7.94581 0) (69.6537 7.72437 0) (69.3558 7.73086 0) (69.0826 7.73709 0) (68.8335 7.74362 0) (68.6075 7.7507 0) (68.4038 7.75825 0) (68.2227 7.76631 0) (80.4286 7.62607 0) (80.6693 7.5988 0) (80.9303 7.57137 0) (93.8786 7.33866 0) (93.5598 7.38443 0) (93.2596 7.42955 0) (106.602 7.17676 0) (106.959 7.11534 0) (107.333 7.05297 0) (107.724 6.98967 0) (94.2164 7.29228 0) (81.212 7.54381 0) (81.5152 7.51611 0) (81.8405 7.48804 0) (82.1882 7.45914 0) (95.3478 7.14837 0) (94.9507 7.19739 0) (94.5736 7.24526 0) (108.132 6.92543 0) (108.558 6.8601 0) (109 6.79341 0) (109.46 6.72506 0) (95.7653 7.09774 0) (82.559 7.42884 0) (69.9771 7.71694 0) (58.1108 7.96361 0) (47.0144 8.17234 0) (36.7095 8.34722 0) (36.9389 8.42243 0) (37.2027 8.49727 0) (37.5018 8.57093 0) (47.9087 8.30158 0) (47.577 8.26043 0) (47.2806 8.21712 0) (58.4171 7.9802 0) (58.7522 7.99461 0) (59.1164 8.0063 0) (59.5108 8.01436 0) (48.2703 8.33982 0) (37.8374 8.64256 0) (38.2104 8.71104 0) (38.622 8.77497 0) (39.0731 8.83343 0) (49.5675 8.42409 0) (49.1 8.40232 0) (48.6682 8.3738 0) (59.935 8.01758 0) (60.3905 8.01448 0) (60.8774 8.00371 0) (72.9754 7.56868 0) (72.4668 7.60774 0) (71.9851 7.63854 0) (71.5309 7.66246 0) (71.1029 7.68123 0) (70.7015 7.69603 0) (70.3265 7.70776 0) (82.9529 7.39643 0) (83.3696 7.36138 0) (83.8094 7.32317 0) (97.1369 6.93104 0) (96.66 6.98943 0) (96.2027 7.04489 0) (109.938 6.65473 0) (110.431 6.58216 0) (110.941 6.50687 0) (111.466 6.42834 0) (97.6333 6.8689 0) (84.2723 7.28097 0) (84.7575 7.23367 0) (85.2662 7.17922 0) (85.7973 7.11634 0) (99.2343 6.64576 0) (98.6823 6.72803 0) (98.1482 6.80202 0) (112.006 6.34572 0) (112.562 6.25631 0) (113.131 6.15903 0) (113.712 6.0556 0) (99.8034 6.5559 0) (86.3504 7.04472 0) (73.5103 7.52026 0) (61.3964 7.9836 0) (50.0719 8.43701 0) (39.5657 8.88428 0) (29.8757 9.33062 0) (20.9701 9.77735 0) (12.7945 10.2274 0) (5.25995 10.6876 0) (-1.74871 11.1614 0) (-8.35338 11.6512 0) (-14.6545 12.1634 0) (-20.7174 12.7005 0) (-20.0977 13.2683 0) (-19.3814 13.803 0) (-18.5776 14.2689 0) (-12.5881 13.4681 0) (-13.3644 13.0841 0) (-14.0539 12.6385 0) (-7.77186 12.0433 0) (-7.10795 12.4086 0) (-6.36387 12.7201 0) (-5.5499 12.9655 0) (-11.7355 13.7812 0) (-17.6916 14.6551 0) (-16.7333 14.9653 0) (-15.7092 15.1984 0) (-14.6276 15.3539 0) (-8.80486 14.3085 0) (-9.83792 14.2023 0) (-10.8175 14.0263 0) (-4.67409 13.147 0) (-3.7411 13.2675 0) (-2.75789 13.3265 0) (3.57654 12.4053 0) (2.64695 12.3906 0) (1.76352 12.3203 0) (0.932684 12.1938 0) (0.159982 12.0094 0) (-0.549364 11.767 0) (-1.18699 11.4771 0) (5.80725 10.9338 0) (6.42192 11.1559 0) (7.10142 11.3355 0) (14.5855 10.6983 0) (13.9299 10.5744 0) (13.3321 10.4124 0) (21.5031 9.90794 0) (22.0898 10.0161 0) (22.7283 10.0896 0) (23.4147 10.1211 0) (15.2929 10.7755 0) (7.83783 11.4633 0) (8.62612 11.5385 0) (9.46254 11.5629 0) (10.3407 11.5376 0) (17.6809 10.7257 0) (16.8454 10.7876 0) (16.0488 10.8046 0) (24.1408 10.1093 0) (24.9071 10.0549 0) (25.7068 9.95981 0) (26.5361 9.82447 0) (18.5496 10.6192 0) (11.2556 11.4628 0) (4.54581 12.3642 0) (-1.73196 13.3229 0) (-7.72491 14.3444 0) (-13.4973 15.4313 0) (-12.3277 15.4314 0) (-11.1255 15.3556 0) (-9.89809 15.205 0) (-4.28762 14.039 0) (-5.45928 14.2089 0) (-6.60697 14.3108 0) (-0.670054 13.2569 0) (0.420722 13.1289 0) (1.53155 12.9404 0) (2.65744 12.6925 0) (-3.0995 13.8034 0) (-8.65339 14.9824 0) (-7.39804 14.6899 0) (-6.14001 14.3297 0) (-4.8854 13.9043 0) (0.498777 12.7215 0) (-0.700243 13.1429 0) (-1.9014 13.504 0) (3.79263 12.3868 0) (4.93031 12.0251 0) (6.06542 11.6086 0) (11.9058 10.5631 0) (10.8329 10.976 0) (9.75855 11.3387 0) (8.68675 11.6502 0) (7.6253 11.9092 0) (6.57648 12.1153 0) (5.5481 12.2676 0) (12.2012 11.3383 0) (13.1717 11.1644 0) (14.1619 10.9419 0) (21.3056 10.0343 0) (20.3669 10.2732 0) (19.4467 10.4683 0) (27.3904 9.64924 0) (28.265 9.43438 0) (29.1557 9.17998 0) (30.0575 8.88617 0) (22.2581 9.75206 0) (15.1662 10.6715 0) (16.1795 10.3537 0) (17.197 9.98893 0) (18.2149 9.57801 0) (25.1465 8.64852 0) (24.1831 9.05877 0) (23.2163 9.42703 0) (30.9654 8.55341 0) (31.8764 8.18159 0) (32.7869 7.77064 0) (41.1876 6.95 0) (40.3354 7.35912 0) (39.4804 7.7324 0) (38.6261 8.07019 0) (37.7751 8.37266 0) (36.9321 8.63962 0) (36.1015 8.87123 0) (35.2875 9.06752 0) (34.4945 9.22818 0) (33.7265 9.35256 0) (32.9886 9.43971 0) (32.2818 9.48902 0) (31.614 9.49922 0) (30.9876 9.47153 0) (30.4066 9.4122 0) (40.1012 8.92187 0) (40.6788 8.93813 0) (41.2971 8.9254 0) (51.8054 8.36794 0) (51.1923 8.41517 0) (50.6139 8.43621 0) (61.9484 7.95006 0) (62.5285 7.89761 0) (63.1394 7.82145 0) (63.773 7.71904 0) (52.449 8.29071 0) (41.9528 8.87888 0) (42.6377 8.79745 0) (43.3528 8.68169 0) (44.091 8.53282 0) (54.5199 7.87568 0) (53.8092 8.04405 0) (53.1193 8.18254 0) (64.428 7.58967 0) (65.1002 7.43382 0) (65.781 7.25177 0) (77.8499 6.65728 0) (77.1892 6.84826 0) (76.5378 7.01607 0) (75.8974 7.16075 0) (75.2685 7.28248 0) (74.6612 7.38129 0) (74.0735 7.4593 0) (86.9247 6.96201 0) (87.5177 6.8642 0) (88.1269 6.74826 0) (101.596 6.21673 0) (100.987 6.34437 0) (100.389 6.45663 0) (114.304 5.94468 0) (114.905 5.82284 0) (115.512 5.68821 0) (116.122 5.54002 0) (102.213 6.07277 0) (88.7485 6.61293 0) (89.3792 6.45792 0) (90.0153 6.2832 0) (90.6532 6.08862 0) (104.075 5.54107 0) (103.455 5.73499 0) (102.834 5.91221 0) (116.732 5.37804 0) (117.339 5.20229 0) (117.94 5.01262 0) (118.533 4.80561 0) (104.69 5.32807 0) (91.291 5.87283 0) (78.5123 6.443 0) (66.4745 7.04338 0) (55.2445 7.67837 0) (44.8494 8.35145 0) (45.624 8.13839 0) (46.4107 7.89416 0) (47.2057 7.61847 0) (57.4692 6.91961 2.26916e-20) (56.7234 7.20027 0) (55.9802 7.45303 0) (67.1729 6.81034 0) (67.8739 6.55352 0) (68.5745 6.27205 0) (69.2685 5.96502 0) (58.2169 6.61039 -2.27343e-20) (48.0036 7.31103 0) (48.8046 6.97158 0) (49.5983 6.60007 0) (50.391 6.1954 0) (60.4233 5.5065 0) (59.6958 5.90456 0) (58.9588 6.27244 0) (69.9577 5.63148 0) (70.636 5.27047 0) (71.3027 4.8813 0) (83.0163 4.31599 0) (82.4087 4.69354 0) (81.7811 5.04473 0) (81.1458 5.37026 0) (80.4961 5.67172 0) (79.8391 5.95 0) (79.1767 6.2067 0) (91.9251 5.63741 0) (92.5535 5.38466 0) (93.1727 5.11316 0) (106.481 4.59017 0) (105.895 4.85172 0) (105.297 5.09719 0) (119.117 4.58207 0) (119.687 4.34682 0) (120.243 4.09819 0) (120.78 3.8328 0) (107.052 4.30986 0) (93.7799 4.82074 0) (94.3733 4.50606 0) (94.9481 4.16777 0) (95.5078 3.8041 0) (108.651 3.33928 0) (108.139 3.68608 0) (107.605 4.00906 0) (121.297 3.54864 0) (121.791 3.24365 0) (122.261 2.91542 0) (136.109 2.52765 0) (135.682 2.8366 0) (135.224 3.12189 0) (134.742 3.38715 0) (134.236 3.63519 0) (133.71 3.86862 0) (133.166 4.09259 0) (132.607 4.3051 0) (132.036 4.50193 0) (131.455 4.68557 0) (130.864 4.8571 0) (130.268 5.0171 0) (129.668 5.16577 0) (129.068 5.30333 0) (128.469 5.43045 0) (127.875 5.5487 0) (127.288 5.66141 0) (126.709 5.76956 0) (126.14 5.87042 0) (125.582 5.96485 0) (125.033 6.05618 0) (124.5 6.14491 0) (123.975 6.23158 0) (123.467 6.31633 0) (122.971 6.39943 0) (122.49 6.48097 0) (122.023 6.56118 0) (121.57 6.64024 0) (121.132 6.71823 0) (120.709 6.79514 0) (120.299 6.8709 0) (119.904 6.94541 0) (119.524 7.01868 0) (119.156 7.0909 0) (118.804 7.16157 0) (118.463 7.23051 0) (118.136 7.29786 0) (117.821 7.36336 0) (117.518 7.42664 0) (117.227 7.4875 0) (116.948 7.54558 0) (116.678 7.60082 0) (116.421 7.65293 0) (116.173 7.70172 0) (115.938 7.74679 0) (115.71 7.78816 0) (115.493 7.82592 0) (115.285 7.85963 0) (115.086 7.88935 0) (114.897 7.91511 0) (114.715 7.9367 0) (114.545 7.95421 0) (114.381 7.9678 0) (114.226 7.9775 0) (114.079 7.98335 0) (113.941 7.9856 0) (113.81 7.98447 0) (113.687 7.98021 0) (113.571 7.97302 0) (113.462 7.96319 0) (113.362 7.95091 0) (113.266 7.93653 0) (113.178 7.92042 0) (124.911 7.82992 0) (125.077 7.84149 0) (125.248 7.85117 0) (137.227 7.67816 0) (136.982 7.67298 0) (136.743 7.66576 0) (148.448 7.43166 0) (148.755 7.43479 0) (149.067 7.43581 0) (149.384 7.43424 0) (137.478 7.68085 0) (125.426 7.85848 0) (125.611 7.86317 0) (125.802 7.86508 0) (126.001 7.8639 0) (138.267 7.67119 0) (137.998 7.67763 0) (137.735 7.68076 0) (149.707 7.42983 0) (150.036 7.42231 0) (150.371 7.41123 0) (162.024 7.09021 0) (161.633 7.10554 0) (161.248 7.11716 0) (160.868 7.12553 0) (160.493 7.13094 0) (160.123 7.13369 0) (159.757 7.13435 0) (170.393 6.78368 0) (170.807 6.77986 0) (171.222 6.77384 0) (181.044 6.3776 0) (180.593 6.38601 0) (180.145 6.39194 0) (188.994 5.97275 0) (189.472 5.96409 0) (189.954 5.95324 0) (190.438 5.94003 0) (181.499 6.36658 0) (171.644 6.76516 0) (172.068 6.75359 0) (172.499 6.73846 0) (172.933 6.71974 0) (182.887 6.31291 0) (182.419 6.33445 0) (181.957 6.3523 0) (190.927 5.92334 0) (191.419 5.9034 0) (191.915 5.87969 0) (192.416 5.85205 0) (183.358 6.28751 0) (173.373 6.69703 0) (162.421 7.07116 0) (150.711 7.39627 0) (138.545 7.66113 0) (126.205 7.85918 0) (126.419 7.85069 0) (126.638 7.83846 0) (126.868 7.82225 0) (139.414 7.60717 0) (139.117 7.62922 0) (138.827 7.64721 0) (151.059 7.37732 0) (151.412 7.35427 0) (151.772 7.32698 0) (152.137 7.29526 0) (139.719 7.58087 0) (127.102 7.80191 0) (127.348 7.77729 0) (127.599 7.74854 0) (127.859 7.71529 0) (140.676 7.47479 0) (140.348 7.51468 0) (140.03 7.55008 0) (152.511 7.25889 0) (152.891 7.21798 0) (153.277 7.17254 0) (165.357 6.81643 0) (164.921 6.86662 0) (164.489 6.91211 0) (164.064 6.95292 0) (163.644 6.98921 0) (163.231 7.02085 0) (162.823 7.04812 0) (173.818 6.67012 0) (174.268 6.63904 0) (174.724 6.60356 0) (184.8 6.18629 0) (184.314 6.22444 0) (183.835 6.25802 0) (192.92 5.82045 0) (193.429 5.7845 0) (193.942 5.74422 0) (194.46 5.69976 0) (185.29 6.14365 0) (175.185 6.56358 0) (175.651 6.51911 0) (176.123 6.47003 0) (176.6 6.41633 0) (186.789 5.98876 0) (186.284 6.04482 0) (185.784 6.09649 0) (194.981 5.65093 0) (195.507 5.59773 0) (196.037 5.54021 0) (204.741 5.06747 0) (204.184 5.12578 0) (203.631 5.17994 0) (203.081 5.23009 0) (202.536 5.27581 0) (201.995 5.31729 0) (201.457 5.35474 0) (200.923 5.38805 0) (200.393 5.41745 0) (199.867 5.44305 0) (199.344 5.46496 0) (198.826 5.48349 0) (198.31 5.49895 0) (197.799 5.51153 0) (197.29 5.52164 0) (205.285 5.03474 0) (205.822 5.02227 0) (206.36 5.00759 0) (214.016 4.48912 0) (213.456 4.50542 0) (212.897 4.51954 0) (220.03 3.97827 0) (220.603 3.96282 0) (221.176 3.94525 0) (221.752 3.92533 0) (214.579 4.47032 0) (206.903 4.99027 0) (207.447 4.97005 0) (207.996 4.94664 -2.28126e-20) (208.547 4.91965 4.56496e-20) (216.284 4.39602 0) (215.712 4.42416 0) (215.145 4.44881 0) (222.329 3.90279 0) (222.909 3.87726 0) (223.49 3.84869 0) (230.05 3.283 -2.24698e-20) (229.469 3.31145 2.24658e-20) (228.89 3.33718 0) (228.311 3.36005 -2.25038e-20) (227.733 3.38064 2.24783e-20) (227.157 3.39899 0) (226.58 3.41533 0) (232.439 2.83584 -2.21174e-20) (233.009 2.81923 2.214e-20) (233.577 2.80107 0) (238.566 2.21622 0) (238.018 2.23336 0) (237.468 2.24903 0) (241.467 1.67377 0) (241.991 1.66018 0) (242.511 1.64519 0) (243.027 1.62923 0) (239.112 2.19726 0) (234.144 2.7808 0) (234.711 2.75825 0) (235.278 2.73333 0) (235.843 2.70606 0) (240.734 2.12893 0) (240.195 2.15357 0) (239.654 2.17635 0) (243.537 1.61189 0) (244.045 1.59284 0) (244.548 1.57223 0) (245.047 1.54983 0) (241.269 2.10192 0) (236.408 2.67606 -2.20232e-20) (230.631 3.25172 0) (224.074 3.81699 0) (216.857 4.36466 0) (209.103 4.88892 -4.56361e-20) (209.66 4.85461 4.5623e-20) (210.224 4.81615 -2.28246e-20) (210.788 4.77395 2.27795e-20) (218.598 4.24864 0) (218.015 4.29107 0) (217.435 4.32967 0) (224.66 3.78185 0) (225.248 3.7432 0) (225.839 3.70115 0) (226.433 3.6556 0) (219.184 4.20241 0) (211.358 4.72752 -1.69935e-23) (211.932 4.67728 -2.28069e-20) (212.508 4.62317 0) (213.088 4.56501 0) (220.963 4.04132 0) (220.367 4.09875 0) (219.774 4.15247 0) (227.029 3.60655 0) (227.627 3.55399 0) (228.228 3.49799 0) (234.737 2.94378 0) (234.146 2.9973 0) (233.557 3.04771 0) (232.969 3.09491 0) (232.383 3.13889 0) (231.797 3.17974 2.24368e-20) (231.214 3.21726 -2.24321e-20) (236.974 2.64324 1.52038e-23) (237.538 2.60781 2.20334e-20) (238.102 2.56965 0) (242.863 2.00711 0) (242.334 2.04105 0) (241.803 2.07257 0) (245.541 1.52584 0) (246.032 1.50014 0) (246.518 1.47244 0) (247 1.44291 0) (243.39 1.97088 0) (238.666 2.52859 0) (239.229 2.4847 0) (239.792 2.43799 0) (240.354 2.38854 0) (244.954 1.84807 0) (244.435 1.89136 0) (243.914 1.93235 0) (247.478 1.41162 0) (247.951 1.37856 0) (248.42 1.34382 0) (248.884 1.30731 0) (245.47 1.80272 0) (240.916 2.33638 -2.19156e-20) (235.329 2.88729 0) (228.832 3.43866 0) (221.563 3.98031 0) (213.672 4.50302 0) (205.303 5.00509 0) (196.572 5.47839 0) (187.298 5.92827 0) (177.082 6.35827 0) (165.801 6.76171 0) (153.67 7.12243 0) (141.008 7.43043 0) (128.127 7.67782 0) (128.404 7.63608 0) (128.69 7.59004 0) (128.984 7.54014 0) (142.055 7.27124 0) (141.7 7.32842 0) (141.349 7.38147 0) (154.07 7.06779 0) (154.475 7.00901 0) (154.889 6.94567 0) (155.308 6.87798 0) (142.42 7.20965 0) (129.288 7.48626 0) (129.6 7.42853 0) (129.923 7.36731 0) (130.254 7.30276 0) (143.563 7.00221 0) (143.174 7.07511 0) (142.793 7.14426 0) (155.735 6.80643 0) (156.168 6.73106 0) (156.609 6.65185 0) (169.069 6.25911 0) (168.583 6.34266 0) (168.106 6.42263 0) (167.634 6.49861 0) (167.166 6.57079 0) (166.705 6.63901 0) (166.251 6.70262 0) (177.569 6.29574 0) (178.062 6.22867 0) (178.56 6.15742 0) (188.854 5.72117 0) (188.331 5.79432 0) (187.812 5.86344 0) (197.111 5.41241 0) (197.654 5.34234 0) (198.2 5.26843 0) (198.751 5.19087 0) (189.381 5.64416 0) (179.062 6.08237 0) (179.569 6.00329 0) (180.081 5.92039 0) (180.597 5.83412 0) (190.987 5.39198 0) (190.448 5.47934 0) (189.912 5.56345 0) (199.305 5.11001 0) (199.861 5.02579 0) (200.422 4.93841 0) (200.985 4.84859 0) (191.53 5.3016 0) (181.118 5.7445 0) (169.555 6.17227 0) (157.057 6.56942 0) (143.962 6.92599 0) (130.596 7.23484 0) (130.948 7.16386 0) (131.309 7.09021 0) (131.684 7.0142 0) (145.208 6.68004 0) (144.784 6.76471 0) (144.369 6.84679 0) (157.51 6.48379 0) (157.972 6.39498 0) (158.44 6.30373 0) (158.915 6.20994 0) (145.641 6.5929 0) (132.066 6.93606 0) (132.462 6.85594 0) (132.868 6.77383 0) (133.286 6.69007 0) (146.995 6.31961 0) (146.536 6.41245 -2.28976e-20) (146.083 6.50366 2.28808e-20) (159.397 6.11405 0) (159.886 6.01629 0) (160.381 5.91678 0) (173.12 5.49089 0) (172.596 5.59433 0) (172.078 5.69607 0) (171.564 5.79585 0) (171.054 5.89371 0) (170.55 5.98916 0) (170.051 6.08204 0) (181.643 5.65206 0) (182.172 5.55694 0) (182.703 5.45946 0) (193.176 5.01561 0) (192.624 5.11317 0) (192.075 5.20868 0) (201.551 4.75622 0) (202.121 4.66169 0) (202.692 4.56554 0) (203.264 4.46763 0) (193.731 4.91619 0) (183.239 5.35976 0) (183.777 5.25837 0) (184.32 5.15526 0) (184.863 5.05086 0) (195.404 4.60979 0) (194.844 4.713 0) (194.286 4.81526 0) (203.84 4.36859 0) (204.415 4.26883 0) (204.992 4.16828 0) (214.084 3.71627 0) (213.483 3.81353 0) (212.884 3.91037 0) (212.287 4.00641 0) (211.69 4.10178 0) (211.096 4.19591 0) (210.504 4.28849 0) (209.915 4.37914 0) (209.328 4.46755 0) (208.744 4.55366 0) (208.162 4.63715 0) (207.583 4.71752 0) (207.008 4.79471 0) (206.436 4.86852 0) (205.867 4.93874 0) (214.259 4.4373 0) (214.85 4.36795 0) (215.444 4.29526 0) (223.38 3.77683 0) (222.771 3.84781 0) (222.165 3.91576 0) (229.438 3.37616 0) (230.047 3.31061 0) (230.657 3.24205 0) (231.271 3.17071 0) (223.992 3.70289 0) (216.041 4.2194 0) (216.641 4.1406 0) (217.245 4.05891 0) (217.851 3.97488 0) (225.844 3.46535 0) (225.224 3.54681 0) (224.606 3.62619 0) (231.885 3.09675 0) (232.504 3.02044 0) (233.123 2.94224 0) (239.497 2.41704 0) (238.899 2.49098 0) (238.302 2.56294 0) (237.706 2.63277 0) (237.111 2.70029 0) (236.516 2.76531 0) (235.921 2.8278 0) (241.477 2.2816 2.19188e-20) (242.037 2.22449 0) (242.595 2.16496 0) (246.999 1.65385 0) (246.492 1.7054 0) (245.983 1.75518 0) (249.343 1.26908 0) (249.797 1.22952 0) (250.245 1.18854 0) (250.689 1.14605 0) (247.502 1.60069 0) (243.153 2.10327 0) (243.708 2.03957 0) (244.263 1.97395 0) (244.815 1.90653 -2.18189e-20) (248.985 1.43133 0) (248.495 1.48917 0) (248 1.54576 0) (251.126 1.10245 0) (251.558 1.05782 0) (251.984 1.01219 0) (252.403 0.965719 0) (249.471 1.37236 0) (245.365 1.83757 1.85118e-23) (240.095 2.34122 0) (233.745 2.86184 0) (226.466 3.38194 1.76965e-22) (218.459 3.8887 -1.77443e-22) (219.071 3.80039 0) (219.684 3.71059 0) (220.301 3.61945 0) (228.351 3.1215 0) (227.72 3.20959 0) (227.093 3.29641 0) (234.368 2.77984 0) (234.993 2.69655 0) (235.62 2.61201 0) (236.249 2.52654 0) (228.984 3.03246 0) (220.919 3.52727 0) (221.54 3.43434 0) (222.163 3.34086 0) (222.788 3.24713 0) (230.898 2.76221 0) (230.257 2.85255 0) (229.619 2.94273 0) (236.879 2.44041 0) (237.511 2.35384 0) (238.145 2.26701 0) (244.274 1.78145 0) (243.679 1.86307 0) (243.083 1.94449 0) (242.486 2.02551 0) (241.888 2.10594 0) (241.291 2.18552 0) (240.693 2.26397 0) (245.913 1.76757 2.18314e-20) (246.458 1.69654 0) (247.001 1.6245 0) (250.899 1.1904 0) (250.428 1.25173 0) (249.952 1.31247 0) (252.816 0.918589 0) (253.222 0.871027 0) (253.62 0.823042 0) (254.012 0.774881 0) (251.363 1.1287 0) (247.54 1.55182 0) (248.075 1.47873 0) (248.607 1.4054 0) (249.135 1.33201 0) (252.719 0.942948 0) (252.274 1.00479 0) (251.822 1.06679 0) (254.395 0.726691 0) (254.771 0.678618 0) (255.138 0.630867 0) (256.603 0.393275 0) (256.295 0.426473 0) (255.977 0.45998 0) (255.651 0.493732 0) (255.317 0.527462 0) (254.974 0.561165 0) (254.624 0.594732 0) (254.266 0.627914 0) (253.9 0.66074 0) (253.528 0.693112 0) (253.148 0.724845 0) (252.762 0.755767 0) (252.369 0.785867 0) (251.969 0.815077 0) (251.563 0.843279 0) (251.151 0.87046 0) (250.732 0.896456 0) (250.308 0.921281 0) (249.878 0.944973 0) (249.442 0.967461 0) (249 0.988664 0) (248.553 1.00867 0) (248.099 1.02741 0) (247.641 1.04488 0) (247.177 1.06119 0) (246.707 1.07628 0) (246.233 1.09027 0) (245.752 1.10326 0) (245.265 1.11517 0) (244.774 1.12619 0) (244.276 1.13643 0) (245.946 0.652112 0) (246.424 0.645865 0) (246.895 0.639176 0) (247.361 0.631965 0) (247.819 0.624149 2.46511e-23) (248.271 0.61574 4.92084e-23) (248.717 0.606671 0) (249.157 0.596918 0) (249.589 0.586494 0) (250.016 0.575313 0) (250.437 0.563406 0) (250.85 0.55078 0) (251.258 0.537372 -1.24924e-20) (251.659 0.523354 2.50064e-20) (252.054 0.508684 -1.24957e-20) (252.442 0.493129 0) (252.823 0.477093 0) (253.197 0.460432 0) (253.565 0.443248 0) (253.925 0.425507 0) (254.278 0.407359 -1.24193e-20) (254.624 0.388761 1.24172e-20) (254.963 0.369931 0) (255.294 0.350718 0) (255.617 0.331301 0) (255.932 0.31171 0) (256.239 0.292067 0) (256.539 0.272398 2.41134e-23) (256.829 0.252867 0) (257.111 0.233475 0) (257.384 0.214195 1.22931e-20) (257.648 0.195165 -1.2293e-20) (256.903 0.360471 0) (255.497 0.583548 0) (253.156 0.881649 0) (249.657 1.25887 0) (244.868 1.6999 0) (238.779 2.18017 0) (231.539 2.67196 0) (223.415 3.15359 0) (214.685 3.61897 0) (205.569 4.06741 0) (195.964 4.50592 0) (185.409 4.94538 0) (173.647 5.38637 0) (160.883 5.81579 0) (147.466 6.22523 0) (133.715 6.60502 0) (134.157 6.51861 0) (134.61 6.43087 0) (135.075 6.34187 0) (148.93 5.93385 0) (148.433 6.03209 0) (147.944 6.12931 0) (161.393 5.71331 0) (161.906 5.60973 0) (162.428 5.50519 0) (162.954 5.39989 0) (149.436 5.8345 0) (135.552 6.25175 0) (136.04 6.16057 0) (136.54 6.06831 0) (137.051 5.97492 0) (151.004 5.53099 0) (150.473 5.63299 0) (149.95 5.73419 0) (163.486 5.29383 0) (164.024 5.18722 0) (164.566 5.08005 0) (177.426 4.63197 0) (176.879 4.74109 0) (176.334 4.84983 0) (175.791 4.95821 0) (175.25 5.06625 0) (174.713 5.17374 0) (174.178 5.28055 0) (185.957 4.83899 0) (186.506 4.73209 0) (187.057 4.62479 0) (197.647 4.19254 0) (197.087 4.29704 0) (196.525 4.40157 0) (206.147 3.9664 0) (206.725 3.8657 0) (207.303 3.76524 0) (207.88 3.66543 0) (198.207 4.08813 0) (187.607 4.51748 0) (188.158 4.41002 0) (188.709 4.30254 0) (189.259 4.19519 0) (199.879 3.77797 0) (199.324 3.8808 0) (198.766 3.98418 0) (208.455 3.56654 0) (209.029 3.46845 0) (209.602 3.37136 0) (210.172 3.27561 0) (200.431 3.67602 0) (189.807 4.08832 0) (177.975 4.52282 0) (165.111 4.97218 0) (151.543 5.42816 0) (137.573 5.88029 0) (138.105 5.78436 0) (138.648 5.68708 0) (139.199 5.58823 0) (153.198 5.11425 0) (152.64 5.21975 0) (152.088 5.3244 0) (165.662 4.86387 0) (166.215 4.75531 0) (166.772 4.64645 0) (167.33 4.53746 0) (153.762 5.0079 0) (139.759 5.48772 0) (140.327 5.3849 0) (140.902 5.27633 0) (141.483 5.16115 0) (155.475 4.66877 0) (154.901 4.78749 0) (154.33 4.90022 0) (167.89 4.42798 0) (168.451 4.31437 0) (169.011 4.19567 0) (181.805 3.75257 0) (181.263 3.86824 0) (180.719 3.97935 0) (180.171 4.0873 0) (179.622 4.19576 0) (179.072 4.30471 0) (178.523 4.4138 0) (190.353 3.98176 0) (190.898 3.87545 0) (191.44 3.76957 0) (202.07 3.37486 0) (201.527 3.4744 0) (200.981 3.57484 0) (210.74 3.1809 0) (211.305 3.08737 0) (211.868 2.99491 0) (212.428 2.90327 0) (202.608 3.27655 0) (191.979 3.66461 0) (192.515 3.56088 0) (193.047 3.45486 0) (193.571 3.34506 0) (204.19 2.97945 0) (203.67 3.08143 0) (203.142 3.17983 0) (212.985 2.81198 0) (213.537 2.71954 0) (214.084 2.62583 0) (223.741 2.24976 0) (223.138 2.33926 0) (222.533 2.42738 0) (221.929 2.51396 0) (221.324 2.60039 0) (220.72 2.68741 0) (220.117 2.77546 0) (219.513 2.86476 1.77757e-22) (218.909 2.95532 0) (218.305 3.0472 0) (217.702 3.14022 0) (217.098 3.23423 0) (216.494 3.32928 0) (215.89 3.42531 0) (215.288 3.52185 0) (224.043 3.06037 -2.26867e-20) (224.673 2.96757 2.2728e-20) (225.306 2.87539 0) (233.48 2.40305 0) (232.832 2.49208 0) (232.184 2.5818 0) (239.414 2.09358 0) (240.051 2.00722 0) (240.688 1.92134 0) (241.327 1.83606 0) (234.132 2.31468 0) (225.94 2.78413 0) (226.575 2.69386 0) (227.212 2.60446 0) (227.851 2.51628 0) (236.099 2.05418 0) (235.441 2.14022 0) (234.785 2.22713 0) (241.965 1.75147 0) (242.604 1.66717 0) (243.242 1.58368 0) (248.95 1.14046 0) (248.378 1.21861 0) (247.801 1.29747 0) (247.22 1.37702 0) (246.636 1.45701 0) (246.049 1.53749 0) (245.459 1.61856 0) (250.174 1.18609 0) (250.686 1.11373 2.16906e-20) (251.191 1.04202 -2.16972e-20) (254.42 0.700919 0) (254.007 0.760403 0) (253.586 0.820793 0) (255.846 0.536719 0) (256.186 0.490568 0) (256.515 0.445189 0) (256.834 0.400592 0) (254.822 0.642227 0) (251.69 0.970873 0) (252.181 0.90048 0) (252.664 0.830941 0) (253.138 0.762258 0) (255.969 0.471785 0) (255.598 0.527572 0) (255.216 0.58433 0) (257.143 0.356904 0) (257.44 0.314157 0) (257.724 0.272254 0) (257.997 0.231282 0) (256.328 0.416797 0) (253.603 0.694238 0) (249.517 1.06272 0) (243.88 1.50059 0) (236.759 1.96884 0) (228.492 2.42915 -1.77372e-22) (229.135 2.34301 -2.26844e-20) (229.78 2.25761 2.27284e-20) (230.428 2.1726 0) (238.754 1.71494 0) (238.087 1.79951 0) (237.422 1.88403 0) (244.518 1.41778 0) (245.155 1.33493 0) (245.79 1.25189 0) (246.423 1.1684 0) (239.424 1.62979 0) (231.079 2.0876 0) (231.732 2.00196 0) (232.388 1.91475 0) (233.045 1.82597 0) (241.442 1.36646 0) (240.768 1.45603 0) (240.095 1.54383 0) (247.053 1.08377 0) (247.679 0.997577 0) (248.3 0.909709 0) (253.277 0.516948 0) (252.77 0.596907 0) (252.251 0.675803 0) (251.721 0.753783 0) (251.182 0.831015 -2.2096e-20) (250.634 0.908024 -1.98474e-23) (250.079 0.985278 2.20749e-20) (254.057 0.626895 0) (254.501 0.560187 0) (254.932 0.493918 0) (257.327 0.256888 0) (257.008 0.309478 0) (256.674 0.362747 0) (258.256 0.191268 0) (258.503 0.15208 0) (258.734 0.113629 0) (258.951 0.0757204 0) (257.632 0.204903 0) (255.351 0.427798 0) (255.755 0.361669 0) (256.145 0.295363 0) (256.518 0.228781 -2.15102e-20) (258.449 0.0505904 0) (258.194 0.101904 0) (257.921 0.153283 0) (259.153 0.0382789 0) (259.339 0.00110918 0) (259.507 -0.0359653 0) (259.658 -0.0732421 0) (258.686 -0.00134777 0) (256.874 0.161824 2.14918e-20) (253.771 0.435553 0) (248.915 0.819606 0) (242.115 1.27455 1.76477e-22) (233.705 1.73558 -1.7732e-22) (224.344 2.15962 0) (214.627 2.532 0) (204.703 2.87808 0) (194.091 3.23574 0) (182.342 3.637 0) (169.569 4.07646 0) (156.05 4.54853 0) (142.068 5.04303 0) (142.657 4.92136 0) (143.246 4.79255 0) (143.833 4.65513 0) (157.769 4.16408 0) (157.2 4.2986 0) (156.626 4.42641 0) (170.125 3.95656 0) (170.676 3.83232 0) (171.22 3.70279 0) (171.757 3.56786 0) (158.333 4.02271 0) (144.419 4.50884 0) (144.997 4.35356 0) (145.568 4.18885 0) (146.128 4.01408 0) (159.968 3.55315 0) (159.435 3.71756 0) (158.888 3.87396 0) (172.285 3.42688 0) (172.801 3.27981 0) (173.304 3.12625 0) (185.872 2.74326 0) (185.403 2.88541 0) (184.921 3.02219 0) (184.424 3.154 0) (183.917 3.28083 0) (183.4 3.40325 0) (182.874 3.52167 0) (194.602 3.12715 0) (195.107 3.01633 0) (195.601 2.90259 0) (206.201 2.57153 0) (205.71 2.67588 0) (205.211 2.77773 0) (215.166 2.43762 0) (215.701 2.34153 0) (216.231 2.24259 0) (216.757 2.14011 0) (206.683 2.46423 0) (196.086 2.78555 0) (196.557 2.66497 0) (197.015 2.54076 0) (197.459 2.41295 0) (208.068 2.12073 0) (207.616 2.23975 0) (207.155 2.35368 0) (217.277 2.03371 0) (217.794 1.92263 0) (218.308 1.80528 0) (218.816 1.68006 0) (208.507 1.99321 0) (197.885 2.28175 0) (186.324 2.59635 0) (173.792 2.96627 0) (160.488 3.38006 0) (146.675 3.82838 0) (147.208 3.62812 0) (147.723 3.41799 0) (148.22 3.20139 0) (161.944 2.7985 0) (161.478 2.99782 0) (160.992 3.19326 0) (174.263 2.79336 0) (174.716 2.61302 0) (175.148 2.4306 0) (175.555 2.2378 0) (162.386 2.58809 2.27526e-20) (148.695 2.97217 0) (149.143 2.72686 0) (149.564 2.4613 0) (149.955 2.17288 0) (163.55 1.86074 4.54448e-20) (163.184 2.11851 -4.54617e-20) (162.802 2.36259 -1.21831e-23) (175.934 2.03274 0) (176.289 1.81828 0) (176.641 1.60382 0) (188.954 1.39582 0) (188.622 1.56118 0) (188.285 1.73971 0) (187.937 1.92568 0) (187.567 2.10458 0) (187.174 2.27253 0) (186.76 2.43785 0) (198.289 2.13879 0) (198.672 1.98676 0) (199.036 1.83138 -2.2739e-20) (209.745 1.56939 0) (209.343 1.71294 0) (208.93 1.85556 0) (219.32 1.54608 0) (219.824 1.40698 0) (220.332 1.27115 0) (220.86 1.14972 0) (210.147 1.42853 0) (199.385 1.6691 4.54794e-20) (199.725 1.51213 -4.54686e-20) (200.07 1.3761 4.54593e-20) (200.372 1.21957 -2.27349e-20) (211.284 0.973087 0) (210.956 1.16363 0) (210.563 1.30092 0) (221.385 1.02855 0) (221.863 0.858832 0) (222.294 0.639613 0) (233.337 0.180681 0) (232.817 0.417589 0) (232.269 0.618369 0) (231.664 0.769227 0) (231.024 0.884208 0) (230.394 1.01352 0) (229.784 1.15388 0) (229.181 1.29396 0) (228.577 1.42682 0) (227.971 1.55041 -1.7785e-22) (227.366 1.66534 -1.78083e-22) (226.761 1.77342 0) (226.156 1.87607 0) (225.552 1.97404 0) (224.948 2.06813 0) (234.367 1.64269 -2.27211e-20) (235.031 1.54631 2.27421e-20) (235.698 1.44539 0) (244.136 0.977111 0) (243.464 1.08054 0) (242.79 1.1794 0) (249.523 0.72679 0) (250.123 0.630753 0) (250.712 0.531053 0) (251.291 0.427336 0) (244.806 0.868136 0) (236.367 1.33931 -2.27077e-20) (237.036 1.2266 2.29277e-20) (237.707 1.10596 1.77405e-22) (238.376 0.976498 0) (246.786 0.502153 0) (246.132 0.630704 0) (245.472 0.752746 0) (251.856 0.319272 0) (252.406 0.204688 0) (252.941 0.0834923 0) (256.732 -0.210273 0) (256.372 -0.107398 0) (255.992 -0.00735356 0) (255.588 0.0892476 2.19724e-20) (255.16 0.180739 -2.19683e-20) (254.714 0.26791 0) (254.25 0.352568 0) (257.212 0.0937794 0) (257.53 0.0236031 0) (257.826 -0.048875 -2.1431e-20) (259.276 -0.163671 0) (259.1 -0.10836 0) (258.904 -0.054278 0) (259.79 -0.110777 0) (259.903 -0.148412 0) (259.997 -0.186628 0) (260.071 -0.225787 0) (259.431 -0.219488 0) (258.097 -0.123989 1.44775e-23) (258.347 -0.2019 2.14371e-20) (258.575 -0.280042 0) (258.786 -0.356118 0) (259.779 -0.385155 0) (259.678 -0.330964 0) (259.564 -0.275102 0) (260.125 -0.265154 0) (260.162 -0.303961 0) (260.189 -0.34102 0) (260.216 -0.375163 0) (259.877 -0.435465 0) (258.992 -0.427184 0) (257.085 -0.310153 0) (253.463 -0.0391304 0) (247.436 0.368457 0) (239.045 0.838709 0) (239.718 0.697457 -1.77554e-22) (240.406 0.564195 0) (241.116 0.449402 0) (249.423 -0.000746718 0) (248.767 0.111344 0) (248.093 0.234614 1.76363e-22) (253.984 -0.153694 0) (254.509 -0.254502 0) (254.98 -0.369512 0) (255.362 -0.51533 0) (250.007 -0.153776 0) (241.799 0.316264 0) (242.416 0.134822 0) (242.987 -0.0825953 0) (243.533 -0.321912 0) (251.437 -0.768691 0) (250.99 -0.549184 0) (250.521 -0.341016 0) (255.678 -0.682062 0) (255.954 -0.86009 0) (256.205 -1.04248 0) (258.468 -1.12345 0) (258.408 -0.978148 0) (258.325 -0.834543 0) (258.208 -0.697357 0) (258.033 -0.573664 0) (257.775 -0.472587 0) (257.441 -0.398014 0) (259.202 -0.491405 -2.13469e-20) (259.374 -0.552661 2.13632e-20) (259.462 -0.63548 0) (260 -0.598574 0) (260.032 -0.532343 0) (259.978 -0.481459 0) (260.241 -0.406838 0) (260.215 -0.447068 0) (260.106 -0.497237 0) (259.939 -0.553958 0) (259.904 -0.67568 0) (259.476 -0.734747 0) (259.442 -0.843258 0) (259.378 -0.955843 0) (259.296 -1.06919 0) (259.425 -0.927387 0) (259.602 -0.843222 0) (259.765 -0.758445 0) (259.734 -0.613725 0) (259.509 -0.674121 0) (259.267 -0.733281 0) (259.055 -0.518372 0) (259.335 -0.479217 1.72049e-22) (259.598 -0.439175 0) (259.842 -0.399342 0) (260.051 -0.361137 -1.72244e-22) (260.206 -0.326714 0) (260.282 -0.298437 0) (260.306 -0.277387 0) (260.322 -0.255812 0) (260.339 -0.232274 0) (260.348 -0.207222 0) (260.342 -0.181647 0) (260.318 -0.155966 0) (260.276 -0.130535 0) (260.215 -0.105661 0) (260.135 -0.0813663 0) (260.039 -0.0572463 0) (259.925 -0.0328924 0) (259.796 -0.00838106 0) (259.651 0.0163769 0) (259.491 0.0414641 0) (259.317 0.0671036 0) (259.129 0.093362 0) (258.928 0.120237 0) (258.715 0.147779 0) (258.489 0.176019 0) (258.252 0.204974 0) (258.003 0.234722 0) (257.743 0.265207 0) (257.473 0.296352 0) (257.193 0.328131 0) (257.903 0.176438 0) (258.148 0.158051 0) (258.383 0.140012 -2.39435e-23) (258.607 0.122441 0) (258.821 0.105323 0) (259.024 0.0886051 0) (259.216 0.0723834 0) (259.396 0.0566493 0) (259.563 0.0413572 0) (259.718 0.0264458 -4.75573e-23) (259.86 0.0118906 -2.37803e-23) (259.988 -0.00234541 0) (260.102 -0.0163441 2.37364e-23) (260.2 -0.0300862 0) (260.284 -0.0435504 0) (260.351 -0.0570448 0) (260.401 -0.0707525 0) (260.433 -0.0849737 0) (260.448 -0.0993986 0) (260.445 -0.113692 0) (260.425 -0.127946 0) (260.392 -0.141886 0) (260.351 -0.154952 -1.20102e-20) (260.31 -0.166872 1.20252e-20) (260.26 -0.178905 -2.34582e-23) (260.156 -0.195235 0) (259.977 -0.214986 1.8734e-22) (259.745 -0.236785 0) (259.48 -0.259443 0) (259.197 -0.282216 -1.87102e-22) (258.895 -0.304529 2.33264e-23) (258.555 -0.329345 0) (258.736 -0.561622 0) (258.99 -0.797518 0) (259.214 -1.01468 0) (259.185 -1.18251 0) (258.502 -1.26763 0) (256.437 -1.22478 0) (251.874 -0.992507 0) (244.07 -0.571598 0) (233.848 -0.0763832 0) (222.702 0.386695 0) (211.564 0.735219 0) (200.605 0.996784 0) (189.24 1.18765 0) (176.975 1.38917 0) (163.914 1.60909 -2.2709e-20) (150.327 1.87222 0) (136.512 2.19463 0) (122.704 2.56101 0) (109.141 2.96632 0) (96.047 3.41392 0) (83.6099 3.91024 0) (71.9557 4.4626 0) (61.14 5.0771 0) (51.1726 5.75758 0) (42.0327 6.50513 0) (33.6918 7.32094 0) (26.1081 8.19555 0) (19.2297 9.12121 0) (12.9739 10.1013 0) (7.19289 11.1396 0) (1.68788 12.2425 0) (-3.64054 13.4151 0) (-8.78454 14.643 0) (-13.7366 15.9205 0) (-18.4926 17.2432 0) (-23.0438 18.6072 0) (-27.3813 20.0085 0) (-31.4964 21.4424 0) (-35.3809 22.9051 0) (-39.0245 24.3906 8.99845e-24) (-42.4216 25.8951 0) (-45.5646 27.413 0) (-48.4471 28.937 0) (-46.9136 28.0919 0) (-49.5361 29.5752 0) (-48.0474 28.5872 0) (-46.6002 27.5038 0) (-43.9669 26.1033 0) (-45.4202 27.1457 0) (-42.5425 25.6996 0) (-44.0348 26.6067 0) (-40.9016 25.1249 0) (-37.5198 23.653 8.72858e-24) (-36.0483 22.819 2.22438e-20) (-39.4176 24.2559 0) (-37.9708 23.2923 0) (-41.0894 24.6971 0) (-39.6774 23.6041 0) (-42.5552 24.9698 0) (-45.195 26.3299 0) (-43.8304 25.0688 0) (-46.2438 26.3759 0) (-44.931 24.9934 0) (-47.1321 26.2448 0) (-45.8736 24.7479 0) (-43.6565 23.5319 0) (-41.2217 22.3004 0) (-42.5059 23.7246 0) (-39.8547 22.4447 0) (-41.1842 23.7491 0) (-38.3064 22.424 0) (-36.9778 21.1603 0) (-35.6921 19.8157 0) (-38.5669 21.0597 0) (-37.3205 19.5966 0) (-39.9771 20.7988 0) (-42.4193 21.9941 0) (-44.6506 23.1768 0) (-46.6718 24.3385 0) (-45.4993 22.6652 0) (-47.3376 23.7745 0) (-46.2146 22.0086 0) (-47.883 23.0682 0) (-46.8068 21.2193 0) (-48.318 22.2326 0) (-47.2844 20.3089 0) (-48.6495 21.2789 0) (-49.8527 22.2195 0) (-48.8864 20.2249 0) (-47.9253 18.1776 0) (-46.9671 16.0762 0) (-48.0983 16.9796 0) (-47.1624 14.8256 0) (-48.1772 15.7068 0) (-49.0605 16.5611 0) (-49.8185 17.3864 0) (-50.4571 18.1796 0) (-50.9829 18.9393 0) (-51.4023 19.6651 0) (-51.7227 20.3554 0) (-51.951 21.0079 0) (-52.0944 21.62 0) (-52.16 22.1902 6.79675e-20) (-52.1538 22.7179 -4.50908e-20) (-52.0794 23.1992 -2.67624e-19) (-51.9482 23.62 0) (-51.472 21.9179 8.81454e-20) (-51.3648 22.3534 -9.92017e-19) (-51.3753 23.1142 0) (-51.2989 23.2349 -1.96906e-19) (-51.1233 22.5598 8.26891e-19) (-51.0411 22.6037 1.03433e-18) (-51.0205 22.8886 -7.15467e-18) (-50.9674 22.9271 -9.58416e-24) (-51.0223 23.2683 1.16272e-23) (-51.0781 23.2237 -5.62838e-18) (-50.8993 22.6065 -7.96684e-19) (-50.8335 22.6104 6.82592e-19) (-50.7564 22.2611 -1.3384e-18) (-50.7935 22.0083 -1.31746e-18) (-50.6791 21.8969 6.03154e-18) (-50.6269 21.9486 -1.81416e-19) (-50.5705 21.5962 3.70642e-19) (-50.5136 21.2631 -3.97889e-19) (-50.4491 21.2474 -6.8231e-19) (-50.4032 20.8695 -7.64479e-18) (-50.4452 20.6578 6.45502e-19) (-50.5567 21.2142 -6.63007e-18) (-50.6189 21.284 1.56459e-18) (-50.6185 21.566 -4.01932e-19) (-50.6422 21.13 1.28579e-19) (-50.7966 21.2104 1.23778e-18) (-51.183 22.3511 6.74221e-18) (-50.8428 21.8889 -6.68126e-18) (-50.2808 19.5477 -1.3235e-18) (-50.4638 20.4051 7.12558e-18) (-50.4581 20.5505 -1.00354e-19) (-50.2778 19.8503 0) (-50.3401 19.8678 6.93283e-19) (-50.369 20.0929 -4.00564e-19) (-50.3365 20.0562 0) (-50.3251 20.462 0) (-50.3778 20.4649 3.90036e-19) (-50.36 19.682 5.60431e-18) (-50.3214 19.5592 6.85988e-19) (-50.403 19.1203 4.61203e-18) (-50.4137 19.0728 -1.31986e-18) (-50.3766 19.7124 -7.15334e-18) (-50.5336 18.6894 0) (-50.5438 18.5246 -1.82479e-19) (-50.747 18.1027 5.59661e-19) (-50.9897 17.7355 3.99913e-19) (-51.148 17.3713 -1.0309e-18) (-51.5733 16.9203 0) (-51.3021 17.2885 6.8075e-23) (-50.8599 17.9737 0) (-50.5128 18.3036 -1.01501e-18) (-50.6717 18.3185 6.0597e-18) (-50.1732 18.3015 -4.38846e-19) (-49.8645 18.4485 1.24059e-18) (-50.2522 19.0972 2.60851e-20) (-50.2365 19.6165 -7.70287e-18) (-49.2294 16.4399 0) (-50.0858 17.4786 -2.13737e-19) (-50.5738 17.5194 9.10676e-19) (-50.6023 16.6583 0) (-51.7219 16.4546 1.06508e-18) (-52.4887 16.155 2.06332e-19) (-52.9459 15.6354 4.85556e-20) (-52.3707 16.0454 3.26495e-19) (-52.0551 16.5368 -6.96465e-18) (-53.5518 15.2367 3.00539e-18) (-54.1909 14.5428 6.54867e-18) (-54.0008 14.8315 9.77905e-19) (-52.9755 15.8138 -6.9858e-18) (-55.056 12.5289 3.55146e-18) (-63.6043 -4.30179 -1.00217e-18) (-52.1785 12.3123 -8.04297e-18) (-49.8668 14.1954 2.52075e-18) (-49.8613 16.4223 -7.2933e-18) (-52.1076 15.3082 3.52791e-22) (-50.7286 5.95341 7.26719e-19) (-47.8093 8.43616 -1.02981e-21) (-48.3193 13.4543 -3.61168e-19) (-47.8689 12.6692 -9.01361e-20) (-48.7987 15.6013 8.86413e-20) (-49.6016 17.7481 3.56845e-19) (-49.4867 17.0157 -4.47861e-19) (-50.2357 18.951 3.53451e-19) (-50.8457 20.6906 -7.12966e-19) (-50.8902 20.1411 -8.92926e-20) (-50.2126 18.2731 -9.0015e-20) (-49.426 16.2376 -7.90876e-20) (-48.5484 13.9187 -5.67435e-20) (-48.622 14.7555 1.35251e-19) (-47.698 11.9105 -9.07382e-20) (-46.9055 8.13845 -2.8468e-20) (-47.1247 8.38267 -1.36678e-19) (-47.537 2.01304 4.57189e-20) (-50.5155 -0.928041 1.82681e-19) (-66.4204 -17.7204 -2.70207e-19) (-102.118 -48.0518 0) (-156.708 -91.2396 8.53286e-20) (-187.281 -120.561 -4.16151e-20) (-212.133 -141.421 -4.17455e-20) (-230.109 -155.805 5.4056e-21) (-192.992 -139.111 -6.1781e-23) (-168.582 -117.202 -5.55048e-21) (-138.001 -87.4964 0) (-96.9845 -54.3534 -4.48871e-20) (-127.268 -87.5651 3.83749e-20) (-154.376 -114.86 5.53422e-21) (-177.372 -137.147 0) (-211.286 -155.513 0) (-241.307 -165.677 -1.38855e-21) (-247.016 -172.481 0) (-248.443 -176.585 0) (-246.438 -178.04 0) (-235.222 -181.431 0) (-231.486 -176.222 0) (-223.815 -167.691 0) (-195.499 -154.93 0) (-208.751 -168.829 0) (-217.715 -178.709 0) (-196.417 -170.098 0) (-182.989 -155.273 0) (-165.369 -136.354 0) (-143.816 -113.694 0) (-119.374 -87.0608 5.51717e-21) (-93.0842 -56.5192 -5.64048e-21) (-66.9064 -24.2433 -8.54057e-20) (-52.2303 -9.31941 -5.75163e-21) (-68.3998 -32.4127 0) (-90.9669 -61.7158 -2.8058e-21) (-69.4672 -39.6702 2.8467e-21) (-53.9157 -16.8241 -2.86236e-21) (-47.9578 -4.08608 0) (-46.6742 3.11528 5.70538e-21) (-46.3794 3.29048 -2.84313e-21) (-46.8496 7.67491 2.84913e-20) (-47.6433 11.139 0) (-47.6134 10.369 1.42166e-21) (-48.5019 13.1012 0) (-49.3758 15.4614 7.94811e-20) (-50.1825 17.5752 4.53369e-20) (-50.9037 19.534 9.02752e-20) (-51.5368 21.3982 -4.48986e-20) (-51.553 20.8412 -2.26238e-20) (-50.8766 18.9018 -4.53636e-20) (-50.1259 16.8672 1.41839e-21) (-50.0254 16.1468 -2.83692e-21) (-50.7991 18.2447 -2.2693e-20) (-51.5112 20.2502 1.70075e-20) (-51.4045 19.6246 5.66788e-21) (-50.6615 17.5625 0) (-49.8673 15.4115 1.41742e-21) (-49.0285 13.1406 1.41816e-21) (-49.1966 13.917 5.67819e-21) (-49.3068 14.6889 -1.13664e-20) (-48.4376 12.2979 -5.68458e-21) (-47.559 9.601 4.25935e-21) (-46.7449 6.48562 0) (-46.8122 7.11139 0) (-46.2371 3.15986 2.84766e-21) (-46.0941 -1.68515 -2.84509e-21) (-46.6999 -2.33399 -1.42263e-21) (-48.7189 -10.414 1.43905e-21) (-55.8428 -24.7696 0) (-70.8756 -47.7539 0) (-89.5238 -67.0337 0) (-113.848 -89.8459 0) (-135.837 -115.321 0) (-155.806 -137.83 0) (-172.657 -156.933 0) (-148.317 -140.328 0) (-129.786 -118.059 0) (-109.828 -93.3646 0) (-88.7574 -73.4955 0) (-106.886 -98.4014 0) (-125.122 -122.28 0) (-104.722 -104.397 0) (-88.2762 -80.4895 0) (-72.2015 -56.0669 0) (-57.8141 -33.0248 0) (-49.5848 -17.1022 0) (-46.8371 -7.86697 0) (-45.8772 -6.84096 0) (-45.7335 -1.54627 0) (-46.096 2.82463 0) (-45.9164 2.35687 0) (-46.625 5.81515 0) (-47.4539 8.82976 0) (-48.329 11.5015 -5.67362e-21) (-48.1589 10.706 -1.41656e-21) (-47.2829 8.05188 0) (-46.4403 5.1096 0) (-46.1788 4.37595 0) (-47.0349 7.26513 0) (-47.9153 9.90696 0) (-48.79 12.3573 0) (-49.6397 14.6616 0) (-50.4533 16.8554 0) (-51.2244 18.9645 0) (-50.9626 18.2725 0) (-50.1652 16.1245 0) (-49.3329 13.8955 0) (-48.9384 13.1128 0) (-49.7889 15.3697 0) (-50.611 17.5493 0) (-50.1621 16.7964 0) (-49.3163 14.5903 0) (-48.4479 12.3108 0) (-47.5596 9.93934 0) (-48.0634 10.7589 0) (-48.471 11.564 0) (-47.5889 9.10054 0) (-46.7016 6.46723 0) (-45.8321 3.61742 0) (-45.3941 2.83672 0) (-46.2762 5.65666 0) (-47.1719 8.28401 0) (-46.6578 7.45491 0) (-45.7525 4.83196 0) (-44.8578 2.03546 0) (-43.9915 -0.978641 0) (-44.5488 -0.226634 0) (-45.0122 0.492317 0) (-45.3885 1.17028 0) (-45.6861 1.79629 0) (-45.0901 -1.98921 0) (-45.4185 -1.67058 0) (-45.2375 -6.43932 0) (-45.6619 -12.2616 0) (-47.012 -13.7467 0) (-50.6626 -24.4721 0) (-59.8 -41.9686 0) (-73.3069 -64.8148 0) (-87.9372 -88.1391 0) (-74.335 -73.8039 0) (-61.7401 -51.5131 0) (-51.9852 -32.6356 0) (-47.2754 -20.1617 0) (-45.4791 -18.0611 0) (-44.7449 -11.5753 0) (-44.7321 -6.3797 0) (-44.2307 -6.5489 0) (-44.7171 -2.43608 0) (-44.2823 -2.97802 0) (-43.6962 -6.88173 0) (-43.3187 -11.3453 0) (-44.0091 -11.3316 0) (-44.2442 -17.0402 0) (-45.3425 -24.4097 0) (-47.7437 -27.2778 0) (-53.5849 -41.6517 0) (-63.6046 -61.4624 0) (-55.299 -51.4737 0) (-48.4578 -35.2689 0) (-45.3506 -31.534 0) (-43.7435 -22.9315 0) (-43.2416 -16.5631 0) (-42.3535 -16.418 0) (-42.6164 -11.5586 0) (-43.1116 -7.33469 0) (-43.7735 -3.59159 0) (-43.1806 -4.26083 0) (-42.4591 -7.87698 0) (-41.8706 -11.9135 0) (-41.4699 -16.4953 0) (-41.335 -21.8243 0) (-42.4662 -22.1667 0) (-43.285 -29.4243 0) (-45.5906 -39.6416 0) (-49.4638 -44.322 0) (-56.9324 -62.0207 0) (-64.9942 -71.7036 0) (-75.2052 -83.0544 0) (-87.7469 -96.1809 0) (-103.089 -111.219 0) (-121.454 -127.479 0) (-142.203 -144.088 0) (-164.128 -159.486 0) (-185.653 -172.219 0) (-205.585 -181.024 0) (-222.406 -185.052 0) (-234.843 -183.74 0) (-241.02 -177.231 0) (-239.602 -166.228 0) (-229.567 -151.401 0) (-211.114 -133.499 0) (-185.404 -114.12 0) (-154.929 -94.79 0) (-122.356 -75.662 0) (-87.5758 -57.976 0) (-53.4776 -42.8105 0) (-40.2186 -38.4689 0) (-27.9021 -33.9473 0) (-15.741 -28.9944 0) (-41.6853 -41.7021 0) (-55.5866 -47.0192 0) (-70.7396 -52.4581 0) (-103.527 -68.9898 0) (-85.7917 -62.3874 0) (-69.3637 -55.9855 0) (-54.2127 -49.7552 0) (-28.5657 -36.2708 0) (-3.80304 -23.2878 0) (9.03046 -16.593 0) (17.9698 -11.0937 0) (23.7707 -7.8172 0) (10.9861 -15.6432 0) (-2.41359 -23.344 0) (-15.3934 -30.2967 0) (-39.9845 -43.511 0) (-26.3866 -37.11 0) (-12.7525 -30.1156 0) (-35.8139 -43.665 0) (-50.012 -50.7889 0) (-65.0133 -57.8507 0) (-81.0638 -65.0139 0) (-98.2699 -72.3311 0) (-116.382 -79.7731 0) (-135.298 -87.4126 0) (-165.095 -106.677 0) (-145.355 -98.5318 0) (-126.482 -90.2399 0) (-152.61 -109.113 0) (-172.085 -117.789 0) (-191.965 -126.147 0) (-212.862 -144.939 0) (-194.864 -137.084 0) (-176.062 -128.216 0) (-156.819 -118.899 0) (-133.663 -100.052 0) (-108.084 -81.9353 0) (-90.5162 -73.7649 0) (-73.9119 -65.7254 0) (-58.4361 -57.8212 0) (-80.9185 -73.1823 0) (-97.66 -82.0411 0) (-115.352 -91.0135 0) (-138.193 -109.148 0) (-120.08 -99.4235 0) (-102.624 -89.6826 0) (-85.8827 -80.0799 0) (-65.0731 -64.4971 0) (-43.7173 -49.9786 0) (-21.8956 -36.3448 0) (1.18808 -21.8892 0) (20.1824 -9.64412 0) (26.1636 -6.61031 0) (27.0292 -5.74297 0) (27.3436 -5.037 0) (27.4948 -4.37729 0) (27.9038 -4.49769 0) (27.3857 -5.25471 0) (25.5182 -6.48497 0) (14.2037 -13.5792 0) (22.864 -7.485 0) (27.0258 -4.93001 0) (28.2193 -3.87415 0) (28.023 -3.8198 0) (27.5297 -3.78833 0) (27.5104 -3.27366 0) (27.4507 -2.80939 0) (27.3635 -2.39175 0) (27.7463 -2.29348 0) (27.8826 -2.73056 0) (27.9927 -3.2323 0) (28.3834 -3.19833 0) (28.323 -2.6217 0) (28.1501 -2.13737 0) (28.504 -1.97381 0) (28.574 -2.53876 0) (28.0896 -3.28318 0) (25.4834 -5.1248 0) (18.1599 -10.3522 0) (6.65076 -18.6177 0) (-8.15967 -28.2782 0) (-29.6576 -42.0214 0) (-15.5681 -33.7341 0) (-1.5262 -24.2985 0) (-21.9087 -38.5467 0) (-35.8473 -47.292 0) (-50.151 -55.9123 0) (-70.0044 -70.629 0) (-54.9883 -61.2947 0) (-40.6313 -52.09 0) (-26.7536 -42.8055 0) (-7.96122 -29.3016 0) (12.6809 -14.1517 0) (22.4284 -6.5359 0) (27.2909 -2.98519 0) (28.5161 -1.86276 0) (25.7656 -3.18891 0) (18.4104 -8.90769 0) (6.80057 -18.2984 0) (-12.8789 -33.2086 0) (1.19171 -22.4604 0) (14.532 -11.6644 0) (-2.99405 -25.9919 0) (-16.6688 -36.5569 0) (-30.2927 -46.5131 0) (-44.0705 -56.3069 0) (-58.2957 -66.0821 0) (-73.2349 -76.0417 0) (-88.9446 -86.2324 0) (-105.45 -96.5279 0) (-122.563 -106.918 0) (-140.163 -117.312 0) (-158.358 -127.645 0) (-176.925 -137.616 0) (-194.936 -146.831 0) (-211.319 -154.976 0) (-226.415 -161.354 0) (-232.228 -174.388 0) (-220.858 -169.893 0) (-207.563 -163.484 0) (-213.985 -177.046 0) (-223.667 -181.367 0) (-230.751 -183.582 0) (-223.089 -188.321 0) (-220.363 -188.976 0) (-214.621 -187.168 0) (-206.081 -183.035 0) (-201.94 -170.697 0) (-192.311 -155.279 0) (-175.334 -145.727 0) (-157.563 -135.233 0) (-140.053 -124.366 0) (-154.942 -141.661 0) (-171.77 -152.595 0) (-187.765 -162.421 0) (-195.112 -176.698 0) (-181.857 -168.366 0) (-166.759 -158.265 0) (-174.969 -173.15 0) (-187.503 -181.644 0) (-197.657 -188.038 0) (-205.323 -192.087 0) (-210.281 -193.597 0) (-212.164 -192.435 0) (-210.659 -188.33 0) (-194.694 -183.8 0) (-200.058 -191.714 0) (-201.922 -196.251 0) (-190.43 -195.166 0) (-185.183 -187.002 0) (-176.422 -175.122 0) (-156.877 -163.142 0) (-168.401 -178.748 0) (-176.65 -190.591 0) (-181.519 -198.745 0) (-192.271 -199.889 0) (-200.445 -197.713 0) (-196.018 -196.322 0) (-188.941 -192.223 0) (-179.334 -185.651 0) (-180.037 -195.671 0) (-186.808 -199.971 0) (-190.96 -201.43 0) (-183.16 -203.414 0) (-181.794 -204.801 0) (-177.675 -203.086 0) (-171.017 -198.426 0) (-170.76 -188.792 0) (-167.348 -176.869 0) (-160.619 -162.72 0) (-150.787 -146.891 0) (-138.147 -130.284 0) (-123.012 -113.406 0) (-106.353 -102.443 0) (-90.2743 -91.5097 0) (-74.8918 -80.7258 0) (-90.1093 -95.9148 0) (-105.671 -107.372 0) (-121.715 -118.836 0) (-134.751 -135.085 0) (-119.033 -123.202 0) (-103.648 -111.297 0) (-88.6546 -99.4027 0) (-75.1745 -84.6275 0) (-60.2368 -70.2016 0) (-46.2 -59.8787 0) (-32.5737 -49.6618 0) (-19.2785 -39.3444 0) (-33.7602 -52.1711 0) (-47.0551 -62.7881 0) (-60.8558 -73.5555 0) (-74.1915 -87.6266 0) (-60.2796 -76.1418 0) (-46.8921 -65.0117 0) (-58.7696 -77.993 0) (-72.1644 -89.7864 0) (-86.0746 -101.927 0) (-100.479 -114.205 0) (-115.223 -126.506 0) (-130.222 -138.78 0) (-145.46 -150.973 0) (-153.649 -166.067 0) (-139.254 -153.959 0) (-124.794 -141.423 0) (-132.374 -155.893 0) (-146.079 -168.355 0) (-159.201 -179.613 0) (-161.898 -191.107 0) (-150.638 -181.393 0) (-138.048 -169.594 0) (-125.005 -156.814 0) (-118.65 -143.047 0) (-110.486 -128.789 0) (-96.3841 -116.166 0) (-82.6131 -103.578 0) (-69.3081 -91.1735 0) (-78.4578 -104.402 0) (-91.5886 -117.23 0) (-105.026 -130.126 0) (-111.974 -143.711 0) (-99.0257 -130.544 0) (-86.2363 -117.428 0) (-73.7311 -104.403 0) (-65.7325 -91.7509 0) (-56.4355 -79.0904 0) (-45.8283 -66.5393 0) (-33.9827 -54.0427 0) (-20.8137 -41.4988 0) (-5.94401 -28.6832 0) (10.9335 -14.3511 0) (23.5873 -4.12493 0) (28.1227 -1.31922 0) (28.5158 -1.32988 0) (28.2974 -1.53081 0) (27.9392 -1.74572 0) (27.5875 -1.91084 0) (27.2551 -2.02217 0) (27.1316 -1.69854 0) (26.9985 -1.41791 0) (26.8611 -1.17749 0) (27.0689 -1.05644 0) (27.2433 -1.29575 0) (27.4179 -1.57934 0) (27.7183 -1.41274 0) (27.4976 -1.13058 0) (27.2831 -0.89693 0) (27.0787 -0.706101 0) (26.899 -0.856987 0) (26.724 -0.973822 0) (26.59 -0.803691 0) (26.4609 -0.663866 0) (26.338 -0.551837 0) (26.4355 -0.460173 0) (26.5813 -0.562325 0) (26.736 -0.6935 0) (26.8857 -0.553149 0) (26.7049 -0.43401 0) (26.5362 -0.345021 0) (26.634 -0.206763 0) (26.8254 -0.279381 0) (27.0325 -0.382714 0) (27.2566 -0.520306 0) (27.4981 -0.696701 0) (27.7573 -0.917231 0) (28.0263 -1.1885 0) (28.3063 -0.938363 0) (28.0074 -0.652346 0) (27.7077 -0.452438 0) (27.8891 -0.171486 0) (28.1729 -0.390262 0) (28.3677 -0.719327 0) (27.3954 -0.989672 0) (28.0447 -0.212944 0) (27.923 0.0724478 0) (27.6816 0.230378 0) (27.5815 -0.0406707 0) (27.4269 -0.29956 0) (27.1701 -0.183378 0) (26.936 -0.100449 0) (26.7221 -0.0472321 0) (26.7958 0.134284 0) (27.0324 0.104041 0) (27.2943 0.0464916 0) (27.3915 0.307801 0) (27.1112 0.336352 0) (26.8518 0.338555 0) (26.6153 0.318413 0) (26.5797 0.139289 0) (26.5254 -0.0208724 0) (26.4568 -0.161644 0) (26.3793 -0.283417 0) (26.2997 -0.384924 0) (26.2234 -0.466308 0) (26.1201 -0.406734 0) (26.0306 -0.371216 0) (25.9551 -0.355694 0) (25.9789 -0.302804 0) (26.0695 -0.309525 0) (26.1767 -0.335491 0) (26.2361 -0.247381 0) (26.11 -0.234086 0) (26.0026 -0.239159 0) (25.9134 -0.257376 0) (25.9037 -0.310352 0) (25.8918 -0.355145 0) (25.8387 -0.3651 0) (25.7951 -0.381679 0) (25.7607 -0.401496 0) (25.7496 -0.377919 0) (25.7906 -0.351492 0) (25.8415 -0.327842 0) (25.84 -0.284118 0) (25.78 -0.315679 0) (25.7313 -0.349124 0) (25.7037 -0.313672 0) (25.7613 -0.272164 0) (25.8324 -0.231301 0) (25.9192 -0.193464 0) (26.0242 -0.1624 0) (26.1493 -0.14326 0) (26.2942 -0.141516 0) (26.3447 -0.0185474 0) (26.1821 -0.0369522 0) (26.0396 -0.0714169 0) (26.0431 0.0346705 0) (26.2021 0.0853311 0) (26.3815 0.121793 0) (26.3991 0.278774 0) (26.2031 0.223403 0) (26.0285 0.156322 0) (25.8756 0.0812258 0) (25.9053 -0.0252067 0) (25.9181 -0.116504 0) (25.8162 -0.166945 0) (25.7324 -0.218845 0) (25.6646 -0.270133 0) (25.6117 -0.217512 0) (25.6905 -0.154081 0) (25.788 -0.0893482 0) (25.744 0.00206116 0) (25.6335 -0.0777465 0) (25.5436 -0.156162 0) (25.461 -0.0875424 0) (25.5607 0.00859412 0) (25.6827 0.106018 0) (25.827 0.202077 0) (25.9938 0.293618 0) (26.1829 0.37775 0) (26.3943 0.452416 0) (26.628 0.515654 0) (26.883 0.56325 0) (27.1509 0.585073 0) (27.4041 0.549115 0) (27.5955 0.430895 0) (27.6061 0.147888 0) (26.3598 -1.00523 0) (21.059 -5.31248 0) (8.00169 -16.6073 0) (18.6635 -6.80245 0) (25.2345 -1.27416 0) (16.8098 -8.19182 0) (5.70255 -18.5741 0) (-7.7317 -30.6244 0) (-21.3035 -43.0655 0) (-8.62532 -31.985 0) (4.31755 -19.997 0) (15.4171 -9.28208 0) (24.0568 -1.72423 0) (27.0958 0.379694 0) (27.2375 0.700304 0) (27.0906 0.792111 0) (26.8678 0.79365 0) (26.7442 0.973981 0) (26.8494 0.898113 0) (26.5441 0.500584 0) (23 -2.20561 0) (25.9728 0.529057 0) (26.4432 1.03842 0) (25.4341 0.506537 0) (22.1683 -2.59794 0) (14.5598 -9.95805 0) (3.76677 -20.7624 0) (-8.69812 -32.7527 0) (-20.9768 -44.0702 0) (-33.2763 -55.2769 0) (-43.9485 -67.3893 0) (-31.8151 -55.8961 0) (-19.9365 -44.4686 0) (-29.7407 -55.9057 0) (-41.423 -67.5811 0) (-53.4113 -79.4682 0) (-61.6251 -91.5906 0) (-49.8614 -79.1686 0) (-38.3764 -67.1361 0) (-27.1631 -55.2999 0) (-18.3096 -44.2786 0) (-8.10449 -32.9568 0) (3.9311 -20.9231 0) (14.2211 -10.2411 0) (21.6007 -2.82815 0) (14.2864 -10.1128 0) (4.68986 -20.5628 0) (-6.89826 -32.6405 0) (-16.1766 -43.5323 0) (-5.15758 -31.7993 0) (5.85053 -19.6898 0) (14.6315 -9.73292 0) (21.2647 -2.8969 0) (24.9402 0.455967 0) (26.0209 1.11205 0) (26.3768 1.10455 0) (26.5517 0.951377 0) (26.6142 0.731387 0) (26.3681 0.646387 0) (26.1422 0.550333 0) (25.9391 0.445733 0) (25.8642 0.6086 0) (26.0806 0.737589 0) (26.3166 0.85711 0) (26.2069 1.05499 0) (25.9899 0.930018 0) (25.7698 0.781141 0) (25.5705 0.62471 0) (25.6736 0.475449 0) (25.7597 0.334638 0) (25.6042 0.219333 0) (25.4724 0.102488 0) (25.3644 -0.013113 0) (25.2537 0.0657207 0) (25.3689 0.201908 0) (25.5088 0.339291 0) (25.397 0.465287 0) (25.2495 0.305433 0) (25.128 0.147237 0) (24.9864 0.231482 0) (25.1127 0.413206 0) (25.2667 0.598103 0) (25.4486 0.783062 0) (25.6513 0.961177 0) (25.8455 1.10905 0) (25.9886 1.17473 0) (25.6089 1.15019 0) (25.6044 1.20967 0) (25.4759 1.12085 0) (25.2114 1.20259 0) (25.2015 1.15817 0) (24.5324 0.440551 0) (21.1779 -2.76809 0) (24.1911 0.459225 0) (24.8049 1.14282 0) (24.8168 1.15861 0) (25.0987 1.08765 0) (25.2983 0.943075 0) (25.1166 0.73762 0) (24.9576 0.526698 0) (24.8278 0.319186 0) (24.6489 0.410705 0) (24.7816 0.645502 0) (24.9408 0.879087 0) (24.7157 1.0059 0) (24.5795 0.76389 0) (24.4477 0.502693 0) (24.2201 0.593044 0) (24.3316 0.866507 0) (24.4174 1.06345 0) (24.4089 1.0923 0) (23.903 0.508763 0) (21.2617 -2.43286 0) (15.3253 -9.04181 0) (7.1658 -18.5424 0) (-3.01288 -30.3378 0) (-13.6091 -42.2284 0) (-24.1714 -54.1105 0) (-34.9145 -66.0687 0) (-45.8966 -78.2186 0) (-57.1055 -90.7389 0) (-68.6039 -103.662 0) (-80.4666 -116.825 0) (-92.6203 -130.104 0) (-104.922 -143.473 0) (-117.307 -156.817 0) (-129.707 -169.883 0) (-141.736 -182.171 0) (-152.77 -192.599 0) (-161.896 -200.491 0) (-168.595 -205.7 0) (-172.857 -207.852 0) (-174.477 -206.818 0) (-173.211 -202.436 0) (-168.871 -194.506 0) (-161.315 -182.923 0) (-150.675 -167.593 0) (-137.141 -148.821 0) (-118.469 -133.615 0) (-132.868 -154.456 0) (-145.223 -172.774 0) (-129.126 -160.873 0) (-115.972 -140.56 0) (-101.788 -118.7 0) (-87.5138 -104.852 0) (-100.684 -126.853 0) (-113.753 -148.157 0) (-125.716 -167.883 0) (-140.305 -178.605 0) (-154.919 -187.619 0) (-161.696 -198.738 0) (-165.363 -206.2 0) (-166.094 -210.074 0) (-157.768 -209.934 0) (-154.899 -203.192 0) (-149.024 -192.774 0) (-135.726 -184.858 0) (-143.381 -198.171 0) (-148.261 -207.709 0) (-137.857 -203.62 0) (-131.322 -191.354 0) (-122.475 -175.323 0) (-111.682 -156.295 0) (-99.6765 -135.539 0) (-87.4034 -114.021 0) (-75.8056 -92.6076 0) (-66.1468 -82.0048 0) (-76.2337 -102.488 0) (-87.2458 -123.648 0) (-76.5357 -112.82 0) (-66.9882 -92.4791 0) (-58.2731 -72.9194 0) (-50.701 -54.4158 0) (-46.1294 -48.9142 0) (-42.9397 -36.7642 0) (-41.6836 -28.2755 0) (-40.285 -27.6684 0) (-40.2567 -21.7511 0) (-40.5544 -16.7438 0) (-41.0638 -12.3779 0) (-41.7258 -8.49055 0) (-42.4943 -4.97661 0) (-43.3341 -1.76122 0) (-44.2183 1.21379 0) (-45.125 3.99181 0) (-46.0403 6.61119 0) (-46.9528 9.10261 0) (-47.8546 11.4884 0) (-48.7407 13.7872 0) (-49.6091 16.0153 0) (-48.9449 15.2047 0) (-48.0554 12.9601 0) (-47.1523 10.646 0) (-46.335 9.7831 0) (-47.254 12.1086 0) (-48.163 14.3661 0) (-47.2578 13.5023 0) (-46.3311 11.236 0) (-45.3973 8.90179 0) (-44.4579 6.4895 0) (-45.4073 7.37762 0) (-46.2373 8.24885 0) (-45.3139 5.75193 0) (-44.3888 3.13535 0) (-43.4708 0.371371 0) (-42.6101 -0.489196 0) (-43.5399 2.26299 0) (-44.4738 4.87675 0) (-43.5147 3.98596 0) (-42.5723 1.37522 0) (-41.6336 -1.36553 0) (-40.537 -2.25981 0) (-41.4828 0.470371 0) (-42.4325 3.07985 0) (-43.3843 5.58545 0) (-44.3343 8.00272 0) (-45.2808 10.3427 0) (-46.2235 12.6148 0) (-45.0542 11.7049 0) (-46.0106 13.9197 0) (-44.7162 12.9922 0) (-45.6903 15.1478 0) (-46.6695 17.2471 0) (-47.6552 19.2904 0) (-46.2654 18.3286 0) (-45.2588 16.2919 0) (-44.2621 14.198 0) (-43.2738 12.0461 0) (-42.2917 9.83322 0) (-43.7453 10.7766 0) (-42.7775 8.50015 0) (-44.0979 9.42947 0) (-43.1407 7.0866 0) (-41.8118 6.15696 0) (-40.3433 5.215 0) (-41.3154 7.55824 0) (-39.7071 6.60623 0) (-40.6886 8.87721 0) (-41.6786 11.0849 0) (-42.6775 13.23 0) (-43.6878 15.3156 0) (-44.7115 17.3426 0) (-45.7506 19.311 0) (-44.0419 18.2884 0) (-45.1167 20.1793 0) (-43.2422 19.1174 0) (-44.3568 20.9238 0) (-42.3049 19.8198 0) (-43.4613 21.533 0) (-41.2194 20.383 0) (-38.7703 19.2215 0) (-37.6016 17.5729 0) (-40.0549 18.7015 0) (-38.9228 16.9502 0) (-41.1788 18.0393 0) (-40.0815 16.1924 0) (-42.1537 17.2473 0) (-41.0884 15.313 0) (-42.9874 16.3356 0) (-41.9512 14.3221 0) (-40.9314 12.2479 0) (-39.0195 11.2559 0) (-40.0444 13.3159 0) (-37.9633 12.3015 0) (-39.0104 14.2795 0) (-36.7499 13.2407 0) (-37.8219 15.1297 0) (-35.3717 14.0633 0) (-36.4699 15.8539 0) (-33.8188 14.7564 0) (-34.9469 16.4424 0) (-36.114 18.0568 0) (-33.2481 16.8919 0) (-34.4492 18.3927 0) (-31.364 17.1933 0) (-32.5981 18.5747 0) (-33.8764 19.8774 0) (-35.1987 21.0996 0) (-36.564 22.2389 0) (-33.2181 20.8801 0) (-34.6139 21.8936 0) (-31.0245 20.5083 0) (-32.4428 21.3976 0) (-33.8962 22.198 0) (-30.0366 20.7633 0) (-28.6058 19.9949 0) (-27.2089 19.1412 0) (-25.8497 18.2054 0) (-29.6447 19.5338 0) (-28.3065 18.4771 0) (-31.864 19.7821 0) (-30.5532 18.6022 0) (-29.2872 17.3424 0) (-25.7627 16.1243 0) (-27.012 17.34 0) (-23.2576 16.0963 0) (-24.5318 17.1899 0) (-20.546 15.9255 0) (-21.8399 16.9 0) (-23.1745 17.7978 0) (-24.5459 18.6171 0) (-25.95 19.3552 0) (-21.6446 17.9778 0) (-20.2713 17.2685 0) (-18.9286 16.482 0) (-14.4819 15.1996 0) (-15.7908 15.9539 0) (-17.1297 16.636 0) (-12.4137 15.3338 0) (-11.1133 14.6775 0) (-9.84112 13.9537 0) (-8.60125 13.1632 0) (-13.2062 14.3742 0) (-17.6224 15.6213 0) (-16.3565 14.6878 0) (-15.1333 13.6816 0) (-19.296 14.8757 0) (-18.0917 13.7504 0) (-22.029 14.9253 0) (-20.8477 13.6772 0) (-24.5599 14.8307 0) (-28.0666 16.0043 0) (-26.8909 14.5877 0) (-30.1732 15.7338 0) (-29.0259 14.1975 0) (-32.0884 15.3156 0) (-30.9697 13.6656 0) (-29.8893 11.9411 0) (-32.7274 12.9984 0) (-31.6705 11.1679 0) (-34.3051 12.2024 0) (-33.2653 10.27 0) (-35.7044 11.2839 0) (-34.6827 9.26032 0) (-36.9377 10.2585 0) (-35.9312 8.14948 0) (-38.0112 9.13235 0) (-39.9258 10.1123 0) (-38.9317 7.91228 0) (-37.9483 5.64733 0) (-36.9733 3.31192 2.24224e-20) (-38.7322 4.26622 0) (-37.762 1.84896 0) (-39.3748 2.79597 0) (-40.847 3.73696 0) (-42.1824 4.6671 0) (-41.2247 2.161 0) (-40.2666 -0.446267 0) (-39.3147 -3.16684 0) (-37.9675 -4.08384 0) (-38.9225 -1.37092 0) (-39.8843 1.23162 0) (-38.409 0.292207 0) (-37.4461 -2.30588 0) (-36.4902 -5.01023 0) (-35.5433 -7.83912 0) (-37.0229 -6.92578 0) (-38.375 -6.02291 0) (-39.6033 -5.13287 0) (-40.7091 -4.25871 0) (-41.6966 -3.40441 0) (-42.571 -2.57105 0) (-41.7074 -5.73159 0) (-40.9013 -9.16206 0) (-40.1813 -12.9285 0) (-39.2113 -13.549 0) (-39.9777 -9.88171 0) (-40.8138 -6.51985 0) (-39.8098 -7.33688 0) (-38.9491 -10.642 0) (-38.1454 -14.2274 0) (-37.4236 -18.1648 0) (-38.5454 -17.6018 0) (-39.585 -17.1215 0) (-39.1621 -21.8761 0) (-38.9838 -27.4126 0) (-39.2386 -34.1107 0) (-40.9421 -35.0691 0) (-42.8138 -45.2033 0) (-46.8904 -59.334 0) (-51.9376 -65.3153 0) (-59.2532 -83.9261 0) (-67.5057 -103.271 0) (-76.7411 -123.591 0) (-86.9853 -133.743 0) (-98.6644 -144.743 0) (-109.616 -164.917 0) (-119.192 -183.109 0) (-126.922 -197.981 0) (-115.839 -191.082 0) (-107.422 -173.932 0) (-97.5667 -154.399 0) (-86.5619 -144.254 0) (-96.2518 -164.427 0) (-105 -183.176 0) (-112.303 -198.998 0) (-122.421 -204.618 0) (-132.315 -209.077 0) (-141.64 -212.141 0) (-150.243 -213.547 0) (-157.82 -213.071 0) (-164.055 -210.542 0) (-159.525 -207.724 0) (-152.602 -201.824 0) (-143.421 -193.193 0) (-143.167 -202.398 0) (-150.401 -209.1 0) (-155.299 -212.757 0) (-149.584 -215.761 0) (-146.529 -214.477 0) (-141.224 -209.833 0) (-133.672 -202.189 0) (-133.985 -192.896 0) (-132.679 -182.002 0) (-121.142 -169.285 0) (-109.367 -155.948 0) (-97.6112 -142.403 0) (-101.288 -154.251 0) (-112.437 -167.819 0) (-123.513 -180.932 0) (-124.402 -191.571 0) (-114.26 -178.978 0) (-103.736 -165.541 0) (-105.048 -176.201 0) (-114.844 -189.303 0) (-123.987 -200.963 0) (-131.866 -209.806 0) (-137.718 -215.603 0) (-141.327 -218.038 0) (-142.721 -216.924 0) (-134.976 -216.388 0) (-135.12 -219.905 0) (-133 -219.721 0) (-127.338 -222.311 0) (-128.11 -220.254 0) (-126.566 -214.36 0) (-117.668 -211.057 0) (-120.524 -219.263 0) (-120.998 -223.556 0) (-119.354 -223.958 0) (-124.488 -220.629 0) (-128.74 -215.927 0) (-122.304 -208.884 0) (-114.256 -198.664 0) (-105.328 -186.142 0) (-104.577 -195.292 0) (-112.645 -206.877 0) (-119.516 -215.378 0) (-115.721 -220.607 0) (-110.061 -213.789 0) (-102.916 -203.585 0) (-100.473 -210.905 0) (-106.65 -219.494 0) (-111.097 -224.645 0) (-113.555 -226.041 0) (-114.098 -223.57 0) (-112.508 -217.103 0) (-108.467 -206.685 0) (-102.292 -192.434 0) (-94.6464 -174.766 0) (-85.9021 -155.146 0) (-76.7471 -134.793 0) (-67.8788 -114.48 0) (-59.9481 -95.0243 0) (-52.8679 -76.6435 0) (-47.6295 -70.5893 0) (-42.9564 -54.9032 0) (-40.2983 -42.8171 0) (-38.227 -41.3624 0) (-37.6669 -33.6023 0) (-37.6958 -27.3913 0) (-38.0211 -22.1555 0) (-36.8179 -22.5557 0) (-36.3759 -27.5533 0) (-36.1621 -33.4058 0) (-34.6516 -33.4268 0) (-35.0007 -27.8589 0) (-35.5383 -23.0528 0) (-36.21 -18.7956 0) (-36.9766 -14.9538 0) (-37.8102 -11.4366 0) (-38.6907 -8.17911 0) (-37.4528 -9.04224 0) (-36.5567 -12.2598 0) (-35.6991 -15.72 0) (-34.3085 -16.5192 0) (-35.1851 -13.1065 0) (-36.0932 -9.92247 0) (-34.609 -10.8164 0) (-33.6923 -13.9723 0) (-32.8009 -17.3453 0) (-31.9455 -20.9864 0) (-33.4766 -20.2152 0) (-34.8965 -19.4823 0) (-34.1713 -23.6289 0) (-33.5559 -28.2792 0) (-33.0975 -33.617 0) (-31.4764 -33.9454 0) (-32.0277 -28.7925 0) (-32.7075 -24.2702 0) (-31.1405 -24.9655 0) (-30.4074 -29.3822 0) (-29.7782 -34.3843 0) (-29.2976 -40.1966 0) (-31.1012 -39.9817 0) (-32.8537 -39.924 0) (-34.5881 -40.08 0) (-36.3626 -40.521 0) (-37.3056 -49.7239 0) (-39.849 -51.7982 0) (-43.2458 -65.7572 0) (-48.0181 -82.1913 0) (-53.5045 -88.0518 0) (-60.2749 -106.509 0) (-68.0908 -126.174 0) (-76.4784 -146.372 0) (-84.905 -166.352 0) (-75.8998 -158.295 0) (-68.0427 -138.283 0) (-60.5233 -118.49 0) (-53.8152 -99.6822 0) (-48.2507 -93.8708 0) (-43.4117 -77.2934 0) (-39.6254 -62.0883 0) (-36.5756 -59.4153 0) (-35.0932 -48.4132 0) (-33.0318 -47.6428 0) (-33.9062 -57.5591 0) (-35.9592 -70.2894 0) (-39.4529 -73.3603 0) (-43.3618 -89.0433 0) (-48.1268 -106.025 0) (-53.9158 -111.779 0) (-60.5386 -130.981 0) (-67.6768 -150.78 0) (-60.2305 -143.912 0) (-53.8611 -124.506 0) (-47.9128 -118.851 0) (-43.045 -101.176 0) (-39.0461 -85.0683 0) (-35.2407 -81.8305 0) (-32.8548 -67.9972 0) (-31.4837 -56.3516 0) (-31.0197 -47.2505 0) (-29.029 -47.1266 0) (-29.199 -55.6365 0) (-30.0394 -66.3564 0) (-31.8092 -79.2773 0) (-34.4248 -93.7825 0) (-38.5184 -97.1181 0) (-42.5952 -113.991 0) (-47.4486 -132.279 0) (-53.5128 -137.738 0) (-59.574 -157.215 0) (-66.9249 -163.596 0) (-74.905 -170.488 0) (-83.4911 -177.78 0) (-92.6376 -185.219 0) (-99.2343 -201.455 0) (-104.19 -213.955 0) (-106.837 -222.53 0) (-99.3102 -220.59 0) (-95.7236 -210.006 0) (-90.2149 -195.556 0) (-81.5701 -189.234 0) (-87.3208 -205.423 0) (-91.6159 -217.888 0) (-93.776 -226.3 0) (-100.65 -227.096 0) (-107.29 -227.059 0) (-105.811 -227.56 0) (-102.496 -224.141 0) (-97.2978 -217.111 0) (-93.49 -222.279 0) (-97.7057 -227.811 0) (-100.041 -229.467 0) (-93.9413 -230.521 0) (-92.4076 -230.572 0) (-89.147 -226.564 0) (-84.3317 -230.05 0) (-86.7376 -232.511 0) (-87.5952 -230.801 0) (-86.7511 -224.807 0) (-83.8596 -214.586 0) (-79.1505 -200.387 0) (-73.3884 -182.838 0) (-65.6959 -176.636 0) (-71.322 -195.072 0) (-76.178 -210.817 0) (-68.706 -206.728 0) (-63.8879 -189.723 0) (-58.4938 -170.811 0) (-52.8388 -151.417 0) (-46.6707 -146.238 0) (-41.9468 -127.531 0) (-37.8007 -109.884 0) (-33.4251 -106.468 0) (-30.6663 -91.0926 0) (-28.6411 -77.3285 0) (-27.4051 -65.2395 0) (-26.9461 -55.2718 0) (-27.0229 -47.2113 0) (-27.4228 -40.5466 0) (-27.994 -34.9151 0) (-28.6879 -30.036 0) (-29.4652 -25.7058 0) (-30.2994 -21.789 0) (-31.1733 -18.1931 0) (-32.0755 -14.8528 0) (-32.9975 -11.7202 0) (-33.9335 -8.75938 0) (-34.8797 -5.94185 0) (-35.8338 -3.24537 0) (-36.7948 -0.652694 0) (-35.041 -1.5987 0) (-36.0053 0.89862 -2.24349e-20) (-34.0998 -0.0535281 0) (-35.0641 2.35562 0) (-36.0354 4.68547 0) (-37.0169 6.94238 0) (-34.9408 5.97173 0) (-33.965 3.72469 0) (-33.0013 1.40259 0) (-32.0448 -1.00027 0) (-31.0988 -3.48446 0) (-33.143 -2.54438 0) (-32.1939 -5.12541 0) (-34.0844 -4.18605 0) (-33.1343 -6.87543 0) (-31.251 -7.8079 0) (-29.2278 -8.73558 0) (-30.1602 -6.05931 0) (-27.9811 -6.9841 0) (-28.9057 -4.41551 0) (-29.838 -1.93814 0) (-30.7821 0.456619 0) (-31.7342 2.76949 0) (-32.7001 5.00487 0) (-33.6824 7.16827 0) (-31.2618 6.19343 0) (-32.2515 8.26679 0) (-29.6436 7.28456 0) (-30.6443 9.26405 0) (-27.836 8.26839 0) (-28.8453 10.1418 0) (-25.8306 9.13206 0) (-26.8573 10.898 0) (-27.9215 12.5861 0) (-24.6745 11.5227 0) (-25.7602 13.0934 0) (-22.2933 12.0083 0) (-23.4033 13.4586 0) (-19.7136 12.3511 0) (-18.6275 10.9463 0) (-17.5893 9.46252 0) (-21.2298 10.4801 0) (-20.2101 8.87149 0) (-23.6307 9.87333 0) (-22.6262 8.14343 0) (-21.6593 6.33258 0) (-24.8408 7.28897 0) (-23.8841 5.36716 0) (-26.8558 6.31713 0) (-25.8989 4.28531 0) (-28.6675 5.23052 0) (-27.7148 3.10126 0) (-30.292 4.04594 0) (-29.3402 1.82252 0) (-28.4008 -0.480435 0) (-25.8607 -1.39879 0) (-26.781 0.892259 0) (-24.0527 -0.0186777 0) (-24.9654 2.17417 0) (-22.0437 1.26951 0) (-22.953 3.36132 0) (-19.8269 2.46152 0) (-20.7285 4.4401 0) (-17.3889 3.54133 0) (-18.2915 5.40364 0) (-19.2314 7.17975 0) (-15.6464 6.24457 0) (-16.5965 7.89637 0) (-12.7916 6.95194 0) (-13.7555 8.47407 0) (-14.766 9.91229 0) (-15.8265 11.2705 0) (-16.9347 12.5491 0) (-12.8263 11.4485 0) (-13.9561 12.6023 0) (-9.62923 11.4829 0) (-10.7776 12.517 0) (-11.9709 13.4803 0) (-7.39827 12.3071 0) (-6.23784 11.3856 0) (-5.11975 10.3955 0) (-4.04805 9.33503 0) (-8.52825 10.3761 0) (-7.47591 9.19399 0) (-11.7454 10.2183 0) (-10.7134 8.90843 0) (-9.73115 7.51691 0) (-5.5192 6.58895 0) (-6.47249 7.93258 0) (-2.04914 6.98706 0) (-3.02445 8.20031 0) (1.60275 7.23707 0) (0.607797 8.32522 0) (-0.43475 9.34204 0) (-1.52076 10.2891 0) (-2.64761 11.1708 0) (-3.81398 11.9903 0) (-5.01549 12.7479 0) (-6.24728 13.4431 0) (-7.50513 14.0753 0) (-2.41067 12.865 0) (-1.19972 12.2548 0) (-0.0121233 11.5853 0) (5.15814 10.4712 0) (4.02163 11.1169 0) (2.86337 11.7075 0) (8.30836 10.6189 0) (9.40888 10.0463 0) (10.4903 9.42182 0) (11.5494 8.74482 0) (6.26879 9.77106 0) (1.14675 10.8574 -2.23326e-20) (2.27319 10.0716 2.23585e-20) (3.36365 9.22672 0) (4.41534 8.31976 0) (9.41846 7.3316 0) (8.40119 8.20413 0) (7.35042 9.01621 0) (12.5845 8.01536 0) (13.5938 7.23144 0) (14.5751 6.38912 0) (20.0214 5.4854 0) (19.0773 6.30213 0) (18.1083 7.06236 0) (17.117 7.76976 0) (16.1058 8.42649 0) (15.0763 9.03358 0) (14.0306 9.59183 0) (20.2361 8.61939 0) (21.2319 8.07188 0) (22.2144 7.47789 0) (28.9384 6.57921 0) (28.0069 7.16147 0) (27.0632 7.69994 0) (34.5887 6.83191 0) (35.4759 6.30259 0) (36.3498 5.73227 0) (37.2079 5.11979 0) (29.8537 5.95246 0) (23.1803 6.83702 0) (24.1273 6.14796 0) (25.0533 5.4074 0) (25.9561 4.61152 0) (32.4815 3.77984 0) (31.6268 4.55663 0) (30.7504 5.27937 0) (38.0481 4.46289 0) (38.868 3.75792 0) (39.6671 3.00058 0) (40.4515 2.18874 0) (33.3153 2.94564 0) (26.8341 3.75621 0) (20.939 4.60744 0) (15.5265 5.48408 0) (10.4005 6.39473 0) (5.42671 7.34614 0) (6.39471 6.30305 0) (7.31876 5.18317 0) (2.55128 6.07132 0) (3.45129 4.82284 0) (-1.12355 5.69126 0) (-0.24688 4.30741 0) (-4.61503 5.15861 0) (-8.79728 6.04012 0) (-7.9089 4.47242 0) (-11.8719 5.34148 0) (-10.994 3.63994 0) (-14.7367 4.5051 0) (-13.8649 2.67508 0) (-10.1552 1.84364 0) (-6.2587 1.04847 0) (-7.06369 2.81002 0) (-2.94474 2.01369 0) (-3.75754 3.63507 0) (0.582631 2.82781 0) (1.36577 1.24832 0) (2.10942 -0.438311 0) (-2.17262 0.288885 0) (-1.43658 -1.54209 0) (-5.48777 -0.815679 0) (-9.35061 -0.0509367 0) (-13.0273 0.752077 0) (-16.5184 1.59048 0) (-15.6691 -0.455068 0) (-18.9465 0.392228 0) (-18.0863 -1.76679 0) (-21.1545 -0.907138 0) (-20.288 -3.16933 0) (-23.1575 -2.29567 0) (-22.2776 -4.6589 0) (-24.956 -3.77269 0) (-27.4755 -2.86407 0) (-26.561 -5.33339 0) (-25.6542 -7.89589 0) (-24.7525 -10.562 0) (-27.0624 -9.65487 0) (-26.1476 -12.442 0) (-28.3003 -11.5281 0) (-30.3142 -10.6073 0) (-32.1912 -9.6832 0) (-31.2564 -12.6304 0) (-30.3323 -15.7439 0) (-29.4232 -19.0578 0) (-27.5482 -19.9351 0) (-28.4608 -16.6419 0) (-29.3837 -13.5435 0) (-27.3773 -14.4558 0) (-26.4589 -17.543 0) (-25.5465 -20.8209 0) (-24.6427 -24.3306 0) (-26.6503 -23.4659 0) (-28.5352 -22.6172 0) (-27.6772 -26.4837 0) (-26.8629 -30.7437 0) (-26.1131 -35.523 0) (-24.1308 -36.1981 0) (-24.9282 -31.4979 0) (-25.7735 -27.293 0) (-23.7519 -28.1284 0) (-22.8817 -32.2918 0) (-22.0443 -36.9313 0) (-19.8523 -37.7138 0) (-20.7216 -33.1187 0) (-21.6108 -28.9846 0) (-22.5108 -25.2069 0) (-23.4164 -21.7112 0) (-24.3249 -18.4435 0) (-25.2354 -15.3637 0) (-22.9557 -16.2637 0) (-23.8538 -13.3454 0) (-21.4165 -14.2346 0) (-22.2959 -11.4532 0) (-23.1771 -8.79071 0) (-24.0628 -6.23393 0) (-21.4087 -7.11298 0) (-20.5473 -9.66475 0) (-19.6899 -12.3248 0) (-18.8329 -15.106 0) (-17.9728 -18.0251 0) (-20.5358 -17.152 0) (-19.6515 -20.2274 0) (-22.0566 -19.3395 0) (-21.1557 -22.602 0) (-18.7617 -23.4894 0) (-16.2312 -24.3697 0) (-17.1064 -21.1036 0) (-14.4173 -21.9648 0) (-15.2628 -18.8797 0) (-16.0995 -15.9563 0) (-16.9312 -13.1733 0) (-17.7618 -10.5144 0) (-18.5955 -7.96709 0) (-19.4364 -5.521 0) (-16.4302 -6.35373 0) (-17.2507 -4.0135 0) (-14.0417 -4.82494 0) (-14.8442 -2.59407 0) (-11.4257 -3.38568 0) (-12.214 -1.26805 0) (-8.57615 -2.04472 0) (-4.75185 -2.78221 0) (-4.04058 -4.85497 0) (-7.82618 -4.14013 0) (-7.09597 -6.3412 0) (-10.6581 -5.60182 0) (-9.908 -7.91996 0) (-13.2553 -7.15393 0) (-12.4791 -9.5861 0) (-15.6203 -8.79246 0) (-14.8171 -11.3364 0) (-14.0158 -13.9955 0) (-10.9387 -14.7889 0) (-11.7085 -12.1278 0) (-8.43082 -12.8864 0) (-9.16703 -10.3457 0) (-5.67806 -11.0695 0) (-6.38227 -8.64938 0) (-2.67221 -9.33851 0) (-3.34915 -7.03946 0) (0.591339 -7.70375 0) (-0.0623077 -5.5339 0) (-0.736139 -3.48161 0) (3.47463 -4.14686 0) (2.80952 -2.23466 0) (7.25081 -2.89053 0) (6.58081 -1.12966 0) (5.86446 0.516429 0) (5.10691 2.0528 0) (4.30293 3.48601 0) (9.02885 2.68975 0) (8.19695 3.98057 0) (13.1087 3.15264 0) (12.2464 4.31148 0) (11.3435 5.39009 0) (16.4453 4.5127 0) (17.3323 3.46932 0) (18.1815 2.34649 0) (18.9937 1.1363 0) (13.9275 1.90677 0) (14.7038 0.565059 0) (9.81448 1.3024 0) (10.5561 -0.189407 0) (11.2499 -1.7926 0) (16.1207 -2.44028 0) (15.4377 -0.880847 0) (20.5068 -1.57482 0) (19.7718 -0.16895 0) (25.0961 -0.894629 0) (24.3254 0.377953 0) (23.5268 1.55834 0) (22.6931 2.65147 0) (21.8293 3.66436 0) (27.6917 2.83763 0) (28.5253 1.84991 0) (29.3254 0.778846 0) (35.6803 0.0338451 0) (34.9225 1.08475 0) (34.1327 2.05169 0) (41.2179 1.31649 0) (41.9521 0.365348 0) (42.656 -0.666528 0) (43.3303 -1.77152 0) (36.4083 -1.09924 0) (30.0971 -0.378966 0) (30.8353 -1.62029 0) (31.5446 -2.95268 0) (25.8295 -2.26076 0) (26.5255 -3.7343 0) (21.1972 -3.09197 0) (21.8443 -4.7336 0) (16.7578 -4.12375 0) (11.8971 -3.5159 0) (12.5073 -5.3667 0) (7.88496 -4.77366 0) (8.49188 -6.78296 0) (4.11247 -6.17785 0) (4.7296 -8.33241 0) (5.3332 -10.6159 0) (1.23006 -9.99391 0) (1.86267 -12.4102 0) (-2.00452 -11.756 0) (-1.3381 -14.2993 0) (-4.97688 -13.6105 0) (-4.27339 -16.2808 0) (-7.69388 -15.5512 0) (-6.95089 -18.3523 0) (-10.1647 -17.5817 0) (-13.2119 -16.7823 0) (-12.401 -19.7129 0) (-11.5788 -22.808 0) (-10.741 -26.0955 0) (-13.5596 -25.2394 0) (-12.686 -28.7405 0) (-15.3444 -27.8608 0) (-17.8649 -26.9761 0) (-20.2525 -26.0901 0) (-19.3481 -29.8563 0) (-18.4458 -33.9721 0) (-17.5521 -38.537 0) (-15.1392 -39.3933 0) (-16.0506 -34.846 0) (-16.9607 -30.7385 0) (-14.4445 -31.6268 0) (-13.5312 -35.7351 0) (-12.6075 -40.2762 0) (-9.95002 -41.1803 0) (-10.8814 -36.6349 0) (-11.7938 -32.5172 0) (-9.00165 -33.4062 0) (-9.88328 -29.612 0) (-6.92795 -30.4725 0) (-7.76793 -26.9353 0) (-8.58413 -23.6308 0) (-9.38142 -20.5221 0) (-6.19625 -21.3055 0) (-5.42462 -24.4311 0) (-4.63079 -27.7567 0) (-3.80948 -31.3191 0) (-2.95346 -35.1676 0) (-6.05884 -34.2906 0) (-5.15631 -38.4509 0) (-8.09318 -37.5414 0) (-7.1579 -42.1009 0) (-4.2194 -43.0335 0) (-1.11902 -43.9763 0) (-2.05708 -39.3605 0) (1.21959 -40.279 0) (0.329603 -36.0403 0) (-0.514119 -32.1523 0) (-1.31727 -28.5584 0) (-2.08939 -25.2074 0) (-2.83571 -22.0614 0) (-3.56179 -19.0926 0) (0.0139617 -19.8037 0) (-0.667316 -16.9775 0) (3.13442 -17.6492 0) (2.49517 -14.959 0) (6.53045 -15.5889 0) (5.93067 -13.0326 0) (10.2142 -13.6181 0) (9.64721 -11.2 0) (9.07617 -8.92305 0) (13.6466 -9.4756 -2.24176e-20) (13.088 -7.35106 2.24368e-20) (17.9204 -7.89509 0) (17.3549 -5.9388 0) (22.4432 -6.50793 0) (23.0044 -8.43098 0) (23.536 -10.517 0) (18.4593 -10.002 0) (18.9836 -12.2649 0) (14.1907 -11.7454 0) (14.7313 -14.164 0) (15.2774 -16.7377 0) (10.7847 -16.1827 0) (11.3665 -18.9014 0) (7.13914 -18.2932 0) (7.76313 -21.1569 0) (3.78625 -20.4924 0) (4.45639 -23.5044 0) (0.712325 -22.7927 0) (1.43386 -25.9648 0) (2.18469 -29.3497 0) (5.88025 -30.1289 0) (5.1516 -26.7069 0) (9.08269 -27.4286 0) (8.40865 -24.1951 0) (12.5923 -24.8482 0) (11.9668 -21.7849 0) (16.4194 -22.3784 0) (15.8376 -19.4725 0) (20.5737 -20.0255 0) (20.0306 -17.2712 0) (19.5037 -14.6859 0) (24.5559 -15.1938 0) (24.0488 -12.7704 0) (29.4188 -13.2678 0) (28.9062 -11.033 0) (28.3659 -8.97613 0) (27.7897 -7.08516 0) (27.1784 -5.34009 0) (32.8646 -5.95224 0) (32.2216 -4.39097 0) (38.4286 -5.03169 0) (37.7831 -3.61708 0) (37.1088 -2.3114 0) (43.9846 -2.95716 0) (44.6123 -4.23956 0) (45.215 -5.63253 0) (52.6422 -6.18801 0) (52.0911 -4.81359 0) (51.5187 -3.55101 0) (50.9221 -2.38813 0) (50.3051 -1.31145 0) (49.6695 -0.300994 0) (48.9988 0.636953 0) (48.2963 1.49429 0) (47.5688 2.28274 0) (46.8296 3.02126 0) (46.0739 3.70981 0) (45.2979 4.35056 0) (44.5036 4.94806 0) (43.6932 5.50546 0) (42.8687 6.02412 0) (51.9418 5.2856 0) (52.6995 4.77775 0) (53.4415 4.23298 0) (63.2019 3.58821 0) (62.5304 4.11987 0) (61.8429 4.61549 0) (72.5923 4.01338 0) (73.2125 3.53139 0) (73.812 3.01313 0) (74.3933 2.45677 0) (63.8546 3.01814 0) (54.1673 3.64928 0) (54.8725 3.02317 0) (55.5592 2.35184 0) (56.2382 1.63612 0) (65.7232 1.06445 0) (65.1119 1.75735 0) (64.4887 2.40724 0) (74.9614 1.86525 0) (75.5225 1.24349 0) (76.0546 0.561625 0) (87.2251 0.12106 0) (86.7902 0.802006 0) (86.3021 1.40664 0) (85.7881 1.9664 0) (85.2725 2.50345 0) (84.7392 3.00778 0) (84.1867 3.4753 0) (96.5646 2.99475 0) (97.0579 2.54247 0) (97.5327 2.05886 0) (110.479 1.68594 0) (110.046 2.13369 0) (109.605 2.56429 0) (123.122 2.1807 0) (123.527 1.78471 0) (123.922 1.37972 0) (124.262 0.920111 0) (110.897 1.21559 0) (98.0023 1.55466 0) (98.4518 1.01912 0) (98.8444 0.414206 0) (99.1916 -0.259949 0) (111.83 -0.576166 2.27167e-20) (111.56 0.0762595 -2.27213e-20) (111.26 0.680022 0) (124.534 0.385685 0) (124.766 -0.204248 0) (124.969 -0.822368 0) (125.162 -1.47346 0) (112.081 -1.26328 0) (99.5071 -0.984941 0) (87.6253 -0.628919 0) (76.5457 -0.197911 0) (66.3011 0.300934 0) (56.8986 0.864848 0) (57.5253 0.0166311 0) (58.1168 -0.905933 0) (58.6851 -1.88931 0) (67.8572 -2.39642 0) (67.3574 -1.43972 2.27216e-20) (66.8445 -0.538394 -2.27233e-20) (76.998 -1.02191 0) (77.4357 -1.89505 0) (77.864 -2.83174 0) (78.2694 -3.8504 0) (68.3396 -3.43084 0) (59.2393 -2.94268 0) (59.7706 -4.08657 0) (60.2809 -5.33241 0) (60.773 -6.69191 0) (69.6691 -7.13857 0) (69.2428 -5.79069 0) (68.8006 -4.55874 0) (78.6552 -4.96425 0) (79.0239 -6.1844 0) (79.3766 -7.52294 0) (89.9052 -7.83955 0) (89.6339 -6.50854 0) (89.3468 -5.29968 0) (89.0414 -4.1996 0) (88.716 -3.19481 0) (88.3688 -2.2742 0) (88.0008 -1.42628 0) (99.8153 -1.75072 0) (100.104 -2.57975 0) (100.369 -3.48509 0) (112.706 -3.7025 0) (112.526 -2.81419 0) (112.319 -2.00264 0) (125.325 -2.19065 0) (125.455 -2.98191 0) (125.552 -3.85021 0) (125.62 -4.80673 0) (112.861 -4.67706 0) (100.61 -4.4756 0) (100.83 -5.56322 0) (101.028 -6.75942 0) (101.208 -8.08076 0) (113.172 -8.24356 0) (113.094 -6.933 0) (112.99 -5.75018 0) (125.655 -5.86375 0) (125.662 -7.03216 0) (125.636 -8.32611 0) (125.586 -9.76525 0) (113.231 -9.69573 0) (101.369 -9.5406 0) (90.1618 -9.30438 0) (79.7168 -8.99321 0) (70.0816 -8.61556 0) (61.2487 -8.17836 0) (53.1733 -7.68792 0) (45.7942 -7.15033 0) (39.0462 -6.5701 0) (39.637 -8.24401 0) (33.4812 -7.65293 0) (34.0639 -9.5115 0) (34.6119 -11.5498 0) (40.743 -12.061 0) (40.2007 -10.0665 0) (46.8871 -10.6156 0) (46.3508 -8.8065 0) (53.6864 -9.32813 0) (61.7095 -9.80686 0) (62.158 -11.5945 0) (54.1836 -11.1254 0) (54.6679 -13.0979 0) (47.4049 -12.5942 0) (47.9049 -14.7614 0) (41.2678 -14.2604 0) (35.136 -13.7719 0) (35.6415 -16.1842 0) (29.9205 -15.6892 0) (30.4272 -18.3008 0) (25.0695 -17.7926 0) (25.6011 -20.5694 0) (30.9529 -21.1016 0) (36.6687 -21.6264 0) (36.1454 -18.8022 0) (42.2813 -19.305 0) (41.7741 -16.6762 0) (48.3998 -17.1481 0) (48.8952 -19.7888 0) (49.409 -22.6685 0) (42.7989 -22.1482 0) (43.3528 -25.2065 0) (37.2233 -24.6517 0) (31.5072 -24.0943 0) (26.1593 -23.5309 0) (21.1411 -22.9578 0) (21.7397 -26.0826 0) (17.0299 -25.4701 0) (17.676 -28.7694 0) (13.2501 -28.112 0) (13.9481 -31.6051 0) (9.79361 -30.886 0) (10.5499 -34.6051 0) (6.64976 -33.8072 0) (2.97111 -32.9842 0) (3.79894 -36.9154 0) (4.67638 -41.2048 0) (5.61048 -45.9249 0) (2.15718 -44.9441 0) (3.14017 -50.1282 0) (-0.142417 -49.1144 0) (-3.252 -48.1392 0) (-6.2009 -47.19 0) (-9.00685 -46.2644 0) (-11.6828 -45.3681 0) (-14.2383 -44.5066 0) (-16.6819 -43.6862 0) (-19.0211 -42.915 0) (-21.2623 -42.2033 0) (-23.4091 -41.5631 0) (-25.4616 -41.0066 0) (-24.9538 -47.4485 0) (-24.6802 -55.1645 0) (-24.8615 -64.5596 0) (-22.3215 -64.2131 0) (-22.3854 -55.2652 0) (-22.8051 -47.823 0) (-20.5728 -48.3163 0) (-20.0348 -55.5255 0) (-19.7678 -64.1147 0) (-19.9373 -74.3076 0) (-22.7679 -74.915 0) (-25.6537 -75.9021 0) (-27.1616 -88.972 0) (-29.3744 -103.673 0) (-32.2591 -120.028 0) (-36.913 -123.463 0) (-40.997 -141.678 0) (-45.5319 -160.627 0) (-51.7793 -165.462 0) (-56.8603 -184.568 0) (-61.5159 -202.467 0) (-65.4433 -217.355 0) (-72.5025 -220.222 0) (-79.6314 -222.741 0) (-81.0897 -230.428 0) (-80.8269 -233.767 0) (-79.1099 -232.811 0) (-73.5803 -234.913 0) (-74.7522 -234.433 0) (-74.5043 -229.531 0) (-67.886 -228.192 0) (-68.5655 -234.576 0) (-67.848 -236.438 0) (-65.841 -233.879 0) (-70.9354 -231.074 0) (-75.7355 -227.676 0) (-80.1978 -223.632 0) (-84.2569 -218.815 0) (-87.8437 -213.093 0) (-90.8668 -206.495 0) (-93.3128 -199.105 0) (-95.0261 -190.986 0) (-95.9138 -182.145 0) (-95.9609 -172.631 0) (-95.0748 -162.499 0) (-93.1647 -151.782 0) (-90.1464 -140.55 0) (-85.9375 -128.88 0) (-74.4225 -115.478 0) (-63.1837 -102.217 0) (-52.2827 -89.2249 0) (-57.5734 -100.107 0) (-68.2008 -113.426 0) (-79.0988 -126.915 0) (-82.6289 -137.963 0) (-72.1849 -124.255 0) (-61.8882 -110.717 0) (-51.8664 -97.3801 0) (-47.2548 -87.0849 0) (-41.6167 -76.6431 0) (-31.133 -64.4118 0) (-20.8604 -52.3538 0) (-10.7604 -40.378 0) (-17.3384 -50.0508 0) (-27.1271 -62.1829 0) (-37.1169 -74.4794 0) (-42.1039 -84.3729 0) (-32.4784 -71.7463 0) (-22.9932 -59.4065 0) (-27.7897 -68.4686 0) (-36.9003 -81.0999 0) (-46.1355 -94.0813 0) (-55.58 -107.401 0) (-65.2759 -120.953 0) (-75.1333 -134.698 0) (-85.0804 -148.593 0) (-86.5344 -158.732 0) (-77.1009 -144.725 0) (-67.726 -130.798 0) (-69.2909 -140.23 0) (-78.1708 -154.289 0) (-87.0649 -168.333 0) (-86.7423 -177.374 0) (-78.4031 -163.358 0) (-70.0346 -149.223 0) (-61.7022 -135.151 0) (-60.4793 -126.301 0) (-58.4505 -117.045 0) (-49.3315 -103.503 0) (-40.4409 -90.2301 0) (-31.7274 -77.2917 0) (-34.8515 -85.8616 0) (-43.2042 -99.0652 0) (-51.7599 -112.563 0) (-53.4311 -121.241 0) (-45.26 -107.548 0) (-37.2544 -94.1244 0) (-29.4136 -81.0105 0) (-26.6362 -72.9765 0) (-23.1117 -64.6748 0) (-18.7979 -56.1097 0) (-13.7045 -47.2316 0) (-7.69142 -37.9904 0) (-0.612099 -28.3359 0) (8.72908 -17.0645 0) (16.1676 -8.04823 0) (21.424 -1.96974 0) (17.0638 -6.90112 0) (10.361 -15.2472 0) (1.96549 -25.994 0) (-4.4695 -35.1961 0) (4.5798 -23.2686 0) (11.95 -13.3341 0) (18.0318 -5.61071 0) (21.6292 -1.43464 0) (23.6343 0.575503 0) (24.0121 1.00098 0) (24.0177 0.914961 0) (23.9554 0.672683 0) (23.6259 0.712236 0) (23.617 0.856033 0) (23.3489 0.605013 0) (21.7994 -0.92807 0) (23.0459 0.569741 0) (23.2369 0.660711 0) (22.7181 0.443869 0) (21.9032 -0.5146 0) (18.9315 -4.28942 0) (13.6266 -11.2716 0) (6.94627 -20.5244 0) (-1.18394 -31.8968 0) (-9.96088 -43.9193 0) (-14.6253 -52.342 0) (-6.25019 -40.2102 0) (2.04557 -28.234 0) (-2.55545 -36.0663 0) (-10.5113 -48.137 0) (-18.515 -60.4202 0) (-21.6892 -68.2158 0) (-14.0446 -55.7539 0) (-6.49442 -43.5689 0) (1.02299 -31.6185 0) (5.05136 -24.4675 0) (9.2435 -17.6469 0) (15.2025 -9.16134 0) (19.7029 -3.06109 0) (21.8758 -0.280898 0) (20.2866 -2.06844 0) (16.6619 -7.0684 0) (11.3402 -14.7731 0) (7.71588 -20.8002 0) (13.3214 -11.9719 0) (17.9091 -5.18112 0) (15.1397 -9.2909 0) (10.1114 -17.2768 0) (4.32949 -27.0809 0) (-2.58234 -38.6878 0) (-9.75301 -50.7393 0) (-16.9221 -63.0644 0) (-24.1771 -75.735 0) (-31.5231 -88.7306 0) (-39.0047 -102.042 0) (-46.6367 -115.658 0) (-54.3781 -129.519 0) (-62.181 -143.569 0) (-70.027 -157.74 0) (-77.8716 -171.889 0) (-85.6602 -185.81 0) (-83.8984 -193.654 0) (-76.6375 -179.877 0) (-69.3274 -165.759 0) (-67.9915 -173.266 0) (-74.77 -187.312 0) (-81.5004 -200.843 0) (-78.499 -207.387 0) (-72.3749 -194.181 0) (-66.0904 -180.242 0) (-59.7571 -166.035 0) (-61.1514 -159.029 0) (-61.98 -151.534 0) (-54.65 -137.374 0) (-47.3613 -123.378 0) (-40.1371 -109.598 0) (-40.6856 -116.771 0) (-47.4752 -130.684 0) (-54.3009 -144.79 0) (-53.3904 -151.754 0) (-47.0284 -137.561 0) (-40.6862 -123.542 0) (-40.1802 -129.898 0) (-46.07 -143.999 0) (-51.9659 -158.251 0) (-57.8474 -172.543 0) (-63.672 -186.698 0) (-69.4748 -200.505 0) (-75.0225 -213.328 0) (-71.1624 -218.598 0) (-66.1162 -206.253 0) (-60.8032 -192.641 0) (-57.5577 -198.07 0) (-62.3476 -211.451 0) (-66.9338 -223.173 0) (-62.39 -227.063 0) (-58.2558 -216.144 0) (-53.9668 -203.004 0) (-49.5401 -189.081 0) (-52.689 -184.064 0) (-55.4724 -178.553 0) (-50.0759 -164.277 0) (-44.6495 -149.99 0) (-39.2133 -135.829 0) (-37.8273 -141.327 0) (-42.8125 -155.528 0) (-47.7721 -169.825 0) (-45.1019 -174.895 0) (-40.604 -160.609 0) (-36.0681 -146.389 0) (-31.4966 -132.339 0) (-32.8193 -127.309 0) (-33.7688 -121.864 0) (-34.3012 -116.01 0) (-34.3803 -109.758 0) (-33.9696 -103.117 0) (-33.0308 -96.1021 0) (-26.0479 -82.933 0) (-19.1646 -70.0877 0) (-12.3706 -57.5824 0) (-14.4084 -64.1297 0) (-20.8445 -76.7873 0) (-27.3634 -89.7807 0) (-28.1532 -96.2774 0) (-22.0089 -83.1391 0) (-15.9291 -70.3597 0) (-9.92183 -57.9209 0) (-8.03628 -51.8223 0) (-5.60329 -45.4129 0) (1.1605 -33.5283 0) (7.17588 -22.8097 0) (12.3199 -13.9315 0) (9.69787 -18.8091 0) (4.50028 -28.4593 0) (-1.61221 -39.8455 0) (-3.90462 -45.8622 0) (2.0873 -34.1401 0) (7.35246 -23.7845 0) (5.2732 -28.7803 0) (-0.000172737 -39.72 0) (-5.68892 -51.5419 0) (-11.3183 -63.718 0) (-16.9757 -76.2516 0) (-22.6941 -89.1498 0) (-28.4641 -102.409 0) (-28.3331 -108.165 0) (-22.9371 -94.8049 0) (-17.5901 -81.8078 0) (-17.7996 -87.0245 0) (-22.7818 -100.097 0) (-27.7957 -113.539 0) (-26.8892 -118.524 0) (-22.2644 -105.021 0) (-17.6456 -91.8927 0) (-13.047 -79.1473 0) (-12.84 -74.3315 0) (-12.2781 -69.1917 0) (-7.01311 -56.9312 0) (-1.70361 -45.0649 0) (3.47658 -33.7084 0) (1.96021 -38.5321 0) (-2.99194 -50.0998 0) (-7.92745 -62.0277 0) (-8.47154 -66.8054 0) (-3.88236 -54.8254 0) (0.753679 -43.1968 0) (5.10816 -32.5657 0) (6.4367 -28.2887 0) (8.03219 -23.9189 0) (9.87861 -19.5043 0) (11.9896 -15.1086 0) (14.3026 -10.8499 0) (16.6665 -6.91898 0) (18.878 -3.6578 0) (20.6204 -1.44139 0) (21.7099 -0.278707 0) (22.3715 0.200472 0) (22.8615 0.390892 0) (23.2583 0.448016 0) (23.5896 0.422659 0) (23.8728 0.370121 0) (24.1212 0.308833 0) (24.3446 0.244993 0) (24.5464 0.181138 0) (24.7266 0.117769 0) (24.8881 0.0551477 0) (25.033 -0.00705405 0) (25.1634 -0.0673809 0) (25.2797 -0.12568 0) (25.3828 -0.181117 0) (25.4731 -0.23267 0) (25.5496 -0.279515 0) (25.6109 -0.320524 0) (25.6577 -0.354848 0) (25.6922 -0.38274 0) (25.7169 -0.405064 0) (25.7337 -0.422786 0) (25.7446 -0.436809 0) (25.7517 -0.447771 0) (25.7565 -0.457172 0) (25.7587 -0.465106 0) (25.7579 -0.469929 0) (25.7537 -0.470776 0) (25.7464 -0.466903 0) (25.7361 -0.457792 0) (25.7232 -0.443182 0) (25.7076 -0.423073 0) (25.689 -0.397733 0) (25.6667 -0.367732 0) (25.6393 -0.333896 0) (25.6044 -0.297116 0) (25.5575 -0.258446 0) (25.4881 -0.216726 0) (25.5293 -0.21759 0) (25.568 -0.220344 0) (25.6041 -0.224568 0) (25.6635 -0.265007 0) (25.6301 -0.261046 0) (25.5948 -0.25866 0) (25.6371 -0.296958 0) (25.6687 -0.299006 0) (25.6993 -0.302494 0) (25.7297 -0.306381 0) (25.6956 -0.269582 0) (25.6381 -0.229455 0) (25.6704 -0.233906 0) (25.7018 -0.23697 0) (25.7332 -0.238037 0) (25.7902 -0.276656 0) (25.7584 -0.276134 0) (25.727 -0.273602 0) (25.7604 -0.30958 0) (25.7918 -0.311339 0) (25.8239 -0.311337 0) (25.844 -0.343563 0) (25.8119 -0.343877 0) (25.7808 -0.342877 0) (25.7509 -0.340679 0) (25.7223 -0.337781 0) (25.6945 -0.33505 0) (25.6671 -0.333466 0) (25.6893 -0.367015 0) (25.7126 -0.368018 0) (25.7374 -0.369879 0) (25.747 -0.398256 0) (25.7255 -0.397111 0) (25.7063 -0.396684 0) (25.7196 -0.421784 0) (25.7345 -0.42188 0) (25.7524 -0.422759 0) (25.7737 -0.423988 0) (25.7712 -0.399529 0) (25.764 -0.371793 0) (25.7926 -0.373174 0) (25.8229 -0.373757 0) (25.8544 -0.373549 0) (25.857 -0.401638 0) (25.8268 -0.401253 0) (25.7979 -0.40057 0) (25.7979 -0.425328 0) (25.8247 -0.426699 0) (25.8532 -0.428149 0) (25.8829 -0.429792 0) (25.8881 -0.401866 0) (25.8865 -0.37274 0) (25.8767 -0.342121 0) (25.8568 -0.309705 0) (25.8229 -0.275186 0) (25.7658 -0.23698 0) (25.8002 -0.234158 0) (25.8372 -0.230246 0) (25.8771 -0.225978 0) (25.9315 -0.264077 0) (25.8931 -0.268268 0) (25.8571 -0.27217 0) (25.8907 -0.3069 0) (25.926 -0.303457 0) (25.9632 -0.299786 0) (26.003 -0.296131 0) (25.9726 -0.259972 0) (25.9199 -0.22185 0) (25.9658 -0.218077 0) (26.0146 -0.214652 0) (26.0663 -0.211511 0) (26.114 -0.249006 0) (26.0638 -0.252461 0) (26.0167 -0.256102 0) (26.0458 -0.292577 0) (26.0918 -0.289109 0) (26.141 -0.285695 0) (26.1553 -0.323191 0) (26.1068 -0.326166 0) (26.0616 -0.329029 0) (26.0197 -0.331826 0) (25.9809 -0.334611 0) (25.9446 -0.337355 0) (25.9101 -0.339935 0) (25.9192 -0.371564 0) (25.9529 -0.370236 0) (25.9883 -0.368841 0) (25.9873 -0.402763 0) (25.9526 -0.402379 0) (25.9198 -0.402076 0) (25.9134 -0.431764 0) (25.9453 -0.43412 0) (25.9793 -0.436683 0) (26.016 -0.438898 0) (26.0245 -0.403132 0) (26.0262 -0.367403 0) (26.0673 -0.365874 0) (26.1119 -0.36413 0) (26.1599 -0.36205 0) (26.1569 -0.401378 0) (26.109 -0.402757 0) (26.0649 -0.403281 0) (26.0563 -0.440536 0) (26.1004 -0.441734 0) (26.1491 -0.442279 0) (26.1416 -0.486827 0) (26.0911 -0.4835 0) (26.0448 -0.47932 0) (26.0032 -0.474771 0) (25.9662 -0.470113 0) (25.9325 -0.465558 0) (25.9014 -0.460968 0) (25.8721 -0.456849 0) (25.8442 -0.453375 0) (25.8178 -0.450374 0) (25.7935 -0.447719 0) (25.7723 -0.445392 0) (25.7545 -0.443491 0) (25.7405 -0.442235 0) (25.7301 -0.441977 0) (25.7381 -0.457216 0) (25.7439 -0.458296 0) (25.7537 -0.460658 0) (25.7506 -0.474486 0) (25.745 -0.470275 0) (25.7437 -0.467639 0) (25.7469 -0.473525 0) (25.7439 -0.478438 0) (25.7453 -0.485184 0) (25.7514 -0.493369 0) (25.7606 -0.479921 0) (25.7677 -0.463971 0) (25.7856 -0.467971 0) (25.8069 -0.472501 0) (25.8309 -0.477555 0) (25.8143 -0.500713 0) (25.7931 -0.493203 0) (25.7749 -0.48624 0) (25.762 -0.502569 0) (25.7768 -0.512401 0) (25.7953 -0.522337 0) (25.7759 -0.544294 0) (25.759 -0.529782 0) (25.7476 -0.516923 0) (25.7406 -0.504395 0) (25.7383 -0.492947 0) (25.7406 -0.483104 0) (25.7474 -0.475306 0) (25.7453 -0.473565 0) (25.7354 -0.484694 0) (25.7297 -0.498046 0) (25.7202 -0.500945 0) (25.7286 -0.483764 0) (25.7408 -0.468997 0) (25.7347 -0.46294 0) (25.7207 -0.481325 0) (25.7103 -0.501972 0) (25.704 -0.524621 0) (25.7164 -0.519873 0) (25.7286 -0.513151 0) (25.7323 -0.529269 0) (25.7415 -0.546673 0) (25.7572 -0.568244 0) (25.7396 -0.593172 0) (25.7246 -0.563867 0) (25.7175 -0.540178 0) (25.7029 -0.550338 0) (25.7083 -0.581358 0) (25.722 -0.618058 0) (25.743 -0.657463 0) (25.7624 -0.625962 0) (25.781 -0.594235 0) (25.7995 -0.563262 0) (25.8185 -0.534295 0) (25.8383 -0.508488 0) (25.8569 -0.483269 0) (25.885 -0.489419 0) (25.9158 -0.496572 0) (25.9506 -0.504744 0) (25.9359 -0.543339 0) (25.8987 -0.530084 0) (25.866 -0.518093 0) (25.8477 -0.550073 0) (25.8821 -0.567562 0) (25.9204 -0.584561 0) (25.962 -0.600026 0) (25.977 -0.555898 0) (25.9902 -0.513534 0) (26.0338 -0.521891 0) (26.0814 -0.528799 0) (26.1327 -0.533928 0) (26.1217 -0.582957 0) (26.0698 -0.575924 0) (26.0215 -0.566851 0) (26.007 -0.613608 0) (26.0558 -0.625075 0) (26.1083 -0.634159 0) (26.0927 -0.687474 0) (26.0396 -0.676284 0) (25.9903 -0.662316 0) (25.9448 -0.645908 0) (25.903 -0.627377 0) (25.8646 -0.606961 0) (25.8297 -0.585085 0) (25.811 -0.621561 0) (25.8454 -0.647677 0) (25.8835 -0.671724 0) (25.862 -0.7174 0) (25.8244 -0.689361 0) (25.7911 -0.658721 0) (25.7699 -0.695895 0) (25.8018 -0.731554 0) (25.8386 -0.764093 0) (25.8801 -0.793443 0) (25.9038 -0.742779 0) (25.9254 -0.693539 0) (25.9712 -0.712904 0) (26.0211 -0.729465 0) (26.0748 -0.742852 0) (26.0546 -0.800303 0) (26.0003 -0.784588 0) (25.9499 -0.76529 0) (25.9264 -0.819398 0) (25.9773 -0.841655 0) (26.0323 -0.859882 0) (26.091 -0.873782 0) (26.1125 -0.812118 0) (26.132 -0.752751 0) (26.1493 -0.695593 0) (26.1644 -0.640593 0) (26.1772 -0.587748 0) (26.1877 -0.537114 0) (26.1959 -0.488578 0) (26.2023 -0.441996 0) (26.2082 -0.399391 0) (26.2114 -0.359411 0) (26.2069 -0.320052 0) (26.1931 -0.282293 0) (26.1669 -0.245716 0) (26.1206 -0.208646 0) (26.1771 -0.206128 0) (26.2356 -0.204154 0) (26.2956 -0.202695 0) (26.3386 -0.236987 0) (26.2795 -0.239653 0) (26.2222 -0.242588 0) (26.2477 -0.278836 0) (26.3046 -0.2753 0) (26.3634 -0.271738 0) (26.4239 -0.268296 0) (26.3992 -0.234416 0) (26.3565 -0.200582 0) (26.4189 -0.198557 0) (26.4831 -0.19725 0) (26.5487 -0.197068 0) (26.5873 -0.228879 0) (26.5237 -0.229906 0) (26.4609 -0.2319 0) (26.4854 -0.265114 0) (26.5477 -0.262477 0) (26.6104 -0.260574 0) (26.6249 -0.293811 0) (26.5623 -0.296897 0) (26.4998 -0.300622 0) (26.4379 -0.304739 0) (26.3772 -0.308916 0) (26.3182 -0.312931 0) (26.2613 -0.316651 0) (26.2659 -0.355894 0) (26.3233 -0.351816 0) (26.3829 -0.347345 0) (26.3829 -0.388839 0) (26.3218 -0.393142 0) (26.2632 -0.396672 0) (26.259 -0.44089 0) (26.3188 -0.438539 0) (26.381 -0.434824 0) (26.4447 -0.429845 0) (26.4458 -0.383871 0) (26.4444 -0.342571 0) (26.5071 -0.337665 0) (26.5706 -0.332816 0) (26.634 -0.328218 0) (26.6383 -0.366203 0) (26.5742 -0.372428 0) (26.5099 -0.378371 0) (26.5093 -0.423706 0) (26.5739 -0.416605 0) (26.6381 -0.408887 0) (26.7014 -0.401004 0) (26.7014 -0.360084 0) (26.6966 -0.324038 0) (26.6873 -0.291322 0) (26.6732 -0.259343 0) (26.6513 -0.228769 0) (26.6147 -0.197914 0) (26.6807 -0.199258 0) (26.7463 -0.200725 0) (26.8117 -0.202054 0) (26.8415 -0.230277 0) (26.7787 -0.229676 0) (26.7152 -0.229148 0) (26.7358 -0.258544 0) (26.7977 -0.257997 0) (26.8585 -0.257724 0) (26.9177 -0.257724 0) (26.9029 -0.231055 0) (26.8761 -0.203414 0) (26.9389 -0.204952 0) (26.9995 -0.206495 0) (27.0576 -0.207961 0) (27.0748 -0.233523 0) (27.0199 -0.232801 0) (26.9626 -0.231938 0) (26.9749 -0.25788 0) (27.0298 -0.258028 0) (27.0822 -0.257998 0) (27.0847 -0.282542 0) (27.0343 -0.28346 0) (26.9814 -0.284207 0) (26.9262 -0.284999 0) (26.8688 -0.286042 0) (26.8096 -0.287476 0) (26.7489 -0.289259 0) (26.7579 -0.320391 0) (26.8176 -0.317333 0) (26.8756 -0.314855 0) (26.8802 -0.345587 0) (26.8227 -0.349663 0) (26.763 -0.35448 0) (26.7631 -0.393406 0) (26.8227 -0.386385 0) (26.8798 -0.380009 0) (26.934 -0.374254 0) (26.9351 -0.342073 0) (26.9315 -0.312867 0) (26.9851 -0.311197 0) (27.0361 -0.30961 0) (27.0847 -0.307839 0) (27.0836 -0.33302 0) (27.0367 -0.336027 0) (26.9872 -0.338958 0) (26.9854 -0.369043 0) (27.0341 -0.364206 0) (27.0803 -0.359497 0) (27.0746 -0.388482 0) (27.0285 -0.395147 0) (26.98 -0.402047 0) (26.9287 -0.409429 0) (26.8746 -0.41743 0) (26.8178 -0.42606 0) (26.7584 -0.435226 0) (26.697 -0.444716 0) (26.634 -0.454176 0) (26.5699 -0.463163 0) (26.5053 -0.471229 0) (26.4407 -0.47801 0) (26.3767 -0.483257 0) (26.3141 -0.486813 0) (26.2536 -0.488592 0) (26.2459 -0.538238 0) (26.3068 -0.537188 0) (26.3697 -0.533943 0) (26.3602 -0.587005 0) (26.2971 -0.589854 0) (26.2359 -0.590095 0) (26.2235 -0.644165 0) (26.285 -0.644748 0) (26.3482 -0.642343 0) (26.4123 -0.637084 0) (26.4243 -0.581655 0) (26.4338 -0.528591 0) (26.4984 -0.521326 0) (26.5628 -0.512437 0) (26.6266 -0.502306 0) (26.6165 -0.553308 0) (26.553 -0.564449 0) (26.4887 -0.57403 0) (26.4767 -0.629218 0) (26.5408 -0.619083 0) (26.6043 -0.607079 0) (26.5905 -0.663636 0) (26.5269 -0.67637 0) (26.4627 -0.686934 0) (26.3983 -0.694928 0) (26.3341 -0.700002 0) (26.2707 -0.70189 0) (26.2089 -0.700431 0) (26.1921 -0.758955 0) (26.2543 -0.761391 0) (26.3181 -0.760123 0) (26.3005 -0.822857 0) (26.2362 -0.823382 0) (26.1733 -0.81983 0) (26.1527 -0.883169 0) (26.2165 -0.888006 0) (26.2818 -0.888392 0) (26.348 -0.884552 0) (26.3656 -0.818463 0) (26.3825 -0.755333 0) (26.4473 -0.747308 0) (26.5118 -0.736408 0) (26.5759 -0.723035 0) (26.5614 -0.785406 0) (26.4963 -0.79935 0) (26.431 -0.810504 0) (26.4146 -0.876797 0) (26.4813 -0.865495 0) (26.5479 -0.85104 0) (26.6143 -0.833822 0) (26.626 -0.769071 0) (26.6393 -0.707602 0) (26.6531 -0.649156 0) (26.6666 -0.593639 0) (26.6789 -0.541044 0) (26.6892 -0.491376 0) (26.7503 -0.48009 0) (26.8094 -0.468847 0) (26.8662 -0.457944 0) (26.8557 -0.501774 0) (26.7988 -0.514903 0) (26.7398 -0.528105 0) (26.7276 -0.579202 0) (26.7869 -0.564175 0) (26.8443 -0.548903 0) (26.8995 -0.533634 0) (26.9103 -0.488943 0) (26.9204 -0.447558 0) (26.9719 -0.437735 0) (27.0209 -0.42839 0) (27.0674 -0.419321 0) (27.0594 -0.452595 0) (27.0121 -0.464428 0) (26.9624 -0.476503 0) (26.9526 -0.518505 0) (27.0033 -0.503552 0) (27.0517 -0.488736 0) (27.0457 -0.527943 0) (26.9957 -0.545869 0) (26.9436 -0.563767 0) (26.8892 -0.5816 0) (26.8329 -0.599273 0) (26.7746 -0.61661 0) (26.7146 -0.63335 0) (26.7017 -0.69051 0) (26.7628 -0.672128 0) (26.8225 -0.652778 0) (26.8145 -0.709363 0) (26.7528 -0.730718 0) (26.6899 -0.750725 0) (26.6803 -0.814211 0) (26.7456 -0.792557 0) (26.81 -0.769192 0) (26.8731 -0.744446 0) (26.8746 -0.686949 0) (26.8805 -0.632729 0) (26.9366 -0.612194 0) (26.9907 -0.59133 0) (27.0426 -0.570258 0) (27.0442 -0.615867 0) (26.9897 -0.639966 0) (26.9331 -0.663736 0) (26.9347 -0.718654 0) (26.9946 -0.692158 0) (27.0527 -0.665301 0) (27.1089 -0.638423 0) (27.0968 -0.591665 0) (27.0923 -0.549078 0) (27.0934 -0.509978 0) (27.0979 -0.473952 0) (27.1043 -0.440809 0) (27.1115 -0.410247 0) (27.1185 -0.381722 0) (27.1243 -0.354634 0) (27.1283 -0.329662 0) (27.131 -0.305605 0) (27.1327 -0.281258 0) (27.1322 -0.257635 0) (27.1272 -0.233981 0) (27.113 -0.209257 0) (27.1658 -0.210273 0) (27.216 -0.210894 0) (27.2639 -0.211002 0) (27.2696 -0.232491 0) (27.2244 -0.233595 0) (27.177 -0.234049 0) (27.1798 -0.256796 0) (27.2251 -0.255334 0) (27.2684 -0.253101 0) (27.3097 -0.249968 0) (27.3127 -0.230623 0) (27.3094 -0.210484 0) (27.3528 -0.209244 0) (27.3938 -0.207204 0) (27.4323 -0.20431 0) (27.429 -0.219563 0) (27.3925 -0.22423 0) (27.3537 -0.227896 0) (27.3491 -0.245833 0) (27.3864 -0.240612 0) (27.4214 -0.234234 0) (27.4125 -0.248842 0) (27.3784 -0.25689 0) (27.3423 -0.263638 0) (27.3041 -0.269166 0) (27.2641 -0.273561 0) (27.2223 -0.276937 0) (27.1785 -0.279444 0) (27.1753 -0.302683 0) (27.2177 -0.299 0) (27.2584 -0.294372 0) (27.2523 -0.315063 0) (27.2125 -0.320896 0) (27.1712 -0.325697 0) (27.1665 -0.349309 0) (27.2071 -0.343123 0) (27.2462 -0.335858 0) (27.2837 -0.32736 0) (27.2904 -0.308041 0) (27.2974 -0.288633 0) (27.3346 -0.281659 0) (27.3699 -0.27336 0) (27.4032 -0.263655 0) (27.3942 -0.278792 0) (27.3616 -0.289998 0) (27.3269 -0.299713 0) (27.3196 -0.317501 0) (27.3538 -0.306195 0) (27.3858 -0.293412 0) (27.4156 -0.279146 0) (27.4245 -0.265925 0) (27.4341 -0.252459 0) (27.444 -0.23943 0) (27.4539 -0.226651 0) (27.4628 -0.213858 0) (27.4682 -0.200535 0) (27.5009 -0.195904 0) (27.5301 -0.190484 0) (27.5552 -0.184322 0) (27.5441 -0.190768 0) (27.5208 -0.199413 0) (27.4935 -0.207124 0) (27.4834 -0.217858 0) (27.5096 -0.207898 0) (27.5319 -0.196819 0) (27.5502 -0.184635 0) (27.5631 -0.181193 0) (27.5758 -0.177414 0) (27.5915 -0.1697 0) (27.6025 -0.161053 1.62927e-22) (27.609 -0.151203 -3.25439e-22) (27.5935 -0.145949 0) (27.5876 -0.158952 0) (27.5775 -0.170626 0) (27.5643 -0.171309 0) (27.5742 -0.156768 0) (27.5804 -0.140943 0) (27.5697 -0.137247 0) (27.5628 -0.155575 0) (27.5524 -0.172701 0) (27.5383 -0.188555 0) (27.5202 -0.203161 0) (27.4983 -0.216532 0) (27.4728 -0.228643 0) (27.4623 -0.239769 0) (27.4874 -0.225667 0) (27.5092 -0.210233 0) (27.4992 -0.218417 0) (27.4773 -0.235622 0) (27.4524 -0.251489 0) (27.4432 -0.263413 0) (27.4681 -0.246288 0) (27.49 -0.227843 0) (27.5087 -0.20807 0) (27.5177 -0.199919 0) (27.5275 -0.193503 0) (27.5421 -0.175477 0) (27.5531 -0.156176 0) (27.561 -0.135764 0) (27.5531 -0.137086 0) (27.5444 -0.15911 0) (27.5327 -0.180127 0) (27.524 -0.186921 0) (27.5361 -0.164569 0) (27.5452 -0.141189 0) (27.5373 -0.147966 0) (27.5278 -0.171861 0) (27.5157 -0.194989 0) (27.5004 -0.217058 0) (27.482 -0.237886 0) (27.4601 -0.257491 0) (27.4352 -0.275797 0) (27.4076 -0.292751 0) (27.3777 -0.308386 0) (27.3458 -0.322759 0) (27.3121 -0.335728 0) (27.2766 -0.347276 0) (27.2394 -0.357492 0) (27.2007 -0.366508 0) (27.1605 -0.374506 0) (27.1537 -0.400843 0) (27.1941 -0.390799 0) (27.2328 -0.379863 0) (27.2271 -0.403196 0) (27.1881 -0.416359 0) (27.1472 -0.428818 0) (27.1418 -0.459044 0) (27.1837 -0.443832 0) (27.2235 -0.428148 0) (27.2614 -0.411874 0) (27.2644 -0.389156 0) (27.2698 -0.367848 0) (27.3051 -0.354629 0) (27.3388 -0.340147 0) (27.3706 -0.324412 0) (27.3656 -0.341043 0) (27.3336 -0.358092 0) (27.2998 -0.374132 0) (27.2975 -0.39495 0) (27.3319 -0.377357 0) (27.3646 -0.359096 0) (27.3703 -0.379849 0) (27.3359 -0.399067 0) (27.3 -0.418054 0) (27.2625 -0.436826 0) (27.2233 -0.455389 0) (27.1821 -0.47375 0) (27.1388 -0.491931 0) (27.1399 -0.527887 0) (27.1853 -0.50678 0) (27.2287 -0.485851 0) (27.2423 -0.52069 0) (27.1957 -0.543868 0) (27.1472 -0.567591 0) (27.1631 -0.61185 0) (27.2155 -0.585876 0) (27.2659 -0.560734 0) (27.3143 -0.536555 0) (27.2871 -0.49819 0) (27.2702 -0.465173 0) (27.3101 -0.444782 0) (27.3486 -0.424667 0) (27.3857 -0.404764 0) (27.4121 -0.434707 0) (27.3719 -0.4553 0) (27.3303 -0.476412 0) (27.3608 -0.513351 0) (27.4054 -0.491007 0) (27.448 -0.469305 0) (27.4886 -0.447951 0) (27.4508 -0.414409 0) (27.4215 -0.384958 0) (27.4033 -0.360366 0) (27.3956 -0.340167 0) (27.3957 -0.323003 0) (27.4005 -0.307476 0) (27.4281 -0.289323 0) (27.453 -0.269911 0) (27.475 -0.249269 0) (27.4721 -0.262801 0) (27.4492 -0.283882 0) (27.4237 -0.303959 0) (27.4248 -0.320554 0) (27.4519 -0.300232 0) (27.4768 -0.279189 0) (27.4995 -0.257445 0) (27.4922 -0.240839 0) (27.4938 -0.227563 0) (27.5096 -0.204968 0) (27.5226 -0.181508 0) (27.5336 -0.157463 0) (27.5385 -0.170926 0) (27.525 -0.194826 0) (27.5097 -0.218151 0) (27.5199 -0.235024 0) (27.5383 -0.211914 0) (27.5546 -0.188076 0) (27.5818 -0.208613 0) (27.5631 -0.232779 0) (27.5419 -0.255932 0) (27.5183 -0.278155 0) (27.4924 -0.299576 0) (27.4645 -0.320333 0) (27.4347 -0.340557 0) (27.456 -0.365085 0) (27.4887 -0.344936 0) (27.5195 -0.324262 0) (27.5553 -0.352352 0) (27.5227 -0.373555 0) (27.4878 -0.39413 0) (27.5268 -0.426615 0) (27.5625 -0.404945 0) (27.5954 -0.382589 0) (27.6253 -0.359205 0) (27.585 -0.330195 0) (27.5481 -0.302796 0) (27.5739 -0.280293 0) (27.5969 -0.256565 0) (27.6169 -0.231527 0) (27.6555 -0.255607 0) (27.6353 -0.281963 0) (27.6118 -0.3068 0) (27.6519 -0.334491 0) (27.6752 -0.308222 0) (27.6952 -0.280304 0) (27.7118 -0.250803 0) (27.6724 -0.227807 0) (27.634 -0.205234 0) (27.5981 -0.183452 0) (27.5689 -0.163522 0) (27.5503 -0.14654 0) (27.5431 -0.133084 0) (27.545 -0.123682 0) (27.5519 -0.117527 0) (27.5593 -0.114696 -1.59046e-22) (27.5662 -0.114786 0) (27.5736 -0.118045 0) (27.5828 -0.123883 1.30699e-21) (27.5952 -0.13143 -1.30995e-21) (27.6113 -0.139755 -2.43582e-21) (27.6091 -0.126846 1.03484e-20) (27.6047 -0.111951 0) (27.602 -0.0932814 -1.61326e-19) (27.5927 -0.0801994 1.40749e-19) (27.5921 -0.0987204 0) (27.5936 -0.115878 -1.04114e-20) (27.5831 -0.105908 4.53119e-21) (27.5839 -0.0876087 1.84425e-20) (27.5863 -0.0698759 2.47615e-21) (27.5896 -0.0526989 0) (27.5952 -0.0614795 9.85809e-21) (27.602 -0.072034 -3.16791e-19) (27.6033 -0.0508225 -6.47908e-19) (27.5987 -0.0426295 -1.31244e-18) (27.5942 -0.0349976 6.30385e-19) (27.5894 -0.029585 9.33968e-21) (27.5848 -0.0455337 9.5691e-21) (27.581 -0.0623115 0) (27.5781 -0.0795685 -2.00331e-20) (27.5758 -0.098443 -5.12246e-21) (27.5698 -0.0941153 0) (27.5729 -0.0747968 0) (27.576 -0.0572145 -9.57283e-21) (27.5707 -0.0546757 1.06805e-20) (27.5672 -0.0729166 0) (27.5638 -0.0929776 1.56312e-22) (27.557 -0.0949298 0) (27.5612 -0.0738881 0) (27.5654 -0.0547494 1.20102e-21) (27.5694 -0.0384994 -1.16185e-21) (27.5746 -0.0385451 -1.13995e-21) (27.58 -0.0407101 4.65206e-21) (27.5835 -0.0270658 -4.33444e-21) (27.5772 -0.0262294 0) (27.572 -0.0263748 -1.12496e-21) (27.5702 -0.0278982 6.05505e-22) (27.567 -0.0407466 4.53619e-22) (27.5625 -0.0578054 -1.07906e-21) (27.5572 -0.0778335 0) (27.5514 -0.099943 0) (27.5515 -0.10895 0) (27.559 -0.0859063 0) (27.5656 -0.0646589 0) (27.5784 -0.0753685 0) (27.5702 -0.0980197 0) (27.5609 -0.12202 0) (27.5814 -0.138472 0) (27.5924 -0.113444 0) (27.602 -0.0892652 0) (27.6103 -0.067164 0) (27.5855 -0.0552297 0) (27.5712 -0.0462119 0) (27.5756 -0.031933 1.5853e-21) (27.5913 -0.0390441 -1.29642e-21) (27.617 -0.0486179 0) (27.6489 -0.0596114 0) (27.6423 -0.0809098 0) (27.6338 -0.105258 0) (27.6237 -0.131177 0) (27.6119 -0.157492 0) (27.6482 -0.177909 0) (27.6598 -0.14997 0) (27.6694 -0.12209 0) (27.7061 -0.139042 0) (27.6974 -0.169012 0) (27.6863 -0.198805 0) (27.7252 -0.21996 0) (27.7357 -0.188178 0) (27.7436 -0.156031 0) (27.7494 -0.12439 0) (27.7128 -0.109856 0) (27.6771 -0.0953379 0) (27.683 -0.0711428 0) (27.7176 -0.0827944 0) (27.7532 -0.0945021 0) (27.7907 -0.106314 0) (27.7876 -0.139057 0) (27.7826 -0.17323 0) (27.7752 -0.207664 0) (27.7651 -0.241557 0) (27.7521 -0.274359 -1.65492e-22) (27.7358 -0.305677 1.65625e-22) (27.7161 -0.335283 0) (27.6932 -0.363141 0) (27.667 -0.389383 0) (27.6376 -0.414275 0) (27.6051 -0.438156 0) (27.5695 -0.461392 0) (27.5311 -0.484345 0) (27.49 -0.507362 0) (27.4462 -0.530769 0) (27.3997 -0.554858 0) (27.3507 -0.579856 0) (27.299 -0.605903 0) (27.245 -0.633018 0) (27.1886 -0.661096 0) (27.1301 -0.689921 0) (27.0695 -0.719186 0) (27.0071 -0.748519 0) (26.943 -0.777508 0) (26.8774 -0.805716 0) (26.8105 -0.832703 0) (26.7427 -0.85805 0) (26.6742 -0.881359 0) (26.6054 -0.902251 0) (26.5364 -0.920341 0) (26.4675 -0.935244 0) (26.3988 -0.946571 0) (26.3304 -0.953947 0) (26.2626 -0.957022 0) (26.1958 -0.955501 0) (26.1306 -0.949163 0) (26.0677 -0.937889 0) (26.0079 -0.921687 0) (25.9521 -0.900692 0) (25.9008 -0.875143 0) (25.8544 -0.84532 0) (25.8132 -0.811486 0) (25.7774 -0.773877 0) (25.747 -0.732681 0) (25.7219 -0.688275 0) (25.7026 -0.642267 0) (25.6902 -0.598366 0) (25.6858 -0.56037 0) (25.6887 -0.528774 0) (25.6973 -0.501568 0) (25.71 -0.477196 0) (25.7258 -0.455499 0) (25.7117 -0.445766 0) (25.693 -0.4712 0) (25.6779 -0.499583 0) (25.651 -0.49593 0) (25.6683 -0.462775 0) (25.6903 -0.432939 0) (25.6607 -0.416559 0) (25.6354 -0.452034 0) (25.6161 -0.491165 0) (25.6036 -0.53609 0) (25.6395 -0.53396 0) (25.6676 -0.531765 0) (25.6638 -0.569679 0) (25.6677 -0.614928 0) (25.6793 -0.665968 0) (25.6504 -0.68966 0) (25.639 -0.631609 0) (25.6353 -0.578897 0) (25.5991 -0.588692 0) (25.603 -0.649014 0) (25.6146 -0.714041 0) (25.5705 -0.739933 0) (25.5581 -0.667815 0) (25.5536 -0.599619 0) (25.5581 -0.53866 0) (25.5714 -0.485592 0) (25.5927 -0.438848 0) (25.6212 -0.396041 0) (25.5691 -0.370912 0) (25.5373 -0.423076 0) (25.5143 -0.479341 0) (25.4428 -0.472531 0) (25.4669 -0.40496 0) (25.5021 -0.341355 0) (25.4199 -0.308347 0) (25.3818 -0.385189 0) (25.357 -0.465494 0) (25.3446 -0.551319 0) (25.4295 -0.546108 0) (25.5007 -0.541958 0) (25.4967 -0.612137 0) (25.5022 -0.68869 0) (25.5161 -0.768238 0) (25.45 -0.799817 0) (25.4339 -0.712214 0) (25.4267 -0.62656 0) (25.3436 -0.643119 0) (25.3532 -0.738742 0) (25.3722 -0.835225 0) (25.3997 -0.929846 0) (25.4739 -0.886398 0) (25.5372 -0.847404 0) (25.5897 -0.812155 0) (25.6328 -0.779605 0) (25.6682 -0.748701 0) (25.6975 -0.718517 0) (25.7213 -0.769093 0) (25.7507 -0.816232 0) (25.7858 -0.859422 0) (25.7555 -0.90807 0) (25.7207 -0.85893 0) (25.6917 -0.805583 0) (25.6567 -0.842906 0) (25.6862 -0.902621 0) (25.7216 -0.957937 0) (25.7631 -1.00812 0) (25.7963 -0.952429 0) (25.8266 -0.898285 0) (25.873 -0.932488 0) (25.9249 -0.961759 0) (25.9817 -0.985877 0) (25.9538 -1.0527 0) (25.8958 -1.02501 0) (25.8431 -0.991521 0) (25.8108 -1.05252 0) (25.8647 -1.09072 0) (25.9244 -1.1225 0) (25.8934 -1.19568 0) (25.8313 -1.1593 0) (25.7755 -1.11597 0) (25.726 -1.06597 0) (25.6829 -1.0098 0) (25.646 -0.948191 0) (25.6149 -0.882003 0) (25.5647 -0.923975 0) (25.5984 -0.996721 0) (25.6381 -1.06464 0) (25.586 -1.12358 0) (25.5422 -1.04936 0) (25.5048 -0.969973 0) (25.4348 -1.02083 0) (25.477 -1.10705 0) (25.5258 -1.18766 0) (25.5812 -1.2619 0) (25.636 -1.19178 0) (25.684 -1.12684 0) (25.7364 -1.18259 0) (25.7953 -1.23131 0) (25.8606 -1.27268 0) (25.8254 -1.35406 0) (25.7557 -1.30748 0) (25.6926 -1.25328 0) (25.6432 -1.32911 0) (25.7119 -1.38884 0) (25.787 -1.44062 0) (25.7448 -1.5332 0) (25.6632 -1.47644 0) (25.588 -1.41126 0) (25.5194 -1.33827 0) (25.4578 -1.25775 0) (25.4031 -1.17033 0) (25.3555 -1.0768 0) (25.3154 -0.977908 0) (25.2837 -0.874578 0) (25.2611 -0.768418 0) (25.2485 -0.662002 0) (25.2474 -0.558074 0) (25.2588 -0.458919 0) (25.2839 -0.364517 0) (25.3245 -0.2728 0) (25.217 -0.235282 0) (25.1744 -0.343589 0) (25.1492 -0.453451 0) (25.0279 -0.449179 0) (25.0529 -0.322745 0) (25.0971 -0.196338 0) (24.9639 -0.156184 0) (24.9186 -0.301994 0) (24.8941 -0.44629 0) (24.8881 -0.591216 0) (25.0196 -0.577662 0) (25.1391 -0.566775 0) (25.1427 -0.683429 0) (25.1586 -0.801324 0) (25.1854 -0.917953 0) (25.0774 -0.965661 0) (25.046 -0.837959 0) (25.0263 -0.707881 0) (24.8984 -0.736058 0) (24.9228 -0.879257 0) (24.9597 -1.01856 0) (24.8318 -1.0777 0) (24.7885 -0.92595 0) (24.7584 -0.768786 0) (24.7435 -0.608254 0) (24.7467 -0.445995 0) (24.7702 -0.282488 0) (24.8165 -0.115889 0) (24.6531 -0.077 0) (24.6069 -0.265653 0) (24.5853 -0.449796 0) (24.4088 -0.458076 0) (24.4275 -0.252213 0) (24.4729 -0.0394841 0) (24.2727 -0.00373072 0) (24.2305 -0.241802 0) (24.2171 -0.469792 0) (24.2294 -0.688546 0) (24.4143 -0.657576 0) (24.5856 -0.630198 0) (24.6058 -0.80685 0) (24.6426 -0.978344 0) (24.6933 -1.14338 0) (24.544 -1.21537 0) (24.4852 -1.03686 0) (24.4412 -0.850625 0) (24.2641 -0.899417 0) (24.3165 -1.10171 0) (24.3842 -1.29439 0) (24.4671 -1.47663 0) (24.6167 -1.38473 0) (24.7563 -1.30048 0) (24.8869 -1.2229 0) (25.008 -1.15239 0) (25.1197 -1.08865 0) (25.2221 -1.0307 0) (25.2675 -1.13828 0) (25.321 -1.23983 0) (25.3823 -1.33456 0) (25.2999 -1.41844 0) (25.2313 -1.3162 0) (25.1712 -1.20585 0) (25.0662 -1.27972 0) (25.134 -1.39912 0) (25.211 -1.50909 0) (25.2956 -1.61009 0) (25.3763 -1.51214 0) (25.451 -1.42154 0) (25.5268 -1.50057 0) (25.6096 -1.57103 0) (25.6983 -1.63319 0) (25.647 -1.7413 0) (25.5507 -1.6737 0) (25.4601 -1.59742 0) (25.3877 -1.70178 0) (25.4867 -1.78458 0) (25.5931 -1.85592 0) (25.5368 -1.976 0) (25.4185 -1.90198 0) (25.3096 -1.81414 0) (25.209 -1.71559 0) (25.1155 -1.60697 0) (25.0294 -1.48837 0) (24.9526 -1.36044 0) (24.8313 -1.44778 0) (24.9174 -1.58435 0) (25.0128 -1.71291 0) (24.9019 -1.82796 0) (24.7972 -1.6901 0) (24.7025 -1.54266 0) (24.5634 -1.64726 0) (24.6684 -1.80736 0) (24.7849 -1.95289 0) (24.9133 -2.08446 0) (25.017 -1.95241 0) (25.1162 -1.82968 0) (25.2269 -1.93474 0) (25.3478 -2.02568 0) (25.4781 -2.10266 0) (25.416 -2.23817 0) (25.2749 -2.15723 0) (25.1409 -2.06278 0) (25.0512 -2.19937 0) (25.1981 -2.2982 0) (25.35 -2.38439 0) (25.5058 -2.45703 0) (25.5608 -2.3072 0) (25.6132 -2.16745 0) (25.662 -2.03696 0) (25.7075 -1.91407 0) (25.7506 -1.79754 0) (25.7929 -1.68669 0) (25.8325 -1.58203 0) (25.8685 -1.48437 0) (25.9013 -1.39281 0) (25.932 -1.30658 0) (25.9612 -1.22509 0) (25.9893 -1.14786 0) (26.0166 -1.07453 0) (26.0428 -1.00469 0) (26.1073 -1.01813 0) (26.1744 -1.02625 0) (26.2433 -1.02918 0) (26.2245 -1.10539 0) (26.1528 -1.10077 0) (26.0832 -1.09053 0) (26.0586 -1.16686 0) (26.1314 -1.17959 0) (26.2067 -1.18619 0) (26.2839 -1.18683 0) (26.2978 -1.10454 0) (26.3135 -1.0271 0) (26.3845 -1.02029 0) (26.456 -1.00907 0) (26.528 -0.993809 0) (26.5233 -1.07201 0) (26.4474 -1.08752 0) (26.3722 -1.09848 0) (26.3625 -1.18173 0) (26.4423 -1.17115 0) (26.5229 -1.15543 0) (26.5263 -1.2443 0) (26.4404 -1.26027 0) (26.3555 -1.27046 0) (26.2719 -1.27448 0) (26.19 -1.2721 0) (26.1104 -1.26317 0) (26.0338 -1.24755 0) (26.0086 -1.33297 0) (26.0898 -1.35192 0) (26.1744 -1.36353 0) (26.1594 -1.46058 0) (26.0692 -1.44618 0) (25.9829 -1.42353 0) (25.9557 -1.51973 0) (26.048 -1.54611 0) (26.1447 -1.56302 0) (26.2444 -1.5708 0) (26.2526 -1.46661 0) (26.2616 -1.3678 0) (26.3508 -1.3648 0) (26.4414 -1.35489 0) (26.5329 -1.33848 0) (26.542 -1.4376 0) (26.4446 -1.45481 0) (26.3479 -1.46463 0) (26.3462 -1.56965 0) (26.4494 -1.55954 0) (26.5531 -1.54128 0) (26.6568 -1.51574 0) (26.6398 -1.41375 0) (26.6251 -1.31606 0) (26.6129 -1.22301 0) (26.6042 -1.13501 0) (26.5998 -1.05233 0) (26.6003 -0.974892 0) (26.6728 -0.952744 0) (26.7452 -0.927805 0) (26.8174 -0.900532 0) (26.8309 -0.973193 0) (26.7539 -1.0024 0) (26.6768 -1.02896 0) (26.6862 -1.11037 0) (26.7684 -1.0821 0) (26.8505 -1.05081 0) (26.9319 -1.01713 0) (26.9073 -0.94188 0) (26.8888 -0.871393 0) (26.9591 -0.840884 0) (27.028 -0.809521 0) (27.0951 -0.7778 0) (27.1279 -0.840869 0) (27.0563 -0.87516 0) (26.9827 -0.909013 0) (27.0121 -0.981662 0) (27.0903 -0.945021 0) (27.1658 -0.907812 0) (27.2072 -0.978145 0) (27.1281 -1.01862 0) (27.0458 -1.05838 0) (26.961 -1.09677 0) (26.8747 -1.1331 0) (26.7876 -1.16673 0) (26.7001 -1.19693 0) (26.7177 -1.28829 0) (26.8103 -1.2559 0) (26.9024 -1.21966 0) (26.9327 -1.31013 0) (26.8356 -1.3492 0) (26.7378 -1.38401 0) (26.7603 -1.48381 0) (26.8633 -1.4464 0) (26.9655 -1.40437 0) (27.0661 -1.35866 0) (27.0284 -1.26771 0) (26.9934 -1.18038 0) (27.0825 -1.1388 0) (27.1689 -1.09563 0) (27.2515 -1.05164 0) (27.2986 -1.12827 0) (27.2124 -1.17597 0) (27.122 -1.22273 0) (27.1642 -1.31016 0) (27.2588 -1.25967 0) (27.3487 -1.20813 0) (27.402 -1.29131 0) (27.3083 -1.34682 0) (27.2093 -1.40115 0) (27.1063 -1.45329 0) (27.0007 -1.50237 0) (26.8933 -1.54746 0) (26.7848 -1.58758 0) (26.6756 -1.62182 0) (26.5659 -1.64923 0) (26.4558 -1.66874 0) (26.3455 -1.67941 0) (26.2363 -1.68039 0) (26.1297 -1.67094 0) (26.026 -1.65134 0) (25.9265 -1.62188 0) (25.895 -1.72974 0) (26.0024 -1.76172 0) (26.1136 -1.78332 0) (26.097 -1.90024 0) (25.9778 -1.87656 0) (25.8618 -1.84212 0) (25.8273 -1.96052 0) (25.9505 -1.99718 0) (26.0781 -2.0228 0) (26.2109 -2.03649 0) (26.2202 -1.91273 0) (26.2287 -1.79426 0) (26.3459 -1.7938 0) (26.4635 -1.78268 0) (26.5804 -1.76166 0) (26.5967 -1.8791 0) (26.4722 -1.9012 0) (26.3462 -1.91306 0) (26.347 -2.03715 0) (26.4818 -2.02422 0) (26.6142 -2.0009 0) (26.6331 -2.12693 0) (26.4925 -2.15223 0) (26.3478 -2.16624 0) (26.2008 -2.16562 0) (26.0585 -2.15152 0) (25.922 -2.12542 0) (25.7904 -2.0868 0) (25.7507 -2.22068 0) (25.8922 -2.26093 0) (26.0385 -2.28751 0) (26.0184 -2.43116 0) (25.8614 -2.4044 0) (25.7088 -2.36295 0) (25.6655 -2.51461 0) (25.8302 -2.55674 0) (25.9989 -2.58307 0) (26.1729 -2.59414 0) (26.1813 -2.44397 0) (26.1908 -2.30129 0) (26.3492 -2.3011 0) (26.5045 -2.28589 0) (26.6537 -2.25839 0) (26.6763 -2.39602 0) (26.5176 -2.42595 0) (26.3513 -2.44258 0) (26.3544 -2.59111 0) (26.5322 -2.57252 0) (26.701 -2.5401 0) (26.8637 -2.49534 0) (26.8305 -2.35439 0) (26.7998 -2.21981 0) (26.7713 -2.09102 0) (26.7444 -1.96711 0) (26.7192 -1.84729 0) (26.6963 -1.7321 0) (26.8114 -1.69538 0) (26.9255 -1.65243 0) (27.0384 -1.6042 0) (27.0786 -1.70998 0) (26.9601 -1.76146 0) (26.8402 -1.80751 0) (26.8717 -1.92434 0) (26.9972 -1.87476 0) (27.1214 -1.81981 0) (27.2436 -1.75999 0) (27.195 -1.65385 0) (27.1493 -1.55165 0) (27.2573 -1.49579 0) (27.3609 -1.43752 0) (27.4586 -1.37793 0) (27.5186 -1.46808 0) (27.4167 -1.53184 0) (27.3083 -1.59415 0) (27.3623 -1.69633 0) (27.4758 -1.62986 0) (27.5819 -1.56183 0) (27.6487 -1.65925 0) (27.5382 -1.73165 0) (27.4195 -1.80242 0) (27.295 -1.8702 0) (27.167 -1.9339 0) (27.0371 -1.99272 0) (26.9057 -2.0459 0) (26.9418 -2.1721 0) (27.08 -2.11564 0) (27.2156 -2.05256 0) (27.2675 -2.17623 0) (27.1256 -2.24352 0) (26.98 -2.30344 0) (27.021 -2.44063 0) (27.1742 -2.37674 0) (27.3229 -2.30514 0) (27.469 -2.22777 0) (27.4073 -2.10383 0) (27.3495 -1.98472 0) (27.4799 -1.91259 0) (27.604 -1.83733 0) (27.7191 -1.76039 0) (27.7933 -1.8653 0) (27.6735 -1.94698 0) (27.5439 -2.027 0) (27.6117 -2.14582 0) (27.7469 -2.06069 0) (27.8714 -1.974 0) (27.9537 -2.08655 0) (27.8245 -2.17857 0) (27.6838 -2.2692 0) (27.5347 -2.35674 0) (27.382 -2.43945 0) (27.2261 -2.51587 0) (27.0651 -2.58416 0) (26.8996 -2.64291 0) (26.7278 -2.69088 0) (26.5486 -2.72595 0) (26.3592 -2.7469 0) (26.1662 -2.75248 0) (25.9806 -2.74376 0) (25.7992 -2.71842 0) (25.6215 -2.6764 0) (25.4487 -2.61772 0) (25.2801 -2.54216 0) (25.117 -2.45124 0) (24.9579 -2.34643 0) (24.8046 -2.22692 0) (24.6618 -2.08944 0) (24.5312 -1.93572 0) (24.4132 -1.76427 0) (24.3065 -1.57958 0) (24.2129 -1.38263 0) (24.1349 -1.17387 0) (24.073 -0.95373 0) (24.0303 -0.723158 0) (24.0102 -0.483396 0) (24.0163 -0.232404 0) (24.0527 0.0317759 0) (23.8112 0.066047 0) (23.7833 -0.224288 0) (23.786 -0.500346 0) (23.541 -0.52535 0) (23.5298 -0.219728 0) (23.547 0.0984345 0) (23.2522 0.11827 0) (23.2483 -0.228253 0) (23.2701 -0.56525 0) (23.3202 -0.88672 0) (23.5786 -0.817306 0) (23.8142 -0.764592 0) (23.8661 -1.01695 0) (23.9385 -1.25684 0) (24.0276 -1.48416 0) (23.8269 -1.60322 0) (23.7251 -1.35586 0) (23.6415 -1.09412 0) (23.3966 -1.19045 0) (23.4941 -1.4765 0) (23.6112 -1.74223 0) (23.3851 -1.8979 0) (23.2456 -1.61683 0) (23.1296 -1.30793 0) (23.038 -0.975959 0) (22.9735 -0.624108 0) (22.9373 -0.256782 0) (22.9108 0.107077 0) (22.5005 0.0369026 0) (22.5843 -0.314478 0) (22.6477 -0.70582 0) (22.2879 -0.819629 0) (22.1752 -0.419091 0) (22.0306 -0.153108 0) (21.456 -0.526309 0) (21.7041 -0.633845 0) (21.8869 -0.98073 0) (22.0489 -1.39015 0) (22.3995 -1.22537 0) (22.7303 -1.0876 0) (22.8429 -1.44502 0) (22.9838 -1.77172 0) (23.1483 -2.06937 0) (22.8962 -2.26458 0) (22.7088 -1.94733 0) (22.5412 -1.60183 0) (22.2233 -1.78401 0) (22.4172 -2.151 0) (22.6311 -2.48652 0) (22.8637 -2.78866 0) (23.1019 -2.55255 0) (23.3302 -2.34046 0) (23.5456 -2.15259 0) (23.7496 -1.98536 0) (23.9467 -1.83331 0) (24.133 -1.69761 0) (24.2527 -1.89639 0) (24.386 -2.07722 0) (24.5332 -2.23853 0) (24.3998 -2.40119 0) (24.2348 -2.23251 0) (24.0829 -2.04375 0) (23.9065 -2.20517 0) (24.0772 -2.40335 0) (24.2591 -2.58104 0) (24.4496 -2.73887 0) (24.5739 -2.55111 0) (24.6922 -2.38108 0) (24.8592 -2.50725 0) (25.0309 -2.61816 0) (25.2075 -2.71243 0) (25.1335 -2.89577 0) (24.9418 -2.79922 0) (24.755 -2.68413 0) (24.6471 -2.87682 0) (24.8505 -2.99507 0) (25.059 -3.09305 0) (24.9845 -3.30573 0) (24.7579 -3.207 0) (24.5362 -3.08659 0) (24.3204 -2.94439 0) (24.1114 -2.78012 0) (23.9108 -2.59366 0) (23.7217 -2.38431 0) (23.5267 -2.58602 0) (23.7368 -2.80537 0) (23.9579 -2.99949 0) (23.8001 -3.23988 0) (23.5563 -3.03912 0) (23.3228 -2.81034 0) (23.1109 -3.05787 0) (23.3701 -3.29542 0) (23.6392 -3.50206 0) (23.9153 -3.67895 0) (24.0518 -3.41321 0) (24.1872 -3.16895 0) (24.4233 -3.31414 0) (24.6648 -3.43593 0) (24.9109 -3.53445 0) (24.8391 -3.78009 0) (24.5722 -3.68273 0) (24.3096 -3.56047 0) (24.1963 -3.82802 0) (24.4815 -3.94964 0) (24.7702 -4.04504 0) (24.7049 -4.33142 0) (24.3939 -4.23865 0) (24.0844 -4.11825 0) (23.7779 -3.96835 0) (23.4756 -3.78815 0) (23.1794 -3.57647 0) (22.8925 -3.33125 0) (22.617 -3.05158 0) (22.3552 -2.73651 0) (22.111 -2.38551 0) (21.888 -2.00024 0) (21.6755 -1.59217 0) (21.4363 -1.19443 0) (21.1806 -0.97131 0) (20.6827 -1.26685 0) (19.4963 -2.6977 0) (20.5698 -1.49343 0) (20.9591 -1.54282 0) (20.4313 -2.00334 0) (19.7838 -2.4058 0) (17.8661 -5.04766 0) (15.9716 -8.17265 0) (18.6823 -3.9108 0) (19.8427 -2.63823 0) (20.348 -2.6607 0) (20.8134 -2.18571 0) (21.2702 -1.85419 0) (21.5347 -2.25733 0) (21.7935 -2.65535 0) (22.0708 -3.01874 0) (21.7809 -3.33638 0) (21.468 -2.96458 0) (21.1654 -2.56694 0) (20.7741 -2.94078 0) (21.1369 -3.31824 0) (21.4888 -3.69344 0) (21.1978 -4.0931 0) (20.8014 -3.72727 0) (20.338 -3.38149 0) (19.8497 -3.22797 0) (19.1378 -3.62243 0) (17.2957 -6.14628 0) (14.0349 -11.7721 0) (12.1928 -15.5985 0) (15.7559 -8.97293 0) (18.2196 -5.04955 0) (17.1198 -7.02618 0) (14.2257 -12.1768 0) (10.5378 -19.502 0) (9.10668 -23.3911 0) (12.7914 -15.558 0) (15.933 -9.46934 0) (18.0545 -6.19145 0) (18.7468 -4.90963 0) (19.3278 -3.93505 0) (19.9147 -3.95504 0) (20.4533 -4.20002 0) (20.9088 -4.53711 0) (20.6246 -5.03642 0) (20.0717 -4.73939 0) (19.4784 -4.61953 0) (19.0356 -5.37673 0) (19.704 -5.3857 0) (20.3452 -5.59784 0) (20.8774 -5.88307 0) (21.1075 -5.35593 0) (21.3485 -4.87317 0) (21.5966 -4.43319 0) (21.8505 -4.03302 0) (22.1076 -3.67086 0) (22.3639 -3.34463 0) (22.6693 -3.63274 0) (22.9858 -3.88428 0) (23.3108 -4.10006 0) (23.1468 -4.43915 0) (22.7914 -4.22077 0) (22.4446 -3.96517 0) (22.2212 -4.33131 0) (22.5998 -4.5885 0) (22.9861 -4.80743 0) (23.3762 -4.98916 0) (23.5065 -4.62161 0) (23.641 -4.28215 0) (23.9747 -4.43183 0) (24.3097 -4.55074 0) (24.6445 -4.64048 0) (24.5896 -4.97303 0) (24.2299 -4.88691 0) (23.8683 -4.77029 0) (23.7667 -5.13537 0) (24.1558 -5.24848 0) (24.5412 -5.33 0) (24.5006 -5.71341 0) (24.0889 -5.63757 0) (23.6722 -5.5295 0) (23.2522 -5.38697 0) (22.831 -5.20741 0) (22.4136 -4.98993 0) (22.0024 -4.7329 0) (21.7906 -5.17182 0) (22.2354 -5.42712 0) (22.6842 -5.64122 0) (22.5484 -6.10965 0) (22.0673 -5.90035 0) (21.5872 -5.64877 0) (21.3956 -6.16524 0) (21.9114 -6.41021 0) (22.4254 -6.61283 0) (22.9384 -6.77489 0) (23.0307 -6.27913 0) (23.136 -5.81653 0) (23.5861 -5.95416 0) (24.0312 -6.05597 0) (24.4694 -6.12481 0) (24.4484 -6.56475 0) (23.9839 -6.50462 0) (23.5105 -6.41024 0) (23.4476 -6.89772 0) (23.9491 -6.98291 0) (24.4399 -7.03284 0) (24.9187 -7.05025 0) (24.9029 -6.59313 0) (24.8991 -6.16261 0) (24.9059 -5.75901 0) (24.9221 -5.38228 0) (24.9464 -5.03079 0) (24.9782 -4.70304 0) (25.0167 -4.39833 0) (25.0608 -4.11551 0) (25.1094 -3.85325 0) (25.1616 -3.60961 0) (25.2164 -3.38243 0) (25.2734 -3.17073 0) (25.3316 -2.97366 0) (25.3903 -2.78975 0) (25.5776 -2.84878 0) (25.7691 -2.89004 0) (25.9641 -2.91376 0) (25.9498 -3.09389 0) (25.7404 -3.07231 0) (25.5343 -3.03249 0) (25.4922 -3.22851 0) (25.714 -3.26622 0) (25.9382 -3.28523 0) (26.1639 -3.28585 0) (26.1613 -3.09729 0) (26.162 -2.9199 0) (26.3662 -2.91033 0) (26.567 -2.88703 0) (26.757 -2.8489 0) (26.7886 -3.01482 0) (26.5875 -3.05684 0) (26.3764 -3.08327 0) (26.3902 -3.26852 0) (26.6117 -3.23684 0) (26.8236 -3.18996 0) (26.8636 -3.37635 0) (26.6413 -3.42872 0) (26.4084 -3.46574 0) (26.1693 -3.48619 0) (25.9294 -3.48886 0) (25.6903 -3.47313 0) (25.4522 -3.43821 0) (25.4152 -3.66284 0) (25.6701 -3.69461 0) (25.9246 -3.70627 0) (25.9247 -3.93932 0) (25.6539 -3.93197 0) (25.3815 -3.90355 0) (25.3518 -4.16223 0) (25.642 -4.18647 0) (25.9296 -4.18937 0) (26.213 -4.17207 0) (26.1931 -3.92699 0) (26.1785 -3.69898 0) (26.4305 -3.67415 0) (26.6758 -3.63327 0) (26.9098 -3.57514 0) (26.963 -3.78592 0) (26.7153 -3.85041 0) (26.4574 -3.89703 0) (26.4913 -4.1363 0) (26.763 -4.08201 0) (27.0245 -4.0096 0) (27.2732 -3.91958 0) (27.1995 -3.70418 0) (27.1342 -3.50149 0) (27.0768 -3.31032 0) (27.026 -3.13049 0) (26.9804 -2.96007 0) (26.9385 -2.79762 0) (27.1126 -2.73445 0) (27.2817 -2.66123 0) (27.4452 -2.57945 0) (27.5133 -2.72543 0) (27.3418 -2.81313 0) (27.1641 -2.892 0) (27.2203 -3.05683 0) (27.4071 -2.97194 0) (27.5868 -2.87788 0) (27.7619 -2.77597 0) (27.6806 -2.63049 0) (27.6051 -2.49089 0) (27.7606 -2.3973 0) (27.9068 -2.30077 0) (28.0406 -2.20301 0) (28.1328 -2.32355 0) (27.9943 -2.42751 0) (27.8426 -2.53037 0) (27.9304 -2.66886 0) (28.0875 -2.55919 0) (28.2308 -2.44847 0) (28.3357 -2.57813 0) (28.1873 -2.69634 0) (28.0248 -2.81348 0) (27.8497 -2.92812 0) (27.6665 -3.03766 0) (27.4779 -3.1387 0) (27.2819 -3.23019 0) (27.35 -3.41394 0) (27.5555 -3.31492 0) (27.7536 -3.20586 0) (27.8491 -3.38366 0) (27.6412 -3.50181 0) (27.4257 -3.60892 0) (27.5096 -3.81609 0) (27.7358 -3.69999 0) (27.9539 -3.57186 0) (28.1623 -3.43523 0) (28.049 -3.25701 0) (27.9451 -3.08807 0) (28.1267 -2.96525 0) (28.2949 -2.83984 0) (28.4485 -2.71315 0) (28.5707 -2.8541 0) (28.4115 -2.99037 0) (28.2373 -3.12513 0) (28.3578 -3.29322 0) (28.5383 -3.14808 0) (28.7031 -3.00115 0) (28.8462 -3.15452 0) (28.6754 -3.31348 0) (28.4884 -3.47021 0) (28.2859 -3.6234 0) (28.0692 -3.77101 0) (27.8405 -3.90989 0) (27.603 -4.03625 0) (27.356 -4.14938 0) (27.0953 -4.24838 0) (26.8195 -4.3301 0) (26.5327 -4.39172 0) (26.2394 -4.43421 0) (25.9403 -4.45735 0) (25.6359 -4.45982 0) (25.3274 -4.44065 0) (25.3094 -4.74013 0) (25.6367 -4.75348 0) (25.9584 -4.74444 0) (25.985 -5.05202 0) (25.6453 -5.06842 0) (25.2987 -5.06184 0) (25.2965 -5.40688 0) (25.6627 -5.40597 0) (26.0209 -5.3811 0) (26.3699 -5.33316 0) (26.3168 -5.01322 0) (26.2734 -4.71405 0) (26.5821 -4.66367 0) (26.8852 -4.59428 0) (27.1762 -4.50354 0) (27.2663 -4.77527 0) (26.9594 -4.87456 0) (26.6407 -4.95349 0) (26.7094 -5.26306 0) (27.0426 -5.1727 0) (27.3648 -5.06364 0) (27.471 -5.36909 0) (27.1349 -5.48982 0) (26.7883 -5.59247 0) (26.4329 -5.674 0) (26.0665 -5.7324 0) (25.6896 -5.76707 0) (25.3027 -5.77648 0) (25.3187 -6.17129 0) (25.7267 -6.1519 0) (26.1225 -6.10641 0) (26.1888 -6.50357 0) (25.7746 -6.56092 0) (25.3456 -6.59131 0) (25.3838 -7.03686 0) (25.8332 -6.99422 0) (26.2658 -6.92346 0) (26.682 -6.82624 0) (26.5887 -6.42102 0) (26.506 -6.03634 0) (26.8766 -5.9427 0) (27.2357 -5.82667 0) (27.5844 -5.69154 0) (27.7069 -6.0305 0) (27.3464 -6.183 0) (26.9743 -6.31379 0) (27.0826 -6.70368 0) (27.4685 -6.55603 0) (27.8409 -6.38516 0) (28.1994 -6.19341 0) (28.052 -5.85802 0) (27.9154 -5.53504 0) (27.7867 -5.22593 0) (27.6654 -4.9323 0) (27.5523 -4.65525 0) (27.4489 -4.39443 0) (27.7068 -4.27008 0) (27.9554 -4.13233 0) (28.1942 -3.98181 0) (28.3286 -4.20391 0) (28.08 -4.3673 0) (27.821 -4.51815 0) (27.9455 -4.78138 0) (28.2139 -4.61545 0) (28.4714 -4.43785 0) (28.7131 -4.2501 0) (28.5623 -4.03095 0) (28.4194 -3.82226 0) (28.6292 -3.65643 0) (28.8229 -3.48649 0) (28.9998 -3.31414 0) (29.1623 -3.48032 0) (28.9799 -3.66699 0) (28.7797 -3.85119 0) (28.9376 -4.05527 0) (29.1442 -3.8558 0) (29.3323 -3.65331 0) (29.5091 -3.83202 0) (29.3151 -4.0521 0) (29.1021 -4.26899 0) (28.8707 -4.48071 0) (28.6213 -4.68466 0) (28.3562 -4.87818 0) (28.0792 -5.06048 0) (28.2211 -5.35414 0) (28.5065 -5.15435 0) (28.7784 -4.94267 0) (28.9451 -5.20978 0) (28.6664 -5.44166 0) (28.3718 -5.66014 0) (28.534 -5.97706 0) (28.8392 -5.73907 0) (29.1249 -5.48582 0) (29.3958 -5.22332 0) (29.2092 -4.96795 0) (29.0353 -4.7206 0) (29.274 -4.49016 0) (29.4932 -4.25443 0) (29.6919 -4.01586 0) (29.8822 -4.20471 0) (29.6792 -4.46266 0) (29.4546 -4.71782 0) (29.648 -4.95264 0) (29.8781 -4.67681 0) (30.0853 -4.39815 0) (30.2689 -4.11825 0) (30.0632 -3.94559 0) (29.87 -3.77614 0) (29.6836 -3.61043 0) (29.5021 -3.44908 0) (29.3269 -3.29237 0) (29.1594 -3.14073 0) (29.0008 -2.99452 0) (28.8525 -2.85345 0) (28.7148 -2.7173 0) (28.5877 -2.58613 0) (28.47 -2.45972 0) (28.3605 -2.33763 0) (28.2582 -2.21953 0) (28.1618 -2.10515 0) (28.0708 -1.99435 0) (27.9844 -1.88705 0) (27.9024 -1.78329 0) (27.8244 -1.68309 0) (27.7502 -1.58649 0) (27.6798 -1.49349 0) (27.6129 -1.40405 0) (27.5496 -1.31812 0) (27.4898 -1.23562 0) (27.4333 -1.15643 0) (27.3801 -1.08044 0) (27.33 -1.00753 0) (27.2827 -0.937589 0) (27.2382 -0.870578 0) (27.1968 -0.806627 0) (27.1601 -0.746175 0) (27.2226 -0.715029 0) (27.2825 -0.684661 0) (27.3395 -0.655271 0) (27.3844 -0.707768 0) (27.3254 -0.739813 0) (27.2628 -0.772837 0) (27.307 -0.833773 0) (27.3717 -0.79775 0) (27.4323 -0.762763 0) (27.4885 -0.728962 0) (27.4396 -0.676822 0) (27.3933 -0.626956 0) (27.4438 -0.599702 0) (27.4911 -0.573396 0) (27.5353 -0.547843 0) (27.5827 -0.590294 0) (27.5386 -0.618201 0) (27.491 -0.646991 0) (27.5405 -0.696393 0) (27.5884 -0.665006 0) (27.6324 -0.634663 0) (27.6847 -0.681009 0) (27.6406 -0.713858 0) (27.5924 -0.747913 0) (27.5399 -0.783314 0) (27.4827 -0.820102 0) (27.4207 -0.858215 0) (27.354 -0.897476 0) (27.4036 -0.963905 0) (27.4723 -0.921239 0) (27.5357 -0.879865 0) (27.5918 -0.942171 0) (27.5268 -0.98694 0) (27.4562 -1.03315 0) (27.512 -1.10534 0) (27.5846 -1.05544 0) (27.6511 -1.00713 0) (27.7115 -0.960647 0) (27.6511 -0.89906 0) (27.594 -0.839978 0) (27.6472 -0.801648 0) (27.6958 -0.764828 0) (27.7399 -0.729374 0) (27.7983 -0.779762 0) (27.754 -0.817963 0) (27.7051 -0.857676 0) (27.7661 -0.916055 0) (27.8155 -0.873289 0) (27.8598 -0.832174 0) (27.8998 -0.792437 0) (27.8383 -0.74282 0) (27.7801 -0.695046 0) (27.725 -0.649142 0) (27.6729 -0.605141 0) (27.6235 -0.56304 0) (27.5763 -0.522786 0) (27.6143 -0.49792 0) (27.6493 -0.472896 0) (27.6813 -0.447325 0) (27.7269 -0.481878 0) (27.6954 -0.50923 0) (27.661 -0.536141 0) (27.71 -0.576135 0) (27.744 -0.547254 0) (27.775 -0.518021 0) (27.803 -0.487916 0) (27.7553 -0.453616 0) (27.7101 -0.420796 0) (27.7359 -0.392914 0) (27.7586 -0.363362 0) (27.778 -0.33196 0) (27.8224 -0.359315 0) (27.8032 -0.392633 0) (27.7808 -0.423991 0) (27.8282 -0.456431 0) (27.8504 -0.423145 0) (27.8695 -0.387782 0) (27.9194 -0.417309 0) (27.9005 -0.454845 0) (27.8785 -0.490184 0) (27.8537 -0.523656 0) (27.8259 -0.555733 0) (27.7954 -0.586971 0) (27.7618 -0.617936 0) (27.8166 -0.661506 0) (27.8498 -0.628312 0) (27.8799 -0.594919 0) (27.9371 -0.63547 0) (27.9073 -0.671187 0) (27.8745 -0.706783 0) (27.9357 -0.753711 0) (27.9681 -0.715521 0) (27.9974 -0.677289 0) (28.024 -0.63836 0) (27.964 -0.599 0) (27.9073 -0.560726 0) (27.9319 -0.525133 0) (27.9536 -0.487614 0) (27.9722 -0.447785 0) (28.0281 -0.47906 0) (28.0096 -0.521306 0) (27.9882 -0.561138 0) (28.0478 -0.598059 0) (28.0689 -0.555762 0) (28.087 -0.510971 0) (28.1492 -0.543349 0) (28.1313 -0.590836 0) (28.1106 -0.635772 0) (28.0872 -0.678705 0) (28.0611 -0.7203 0) (28.0322 -0.761261 0) (28.0002 -0.80226 0) (27.9645 -0.843884 0) (27.9247 -0.886616 0) (27.8802 -0.930839 0) (27.8305 -0.976842 0) (27.7752 -1.02482 0) (27.7137 -1.07484 0) (27.6457 -1.12684 0) (27.571 -1.18058 0) (27.6335 -1.259 0) (27.7102 -1.20127 0) (27.7797 -1.1454 0) (27.8493 -1.21891 0) (27.7783 -1.27884 0) (27.6995 -1.34072 0) (27.7691 -1.42583 0) (27.85 -1.35965 0) (27.9226 -1.29548 0) (27.9874 -1.23366 0) (27.9129 -1.16123 0) (27.8423 -1.09165 0) (27.8983 -1.0401 0) (27.9484 -0.990653 0) (27.9931 -0.943111 0) (28.0651 -1.00168 0) (28.0203 -1.05278 0) (27.9697 -1.10588 0) (28.0449 -1.17428 0) (28.0959 -1.11725 0) (28.1409 -1.06234 0) (28.221 -1.12507 0) (28.1757 -1.18408 0) (28.1242 -1.24531 0) (28.0658 -1.30899 0) (27.9999 -1.37519 0) (27.9256 -1.44378 0) (27.8425 -1.5144 0) (27.9197 -1.60645 0) (28.0052 -1.53124 0) (28.0813 -1.45804 0) (28.167 -1.54395 0) (28.089 -1.62196 0) (28.0009 -1.70193 0) (28.0863 -1.80076 0) (28.1771 -1.71582 0) (28.2574 -1.63275 0) (28.3277 -1.55194 0) (28.2357 -1.46827 0) (28.1485 -1.38723 0) (28.2077 -1.31897 0) (28.2598 -1.25322 0) (28.3054 -1.18977 0) (28.3946 -1.25631 0) (28.3486 -1.32454 0) (28.2959 -1.39514 0) (28.389 -1.47361 0) (28.4425 -1.3978 0) (28.489 -1.32438 0) (28.5293 -1.25307 0) (28.4347 -1.1901 0) (28.3453 -1.12828 0) (28.2608 -1.06792 0) (28.1807 -1.00922 0) (28.1048 -0.952279 0) (28.0328 -0.897163 0) (28.0682 -0.852414 0) (28.0999 -0.808373 0) (28.1283 -0.764446 0) (28.1993 -0.809666 0) (28.1713 -0.856818 0) (28.14 -0.904157 0) (28.2157 -0.957448 0) (28.2467 -0.906534 0) (28.2743 -0.855877 0) (28.2989 -0.80479 0) (28.2244 -0.762016 0) (28.1539 -0.719952 0) (28.1769 -0.674165 0) (28.1972 -0.626387 0) (28.2148 -0.576033 0) (28.284 -0.608856 1.66584e-22) (28.2668 -0.662277 0) (28.2469 -0.713126 0) (28.3208 -0.752526 0) (28.3402 -0.698353 0) (28.3569 -0.641638 0) (28.4339 -0.674176 -1.66727e-22) (28.4177 -0.73443 0) (28.3989 -0.792202 0) (28.3776 -0.84813 0) (28.3535 -0.902954 0) (28.3264 -0.957419 0) (28.2957 -1.01221 0) (28.3802 -1.0683 0) (28.4106 -1.00931 0) (28.4373 -0.950713 0) (28.5259 -0.998888 0) (28.4997 -1.06195 0) (28.4695 -1.12549 0) (28.564 -1.18345 0) (28.594 -1.115 0) (28.6197 -1.04711 0) (28.6418 -0.979126 0) (28.5487 -0.935623 0) (28.4608 -0.891834 0) (28.4814 -0.831934 0) (28.4995 -0.770278 0) (28.5151 -0.706229 0) (28.6008 -0.737515 0) (28.586 -0.805607 0) (28.5687 -0.871437 0) (28.6609 -0.910343 0) (28.6773 -0.840063 0) (28.6911 -0.767693 0) (28.7025 -0.69284 0) (28.613 -0.666734 0) (28.5281 -0.639343 0) (28.4475 -0.610986 1.66646e-22) (28.371 -0.58194 0) (28.2984 -0.552447 -1.66504e-22) (28.2295 -0.522726 0) (28.1642 -0.49298 0) (28.1022 -0.463401 0) (28.0434 -0.434172 0) (27.9878 -0.405469 0) (27.9351 -0.377454 0) (27.8853 -0.350265 0) (27.8384 -0.324002 0) (27.7941 -0.298712 0) (27.807 -0.263821 0) (27.8167 -0.227674 0) (27.8237 -0.190803 0) (27.8673 -0.208838 0) (27.8607 -0.248313 0) (27.8511 -0.286876 0) (27.8979 -0.31075 0) (27.9073 -0.269608 0) (27.9137 -0.227358 0) (27.9172 -0.184701 0) (27.8713 -0.169174 0) (27.8282 -0.153965 0) (27.8305 -0.118274 0) (27.8731 -0.130404 0) (27.9184 -0.142712 0) (27.9668 -0.155195 0) (27.966 -0.200537 0) (27.9628 -0.246344 0) (27.9567 -0.291531 0) (27.9475 -0.335407 0) (28 -0.360763 0) (28.009 -0.314016 0) (28.0149 -0.265746 0) (28.07 -0.285485 0) (28.0643 -0.336965 0) (28.0555 -0.386697 0) (28.1141 -0.413062 0) (28.1228 -0.360248 0) (28.1283 -0.305452 0) (28.1309 -0.249388 0) (28.0727 -0.232955 0) (28.0178 -0.216643 0) (28.0183 -0.167827 0) (28.0729 -0.180557 0) (28.1309 -0.193317 0) (28.1924 -0.206042 0) (28.1924 -0.265839 0) (28.1899 -0.325513 0) (28.1845 -0.383704 0) (28.1759 -0.439683 0) (28.2411 -0.466366 0) (28.2495 -0.407147 0) (28.2549 -0.345509 0) (28.3234 -0.365262 0) (28.3181 -0.430374 0) (28.3098 -0.492904 0) (28.3821 -0.51908 0) (28.3903 -0.453169 0) (28.3956 -0.384583 0) (28.3982 -0.314084 0) (28.3259 -0.298327 0) (28.2574 -0.282195 0) (28.2574 -0.218668 0) (28.3261 -0.231121 0) (28.3984 -0.243295 0) (28.4743 -0.255054 0) (28.4741 -0.329296 0) (28.4715 -0.40327 0) (28.4663 -0.475311 0) (28.4583 -0.544668 0) (28.5385 -0.569428 0) (28.5461 -0.496571 0) (28.5511 -0.421108 0) (28.6346 -0.437865 0) (28.6299 -0.516698 0) (28.6228 -0.593096 0) (28.7114 -0.615372 0) (28.7178 -0.535414 0) (28.7219 -0.453289 0) (28.7237 -0.36968 0) (28.6368 -0.357306 0) (28.5536 -0.343772 0) (28.5539 -0.26624 0) (28.637 -0.276688 0) (28.7237 -0.286226 0) (28.8137 -0.294663 0) (28.8142 -0.38065 0) (28.8131 -0.467093 0) (28.8098 -0.5524 0) (28.8043 -0.635909 0) (28.7965 -0.717283 0) (28.7863 -0.796356 0) (28.7736 -0.87321 0) (28.7584 -0.948194 0) (28.7403 -1.02187 0) (28.7189 -1.09489 0) (28.6938 -1.16796 0) (28.6641 -1.24172 0) (28.6294 -1.31677 0) (28.5888 -1.39361 0) (28.5418 -1.47262 0) (28.4875 -1.55405 0) (28.4248 -1.63794 0) (28.3526 -1.72422 0) (28.27 -1.81264 0) (28.1761 -1.90284 0) (28.2708 -2.00803 0) (28.3679 -1.91219 0) (28.4532 -1.81804 0) (28.5596 -1.91388 0) (28.4713 -2.01425 0) (28.3709 -2.11624 0) (28.4773 -2.2275 0) (28.5812 -2.11866 0) (28.6725 -2.01142 0) (28.7517 -1.906 0) (28.6362 -1.81541 0) (28.5274 -1.72591 0) (28.5917 -1.63603 0) (28.6471 -1.54855 0) (28.6947 -1.46347 0) (28.807 -1.53337 0) (28.7587 -1.62503 0) (28.7022 -1.71907 0) (28.8196 -1.8026 0) (28.8775 -1.70144 0) (28.9265 -1.60266 0) (29.0537 -1.67066 0) (29.0041 -1.77718 0) (28.9448 -1.88611 0) (28.8749 -1.99726 0) (28.793 -2.11039 0) (28.6985 -2.22534 0) (28.5908 -2.3419 0) (28.7128 -2.45963 0) (28.8242 -2.33432 0) (28.922 -2.21065 0) (29.0605 -2.31211 0) (28.9596 -2.44566 0) (28.8444 -2.5809 0) (28.9864 -2.70589 0) (29.1053 -2.55945 0) (29.2092 -2.41475 0) (29.2985 -2.27221 0) (29.1476 -2.18055 0) (29.0065 -2.08885 0) (29.0785 -1.96911 0) (29.139 -1.85164 0) (29.1891 -1.7367 0) (29.3332 -1.80019 0) (29.2829 -1.92432 0) (29.2214 -2.0512 0) (29.3738 -2.13214 0) (29.436 -1.99485 0) (29.4861 -1.86064 0) (29.5254 -1.72983 0) (29.3735 -1.67905 0) (29.23 -1.62448 0) (29.0948 -1.56667 0) (28.9676 -1.50628 0) (28.848 -1.44403 0) (28.7355 -1.38063 0) (28.7701 -1.29971 0) (28.7994 -1.22024 0) (28.8239 -1.14164 0) (28.935 -1.18665 0) (28.9113 -1.27115 0) (28.8825 -1.35676 0) (29.0018 -1.41216 0) (29.0299 -1.31995 0) (29.0525 -1.22917 0) (29.0704 -1.13919 0) (28.9543 -1.10262 0) (28.8443 -1.06326 0) (28.8613 -0.984432 0) (28.8752 -0.90452 0) (28.8865 -0.823012 0) (28.9919 -0.847071 0) (28.9823 -0.933369 0) (28.9699 -1.0184 0) (29.0843 -1.04934 0) (29.0948 -0.959032 0) (29.1024 -0.867852 0) (29.2182 -0.884608 0) (29.213 -0.980715 0) (29.2047 -1.07644 0) (29.1928 -1.17215 0) (29.1766 -1.26841 0) (29.1554 -1.36588 0) (29.1284 -1.46515 0) (29.2627 -1.51501 0) (29.2883 -1.40817 0) (29.3076 -1.30357 0) (29.4454 -1.33389 0) (29.4285 -1.44608 0) (29.4049 -1.56103 0) (29.5549 -1.6026 0) (29.576 -1.47897 0) (29.5899 -1.35871 0) (29.5977 -1.24145 0) (29.4566 -1.224 0) (29.3216 -1.20067 0) (29.331 -1.09887 0) (29.3366 -0.997603 0) (29.339 -0.896569 0) (29.4644 -0.902994 0) (29.4654 -1.00893 0) (29.463 -1.11584 0) (29.6004 -1.12669 0) (29.5989 -1.01401 0) (29.5938 -0.903192 0) (29.7271 -0.896529 0) (29.7369 -1.01222 0) (29.743 -1.13082 0) (29.7447 -1.25247 0) (29.741 -1.37752 0) (29.7308 -1.50636 0) (29.7127 -1.63929 0) (29.6855 -1.77647 0) (29.6477 -1.91781 0) (29.5982 -2.06305 0) (29.5358 -2.21185 0) (29.4594 -2.36383 0) (29.3682 -2.51861 0) (29.2616 -2.67575 0) (29.1392 -2.83466 0) (29.302 -2.96731 0) (29.4279 -2.79467 0) (29.5371 -2.62385 0) (29.7148 -2.73073 0) (29.6033 -2.91635 0) (29.4739 -3.10394 0) (29.6534 -3.24449 0) (29.7857 -3.04094 0) (29.8992 -2.83949 0) (29.9944 -2.64101 0) (29.809 -2.54789 0) (29.6299 -2.45561 0) (29.707 -2.29052 0) (29.7693 -2.12907 0) (29.8178 -1.97174 0) (29.9953 -2.02284 0) (29.9482 -2.19333 0) (29.8865 -2.36854 0) (30.0718 -2.44634 0) (30.1324 -2.25626 0) (30.1773 -2.07154 0) (30.3588 -2.11779 0) (30.3175 -2.3178 0) (30.2593 -2.52382 0) (30.183 -2.73489 0) (30.0878 -2.95003 0) (29.973 -3.16832 0) (29.8382 -3.38881 0) (30.0273 -3.53642 0) (30.1634 -3.29788 0) (30.2782 -3.06163 0) (30.4718 -3.17308 0) (30.3583 -3.42861 0) (30.2221 -3.6865 0) (30.4287 -3.83835 0) (30.5644 -3.55964 0) (30.6754 -3.28336 0) (30.762 -3.01075 0) (30.5626 -2.92101 0) (30.3721 -2.82867 0) (30.4455 -2.60007 0) (30.4993 -2.37697 0) (30.5349 -2.16056 0) (30.7061 -2.19818 0) (30.6786 -2.43218 0) (30.6312 -2.6736 0) (30.8246 -2.74315 0) (30.8639 -2.48205 0) (30.8817 -2.22915 0) (30.8798 -1.98606 0) (30.7156 -1.97296 0) (30.5538 -1.95192 0) (30.3846 -1.92463 0) (30.2077 -1.89285 0) (30.0287 -1.8576 0) (29.8536 -1.81895 0) (29.8781 -1.67101 0) (29.8926 -1.52806 0) (29.8987 -1.39004 0) (30.0622 -1.39636 0) (30.0607 -1.54425 0) (30.05 -1.698 0) (30.2251 -1.72066 0) (30.2312 -1.5553 0) (30.2277 -1.39685 0) (30.2162 -1.24526 0) (30.0562 -1.25421 0) (29.8978 -1.25673 0) (29.891 -1.12783 0) (29.8795 -1.00309 0) (29.8642 -0.882457 0) (30.0054 -0.860645 0) (30.0267 -0.986391 0) (30.0439 -1.1176 0) (30.1983 -1.10044 0) (30.1752 -0.962393 0) (30.1481 -0.831291 0) (30.2833 -0.795309 0) (30.316 -0.931805 0) (30.3451 -1.07684 0) (30.3693 -1.23013 0) (30.3871 -1.39161 0) (30.3969 -1.56124 0) (30.3967 -1.73898 0) (30.5581 -1.7519 0) (30.55 -1.56108 0) (30.5317 -1.37978 0) (30.6603 -1.35944 0) (30.6902 -1.5529 0) (30.7094 -1.7576 0) (30.861 -1.75417 0) (30.8281 -1.53456 0) (30.7838 -1.32814 0) (30.7308 -1.13558 0) (30.6222 -1.1776 0) (30.5053 -1.20822 0) (30.4729 -1.0465 0) (30.4364 -0.894829 0) (30.3972 -0.753494 0) (30.4821 -0.704996 0) (30.5309 -0.850061 0) (30.5783 -1.00771 0) (30.6718 -0.957495 0) (30.6096 -0.794393 0) (30.5467 -0.64672 0) (30.4855 -0.514725 0) (30.4336 -0.572821 0) (30.3566 -0.622912 0) (30.2479 -0.667811 0) (30.1178 -0.707545 0) (29.981 -0.740665 0) (29.8459 -0.766135 0) (29.7143 -0.783877 0) (29.5858 -0.794327 0) (29.4605 -0.798074 0) (29.3386 -0.795753 0) (29.2208 -0.788043 0) (29.1075 -0.775648 0) (28.9989 -0.759274 0) (28.8953 -0.739609 0) (28.9018 -0.654293 0) (28.906 -0.567284 0) (28.9081 -0.47895 0) (29.0068 -0.488475 0) (29.0063 -0.579628 0) (29.0037 -0.67003 0) (29.1101 -0.682553 0) (29.1107 -0.58893 0) (29.1093 -0.495219 0) (29.1064 -0.402063 0) (29.0057 -0.397206 0) (28.9082 -0.389937 0) (28.9069 -0.301779 0) (29.0033 -0.307298 0) (29.1025 -0.310887 0) (29.2043 -0.31215 0) (29.2101 -0.404059 0) (29.2152 -0.498683 0) (29.2189 -0.59463 0) (29.2209 -0.691243 0) (29.3357 -0.69545 0) (29.3308 -0.596138 0) (29.3242 -0.498331 0) (29.4358 -0.493617 0) (29.4457 -0.592851 0) (29.4541 -0.694517 0) (29.5754 -0.687804 0) (29.5631 -0.584182 0) (29.5494 -0.484014 0) (29.535 -0.388021 0) (29.425 -0.397522 0) (29.3164 -0.402709 0) (29.3084 -0.310659 0) (29.4142 -0.305967 0) (29.521 -0.297636 0) (29.6283 -0.285235 0) (29.6458 -0.373747 0) (29.6642 -0.469008 0) (29.6822 -0.569561 0) (29.6991 -0.674697 0) (29.8253 -0.654594 0) (29.8031 -0.548405 0) (29.7801 -0.44806 0) (29.8976 -0.420559 0) (29.9263 -0.520128 0) (29.9544 -0.626972 0) (30.0852 -0.591738 0) (30.0513 -0.484432 0) (30.0168 -0.386011 0) (29.983 -0.296961 0) (29.8694 -0.328822 0) (29.7571 -0.354212 0) (29.7356 -0.26831 0) (29.8431 -0.246307 0) (29.9515 -0.218574 0) (30.0592 -0.184846 0) (30.0952 -0.258703 0) (30.1335 -0.344893 0) (30.1723 -0.442135 0) (30.2107 -0.549904 0) (30.3156 -0.503541 0) (30.2748 -0.395756 0) (30.2345 -0.299837 0) (30.3022 -0.25451 0) (30.3429 -0.347665 0) (30.3869 -0.453721 0) (30.4283 -0.398313 0) (30.3766 -0.296918 0) (30.3318 -0.20968 0) (30.2945 -0.136326 0) (30.2651 -0.174629 0) (30.1953 -0.216376 0) (30.1584 -0.146881 0) (30.2321 -0.109692 0) (30.2652 -0.0782974 0) (30.2657 -0.0518892 0) (30.2956 -0.0988427 0) (30.339 -0.161274 0) (30.3943 -0.238558 0) (30.4596 -0.332066 0) (30.5328 -0.44354 0) (30.6113 -0.574016 0) (30.6924 -0.723719 0) (30.773 -0.892306 0) (30.8502 -1.07911 0) (30.9209 -1.2833 0) (30.9821 -1.50392 0) (31.0307 -1.73987 0) (31.0637 -1.98987 0) (31.0782 -2.25241 0) (31.0712 -2.5258 0) (31.0405 -2.80816 0) (30.9845 -3.09757 0) (30.9023 -3.39234 0) (30.7937 -3.69099 0) (30.6585 -3.9921 0) (30.4972 -4.29432 0) (30.3104 -4.5964 0) (30.0984 -4.89711 0) (29.8616 -5.1949 0) (29.6016 -5.48741 0) (29.3234 -5.77207 0) (29.0292 -6.04702 0) (28.7114 -6.30544 0) (28.3622 -6.5415 0) (27.9898 -6.75464 0) (27.6042 -6.94449 0) (27.2038 -7.11084 0) (26.788 -7.25123 0) (26.3554 -7.36518 0) (25.9041 -7.45104 0) (25.4341 -7.50753 0) (24.947 -7.53369 0) (24.4448 -7.52838 0) (23.9286 -7.48974 0) (23.3995 -7.41566 0) (22.861 -7.30371 0) (22.3173 -7.1519 0) (21.7696 -6.95906 0) (21.2173 -6.72538 0) (20.6584 -6.46126 0) (20.0479 -6.2233 0) (19.353 -6.14654 0) (18.5884 -6.30769 0) (17.2455 -7.86135 0) (14.7609 -12.2463 0) (11.5199 -18.9931 0) (7.90657 -27.2145 0) (4.05487 -36.7015 0) (-0.122534 -47.6073 0) (-4.44214 -59.2581 0) (-8.6871 -71.2541 0) (-12.9231 -83.6334 0) (-17.166 -96.4084 0) (-21.4161 -109.574 0) (-25.6477 -123.114 0) (-29.8396 -136.95 0) (-33.9774 -151.014 0) (-38.0661 -165.232 0) (-42.1072 -179.49 0) (-46.0753 -193.617 0) (-50.0666 -207.441 0) (-53.9147 -220.313 0) (-57.5874 -230.355 0) (-60.4947 -236.146 0) (-61.9918 -237.492 0) (-62.3285 -234.3 0) (-61.2739 -226.511 0) (-58.5227 -214.256 0) (-54.6337 -198.182 0) (-50.2248 -179.741 0) (-43.9549 -175.321 0) (-39.7079 -156.322 0) (-35.7414 -137.721 0) (-30.8329 -134.338 0) (-27.9066 -117.174 0) (-25.564 -101.43 0) (-23.8375 -87.3465 0) (-20.6429 -86.1618 0) (-21.9326 -99.6742 0) (-23.791 -114.844 0) (-19.8582 -112.987 0) (-18.4354 -98.3475 0) (-17.5348 -85.3538 0) (-17.1424 -73.995 0) (-17.2077 -64.2247 0) (-17.6247 -55.934 0) (-18.2607 -48.9125 0) (-15.8635 -49.5934 0) (-15.1451 -56.463 0) (-14.6041 -64.5114 0) (-11.935 -64.9471 0) (-12.5833 -57.0934 0) (-13.3724 -50.345 0) (-10.7774 -51.1574 0) (-9.92679 -57.8124 0) (-9.18413 -65.5125 0) (-8.61709 -74.4325 0) (-11.5118 -74.0906 0) (-14.3458 -73.935 0) (-14.4665 -84.8713 0) (-15.0259 -97.4033 0) (-16.0571 -111.557 0) (-12.3396 -110.514 0) (-11.659 -96.8004 0) (-11.3981 -84.6735 0) (-8.29845 -84.7239 0) (-8.29567 -96.5021 0) (-8.66167 -109.822 0) (-9.42926 -124.637 0) (-13.4651 -125.739 0) (-17.5747 -127.225 0) (-21.8055 -129.129 0) (-26.2071 -131.487 0) (-29.1146 -149.28 0) (-34.2546 -152.547 0) (-38.0233 -171.344 0) (-41.8064 -190.13 0) (-48.0684 -194.027 0) (-51.8084 -211.037 0) (-54.7159 -224.582 0) (-56.0833 -233.701 0) (-56.0574 -238.146 0) (-50.0784 -238.461 0) (-49.8562 -232.846 0) (-48.2503 -222.48 0) (-45.3276 -207.804 0) (-39.0776 -204.649 0) (-35.8213 -186.562 0) (-32.4003 -167.816 0) (-27.0458 -164.733 0) (-24.2307 -146.498 0) (-19.5506 -144.175 0) (-21.9175 -162.086 0) (-24.5557 -180.534 0) (-30.0814 -183.358 0) (-33.0464 -201.661 0) (-35.7114 -218.062 0) (-41.9079 -220.282 0) (-43.6673 -231.801 0) (-44.0844 -238.507 0) (-38.102 -238.351 0) (-37.5354 -230.631 0) (-31.4734 -229.394 0) (-29.6671 -215.89 0) (-27.2122 -198.91 0) (-21.5475 -196.438 0) (-19.2095 -178.087 0) (-16.9681 -159.856 0) (-15.024 -142.28 0) (-10.6019 -140.786 0) (-12.1488 -158.023 0) (-14.0051 -176.009 0) (-16.0207 -194.27 0) (-17.9878 -211.902 0) (-23.7654 -213.821 0) (-25.4873 -228.133 0) (-26.2193 -237.639 0) (-32.1449 -238.047 0) (-31.9541 -241.644 0) (-37.7603 -241.121 0) (-43.5448 -240.36 0) (-49.2862 -239.32 0) (-54.953 -237.938 0) (-52.5756 -233.146 0) (-49.3458 -223.966 0) (-45.896 -211.385 0) (-41.4979 -214.873 0) (-44.5678 -227.105 0) (-47.4002 -235.49 0) (-42.0815 -237.427 0) (-39.6241 -229.757 0) (-36.93 -217.928 0) (-34.2818 -204.415 0) (-38.4128 -201.272 0) (-42.3529 -197.676 0) (-38.8331 -183.612 0) (-35.2413 -169.398 0) (-31.5953 -155.199 0) (-28.9609 -158.948 0) (-32.1714 -173.11 0) (-35.3209 -187.267 0) (-31.607 -190.468 0) (-28.895 -176.375 0) (-26.1116 -162.263 0) (-23.0829 -165.15 0) (-25.448 -179.196 0) (-27.7287 -193.22 0) (-29.9939 -207.108 0) (-32.2324 -220.554 0) (-34.5528 -231.978 0) (-36.6404 -238.999 0) (-31.1072 -240.249 0) (-29.3838 -233.816 0) (-27.4335 -222.755 0) (-22.5557 -224.538 0) (-24.1417 -235.302 0) (-25.5165 -241.216 0) (-26.1424 -241.969 0) (-20.3356 -242.131 0) (-20.3263 -237.162 0) (-19.5768 -226.891 0) (-13.7305 -225.695 0) (-12.3048 -210.161 0) (-10.5987 -192.406 0) (-8.9053 -174.284 0) (-7.41488 -156.561 0) (-6.23974 -139.661 0) (-5.42414 -123.885 0) (-4.98394 -109.447 0) (-4.90349 -96.4741 0) (-5.14293 -84.9918 0) (-5.6431 -74.9385 0) (-6.33737 -66.193 0) (-7.16359 -58.6104 0) (-8.06819 -52.0231 0) (-5.23366 -52.9358 0) (-4.28042 -59.4785 0) (-3.38035 -66.9748 0) (-0.293396 -67.8543 0) (-1.25998 -60.41 0) (-2.25923 -53.8891 0) (0.873573 -54.8916 0) (1.91241 -61.4234 0) (2.93854 -68.8513 0) (3.93026 -77.3153 0) (0.617916 -76.382 0) (-2.5722 -75.5882 0) (-1.90936 -85.4481 0) (-1.45736 -96.6807 0) (-1.27591 -109.353 0) (2.47048 -109.573 0) (2.0614 -97.1465 0) (1.42569 -86.1058 0) (4.85124 -86.9481 0) (5.64628 -97.8513 0) (6.25913 -110.09 0) (10.1266 -110.804 0) (9.33503 -98.7196 0) (8.40151 -87.9283 0) (7.37805 -78.3649 0) (6.31196 -69.9295 0) (5.23507 -62.4968 0) (4.16899 -55.9387 0) (7.64627 -57.0174 0) (6.60048 -51.1629 0) (10.2717 -52.188 0) (9.27134 -46.8998 0) (8.33717 -42.1279 0) (7.46601 -37.7879 0) (11.359 -38.6315 0) (12.2286 -43.0212 0) (13.1669 -47.8449 0) (17.3177 -48.7835 0) (16.3729 -43.8934 0) (15.5011 -39.4438 0) (14.6953 -35.3665 0) (19.1028 -36.1185 0) (18.3643 -32.3058 0) (23.0566 -33.0078 0) (22.3759 -29.4223 0) (27.3812 -30.0716 0) (26.7507 -26.6908 0) (32.0962 -27.2905 0) (37.8138 -27.8851 0) (38.4437 -31.3485 0) (32.725 -30.7128 0) (33.4 -34.3944 0) (28.0576 -33.705 0) (28.789 -37.6316 0) (23.7903 -36.8777 0) (24.5879 -41.0803 0) (19.9026 -40.2562 0) (20.7737 -44.7766 0) (21.7241 -49.7464 0) (26.4171 -50.7254 0) (25.4602 -45.674 0) (30.4607 -46.5708 0) (29.5861 -41.9008 0) (34.9272 -42.7157 0) (34.1302 -38.3784 0) (39.8475 -39.1191 0) (39.1185 -35.0778 0) (45.2515 -35.756 0) (44.5778 -31.981 0) (43.946 -28.4775 0) (50.5414 -29.0687 0) (49.9509 -25.7595 0) (57.0859 -26.306 0) (56.5601 -23.1568 0) (56.069 -20.2542 0) (55.6052 -17.6377 0) (55.1407 -15.2626 0) (63.0306 -15.7258 0) (62.597 -13.5609 0) (71.2555 -13.9821 0) (70.8721 -12.0186 0) (70.4818 -10.2362 0) (80.0461 -10.6093 0) (80.3663 -12.3887 0) (80.6812 -14.3521 0) (80.9915 -16.5212 0) (71.6358 -16.1473 0) (72.0159 -18.5362 0) (63.4608 -18.1083 0) (63.8896 -20.7303 0) (64.3287 -23.6248 0) (72.7891 -24.0828 0) (72.3991 -21.1727 0) (81.619 -21.5658 0) (81.3024 -18.917 0) (91.3157 -19.2371 0) (91.095 -16.8356 0) (90.8709 -14.6611 0) (90.6425 -12.6959 0) (90.408 -10.9175 0) (101.517 -11.1509 0) (101.653 -12.9293 0) (101.778 -14.8938 0) (113.294 -15.0429 0) (113.291 -13.0776 0) (113.269 -11.3007 0) (125.505 -11.3648 0) (125.4 -13.1385 0) (125.274 -15.1018 0) (125.128 -17.2736 0) (113.284 -17.2257 0) (101.896 -17.0734 0) (102.004 -19.4852 0) (102.115 -22.1506 0) (91.5402 -21.8971 0) (91.7761 -24.8443 0) (81.9433 -24.4959 0) (82.2854 -27.7238 0) (73.2087 -27.2898 0) (64.8212 -26.8126 0) (65.351 -30.2257 0) (57.6553 -29.6555 0) (58.2726 -33.2329 0) (51.1717 -32.6104 0) (51.8397 -36.4277 0) (52.555 -40.5775 0) (45.9767 -39.853 0) (46.7671 -44.3276 0) (40.6431 -43.5252 0) (41.5192 -48.3555 0) (35.8037 -47.4649 0) (36.7719 -52.6915 0) (31.424 -51.7078 0) (32.4855 -57.3849 0) (27.4671 -56.3096 0) (22.7616 -55.2428 0) (18.3431 -54.1945 0) (14.1814 -53.1856 0) (15.2725 -59.1358 0) (11.3384 -58.0853 0) (12.4651 -64.7021 0) (8.74141 -63.6042 0) (9.86657 -71.0445 0) (13.6391 -72.1524 0) (17.6585 -73.2821 0) (16.4341 -65.7994 0) (20.6425 -66.9508 0) (19.4517 -60.2181 0) (23.8905 -61.3519 0) (25.1112 -68.1646 0) (26.4172 -75.776 0) (21.909 -74.4925 0) (23.2322 -82.9431 0) (18.9243 -81.6895 0) (14.8398 -80.5471 0) (11.0014 -79.4573 0) (12.1166 -88.9621 0) (13.1702 -99.6554 0) (14.1154 -111.603 0) (18.2742 -112.417 0) (17.1977 -100.603 0) (16.0387 -89.9991 0) (20.1995 -91.1213 0) (21.4553 -101.663 0) (22.6544 -113.368 0) (23.7488 -126.249 0) (19.2254 -125.457 0) (14.9048 -124.814 0) (10.7248 -124.186 0) (6.63699 -123.668 0) (2.60156 -123.386 0) (-1.41405 -123.457 0) (-1.89821 -138.891 0) (-2.72623 -155.468 0) (-3.87058 -172.921 0) (1.1286 -171.935 0) (1.93046 -154.764 0) (2.42536 -138.503 0) (6.74573 -138.519 0) (6.56466 -154.504 0) (6.09212 -171.419 0) (5.35776 -188.972 0) (0.0718682 -189.706 0) (-5.2462 -190.868 0) (-6.68987 -208.646 0) (-7.93715 -224.59 0) (-8.62405 -236.108 0) (-14.4623 -236.64 0) (-14.5419 -242.15 0) (-14.273 -242.403 0) (-19.8972 -241.927 0) (-18.8509 -236.455 0) (-17.6245 -225.915 0) (-16.5226 -212.577 0) (-21.0793 -211.182 0) (-25.5815 -209.361 0) (-23.7233 -195.528 0) (-21.8644 -181.58 0) (-19.909 -167.614 0) (-16.6236 -169.662 0) (-18.1781 -183.535 0) (-19.6272 -197.401 0) (-15.4734 -198.843 0) (-14.4215 -185.066 0) (-13.2585 -171.303 0) (-11.9777 -157.664 0) (-14.96 -155.91 0) (-17.8522 -153.766 0) (-20.6236 -151.224 0) (-23.2421 -148.276 0) (-25.6744 -144.917 0) (-27.8859 -141.143 0) (-24.1079 -127.306 0) (-20.2705 -113.757 0) (-16.3927 -100.571 0) (-15.3556 -104.381 0) (-18.8609 -117.564 0) (-22.3067 -131.1 0) (-20.2787 -134.499 0) (-17.2206 -120.998 0) (-14.0852 -107.842 0) (-10.8901 -95.0838 0) (-11.8122 -91.5999 0) (-12.5 -87.7845 0) (-8.60355 -75.3899 0) (-4.6951 -63.3887 0) (-0.69228 -51.7319 0) (-0.988461 -55.5728 0) (-4.66941 -67.2185 0) (-8.25099 -79.2143 0) (-7.65792 -82.7261 0) (-4.39408 -70.7512 0) (-1.03623 -59.1274 0) (-0.859058 -62.396 0) (-3.8987 -73.9895 0) (-6.85319 -85.9254 0) (-9.76196 -98.2386 0) (-12.6114 -110.954 0) (-15.3818 -124.061 0) (-18.0573 -137.505 0) (-15.6748 -140.126 0) (-13.3749 -126.757 0) (-10.9632 -113.72 0) (-9.16971 -116.146 0) (-11.2302 -129.093 0) (-13.1625 -142.366 0) (-10.5501 -144.234 0) (-8.97584 -131.075 0) (-7.25837 -118.238 0) (-5.41229 -105.768 0) (-6.99658 -103.576 0) (-8.45508 -101.068 0) (-5.86581 -88.8147 0) (-3.21365 -76.9344 0) (-0.48192 -65.3817 0) (0.0698844 -68.0907 0) (-2.36789 -79.588 0) (-4.7223 -91.3986 0) (-3.448 -93.6813 0) (-1.38957 -81.9551 0) (0.770265 -70.5325 0) (1.59453 -72.7324 0) (-0.30117 -84.0303 0) (-2.06959 -95.6675 0) (-3.72699 -107.65 0) (-5.25453 -120.002 0) (-6.63847 -132.712 0) (-7.86542 -145.739 0) (-8.93426 -159.036 0) (-9.84465 -172.546 0) (-10.6274 -186.186 0) (-11.2956 -199.863 0) (-11.9459 -213.549 0) (-12.6667 -226.889 0) (-13.5357 -237.285 0) (-8.22554 -237.783 0) (-8.66467 -242.642 0) (-8.76846 -242.054 0) (-2.99466 -241.969 0) (-2.79535 -235.7 0) (-2.16842 -223.709 0) (-1.10593 -207.472 0) (4.45559 -206.622 0) (3.58667 -223.045 0) (3.02677 -235.431 0) (8.83992 -235.223 0) (9.32999 -222.591 0) (9.99641 -206.118 0) (10.6147 -188.608 0) (11.0353 -171.255 0) (11.1991 -154.566 0) (11.0913 -138.814 0) (15.4974 -139.246 0) (15.8623 -154.796 0) (15.9809 -171.291 0) (20.9572 -171.342 0) (20.5928 -155.039 0) (20.0091 -139.691 0) (24.6901 -140.281 0) (25.4473 -155.39 0) (26.0104 -171.43 0) (26.3752 -188.159 0) (21.0976 -188.342 0) (15.8542 -188.464 0) (15.5205 -205.831 0) (15.0611 -222.261 0) (14.6349 -234.993 0) (20.3972 -234.572 0) (20.7758 -221.872 0) (21.0316 -205.557 0) (26.5452 -205.102 0) (26.4677 -221.154 0) (26.1008 -233.651 0) (25.4905 -239.989 0) (19.9219 -241.106 0) (14.2537 -241.627 0) (8.52971 -241.848 0) (2.77488 -241.934 0) (2.52846 -242.828 0) (-3.06826 -242.764 0) (-2.95492 -238.031 0) (-2.83767 -227.653 0) (-7.71993 -227.458 0) (-7.38588 -214.102 0) (-7.12281 -200.467 0) (-6.82512 -186.904 0) (-6.41007 -173.402 0) (-2.98036 -173.879 0) (-3.04524 -187.223 0) (-2.98869 -200.654 0) (-2.88421 -214.227 0) (1.56756 -213.999 0) (2.02758 -227.542 0) (2.31838 -238.088 0) (7.57423 -237.863 0) (8.11141 -242.725 0) (13.657 -242.376 0) (12.7817 -237.281 0) (11.6609 -226.295 0) (6.8723 -227.107 0) (6.00591 -213.467 0) (5.13793 -199.977 0) (1.08645 -200.47 0) (0.683485 -187.167 0) (0.407132 -173.995 0) (3.74129 -173.776 0) (4.36253 -186.791 0) (8.0254 -186.141 0) (9.16253 -199.201 0) (10.4021 -212.613 0) (14.7101 -211.366 0) (16.3393 -225.018 0) (17.889 -236.22 0) (19.127 -241.628 0) (24.4569 -240.216 0) (22.8102 -234.461 0) (20.8231 -223.123 0) (18.8592 -209.611 0) (16.9547 -196.544 0) (13.1215 -198.088 0) (11.6415 -185.192 0) (10.3433 -172.504 0) (7.05859 -173.274 0) (6.29108 -160.609 0) (3.30774 -160.939 0) (0.290331 -160.98 0) (-2.77087 -160.684 0) (-5.85696 -160.039 0) (-5.13477 -146.891 0) (-4.2437 -134.013 0) (-3.18352 -121.448 0) (-1.07325 -122.587 0) (-1.81711 -134.992 0) (-2.38319 -147.704 0) (0.360579 -148.181 0) (0.615279 -135.644 0) (1.05737 -123.407 0) (1.67605 -111.494 0) (-0.163582 -110.509 0) (-1.96713 -109.231 0) (-0.615781 -97.3687 0) (0.878742 -85.8213 0) (2.5297 -74.6974 0) (3.55459 -76.43 0) (2.14047 -87.3821 0) (0.904154 -98.7648 0) (2.47493 -99.9169 0) (3.4646 -88.7077 0) (4.64634 -77.9341 0) (5.78092 -79.2128 0) (4.82668 -89.7977 0) (4.07758 -100.818 0) (3.5349 -112.215 0) (3.19002 -123.947 0) (3.03415 -135.997 0) (3.07338 -148.338 0) (5.74258 -148.194 0) (5.41684 -136.047 0) (5.30217 -124.197 0) (7.38144 -124.194 0) (7.77601 -135.847 0) (8.39711 -147.801 0) (9.25355 -160.028 0) (12.1594 -159.153 0) (13.5535 -171.402 0) (15.1605 -183.869 0) (18.5081 -182.053 0) (20.5735 -194.426 0) (22.7466 -207.169 0) (24.9831 -220.436 0) (27.4052 -231.95 0) (29.5361 -238.156 0) (30.885 -238.393 0) (31.7382 -232.474 0) (32.2125 -220.399 0) (32.2034 -204.764 0) (31.8632 -188.197 0) (31.3011 -171.798 0) (30.5384 -156.043 0) (29.5933 -141.165 0) (28.4862 -127.303 0) (27.2523 -114.54 0) (25.9369 -102.906 0) (24.5848 -92.39 0) (29.2148 -93.7511 0) (27.7928 -84.2778 0) (32.628 -85.6643 0) (31.2059 -77.1002 0) (29.8639 -69.4097 0) (28.6157 -62.5088 0) (33.6514 -63.6808 0) (34.9231 -70.6772 0) (36.2958 -78.4553 0) (37.7568 -87.0916 0) (39.2869 -96.6541 0) (34.1095 -95.1767 0) (35.6219 -105.697 0) (30.6534 -104.262 0) (32.0737 -115.852 0) (37.1319 -117.259 0) (42.4415 -118.741 0) (40.8592 -107.195 0) (46.3807 -108.739 0) (44.7639 -98.1702 0) (43.1977 -88.5499 0) (41.7072 -79.8343 0) (40.3112 -71.9624 0) (39.0214 -64.8647 0) (37.8422 -58.4665 0) (43.5635 -59.5508 0) (42.489 -53.6746 0) (48.6037 -54.6528 0) (47.6381 -49.2398 0) (54.1911 -50.1128 0) (53.3331 -45.1192 0) (60.3734 -45.8937 0) (59.6187 -41.2872 0) (58.9245 -37.0882 0) (66.5458 -37.728 0) (65.9296 -33.839 0) (74.186 -34.408 0) (73.6819 -30.7501 0) (82.6588 -31.2171 0) (83.0595 -34.915 0) (83.5083 -38.874 0) (74.736 -38.3303 0) (75.3278 -42.6209 0) (67.2013 -41.9729 0) (67.9161 -46.6423 0) (68.7096 -51.7952 0) (61.2069 -50.9677 0) (62.135 -56.5683 0) (55.144 -55.6201 0) (56.2035 -61.703 0) (49.6756 -60.6323 0) (50.8612 -67.2443 0) (44.75 -66.0551 0) (46.0505 -73.2579 0) (47.4602 -81.2275 0) (53.5733 -82.622 0) (52.162 -74.5537 0) (58.6648 -75.8375 0) (57.3768 -68.4225 0) (64.3155 -69.5776 0) (63.1691 -62.7531 0) (70.5895 -63.7705 0) (69.5973 -57.487 0) (77.5441 -58.364 0) (76.716 -52.5837 0) (75.9817 -47.3528 0) (84.5784 -48.0118 0) (84.0087 -43.2148 0) (93.2351 -43.7393 0) (92.85 -39.3399 0) (92.5308 -35.3361 0) (92.2573 -31.6072 0) (92.0213 -28.0926 0) (102.34 -28.3755 0) (102.237 -25.1052 0) (113.222 -25.2739 0) (113.25 -22.3043 0) (113.268 -19.6401 0) (124.973 -19.6765 0) (124.799 -22.3509 0) (124.577 -25.3629 0) (124.349 -28.6602 0) (113.142 -28.5619 0) (113.081 -32.1005 0) (102.424 -31.9058 0) (102.55 -35.659 0) (102.725 -39.718 0) (113.082 -40.0089 0) (113.051 -35.886 0) (123.968 -36.0318 0) (124.143 -32.1981 0) (135.543 -32.2343 0) (135.883 -28.6653 0) (136.227 -25.3814 0) (136.591 -22.3587 0) (136.934 -19.6231 0) (137.259 -17.2001 0) (137.54 -15.0433 0) (137.798 -13.0993 0) (138.03 -11.3418 0) (138.229 -9.75766 0) (138.397 -8.33377 0) (138.526 -7.05606 0) (138.619 -5.90602 0) (138.674 -4.86913 0) (138.693 -3.9344 0) (138.675 -3.08693 0) (138.617 -2.3205 0) (138.528 -1.62814 0) (138.399 -1.00173 0) (138.24 -0.423028 0) (138.061 0.131428 0) (137.864 0.650742 0) (137.61 1.11265 0) (137.279 1.50063 0) (136.896 1.84777 0) (150.7 1.57732 0) (151.033 1.25504 0) (151.282 0.861385 0) (164.683 0.626233 2.26966e-20) (164.503 1.0153 2.26852e-20) (164.248 1.34466 -2.27139e-20) (177.243 1.11985 0) (177.426 0.789505 0) (177.562 0.420996 0) (177.676 0.0335356 0) (164.826 0.202207 -2.26668e-20) (151.467 0.409275 0) (151.624 -0.0772891 0) (151.761 -0.583819 0) (151.871 -1.13207 0) (165.113 -1.22279 -2.2668e-20) (165.055 -0.706839 0) (164.955 -0.240103 0) (177.775 -0.367107 0) (177.834 -0.802489 0) (177.85 -1.28544 0) (189.906 -1.31383 0) (189.915 -0.8543 0) (189.884 -0.444449 0) (189.814 -0.0769375 0) (189.708 0.264987 0) (189.589 0.599389 0) (189.441 0.914717 0) (200.789 0.724554 -2.27169e-20) (200.955 0.428973 1.70723e-25) (201.119 0.124335 2.27069e-20) (212.39 -0.108045 0) (212.106 0.184665 0) (211.832 0.466789 0) (223.113 0.115089 0) (223.535 -0.164451 0) (223.945 -0.468551 0) (224.332 -0.80671 0) (212.655 -0.431632 0) (201.272 -0.205563 0) (201.395 -0.571523 0) (201.491 -0.975289 0) (201.56 -1.43178 0) (213.357 -1.6676 0) (213.144 -1.2028 0) (212.909 -0.793783 0) (224.694 -1.18273 0) (225.029 -1.60277 0) (225.33 -2.07483 0) (225.591 -2.60707 0) (213.543 -2.19607 0) (201.602 -1.94887 0) (189.859 -1.83085 0) (177.818 -1.82418 0) (165.126 -1.79912 2.26405e-20) (151.939 -1.7348 0) (151.963 -2.40109 0) (151.946 -3.13993 0) (151.889 -3.962 0) (164.88 -3.94067 0) (165.009 -3.14797 0) (165.094 -2.43843 0) (177.742 -2.43035 0) (177.61 -3.10483 0) (177.434 -3.85762 0) (177.195 -4.70993 0) (164.707 -4.82082 0) (151.789 -4.87353 0) (151.643 -5.88512 0) (151.453 -7.01253 0) (151.221 -8.27092 0) (163.887 -8.1151 0) (164.206 -6.8899 0) (164.481 -5.79931 0) (176.917 -5.66863 0) (176.599 -6.75186 0) (176.252 -8.00157 0) (188.59 -8.00356 0) (188.864 -6.7604 0) (189.11 -5.66776 0) (189.325 -4.70457 0) (189.51 -3.84348 0) (189.662 -3.0822 0) (189.776 -2.41747 0) (201.617 -2.53458 0) (201.611 -3.19847 0) (201.576 -3.95372 0) (213.883 -4.25053 0) (213.813 -3.47891 0) (213.697 -2.79687 0) (225.802 -3.20828 0) (225.954 -3.88602 0) (226.039 -4.6461 0) (226.048 -5.4963 0) (213.901 -5.11855 0) (201.522 -4.81347 0) (201.433 -5.79134 0) (201.302 -6.90379 0) (201.116 -8.16549 0) (213.548 -8.43577 0) (213.747 -7.19695 0) (213.86 -6.09543 0) (225.968 -6.4491 0) (225.788 -7.51708 0) (225.495 -8.71106 0) (236.383 -8.90418 0) (236.848 -7.77591 0) (237.175 -6.76212 0) (237.375 -5.85333 0) (237.461 -5.03952 0) (237.445 -4.30974 0) (237.338 -3.65404 0) (237.152 -3.06639 0) (236.896 -2.54159 2.28861e-20) (236.578 -2.0722 -2.29002e-20) (236.21 -1.6504 0) (235.799 -1.27117 0) (235.351 -0.928981 -1.78624e-22) (234.871 -0.620132 1.78562e-22) (234.363 -0.341718 0) (244.603 -0.825005 0) (245.11 -1.10197 -1.78074e-22) (245.574 -1.40636 1.78138e-22) (252.956 -1.74838 0) (252.649 -1.47462 0) (252.286 -1.2229 0) (256.628 -1.41828 0) (256.759 -1.62821 0) (256.828 -1.85649 0) (256.827 -2.10506 0) (253.201 -2.04548 0) (245.991 -1.73982 0) (246.354 -2.10648 2.28333e-20) (246.656 -2.51157 -2.28466e-20) (246.886 -2.95774 0) (253.486 -3.11891 0) (253.473 -2.72607 0) (253.375 -2.36974 -1.77043e-22) (256.749 -2.3774 1.74254e-22) (256.587 -2.67719 0) (256.334 -3.01005 0) (256.96 -2.74497 0) (257.419 -2.46608 0) (257.786 -2.21579 0) (258.07 -1.9891 0) (258.276 -1.78329 0) (258.414 -1.59621 0) (258.488 -1.4248 0) (259.021 -1.30759 0) (258.801 -1.44468 0) (258.519 -1.59485 0) (258.252 -1.33345 0) (258.631 -1.21683 0) (258.95 -1.11102 0) (258.661 -0.868288 0) (258.278 -0.94619 0) (257.835 -1.03238 0) (257.325 -1.12838 0) (257.806 -1.46308 0) (258.17 -1.76104 0) (257.745 -1.94504 0) (257.237 -2.14917 0) (256.637 -2.37681 0) (255.986 -1.94994 0) (256.682 -1.76927 0) (257.285 -1.60772 0) (256.739 -1.23591 0) (256.072 -1.35657 0) (255.312 -1.49236 0) (254.448 -1.64456 0) (255.187 -2.1524 0) (255.935 -2.63203 0) (256.4 -3.05655 0) (255.98 -3.38072 0) (253.403 -3.55338 0) (247.035 -3.45124 0) (247.094 -3.99847 0) (247.053 -4.60608 0) (246.897 -5.28107 0) (252.472 -5.16843 0) (252.907 -4.57086 0) (253.213 -4.03453 0) (255.514 -3.79364 0) (254.927 -4.25557 0) (254.208 -4.7716 0) (253.344 -5.34829 0) (251.898 -5.83405 0) (246.616 -6.03238 0) (246.198 -6.87001 0) (245.628 -7.80363 0) (244.895 -8.84137 0) (249.201 -8.33165 0) (250.275 -7.40749 0) (251.17 -6.57783 0) (252.321 -5.99461 0) (251.126 -6.71638 0) (249.746 -7.52124 0) (248.693 -6.58561 0) (250.29 -5.89544 0) (251.698 -5.27767 0) (252.934 -4.72567 0) (254.007 -4.23429 0) (254.935 -3.79604 0) (255.729 -3.40499 0) (255.122 -2.91912 -2.12761e-20) (254.186 -3.24259 2.1228e-20) (253.114 -3.60673 0) (252.067 -2.93015 0) (253.24 -2.63906 0) (254.276 -2.38083 0) (253.47 -1.81571 0) (252.365 -2.00981 0) (251.122 -2.22998 0) (249.729 -2.47784 0) (250.745 -3.25781 0) (251.895 -4.0157 0) (250.513 -4.47585 -2.1348e-20) (248.955 -4.99195 2.12717e-20) (247.206 -5.57005 0) (245.735 -4.50581 0) (247.594 -4.04138 0) (249.258 -3.62707 0) (248.168 -2.75731 0) (246.428 -3.07137 0) (244.49 -3.42373 0) (242.343 -3.81704 0) (243.667 -5.02466 0) (245.25 -6.21547 0) (246.89 -7.35627 0) (248.163 -8.41952 0) (247.93 -9.36173 0) (243.982 -9.99684 0) (235.765 -10.161 0) (225.076 -10.0434 0) (213.251 -9.82222 0) (200.865 -9.58442 0) (188.302 -9.41263 0) (175.877 -9.41238 0) (163.508 -9.48943 0) (150.942 -9.66508 0) (150.628 -11.2164 0) (150.281 -12.9515 0) (149.877 -14.8945 0) (162.201 -14.8194 2.25619e-20) (162.654 -12.8205 -2.26103e-20) (163.092 -11.0381 0) (175.476 -10.9848 0) (175.047 -12.7608 0) (174.621 -14.7576 0) (174.157 -16.9949 0) (161.729 -17.0292 0) (149.458 -17.1031 0) (149.024 -19.5804 0) (148.578 -22.3143 0) (148.137 -25.334 0) (160.234 -25.2884 0) (160.766 -22.2584 0) (161.26 -19.5046 0) (173.645 -19.4861 0) (173.07 -22.2304 0) (172.431 -25.2356 0) (184.563 -25.1506 0) (185.349 -22.1944 0) (186.043 -19.4945 0) (186.645 -17.0365 0) (187.162 -14.8135 0) (187.601 -12.8064 0) (187.978 -11.0063 0) (200.538 -11.1701 0) (200.122 -12.9435 0) (199.606 -14.9108 0) (211.666 -14.9842 0) (212.321 -13.0827 0) (212.847 -11.365 0) (224.521 -11.5231 0) (223.819 -13.1681 0) (222.958 -14.9879 0) (221.932 -16.9959 0) (210.874 -17.0828 0) (198.981 -17.0835 0) (198.239 -19.4806 0) (197.376 -22.113 0) (196.392 -24.9972 0) (207.602 -24.7299 0) (208.846 -21.9413 0) (209.935 -19.3979 0) (220.727 -19.2105 0) (219.339 -21.6418 0) (217.755 -24.3043 0) (215.964 -27.2107 0) (206.196 -27.781 0) (195.286 -28.1515 0) (183.688 -28.3805 0) (171.731 -28.5139 0) (159.667 -28.5914 0) (147.678 -28.6382 0) (147.22 -32.23 0) (146.78 -36.143 0) (135.238 -36.1149 0) (134.985 -40.3587 0) (123.859 -40.2201 0) (123.824 -44.8257 0) (113.195 -44.547 0) (102.979 -44.1846 0) (103.317 -49.124 0) (93.6985 -48.6059 0) (94.2484 -53.9908 0) (85.2317 -53.32 0) (85.9782 -59.1853 0) (94.8888 -59.9351 0) (104.248 -60.5971 0) (103.741 -54.5826 0) (113.665 -55.0818 0) (113.391 -49.5574 0) (123.859 -49.8976 0) (123.955 -55.4727 0) (124.102 -61.5797 0) (114.01 -61.1527 0) (114.416 -67.7961 0) (104.835 -67.1983 0) (95.6198 -66.4746 0) (86.8223 -65.6486 0) (78.474 -64.7411 0) (79.5083 -71.7583 0) (71.6907 -70.6952 0) (72.9001 -78.307 0) (65.5742 -77.0945 0) (66.9398 -85.3512 0) (60.0626 -84.0026 0) (61.5588 -92.9661 0) (55.0842 -91.5048 0) (48.9681 -90.0263 0) (50.5562 -99.7078 0) (52.1993 -110.306 0) (53.8645 -121.838 0) (48.0155 -120.276 0) (49.6298 -132.779 0) (43.9955 -131.294 0) (38.6011 -129.868 0) (33.4351 -128.527 0) (34.695 -142.258 0) (35.8146 -156.962 0) (36.759 -172.499 0) (42.3387 -173.393 0) (41.249 -158.048 0) (39.9877 -143.491 0) (45.479 -144.82 0) (46.8446 -159.234 0) (48.0356 -174.379 0) (48.9711 -189.96 0) (43.1973 -189.259 0) (37.4893 -188.623 0) (37.9533 -204.826 0) (38.0035 -219.973 0) (37.4039 -231.459 0) (43.0132 -230.456 0) (43.7752 -219.681 0) (43.742 -205.086 0) (49.5355 -205.356 0) (49.4811 -219.306 0) (48.501 -229.225 0) (53.8226 -227.611 0) (55.0976 -218.693 0) (55.3238 -205.519 0) (54.8087 -190.637 0) (53.8546 -175.392 0) (52.6103 -160.47 0) (51.1791 -146.208 0) (57.0936 -147.616 0) (55.512 -134.29 0) (61.6449 -135.791 0) (59.9949 -123.395 0) (58.3249 -111.874 0) (56.6768 -101.246 0) (63.1346 -102.763 0) (64.7624 -113.413 0) (66.4073 -124.916 0) (68.0234 -137.24 0) (69.5497 -150.31 0) (63.221 -149 0) (64.6525 -162.899 0) (58.5485 -161.71 0) (59.7943 -176.374 0) (65.8401 -177.26 0) (71.9644 -177.975 0) (70.903 -163.979 0) (77.2719 -164.879 0) (76.0589 -151.489 0) (74.6338 -138.591 0) (73.0942 -126.36 0) (71.51 -114.892 0) (69.9324 -104.231 0) (68.3994 -94.3878 0) (75.6062 -95.744 0) (74.2102 -86.6462 0) (81.87 -87.8626 0) (80.6436 -79.4546 0) (88.7947 -80.5135 0) (87.7633 -72.7473 0) (96.4367 -73.6401 0) (105.492 -74.4112 0) (106.205 -82.2543 0) (97.3293 -81.457 0) (98.2811 -89.9422 0) (89.9037 -88.972 0) (91.0698 -98.1372 0) (83.1702 -97.0052 0) (84.5191 -106.892 0) (77.0656 -105.619 0) (78.5571 -116.274 0) (80.0381 -127.683 0) (87.2084 -128.833 0) (85.8814 -117.514 0) (93.4455 -118.564 0) (92.264 -108.009 0) (100.255 -108.922 0) (99.2677 -99.101 0) (107.706 -99.8529 0) (106.953 -90.7365 0) (115.846 -91.3127 0) (115.357 -82.8704 0) (114.872 -75.0316 0) (124.491 -75.4667 0) (124.286 -68.2398 0) (134.339 -68.4952 0) (134.426 -61.8508 0) (134.518 -55.735 0) (134.634 -50.1318 0) (134.786 -45.0171 0) (145.977 -45.1095 0) (146.367 -40.4221 0) (157.876 -40.3958 0) (158.482 -36.1092 0) (159.08 -32.1869 0) (170.982 -32.0894 0) (170.185 -35.9919 0) (169.342 -40.2523 0) (168.445 -44.8976 0) (157.258 -45.081 0) (156.617 -50.1932 0) (145.604 -50.2401 0) (145.233 -55.841 0) (144.85 -61.9309 0) (155.204 -61.775 0) (155.939 -55.7537 0) (166.43 -55.4234 0) (167.48 -49.9496 0) (177.947 -49.4555 0) (179.305 -44.5117 0) (180.544 -39.9502 0) (181.681 -35.7558 0) (182.727 -31.9073 0) (194.055 -31.5962 0) (192.694 -35.3518 0) (191.193 -39.4374 0) (200.915 -38.6698 0) (202.867 -34.7372 0) (204.622 -31.1116 0) (213.953 -30.3722 0) (211.704 -33.7966 0) (209.193 -37.4876 0) (206.392 -41.4432 0) (198.745 -42.9152 0) (189.537 -43.8684 0) (187.701 -48.6536 0) (185.66 -53.7918 0) (176.448 -54.7896 0) (174.78 -60.5122 0) (165.271 -61.3243 0) (163.973 -67.6463 0) (154.387 -68.2597 0) (144.433 -68.5198 0) (143.954 -75.607 0) (134.236 -75.6753 0) (134.087 -83.3864 0) (124.693 -83.2641 0) (124.858 -91.6223 0) (124.946 -100.513 0) (116.303 -100.343 0) (116.679 -109.921 0) (108.425 -109.579 0) (109.05 -119.862 0) (101.195 -119.368 0) (102.02 -130.365 0) (94.5577 -129.75 0) (95.5207 -141.463 0) (88.4321 -140.77 0) (81.4501 -139.788 0) (82.7118 -152.471 0) (83.7087 -165.517 0) (84.2812 -178.542 0) (78.1324 -178.434 0) (78.4437 -191.568 0) (72.5721 -191.779 0) (66.6384 -191.631 0) (60.7054 -191.219 0) (61.0897 -205.489 0) (60.5898 -217.739 0) (58.9421 -225.51 0) (63.8241 -222.839 0) (65.9292 -216.342 0) (66.8036 -205.179 0) (72.4203 -204.491 0) (71.0611 -214.419 0) (68.3949 -219.545 0) (72.601 -215.577 0) (75.917 -211.884 0) (77.8465 -203.31 0) (82.9929 -201.479 0) (84.1754 -190.891 0) (89.6875 -189.629 0) (90.3353 -178.186 0) (90.1511 -165.801 0) (89.4573 -153.179 0) (96.2246 -153.523 0) (96.5182 -165.617 0) (96.1791 -177.239 0) (94.8384 -187.616 0) (92.1322 -195.447 0) (87.7855 -198.889 0) (84.4514 -204.486 0) (80.4106 -208.602 0) (76.3673 -210.857 0) (79.6271 -205.348 0) (82.3171 -199.036 0) (87.9548 -199.491 0) (90.8375 -193.589 0) (95.9187 -191.041 0) (99.4991 -184.708 0) (101.693 -175.594 0) (102.708 -164.859 0) (102.925 -153.405 0) (102.639 -141.785 0) (109.683 -141.646 0) (109.505 -130.605 0) (116.896 -130.382 0) (116.907 -119.975 0) (124.63 -119.628 0) (124.896 -109.88 0) (132.912 -109.378 0) (133.486 -100.296 0) (133.855 -91.6077 0) (142.66 -91.1989 0) (143.379 -83.1778 0) (152.363 -82.5635 0) (153.454 -75.1979 0) (162.495 -74.37 0) (160.786 -81.4569 0) (158.779 -88.842 0) (151.058 -90.3092 0) (149.467 -98.3575 0) (141.736 -99.611 0) (140.526 -108.318 0) (138.924 -117.169 0) (132.04 -118.731 0) (130.749 -128.17 0) (124.042 -129.604 0) (122.99 -139.57 0) (116.523 -140.94 0) (115.625 -151.341 0) (109.44 -152.717 0) (108.565 -163.401 0) (106.716 -173.096 0) (111.072 -169.59 0) (113.917 -161.132 0) (118.561 -157.897 0) (121.262 -149.176 0) (126.133 -146.063 0) (128.867 -137.41 0) (133.892 -134.309 0) (136.791 -125.937 0) (141.847 -122.759 0) (145.02 -114.802 0) (147.496 -106.585 0) (153.504 -104.034 0) (156.388 -96.421 0) (162.125 -93.6281 0) (165.469 -86.6711 0) (168.319 -79.7655 0) (170.771 -73.046 0) (172.904 -66.6085 0) (180.802 -65.0543 0) (183.376 -59.2693 0) (190.603 -57.43 0) (193.627 -52.318 0) (196.327 -47.4698 0) (203.269 -45.6541 0) (199.784 -50.1028 0) (195.893 -54.7619 0) (198.529 -51.3203 0) (203.354 -47.1639 0) (207.723 -43.1527 0) (211.668 -39.3241 0) (215.221 -35.7053 0) (218.417 -32.3109 0) (221.285 -29.1483 0) (223.854 -26.2183 0) (226.144 -23.5166 0) (228.177 -21.0353 0) (229.967 -18.7643 0) (231.53 -16.6918 0) (232.878 -14.8095 0) (234.025 -13.1011 0) (234.984 -11.5544 0) (242.879 -11.2771 0) (241.568 -12.6974 0) (240.036 -14.2652 0) (242.794 -13.1664 0) (244.743 -11.7697 0) (246.451 -10.5034 0) (246.365 -9.41747 0) (244.333 -10.5243 0) (242.053 -11.7456 0) (239.511 -13.0877 0) (240.587 -14.7019 0) (238.269 -15.9911 0) (236.248 -17.8891 0) (233.959 -19.9652 0) (231.383 -22.2279 0) (232.248 -20.2256 0) (235.33 -18.2268 0) (238.104 -16.3875 0) (236.687 -14.5595 0) (233.569 -16.1638 0) (230.141 -17.9057 0) (227.296 -15.5259 0) (230.944 -14.0238 0) (234.286 -12.6407 0) (237.336 -11.3728 0) (240.105 -10.217 0) (242.611 -9.16581 0) (244.869 -8.2138 0) (243.073 -6.93378 0) (240.658 -7.73072 -2.14706e-20) (237.994 -8.61055 2.13464e-20) (236.067 -6.95283 0) (238.847 -6.24378 0) (241.377 -5.60227 0) (239.971 -4.255 0) (237.358 -4.74095 0) (234.492 -5.27772 0) (231.358 -5.86772 0) (233.018 -7.73278 0) (235.065 -9.57918 0) (231.855 -10.6409 0) (228.355 -11.7988 0) (224.55 -13.0559 0) (222.149 -10.5306 0) (226.071 -9.51948 0) (229.69 -8.5876 0) (227.944 -6.51391 0) (224.238 -7.21906 0) (220.23 -7.98398 0) (215.91 -8.80919 0) (217.915 -11.6219 0) (220.43 -14.4136 0) (223.329 -17.1491 0) (226.388 -19.7884 0) (228.842 -22.3869 0) (228.501 -24.6823 0) (225.291 -27.3302 0) (221.733 -30.1699 0) (217.804 -33.1961 0) (216.5 -29.8431 0) (220.986 -27.1996 0) (225.095 -24.7122 0) (222.296 -21.814 0) (217.853 -23.9821 0) (213.048 -26.2884 0) (207.872 -28.7255 0) (211.617 -32.6339 0) (213.482 -36.3968 0) (208.744 -39.7531 0) (203.568 -43.2426 0) (197.929 -46.8379 0) (194.446 -41.7381 0) (200.595 -38.5999 0) (206.321 -35.5579 0) (202.318 -31.2823 0) (196.384 -33.9409 0) (190.066 -36.6754 0) (185.898 -31.6033 0) (192.317 -29.2734 0) (198.375 -27.0067 0) (204.073 -24.8226 0) (209.412 -22.736 0) (214.396 -20.7573 0) (219.032 -18.8935 0) (215.986 -15.8719 0) (211.209 -17.4291 0) (206.092 -19.0813 0) (203.257 -15.3673 0) (208.475 -14.0427 0) (213.359 -12.7931 0) (211.271 -9.69438 0) (206.307 -10.6382 0) (201.013 -11.6379 0) (195.388 -12.6894 0) (197.703 -16.7616 0) (200.632 -20.8221 0) (194.825 -22.6424 0) (188.672 -24.5299 0) (182.174 -26.4692 0) (179.022 -21.2757 0) (185.582 -19.7269 0) (191.811 -18.2181 0) (189.432 -13.7871 0) (183.146 -14.9233 0) (176.537 -16.0887 0) (174.793 -11.0886 0) (181.435 -10.2887 0) (187.76 -9.5082 0) (193.761 -8.75369 0) (199.434 -8.03043 0) (204.78 -7.34243 0) (209.799 -6.69255 0) (214.495 -6.08268 0) (218.872 -5.51387 0) (222.939 -4.98636 0) (226.704 -4.49967 0) (230.177 -4.05253 0) (233.368 -3.64448 0) (236.292 -3.2739 0) (238.96 -2.93858 0) (241.387 -2.63647 0) (243.586 -2.36564 0) (245.575 -2.12308 0) (247.365 -1.90666 0) (248.975 -1.71393 0) (250.415 -1.54286 0) (251.704 -1.39147 0) (252.852 -1.25853 0) (253.873 -1.14042 0) (254.777 -1.03531 1.71228e-22) (255.579 -0.942209 0) (256.287 -0.859757 0) (256.912 -0.786333 0) (257.462 -0.720879 -1.7152e-22) (257.945 -0.662165 0) (258.367 -0.609366 0) (258.164 -0.356747 0) (257.719 -0.387072 -2.32793e-23) (257.215 -0.420859 1.86468e-22) (256.643 -0.45857 0) (255.996 -0.500938 0) (255.265 -0.548539 0) (254.441 -0.602328 -1.86091e-22) (253.513 -0.662988 0) (252.468 -0.731482 0) (251.295 -0.80866 -2.32001e-23) (249.979 -0.896398 0) (248.512 -0.995742 0) (246.875 -1.10759 0) (245.057 -1.2332 2.32011e-23) (243.038 -1.37423 2.32528e-23) (240.808 -1.53205 0) (238.349 -1.70808 0) (235.649 -1.90286 0) (232.692 -2.11792 -1.19661e-20) (229.466 -2.35402 1.18809e-20) (225.959 -2.61229 0) (222.16 -2.89432 0) (218.059 -3.20019 0) (213.647 -3.52994 0) (208.918 -3.88338 0) (203.866 -4.25989 0) (198.489 -4.65832 0) (192.787 -5.07702 0) (186.759 -5.51362 0) (180.411 -5.96508 0) (173.749 -6.4275 0) (166.782 -6.89618 0) (167.842 -11.8999 0) (169.614 -17.2715 0) (172.137 -22.8493 0) (175.34 -28.4413 0) (179.126 -33.9737 0) (183.375 -39.4592 0) (187.882 -44.9427 0) (191.802 -50.5009 0) (193.221 -55.5774 0) (191.546 -59.5891 0) (187.203 -62.7618 0) (183.366 -68.2563 0) (177.883 -71.0905 0) (174.55 -77.2957 0) (170.717 -83.5663 0) (174.105 -79.4415 0) (179.024 -73.8449 0) (181.303 -69.4916 0) (186.697 -64.5226 0) (187.391 -59.8792 0) (185.179 -54.1883 0) (178.056 -57.8523 0) (180.993 -64.1462 0) (174.022 -68.3043 0) (175.309 -74.4109 0) (168.662 -79.1464 0) (168.547 -84.9513 0) (166.282 -89.7897 0) (161.16 -95.8447 0) (158.157 -100.478 0) (153.448 -107.05 0) (149.963 -111.473 0) (145.611 -118.499 0) (147.931 -113.138 0) (148.637 -106.736 0) (155.301 -101.575 0) (155.315 -95.0687 0) (162.298 -90.2288 0) (161.351 -83.5466 0) (153.384 -87.4711 0) (144.794 -90.8554 0) (147.56 -99.2418 0) (139.063 -102.599 0) (141.111 -111.049 0) (141.538 -118.476 0) (140.373 -124.842 0) (137.778 -130.134 0) (132.731 -136.564 0) (130.002 -141.866 0) (125.05 -148.147 0) (122.317 -153.574 0) (117.308 -159.376 0) (114.658 -165.022 0) (109.447 -169.902 0) (106.937 -175.879 0) (103.574 -180.823 0) (99.0354 -185.627 0) (93.0336 -186.789 0) (85.7717 -184.024 0) (84.3633 -191.898 0) (77.0482 -186.388 0) (75.5266 -194.171 0) (73.5011 -201.372 0) (70.974 -207.933 0) (67.9362 -213.775 0) (64.4261 -218.904 0) (60.4827 -223.363 0) (56.1732 -227.17 0) (51.5497 -230.344 0) (46.6599 -232.919 0) (41.5433 -234.993 0) (36.2577 -236.735 0) (34.4888 -235.836 0) (31.8329 -229.019 0) (28.9104 -217.239 0) (32.78 -213.873 0) (36.1209 -225.873 0) (39.3052 -233.348 0) (43.9114 -230.467 0) (40.2113 -222.356 0) (36.5 -210.246 0) (33.1817 -197.561 0) (29.8119 -200.903 0) (26.3082 -204.135 0) (23.8783 -191.686 0) (21.5945 -179.629 0) (19.4831 -167.809 0) (16.6269 -169.871 0) (14.9542 -157.903 0) (13.5288 -146.167 0) (11.0078 -147.148 0) (10.1029 -135.413 0) (9.43874 -123.97 0) (9.01614 -112.85 0) (7.21324 -112.864 0) (5.38882 -112.665 0) (5.68591 -101.47 0) (6.20178 -90.6534 0) (6.93431 -80.2706 0) (8.08259 -81.1116 0) (7.56506 -91.2799 0) (7.27428 -101.88 0) (8.83395 -102.079 0) (8.89601 -91.6977 0) (9.20348 -81.7446 0) (10.2897 -82.1921 0) (10.1977 -91.9249 0) (10.3575 -102.08 0) (10.7721 -112.613 0) (11.4389 -123.493 0) (12.3579 -134.69 0) (14.4868 -133.611 0) (15.8983 -144.78 0) (17.5669 -156.19 0) (19.9288 -154.06 0) (22.0563 -165.358 0) (24.4337 -176.872 0) (27.032 -188.673 0) (30.0603 -185.603 0) (27.164 -174.053 0) (24.5145 -162.779 0) (26.8227 -160.057 0) (29.7343 -171.036 0) (32.9076 -182.286 0) (36.3412 -193.917 0) (39.9929 -206.221 0) (44.0505 -218.319 0) (48.2501 -227.027 0) (52.2816 -222.956 0) (47.6135 -213.725 0) (43.2278 -201.764 0) (46.1847 -196.909 0) (50.8727 -208.608 0) (55.9632 -218.242 0) (59.2745 -212.925 0) (53.81 -203.026 0) (48.8462 -191.706 0) (44.2799 -180.786 0) (41.9093 -185.502 0) (39.2569 -189.892 0) (35.532 -178.622 0) (32.0945 -167.711 0) (28.933 -157.067 0) (30.8182 -153.787 0) (34.2179 -164.073 0) (37.9089 -174.62 0) (40.0199 -170.312 0) (36.0865 -160.151 0) (32.4604 -150.239 0) (29.1511 -140.553 0) (27.7244 -143.736 0) (26.0653 -146.665 0) (24.1936 -149.324 0) (22.1373 -151.748 0) (20.0237 -140.965 0) (18.0516 -142.98 0) (16.4297 -132.137 0) (15.0677 -121.56 0) (13.334 -122.703 0) (12.4389 -112.103 0) (11.8063 -101.839 0) (11.4373 -91.942 0) (11.3259 -82.4531 0) (12.2717 -82.4946 0) (12.5711 -91.711 0) (13.1326 -101.319 0) (13.9647 -111.278 0) (15.3033 -110.18 0) (16.5978 -120.155 0) (18.1724 -130.424 0) (19.7742 -128.592 0) (21.8442 -138.839 0) (23.4899 -136.5 0) (21.2086 -126.567 0) (19.2244 -116.893 0) (17.9913 -118.608 0) (16.4986 -108.918 0) (15.2907 -99.5465 0) (14.2898 -100.523 0) (13.5526 -91.216 0) (13.0806 -82.2949 0) (13.7151 -81.8792 0) (14.3624 -90.5233 0) (15.0347 -89.6866 0) (16.1437 -98.431 0) (17.5378 -107.508 0) (18.3955 -105.896 0) (20.2693 -114.963 0) (22.4485 -124.309 0) (24.9339 -133.91 0) (26.1551 -131.079 0) (23.4731 -121.823 0) (21.1061 -112.815 0) (19.0509 -104.076 0) (17.3003 -95.6273 0) (16.8226 -97.128 0) (15.5378 -88.6822 0) (14.5233 -80.5909 0) (14.2003 -81.3067 0) (13.647 -73.3373 0) (13.3467 -73.6482 0) (12.8672 -73.7843 0) (12.2242 -73.7066 0) (11.461 -73.4146 0) (10.6212 -72.932 0) (9.73797 -72.2739 0) (8.81609 -71.4306 0) (7.87458 -70.3882 0) (6.93462 -69.1411 0) (6.01842 -67.6844 0) (5.14979 -66.0136 0) (4.35313 -64.1251 0) (3.65189 -62.0143 0) (3.07067 -59.6772 0) (2.63239 -57.1083 0) (2.35711 -54.3002 0) (2.26323 -51.2493 0) (2.36957 -47.9559 0) (2.6941 -44.4243 0) (3.25235 -40.6643 0) (6.93536 -30.9298 0) (10.4529 -22.4039 0) (13.6801 -15.1891 0) (12.7303 -18.1914 0) (9.58646 -25.7501 0) (6.19292 -34.5025 0) (5.66935 -37.9082 0) (8.91419 -28.9833 0) (11.9477 -21.1703 0) (14.7731 -14.7036 0) (15.5465 -12.2071 0) (16.392 -9.89182 0) (18.1268 -7.45214 0) (18.9996 -6.95929 0) (19.7354 -6.93003 0) (19.478 -7.74034 0) (18.6668 -7.85333 0) (17.5886 -8.83234 0) (17.0235 -10.4768 0) (18.3591 -8.90751 0) (19.2401 -8.63521 0) (19.0124 -9.5581 0) (18.0743 -10.0848 0) (16.4761 -12.3365 0) (14.1058 -17.2727 0) (11.3382 -24.0777 0) (8.42788 -32.0791 0) (5.35443 -41.1311 0) (5.23312 -44.1605 0) (8.11963 -35.0252 0) (10.894 -26.8895 0) (10.6064 -29.5813 0) (7.97966 -37.8092 0) (5.28894 -46.989 0) (5.50365 -49.6132 0) (7.99412 -40.4245 0) (10.465 -32.1396 0) (12.8669 -24.8056 0) (13.1428 -22.3656 0) (13.5566 -19.844 0) (15.9691 -14.3608 0) (17.765 -11.3997 0) (18.8144 -10.5248 0) (18.6601 -11.5911 0) (17.4612 -12.8701 0) (15.5378 -16.4851 0) (15.2026 -18.6443 0) (17.1977 -14.4607 0) (18.5491 -12.7331 0) (19.5078 -12.2932 0) (19.6039 -11.2867 0) (19.7127 -10.3109 0) (19.8575 -9.39802 0) (20.06 -8.56451 0) (20.2622 -7.8036 0) (20.4545 -7.10191 0) (21.0548 -7.32996 0) (21.6448 -7.54663 0) (22.2266 -7.72654 0) (22.1548 -8.33688 0) (21.5398 -8.17341 0) (20.9145 -7.97882 0) (20.7948 -8.67506 0) (21.4561 -8.83922 0) (22.1037 -8.98286 0) (22.7363 -9.08985 0) (22.7589 -8.46056 0) (22.8009 -7.86537 0) (23.3675 -7.96454 0) (23.9229 -8.02583 0) (24.464 -8.05138 0) (24.4992 -8.60233 0) (23.9337 -8.59234 0) (23.3526 -8.54566 0) (23.356 -9.1584 0) (23.9626 -9.18866 0) (24.5526 -9.18091 0) (24.6265 -9.78566 0) (24.0112 -9.81429 0) (23.3797 -9.80349 0) (22.7344 -9.75413 0) (22.0729 -9.66519 0) (21.3937 -9.54454 0) (20.6952 -9.42711 0) (20.6104 -10.2375 0) (21.3543 -10.2917 0) (22.0622 -10.3841 0) (22.0711 -11.1421 0) (21.3338 -11.0869 0) (20.5222 -11.1045 0) (20.4246 -12.0403 0) (21.3231 -11.9412 0) (22.1035 -11.9349 0) (22.8634 -11.9303 0) (22.7923 -11.1819 0) (22.7533 -10.4528 0) (23.4263 -10.4815 0) (24.084 -10.4676 0) (24.7257 -10.4131 0) (24.8532 -11.0579 0) (24.1867 -11.1386 0) (23.4982 -11.1821 0) (23.6035 -11.8949 0) (24.3191 -11.8245 0) (25.0062 -11.724 0) (25.181 -12.4209 0) (24.4738 -12.5383 0) (23.7367 -12.6289 0) (22.9692 -12.6931 0) (22.1728 -12.741 0) (21.3323 -12.8329 0) (20.3493 -13.0353 0) (19.4264 -13.3146 0) (18.4575 -13.9392 0) (16.977 -16.1448 0) (14.9639 -20.792 0) (12.72 -27.1462 0) (10.4545 -34.5571 0) (8.14753 -42.8659 0) (5.85885 -52.0314 0) (6.33528 -54.2433 0) (8.42251 -45.129 0) (10.5613 -36.8266 0) (10.768 -38.9428 0) (8.79938 -47.2111 0) (6.91146 -56.2502 0) (7.56527 -58.0559 0) (9.25673 -49.1142 0) (11.0533 -40.9054 0) (12.8929 -33.4702 0) (12.7528 -31.4852 0) (12.6884 -29.3757 0) (14.8172 -22.8957 0) (16.8024 -17.897 0) (18.3464 -15.2372 0) (18.3021 -16.58 0) (16.6829 -19.6786 0) (14.7554 -24.9334 0) (14.7665 -26.8885 0) (16.6338 -21.4544 0) (18.3086 -17.9523 0) (18.3267 -19.378 0) (16.6282 -23.2038 0) (14.8319 -28.7521 0) (13.0891 -35.3303 0) (11.3964 -42.7159 0) (9.77196 -50.8422 0) (8.27292 -59.6644 0) (9.00865 -61.0776 0) (10.3208 -52.3961 0) (11.7752 -44.3803 0) (12.1637 -45.8897 0) (10.8731 -53.7723 0) (9.74916 -62.2981 0) (10.4754 -63.3311 0) (11.4108 -54.9711 0) (12.5318 -47.2313 0) (13.7837 -40.1473 0) (13.564 -38.6801 0) (13.3196 -37.0677 0) (14.9333 -30.5229 0) (16.6369 -24.916 0) (18.3205 -20.8477 0) (18.2545 -22.3394 0) (16.6322 -26.5879 0) (15.0476 -32.2032 0) (15.1403 -33.7618 0) (16.5988 -28.178 0) (18.1315 -23.8012 0) (19.5264 -21.1856 0) (19.674 -19.98 0) (19.7267 -18.7685 0) (19.6802 -17.593 0) (19.5861 -16.4728 0) (19.4717 -15.3938 0) (19.3988 -14.3424 0) (20.3772 -14.0295 0) (21.3731 -13.7518 0) (22.2609 -13.5799 0) (22.3582 -14.4648 0) (21.4066 -14.6948 0) (20.4387 -15.0114 0) (20.5452 -15.9825 0) (21.4701 -15.6671 0) (22.4395 -15.3922 0) (23.3272 -15.189 0) (23.2187 -14.3199 0) (23.087 -13.4857 0) (23.885 -13.3954 0) (24.6479 -13.2844 0) (25.3815 -13.1475 0) (25.5875 -13.9107 0) (24.8308 -14.065 0) (24.0425 -14.199 0) (24.1686 -15.0285 0) (24.9669 -14.8702 0) (25.7277 -14.6992 0) (25.7084 -15.4718 0) (24.9736 -15.6901 0) (24.201 -15.8886 0) (23.3827 -16.0999 0) (22.5079 -16.3572 0) (21.5814 -16.6495 0) (20.67 -16.9465 0) (20.7693 -17.9344 0) (21.6544 -17.5696 0) (22.503 -17.2659 0) (22.4273 -18.0966 0) (21.6331 -18.4469 0) (20.7417 -18.9458 0) (20.5918 -19.9432 0) (21.4741 -19.3127 0) (22.2471 -18.8968 0) (22.9506 -18.5455 0) (23.1674 -17.7745 0) (23.3286 -16.9766 0) (24.0964 -16.7096 0) (24.8179 -16.4546 0) (25.5128 -16.1954 0) (25.2452 -16.902 0) (24.5697 -17.1788 0) (23.8802 -17.4671 0) (23.6138 -18.2188 0) (24.2628 -17.911 0) (24.9064 -17.611 0) (25.5395 -17.3082 0) (25.9187 -16.6243 0) (26.2025 -15.9252 0) (26.419 -15.2322 0) (26.4655 -14.5034 0) (26.3254 -13.7316 0) (26.0954 -12.984 0) (25.8643 -12.2749 0) (25.6654 -11.5953 0) (25.4935 -10.9461 0) (25.3455 -10.3224 0) (25.2225 -9.71903 0) (25.1244 -9.13685 0) (25.0478 -8.57736 0) (24.9894 -8.04269 0) (25.4982 -8.00176 0) (25.9887 -7.92945 0) (26.4593 -7.82678 0) (26.58 -8.30802 0) (26.09 -8.42896 0) (25.5785 -8.51912 0) (25.6773 -9.05867 0) (26.2098 -8.94863 0) (26.7203 -8.80854 0) (27.2083 -8.6383 0) (27.0485 -8.15726 0) (26.9096 -7.69511 0) (27.3414 -7.53534 0) (27.7565 -7.34941 0) (28.1574 -7.13876 0) (28.3478 -7.53885 0) (27.9295 -7.77116 0) (27.4974 -7.97791 0) (27.6758 -8.43872 0) (28.1262 -8.21083 0) (28.5638 -7.95684 0) (28.8085 -8.39439 0) (28.3494 -8.67021 0) (27.8787 -8.9189 0) (27.3906 -9.13872 0) (26.8817 -9.32871 0) (26.351 -9.48862 0) (25.7978 -9.61903 0) (25.941 -10.2009 0) (26.5144 -10.0507 0) (27.0672 -9.87036 0) (27.2807 -10.4357 0) (26.7039 -10.6361 0) (26.1086 -10.8058 0) (26.3026 -11.4373 0) (26.9237 -11.2483 0) (27.5285 -11.0289 0) (28.1148 -10.7787 0) (27.8371 -10.2053 0) (27.5988 -9.66006 0) (28.1095 -9.42001 0) (28.6027 -9.15066 0) (29.0853 -8.85347 0) (29.4014 -9.3367 0) (28.8924 -9.65469 0) (28.3734 -9.94473 0) (28.6821 -10.4975 0) (29.2321 -10.1869 0) (29.772 -9.84822 0) (30.3034 -9.48426 0) (29.9005 -8.99313 0) (29.5575 -8.53049 0) (29.256 -8.09338 0) (28.9888 -7.67811 0) (28.7527 -7.28219 0) (28.5451 -6.90387 0) (28.9099 -6.64681 0) (29.2423 -6.36697 0) (29.5477 -6.06994 0) (29.8051 -6.38081 0) (29.4847 -6.70078 0) (29.1351 -7.00299 0) (29.3917 -7.37627 0) (29.7613 -7.05113 0) (30.0996 -6.70762 0) (30.416 -6.35054 0) (30.1056 -6.04804 0) (29.8356 -5.76146 0) (30.1051 -5.44597 0) (30.3504 -5.12497 0) (30.5693 -4.80086 0) (30.8723 -5.01404 0) (30.6437 -5.36305 0) (30.3869 -5.70845 0) (30.7124 -5.98549 0) (30.9838 -5.61448 0) (31.225 -5.239 0) (31.6274 -5.4786 0) (31.3713 -5.88231 0) (31.083 -6.28032 0) (30.7689 -6.672 0) (30.4333 -7.05414 0) (30.0742 -7.42157 0) (29.6821 -7.76914 0) (30.0087 -8.18459 0) (30.426 -7.8147 0) (30.809 -7.42292 0) (31.2357 -7.81671 0) (30.826 -8.23314 0) (30.3798 -8.62584 0) (30.8176 -9.09436 0) (31.2996 -8.6782 0) (31.743 -8.23518 0) (32.1545 -7.77117 0) (31.6171 -7.38162 0) (31.1661 -7.01475 0) (31.4997 -6.59537 0) (31.806 -6.16856 0) (32.0783 -5.73449 0) (32.587 -6.0074 0) (32.2977 -6.47483 0) (31.9721 -6.93293 0) (32.5357 -7.29094 0) (32.8842 -6.7985 0) (33.1928 -6.29456 0) (33.9444 -6.60961 0) (33.6126 -7.15675 0) (33.2362 -7.6882 0) (32.8224 -8.20186 0) (32.3733 -8.69359 0) (31.8864 -9.15941 0) (31.3584 -9.5945 0) (30.7997 -10.0042 0) (30.2259 -10.3883 0) (29.6449 -10.7474 0) (29.054 -11.0787 0) (28.4467 -11.3799 0) (27.8223 -11.6501 0) (27.1829 -11.8887 0) (26.5304 -12.0973 0) (26.7955 -12.7902 0) (27.4845 -12.5657 0) (28.1636 -12.3118 0) (28.4607 -13.0226 0) (27.7647 -13.287 0) (27.0522 -13.5237 0) (27.183 -14.275 0) (27.8796 -14.0063 0) (28.5575 -13.7071 0) (29.2134 -13.3816 0) (29.1388 -12.7276 0) (28.8305 -12.0287 0) (29.4807 -11.7163 0) (30.1124 -11.3745 0) (30.7288 -11.0038 0) (31.0429 -11.6164 0) (30.4287 -12.0208 0) (29.7955 -12.3948 0) (29.8452 -13.0264 0) (30.4669 -12.6373 0) (31.0843 -12.2136 0) (31.0105 -12.8402 0) (30.3818 -13.2653 0) (29.7419 -13.6547 0) (29.0926 -14.0199 0) (28.4333 -14.3617 0) (27.7683 -14.6786 0) (27.1018 -14.9691 0) (26.8835 -15.6418 0) (27.5543 -15.3477 0) (28.2192 -15.0344 0) (27.8748 -15.7052 0) (27.2395 -16.0329 0) (26.5863 -16.3363 0) (26.1586 -16.9967 0) (26.7534 -16.6694 0) (27.3182 -16.3162 0) (27.8516 -15.9303 0) (28.4909 -15.3489 0) (28.8772 -14.6952 0) (29.5224 -14.3274 0) (30.1478 -13.9244 0) (30.749 -13.4795 0) (30.1686 -14.0529 0) (29.6422 -14.5286 0) (29.0821 -14.9588 0) (28.3514 -15.5067 0) (28.8141 -15.0408 0) (29.24 -14.5291 0) (29.631 -13.9709 0) (30.6625 -13.5307 0) (31.3262 -12.9918 0) (31.6276 -12.3784 0) (31.6921 -11.7578 0) (31.6412 -11.1833 0) (31.334 -10.605 0) (31.921 -10.1751 0) (32.4757 -9.71069 0) (32.9857 -9.20768 0) (33.2879 -9.70681 0) (32.766 -10.2326 0) (32.2172 -10.7223 0) (32.2867 -11.2727 0) (32.8628 -10.7583 0) (33.4114 -10.2112 0) (33.9176 -9.62082 0) (33.7738 -9.14176 0) (33.4525 -8.67522 0) (33.8792 -8.11799 0) (34.2671 -7.54035 0) (34.6125 -6.94632 0) (34.9823 -7.28793 0) (34.6208 -7.92705 0) (34.2179 -8.54679 0) (34.3773 -8.99421 0) (34.7929 -8.33667 0) (35.1667 -7.65372 0) (35.0503 -8.04276 0) (34.6883 -8.77327 0) (34.2883 -9.47468 0) (33.844 -10.141 0) (33.3492 -10.7656 0) (32.8068 -11.3444 0) (32.2294 -11.8809 0) (31.8782 -12.4617 0) (32.3998 -11.8887 0) (32.885 -11.2724 0) (31.9576 -11.7011 0) (31.5581 -12.3532 0) (31.1258 -12.9636 0) (29.9905 -13.3681 0) (30.3216 -12.7236 0) (30.6248 -12.0393 0) (30.8976 -11.3184 0) (32.3187 -11.0088 0) (33.3254 -10.6128 0) (33.717 -9.91011 0) (34.0662 -9.17081 0) (34.3829 -8.40154 0) (33.1652 -8.70572 0) (32.9148 -9.50523 0) (32.6364 -10.275 0) (31.1333 -10.5586 0) (31.333 -9.76467 0) (31.5084 -8.94213 0) (29.5178 -9.1054 0) (29.4202 -9.94492 0) (29.3015 -10.7575 0) (29.1498 -11.5385 0) (28.968 -12.284 0) (28.7628 -12.996 0) (28.5345 -13.6706 0) (28.2812 -14.3052 0) (27.998 -14.8973 0) (27.6816 -15.4452 0) (27.3296 -15.9491 0) (26.9394 -16.4111 0) (26.5109 -16.8343 0) (26.0451 -17.2229 0) (25.5427 -17.5838 0) (25.007 -17.9267 0) (24.4446 -18.26 0) (23.8617 -18.5911 0) (23.259 -18.9284 0) (22.6272 -19.2776 0) (21.9542 -19.6635 0) (21.2076 -20.155 0) (20.3452 -20.9208 0) (19.2891 -22.3676 0) (17.9418 -25.1968 0) (16.5232 -29.6515 0) (15.1961 -35.1758 0) (13.968 -41.4588 0) (12.8676 -48.41 0) (11.9193 -55.9985 0) (11.1682 -64.1841 0) (11.8151 -64.869 0) (12.3807 -56.8642 0) (13.1549 -49.4386 0) (13.3776 -50.3182 0) (12.7782 -57.5743 0) (12.3967 -65.3848 0) (12.875 -65.7126 0) (13.089 -58.1202 0) (13.5223 -51.0477 0) (14.1548 -44.5331 0) (14.1723 -43.6492 0) (14.1023 -42.6264 0) (15.2006 -36.4574 0) (16.3978 -31.0221 0) (17.6792 -26.5337 0) (17.3491 -27.8117 0) (16.1974 -32.2827 0) (15.1285 -37.6102 0) (14.9581 -38.635 0) (15.8952 -33.4202 0) (16.9351 -29.0128 0) (16.3775 -30.1119 0) (15.4645 -34.4338 0) (14.6734 -39.5274 0) (14.0278 -45.2793 0) (13.5528 -51.6221 0) (13.2714 -58.4896 0) (13.207 -65.8495 0) (13.3628 -65.8007 0) (13.2968 -58.6826 0) (13.4346 -52.0291 0) (13.1354 -52.2674 0) (13.1378 -58.6951 0) (13.3414 -65.5631 0) (13.7872 -72.8738 0) (13.7705 -72.2369 0) (14.6597 -79.6983 0) (15.8381 -87.4978 0) (15.9223 -86.1235 0) (17.5517 -93.9437 0) (19.4841 -102.059 0) (21.7181 -110.46 0) (24.2657 -119.122 0) (27.136 -128.022 0) (30.3286 -137.132 0) (33.8429 -146.441 0) (37.6839 -155.965 0) (41.8476 -165.724 0) (46.3515 -175.77 0) (51.1942 -186.192 0) (56.4219 -197.034 0) (62.1957 -207.034 0) (64.7299 -200.577 0) (58.6928 -190.68 0) (53.2095 -180.387 0) (54.8693 -174.308 0) (60.5971 -184.014 0) (66.8505 -193.609 0) (68.5592 -186.223 0) (62.1158 -177.09 0) (56.1553 -167.978 0) (50.6051 -159.089 0) (49.531 -164.902 0) (48.1077 -170.47 0) (43.375 -160.869 0) (38.9935 -151.529 0) (34.9488 -142.408 0) (35.7619 -138.151 0) (39.9979 -146.857 0) (44.5839 -155.763 0) (45.4583 -150.424 0) (40.6825 -141.962 0) (36.2671 -133.679 0) (36.4499 -129.007 0) (41.0338 -136.863 0) (45.9845 -144.873 0) (51.3159 -153.055 0) (57.056 -161.421 0) (63.2298 -169.948 0) (69.8591 -178.515 0) (70.7283 -170.578 0) (78.0632 -178.131 0) (78.6149 -169.559 0) (86.566 -175.545 0) (94.4437 -179.103 0) (101.38 -179.235 0) (102.868 -171.895 0) (95.0878 -170.642 0) (86.7758 -166.599 0) (78.7023 -160.816 0) (71.1128 -154.308 0) (71.1517 -162.493 0) (64.1734 -155.14 0) (63.9181 -162.621 0) (57.5603 -154.668 0) (57.6601 -147.752 0) (57.3513 -140.706 0) (63.9953 -147.54 0) (63.3857 -139.857 0) (70.6107 -146.06 0) (78.3143 -152.005 0) (86.4789 -157.388 0) (95.0186 -161.582 0) (103.451 -163.643 0) (111.011 -162.909 0) (111.552 -154.927 0) (118.919 -152.673 0) (119.38 -144.95 0) (126.632 -141.653 0) (126.935 -134.108 0) (134.175 -130.176 0) (134.196 -122.725 0) (132.725 -114.248 0) (123.651 -116.26 0) (125.889 -125.554 0) (116.839 -126.863 0) (118.641 -136.274 0) (109.624 -136.587 0) (111.04 -146.084 0) (102.087 -145.111 0) (103.149 -154.638 0) (94.3269 -152.122 0) (85.691 -148.091 0) (84.4087 -138.811 0) (93.1127 -142.511 0) (91.3896 -132.922 0) (100.435 -135.352 0) (98.2583 -125.603 0) (107.527 -126.807 0) (104.89 -117.041 0) (114.283 -117.163 0) (111.186 -107.496 0) (120.623 -106.723 0) (129.986 -105.087 0) (126.472 -95.8029 0) (135.757 -93.6434 0) (131.779 -84.716 0) (140.911 -82.2268 0) (149.811 -79.2734 0) (158.377 -75.9335 0) (166.475 -72.2526 0) (162.448 -64.8694 0) (170.459 -61.4313 0) (165.832 -54.5402 0) (173.55 -51.3894 0) (180.911 -48.1723 0) (176.32 -42.2647 0) (168.912 -45.0539 0) (161.17 -47.7813 0) (153.109 -50.4009 0) (157.777 -57.5792 0) (149.41 -60.434 0) (154.085 -68.1089 0) (145.426 -71.088 0) (136.516 -73.7222 0) (131.897 -65.3383 0) (140.771 -63.0438 0) (136.155 -55.11 0) (144.758 -52.8608 0) (140.421 -45.3621 0) (148.745 -43.2737 0) (156.802 -41.0479 0) (164.563 -38.7295 0) (172.009 -36.3596 0) (168.178 -30.4232 0) (160.701 -32.3884 0) (152.927 -34.3077 0) (149.657 -27.5207 0) (157.438 -25.9946 0) (164.937 -24.4294 0) (162.386 -18.4579 0) (154.87 -19.6318 0) (147.084 -20.7754 0) (139.052 -21.8695 0) (141.616 -28.982 0) (144.878 -36.1476 0) (136.582 -37.8719 0) (128.07 -39.4444 0) (131.864 -47.2683 0) (123.115 -48.9474 0) (127.34 -57.0895 0) (118.365 -58.7497 0) (122.841 -67.2563 -1.79759e-22) (127.405 -75.9181 1.83332e-22) (118.152 -77.6155 0) (122.483 -86.6446 0) (113.102 -87.9372 0) (117.07 -97.2641 0) (107.632 -97.954 0) (98.2571 -97.8751 0) (101.774 -107.385 0) (92.5079 -106.44 0) (95.5956 -115.957 0) (86.5424 -114.028 0) (89.1848 -123.417 0) (80.4479 -120.453 0) (82.6495 -129.589 0) (74.3223 -125.619 0) (76.1056 -134.379 0) (77.4443 -143.182 0) (69.6573 -137.781 0) (62.3496 -132.123 0) (55.484 -126.36 0) (56.631 -133.563 0) (50.2968 -127.285 0) (51.1536 -133.905 0) (51.5965 -140.435 0) (51.6492 -146.828 0) (46.1503 -139.133 0) (41.04 -131.579 0) (36.286 -124.168 0) (35.7534 -119.187 0) (40.6746 -126.144 0) (45.9476 -133.224 0) (45.3515 -127.195 0) (39.9179 -120.595 0) (34.8813 -114.047 0) (30.2529 -107.53 0) (31.2119 -112.31 0) (31.8714 -116.893 0) (32.2082 -121.302 0) (32.1999 -125.554 0) (31.8684 -129.624 0) (31.2393 -133.487 0) (27.8601 -124.749 0) (24.81 -116.213 0) (22.0835 -107.911 0) (22.1761 -105.183 0) (25.0827 -113.112 0) (28.3112 -121.268 0) (28.4653 -117.597 0) (25.059 -109.835 0) (21.9987 -102.262 0) (19.2876 -94.8775 0) (19.6007 -97.4753 0) (19.6679 -99.8627 0) (17.5705 -92.0722 0) (15.7957 -84.5438 0) (14.3106 -77.3151 0) (14.5986 -78.6021 0) (13.5515 -71.4172 0) (12.7492 -64.6049 0) (13.1437 -65.1601 0) (12.764 -58.5196 0) (12.6159 -52.3259 0) (12.6549 -46.5929 0) (13.3139 -46.3243 0) (13.7607 -45.8775 0) (14.2482 -40.2846 0) (14.8838 -35.3261 0) (15.6387 -31.0917 0) (14.7381 -31.9176 0) (14.1262 -36.0745 0) (13.6453 -40.9022 0) (12.8494 -41.3484 0) (13.1885 -36.6442 0) (13.6651 -32.5607 0) (14.242 -29.1946 0) (15.4713 -28.5404 0) (16.4971 -27.7416 0) (17.3272 -26.7703 0) (17.9719 -25.6974 0) (18.511 -24.6159 0) (18.9512 -23.5173 0) (20.0017 -21.8812 0) (20.8374 -20.978 0) (21.5472 -20.396 0) (21.0104 -21.091 0) (20.3402 -21.7671 0) (19.5292 -22.7976 0) (18.9009 -23.6525 0) (19.6735 -22.4639 0) (20.3043 -21.683 0) (20.8328 -21.0875 0) (21.5913 -20.5663 0) (22.1809 -19.9455 0) (22.765 -19.5549 0) (23.3068 -19.1861 0) (23.8104 -18.8225 0) (22.9776 -19.289 0) (22.5672 -19.6968 0) (22.1073 -20.1148 0) (21.2748 -20.5794 0) (21.6438 -20.1097 0) (21.9524 -19.6506 0) (20.726 -19.8938 0) (20.5123 -20.3986 0) (20.2273 -20.9169 0) (19.8626 -21.4862 0) (19.4103 -22.1755 0) (18.8563 -23.1035 0) (18.1738 -24.5054 0) (17.3018 -25.3469 0) (17.9035 -23.7478 0) (18.3517 -22.6482 0) (17.1055 -23.0981 0) (16.7484 -24.348 0) (16.2016 -26.0661 0) (14.8236 -26.6476 0) (15.308 -24.8245 0) (15.6223 -23.4746 0) (15.7758 -22.3943 0) (17.3484 -22.1361 0) (18.7009 -21.828 0) (18.969 -21.1629 0) (19.1644 -20.5758 0) (19.287 -20.0191 0) (17.6308 -20.0532 0) (17.6055 -20.6769 0) (17.5109 -21.3552 0) (15.832 -21.4917 0) (15.8222 -20.7162 0) (15.7455 -20.0152 0) (13.598 -19.9075 0) (13.7815 -20.687 0) (13.8996 -21.5585 0) (13.928 -22.5529 0) (13.8174 -23.7142 0) (13.5675 -25.1696 0) (13.202 -27.123 0) (12.7708 -29.7409 0) (12.3618 -33.0672 0) (12.038 -37.0498 0) (11.8288 -41.6035 0) (11.7626 -46.6637 0) (11.8656 -52.1956 0) (12.1852 -58.1834 0) (11.3934 -57.6962 0) (12.1209 -63.8765 0) (13.0876 -70.4213 0) (12.3674 -69.248 0) (13.7608 -75.8572 0) (15.424 -82.7759 0) (17.3615 -89.9927 0) (16.8869 -87.7261 0) (14.771 -80.8392 0) (12.9385 -74.224 0) (11.8291 -72.4125 0) (13.8279 -78.7282 0) (16.1109 -85.2939 0) (18.6891 -92.096 0) (21.5589 -99.1311 0) (24.7468 -106.368 0) (28.2981 -113.758 0) (27.825 -109.735 0) (24.1573 -102.692 0) (20.8151 -95.822 0) (19.7303 -92.3636 0) (23.2465 -98.8472 0) (27.0627 -105.507 0) (25.9638 -101.124 0) (21.9759 -94.8676 0) (18.3076 -88.7504 0) (14.9518 -82.7808 0) (16.5265 -86.0501 0) (17.7694 -89.1553 0) (15.0279 -82.6911 0) (12.5819 -76.441 0) (10.4145 -70.4231 0) (8.67694 -68.2562 0) (11.0167 -73.9793 0) (13.6271 -79.9167 0) (11.8936 -76.9737 0) (9.11544 -71.3446 0) (6.59854 -65.9113 0) (4.1567 -63.3862 0) (6.86088 -68.537 0) (9.81219 -73.8647 0) (13.0326 -79.3527 0) (16.5416 -84.9852 0) (20.3551 -90.748 0) (24.4881 -96.6264 0) (28.9442 -102.613 0) (33.7027 -108.725 0) (38.8099 -114.908 0) (44.3461 -121.083 0) (42.9745 -114.861 0) (49.0147 -120.614 0) (47.3492 -113.877 0) (53.8997 -119.152 0) (60.8828 -124.366 0) (68.2655 -129.5 0) (66.4455 -121.235 0) (58.9664 -116.644 0) (51.9114 -111.925 0) (45.3549 -107.047 0) (39.2218 -102.073 0) (41.2789 -108.509 0) (35.5957 -103.114 0) (37.3864 -109.061 0) (32.1622 -103.285 0) (30.223 -97.7792 0) (27.9026 -92.1954 0) (33.4057 -97.1207 0) (30.8211 -91.0766 0) (36.7694 -95.6084 0) (43.0131 -100.141 0) (49.5865 -104.637 0) (56.6309 -108.955 0) (64.1729 -113.042 0) (72.1191 -116.925 0) (69.4803 -108.326 0) (77.8329 -111.428 0) (74.823 -102.509 0) (83.5017 -104.77 0) (80.1123 -95.6614 0) (89.0561 -97.0822 0) (85.2871 -87.887 0) (94.4088 -88.5324 0) (103.71 -88.5634 0) (99.5308 -79.3471 0) (108.833 -78.765 1.80927e-22) (104.449 -69.7731 -1.78007e-22) (113.669 -68.747 0) (109.291 -60.048 0) (100.178 -60.9546 0) (91.0899 -61.4557 0) (95.2558 -70.3179 0) (86.1595 -70.3837 0) (90.3293 -79.3676 0) (81.2951 -78.8549 0) (72.4338 -77.8719 0) (76.3996 -86.6967 0) (67.7109 -85.0956 0) (71.4221 -93.7261 0) (63.028 -91.4634 0) (66.4397 -99.849 0) (58.4425 -96.8641 0) (61.4858 -104.934 0) (53.9549 -101.248 0) (46.9352 -97.3002 0) (43.9132 -89.9607 0) (50.9644 -93.5356 0) (47.653 -85.8262 0) (55.0924 -88.8115 0) (51.4788 -80.7968 0) (59.3453 -83.1411 0) (55.4665 -74.8843 0) (63.763 -76.5669 0) (59.7381 -68.1191 0) (68.3775 -69.2037 0) (77.212 -69.9942 0) (73.22 -61.2697 0) (82.0903 -61.554 0) (78.3138 -52.8196 0) (87.2307 -52.7034 0) (96.2248 -52.2537 0) (105.241 -51.4685 0) (114.223 -50.3588 0) (110.565 -42.0006 0) (119.383 -40.8315 0) (116.238 -32.6983 0) (124.872 -31.5972 0) (133.343 -30.3502 0) (130.8 -22.8929 0) (122.361 -23.825 0) (113.769 -24.6481 0) (105.061 -25.3453 0) (107.482 -33.6291 0) (98.6481 -34.3693 0) (101.664 -42.9251 0) (92.7299 -43.5872 0) (83.8143 -43.9781 0) (80.9289 -35.2281 0) (89.7822 -34.9049 0) (87.4638 -26.3082 0) (96.2787 -25.9023 0) (94.6144 -17.7997 0) (103.361 -17.4189 0) (112.036 -16.9428 0) (120.6 -16.3814 0) (129.016 -15.745 0) (137.253 -15.0461 0) (145.28 -14.2986 0) (153.068 -13.5165 0) (160.595 -12.7128 0) (159.523 -7.36556 0) (151.989 -7.82927 0) (144.2 -8.28026 0) (136.177 -8.71096 0) (127.949 -9.11344 0) (119.545 -9.47976 0) (110.998 -9.80276 0) (102.343 -10.0769 0) (93.6158 -10.2962 0) (84.8535 -10.4564 0) (85.8331 -18.078 0) (77.0573 -18.2494 0) (78.6568 -26.5563 0) (69.8986 -26.649 0) (72.1315 -35.3398 0) (74.9648 -44.0983 0) (66.2102 -43.9609 0) (69.5084 -52.6182 0) (60.7658 -52.1325 0) (64.4303 -60.6466 0) (55.8337 -59.7427 0) (52.2064 -51.3948 0) (48.9789 -43.0041 0) (57.5099 -43.5901 0) (54.752 -34.9769 0) (63.4171 -35.2502 0) (61.214 -26.5933 0) (52.5752 -26.4001 0) (44.0754 -26.0739 0) (46.2403 -34.5286 0) (38.0505 -33.9218 0) (40.802 -42.2153 0) (44.033 -50.406 0) (47.6458 -58.5368 0) (51.5096 -66.6839 0) (43.7129 -64.9356 0) (47.6496 -72.8438 0) (40.1397 -70.5416 0) (44.0162 -78.151 0) (36.8057 -75.3838 0) (40.5293 -82.6584 0) (33.6567 -79.4073 0) (37.1512 -86.3205 0) (40.2814 -93.2236 0) (33.9097 -89.124 0) (27.8644 -84.975 0) (22.1502 -80.7956 0) (25.212 -86.5321 0) (19.9265 -81.9917 0) (22.7345 -87.2916 0) (25.1727 -92.4983 0) (27.245 -97.6061 0) (22.651 -92.0069 0) (18.3815 -86.4916 0) (14.4218 -81.0752 0) (11.9373 -77.0282 0) (16.0456 -82.1083 0) (20.4521 -87.2697 0) (17.8857 -82.4231 0) (13.3384 -77.6042 0) (9.07525 -72.845 0) (5.07254 -68.155 0) (8.11005 -72.0398 0) (10.7565 -75.7714 0) (7.36793 -70.5927 0) (4.23191 -65.5563 0) (1.3186 -60.6789 0) (-1.92621 -57.7548 0) (1.19363 -62.3936 0) (4.5388 -67.1563 0) (1.29549 -63.5475 0) (-2.2568 -59.0288 0) (-5.52325 -54.6867 0) (-9.4683 -51.4953 0) (-6.05218 -55.5396 0) (-2.36408 -59.7507 0) (1.61892 -64.1127 0) (5.82092 -68.5202 0) (10.2511 -72.9776 0) (14.9453 -77.4703 0) (11.626 -72.4134 0) (16.7436 -76.6046 0) (13.1886 -71.1325 0) (18.7206 -74.991 0) (24.5442 -78.8194 0) (30.6812 -82.6041 0) (27.1078 -76.0507 0) (20.8769 -72.6157 0) (14.9414 -69.1209 0) (9.28024 -65.5736 0) (3.8658 -61.9733 0) (7.92751 -67.2505 0) (2.90637 -63.347 0) (6.77659 -68.2277 0) (2.15658 -64.0536 0) (-1.91617 -59.4222 0) (-6.27711 -54.7126 0) (-1.34793 -58.3219 0) (-5.84484 -53.2322 0) (-0.524438 -56.5778 0) (5.06364 -59.9228 0) (10.8578 -63.1864 0) (16.9057 -66.3683 0) (23.2323 -69.4707 0) (29.8589 -72.4836 0) (25.8388 -65.5524 0) (32.8458 -68.1196 0) (28.7917 -60.8632 0) (36.153 -62.9717 0) (32.2232 -55.4096 0) (39.8322 -57.065 0) (36.19 -49.1935 0) (32.9254 -41.2421 0) (25.2274 -40.1157 0) (28.5349 -47.8115 0) (21.0785 -46.2793 0) (24.8131 -53.5964 0) (17.6884 -51.6445 0) (21.7263 -58.6117 0) (14.9478 -56.2357 0) (19.1353 -62.8671 0) (12.7149 -60.0774 0) (6.55633 -57.1829 0) (2.1637 -51.109 0) (8.4386 -53.7376 0) (4.24291 -47.3352 0) (10.8385 -49.5609 0) (6.976 -42.8058 0) (13.8947 -44.6124 0) (10.4821 -37.4623 0) (17.7235 -38.8534 0) (14.8488 -31.2815 0) (22.3999 -32.284 0) (30.1395 -33.1681 0) (27.9275 -25.0752 0) (35.87 -25.6298 0) (34.3263 -17.6336 0) (42.5456 -17.934 0) (51.0388 -18.1542 0) (59.6602 -18.2821 0) (68.3254 -18.3159 0) (67.3782 -10.5944 0) (76.0955 -10.5554 0) (58.7236 -10.5757 0) (50.1118 -10.503 0) (41.6214 -10.3778 0) (33.3923 -10.206 0) (25.4082 -9.98994 0) (26.359 -17.2576 0) (18.5563 -16.8098 0) (20.1519 -24.418 0) (12.5603 -23.6643 0) (5.21452 -22.8125 0) (7.55177 -30.1619 0) (0.482473 -28.9092 0) (3.49155 -35.9285 0) (-3.29471 -34.2492 0) (0.276456 -40.8473 0) (-6.1532 -38.7834 0) (-2.15303 -44.9668 0) (-8.22758 -42.5631 0) (-3.89747 -48.3766 0) (0.613532 -54.1796 0) (-5.08286 -51.1249 0) (-10.4543 -48.1175 0) (-15.5243 -45.1765 0) (-10.8505 -49.958 0) (-15.5595 -46.7695 0) (-10.9005 -51.1973 0) (-6.43877 -55.5754 0) (-2.25449 -59.889 0) (-6.3563 -55.8456 0) (-10.1828 -51.9451 0) (-13.7384 -48.1929 0) (-18.2946 -44.7952 0) (-14.6153 -48.2582 0) (-10.6652 -51.8538 0) (-15.235 -47.7909 0) (-19.2905 -44.4964 0) (-23.0751 -41.3206 0) (-27.9929 -37.7874 0) (-24.1223 -40.6782 0) (-19.9805 -43.6744 0) (-24.7881 -39.5206 0) (-20.2998 -42.3084 0) (-24.9816 -37.8236 0) (-20.1562 -40.3768 0) (-15.0372 -42.9916 0) (-9.61893 -45.661 0) (-13.9831 -40.188 0) (-19.4378 -37.8499 0) (-24.5939 -35.5563 0) (-29.4569 -33.3147 0) (-34.0332 -31.132 0) (-29.5203 -35.3393 0) (-33.779 -32.9306 0) (-28.9969 -36.8193 0) (-32.9339 -34.2113 0) (-37.7649 -30.6037 0) (-42.3516 -26.9681 0) (-38.3292 -29.0145 0) (-42.5267 -25.0611 0) (-38.2011 -26.8867 0) (-33.5945 -28.7676 0) (-28.7009 -30.6982 0) (-23.5146 -32.672 0) (-18.0301 -34.682 0) (-12.2441 -36.721 0) (-15.8329 -30.8061 0) (-9.71522 -32.5249 0) (-12.7543 -26.1651 0) (-6.31134 -27.5424 0) (-8.70064 -20.8214 0) (-1.91612 -21.8583 0) (-3.61914 -15.0342 0) (3.5482 -15.7033 0) (10.9348 -16.2928 0) (9.94392 -9.434 0) (17.5864 -9.73233 0) (2.53447 -9.09138 0) (-4.63605 -8.69447 0) (-11.4212 -8.28747 0) (-10.3932 -14.3241 0) (-16.882 -13.6111 0) (-15.1689 -19.7829 0) (-21.3359 -18.7461 0) (-18.8979 -24.7896 0) (-24.7375 -23.4239 0) (-21.6466 -29.1029 0) (-27.1582 -27.4217 0) (-32.3719 -25.7694 0) (-35.5145 -20.7476 0) (-30.275 -22.0746 0) (-32.7592 -16.6976 0) (-27.1987 -17.716 0) (-28.9482 -12.1907 0) (-23.0677 -12.8987 0) (-24.1176 -7.4641 0) (-17.921 -7.87603 0) (-30.009 -7.05448 0) (-35.5974 -6.64943 0) (-34.5261 -11.4906 0) (-39.8049 -10.8017 0) (-38.0211 -15.6957 0) (-42.9887 -14.7141 0) (-40.4603 -19.4483 0) (-37.2927 -24.1524 0) (-41.9258 -22.5761 0) (-46.277 -21.0456 0) (-50.3525 -19.5654 0) (-46.5778 -23.2963 0) (-50.3613 -21.5967 0) (-46.1076 -24.9981 0) (-41.4857 -28.3645 0) (-36.6068 -31.7029 0) (-31.6007 -35.0086 0) (-26.5978 -38.2705 0) (-21.7121 -41.4723 0) (-17.0322 -44.5961 0) (-12.6218 -47.6229 0) (-8.52433 -50.5342 0) (-4.76681 -53.314 0) (-1.36522 -55.9531 0) (1.68245 -58.4348 0) (4.32689 -60.6922 0) (6.59203 -62.765 0) (8.50841 -64.6559 0) (10.0971 -66.3658 0) (11.3768 -67.8962 0) (10.0721 -61.876 0) (11.2338 -62.9663 0) (10.3444 -57.0331 0) (9.67995 -51.4663 0) (10.8933 -51.9061 0) (10.6154 -46.554 0) (10.5317 -41.6678 0) (10.6028 -37.2826 0) (10.7887 -33.4305 0) (8.89175 -33.5916 0) (8.85207 -37.3252 0) (8.95133 -41.572 0) (9.22193 -46.2985 0) (7.53995 -45.8815 0) (8.17214 -50.846 0) (9.00966 -56.1855 0) (7.37577 -55.1574 0) (8.61744 -60.6071 0) (6.84953 -59.1574 0) (5.42317 -53.9473 0) (4.21539 -49.0477 0) (6.35679 -50.0381 0) (5.54189 -45.2728 0) (4.91116 -40.8876 0) (7.09205 -41.3216 0) (6.80791 -37.2014 0) (6.66343 -33.5619 0) (4.1166 -33.3684 0) (4.44391 -36.9094 0) (1.73693 -36.4443 0) (2.39098 -40.2751 0) (3.21046 -44.4811 0) (0.521519 -43.5081 0) (1.72564 -47.8756 0) (3.12903 -52.5526 0) (4.74751 -57.5237 0) (2.2859 -55.7049 0) (0.464043 -50.9646 0) (-1.13782 -46.4927 0) (-2.52433 -42.3354 0) (-3.7209 -38.4852 0) (-0.491309 -39.4654 0) (-1.32696 -35.7925 0) (-2.03032 -32.4899 0) (1.22074 -33.0168 0) (0.810394 -30.0071 0) (3.88748 -30.2867 0) (6.62104 -30.4266 0) (9.01206 -30.3963 0) (11.0492 -30.1573 0) (11.3257 -27.501 0) (11.5533 -25.4314 0) (11.6918 -23.8321 0) (9.26702 -23.8881 0) (9.24872 -25.602 0) (9.14986 -27.7444 0) (6.61836 -27.7972 0) (6.58862 -25.6276 0) (6.4934 -23.8457 0) (6.31437 -22.3604 0) (9.18884 -22.495 0) (11.7253 -22.5674 0) (11.642 -21.5043 0) (11.4424 -20.5589 0) (11.1618 -19.7023 0) (8.39571 -19.383 0) (8.74843 -20.3101 0) (9.01662 -21.33 0) (6.04666 -21.0937 0) (5.68969 -19.9868 0) (5.25478 -18.9888 0) (1.73935 -18.5363 0) (2.2505 -19.5973 0) (2.69112 -20.7703 0) (3.05116 -22.1026 0) (3.33187 -23.6476 0) (3.54403 -25.4756 0) (3.71279 -27.6675 0) (0.462753 -27.405 0) (0.13021 -25.1895 0) (-0.218877 -23.3105 0) (-4.11852 -22.8723 0) (-3.63124 -24.7865 0) (-3.143 -27.0029 0) (-2.62321 -29.5622 0) (-6.40065 -28.9537 0) (-5.6275 -31.7945 0) (-4.74284 -34.972 0) (-8.50326 -33.977 0) (-7.29774 -37.3327 0) (-5.9205 -40.9932 0) (-4.35301 -44.94 0) (-2.57222 -49.1735 0) (-0.564488 -53.6738 0) (-3.77848 -51.4642 0) (-5.96156 -47.2189 0) (-7.9177 -43.2191 0) (-11.8281 -41.3343 0) (-9.70232 -45.1028 0) (-7.35177 -49.098 0) (-11.2731 -46.5825 0) (-13.7852 -42.8335 0) (-16.0726 -39.2943 0) (-18.1505 -35.9725 0) (-13.745 -37.8034 0) (-9.66355 -39.4799 0) (-11.2185 -36.0065 0) (-12.6017 -32.8093 0) (-13.8389 -29.8905 0) (-9.56686 -30.9271 0) (-10.5151 -28.1816 0) (-11.3759 -25.7331 0) (-7.093 -26.444 0) (-7.73743 -24.2447 0) (-8.36742 -22.3222 0) (-9.01191 -20.6434 0) (-4.63583 -21.2191 0) (-0.611291 -21.707 0) (-1.06793 -20.3183 0) (-1.59169 -19.0944 0) (-2.17403 -17.9882 0) (-6.46911 -17.3452 0) (-5.81673 -18.5005 0) (-5.20274 -19.778 0) (-9.68225 -19.1628 0) (-10.3784 -17.8381 0) (-11.1028 -16.6394 0) (-11.8563 -15.5452 0) (-7.15886 -16.2846 0) (-2.80526 -16.965 0) (1.17368 -17.5549 0) (4.76389 -18.0662 0) (7.98277 -18.5195 0) (10.8324 -18.8999 0) (13.354 -19.1818 0) (15.5976 -19.3574 0) (17.5834 -19.4512 0) (19.3369 -19.4688 0) (20.8748 -19.3872 0) (22.2066 -19.1893 0) (23.3426 -18.8769 0) (24.2779 -18.4543 0) (24.7104 -18.0736 0) (25.1041 -17.6727 0) (25.4575 -17.2432 0) (24.1802 -17.538 0) (23.9423 -18.0089 0) (23.6637 -18.453 0) (22.4132 -18.7189 0) (22.577 -18.2317 0) (22.6998 -17.7204 0) (22.785 -17.1808 0) (24.3787 -17.0355 0) (25.7714 -16.7798 0) (26.0473 -16.2794 0) (26.2865 -15.7389 0) (26.4929 -15.1571 0) (24.7679 -15.3112 0) (24.6689 -15.9239 0) (24.5403 -16.4983 0) (22.8367 -16.6093 0) (22.8584 -16.0034 0) (22.8535 -15.3625 0) (20.7658 -15.3137 0) (20.8712 -15.9803 0) (20.9527 -16.6154 0) (21.0073 -17.2193 0) (21.0311 -17.7938 0) (21.0192 -18.3432 0) (20.9687 -18.8724 0) (19.327 -18.9143 0) (19.2705 -18.3464 0) (19.1752 -17.7619 0) (17.1224 -17.63 0) (17.3174 -18.2515 0) (17.4743 -18.8559 0) (15.3912 -18.7112 0) (15.1436 -18.0604 0) (14.8586 -17.3967 0) (14.5407 -16.7187 0) (16.8978 -16.987 0) (19.0472 -17.1542 0) (18.8917 -16.5192 0) (18.711 -15.8565 0) (18.5079 -15.1665 0) (16.0705 -14.9229 0) (16.3686 -15.6336 0) (16.6457 -16.3216 0) (14.1943 -16.0253 0) (13.8238 -15.315 0) (13.4341 -14.5864 0) (13.0299 -13.8391 0) (15.7555 -14.1896 0) (18.2858 -14.4497 0) (20.6392 -14.6162 0) (22.8248 -14.6872 0) (24.8401 -14.6606 0) (26.6691 -14.5343 0) (26.8184 -13.8715 0) (26.9463 -13.1712 0) (27.0547 -12.4358 0) (24.9332 -12.4967 0) (24.9192 -13.2512 0) (24.8887 -13.9733 0) (22.7756 -13.9784 0) (22.711 -13.2379 0) (22.6334 -12.4681 0) (22.5464 -11.6705 0) (24.9346 -11.7131 0) (27.146 -11.6696 0) (27.213 -10.8716 0) (27.2504 -10.0451 0) (27.2698 -9.19352 0) (24.8148 -9.20594 0) (24.8732 -10.0654 0) (24.9171 -10.9019 0) (22.4438 -10.8497 0) (22.319 -10.0065 0) (22.1835 -9.14264 0) (19.3918 -9.00406 0) (19.6034 -9.86927 0) (19.8085 -10.7162 0) (19.9958 -11.5437 0) (20.1699 -12.351 0) (20.337 -13.133 0) (20.4945 -13.8889 0) (18.0481 -13.7066 0) (17.7998 -12.9383 0) (17.545 -12.1469 0) (14.7509 -11.858 0) (15.0912 -12.6559 0) (15.4275 -13.4337 0) (12.6153 -13.073 0) (12.1949 -12.2887 0) (11.7729 -11.4876 0) (11.35 -10.6714 0) (14.4082 -11.0417 0) (17.2854 -11.3336 0) (17.015 -10.5025 0) (16.7309 -9.65499 0) (16.4447 -8.79124 0) (13.3384 -8.50611 0) (13.6965 -9.36587 0) (14.0571 -10.2109 0) (10.9218 -9.84402 0) (10.4895 -9.00476 0) (10.0633 -8.15211 0) (6.60544 -7.73451 0) (7.09418 -8.57603 0) (7.5924 -9.40688 0) (8.09246 -10.2279 0) (8.59025 -11.0401 0) (9.08884 -11.841 0) (9.58828 -12.6289 0) (10.0844 -13.4024 0) (10.5727 -14.1613 0) (11.0488 -14.9054 0) (11.5079 -15.6358 0) (11.9449 -16.3544 0) (12.3542 -17.0639 0) (12.7294 -17.7679 0) (13.0636 -18.4715 0) (10.4567 -18.1303 0) (10.0331 -17.3807 0) (9.5704 -16.6402 0) (6.47248 -16.134 0) (7.01558 -16.9096 0) (7.521 -17.7014 0) (4.2272 -17.196 0) (3.64792 -16.3625 0) (3.03223 -15.554 0) (2.38813 -14.7618 0) (5.89859 -15.3675 0) (9.07517 -15.9015 0) (8.5539 -15.1596 0) (8.01261 -14.4111 0) (7.45683 -13.6537 0) (4.05834 -13.0722 0) (4.68546 -13.8401 0) (5.30084 -14.6042 0) (1.72294 -13.9794 0) (1.04288 -13.2022 0) (0.354015 -12.4263 0) (-3.66667 -11.7301 0) (-2.92868 -12.5105 0) (-2.19563 -13.2984 0) (-1.4737 -14.098 0) (-0.769228 -14.9147 0) (-0.0885002 -15.7567 0) (0.562564 -16.6339 0) (-3.479 -16.0064 0) (-4.18747 -15.0977 0) (-4.92232 -14.2301 0) (-9.42205 -13.4861 0) (-8.64279 -14.3688 0) (-7.88569 -15.2979 0) (-12.6355 -14.5346 0) (-13.435 -13.5897 0) (-14.2492 -12.6971 0) (-15.0722 -11.8461 0) (-10.2162 -12.6397 0) (-5.67716 -13.3939 0) (-6.44519 -12.5814 0) (-7.21999 -11.7865 0) (-7.99556 -11.0047 0) (-12.624 -10.248 0) (-11.8231 -11.0263 0) (-11.0187 -11.8219 0) (-15.8979 -11.0285 0) (-16.7203 -10.2373 0) (-17.5347 -9.4675 0) (-18.3378 -8.71547 0) (-13.417 -9.48354 0) (-8.76691 -10.233 0) (-4.40433 -10.9549 0) (-0.339851 -11.6483 0) (3.42416 -12.2986 0) (6.89141 -12.886 0) (6.32073 -12.1079 0) (5.74902 -11.3196 0) (5.18032 -10.5221 0) (1.52284 -9.94324 0) (2.15292 -10.734 0) (2.78775 -11.5193 0) (-1.0309 -10.8713 0) (-1.71748 -10.0927 0) (-2.39706 -9.3122 0) (-3.06837 -8.53044 0) (0.898303 -9.14861 0) (4.61483 -9.71751 0) (4.05107 -8.90656 0) (3.49408 -8.08698 0) (2.94961 -7.26071 0) (-0.918033 -6.73779 0) (-0.326924 -7.54507 0) (0.280554 -8.34983 0) (-3.72966 -7.74776 0) (-4.37537 -6.96487 0) (-5.00103 -6.17972 0) (-9.30335 -5.59663 0) (-8.65335 -6.35905 0) (-7.97934 -7.12052 0) (-7.28567 -7.88344 0) (-6.57957 -8.64878 0) (-5.86304 -9.41564 0) (-5.13721 -10.1841 0) (-9.53053 -9.46974 0) (-10.284 -8.71292 0) (-11.0253 -7.96112 0) (-15.7222 -7.25343 0) (-14.9682 -7.98807 0) (-14.1993 -8.7309 0) (-19.1271 -7.97864 0) (-19.9002 -7.25479 0) (-20.6558 -6.54198 0) (-21.3964 -5.83896 0) (-16.4624 -6.5262 0) (-11.7542 -7.21363 0) (-12.4678 -6.47206 0) (-13.1575 -5.73319 0) (-13.8203 -4.99502 0) (-18.5445 -4.38508 0) (-17.8794 -5.09496 0) (-17.1849 -5.80798 0) (-22.1171 -5.14644 0) (-22.8065 -4.46167 0) (-23.4632 -3.78227 0) (-24.0951 -3.10627 0) (-19.1865 -3.67793 0) (-14.461 -4.25822 0) (-9.93273 -4.83364 0) (-5.60814 -5.39208 0) (-1.49247 -5.92678 0) (2.41875 -6.42963 0) (6.12803 -6.88636 0) (9.64689 -7.29009 0) (12.9883 -7.63358 0) (16.1641 -7.9117 0) (19.1831 -8.12095 0) (22.048 -8.25926 0) (24.7534 -8.3257 0) (27.2828 -8.32017 0) (29.6048 -8.24324 0) (31.6682 -8.09624 0) (33.3937 -7.88209 0) (34.6698 -7.60721 0) (35.3731 -7.28673 0) (35.4941 -6.94676 0) (35.2961 -6.62853 0) (34.9083 -6.33503 0) (34.2234 -6.04726 0) (33.4544 -5.78004 0) (32.8347 -5.5318 0) (32.3129 -5.29435 0) (31.849 -5.0706 0) (31.4344 -4.86057 0) (31.0715 -4.66292 0) (30.761 -4.47511 0) (30.9252 -4.14893 0) (31.0612 -3.82364 0) (31.1684 -3.50075 0) (31.4867 -3.6099 0) (31.3797 -3.95935 0) (31.241 -4.3109 0) (31.6114 -4.48043 0) (31.7546 -4.10005 0) (31.8631 -3.72117 0) (31.9362 -3.34587 0) (31.5619 -3.26436 0) (31.2466 -3.18185 0) (31.2962 -2.86862 0) (31.3181 -2.56298 0) (31.3138 -2.26708 0) (31.6023 -2.27213 0) (31.6185 -2.59315 0) (31.6056 -2.92469 0) (31.9744 -2.9765 0) (31.9782 -2.61574 0) (31.9495 -2.26637 0) (32.353 -2.24874 0) (32.3945 -2.63026 0) (32.3997 -3.02414 0) (32.3668 -3.42701 0) (32.295 -3.8357 0) (32.1842 -4.24737 0) (32.0351 -4.65965 0) (32.5086 -4.84956 0) (32.6637 -4.40197 0) (32.7767 -3.9538 0) (33.3118 -4.07434 0) (33.1988 -4.56285 0) (33.0392 -5.04956 0) (33.6668 -5.25658 0) (33.8281 -4.72666 0) (33.9368 -4.1933 0) (33.9924 -3.66021 0) (33.3777 -3.58728 0) (32.8468 -3.50786 0) (32.8741 -3.06743 0) (32.8595 -2.63634 0) (32.8048 -2.21859 0) (33.2987 -2.17551 0) (33.3695 -2.63332 0) (33.3966 -3.10548 0) (33.9953 -3.13188 0) (33.947 -2.61369 0) (33.8504 -2.11149 0) (33.7098 -1.63082 0) (33.187 -1.73674 0) (32.7125 -1.81829 0) (32.2778 -1.88301 0) (31.8909 -1.93129 0) (31.5595 -1.96411 0) (31.2857 -1.98306 0) (31.237 -1.713 0) (31.1707 -1.45888 0) (31.0904 -1.22248 0) (31.305 -1.1432 0) (31.4073 -1.39721 0) (31.4933 -1.67163 0) (31.8056 -1.61358 0) (31.6975 -1.31637 0) (31.5706 -1.04269 0) (31.4296 -0.795305 0) (31.1905 -0.911735 0) (30.9992 -1.00536 0) (30.9008 -0.808914 0) (30.7986 -0.634331 0) (30.6961 -0.482547 0) (30.8138 -0.369571 0) (30.9409 -0.523548 0) (31.0678 -0.704662 0) (31.2791 -0.576623 0) (31.1238 -0.388605 0) (30.9685 -0.23264 0) (31.1582 -0.0679181 0) (31.346 -0.225733 0) (31.5337 -0.421165 0) (31.7156 -0.652663 0) (31.8862 -0.917866 0) (32.0401 -1.21374 0) (32.1722 -1.53673 0) (32.5857 -1.43966 0) (32.4285 -1.08726 0) (32.2456 -0.765947 0) (32.6391 -0.584347 0) (32.8533 -0.935325 0) (33.0375 -1.32157 0) (33.5289 -1.17627 0) (33.3108 -0.753375 0) (33.0587 -0.36926 0) (32.7783 -0.0313438 0) (32.4005 -0.274712 0) (32.0426 -0.480317 0) (31.8257 -0.234135 0) (31.6012 -0.0301212 0) (31.3756 0.129594 0) (31.6056 0.365573 0) (31.877 0.203417 0) (32.1443 -0.0109214 0) (32.4753 0.254062 0) (32.1561 0.482561 0) (31.8275 0.651673 0) (32.0241 1.00449 0) (32.4249 0.820179 0) (32.8102 0.570599 0) (33.1757 0.259433 0) (33.5161 -0.112704 0) (33.8265 -0.539487 0) (34.1012 -1.00629 0) (34.3352 -1.501 0) (34.5232 -2.02107 0) (34.6599 -2.56595 0) (34.7395 -3.13143 0) (34.7585 -3.7114 0) (34.7158 -4.29912 0) (34.6115 -4.88802 0) (34.4465 -5.47222 0) (35.1506 -5.70852 0) (35.3365 -5.07027 0) (35.4637 -4.42441 0) (35.8978 -4.55503 0) (35.7563 -5.25848 0) (35.555 -5.95097 0) (35.7666 -6.21804 0) (35.9813 -5.47139 0) (36.1359 -4.71147 0) (36.2284 -3.94362 0) (35.9774 -3.8455 0) (35.5293 -3.77562 0) (35.53 -3.12951 0) (35.4619 -2.4922 0) (35.3228 -1.87121 0) (35.8319 -1.75069 0) (35.9449 -2.43466 0) (35.9935 -3.13623 0) (36.2571 -3.17518 0) (36.2203 -2.41365 0) (36.116 -1.66641 0) (36.1779 -1.57255 0) (36.2441 -2.39335 0) (36.2409 -3.22502 0) (36.1756 -4.05931 0) (36.0528 -4.88849 0) (35.8766 -5.7059 0) (35.6494 -6.50669 0) (34.9212 -6.78829 0) (35.1346 -5.9473 0) (35.3094 -5.08732 0) (33.9162 -5.27601 0) (33.7706 -6.16503 0) (33.5966 -7.0345 0) (31.8103 -7.22754 0) (31.9311 -6.33794 0) (32.0318 -5.42932 0) (32.1138 -4.50384 0) (34.0338 -4.37017 0) (35.4445 -4.21185 0) (35.5376 -3.32553 0) (35.5847 -2.4337 0) (35.5799 -1.54232 0) (34.2096 -1.5858 0) (34.1824 -2.52112 0) (34.123 -3.45064 0) (32.178 -3.5639 0) (32.225 -2.61205 0) (32.255 -1.65129 0) (32.2673 -0.685903 0) (34.2016 -0.649679 0) (35.5159 -0.658207 0) (36.0348 -0.770784 0) (35.941 -0.939502 0) (35.6569 -1.10004 0) (35.1132 -1.27764 0) (34.8267 -0.727191 0) (34.4779 -0.226515 0) (34.0791 0.223567 0) (34.6743 0.661257 0) (35.0885 0.116763 0) (35.415 -0.479135 0) (35.6997 -0.2328 0) (35.3856 0.442674 0) (34.999 1.05923 0) (34.5528 1.5919 0) (34.1885 1.12484 0) (33.6376 0.618741 0) (33.172 0.956319 0) (32.6914 1.23264 0) (32.1977 1.43778 0) (32.3885 1.96528 0) (33.0153 1.75489 0) (33.626 1.48067 0) (34.0253 2.05146 0) (33.3767 2.43569 0) (32.6547 2.68588 0) (32.8155 3.39117 0) (33.4671 3.07378 0) (34.0916 2.61383 0) (34.6425 2.05222 0) (35.1171 1.43171 0) (35.5059 0.745978 0) (35.8118 0.00588821 0) (35.3832 0.210239 0) (35.1732 1.04779 0) (34.8769 1.8349 0) (33.8921 2.07602 0) (34.0525 1.19341 0) (34.1524 0.280105 0) (32.2596 0.278067 0) (32.2248 1.23248 0) (32.1573 2.16827 0) (32.0453 3.07422 0) (33.6541 2.91047 0) (34.4798 2.55062 0) (33.9761 3.17515 0) (33.3661 3.68436 0) (32.6584 4.07204 -1.68038e-22) (32.2634 4.83178 0) (32.8621 4.32645 0) (33.3187 3.67262 0) (31.8724 3.93429 0) (31.6145 4.72346 0) (31.2395 5.4057 0) (30.7099 5.92797 0) (31.5234 5.15421 0) (31.8704 4.36757 1.67932e-22) (32.0525 3.58795 0) (31.8936 2.75132 0) (31.7695 2.09439 0) (31.6975 1.56522 0) (31.6149 1.1218 0) (31.4963 0.761212 0) (31.3372 0.474503 0) (31.1552 0.243413 0) (30.9757 0.051469 0) (30.8177 -0.109379 0) (30.6903 -0.24338 0) (30.5966 -0.354091 0) (30.5034 -0.248799 0) (30.4196 -0.165453 0) (30.3482 -0.101768 0) (30.3788 -0.025144 0) (30.4691 -0.0727582 0) (30.5742 -0.144837 0) (30.6759 -0.0186474 0) (30.5475 0.0404059 0) (30.4372 0.0690234 0) (30.3499 0.0693033 0) (30.3083 -0.000246545 0) (30.2929 -0.0555569 0) (30.2579 -0.0260011 0) (30.263 0.00472113 0) (30.2878 0.048589 0) (30.3088 0.113596 0) (30.4009 0.15587 0) (30.5129 0.180109 0) (30.6482 0.174114 0) (30.804 0.131957 0) (30.946 0.311159 0) (30.7526 0.334688 0) (30.5779 0.319714 0) (30.5929 0.512771 0) (30.8283 0.541752 0) (31.0771 0.531608 0) (31.1674 0.814658 0) (30.8451 0.817674 0) (30.535 0.776158 0) (30.2472 0.694872 0) (30.3735 0.45373 0) (30.4226 0.276082 0) (30.2811 0.216557 0) (30.1726 0.373245 0) (29.9948 0.579152 0) (29.7688 0.823898 0) (30.0676 0.989124 0) (30.417 1.10669 1.64876e-22) (30.8009 1.16973 -1.66643e-22) (31.2043 1.17576 0) (31.1994 1.61858 0) (30.7138 1.59581 0) (30.2565 1.50033 0) (30.0529 1.96423 0) (30.5927 2.09893 0) (31.1699 2.14337 0) (31.1431 2.76589 0) (30.4417 2.68912 0) (29.7983 2.5109 0) (29.218 2.22524 0) (29.5651 1.74222 0) (29.8435 1.33498 0) (29.4923 1.10894 0) (29.1498 1.44381 0) (28.7244 1.8396 0) (28.1992 2.31093 0) (28.792 2.80123 0) (29.4952 3.15946 0) (30.2987 3.40668 0) (31.1514 3.61484 0) (31.0766 4.45853 0) (30.1729 4.34951 -1.66818e-22) (29.1565 3.9836 1.65092e-22) (28.7526 5.00331 0) (29.7343 5.28461 0) (30.6676 5.28211 0) (29.994 6.21554 0) (29.0972 6.20854 0) (28.0528 5.91601 0) (27.0592 5.39279 0) (27.7076 4.42814 0) (28.2902 3.48855 0) (27.5597 2.87323 0) (26.8298 3.53744 0) (26.0365 4.52858 0) (24.9824 5.49683 0) (26.1043 6.33664 0) (27.1991 6.97127 0) (28.0972 7.14806 0) (28.7407 6.90434 0) (29.1783 6.38825 0) (29.466 5.70151 0) (29.6493 4.90641 0) (29.7634 4.04029 0) (29.8316 3.12705 0) (29.8699 2.183 0) (29.8886 1.21929 0) (29.895 0.244041 0) (29.8918 -0.736124 0) (29.8835 -1.7147 0) (29.8704 -2.68671 0) (29.8512 -3.64918 0) (29.8246 -4.59971 0) (29.7886 -5.53628 0) (29.7414 -6.4569 0) (29.6807 -7.35977 0) (27.2895 -7.42727 0) (27.2862 -6.51677 0) (27.275 -5.59024 0) (24.5471 -5.58684 0) (24.62 -6.51436 0) (24.6895 -7.42783 0) (21.9129 -7.36029 0) (21.7759 -6.44781 0) (21.6394 -5.52335 0) (21.5065 -4.58843 0) (24.4737 -4.64682 0) (27.2585 -4.64931 0) (27.2391 -3.69572 0) (27.2196 -2.73119 0) (27.2025 -1.75775 0) (24.28 -1.76788 0) (24.3371 -2.73565 0) (24.4027 -3.69589 0) (21.3803 -3.64455 0) (21.2639 -2.69327 0) (21.1605 -1.73629 0) (17.8727 -1.65757 0) (18.0258 -2.60005 0) (18.1953 -3.53884 0) (18.3783 -4.4722 0) (18.5716 -5.39856 0) (18.7721 -6.31645 0) (18.9768 -7.22441 0) (15.8879 -7.02098 0) (15.6166 -6.12084 0) (15.3529 -5.2127 0) (11.9846 -4.96754 0) (12.309 -5.8629 0) (12.6445 -6.75203 0) (9.23963 -6.42099 0) (8.8441 -5.54604 0) (8.46308 -4.66648 0) (8.09931 -3.78353 0) (11.6742 -4.06727 0) (15.0998 -4.29795 0) (14.8604 -3.37804 0) (14.6376 -2.4546 0) (14.4342 -1.52943 0) (10.8544 -1.35247 0) (11.1064 -2.25796 0) (11.3805 -3.16351 0) (7.75537 -2.89852 0) (7.43375 -2.01334 0) (7.13696 -1.12984 0) (6.86662 -0.249669 0) (10.6269 -0.44893 0) (14.2529 -0.604476 0) (17.739 -0.713352 0) (21.0729 -0.775626 0) (24.2338 -0.79475 0) (27.1896 -0.777884 0) (27.182 0.204934 0) (27.1778 1.18548 0) (27.1761 2.1581 0) (24.1713 2.12292 0) (24.1792 1.15519 0) (24.2002 0.181002 0) (21.0026 0.186442 0) (20.9518 1.14612 0) (20.9214 2.09892 0) (20.9121 3.0414 0) (24.1756 3.07978 0) (27.1732 3.1172 0) (27.1632 4.05523 0) (27.1362 4.96125 0) (27.0767 5.81892 0) (24.2198 5.82494 0) (24.207 4.9395 0) (24.1892 4.02092 0) (20.9236 3.97005 0) (20.9542 4.88066 0) (20.9994 5.7671 1.66329e-22) (17.495 5.68416 0) (17.4479 4.81578 0) (17.4281 3.92688 0) (17.4368 3.02111 0) (17.4734 2.10135 0) (17.5369 1.17011 0) (17.6257 0.230419 0) (14.0942 0.317846 0) (13.9637 1.23378 0) (13.8616 2.13922 0) (10.1101 2.21626 0) (10.2515 1.33927 0) (10.4236 0.449689 0) (6.62271 0.623691 0) (6.41263 1.48527 0) (6.23524 2.33244 0) (6.09233 3.1631 0) (10.0013 3.07824 0) (13.7899 3.03137 0) (13.7504 3.90798 0) (13.7442 4.76708 0) (13.7723 5.60616 0) (9.88592 5.554 0) (9.88799 4.7492 0) (9.9268 3.92324 0) (5.98484 3.9754 0) (5.91352 4.76737 0) (5.87927 5.53695 0) (1.7842 5.54509 0) (1.84424 4.81147 0) (1.94182 4.05498 0) (2.07641 3.27733 0) (2.24755 2.48012 0) (2.45461 1.66502 0) (2.69628 0.833752 0) (2.97273 -0.0119576 0) (3.28129 -0.866515 0) (3.61746 -1.72576 0) (3.98113 -2.5882 0) (4.36981 -3.4518 0) (4.78125 -4.31457 0) (5.21323 -5.17532 0) (5.66306 -6.03294 0) (1.90361 -5.59503 0) (1.4069 -4.75771 0) (0.931226 -3.91858 0) (-3.09337 -3.48539 0) (-2.58291 -4.29995 0) (-2.04844 -5.11399 0) (-6.1952 -4.60402 0) (-6.758 -3.81587 0) (-7.29416 -3.02817 0) (-7.80128 -2.24177 0) (-3.57737 -2.67131 0) (0.479199 -3.0786 0) (0.0527842 -2.23868 0) (-0.345774 -1.40107 0) (-0.713945 -0.568088 0) (-4.84931 -0.24567 0) (-4.45703 -1.04997 0) (-4.03267 -1.85897 0) (-8.27708 -1.45789 0) (-8.71964 -0.678143 0) (-9.13007 0.0951115 0) (-13.55 0.444822 0) (-13.132 -0.294388 0) (-12.6796 -1.04236 0) (-12.1926 -1.79531 0) (-11.6723 -2.55191 0) (-11.1207 -3.31096 0) (-10.5401 -4.07169 0) (-15.0784 -3.52437 0) (-15.6671 -2.7934 0) (-16.2249 -2.06546 0) (-20.9445 -1.58124 0) (-20.3906 -2.27613 0) (-19.8039 -2.97501 0) (-24.7016 -2.43527 0) (-25.2762 -1.76921 0) (-25.8167 -1.10797 0) (-26.3214 -0.451675 0) (-21.4637 -0.890678 0) (-16.7498 -1.34114 0) (-17.2396 -0.62128 0) (-17.6949 0.092015 0) (-18.1069 0.793052 0) (-22.7925 1.13136 0) (-22.3932 0.471218 0) (-21.9467 -0.205232 0) (-26.7911 0.197521 0) (-27.2147 0.833462 0) (-27.5938 1.4517 0) (-27.9275 2.05152 0) (-23.1474 1.77324 0) (-18.475 1.47629 0) (-13.9231 1.16798 0) (-9.50009 0.856257 0) (-5.20999 0.54987 0) (-1.05329 0.258012 0) (-1.35466 1.07207 0) (-1.62079 1.8701 0) (-1.84999 2.65066 0) (-6.05455 2.83723 0) (-5.81183 2.09264 0) (-5.52978 1.3298 0) (-9.83 1.59995 0) (-10.1194 2.32554 0) (-10.3671 3.03201 0) (-10.5725 3.71806 0) (-6.2572 3.56223 0) (-2.04129 3.41237 0) (-2.19425 4.15379 0) (-2.30853 4.87342 0) (-2.38369 5.56947 0) (-6.6205 5.60442 0) (-6.54068 4.94766 0) (-6.41938 4.26625 0) (-10.7352 4.38226 0) (-10.8545 5.02284 0) (-10.9296 5.63746 0) (-15.317 5.65927 0) (-15.2535 5.0897 0) (-15.1435 4.49253 0) (-14.988 3.87047 0) (-14.7876 3.22552 0) (-14.543 2.55925 0) (-14.2545 1.87303 0) (-18.7995 2.14091 0) (-19.0791 2.78603 0) (-19.3134 3.4104 0) (-23.9379 3.58032 0) (-23.7207 2.99896 0) (-23.457 2.39614 0) (-28.2151 2.63202 0) (-28.4562 3.19196 0) (-28.6505 3.72986 0) (-28.7979 4.24397 0) (-24.1084 4.1386 0) (-19.5018 4.01254 0) (-19.6439 4.59067 0) (-19.7389 5.14256 0) (-19.7861 5.6652 0) (-24.3351 5.6527 0) (-24.3075 5.1776 0) (-24.2318 4.67184 0) (-28.8981 4.73222 0) (-28.951 5.19203 0) (-28.9565 5.62023 0) (-28.9148 6.01291 0) (-24.314 6.09306 0) (-19.7843 6.15455 0) (-15.3327 6.1975 0) (-10.9593 6.22282 0) (-6.65788 6.23372 0) (-2.41907 6.2396 0) (1.7624 6.25377 0) (5.88305 6.28195 0) (9.92161 6.33513 0) (13.8341 6.42202 0) (17.5658 6.52657 0) (21.0505 6.61921 -1.66285e-22) (24.2116 6.66035 0) (26.9602 6.6023 0) (26.7501 7.26905 0) (26.3869 7.74821 0) (25.791 7.91466 0) (23.7023 8.46347 0) (24.0092 8.04784 0) (24.1562 7.41753 0) (21.0914 7.41987 0) (21.0926 8.13848 0) (21.0032 8.71689 0) (20.7416 9.03521 0) (23.1355 8.50337 0) (24.883 7.56363 0) (23.7145 6.53502 0) (22.2034 7.86969 0) (20.1947 8.84862 0) (17.5082 9.417 0) (17.7493 9.25936 0) (17.7917 8.75638 1.63551e-22) (17.7387 8.08834 -1.6515e-22) (17.6526 7.33362 0) (13.9272 7.21007 0) (14.0449 7.96215 0) (14.1712 8.66164 0) (10.2496 8.5038 0) (10.1058 7.81485 0) (9.99519 7.08977 0) (5.92631 7.00012 0) (6.01052 7.6895 0) (6.13721 8.34704 0) (6.30532 8.96327 0) (10.4104 9.13708 0) (14.2676 9.26558 0) (14.2502 9.66106 0) (10.5393 9.65783 0) (6.49954 9.51274 0) (2.3144 9.28214 0) (2.09745 8.77659 0) (1.94219 8.20383 0) (1.83861 7.58656 0) (1.7799 6.93517 0) (-2.4135 6.88077 0) (-2.36477 7.48873 0) (-2.26816 8.05578 0) (-6.49198 7.90486 0) (-6.5976 7.39211 0) (-6.65119 6.83157 0) (-10.9415 6.77422 0) (-10.8734 7.28465 0) (-10.7503 7.74241 0) (-10.5676 8.12537 0) (-6.32632 8.3474 0) (-2.11465 8.56374 0) (-1.89096 8.97305 0) (-6.09537 8.67701 0) (-10.3294 8.39697 0) (-14.6351 8.11153 0) (-14.8761 7.88657 0) (-15.0724 7.55918 0) (-15.213 7.15691 0) (-15.2988 6.69918 0) (-19.7325 6.60527 0) (-19.6295 7.01025 0) (-19.4745 7.3594 0) (-23.9586 7.14824 0) (-24.1251 6.84805 0) (-24.244 6.49361 0) (-28.8263 6.36552 0) (-28.6924 6.67284 0) (-28.5155 6.92882 0) (-28.3021 7.12581 0) (-23.7492 7.38287 0) (-19.2699 7.63725 0) (-19.0307 7.82471 0) (-23.5136 7.53984 0) (-28.0695 7.25696 0) (-32.6777 6.9744 0) (-32.91 6.86602 0) (-33.1288 6.70213 0) (-33.3164 6.48576 0) (-33.4657 6.2216 0) (-33.5734 5.91387 0) (-33.6372 5.5666 1.63357e-22) (-33.656 5.18369 -1.63442e-22) (-33.6289 4.76871 0) (-33.5557 4.32473 0) (-33.436 3.85434 0) (-33.2699 3.35969 0) (-33.0572 2.84259 0) (-32.7981 2.30458 0) (-32.4928 1.74699 0) (-32.1417 1.17093 0) (-31.7456 0.57727 0) (-31.3036 -0.032739 0) (-30.8211 -0.653597 0) (-30.3035 -1.28051 0) (-29.7506 -1.91295 0) (-29.1648 -2.55126 0) (-28.5532 -3.19539 0) (-27.915 -3.84391 0) (-27.2408 -4.4998 0) (-26.533 -5.16558 0) (-25.8039 -5.84272 0) (-25.0578 -6.53138 0) (-24.2912 -7.23348 0) (-23.5053 -7.95141 0) (-22.7022 -8.68787 0) (-21.8841 -9.44595 0) (-21.0535 -10.2294 0) (-20.214 -11.0432 0) (-19.3705 -11.8945 0) (-18.5282 -12.7925 0) (-17.6917 -13.7477 0) (-16.8652 -14.7738 0) (-16.0532 -15.8871 0) (-15.2583 -17.1073 0) (-14.4797 -18.4579 0) (-13.7117 -19.963 0) (-12.9477 -21.6529 0) (-12.1769 -23.5655 0) (-16.9262 -22.75 0) (-15.9762 -24.8722 0) (-14.9553 -27.2475 0) (-19.7004 -26.1617 0) (-18.4257 -28.6956 0) (-17.0232 -31.4795 0) (-15.4704 -34.5161 0) (-20.0356 -32.8731 0) (-21.7459 -30.0013 0) (-23.3011 -27.3584 0) (-28.4325 -25.8926 0) (-26.7398 -28.3877 0) (-24.8866 -31.0904 0) (-22.8547 -34.0001 0) (-20.6273 -37.1135 0) (-18.1887 -40.4258 0) (-15.5243 -43.9311 0) (-20.0748 -41.1627 0) (-22.8782 -37.8994 0) (-25.4545 -34.8122 0) (-30.5004 -32.4134 0) (-27.8039 -35.2752 0) (-24.8782 -38.2969 0) (-29.8683 -35.3526 0) (-32.8964 -32.5735 0) (-35.6929 -29.9388 0) (-38.2692 -27.4532 0) (-32.98 -29.717 0) (-27.8169 -31.9069 0) (-29.9802 -29.1877 0) (-31.9598 -26.6569 0) (-33.7726 -24.3146 0) (-39.2578 -22.648 0) (-37.3436 -24.8334 0) (-35.2563 -27.1897 0) (-40.638 -25.1202 0) (-42.8129 -22.9415 0) (-44.8086 -20.917 0) (-46.6403 -19.0444 0) (-41.0149 -20.6309 0) (-35.4359 -22.1581 0) (-29.9833 -23.6023 0) (-24.7218 -24.9418 0) (-26.0286 -22.7447 0) (-20.8706 -23.8699 0) (-21.9585 -21.8077 0) (-22.9852 -19.9579 0) (-17.8296 -20.8606 0) (-18.7067 -19.1762 0) (-19.5704 -17.668 0) (-20.4301 -16.3122 0) (-21.2915 -15.0864 0) (-26.7778 -14.2439 0) (-25.8572 -15.4627 0) (-24.9228 -16.8075 0) (-23.9688 -18.2989 0) (-29.4606 -17.3456 0) (-28.3804 -18.9625 0) (-27.2419 -20.7564 0) (-32.7346 -19.6094 0) (-31.4111 -21.511 0) (-36.9673 -20.1819 0) (-38.3837 -18.378 0) (-39.7008 -16.7359 0) (-33.9706 -17.8855 0) (-35.1342 -16.3245 0) (-36.2377 -14.9098 0) (-30.4955 -15.8861 0) (-31.495 -14.5653 0) (-32.4656 -13.3655 0) (-38.3012 -12.4561 0) (-37.2911 -13.6255 0) (-43.1858 -12.65 0) (-42.091 -13.8858 0) (-40.9326 -15.2431 0) (-46.7883 -14.1158 0) (-45.5039 -15.5295 0) (-44.1227 -17.0797 0) (-42.6313 -18.7772 0) (-48.3232 -17.3194 0) (-49.8722 -15.7359 0) (-51.3014 -14.2861 0) (-52.6237 -12.9609 0) (-53.8504 -11.7503 0) (-47.9875 -12.8271 0) (-49.1114 -11.6514 0) (-50.168 -10.577 0) (-44.2246 -11.5227 0) (-45.2133 -10.4905 0) (-39.2733 -11.3861 0) (-33.411 -12.2688 0) (-27.6872 -13.1312 0) (-22.156 -13.968 0) (-23.0224 -12.9384 0) (-23.8882 -11.982 0) (-24.7503 -11.0861 0) (-30.3462 -10.2707 0) (-29.4727 -11.1579 0) (-28.5858 -12.1073 0) (-34.3332 -11.26 0) (-35.2328 -10.3258 0) (-36.1094 -9.45471 0) (-36.9622 -8.63713 0) (-31.204 -9.43539 0) (-25.6054 -10.2398 0) (-26.4493 -9.43412 0) (-27.2787 -8.66232 0) (-28.0911 -7.91933 0) (-33.6617 -7.16503 0) (-32.8636 -7.8884 0) (-32.0438 -8.64345 0) (-37.7903 -7.8652 0) (-38.5927 -7.1324 0) (-39.3687 -6.43328 0) (-45.1603 -5.73163 0) (-44.4138 -6.40211 0) (-43.6359 -7.10732 0) (-42.8267 -7.85285 0) (-41.9863 -8.64521 0) (-41.1143 -9.49199 0) (-40.2103 -10.4021 0) (-46.1565 -9.54146 0) (-47.057 -8.66462 0) (-47.917 -7.85035 0) (-53.8354 -7.07845 0) (-52.9942 -7.85295 0) (-52.1048 -8.68814 0) (-51.164 -9.59286 0) (-57.0505 -8.70458 0) (-56.056 -9.63221 0) (-54.9917 -10.6442 0) (-60.7433 -9.6403 0) (-59.5947 -10.6693 0) (-58.352 -11.7939 0) (-57.0051 -13.023 0) (-55.5426 -14.3651 0) (-53.952 -15.828 0) (-52.2198 -17.4183 0) (-50.332 -19.1412 0) (-48.274 -21.0005 0) (-46.0316 -22.9981 0) (-43.5911 -25.1339 0) (-40.9393 -27.4064 0) (-38.0641 -29.8127 0) (-34.9546 -32.3484 0) (-40.024 -29.3 0) (-43.1947 -27.0079 0) (-46.1287 -24.8312 0) (-51.1411 -22.2243 0) (-48.1646 -24.1705 0) (-44.9493 -26.2185 0) (-49.6053 -23.1094 0) (-52.853 -21.306 0) (-55.8603 -19.5915 0) (-58.6374 -17.9686 0) (-53.8894 -20.3833 0) (-48.8367 -22.7735 0) (-51.3302 -20.8376 0) (-53.6219 -19.0248 0) (-55.7249 -17.3349 0) (-60.8812 -15.5074 0) (-58.7471 -17.0243 0) (-56.4207 -18.6496 0) (-61.1953 -16.4391 0) (-63.5458 -15.0041 0) (-65.701 -13.6633 0) (-70.1016 -11.7999 0) (-67.9317 -12.9613 0) (-65.5639 -14.2033 0) (-62.9866 -15.526 0) (-60.188 -16.9285 0) (-57.1576 -18.4095 0) (-53.8851 -19.9666 0) (-57.7047 -16.7714 0) (-54.1592 -18.1395 0) (-57.4157 -14.6118 0) (-53.5888 -15.7593 0) (-49.4917 -16.9502 0) (-45.1176 -18.1811 0) (-47.6665 -13.7566 0) (-52.06 -12.8261 0) (-56.1752 -11.9257 0) (-58.017 -8.20853 0) (-53.8889 -8.82804 0) (-49.4813 -9.46809 0) (-44.7884 -10.1267 0) (-45.8794 -5.86023 0) (-40.8863 -6.2508 0) (-50.5811 -5.47911 0) (-54.9968 -5.10874 0) (-59.1324 -4.75024 0) (-62.9947 -4.40462 0) (-61.8726 -7.61131 0) (-60.0189 -11.0578 0) (-63.5987 -10.2247 0) (-60.98 -13.5104 0) (-64.2901 -12.4577 0) (-60.9974 -15.4642 0) (-64.0466 -14.2203 0) (-67.3551 -11.4556 0) (-70.0006 -8.66967 0) (-66.9229 -9.42809 0) (-68.7971 -6.4896 0) (-65.4632 -7.0379 0) (-66.5912 -4.07277 0) (-69.9305 -3.75543 0) (-73.0215 -3.4532 0) (-71.8835 -5.96746 0) (-74.7322 -5.47226 0) (-72.8418 -7.95054 0) (-70.185 -10.5058 0) (-66.8622 -13.0417 0) (-69.4549 -11.9297 0) (-71.8359 -10.8848 0) (-74.0168 -9.90701 0) (-77.3715 -7.97713 0) (-75.1819 -8.76637 0) (-72.7902 -9.60924 0) (-75.4568 -7.27148 0) (-77.8567 -6.63284 0) (-80.0529 -6.03459 0) (-82.0571 -5.47626 0) (-79.3709 -7.24092 0) (-76.0097 -8.99548 0) (-72.086 -10.718 0) (-67.6736 -12.4155 0) (-62.836 -14.0975 0) (-57.6528 -15.7664 0) (-59.4192 -14.3161 0) (-61.0376 -12.9797 0) (-62.5211 -11.7515 0) (-67.7552 -10.478 0) (-66.2603 -11.587 0) (-64.6247 -12.792 0) (-69.4762 -11.2587 0) (-71.1213 -10.1897 0) (-72.6213 -9.20449 0) (-73.9876 -8.2984 0) (-69.1214 -9.45929 0) (-63.8818 -10.6249 0) (-65.1309 -9.59263 0) (-66.2785 -8.64704 0) (-67.3338 -7.7804 0) (-61.8064 -8.69803 0) (-62.7918 -7.8338 0) (-63.706 -7.03921 0) (-57.9811 -7.85184 0) (-58.8527 -7.06509 0) (-59.6691 -6.33623 0) (-60.4338 -5.65797 0) (-54.631 -6.35678 0) (-48.7382 -7.09028 0) (-49.5218 -6.37707 0) (-50.2686 -5.70432 0) (-50.9792 -5.06646 0) (-56.7625 -4.44313 0) (-56.0931 -5.04488 0) (-55.3831 -5.68097 0) (-61.1495 -5.02379 0) (-61.8185 -4.42791 0) (-62.4428 -3.86527 0) (-63.0241 -3.33145 0) (-57.3923 -3.87107 0) (-51.6541 -4.45868 0) (-45.8752 -5.09102 0) (-40.1173 -5.76312 0) (-34.4368 -6.4689 0) (-28.8846 -7.20108 0) (-29.6574 -6.50409 0) (-30.4076 -5.82532 0) (-31.1343 -5.16211 0) (-36.6108 -4.50813 0) (-35.9125 -5.14351 0) (-35.1876 -5.79616 0) (-40.8378 -5.11782 0) (-41.5293 -4.49393 0) (-42.1913 -3.88855 0) (-42.8279 -3.29902 0) (-37.287 -3.88761 0) (-31.8417 -4.51229 0) (-32.5266 -3.87463 0) (-33.1765 -3.24875 0) (-33.7873 -2.63224 0) (-39.1328 -2.10091 0) (-38.5573 -2.68456 0) (-37.9399 -3.2795 0) (-43.4402 -2.72186 0) (-44.0177 -2.15871 0) (-44.5517 -1.60859 0) (-50.0005 -1.16151 0) (-49.5136 -1.67767 0) (-48.9823 -2.20814 0) (-48.4177 -2.75295 0) (-47.828 -3.30989 0) (-47.2093 -3.88336 0) (-46.5583 -4.4761 0) (-52.2937 -3.87685 0) (-52.8983 -3.31746 0) (-53.4682 -2.77763 0) (-59.0541 -2.29585 0) (-58.5375 -2.80058 0) (-57.9837 -3.3247 0) (-63.564 -2.82261 0) (-64.0639 -2.33546 0) (-64.5246 -1.86717 0) (-64.9471 -1.41532 0) (-59.5349 -1.80784 0) (-54.0053 -2.2546 0) (-54.5161 -1.74389 0) (-54.9957 -1.24674 0) (-55.4313 -0.764426 0) (-60.791 -0.421637 0) (-60.4104 -0.870123 0) (-59.9873 -1.33307 0) (-65.3386 -0.977343 0) (-65.7013 -0.549752 0) (-66.0241 -0.135792 0) (-71.075 0.0926168 0) (-70.81 -0.285729 0) (-70.5092 -0.67706 0) (-70.1794 -1.07793 0) (-69.8157 -1.4926 0) (-69.4121 -1.9232 0) (-68.9675 -2.37191 0) (-68.4806 -2.84138 0) (-67.9497 -3.33476 0) (-67.3728 -3.85567 0) (-66.7475 -4.40826 0) (-66.0714 -4.99723 0) (-65.3415 -5.62792 0) (-64.5544 -6.30634 0) (-70.0191 -5.57936 0) (-69.1976 -6.25378 0) (-68.3045 -6.98511 0) (-73.5064 -6.16016 0) (-72.5538 -6.88178 1.63937e-22) (-71.5111 -7.66777 0) (-70.37 -8.52472 0) (-75.2314 -7.46626 0) (-76.3625 -6.70258 0) (-77.3903 -6.00168 -1.63665e-22) (-81.7813 -5.13622 0) (-80.7688 -5.74785 0) (-79.6489 -6.4139 0) (-78.4122 -7.13911 0) (-77.0487 -7.92807 0) (-75.5475 -8.78507 0) (-73.8973 -9.71396 0) (-77.8267 -8.14876 0) (-79.4796 -7.36474 0) (-80.9802 -6.64076 0) (-84.3458 -5.33651 0) (-82.8464 -5.92246 0) (-81.192 -6.55657 0) (-83.8809 -4.957 0) (-85.5361 -4.47561 0) (-87.0341 -4.03055 0) (-88.3859 -3.62002 0) (-85.7013 -4.79628 0) (-82.3397 -5.97372 0) (-83.569 -5.36011 0) (-84.6779 -4.79621 0) (-85.6758 -4.27815 0) (-89.0078 -3.42167 0) (-88.0226 -3.84185 0) (-86.9236 -4.29904 0) (-89.6023 -3.242 0) (-90.6931 -2.89432 0) (-91.6677 -2.57468 0) (-92.535 -2.28079 0) (-89.8877 -3.03539 0) (-86.5713 -3.80199 0) (-82.6947 -4.57423 0) (-78.3232 -5.3579 0) (-79.1685 -4.76569 0) (-74.3759 -5.49644 0) (-75.1689 -4.88447 0) (-75.8909 -4.31848 0) (-70.7742 -4.95538 0) (-71.4672 -4.37584 0) (-72.1023 -3.83522 0) (-72.6829 -3.32862 0) (-73.2119 -2.85173 0) (-78.16 -2.41458 0) (-77.6777 -2.84542 0) (-77.1411 -3.30364 0) (-76.5469 -3.79317 0) (-81.243 -3.24667 0) (-80.6228 -3.71494 0) (-79.9331 -4.21972 0) (-84.2545 -3.58055 0) (-83.5168 -4.05719 0) (-87.3722 -3.36387 0) (-88.0857 -2.96001 0) (-88.7181 -2.58683 0) (-84.914 -3.14001 0) (-85.501 -2.73153 0) (-86.0204 -2.35139 0) (-81.7983 -2.81065 0) (-82.2931 -2.40295 0) (-82.7311 -2.02 0) (-86.8744 -1.66294 0) (-86.4769 -1.99622 0) (-90.1851 -1.61882 0) (-89.7628 -1.91924 0) (-89.2754 -2.24095 0) (-92.504 -1.76915 0) (-91.9721 -2.04961 0) (-91.3629 -2.3523 0) (-90.6703 -2.67994 0) (-93.3028 -2.01033 0) (-93.9786 -1.76105 0) (-94.5692 -1.53078 0) (-95.0807 -1.31747 0) (-95.5188 -1.11923 0) (-92.964 -1.5084 0) (-93.3571 -1.26505 0) (-93.6878 -1.03698 0) (-90.5466 -1.33712 0) (-90.8512 -1.07183 0) (-87.2166 -1.3488 0) (-83.1158 -1.65867 0) (-78.591 -2.00762 0) (-73.6922 -2.40071 0) (-74.126 -1.9722 0) (-74.5157 -1.56326 0) (-74.8629 -1.17141 0) (-79.603 -0.901327 0) (-79.3103 -1.25348 0) (-78.9736 -1.62148 0) (-83.4502 -1.31621 0) (-83.7371 -0.990211 0) (-83.9788 -0.678648 0) (-84.177 -0.379921 0) (-79.8532 -0.563295 0) (-75.1687 -0.794712 0) (-75.4375 -0.431336 0) (-75.677 -0.0769469 0) (-75.8824 0.264938 0) (-80.3918 0.383929 0) (-80.2446 0.0786908 0) (-80.0637 -0.237821 0) (-84.3333 -0.092679 0) (-84.4581 0.184724 0) (-84.5513 0.452939 0) (-88.3197 0.477267 0) (-88.2762 0.246432 0) (-88.2023 0.00821935 0) (-88.0941 -0.239905 0) (-87.9436 -0.498481 0) (-87.7484 -0.768498 0) (-87.507 -1.05135 0) (-91.1025 -0.820904 0) (-91.3037 -0.582552 0) (-91.4575 -0.355254 0) (-94.4638 -0.243697 0) (-94.3451 -0.427003 0) (-94.1783 -0.619483 0) (-93.9604 -0.822329 0) (-96.4416 -0.598098 0) (-96.1948 -0.761047 0) (-95.8886 -0.934284 0) (-97.6822 -0.632048 0) (-97.3292 -0.759706 0) (-96.9068 -0.896583 0) (-96.41 -1.04389 0) (-95.8329 -1.20293 0) (-95.1692 -1.37513 0) (-94.4122 -1.56196 0) (-93.5543 -1.76498 0) (-92.5875 -1.98575 0) (-91.503 -2.22586 0) (-90.2914 -2.48685 0) (-88.9427 -2.77021 0) (-87.4463 -3.07731 0) (-85.7911 -3.40937 0) (-83.966 -3.76744 0) (-81.9591 -4.15232 0) (-79.7589 -4.56459 0) (-77.3537 -5.00456 0) (-78.4989 -2.89578 0) (-75.8742 -3.16655 0) (-80.9066 -2.64103 0) (-83.1086 -2.40229 0) (-85.1165 -2.17937 0) (-86.9419 -1.97194 0) (-88.5964 -1.77955 0) (-90.0913 -1.60158 0) (-91.4377 -1.43735 0) (-92.646 -1.28605 0) (-93.7263 -1.14684 0) (-94.688 -1.01884 0) (-95.5399 -0.901121 0) (-96.2901 -0.792785 0) (-96.9461 -0.692937 0) (-97.5149 -0.600719 0) (-98.0027 -0.515317 0) (-98.4154 -0.435969 0) (-98.7583 -0.361978 -2.32255e-23) (-99.0362 -0.292708 0) (-97.9709 -0.512513 0) (-98.1995 -0.400125 0) (-98.372 -0.294036 0) (-96.633 -0.444194 0) (-96.7725 -0.298269 0) (-96.8632 -0.159472 0) (-96.9079 -0.0271061 0) (-94.5367 -0.068626 0) (-91.5661 -0.137904 0) (-91.6316 0.0700424 0) (-91.6609 0.269261 0) (-91.6604 0.462408 0) (-94.5198 0.413365 0) (-94.5577 0.258363 0) (-94.5659 0.09855 0) (-96.9086 0.0990926 0) (-96.8709 0.219538 0) (-96.8034 0.336453 0) (-98.4219 0.242534 0) (-98.5102 0.162267 0) (-98.5685 0.0796865 0) (-98.5877 -0.00693558 0) (-98.563 -0.0979534 0) (-98.492 -0.193509 0) (-99.523 -0.107963 0) (-99.4147 -0.166153 0) (-99.2537 -0.227596 0) (-99.582 -0.052685 0) (-99.5949 -4.69963e-05 0) (-99.5639 0.0499919 0) (-99.4933 0.0976769 0) (-99.3926 0.144064 0) (-99.2612 0.188675 0) (-98.302 0.319676 0) (-96.703 0.448632 0) (-94.4472 0.56183 0) (-91.6227 0.647166 0) (-88.323 0.697837 0) (-84.6008 0.708909 0) (-80.4919 0.67513 0) (-76.0375 0.591671 0) (-71.2883 0.455493 0) (-66.2987 0.263223 0) (-61.1242 0.0128178 0) (-55.8208 -0.295058 0) (-50.4466 -0.656916 0) (-45.0496 -1.06827 0) (-39.6764 -1.52504 0) (-34.3691 -2.02155 0) (-34.9249 -1.41676 0) (-35.4472 -0.818592 0) (-35.9335 -0.226492 0) (-41.127 0.165314 0) (-40.6771 -0.390492 0) (-40.1935 -0.954301 0) (-45.5195 -0.532111 0) (-45.9589 -0.00336241 0) (-46.3597 0.51366 0) (-46.7175 1.01595 0) (-41.5335 0.708252 0) (-36.3846 0.356599 0) (-36.7901 0.925211 0) (-37.1512 1.47694 0) (-37.4674 2.01111 0) (-42.4912 2.23865 0) (-42.2162 1.74573 0) (-41.8967 1.23535 0) (-47.033 1.50242 0) (-47.3054 1.97239 0) (-47.5343 2.42505 0) (-52.5629 2.56672 0) (-52.3842 2.15305 0) (-52.1632 1.72238 0) (-51.9003 1.27554 0) (-51.5958 0.813188 0) (-51.2499 0.335697 0) (-50.8626 -0.155879 0) (-56.1797 0.167824 0) (-56.5062 0.621255 0) (-56.7938 1.05996 0) (-61.9077 1.25187 0) (-61.6801 0.850778 0) (-61.4176 0.435742 0) (-66.5265 0.648044 0) (-66.7236 1.02451 0) (-66.8896 1.38856 0) (-67.0177 1.73862 0) (-62.0959 1.63818 0) (-57.0411 1.48362 0) (-57.248 1.8921 0) (-57.4142 2.28483 0) (-57.5397 2.661 0) (-62.4246 2.70625 0) (-62.3541 2.36595 0) (-62.2446 2.00969 0) (-67.1076 2.0745 0) (-67.1597 2.39581 0) (-67.1745 2.70188 0) (-67.1524 2.99187 0) (-62.4563 3.0297 0) (-57.6247 3.01969 0) (-52.6994 2.96242 0) (-47.7196 2.85941 0) (-42.7215 2.71307 0) (-37.7379 2.52674 0) (-37.9627 3.02268 0) (-38.1417 3.49754 0) (-38.275 3.94976 0) (-43.1439 4.01266 0) (-43.0476 3.60155 0) (-42.9069 3.16783 0) (-47.8613 3.27428 0) (-47.9599 3.66836 0) (-48.0157 4.04009 0) (-48.0297 4.38773 0) (-43.1964 4.39936 0) (-38.3629 4.37751 0) (-38.4057 4.77861 0) (-38.4041 5.15059 0) (-38.3588 5.49055 0) (-43.0988 5.39062 0) (-43.1728 5.09083 0) (-43.2058 4.75954 0) (-48.0027 4.70929 0) (-47.936 5.00257 0) (-47.831 5.26522 0) (-52.5261 5.11271 0) (-52.6641 4.88405 0) (-52.7668 4.62593 0) (-52.8325 4.34045 0) (-52.8597 4.02961 0) (-52.8472 3.69525 0) (-52.794 3.33903 0) (-57.6696 3.35983 0) (-57.6751 3.68019 0) (-57.642 3.97937 0) (-62.3263 3.88815 0) (-62.4062 3.62187 0) (-62.4499 3.33529 0) (-67.0941 3.26486 0) (-67.0007 3.51978 0) (-66.8734 3.75546 0) (-66.7136 3.97063 0) (-62.2115 4.13274 0) (-57.5717 4.25584 0) (-57.4655 4.50791 0) (-57.325 4.73376 0) (-57.1523 4.93155 0) (-61.6752 4.72053 -1.63676e-22) (-61.884 4.55056 1.63758e-22) (-62.0635 4.35408 0) (-66.5232 4.16388 0) (-66.3042 4.33377 0) (-66.0587 4.47884 0) (-70.2646 4.20626 0) (-70.5469 4.08331 0) (-70.8054 3.93735 0) (-71.0379 3.76967 0) (-71.2423 3.58156 0) (-71.4166 3.37425 0) (-71.5593 3.14891 0) (-71.6689 2.9066 0) (-71.7443 2.6483 0) (-71.7846 2.37485 0) (-71.7894 2.087 0) (-71.7579 1.78538 0) (-71.6895 1.47034 0) (-71.5851 1.14231 0) (-71.4527 0.803174 0) (-76.1414 0.903227 0) (-76.2113 1.2052 0) (-76.2556 1.49861 0) (-80.537 1.47622 0) (-80.5509 1.21662 0) (-80.5401 0.951646 0) (-84.5992 0.951301 0) (-84.5558 1.18153 0) (-84.4868 1.4076 0) (-84.3919 1.62482 1.63904e-22) (-80.4928 1.72521 -1.64109e-22) (-76.2662 1.78 0) (-76.2412 2.04874 0) (-76.1814 2.30455 0) (-76.0876 2.54695 0) (-80.1582 2.40024 0) (-80.3026 2.18745 0) (-80.4145 1.96233 0) (-84.2645 1.83128 0) (-84.1046 2.0268 0) (-83.9133 2.21118 0) (-87.3169 1.98284 0) (-87.5506 1.82591 0) (-87.7539 1.65917 0) (-87.9257 1.48277 0) (-88.0668 1.29704 0) (-88.1854 1.10393 0) (-88.2768 0.906512 0) (-91.5373 0.821974 0) (-91.4042 0.986994 0) (-91.2424 1.14759 0) (-93.9627 0.962749 0) (-94.1608 0.835116 0) (-94.3286 0.702458 0) (-96.5581 0.55509 0) (-96.3641 0.65551 0) (-96.1377 0.750872 0) (-95.8931 0.843901 0) (-93.7461 1.08645 0) (-91.0605 1.30217 0) (-90.8497 1.44891 0) (-90.6081 1.58742 0) (-90.3371 1.71756 0) (-92.9255 1.41819 0) (-93.2282 1.31442 0) (-93.5022 1.20381 0) (-95.6231 0.932252 0) (-95.3237 1.01545 0) (-94.9962 1.0934 0) (-94.6422 1.16593 0) (-92.5958 1.51486 0) (-90.0382 1.83902 0) (-87.0543 2.12958 0) (-83.6918 2.38395 0) (-79.9821 2.60011 0) (-75.9605 2.77527 0) (-75.8011 2.98872 0) (-75.6107 3.18644 0) (-75.3907 3.36747 0) (-79.2762 3.11494 0) (-79.5396 2.95827 0) (-79.7755 2.78638 0) (-83.4413 2.5445 0) (-83.1633 2.69215 0) (-82.8595 2.82616 0) (-82.5319 2.94576 0) (-78.9871 3.25548 0) (-75.1429 3.53077 0) (-74.8693 3.67525 0) (-74.5722 3.79976 0) (-74.254 3.90316 0) (-77.9878 3.57047 0) (-78.3404 3.48425 0) (-78.6744 3.37892 0) (-82.1826 3.05008 0) (-81.8142 3.13826 0) (-81.4292 3.20941 0) (-84.5474 2.82073 1.30561e-21) (-84.962 2.76282 0) (-85.3619 2.69006 0) (-85.7445 2.60323 0) (-86.1072 2.50307 0) (-86.4478 2.3903 0) (-86.7641 2.26559 0) (-89.7128 1.95135 0) (-89.3627 2.05408 0) (-88.9896 2.14668 0) (-91.4609 1.75876 0) (-91.8617 1.68555 0) (-92.2407 1.60411 0) (-94.2634 1.23278 0) (-93.8617 1.29368 0) (-93.4389 1.3483 0) (-92.9974 1.39633 0) (-91.0405 1.8233 0) (-88.5958 2.22858 0) (-88.1835 2.29921 0) (-87.7555 2.35794 0) (-87.3144 2.40412 -2.5759e-21) (-89.6867 1.96014 -2.53978e-21) (-90.1507 1.92449 2.38283e-21) (-90.6029 1.8787 0) (-92.5395 1.43744 0) (-92.068 1.47124 1.60667e-22) (-91.5855 1.49736 -1.28477e-21) (-91.0945 1.51525 -4.04256e-20) (-89.2135 1.98502 -1.77714e-20) (-86.863 2.43709 -1.02974e-20) (-84.1208 2.86305 -1.30427e-21) (-81.0302 3.26268 1.64095e-22) (-77.6189 3.63662 -4.93015e-22) (-73.9172 3.9844 0) (-69.9611 4.30503 0) (-65.7891 4.59778 0) (-61.4395 4.86248 0) (-56.9496 5.09953 -1.63605e-22) (-52.3551 5.30988 0) (-47.6898 5.49489 0) (-42.9854 5.65616 0) (-38.2712 5.79533 1.63403e-22) (-38.143 6.0617 -1.63018e-22) (-37.977 6.28666 0) (-37.7769 6.46756 0) (-42.4351 6.22359 0) (-42.6501 6.07447 0) (-42.8349 5.88482 0) (-47.5148 5.68946 0) (-47.3089 5.84744 0) (-47.076 5.96814 0) (-46.8233 6.0518 0) (-42.1972 6.33137 0) (-37.5503 6.60194 0) (-37.3143 6.6895 0) (-41.9534 6.3994 0) (-46.5673 6.10135 0) (-51.1276 5.79289 0) (-51.3996 5.76082 0) (-51.6706 5.69898 0) (-51.9241 5.60364 0) (-52.1534 5.47387 0) (-56.7194 5.2363 1.63212e-22) (-56.4645 5.34111 0) (-56.1878 5.41401 0) (-60.5954 5.11145 0) (-60.8971 5.05818 0) (-61.1793 4.97523 0) (-65.4979 4.68955 0) (-65.1873 4.7536 -1.62685e-22) (-64.8595 4.79 1.60951e-22) (-64.5195 4.79996 -1.28212e-21) (-60.28 5.1364 0) (-55.8957 5.45626 0) (-55.6044 5.47205 0) (-59.967 5.13731 1.31552e-21) (-64.1835 4.78764 -1.31618e-21) (-68.2204 4.42273 -5.26809e-21) (-68.58 4.44632 1.28308e-21) (-68.945 4.44889 0) (-69.2994 4.42665 0) (-69.6387 4.37868 1.63726e-22) (-73.564 4.04261 -1.63883e-22) (-73.1964 4.07721 -1.14071e-21) (-72.8158 4.08796 -1.61246e-22) (-76.4359 3.7075 -9.03407e-21) (-76.8413 3.70567 2.60897e-21) (-77.2361 3.6819 3.27889e-22) (-80.6196 3.29729 2.62045e-21) (-80.1995 3.31256 0) (-79.7715 3.30784 2.06139e-20) (-79.3398 3.28298 -5.12225e-20) (-76.024 3.68764 -1.28271e-21) (-72.4266 4.0755 0) (-72.0444 4.04311 3.95147e-21) (-75.6219 3.64882 -1.31592e-21) (-78.9216 3.23991 0) (-81.9135 2.81549 -1.35316e-19) (-82.3449 2.86072 -1.65621e-25) (-82.7933 2.88853 2.04628e-20) (-83.2415 2.89777 0) (-83.6847 2.88899 2.60364e-21) (-86.4039 2.45602 1.5399e-20) (-85.9398 2.45996 0) (-85.4735 2.44778 8.06175e-20) (-87.7671 1.9852 -7.94402e-20) (-88.2507 1.99888 4.01775e-20) (-88.734 1.99833 -3.03807e-20) (-90.5976 1.52412 4.0906e-20) (-90.0974 1.52282 8.12614e-20) (-89.597 1.50963 8.04261e-20) (-89.1042 1.48336 -1.60507e-19) (-87.2896 1.95635 -5.12973e-25) (-85.0107 2.41871 8.01144e-20) (-84.5688 2.3736 4.10636e-20) (-86.8353 1.91363 -3.98321e-23) (-88.6376 1.44557 0) (-89.9063 0.993562 -1.10788e-19) (-90.3865 1.02245 8.57046e-20) (-90.8931 1.04273 -1.70802e-19) (-91.4073 1.05308 -6.45447e-20) (-91.9208 1.05473 8.66935e-20) (-92.4307 1.04926 2.10718e-20) (-92.9346 1.03742 -1.77197e-20) (-93.4305 1.01981 0) (-93.9158 0.996911 0) (-94.3879 0.969004 0) (-94.8443 0.936299 0) (-95.2825 0.899038 0) (-95.7002 0.85745 0) (-96.0955 0.811738 0) (-96.4664 0.762094 0) (-96.8114 0.708685 0) (-97.1285 0.651648 0) (-97.4168 0.591106 0) (-97.681 0.527518 0) (-97.9266 0.462168 0) (-98.1387 0.393002 0) (-99.0869 0.231089 0) (-98.8643 0.27106 0) (-98.6075 0.308713 0) (-98.3317 0.345431 0) (-98.0325 0.380416 0) (-97.7048 0.413362 0) (-97.3496 0.444197 0) (-96.9686 0.472843 0) (-96.5636 0.499206 0) (-96.1364 0.523174 0) (-95.689 0.544632 0) (-95.2238 0.563451 0) (-94.7431 0.579476 -2.79229e-21) (-94.2495 0.592646 -8.93092e-21) (-93.7455 0.602702 8.90839e-21) (-93.2335 0.609332 1.48064e-21) (-92.7152 0.612176 0) (-92.1937 0.611072 -3.51559e-20) (-91.6711 0.604684 -9.31527e-20) (-91.1573 0.593038 1.89022e-19) (-90.6673 0.575391 0) (-50.948 22.545 0) (-51.5281 23.8289 0) (-82.5168 31.6446 0) (-81.5318 36.6442 6.62189e-18) (-80.0732 37.0712 -9.60005e-20) (-63.0749 44.3108 4.34662e-19) (-57.1974 39.8885 -6.55354e-19) (-57.3166 39.8537 7.52714e-19) (-57.4371 40.2237 -6.90264e-19) (-57.5423 40.1475 -1.87747e-19) (-57.4291 39.7447 -6.41211e-18) (-63.2324 46.5277 0) (-63.3004 46.3616 7.24547e-19) (-63.5444 46.6761 -6.63737e-19) (-63.5972 46.47 -1.80657e-19) (-63.3553 46.119 1.98361e-19) (-64.821 46.8779 -7.15909e-19) (-70.6047 45.6776 -2.50145e-20) (-75.3558 46.6753 0) (-75.2138 46.1236 3.35639e-19) (-58.4926 41.392 1.86385e-19) (-55.9852 37.2191 9.62441e-20) (-55.1011 34.6719 0) (-55.3065 34.5008 7.13257e-18) (-53.7963 32.152 -3.71682e-23) (-53.7052 30.6065 -1.45141e-18) (-53.5785 29.7758 6.94644e-18) (-52.3298 27.4275 7.07657e-18) (-79.0456 42.9516 9.49125e-20) (27.4565 -0.125953 0) (27.4197 -0.115479 -4.66488e-19) (27.3826 -0.0969212 1.01575e-18) (27.4531 -0.064812 -8.09022e-24) (27.4778 -0.0825 -4.28106e-19) (27.5071 -0.0970892 2.0673e-19) (27.5425 -0.0718827 1.0048e-19) (27.5238 -0.0583026 -3.44693e-18) (27.5819 -0.0305546 1.82248e-18) (27.5091 -0.047109 7.03208e-18) (27.5055 -0.0361054 0) (27.4384 -0.0528314 0) (27.3575 -0.0746694 5.41398e-19) (27.5569 -0.020613 -6.00359e-18) (27.5841 -0.0115144 -6.88343e-18) (27.6021 -0.0193461 -2.80722e-18) (27.6051 -0.0139434 4.63549e-18) (27.6022 -0.0110641 -1.22559e-18) (27.5968 -0.00993065 3.53664e-20) (27.5904 -0.00966583 0) (27.5839 -0.00975121 5.55251e-20) (27.5777 -0.0100249 -6.40869e-20) (27.5731 -0.0105863 0) (27.5724 -0.011743 6.93647e-22) (27.5794 -0.0139277 -1.11106e-21) (27.5967 -0.0173762 1.61995e-21) (27.6233 -0.0217993 4.82358e-23) (27.6548 -0.0266938 0) (27.6876 -0.0317497 0) (27.7208 -0.0369038 0) (27.755 -0.0421737 0) (27.7911 -0.0475626 0) (27.8298 -0.0530499 0) (27.8712 -0.058613 -4.91765e-23) (27.9156 -0.0642416 0) (27.9632 -0.0699334 0) (28.0141 -0.0756805 0) (28.0684 -0.0814596 0) (28.1262 -0.0872361 0) (28.1877 -0.0929813 0) (28.2528 -0.0986784 0) (28.3216 -0.104308 0) (28.394 -0.109831 0) (28.4701 -0.115185 0) (28.5498 -0.1203 0) (28.633 -0.125109 0) (28.7194 -0.129546 0) (28.8089 -0.133541 0) (28.9014 -0.137008 0) (28.9964 -0.139829 0) (29.0939 -0.14184 0) (29.1934 -0.14284 0) (29.2945 -0.142586 0) (29.3967 -0.140807 0) (29.4993 -0.137198 0) (29.6016 -0.131427 0) (29.7031 -0.123112 -4.96709e-23) (29.8038 -0.111761 0) (29.904 -0.0966923 0) (30.0035 -0.0773534 0) (30.0986 -0.054422 0) (30.179 -0.0313699 0) (30.2269 -0.0140444 0) (30.2384 -0.00639284 0) (30.2355 -0.00457633 0) (30.2321 -0.00347024 0) (30.224 0.00469564 0) (30.1808 0.0352532 0) (30.0676 0.101109 0) (29.8872 0.195462 0) (29.6593 0.304129 0) (29.3825 0.425443 0) (29.0409 0.564804 0) (28.6161 0.727652 0) (28.0898 0.919495 0) (27.4417 1.14666 0) (26.648 1.41751 0) (25.681 1.74129 0) (24.5138 2.13847 0) (23.1264 2.66262 0) (21.5125 3.49711 0) (19.6759 4.42976 0) (17.8327 5.58502 0) (15.8761 7.21269 0) (13.4418 8.60758 0) (10.4371 9.59506 0) (6.85187 10.0973 0) (2.94939 9.94204 0) (-1.23714 9.24735 0) (-5.52444 8.81655 0) (-9.79223 8.51493 0) (-14.1242 8.2232 0) (-18.5459 7.93217 0) (-23.0536 7.64215 0) (-27.6301 7.35179 0) (-32.2523 7.05857 0) (-36.8946 6.75979 0) (-41.5302 6.45275 0) (-46.1311 6.13494 0) (-50.6695 5.80447 0) (-55.1157 5.4607 2.44421e-23) (-59.4404 5.10294 0) (-63.6139 4.731 1.95378e-22) (-67.6062 4.34577 -1.25021e-20) (-71.3879 3.94817 6.54997e-20) (-74.9279 3.53905 -4.66355e-20) (-78.1986 3.1186 0) (-81.1603 2.6876 2.02115e-19) (-83.7855 2.24544 -2.17155e-19) (-86.0048 1.79879 1.21665e-20) (-87.7683 1.35359 -2.10296e-19) (-89.0058 0.932594 0) ) ; boundaryField { bottomEmptyFaces { type empty; } topEmptyFaces { type empty; } inlet { type pressureInletOutletVelocity; value nonuniform List<vector> 108 ( (-88.9637 0.54041 -7.1686e-19) (-88.2873 0.913038 1.2038e-18) (-87.0851 1.31043 -2.10143e-19) (-85.4112 1.74299 0) (-83.2749 2.18126 1.02036e-19) (-80.6982 2.63086 1.06017e-19) (-77.7924 3.06564 -2.10406e-19) (-74.5586 3.4943 -3.35124e-21) (-71.0669 3.90952 0) (-67.3258 4.31481 0) (-63.3711 4.70786 0) (-59.2248 5.08785 0) (-54.9184 5.45302 -2.63932e-23) (-50.4817 5.80281 0) (-45.945 6.13828 0) (-41.3382 6.45983 0) (-36.6916 6.76847 0) (-32.0345 7.06687 0) (-27.395 7.35744 0) (-22.8003 7.64235 0) (-18.275 7.92325 0) (-13.8373 8.20037 0) (-9.48892 8.47328 0) (-5.17443 8.74234 0) (-0.542847 9.08081 0) (3.37561 0 0) (5.73936 0 0) (8.64676 0 0) (11.2124 0 0) (13.9633 0 0) (16.5273 0 0) (18.7924 0 0) (20.9986 0 0) (22.8101 0 0) (24.2961 0 0) (25.5101 0 0) (26.5066 0 0) (27.3219 0 0) (27.9868 0 0) (28.5268 0 0) (28.9633 0 0) (29.3153 0 0) (29.6011 0 0) (29.8377 0 0) (30.0279 0 0) (30.1571 0 0) (30.2152 0 0) (30.2291 0 0) (30.2338 0 0) (30.2349 0 0) (30.2187 0 0) (30.1644 0 0) (30.0809 0 0) (29.9865 0 0) (29.8892 0 0) (29.7911 0 0) (29.6922 0 0) (29.5922 0 0) (29.4911 0 0) (29.3896 0 0) (29.2883 0 0) (29.1879 0 0) (29.0889 0 0) (28.9919 0 0) (28.8971 0 0) (28.8049 0 0) (28.7155 0 0) (28.6291 0 0) (28.546 0 0) (28.4663 0 0) (28.3901 0 0) (28.3176 0 0) (28.2488 0 0) (28.1837 0 0) (28.1222 0 0) (28.0644 0 0) (28.0102 0 0) (27.9595 0 0) (27.9122 0 0) (27.8681 0 0) (27.827 0 0) (27.7888 0 0) (27.7531 0 0) (27.7193 0 0) (27.6865 0 0) (27.6541 0 0) (27.6229 0 0) (27.5964 0 0) (27.579 0 0) (27.5719 0 0) (27.5726 0 0) (27.5773 0 0) (27.5834 0 0) (27.5899 0 0) (27.5959 0 0) (27.6009 0 0) (27.6039 0 0) (27.6038 0 0) (27.58 0 0) (27.5944 0 0) (27.5532 0 0) (27.499 0 0) (27.4289 0 0) (27.3363 0 0) (-89.313 0.172839 0) (26.4395 0 0) (27.0491 0 0) (27.199 0 0) ) ; } outlet { type zeroGradient; } walls { type fixedValue; value uniform (0 0 0); } rightWall { type zeroGradient; } symmetryLine { type symmetryPlane; } } // ************************************************************************* //
b5a87545688d5abd202f6b6c4af1888132713e9d
56ff38e6453719286cb299fde7fd3c34941d0038
/examples/int128.cc
658a4363f1a12a68d941f23c5a071da3173543c4
[ "MIT" ]
permissive
skyshaw/skynet3
5d16a1b289d12c1f35865b5a577cdc79df4b8b84
d6998799fcfe959126fe50bd3b0d640a3c31d9ba
refs/heads/master
2021-01-19T10:08:19.336865
2015-07-07T04:56:41
2015-07-07T04:56:41
34,988,583
3
1
null
null
null
null
UTF-8
C++
false
false
342
cc
int128.cc
#include <iostream> #include "base/int128.h" #include "third_party/glog/logging.h" int main(int argc, char** argv) { gflags::ParseCommandLineFlags(&argc, &argv, true); google::InitGoogleLogging(argv[0]); uint128 u = 12345678; uint128 v = 87654321; uint128 w = u * v; (void) w; // std::cout << u * v << std::endl; return 0; }
c4aee7790572090bbaf32bcac43c621d696d20d9
a5841a0c925bfc5a1222a9b9f7f6e479696ac1e4
/UDPReciver/UDPReciver.h
f6954d6e226ecf39941c0e753276deb45b448307
[]
no_license
YasserRabee/UDPSenderAndReceiver
b7304160fe447f3f4012179c597832fb1bef1cc8
a124b05930cd2adf1c52d0a213979633b2def4ab
refs/heads/master
2016-09-10T20:13:58.131286
2014-07-02T23:40:45
2014-07-02T23:40:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,907
h
UDPReciver.h
#ifndef UDP_RECIVER_H #define UDP_RECIVER_H #define _CRT_SECURE_NO_WARNINGS #pragma comment(lib, "Ws2_32.lib") #include <winsock2.h> #include <iostream> using namespace std; class UDPReciver { public: UDPReciver(int, size_t); ~UDPReciver(); char* Recive(); void changeMsgLen(size_t newMsgLen) { msgLen = newMsgLen; } private: int portNumber; char* recMsg; // received message size_t msgLen; // received message length int len; SOCKET recSocket; sockaddr_in recAddress; void refineMsgStr(char*); // insert null at the end of msg int Initialize(); int Finalize(); }; UDPReciver::UDPReciver(int portNo, size_t msglen) { portNumber = portNo; msgLen = msglen; Initialize(); } UDPReciver::~UDPReciver() { Finalize(); } int UDPReciver::Initialize() { WSADATA wsaData; //create socket if (WSAStartup(MAKEWORD(2, 2), &wsaData) != NO_ERROR) { cerr << "Socket Initialization: Error with WSAStartup\n"; system("pause"); WSACleanup(); exit(10); } recSocket = socket(AF_INET, SOCK_DGRAM, 0); if (recSocket == INVALID_SOCKET) { cerr << "Socket Initialization: Error creating socket" << endl; system("pause"); WSACleanup(); exit(11); } //bind memset(&recAddress, 0, sizeof(recAddress)); recAddress.sin_family = AF_INET; recAddress.sin_addr.s_addr = INADDR_ANY; recAddress.sin_port = htons(portNumber); len = sizeof(struct sockaddr_in); if (bind(recSocket, (SOCKADDR*)&recAddress, sizeof(recAddress)) == SOCKET_ERROR) { cerr << "ServerSocket: Failed to connect\n"; system("pause"); WSACleanup(); exit(14); } return 0; } int UDPReciver::Finalize() { return ::closesocket(recSocket); } char* UDPReciver::Recive() { recMsg = new char[msgLen]; recvfrom(recSocket, recMsg, msgLen, 0, (SOCKADDR*)&recAddress, &len); refineMsgStr(recMsg); return recMsg; } void UDPReciver::refineMsgStr(char* msgStr) { *(msgStr + msgLen) = NULL; } #endif
6aaa1616a0fa18303d2ecae7276703481235eb6c
16a589f26f4fbe61b64fb7abba2bc0e3175fa95f
/dnload/src/glsl_shader_source.cpp
d8007e446432e5103eb3bb255597f2f015cdd472
[ "BSD-3-Clause" ]
permissive
eriser/faemiyah-demoscene
4c98eef66e19d051fb07b5194aa34911f4a91ad4
355e802817231d9b41d134a2c0163647f4ec814f
refs/heads/master
2021-01-18T17:28:25.977025
2015-03-12T22:30:25
2015-03-12T22:30:25
32,143,979
1
0
null
null
null
null
UTF-8
C++
false
false
3,695
cpp
glsl_shader_source.cpp
#include "glsl_shader_source.hpp" #include <cstring> #include <iostream> #if defined(DNLOAD_GLESV2) /** \cond */ #define GL_GLEXT_PROTOTYPES /** \endcond */ #include "GLES2/gl2ext.h" #endif /** \brief Generate an indent. * * \param op Indent length. */ static std::string create_indent(unsigned op) { std::ostringstream ret; for(unsigned ii = 0; (ii < op); ++ii) { ret << " "; } return ret.str(); } /** \brief Perform a set regex on a string. * * \param ii String iterator. * \return True if matches, false if not. */ static bool regex_space_plus_alpha_plus_semicolon(std::string::const_iterator ii, const std::string::const_iterator &ee) { for(++ii; (ii != ee); ++ii) { if(' ' != *ii) { for(; (ii != ee); ++ii) { if(!isalpha(*ii)) { for(; (ii != ee); ++ii) { char cc = *ii; if(' ' != cc) { return (';' == cc); } } } } } } return false; } GlslShaderSource::GlslShaderSource(const char *str1) : m_string(NULL), m_indent(0) { this->add(str1); } GlslShaderSource::~GlslShaderSource() { delete[] m_string; } void GlslShaderSource::add(const std::string &op) { for(std::string::const_iterator ii = op.begin(), ee = op.end(); (ii != ee); ++ii) { char cc = *ii; switch(cc) { case ';': m_source << ";\n" << create_indent(m_indent); break; case '{': m_source << std::endl << create_indent(m_indent) << "{\n"; ++m_indent; m_source << create_indent(m_indent); break; case '}': --m_indent; m_source << '\r' << create_indent(m_indent) << "}"; if(!regex_space_plus_alpha_plus_semicolon(ii + 1, ee) && (ii + 1 != ee)) { m_source << std::endl << create_indent(m_indent); } break; default: m_source << cc; break; } } } const char* GlslShaderSource::c_str() { std::string intermediate = m_source.str(); size_t len = intermediate.length() + 1; delete[] m_string; m_string = new char[len]; memcpy(m_string, intermediate.c_str(), len); return m_string; } std::string GlslShaderSource::get_pipeline_info_log(GLuint op) { #if defined(DNLOAD_GLESV2) (void)op; return std::string(); #else std::string ret; GLint len; glGetProgramPipelineiv(op, GL_INFO_LOG_LENGTH, &len); if(len) { GLchar *log = new GLchar[len]; GLsizei acquired; glGetProgramPipelineInfoLog(op, len, &acquired, log); ret.assign(log); delete[] log; } return ret; #endif } std::string GlslShaderSource::get_program_info_log(GLuint op) { std::string ret; GLint len; std::cout << "Getting info log length." << std::endl; glGetProgramiv(op, GL_INFO_LOG_LENGTH, &len); std::cout << "len: " << len << std::endl; if(len) { GLchar *log = new GLchar[len]; GLsizei acquired; glGetProgramInfoLog(op, len, &acquired, log); ret.assign(log); delete[] log; } return ret; } bool GlslShaderSource::get_program_link_status(GLuint op) { GLint ret; glGetProgramiv(op, GL_LINK_STATUS, &ret); return (ret != 0); } bool GlslShaderSource::get_shader_compile_status(GLuint op) { GLint ret; glGetShaderiv(op, GL_COMPILE_STATUS, &ret); return (ret != 0); } std::string GlslShaderSource::get_shader_info_log(GLuint op) { std::string ret; GLint len; glGetShaderiv(op, GL_INFO_LOG_LENGTH, &len); if(len) { GLchar *log = new GLchar[len]; GLsizei acquired; glGetShaderInfoLog(op, len, &acquired, log); ret.assign(log); delete[] log; } return ret; }
4051afa2fb528aa4950b99d9cf1a59ac2e253296
7b9745e11484061f0752638bf8265ea6daa10656
/Controller Lib/bak/CommandFileParser.h
4cfbf2334ac90d0bc8ba40dc5f254abd5d0e9e9c
[]
no_license
itaross/Relay-Controller
de2daa654224419570f38323961891a02de04472
49085eb26532cb683f31dda82b29765a54a849c0
refs/heads/master
2016-09-06T16:25:03.462246
2011-03-28T16:11:14
2011-03-28T16:11:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,468
h
CommandFileParser.h
#ifndef CommandFileParser_H #define CommandFileParser_H //TODO (thibaud): optimize commands for space eg: if a relay is already on and we see another instruction to turn it on delete that instruction #include <fstream> #include <list> #include <string> #include "Board.h" /** \brief A central place for checking the command file for errors. */ class CommandFileParser { public: CommandFileParser(std::ifstream file, Board board); bool ParseFile(); void WriteCommandsToFile(char* file_name); //get errors //get warnings private: /* ParseSimpleLine and ParseRepeatLine write all their warnings and errors into the _errors and * _warinigs lists. Since they return false if errors OR warnings have been found you should check * the lists by hand if you want to discard warnings. */ bool ParseSimpleLine(char * line_text, int line_number); bool ParseRepeatLine(); bool isValidTime(char* date, int line_number); bool isFarFromPCDate(); //Note (thibaud) : something about discarding if user chose not o reset board time //Note (thibaud) : return different values if date is oka but ime is not bool isLegalRelayId(int relayId); std::ifstream _in_file; std::list<std::string> _errors, _warnings; std::string _command_file; Board _board; }; namespace COMMAND_TYPE { enum {SIMPLE, REPEAT}; }; #endif // CommandFileParser_H
a9cecf43a7f7f1bde8e95d9cb61176b1c53eb68d
e5e1cb377800788960377842db4ab5f92e2559d7
/rusto.cpp
f1dddc7798e19994d91a40e5ffa02a77a73bc115
[]
no_license
jaikgp/interncodes
f69de71cdb72d8e1601d70abb3fa5c7e818041f1
7e4cdb243f9b35fdf12a9f893339bb2ec89af179
refs/heads/master
2021-01-09T20:41:52.272133
2016-07-08T12:24:09
2016-07-08T12:24:09
62,887,069
0
0
null
null
null
null
UTF-8
C++
false
false
3,362
cpp
rusto.cpp
#include <iostream> #include <algorithm> #include <map> #include <queue> #include <stdlib.h> #include <list> #include <stack> using namespace std; class Vertex { private: list<Vertex*> nbrs; int data; bool visited; public: bool get_state(); void set_state(bool val); Vertex(int a); void add_nbr(Vertex* b); list<Vertex*> get_list(); int get_value(); }; list<Vertex*> Vertex::get_list() { return nbrs; } void Vertex::add_nbr(Vertex* b) { nbrs.push_back(b); } Vertex::Vertex(int a):data(a) { visited=false; } bool Vertex::get_state() { return visited; } void Vertex::set_state(bool val) { visited=val; } int Vertex::get_value() { return data; } class Graph { public: Graph(); void add_edge(int a,int b); void add_vertex(int a); void prints(); void dfso(Vertex start); void dfs(int starts); void test(Vertex* start); private: list<Vertex> grf; queue<Vertex> q; stack<Vertex> st; }; Graph::Graph() {} void Graph::dfs(int starts) { list<Vertex>::iterator it; for(it=grf.begin();it!=grf.end();it++) { if(it->get_value()==starts) { dfso(*it); cout << endl; test(&*it); return; } } } void Graph::dfso(Vertex start) { cout << start.get_value() << " --> "; start.set_state(true); list<Vertex*> temp; list<Vertex*>::iterator it; temp=start.get_list(); for(it=temp.begin();it!=temp.end();it++) { if(!((*it)->get_state())) { st.push(**it); (*it)->set_state(true); } } if(st.empty()) return; Vertex next=st.top(); st.pop(); dfso(next); } void Graph::prints() { list<Vertex>::iterator it; list<Vertex*>::iterator its; for(it=grf.begin();it!=grf.end();it++) { cout << (*it).get_value() << " --> " ; list<Vertex*> temp=(*it).get_list(); for(its=temp.begin();its!=temp.end();its++) cout << (*its)->get_value() << " --> "; cout << endl; } } void Graph::add_edge(int a,int b) { list<Vertex>::iterator it; Vertex *temp_a,*temp_b; bool flag_a=false,flag_b=false; for(it=grf.begin();it!=grf.end();it++) { if((*it).get_value()==a&&(!flag_a)) { flag_a=true; temp_a=&(*it); } else if((*it).get_value()==b&&(!flag_b)) { flag_b=true; temp_b=&(*it); } if(flag_a&&flag_b) break; } if(!flag_a&&!flag_b) { add_vertex(a); add_vertex(b); add_edge(a,b); return; } if(!flag_a) { add_vertex(a); add_edge(a,b); return; } if(!flag_b) { add_vertex(b); add_edge(a,b); return; } temp_a->add_nbr(temp_b); temp_b->add_nbr(temp_a); } void Graph::test(Vertex* start) { list<Vertex*> temp; temp=start->get_list(); list<Vertex>::iterator it; list<Vertex*>::iterator its; for(it=grf.begin();it!=grf.end();it++) { for(its=(it->get_list()).begin();its!=(it->get_list()).end();its++) { cout << "risf" << endl; cout << (*its)->get_value() << " --> " ; } cout << endl; return; } } void Graph::add_vertex(int a) { Vertex v(a); grf.push_back(v); } int main() { Graph g; int n; cin >> n; while(n--) { int a,b; cin >> a >> b; g.add_edge(a,b); } g.prints(); g.dfs(5); //cout << endl; }
9ec928c4314729af8c0494b90b3b071a75005ba8
f54f816c39b45c5d925352b5d50dd81990b4ad0e
/src/DungeonGameApp.cpp
34e034458baab521f53aff5023a8dbd5f4079c71
[]
no_license
mdportnov/DungeonGame
f5d7f00f37726076f49ca4424e30fc8f3d7c767e
1068771891fbef2b3ff956c4c4db28e308396d16
refs/heads/master
2023-04-13T17:40:43.476762
2021-04-11T13:31:37
2021-04-11T13:31:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
18,294
cpp
DungeonGameApp.cpp
#include <include/model/Level.h> #include "iostream" #include "include/DungeonGameApp.h" #include "include/model/MyView.h" #include "include/model/Player.h" #include "include/model/ObjectsParser.h" #include <list> #include <include/model/Chest.h> #include <include/model/equip/Key.h> #include <include/model/InfoBar.h> #include <include/model/equip/ArtefactWeapon.h> #include <include/model/equip/ArtefactEquipment.h> #include <include/model/equip/EnchantedWeapon.h> #include <include/model/equip/EnchantedArtefactWeapon.h> #include "include/model/Enemy.h" #include "include/model/Door.h" using namespace sf; MyView myView; sf::RenderWindow *window; DungeonGameApp::DungeonGameApp() {} DungeonGameApp::~DungeonGameApp() = default; void DungeonGameApp::MusicInit() { if (!buffer1.loadFromFile("../res/sound/main.ogg")) std::cout << "Unable to load game sound"; mainSound.setBuffer(buffer1); // mainSound.play(); if (!buffer2.loadFromFile("../res/sound/chest.wav")) std::cout << "Unable to load game sound"; chestSound.setBuffer(buffer2); if (!buffer3.loadFromFile("../res/sound/door.ogg")) std::cout << "Unable to load game sound"; doorSound.setBuffer(buffer3); } void DungeonGameApp::Init() { window = new sf::RenderWindow(sf::VideoMode(600, 400), "DungeonGame"); myView.view.reset(sf::FloatRect(0, 0, 600, 400)); } void DungeonGameApp::Run() { MusicInit(); Clock clock, attackClock, doorClock, chestClock, potionsClock, ladderClock, usingPotionClock, itemsClock; Level level; level.loadStaticMapFromFile("../res/level1.tmx"); level.loadDynamicObjectsFromFile("../res/level1objects.xml"); MapObject player = level.getPlayer(); Player p = Player(level, myView, player.imagePath, player.name, player.rect.left, player.rect.top, player.rect.width, player.rect.height, player.layer, player.properties); InfoBar infoBar; infoBar.observe(&p); list<Enemy *> enemiesList; list<Item *> itemsList; list<Door *> doorsList; list<Chest *> chestsList; for (auto i : level.getObjectsByType("enemy")) { enemiesList.push_back( new Enemy(level, i.imagePath, i.name, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, i.properties)); } for (auto i : level.getObjectsByType("door")) { doorsList.push_back( new Door(level, i.imagePath, i.name, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, (bool) std::stoi(i.properties["isLocked"]))); } for (auto i : level.getObjectsByType("chest")) { chestsList.push_back( new Chest(level, i.imagePath, i.name, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["lockLevel"]), (bool) std::stoi(i.properties["isLocked"]))); } for (auto i : level.getObjectsByType("item")) { if (i.subType == "potion") { itemsList.push_back( new Potion(level, i.imagePath, i.name, i.type, i.subType, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["state"]), i.properties)); } if (i.subType == "weapon") itemsList.push_back( new Weapon(level, i.imagePath, i.name, i.type, i.subType, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["state"]), std::stof(i.properties["damage"]))); if (i.subType == "aweapon") itemsList.push_back( new ArtefactWeapon(level, i.imagePath, i.name, i.type, i.subType, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["state"]), std::stof(i.properties["damage"]), i.properties )); if (i.subType == "eweapon") itemsList.push_back( new EnchantedWeapon(level, i.imagePath, i.name, i.type, i.subType, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["state"]), std::stof(i.properties["damage"]), i.properties )); if (i.subType == "equipment") itemsList.push_back( new Equipment(level, i.imagePath, i.name, i.type, i.subType, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["state"]), std::stof(i.properties["protection"]), std::stoi(i.properties["eqType"]), std::stoi(i.properties["materialType"]) )); if (i.subType == "aequipment") itemsList.push_back( new ArtefactEquipment(level, i.imagePath, i.name, i.type, i.subType, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["state"]), std::stof(i.properties["protection"]), std::stoi(i.properties["eqType"]), std::stoi(i.properties["materialType"]), i.properties )); if (i.subType == "aeweapon") itemsList.push_back( new EnchantedArtefactWeapon(level, i.imagePath, i.name, i.type, i.subType, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["state"]), std::stof(i.properties["damage"]), i.properties )); if (i.subType == "key") itemsList.push_back( new Key(level, i.imagePath, i.name, i.type, i.subType, i.rect.left, i.rect.top, i.rect.width, i.rect.height, i.layer, std::stoi(i.properties["state"]))); } for (auto i: itemsList) { if (i->state == Item::STATE::onMe) { if (dynamic_cast<Weapon *>(i) != nullptr) { p.weapon = dynamic_cast<Weapon *>(i); } if (dynamic_cast<Potion *>(i) != nullptr) { p.potions.emplace_back(dynamic_cast<Potion *>(i)); } if (dynamic_cast<Equipment *>(i) != nullptr) { p.equipment[dynamic_cast<Equipment *>(i)->eqType] = dynamic_cast<Equipment *>(i); } } if (i->state == Item::STATE::inChest) { for (auto chest : chestsList) { if (chest->x == i->x && chest->y == i->y) { chest->setItem(i); } } } } sf::Thread pThread([&p] { Clock clock, attackClock; while (window->isOpen()) { float time = clock.getElapsedTime().asMilliseconds(); if (time > 50) { clock.restart(); p.update(time); } } }); pThread.launch(); list<sf::Thread> threads; for (auto &it : enemiesList) { threads.emplace_back([&p, &level, it] { Clock clock, attackClock; while (window->isOpen()) { float time = clock.getElapsedTime().asMilliseconds(); if (attackClock.getElapsedTime().asMilliseconds() > 100) if (it->layer == level.currentLayer) { if (p.getRect().intersects(it->getRect())) { if (p.dx > 0) { it->dx = 0.1; } if (p.dx < 0) { it->dx = -0.1; } if (p.dy > 0) { it->dy = 0.1; } if (p.dy < 0) { it->dy = -0.1; } it->dx = 0; it->dy = 0; it->acceptDamageFrom(&p); p.acceptDamageFrom(it); it->update(time); if (it->health <= 0) { p.changeSkillValue("lvl", it->lvl); p.playerLevel = (int) p.getSkillValue("lvl") / 100; return; } attackClock.restart(); clock.restart(); } } } }); } for (auto &th: threads) th.launch(); while (window->isOpen()) { float time = clock.getElapsedTime().asMilliseconds(); if (Keyboard::isKeyPressed(Keyboard::A)) p.key["A"] = true; if (Keyboard::isKeyPressed(Keyboard::D)) p.key["D"] = true; if (Keyboard::isKeyPressed(Keyboard::W)) p.key["W"] = true; if (Keyboard::isKeyPressed(Keyboard::S)) p.key["S"] = true; Event event{}; if (time > 50) { clock.restart(); while (window->pollEvent(event)) { if (event.type == sf::Event::Closed) window->close(); if (ladderClock.getElapsedTime().asMilliseconds() > 60) { ladderClock.restart(); if (p.STATE == Player::STATE::onladderup) { level.goUp(); p.layer = 1; p.STATE = Player::STATE::stay; p.map = level.getAllStaticObjects(); for (auto enemy: enemiesList) { enemy->map = level.getAllStaticObjects();; } } if (p.STATE == Player::STATE::onladderdown) { level.goDown(); p.layer = 0; p.STATE = Player::STATE::stay; p.map = level.getAllStaticObjects(); for (auto enemy: enemiesList) { enemy->map = level.getAllStaticObjects();; } } } if (potionsClock.getElapsedTime().asMilliseconds() > 60) { if (Keyboard::isKeyPressed(Keyboard::O)) { potionsClock.restart(); if (p.currPotion == p.potions.size() - 1) { p.currPotion = 0; break; } else { p.currPotion++; break; } } if (Keyboard::isKeyPressed(Keyboard::P)) { potionsClock.restart(); if (!p.potions.empty()) { if (!p.potions[p.currPotion]->isUsingNow) { p.potions[p.currPotion]->isUsingNow = true; p.attributes[p.drinkPotion()[0].first] += p.drinkPotion()[0].second; } } } } } // p.update(time); if (usingPotionClock.getElapsedTime().asSeconds() > 1) { for (auto potion: p.potions) { if (potion->isUsingNow) { potion->timer--; if (potion->timer == 0) { if (potion->changesListA[0].first != "hp") { p.attributes[potion->changesListA[0].first] -= potion->changesListA[0].second; } p.deletePotion(); } } } usingPotionClock.restart(); } for (auto it = enemiesList.begin(); it != enemiesList.end(); it++) { if ((*it)->layer == level.currentLayer) { Enemy *b = *it; b->update(time); if (!b->isAlive) { it = enemiesList.erase(it); delete b; } } } if (doorClock.getElapsedTime().asMilliseconds() > 200) { for (auto b : doorsList) { if (b->layer == level.currentLayer) { if (p.getRect().intersects(b->getRect()) && b->isLocked) { if (p.dy > 0) { p.y = b->getRect().top - p.h; p.dy = 0; } if (p.dy < 0) { p.y = b->getRect().top + b->getRect().height; p.dy = 0; } if (p.dx > 0) { p.x = b->getRect().left - p.w; } if (p.dx < 0) { p.x = b->getRect().left + b->getRect().width; } } if (p.getRect().intersects(b->getAreaRect())) { if (Mouse::isButtonPressed(sf::Mouse::Left)) { b->changeDoorState(); doorSound.play(); doorClock.restart(); } } b->update(); } } } if (chestClock.getElapsedTime().asMilliseconds() > 70) { for (auto b : chestsList) { if (b->layer == level.currentLayer) { if (p.getRect().intersects(b->getAreaRect())) { if (Mouse::isButtonPressed(sf::Mouse::Left) && b->isLocked) { if (b->open(p)) chestSound.play(); chestClock.restart(); } } b->update(time); } } } if (itemsClock.getElapsedTime().asMilliseconds() > 200) for (auto b : itemsList) { if (b->layer == level.currentLayer) { if (p.getRect().intersects(b->getRect()) && b->state == Item::STATE::onMap) { if (Mouse::isButtonPressed(sf::Mouse::Left)) { p.takeItem(b); itemsClock.restart(); } } b->update(time); } } // if (attackClock.getElapsedTime().asMilliseconds() > 100) // for (auto &it : enemiesList) { // if (it->layer == level.currentLayer) { // if (p.getRect().intersects(it->getRect())) { // if (p.dx > 0) { // it->dx = 0.1; // } // if (p.dx < 0) { // it->dx = -0.1; // } // if (p.dy > 0) { // it->dy = 0.1; // } // if (p.dy < 0) { // it->dy = -0.1; // } // it->dx = 0; // it->dy = 0; // it->acceptDamageFrom(&p); // p.acceptDamageFrom(it); // // if (it->health <= 0) { // p.changeSkillValue("lvl", it->lvl); // p.playerLevel = (int) p.getSkillValue("lvl") / 100; // } // // it->update(time); // attackClock.restart(); // } // } // } } myView.viewMap(time); myView.changeView(); window->setView(myView.view); window->clear(sf::Color(169, 169, 169)); level.draw(*window); for (auto enemy : enemiesList) { if (enemy->layer == level.currentLayer) enemy->draw(*window); } for (auto door: doorsList) { if (door->layer == level.currentLayer) door->draw(*window); } for (auto chest: chestsList) { if (chest->layer == level.currentLayer) chest->draw(*window); } for (auto item: itemsList) { if (item->layer == level.currentLayer) if (item->state == Item::onMap) item->draw(*window); } infoBar.draw(*window); p.draw(*window); window->display(); ObjectsParser::saveToFileProgress(level, p, enemiesList, itemsList, doorsList, chestsList); } } void DungeonGameApp::End() { if (window != nullptr) { delete window; window = nullptr; } }
454259cbde9b2ed6e539607e65bf651006e455ca
576a662e585d3370d73f2bbbef31de7e7d68087e
/9 inheritance polymorphism/z9.3v7/z9.3v7/college.h
2f5e88fb20d88806ba6672ea85f5be62e7a7bbbd
[]
no_license
polilog/CppLabs
e763f6826b2484b59d7c376771a11e05efe6eca2
161a8408673427598626cd1b6f1c1910bfaf8f8c
refs/heads/master
2021-01-20T09:00:20.687353
2017-10-31T21:20:45
2017-10-31T21:20:45
101,575,376
0
0
null
null
null
null
WINDOWS-1251
C++
false
false
824
h
college.h
#include "establishment.h" class College : public Establishment { private: int spec; public: College(); College(string, int, int); College(College &); ~College(); void print_info() const; void set_spec(); void get_spec() const; }; College::College() {} College::College(string s, int n, int k) : Establishment(s, n), spec(k) {} College::College(College &u) : Establishment(u), spec(u.spec) {} College::~College() {} void College::set_spec() { cout << "Введите количество специальностей: "; cin >> spec; } void College::get_spec() const { cout << "Количество специальностей: " << spec << endl; } void College::print_info() const { cout << "Информация о колледже" << endl; get_name(); get_students(); get_spec(); cout << endl; }
17bdc38dc76ab479cf853add05df62473aacc576
f0528fcbe00e58d5fca326cdaca80496da37219a
/cpp/src/minijava/parser_context.cc
cdf2da544475ce0a08876bf2ff758574d3249ee7
[]
no_license
uelis/Compiler
c231ea6bc096a948f12a93b63ad42c6765eecfb4
91dcd7eed969ecb3c0d381bb91ffa2100653cae5
refs/heads/master
2021-01-05T23:57:26.346094
2020-02-17T17:56:48
2020-02-20T17:07:53
241,172,262
0
0
null
null
null
null
UTF-8
C++
false
false
840
cc
parser_context.cc
#include "minijava/parser_context.h" #include "minijava/error.h" #include "minijava/parser.hh" namespace mjc { Program &ParserContext::Parse() { scan_begin(); parser{*this}.parse(); // sets result_ scan_end(); if (error_) { throw error_; } return result_; } void ParserContext::SetParseError(const location &l, const std::string &m) { throw CompileError(m, l); } void ParserContext::SetParseError(const std::string &m) { throw CompileError(m); } void ParserContext::SetResult(Program prg) { result_ = std::move(prg); } void ParserContext::scan_begin() { if (file_.empty() || file_ == "-") { yyin = stdin; } else if (!(yyin = fopen(file_.c_str(), "r"))) { throw CompileError("File not found: " + file_); } } void ParserContext::scan_end() { fclose(yyin); yylex_destroy(); } } // namespace mjc
e68ccf8712a38636b96fc9bc9ebd2544b9a4afbc
5324dc70cc1c131bf9aefb3a90c7e95f3fc7635e
/Classes/TerrainLayer.hpp
00c672508786ab41e4ee7f145ecf6173bf69aace
[]
no_license
logan-5/Biome
c7576cf1ecd2b1b0bdc719f2e9d547d571e3a486
8cafed745eaeac77cf366e817535c69d8d7df98e
refs/heads/master
2021-01-01T05:23:36.103371
2016-05-16T07:12:22
2016-05-16T07:12:22
58,839,694
0
0
null
null
null
null
UTF-8
C++
false
false
2,702
hpp
TerrainLayer.hpp
// // TerrainLayer.hpp // Biome // // Created by Logan Smith on 5/15/16. // // #ifndef TerrainLayer_hpp #define TerrainLayer_hpp #include "cocos2d.h" #include <deque> #include "TerrainChunk.hpp" #include "TerrainGenerator.hpp" #include "ScrollingLayer.hpp" /** @class TerrainLayer @brief A `TerrainLayer` is a node that generates a continuous terrain and provides options for scrolling it using the `ScrollingLayer` interface. Each TerrainLayer houses its own `TerrainGenerator` instance, so individual properties of terrain can be adjusted per-TerrainLayer, if there are multiple in a scene. The terrain generated by a TerrainLayer will fill up its whole content size width, and has a vertical range of its content size height. By default, a TerrainLayer's content size is the screen size. In other words, the hills and valleys of its terrain by default might fill up the whole vertical screen space. To restrict this, set its content size height to a smaller value. Note: changing the content size of a TerrainLayer after it has already started generating terrains onscreen will likely make subsequent terrains not link up with the previous ones. A TerrainLayer can be "owned" by a SceneryLayer, in which case the `distanceFactor` of the two will be synced when `SceneryLayer::initDistanceFactor` is invoked. At the moment, only "forward" (camera to the right, terrain to the left) scrolling is supported. */ class TerrainLayer : public cocos2d::Node, public ScrollingLayer { public: CREATE_FUNC(TerrainLayer); TerrainLayer() : ready( false ), distanceFactor( 0.f ) {} bool init() override; /** * Get the height of the terrain at the given x coordinate. The coordinate is given in screen coordinates for simplicity. The x coordinate must therefore be a valid screen coordinate, or an exception will be thrown. @param x The x coordinate onscreen to sample. @return A float representing the height at x. */ float getHeightForScreenXCoordinate( float x ); void step( float dt ) override; /** * Automatically invoked the first time is the layer stepped, or upon pairing the layer with a SceneryLayer. If you need to display the terrain before stepping it, or have some property change take effect immediately, you must invoke it manually. */ void setUpTerrainLayer(); private: bool ready; TerrainGenerator generator; float distanceFactor; // 0 = camera plane, 1 = infinitely far std::deque<TerrainChunk*> terrainChunks; void handleCycling( ScrollingLayer::MoveDirection moveDirection ) override; void addNewTerrainChunk(); }; #endif /* TerrainLayer_hpp */
d65dbdcf9f8cffa34d0c9b1aeb7c0e171cd2c962
76c01227508f2446a7faf0050687022f8216123a
/CS2C/CS2C_Trees/CS2C_Trees/TreeNode.cpp
83bbc906b217d00c513a74ce7fc3e63837967242
[]
no_license
connormichael/CPlusPlus
303373f86df4f44f208fe98b88327fc144bce801
8b196e0fc1928c3a0639bb0d1887a98a08b378d1
refs/heads/master
2021-01-19T08:00:21.939602
2017-04-07T23:27:40
2017-04-07T23:27:40
87,594,347
0
0
null
null
null
null
UTF-8
C++
false
false
140
cpp
TreeNode.cpp
// // TreeNode.cpp // CS2C_Trees // // Created by Connor Lynch on 1/2/17. // Copyright (c) 2017 connor lynch. All rights reserved. //
ead298b5898e4c3cef8874bcb70e5256cce1b213
c64144ea447f343b0262f290895f9096551dc62a
/Programacao/fanuc_rep/Fanuc/test_move/src/posicao_calibracao.cpp
8e09961e52fc8b00eaf4a2d3715bb15a9373ed01
[]
no_license
lpes34/package_robuter
5c70ec7ece57debdef8eec3b9b4f9b8d20d2a013
cdd4099fd11309ca34cd2a4f0327503d40488ed4
refs/heads/master
2020-03-10T07:26:37.620702
2018-04-14T15:16:24
2018-04-14T15:16:24
129,262,707
1
0
null
null
null
null
UTF-8
C++
false
false
15,641
cpp
posicao_calibracao.cpp
////****************************************************************************************************** // Todos os includes ////****************************************************************************************************** #include <moveit/planning_scene_monitor/planning_scene_monitor.h> #include <geometric_shapes/solid_primitive_dims.h> #include <moveit_msgs/DisplayRobotState.h> #include <moveit_msgs/DisplayTrajectory.h> #include <moveit/robot_model_loader/robot_model_loader.h> #include <moveit/planning_scene/planning_scene.h> //---------------------------------------- #include <ros/ros.h> #include <moveit/move_group_interface/move_group.h> #include <moveit/planning_scene_interface/planning_scene_interface.h> #include <moveit_msgs/DisplayRobotState.h> #include <moveit_msgs/DisplayTrajectory.h> #include <moveit_msgs/AttachedCollisionObject.h> #include <moveit_msgs/CollisionObject.h> #include <iostream> //###############Includes para o grupo do inverse kinematic #include <moveit/robot_model_loader/robot_model_loader.h> #include <moveit/planning_scene/planning_scene.h> //#include <moveit/joint_model_group.h> #include <moveit_msgs/AttachedCollisionObject.h> #include <moveit_msgs/CollisionObject.h> #include <ros/ros.h> #include <moveit_msgs/DisplayRobotState.h> #include <moveit_msgs/DisplayTrajectory.h> //###############Includes para o grupo do inverse kinematic #include <moveit/robot_model_loader/robot_model_loader.h> #include <moveit/planning_scene/planning_scene.h> #include <moveit/planning_scene_interface/planning_scene_interface.h> //#include <moveit/joint_model_group.h> #include <moveit/planning_scene_interface/planning_scene_interface.h> #include <moveit_msgs/DisplayRobotState.h> #include <moveit_msgs/DisplayTrajectory.h> #include <moveit_msgs/AttachedCollisionObject.h> #include <moveit_msgs/CollisionObject.h> #include <boost/function.hpp> #include <boost/assign/list_of.hpp> #include <boost/assert.hpp> #include <math.h> #include <moveit/trajectory_processing/iterative_time_parameterization.h> //#include <moveit_cartesian_plan_plugin/generate_cartesian_path.h> #include <geometry_msgs/PoseArray.h> ////****************************************************************************************************** // Todos os includes ////****************************************************************************************************** #include <ros/ros.h> // MoveIt! #include <moveit/robot_model_loader/robot_model_loader.h> #include <moveit/robot_model/robot_model.h> #include <moveit/robot_state/robot_state.h> #include <geometry_msgs/Pose.h> #include <moveit_msgs/PlanningScene.h> #include <moveit_msgs/AttachedCollisionObject.h> #include <moveit_msgs/GetStateValidity.h> #include <moveit_msgs/DisplayRobotState.h> #include <moveit/robot_state/conversions.h> #include <pluginlib/class_loader.h> #include <moveit/planning_interface/planning_interface.h> #include <moveit/planning_scene/planning_scene.h> #include <moveit/kinematic_constraints/utils.h> #include <moveit/planning_pipeline/planning_pipeline.h> #include <moveit_msgs/DisplayTrajectory.h> #include <eigen_conversions/eigen_msg.h> #include <sensor_msgs/JointState.h> #include <tf/transform_broadcaster.h> //#include <moveit/joint_model_group.h> #include <moveit/planning_scene_interface/planning_scene_interface.h> #include <moveit_msgs/CollisionObject.h> #include <iostream> #include <moveit_msgs/GetPositionIK.h> #include <industrial_trajectory_filters/filter_base.h> #include <industrial_trajectory_filters/uniform_sample_filter.h> #include <moveit/trajectory_processing/iterative_time_parameterization.h> ////****************************************************************************************************** // Home position ////****************************************************************************************************** void home_position(moveit::planning_interface::MoveGroup &group) { static const std::string ROBOT_DESCRIPTION="robot_description"; double posit=0.00; double max_velocity_scaling_factor=0.11; double max_acceleration_scaling_factor=1; double valores; //for(int n=0;n<2;n++){ // group.setMaxVelocityScalingFactor (max_velocity_scaling_factor); // group.setMaxAccelerationScalingFactor(max_acceleration_scaling_factor); std::map<std::string, double> joints1; std::map<std::string, double> joints2; std::cout<<"PASSEI DEPOIS\n"; joints2["joint_1"] = 0.00; joints2["joint_2"] = 0.00; joints2["joint_3"] = 0.00; joints2["joint_4"] = 0.00; joints2["joint_5"] = 0.00; joints2["joint_6"] = 0.00; group.setJointValueTarget(joints2); std::cout<<"PASSEI\n"; group.move(); } ////****************************************************************************************************** // approach_pick, que faz o ponto de aproximação para o pick ////****************************************************************************************************** void posicao_calibracao(moveit::planning_interface::MoveGroup &group,double x,double y, double z) { //group.asyncMove (); group.setEndEffectorLink("tool0"); group.setPlannerId("RRTConnectkConfigDefault");//SBLkConfigDefault group.setPlanningTime(0); unsigned int num_planning_attempts=0; group.setNumPlanningAttempts (num_planning_attempts); double tolerance=15; group.setGoalJointTolerance (tolerance); std::vector<moveit_msgs::Grasp> grasps; geometry_msgs::PoseStamped p; p.header.frame_id = "base_link"; // p.pose.position.x = x; // p.pose.position.y = y; // p.pose.position.z = z; // p.pose.orientation.x = 0; // p.pose.orientation.y = 0; // p.pose.orientation.z = 0; // p.pose.orientation.w = 1; // We can plan a motion for this group to a desired pose for the // end-effector. geometry_msgs::Pose target_pose1; geometry_msgs::Pose target_pose2; // geometry_msgs::Pose target_pose3; // Orientation double angle =0; Eigen::Quaterniond quat(Eigen::AngleAxis<double>(double(angle), Eigen::Vector3d::UnitZ())); target_pose1.position.x = x; target_pose1.position.y = y; target_pose1.position.z = z; target_pose1.orientation.x = quat.x(); target_pose1.orientation.y = quat.y(); target_pose1.orientation.z = quat.z(); target_pose1.orientation.w = quat.w(); angle =0; Eigen::Quaterniond quat1(Eigen::AngleAxis<double>(double(angle), Eigen::Vector3d::UnitY())); target_pose2.position.x=target_pose1.position.x; target_pose2.position.y = target_pose1.position.y; target_pose2.position.z = target_pose1.position.z; target_pose2.orientation.x = quat1.x(); target_pose2.orientation.y = quat1.y(); target_pose2.orientation.z = quat1.z(); target_pose2.orientation.w = quat1.w(); p.pose.position.x = x; p.pose.position.y = y; p.pose.position.z = z; p.pose.orientation.x = quat1.x(); p.pose.orientation.y = quat1.y(); p.pose.orientation.z = quat1.z(); p.pose.orientation.w = quat1.w(); group.setPoseTarget(target_pose1); group.setPoseTarget(target_pose2); group.setPoseTarget(p); // Now, we call the planner to compute the plan // and visualize it. // Note that we are just planning, not asking move_group // to actually move the robot. moveit::planning_interface::MoveGroup::Plan my_plan1; bool success = group.plan(my_plan1); ROS_INFO("Visualizing plan 1 (pose goal) %s",success?"":"FAILED"); /* Sleep to give Rviz time to visualize the plan. */ // sleep(1.0); // group.asyncExecute(my_plan); group.move(); // group.execute(my_plan1); } ////****************************************************************************************************** // approach_pick, que faz o ponto de aproximação para o pick ////****************************************************************************************************** void posicao_tcp(moveit::planning_interface::MoveGroup &group,double x,double y, double z) { //group.asyncMove (); group.setEndEffectorLink("tool0"); group.setPlannerId("RRTConnectkConfigDefault");//SBLkConfigDefault group.setPlanningTime(0); unsigned int num_planning_attempts=0; group.setNumPlanningAttempts (num_planning_attempts); double tolerance=15; group.setGoalJointTolerance (tolerance); std::vector<moveit_msgs::Grasp> grasps; geometry_msgs::PoseStamped p; p.header.frame_id = "base_link"; // p.pose.position.x = x; // p.pose.position.y = y; // p.pose.position.z = z; // p.pose.orientation.x = 0; // p.pose.orientation.y = 0; // p.pose.orientation.z = 0; // p.pose.orientation.w = 1; // We can plan a motion for this group to a desired pose for the // end-effector. geometry_msgs::Pose target_pose1; geometry_msgs::Pose target_pose2; // geometry_msgs::Pose target_pose3; // Orientation double angle =M_PI; Eigen::Quaterniond quat(Eigen::AngleAxis<double>(double(angle), Eigen::Vector3d::UnitZ())); target_pose1.position.x = x; target_pose1.position.y = y; target_pose1.position.z = z; target_pose1.orientation.x = quat.x(); target_pose1.orientation.y = quat.y(); target_pose1.orientation.z = quat.z(); target_pose1.orientation.w = quat.w(); angle =M_PI; Eigen::Quaterniond quat1(Eigen::AngleAxis<double>(double(angle), Eigen::Vector3d::UnitY())); target_pose2.position.x=target_pose1.position.x; target_pose2.position.y = target_pose1.position.y; target_pose2.position.z = target_pose1.position.z; target_pose2.orientation.x = quat1.x(); target_pose2.orientation.y = quat1.y(); target_pose2.orientation.z = quat1.z(); target_pose2.orientation.w = quat1.w(); p.pose.position.x = x; p.pose.position.y = y; p.pose.position.z = z; p.pose.orientation.x = quat1.x(); p.pose.orientation.y = quat1.y(); p.pose.orientation.z = quat1.z(); p.pose.orientation.w = quat1.w(); group.setPoseTarget(target_pose1); group.setPoseTarget(target_pose2); group.setPoseTarget(p); // Now, we call the planner to compute the plan // and visualize it. // Note that we are just planning, not asking move_group // to actually move the robot. moveit::planning_interface::MoveGroup::Plan my_plan1; bool success = group.plan(my_plan1); ROS_INFO("Visualizing plan 1 (pose goal) %s",success?"":"FAILED"); /* Sleep to give Rviz time to visualize the plan. */ // sleep(1.0); // group.asyncExecute(my_plan); group.move(); // group.execute(my_plan1); } int main(int argc, char **argv) { ros::init (argc, argv, "posicao_de_calibracao"); ros::AsyncSpinner spinner(1); spinner.start(); ros::NodeHandle nh; ros::Publisher pub_co = nh.advertise<moveit_msgs::CollisionObject>("collision_object", 10); ros::Publisher pub_aco1 = nh.advertise<moveit_msgs::AttachedCollisionObject>("attached_collision_object", 10); // ros::WallDuration(1.0).sleep(); moveit::planning_interface::MoveGroup group("manipulator"); group.setEndEffectorLink("tool0"); // group.setPlanningTime(5.0); moveit_msgs::CollisionObject co; co.header.stamp = ros::Time::now(); co.header.frame_id = "base_link"; // remove pole co.id = "table"; co.operation = moveit_msgs::CollisionObject::REMOVE; pub_co.publish(co); //ROS_INFO("ERRO AQUI!! 1111111111111111111.\n"); //////////// // add pole co.operation = moveit_msgs::CollisionObject::ADD; co.primitives.resize(1); co.primitives[0].type = shape_msgs::SolidPrimitive::BOX; co.primitives[0].dimensions.resize(geometric_shapes::SolidPrimitiveDimCount<shape_msgs::SolidPrimitive::BOX>::value); co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_X] = 0.900; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Y] = 1.250; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Z] = 0.035; co.primitive_poses.resize(1); co.primitive_poses[0].position.x = 0.355; co.primitive_poses[0].position.y = 0; co.primitive_poses[0].position.z = -0.0176; co.primitive_poses[0].orientation.w = 0; pub_co.publish(co); co.id = "barra_dir"; co.operation = moveit_msgs::CollisionObject::REMOVE; pub_co.publish(co); moveit_msgs::AttachedCollisionObject aco1; aco1.object = co; pub_aco1.publish(aco1); co.operation = moveit_msgs::CollisionObject::ADD; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_X] = 0.120; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Y] = 0.350; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Z] = 0.100; co.primitive_poses[0].position.x = 0.500; co.primitive_poses[0].position.y = 0.000; co.primitive_poses[0].position.z = 0.800; pub_co.publish(co); co.id = "barra_dir"; co.operation = moveit_msgs::CollisionObject::REMOVE; pub_co.publish(co); moveit_msgs::AttachedCollisionObject aco2; aco1.object = co; pub_aco1.publish(aco2); co.operation = moveit_msgs::CollisionObject::ADD; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_X] = 0.0600; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Y] = 0.0300; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Z] = 1.350; co.primitive_poses[0].position.x = 0.775; co.primitive_poses[0].position.y = -0.640; co.primitive_poses[0].position.z = 0.6400; pub_co.publish(co); co.id = "barra_esq"; co.operation = moveit_msgs::CollisionObject::REMOVE; pub_co.publish(co); moveit_msgs::AttachedCollisionObject aco3; aco1.object = co; pub_aco1.publish(aco3); co.operation = moveit_msgs::CollisionObject::ADD; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_X] = 0.0600; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Y] = 0.0300; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Z] = 1.350; co.primitive_poses[0].position.x = 0.775; co.primitive_poses[0].position.y = 0.640; co.primitive_poses[0].position.z = 0.6400; pub_co.publish(co); co.id = "barra_cima"; co.operation = moveit_msgs::CollisionObject::REMOVE; pub_co.publish(co); moveit_msgs::AttachedCollisionObject aco4; aco1.object = co; pub_aco1.publish(aco4); co.operation = moveit_msgs::CollisionObject::ADD; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_X] = 0.0600; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Y] = 1.280; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Z] = 0.030; co.primitive_poses[0].position.x = 0.775; co.primitive_poses[0].position.y = 0.000; co.primitive_poses[0].position.z = 0.900; pub_co.publish(co); co.id = "barra_kin"; co.operation = moveit_msgs::CollisionObject::REMOVE; pub_co.publish(co); moveit_msgs::AttachedCollisionObject aco5; aco1.object = co; pub_aco1.publish(aco5); co.operation = moveit_msgs::CollisionObject::ADD; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_X] = 0.400; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Y] = 0.030; co.primitives[0].dimensions[shape_msgs::SolidPrimitive::BOX_Z] = 0.030; co.primitive_poses[0].position.x = 0.675; co.primitive_poses[0].position.y = 0.000; co.primitive_poses[0].position.z = 0.900+0.030; pub_co.publish(co); ROS_INFO("Posicao_Calibracao\n"); // home_position(group); // posicao_calibracao(group,0.480,0.000,0.680);//Posicao real de calibraçao // posicao_tcp(group,0.400,-0.300,0.000);//PARA AS DISTANCIAS ROS_INFO("Fim Posicao Calibracao\n"); sleep(4.0); // ros::waitForShutdown(); return 0; }
8fd1afdd095eb2df76427691ef0907f0131c4389
5cfa595a6f34b81c783688540828ecc94bfe412b
/Assignment1/source/main.cpp
14a9817d6b1256ea849b247c8023f3ada1bd80b7
[]
no_license
Ziheng-Liang/CSC2521
0eb2cd6152906f95b09f8767d9c409c492d06a61
3f4f63bccd8e8f4b4a9568121f32ee0c12b92962
refs/heads/master
2021-08-24T14:05:54.209392
2017-12-10T04:29:33
2017-12-10T04:29:33
105,586,134
0
0
null
null
null
null
UTF-8
C++
false
false
9,811
cpp
main.cpp
//Computational Fabrication Assignment #1 #include <iostream> #include <vector> #include <stdlib.h> #include "../include/CompFab.h" #include "../include/Mesh.h" //Ray-Triangle Intersection //Returns 1 if triangle and ray intersect, 0 otherwise int rayTriangleIntersection(CompFab::Ray &ray, CompFab::Triangle &triangle) { /********* ASSIGNMENT *********/ /* Ray-Triangle intersection test: Return 1 if ray intersects triangle, * 0 otherwise */ CompFab::Vec3 normal = (triangle.m_v2 - triangle.m_v1) % (triangle.m_v3 - triangle.m_v1); normal.normalize(); double D = - (normal * triangle.m_v1); double isIntersect = normal * ray.m_direction; if (isIntersect < EPSILON && isIntersect > -EPSILON) { return 0; } double t = -((normal * ray.m_origin) + D) / isIntersect; if (t < 0) { return 0; } CompFab::Vec3 P = ray.m_origin + CompFab::Vec3 (ray.m_direction[0] * t, ray.m_direction[1] * t, ray.m_direction[2] * t); CompFab::Vec3 R = P - triangle.m_v1; CompFab::Vec3 Q1 = triangle.m_v2 - triangle.m_v1; CompFab::Vec3 Q2 = triangle.m_v3 - triangle.m_v1; double Q1Q1 = Q1 * Q1; double Q1Q2 = Q1 * Q2; double Q2Q2 = Q2 * Q2; double RQ1 = R * Q1; double RQ2 = R * Q2; double det = (Q1Q1 * Q2Q2 - Q1Q2 * Q1Q2); if (det < EPSILON) { return 0; } double w1 = (Q2Q2 * RQ1 - Q1Q2 * RQ2) / det; double w2 = (Q1Q1 * RQ2 - Q1Q2 * RQ1) / det; if (1 - w1 - w2 > 0 && w1 > 0 && w2 > 0) { return 1; } return 0; } bool rayBoxIntersection(CompFab::Ray &ray, CompFab::BoundingBox &bbox) { CompFab::Vec3 min(bbox.x_min, bbox.y_min, bbox.z_min); CompFab::Vec3 max(bbox.x_max, bbox.y_max, bbox.z_max); double txmin = (min.m_x - ray.m_origin[0]) / ray.m_direction[0]; double txmax = (max.m_x - ray.m_origin[0]) / ray.m_direction[0]; double tymin = (min.m_y - ray.m_origin[1]) / ray.m_direction[1]; double tymax = (max.m_y - ray.m_origin[1]) / ray.m_direction[1]; double tzmin = (min.m_z - ray.m_origin[2]) / ray.m_direction[2]; double tzmax = (max.m_z - ray.m_origin[2]) / ray.m_direction[2]; if (txmin > txmax) std::swap(txmin, txmax); if (tymin > tymax) std::swap(tymin, tymax); if (tzmin > tzmax) std::swap(tzmin, tzmax); if (txmin > tymax || tymin > txmax) { return false; } txmin = std::max(txmin, tymin); tymax = std::min(txmax, tymax); if(txmin > tzmax || tzmin > txmax) { return false; } return true; } //Tree version of counting intersections int numSurfaceIntersectionsTree(CompFab::Vec3 &voxelPos, CompFab::Vec3 &dir, CompFab::MeshTree & meshTree) { dir.normalize(); CompFab::Ray ray(voxelPos, dir); int count = 0; if (rayBoxIntersection(ray, meshTree.bbox)) { if (meshTree.isLeaf) { for (unsigned int i=0; i < meshTree.meshs.size(); i++) { count += rayTriangleIntersection(ray, meshTree.meshs[i]); } } else { count = numSurfaceIntersectionsTree(voxelPos, dir, *meshTree.left) + numSurfaceIntersectionsTree(voxelPos, dir, *meshTree.right); } } return count; } //Triangle list (global) typedef std::vector<CompFab::Triangle> TriangleList; TriangleList g_triangleList; CompFab::VoxelGrid *g_voxelGrid; //Number of intersections with surface made by a ray originating at voxel and cast in direction. int numSurfaceIntersections(CompFab::Vec3 &voxelPos, CompFab::Vec3 &dir) { unsigned int numHits = 0; /********* ASSIGNMENT *********/ /* Check and return the number of times a ray cast in direction dir, * from voxel center voxelPos intersects the surface */ dir.normalize(); CompFab::Ray ray(voxelPos, dir); for (unsigned int i=0; i < g_triangleList.size(); i++) { numHits += rayTriangleIntersection(ray, g_triangleList[i]); } return numHits; } bool loadMesh(char *filename, unsigned int dim) { g_triangleList.clear(); Mesh *tempMesh = new Mesh(filename, true); CompFab::Vec3 v1, v2, v3; //copy triangles to global list for(unsigned int tri =0; tri<tempMesh->t.size(); ++tri) { v1 = tempMesh->v[tempMesh->t[tri][0]]; v2 = tempMesh->v[tempMesh->t[tri][1]]; v3 = tempMesh->v[tempMesh->t[tri][2]]; g_triangleList.push_back(CompFab::Triangle(v1,v2,v3)); } //Create Voxel Grid CompFab::Vec3 bbMax, bbMin; BBox(*tempMesh, bbMin, bbMax); //Build Voxel Grid double bbX = bbMax[0] - bbMin[0]; double bbY = bbMax[1] - bbMin[1]; double bbZ = bbMax[2] - bbMin[2]; double spacing; if(bbX > bbY && bbX > bbZ) { spacing = bbX/(double)(dim-2); } else if(bbY > bbX && bbY > bbZ) { spacing = bbY/(double)(dim-2); } else { spacing = bbZ/(double)(dim-2); } CompFab::Vec3 hspacing(0.5*spacing, 0.5*spacing, 0.5*spacing); g_voxelGrid = new CompFab::VoxelGrid(bbMin-hspacing, dim, dim, dim, spacing); delete tempMesh; return true; } void saveVoxelsToObj(const char * outfile) { Mesh box; Mesh mout; int nx = g_voxelGrid->m_dimX; int ny = g_voxelGrid->m_dimY; int nz = g_voxelGrid->m_dimZ; double spacing = g_voxelGrid->m_spacing; CompFab::Vec3 hspacing(0.5*spacing, 0.5*spacing, 0.5*spacing); for (int ii = 0; ii < nx; ii++) { for (int jj = 0; jj < ny; jj++) { for (int kk = 0; kk < nz; kk++) { if(!g_voxelGrid->isInside(ii,jj,kk)){ continue; } CompFab::Vec3 coord(0.5f + ((double)ii)*spacing, 0.5f + ((double)jj)*spacing, 0.5f+((double)kk)*spacing); CompFab::Vec3 box0 = coord - hspacing; CompFab::Vec3 box1 = coord + hspacing; makeCube(box, box0, box1); mout.append(box); } } } mout.save_obj(outfile); } int main(int argc, char **argv) { clock_t t1,t2; t1=clock(); unsigned int dim = 64; //dimension of voxel grid (e.g. 32x32x32) std::cout<<"=========="<<std::endl; //Load OBJ if(argc < 3) { std::cout<<"Usage: Voxelizer InputMeshFilename OutputMeshFilename \n"; return 0; } std::cout<<"Load Mesh : "<<argv[1]<<"\n"; loadMesh(argv[1], dim); //Cast ray, check if voxel is inside or outside //even number of surface intersections = outside (OUT then IN then OUT) CompFab::Vec3 voxelPos; CompFab::Vec3 direction; /********* ASSIGNMENT *********/ /* Iterate over all voxels in g_voxelGrid and test whether they are inside our outside of the * surface defined by the triangles in g_triangleList */ CompFab::MeshTree* meshTree = CompFab::MeshTree::MeshTree().build(g_triangleList); std::cout << "Tree Built" << std::endl; int nx = g_voxelGrid->m_dimX; int ny = g_voxelGrid->m_dimY; int nz = g_voxelGrid->m_dimZ; bool useTree = false; bool multipleRay = false; CompFab::Vec3 ll = g_voxelGrid->m_lowerLeft; double spacing = g_voxelGrid->m_spacing; for (int ii = 0; ii < nx; ii++) { voxelPos[0] = ll[0]+ ii * spacing; for (int jj = 0; jj < ny; jj++) { voxelPos[1] = ll[1] + jj * spacing; for (int kk = 0; kk < nz; kk++) { voxelPos[2] = ll[2] + kk * spacing; if (!multipleRay) { direction = CompFab::Vec3((double)(rand() % 100 - 50),(double)(rand() % 100 - 50),(double)(rand() % 100 - 50)); if (!useTree && numSurfaceIntersections(voxelPos, direction) % 2 == 1) { g_voxelGrid->isInside(ii,jj,kk) = true; } if (useTree && numSurfaceIntersectionsTree(voxelPos, direction, *meshTree) % 2 == 1) { g_voxelGrid->isInside(ii,jj,kk) = true; } } if (multipleRay) { int count = 0; for (int n = 0; n < 9; n++) { direction = CompFab::Vec3((double)(rand() % 100 - 50),(double)(rand() % 100 - 50),(double)(rand() % 100 - 50)); if (!useTree && numSurfaceIntersections(voxelPos, direction) % 2 == 1) { count ++; } if (useTree && numSurfaceIntersectionsTree(voxelPos, direction, *meshTree) % 2 == 1) { count ++; } } if (count >= 5) { g_voxelGrid->isInside(ii,jj,kk) = true; } } } } } //Write out voxel data as obj saveVoxelsToObj(argv[2]); t2=clock(); float diff ((float)t2-(float)t1); if (useTree) { std::cout<<"Using Tree: True"<<std::endl; } else { std::cout<<"Using Tree: False"<<std::endl; } if (multipleRay) { std::cout<<"Multiple Ray: True"<<std::endl; } else { std::cout<<"Multiple Ray: False"<<std::endl; } std::cout<<"Dimension: "<<dim<<std::endl; std::cout<<"Runtime in seconds: "<<diff / CLOCKS_PER_SEC<<std::endl; std::cout<<"=========="<<std::endl; delete g_voxelGrid; }
fdf2d5b2736c2e09cd1949047c1045095bd641cc
67e07d46b3f4ed91037b5fea5ccac1615884b19c
/geometry/Circle.hpp
8d351d14670ebdc3e97e652042875bc778836b3a
[]
no_license
RhobanProject/RhobanUtils
0dbfea34c35494f4248e94bd59edd6e8b608556b
2171496cd5f04d91bae938979459c5b8e3472b97
refs/heads/master
2020-06-28T23:06:29.765287
2017-11-04T14:39:04
2017-11-04T14:39:04
74,459,336
1
0
null
null
null
null
UTF-8
C++
false
false
2,510
hpp
Circle.hpp
#ifndef CIRCLE_HPP #define CIRCLE_HPP #include "Point.hpp" class ImpossibleCircleException : public std::exception{ const char * what() const throw() { return "Circle can't be found with given arguments\n"; }; }; class Circle{ private: Point center; double radius; public: Circle(): center(0.0, 0.0), radius(0.0) {}; Circle(const Point & center, double radius): center(center), radius(radius) {}; Circle(double x, double y, double radius): center(x, y), radius(radius) {}; Circle(const Circle & other): center(other.center), radius(other.radius) {}; Point getCenter() const { return Point(center);}; double getRadius() const { return radius;}; void setCenter(const Point center); void setRadius(const double radius); Point getPoint(Angle theta) const; /* Return the theta of this point to the center (position in a clock, in degree) */ Angle getTheta(const Point & p) const; /** * Does this circle contains the point p ? */ bool contains(const Point &p) const; /** * Move the given circle of delta */ void translate(const Point & delta); /* Return the circle which has two tangents, one in p1 with a vector d1 * and the other in p2 with a vector d2. * Throw ImpossibleCircleException if the given arguments doesn't allow to * create a circle */ static Circle circleFromTwoTangents(const Point & p1, const Point & d1, const Point & p2, const Point & d2); /* Return the circle which contains the three given points * Throw ImpossibleCircleException if the three points are on the same line */ static Circle circleFromPoints(const Point & p1, const Point & p2, const Point & p3); /* Return the circle which is inscribed in the triangle composed of p1,p2,p3 * Throw ImpossibleCircleException if the three points are on the same line */ static Circle inscribedCircle(const Point & p1, const Point & p2, const Point & p3); Point projectPoint(const Point & p) const; /** * Compute the tangents to one circle that pass to the point p * There will be usually two results, except if the point is inside * the circle where there is none */ std::vector<Point>tangents(const Point &p); }; std::ostream & operator<<(std::ostream & out, const Circle & c); #endif//CIRCLE_HPP
d729122e6eed5e3544479d299e2855633d32b5f4
ff0cc7e931d038a9bd9a56665b20cd8dab071959
/src/Modules/BaseLib/libmodules/blUtilitiesVTK/src/meVTKPolyDataSplitter.cpp
6d01a7a1ade369852d9dfff1f193890d3323e105
[]
no_license
jakubsadura/Swiezy
6ebf1637057c4dbb8fda5bfd3f57ef7eec92279b
bd32b7815b5c0206582916b62935ff49008ee371
refs/heads/master
2016-09-11T00:39:59.005668
2011-05-22T19:38:33
2011-05-22T19:38:33
1,784,754
3
1
null
null
null
null
UTF-8
C++
false
false
6,345
cpp
meVTKPolyDataSplitter.cpp
/* * Copyright (c) 2009, * Computational Image and Simulation Technologies in Biomedicine (CISTIB), * Universitat Pompeu Fabra (UPF), Barcelona, Spain. All rights reserved. * See license.txt file for details. */ #include "meVTKPolyDataSplitter.h" #include <time.h> //VTK #include <vtkCleanPolyData.h> #include <vtkPoints.h> //#include <vtkstd/exception> #include <vtkCellArray.h> #include <vtkBitArray.h> #include <vtkCellData.h> //-------------------------------------------------- meVTKPolyDataSplitter::meVTKPolyDataSplitter() //-------------------------------------------------- { // Create input to allow DeepCopy on SetInput function this->input = vtkPolyData::New(); this->cellIdList = vtkIdList::New(); this->surrounding = NULL; this->patch = NULL; this->tag = false; this->computationTime = 0.0; } //-------------------------------------------------- meVTKPolyDataSplitter::~meVTKPolyDataSplitter() //-------------------------------------------------- { this->input->Delete(); this->cellIdList->Delete(); if ( this->surrounding != NULL ) this->surrounding->Delete(); if ( this->patch != NULL ) this->patch->Delete(); } // Check cell ids list. // Checked: Not empty, not full (extract the whole input), and not out of range values. // NOT checked: if there are cell id repeated. //-------------------------------------------------- bool meVTKPolyDataSplitter::CheckCellIdList() //-------------------------------------------------- { bool ok = false; if ( this->cellIdList->GetNumberOfIds() == 0 ) { cout << "meVTKPolyDataSplitter::CheckCellIdList() -> No cells requested!" << endl; } else if ( this->cellIdList->GetNumberOfIds() == this->input->GetNumberOfPolys() ) { cout << "meVTKPolyDataSplitter::CheckCellIdList() -> Requested all cells! No need to split, use whole input instead" << endl; } else { // Check that all cell ids are valid vtkIdType maxCells = this->input->GetNumberOfPolys(); ok = true; for ( vtkIdType i = 0; i < this->cellIdList->GetNumberOfIds() && ok ; i++ ) { // All cell ids should be in input range if ( this->cellIdList->GetId(i) < 0 || this->cellIdList->GetId(i) >= maxCells ) ok = false; } if ( !ok ) cout << "meVTKPolyDataSplitter::CheckCellIdList() -> Cell id outside of range requested" << endl; } return ok; } //-------------------------------------------------- void meVTKPolyDataSplitter::InsertCell( vtkIdType cellId, vtkPoints *points, vtkCellArray *cells, vtkIdList *pointsAdded ) //-------------------------------------------------- { vtkIdType npts = 0; vtkIdType *pts = NULL; vtkIdType pointId = -1; // Get cell point ids this->input->GetCellPoints( cellId, npts, pts ); vtkIdType listPosition = 0; vtkIdType *meshId = new vtkIdType[npts]; // For each point for ( vtkIdType j = 0; j < npts; j++ ) { // Check if point was already inserted listPosition = pointsAdded->IsId( pts[j] ); if ( listPosition == -1 ) { // Insert point in point set, and store position in set for adding cell later meshId[j] = points->InsertNextPoint( this->input->GetPoint( pts[j] ) ); // Insert mesh point id in id list pointsAdded->InsertNextId( pts[j] ); } else { meshId[j] = listPosition; } } // Add new cell cells->InsertNextCell( npts, meshId ); delete [] meshId; } // Divides input mesh in surrounding and patching meshes using cell id list //-------------------------------------------------- void meVTKPolyDataSplitter::ComputeMeshes() //-------------------------------------------------- { vtkPoints *patchPoints = vtkPoints::New(); vtkPoints *surroundingPoints = vtkPoints::New(); vtkCellArray *patchCells = vtkCellArray::New(); vtkCellArray *surroundingCells = vtkCellArray::New(); vtkIdType currentCellId; vtkIdList *surroundingPointList = vtkIdList::New(); vtkIdList *patchPointList = vtkIdList::New(); // For each cell id at input for ( vtkIdType i = 0; i < this->input->GetNumberOfPolys(); i++ ) { currentCellId = this->cellIdList->IsId( i ); if ( currentCellId == -1 ) { // Cell is not at the list, add to surrounding this->InsertCell( i, surroundingPoints, surroundingCells, surroundingPointList ); } else { // Cell is at the list, add to patch this->InsertCell( i, patchPoints, patchCells, patchPointList ); } } surroundingPointList->Delete(); patchPointList->Delete(); // Creating outputs this->patch->SetPoints( patchPoints ); this->patch->SetPolys( patchCells ); this->surrounding->SetPoints( surroundingPoints ); this->surrounding->SetPolys( surroundingCells ); } //-------------------------------------------------- void meVTKPolyDataSplitter::Update() //-------------------------------------------------- { bool step1 = false, step2 = false; double average = VTK_DOUBLE_MAX, initialAverage = 0.0; clock_t start, finish; start = clock(); if ( this->surrounding != NULL ) this->surrounding->Delete(); if ( this->patch != NULL ) this->patch->Delete(); // Allocate ouput objects this->surrounding = vtkPolyData::New(); this->patch = vtkPolyData::New(); // Cleaning input vtkCleanPolyData *clean = vtkCleanPolyData::New(); clean->SetInput( this->input ); clean->Update(); this->input->DeepCopy( clean->GetOutput() ); clean->Delete(); // Build structures to random access this->input->BuildCells(); this->input->BuildLinks(); this->input->Update(); if ( this->tag ) { // Get tagged cells vtkBitArray *bit = NULL; this->input->GetCellData()->SetActiveAttribute( "Sticky", vtkDataSetAttributes::SCALARS ); bit = dynamic_cast<vtkBitArray *>( this->input->GetCellData()->GetScalars( "Sticky" ) ); // Dynamic cast returns NULL when fails if ( bit != NULL ) { // Reset cell id list if ( this->cellIdList != NULL ) this->cellIdList->Initialize(); // Iterate over bit array for ( vtkIdType i = 0; i < bit->GetSize(); i++ ) { // Bit is 0 or 1 if ( bit->GetValue( i ) ) { // This cell is marked, add to cell id list this->cellIdList->InsertNextId( i ); } } } } step1 = this->CheckCellIdList(); if ( !step1 ) return; this->ComputeMeshes(); finish = clock(); this->computationTime = (double) ( finish - start ) / (double) CLOCKS_PER_SEC; cout << "meVTKPolyDataSplitter::Computation time: " << this->computationTime << endl; }
f0fce9e8193eea908e5380f318dfefb95aa0a16e
f762e7bfc4f94775a4ffffdbbe0192d6e6534ebe
/src/ViewFFmpeg/main.cpp
058166617d0cae6de2aa2fd617a3a17603f7debb
[]
no_license
Foliedevil/Xplay
fa366e32ff41a875e600da5b7801ef4b71f8ccb8
92472f4cd27b2ebfb1492e593dd7730e61b2d164
refs/heads/master
2023-01-19T22:06:55.079646
2020-11-26T09:31:59
2020-11-26T09:31:59
315,572,767
0
0
null
null
null
null
GB18030
C++
false
false
575
cpp
main.cpp
#include<iostream> //引用C语言的库 extern "C"{ #include<libavcodec/avcodec.h> } using namespace std; //预处理指令导入库 #pragma comment(lib,"avcodec.lib") int main(int argc, char *argv[]) { cout << "test ffmpeg" << endl; #ifdef _WIN32 //32位和64位 win #ifdef _WIN64 //64位 win cout << "this is windows64" << endl; #else //32位 win cout << "this is windows32" << endl; #endif #else cout<<" this is linux "<<endl; #endif cout << "ffmpeg config:"<<avcodec_configuration() << endl; getchar(); return 0; }
23da489334077773ac4232fcc2c70557d58f5c76
701c0c679f1ca7ef721839460a4200b58031a64b
/Station/Station.ino
2d4cfcac5dfafc9dab1f8bbc2dd9fcd71bbe3923
[]
no_license
garthoff/jeenode-1
3427a3fad97ce799d3d9cecae8fbd667f7462404
2022060af70b85a627f8e9d6896b5adb822cbed8
refs/heads/master
2021-01-23T08:24:38.295290
2012-04-26T20:49:50
2012-04-26T20:49:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
750
ino
Station.ino
#include <JeeLib.h> #include <avr/sleep.h> typedef struct { unsigned int time; float windSpeed; } WindData; ISR(WDT_vect) { Sleepy::watchdogEvent(); } void setup () { Serial.begin(57600); Serial.println("\n[Station_i]"); rf12_initialize(1, RF12_868MHZ, 33); } void loop () { WindData windData; if (rf12_recvDone() && rf12_crc == 0 && rf12_len == sizeof windData) { // process incoming data here memcpy(&windData, (byte*) rf12_data, sizeof windData); Serial.print("time= "); Serial.print(windData.time); Serial.print(" windSpeed= "); Serial.print(windData.windSpeed); Serial.print(" m/s -> "); Serial.print((windData.windSpeed*3600)/1000); Serial.println(" km/h"); } }
cc77bdf15dfb356f5a83243c7b17ac02d212e339
ed05be6fdf8d55c6a89d1b7dd60c43f3cb485401
/tests/config.hh
9be68662f555c2435d0a5f68bc4e4e3f72898a91
[ "Apache-2.0" ]
permissive
scylla-zpp-blas/linear-algebra
48cb5319568080f4138d328872b297344e2c3461
823fe4085fdac992ed9695416d9a38d2cf6908d8
refs/heads/master
2023-05-31T21:02:43.016181
2021-06-14T18:05:41
2021-06-14T18:05:41
321,288,035
3
0
Apache-2.0
2021-06-14T18:06:01
2020-12-14T08:54:13
C++
UTF-8
C++
false
false
679
hh
config.hh
#pragma once #include "scylla_blas/config.hh" #include "const.hh" class global_config { public: static inline int argc = 0; static inline char** argv = nullptr; static inline std::string scylla_ip; static inline std::string scylla_port; static void init() { argc = boost::unit_test::framework::master_test_suite().argc; argv = boost::unit_test::framework::master_test_suite().argv; if (argc <= 1) { throw std::runtime_error("You need to specify ip in the command line: ./tests -- scylla_ip"); } scylla_ip = argv[1]; scylla_port = argc > 2 ? argv[2] : std::to_string(SCYLLA_DEFAULT_PORT); } };
6589dd264acc440db87c67f77f7346b3ba17526d
f0b7bcc41298354b471a72a7eeafe349aa8655bf
/codebase/apps/titan/src/TitanStormIdent/GridClump.cc
12e686b85a29953fba08ac7cfff3bc0173afd5a5
[ "BSD-3-Clause" ]
permissive
NCAR/lrose-core
23abeb4e4f1b287725dc659fb566a293aba70069
be0d059240ca442883ae2993b6aa112011755688
refs/heads/master
2023-09-01T04:01:36.030960
2023-08-25T00:41:16
2023-08-25T00:41:16
51,408,988
90
53
NOASSERTION
2023-08-18T21:59:40
2016-02-09T23:36:25
C++
UTF-8
C++
false
false
6,342
cc
GridClump.cc
// *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* // ** Copyright UCAR (c) 1990 - 2016 // ** University Corporation for Atmospheric Research (UCAR) // ** National Center for Atmospheric Research (NCAR) // ** Boulder, Colorado, USA // ** BSD licence applies - redistribution and use in source and binary // ** forms, with or without modification, are permitted provided that // ** the following conditions are met: // ** 1) If the software is modified to produce derivative works, // ** such modified software should be clearly marked, so as not // ** to confuse it with the version available from UCAR. // ** 2) Redistributions of source code must retain the above copyright // ** notice, this list of conditions and the following disclaimer. // ** 3) 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. // ** 4) Neither the name of UCAR nor the names of its contributors, // ** if any, may be used to endorse or promote products derived from // ** this software without specific prior written permission. // ** DISCLAIMER: THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS // ** OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED // ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* ///////////////////////////////////////////////////////////// // GridClump.cc // // GridClump class - wraps a clump with an mdv grid so that // computations may be done on the clump with the grid geometry. // // Mike Dixon, RAP, NCAR, P.O.Box 3000, Boulder, CO, 80307-3000, USA // // November 1998 // /////////////////////////////////////////////////////////////// #include "GridClump.hh" #include <toolsa/umisc.h> #include <rapmath/math_macros.h> #include <cassert> /////////////// // constructors // GridClump::GridClump() { _initDone = FALSE; } GridClump::GridClump(Clump_order *clump, const titan_grid_t &titan_grid, int start_ix, int start_iy) { init(clump, titan_grid, start_ix, start_iy); } ///////////// // destructor // GridClump::~GridClump() { assert (_initDone); } ////////////// // initializer // void GridClump::init(Clump_order *clump_order, const titan_grid_t &titan_grid, int start_ix, int start_iy) { grid = titan_grid; // compute the bounding box for the clump, and create // an array of intervals relative to these bounds. _shrinkWrap(clump_order); // set the various measures of clump position and bounding size nX = _maxIx - _minIx + 1; nY = _maxIy - _minIy + 1; startIx = start_ix + _minIx; startIy = start_iy + _minIy; offsetX = startIx * grid.dx; offsetY = startIy * grid.dy; startX = grid.minx + offsetX; startY = grid.miny + offsetY; // compute the geometry _computeGeometry(); _initDone = TRUE; } //////////////////////////////////////////////////////////////// // _shrinkWrap() // // Compute the grid indices which bound the clump. // Create a set of intervals relative to the bounding box. // void GridClump::_shrinkWrap(Clump_order *clump) { // determine the spatial limits _minIx = 1000000000; _minIy = 1000000000; _maxIx = 0; _maxIy = 0; for (int intv = 0; intv < clump->size; intv++) { Interval *intvl = clump->ptr[intv]; _minIx = MIN(intvl->begin, _minIx); _maxIx = MAX(intvl->end, _maxIx); _minIy = MIN(intvl->row_in_plane, _minIy); _maxIy = MAX(intvl->row_in_plane, _maxIy); } // load up intervals, adjusting for the limits nIntervals = clump->size; nPoints = clump->pts; intervals.reserve(nIntervals); for (int intv = 0; intv < clump->size; intv++) { Interval *intvl = clump->ptr[intv]; intervals[intv] = *intvl; intervals[intv].row_in_plane -= _minIy; intervals[intv].begin -= _minIx; intervals[intv].end -= _minIx; } } //////////////////////////////////////////////////////////////// // _computeGeometry() // // Compute the geometry related to the clump. // void GridClump::_computeGeometry() { if (grid.proj_type == TITAN_PROJ_FLAT) { // flat grid _isLatLon = FALSE; _dX = grid.dx; _dY = grid.dy; _dAreaFlat = _dX * _dY; _dVolFlat = _dAreaFlat * grid.dz; dAreaEllipse = _dAreaFlat; dAreaAtCentroid = _dAreaFlat; dVolAtCentroid = _dVolFlat; if (grid.nz <= 1) { stormSize = nPoints * _dAreaFlat; } else { stormSize = nPoints * _dVolFlat; } kmPerGridUnit = (_dX + _dY) / 2.0; } else { // latlon grid // latlon data has a lat/lon grid, so we need to multiply by // a (111.12 squared) to get km2 for area. The delta_z is // set nominally to 1.0, so area and volume will be the same. // The volume and area computations are adjusted later for the // latitude of the storm. _isLatLon = TRUE; _dX = grid.dx; _dY = grid.dy * KM_PER_DEG_AT_EQ; _dXAtEquator = grid.dx * KM_PER_DEG_AT_EQ; _dAreaAtEquator = (grid.dx * grid.dy) * (KM_PER_DEG_AT_EQ * KM_PER_DEG_AT_EQ); _dVolAtEquator = _dAreaAtEquator * grid.dz; // compute the volumetric y centroid double sumy = 0.0, n = 0.0; for (int intv = 0; intv < nIntervals; intv++) { const Interval &intvl = intervals[intv]; sumy += (double) intvl.row_in_plane * (double) intvl.len; n += (double) intvl.len; } double vol_centroid_y = (sumy / n) * grid.dy + grid.miny; double latitude_factor = cos(vol_centroid_y * DEG_TO_RAD); dVolAtCentroid = _dVolAtEquator * latitude_factor; dAreaAtCentroid = _dAreaAtEquator * latitude_factor; dAreaEllipse = grid.dx * grid.dy; if (grid.nz <= 1) { stormSize = nPoints * dAreaAtCentroid; } else { stormSize = nPoints * dVolAtCentroid; } kmPerGridUnit = (_dXAtEquator * latitude_factor + _dY) / 2.0; } }
6c0207a30087795a64f67f6cf7be9396c649f573
d5d94c992d0596080ba694c518dfdb58d3490847
/1186/answer.cpp
a7f228ef42d66a8ca04b7ffb90ee463b1a5326f8
[]
no_license
calgagi/leetcode
1bf24b750e44c2c893935983e5d88e0f071d9f2d
431aba979d92e331f2f92a07eb80167a823a49bd
refs/heads/master
2022-11-17T11:26:01.596496
2020-07-19T06:56:04
2020-07-19T06:56:04
276,207,528
0
0
null
null
null
null
UTF-8
C++
false
false
693
cpp
answer.cpp
class Solution { public: int maximumSum(vector<int>& arr) { vector<int> maxEnd(arr.size(), 0), maxBegin(arr.size(), 0); int maximum = arr[0]; maxBegin[0] = arr[0]; for (int i = 1; i < arr.size(); i++) { maximum = max(maximum, arr[i]); maxBegin[i] = max(maxBegin[i-1]+arr[i], arr[i]); } maxEnd[arr.size()-1] = arr.back(); for (int i = arr.size()-2; i >= 0; i--) { maxEnd[i] = max(maxEnd[i+1]+arr[i], arr[i]); } for (int i = 1; i < arr.size()-1; i++) maximum = max(maximum, max(maxBegin[i-1] + maxEnd[i+1], max(maxBegin[i], maxEnd[i]))); return maximum; } };
c87437ed5e8e245eb5aceed6d1b27d72da8fbf88
2561405da8f708ea0b833a75a09872f0a1669da9
/include/solaire/parallel/thread_pool_executor.hpp
80d88d4fa9985eeb6a8132df0ff0bd361615a33b
[ "Apache-2.0" ]
permissive
SolaireLibrary/solaire_parallel
afe47b1e90f6080afaf73eec3bdab5996b228fad
eed82815215e1eb60b7ca29e19720f6707966383
refs/heads/master
2021-01-18T02:00:20.544941
2016-05-17T18:21:29
2016-05-17T18:21:29
58,665,841
0
0
null
null
null
null
UTF-8
C++
false
false
1,966
hpp
thread_pool_executor.hpp
#ifndef SOLAIRE_PARALEL_THREAD_POOL_EXECUTOR_HPP #define SOLAIRE_PARALEL_THREAD_POOL_EXECUTOR_HPP //Copyright 2016 Adam G. Smith // //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 <vector> #include "solaire/parallel/task_executor.hpp" namespace solaire { class thread_pool_executor : public task_executor { private: std::thread* const mWorkerThreads; std::vector<std::function<void()>> mTasks; std::mutex mTasksLock; std::condition_variable mTaskAdded; const uint32_t mThreadCount; bool mExit; protected: // inherited from task_executor void _schedule(std::function<void()> aTask) override { mTasksLock.lock(); mTasks.push_back(aTask); mTasksLock.unlock(); mTaskAdded.notify_one(); } public: thread_pool_executor(uint32_t aThreadCount) : mWorkerThreads(new std::thread[aThreadCount]), mThreadCount(aThreadCount), mExit(false) { const auto threadFn = [this]() { while(! mExit) { std::unique_lock<std::mutex> lock(mTasksLock); mTaskAdded.wait(lock); if(! mTasks.empty()) { std::function<void()> task = mTasks.back(); mTasks.pop_back(); lock.unlock(); task(); } } }; for(uint32_t i = 0; i < aThreadCount; ++i) mWorkerThreads[i] = std::thread(threadFn); } ~thread_pool_executor() { mExit = true; mTaskAdded.notify_all(); for (uint32_t i = 0; i < mThreadCount; ++i) mWorkerThreads[i].join(); delete[] mWorkerThreads; } }; } #endif
49a0c73f1e97e7b356c5348df251d0ebb7aecd97
574b207e8608e288274a8450bcf9f3635fff38d6
/17_advanced_graphs/9_monk_islands.cpp
e46927cde3e395225b62e4f8ec03d8c3e2d2df70
[ "MIT" ]
permissive
anujjain5699/Coding-Ninjas-Competitive-1
eabce470e790ddf209d23ef15f49133efb47176d
791dfd800d5ca6def63da12ad286d49edda736a0
refs/heads/master
2023-07-16T02:58:38.538649
2021-09-02T11:35:48
2021-09-02T11:35:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,970
cpp
9_monk_islands.cpp
/* MONK AND THE ISLAND Monk visits the land of Islands. There are a total of N islands numbered from 1 to N. Some pairs of islands are connected to each other by Bidirectional bridges running over water. Monk hates to cross these bridges as they require a lot of efforts. He is standing at Island #1 and wants to reach the Island #N. Find the minimum the number of bridges that he shall have to cross, if he takes the optimal route. Input: First line contains T. T testcases follow. First line of each test case contains two space-separated integers N, M. Each of the next M lines contains two space-separated integers X and Y , denoting that there is a bridge between Island X and Island Y. Output: Print the answer to each test case in a new line. Constraints: 1 ≤ T ≤ 10 1 ≤ N ≤ 10000 1 ≤ M ≤ 100000 1 ≤ X, Y ≤ N SAMPLE INPUT 2 3 2 1 2 2 3 4 4 1 2 2 3 3 4 4 2 SAMPLE OUTPUT 2 2 */ #include<bits/stdc++.h> using namespace std; int bfs(int n,vector<int> *edges,queue<pair<int,int>> *pending){ int level=0; pending->push(make_pair(1,0)); int *visited=new int[n+1]{}; visited[1]=1; while(!pending->empty()){ pair<int,int> el=pending->front(); pending->pop(); if(el.first==n){ return el.second; } for(auto i=edges[el.first].begin();i<edges[el.first].end();i++){ if(visited[*i]==0){ pending->push(make_pair(*i,el.second+1)); visited[*i]=1; } } } return level; } int main(){ int t; cin>>t; while(t--){ int n, m; cin>>n>>m; vector<int> *edges=new vector<int>[n+1]; while(m--){ int x,y; cin>>x>>y; edges[x].push_back(y); edges[y].push_back(x); } queue<pair<int,int>> *pending=new queue<pair<int,int>>; int numbridges=bfs(n,edges,pending); cout<<numbridges<<"\n"; } return 0; }
0d0f87e5f213fd8e07116fd7c536ed4d4564155d
88935ce124c354acdb013df9a499067444829ca0
/solutions/1110.cpp
5039aba6d776c90a086da79f423e960d488b9d8b
[]
no_license
pascal-the-elf/TIOJ-ASE
6883e4d0d0a23f02d3f2efe58bf5bd9537952384
181ba41b732d52f9c8c728be247961dda3bd4398
refs/heads/main
2023-06-04T11:40:20.715491
2021-06-27T16:35:40
2021-06-27T16:35:40
377,033,735
0
0
null
null
null
null
UTF-8
C++
false
false
535
cpp
1110.cpp
#include <bits/stdc++.h> using namespace std; int q, l; string s; int ct[26] = {}; int main(){ cin >> q; while(q--){ cin >> l >> s; fill(ct,ct+26,0); for(int i = 0;i < s.length();i++){ ct[s[i] - 'a']++; } int mx = 0; set<char> mxAp; for(int i = 0;i < 26;i++){ if(ct[i] == mx)mxAp.insert('a'+i); else if(ct[i] > mx)mxAp.clear(),mxAp.insert('a'+i),mx = ct[i]; } for(auto c:mxAp)cout << c; cout << '\n'; } }
5622f1be6e9b10f5500233c7c86720a1a6e9b0c9
43efb8c60d19d37c2f42805754086f910348a5ae
/Coding/Rough Codes/problm3.cpp
4faaf872bec0a646a4ddd0344bafa989bfdb3626
[]
no_license
akshay2742/Coding-Problems
961399752b30b6a17b72b2c1b2afada9e839a326
838be77b707cc82a9453c964ff8cedce1646dfe8
refs/heads/master
2021-06-26T14:08:39.292052
2020-10-08T18:34:19
2020-10-08T18:34:19
151,247,129
0
1
null
2020-10-08T18:34:21
2018-10-02T11:59:38
C++
UTF-8
C++
false
false
552
cpp
problm3.cpp
#include<iostream> #include<math.h> #include<cstdio> using namespace std; #define int long long int checkSquare(int a) { int x,valid=1; while(a!=0){ x=a%10; a=a/10; if(x==9||x==4||x==1||x==0) continue; else return 0; } return valid; } main(){ int t,a,b,i,square,count=0; scanf("%lld",&t); while(t--) { scanf("%lld%lld",&a,&b); for(i=sqrt(a);i<=sqrt(b);i++) { if(checkSquare(i*i)){ count++;} } printf("%lld\n",count); count=0; } return 0; }
0520e6b1134d4075d3185041832524f718cd5eb8
85eb574fc95f0d7a6d8fdca0cd84e622e78b402c
/src/Core/External/unsw/unsw/perception/behaviour/python/wrappers/AbsCoord_wrap.pcpp
4d87d36fdf0438128a25fa8271382e3896775200
[ "MIT" ]
permissive
pedrohsreis/Mari
b0ee0534d0b2388410365f586e69b3563379bc61
ef0e0f3ffbecdeb49e8238df9795f4a07b84ad8b
refs/heads/master
2020-04-04T06:56:42.143270
2018-11-03T19:49:25
2018-11-03T19:49:25
155,762,829
0
0
MIT
2018-11-01T19:06:45
2018-11-01T19:06:44
null
UTF-8
C++
false
false
441
pcpp
AbsCoord_wrap.pcpp
class_<AbsCoord>("AbsCoord"). def(init<float, float, float>()). add_property("x" , abs_get_v_const_type(&AbsCoord::x )). add_property("y" , abs_get_v_const_type(&AbsCoord::y )). add_property("theta" , abs_get_v_const_type(&AbsCoord::theta )). def_readonly("weight" , &AbsCoord::weight ). add_property("var" , make_getter(&AbsCoord::var, return_value_policy<return_by_value>()));
36121313baf957b31f93e63a83fff3d62b713edc
d95bb56973b4c861f16c498cd0284f97979252f4
/检查有多少boy与girl.cpp
cf60406a15ab90de1fb9c4eb02c1c087349e8b3f
[]
no_license
iamcaptainyc/queue
c565c41ef16e0b48b49357594f7910ae1e90243a
9be842ce01e6929509156116cd9ae3be74fb17e1
refs/heads/main
2023-03-30T01:13:58.419732
2021-04-09T09:09:49
2021-04-09T09:09:49
304,335,282
0
0
null
null
null
null
GB18030
C++
false
false
532
cpp
检查有多少boy与girl.cpp
#include <iostream> #include <string> using namespace std; int main() { string str; getline(cin,str); for(int i=0;i<=str.length()-2;i++){//检查有多少个boy if(str[i]=='b'||str[i+1]=='o'||str[i+2]=='y')//检查从i开始的三个字符是否符合boy单词的顺序,只要符合顺序即可认定这里有一个Boy { boy++; } } for(int i=0;i<=str.length()-3;i++){ if(str[i]=='g'||str[i+1]=='i'||str[i+2]=='r'||str[i+3]=='l'){ girl++; } } cout<<boy<<' '<<girl; return 0; }
7ad0256a77cc943d9916bc282719602ba49e6667
d7cab9554d4d0935170299ad5dd3a920fc2557e8
/ak/ui/tooltip.h
ff2c6d7040a15bad1c5332ac8348d689a5f1aaad
[]
no_license
alex-kir/ak-cpp-lib
15191a4c5cfa3e26e841c1f328ecb4bb65982881
d060e9a08c735a1e360db16e3973fadee0de62d1
refs/heads/master
2021-06-19T02:47:59.883423
2021-05-18T19:43:43
2021-05-18T19:43:43
36,856,048
1
0
null
null
null
null
UTF-8
C++
false
false
357
h
tooltip.h
#pragma once #include <ak/ui/window.h> #include <string> namespace ak { namespace ui { class tooltip { void * hwndTT; void * hwnd; std::wstring _text; public: void create(window & wnd, const std::wstring & text); void update(const std::wstring & text); }; } }
99af015f2de48c286b979912628a13dbc51b3ffd
c1fb3c631864b9dd37910b755717f39880900bd8
/Trnx/TrnxOnline.h
3e830cae8806bf953ceb8ed4c20ec6befea95b7d
[]
no_license
suyuti/pax_terminal
9b9f25ee59763ccb65a9de98698eb77cc0d796aa
df342c31ec6a14583ccb99aca639aa1837561f87
refs/heads/master
2023-05-04T14:27:48.942182
2013-02-12T14:24:04
2013-02-12T14:24:04
371,936,205
0
0
null
null
null
null
UTF-8
C++
false
false
950
h
TrnxOnline.h
// TrnxOnline.h: interface for the CTrnxOnline class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_TRNXONLINE_H__CD99D919_AE40_4786_88B6_CB333FDF0586__INCLUDED_) #define AFX_TRNXONLINE_H__CD99D919_AE40_4786_88B6_CB333FDF0586__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "TrnxBase.h" #include "..\Engine\OnlineEngine.h" class CEngine; class CTrnxOnline : public CTrnxBase { public: CTrnxOnline(); CTrnxOnline(CEngine*); virtual ~CTrnxOnline(); virtual int Do(); virtual int OnBeforeOnline(); virtual int OnApproved(); protected: unsigned char m_cardNo[32]; char m_inputTypeLabel[32]; // Tutar girilirken gosterilecek islem tipi COnlineEngine online; int m_ScriptBalance; int m_ScriptPoint; bool m_bLoadBalanceToCard; bool m_bLoadPointToCard; }; #endif // !defined(AFX_TRNXONLINE_H__CD99D919_AE40_4786_88B6_CB333FDF0586__INCLUDED_)
bb05be39c10955722e2d1757337b86ad6e02c1b9
955e4dd507efb999bcfdd2126f8073279cdd1885
/image/layer.cpp
795deda8abad82672dac82b19db5e0c0ce47fd7c
[]
no_license
DevAlone/Qwerty
aa3aac2ba51fe69c966c72cd6ecb8f5999083c00
4d020dbb5b66253cb9db68cde8e202b9b06620c1
refs/heads/master
2021-01-13T04:27:52.125176
2017-02-05T18:46:54
2017-02-05T18:46:54
79,954,157
2
0
null
null
null
null
UTF-8
C++
false
false
346
cpp
layer.cpp
#include "layer.h" Layer::Layer(int width, int height, const QColor &color) { pixmap = QPixmap(width, height); pixmap.fill(color); } Layer::Layer(const QPixmap &pixmap) { this->pixmap = pixmap; } unsigned char Layer::getOpacity() const { return opacity; } void Layer::setOpacity(unsigned char value) { opacity = value; }
8cb76d826e020c3ec81d50e5511c35d5238e0113
927b64a33b87a078c038e1cb5815249e9fbb200b
/microprocessor/LightManager/Package.cpp
2e65ef5485241d796f593fa27b1198ff4ecccb08
[]
no_license
dut-project-team/dut-projects
85854397df0a8cb2e67597fc1be2fe4247e7a724
5762c03167eb4183d55a142556e79d9f5ed655a7
refs/heads/master
2021-01-18T01:29:49.223463
2016-05-14T15:18:50
2016-05-14T15:18:50
46,776,295
1
0
null
2016-03-15T14:39:54
2015-11-24T08:02:09
Java
UTF-8
C++
false
false
4,552
cpp
Package.cpp
#include "Package.h" #include <string.h> ///------------------------------------------------------------- bool RequestEditDCPackage::init( byte_t* st, int length) { int sz_dconfig = sizeof(DefConfig); // skip 1 byte for command // skip 1 byte for defconfig id(next byte) if(sz_dconfig + 2 != length) return false; m_id = *(st + 1); m_pconfig = new DefConfig(); memcpy(m_pconfig, st + 2, sz_dconfig); return true; } ///------------------------------------------------------------- bool RequestEditUCPackage::init( byte_t* st, int length) { int sz_uconfig = sizeof(UserConfig); // skip 1 byte for command // skip 1 byte for light id(next byte) if(sz_uconfig + 2 != length) return false; m_id = *(st + 1); m_pconfig = new UserConfig(); memcpy(m_pconfig, st + 2, sz_uconfig); return true; } ///------------------------------------------------------------- bool RequestAddLightPackage::init( byte_t* st, int length) { int sz_uconfig = sizeof(UserConfig); // skip 1 byte for command if(sz_uconfig + 1 != length) return false; m_pconfig = new UserConfig(); memcpy(m_pconfig, st + 1, sz_uconfig); return true; } ///------------------------------------------------------------- bool RequestRemoveLightPackage::init( byte_t* st, int length) { if(length != 2) return false; // skip 1 byte for command m_id = *(st + 1); return true; } ///------------------------------------------------------------- byte_t* ResponsePackage::get_bytes(uint& length) { byte_t* st = new byte_t[1]; st[0] = m_success; length = 1; return st; } ///------------------------------------------------------------- byte_t* ResponseUserConfigPackage::get_bytes(uint& length) { byte_t* header = ResponsePackage::get_bytes(length); int sz_uconfig = sizeof(UserConfig); int sz_extra = sz_uconfig * m_count; // header + count + configs byte_t* bytes = new byte_t[length + 1 + sz_extra]; memcpy(bytes, header, length); delete[] header; *(bytes + length) = m_count; for(byte_t i = 0; i < m_count; i++) { memcpy(bytes + length + 1 + sz_uconfig * i, *(m_ppconfig + i), sz_uconfig); } length += sz_extra + 1; return bytes; } ///------------------------------------------------------------- byte_t* ResponseDefConfigPackage::get_bytes(uint& length) { byte_t* header = ResponsePackage::get_bytes(length); int sz_dconfig = sizeof(DefConfig); int sz_extra = sz_dconfig * m_count; // header + count + configs byte_t* bytes = new byte_t[length + 1 + sz_extra]; memcpy(bytes, header, length); delete[] header; *(bytes + length) = m_count; for(byte_t i = 0; i < m_count; i++) { memcpy(bytes + length + 1 + sz_dconfig * i, *(m_ppconfig + i), sz_dconfig); } length += sz_extra + 1; return bytes; } ///------------------------------------------------------------- byte_t* ResponseLightStatePackage::get_bytes(uint& length) { byte_t* header = ResponsePackage::get_bytes(length); byte_t* bytes = new byte_t[length + 1 + m_count]; memcpy(bytes, header, length); delete[] header; *(bytes + length) = m_count; memcpy(bytes + length + 1, m_pstates, m_count); length += m_count + 1; return bytes; } ///------------------------------------------------------------- byte_t* ResponseAvailableConfigsPackage::get_bytes(uint& length) { byte_t* header = ResponsePackage::get_bytes(length); byte_t sz_total = length + 3 + m_pin_count + m_ls_count + m_ps_count; byte_t* bytes = new byte_t[sz_total]; // header memcpy(bytes, header, length); delete[] header; int offset = length; // pins *(bytes + offset) = m_pin_count; offset += 1; memcpy(bytes + offset, m_ppins, m_pin_count); offset += m_pin_count; // light sensors *(bytes + offset) = m_ls_count; offset += 1; memcpy(bytes + offset, m_pls, m_ls_count); offset += m_ls_count; // people sensors *(bytes + offset) = m_ps_count; offset += 1; memcpy(bytes + offset, m_pps, m_ps_count); length = sz_total; return bytes; } ///------------------------------------------------------------- byte_t* ResponseAddLightPackage::get_bytes(uint& length) { byte_t* header = ResponsePackage::get_bytes(length); byte_t* bytes = new byte_t[length + 1]; memcpy(bytes, header, length); delete[] header; *(bytes + length) = m_new_id; length += 1; return bytes; }
4705d8dd104098335ba5b662590a59de04dde5ee
23f44299eb66e54b3bb617cdce5aed61f688997f
/update_volume.cpp
d712ce13629d40a3210c1160b05235580f850f1e
[]
no_license
kompowiec/vvvapp
03dc039cf2510021e4f15c3819db9baa536fdb09
b8c22cfa04412f206e0393eb61643e5c710164cd
refs/heads/master
2021-01-02T05:47:11.231261
2020-02-10T13:24:05
2020-02-10T13:24:05
239,516,064
0
0
null
2020-02-10T13:17:01
2020-02-10T13:17:00
null
UTF-8
C++
false
false
9,377
cpp
update_volume.cpp
/* This file is part of VVV (Virtual Volumes View) Copyright (C) 2007-2008, the VVV Development team Author: Fulvio Senore VVV 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. VVV 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 VVV; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ ///////////////////////////////////////////////////////////////////////////// // Name: update_volume.cpp // Purpose: // Author: // Modified by: // Created: 28/11/2008 10:39:59 // RCS-ID: // Copyright: // Licence: ///////////////////////////////////////////////////////////////////////////// #ifndef wxADJUST_MINSIZE #define wxADJUST_MINSIZE 0 #endif #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "update_volume.h" #endif // For compilers that support precompilation, includes "wx/wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop #endif #ifndef WX_PRECOMP #include "wx/wx.h" #endif ////@begin includes #include "wx/mstream.h" ////@end includes #include "vvv.h" #include "update_volume.h" #include "utils.h" #include "long_task_beep.h" #include "catalog_volume_functions.h" ////@begin XPM images ////@end XPM images /*! * CDialogUpdateVolume type definition */ IMPLEMENT_DYNAMIC_CLASS( CDialogUpdateVolume, wxDialog ) /*! * CDialogUpdateVolume event table definition */ BEGIN_EVENT_TABLE( CDialogUpdateVolume, wxDialog ) ////@begin CDialogUpdateVolume event table entries EVT_BUTTON( ID_VOLUME_BROWSE, CDialogUpdateVolume::OnVolumeBrowseClick ) EVT_BUTTON( wxID_HELP, CDialogUpdateVolume::OnHelpClick ) EVT_BUTTON( ID_BUTTON_UPDATE, CDialogUpdateVolume::OnButtonUpdateClick ) ////@end CDialogUpdateVolume event table entries END_EVENT_TABLE() /*! * CDialogUpdateVolume constructors */ CDialogUpdateVolume::CDialogUpdateVolume() { Init(); } CDialogUpdateVolume::CDialogUpdateVolume( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) { Init(); Create(parent, id, caption, pos, size, style); } /*! * CDialogUpdateVolume creator */ bool CDialogUpdateVolume::Create( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) { ////@begin CDialogUpdateVolume creation SetExtraStyle(wxWS_EX_BLOCK_EVENTS); wxDialog::Create( parent, id, caption, pos, size, style ); CreateControls(); if (GetSizer()) { GetSizer()->SetSizeHints(this); } Centre(); ////@end CDialogUpdateVolume creation m_WindowPosition.SetWindow( this ); m_WindowPosition.RestorePosition(); return true; } /*! * CDialogUpdateVolume destructor */ CDialogUpdateVolume::~CDialogUpdateVolume() { ////@begin CDialogUpdateVolume destruction ////@end CDialogUpdateVolume destruction wxConfigBase *pConfig = wxConfigBase::Get(); pConfig->SetPath(wxT("/CatalogVolume")); wxString catalogPath = m_VolumePath->GetValue(); pConfig->Write( wxT("CatalogPath"), catalogPath ); m_WindowPosition.SavePosition(); } /*! * Member initialisation */ void CDialogUpdateVolume::Init() { ////@begin CDialogUpdateVolume member initialisation m_VolumeNameStatic = NULL; m_VolumePath = NULL; m_VolumeBrowse = NULL; m_HelpButton = NULL; m_UpdateButton = NULL; m_CloseButton = NULL; m_CurrentFolder = NULL; ////@end CDialogUpdateVolume member initialisation m_CatalogAudioMetadata = true; } /*! * Control creation for CDialogUpdateVolume */ void CDialogUpdateVolume::CreateControls() { ////@begin CDialogUpdateVolume content construction CDialogUpdateVolume* itemDialog1 = this; wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL); itemDialog1->SetSizer(itemBoxSizer2); wxStaticText* itemStaticText3 = new wxStaticText( itemDialog1, wxID_STATIC, _("You are about to update the following volume:"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer2->Add(itemStaticText3, 0, wxALIGN_LEFT|wxALL, 5); m_VolumeNameStatic = new wxStaticText( itemDialog1, wxID_STATIC, _("VOLUME NAME"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer2->Add(m_VolumeNameStatic, 0, wxALIGN_LEFT|wxALL, 5); itemBoxSizer2->Add(5, 5, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); wxStaticText* itemStaticText6 = new wxStaticText( itemDialog1, wxID_STATIC, _("Enter or select the path to volume to update"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer2->Add(itemStaticText6, 0, wxALIGN_LEFT|wxALL|wxADJUST_MINSIZE, 5); wxBoxSizer* itemBoxSizer7 = new wxBoxSizer(wxHORIZONTAL); itemBoxSizer2->Add(itemBoxSizer7, 0, wxGROW|wxBOTTOM, 5); m_VolumePath = new wxTextCtrl( itemDialog1, ID_VOLUME_PATH, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer7->Add(m_VolumePath, 1, wxALIGN_CENTER_VERTICAL|wxALL, 5); m_VolumeBrowse = new wxButton( itemDialog1, ID_VOLUME_BROWSE, _("..."), wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT ); itemBoxSizer7->Add(m_VolumeBrowse, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxTOP|wxBOTTOM, 5); wxBoxSizer* itemBoxSizer10 = new wxBoxSizer(wxHORIZONTAL); itemBoxSizer2->Add(itemBoxSizer10, 0, wxGROW|wxTOP|wxBOTTOM, 5); m_HelpButton = new wxButton( itemDialog1, wxID_HELP, _("&Help"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer10->Add(m_HelpButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); itemBoxSizer10->Add(5, 5, 1, wxALIGN_CENTER_VERTICAL|wxALL, 5); m_UpdateButton = new wxButton( itemDialog1, ID_BUTTON_UPDATE, _("Update"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer10->Add(m_UpdateButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); m_CloseButton = new wxButton( itemDialog1, wxID_CANCEL, _("&Close"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer10->Add(m_CloseButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); m_CurrentFolder = new wxStaticText( itemDialog1, ID_CURRENT_FOLDER, _("Current folder"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer2->Add(m_CurrentFolder, 0, wxGROW|wxALL|wxADJUST_MINSIZE, 5); itemBoxSizer2->Add(5, 5, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); ////@end CDialogUpdateVolume content construction m_CurrentFolder->SetLabel( wxEmptyString ); } /*! * Should we show tooltips? */ bool CDialogUpdateVolume::ShowToolTips() { return true; } /*! * Get bitmap resources */ wxBitmap CDialogUpdateVolume::GetBitmapResource( const wxString& name ) { // Bitmap retrieval ////@begin CDialogUpdateVolume bitmap retrieval wxUnusedVar(name); return wxNullBitmap; ////@end CDialogUpdateVolume bitmap retrieval } /*! * Get icon resources */ wxIcon CDialogUpdateVolume::GetIconResource( const wxString& name ) { // Icon retrieval ////@begin CDialogUpdateVolume icon retrieval wxUnusedVar(name); return wxNullIcon; ////@end CDialogUpdateVolume icon retrieval } /*! * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_BUTTON_CATALOG */ void CDialogUpdateVolume::OnButtonUpdateClick( wxCommandEvent& WXUNUSED(event) ) { wxString path = m_VolumePath->GetValue(); if( path == wxEmptyString ) { CUtils::MsgErr( _("The volume path is missing") ); return; } wxBusyCursor bc; CLongTaskBeep ltb; EnableDisableControls( false ); // creates an object that will be used to catalog data CCatalogVolumeFunctions cvf( m_CurrentFolder, m_CatalogAudioMetadata ); cvf.UpdateVolume( path, m_VolumeID ); EnableDisableControls( true ); m_CurrentFolder->SetLabel( wxEmptyString ); EndModal( wxID_OK ); } /*! * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_VOLUME_BROWSE */ void CDialogUpdateVolume::OnVolumeBrowseClick( wxCommandEvent& WXUNUSED(event) ) { wxDirDialog dlg( this, _("Select the volume to catalog"), wxEmptyString, wxDD_DEFAULT_STYLE|wxDD_DIR_MUST_EXIST ); if( dlg.ShowModal() == wxID_OK ) m_VolumePath->SetValue( dlg.GetPath() ); } void CDialogUpdateVolume::EnableDisableControls( bool enabled ) { m_VolumeBrowse->Enable( enabled ); m_HelpButton->Enable( enabled ); m_UpdateButton->Enable( enabled ); m_CloseButton->Enable( enabled ); } void CDialogUpdateVolume::SetVolumeData(const wxString &volumeName, long volumeID, const wxString &volumePath) { m_VolumeID = volumeID; m_VolumeNameStatic->SetLabel( volumeName ); m_VolumePath->SetValue( volumePath ); } /*! * wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_HELP */ void CDialogUpdateVolume::OnHelpClick( wxCommandEvent& WXUNUSED(event) ) { wxGetApp().GetHelpController()->DisplaySection( wxT("update_volume.htm") ); }
4d603c895180e6d1982a304ff158370499b85774
94a88c9cb36803c36eeff0fad57689e5fe76cab1
/Qt/NLP_CHEN/my_thread.cpp
6ce0fcffd82c36dcd8999d3417db78f731d93966
[]
no_license
YFCbingyi/test_own
c5e38842765831dcc6c45e3181f370083877fc7f
8b5461deceeb0b64ef8b571796a017ee532be429
refs/heads/master
2021-07-19T19:15:56.742920
2020-10-29T02:32:49
2020-10-29T02:32:49
225,312,122
0
0
null
null
null
null
UTF-8
C++
false
false
957
cpp
my_thread.cpp
#include "my_thread.h" #include "debug_log.h" #include <chrono> #include <unistd.h> my_thread::my_thread() { } void my_thread::test() { std::promise<int> promise_obj; std::future<int> future_obj = promise_obj.get_future(); thd_ = thread(&my_thread::run,this,std::ref(promise_obj)); while(future_obj.wait_for(std::chrono::milliseconds(1000)) == std::future_status::timeout) { LOG(INFO) << "heartbeat "; } int status = future_obj.get(); if(status == NORMAL) { LOG(INFO) << "normal over"; } else if(status == TERMINATE) { LOG(INFO) << "terminate over"; } else { LOG(ERROR) << "It's a question"; } if(thd_.joinable()) thd_.join(); } void my_thread::run(std::promise<int> &promise_obj) { int a = 10; while (true) { ::sleep(2); LOG(INFO) << "run ..."; a--; if(a == 0) break; } promise_obj.set_value(TERMINATE); }
3a32a0327eea7824eaf13538c9465c38c45419e8
e3505cfd86c57b1869c2885a3a44550af552d483
/source/plugins/org.custusx.core.patientmodel/testing/cxtestCatchFrameMetric.cpp
13f3f60627e574d65f7dd5067997494265d93eb2
[ "BSD-3-Clause" ]
permissive
leettran/CustusX
afb6a3bc6607bf28fa1c94f94b66cf9979728cd5
b4e64e0db364da189ee9eafa54ce0ab258f5105a
refs/heads/master
2021-07-14T03:33:55.038281
2017-02-09T09:29:57
2017-02-09T09:29:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,403
cpp
cxtestCatchFrameMetric.cpp
/*========================================================================= This file is part of CustusX, an Image Guided Therapy Application. Copyright (c) 2008-2014, SINTEF Department of Medical Technology All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. 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. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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 "catch.hpp" #include "cxTypeConversions.h" #include "cxtestMetricFixture.h" TEST_CASE("cxFrameMetric can set/get transform", "[unit]") { cxtest::MetricFixture fixture; cxtest::FrameMetricWithInput testData = fixture.getFrameMetricWithInput(); CHECK(fixture.inputEqualsMetric(testData)); } TEST_CASE("cxFrameMetric can save/load XML", "[unit]") { cxtest::MetricFixture fixture; cxtest::FrameMetricWithInput testData = fixture.getFrameMetricWithInput(); CHECK(fixture.saveLoadXmlGivesEqualTransform(testData)); } TEST_CASE("cxFrameMetric can convert transform to single line string", "[unit]") { cxtest::MetricFixture fixture; cxtest::FrameMetricWithInput testData = fixture.getFrameMetricWithInput(); QStringList list = fixture.getSingleLineDataList(testData.mMetric); REQUIRE(fixture.verifySingleLineHeader(list, testData.mMetric)); REQUIRE(list[2]=="reference"); INFO(list.join("\n")); bool transformStringOk = false; cx::Transform3D readTransform = cx::Transform3D::fromString(QStringList(list.mid(3, 16)).join(" "), &transformStringOk); REQUIRE(transformStringOk); REQUIRE(cx::similar(testData.m_qMt, readTransform)); } TEST_CASE("cxFrameMetric can set space correctly", "[unit]") { cxtest::MetricFixture fixture; cxtest::FrameMetricWithInput testData = fixture.getFrameMetricWithInput(); fixture.setPatientRegistration(); testData.mMetric->setSpace(cx::CoordinateSystem::patientReference()); CHECK_FALSE(fixture.inputEqualsMetric(testData)); testData.mMetric->setSpace(testData.mSpace); CHECK(fixture.inputEqualsMetric(testData)); testData.mMetric.reset(); }
2ef0f895a3c1f4345be998110d0ac312049101d1
486f775a76e568865ac63afd620059568f92a974
/trunk/Banco_Cliente_Auto/Banco_Cliente_Auto/Msj.cpp
2345edb37f09da15850fa7344ce910448f1b875e
[]
no_license
russosanti/Banking-SO2
2748fbc120c02fd7426ca51d2bd1e17f08c2ddb0
63b2e657b8140d9ff2b9b8520dc8ccb14d10e662
refs/heads/master
2021-01-19T11:17:38.979596
2014-12-11T07:28:50
2014-12-11T07:28:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,315
cpp
Msj.cpp
#include "stdafx.h" #include "Msj.h" #include "IU.h" using System::Collections::Generic::List; using System::Int32; using System::Single; using System::Exception; using System::Char; String^ Msj::code(){ try{ Int32^ tip = gcnew Int32(this->tipo); Int32^ pi = gcnew Int32(this->pin); Single^ sal = gcnew Single(this->saldo); Single^ transf = gcnew Single(this->transfer); String^ aux = tip->ToString(); aux = aux + "&" + this->cuenta + "&" + pi->ToString() + "&" + sal->ToString() + "&" + transf->ToString() + "&" + this->extra; return aux; }catch(Exception^ e){ IU^ i = IU::getinstance(); i->error(e->Message); return nullptr; } } bool Msj::decode(String^ datos){ String^ delimStr = "&"; array<Char>^ delimiter = delimStr->ToCharArray(); datos->Trim(); List<String^>^ arr = gcnew List<String^>(datos->Split(delimiter)); if(arr->Count != 6){ IU^ i = IU::getinstance(); i->error("Error decodificando el mensaje. Pudo haber perdida de datos"); return false; } try{ this->tipo = Int32::Parse(arr[0]); this->cuenta = arr[1]; this->pin = Int32::Parse(arr[2]); this->saldo = Single::Parse(arr[3]); this->transfer = Single::Parse(arr[4]); this->extra = arr[5]; return true; }catch(Exception^ e){ IU^ i = IU::getinstance(); i->error(e->Message); return false; } }
c87fecb1b520fd6ffab731d888e622531de97b9b
b0eb5f8c2656afa1a77e3dfb407d03025a9c1d84
/D3D11/GeometryShaderBillboards/Managers/ShadersManager.h
40e16a8b928ed7680cd140c560e0e7d23546f89e
[]
no_license
mandragorn66/dx11
ee1126d6487dfe0dac1c1d3aa945f39510a446f5
7807a73bd58011e1fc43dc3a4404ed4e9027bc39
refs/heads/master
2021-01-13T02:03:14.816972
2014-05-31T20:58:16
2014-05-31T20:58:16
35,515,523
0
0
null
null
null
null
UTF-8
C++
false
false
851
h
ShadersManager.h
#pragma once struct ID3D11Device; struct ID3D11InputLayout; struct ID3D11VertexShader; struct ID3D11GeometryShader; struct ID3D11PixelShader; namespace Managers { class ShadersManager { public: static void initAll(ID3D11Device * const device); static void destroyAll(); static ID3D11VertexShader* mLandVS; static ID3D11InputLayout* mLandIL; static ID3D11VertexShader* mBillboardsVS; static ID3D11InputLayout* mBillboardsIL; static ID3D11GeometryShader* mBillboardsGS; static ID3D11PixelShader* mLandPS; static ID3D11PixelShader* mBillboardsPS; private: ShadersManager(); ~ShadersManager(); ShadersManager(const ShadersManager& shadersManager); const ShadersManager& operator=(const ShadersManager& shadersManager); }; }
e8b4c15b6106c839ebee0225fde254376c28d58f
cd4ec78dd46939b1bd101b0adc35041993d2a5c3
/src/test_main.cc
ef2bc381b43fda78ae74e081f8ac3ee0777e6155
[ "MIT" ]
permissive
ryangraham/cfg
e81a241808b35781373d620020716ae3bbc4d884
3b8d951f5c251f3269501d5ab22388ca9a219f9f
refs/heads/master
2022-08-16T00:42:00.666877
2020-06-04T06:36:27
2020-06-04T06:36:27
266,646,286
0
0
null
null
null
null
UTF-8
C++
false
false
90
cc
test_main.cc
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN #include "cfg.h" #include "doctest/doctest.h"
39003887435341a3d5cb2ab5509ea049c4daddeb
2143daaf4614fe7117f78432474920ad18c995fd
/Application/Window/View/Panel/Pane/FocusTargetCtrl.cpp
aa7522efa4f5ae66d3171e0600c2371f264fed96
[]
no_license
ytt/CornStarch-1
97350e6350a88734e47ebfbc431606c04d554d0c
d7578a40ed40453ae6f340897e27e101c6142d80
refs/heads/master
2021-01-18T05:46:46.370293
2012-09-13T08:57:42
2012-09-13T08:57:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
837
cpp
FocusTargetCtrl.cpp
#include "FocusTargetCtrl.hpp" namespace CornStarch { // イベントテーブル BEGIN_EVENT_TABLE(CFocusTargetCtrl, wxTextCtrl) // EVT_SET_FOCUS(CFocusTargetCtrl::onFocused) END_EVENT_TABLE() ; CFocusTargetCtrl::CFocusTargetCtrl() { } CFocusTargetCtrl::~CFocusTargetCtrl() { } // 初期化を行う void CFocusTargetCtrl::init(wxWindow* parent) { // テキスト領域の作成 Create(parent, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(-1, 1), 0 ); } void CFocusTargetCtrl::onFocused(wxFocusEvent& event) { wxCommandEvent* focusEvent = new wxCommandEvent(); focusEvent->SetEventType(myEVT_FOCUSE_NEXT_INPUT_TEXT); wxQueueEvent(GetParent()->GetParent()->GetParent()->GetParent()->GetEventHandler(), focusEvent); } } /* namespace CornStarch */
d3a31dd02f22b935d086b4b259d51cc7a2adcbfe
760458ba4a9d7e5992d67095da75805c918f5a06
/cpp.range-v3/action.stride/action.stride.cpp
b1f43b7d66efc878795fa2ce45c88a5cf8206226
[]
no_license
yielding/code
99e0809255f96e89f18d7dfd3492003684485167
b231e15f35c60a7b3227a57be7c110e12c5aa127
refs/heads/master
2023-08-30T23:40:21.225686
2023-08-26T04:39:46
2023-08-26T04:39:46
978,529
16
9
null
null
null
null
UTF-8
C++
false
false
565
cpp
action.stride.cpp
#include <iostream> #include <vector> #include <cassert> #include <range/v3/all.hpp> using namespace ranges::v3; using namespace std; int main(int argc, char *argv[]) { auto& cp = ::ranges::v3::copy; auto v1 = views::ints(0, 100) | to<vector>(); auto v2 = v1 | cp | actions::stride(10); cout << views::all(v2) << endl; // {0, 10, 20, 30, ..., 90} v2 |= actions::stride(4); cout << views::all(v2) << endl; v2 |= actions::stride(2); cout << views::all(v2) << endl; v2 |= actions::stride(10); cout << views::all(v2) << endl; return 0; }
38a5ec91a15aafaf1c062a08fbf1003166418910
c782ef24626b66d609b5742b59b2f38774a44540
/src/mobility/RandomWPMobility.cc
ef0f6e73ae25380be3e8bf1a40444c2fc07f10f9
[]
no_license
olafur/inetmanet
de06aaa676f1a50a04a3d45f442ddfead2bd80ca
39b72d1462a6cfbf2c475f6945dca3252924bad9
refs/heads/master
2021-01-18T06:14:28.506755
2010-08-02T13:26:08
2010-08-02T13:26:08
797,860
1
0
null
null
null
null
UTF-8
C++
false
false
3,807
cc
RandomWPMobility.cc
// // Copyright (C) 2005 Georg Lutz, Institut fuer Telematik, University of Karlsruhe // Copyright (C) 2005 Andras Varga // // 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, see <http://www.gnu.org/licenses/>. // #include "RandomWPMobility.h" #include <algorithm> // min #include <math.h> // floor Define_Module(RandomWPMobility); void RandomWPMobility::initialize(int stage) { BasicMobility::initialize(stage); if (stage == 1) { stationary = (par("speed").getType()=='L' || par("speed").getType()=='D') && (double)par("speed") == 0; if(!stationary) { updateInterval = par("updateInterval"); moving = false; setTargetPosition(); if(!stationary) { simtime_t nextUpdate = std::min(targetTime, simTime() + updateInterval); scheduleAt(nextUpdate, new cMessage("move")); } } } } void RandomWPMobility::setTargetPosition() { if (moving) { simtime_t waitTime = par("waitTime"); targetTime = simTime() + waitTime; moving = false; } else { targetPos = getRandomPosition(); double speed = par("speed"); if (speed != 0) { double distance = pos.distance(targetPos); simtime_t travelTime = distance / speed; targetTime = simTime() + travelTime; double numIntervals = floor(SIMTIME_DBL(travelTime) / updateInterval); if (numIntervals != 0) { step = (targetPos - pos) / numIntervals; } else { step = targetPos - pos; } moving = true; } else { // Node has randomly come to a stop because speed is 0. Usually // this is not desired. Perhaps we should report an error here. stationary = true; } } } void RandomWPMobility::handleSelfMsg(cMessage *msg) { simtime_t now = simTime(); if (moving) { if (now < targetTime) { // Destination not yet reached - keep on moving pos += step; updatePosition(); simtime_t nextUpdate = std::min(targetTime, now + updateInterval); scheduleAt(nextUpdate, msg); } else if (now == targetTime) { // Destination reached - pause pos = targetPos; updatePosition(); setTargetPosition(); scheduleAt(targetTime, msg); } else { delete msg; error("Error, mobility update scheduled after target was reached"); } } else { // Pause finished - time to start moving if (targetTime != now) { delete msg; error("Received a mobility update while pausing."); } setTargetPosition(); if(!stationary) { simtime_t nextUpdate = std::min(targetTime, now + updateInterval); scheduleAt(nextUpdate, msg); } else { delete msg; } } } void RandomWPMobility::fixIfHostGetsOutside() { raiseErrorIfOutside(); }
87fb3b54cbe18ed3c63276bfce7f130ce88ce444
270d670d3798b89cb3f6730c1a24eadfe8f02518
/Engine/SDLWindow.cpp
ab992a1c008aaa607a56ed8a3b674fa4d4034da7
[ "MIT" ]
permissive
ebithril/Cerberus
9d2e49af7b8e3d63397aa129b7eb7c9c7a2aa3ca
8c5034bbb4fcdcc2cdb4495631176a2595c22dc7
refs/heads/master
2021-01-20T14:47:47.033344
2018-04-11T06:16:00
2018-04-11T06:16:00
90,662,638
1
0
null
null
null
null
UTF-8
C++
false
false
1,529
cpp
SDLWindow.cpp
#include "SDLWindow.h" #include "VulkanInstance.h" #include <stdio.h> void SDLWindow::CreateWindow(const WindowMode aWindowMode, const uint16 aWindowWidth, const uint16 aWindowHeight, VulkanInstance* Instance) { uint32 WindowFlags = SDL_WINDOW_OPENGL; switch (aWindowMode) { case WindowMode::Fullscreen: WindowFlags = WindowFlags | SDL_WINDOW_FULLSCREEN; break; case WindowMode::Windowed: WindowFlags = WindowFlags | SDL_WINDOW_RESIZABLE; break; case WindowMode::BorderlessWindowed: WindowFlags = WindowFlags | SDL_WINDOW_BORDERLESS; break; } myWindow = SDL_CreateWindow("Cerberus", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, aWindowWidth, aWindowHeight, WindowFlags); if (!myWindow) { printf("Could not create window %s", SDL_GetError()); } SDL_VERSION(&myWindowInfo.version); if (!SDL_GetWindowWMInfo(myWindow, &myWindowInfo)) { printf("Something went wrong when getting window info\n"); } #ifdef WIN32 VkWin32SurfaceCreateInfoKHR CreateInfo = {}; CreateInfo.sType = VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR; CreateInfo.hwnd = myWindowInfo.info.win.window; CreateInfo.hinstance = GetModuleHandle(nullptr); if (vkCreateWin32SurfaceKHR(gVulkanInstance, &CreateInfo, nullptr, &VulkanSurface) != VK_SUCCESS) { printf("Failed to create surface \n"); } #endif //WIN32 } void SDLWindow::Close() { if (myWindow) { SDL_DestroyWindow(myWindow); myWindow = nullptr; printf("Closed window!"); } }
44ba32a671826c31937ee3f6b90f894c222c44cd
5ffc3cf414d9b61a52f49a06839d0f45166dd070
/HaloTAS/MCCTAS/gui_interop.h
a86430d9f3c0a481b8ce54b51e2713139b584833
[ "MIT" ]
permissive
s3anyboy/HaloTAS
7e75a6cd3fa47623846a5ff95633a001d313c764
9584786f19e1475399298fda2d5783d47623cccd
refs/heads/master
2022-12-12T14:20:34.271947
2020-08-20T02:24:01
2020-08-20T02:24:01
288,840,139
0
0
MIT
2020-08-19T21:20:29
2020-08-19T21:20:28
null
UTF-8
C++
false
false
268
h
gui_interop.h
#pragma once #include "pch.h" #include "windows_pipe_server.h" class gui_interop { private: std::unique_ptr<windows_pipe_server> pipe_server; public: gui_interop(); ~gui_interop(); private: static void answer_request(windows_pipe_server::LPPIPEINST pipe); };
8c5a706f599cbeebb21d8d2fbaa081f15d7aaf99
4a466f4212416181b3727f2f98d9452536aa39c1
/StateMachine.cpp
8cd6824355d408b84c325e0c11d0f9972fedeba1
[]
no_license
TheNewBob/IMS2
24f25843aca5b54ce70f052c2090ad4e22d50d7e
572dcfd4c3621458f01278713437c2aca526d2e6
refs/heads/master
2021-01-19T02:25:03.519558
2018-01-29T20:27:44
2018-01-29T20:27:44
65,005,438
2
0
null
null
null
null
UTF-8
C++
false
false
4,372
cpp
StateMachine.cpp
#include "Common.h" #include <deque> #include <queue> #include <stack> #include "SimpleTreeNode.h" #include "SimplePathNode.h" #include "StateNode.h" #include "StateMachine.h" #include "PathFinding.h" StateMachine::StateMachine() { } StateMachine::~StateMachine() { for (map<int, StateNode*>::iterator i = states.begin(); i != states.end(); ++i) { delete i->second; } states.clear(); } void StateMachine::AddState(int id, string description, bool is_stable) { assert(states.find(id) == states.end() && "You're trying to add the same state twice!"); assert(path.size() == 0 && "A current state has already been set for this state machine!"); StateNode *node = new StateNode(id, is_stable, description); states[id] = node; } void StateMachine::SetInitialState(int id) { assert(path.size() == 0 && "you can set the initial state only once!"); assert(states.find(id) != states.end() && "you are trying to set a non-existing state as initial state!"); path.push_front(states[id]); } void StateMachine::ConnectStateTo(int source_state_id, int target_state_id) { assert(states.find(source_state_id) != states.end() && states.find(target_state_id) != states.end() && "one or both of the states you're trying to connect does not exist!"); states[source_state_id]->ConnectTo(states[target_state_id]); } string StateMachine::GetStateDescription() { assert(path.size() > 0 && "State Machine does not know initial state!"); return path.front()->GetDescription(); } int StateMachine::GetState() { assert(path.size() > 0 && "State Machine does not know initial state!"); return path.front()->GetId(); } int StateMachine::GetStateAndAdvance() { assert(path.size() > 0 && "State Machine does not know initial state!"); int currentstate = path.front()->GetId(); AdvanceStateSecure(); return currentstate; } int StateMachine::GetTargetState() { assert(path.size() > 0 && "State Machine does not know initial state"); return path.back()->GetId(); } bool StateMachine::IsStable() { assert(path.size() > 0 && "State Machine does not have current state (forgot to set initial state?"); return path.front()->IsStable(); } int StateMachine::AdvanceState() { assert(path.size() > 0 && "State Machine does not know initial state!"); if (path.size() > 1) { //the current state is not the target state, advance the current state by one step. path.pop_front(); statechanged = true; } return path.front()->GetId(); } int StateMachine::AdvanceStateSecure() { assert(path.size() > 0 && "State Machine does not know initial state!"); //intermediate states are considered save to skip if they lead to another intermedite state, //but not if they lead to a stable state. if (isStateSaveToSkip()) { path.pop_front(); statechanged = true; } return path.front()->GetId(); } void StateMachine::SetTargetState(int target_id) { assert(path.size() > 0 && "State Machine does not know initial state!"); assert(states.find(target_id) != states.end() && "You're trying to target a state that doesn't exist!"); StateNode *targetstate = states[target_id]; stack<int> pathids; //used to store the path found by the algorithm bool pathfindingsuccess = PathFinding::BreadthFirst(path.front(), targetstate, pathids); assert(pathfindingsuccess); //now recreate the path from the ids returned in pathids path.clear(); while (pathids.size() > 0) { path.push_back(states[pathids.top()]); pathids.pop(); } } bool StateMachine::StateChanged() { assert(path.size() > 0 && "No initial state defined!"); if (statechanged) { statechanged = false; return true; } return false; } bool StateMachine::StateReached() { assert(path.size() > 0 && "No initial state defined!"); if (path.size() == 1) { return true; } return false; } bool StateMachine::isStateSaveToSkip() { //first, check if the current state is the desired state. //if it is, we can't skip it under any circumstances if (path.size() > 1) { //intermediate states are considered save to skip if they lead to another intermedite state, //but not if they lead to a stable state. if (!path.front()->IsStable() && !path[1]->IsStable()) { return true; } //stable states lying on the path are always save to skip if (path.front()->IsStable()) { return true; } } return false; }
e3daca3b9e7846abb23f47925c4214232860dd9e
cefd6c17774b5c94240d57adccef57d9bba4a2e9
/WebKit/Tools/TestWebKitAPI/Tests/WebKit2/DidAssociateFormControls_Bundle.cpp
fd373d28259eed00da22406af07abd4b9f2be8cb
[ "BSL-1.0" ]
permissive
adzhou/oragle
9c054c25b24ff0a65cb9639bafd02aac2bcdce8b
5442d418b87d0da161429ffa5cb83777e9b38e4d
refs/heads/master
2022-11-01T05:04:59.368831
2014-03-12T15:50:08
2014-03-12T15:50:08
17,238,063
0
1
BSL-1.0
2022-10-18T04:23:53
2014-02-27T05:39:44
C++
UTF-8
C++
false
false
3,189
cpp
DidAssociateFormControls_Bundle.cpp
/* * Copyright (C) 2013 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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 "config.h" #include "InjectedBundleTest.h" #include "PlatformUtilities.h" #include <WebKit2/WKBundle.h> #include <WebKit2/WKBundlePage.h> namespace TestWebKitAPI { class DidAssociateFormControlsTest : public InjectedBundleTest { public: DidAssociateFormControlsTest(const std::string& identifier); virtual void didCreatePage(WKBundleRef, WKBundlePageRef) override; }; static InjectedBundleTest::Register<DidAssociateFormControlsTest> registrar("DidAssociateFormControlsTest"); static bool shouldNotifyOnFormChanges(WKBundlePageRef, const void*) { return true; } static void didAssociateFormControls(WKBundlePageRef page, WKArrayRef elementHandles, const void*) { WKRetainPtr<WKMutableDictionaryRef> messageBody = adoptWK(WKMutableDictionaryCreate()); WKDictionarySetItem(messageBody.get(), Util::toWK("Page").get(), page); WKRetainPtr<WKUInt64Ref> numberOfElements = adoptWK(WKUInt64Create(WKArrayGetSize(elementHandles))); WKDictionarySetItem(messageBody.get(), Util::toWK("NumberOfControls").get(), numberOfElements.get()); WKBundlePostMessage(InjectedBundleController::shared().bundle(), Util::toWK("DidReceiveDidAssociateFormControls").get(), messageBody.get()); } DidAssociateFormControlsTest::DidAssociateFormControlsTest(const std::string& identifier) : InjectedBundleTest(identifier) { } void DidAssociateFormControlsTest::didCreatePage(WKBundleRef bundle, WKBundlePageRef page) { WKBundlePageFormClientV2 formClient; memset(&formClient, 0, sizeof(formClient)); formClient.base.version = 2; formClient.base.clientInfo = this; formClient.shouldNotifyOnFormChanges = shouldNotifyOnFormChanges; formClient.didAssociateFormControls = didAssociateFormControls; WKBundlePageSetFormClient(page, &formClient.base); } } // namespace TestWebKitAPI
802fb5a2ff642665c438f42051f4eb900fe28040
d09945668f19bb4bc17087c0cb8ccbab2b2dd688
/yuki/0001-1000/501-600/515.cpp
0f02239899289a0679851f13c43fea36634eeb89
[]
no_license
kmjp/procon
27270f605f3ae5d80fbdb28708318a6557273a57
8083028ece4be1460150aa3f0e69bdb57e510b53
refs/heads/master
2023-09-04T11:01:09.452170
2023-09-03T15:25:21
2023-09-03T15:25:21
30,825,508
23
2
null
2023-08-18T14:02:07
2015-02-15T11:25:23
C++
UTF-8
C++
false
false
1,504
cpp
515.cpp
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- ll N; string S[101010]; pair<string,int> P[101010]; int ID[101010]; ll M,X,D; int com[101010][20]; void solve() { int i,j,k,l,r,x,y; string s; cin>>N; FOR(i,N) { cin>>S[i]; P[i]={S[i],i}; } sort(P,P+N); FOR(i,N) ID[P[i].second]=i; FOR(i,N-1) { x=P[i].second; y=P[i+1].second; FOR(r,min(S[x].size(),S[y].size())) if(S[x][r]!=S[y][r]) break; com[i][0]=r; } for(x=1;x<=19;x++) FOR(i,N-1) if(i+(1<<(x-1))<N) com[i][x]=min(com[i][x-1],com[i+(1<<(x-1))][x-1]); ll ret=0; cin>>M>>X>>D; for(int k=1;k<=M;k++) { x=X/(N-1); y=X%(N-1); if(x>y) swap(x,y); else y++; X = (X+D) % (N*(N-1)); x=ID[x]; y=ID[y]; if(x>y) swap(x,y); r=0; while(1<<(1+r)<=y-x) r++; ret += min(com[x][r],com[y-(1<<r)][r]); } cout<<ret<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }