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
51574217e445f9efdd5ed60f74b0ea514de28b66
8e083ee9ef24927036fe2a56dc89e5bd88716fe1
/command.cc
7a8dcc0a8aba7b436f793180c4bca552c6f4e2be
[ "BSD-3-Clause" ]
permissive
Kryndex/moterm
3eab87a23c492332c93eb6c2ce784ff625cb82e5
f0c424aefcfbce9f8ea9282bf64ac36cf7ec525e
refs/heads/master
2021-09-03T01:48:04.756550
2017-11-02T15:55:43
2017-11-02T15:55:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,627
cc
command.cc
// Copyright 2016 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "topaz/app/moterm/command.h" #include <unistd.h> #include <zircon/status.h> #include "lib/fsl/tasks/message_loop.h" #include "lib/fxl/logging.h" namespace moterm { namespace { zx_status_t AddRedirectedSocket( std::vector<fsl::StartupHandle>* startup_handles, int startup_fd, zx::socket* out_socket) { fsl::StartupHandle startup_handle; zx_status_t status = fsl::CreateRedirectedSocket(startup_fd, out_socket, &startup_handle); if (status != ZX_OK) return status; startup_handles->push_back(std::move(startup_handle)); return ZX_OK; } std::vector<const char*> GetArgv(const std::vector<std::string>& command) { std::vector<const char*> argv; argv.reserve(command.size()); for (const auto& arg : command) argv.push_back(arg.c_str()); return argv; } } // namespace Command::Command() = default; bool Command::Start(std::vector<std::string> command, std::vector<fsl::StartupHandle> startup_handles, ReceiveCallback receive_callback, fxl::Closure termination_callback) { FXL_DCHECK(!command.empty()); zx_status_t status; if ((status = AddRedirectedSocket(&startup_handles, STDIN_FILENO, &stdin_))) { FXL_LOG(ERROR) << "Failed to create stdin pipe: status=" << status; return false; } if ((status = AddRedirectedSocket(&startup_handles, STDOUT_FILENO, &stdout_))) { FXL_LOG(ERROR) << "Failed to create stdout pipe: status=" << status; return false; } if ((status = AddRedirectedSocket(&startup_handles, STDERR_FILENO, &stderr_))) { FXL_LOG(ERROR) << "Failed to create stderr pipe: status=" << status; return false; } std::vector<uint32_t> ids; std::vector<zx_handle_t> handles; for (const auto& startup_handle : startup_handles) { ids.push_back(startup_handle.id); handles.push_back(startup_handle.handle.get()); } launchpad_t* lp; launchpad_create(0, command[0].c_str(), &lp); launchpad_clone(lp, LP_CLONE_ALL & ~LP_CLONE_FDIO_STDIO); launchpad_set_args(lp, command.size(), GetArgv(command).data()); launchpad_add_handles(lp, ids.size(), handles.data(), ids.data()); launchpad_load_from_file(lp, command[0].c_str()); zx_handle_t proc; const char* errmsg; status = launchpad_go(lp, &proc, &errmsg); if (status != ZX_OK) { FXL_LOG(ERROR) << "Cannot run executable " << command[0] << " due to error " << status << " (" << zx_status_get_string(status) << "): " << errmsg; return false; } process_.reset(proc); termination_callback_ = std::move(termination_callback); receive_callback_ = std::move(receive_callback); termination_waiter_ = std::make_unique<async::AutoWait>(fsl::MessageLoop::GetCurrent()->async(), process_.get(), ZX_PROCESS_TERMINATED); termination_waiter_->set_handler(std::bind( &Command::OnProcessTerminated, this, process_.get(), std::placeholders::_1, std::placeholders::_2, std::placeholders::_3)); termination_waiter_->Begin(); stdout_waiter_ = std::make_unique<async::AutoWait>(fsl::MessageLoop::GetCurrent()->async(), stdout_.get(), ZX_SOCKET_READABLE); stdout_waiter_->set_handler(std::bind( &Command::OnSocketReadable, this, &stdout_, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3)); stdout_waiter_->Begin(); stderr_waiter_ = std::make_unique<async::AutoWait>(fsl::MessageLoop::GetCurrent()->async(), stderr_.get(), ZX_SOCKET_READABLE); stderr_waiter_->set_handler(std::bind( &Command::OnSocketReadable, this, &stderr_, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3)); stderr_waiter_->Begin(); return true; } async_wait_result_t Command::OnProcessTerminated( zx_handle_t process_handle, async_t*, zx_status_t status, const zx_packet_signal* signal) { if (status != ZX_OK) { FXL_LOG(ERROR) << "Command::OnProcessTerminated received an error status code: " << status; return ASYNC_WAIT_FINISHED; } zx_signals_t pending = signal->observed; FXL_DCHECK(pending & ZX_PROCESS_TERMINATED); FXL_DCHECK(process_handle == process_.get()); termination_callback_(); termination_waiter_.reset(); return ASYNC_WAIT_FINISHED; } async_wait_result_t Command::OnSocketReadable(zx::socket* socket, async_t*, zx_status_t status, const zx_packet_signal* signal) { if (status != ZX_OK) { FXL_LOG(ERROR) << "Command::OnSocketReadable received an error status code: " << status; return ASYNC_WAIT_FINISHED; } zx_signals_t pending = signal->observed; FXL_DCHECK(pending & ZX_SOCKET_READABLE); char buffer[2048]; size_t len; if (socket->read(0, buffer, sizeof(buffer), &len) != ZX_OK) { FXL_LOG(ERROR) << "Command::OnSocketReadable error reading from socket."; return ASYNC_WAIT_FINISHED; } receive_callback_(buffer, len); return ASYNC_WAIT_AGAIN; } void Command::SendData(const void* bytes, size_t num_bytes) { size_t len; if (stdin_.write(0, bytes, num_bytes, &len) != ZX_OK) { // TODO: Deal with the socket being full. FXL_LOG(ERROR) << "Failed to send"; } } } // namespace moterm
fc59c539e1455acd79a4e09cd25ae83514b1d641
8e52488259593cbaf6fcd3428cd62f30b33044b2
/clients/lifetime/instrument.cc
e6464ccfeca6171d524ee5d3dce678fd9339ebfd
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
BwRy/granary
04ca9e22b7383029ac9e999995533e62b836bdae
f9ac2b6af0864f420b93917dc21a38041905b3aa
refs/heads/master
2021-08-14T15:17:54.231599
2017-11-16T03:22:55
2017-11-16T03:22:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,997
cc
instrument.cc
/* Copyright 2014 Peter Goodman, all rights reserved. */ #include "clients/lifetime/metadata.h" #include "clients/lifetime/instrument.h" using namespace granary; namespace client { // A function invoked on every memory read of a watched address `addr`. void on_read(uintptr_t addr, unsigned long num_bytes) { auto obj_meta = wp::descriptor_of(addr); auto ds_meta = obj_meta->data_structure; auto byte_offset_in_struct = addr - obj_meta->base_addr; granary::printf( "Reading %d bytes from address %lx, %u bytes into struct of size %u\n", num_bytes, addr, byte_offset_in_struct, ds_meta->num_bytes); // TODO(akshay): // 1) Update read counter for the associated bytes. // 2) Determine the value being read. This will required using // the `unwatched_addr` function on `addr`, then casting it to an // pointer to an integral type whose size matches `num_bytes`, de- // referencing the pointer (to read the data). // 3) Store the value being read into the `ds_meta` somehow. // a) We might want to store some number of values and the number of // times we saw that value. If the number of distinct values seen // exceeds some small threshold, then treat the field as non- // constant. } // A function invoked on every memory write to a watched address `addr`. void on_write(uintptr_t addr, unsigned long num_bytes) { auto obj_meta = wp::descriptor_of(addr); auto ds_meta = obj_meta->data_structure; auto byte_offset_in_struct = addr - obj_meta->base_addr; granary::printf( "Writing %d bytes to address %lx, %u bytes into struct of size %u\n", num_bytes, addr, byte_offset_in_struct, ds_meta->num_bytes); // TODO(akshay): Similar to above, but for writes. For writes we don't care // about the value being written, because specializing on writes // is unlikely to lead very far at a large scale. } // Versions of the above functions that are safe to call from within // instrumented code. app_pc on_read_func = nullptr; app_pc on_write_func = nullptr; // Initialize this client / tool. This creates the safe/clean-callable versions // of the `on_read` and `on_write` callback functions. void init(void) { cpu_state_handle cpu; IF_TEST( cpu->in_granary = false; ) cpu.free_transient_allocators(); on_read_func = generate_clean_callable_address(on_read); cpu.free_transient_allocators(); on_write_func = generate_clean_callable_address(on_write); } // Inject a function call to `on_read` before every memory read of a // watched address. DEFINE_READ_VISITOR(lifetime, { insert_clean_call_after(ls, label, on_read_func, op, (unsigned long) size); }) // Inject a function call to `on_write` before every memory write to a // watched address. DEFINE_WRITE_VISITOR(lifetime, { insert_clean_call_after(ls, label, on_write_func, op, (unsigned long) size); }) DEFINE_INTERRUPT_VISITOR(lifetime, {}) } // namespace client
bba5b6c741c621621cfe1a9b059ceb004027d63b
3ffbee351afb5b85770ddb7128357a19f0ca06cf
/watanabe-yuya/output-format/main.cpp
c5064ac28bbe375005e066cd7c9237729d5b964e
[]
no_license
hasipon/icfpc2016
4519c24a7e4acab294f327ab55b852621d00177a
5016e5bc713a4832ad26a773bf933f27627c2f18
refs/heads/master
2020-12-11T03:34:31.010461
2016-08-08T08:53:01
2016-08-08T08:53:01
64,935,437
1
0
null
null
null
null
UTF-8
C++
false
false
2,065
cpp
main.cpp
#include <bits/stdc++.h> #define each(i, c) for (auto& i : c) #define unless(cond) if (!(cond)) using namespace std; typedef long long int lli; typedef unsigned long long ull; typedef complex<double> point; template<typename P, typename Q> ostream& operator << (ostream& os, pair<P, Q> p) { os << "(" << p.first << "," << p.second << ")"; return os; } struct P { string x, y; int ID; }; struct L : pair<P, P> {}; struct Sawaput { vector<P> ps; vector<vector<int>> pid; void init(istream& is) { int n; is >> n; ps.resize(n); for (size_t i = 0; i < ps.size(); ++i) { string s; is >> s >> ps[i].ID; replace(s.begin(), s.end(), ',', ' '); stringstream ss(s); ss >> ps[i].x >> ps[i].y; } int m; is >> m; pid.resize(m); for (int i = 0; i < m; ++i) { int x; is >> x; for (int j = 0; j < x; ++j) { int y; is >> y; pid[i].push_back(y); } } return ; } }; struct Hasiput { vector<P> ps; vector<vector<int>> pol; void init(istream& is) { int n; is >> n; ps.resize(n); for (size_t i = 0; i < ps.size(); ++i) { string s; is >> s; replace(s.begin(), s.end(), ',', ' '); stringstream ss(s); ss >> ps[i].x >> ps[i].y; ps[i].ID = i; } int m; is >> m; pol.resize(m); string s; getline(is, s); for (int i = 0; i < m; ++i) { getline(is, s); istringstream iss(s); for (int z; iss >> z; pol[i].push_back(z)) ; } } P& operator [] (int idx) { return ps[idx]; } }; int main(int argc, char *argv[]) { Hasiput h; Sawaput s; h.init(cin); s.init(cin); // cout << s.ps.size() << endl; each (i, s.ps) { cout << i.x << ',' << i.y << endl; } cout << s.pid.size() << endl; each (i, s.pid) { cout << i.size() ; each (j, i) cout << ' ' << j; cout << endl; } cout << s.ps.size() << endl; each (i, s.ps) { cout << h[i.ID].x << ',' << h[i.ID].y << endl; } return 0; }
6d2a40bd24a1107a154920881d5a66472b7341d0
53384e9a9a179c669838d4d037c2afa619eb9934
/read-env.cpp
66761082680300f8cf7d0eff51d27ac4b1460d65
[ "Apache-2.0" ]
permissive
DAarno/push-env
7819a2c73715ebb43e91df0e443b7a6b5b11ac60
6caaa0a7ce934f2c2e76d2c55822eb10f9c86b68
refs/heads/master
2022-12-17T19:31:24.207790
2020-09-26T11:28:13
2020-09-26T11:28:13
292,228,329
0
0
null
null
null
null
UTF-8
C++
false
false
1,899
cpp
read-env.cpp
/* Copyright 2020 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 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 "read-env.h" #include <algorithm> #include <Arduino_MKRENV.h> EnvData ReadEnv() { const int NUM_READS = 10; const int DELAY_MS = 1000 / NUM_READS; float temperature[NUM_READS]; float humidity[NUM_READS]; float pressure[NUM_READS]; float illuminance[NUM_READS]; float uva[NUM_READS]; float uvb[NUM_READS]; float uvIndex[NUM_READS]; for (int i = 0; i < NUM_READS; i++) { temperature[i] = ENV.readTemperature(); humidity[i] = ENV.readHumidity(); pressure[i] = ENV.readPressure(); illuminance[i] = ENV.readIlluminance(); uva[i] = ENV.readUVA(); uvb[i] = ENV.readUVB(); uvIndex[i] = ENV.readUVIndex(); delay(DELAY_MS); } std::sort(temperature, temperature + NUM_READS); std::sort(humidity, humidity + NUM_READS); std::sort(pressure, pressure + NUM_READS); std::sort(illuminance, illuminance + NUM_READS); std::sort(uva, uva + NUM_READS); std::sort(uvb, uvb + NUM_READS); std::sort(uvIndex, uvIndex + NUM_READS); EnvData d; int medianIndex = NUM_READS / 2; d.temperature = temperature[medianIndex]; d.humidity = humidity[medianIndex]; d.pressure = pressure[medianIndex]; d.illuminance = illuminance[medianIndex]; d.uva = uva[medianIndex]; d.uvb = uvb[medianIndex]; d.uvIndex = uvIndex[medianIndex]; return d; }
a97828993a12b1a760e69e23c184326d7a993b24
b44e01223d86cf03976ed73a76a1f6d4b869344e
/lab4/part3/part2/main.cpp
8f3ee54020dec760b7ade0307a54c0dcf94fb062
[]
no_license
mnelso12/CSE20212
65aece6b4bc16ff97a5659865758ec2cd1e72ee3
1399b5c400bd5d8a8a8ea16e1ddd9f7452699194
refs/heads/master
2021-01-10T06:05:40.730693
2015-12-20T18:10:47
2015-12-20T18:10:47
48,331,847
0
0
null
null
null
null
UTF-8
C++
false
false
7,108
cpp
main.cpp
// main.cpp // Madelyn Nelson, CSE20212 Lab4, Blackjack #include <iostream> #include <cstdlib> #include "blackjack.h" #include <deque> #include <algorithm> // random_shuffle #include <ctime> // srand using namespace std; int main() { char gameAgain = 'y'; int playerWins = 0, dealerWins = 0; // keeps track of how many wins int playerMoney = 50; // player starts with $50 cout << "******************************" << endl; cout << "Player begins with balance of $50." << endl; while (gameAgain == 'y') { CardDeck deck; // default creates real deck deck.printMenu(); deck.shuffle(); // shuffles deck int count=0; // keeps track of which card we pull from shuffled deck // deal // dealer gets one card CardDeck dealerDeck(2); // creates EMPTY deck, different from other parts of lab dealerDeck.addCard(deck.getCard(count)); // player gets two cards CardDeck playerDeck(2); // similarly, this starts as EMPTY playerDeck.addCard(deck.getCard(count)); count++; playerDeck.addCard(deck.getCard(count)); count++; // print current decks and sums cout << "Your deck: " << endl; cout << playerDeck; // overloaded operator cout << "Sum: " << playerDeck.sumDeck() << endl; // prints sum of player's deck cout << endl << "Dealer's deck: " << endl; cout << dealerDeck; // overloaded operator cout << "Sum: " << dealerDeck.sumDeck() << endl; // prints sum of dealer's deck char userInput; while (1) { if (playerDeck.sumDeck() == 21 ) { // checks if player's original deck is 21 dealerDeck.addCard(count); // sees what dealer's next card is count++; cout << endl; cout << "Dealer's final deck: "; cout << dealerDeck; cout << "Dealer's final sum: " << dealerDeck.sumDeck() << endl; cout << endl; if (dealerDeck.sumDeck() == 21 ) { // if dealer's cards also = 21 cout << "******************************" << endl; cout << "Push. Both have 21. Dealer wins" << endl; // is a push cout << "******************************" << endl; dealerWins++; // a push means the dealer wins according to casino rules playerMoney -= 5; break; } else { cout << "******************************" << endl; cout << "BLACKJACK! You win!" << endl; // if the dealer doesn't have 21 cout << "******************************" << endl; playerWins++; playerMoney += 5; break; } } else if (playerDeck.sumDeck() > 21) { // checks if original player deck is >21 cout << "You lose. Player sum > 21." << endl; dealerWins++; playerMoney -= 5; break; } cout << endl << "Hit or Stand? (enter h or s, respectively): "; cin >> userInput; cout << endl; if (userInput == 'h' || userInput == 'H') { // adds another card to player's deck playerDeck.addCard(deck.getCard(count)); count++; } else if (userInput == 's' || userInput == 'S') { do { dealerDeck.addCard(deck.getCard(count)); // dealer takes cards until above 17 count++; } while (dealerDeck.sumDeck() < 17); cout << "******************************" << endl; cout << "Dealer's final deck: "; cout << dealerDeck; cout << "Dealer's final sum: " << dealerDeck.sumDeck() << endl << endl; if (dealerDeck.sumDeck() > 21 ) { cout << "Player wins. Dealer exceeded 21." << endl; playerWins++; playerMoney += 5; } else if (dealerDeck.sumDeck() > playerDeck.sumDeck()){ cout << "Dealer wins. Dealer sum > player sum." << endl; dealerWins++; playerMoney -= 5; } else if (dealerDeck.sumDeck() < playerDeck.sumDeck()){ cout << "Player wins. Player sum > dealer sum." << endl; playerWins++; playerMoney += 5; } else { // tie cout << "Push. Keep your money. But dealer wins." << endl; dealerWins++; playerMoney -= 5; } cout << "******************************" << endl; break; } else if (userInput == 'q' || userInput == 'Q') { break; // quits game } else { cout << "Invalid input. Enter h or s, q to quit." << endl; } // print current decks and sums cout << endl << "====================" << endl; cout << "Your deck: " << endl; cout << playerDeck; // overloaded operator cout << "Sum: " << playerDeck.sumDeck() << endl; // prints sum of player's deck cout << endl << "Dealer's deck: " << endl; cout << dealerDeck; // overloaded operator cout << endl; // check for losing if (playerDeck.sumDeck() > 21) { cout << "******************************" << endl; cout << "You exceeded 21. You lose. Muahahahaha!!" << endl << endl; cout << "******************************" << endl; playerMoney -= 5; dealerWins++; break; } // adds new deck if running low if (count >= (52-15)) { // we're running low on cards in the deck for (int k=2; k<10; k++) { // cards 2 through 10 in new deck for (int j=0; j<3; j++) { deck.addCard(k); // pushes back 4 of them } } for (int j=0; j<4; j++) { deck.addCard(11); // pushes back four aces } for (int j=0; j<16; j++) { deck.addCard(10); // pushed back 16 tens } } } // displays total wins for both cout << endl << "Total player wins: " << playerWins << endl; cout << "Total dealer wins: " << dealerWins << endl; // displays player's $ balance after game cout << "Player balance: $" << playerMoney << endl; cout << "Do you want to play again? (y/n): "; cin >> gameAgain; // if user inputs y, plays again // if user inputs anything else the game stops } return 0; }
c3fb7907b900960ea298a2b79e5b334970035f0d
0e48d5a489be77fd9eb6265fca76f039148a0f38
/main.cpp
089d17e648cf4f9e1bb29d199813592ecfc779b1
[]
no_license
TomHacker/Depth-testing
a3b775a6a73a2590379adb1638ec3118eda4cc02
a20d512b4546466efc800ab69831c1b59a9ad703
refs/heads/master
2022-04-16T20:13:35.922783
2020-04-15T02:57:39
2020-04-15T02:57:39
null
0
0
null
null
null
null
GB18030
C++
false
false
12,154
cpp
main.cpp
#define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" #include <iostream> #include <vector> #include <map> #include <glad/glad.h> #include <GLFW/glfw3.h> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> #include "Shader.h" #include "Camera.h" void framebuffer_size_callback(GLFWwindow* window, int width, int height); void processInput(GLFWwindow* window); void mouse_callback(GLFWwindow* window, double xPos, double yPos); unsigned int LoadImageToGPU(const char* fileName); // settings const unsigned int SCR_WIDTH = 800; const unsigned int SCR_HEIGHT = 800; #pragma region Model Data float cubeVertices[] = { -0.5f, -0.5f, -0.5f, 0.0f, 0.0f, 0.5f, -0.5f, -0.5f, 1.0f, 0.0f, 0.5f, 0.5f, -0.5f, 1.0f, 1.0f, 0.5f, 0.5f, -0.5f, 1.0f, 1.0f, -0.5f, 0.5f, -0.5f, 0.0f, 1.0f, -0.5f, -0.5f, -0.5f, 0.0f, 0.0f, -0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 0.5f, -0.5f, 0.5f, 1.0f, 0.0f, 0.5f, 0.5f, 0.5f, 1.0f, 1.0f, 0.5f, 0.5f, 0.5f, 1.0f, 1.0f, -0.5f, 0.5f, 0.5f, 0.0f, 1.0f, -0.5f, -0.5f, 0.5f, 0.0f, 0.0f, -0.5f, 0.5f, 0.5f, 1.0f, 0.0f, -0.5f, 0.5f, -0.5f, 1.0f, 1.0f, -0.5f, -0.5f, -0.5f, 0.0f, 1.0f, -0.5f, -0.5f, -0.5f, 0.0f, 1.0f, -0.5f, -0.5f, 0.5f, 0.0f, 0.0f, -0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.5f, 0.5f, -0.5f, 1.0f, 1.0f, 0.5f, -0.5f, -0.5f, 0.0f, 1.0f, 0.5f, -0.5f, -0.5f, 0.0f, 1.0f, 0.5f, -0.5f, 0.5f, 0.0f, 0.0f, 0.5f, 0.5f, 0.5f, 1.0f, 0.0f, -0.5f, -0.5f, -0.5f, 0.0f, 1.0f, 0.5f, -0.5f, -0.5f, 1.0f, 1.0f, 0.5f, -0.5f, 0.5f, 1.0f, 0.0f, 0.5f, -0.5f, 0.5f, 1.0f, 0.0f, -0.5f, -0.5f, 0.5f, 0.0f, 0.0f, -0.5f, -0.5f, -0.5f, 0.0f, 1.0f, -0.5f, 0.5f, -0.5f, 0.0f, 1.0f, 0.5f, 0.5f, -0.5f, 1.0f, 1.0f, 0.5f, 0.5f, 0.5f, 1.0f, 0.0f, 0.5f, 0.5f, 0.5f, 1.0f, 0.0f, -0.5f, 0.5f, 0.5f, 0.0f, 0.0f, -0.5f, 0.5f, -0.5f, 0.0f, 1.0f }; float planeVertices[] = { 5.0f, -0.5f, 5.0f, 2.0f, 0.0f, -5.0f, -0.5f, 5.0f, 0.0f, 0.0f, -5.0f, -0.5f, -5.0f, 0.0f, 2.0f, 5.0f, -0.5f, 5.0f, 2.0f, 0.0f, -5.0f, -0.5f, -5.0f, 0.0f, 2.0f, 5.0f, -0.5f, -5.0f, 2.0f, 2.0f }; float transparentVertices[] = { 0.0f, 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f, 0.0f, 0.0f, 1.0f, 1.0f, -0.5f, 0.0f, 1.0f, 1.0f, 0.0f, 0.5f, 0.0f, 0.0f, 0.0f, 1.0f, -0.5f, 0.0f, 1.0f, 1.0f, 1.0f, 0.5f, 0.0f, 1.0f, 0.0f }; std::vector<glm::vec3> vegetation { glm::vec3(-1.5f, 0.0f, -0.48f), glm::vec3(1.5f, 0.0f, 0.51f), glm::vec3(0.0f, 0.0f, 0.7f), glm::vec3(-0.3f, 0.0f, -2.3f), glm::vec3(0.5f, 0.0f, -0.6f) }; float quadVertices[] = { -1.0f, 1.0f, 0.0f, 1.0f, -1.0f, -1.0f, 0.0f, 0.0f, 1.0f, -1.0f, 1.0f, 0.0f, -1.0f, 1.0f, 0.0f, 1.0f, 1.0f, -1.0f, 1.0f, 0.0f, 1.0f, 1.0f, 1.0f, 1.0f }; #pragma endregion #pragma region Camera Declare //初始化摄像机 Camera myCamera(glm::vec3(0, 0, 3.0f), glm::radians(0.0f), glm::radians(180.0f), glm::vec3(0, 1.0f, 0)); #pragma endregion #pragma region Input Declare float lastX, lastY; bool firstMouse = true; #pragma endregion int main(int argc, char* argv[]) { #pragma region Open a window //Glfw初始化 glfwInit(); glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); //glfw window creation GLFWwindow* window = glfwCreateWindow(SCR_WIDTH, SCR_HEIGHT, "LearnOpenGL", NULL, NULL); if (window == NULL) { std::cout << "Failed to create GLFW window" << std::endl; glfwTerminate(); return -1; } glfwMakeContextCurrent(window); glfwSetFramebufferSizeCallback(window, framebuffer_size_callback); glfwSetCursorPosCallback(window, mouse_callback); glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED); //glad: load all OpenGL function pointers if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress)) { std::cout << "Failed to initialize GLAD" << std::endl; return -1; } glEnable(GL_DEPTH_TEST); #pragma endregion #pragma region configure global opengl state glEnable(GL_DEPTH_TEST); #pragma endregion #pragma region Init shader Program Shader shader("depth_test.vert", "depth_test.frag"); Shader screenShader("framebuffers_screen.vert", "framebuffers_screen.frag"); #pragma endregion #pragma region Init and Load Models to VAO, VBO // cube VAO unsigned int cubeVAO, cubeVBO; glGenVertexArrays(1, &cubeVAO); glGenBuffers(1, &cubeVBO); glBindVertexArray(cubeVAO); glBindBuffer(GL_ARRAY_BUFFER, cubeVBO); glBufferData(GL_ARRAY_BUFFER, sizeof(cubeVertices), &cubeVertices, GL_STATIC_DRAW); glEnableVertexAttribArray(0); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)0); glEnableVertexAttribArray(1); glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)(3 * sizeof(float))); glBindVertexArray(0); // plane VAO unsigned int planeVAO, planeVBO; glGenVertexArrays(1, &planeVAO); glGenBuffers(1, &planeVBO); glBindVertexArray(planeVAO); glBindBuffer(GL_ARRAY_BUFFER, planeVBO); glBufferData(GL_ARRAY_BUFFER, sizeof(planeVertices), &planeVertices, GL_STATIC_DRAW); glEnableVertexAttribArray(0); glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)0); glEnableVertexAttribArray(1); glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 5 * sizeof(float), (void*)(3 * sizeof(float))); glBindVertexArray(0); // screen quad VAO unsigned int quadVAO, quadVBO; glGenVertexArrays(1, &quadVAO); glGenBuffers(1, &quadVBO); glBindVertexArray(quadVAO); glBindBuffer(GL_ARRAY_BUFFER, quadVBO); glBufferData(GL_ARRAY_BUFFER, sizeof(quadVertices), &quadVertices, GL_STATIC_DRAW); glEnableVertexAttribArray(0); glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof(float), (void*)0); glEnableVertexAttribArray(1); glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof(float), (void*)(2 * sizeof(float))); #pragma endregion #pragma region Init and Load Textures //在加载图片前进行图片反转处理 //stbi_set_flip_vertically_on_load(true); //创建、加载并生成纹理 unsigned int cubeTexture = LoadImageToGPU("wall.jpg"); unsigned int floorTexture = LoadImageToGPU("metal.png"); unsigned int transparentTexture = LoadImageToGPU("blend.png"); #pragma endregion #pragma region Prepare MVP matrices //空间变换代码 glm::mat4 modelMat; glm::mat4 viewMat; glm::mat4 projMat; projMat = glm::perspective(glm::radians(45.0f), 800.0f / 800.0f, 0.1f, 100.0f); #pragma endregion // framebuffer configuration unsigned int framebuffer; glGenFramebuffers(1, &framebuffer); glBindFramebuffer(GL_FRAMEBUFFER, framebuffer); // create a color attachment texture unsigned int textureColorbuffer; glGenTextures(1, &textureColorbuffer); glBindTexture(GL_TEXTURE_2D, textureColorbuffer); glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, SCR_WIDTH, SCR_HEIGHT, 0, GL_RGB, GL_UNSIGNED_BYTE, NULL); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, textureColorbuffer, 0); // create a renderbuffer object for depth and stencil attachment (we won't be sampling these) unsigned int rbo; glGenRenderbuffers(1, &rbo); glBindRenderbuffer(GL_RENDERBUFFER, rbo); glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, SCR_WIDTH, SCR_HEIGHT); glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, rbo); // now that we actually created the framebuffer and added all attachments we want to check if it is actually complete now if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) std::cout << "ERROR::FRAMEBUFFER:: Framebuffer is not complete!" << std::endl; glBindFramebuffer(GL_FRAMEBUFFER, 0); #pragma region while (!glfwWindowShouldClose(window)) { // 输入 processInput(window); // 绑定帧缓冲区,开启深度测试 glBindFramebuffer(GL_FRAMEBUFFER, framebuffer); glEnable(GL_DEPTH_TEST); // 渲染 glClearColor(0.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // 配置空间矩阵 modelMat = glm::mat4(1.0f); viewMat = myCamera.GetViewMatrix(); // 配置着色器的空间矩阵 shader.use(); shader.setMat4("view", viewMat); shader.setMat4("projection", projMat); // cubes glBindVertexArray(cubeVAO); glActiveTexture(GL_TEXTURE0); glBindTexture(GL_TEXTURE_2D, cubeTexture); modelMat = glm::translate(modelMat, glm::vec3(-1.0f, 0.1f, -1.0f)); shader.setMat4("model", modelMat); glDrawArrays(GL_TRIANGLES, 0, 36); modelMat = glm::mat4(1.0f); modelMat = glm::translate(modelMat, glm::vec3(2.0f, 0.1f, 0.0f)); shader.setMat4("model", modelMat); glDrawArrays(GL_TRIANGLES, 0, 36); // floor glBindVertexArray(planeVAO); glBindTexture(GL_TEXTURE_2D, floorTexture); shader.setMat4("model", glm::mat4(1.0f)); glDrawArrays(GL_TRIANGLES, 0, 6); glBindVertexArray(0); // 现在绑定回默认的framebuffer,并使用附加的framebuffer颜色纹理绘制一个四平面 glBindFramebuffer(GL_FRAMEBUFFER, 0); glDisable(GL_DEPTH_TEST); // clear all relevant buffers glClearColor(1.0f, 1.0f, 1.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); screenShader.use(); glBindVertexArray(quadVAO); glBindTexture(GL_TEXTURE_2D, textureColorbuffer); glDrawArrays(GL_TRIANGLES, 0, 6); // 检查并调用事件,交换缓冲,为下一次做准备 glfwSwapBuffers(window); glfwPollEvents(); myCamera.UpdateCameraPos(); } //清空VAO,cubeVBO glDeleteVertexArrays(1, &cubeVAO); glDeleteBuffers(1, &cubeVBO); glDeleteVertexArrays(1, &planeVAO); glDeleteBuffers(1, &planeVBO); glDeleteVertexArrays(1, &quadVAO); glDeleteBuffers(1, &quadVBO); //退出程序 glfwTerminate(); return 0; } void framebuffer_size_callback(GLFWwindow* window, int width, int height) { glViewport(0, 0, width, height); } void processInput(GLFWwindow* window) { float speed = 0.1f;//总体速度 if (glfwGetKey(window, GLFW_KEY_ESCAPE) == GLFW_PRESS)//是否按下了返回键 glfwSetWindowShouldClose(window, true); //前后移动 if (glfwGetKey(window, GLFW_KEY_W) == GLFW_PRESS) myCamera.speedZ = speed; else if (glfwGetKey(window, GLFW_KEY_S) == GLFW_PRESS) myCamera.speedZ = -speed; else myCamera.speedZ = 0; //左右移动 if (glfwGetKey(window, GLFW_KEY_A) == GLFW_PRESS) myCamera.speedX = -speed; else if (glfwGetKey(window, GLFW_KEY_D) == GLFW_PRESS) myCamera.speedX = speed; else myCamera.speedX = 0; //上下移动 if (glfwGetKey(window, GLFW_KEY_SPACE) == GLFW_PRESS) myCamera.speedY = speed; else if (glfwGetKey(window, GLFW_KEY_B) == GLFW_PRESS) myCamera.speedY = -speed; else myCamera.speedY = 0; } void mouse_callback(GLFWwindow* window, double xPos, double yPos) { if (firstMouse == true) { lastX = xPos; lastY = yPos; firstMouse = false; } float deltaX, deltaY; deltaX = xPos - lastX; deltaY = yPos - lastY; lastX = xPos; lastY = yPos; myCamera.ProcessMouseMovement(deltaX, deltaY); //std::cout << deltaX << " " << deltaY << std::endl; } unsigned int LoadImageToGPU(const char* fileName) { unsigned int textureID; glGenTextures(1, &textureID); int width, height, nrComponents; unsigned char* data = stbi_load(fileName, &width, &height, &nrComponents, 0); if (data) { GLenum format; if (nrComponents == 1) format = GL_RED; else if (nrComponents == 3) format = GL_RGB; else if (nrComponents == 4) format = GL_RGBA; glBindTexture(GL_TEXTURE_2D, textureID); glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, GL_UNSIGNED_BYTE, data); glGenerateMipmap(GL_TEXTURE_2D); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); stbi_image_free(data); } else { std::cout << "Texture failed to load at path: " << fileName << std::endl; stbi_image_free(data); } return textureID; }
37e175a7d687e3c3fb4fad00303e0e504a364814
39d65fa98e62751b2fe68133b7a91e6b76049499
/3_참고자료_프로젝트실적_개인/3_3_모션인식을 이용한 가위바위보 로봇 제작/3_3_4_script of arduino (java).ino
c53f2fb50a4788cb146146435171b1ae0ed13548
[]
no_license
cauosg/projects_OSG
386bc0697882677079fe0b12d253a21930398251
8bfde43d00113f221917fd8b141e3ad80f461974
refs/heads/master
2021-03-29T03:57:30.781565
2020-04-13T12:29:33
2020-04-13T12:29:33
247,917,983
0
0
null
null
null
null
UTF-8
C++
false
false
741
ino
3_3_4_script of arduino (java).ino
#include <Servo.h> Servo finger1; Servo finger2; Servo finger345; int amin = 180; int amax = 0; void setup() { Serial.begin(9600); finger1.attach(6); finger2.attach(9); finger345.attach(3); finger1.write(amax); finger2.write(amin); finger345.write(amin); // put your setup code here, to run once: } void loop() { //if(Serial.available()){ int inputbyte = Serial.read(); if (inputbyte == 'r') { finger1.write(amin); finger2.write(amax); finger345.write(amax); } if (inputbyte == 's') { finger1.write(amax); finger2.write(amin); finger345.write(amax ); } if (inputbyte == 'p') { finger1.write(amax); finger2.write(amin); finger345.write(amin); } }
d8100d6a73f34a961e9132f407fc489dc1eb57d2
888ff1ff4f76c61e0a2cff281f3fae2c9a4dcb7b
/jianzhioffer/66.cpp
ecac6111e8db061c9637548d8bd44c71ca2a944e
[]
no_license
sanjusss/leetcode-cpp
59e243fa41cd5a1e59fc1f0c6ec13161fae9a85b
8bdf45a26f343b221caaf5be9d052c9819f29258
refs/heads/master
2023-08-18T01:02:47.798498
2023-08-15T00:30:51
2023-08-15T00:30:51
179,413,256
0
0
null
null
null
null
UTF-8
C++
false
false
1,130
cpp
66.cpp
/* * @Author: sanjusss * @Date: 2021-08-28 09:49:28 * @LastEditors: sanjusss * @LastEditTime: 2021-08-28 10:00:30 * @FilePath: \jianzhioffer\66.cpp */ #include "leetcode.h" // class Solution { // public: // vector<int> constructArr(vector<int>& a) { // int n = a.size(); // vector<int> lefts(n + 1); // vector<int> rights(n + 1); // lefts[0] = 1; // rights[n] = 1; // for (int i = 0; i < n; ++i) { // lefts[i + 1] = lefts[i] * a[i]; // rights[n - 1 - i] = rights[n - i] * a[n - 1 - i]; // } // vector<int> ans(n); // for (int i = 0; i < n; ++i) { // ans[i] = lefts[i] * rights[i + 1]; // } // return ans; // } // }; class Solution { public: vector<int> constructArr(vector<int>& a) { int n = a.size(); vector<int> b(n, 1); for (int i = n - 2; i >= 0; --i) { b[i] = b[i + 1] * a[i + 1]; } int mul = 1; for (int i = 1; i < n; ++i) { mul *= a[i - 1]; b[i] *= mul; } return b; } };
c60fd88cc8813796bc3496f4c5dd9bac607a80c8
d331f551066c58414b7238e3e06ff1c2fba5565c
/FFT/fft_basic.cpp
b2ff3eed02ce70aa7d432bca32aabaf8fe5d5d64
[]
no_license
aasom143/coding
8820d1add1cc31bd9c590256cf05b0bc9634722d
607b9bc7f6665b4ab5902bc56aa97784acbf2f5e
refs/heads/master
2020-04-18T00:11:47.385530
2019-11-18T15:05:00
2019-11-18T15:05:00
167,067,121
3
1
null
null
null
null
UTF-8
C++
false
false
1,706
cpp
fft_basic.cpp
// https://codeforces.com/contest/1096/problem/G #include <bits/stdc++.h> using namespace std; #define mp make_pair #define pb push_back #define mod 1000000007 #define int long long int void fast(){ ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); } int N,K; int ok[10]; int mo=998244353; int modpow(int a, int n = mo-2) { int r=1; while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1; return r; } vector<int> fft(vector<int> v, bool rev=false) { int n=v.size(),i,j,m; for(i=0,j=1;j<n-1;j++) { for(int k=n>>1;k>(i^=k);k>>=1); if(i>j) swap(v[i],v[j]); } for(int m=2; m<=n; m*=2) { int wn=modpow(5,(mo-1)/m); if(rev) wn=modpow(wn); for(i=0;i<n;i+=m) { int w=1; for(int j1=i,j2=i+m/2;j2<i+m;j1++,j2++) { int t1=v[j1],t2=w*v[j2]%mo; v[j1]=t1+t2; v[j2]=t1+mo-t2; while(v[j1]>=mo) v[j1]-=mo; while(v[j2]>=mo) v[j2]-=mo; w=w*wn%mo; } } } if(rev) { int rv = modpow(n); for(int i=0;i<n;i++) v[i]=v[i]*rv%mo; } return v; } vector<int> MultPoly(vector<int> P,vector<int> Q,bool resize=false) { if(resize) { int maxind=0,pi=0,qi=0,i; int s=2; for(int i=0;i<P.size();i++) if(P[i]) pi=i; for(int i=0;i<Q.size();i++) if(Q[i]) qi=i; maxind=pi+qi+1; while(s*2<maxind) s*=2; P.resize(s*2);Q.resize(s*2); } P=fft(P), Q=fft(Q); for(int i=0;i<P.size();i++) P[i]=P[i]*Q[i]%mo; return fft(P,true); } main() { int i,j,k,l,r,x,y; string s; cin>>N>>K; vector<int> V(10); for(int i=0;i<K;i++) { cin>>x; V[x]=1; } x=N/2; vector<int> R(1,1); while(x) { if(x%2) R=MultPoly(R,V,true); x/=2; if(x) V=MultPoly(V,V,true); } int ret=0; for(int i=0;i<R.size();i++) ret+=R[i]*R[i]%mo; cout<<ret%mo<<endl; }
23a2f134b610ffa57b616019a8182d19809a8db8
46c981342e26e5bfc81fae77980eeb2b227c71b0
/src/widget.cpp
ae09d0ed59b2c3585ccfb30cf02cac807f51c7d5
[]
no_license
Sokario/sdlGUI
83e0add189bf6d08dc625b87411d756aeaaf99bf
7847ed4dbd0c7e14c2e542887da30feb9536b69c
refs/heads/master
2021-01-20T14:58:43.577287
2017-03-10T15:22:08
2017-03-10T15:22:08
82,787,784
0
0
null
null
null
null
UTF-8
C++
false
false
8,878
cpp
widget.cpp
// // Created by logout on 08/02/17. // #include "../include/widget.h" #include <iostream> Widget::Widget() { m_computer = new SDL_DisplayMode; m_renderer = NULL; setId(0); setWidth(0); setHeight(0); setName("NULL"); setPitch(0); setPosX(0); setPosY(0); setMouseX(0); setMouseY(0); setMoving(false); m_quitButton = false; setCallBackCode(0); } Widget::Widget(const char* name, SDL_DisplayMode* computer, SDL_Renderer* renderer, int posX, int posY, int id) { m_computer = new SDL_DisplayMode; m_renderer = NULL; assignDisplayMode(computer); assignRenderer(renderer); setId(id); setWidth(m_computer->w/4 - m_computer->w/16); setHeight(m_computer->h/64 + m_computer->h/128); setName(name); setPitch(m_computer->w/512); setPosX(posX); setPosY(posY); setMouseX(posX); setMouseY(posY); setMoving(false); m_quitButton = false; setCallBackCode(0); setWidgetRect(m_width + 2*m_pitch, m_height + 2*m_pitch, m_posX - m_pitch, m_posY - m_pitch); setTitleRect(m_width, m_height, m_pitch, m_pitch); setQuitRect(m_height/2 + m_height/8, m_height/2 + m_height/8, m_pitch + m_width - m_height/2 - m_height/8 - (m_height - (m_height/2 + m_height/8))/2, m_pitch + (m_height - (m_height/2 + m_height/8))/2); m_surfaceBack = SDL_CreateRGBSurface(0, m_width, m_height, 32, 0xff000000, 0x00ff0000, 0x0000ff00, 0x000000ff); m_textureBack = SDL_CreateTextureFromSurface(m_renderer, m_surfaceBack); m_surfaceQuit = SDL_CreateRGBSurface(0, m_width, m_height, 32, 0xff000000, 0x00ff0000, 0x0000ff00, 0x000000ff); m_textureQuit = SDL_CreateTextureFromSurface(m_renderer, m_surfaceQuit); m_surfaceName = SDL_CreateRGBSurface(0, m_width, m_height, 32, 0, 0, 0, 0); m_textureName = SDL_CreateTextureFromSurface(m_renderer, m_surfaceName); } void Widget::assignDisplayMode(SDL_DisplayMode* computer) { m_computer = computer; } SDL_DisplayMode* Widget::getDisplayMode() { return m_computer; } void Widget::assignRenderer(SDL_Renderer* renderer) { m_renderer = renderer; } SDL_Renderer* Widget::getRenderer() { return m_renderer; } void Widget::setId(int id) { m_id = id; } int Widget::getId() { return m_id; } Section* Widget::addSection(const char *name) { Section* section = new Section(m_computer, m_renderer, &m_title, name, (int) m_section.size()); m_section.emplace(section->getId(), section); return section; } bool Widget::delSection(Section *section) { } void Widget::setWidth(int width) { m_width = width; } int Widget::getWidth() { return m_width; } void Widget::setHeight(int height) { m_height = height; } int Widget::getHeight() { return m_height; } void Widget::setName(const char* name) { m_name = name; } const char* Widget::getName() { return m_name; } void Widget::setPitch(int pitch) { m_pitch = pitch; } int Widget::getPitch() { return m_pitch; } void Widget::setPosX(int posX) { m_posX = posX; } int Widget::getPosX() { return m_posX; } void Widget::setPosY(int posY) { m_posY = posY; } int Widget::getPosY() { return m_posY; } void Widget::setMouseX(int posX) { m_mouseX = posX; } int Widget::getMouseX() { return m_mouseX; } void Widget::setMouseY(int posY) { m_mouseY = posY; } int Widget::getMouseY() { return m_mouseY; } void Widget::setMoving(bool moving) { m_moving = moving; } bool Widget::getMoving() { return m_moving; } void Widget::setQuitButton(int x, int y) { m_quitButton = (x >= m_quit.x) && (x <= m_quit.x + m_quit.w) && (y >= m_quit.y) && (y <= m_quit.y + m_quit.h); } bool Widget::getQuitButton() { return m_quitButton; } void Widget::setCallBackCode(int error) { m_callback = error; } int Widget::getCallBackCode() { return m_callback; } void Widget::setWidgetRect(int width, int height, int posX, int posY) { m_widget.w = width; m_widget.h = height; m_widget.x = posX; m_widget.y = posY; } SDL_Rect* Widget::getWidgetRect() { return &m_widget; } void Widget::setTitleRect(int width, int height, int posX, int posY) { m_title.w = width; m_title.h = height; m_title.x = posX; m_title.y = posY; } SDL_Rect* Widget::getTitleRect() { return &m_title; } void Widget::setQuitRect(int width, int height, int posX, int posY) { m_quit.w = width; m_quit.h = height; m_quit.x = posX; m_quit.y = posY; } SDL_Rect* Widget::getQuitRect() { return &m_quit; } void Widget::drawDisplay() { SDL_RenderCopy(m_renderer, m_textureBack, NULL, &m_widget); SDL_RenderCopy(m_renderer, m_textureQuit, NULL, &m_rectQuit); SDL_RenderCopy(m_renderer, m_textureName, NULL, &m_rectName); } void Widget::updateDisplay() { SDL_FreeSurface(m_surfaceBack); m_surfaceBack = SDL_CreateRGBSurface(0, m_width + 2*m_pitch, m_height + 2*m_pitch, 32, 0xff000000, 0x00ff0000, 0x0000ff00, 0x000000ff); Uint8 value = 0; SDL_Rect m_shader; for (int i = 0; i < m_pitch; i++) { m_shader.w = m_widget.w - 2*i; m_shader.h = m_widget.h - 2*i; m_shader.x = i; m_shader.y = i; value += 120/m_pitch; SDL_FillRect(m_surfaceBack, &m_shader, SDL_MapRGBA(m_surfaceBack->format, 40, 40, 40, value)); } SDL_FillRect(m_surfaceBack, &m_title, SDL_MapRGBA(m_surfaceBack->format, 20, 80, 160, 255)); if (getQuitButton()) SDL_FillRect(m_surfaceBack, &m_quit, SDL_MapRGBA(m_surfaceBack->format, 255, 255, 255, 255)); for (int it = 0; it < m_section.size(); it++) { m_section[it]->drawDisplay(m_surfaceBack); } SDL_DestroyTexture(m_textureBack); m_textureBack = SDL_CreateTextureFromSurface(m_renderer, m_surfaceBack); m_rectQuit.w = m_quit.w/2; m_rectQuit.h = m_quit.h/2; m_rectQuit.x = m_widget.x + m_quit.x + m_quit.w/2 - m_rectQuit.w/2; m_rectQuit.y = m_widget.y + m_quit.y + m_quit.h/2 - m_rectQuit.h/2; SDL_FreeSurface(m_surfaceQuit); m_surfaceQuit = SDL_LoadBMP("../../resources/icon/close.bmp"); SDL_SetColorKey(m_surfaceQuit, SDL_TRUE, SDL_MapRGBA(m_surfaceQuit->format, 0, 255, 0, 0)); SDL_DestroyTexture(m_textureQuit); m_textureQuit = SDL_CreateTextureFromSurface(m_renderer, m_surfaceQuit); SDL_Color white = {255, 255, 255, 255}; m_rectName.w = m_title.w/64; m_rectName.h = m_title.h - m_title.h/4; m_rectName.x = m_widget.x + m_title.x + m_rectName.w; m_rectName.y = m_widget.y + m_title.y - m_rectName.h/16; TTF_Font* roboto = TTF_OpenFont("../../resources/Roboto-Regular.ttf", m_rectName.h); SDL_FreeSurface(m_surfaceName); m_surfaceName = TTF_RenderText_Blended(roboto, m_name, white); SDL_DestroyTexture(m_textureName); m_textureName = SDL_CreateTextureFromSurface(m_renderer, m_surfaceName); SDL_QueryTexture(m_textureName, NULL, NULL, &m_rectName.w, &m_rectName.h); TTF_CloseFont(roboto); } void Widget::updateWidget() { int height = m_title.h; std::cout << "---- " << getName() << ": Pitch = " << m_pitch << std::endl; for (int it = 0; it < m_section.size(); it++) { m_section[it]->updateDisplay(); height += m_section[it]->getHeight(); std::cout << "------------- " << getName() << ": Section = " << m_section[it]->getId() << " on " << m_section.size() << " -> H = " << m_section[it]->getHeight() << std::endl; if (it == 0) m_section[it]->setOffsetSection(0); else m_section[it]->setOffsetSection(m_section[it-1]->getHeight() + m_section[it-1]->getOffsetSection()); m_section[it]->updateSectionRect(); } setHeight(height); m_widget.h = m_height + 2*m_pitch; } Widget::~Widget() {} bool Widget::getFocus(int x, int y) { return (x >= m_widget.x) && (x <= m_widget.x + m_widget.w) && (y >= m_widget.y) && (y <= m_widget.y + m_widget.h); } void Widget::updateWidgetPosition(int moveX, int moveY) { //std::cout << "Delta X: " << moveX - m_mouseX << " | Delta Y: " << moveY - m_mouseY << std::endl; int x = moveX - getMouseX(), y = moveY - getMouseY(); setPosX(m_posX + x); setPosY(m_posY + y); setMouseX(moveX); setMouseY(moveY); setWidgetRect(m_widget.w, m_widget.h, m_posX, m_posY); } void Widget::eventWatch(SDL_Event event) { setCallBackCode(0); setQuitButton(event.button.x - m_widget.x, event.button.y - m_widget.y); if (event.type == SDL_MOUSEBUTTONDOWN) { setMouseX(event.button.x); setMouseY(event.button.y); } else if (event.type == SDL_MOUSEMOTION) { if (SDL_GetMouseState(0, 0) & SDL_BUTTON_LMASK) { setMoving(true); updateWidgetPosition(event.motion.x, event.motion.y); setCallBackCode(1); } else { setMoving(false); } } std::cout << getName() << std::endl; }
c609f699c6cc60ec9f58e5a5bd911cd7bda47b85
8da3b4d81d76b9cc3189057ce1417d8572e23aca
/강화시뮬레이터/강화시뮬레이터/Earring.cpp
4841c9c37f04edff4e08d415936a8d912ecfc33f
[]
no_license
Hyeongho/Portfolio
558317db249719276cc0120f71bf1cfd1cf81201
88f05e2cbfbd9fdd53b54d6f4d1244e85ee1a6cd
refs/heads/main
2023-06-13T06:41:37.349025
2021-07-07T14:59:46
2021-07-07T14:59:46
359,944,570
0
0
null
null
null
null
UTF-8
C++
false
false
21
cpp
Earring.cpp
#include "Earring.h"
05a40179f76c6e33b670eb044b8ece143470e9a2
b378d72e949b1ccd0acea75ccbb32018904576a4
/WWW/stara/solutions/837.re
eb2eb850344214f25ffd851e5a4c1b196aea2a8c
[ "MIT" ]
permissive
wanatpj/guarana
c1eeef7297fc771919ae362d3323b9fd339f17a7
1a3f95fedca93130698cdcf48668afdf2360d6be
refs/heads/master
2020-04-05T11:43:39.293238
2017-07-08T22:21:08
2017-07-08T22:21:08
81,142,049
0
1
null
null
null
null
UTF-8
C++
false
false
105
re
837.re
1 0 0 0 1 0 1 0 1 0 0 4 1 0 1 4 1 0 0 12 0 8 0 4 0 12 0 8 1 4 1 0 0 8 1 36 1 104 1 268 0 476 1 336 1 400
f9cdc8792dda59ff1121874c35978ba76559ea66
d7e076fe2a73abc729fb4c92c181905c86bb14b7
/Holly LDF Travel/Time.cpp
00ed3a4c26e55c74111b7cf8d94303aa13b8ec3a
[]
no_license
hollykim/COCC-HollyTravel
a02ae6e315a88b907cbb51ffba999fddc5056c00
17977e6e2f0381e9edd23a7543414efc17a966e3
refs/heads/main
2023-03-29T19:45:13.655855
2021-03-29T22:10:21
2021-03-29T22:10:21
352,794,083
0
0
null
null
null
null
UTF-8
C++
false
false
773
cpp
Time.cpp
#include "Time.h" #include <iostream> using namespace std; //overloading - operator to calculate time Time Time::operator-(Time operand2){ Time result; unsigned short checkOut = (this->hour * 60) + this->minute, checkIn = (operand2.hour * 60) + operand2.minute, minutesWorked = checkIn - checkOut; result.hour = minutesWorked / 60; result.minute = minutesWorked % 60; // print variables to test the time calculate // cout << minutesWorked << "\n"; // cout << result.hour << "\t" << result.minute << "\n"; // cout << "\n\n\t*** check out: " << checkOut << " check in: " << checkIn // << " minutesWorked: " << minutesWorked <<"\n\n"; return result; }
7e54a372f5fd103762548dae208250edb0639577
792dd5cfdad32a8aad37ac14b8aed35130159fea
/matrix/matrix/WW.hh
496cf856f66b896d6ccde2e527ff54c56bfb5323
[]
no_license
msneubauer/matrixelement
e35110a80d974cc3b8f397b867c374ffdb424844
c0cf382d816661de9e9a2b8f79a6e752f8e52519
refs/heads/master
2021-05-27T08:20:30.751177
2013-10-08T03:21:17
2013-10-08T03:21:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
933
hh
WW.hh
// // authors: Doug Schouten (doug dot schouten at triumf dot ca) // // #ifndef WW_HH #define WW_HH #include "matrix/WWLeptonsBaseIntegrand.hh" #include "matrix/TransferFunction.hh" ////////////////////////////////////////////////////////////// // // The Feynman integrand: ME(p) pdf(x,Q) dp for WW scattering // diagram in which the W+- decay leptonically // // This is for the 0-jet case // ////////////////////////////////////////////////////////////// class WW : public WWLeptonsBaseIntegrand { public: WW( Integrator*, int, TransferFunction* ); WW( Integrator* ); virtual ~WW() { } virtual bool initialize(); void setUseStrangePDF( bool flag = true ) { m_doStrange = flag; } protected: virtual double getME( double[][4] ) const; virtual void getArray( const WW0jFeynDiagram&, double[][4] ) const; virtual void eventScale( double&, double& ) const; private: bool m_doStrange; }; #endif
96cbd0171905b3b7af2d5d4591966c7b55b7c1a9
29237ad0279eea86e0f5dd54e8ef898c465751d1
/src/GenInter.cpp
0c2b90fd3019930bc2ea4b46558a79515c2cf866
[]
no_license
Kennnnnnji/CCompiler
b7008d91d16b1a320069b7694b1c354febce373f
ac1494b1806cdd87d06f04dd139b14834b59ba31
refs/heads/master
2022-04-07T21:09:36.662133
2020-03-09T07:34:31
2020-03-09T07:34:31
219,979,669
0
0
null
null
null
null
UTF-8
C++
false
false
1,644
cpp
GenInter.cpp
#include "GenInter.h" GenInter::GenInter() { locale::global(locale("")); interfile.open("17373052_王俊雄_优化前中间代码.txt", ios::out|ios::trunc); if (!interfile.is_open()) { cout << "GenInter.cpp: Error opening 17373052_王俊雄_优化前中间代码.txt"; exit(1); } } void GenInter::prt(string s) { interfile << s; } void GenInter::find_func_def(const SymbolC& func) { interfile << types[static_cast<int>(func.spec.baseType)] << " _" << func.name << "()" << endl; for (auto & arg : (func.args)) { SymbolC param = *arg; interfile << "para " << types[static_cast<int>(param.spec.baseType)] << " _" << param.name << endl; } } void GenInter::find_const_var_def(SymbolC constVar) { interfile << "const " << types[static_cast<int>(constVar.spec.baseType)] << " _" << constVar.name << " = "; if (constVar.spec.baseType == BaseType::INT) { interfile << constVar.value; } else { interfile << "\'" << char(constVar.value) << "\'"; } interfile << endl; } void GenInter::find_normal_var_def(SymbolC constVar) { interfile << "var " << types[static_cast<int>(constVar.spec.baseType)] << " _" << constVar.name << endl; } string GenInter::gen_label() { static int cnt = 0; string label = "#Label_" + to_string(cnt++); return label; } string GenInter::gen_label_loop_start() { string label = "#LOOP_STT_" + to_string(++loopcnt); return label; } string GenInter::gen_label_loop_end() { string label = "#LOOP_END_" + to_string(loopcnt); return label; } string GenInter::gen_func_label(string fname) { return "#Func_" + fname; } string GenInter::gen_func_end(string fname) { return "#End_" + fname; }
2168644ae8b49ec4e4814d2300c75a49bf49b4b6
66030acadf7fda7d431a81fcfdb9d76117a4762c
/plugins/qtplug/blankslade.cpp
73c49b5b4d0c9c61ef223ae1134d8f136b19abe2
[ "MIT", "Zlib", "BSD-2-Clause", "LicenseRef-scancode-public-domain" ]
permissive
lxnt/dfhack
39b7611699356dad8fca52a66bd6fdf77531f5ea
28059a7f351736d307aa45372e52f6e74fe85549
refs/heads/master
2021-01-21T01:12:16.411322
2012-02-16T15:22:05
2012-02-16T15:22:05
3,459,453
1
0
null
null
null
null
UTF-8
C++
false
false
2,580
cpp
blankslade.cpp
/* * Copyright (c) 2010 Petr Mrázek (peterix) * See LICENSE for details. */ #include "blankslade.h" #include <QFileDialog> #include <QDebug> #include "glwidget.h" blankslade::blankslade(QWidget *parent): QMainWindow(parent) { ui.setupUi(this); GLWidget * glw = new GLWidget(); ui.gridding->addWidget(glw); connect(ui.actionOpen,SIGNAL(triggered(bool)),this,SLOT(slotOpen(bool))); connect(ui.actionQuit,SIGNAL(triggered(bool)),this,SLOT(slotQuit(bool))); connect(ui.actionSave,SIGNAL(triggered(bool)),this,SLOT(slotSave(bool))); connect(ui.actionSave_As,SIGNAL(triggered(bool)),this,SLOT(slotSaveAs(bool))); ui.actionOpen->setIcon(QIcon::fromTheme("document-open")); ui.actionOpen->setIconText(tr("Open")); ui.actionSave->setIcon(QIcon::fromTheme("document-save")); ui.actionSave->setIconText(tr("Save")); ui.actionSave_As->setIcon(QIcon::fromTheme("document-save-as")); ui.actionSave_As->setIconText(tr("Save As")); ui.actionQuit->setIcon(QIcon::fromTheme("application-exit")); ui.actionQuit->setIconText(tr("Run DF")); } blankslade::~blankslade() {} void blankslade::slotOpen(bool ) { /* QFileDialog fd(this,tr("Locate the Memoxy.xml file")); fd.setNameFilter(tr("Memory definition (*.xml)")); fd.setFileMode(QFileDialog::ExistingFile); fd.setAcceptMode(QFileDialog::AcceptOpen); int result = fd.exec(); if(result == QDialog::Accepted) { QStringList files = fd.selectedFiles(); QString fileName = files[0]; QDomDocument doc("memxml"); QFile file(fileName); if(!file.open(QIODevice::ReadOnly)) { return; } if(!doc.setContent(&file)) { file.close(); return; } mod = new MemXMLModel(doc,this); ui.entryView->setModel(mod); file.close(); } */ } void blankslade::slotQuit(bool ) { close(); } void blankslade::slotSave(bool ) { // blah } void blankslade::slotRunDF(bool ) { // blah } void blankslade::slotSaveAs(bool ) { QFileDialog fd(this,tr("Choose file to save as...")); fd.setNameFilter(tr("Memory definition (*.xml)")); fd.setFileMode(QFileDialog::AnyFile); fd.selectFile("Memory.xml"); fd.setAcceptMode(QFileDialog::AcceptSave); int result = fd.exec(); if(result == QDialog::Accepted) { QStringList files = fd.selectedFiles(); QString file = files[0]; qDebug() << "File:" << file; } } void blankslade::slotSetupDFs(bool ) { } #include "blankslade.moc"
585cf559106981d911602a6f6b5fbf4a0f0208dd
763dd77ba4bb5b680f53060141c217198e510658
/Sorted_Insert_Position.cpp
9b860d3c2923ad2c58965b46eee1c66e13b2275b
[]
no_license
gouravdhar/interviewBit_CPP_Solutions
4a03300cdbd833a3870b197d08e0c4d2f2b56a09
cb99e81d9c645a26d705d118e5e5b8c3cd7babff
refs/heads/master
2023-01-05T22:11:32.212225
2020-10-18T17:14:24
2020-10-18T17:14:24
297,715,917
0
0
null
null
null
null
UTF-8
C++
false
false
319
cpp
Sorted_Insert_Position.cpp
int in(vector<int> &A, int B, int l, int h){ if(l > h) return l; int m = (l+h)/2; if(A[m] == B) return m; if(A[m] > B) return in(A, B, 0, m-1); else return in(A, B, m+1, h); } int Solution::searchInsert(vector<int> &A, int B) { return in(A, B, 0, A.size()-1); }
e280a25284f11a58f1e4d0d697fc2ef7d4f9e21f
0d5d0e5dbc95c3f621a063222ef0036f386b9f55
/BaseProject/Plugins/BlockoutToolsPlugin/Intermediate/Build/Win64/UE4Editor/Inc/BlockoutToolsPlugin/BlockoutToolsParent.generated.h
3af20fe2c76b9ff1106405d7fe3bcd54e1035e1a
[]
no_license
Spikesalive/FTC
da604916eacda46efb167c562f57ba90587adee3
8b9b1315442fbedd0fce6f73b8021d75be76ffd5
refs/heads/main
2023-09-06T08:00:26.132842
2021-10-18T18:48:06
2021-10-18T18:48:06
417,198,034
0
0
null
null
null
null
UTF-8
C++
false
false
5,720
h
BlockoutToolsParent.generated.h
// Copyright Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/ObjectMacros.h" #include "UObject/ScriptMacros.h" PRAGMA_DISABLE_DEPRECATION_WARNINGS #ifdef BLOCKOUTTOOLSPLUGIN_BlockoutToolsParent_generated_h #error "BlockoutToolsParent.generated.h already included, missing '#pragma once' in BlockoutToolsParent.h" #endif #define BLOCKOUTTOOLSPLUGIN_BlockoutToolsParent_generated_h #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_SPARSE_DATA #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_RPC_WRAPPERS \ \ DECLARE_FUNCTION(execBlockoutSetMaterial); \ DECLARE_FUNCTION(execRerunConstructionScript); #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ \ DECLARE_FUNCTION(execBlockoutSetMaterial); \ DECLARE_FUNCTION(execRerunConstructionScript); #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_INCLASS_NO_PURE_DECLS \ private: \ static void StaticRegisterNativesABlockoutToolsParent(); \ friend struct Z_Construct_UClass_ABlockoutToolsParent_Statics; \ public: \ DECLARE_CLASS(ABlockoutToolsParent, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/BlockoutToolsPlugin"), NO_API) \ DECLARE_SERIALIZER(ABlockoutToolsParent) #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_INCLASS \ private: \ static void StaticRegisterNativesABlockoutToolsParent(); \ friend struct Z_Construct_UClass_ABlockoutToolsParent_Statics; \ public: \ DECLARE_CLASS(ABlockoutToolsParent, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/BlockoutToolsPlugin"), NO_API) \ DECLARE_SERIALIZER(ABlockoutToolsParent) #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_STANDARD_CONSTRUCTORS \ /** Standard constructor, called after all reflected properties have been initialized */ \ NO_API ABlockoutToolsParent(const FObjectInitializer& ObjectInitializer); \ DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ABlockoutToolsParent) \ DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ABlockoutToolsParent); \ DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ABlockoutToolsParent); \ private: \ /** Private move- and copy-constructors, should never be used */ \ NO_API ABlockoutToolsParent(ABlockoutToolsParent&&); \ NO_API ABlockoutToolsParent(const ABlockoutToolsParent&); \ public: #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_ENHANCED_CONSTRUCTORS \ private: \ /** Private move- and copy-constructors, should never be used */ \ NO_API ABlockoutToolsParent(ABlockoutToolsParent&&); \ NO_API ABlockoutToolsParent(const ABlockoutToolsParent&); \ public: \ DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, ABlockoutToolsParent); \ DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(ABlockoutToolsParent); \ DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(ABlockoutToolsParent) #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_PRIVATE_PROPERTY_OFFSET #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_21_PROLOG #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_GENERATED_BODY_LEGACY \ PRAGMA_DISABLE_DEPRECATION_WARNINGS \ public: \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_PRIVATE_PROPERTY_OFFSET \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_SPARSE_DATA \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_RPC_WRAPPERS \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_INCLASS \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_STANDARD_CONSTRUCTORS \ public: \ PRAGMA_ENABLE_DEPRECATION_WARNINGS #define BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_GENERATED_BODY \ PRAGMA_DISABLE_DEPRECATION_WARNINGS \ public: \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_PRIVATE_PROPERTY_OFFSET \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_SPARSE_DATA \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_RPC_WRAPPERS_NO_PURE_DECLS \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_INCLASS_NO_PURE_DECLS \ BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h_24_ENHANCED_CONSTRUCTORS \ private: \ PRAGMA_ENABLE_DEPRECATION_WARNINGS template<> BLOCKOUTTOOLSPLUGIN_API UClass* StaticClass<class ABlockoutToolsParent>(); #undef CURRENT_FILE_ID #define CURRENT_FILE_ID BaseProject_Plugins_BlockoutToolsPlugin_Source_BlockoutToolsPlugin_Private_BlockoutToolsParent_h #define FOREACH_ENUM_EBLOCKOUTMATERIALTYPE(op) \ op(BlockoutMaterialType_Grid) \ op(BlockoutMaterialType_CustomMaterial) PRAGMA_ENABLE_DEPRECATION_WARNINGS
c2bc3cbbae99c8787b8f60b3c78bcf4d188dc3dd
8d26dc2f58d2b8644380783f7e5a1780395792d8
/client/main.cpp
37e53ae47bb2741cd54a3cb90dfb5c968a9733e1
[]
no_license
0obriano0/VS_Socket_Chatroom
6afdf889bee16f384ebfb1c0e77f01cb7e9925b4
a3fe685588cb7b1b63d2f93566fd3627faa435a3
refs/heads/main
2023-06-19T17:35:33.168331
2021-07-16T03:17:57
2021-07-16T03:17:57
386,164,071
0
0
null
null
null
null
BIG5
C++
false
false
2,609
cpp
main.cpp
#include <iostream> #include<winsock2.h> #include<stdio.h> #include<string.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ char buffer; int send_cmd(SOCKET sockfd); void recv_cmd(SOCKET sockfd); int main(int argc, char** argv) { SOCKET sockfd; int len; struct sockaddr_in address; int result; WSADATA wsadata; if(WSAStartup(0x101,(LPWSADATA)&wsadata) != 0) { printf("Winsock Error\n"); exit(1); } sockfd = socket(AF_INET, SOCK_STREAM, 0); address.sin_family = AF_INET; address.sin_addr.s_addr = inet_addr("127.0.0.1"); //address.sin_addr.s_addr = inet_addr("122.116.195.140"); address.sin_port = 9734; len = sizeof(address); result = connect(sockfd, (struct sockaddr *)&address, len); if(result == -1) { printf("Connect Error"); exit(1); } Sleep(500); printf("伺服器已連接~~\n"); char ch[100]; sprintf(ch,"加入聊天室"); buffer = (char)(strlen(ch)+1); ch[buffer-1] = '\0'; send(sockfd, &buffer, 1, 0); send(sockfd, ch, buffer, 0); #pragma omp parallel sections { #pragma omp section { send_cmd(sockfd); } #pragma omp section { recv_cmd(sockfd); } } closesocket(sockfd); exit(0); } int send_cmd(SOCKET sockfd) { char char_message[100],*ch; char command_send[5]="send "; char command_bye[3]="bye"; while(1){ fflush(stdin); scanf("%[^\n]",char_message); int j=0; while(j<3) { char byelength=4,byeword[]="bye"; if(char_message[j]==command_bye[j]) j++; else break; if(j==3) { send(sockfd,&byelength,1,0); send(sockfd,byeword,4,0); Sleep(1000); closesocket(sockfd); exit(0); } } bool error = false; int i=0; while(i<5) { if(char_message[i]!=command_send[i]) { char errorlength=5,errorword[]="error"; printf("輸入格式錯誤!請重新輸入\n"); error = true; } i++; } if(!error){ ch = (char*)malloc(sizeof(char)*200); sprintf(ch,"%s",char_message+5); buffer = (char)(strlen(ch)+1); ch[buffer-1] = '\0'; //printf("char = %s\n", ch); //printf("buffer = %d\n", buffer); send(sockfd, &buffer, 1, 0); send(sockfd, ch, buffer, 0); free(ch); } } return 0; } void recv_cmd(SOCKET sockfd) { while(1){ char *ch; buffer = 0; recv(sockfd, &buffer, 1, 0); if(buffer <= 0) exit(0); //printf("buffer = %d\n", buffer); ch = (char*)malloc(sizeof(char)*buffer); recv(sockfd, ch, buffer, 0); //printf("char from server = %s\n", ch); printf("%s\n", ch); //system("pause"); free(ch); } }
a01c773acc6ce7b91174e2aadd05a27de4599250
e6841a65c30e2ff468cf1e779559cbc03567cdb1
/Praktikum GGI 2/Lösungen/Strassenverkehr (Stefan Erkens)/Fahrrad.h
4870c5656904916c7d99ca0c0915e653bf132945
[]
no_license
karimbouaziz95/Praktikum2_Versuch
51ceff8b20e28f1cb5fe13d0397bf75a59a56e84
092993f74a9faabbf3918ad5b1393c8b7c06f90f
refs/heads/main
2023-08-23T04:53:36.152724
2021-10-17T16:20:01
2021-10-17T16:20:01
418,179,393
0
0
null
null
null
null
ISO-8859-1
C++
false
false
593
h
Fahrrad.h
#pragma once #include "Fahrzeug.h" class Fahrrad : public Fahrzeug { public: Fahrrad(){}; Fahrrad(string sName, double dMaxSpeed):Fahrzeug(sName, dMaxSpeed){}; virtual double dTanken(double dMenge = 0.0) {return 0;}; //Tanken nicht möglich -> es wird immer 0 returnt virtual void vAbfertigung(); //Abfertigung virtual double dGeschwindigkeit(); //Geschwindigkeit ausrechnen und zurückgeben virtual ostream& ostreamAusgabe(ostream& data); //Ostream mit spezifischen Daten zurückgeben virtual void vDraw(Weg* TrackPtr); //Fahrzeug in der grafikschen Oberfläche zeichnen };
c5bd5498cd56f9ba7f1c8e9dc3e6f264c0d36a5f
6d83b39bc014a37fd8ad84a0103d32578eebfad4
/src/smoothSender.h
6ea7765c9b6f4d6c23ffce549498ca419db0f068
[]
no_license
Bentleyj/Whispers
eb6f91882546937d5524bbd170b31e78ee808dd4
08e809fee0343b19d2f84c88da17516c7493cbdd
refs/heads/master
2021-01-23T09:53:33.716704
2015-07-15T09:42:08
2015-07-15T09:42:08
38,957,804
0
0
null
null
null
null
UTF-8
C++
false
false
1,096
h
smoothSender.h
// // smoothPlayer.h // Whispers // // Created by James Bentley on 7/3/15. // // #ifndef __Whispers__smoothSender__ #define __Whispers__smoothSender__ #include "ofMain.h" #include "Integratorf.h" #include "ofxPd.h" class smoothSender { public: smoothSender(string _name, float _farBound, float _nearBound, float _damping, float _attraction, bool _ambient); void setPd(ofxPd* _pd); void tarVal(float _val); void setVal(float _val); float getVal(); void update(); void setDamping(float _val); void setAttraction(float _val); void setMaxVal(float _maxVal); void setMinVal(float _minVal); void setFarBound(float _farBound); void setMap(float(*myMap)(float valToMap, float lowInput, float highInput, float lowOutput, float highOutput, bool clamp)); float (*mappingFunc)(float valToMap, float lowInput, float highInput, float lowOutput, float highOutput, bool clamp); bool ambient; Integratorf val; float minVal, maxVal, farBound, nearBound; ofxPd* pd; string name; }; #endif /* defined(__Whispers__smoothPlayer__) */
bc1787143b1e203475354352f5d8e847f140e45d
9a7d75b0d32ca40ab26860983e769c13d45267f9
/include/vulkan/CommandBufferPool.h
2db0e2b43bd707d835014329e0e4bea47b358fdb
[ "BSD-2-Clause" ]
permissive
jpd002/Play--Framework
4427b6709c819a4403f14dd41fd8f3131f5f8d48
2dadb6dfcbc855c08a6f0bdea90e0572ac4ee0b8
refs/heads/master
2023-08-31T11:40:41.713390
2023-08-27T00:35:45
2023-08-27T00:35:45
17,099,900
42
24
NOASSERTION
2022-05-19T12:48:40
2014-02-23T02:27:07
C++
UTF-8
C++
false
false
842
h
CommandBufferPool.h
#pragma once #include "Types.h" #include "Device.h" namespace Framework { namespace Vulkan { class CCommandBufferPool { public: CCommandBufferPool() = default; CCommandBufferPool(CDevice&, uint32_t); CCommandBufferPool(const CCommandBufferPool&) = delete; CCommandBufferPool(CCommandBufferPool&&); virtual ~CCommandBufferPool(); bool IsEmpty() const; void Reset(); CCommandBufferPool& operator =(const CCommandBufferPool&) = delete; CCommandBufferPool& operator =(CCommandBufferPool&&); VkCommandBuffer AllocateBuffer(); void FreeBuffer(VkCommandBuffer); void ResetBuffers(); private: typedef std::vector<VkCommandBuffer> CommandBufferArray; void Create(uint32_t); const CDevice* m_device = nullptr; VkCommandPool m_handle = VK_NULL_HANDLE; }; } }
16287234d7f714e4970a44617bc2eb7d62cd9398
39687a63b28378681f0309747edaaf4fb465c034
/examples/04-fileIO_String/Mesh_io/include/DGAL/IO/polyhedron_io.h
005583f1014ae2db89dd38649e60149ca6432a9f
[]
no_license
aldongqing/jjcao_code
5a65ac654c306b96f0892eb20746b17276aa56e4
3b04108ed5c24f22899a31b0ee50ee177a841828
refs/heads/master
2021-01-18T11:35:25.515882
2015-10-29T01:52:33
2015-10-29T01:52:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,596
h
polyhedron_io.h
// Copyright (c) 2007-2010 Dalian University of Technology (China). // All rights reserved. // // This file is part of DGAL; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; version 2.1 of the License. // See the file LICENSE.LGPL distributed with CGAL. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL: http://jjcao1231.googlepages.com $ // $Id: Polyhedron_io.h 2007-04-09 $ // // // Author(s) : JJCAO <jjcao@hotmail.com> #ifndef DGAL_POLYHEDRON_IO_H #define DGAL_POLYHEDRON_IO_H #include <CGAL/IO/Polyhedron_iostream.h> #include <CGAL/IO/Polyhedron_inventor_ostream.h> #include <CGAL/IO/Polyhedron_VRML_1_ostream.h> #include <CGAL/IO/Polyhedron_VRML_2_ostream.h> #include <CGAL/IO/Polyhedron_geomview_ostream.h> #include <DGAL/config.h> #include <DGAL/IO/Polyhedron_scan_cof.h> #include <DGAL/IO/Polyhedron_scan_obj.h> #include <DGAL/IO/Polyhderon_outputer_cof.h> #include <DGAL/IO/Polyhedron_outputer_obj.h> #include <DGAL/UTIL/String_util.h> #include <sstream> #include <fstream> #include <string> DGAL_BEGIN_NAMESPACE class Polyhedron_io { public: enum Error_code { OK, ///< Success UNSUPPORTED_FORMAT, FAILED_TO_OPEN_FILE, UNKNOWN_ERROR }; public: // template<class Polyhedron> static Error_code scan(Polyhedron& mesh, const char* filename) { std::string basename; std::string extname; if ( !parse_filename(filename, basename, extname)) { return UNSUPPORTED_FORMAT; } ////////////////////////////////// std::ifstream stream(filename); if(!stream) { return FAILED_TO_OPEN_FILE; } Error_code result = OK; std::transform(extname.begin(), extname.end(), extname.begin(), tolower); if ( extname == "cof") { Polyhedron_scan_cof<Polyhedron> bd(mesh, stream); mesh.delegate(bd); } else if ( extname == "obj") { Polyhedron_scan_obj<Polyhedron::HDS> bd(stream); mesh.delegate(bd); } else if ( extname == "off") { stream >> mesh; } else { result = UNSUPPORTED_FORMAT; } stream.close(); return result; } template<class Polyhedron> static Error_code output(Polyhedron& mesh, const char* filename) { std::string basename; std::string extname; if ( !parse_filename(filename, basename, extname)) { return UNSUPPORTED_FORMAT; } ////////////////////////////////// std::ofstream ostream(filename); if(!ostream) return FAILED_TO_OPEN_FILE; Error_code result = OK; std::transform(extname.begin(), extname.end(), extname.begin(), tolower); if ( extname == "cof") { /*Polyhderon_outputer_cof<Polyhedron> outputer(mesh, ostream); outputer.save();*/ } else if ( extname == "obj") { Polyhedron_outputer_obj<Polyhedron> outputer(mesh, ostream); outputer.save(); } else if ( extname == "off") { ostream << mesh; } else if ( extname == "iv") { CGAL::Inventor_ostream out( ostream); out << mesh; } else if ( extname == "wrl") { CGAL::VRML_2_ostream out( ostream); out << mesh; } //else if ( extname == "gv") //{ // CGAL::Geomview_stream out; // out << mesh; //} else { result = UNSUPPORTED_FORMAT; } ostream.close(); return result; } }; DGAL_END_NAMESPACE #endif//DGAL_POLYHEDRON_IO_H
3ffc04adecd267054a9c0db334f753d433e47982
e9d3bd92027e63033929ab9dc97f38473f8ef0ef
/GTE/Graphics/DX11/DX11TextureRT.cpp
e8857e8fb2d79da840206d3fcb083b9e5aff7434
[ "BSL-1.0" ]
permissive
cbullo/GeometricTools
77107de654a012649d05ea248caefe581cc7fde4
53d82425c3d27a4301f7390754c7fc440734d53f
refs/heads/master
2023-08-27T22:05:04.268917
2021-10-19T20:48:34
2021-10-19T20:48:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,005
cpp
DX11TextureRT.cpp
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2021 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 4.0.2020.04.13 #include <Graphics/DX11/GTGraphicsDX11PCH.h> #include <Graphics/DX11/DX11TextureRT.h> using namespace gte; DX11TextureRT::~DX11TextureRT() { DX11::FinalRelease(mRTView); } DX11TextureRT::DX11TextureRT(ID3D11Device* device, TextureRT const* texture) : DX11Texture2(texture), mRTView(nullptr) { // Specify the texture description. D3D11_TEXTURE2D_DESC desc; desc.Width = texture->GetWidth(); desc.Height = texture->GetHeight(); desc.MipLevels = texture->GetNumLevels(); desc.ArraySize = 1; desc.Format = static_cast<DXGI_FORMAT>(texture->GetFormat()); desc.SampleDesc.Count = 1; desc.SampleDesc.Quality = 0; desc.Usage = D3D11_USAGE_DEFAULT; desc.BindFlags = D3D11_BIND_SHADER_RESOURCE | D3D11_BIND_RENDER_TARGET; desc.CPUAccessFlags = D3D11_CPU_ACCESS_NONE; desc.MiscFlags = (texture->IsShared() ? D3D11_RESOURCE_MISC_SHARED : D3D11_RESOURCE_MISC_NONE); if (texture->GetUsage() == Resource::SHADER_OUTPUT) { desc.BindFlags |= D3D11_BIND_UNORDERED_ACCESS; } if (texture->WantAutogenerateMipmaps() && !texture->IsShared()) { desc.MiscFlags |= D3D11_RESOURCE_MISC_GENERATE_MIPS; } // Create the texture. ID3D11Texture2D* dxTexture = nullptr; if (texture->GetData()) { unsigned int const numSubresources = texture->GetNumSubresources(); std::vector<D3D11_SUBRESOURCE_DATA> data(numSubresources); for (unsigned int index = 0; index < numSubresources; ++index) { auto sr = texture->GetSubresource(index); data[index].pSysMem = sr.data; data[index].SysMemPitch = sr.rowPitch; data[index].SysMemSlicePitch = 0; } DX11Log(device->CreateTexture2D(&desc, &data[0], &dxTexture)); } else { DX11Log(device->CreateTexture2D(&desc, nullptr, &dxTexture)); } mDXObject = dxTexture; // Create views of the texture. CreateSRView(device, desc); CreateRTView(device, desc); if (texture->GetUsage() == Resource::SHADER_OUTPUT) { CreateUAView(device, desc); } // Create a staging texture if requested. if (texture->GetCopyType() != Resource::COPY_NONE) { CreateStaging(device, desc); } // Generate mipmaps if requested. if (texture->WantAutogenerateMipmaps() && mSRView) { ID3D11DeviceContext* context; device->GetImmediateContext(&context); context->GenerateMips(mSRView); DX11::SafeRelease(context); } } DX11TextureRT::DX11TextureRT(ID3D11Device* device, DX11TextureRT const* dxSharedTexture) : DX11Texture2(dxSharedTexture->GetTexture()), mRTView(nullptr) { ID3D11Texture2D* dxShared = dxSharedTexture->CreateSharedDXObject(device); mDXObject = dxShared; D3D11_TEXTURE2D_DESC desc; dxShared->GetDesc(&desc); CreateRTView(device, desc); } std::shared_ptr<GEObject> DX11TextureRT::Create(void* device, GraphicsObject const* object) { if (object->GetType() == GT_TEXTURE_RT) { return std::make_shared<DX11TextureRT>( reinterpret_cast<ID3D11Device*>(device), static_cast<TextureRT const*>(object)); } LogError("Invalid object type."); } void DX11TextureRT::SetName(std::string const& name) { DX11Texture2::SetName(name); DX11Log(DX11::SetPrivateName(mRTView, name)); } void DX11TextureRT::CreateRTView(ID3D11Device* device, D3D11_TEXTURE2D_DESC const& tx) { D3D11_RENDER_TARGET_VIEW_DESC desc; desc.Format = tx.Format; desc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2D; desc.Texture2D.MipSlice = 0; DX11Log(device->CreateRenderTargetView(GetDXTexture(), &desc, &mRTView)); }
f623c96374d74b15942990f349f05aeada402bee
43090c1d6853f44ac67e650fccb7262609521e6e
/基础算法/查找/是否为二叉查找树后序遍历.cpp
b45cc40b44ed8c3bc6bb49325d7fa64066464529
[]
no_license
jinhlov/algorithm
eca9082ed0285ea07a5094d163653fe4f122cd2e
87f9c13d15a33133ba961ca04d24d08a2acf6699
refs/heads/master
2020-02-26T16:42:27.455586
2016-07-24T13:44:22
2016-07-24T13:44:22
56,509,309
0
0
null
null
null
null
GB18030
C++
false
false
1,012
cpp
是否为二叉查找树后序遍历.cpp
#include <iostream> using namespace std; bool PostSequenceOfBST(int a[], int length) { if (a == NULL || length <= 0) // 数组有效性验证 return false; int root = a[length - 1]; // 根节点 int i = 0; for (; i < length - 1; i++){ // 搜索左子树的节点 if (a[i] > root) // i为左子树长度 break; } int j = i; // 搜索右子树的节点 for (; j < length - 1; j++){ if (a[j] < root) // 右子树上发现小于根的值返回false return false; } bool left = true; if (i>0) // 左子树存在 left = PostSequenceOfBST(a, i); bool right = true; if (i < length - 1) // 右子树存在 right = PostSequenceOfBST(a + i, length - i - 1); return (left&&right); } int main(){ cout << "请输入数组:" << endl; int s[7]; for (int i = 0; i < 7; i++) cin >> s[i]; bool result = PostSequenceOfBST(s, 6); if (result) cout << "该数组是二叉查找树的后序遍历" << endl; else cout << "该数组不是二叉查找树的后序遍历" << endl; return 0; }
31b131f8b2e0ffb42d3db01cd52036b3c8b0e1b4
846dc1c9528327004e6959532f01976f60418a2c
/main.cpp
c89b0ee97b6e400de8f80560a10117bb751a5345
[]
no_license
sebblonline/raspicam-daemon
cb3d1f69a001d64f7b2253eae5c2e9001463c47f
7431cc7690274ff3b7a1932a06d0a126554cbd1f
refs/heads/master
2022-09-20T09:06:34.155213
2019-09-05T18:51:04
2019-09-05T18:51:04
206,598,854
0
0
null
null
null
null
UTF-8
C++
false
false
1,949
cpp
main.cpp
#include "Server.h" //importing libraries #include <iostream> #include <boost/enable_shared_from_this.hpp> #include <boost/optional.hpp> #include <boost/utility/in_place_factory.hpp> #include <boost/log/trivial.hpp> #include <boost/log/utility/setup/file.hpp> #include <boost/log/utility/setup/common_attributes.hpp> #include <boost/log/utility/setup/console.hpp> #include <thread> #include <chrono> using namespace boost::asio; using ip::tcp; static void init_log() { static const std::string COMMON_FMT("[%TimeStamp%][%Severity%]: %Message%"); boost::log::register_simple_formatter_factory< boost::log::trivial::severity_level, char >("Severity"); // Output message to console boost::log::add_console_log( std::cout, boost::log::keywords::format = COMMON_FMT, boost::log::keywords::auto_flush = true ); // Output message to file, rotates when file reached 1mb or at midnight every day. Each log file // is capped at 1mb and total is 20mb boost::log::add_file_log ( boost::log::keywords::file_name = "raspicam-daemon_%3N.log", boost::log::keywords::rotation_size = 1 * 1024 * 1024, boost::log::keywords::max_size = 20 * 1024 * 1024, boost::log::keywords::format = COMMON_FMT, boost::log::keywords::auto_flush = true ); boost::log::add_common_attributes(); // Only output message with INFO or higher severity in Release #ifndef _DEBUG boost::log::core::get()->set_filter( boost::log::trivial::severity >= boost::log::trivial::info ); #endif } int main() { init_log(); boost::asio::io_service ioService; Server ctrlServer(&ioService, 8083); try { ioService.run(); } catch(std::exception& e) { BOOST_LOG_TRIVIAL(fatal) << "exception in ioService.run(): " << e.what(); } return 0; }
90e3d6d4bd249c87937304d3d6e38eb24af18248
49ade970a5a989535410874d795c4b002f908f5f
/GamesEngineeringII/ThomasWasAlone/Player.cpp
83181622d90125838f7d0ff9b79023255a73ced9
[]
no_license
StephenD-C00183891/Games-Engineering-II
f931d179ce15a41e9512a12ba6189bfb2bf65b78
4c872b4a3a8ea33159042bdce25eaf0a257156af
refs/heads/master
2021-01-10T23:53:13.794718
2016-12-15T10:43:20
2016-12-15T10:43:20
70,792,254
0
0
null
2016-12-14T21:19:53
2016-10-13T09:45:12
C
UTF-8
C++
false
false
711
cpp
Player.cpp
#include "stdafx.h" #include "Player.h" Player::Player() { } Player::~Player() { } void Player::Render(Renderer& r) { r.drawWorldRect(rect, col); } void Player::Update(unsigned int deltaTime) { } void Player::onEvent(EventListener::Event evt) { } void Player::MoveLeft(Size2D winSize) { if (rect.pos.x >= 0) { rect.pos.x -= rect.size.w; } } void Player::MoveRight(Size2D winSize) { if (rect.pos.x <= (winSize.w - (rect.size.w*2))) { rect.pos.x += rect.size.w; } } void Player::MoveUp(Size2D winSize) { if (rect.pos.y >= 0 ) { rect.pos.y += rect.size.h; } } void Player::MoveDown(Size2D winSize) { if (rect.pos.y <= (winSize.h - rect.size.h)) { rect.pos.y -= rect.size.h; } }
c5bcca22fd77afc4f92bf9832c683b21b06d8fe2
c9638fdd95c3ad24a8f7d28dc299db8d9925857f
/Model/Decorators/concatedDna.cpp
7eafaf09da26689b248d1b029b45cba2c615f9f3
[]
no_license
hodayamar/excellenteam-DNA-Analyzer
c60361f1b95435d22be191a809c6310178a8cf73
eed46e37c144113cd125544313a2cb0c1aaf586a
refs/heads/master
2020-04-21T13:11:58.087040
2019-01-14T21:38:59
2019-01-14T21:38:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
642
cpp
concatedDna.cpp
#include "concatedDna.h" concatedDna::concatedDna(IDNAp first, IDNAp second, std::string name) { m_firstDna = first; m_secondDna = second; firstLen = first->getLength(); secondLen = second->getLength(); idSeq = autoInc++; if(name.compare("")) { nameSeq = name; } else { setToDefualtName(); } } unsigned long concatedDna::getLength()const { return firstLen + secondLen; } Nucleotide concatedDna::operator[](size_t index)const { if ( index < firstLen) return m_firstDna-> operator[](index); else return m_secondDna-> operator[](index - firstLen); }
18da2567b38f7d6c70ad766ac451764e459f0587
7a4b71c6f779a8e32d9b5f00ec7a3d172fe4501c
/main.cpp
9775dff9120773911b1341bab16d69f41a9dd8e2
[]
no_license
kathog/vertx_tcp_seastar
f7ed56d49fa0f8dc04555048c1ca3ce114485b3a
b3fba98a31a74ab3169e5c7342b20e1838129e6c
refs/heads/master
2023-03-26T13:20:38.588138
2020-04-22T06:35:15
2020-04-22T06:35:15
352,278,842
0
0
null
null
null
null
UTF-8
C++
false
false
2,582
cpp
main.cpp
#include <iostream> #include <boost/program_options.hpp> #include <seastar/core/reactor.hh> #include <seastar/core/app-template.hh> #include <seastar/core/distributed.hh> #include <tcp/tcp_server.h> #include <vertx/hazelcast_cluster.h> #include <vertx/clustered_message.h> #include <future> #include <thread> #include <mutex> #include <vertx/vertx.h> #include <seastar/core/thread.hh> #include <seastar/core/sleep.hh> #include <seastar/core/smp.hh> #include <vertx/queue_server.h> //using namespace seastar; namespace bpo = boost::program_options; using namespace std::chrono_literals; int main(int ac, char** av) { hazelcast::client::ClientConfig config; hazelcast::client::Address a{"127.0.0.1", 5701 }; config.getNetworkConfig().addAddress(a); hazelcast_cluster cluster {config}; cluster.join(); vertx::hz = std::make_unique<hazelcast_cluster>(cluster); vertx::port = 10000; vertx::consumer("tarcza", [] (clustered_message& msg, clustered_message& response) { std::string body = msg.getBody(); std::cout << seastar::this_shard_id() << std::endl; response.setBody("dupa tam!"); }); seastar::app_template app; app.add_options()("port", bpo::value<uint16_t>()->default_value(vertx::port), "tcp server port"); return app.run_deprecated(ac, av, [&] { auto&& config = app.configuration(); uint16_t port = config["port"].as<uint16_t>(); seastar::seastar_logger.set_level(seastar::log_level::trace); std::cout<< "seastar::smp::count " << seastar::smp::count << std::endl; auto q_server = new seastar::distributed<queue_server>; uint16_t q_port = 1234; (void)q_server->start().then([q_server = std::move(q_server), q_port] () mutable { seastar::engine().at_exit([q_server] { return q_server->stop(); }); (void)q_server->invoke_on_all( &queue_server::listen, seastar::ipv4_addr{q_port}); }).then([q_port] { seastar::seastar_logger.info("queue_server server listening on port {}", q_port); }); auto server = new seastar::distributed<tcp_server>; (void)server->start().then([server = std::move(server), port] () mutable { seastar::engine().at_exit([server] { return server->stop(); }); (void)server->invoke_on_all(&tcp_server::listen, seastar::ipv4_addr{port}); }).then([port] { seastar::seastar_logger.info("vertx_tcp server listening on port {}", port); }); }); }
43b9c0af8888de4fc79205ca4031b3430a63b8a5
4cedfda65a73a2a98bfc49a2ce09bfec901cccc3
/modules/footstone/src/platform/adr/looper_driver.cc
22ea02c9daa138d0e0c672ef8958062b060b83c0
[ "MIT", "Apache-2.0" ]
permissive
Tencent/Hippy
f71695fb4488ee3df273524593301d7c241e0177
8560a25750e40f8fb51a8abfa44aad0392ebb209
refs/heads/main
2023-09-03T22:24:38.429469
2023-09-01T04:16:16
2023-09-01T06:22:14
221,822,577
8,300
1,161
Apache-2.0
2023-09-14T11:22:44
2019-11-15T01:55:31
Java
UTF-8
C++
false
false
2,907
cc
looper_driver.cc
/* * Tencent is pleased to support the open source community by making * Hippy available. * * Copyright (C) 2022 THL A29 Limited, a Tencent company. * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "include/footstone/platform/adr/looper_driver.h" #include <sys/timerfd.h> #include <android/looper.h> #include <ctime> namespace footstone { inline namespace runner { static ALooper *AcquireLooperForThread() { ALooper *looper = ALooper_forThread(); if (looper == nullptr) { looper = ALooper_prepare(0); } ALooper_acquire(looper); return looper; } itimerspec SetItimerspec(uint64_t nano_secs) { struct itimerspec spec{}; spec.it_value.tv_sec = static_cast<time_t>(nano_secs / 1000000000); spec.it_value.tv_nsec = static_cast<long>(nano_secs % 1000000000); spec.it_interval = spec.it_value; return spec; } LooperDriver::LooperDriver(): looper_(nullptr), fd_(-1) {} LooperDriver::~LooperDriver() { ALooper_removeFd(looper_, fd_); ALooper_wake(looper_); } void LooperDriver::Notify() { itimerspec spec = SetItimerspec(1); timerfd_settime(fd_, TFD_TIMER_ABSTIME, &spec, nullptr); } void LooperDriver::WaitFor(const TimeDelta& delta) { auto nano_secs = delta.ToNanoseconds(); if (nano_secs < 1) { nano_secs = 1; } itimerspec spec = SetItimerspec(static_cast<uint64_t>(nano_secs)); timerfd_settime(fd_, TFD_TIMER_ABSTIME, &spec, nullptr); } void LooperDriver::Start() { looper_ = AcquireLooperForThread(); fd_ = timerfd_create(CLOCK_MONOTONIC,TFD_NONBLOCK | TFD_CLOEXEC); static const int kWakeEvents = ALOOPER_EVENT_INPUT; ALooper_callbackFunc cb = [](int, int events, void *data) -> int { if (events & kWakeEvents) { reinterpret_cast<LooperDriver *>(data)->OnEventFired(); } return 1; }; ::ALooper_addFd(looper_, fd_, ALOOPER_POLL_CALLBACK, kWakeEvents, cb, this); while (true) { int result = ::ALooper_pollOnce(-1, nullptr, nullptr, nullptr); if (result == ALOOPER_POLL_TIMEOUT || result == ALOOPER_POLL_ERROR) { is_terminated_ = true; } if (is_terminated_) { return; } } } void LooperDriver::Terminate() { is_terminated_ = true; Notify(); } void LooperDriver::OnEventFired() { if (IsExitImmediately()) { return; } unit_(); } } }
1603f82e9a3a58f2a7e82a90bce58a7e0e90f882
55d4ce29ce534437fc1cfbe6813fb8cd4d2da627
/src/common/engine/engine_resources.hpp
baf3168d74c3aae3a88bb006b3c8b4f4a3056b7c
[]
no_license
legendma/sojourn
21ad15bb52d24abcafcd5e172d48217d0e1444af
19dba294be71bcf3652db8d8021ffb54fb8c8655
refs/heads/master
2022-12-11T07:27:24.454915
2022-12-04T13:55:19
2022-12-04T13:55:19
140,258,654
1
0
null
null
null
null
UTF-8
C++
false
false
1,665
hpp
engine_resources.hpp
#pragma once namespace Engine { class Resources; class ResourceFolder; /* registry base path */ static const wchar_t *BASE_REGISTRY_PATH = L"SOFTWARE\\WOW6432Node\\Umbrellas Required\\Sojourn\\Main\\"; class ResourceFile { friend class ResourceFolder; public: ~ResourceFile() {}; private: ResourceFile( const std::wstring &filename_w_path ); void OpenForRead(); void ReadBytes( byte * output, size_t size ); std::streamsize Length(); std::wstring m_filename; std::ios_base::openmode m_mode; std::ofstream m_write; std::ifstream m_read; }; typedef enum { RESOURCE_FOLDER_SCRIPTS, RESOURCE_FOLDER_TEXTURES, RESOURCE_FOLDER_SHADERS } ResourceFolderType; class ResourceFolder { friend class Resources; public: ~ResourceFolder(){}; Concurrency::task<std::vector<byte>> ReadDataAsync( const std::wstring &filename ); private: ResourceFolder() {}; void Open( const std::wstring &location ); static Concurrency::task<std::shared_ptr<Engine::ResourceFile>> GetFileAsync( const std::wstring &filename_w_path ); static bool PathExists( const std::wstring &location ); std::wstring m_path; }; class Resources { public: static std::wstring RegGetString( HKEY hKey, const std::wstring &subKey, const std::wstring &value ); static std::shared_ptr<Engine::ResourceFolder> OpenFolder( Engine::ResourceFolderType folder ); private: Resources() = delete; ~Resources() = delete; }; };
91142ebecd7cdc6d59d71b68e3516b766117aa46
54f352a242a8ad6ff5516703e91da61e08d9a9e6
/Source Codes/AtCoder/abc037/D/769193.cpp
879fec9c4910dac4896b27d59de7f43631a3695e
[]
no_license
Kawser-nerd/CLCDSA
5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb
aee32551795763b54acb26856ab239370cac4e75
refs/heads/master
2022-02-09T11:08:56.588303
2022-01-26T18:53:40
2022-01-26T18:53:40
211,783,197
23
9
null
null
null
null
UTF-8
C++
false
false
984
cpp
769193.cpp
#include <iostream> int H, W; int a[1010][1010]; int done[1010][1010]; int memo[1010][1010]; int dh[] = {-1, 1, 0, 0}; int dw[] = {0, 0, -1, 1}; int solve(int h, int w) { if (done[h][w] == 0) { done[h][w] = 1; for (int i = 0; i < 4; ++i) { int hh = h + dh[i]; int ww = w + dw[i]; if (hh >= 0 and hh < H and ww >= 0 and ww < W and a[hh][ww] > a[h][w]) { memo[h][w] = (memo[h][w] + solve(hh, ww)) % 1000000007; } } } return memo[h][w]; } int main() { scanf("%d %d", &H, &W); for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { scanf("%d", &a[i][j]); done[i][j] = 0; memo[i][j] = 1; } } for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { solve(i, j); } } int ans = 0; for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { ans = (ans + memo[i][j]) % 1000000007; } } printf("%d\n", ans); }
01dc69bdc3348319de5ba4a9d9f4a8211b37e9a6
4426844e32dbcdb0cfd0b8e403d8ec1fd1bfe972
/Hotel.cpp
6386716e7b6e6e61298c0a3e2b602e8672261742
[ "MIT" ]
permissive
busebd12/Hotel_Reservation_System
6455b47a8012aac80c2e2914cc1afb39da88c54d
eaecb7abb2692679461586cf0d9cdf4ea1dd99fa
refs/heads/master
2021-01-10T12:58:11.144606
2017-03-14T01:48:25
2017-03-14T01:48:25
43,709,305
0
0
null
null
null
null
UTF-8
C++
false
false
48,305
cpp
Hotel.cpp
#include "Hotel.h" using namespace std; Hotel::Hotel(const string Name):name(Name) {} Hotel::Hotel() {} void Hotel::fill() { createSingleRooms(); createDoubleRooms(); createQueenRooms(); createKingRooms(); createSuiteRooms(); } void Hotel::createSingleRooms() { int x; for(x=0;x<40;++x) { singleRooms.emplace_back(move(make_unique<SingleRoom>("Single", 120))); } } void Hotel::createDoubleRooms() { int x; for(x=0;x<40;++x) { doubleRooms.emplace_back(move(make_unique<DoubleRoom>("Double", 170))); } } void Hotel::createQueenRooms() { int x; for(x=0;x<40;++x) { queenRooms.emplace_back(move(make_unique<QueenRoom>("Queen", 220))); } } void Hotel::createKingRooms() { int x; for(x=0;x<40;++x) { kingRooms.emplace_back(move(make_unique<KingRoom>("King", 270))); } } void Hotel::createSuiteRooms() { int x; for(x=0;x<40;++x) { suiteRooms.emplace_back(move(make_unique<Suite>("Suite", 320))); } } void Hotel::removeSingleRoom() { singleRooms.pop_back(); } void Hotel::removeDoubleRoom() { doubleRooms.pop_back(); } void Hotel::removeQueenRoom() { queenRooms.pop_back(); } void Hotel::removeKingRoom() { kingRooms.pop_back(); } void Hotel::removeSuiteRoom() { suiteRooms.pop_back(); } bool Hotel::noMoreSingleRooms() { if(singleRooms.size()==0) { return true; } return false; } bool Hotel::noMoreDoubleRooms() { if(doubleRooms.size()==0) { return true; } return false; } bool Hotel::noMoreQueenRooms() { if(queenRooms.size()==0) { return true; } return false; } bool Hotel::noMoreKingRooms() { if(kingRooms.size()==0) { return true; } return false; } bool Hotel::noMoreSuiteRooms() { if(suiteRooms.size()==0) { return true; } return false; } void Hotel::doRoomReservation(const int NumberOfGuests, Calendar & calendar, Receipt & receipt) { int roomChoice, secondRoomChoice; string room=""; bool successfullyChoseRoom=false; do { if(room=="") { cout << "\n"; cout << "Ah, I see that " << NumberOfGuests << " person(s) will be staying with us during your visit." << "\n"; cout << "\n"; cout << "Please select from the various room options we have to offer:" << "\n"; cout << "\n"; cout << "Single room, Double room, Queen room, King room, or our Suite style rooms." << "\n"; cout << "\n"; cout << "Press 1 for a Single room, which includes one bed and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 2 for a Double room, which includes two beds and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 3 for a Queen room, which includes a queen sized bed and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 4 for a King room, which includes a king sized bed and the rest of your usual hotel amenitites." << "\n"; cout << "\n"; cout << "Press 5 for a Suite style room, which can accomedate three or more people" << "\n"; cin >> roomChoice; } else if(room=="single") { cout << "Terribly sorry, but it appears we have no more Single rooms. Would you like to reserve another type of room?" << "\n"; cout << "\n"; cout << "Press 1 for yes or 2 for no." << "\n"; cin >> secondRoomChoice; if(secondRoomChoice==1) { cout << "\n"; cout << "Press 2 for a Double room, which includes two beds and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 3 for a Queen room, which includes a queen sized bed and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 4 for a King room, which includes a king sized bed and the rest of your usual hotel amenitites." << "\n"; cout << "\n"; cout << "Press 5 for a Suite style room, which can accomedate three or more people" << "\n"; cin >> roomChoice; } else { cout << "We are terribly sorry that we cannot accomedate you! Please come see us again." << "\n"; exit(0); } } else if(room=="double") { cout << "Terribly sorry, but it appears we have no more Double rooms. Would you like to reserve another type of room?" << "\n"; cout << "\n"; cout << "Press 1 for yes or 2 for no." << "\n"; cin >> secondRoomChoice; if(secondRoomChoice==1) { cout << "\n"; cout << "Press 1 for a Single room, which includes two beds and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 3 for a Queen room, which includes a queen sized bed and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 4 for a King room, which includes a king sized bed and the rest of your usual hotel amenitites." << "\n"; cout << "\n"; cout << "Press 5 for a Suite style room, which can accomedate three or more people" << "\n"; cin >> roomChoice; } else { cout << "We are terribly sorry that we cannot accomedate you! Please come see us again." << "\n"; exit(0); } } else if(room=="Queen") { cout << "Terribly sorry, but it appears we have no more Queen rooms. Would you like to reserve another type of room?" << "\n"; cout << "\n"; cout << "Press 1 for yes or 2 for no." << "\n"; cin >> secondRoomChoice; if(secondRoomChoice==1) { cout << "\n"; cout << "Press 1 for a Single room, which includes two beds and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 2 for a Double room, which includes a queen sized bed and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 4 for a King room, which includes a king sized bed and the rest of your usual hotel amenitites." << "\n"; cout << "\n"; cout << "Press 5 for a Suite style room, which can accomedate three or more people" << "\n"; cin >> roomChoice; } else { cout << "We are terribly sorry that we cannot accomedate you! Please come see us again." << "\n"; exit(0); } } else if(room=="king") { cout << "Terribly sorry, but it appears we have no more King rooms. Would you like to reserve another type of room?" << "\n"; cout << "\n"; cout << "Press 1 for yes or 2 for no." << "\n"; cin >> secondRoomChoice; if(secondRoomChoice==1) { cout << "\n"; cout << "Press 1 for a Single room, which includes two beds and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 2 for a Double room, which includes a queen sized bed and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 3 for a Queen room, which includes a king sized bed and the rest of your usual hotel amenitites." << "\n"; cout << "\n"; cout << "Press 5 for a Suite style room, which can accomedate three or more people" << "\n"; cin >> roomChoice; } else { cout << "We are terribly sorry that we cannot accomedate you! Please come see us again." << "\n"; exit(0); } } else if(room=="suite") { cout << "Terribly sorry, but it appears we have no more Souble rooms. Would you like to reserve another type of room?" << "\n"; cout << "\n"; cout << "Press 1 for yes or 2 for no." << "\n"; cin >> secondRoomChoice; if(secondRoomChoice==1) { cout << "\n"; cout << "Press 1 for a Single room, which includes two beds and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 2 for a Double room, which includes a queen sized bed and the rest of your usual hotel amenities." << "\n"; cout << "\n"; cout << "Press 3 for a Queen room, which includes a king sized bed and the rest of your usual hotel amenitites." << "\n"; cout << "\n"; cout << "Press 4 for a King style room, which can accomedate three or more people" << "\n"; cin >> roomChoice; } else { cout << "We are terribly sorry that we cannot accomedate you! Please come see us again." << "\n"; exit(0); } } switch(roomChoice) { case 1: if(noMoreSingleRooms()==true) { room+="single"; break; } receipt.setRoomType("Single"); receipt.setRoomPrice(120); doReserveSingleRoom(calendar, receipt); break; case 2: if(noMoreDoubleRooms()==true) { room+="double"; break; } receipt.setRoomType("Double"); receipt.setRoomPrice(170); doReserveDoubleRoom(calendar, receipt); break; case 3: if(noMoreQueenRooms()==true) { room+="queen"; break; } receipt.setRoomType("Queen"); receipt.setRoomPrice(220); doReserveQueenRoom(calendar, receipt); break; case 4: if(noMoreKingRooms()==true) { room+="king"; break; } receipt.setRoomType("King"); receipt.setRoomPrice(270); doReserveKingRoom(calendar, receipt); break; case 5: if(noMoreSuiteRooms()==true) { room+="suite"; break; } receipt.setRoomType("Suite"); receipt.setRoomPrice(320); doReserveSuite(calendar, receipt); break; default: break; } } while(successfullyChoseRoom==false); } void Hotel::doReserveSingleRoom(Calendar & calendar, Receipt & receipt) { removeSingleRoom(); doChooseMonth(calendar, receipt); } void Hotel::doReserveDoubleRoom(Calendar & calendar, Receipt & receipt) { removeDoubleRoom(); doChooseMonth(calendar, receipt); } void Hotel::doReserveQueenRoom(Calendar & calendar, Receipt & receipt) { removeQueenRoom(); doChooseMonth(calendar, receipt); } void Hotel::doReserveKingRoom(Calendar & calendar, Receipt & receipt) { removeKingRoom(); doChooseMonth(calendar, receipt); } void Hotel::doReserveSuite(Calendar & calendar, Receipt & receipt) { removeSuiteRoom(); doChooseMonth(calendar, receipt); } void Hotel::doChooseJanuaryDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " days you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInJanuary(date)==false) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeJanuaryDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "January " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseFebruaryDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInFebruary(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeFebruaryDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "February " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseMarchDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInMarch(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeMarchDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "March " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseAprilDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInApril(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeAprilDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "April " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseMayDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInMay(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeMayDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "May " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseJuneDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInJune(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeJuneDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "June " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseJulyDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInJuly(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeJulyDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "July " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseAugustDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInAugust(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeAugustDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "August " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseSeptemberDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInSeptember(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeSeptemberDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "September " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseOctoberDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInOctober(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeOctoberDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "October " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseNovemberDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInNovember(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeNovemberDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "November " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseDecemberDates(Calendar & calendar, Receipt & receipt) { int lengthOfStay, date, choice; int foundDateCount=0; bool changeDates; bool allDatesFound=false; vector<int> datesNotFound; do { if(changeDates==false) { cout << "Now, please type in the number of days you will be staying with us." << "\n"; cin >> lengthOfStay; } else { cout << "\n"; std::cout << "Now, please kindly enter the number of days you would like to stay with us." << "\n"; cin >> lengthOfStay; } int i; for(i=1;i<lengthOfStay+1;++i) { cout << "\n"; cout << "Kindly enter date number " << i << " of the " << lengthOfStay << " dates you will be staying with us." << "\n"; cin >> date; if(calendar.dateExistsInDecember(date)==true) { datesNotFound.emplace_back(date); } else { foundDateCount++; receipt.addDate(date); calendar.removeDecemberDate(date); } } if(foundDateCount!=lengthOfStay) { cout << "\n"; cout << "We are sorry, but we were unable to find the room you requested on the following dates:" << "\n"; for(const auto & date : datesNotFound) { cout << "December " << date << "\n"; } cout << "\n"; cout << "Would you like to change the dates of your reservation or cancel your reservation?" << "\n"; cout << "Press 1 to change the dates for your reservation or 2 to cancel reservation." << "\n"; cin >> choice; if(choice==1) { changeDates=true; } else if(choice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else { cout << "\n"; cout << "Successfully booked you for the dates you selected!" << "\n"; allDatesFound=true; } } while(allDatesFound==false); cout << "\n"; doCheckOut(receipt); } void Hotel::doChooseMonth(Calendar& calendar, Receipt& receipt) { cout << "\n"; int monthChoice, secondMonthChoice; bool monthAvailable=false; string month=""; do { if(month=="") { cout << "Now that you've chosen your room type, please select the month you will be staying with us." << "\n"; cout << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 5 for May, 6 for June, 7 for July, 8 for August, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; cout << "\n"; } else if(month=="January") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 2 for February, 3 for March, 4 for April, 5 for May, 6 for June, 7 for July, 8 for August, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again" << "\n"; exit(0); } } else if(month=="February") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 3 for March, 4 for April, 5 for May, 6 for June, 7 for July, 8 for August, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="March") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 4 for April, 5 for May, 6 for June, 7 for July, 8 for August, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="April") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 5 for May, 6 for June, 7 for July, 8 for August, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="May") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 6 for June, 7 for July, 8 for August, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="June") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 5 for May, 7 for July, 8 for August, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="July") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 5 for May, 6 for June, 8 for August, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="August") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 5 for May, 6 for June, 7 for July, 9 for September, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="September") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 5 for May, 6 for June, 7 for July, 8 for August, 10 for October, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="October") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 5 for May, 6 for June, 7 for July, 8 for August, 9 for September, 11 for November, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="November") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 5 for May, 6 for June, 7 for July, 8 for August, 9 for September, 10 for October, or 12 for December." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } else if(month=="December") { cout << "We are terribly sorry, but it appears we are completely booked in the month of " << month << "." << "\n"; cout << "Would you like to make a reservation for another month? Press 1 for yes or 2 for no." << "\n"; cin >> secondMonthChoice; if(secondMonthChoice==1) { cout << "Please select another month." << "\n"; cout << "Type 1 for January, 2 for February, 3 for March, 4 for April, 5 for May, 6 for June, 7 for July, 8 for August, 9 for September, 10 for October, or 11 for November." << "\n"; cin >> monthChoice; } else if(secondMonthChoice==2) { cout << "We are terribly sorry that we couldn't accomedate you. Please come see us again." << "\n"; exit(0); } } switch(monthChoice) { case 1: if(calendar.isJanuaryFull()==true) { month+="January"; break; } receipt.setMonth("January"); doChooseJanuaryDates(calendar, receipt); monthAvailable=true; break; case 2: if(calendar.isFebruaryFull()==true) { month+="February"; break; } receipt.setMonth("February"); doChooseFebruaryDates(calendar, receipt); monthAvailable=true; break; case 3: if(calendar.isMarchFull()==true) { month+="March"; break; } receipt.setMonth("March"); doChooseMarchDates(calendar, receipt); break; case 4: if(calendar.isAprilFull()==true) { month+="April"; } receipt.setMonth("April"); doChooseJanuaryDates(calendar, receipt); monthAvailable=true; break; case 5: if(calendar.isMayFull()==true) { month+="May"; break; } receipt.setMonth("May"); doChooseMayDates(calendar, receipt); monthAvailable=true; break; case 6: if(calendar.isJuneFull()==true) { month+="June"; break; } receipt.setMonth("June"); doChooseJuneDates(calendar, receipt); monthAvailable=true; break; case 7: if(calendar.isJulyFull()==true) { month+="July"; break; } receipt.setMonth("July"); doChooseJulyDates(calendar, receipt); monthAvailable=true; break; case 8: if(calendar.isAugustFull()==true) { month+="August"; break; } receipt.setMonth("August"); doChooseAugustDates(calendar, receipt); monthAvailable=true; break; case 9: if(calendar.isSeptemberFull()==true) { month+="September"; break; } receipt.setMonth("September"); doChooseSeptemberDates(calendar, receipt); monthAvailable=true; break; case 10: if(calendar.isOctoberFull()==true) { month+="October"; break; } receipt.setMonth("October"); doChooseOctoberDates(calendar, receipt); monthAvailable=true; break; case 11: if(calendar.isNovemberFull()==true) { month+="November"; break; } receipt.setMonth("November"); doChooseNovemberDates(calendar, receipt); monthAvailable=true; break; case 12: if(calendar.isDecemberFull()==true) { month+="December"; break; } receipt.setMonth("December"); doChooseDecemberDates(calendar, receipt); monthAvailable=true; break; } } while(monthAvailable==false); } void Hotel::doCheckOut(Receipt & receipt) { int creditCardChoice, cardProvider, cardNumber, securityCode; cout << "Almost done making your reservation!" << "\n"; cout << "\n"; cout << "Now, please choose your payment method:" << "\n"; cout << "\n"; do { cout << "Press 1 for Credit Card or press 2 for Debit Card" << "\n"; cin >> creditCardChoice; switch(creditCardChoice) { case 1: receipt.setPaymentMethod("Credit"); break; case 2: receipt.setPaymentMethod("Debit"); break; default: cout << "\n"; cout << "Please select either credit or debit" << "\n"; break; } } while(creditCardChoice>2); cout << "\n"; do { cout << "Now, please choose your card provider. We accept the following: Visa, Master Card, American Express, and Capital One." << "\n"; cout << "Press 1 for Visa, 2 for Master Card, 3 for American Express, or 4 for Capital One" << "\n"; cin >> cardProvider; switch(cardProvider) { case 1: receipt.setCreditCardType("Visa"); break; case 2: receipt.setCreditCardType("Master Card"); break; case 3: receipt.setCreditCardType("American Express"); break; case 4: receipt.setCreditCardType("Capital One"); break; default: cout << "\n"; cout << "Please select either Visa, Master Card, American Express, or Capital One." << "\n"; cout << "\n"; break; } } while(cardProvider>4); cout << "\n"; cout << "Now, enter your card number (with no spaces)." << "\n"; cin >> cardNumber; receipt.setCreditCardNumber(cardNumber); cout << "\n"; cout << "Please enter the security code on your card (the three numbers on the back of the card)." << "\n"; cin >> securityCode; cout << "\n"; cout << "One moment please, processing your request..." << "\n"; std::this_thread::sleep_for(std::chrono::seconds(1)); std::cout << "Done!" << "\n"; std::cout << "\n"; doShowReservation(receipt); } void Hotel::doShowReservation(Receipt & receipt) { int grandTotal=(receipt.getRoomPrice()*receipt.getDates().size()); cout << "\n"; cout << "Thank you very much for choosing to stay with us!" << "\n"; cout << "\n"; cout << "Below, you will find a copy of your reservation for your personal records." << "\n"; cout << " \t \t \t \t \t Your reservation" << "\n"; cout << " \t \t \t \t \t ________________" << "\n"; cout << "\n"; cout << " \t \t \t \t \t Room type: " << receipt.getRoomType() << "\n"; cout << "\n"; cout << " \t \t \t \t \t Price per night: " << receipt.getRoomPrice() << "\n"; cout << "\n"; cout << "\t \t \t \t \t Dates for Reservation:" << "\n"; for(const auto & date : receipt.getDates()) { cout << "\t \t \t \t \t " << receipt.getMonth() << " " << date << "\n"; } cout << "\n"; cout << " \t \t \t \t \t Payment Type: " << receipt.getPaymentMethod() << "\n"; cout << "\n"; cout << "\t \t \t \t \t Card provider:" << receipt.getCreditCardType() << "\n"; cout << "\n"; cout << " \t \t \t \t \t Card Number: " << receipt.getCreditCardNumber() << "\n"; cout << "\n"; cout << "\t \t \t \t \t Grand Total: " << "$" << grandTotal << "\n"; cout << "\n"; cout << "\t \t \t \t \t Once again, thank you very much for choosing to stay with us and we look forward to seeing you on: " << receipt.getMonth() << " " << receipt.getDates()[0] << "\n"; exit(0); } void Hotel::setName(const std::string Name) { name=Name; } string Hotel::getName() const { return name; } deque<unique_ptr<SingleRoom>> const & Hotel::getSingleRooms() const { return singleRooms; } deque<unique_ptr<DoubleRoom>> const & Hotel::getDoubleRooms() const { return doubleRooms; } deque<unique_ptr<QueenRoom>> const & Hotel::getQueenRooms() const { return queenRooms; } deque<unique_ptr<KingRoom>> const & Hotel::getKingRooms() const { return kingRooms; } deque<unique_ptr<Suite>> const & Hotel::getSuiteRooms() const { return suiteRooms; }
e2492551ede976d3069044adde9365f67317d072
e970d084831a6f7d265006ccbfe22d03742e44e7
/agent/src/perf/sigar/CpuUsage.cpp
22cc6037fc1d707761a7fcfbcbe5c479195d695b
[]
no_license
xsxusheng/agent
c7bc94fab8f0cabb3c2a29a86d1298b37187e6cb
db30e0faa90fb5c1d9289b31ffe10f677de59a70
refs/heads/master
2021-01-25T10:55:48.717816
2018-04-24T02:19:04
2018-04-24T02:19:04
123,375,450
0
1
null
null
null
null
UTF-8
C++
false
false
13,537
cpp
CpuUsage.cpp
/********************************************************** * File: CpuUsage.cpp * Function: Sigar适配 *********************************************************/ #include "CpuUsage.h" #include "MacroDefine.h" #include "sv_log.h" #include "TimeUtils.h" #include "SigarAdapt.h" #if 0 #endif #if 0 #endif CCpuPerc::CCpuPerc() { m_nUser = 0; m_nSys = 0; m_nNice = 0; m_nIdle = 0; m_nWait = 0; m_nIrq = 0; m_nSoftIrq = 0; m_nStolen = 0; m_nTotal = 0; m_fCombined = 0; } CCpuPerc::~CCpuPerc() { } CCpuPerc& CCpuPerc::operator=(CCpuPerc& cpuPerc) { m_nUser = cpuPerc.m_nUser; m_nSys = cpuPerc.m_nSys; m_nNice = cpuPerc.m_nNice; m_nIdle = cpuPerc.m_nIdle; m_nWait = cpuPerc.m_nWait; m_nIrq = cpuPerc.m_nIrq; m_nSoftIrq = cpuPerc.m_nSoftIrq; m_nStolen = cpuPerc.m_nStolen; m_nTotal = cpuPerc.m_nTotal; m_fCombined = cpuPerc.m_fCombined; return *this; } #if 0 #endif CCpuUsage::CCpuUsage() { unsigned long num = 0; m_nCpuNum = 0; m_pCpuPercs = NULL; num = GetCpuPercNum(); if ((num > 0) && (num <= MAX_CPU_PERCS)) { m_pCpuPercs = new CCpuPerc[num]; if (m_pCpuPercs != NULL) { m_nCpuNum = num; } } } CCpuUsage::~CCpuUsage() { if (m_pCpuPercs != NULL) { delete []m_pCpuPercs; m_pCpuPercs = NULL; } m_nCpuNum = 0; } CCpuPerc *CCpuUsage::GetCpuPerc(unsigned long index) { if ((index < m_nCpuNum) && (m_pCpuPercs != NULL)) { return &m_pCpuPercs[index]; } return NULL; } void CCpuUsage::SetCpuPerc(CCpuPerc& cpuPerc, unsigned long index) { if ((index < m_nCpuNum) && (m_pCpuPercs != NULL)) { m_pCpuPercs[index] = cpuPerc; } } void CCpuUsage::SetCpuPerc(sigar_cpu_t& cpu, unsigned long index) { if ((index < m_nCpuNum) && (m_pCpuPercs != NULL)) { m_pCpuPercs[index].SetUser(cpu.user); m_pCpuPercs[index].SetSys(cpu.sys); m_pCpuPercs[index].SetNice(cpu.nice); m_pCpuPercs[index].SetIdle(cpu.idle); m_pCpuPercs[index].SetWait(cpu.wait); m_pCpuPercs[index].SetIrq(cpu.irq); m_pCpuPercs[index].SetSoftIrq(cpu.soft_irq); m_pCpuPercs[index].SetStolen(cpu.stolen); m_pCpuPercs[index].SetTotal(cpu.total); } } unsigned long CCpuUsage::GetCpuPercNum() { int ret = 0; unsigned long num = 0; sigar_cpu_info_list_t tCpu; if (SIGAR_OK != (ret = sigar_cpu_info_list_get(CSigar::GetSigar(), &tCpu))) { SV_ERROR("sigar_cpu_info_list_get return = %d (%s).\n", ret, sigar_strerror(CSigar::GetSigar(), ret)); return 0; } num = tCpu.number; sigar_cpu_info_list_destroy(CSigar::GetSigar(), &tCpu); //SV_DEBUG("Get Cpu Perc number: %lu,%lu.", num, tCpu.size); return num; } int CCpuUsage::GetCpuStat() { int ret = 0; unsigned long i = 0; sigar_cpu_list_t tCpuList; if (m_pCpuPercs == NULL) { SV_ERROR("Input para is null."); return -1; } if (SIGAR_OK != (ret = sigar_cpu_list_get(CSigar::GetSigar(), &tCpuList))) { SV_ERROR("sigar_cpu_list_get return = %d (%s).\n", ret, sigar_strerror(CSigar::GetSigar(), ret)); return -1; } for (i = 0; i < tCpuList.number; i++) { SetCpuPerc(tCpuList.data[i], i); } sigar_cpu_list_destroy(CSigar::GetSigar(), &tCpuList); return 0; } int CCpuUsage::GetCpuUsage(CCpuPerc **pCpuPers, unsigned long *pOutCpuNum) { int i = 0; int tCpuNum = 0; unsigned long long totalOld = 0; unsigned long long totalCur = 0; unsigned long long idleOld = 0; unsigned long long idleCur = 0; CCpuPerc *tCpuPerc = NULL; CCpuPerc *tOldCpuPerc = NULL; CCpuPerc *tCurCpuPerc = NULL; CCpuUsage tOldCpuUsage; CCpuUsage tCurCpuUsage; if (pCpuPers == NULL || pOutCpuNum == NULL) { SV_ERROR("Input para is null..."); return -1; } /*CPU需要获取2次,取其中差值*/ tOldCpuUsage.GetCpuStat(); CTime::msecSleep(100); tCurCpuUsage.GetCpuStat(); if ((tCurCpuUsage.m_nCpuNum <= 0) || (tOldCpuUsage.m_nCpuNum != tCurCpuUsage.m_nCpuNum)) { SV_ERROR("Get cpu stat info error."); return -1; } tCpuNum = tOldCpuUsage.m_nCpuNum < tCurCpuUsage.m_nCpuNum ? tOldCpuUsage.m_nCpuNum : tCurCpuUsage.m_nCpuNum; *pCpuPers = new CCpuPerc[tCpuNum]; if (*pCpuPers == NULL) { SV_ERROR("GetCpuUsage: New CCpuPerc error."); return -1; } *pOutCpuNum = tCpuNum; for (i = 0; i < tCpuNum; i++) { tCpuPerc = &(*pCpuPers)[i]; tOldCpuPerc = tOldCpuUsage.GetCpuPerc(i); tCurCpuPerc = tCurCpuUsage.GetCpuPerc(i); idleOld = tOldCpuPerc->GetIdle(); idleCur = tCurCpuPerc->GetIdle(); totalOld = tOldCpuPerc->GetUser() + tOldCpuPerc->GetSys() + tOldCpuPerc->GetNice() + tOldCpuPerc->GetIdle() + tOldCpuPerc->GetWait() + tOldCpuPerc->GetIrq() + tOldCpuPerc->GetSoftIrq() + tOldCpuPerc->GetStolen(); totalCur = tCurCpuPerc->GetUser() + tCurCpuPerc->GetSys() + tCurCpuPerc->GetNice() + tCurCpuPerc->GetIdle() + tCurCpuPerc->GetWait() + tCurCpuPerc->GetIrq() + tCurCpuPerc->GetSoftIrq() + tCurCpuPerc->GetStolen(); if ((totalCur - totalOld) > 0) { tCurCpuPerc->SetCombined(double((totalCur - totalOld) - (idleCur - idleOld)) / double(totalCur - totalOld)); } else { tCurCpuPerc->SetCombined(0.0); } *tCpuPerc = *tCurCpuPerc; //SV_LOG("tCpuPerc=%f, tCurCpuPerc=%f.", tCpuPerc->GetCombined(), tCurCpuPerc->GetCombined()); } return 0; } string CCpuUsage::GetCpuUsageString() { unsigned long i = 0; unsigned long tCpuNum = 0; char tStr[64] = {0}; string usageStr(""); CCpuPerc *tCpuPerc = NULL; if (CCpuUsage::GetCpuUsage(&tCpuPerc, &tCpuNum) != 0) { printf("GetCpuUsage error."); return ""; } if (tCpuPerc == NULL) { return ""; } if (tCpuNum <= 0) { delete []tCpuPerc; tCpuPerc = NULL; return ""; } for (i = 0; i < tCpuNum; i++) { if (i < (tCpuNum - 1)) { memset(tStr, 0, sizeof(tStr)); sprintf(tStr, "%d,", (int)(tCpuPerc[i].GetCombined() * 100.0)); usageStr.append(tStr); } else { memset(tStr, 0, sizeof(tStr)); sprintf(tStr, "%d", (int)(tCpuPerc[i].GetCombined() * 100.0)); usageStr.append(tStr); } } delete []tCpuPerc; tCpuPerc = NULL; tCpuNum = 0; return usageStr; } int CCpuUsage::GetCpuPercsUsage(double **pUsage, unsigned long *pOutLen) { unsigned long i = 0; unsigned long tCpuNum = 0; CCpuPerc *tCpuPerc = NULL; if (pUsage == NULL || pOutLen == NULL) { SV_FATAL("Input para is null."); return -1; } if (CCpuUsage::GetCpuUsage(&tCpuPerc, &tCpuNum) != 0) { SV_ERROR("GetCpuUsage error."); return -1; } if (tCpuPerc == NULL) { SV_ERROR("GetCpuUsage tCpuPerc == NULL."); return -1; } if ((tCpuNum <= 0) || (tCpuNum > MAX_CPU_PERCS)) { delete []tCpuPerc; tCpuPerc = NULL; SV_ERROR("GetCpuUsage tCpuNum=%lu.", tCpuNum); return -1; } *pUsage = new double[tCpuNum]; if (*pUsage == NULL) { delete []tCpuPerc; tCpuPerc = NULL; SV_ERROR("Malloc error."); return -1; } *pOutLen = tCpuNum; for (i = 0; i < tCpuNum; i++) { (*pUsage)[i] = tCpuPerc[i].GetCombined(); } delete []tCpuPerc; tCpuPerc = NULL; tCpuNum = 0; return 0; } double CCpuUsage::GetCpuUsageTotal() { unsigned long i = 0; unsigned long tCpuNum = 0; double usage = 0; double total = 0.0; CCpuPerc *tCpuPerc = NULL; if (GetCpuUsage(&tCpuPerc, &tCpuNum) != 0) { SV_ERROR("GetCpuUsage error."); return 0.0; } if (tCpuPerc == NULL) { SV_ERROR("GetCpuUsage tCpuPerc=NULL error."); return 0.0; } if (tCpuNum <= 0) { delete []tCpuPerc; tCpuPerc = NULL; tCpuNum = 0; SV_ERROR("GetCpuUsage tCpuNum=%lu error.", tCpuNum); return 0.0; } for (i = 0; i < tCpuNum; i++) { total += tCpuPerc[i].GetCombined(); //SV_LOG("GetCpuUsage: GetCombined=%f.", tCpuPerc[i].GetCombined()); } usage = (double)(total / (tCpuNum * 1.0)); usage = (int)(usage * 100) / 100.0; //SV_LOG("GetCpuUsage: Value=%f,total=%f,num=%lu.", usage, total, tCpuNum); delete []tCpuPerc; tCpuPerc = NULL; tCpuNum = 0; return usage; } int CCpuUsage::GetCpuBaseInfo() { int ret = 0; sigar_cpu_info_list_t tCpuInfo; if (SIGAR_OK != (ret = sigar_cpu_info_list_get(CSigar::GetSigar(), &tCpuInfo))) { sigar_cpu_info_list_destroy(CSigar::GetSigar(), &tCpuInfo); printf("sigar_cpu_info_list_get return = %d (%s).\n", ret, sigar_strerror(CSigar::GetSigar(), ret)); return -1; } sigar_cpu_info_list_destroy(CSigar::GetSigar(), &tCpuInfo); return 0; } #if 0 #endif CCpuInfo::CCpuInfo() { m_nMhz = 0; m_nMhzMax = 0; m_nMhzMin = 0; m_nTotalSockets = 0; m_nTotalCores = 0; m_nCoresPerSocket = 0; m_nCacheSize = 0; memset(m_szVendor, 0, sizeof(m_szVendor)); memset(m_szModel, 0, sizeof(m_szModel)); } CCpuInfo::~CCpuInfo() { } CCpuInfoList::CCpuInfoList() { unsigned long num = 0; m_nCpuNum = 0; m_pCpuInfoList = NULL; num = GetCpuInfoNum(); if (num > 0) { m_pCpuInfoList = new CCpuInfo[num]; if (m_pCpuInfoList != NULL) { m_nCpuNum = num; } } } CCpuInfoList::~CCpuInfoList() { if (m_pCpuInfoList != NULL) { delete []m_pCpuInfoList; m_pCpuInfoList = NULL; } m_nCpuNum = 0; } CCpuInfo* CCpuInfoList::GetCpuInfo(unsigned long index) { if ((index < m_nCpuNum) && (m_pCpuInfoList != NULL)) { return &m_pCpuInfoList[index]; } return NULL; } void CCpuInfoList::SetCpuInfo(sigar_cpu_info_t& cpu, unsigned long index) { if ((index < m_nCpuNum) && (m_pCpuInfoList != NULL)) { m_pCpuInfoList[index].SetVendor(cpu.vendor); m_pCpuInfoList[index].SetModel(cpu.model); m_pCpuInfoList[index].SetMhz(cpu.mhz); m_pCpuInfoList[index].SetMhzMax(cpu.mhz_max); m_pCpuInfoList[index].SetMhzMin(cpu.mhz_min); m_pCpuInfoList[index].SetTotalSockets(cpu.total_sockets); m_pCpuInfoList[index].SetTotalCores(cpu.total_cores); m_pCpuInfoList[index].SetCoresPerSocket(cpu.cores_per_socket); m_pCpuInfoList[index].SetCacheSize(cpu.cache_size); } } unsigned long CCpuInfoList::GetCpuInfoNum() { int ret = 0; unsigned long num = 0; sigar_cpu_info_list_t tCpu; if (SIGAR_OK != (ret = sigar_cpu_info_list_get(CSigar::GetSigar(), &tCpu))) { printf("sigar_cpu_info_list_get return = %d (%s).\n", ret, sigar_strerror(CSigar::GetSigar(), ret)); return 0; } num = tCpu.number; sigar_cpu_info_list_destroy(CSigar::GetSigar(), &tCpu); return num; } int CCpuInfoList::GetCpuInfoList() { int ret = 0; unsigned long i = 0; sigar_cpu_info_list_t tCpuList; if (m_pCpuInfoList == NULL) { SV_ERROR("CCpuInfoList init error..."); return -1; } if (SIGAR_OK != (ret = sigar_cpu_info_list_get(CSigar::GetSigar(), &tCpuList))) { printf("sigar_cpu_list_get return = %d (%s).\n", ret, sigar_strerror(CSigar::GetSigar(), ret)); return -1; } for (i = 0; i < tCpuList.number; i++) { SetCpuInfo(tCpuList.data[i], i); } sigar_cpu_info_list_destroy(CSigar::GetSigar(), &tCpuList); return 0; } #if 0 #endif CLoadAvg::CLoadAvg() { memset(m_fLoadAvg, 0, sizeof(m_fLoadAvg)); } CLoadAvg::~CLoadAvg() { memset(m_fLoadAvg, 0, sizeof(m_fLoadAvg)); } double CLoadAvg::GetLoadAvg(int index) { if ((index >= 0) && (index < MAX_LOAD_AVG_NUM)) { return m_fLoadAvg[index]; } return 0.0; } int CLoadAvg::GetLoadAvgInfo() { int i = 0; int ret = 0; sigar_loadavg_t loadavg; if (SIGAR_OK == (ret = sigar_loadavg_get(CSigar::GetSigar(), &loadavg))) { for (i = 0; i < MAX_LOAD_AVG_NUM; i++) { m_fLoadAvg[i] = loadavg.loadavg[i]; } return 0; } printf("sigar_loadavg_get ret = %d (%s)\n", ret, sigar_strerror(CSigar::GetSigar(), ret)); return -1; }
49a2832e79c15b55cdc75586eab77f7b23ed90bd
30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a
/Graphs/1088.cpp
da3209f00ab98ca5395a14e60d9f96a170f328ad
[]
no_license
thegamer1907/Code_Analysis
0a2bb97a9fb5faf01d983c223d9715eb419b7519
48079e399321b585efc8a2c6a84c25e2e7a22a61
refs/heads/master
2020-05-27T01:20:55.921937
2019-11-20T11:15:11
2019-11-20T11:15:11
188,403,594
2
1
null
null
null
null
UTF-8
C++
false
false
437
cpp
1088.cpp
#include<stdio.h> int main() { int n,t,i,j; scanf("%d%d",&n,&t); int a[n-1]; for(i=0;i<n-1;i++) scanf("%d",&a[i]); for(i=1,j=1;i<=n;i=a[i-1]+j) { j=i; if(i>t) { printf("NO\n"); break; } else if(i==t) { printf("YES\n"); break; } } return 0; }
8d4db9a4ee0042bacc9231c1afe959bc31a21b2e
402e2a29c4387cb85eee1a4823ed5e88fd3af076
/Appointment System/include/Lecturer.h
e35074e187167c3966eb269510e968622360417a
[]
no_license
OluwaseunOjeleye/School-Projects
852f334fcd8eee8aa839eeeb2b584c0def6d1827
1a79e059c302a6465208461ad2e09790c6f4107b
refs/heads/master
2020-07-30T02:51:44.682658
2020-07-14T16:44:57
2020-07-14T16:44:57
210,061,738
3
0
null
null
null
null
UTF-8
C++
false
false
1,358
h
Lecturer.h
/****************************Lecturer***************************************/ #ifndef LECTURER_H_ #define LECTURER_H_ #include "Person.h" #include "Date_n_Time.h" #include "Appointment.h" #include <string> #include <vector> class Lecturer:public Person{ public: Lecturer(); Lecturer(const std::string Name, const std::string Surname, const std::string Email, const int phone, const int EmployeeNo, const std::string Dept, const std::string AcademicChair); ~Lecturer(); void setLecturer(const std::string Name, const std::string Surname, const std::string Email, const int phone, const int EmployeeNo, const std::string Dept, const std::string AcademicChair); void setAppointment(const int StudentNo, const int LecturerNo, const Date &date, const Time &StartTime, const Time &FinishTime); int getEmployeeNo() const; std::string getAcademicChair() const; std::string getDept() const; std::vector<Appointment> getLec_Appointments() const; int getno_Lec_Appointments() const; void deleteStudentAppointment(const int StudentNo); void deleteStudent_all_Appointment(const int StudentNo); void printInfo()const; private: int EmployeeNo; std::string AcademicChair; std::string Department; std::vector<Appointment> Lec_Appointments; int no_Lec_Appointments; //total number of appointments for lecturer }; #endif
5cccbe4d0f574ea5c67ab11ed1202b551ea6eb86
ef4b34c962d47e76dd12194b96318cb8cf21d8c8
/SimpleNeuralNetwork/Neuron.cpp
87027eeba60a44c48bf8be4194032b73924c1020
[]
no_license
bekor/NeuralNetworkLearning
cbd628e261b61c1eafad98348b76401a76fe0279
bdfde1cece4cb342e7799bf8a2c46c3e0fdc3ff4
refs/heads/master
2020-04-29T18:53:26.334920
2019-12-06T19:55:46
2019-12-06T19:55:46
176,337,006
0
0
null
null
null
null
UTF-8
C++
false
false
611
cpp
Neuron.cpp
#include "Neuron.h" Neuron::Neuron(double _bias, std::vector<double> _weights) : bias(_bias), weights(_weights) { linearActivation = 0.0; activation = 0.0; linearGradient = 0.0; } void Neuron::InitNeuron(double _bias, std::vector<double> _weights) { //TODO: init every property } double Neuron::CalculateForwardPropagation(std::shared_ptr<Sigma> sigma, std::vector<double> input) { double summ = 0; for (unsigned int ordinalIndex = 0; ordinalIndex < input.size(); ordinalIndex++) { summ += (input.at(ordinalIndex) * weights.at(ordinalIndex) + bias); } linearActivation = summ; return summ; }
affc33d380cf4dd430f82e0fdba7d59116a80423
1f7503bc62f2f30d1a4a6e4d76e88e2f5cc16089
/attractclass.cpp
7f88d16d731c226a36e60b7804759d5076f2e135
[]
no_license
CheolgyuJo/untitled
e3b035ca5fa17a5044127b24b3a0f61aeb2eaaba
55e08c766e650b68739ef31642641fa8ae114e84
refs/heads/master
2021-01-03T00:41:42.972518
2020-02-11T19:02:09
2020-02-11T19:02:09
239,841,109
0
0
null
null
null
null
UTF-8
C++
false
false
67
cpp
attractclass.cpp
// // Created by jo0707 on 2/3/2020. // #include "attractclass.h"
5f85f593dac5d38f7c5526578710410b30f3a5e8
105015b7def3fa7a77db1f3309c405cc83ae15d3
/Exam1/ECE141_HCamacho_Exam1/edgeWeightedGraph.h
e7e5fba41af3d6443d4f24bfe57ee0e6136921db
[]
no_license
Hannsel101/ECE141L-Computational-Algorithms-Lab
e70dda6f4f304f5995afa19e546d0b2d5a390e11
0a2a2069861d5f0cfcf25d972d91cd7f39aa4700
refs/heads/main
2023-03-17T11:34:03.149312
2021-03-24T11:35:20
2021-03-24T11:35:20
333,512,686
0
0
null
null
null
null
UTF-8
C++
false
false
1,512
h
edgeWeightedGraph.h
#pragma once #include "Edge.h" #include <vector> class EdgeWeightedGraph { private: int V; int E; vector<Edge>* adj; public: EdgeWeightedGraph(int V) { this->V = V; this->E = 0; adj = new vector<Edge>[V]; } EdgeWeightedGraph(string in) { fstream inFile(in); // Exit program is the file is not opened correctly if (!inFile.is_open() || !inFile.good()) { cout << "File Read Error\n"; exit(EXIT_FAILURE); } // Read in the number of vertices and edges in the graph inFile >> V >> E; // Create new adjacency list adj = new vector<Edge>[E]; // Add all the edges to the adjacency lists for (int i = 0; i < E; ++i) { // Add an edge int vertex, connection; float weight; inFile >> vertex >> connection >> weight; Edge newEdge(vertex, connection, weight); //Edge newEdge2(connection, vertex, weight); adj[vertex].push_back(newEdge); adj[connection].push_back(newEdge); } } int getV() { return V; } int getE() { return E; } void addEdge(Edge e) { int v = e.either(); int w = e.other(v); adj[v].push_back(e); adj[w].push_back(e); ++E; } vector<Edge> Adj(int v){ return adj[v]; } vector<Edge> edges() { vector<Edge> b; for (int v = 0; v < V; v++) for (Edge e : adj[v]) if (e.other(v) > v) b.push_back(e); return b; } void printEdges() { for (int v = 0; v < V; v++) for (Edge e : adj[v]) e.toString(); } ~EdgeWeightedGraph() {} };
6d1c7f8e6a1fb72aa3cce6db537c82961345a8fb
04946d1cad5503db57b2aa4e881495931dd18f10
/src/tf/read_tf.cpp
ad84f5319299ab6dad48235bcd79c21bd6ee997a
[ "MIT" ]
permissive
krishnateja95/AMDMIGraphX
54f508f7bbf3252949a7273366353ef39dcec165
15eb19873328fca07e8139c9e44dd088438981f8
refs/heads/master
2022-02-12T18:29:54.453110
2019-06-21T22:55:02
2019-06-21T22:55:02
198,292,505
0
0
NOASSERTION
2019-07-22T19:51:55
2019-07-22T19:51:55
null
UTF-8
C++
false
false
386
cpp
read_tf.cpp
#include <migraphx/tf.hpp> int main(int argc, char const* argv[]) { if(argc > 1) { bool is_nhwc = true; if(argc > 2) { if(strcmp(argv[2], "nchw") == 0) is_nhwc = false; } std::string file = argv[1]; auto prog = migraphx::parse_tf(file, is_nhwc); std::cout << prog << std::endl; } }
3d77b24a4d91838f890d0b1a4f052290dac07a8d
516dd9cb40b06b0e5c857e5e1db049e6566ca1ca
/boost/config/platform/win32.hpp
1c7ac59e2943d05b18c94985da911f47cb2885ce
[ "LicenseRef-scancode-boost-original" ]
permissive
ryanofsky/bufferman
300bd32737601a238f2306824d8c9d0a517be156
cd0d7d74597465aab29e7164d714d6b86e26b83f
refs/heads/master
2020-09-21T11:54:46.967253
2006-03-08T21:43:33
2006-03-08T21:43:33
66,043,034
4
0
null
null
null
null
UTF-8
C++
false
false
1,047
hpp
win32.hpp
// (C) Copyright Boost.org 2001. Permission to copy, use, modify, sell and // distribute this software is granted provided this copyright notice appears // in all copies. This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // See http://www.boost.org for most recent version. // Win32 specific config options: #define BOOST_PLATFORM "Win32" #if defined BOOST_DECL_EXPORTS # if defined BOOST_DECL_IMPORTS # error Not valid to define both BOOST_DECL_EXPORTS and BOOST_DECL_IMPORTS # endif # define BOOST_DECL __declspec(dllexport) #elif defined BOOST_DECL_IMPORTS # define BOOST_DECL __declspec(dllimport) #else # define BOOST_DECL #endif #if defined(__GNUC__) && !defined(BOOST_NO_SWPRINTF) # define BOOST_NO_SWPRINTF #endif // // Win32 will normally be using native Win32 threads, // but there is a pthread library avaliable as an option: // #ifndef BOOST_HAS_PTHREADS # define BOOST_HAS_WINTHREADS #endif // WEK: Added #define BOOST_HAS_FTIME
7437d4312d9c5d700e60799df681c8060aa396b7
2bc8e0c699961441fcc45903e4f202e4f0433a98
/shared/afmmstarvdt/include/fmm.h
a3c19c96e5dad91ea6214d733c0486bf4798d892
[]
no_license
rmast/Skeleton-corner-detection
7c9798c89ec2603a5ae8633e0aea57ae3bac1ff5
657a99e66d417794c249c5c2db129167e45f009d
refs/heads/master
2023-03-18T12:41:12.842408
2021-03-09T18:51:34
2021-03-09T18:51:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,928
h
fmm.h
#ifndef FMM_H #define FMM_H #include "genrl.h" #include "darray.h" #include "field.h" #include <map> class FastMarchingMethod { public: typedef FIELD<std::multimap<float,Coord>::iterator> POINTERS; FastMarchingMethod(FIELD<float>*,FLAGS*); //Ctor virtual ~FastMarchingMethod(); //Dtor virtual int execute(int&,int&,float=MYINFINITY); //Do diffusion init'd by ctor, return #iters executed, //#failures, #extracted-points. A stop-threshold can be given //to stop the marching when the constructed signal reaches it. //This is useful e.g. when we reconstruct a curve knowing the //distance to it (see FLAGS). void setVerbose(bool); //Tell if should display info during execution or not protected: virtual void //Called by execute() whenever a FAR_AWAY add_to_narrowband(int,int,int,int); //point is first added to narrowband. //First 2 args: point to be added. //Last 2 args: active-point-nb causing addition of above. //Subclasses could enhance this if they want //to do more stuff when adding a point to //the narrowband protected: void tag_nbs(int,int,int,int,Coord*,int&); virtual int diffuse(); virtual void solve(int,int,float,float,float&); std::multimap<float,Coord> map; //Narrowband points sorted in ascending distance order FIELD<float>* f; //Distance field FLAGS* flags; //Help field (FMM) POINTERS ptrs; // int N; //Max #iteations allowed int negd; //Number of failures in solve2() int nextr; //Number of extremum points detected in diffuse() float maxf; //Threshold to stop evolution (see execute()). bool verbose; //If true, displays info during execution }; inline void FastMarchingMethod::setVerbose(bool b) { verbose = b; } #endif
95202caab0cffbbe66e6668ff2cb39a59c6a880b
ce161c98d5b1a69fd12b7af691709a76da55b44d
/codeforces/School_Personal_Contest_#1_(Winter_Computer_School_2010/11)-Codeforces_Beta_Round_#38_(ACM-ICPC_Rules)/B_Chess.cpp
92810455afd7f580944b2f8e9819db3b162de137
[]
no_license
cup2of2tea/CompetitiveProgramming
cb45d40ff0c27e2b9891eb135e4e5ef795014989
eaa9bfac351c0eb909c7686534fe647c31eaac65
refs/heads/master
2020-09-02T07:21:18.722266
2019-11-02T14:30:57
2019-11-02T14:30:57
219,165,630
0
0
null
null
null
null
ISO-8859-1
C++
false
false
862
cpp
B_Chess.cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std;   int main() { vector<string> board(8); for(int c=0;c<8;c++) board[c]="........"; string s[2]; cin>>s[0]>>s[1]; s[0][1]--; s[1][1]--; for(int c=0;c<2;c++) board[s[c][0]-'a'][s[c][1]-'0']='X'; int dx[8]={1,-1,1,-1,2,-2,2,-2}; int dy[8]={2,2,-2,-2,1,1,-1,-1}; for(int c=0;c<8;c++) board[s[0][0]-'a'][c]=board[c][s[0][1]-'0']='X'; for(int c=0;c<8;c++) { for(int c2=0;c2<2;c2++) { int x2= s[c2][0]-'a'+dx[c]; int y2= s[c2][1]-'0'+dy[c]; if(x2>=0&&y2>=0&&x2<8&&y2<8) board[x2][y2]='X'; } } int total=0; for(int c=0;c<8;c++) for(int c2=0;c2<8;c2++) if(board[c][c2]=='.') total++; cout<<total; }
f7648281daac43ea31d785afb73507d73ce5a7ec
c1d8cefebd8f85fe9a70ae18d6726e8e42a6fe3a
/07_学习笔记/HPLSP/手抄代码/chatclient166.cpp
96717f22401b6f781cd88c48196bea0a0d5836a2
[]
no_license
leomaokai/MyCpp
7df0b4097561774c9050e9eed27134202b011c3a
e81b0ba50c7de046ee63af47accd2897b5e289ee
refs/heads/master
2023-02-19T11:14:58.697566
2021-01-22T16:50:13
2021-01-22T16:50:13
289,039,519
0
0
null
null
null
null
UTF-8
C++
false
false
1,671
cpp
chatclient166.cpp
#define _GNU_SOURCE 1 #include<sys/types.h> #include<sys/socket.h> #include<netinet/in.h> #include<arpa/inet.h> #include<assert.h> #include<stdio.h> #include<unistd.h> #include<string.h> #include<stdlib.h> #include<poll.h> #include<fcntl.h> #define BUFFER_SIZE 64 int main(int argc,char* argv[]) { if(argc<=2) { printf("usage: %s ip_address port_number\n",basename(argv[0])); return 1; } const char* ip=argv[1]; int port=atoi(argv[2]); struct sockaddr_in server_address; bzero(&server_address,sizeof(server_address)); server_address.sin_family=AF_INET; inet_pton(AF_INET,ip,&server_address.sin_addr); server_address.sin_port=htons(port); int sockfd=socket(PF_INET,SOCK_STREAM,0); assert(sockfd>=0); if(connect(sockfd,(struct sockaddr*)&server_address,sizeof(server_address))<0) { printf("connection failed\n"); close(sockfd); return 1; } pollfd fds[2]; fds[0].fd=0; fds[0].events=POLLIN; fds[0].revents=0; fds[1].fd=sockfd; fds[1].events=POLLIN | POLLRDHUP; fds[1].revents=0; char read_buf[BUFFER_SIZE]; int pipefd[2]; int ret=pipe(pipefd); assert(ret!=-1); while(1) { ret=poll(fds,2,-1); if(ret<0) { printf("poll failure\n"); break; } if(fds[1].revents & POLLRDHUP) { printf("server close the connection\n"); break; } else if(fds[1].revents & POLLIN) { memset(read_buf,'\0',BUFFER_SIZE); recv(fds[1].fd,read_buf,BUFFER_SIZE-1,0); printf("%s\n",read_buf); } if(fds[0].revents & POLLIN) { ret=splice(0,NULL,pipefd[1],NULL,32768,SPLICE_F_MORE|SPLICE_F_MOVE); ret=splice(pipefd[0],NULL,sockfd,NULL,32768,SPLICE_F_MORE|SPLICE_F_MOVE); } } close(sockfd); return 0; }
be0510d3ab0fcd1976f6961324f78a58a25d0d5d
ad1d1e72e37ffa6fc8ae857029b14d03c26ec413
/src/common/mutex.cc
d7b9a6e3efb35de9b72abad3bd192185efa3959a
[ "Apache-2.0" ]
permissive
joopdo/googlesitemapgenerator
b018363f4058f75ef60e82a3a67a322d704b7393
bab57d8f9284ec67a21ff0b346115cc0bce81d94
refs/heads/master
2022-11-06T05:40:37.691597
2020-06-30T06:22:33
2020-06-30T06:22:33
52,272,577
0
0
Apache-2.0
2020-06-30T06:33:36
2016-02-22T12:40:41
C++
UTF-8
C++
false
false
4,253
cc
mutex.cc
// Copyright 2009 Google Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "common/mutex.h" #include "common/logger.h" #ifdef WIN32 Mutex::Mutex() { event_ = NULL; } Mutex::~Mutex() { // does nothing. } void Mutex::Initialize(bool allow_multi_post, HANDLE event) { allow_multi_post_ = allow_multi_post; event_ = event; } void Mutex::Destroy() { event_ = NULL; } // Use WaitForSingleObject to implement this method. Mutex::MutexResult Mutex::Wait(int wait_ms) { if (event_ == NULL) return MUTEX_INVALID; DWORD result = WaitForSingleObject(event_, wait_ms < 0 ? INFINITE : wait_ms); if (result == WAIT_OBJECT_0 || (allow_multi_post_ && result == WAIT_ABANDONED)) { return MUTEX_OK; } if (result == WAIT_TIMEOUT) { return MUTEX_TIMEOUT; } else { return GetLastError() == ERROR_INVALID_HANDLE ? MUTEX_INVALID : MUTEX_ERROR; } } // Use SetEvent to implement this method. Mutex::MutexResult Mutex::Post() { if (event_ == NULL) return MUTEX_INVALID; if (SetEvent(event_)) { return MUTEX_OK; } else { return GetLastError() == ERROR_INVALID_HANDLE ? MUTEX_INVALID : MUTEX_ERROR; } } int Mutex::LastError() { return GetLastError(); } #else // __linux__ || __unix__ #include <pthread.h> #include <sys/sem.h> #include <sys/ipc.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/file.h> #include <unistd.h> #include <fcntl.h> #include <errno.h> Mutex::Mutex() { sem_id_ = -1; sem_num_ = -1; } Mutex::~Mutex() { // does nothing. } void Mutex::Initialize(bool allow_multi_post, int sem_id, int sem_num) { allow_multi_post_ = allow_multi_post; sem_id_ = sem_id; sem_num_ = sem_num; } void Mutex::Destroy() { sem_id_ = -1; sem_num_ = -1; } // Use semop to implement this method. Mutex::MutexResult Mutex::Wait(int wait_ms) { if (sem_id_ == -1) return MUTEX_INVALID; int result = RunSemop(true, !allow_multi_post_, wait_ms); return ErrnoToMutexResult(result); } // Use semop or semctl to implement this method. Mutex::MutexResult Mutex::Post() { if (sem_id_ == -1) return MUTEX_INVALID; if (allow_multi_post_) { int arg = 1; int result = semctl(sem_id_, sem_num_, SETVAL, arg); return ErrnoToMutexResult(result == -1 ? errno : 0); } else { int result = RunSemop(false, true, 0); return ErrnoToMutexResult(result); } } int Mutex::LastError() { return errno; } Mutex::MutexResult Mutex::ErrnoToMutexResult(int err) { switch (err) { case 0: return MUTEX_OK; case EAGAIN: return MUTEX_TIMEOUT; case EIDRM: case EINVAL: return MUTEX_INVALID; default: return MUTEX_ERROR; } } // A convenient wrapper for semop call. int Mutex::RunSemop(bool wait, bool undo, int wait_time) { sembuf operation; operation.sem_num = static_cast<short>(sem_num_); operation.sem_flg = undo ? SEM_UNDO : 0; operation.sem_op = wait ? -1 : 1; int result = -1; if (wait_time < 0) { result = semop(sem_id_, &operation, 1); } else if (wait_time == 0) { operation.sem_flg |= IPC_NOWAIT; result = semop(sem_id_, &operation, 1); } else { #if defined(__linux__) timespec timeout; timeout.tv_sec = wait_time / 1000; timeout.tv_nsec = (wait_time % 1000) * 1000000; result = semtimedop(sem_id_, &operation, 1, &timeout); #elif defined(__unix__) result = semop(sem_id_, &operation, 1); #endif } return result == 0 ? 0 : errno; } #endif bool Mutex::Reset(bool value) { if (allow_multi_post_ == false) { Logger::Log(EVENT_ERROR, "Invalid operation of reset mutex."); return false; } if (value) { return Post() == MUTEX_OK; } else { MutexResult res = Wait(0); return res == MUTEX_OK || res == MUTEX_TIMEOUT; } }
01e491c5e1003a2b9738ab481ccdf4e666153f62
4b479cec6c71b9ad47d36c02a13ab50fad2d246e
/businterface48.h
5b024446363e14f374f64ca0377f4b3a12c8f951
[]
no_license
Nargisgod/Proect
a41b798d393020299fb60c2b5c039a3b1b9e3d76
1faa82557c33a7ba6ee95908713cf450bbfac861
refs/heads/master
2023-06-04T03:52:32.159789
2021-06-24T11:47:35
2021-06-24T11:47:35
379,679,710
0
0
null
null
null
null
UTF-8
C++
false
false
667
h
businterface48.h
#ifndef BUSINTERFACE48_H #define BUSINTERFACE48_H #include "businterface.h" class BusInterface48 : public BusInterface { Q_OBJECT public: BusInterface48(); virtual uint8_t mem_read8(uint32_t addr); virtual void mem_write8(uint32_t addr, uint8_t value); virtual uint8_t io_read8(uint32_t addr); virtual void io_write8(uint32_t addr, uint8_t value); virtual const uint8_t * framebuffer() const {return ram.getBuffer(16384); } protected: #if defined (WIN32) ROMDevice rom { "rom/48.rom" }; #endif #if defined (Q_OS_ANDROID) ROMDevice rom { "assets:/rom/48.rom" }; #endif RAMDevice ram { 16 }; }; #endif // BUSINTERFACE48_H
416ced2a9e27bbba9b38d0f647fb43cde11fdc23
dfa753dd76fa8e40f3fdae3d2893f16986460611
/main.cpp
c0265a1ffe38d80acc8603d534ee432971ccac8e
[]
no_license
frstrtr/blockchain21
3fcbb992450084cebe8cb105ecdfe8d0dfae1bf0
6fcfba7726a468639cee8acabf4453939dccffa7
refs/heads/master
2021-10-07T07:35:11.483791
2018-12-03T19:57:24
2018-12-03T19:57:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,740
cpp
main.cpp
#include "BlockChain.h" #include <string.h> #include <stdlib.h> #include <stdio.h> #include <float.h> #include <math.h> #include <time.h> #include "RIPEMD160.h" #include "PublicKeyDatabase.h" #ifdef WIN32 #include <conio.h> #endif #ifdef _MSC_VER #pragma warning(disable:4996 4702 4505 4456) #endif int main(int argc,const char **argv) { bool analyze = false; uint32_t maxBlocks = 10000000; uint32_t searchForTextLength = 0; const char *dataPath = "."; searchForTextLength = 0; bool rebuildPublicKeyDatabase = false; int i = 1; while ( i < argc ) { const char *option = argv[i]; if ( *option == '-' ) { if ( strcmp(option,"-max_blocks") == 0 ) { i++; if ( i < argc ) { maxBlocks = atoi(argv[i]); if ( maxBlocks < 1 ) { printf("Invalid max_blocks value '%s'\n", argv[i] ); maxBlocks = 1000000; } else { printf("Maximum blocks set to %d\r\n", maxBlocks); } } else { printf("Error parsing option '-max_blocks', missing block number.\n"); } } else if (strcmp(option, "-analyze") == 0) { analyze = true; } else if (strcmp(option, "-rebuild") == 0) { rebuildPublicKeyDatabase = true; } else if (strcmp(option, "-text") == 0) { i++; if (i < argc) { searchForTextLength = atoi(argv[i]); if (maxBlocks < 8 ) { printf("Invalid search for text value value '%s'\n", argv[i]); searchForTextLength = 0; } else { printf("Search for text length %d\r\n", maxBlocks); } } else { printf("Error parsing option '-text', missing text length.\n"); } } else { printf("Unknown option '%s'\n", option ); } } else { if ( (i+1) == argc ) { printf("Using directory: %s to locate bitcoin data blocks.\n", option ); dataPath = option; } else { printf("%s not a valid option.\n", option ); } } i++; } PublicKeyDatabase *p = PublicKeyDatabase::create(analyze); if (p) { if (analyze) { if (rebuildPublicKeyDatabase) { printf("Rebuilding the public-key database.\r\n"); p->buildPublicKeyDatabase(); } else { p->reportDailyTransactions("Transactions.csv"); p->reportTopBalances("TopBalances.csv", 50000, 0xFFFFFFFF); } } else { BlockChain *b = BlockChain::createBlockChain(dataPath, maxBlocks); if (b) { b->setSearchTextLength(searchForTextLength); printf("Scanning the blockchain for blocks.\r\n"); for (;;) { uint32_t lastBlockRead; bool finished = b->scanBlockChain(lastBlockRead); if (finished) { break; } else { if ((lastBlockRead % 1000) == 0) { printf("Scanned block header: %d\r\n", lastBlockRead); } } } printf("Finished scanning the available blocks.\r\n"); printf("Now building the blockchain\r\n"); uint32_t ret = b->buildBlockChain(); printf("Found %d blocks.\r\n", ret); for (uint32_t i = 0; i < ret; i++) { if (((i + 1) % 100) == 0) { printf("Processing block: %d\r\n", i); } const BlockChain::Block *block = b->readBlock(i); if (block == nullptr) { printf("Finished reading blocks.\r\n"); break; } else { p->addBlock(block); if (kbhit()) { int c = getch(); if (c == 27) { break; } } } } printf("Completed parsing the blockchain.\r\n"); printf("Now building the public-key records database.\r\n"); p->buildPublicKeyDatabase(); b->release(); // release the blockchain parser } } p->release(); } #ifdef WIN32 // getch(); #endif return 0; }
2f0a69545c436518ff55955cca0ca7f9d66b8f16
18887c97e2680cd1d175eed1d01952b405f62b12
/okinawa_demo/marker_kvm.hpp
fe320b71092322546b3479dddefa4359cc19756e
[]
no_license
AkiraSuu/sdn_cloud___programing_contest_2014
f4de4bff7e46b5438d710d6f39a20163eeacf18f
99a4f210f6ba4421538102296f73357104861fc9
refs/heads/master
2020-06-04T08:34:32.582856
2015-04-15T01:05:00
2015-04-15T01:05:00
33,964,699
0
0
null
null
null
null
UTF-8
C++
false
false
671
hpp
marker_kvm.hpp
/* * marker_kvm.hpp */ #ifndef __MARKER_KVM_HPP__ #define __MARKER_KVM_HPP__ #include <vector> using namespace std; #include <GL/glut.h> #include <FTGL/ftgl.h> #include "artkglut_marker.hpp" #include "vm.hpp" class Marker_KVM : public ARTKGLUT_Marker { public: Marker_KVM(); ~Marker_KVM(); int draw(); int process(bool b); protected: FTGLTextureFont *_font1; FTGLTextureFont *_font2; GLuint _panelList; GLuint _panelListRed; GLuint _panelListBlue; GLuint _mapList; vector<VM *> _vms; string result; string str1; string str2; string str3; string str4; string str5; string str6; string str7; string str8; string str9; int _state; }; #endif
4f0141fcb5aa9fbd87c16cc9acbf6447047587a2
d6271ab44c4e17aae7a63d3de84711b92b0e3269
/src/drivers/platform/spec/arndale/pmu.h
fe2fcad9d05894a6d476a556acd3584dc1461297
[ "MIT" ]
permissive
throwException/genode-world
1b9873d4d2abca4b48d8a111c8572d9ac7121437
2a947864592bff84acf39f341463b00761852808
refs/heads/master
2023-01-06T21:11:42.386892
2020-11-12T10:15:08
2020-11-12T10:18:20
299,933,376
0
0
NOASSERTION
2020-09-30T13:46:17
2020-09-30T13:46:16
null
UTF-8
C++
false
false
6,491
h
pmu.h
/* * \brief Regulator driver for power management unit of Exynos5250 SoC * \author Stefan Kalkowski <stefan.kalkowski@genode-labs.com> * \date 2013-06-18 */ /* * Copyright (C) 2017 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU Affero General Public License version 3. */ #ifndef _DRIVERS__PLATFORM__SPEC__ARNDALE__PMU_H_ #define _DRIVERS__PLATFORM__SPEC__ARNDALE__PMU_H_ #include <base/log.h> #include <regulator/consts.h> #include <regulator/driver.h> #include <os/attached_mmio.h> using namespace Regulator; using Genode::warning; class Pmu : public Regulator::Driver, private Genode::Attached_mmio { private: enum { PMU_MMIO_BASE = 0x10040000, PMU_MMIO_SIZE = 0x5000, }; template <unsigned OFFSET> struct Control : Register <OFFSET, 32> { struct Enable : Register<OFFSET, 32>::template Bitfield<0, 1> { }; }; template <unsigned OFFSET> struct Configuration : Register <OFFSET, 32> { struct Local_pwr_cfg : Register<OFFSET, 32>::template Bitfield<0, 3> { }; }; template <unsigned OFFSET> struct Status : Register <OFFSET, 32> { struct Stat : Register<OFFSET, 32>::template Bitfield<0, 3> { }; }; template <unsigned OFFSET> struct Sysclk_configuration : Register <OFFSET, 32> { struct Local_pwr_cfg : Register<OFFSET, 32>::template Bitfield<0, 1> { }; }; template <unsigned OFFSET> struct Sysclk_status : Register <OFFSET, 32> { struct Stat : Register<OFFSET, 32>::template Bitfield<0, 1> { }; }; struct Hdmi_phy_control : Register<0x700, 32> { struct Enable : Bitfield<0, 1> { }; struct Div_ratio : Bitfield<16, 10> { }; }; typedef Control<0x704> Usbdrd_phy_control; typedef Control<0x708> Usbhost_phy_control; typedef Control<0x70c> Efnand_phy_control; typedef Control<0x718> Adc_phy_control; typedef Control<0x71c> Mtcadc_phy_control; typedef Control<0x720> Dptx_phy_control; typedef Control<0x724> Sata_phy_control; typedef Sysclk_configuration<0x2a40> Vpll_sysclk_configuration; typedef Sysclk_status<0x2a44> Vpll_sysclk_status; typedef Sysclk_configuration<0x2a60> Epll_sysclk_configuration; typedef Sysclk_status<0x2a64> Epll_sysclk_status; typedef Sysclk_configuration<0x2aa0> Cpll_sysclk_configuration; typedef Sysclk_status<0x2aa4> Cpll_sysclk_status; typedef Sysclk_configuration<0x2ac0> Gpll_sysclk_configuration; typedef Sysclk_status<0x2ac4> Gpll_sysclk_status; typedef Configuration<0x4000> Gscl_configuration; typedef Status<0x4004> Gscl_status; typedef Configuration<0x4020> Isp_configuration; typedef Status<0x4024> Isp_status; typedef Configuration<0x4040> Mfc_configuration; typedef Status<0x4044> Mfc_status; typedef Configuration<0x4060> G3d_configuration; typedef Status<0x4064> G3d_status; typedef Configuration<0x40A0> Disp1_configuration; typedef Status<0x40A4> Disp1_status; typedef Configuration<0x40C0> Mau_configuration; typedef Status<0x40C4> Mau_status; template <typename C, typename S> void _disable_domain() { if (read<typename S::Stat>() == 0) return; write<typename C::Local_pwr_cfg>(0); while (read<typename S::Stat>() != 0) ; } template <typename C, typename S> void _enable_domain() { if (read<typename S::Stat>() == 7) return; write<typename C::Local_pwr_cfg>(7); while (read<typename S::Stat>() != 7) ; } void _enable(unsigned long id) { switch (id) { case PWR_USB30: write<Usbdrd_phy_control::Enable>(1); break; case PWR_USB20: write<Usbhost_phy_control::Enable>(1); break; case PWR_SATA : write<Sata_phy_control::Enable>(1); break; case PWR_HDMI: { _enable_domain<Disp1_configuration, Disp1_status>(); Hdmi_phy_control::access_t hpc = read<Hdmi_phy_control>(); Hdmi_phy_control::Div_ratio::set(hpc, 150); Hdmi_phy_control::Enable::set(hpc, 1); write<Hdmi_phy_control>(hpc); break; } default: warning("Unsupported for ", names[id].name); } } void _disable(unsigned long id) { switch (id) { case PWR_USB30: write<Usbdrd_phy_control::Enable>(0); break; case PWR_USB20: write<Usbhost_phy_control::Enable>(0); break; case PWR_SATA : write<Sata_phy_control::Enable>(0); break; default: warning("Unsupported for ", names[id].name); } } public: /** * Constructor */ Pmu(Genode::Env &env) : Genode::Attached_mmio(env, PMU_MMIO_BASE, PMU_MMIO_SIZE) { write<Hdmi_phy_control ::Enable>(0); write<Usbdrd_phy_control ::Enable>(0); write<Usbhost_phy_control::Enable>(0); write<Efnand_phy_control ::Enable>(0); write<Adc_phy_control ::Enable>(0); write<Mtcadc_phy_control ::Enable>(0); write<Dptx_phy_control ::Enable>(0); write<Sata_phy_control ::Enable>(0); _disable_domain<Gscl_configuration, Gscl_status>(); _disable_domain<Isp_configuration, Isp_status>(); _disable_domain<Mfc_configuration, Mfc_status>(); _disable_domain<G3d_configuration, G3d_status>(); _disable_domain<Disp1_configuration, Disp1_status>(); _disable_domain<Mau_configuration, Mau_status>(); _disable_domain<Vpll_sysclk_configuration, Vpll_sysclk_status>(); _disable_domain<Epll_sysclk_configuration, Epll_sysclk_status>(); _disable_domain<Cpll_sysclk_configuration, Cpll_sysclk_status>(); _disable_domain<Gpll_sysclk_configuration, Gpll_sysclk_status>(); } /******************************** ** Regulator driver interface ** ********************************/ void level(Regulator_id id, unsigned long /* level */) override { switch (id) { default: warning("Unsupported for ", names[id].name); } } unsigned long level(Regulator_id id) override { switch (id) { default: warning("Unsupported for ", names[id].name); } return 0; } void state(Regulator_id id, bool enable) override { if (enable) _enable(id); else _disable(id); } bool state(Regulator_id id) override { switch (id) { case PWR_USB30: return read<Usbdrd_phy_control::Enable>(); case PWR_USB20: return read<Usbhost_phy_control::Enable>(); case PWR_SATA: return read<Sata_phy_control::Enable>(); default: warning("Unsupported for ", names[id].name); } return true; } }; #endif /* _DRIVERS__PLATFORM__SPEC__ARNDALE__PMU_H_ */
f6f08507273256ee8a6a4e59469ee18fa3f6b49e
b45038644f088c183a2f4cedc235ce5a62079696
/Autoware/computing/planning/motion/packages/waypoint_maker/nodes/waypoint_marker_publisher/waypoint_marker_publisher.cpp
94237405c975e7ff86efca5dee0be149c388a6c3
[]
no_license
trigrass2/wheelcahir_ros
d249b850e46dba349884e457660c9ab77b10a1d7
15b5deab1f3e6e243396ed5b172704e88823f628
refs/heads/master
2020-12-30T17:11:59.833670
2016-03-10T15:26:28
2016-03-10T15:26:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,174
cpp
waypoint_marker_publisher.cpp
/* * Copyright (c) 2015, Nagoya University * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * * Neither the name of Autoware 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 <ros/ros.h> #include <ros/console.h> #include <visualization_msgs/MarkerArray.h> #include <iostream> #include <vector> #include <string> #include "waypoint_follower/lane.h" #include "waypoint_follower/libwaypoint_follower.h" #include "runtime_manager/traffic_light.h" static ros::Publisher _lane_mark_pub; static constexpr int32_t TRAFFIC_LIGHT_RED = 0; static constexpr int32_t TRAFFIC_LIGHT_GREEN = 1; static constexpr int32_t TRAFFIC_LIGHT_UNKNOWN = 2; static std_msgs::ColorRGBA _initial_color; static std_msgs::ColorRGBA _color; void createWaypointVelocityMarker(waypoint_follower::lane lane_waypoint, visualization_msgs::MarkerArray *marker_array) { // display by markers the velocity of each waypoint. visualization_msgs::Marker velocity; velocity.header.frame_id = "map"; velocity.header.stamp = ros::Time(); velocity.ns = "waypoint_velocity"; velocity.type = visualization_msgs::Marker::TEXT_VIEW_FACING; velocity.action = visualization_msgs::Marker::ADD; velocity.scale.z = 0.4; velocity.color.a = 1.0; velocity.color.r = 1; velocity.color.g = 1; velocity.color.b = 1; velocity.frame_locked = true; for (unsigned int i = 0; i < lane_waypoint.waypoints.size(); i++) { //std::cout << _waypoints[i].GetX() << " " << _waypoints[i].GetY() << " " << _waypoints[i].GetZ() << " " << _waypoints[i].GetVelocity_kmh() << std::endl; velocity.id = i; velocity.pose.position = lane_waypoint.waypoints[i].pose.pose.position; velocity.pose.position.z += 0.2; velocity.pose.orientation.w = 1.0; // double to string std::ostringstream oss; oss << std::fixed << std::setprecision(2) << mps2kmph(lane_waypoint.waypoints[i].twist.twist.linear.x) << " km/h"; velocity.text = oss.str(); //C++11 version //std::string velocity = std::to_string(test_pose.velocity_kmh); //velocity.erase(velocity.find_first_of(".") + 3); //std::string kmh = " km/h"; //std::string text = velocity + kmh; //marker.text = text; marker_array->markers.push_back(velocity); } } void createWaypointMarker(waypoint_follower::lane lane_waypoint,visualization_msgs::MarkerArray *marker_array) { visualization_msgs::Marker waypoint_mark; waypoint_mark.header.frame_id = "map"; waypoint_mark.header.stamp = ros::Time(); waypoint_mark.ns = "waypoint_marker"; waypoint_mark.id = 0; waypoint_mark.type = visualization_msgs::Marker::POINTS; waypoint_mark.action = visualization_msgs::Marker::ADD; waypoint_mark.scale.x = 0.1; waypoint_mark.scale.y = 0.1; waypoint_mark.color.r = 1.0; waypoint_mark.color.g = 1.0; waypoint_mark.color.b = 1.0; waypoint_mark.color.a = 1.0; waypoint_mark.frame_locked = true; for (unsigned int i = 0; i < lane_waypoint.waypoints.size(); i++) { geometry_msgs::Point point; point = lane_waypoint.waypoints[i].pose.pose.position; waypoint_mark.points.push_back(point); } marker_array->markers.push_back(waypoint_mark); } void createPathMarker(std_msgs::ColorRGBA color , waypoint_follower::lane lane_waypoint,visualization_msgs::MarkerArray *marker_array) { visualization_msgs::Marker lane_waypoint_marker; lane_waypoint_marker.header.frame_id = "map"; lane_waypoint_marker.header.stamp = ros::Time(); lane_waypoint_marker.ns = "path_marker"; lane_waypoint_marker.id = 0; lane_waypoint_marker.type = visualization_msgs::Marker::LINE_STRIP; lane_waypoint_marker.action = visualization_msgs::Marker::ADD; lane_waypoint_marker.scale.x = 0.2; lane_waypoint_marker.color = color; lane_waypoint_marker.frame_locked = true; for (unsigned int i = 0; i < lane_waypoint.waypoints.size(); i++) { geometry_msgs::Point point; point = lane_waypoint.waypoints[i].pose.pose.position; lane_waypoint_marker.points.push_back(point); } marker_array->markers.push_back(lane_waypoint_marker); } static void laneCallback(const waypoint_follower::laneConstPtr &msg) { visualization_msgs::MarkerArray marker_array; createWaypointVelocityMarker(*msg, &marker_array); createWaypointMarker(*msg, &marker_array); createPathMarker(_color, *msg, &marker_array); _lane_mark_pub.publish(marker_array); } static void lightCallback(const runtime_manager::traffic_lightConstPtr& msg) { std_msgs::ColorRGBA color; color.a = 1.0; switch (msg->traffic_light) { case TRAFFIC_LIGHT_RED: color.r = 1.0; _color = color; break; case TRAFFIC_LIGHT_GREEN: color.g = 1.0; _color = color; break; case TRAFFIC_LIGHT_UNKNOWN: _color = _initial_color; break; default: ROS_ERROR("unknown traffic_light"); return; } } static void trafficCallback(const waypoint_follower::laneConstPtr &msg) { visualization_msgs::MarkerArray marker_array; createWaypointVelocityMarker(*msg, &marker_array); createWaypointMarker(*msg, &marker_array); createPathMarker(_color, *msg, &marker_array); _lane_mark_pub.publish(marker_array); } int main(int argc, char **argv) { ros::init(argc, argv, "marker_publisher"); ros::NodeHandle nh; ros::NodeHandle private_nh("~"); ros::Subscriber lane_sub = nh.subscribe("lane_waypoint",10,laneCallback); ros::Subscriber traffic_sub = nh.subscribe("traffic_waypoint",10,trafficCallback); ros::Subscriber light_sub = nh.subscribe("traffic_light",10,lightCallback); _lane_mark_pub = nh.advertise<visualization_msgs::MarkerArray>("lane_waypoint_mark", 10, true); //initialize path color _initial_color.b = 1.0; _initial_color.g = 0.7; _initial_color.a = 1.0; _color = _initial_color; ros::spin(); }
ca4d3698bc3448e76d5faaffbf234209e2156b42
9bc24fa2c325b5cb8c6ec6b3515e051a631956b7
/Mishka703A.cpp
56c2c42d16f45863b34cc3b1ebff1ac670e2119e
[]
no_license
syedsiddhiqq/Competitive_programming
5cdca1594fdc1dc78bccc6149e3ab327b57aadeb
c55fa87b8f4803d9f25ed2b028ad482501570697
refs/heads/master
2020-04-22T09:08:08.155827
2019-02-12T06:08:05
2019-02-12T06:08:05
170,261,794
0
0
null
null
null
null
UTF-8
C++
false
false
466
cpp
Mishka703A.cpp
/* * @Author: SyedAli * @Date: 2019-01-04 17:51:32 * @Last Modified by: SyedAli * @Last Modified time: 2019-01-04 17:55:23 */ #include<bits/stdc++.h> using namespace std; int main(){ int n,p1,p2,miskha=0,chris=0; scanf("%d\n",&n); for(int i=0;i<n;i++){ scanf("%d %d",&p1,&p2); if(p1>p2) miskha++; else if(p2>p1) chris++; } if(miskha>chris) printf("Mishka"); else if(chris>miskha) printf("Chris"); else printf("Friendship is magic!^^"); return 0; }
a04ae7a5241972507fa4362d4dd25ecb631472b7
c1f94a611d8a66bc473020b629ac9792b97e82c4
/2010.11.Largest.Subtree.Which.is.a.Binary.Search.Tree.cpp
4284bbc8d2cca3e493c81119098486fd3a235b75
[]
no_license
romie88/leetcode.com
18aca77439d63be6d95ce74d13d35a3d83953535
8f09a8ac4f247efeb5f03ea96937558e47fca444
refs/heads/master
2021-01-13T01:30:24.067182
2015-03-18T05:33:22
2015-03-18T05:33:22
28,523,597
0
0
null
null
null
null
UTF-8
C++
false
false
5,154
cpp
2010.11.Largest.Subtree.Which.is.a.Binary.Search.Tree.cpp
/** * http://leetcode.com/2010/11/largest-binary-search-tree-bst-in.html * Largest Subtree Which is a Binary Search Tree (BST) * * November 18, 2010 by binary tree * * Given a binary tree, find the largest subtree which is a Binary Search Tree * (BST), where largest means subtree with largest number of nodes in it. */ #include <iostream> #include <cassert> struct Node { int val; Node * left; Node * right; Node( int v ) : val( v ), left( nullptr ), right( nullptr ) {} }; void find_largest_sub_bst_impl( const Node * p,//current root const Node * & mp,//largest subtree root int & mn,//largest subtree node number bool & is_empty,//if current tree is empty int & max,//max value in the current tree int & min,//min value in the current tree bool & is_bst//current tree is bst or not ) { if ( ! p ) { mp = nullptr; mn = 0; is_empty = true; is_bst = true; return; } const Node * left_mp = nullptr; const Node * right_mp = nullptr; int left_mn = 0; int right_mn = 0; bool left_is_empty = false; bool right_is_empty = false; int left_max; int right_max; int left_min; int right_min; bool left_is_bst = false; bool right_is_bst = false; find_largest_sub_bst_impl( p->left, left_mp, left_mn, left_is_empty, left_max, left_min, left_is_bst ); find_largest_sub_bst_impl( p->right, right_mp, right_mn, right_is_empty, right_max, right_min, right_is_bst ); std::cout << "================" << std::endl; if ( left_mp ) std::cout << "left_mp = " << left_mp->val << std::endl; else std::cout << "left_mp = " << "nullptr" << std::endl; std::cout << "left_mn = " << left_mn << std::endl; std::cout << "left_is_empty = " << left_is_empty << std::endl; std::cout << "left_is_bst = " << left_is_bst << std::endl; if ( right_mp ) std::cout << "right_mp = " << right_mp->val << std::endl; else std::cout << "right_mp = " << "nullptr" << std::endl; std::cout << "right_mn = " << right_mn << std::endl; std::cout << "right_is_empty = " << right_is_empty << std::endl; std::cout << "right_is_bst = " << right_is_bst << std::endl; if ( left_is_empty ) { if ( right_is_empty ) { mp = p; mn = 1; is_empty = false; max = p->val; min = p->val; is_bst = true; } else { //left is empty but right is not empty if ( right_is_bst && p->val < right_min ) { mp = p; mn = 1 + right_mn; is_empty = false; max = right_max; min = p->val; is_bst = true; } else { mp = right_mp; mn = right_mn; is_empty = false; is_bst = false; } } } else if ( right_is_empty ) { //left is not empty if ( left_is_bst && p->val > left_max ) { mp = p; mn = 1 + left_mn; is_empty = false; max = p->val; min = left_min; is_bst = true; } else { mp = left_mp; mn = left_mn; is_empty = false; is_bst = false; } } else { if ( left_is_bst && right_is_bst && p->val > left_max && p->val < right_min ) { mp = p; mn = 1 + left_mn + right_mn; is_empty = false; max = right_max; min = left_min; is_bst = true; } else { mp = left_mn > right_mn ? left_mp : right_mp; mn = left_mn > right_mn ? left_mn : right_mn; is_empty = false; is_bst = false; } } } const Node * find_largest_sub_bst( const Node * root ) { const Node * mp; int mn; bool is_empty; int max; int min; bool is_bst; find_largest_sub_bst_impl( root,//current root mp,//largest subtree root mn,//largest subtree node number is_empty,//if current tree is empty max,//max value in the current tree min,//min value in the current tree is_bst//current tree is bst or not ); return mp; } int main() { { Node n1( 10 ); Node n2( 5 ); Node n3( 15 ); Node n4( 1 ); Node n5( 8 ); Node n6( 7 ); n1.left = &n2; n1.right = &n3; n2.left = &n4; n2.right = &n5; n3.right = &n6; const Node * p = find_largest_sub_bst( &n1 ); assert( p == &n2 ); } return 0; }
d9099bee1ff29371fd9bda14daaa4229274198d8
336b2b7b1014ff48a4dcb69dce018f6cd42fc190
/95. Unique Binary Search Trees II/recursive.cpp
e94253010155e2373e38162533f5fc49fd9ad848
[]
no_license
Mervyn-Jian/LeetcodePractice
825a68a4239f72196a54204e8b4baf9f8630b10b
ba24be23cd8436c924cf4c0ffbffb36f2652728d
refs/heads/master
2020-07-01T00:19:29.171554
2019-09-02T15:26:29
2019-09-02T15:26:29
200,993,408
1
0
null
null
null
null
UTF-8
C++
false
false
1,427
cpp
recursive.cpp
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution { public: vector<TreeNode*> generateTrees(int n) { vector<TreeNode*> bstTrees; if(n>0) bstTrees = createBSTs(1, n); return bstTrees; } vector<TreeNode*> createBSTs(int numStart, int numEnd){ vector<TreeNode*> trees; vector<TreeNode*> leftTrees; vector<TreeNode*> rightTrees; if(numStart == numEnd){ TreeNode* root = new TreeNode(numStart); trees.push_back(root); return trees; }else if(numStart > numEnd){ trees.push_back(NULL); return trees; } for(int i=numStart; i<=numEnd; i++){ leftTrees = createBSTs(numStart, i-1); rightTrees = createBSTs(i+1, numEnd); for(int j=0; j<leftTrees.size(); j++){ for(int k=0; k<rightTrees.size(); k++){ TreeNode* root = new TreeNode(i); root->left = leftTrees[j]; root->right = rightTrees[k]; trees.push_back(root); } } } return trees; } };
bb83a79ef18a647badb6dc28fecfc10f67579681
22eb20dfa5bf05630d398829e72d971f7fad38ac
/Factory1/factoryb.h
5b6c03c65d1d763be5d0b3cda2cf19846f42a9d6
[]
no_license
zhoajianjun/QT
634e984f365679e21047f59817ee5f46ca9d25c9
32e9362b088ffb150fe2fda036d8472edb4a1346
refs/heads/master
2016-09-12T21:05:12.316379
2016-04-25T06:40:06
2016-04-25T06:40:06
56,022,827
3
0
null
null
null
null
UTF-8
C++
false
false
253
h
factoryb.h
#ifndef FACTORYB_H #define FACTORYB_H class CoreFactory; class SingleCore; class MultiCore; class FactoryB : public CoreFactory { public: FactoryB(); SingleCore* CreateSingleCore() ; MultiCore* CreateMultiCore() ; }; #endif // FACTORYB_H
5f928630f9b1491ea291006fb14e5cc01bd70032
f93b8e84ab21bc5bbdf063c950d8941d23f57a4d
/LightningF/Utils/QT/CXX/Light.hh
0c538400d7620f2043b013fdf28919d9b4ede312
[ "MIT" ]
permissive
marianogabitto/Lightning
8ba7221bdf92f7a7f00f0e67ad17c3cfe0de8f53
f78c055eef39e4ab432b1caf33ee23b2f1ebdfb3
refs/heads/main
2023-02-12T04:29:53.072055
2021-01-11T15:52:34
2021-01-11T15:52:34
328,238,120
1
1
MIT
2021-01-11T15:52:35
2021-01-09T20:13:56
C++
UTF-8
C++
false
false
27,876
hh
Light.hh
#ifndef __LIGHT_HH #define __LIGHT_HH #include "Point.hh" #include "Center.hh" //#include "QTree.hh" #include "KDTree.hh" #include <vector> #include <iostream> #include <fstream> #include <omp.h> #include "CounterIntEvent.hh" #include <cmath> #include <limits> #include <iomanip> struct TimeInfo { double acc_0; double acc_n0; int nt; double xi_t; }; template<int D> class Light { std::vector< Point<D> > points_; std::vector< Center<D> > centers_; std::vector< TimeInfo > time_data_; // Tree of centers //QTree *qtree_; KDTree<D, Center<D> > *kdtree_; // Noise cluster accumulator double cobs_; double ent_; public: Light(); ~Light(); //QTree *qtree() { return qtree_; } // Return the number of centers int n_centers() const { return centers_.size(); } // Return a specific center const Center<D> &center(int ix) const { return centers_[ix]; } // Return the number of points int n_points() const { return points_.size(); } // Return a specific point const Point<D> &point(int ix) const { return points_[ix]; } // Clear structures that match points to centers void clear_points_to_centers(); // Load points from a file void load_points(std::istream &is); // Load points (position/variance) void load_points(int np, double *x, double *sigma2); // Load points (position/variance/time) void load_points_time(int np, double *x, double *sigma2, int *time); // Load centers from a file void load_centers(std::istream &is); // Load points from an array with 4 columns (x, y, sigmax2, sigmay2) void load_centers(int nc, double *x, double *sigma2, double *Elog_beta); // Set the iteration parameters void set_iter_params(double l_1mpi1, double value0, double search_radius); #if 0 // Build the quad tree of centers void build_qtree_centers(double x1, double y1, double x2, double y2, double min_cell_size); #endif // Build the kdtree of centers void build_kdtree_centers(); // Assign the points to centers void points_to_centers(double l_1mpi1, double value0, double search_radius); void points_to_centers_time(int ntime, double *value0, double *value1, double *gamma, double search_radius); // Retrieve the new center mean/variance info void get_next_center_data(double *next_mu, double *next_sigma, double *rk, double *rn0, double &cobs); void get_next_center_data_time(double *next_mu, double *next_sigma, double *rk, double *rk2); void calc_psi_t(double *gamma, double *psi_t); // Retrieve the per time step data void get_time_data(double *acc_0, double *acc_n0, int *nt, double *xi_t); // Retrieve the points to centers mapping int get_n_points_to_centers(); void get_points_to_centers(int point_ix[], int center_ix[], double logNnk[], double rnk[]); #if 0 // Print statistics of the tree (how many points per leaf are there bucketed) void print_qtree_leaf_stats(); #endif // Retrieve centers with a close-by neighbor void nearby_centers(int center_list[], double search_radius); // Find cache friendly permutation of a set of points void find_cache_friendly_permutation(int N, double *x, int *perm_forward, int *perm_reverse); // Counts Points to center void counters(int list_points[], int list_centers[], double search_radius); // Calculate total entropy double calc_entropy(); // Dump the state of the C++ object to a file void dump_state(std::ostream &f); void dump_state(const char *filename); }; template<int D> Light<D>::Light() : /*qtree_(NULL),*/ kdtree_(NULL) { } template<int D> Light<D>::~Light() { // delete qtree_; qtree_ = NULL; delete kdtree_; kdtree_ = NULL; } template<int D> void Light<D>::clear_points_to_centers() { for (int ix = 0; ix < (int)centers_.size(); ix++) { Center<D> &c = centers_[ix]; c.center_to_points_.clear(); } for (int ix = 0; ix < (int)points_.size(); ix++) { Point<D> &p = points_[ix]; p.point_to_centers_.clear(); } } template<int D> void Light<D>::load_points(std::istream &is) { int np; is >> np; points_.resize(np); for (int ix = 0; ix < np; ix++) { Point<D> *p = &points_[ix]; is >> p->x_[0] >> p->x_[1] >> p->sigma2_[0] >> p->sigma2_[1]; p->init(ix); } } template<int D> void Light<D>::load_points(int np, double *x, double *sigma2) { points_.resize(np); for (int ix = 0; ix < np; ix++) { Point<D> *p = &points_[ix]; p->x_[0] = x[2*ix+0]; p->x_[1] = x[2*ix+1]; p->sigma2_[0] = sigma2[2*ix+0]; p->sigma2_[1] = sigma2[2*ix+1]; p->init(ix); } } template<int D> void Light<D>::load_points_time(int np, double *x, double *sigma2, int *time) { points_.resize(np); for (int ix = 0; ix < np; ix++) { Point<D> *p = &points_[ix]; p->x_[0] = x[2*ix+0]; p->x_[1] = x[2*ix+1]; p->sigma2_[0] = sigma2[2*ix+0]; p->sigma2_[1] = sigma2[2*ix+1]; p->time_ = time[ix]; p->init(ix); } } template<int D> void Light<D>::load_centers(std::istream &is) { int nk; is >> nk; centers_.resize(nk); for (int ix = 0; ix < nk; ix++) { int cix; is >> cix; Center<D> *center = &centers_[ix]; Point<D> *point = &points_[cix]; center->x_[0] = point->x_[0]; center->x_[1] = point->x_[1]; center->sigma2_[0] = point->sigma2_[0]; center->sigma2_[1] = point->sigma2_[1]; center->init(ix); } clear_points_to_centers(); } template<int D> void Light<D>::load_centers(int nc, double *x, double *sigma2, double *Elog_beta) { centers_.resize(nc); for (int ix = 0; ix < nc; ix++) { Center<D> *c = &centers_[ix]; c->x_[0] = x[2*ix+0]; c->x_[1] = x[2*ix+1]; c->sigma2_[0] = sigma2[2*ix+0]; c->sigma2_[1] = sigma2[2*ix+1]; c->Elog_beta_ = Elog_beta[ix]; c->init(ix); } clear_points_to_centers(); } #if 0 void Light::build_qtree_centers(double x1, double y1, double x2, double y2, double min_cell_size) { // If there is a previous tree, remove it first if (qtree_ != NULL) { delete qtree_; } qtree_ = new QTree(x1, y1, x2, y2, min_cell_size); for (size_t ix = 0; ix < centers_.size(); ix++) { qtree_->add_point(&centers_[ix]); } } #endif template<int D> void Light<D>::build_kdtree_centers() { if (kdtree_ != NULL) { delete kdtree_; } kdtree_ = new KDTree<D, Center<D> >(centers_); } // // Visitor class // template<int D> class NearbyCenterVisitor : public NeighborPointVisitor<D> { public: // Point we are looking around Point<D> *point_; double search_radius_; // Distance (squared) we are interested in double dist2_; double l_1mpi1_; double max_logNnk_; NearbyCenterVisitor(double l_1mpi1, double search_radius) : point_(NULL), search_radius_(search_radius), l_1mpi1_(l_1mpi1), max_logNnk_(-std::numeric_limits<double>::infinity()) { } void set_point(Point<D> *point) { point_ = point; dist2_ = search_radius_ * search_radius_ / 2.0 * (point_->sigma2_[0] + point_->sigma2_[1]); } virtual void visit_point(PointBase<D> &p); // Add the noise term at position 0 void visit_noise(double value0); }; /*virtual*/ template<int D> void NearbyCenterVisitor<D>::visit_point(PointBase<D> &p) { Center<D> &center = (Center<D> &)p; double dx = center.x_[0] - point_->x_[0]; double dy = center.x_[1] - point_->x_[1]; double dx2 = dx*dx; double dy2 = dy*dy; double d2 = dx2 + dy2; // Only look at points within 5 standard deviations on average in x/y directions if (d2 < dist2_) { PointToCenter ptc; ptc.center_ix = center.ix_; ptc.point_ix = point_->ix_; double sxi = 0.5 / point_->sigma2_[0]; double syi = 0.5 / point_->sigma2_[1]; ptc.logNnk_ = point_->logvar_ - dx2 * sxi - dy2 * syi - center.sigma2_[0] * sxi - center.sigma2_[1] * syi + l_1mpi1_ + center.Elog_beta_; // Calculate the maximum along the way if (ptc.logNnk_ > max_logNnk_) { max_logNnk_ = ptc.logNnk_; } point_->point_to_centers_.push_back(ptc); PointToCenter &ptc_new = point_->point_to_centers_[point_->point_to_centers_.size()-1]; center.center_to_points_.push_back(&ptc_new); // std::cout << "INSERTING: " << center.ix_ << ", " << point_->ix_ << std::endl; } } template<int D> void NearbyCenterVisitor<D>::visit_noise(double value0) { PointToCenter ptc; ptc.center_ix = -1; ptc.point_ix = point_->ix_; ptc.logNnk_ = value0; // Calculate the maximum along the way if (ptc.logNnk_ > max_logNnk_) { max_logNnk_ = ptc.logNnk_; } point_->point_to_centers_.push_back(ptc); } // // Visitor class to check centers that are close to each other // template<int D> class CenterToCenterVisitor : public NeighborPointVisitor<D> { public: // Point we are looking around double search_radius_; Point<D> &orig_; CenterToCenterVisitor(double search_radius, Point<D> &orig) : search_radius_(search_radius), orig_(orig) { } virtual void visit_point(PointBase<D> &p); }; /*virtual*/ template<int D> void CenterToCenterVisitor<D>::visit_point(PointBase<D> &p) { Center<D> &center = (Center<D> &)p; double dx = center.x_[0] - orig_.x_[0]; double dy = center.x_[1] - orig_.x_[1]; double dx2 = dx*dx; double dy2 = dy*dy; double d2 = dx2 + dy2; // Only look at points within 5 standard deviations on average in x/y directions if (d2 < search_radius_ * search_radius_) { PointToCenter ptc; ptc.center_ix = center.ix_; orig_.point_to_centers_.push_back(ptc); } } template<int D> void Light<D>::nearby_centers(int list_ix[], double search_radius) { // It looks for centers that have a neighboor closer than search radius // // Initialize container with no clusters nearby std::vector<int> flag(centers_.size(), 0); for (size_t ixc = 0; ixc < centers_.size(); ixc++) { if (flag[ixc] == 0){ // Initialize a point at the center location Point<D> p; p.x_[0] = centers_[ixc].x_[0]; p.x_[1] = centers_[ixc].x_[1]; CenterToCenterVisitor<D> closest_center(search_radius, p); // Look at the real centers next #if 0 if (qtree_ != NULL) { qtree_->visit_neighbor_points(p.x_[0], p.x_[1], closest_center); } #endif if (kdtree_ != NULL) { double dist = search_radius; PointBase<D> min, max; min.x_[0] = p.x_[0] - dist; min.x_[1] = p.x_[1] - dist; max.x_[0] = p.x_[0] + dist; max.x_[1] = p.x_[1] + dist; kdtree_->find_points(min, max, closest_center); } size_t nc = p.point_to_centers_.size(); for (size_t ix = 0; ix < nc; ix++) { PointToCenter &ptc = p.point_to_centers_[ix]; // Make sure we ignore the center being close to itself if (ptc.center_ix != (int)ixc) { // Center<D> &c = centers_[ptc.center_ix]; list_ix[ixc] = 1; flag[ixc] = 1; flag[ptc.center_ix] = 1; // std::cout << "Origin #" << ixc << ", x:" << p.x_[0] << ", y:" << p.x_[1] << std::endl; // std::cout << "Center #" << ptc.center_ix << ", x:" << c.x_[0] << ", y:" << c.x_[1] << std::endl; } } } } } template<int D> void Light<D>::points_to_centers(double l_1mpi1, double value0, double search_radius) { cobs_ = 0.0; //std::cout << "l_1mpi1" << l_1mpi1 << ", value0:" << value0 << ", radius:" << search_radius << std::endl; #pragma omp parallel for schedule(static) for (size_t ixp = 0; ixp < points_.size(); ixp++) { //int tid = omp_get_thread_num(); //printf("Running ixp %d in thread: %d\n", ixp, tid); // if (ixp % 10000 == 0) std::cout << "Point #" << ixp << std::endl; Point<D> &p = points_[ixp]; // std::cout << "Point #" << ixp << ", x:" << p.x_[0] << ", y:" << p.x_[1] << std::endl; NearbyCenterVisitor<D> closest_center(l_1mpi1, search_radius); closest_center.set_point(&p); // Add the noise virst closest_center.visit_noise(value0); // Look at the real centers next #if 0 if (qtree_ != NULL) { qtree_->visit_neighbor_points(p.x_[0], p.x_[1], closest_center); } #endif if (kdtree_ != NULL) { // std::cout << closest_center.dist2_ <<std::endl; double dist = sqrt(closest_center.dist2_); PointBase<D> min, max; min.x_[0] = p.x_[0] - dist; min.x_[1] = p.x_[1] - dist; max.x_[0] = p.x_[0] + dist; max.x_[1] = p.x_[1] + dist; kdtree_->find_points(min, max, closest_center); } size_t nc = p.point_to_centers_.size(); // std::cout << nc << std::endl; if (nc == 1) { // No real centers found, point belongs to noise with p=1 PointToCenter &ptc = p.point_to_centers_[0]; ptc.rnk_ = 1.0; } else { // We compute rnk_ (including the noise element 0) double max_logNnk = closest_center.max_logNnk_; double sum = 0.0; for (size_t ix = 0; ix < nc; ix++) { PointToCenter &ptc = p.point_to_centers_[ix]; if (ptc.center_ix >= 0) { Center<D> &c = centers_[ptc.center_ix]; c.npoints_++; } // std::cout << ptc.logNnk_ - max_logNnk << std::endl; if ((ptc.logNnk_ - max_logNnk) < -50.0){ ptc.rnk_ = 0.0; } else{ ptc.rnk_ = exp(ptc.logNnk_ - max_logNnk); } sum += ptc.rnk_; } // Normalize the noise rnk_ (since the next loop starts at 1!) p.point_to_centers_[0].rnk_ /= sum; // We compute the new center coordinates/variances. // we do not look at the noise (element 0) here for (size_t ix = 1; ix < nc; ix++) { PointToCenter &ptc = p.point_to_centers_[ix]; ptc.rnk_ /= sum; int center_ix = ptc.center_ix; Center<D> &center = centers_[center_ix]; //OMP_LOCK_SET(center.lock); center.rk_ += ptc.rnk_; double tempx = ptc.rnk_ / p.sigma2_[0]; double tempy = ptc.rnk_ / p.sigma2_[1]; center.next_sigma2_[0] += tempx; center.next_sigma2_[1] += tempy; center.next_x_[0] += tempx * p.x_[0]; center.next_x_[1] += tempy * p.x_[1]; //OMP_LOCK_UNSET(center.lock); } } // Accumulate r_{n0} 1.-r_{n0} PointToCenter &ptc = p.point_to_centers_[0]; cobs_ += - 0.5 * (1.0 - ptc.rnk_) * (p.x_[0]*p.x_[0] / p.sigma2_[0] + p.x_[1]*p.x_[1] / p.sigma2_[1] //+ log(2 * PI * p.sigma2_[0]) + log(2 * PI * p.sigma2_[1])); + p.x2var_logvar_); //printf("Finished ixp %d in thread: %d\n", ixp, tid); } } template<int D> void Light<D>::points_to_centers_time(int ntime, double *value0, double *value1, double *gamma, double search_radius) { ent_ = 0; // Set the time accumulators up time_data_.resize(ntime); for (int ixt = 0; ixt < ntime; ixt++) { time_data_[ixt].acc_0 = 0; time_data_[ixt].acc_n0 = 0; time_data_[ixt].nt = 0; time_data_[ixt].xi_t = 0; } // Loop over time indexes for (size_t ixp = 0; ixp < points_.size(); ixp++) { int ixp0 = ixp; Point<D> &p0 = points_[ixp0]; int time = p0.time_; TimeInfo &time_data_t = time_data_[time]; // List of unique center indices seen at this time step std::vector<int> time_center_ix; // Loop over all points at the same time index for (; ixp < points_.size() && points_[ixp].time_ == time; ixp++) { Point<D> &p = points_[ixp]; NearbyCenterVisitor<D> closest_center(value1[time], search_radius); closest_center.set_point(&p); // Add the noise virst closest_center.visit_noise(value0[time]); // Look at the real centers next #if 0 if (qtree_ != NULL) { qtree_->visit_neighbor_points(p.x_[0], p.x_[1], closest_center); } #endif if (kdtree_ != NULL) { double dist = sqrt(closest_center.dist2_); PointBase<D> min, max; min.x_[0] = p.x_[0] - dist; min.x_[1] = p.x_[1] - dist; max.x_[0] = p.x_[0] + dist; max.x_[1] = p.x_[1] + dist; kdtree_->find_points(min, max, closest_center); } size_t nc = p.point_to_centers_.size(); if (nc == 1) { // No real centers found, point belongs to noise with p=1 PointToCenter &ptc = p.point_to_centers_[0]; ptc.rnk_ = 1.0; } else { // We compute rnk_ (including the noise element 0) double max_logNnk = closest_center.max_logNnk_; double sum = 0.0; for (size_t ix = 0; ix < nc; ix++) { PointToCenter &ptc = p.point_to_centers_[ix]; if (ptc.center_ix >= 0) { Center<D> &c = centers_[ptc.center_ix]; c.npoints_++; if (!c.marked_) { c.marked_ = true; time_center_ix.push_back(ptc.center_ix); } } ptc.rnk_ = exp(ptc.logNnk_ - max_logNnk); sum += ptc.rnk_; } // Normalize the noise rnk_ (since the next loop starts at 1!) p.point_to_centers_[0].rnk_ /= sum; // We compute the new center coordinates/variances. // we do not look at the noise (element 0) here for (size_t ix = 1; ix < nc; ix++) { PointToCenter &ptc = p.point_to_centers_[ix]; ptc.rnk_ /= sum; int center_ix = ptc.center_ix; Center<D> &center = centers_[center_ix]; center.rk_ += ptc.rnk_; double tempx = ptc.rnk_ / p.sigma2_[0]; double tempy = ptc.rnk_ / p.sigma2_[1]; center.next_sigma2_[0] += tempx; center.next_sigma2_[1] += tempy; center.next_x_[0] += tempx * p.x_[0]; center.next_x_[1] += tempy * p.x_[1]; if (ptc.rnk_ > 1e-10) { ent_ += ptc.rnk_ * log(ptc.rnk_); } } } double tmp = p.point_to_centers_[0].rnk_; time_data_t.acc_0 += tmp; time_data_t.acc_n0 += (1-tmp); } time_data_t.nt = (int)time_center_ix.size(); for (size_t ixk = 0; ixk < time_center_ix.size(); ixk++) { time_data_t.xi_t += gamma[ time_center_ix[ixk] ]; } for (size_t ixk = 0; ixk < time_center_ix.size(); ixk++) { Center<D> &c = centers_[ time_center_ix[ixk] ]; c.rk2_ += 1 / time_data_t.xi_t; c.marked_ = false; } } } template<int D> void Light<D>::calc_psi_t(double *gamma, double *psi_t) { // Loop over time indexes for (size_t ixp = 0; ixp < points_.size(); ixp++) { int ixp0 = ixp; Point<D> &p0 = points_[ixp0]; int time = p0.time_; // List of unique center indices seen at this time step std::vector<int> time_center_ix; // Loop over all points at the same time index for (; ixp < points_.size() && points_[ixp].time_ == time; ixp++) { Point<D> &p = points_[ixp]; size_t nc = p.point_to_centers_.size(); for (size_t ix = 0; ix < nc; ix++) { PointToCenter &ptc = p.point_to_centers_[ix]; if (ptc.center_ix >= 0) { Center<D> &c = centers_[ptc.center_ix]; if (!c.marked_) { c.marked_ = true; time_center_ix.push_back(ptc.center_ix); psi_t[time] += gamma[ptc.center_ix]; } } } } for (size_t ixk = 0; ixk < time_center_ix.size(); ixk++) { Center<D> &c = centers_[ time_center_ix[ixk] ]; c.marked_ = false; } } } template<int D> int Light<D>::get_n_points_to_centers() { int n = 0; for (size_t ix = 0; ix < points_.size(); ix++) { n += points_[ix].point_to_centers_.size(); } return n; } template<int D> void Light<D>::get_next_center_data(double *next_mu, double *next_sigma, double *rk, double *rn0, double &cobs) { int ix2 = 0; for (int ix = 0; ix < (int)centers_.size(); ix++, ix2 += 2) { next_mu[ix2+0] = centers_[ix].next_x_[0]; next_mu[ix2+1] = centers_[ix].next_x_[1]; next_sigma[ix2+0] = centers_[ix].next_sigma2_[0]; next_sigma[ix2+1] = centers_[ix].next_sigma2_[1]; rk[ix] = centers_[ix].rk_; } for (int ix = 0; ix < (int)points_.size(); ix++) { rn0[ix] = points_[ix].point_to_centers_[0].rnk_; } cobs = cobs_; } template<int D> void Light<D>::get_next_center_data_time(double *next_mu, double *next_sigma, double *rk, double *rk2) { int ix2 = 0; for (int ix = 0; ix < (int)centers_.size(); ix++, ix2 += 2) { next_mu[ix2+0] = centers_[ix].next_x_[0]; next_mu[ix2+1] = centers_[ix].next_x_[1]; next_sigma[ix2+0] = centers_[ix].next_sigma2_[0]; next_sigma[ix2+1] = centers_[ix].next_sigma2_[1]; rk[ix] = centers_[ix].rk_; rk2[ix] = centers_[ix].rk2_; } } template<int D> void Light<D>::get_time_data(double *acc_0, double *acc_n0, int *nt, double *xi_t) { for (int ixt = 0; ixt < (int)time_data_.size(); ixt++) { TimeInfo &time_data_t = time_data_[ixt]; acc_0[ixt] = time_data_t.acc_0; acc_n0[ixt] = time_data_t.acc_n0; nt[ixt] = time_data_t.nt; xi_t[ixt] = time_data_t.xi_t; } } template<int D> void Light<D>::get_points_to_centers(int point_ix[], int center_ix[], double logNnk[], double rnk[]) { int n = 0; for (size_t ix = 0; ix < points_.size(); ix++) { for(size_t ix2 = 0; ix2 < points_[ix].point_to_centers_.size(); ix2++) { PointToCenter &ptc = points_[ix].point_to_centers_[ix2]; point_ix[n] = ptc.point_ix; center_ix[n] = ptc.center_ix; logNnk[n] = ptc.logNnk_; rnk[n] = ptc.rnk_; n++; } } } #if 0 void Light::print_qtree_leaf_stats() { CounterIntEvent counter(CounterIntEvent::SCALE_LOG2); qtree_->points_per_leaf_stats(counter); std::cout << " Centers-per-leaf stats: " << counter << std::endl; } #endif template<int D> void Light<D>::find_cache_friendly_permutation(int N, double *x, int *perm_forward, int *perm_reverse) { std::vector< Point<D> > data(N); for (int i = 0; i < N; i++) { data[i].x_[0] = x[2*i]; data[i].x_[1] = x[2*i+1]; data[i].ix_ = i; } KDTree<D, Point<D> > tree(data); std::vector< Point<D> * > &data2 = tree.data(); for (int i = 0; i < N; i++) { perm_forward[i] = data2[i]->ix_; perm_reverse[ data2[i]->ix_ ] = i; } } template<int D> void Light<D>::counters(int list_points[], int list_centers[], double search_radius) { for (size_t ixp = 0; ixp < points_.size(); ixp++) { // Initialize a point at the center location Point<D> p; p.x_[0] = points_[ixp].x_[0]; p.x_[1] = points_[ixp].x_[1]; CenterToCenterVisitor<D> closest_center(search_radius, p); // Look at the real centers next #if 0 if (qtree_ != NULL) { qtree_->visit_neighbor_points(p.x_[0], p.x_[1], closest_center); } #endif if (kdtree_ != NULL) { double dist = search_radius; PointBase<D> min, max; min.x_[0] = p.x_[0] - dist; min.x_[1] = p.x_[1] - dist; max.x_[0] = p.x_[0] + dist; max.x_[1] = p.x_[1] + dist; kdtree_->find_points(min, max, closest_center); } size_t nc = p.point_to_centers_.size(); list_points[ixp] = nc; for (size_t ix = 0; ix < nc; ix++) { PointToCenter &ptc = p.point_to_centers_[ix]; list_centers[ptc.center_ix] += 1; } } } template<int D> double Light<D>::calc_entropy() { double h = 0.0; for (int ixp = 0; ixp < (int)points_.size(); ixp++) { const Point<D> &p = points_[ixp]; for (int ixpc = 0; ixpc < (int)p.point_to_centers_.size(); ixpc++) { double r = p.point_to_centers_[ixpc].rnk_; if (r >= 1e-10) { h += r*log(r); } } } return h; } template<int D> void Light<D>::dump_state(std::ostream &f) { f << std::setprecision(4); f << "Points[" << points_.size() << "]" << std::endl; for(auto it = points_.begin(); it != points_.end(); ++it) { f << " Point: ix:" << it->ix_ << ", x:[" << it->x_[0] << ", " << it->x_[1] << "], sigma2:[" << it->sigma2_[0] << ", " << it->sigma2_[1] << "], logvar:" << it->logvar_ << ", x2var_logvar:" << it->x2var_logvar_ << std::endl; for (auto it2 = it->point_to_centers_.begin(); it2 != it->point_to_centers_.end(); ++it2) { f << " P2C: p:" << it2->point_ix << ", c:" << it2->center_ix << ", logNnk:" << it2->logNnk_ << ", rnk:" << it2->rnk_ << std::endl; } } f << "Centers[" << centers_.size() << "]" << std::endl; for(auto it = centers_.begin(); it != centers_.end(); ++it) { f << " Center: ix:" << it->ix_ << ", x:[" << it->x_[0] << ", " << it->x_[1] << "], sigma2:[" << it->sigma2_[0] << ", " << it->sigma2_[1] << "], Elog_beta:" << it->Elog_beta_ << ", rk:" << it->rk_ << ", rk2:" << it->rk2_ << ", next_x:[" << it->next_x_[0] << ", " << it->next_x_[1] << "], next_sigma2:[" << it->next_sigma2_[0] << ", " << it->next_sigma2_[1] << "]" << std::endl; for (auto it2 = it->center_to_points_.begin(); it2 != it->center_to_points_.end(); ++it2) { f << " P2C: p:" << (*it2)->point_ix << ", c:" << (*it2)->center_ix << ", logNnk:" << (*it2)->logNnk_ << ", rnk:" << (*it2)->rnk_ << std::endl; } } } template<int D> void Light<D>::dump_state(const char *filename) { std::ofstream f(filename); dump_state(f); } typedef Light<2> Light2D; #endif
10e383adcae080591c3d3ca2a0cc6e76cf5d9a95
25d877afffff29ed7aad1010bfacb9382c7f5d3f
/src/zros_cpp/impl/publisher_impl.cc
47a16c741954d763bda7614fce2e37cf9e542fa1
[]
no_license
echopairs/zros
ce5647688f10bec7372e062b1c2b07cbc2b55931
0876c3e893022e26664fd5178e92e8eb93a58338
refs/heads/master
2021-09-20T05:41:51.831339
2018-08-04T15:09:07
2018-08-04T15:09:07
71,778,445
1
0
null
2018-08-02T11:14:15
2016-10-24T10:34:21
C++
UTF-8
C++
false
false
2,248
cc
publisher_impl.cc
// // Created by pairs on 7/25/18. // #include <sspdlog/sspdlog.h> #include "publisher_impl.h" #include "zeromq_help.h" namespace zros { ZmqPubStub::ZmqPubStub(const std::string& topic):PubStub(topic) { context_ = std::make_shared<zmq::context_t>(1); pub_stub_ = std::make_shared<zmq::socket_t>(*context_.get(), ZMQ_PUB); pub_stub_->bind("tcp://*:*"); const size_t address_size = 32; char address[address_size]; auto rc = zmq_getsockopt(*pub_stub_.get(), ZMQ_LAST_ENDPOINT, address, (size_t*)&address_size); assert(rc == 0); this->set_address(address); } bool ZmqPubStub::publish(const std::string& message) { std::lock_guard<std::mutex> lk(mtx_); return zeromq::ZmqHelp::s_send(*pub_stub_.get(), message); } //////////////////// publishersImpl/////////////////////////// PublishersImpl::PublishersImpl() { } bool PublishersImpl::publish(const std::string &topic, const std::string &message) { std::lock_guard<std::mutex> lk(pubs_mutex_); if (publishers_.find(topic) != publishers_.end()) { return publishers_[topic]->publish(message); } SSPD_LOG_INFO << "please check publisher " << topic << " if exist"; return false; } void PublishersImpl::registerPublisher(const std::shared_ptr<IPublisher> publisher) { std::lock_guard<std::mutex> lk(pubs_mutex_); if (publishers_.find(publisher->get_topic()) != publishers_.end()) { SSPD_LOG_WARNING << "the publisher " << publisher->get_topic() << " already register"; publisher->set_address(publishers_[publisher->get_topic()]->get_address()); return; } auto address = _create_publisher(publisher->get_topic()); publisher->set_address(address); } // return pub address const std::string &PublishersImpl::_create_publisher(const std::string &topic) { publishers_[topic] = std::make_shared<ZmqPubStub>(topic); const std::string& address = publishers_[topic]->get_address(); SSPD_LOG_INFO << "registerPublisher: " << topic << " on address " << address << " success"; return address; } } // namespace zros
9a089b1591e59cffb6e01f6ab0cfbf84720d8888
305597d826181899c5f1571078be71fee976db13
/button_game.cpp
1820c7a4cd00385dd6618f2d41262a5143c99b1c
[]
no_license
HoangHoi/game
77bf73b95e6d0f8f469f6a1a647bea9ec04cbe61
833e77e7039976306d42da3628a8a149ed3bffc7
refs/heads/master
2020-04-10T12:15:01.147699
2018-12-09T15:57:08
2018-12-09T15:57:08
161,016,254
0
0
null
null
null
null
UTF-8
C++
false
false
250
cpp
button_game.cpp
#include "button_game.h" /** * constructor */ ButtonGame::ButtonGame() { // EEPROM.begin(EEPROM_SIZE); } /** * destructor */ ButtonGame::~ButtonGame() { } void ButtonGame::init() { pinMode(BUTTON_PIN, INPUT); } ButtonGame buttonGame;
12aa3bade952c9218fdec6feeb8b701e8a566b43
f6f178a322aecc5a63ce76cb7b592882b52d0b14
/utils/LevDistance.cc
9b9e6bb6d22a9cbdf2f799b085723a77a5d4d33b
[]
no_license
PRHLT/WordGraph2Index
02f93a303bf8e36476922bac2abae8df7a4b24f9
53167df029702b3c202ed3ce6db2a633d1650d35
refs/heads/master
2020-03-08T14:53:24.335738
2018-04-05T16:33:37
2018-04-05T16:33:37
128,197,161
0
0
null
null
null
null
UTF-8
C++
false
false
1,079
cc
LevDistance.cc
#include "LevDistance.h" #include <stdlib.h> #include <malloc.h> #include <string.h> /****************************************/ /*Implementation of Levenshtein distance*/ /****************************************/ /* Gets the minimum of three values */ int minimum(int a, int b, int c) { int min=a; if(b < min) min=b; if(c<min) min=c; return min; } /* Compute levenshtein distance between s and t */ int levenshtein_distance(const char *s, const char*t) { //Step 1 int k, i, j, n, m, cost, *d, distance; n=strlen(s); m=strlen(t); if(n!=0 && m!=0) { d=(int*)malloc((sizeof(int))*(m+1)*(n+1)); m++; n++; //Step 2 for(k=0; k<n; k++) d[k]=k; for(k=0; k<m; k++) d[k*n]=k; //Step 3 and 4 for(i=1; i<n; i++) for(j=1; j<m; j++) { //Step 5 if(s[i-1] == t[j-1]) cost=0; else cost=1; //Step 6 d[j*n+i] = minimum(d[(j-1)*n+i]+1, d[j*n+i-1]+1, d[(j-1)*n+i-1]+cost); } distance=d[n*m-1]; free(d); return distance; } else return -1; //a negative return value means that one or both strings are empty. }
6f89467096f7e7e499388549687fb0e87699b6ff
d61ab880f13d5e954fad8b2b83214fe1a81de73e
/B1049.cpp
ef704f955d95b2c9fa198eea2557f9373050142b
[]
no_license
Serrini/PAT_BasicLevel
f468d4c1cfa9bbc2494803e657ac0a5ed2bc83b8
a6a92c4e8d9438e35f98bd3bffabb6ac74950248
refs/heads/master
2020-04-13T04:02:33.910650
2018-12-24T04:37:42
2018-12-24T04:37:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
258
cpp
B1049.cpp
#include <stdio.h> int main() { int N; scanf("%d", &N); double temp; double sum = 0.0; for(int i = 0; i < N; i++) { scanf("%lf", &temp); sum += (double)(i+1) * (double)(N-i) * temp; } printf("%.2lf\n", sum); return 0; }
549c89f1f47586fa49022dfeabe6f13505da7079
691fd4ae3bb605dbe467d0336aa5d5a4f1f4d573
/src/main.cpp
13fe43ed94ac1937335f16bc17760b011b612c51
[]
no_license
future-xy/Data_Structure_project2
6672610b8e68207cb9b0c217ff16750f8b5062f6
8d9f48b621828dcbdaa08e8663bc67695546d068
refs/heads/master
2021-06-09T02:19:11.772517
2021-05-16T06:53:23
2021-05-16T06:53:23
151,533,196
0
2
null
2018-10-12T00:56:09
2018-10-04T07:17:33
C++
UTF-8
C++
false
false
7,094
cpp
main.cpp
#include<iostream> #include<fstream> #include<tuple> #include<string> #include<cmath> #include<ctime> #include<cstdlib> #include"Airport.h" #ifdef __linux__ #define CLEAR "clear" #elif _WIN32 #define CLEAR "cls" #endif using std::ofstream; using std::tuple; using std::string; using std::vector; using std::to_string; using std::get; using std::cout; using std::cin; using std::endl; bool fuel_flag; const double pi = 3.1415926; ofstream myout; unsigned int rp; void build_new_runway(Airport& myairport); void Ini(Airport& myairport, unsigned int& time, double& e1, double& e2, bool& rand_flag, bool& fuel_flag); void print(int t, Airport myairport, tuple<bool, vector<Plane>, vector<Plane>>); void print_err(Airport myairport); void usercontrol(unsigned int &m, unsigned int &n); int possion(long double E); int norm(double i, double j); int main() { srand(time(0)); rp = rand() % time(0) % 101099951; Airport myairport; unsigned int time = 0; // double e1, e2; //e1-land,e2-take off; bool rand_flag; //using random number or not; // unsigned num_plane = 1000; Ini(myairport, time, e1, e2, rand_flag, fuel_flag); system(CLEAR); myout.open("log.txt", std::ios::app); build_new_runway(myairport); for (int t = 0; t < time; ++t) { unsigned count_take_off, count_land; if (rand_flag) { count_land = possion(e1); count_take_off = possion(e2); } else { usercontrol(count_land, count_take_off); } for (int i = 0; i < count_land; ++i) { if (fuel_flag) { myairport.message(false, num_plane++, norm(5000, 250000), norm(800, 80000)); } else { myairport.message(false, num_plane++); } } for (int i = 0; i < count_take_off; ++i) { myairport.message(true, num_plane++); } tuple<bool, vector<Plane>, vector<Plane>> result = myairport.Order(); bool error_flag = get<0>(result); if (error_flag == true) { cout << "ERROR!!!\n"; print_err(myairport); break; } else { print(t, myairport, result); } cout << "\n"; int temp_ok = 1; if (temp_ok) { cout << "\nWould you want to build a new runway?\n" << "0-No\n" << "1-Yes\n"; cin >> temp_ok; if (temp_ok == 1) { build_new_runway(myairport); } } } myout.close(); return 0; } void build_new_runway(Airport& myairport) { while (true) { int ok = 0; cout << "\nWould you like to build a runway?\n" << "0 to end\n" << "1 to build\n"; cin >> ok; bool flag; bool tag; if (ok) { cout << "\nInput property of the runway\n" << "0-take off\n" << "1-land\n"; cin >> flag; cout << "\nCan the property be changed\n" << "1-Yes\n" << "0-No\n"; cin >> tag; } else { break; } myairport.buildRunway(flag, tag); } system(CLEAR); return; } void print(int t, Airport myairport, tuple<bool, vector<Plane>, vector<Plane>> result) { vector<Plane> taking = get<1>(result); vector<Plane> landing = get<2>(result); string str; str += to_string(t) + ":\n"; for (auto item : taking) { string temp = "\t"; temp += "Flight " + to_string(item.getNum()) + " is taking off on Runway " + to_string(item.getrunway()) + "\t"; temp += "Waiting time\t" + to_string(item.getTime()); str += temp + "\n"; } for (auto item : landing) { string temp = "\t"; temp += "Flight " + to_string(item.getNum()) + " is landing on Runway " + to_string(item.getrunway()) + "\t"; temp += "Waiting time\t" + to_string(item.getTime()); str += temp + "\n"; } vector<Plane> takeoff = myairport.show_takeoff(); str += "\nThe waiting queue of planes to take off:\n"; str += "Flight\tWaiting time\n"; for (auto item : takeoff) { string temp; temp += to_string(item.getNum()); temp += "\t" + to_string(item.getTime()); temp += "\n"; str += temp; } vector<Plane> land = myairport.show_land(); str += "\nThe waiting queue of planes to land:\n"; str += "Flight\tWaiting time\n"; for (auto item : land) { string temp; temp += to_string(item.getNum()); temp += "\t" + to_string(item.getTime()); temp += "\n"; str += temp; } cout << str << endl; myout << str << endl; } void print_err(Airport myairport) { string str; vector<Plane> takeoff = myairport.show_takeoff(); str += "\nThe waiting queue of planes to take off:\n"; str += "Flight\tWaiting time\n"; for (auto item : takeoff) { string temp; temp += to_string(item.getNum()); temp += "\t" + to_string(item.getTime()); temp += "\n"; str += temp; } vector<Plane> land = myairport.show_land(); str += "\nThe waiting queue of planes to land:\n"; str += "Flight\tWaiting time\n"; for (auto item : land) { string temp; temp += to_string(item.getNum()); temp += "\t" + to_string(item.getTime()); temp += "\n"; str += temp; } cout << str << endl; myout << str << endl; } void Ini(Airport& myairport, unsigned int& time, double& e1, double& e2, bool& rand_flag, bool& fuel_flag) { cout << "Welcome to Guangzhou 319 International Airport\n"; cout << "Please enter the following parameters to build a new airport\n" << "Running time? \n"; cin >> time; cout << "\n"; cout << "Use random number or not?\n" << "0-No\n" << "1-Yes\n"; cin >> rand_flag; cout << "\n"; if (rand_flag) { cout << "Please enter Lambda_1 (expected number of arrivals)\n"; cin >> e1; cout << "\nPlease enter Lambda_2 (expected number of departures)\n"; cin >> e2; } cout << "\nConsider the fuel level or not?\n" << "0-No\n" << "1-Yes\n"; cin >> fuel_flag; cout << "\nPlease enter the size of taking off queue\n"; int temp1; cin >> temp1; myairport.setSize_queue_takeoff(temp1); cout << "\nPlease enter the size of landing queue\n"; int temp2; cin >> temp2; myairport.setSize_queue_land(temp2); myout.open("log.txt"); myout << "Welcome to Guangzhou 319 International Airport\n" << "Expected running time: " << time << endl; if (rand_flag) myout << "Use random number." << endl << "λ1 (expected number of arrivals)\t" << e1 << endl << "λ2 (expected number of departures)\t" << e2 << endl; if (fuel_flag) myout << "Consider the fuel level" << endl; myout << "The size of taking off queue: " << temp2 << endl; myout << "The size of landing queue: " << temp1 << endl; myout << "\n"; myout.close(); } //random and keyboard void usercontrol(unsigned int &m,unsigned int &n) { cout << "Input the number of taking off planes right now: "; cin >> n; cout << "\nInput the number of landing planes right now: "; cin >> m; cout << endl; } int possion(long double E) { long double Lambda = E; int k = 0; long double p = 1.0; long double l=exp(-Lambda); while (p>=l) { double u; srand(rand() + rp++); u = (float)(rand() % 100) / 100; p *= u; k++; } return k-1; } int norm(double i,double j) { srand(rand() + rp++); double u1=double(rand()%1000)/1000,u2=double(rand()%1000)/1000,r; static unsigned int seed=0; r=i+sqrt(j)*sqrt(-2.0*(log(u1)/log(exp(1.0))))*cos(2*pi*u2); return r; }
0997a3faaa1e7c84f7c0b33044c8ac0de64e9068
8e3e4a8aa16934a32ad6882225cbae405ae511f5
/synth_02/29_display_util.ino
3f93e08d533d700b3d43b21fe016fea2454ea78c
[]
no_license
apiel/sequencer
da5db792ef0ae796f9dbefbfbad362222c3712e0
8eac658bdc17ecf2ff9f8b9a5ce44845c2e81a9c
refs/heads/main
2023-03-19T23:35:37.046268
2021-03-10T17:27:45
2021-03-10T17:27:45
326,249,794
0
0
null
null
null
null
UTF-8
C++
false
false
821
ino
29_display_util.ino
char buf[SCREEN_W]; void dprintxyAbs(byte x, byte y, const char *str, ...) { display.setCursor(x, y); va_list argptr; va_start(argptr, str); vsnprintf(buf, SCREEN_W, str, argptr); va_end(argptr); display.print(buf); } void dprintxy(byte x, byte y, const char *str, ...) { display.setCursor(6 * x, 8 * y); va_list argptr; va_start(argptr, str); vsnprintf(buf, SCREEN_W, str, argptr); va_end(argptr); display.print(buf); } void dprint(const char *str, ...) { va_list argptr; va_start(argptr, str); vsnprintf(buf, SCREEN_W, str, argptr); va_end(argptr); display.print(buf); } void dprintln(const char *str, ...) { va_list argptr; va_start(argptr, str); vsnprintf(buf, SCREEN_W, str, argptr); va_end(argptr); display.println(buf); }
63b98261a3bc9f9fb1c3ae7c29f4e085feee5fa9
be43ce1294caa13c7d5e85549d4d1a27f7ff903f
/datastructure/tree/tree_traverse.cpp
92f265aa14b0bd04a286c0b9e603acc562e0113d
[ "Apache-2.0" ]
permissive
sdpan/cppinterview
430f75059d041799ce9c6065dd5dea7751ad2c0a
1a475a7e9fde3cb2c23a329c962f98c8ced3c1c7
refs/heads/master
2023-08-30T20:06:55.157471
2019-01-03T04:43:56
2019-01-03T04:43:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
618
cpp
tree_traverse.cpp
#include <iostream> #include <string> #include <queue> using namespace std; template <typename T> struct Node { T data; Node<T> * left; Node<T> * right; Node(T x):data(x) {} }; using NodeInt = Node<int>; using NodeIntPtr = NodeInt *; void bfs(const NodeIntPtr root) { queue<NodeIntPtr> Q; Q.push(root); while (!Q.empty()) { NodeIntPtr T = Q.front(); Q.pop(); cout << T->data; if (T->left) Q.push(T->left); if(T->right) Q.push(T->right); } } int main() { Node* root = new Node(10); bfs(root); return 0; }
d4c0e519d728e40d7ddd0eee2b4f2eb8dcbf3214
34897bb3fc75fc074f00bc2df2f3abc2045df051
/IRsendDemo/IRsendDemo.ino
c1f960f86fbfab754fa7a4b12fda07d49359274b
[]
no_license
absh17797/Arduino-Practice-Samples
512b0eb45c1b435583ca9b40f449b06af94b4c3b
273f44995ca3a9bcb205f1fb05ab6ff8431a1da5
refs/heads/master
2020-06-13T10:05:16.105391
2019-07-08T09:05:04
2019-07-08T09:05:04
194,621,113
0
0
null
null
null
null
UTF-8
C++
false
false
754
ino
IRsendDemo.ino
/* * IRremote: IRsendDemo - demonstrates sending IR codes with IRsend * An IR LED must be connected to Arduino PWM pin 3. * Version 0.1 July, 2009 * Copyright 2009 Ken Shirriff * http://arcfn.com */ #include <IRremote.h> IRsend irsend; void setup() { Serial.begin(9600); } void loop() { Serial.println("------begin---"); //delay(2000); //irsend.sendNEC(0x880092B,28); irsend.sendNEC(0x88C0051,28); Serial.println("OFF bit sent"); delay(1500); irsend.sendNEC(0x8800A4E,28); Serial.println("ON bit sent"); Serial.println("1 st"); //delay(4000); // //irsend.sendNEC(0x8800C0C,28); //Serial.println("2 nd"); delay(1500); //5 second delay between each signal burst Serial.println("---------"); }
88a47610d68f4e7502e2840971d92dd7cd8971c3
0d653408de7c08f1bef4dfba5c43431897097a4a
/cmajor/system-x/object/Archive.cpp
61fbfd82428972fa769ce735d9f2fd90f154cf49
[]
no_license
slaakko/cmajorm
948268634b8dd3e00f86a5b5415bee894867b17c
1f123fc367d14d3ef793eefab56ad98849ee0f25
refs/heads/master
2023-08-31T14:05:46.897333
2023-08-11T11:40:44
2023-08-11T11:40:44
166,633,055
7
2
null
null
null
null
UTF-8
C++
false
false
1,480
cpp
Archive.cpp
// ================================= // Copyright (c) 2022 Seppo Laakko // Distributed under the MIT license // ================================= #include <system-x/object/Archive.hpp> #include <system-x/object/BinaryFile.hpp> #include <soulng/util/Log.hpp> #include <boost/filesystem.hpp> namespace cmsx::object { using namespace soulng::util; void CreateArchive(int logStreamId, const std::string& archiveFilePath, const std::vector<std::string>& objectFilePaths, bool verbose) { std::unique_ptr<ArchiveFile> archiveFile(new ArchiveFile(archiveFilePath)); archiveFile->CreateSections(); int n = objectFilePaths.size(); for (int i = 0; i < n; ++i) { if (verbose) { LogMessage(logStreamId, "> " + objectFilePaths[i]); } if (boost::filesystem::exists(objectFilePaths[i])) { std::unique_ptr<BinaryFile> binaryFile(ReadBinaryFile(objectFilePaths[i])); if (binaryFile->Kind() == BinaryFileKind::objectFile) { binaryFile->SetParent(archiveFile.get()); archiveFile->AddObjectFile(static_cast<ObjectFile*>(binaryFile.release())); } else { throw std::runtime_error("object file expected: " + objectFilePaths[i]); } } } archiveFile->WriteFile(); if (verbose) { LogMessage(logStreamId, "==> " + archiveFilePath); } } } // namespace cmsx::object
269ab4f5d0a7b2bfbccd78c881a4778163821bb9
ffa9f086644709d274defcd1cc835f997af322c1
/sort/get_kth_num.cpp
e436e68dea9d2aacd0ebd4bd06782cee3022c012
[]
no_license
gayhub-wpp/leecode-jz_offer
8d6f9e85a30d51116bb9512e09f1bc0651a0d375
855310619920539c5c20eb277cfc23891c60029e
refs/heads/main
2023-05-14T11:10:37.431523
2021-06-10T08:53:14
2021-06-10T08:53:14
341,374,964
0
0
null
null
null
null
UTF-8
C++
false
false
480
cpp
get_kth_num.cpp
#include <vector> #include <iostream> #include <algorithm> using std::cout; using std::endl; using std::vector; int partition(vector<int> &nums, int l, int r){ int pivot = nums[l]; while (l<r) { while (l < r && nums[r] >= pivot) { r--; } nums[l] = nums[r]; while (l<r && nums[l] <= pivot) { l++; } nums[r] = nums[l]; } nums[l] = pivot; return l; } int find_kth_num()
3b0585bc72029466bee17273e362c2c9112f9f70
95570ae3de9febfe81989751982f6a6eafe080ff
/Tests/GUI/Calendar/calendar.cpp
edf4e68788bf5531b39d99b366d2977cd13f6f17
[ "Zlib" ]
permissive
kyelin/ClanLib
a552f224c2007598a1ab8acaf4e2caa967908851
2558aba725e6866a81d50b13178cbd5c60ab6edc
refs/heads/master
2021-01-24T21:36:07.499397
2014-11-18T02:09:39
2014-11-18T02:09:39
19,273,763
0
0
null
null
null
null
UTF-8
C++
false
false
14,892
cpp
calendar.cpp
#include <ClanLib/core.h> #include <ClanLib/gui.h> #include <ClanLib/Display/Window/keys.h> #include <map> #include <ClanLib/csslayout.h> #include "calendar.h" class CalendarComponent_Impl { public: CalendarComponent_Impl() : component(0), has_mouse_over(false), selection_valid(false), hot_xy_index(-1,-1) { day_names = clan::StringHelp::split_text("Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday", ","); day_short_names = clan::StringHelp::split_text("Su,Mo,Tu,We,Th,Fr,Sa", ","); month_names = clan::StringHelp::split_text("January,February,March,April,May,June,July,August,September,October,November,December", ","); month_short_names = clan::StringHelp::split_text("Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec", ","); date_view = clan::DateTime::get_current_local_time(); } void on_render(clan::Canvas &canvas, const clan::Rect &update_rect); void on_process_message(std::shared_ptr<clan::GUIMessage> &msg); void on_enablemode_changed(); void on_resize(); void on_mouse_move(const clan::InputEvent &input_event); void on_mouse_left_down(const clan::InputEvent &input_event); void on_mouse_left_up(const clan::InputEvent &input_event); void on_mouse_leave(); void create_parts(); int get_days_in_month(int month); clan::Rect get_day_name_box(int day); int get_day_at_pos(const clan::Point &pos); clan::Vec2i get_xy_index_at_pos(const clan::Point &pos); clan::Callback_v0 func_selection_changed; CalendarComponent *component; clan::Callback_v0 func_clicked; clan::CSSLayout layout; clan::DateTime current_date; clan::GUIThemePart part_day; clan::GUIThemePart part_week; clan::GUIThemePart part_next_month; clan::GUIThemePart part_prev_month; clan::GUIThemePart part_day_name; clan::GUIThemePart part_month_year; std::vector<std::string> day_names; std::vector<std::string> day_short_names; std::vector<std::string> month_names; std::vector<std::string> month_short_names; bool has_mouse_over; clan::Point last_mouse_pos; clan::DateTime date_view; clan::DateTime date_selected; clan::Rect content_box; clan::Rect next_month_box; clan::Rect prev_month_box; clan::Rect month_year_box; clan::Vec2i hot_xy_index; int day_table[6][7]; bool selection_valid; // initially false, set when a date is picked. }; ////////////////////////////////////////////////////////////////////////// // Construction CalendarComponent::CalendarComponent(clan::GUIComponent *parent) : clan::GUIComponent(parent, "calendar"), impl(new CalendarComponent_Impl) { impl->component = this; set_blocks_default_action(false); set_focus_policy(focus_local); func_process_message().set(impl.get(), &CalendarComponent_Impl::on_process_message); func_render().set(impl.get(), &CalendarComponent_Impl::on_render); func_enablemode_changed().set(impl.get(), &CalendarComponent_Impl::on_enablemode_changed); func_resized().set(impl.get(), &CalendarComponent_Impl::on_resize); impl->create_parts(); } ////////////////////////////////////////////////////////////////////////// // Attributes clan::Size CalendarComponent::get_css_size() const { clan::Size size; size.height = impl->part_next_month.get_css_height() + impl->part_day_name.get_css_height() + 6 * impl->part_day.get_css_height(); size.width = clan::max( impl->part_prev_month.get_css_width() + impl->part_next_month.get_css_width() + impl->part_month_year.get_css_width(), // OR 7 * impl->part_day.get_css_width()); clan::Rect shrink = get_content_shrink_box(); size.width += abs(shrink.left) + abs(shrink.right); size.height += abs(shrink.top) + abs(shrink.bottom); return size; } clan::DateTime CalendarComponent::get_selected_date() const { return impl->date_selected; } ////////////////////////////////////////////////////////////////////////// // Operations void CalendarComponent::set_current_date(const clan::DateTime &date) { impl->current_date = date; request_repaint(); } ////////////////////////////////////////////////////////////////////////// // Operations void CalendarComponent::set_day_names( std::string comma_separated_monday_to_sunday ) { impl->day_names = clan::StringHelp::split_text(comma_separated_monday_to_sunday, ","); } void CalendarComponent::set_day_short_names( std::string comma_separated_monday_to_sunday ) { impl->day_short_names = clan::StringHelp::split_text(comma_separated_monday_to_sunday, ","); } void CalendarComponent::set_month_names( std::string comma_separated_monday_to_sunday ) { impl->day_names = clan::StringHelp::split_text(comma_separated_monday_to_sunday, ","); } void CalendarComponent::set_month_short_names( std::string comma_separated_monday_to_sunday ) { } void CalendarComponent::clear_selection() { impl->selection_valid = false; } ////////////////////////////////////////////////////////////////////////// // Signals clan::Callback_v0 &CalendarComponent::func_selection_changed() { return impl->func_selection_changed; } ////////////////////////////////////////////////////////////////////////// // Implementation void CalendarComponent_Impl::on_render(clan::Canvas &canvas, const clan::Rect &update_rect) { ////////////////////////////////////////////////////////////////////////// // Header: month navigation, current month & year text // Draw prev & next month graphics part_prev_month.render_box(canvas, prev_month_box); part_next_month.render_box(canvas, next_month_box); // Month name & year part_month_year.render_box(canvas, month_year_box); part_month_year.render_text(canvas, month_names[date_view.get_month()-1] + " " + clan::StringHelp::int_to_text(date_view.get_year()), part_month_year.get_content_box(month_year_box)); ////////////////////////////////////////////////////////////////////////// // Day names row (mo, tu, we...) for (int i=0; i<7; i++) { clan::Rect day_name_box = get_day_name_box(i); clan::Rect day_name_content_box = part_day_name.get_content_box(day_name_box); part_day_name.render_box(canvas, day_name_box); part_day_name.render_text(canvas, day_short_names[(i+1)%7], day_name_content_box); day_name_box.translate(day_name_box.get_width(), 0); } ////////////////////////////////////////////////////////////////////////// // Day numbers clan::DateTime today = clan::DateTime::get_current_local_time(); clan::Rect tmp_day_name_box = get_day_name_box(0); clan::Rect day_rect = part_day.get_css_size(); day_rect.translate(content_box.left, tmp_day_name_box.bottom); int prev_month = date_view.get_month()-1; if (prev_month < 1) prev_month = 12; int days_in_month = get_days_in_month(date_view.get_month()); int days_in_prev_month = get_days_in_month(prev_month); clan::DateTime first_of_month(date_view.get_year(), date_view.get_month(), 1); int num_days_of_prev_month = first_of_month.get_day_of_week()-1; if (num_days_of_prev_month < 1) num_days_of_prev_month += 7; int day_number = days_in_prev_month - num_days_of_prev_month + 1; part_day.set_pseudo_class("filler", true); bool drawing_prev_month_days = true; bool drawing_next_month_days = false; for (int w=0; w<6; w++) { clan::Rect day_rect_iterator = day_rect; for (int d=0;d<7;d++) { if (clan::Vec2i(d,w) == hot_xy_index) { part_day.set_pseudo_class("hot", true); } if (!drawing_prev_month_days && !drawing_next_month_days) { if (today.get_year() == date_view.get_year() && today.get_month() == date_view.get_month() && today.get_day() == day_number) { part_day.set_pseudo_class("today", true); } if (selection_valid && date_selected.get_day() == day_number && date_selected.get_month() == date_view.get_month() && date_selected.get_year() == date_view.get_year()) { part_day.set_pseudo_class("selected", true); } } part_day.render_box(canvas, day_rect_iterator); clan::Rect day_content_box = part_day.get_content_box(day_rect_iterator); part_day.render_text(canvas, clan::StringHelp::int_to_text(day_number), day_content_box); day_rect_iterator.translate(day_rect.get_width(), 0); day_table[w][d] = day_number; // update table for clicking. if (clan::Vec2i(d,w) == hot_xy_index) { part_day.set_pseudo_class("hot", false); } if (!drawing_prev_month_days && !drawing_next_month_days) { if (today.get_year() == date_view.get_year() && today.get_month() == date_view.get_month() && today.get_day() == day_number) { part_day.set_pseudo_class("today", false); } if (selection_valid && date_selected.get_day() == day_number && date_selected.get_month() == date_view.get_month() && date_selected.get_year() == date_view.get_year()) { part_day.set_pseudo_class("selected", false); } } day_number++; if (drawing_prev_month_days) { if (day_number > days_in_prev_month ) { drawing_prev_month_days = false; day_number = 1; part_day.set_pseudo_class("filler", false); } } else { if (day_number > days_in_month) { day_number = 1; part_day.set_pseudo_class("filler", true); drawing_next_month_days = true; } } } day_rect.translate(0, day_rect.get_height()); } } void CalendarComponent_Impl::on_process_message(std::shared_ptr<clan::GUIMessage> &msg) { if (!component->is_enabled()) return; std::shared_ptr<clan::GUIMessage_Input> input_msg = std::dynamic_pointer_cast<clan::GUIMessage_Input>(msg); if (input_msg) { const clan::InputEvent &input_event = input_msg->input_event; if (input_event.type == clan::InputEvent::pointer_moved) on_mouse_move(input_event); else if (input_event.type == clan::InputEvent::pressed && input_event.id == clan::mouse_left) on_mouse_left_down(input_event); else if (input_event.type == clan::InputEvent::released && input_event.id == clan::mouse_left) on_mouse_left_up(input_event); } std::shared_ptr<clan::GUIMessage_Pointer> pointer = std::dynamic_pointer_cast<clan::GUIMessage_Pointer>(msg); if (pointer) { if (pointer->pointer_type == clan::GUIMessage_Pointer::pointer_leave) on_mouse_leave(); } } void CalendarComponent_Impl::on_enablemode_changed() { } void CalendarComponent_Impl::create_parts() { part_next_month = clan::GUIThemePart(component, "next_month"); part_prev_month = clan::GUIThemePart(component, "prev_month"); part_day_name = clan::GUIThemePart(component, "day_name"); part_day = clan::GUIThemePart(component, "day"); part_week = clan::GUIThemePart(component, "week"); part_month_year = clan::GUIThemePart(component, "month_year"); } int CalendarComponent_Impl::get_days_in_month( int month ) { if (month < 1 || month > 12) throw clan::Exception("CalendarComponent: Month parameter not in 1-12 interval."); int days_per_month[12] = {31,28,31,30,31,30,31,31,30,31,30,31}; int num_days = days_per_month[month-1]; if (month == 2) { int year = date_view.get_year(); bool leap_year = (year%4) == 0; // Leap years are every 4th year if ((year%100) == 0 && (year%400) != 0) // Except for those divisible by 100 unless they are also divisible by 400 leap_year = false; if (leap_year) { num_days = 29; } } return num_days; } void CalendarComponent_Impl::on_mouse_move(const clan::InputEvent &input_event) { bool changed = false; clan::Point mouse_pos = input_event.mouse_pos; clan::Vec2i xy_index = get_xy_index_at_pos(mouse_pos); if (xy_index != hot_xy_index) { hot_xy_index = xy_index; changed = true; } changed |= part_prev_month.set_pseudo_class("hot", prev_month_box.contains(mouse_pos)); changed |= part_next_month.set_pseudo_class("hot", next_month_box.contains(mouse_pos)); changed |= part_month_year.set_pseudo_class("hot", month_year_box.contains(mouse_pos)); if (changed) component->request_repaint(); } void CalendarComponent_Impl::on_mouse_left_down(const clan::InputEvent &input_event) { if (next_month_box.contains(input_event.mouse_pos)) { int month = date_view.get_month(); int year = date_view.get_year(); month++; if (month > 12) { month = 1; year++; date_view.set_year(year); } date_view.set_month(month); component->request_repaint(); } else if (prev_month_box.contains(input_event.mouse_pos)) { int month = date_view.get_month(); int year = date_view.get_year(); month--; if (month < 1) { month = 12; year--; date_view.set_year(year); } date_view.set_month(month); component->request_repaint(); } else { int tmp_day = get_day_at_pos(input_event.mouse_pos); if (tmp_day != -1) { if (selection_valid) { if (tmp_day != date_selected.get_day()) { date_selected = date_view; date_selected.set_day(tmp_day); if (!func_selection_changed.is_null()) func_selection_changed.invoke(); component->request_repaint(); } } else { date_selected = date_view; date_selected.set_day(tmp_day); selection_valid = true; if (!func_selection_changed.is_null()) func_selection_changed.invoke(); component->request_repaint(); } } } } void CalendarComponent_Impl::on_mouse_left_up(const clan::InputEvent &input_event) { } void CalendarComponent_Impl::on_resize() { content_box = component->get_content_box(); prev_month_box = part_next_month.get_css_size(); prev_month_box.translate(content_box.left, content_box.top); next_month_box = part_next_month.get_css_size(); next_month_box.translate(content_box.right - next_month_box.get_width(), content_box.top); month_year_box = clan::Rect(prev_month_box.right, content_box.top, next_month_box.left, next_month_box.bottom); component->request_repaint(); } clan::Rect CalendarComponent_Impl::get_day_name_box(int day) { clan::Rect box = part_day_name.get_css_size(); box.translate(content_box.left, prev_month_box.bottom); box.translate(day * box.get_width(), 0); return box; } void CalendarComponent_Impl::on_mouse_leave() { hot_xy_index = clan::Vec2i(-1,-1); part_month_year.set_pseudo_class("hot", false); part_prev_month.set_pseudo_class("hot", false); part_next_month.set_pseudo_class("hot", false); component->request_repaint(); } clan::Vec2i CalendarComponent_Impl::get_xy_index_at_pos(const clan::Point &pos) { clan::Rect day_name_box = get_day_name_box(0); clan::Rect day_box = part_day.get_css_size(); clan::Rect days_area(clan::Point(day_name_box.left, day_name_box.bottom), clan::Size(day_box.right*7, day_box.bottom*6)); clan::Vec2i xy_index(-1,-1); if (days_area.contains(pos)) { xy_index = (pos - days_area.get_top_left()) / day_box.get_bottom_right(); } return xy_index; } int CalendarComponent_Impl::get_day_at_pos(const clan::Point &pos) { clan::Vec2i xy_index = get_xy_index_at_pos(pos); int day = day_table[xy_index.y][xy_index.x]; if (xy_index.y <= 1 && day > 15) day = -1; else if (xy_index.y > 3 && day < 15) day = -1; return day; }
c1eb9506753bcd953fd7ad6f96fced811bb3a39e
e10f35fe28878455372be47935c9012ea19147c3
/lab3/modelloader.h
0464d2fba5cdf5eedf1d2b606fe6ffca7909c554
[]
no_license
Inlucker/OOP
5ce52ad66f77b0b41097ae2693efa81492a9e297
02d05b94f0bdf5b8702b8990682c48db25f51a3a
refs/heads/main
2023-07-07T14:27:11.276612
2021-08-16T10:53:46
2021-08-16T10:53:46
348,507,319
0
0
null
null
null
null
UTF-8
C++
false
false
314
h
modelloader.h
#ifndef MODELLOADER_H #define MODELLOADER_H #include "basemodelloader.h" //class Model; //#include "fileloader.h" class ModelLoader : public BaseModelLoader { public: ModelLoader(); virtual ~ModelLoader() = default; shared_ptr<Model> loadModel(string fileName) override; }; #endif // MODELLOADER_H
23545b50e8946de29a8f729e6edb2ec588830b29
9c3a2657be19bfe94cfa96eda1eaf4366581d004
/nes_py/laines/include/cpu.hpp
f67cc797c4422f0ab5b31d91f457f9e14d56ed6f
[ "BSD-2-Clause" ]
permissive
oxenoxeno/nes-py
51cd228ceb31335e4fb3d44e185b91b0df65c6f2
57ce368cc35758c8f451a7cff59ccdec838eec79
refs/heads/master
2020-04-09T08:40:09.581526
2018-10-14T05:11:32
2018-10-14T05:11:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,863
hpp
cpu.hpp
#pragma once #include <cstdlib> #include <cstring> #include <iostream> #include "common.hpp" #include "joypad.hpp" #include "cartridge.hpp" /* Processor flags */ enum Flag {C, Z, I, D, V, N}; /// a class to contain flag register data class Flags { // a private data structure to hold the flags bool f[6]; public: /** Handle accessing this object using brackets */ bool& operator[] (const int i) { return f[i]; } /** Return the flags as a byte */ u8 get() { return f[C] | f[Z] << 1 | f[I] << 2 | f[D] << 3 | 1 << 5 | f[V] << 6 | f[N] << 7; } /** Set the flags from a full byte */ void set(u8 p) { f[C] = NTH_BIT(p, 0); f[Z] = NTH_BIT(p, 1); f[I] = NTH_BIT(p, 2); f[D] = NTH_BIT(p, 3); f[V] = NTH_BIT(p, 6); f[N] = NTH_BIT(p, 7); } }; /// A structure to contain all local variables of a CPU for state backup struct CPUState { /// the CPU RAM u8 ram[0x800]; /// the CPU registers u8 A, X, Y, S; /// the program counter u16 PC; /// the CPU flags register Flags P; /// non-mask-able interrupt and interrupt request flag bool nmi, irq; /// Initialize a new CPU State CPUState() { P.set(0x04); A = X = Y = S = 0x00; memset(ram, 0xFF, sizeof(ram)); nmi = irq = false; } /// Initialize a new CPU State as a copy of another CPUState(CPUState* state) { // copy the RAM array into this CPU state std::copy(std::begin(state->ram), std::end(state->ram), std::begin(ram)); // copy the registers A = state->A; X = state->X; Y = state->Y; S = state->S; // copy the program counter PC = state->PC; // copy the flags P = state->P; // copy the interrupt flags nmi = state->nmi; irq = state->irq; } }; /// The CPU (MOS6502) for the NES namespace CPU { // Interrupt type enum IntType { NMI, RESET, IRQ, BRK }; // Addressing mode typedef u16 (*Mode)(void); /** Set the local joy-pad to a new value @param new_joypad the joy-pad pointer to replace the existing pointer */ void set_joypad(Joypad* new_joypad); /** Return a pointer to this CPU's joy-pad object. @returns a pointer to the CPU's joy-pad */ Joypad* get_joypad(); /// Set the Cartridge instance pointer to a new value. void set_cartridge(Cartridge* new_cartridge); /// Return the pointer to this PPU's Cartridge instance Cartridge* get_cartridge(); /** Return the value of the given memory address. This is meant as a public getter to the memory of the machine for RAM hacks. @param address the 16-bit address to read from memory @returns the byte located at the given address */ u8 read_mem(u16 address); /** Return the value of the given memory address. This is meant as a public getter to the memory of the machine for RAM hacks. @param address the 16-bit address to read from memory @param value the 8-bit value to write to the given memory address */ void write_mem(u16 address, u8 value); /** Set the non-maskable interrupt flag. @param v the value to set the flag to */ void set_nmi(bool v = true); /** Set the interrupt request flag. @param v the value to set the flag to */ void set_irq(bool v = true); /// Turn on the CPU void power(); /// Run the CPU for roughly a frame void run_frame(); /// Return a new CPU state of the CPU variables CPUState* get_state(); /// Restore the CPU variables from a saved state void set_state(CPUState* state); }
d6634edae3c21ed29ed19c0a071bdad408aea0eb
d067b7954a3ec4bd92d4542e65ef8259d63b47a4
/.svn/pristine/d6/d6634edae3c21ed29ed19c0a071bdad408aea0eb.svn-base
326d46ead3b6b3d91e78a99f8333e01f31c070ee
[]
no_license
fact-project/mars_pulse_truth
b767f781cceb782ae014e5eba54ace4846dc4b50
c0db9cce9fbb2f866b69f53d7820dea65d96aa4f
refs/heads/master
2020-06-17T20:10:10.343838
2016-11-29T17:04:58
2016-11-29T17:04:58
74,973,456
0
0
null
null
null
null
UTF-8
C++
false
false
7,396
d6634edae3c21ed29ed19c0a071bdad408aea0eb.svn-base
/* ======================================================================== *\ ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Thomas Bretz 07/2011 <mailto:thomas.bretz@epfl.ch> ! ! Copyright: MAGIC Software Development, 2000-2011 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MRawFitsRead // // This tasks reads the fits data file in the form used by FACT. // // Input Containers: // -/- // // Output Containers: // MRawRunHeader, MRawEvtHeader, MRawEvtData, MRawEvtTime // ////////////////////////////////////////////////////////////////////////////// #include "MRawFitsRead.h" #include <fstream> #include <TClass.h> #include "MLog.h" #include "MLogManip.h" #include "factfits.h" #include "MTime.h" #include "MArrayB.h" #include "MArrayS.h" #include "MParList.h" #include "MRawRunHeader.h" #include "MRawEvtHeader.h" #include "MRawEvtData.h" #include "MRawBoardsFACT.h" ClassImp(MRawFitsRead); using namespace std; // -------------------------------------------------------------------------- // // Default constructor. It tries to open the given file. // MRawFitsRead::MRawFitsRead(const char *fname, const char *name, const char *title) : MRawFileRead(fname, name, title), fRawBoards(0) { } const fits *MRawFitsRead::GetFitsFile() const { return static_cast<const fits*>(GetStream()); } Int_t MRawFitsRead::PreProcess(MParList *pList) { fRawBoards = (MRawBoardsFACT*)pList->FindCreateObj("MRawBoardsFACT"); if (!fRawBoards) return kFALSE; return MRawFileRead::PreProcess(pList); } Bool_t MRawFitsRead::LoadMap(const char *name) { fPixelMap.resize(1440); if (!name) return kTRUE; ifstream fin(name); int l = 0; string buf; while (getline(fin, buf, '\n')) { if (l>1439) break; const TString bf = TString(buf.c_str()).Strip(TString::kBoth); if (bf[0]=='#') continue; stringstream str(bf.Data()); int index, cbpx; str >> index; str >> cbpx; const int c = cbpx/1000; const int b = (cbpx/100)%10; const int p = (cbpx/10)%10; const int x = cbpx%10; const int hw = x+p*9+b*36+c*360; if (hw>1439) break; fPixelMap[hw] = index; l++; } if (l!=1440) { gLog << err << "ERROR - Problems reading " << name << endl; fPixelMap.resize(0); return kFALSE; } return kTRUE; } Bool_t MRawFitsRead::IsFits(const char *name) { return factfits(name).good(); } istream *MRawFitsRead::OpenFile(const char *filename) { return new factfits(filename); } Bool_t MRawFitsRead::ReadRunHeader(istream &stream) { factfits &fin = static_cast<factfits&>(stream); if (fin.GetStr("TELESCOP")!="FACT") { gLog << err << "Not a valid FACT FITS file (key TELESCOP not 'FACT')." << endl; return kFALSE; } fIsMc = fin.HasKey("ISMC"); const string type = fin.GetStr("RUNTYPE"); fRawRunHeader->SetValidMagicNumber(); fRawRunHeader->SetNumEvents(fin.GetNumRows());//GetUInt("NAXIS2")); fRawRunHeader->InitPixels(fin.GetUInt("NPIX")); fRawRunHeader->SetObservation(type=="4294967295"?"":fin.GetStr("RUNTYPE"), "FACT"); fRawRunHeader->SetRunInfo(0, fin.GetUInt("NIGHT"), fin.GetUInt("RUNID")); fRawRunHeader->InitFact(fin.GetUInt("NPIX")/9, 9, fin.GetUInt("NROI"), fPixelMap.size()==0?0:fPixelMap.data()); fRawRunHeader->SetFormat(0xf172, fIsMc ? 0 : fin.GetUInt("BLDVER")); fRawRunHeader->SetRunType(fIsMc ? 0x0100/*mc*/ : 0/*data*/); if (!fIsMc) { const string runstart = fin.GetStr("DATE-OBS"); const string runstop = fin.GetStr("DATE-END"); fRawRunHeader->SetRunTime(MTime(runstart.c_str()), MTime(runstop.c_str())); } for (int i=0; i<1000; i++) { const string clnamed = Form("CLNAME%d", i); if (!fin.HasKey(clnamed)) break; const string cltyped = Form("CLTYPE%d", i); const string clname = fin.GetStr(clnamed); const string cltype = fin.HasKey(cltyped) ? fin.GetStr(cltyped) : clname; MParContainer *par = (MParContainer*)fParList->FindCreateObj(cltype.c_str(), clname.c_str()); if (par && !par->SetupFits(fin)) { *fLog << err << "ERROR - Setting up " << par->GetDescriptor() << " failed." << endl; return kFALSE; } } return fin.HasKey("NPIX") && fin.HasKey("RUNID") && fin.HasKey("NROI") && fin.HasKey("NIGHT"); } Bool_t MRawFitsRead::InitReadData(istream &stream) { factfits &fin = static_cast<factfits&>(stream); MArrayB **data = reinterpret_cast<MArrayB**>(fRawEvtData1->DataMember("fHiGainFadcSamples")); MArrayS **cell = reinterpret_cast<MArrayS**>(fRawEvtData1->DataMember("fStartCells")); UInt_t *evtnum = reinterpret_cast<UInt_t*> (fRawEvtHeader->DataMember("fDAQEvtNumber")); // The 'wrong' cast is intentional because we read only two bytes from the file UShort_t *trg = reinterpret_cast<UShort_t*>(fRawEvtHeader->DataMember("fTrigPattern")); if (!data || !cell || !evtnum || !trg) return kFALSE; fRawEvtData1->ResetPixels(); fRawEvtData2->ResetPixels(0, 0); fRawEvtData1->InitStartCells(); if (!fin.SetRefAddress("EventNum", *evtnum)) return kFALSE; if (!fin.SetRefAddress("TriggerType", *trg)) return kFALSE; if (!fIsMc) { if (!fin.SetRefAddress("NumBoards", fNumBoards)) return kFALSE; fPCTime.resize(2); if (!fin.SetVecAddress("UnixTimeUTC", fPCTime)) if (!fin.SetVecAddress("PCTime", fPCTime)) return kFALSE; if (!fin.SetPtrAddress("BoardTime", fRawBoards->fFadTime, 40)) return kFALSE; } if (!fin.SetPtrAddress("Data", (int16_t*)(*data)->GetArray(), (*data)->GetSize()/2)) return kFALSE; if (!fin.SetPtrAddress("StartCellData", (uint16_t*)(*cell)->GetArray(), (*cell)->GetSize())) return kFALSE; fRawEvtData1->SetIndices(fRawRunHeader->GetPixAssignment()); return kTRUE; } Bool_t MRawFitsRead::ReadEvent(istream &stream) { if (!static_cast<factfits&>(stream).GetNextRow()) return kFALSE; if (!fIsMc) { // Skip incomplete events if (fNumBoards!=40) return kCONTINUE; fRawEvtTime->SetUnixTime(fPCTime[0], fPCTime[1]); } fRawEvtData1->SetReadyToSave(); fRawEvtData2->SetReadyToSave(); return kTRUE; } void MRawFitsRead::SkipEvent(istream &fin) { static_cast<factfits&>(fin).SkipNextRow(); }
cac777c6c4aae4a561bd18510e0d6934d6c13965
88fd23eb2748bfbdd0899d62fc01358f627c56a7
/AppleOnboardAudio/PlatformInterface.h
1131a4e4b20db50f399d2ef181e3e2c7f3c54754
[]
no_license
Quantum-Platinum-Cloud/AppleOnboardAudio
db16d427cbfc8da49dcb0683d27fe031056294d5
46f2f8a643cc36e1332feece6e39dd42a37302ab
refs/heads/main
2023-08-17T19:25:20.473202
2009-05-11T20:29:13
2021-10-06T04:40:39
589,301,255
1
0
null
2023-01-15T18:23:51
2023-01-15T18:23:51
null
UTF-8
C++
false
false
17,164
h
PlatformInterface.h
/* * PlatformInterface.h * * Defines an interface for IO controllers (eg. Key Largo) * * Created by Aram Lindahl on Mon Mar 10 2003. * Copyright (c) 2003 AppleComputer. All rights reserved. */ #ifndef __PLATFORMINTERFACE__ #define __PLATFORMINTERFACE__ #include <IOKit/IOService.h> #include <IOKit/IOInterruptEventSource.h> #include <IOKit/IOTimerEventSource.h> #include <IOKit/IOWorkLoop.h> #include <IOKit/IOCommandGate.h> #include "AudioHardwareConstants.h" #include <IOKit/ppc/IODBDMA.h> #include "PlatformInterfaceSupportCommon.h" #include "PlatformInterfaceDBDMA.h" #include "PlatformInterfaceFCR.h" #include "PlatformInterfaceGPIO.h" #include "PlatformInterfaceI2C.h" #include "PlatformInterfaceI2S.h" #define kComboJackDelay ( NSEC_PER_SEC / 4 ) #define kNewStyleComboJackDelay ( NSEC_PER_SEC / 50 ) // If this enumeration changes then please apply the same changes to the DiagnosticSupport/AOA Viewer sources. typedef enum PlatformInterfaceObjectType { kPlatformInterfaceType_Unknown = 0, kPlatformInterfaceType_KeyLargo, kPlatformInterfaceType_K2, kPlatformInterfaceType_Shasta } ; // If this enumeration changes then please apply the same changes to the DiagnosticSupport/AOA Viewer sources. typedef enum { gpioMessage_AnalogCodecReset_bitAddress = 0, gpioMessage_ClockMux_bitAddress, gpioMessage_CodecInterrupt_bitAddress, gpioMessage_CodecErrorInterrupt_bitAddress, gpioMessage_ComboInJackType_bitAddress, gpioMessage_ComboOutJackType_bitAddress, gpioMessage_DigitalCodecReset_bitAddress, gpioMessage_DigitalInDetect_bitAddress, gpioMessage_DigitalOutDetect_bitAddress, gpioMessage_HeadphoneDetect_bitAddress, gpioMessage_HeadphoneMute_bitAddress, gpioMessage_InputDataMux_bitAddress, gpioMessage_LineInDetect_bitAddress, gpioMessage_LineOutDetect_bitAddress, gpioMessage_LineOutMute_bitAddress, gpioMessage_SpeakerDetect_bitAddress, gpioMessage_SpeakerMute_bitAddress, gpioMessage_InternalSpeakerID_bitAddress, gpioMessage_ComboInAssociation_bitAddress, gpioMessage_ComboOutAssociation_bitAddress, gpioMessage_InternalMicrophoneID_bitAddress } gpioMessages_bitAdddresses_bitAddresses; // If this structure changes then please apply the same changes to the DiagnosticSupport/AOA Viewer sources. typedef struct { UInt32 intCtrl; UInt32 serialFmt; UInt32 codecMsgOut; UInt32 codecMsgIn; UInt32 frameCount; UInt32 frameCountToMatch; UInt32 dataWordSizes; UInt32 peakLevelSfSel; UInt32 peakLevelIn0; UInt32 peakLevelIn1; UInt32 newPeakLevelIn0; UInt32 newPeakLevelIn1; UInt32 reserved_13; UInt32 reserved_14; UInt32 reserved_15; UInt32 reserved_16; UInt32 reserved_17; UInt32 reserved_18; UInt32 reserved_19; UInt32 reserved_20; UInt32 reserved_21; UInt32 reserved_22; UInt32 reserved_23; UInt32 reserved_24; UInt32 reserved_25; UInt32 reserved_26; UInt32 reserved_27; UInt32 reserved_28; UInt32 reserved_29; UInt32 reserved_30; UInt32 reserved_31; } i2sDescriptor ; typedef i2sDescriptor * i2sDescriptorPtr; // If this structure changes then please apply the same changes to the DiagnosticSupport/AOA Viewer sources. typedef struct { UInt32 i2sEnable; UInt32 i2sClockEnable; UInt32 i2sReset; UInt32 i2sCellEnable; UInt32 clock18mHzEnable; UInt32 clock45mHzEnable; UInt32 clock49mHzEnable; UInt32 pll45mHzShutdown; UInt32 pll49mHzShutdown; UInt32 reserved_10; UInt32 reserved_11; UInt32 reserved_12; UInt32 reserved_13; UInt32 reserved_14; UInt32 reserved_15; UInt32 reserved_16; UInt32 reserved_17; UInt32 reserved_18; UInt32 reserved_19; UInt32 reserved_20; UInt32 reserved_21; UInt32 reserved_22; UInt32 reserved_23; UInt32 reserved_24; UInt32 reserved_25; UInt32 reserved_26; UInt32 reserved_27; UInt32 reserved_28; UInt32 reserved_29; UInt32 reserved_30; UInt32 reserved_31; } fcrDescriptor ; typedef fcrDescriptor * fcrDescriptorPtr ; // If this structure changes then please apply the same changes to the DiagnosticSupport/AOA Viewer sources. typedef struct { GpioAttributes gpio_AnalogCodecReset; GpioAttributes gpio_ClockMux; GpioAttributes gpio_CodecInterrupt; GpioAttributes gpio_CodecErrorInterrupt; GpioAttributes gpio_ComboInJackType; GpioAttributes gpio_ComboOutJackType; GpioAttributes gpio_DigitalCodecReset; GpioAttributes gpio_DigitalInDetect; GpioAttributes gpio_DigitalOutDetect; GpioAttributes gpio_HeadphoneDetect; GpioAttributes gpio_HeadphoneMute; GpioAttributes gpio_InputDataMux; GpioAttributes gpio_LineInDetect; GpioAttributes gpio_LineOutDetect; GpioAttributes gpio_LineOutMute; GpioAttributes gpio_SpeakerDetect; GpioAttributes gpio_SpeakerMute; GpioAttributes gpio_InternalSpeakerID; GPIOSelector gpio_ComboInAssociation; GPIOSelector gpio_ComboOutAssociation; GpioAttributes gpio_InternalMicrophoneID; GpioAttributes reserved_21; GpioAttributes reserved_22; GpioAttributes reserved_23; GpioAttributes reserved_24; GpioAttributes reserved_25; GpioAttributes reserved_26; GpioAttributes reserved_27; GpioAttributes reserved_28; GpioAttributes reserved_29; GpioAttributes reserved_30; UInt32 gpioMessageFlags; // bit mapped array indicating interrupt control success (TRUE) or failure (FALSE) } gpioDescriptor; typedef gpioDescriptor * gpioDescriptorPtr; typedef struct { UInt32 i2c_pollingMode; UInt32 i2c_errorStatus; UInt32 reserved_02; UInt32 reserved_03; UInt32 reserved_04; UInt32 reserved_05; UInt32 reserved_06; UInt32 reserved_07; UInt32 reserved_08; UInt32 reserved_09; UInt32 reserved_0A; UInt32 reserved_0B; UInt32 reserved_0C; UInt32 reserved_0D; UInt32 reserved_1E; UInt32 reserved_1F; } i2cDescriptor; typedef i2cDescriptor * i2cDescriptorPtr; // [3517297] typedef enum ComboStateMachineState { kComboStateMachine_handle_jack_insert = 0, kComboStateMachine_handle_metal_change, kComboStateMachine_handle_plastic_change }; // If this structure changes then please apply the same changes to the DiagnosticSupport/AOA Viewer sources. typedef struct { PlatformInterfaceObjectType platformType; fcrDescriptor fcr; i2sDescriptor i2s; gpioDescriptor gpio; i2cDescriptor i2c; } PlatformStateStruct ; typedef PlatformStateStruct * PlatformStateStructPtr; #define kAnalogCodecResetSel kCodecResetSel void comboDelayTimerCallback ( OSObject *owner, IOTimerEventSource *device ); // [3787193] IOReturn runComboDelayTasks ( OSObject * owner, void * arg1, void * arg2, void * arg3, void * arg4 ); // [3787193] class AppleOnboardAudio; class AppleOnboardAudioUserClient; class PlatformInterface : public OSObject { OSDeclareDefaultStructors ( PlatformInterface ); public: virtual bool init ( IOService* device, AppleOnboardAudio* provider, UInt32 inDBDMADeviceIndex, UInt32 supportSelectors, UInt32 irqEnableMask ); virtual void free ( void ); // // Power Management Support // virtual IOReturn performPowerStateChange ( IOService * device, UInt32 currentPowerState, UInt32 pendingPowerState ); // // Interrupt Support // virtual void checkDetectStatus ( IOService * device ); virtual IOReturn registerInterruptHandler ( IOService * theDevice, void * interruptHandler, PlatformInterruptSource source ); virtual void setWorkLoop ( IOWorkLoop* inWorkLoop ); virtual bool registerDetectInterrupts ( IOService * device ); virtual void threadedMemberRegisterDetectInterrupts (IOService * device ); static void threadedRegisterDetectInterrupts ( PlatformInterface *self, IOService * device ); virtual bool registerNonDetectInterrupts ( IOService * device ); virtual void threadedMemberRegisterNonDetectInterrupts (IOService * device ); static void threadedRegisterNonDetectInterrupts ( PlatformInterface *self, IOService * device ); virtual IOReturn unregisterInterruptHandler ( IOService * theDevice, void * interruptHandler, PlatformInterruptSource source ); virtual void unregisterDetectInterrupts ( void ); virtual void unregisterNonDetectInterrupts ( void ); // // Interrupt Handler Methods // static void codecErrorInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); static void codecInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); static void comboInDetectInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); static void comboOutDetectInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); static void digitalInDetectInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); static void digitalOutDetectInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); static void headphoneDetectInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); static void lineInDetectInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); static void lineOutDetectInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); virtual void poll ( void ); static void speakerDetectInterruptHandler ( OSObject *owner, IOInterruptEventSource *source, UInt32 count, void * arg4 ); // // Codec Methods // virtual IOReturn readCodecRegister ( UInt32 codecRef, UInt8 subAddress, UInt8 *data, UInt32 dataLength ); virtual IOReturn writeCodecRegister ( UInt32 codecRef, UInt8 subAddress, UInt8 *data, UInt32 dataLength ); virtual UInt32 getSavedMAP ( UInt32 codecRef ); virtual IOReturn setMAP ( UInt32 codecRef, UInt8 subAddress ); // // FCR Methods // virtual bool getI2SCellEnable (); virtual bool getI2SClockEnable (); virtual bool getI2SEnable (); virtual bool getI2SSWReset (); virtual IOReturn releaseI2SClockSource ( I2SClockFrequency inFrequency ); virtual IOReturn requestI2SClockSource ( I2SClockFrequency inFrequency ); virtual IOReturn setI2SCellEnable ( bool enable ); virtual IOReturn setI2SClockEnable ( bool enable ); virtual IOReturn setI2SEnable ( bool enable ); virtual IOReturn setI2SSWReset ( bool enable ); // // I2S Methods: IOM Control // virtual UInt32 getDataWordSizes (); virtual UInt32 getFrameCount (); virtual UInt32 getI2SIOM_CodecMsgIn (); virtual UInt32 getI2SIOM_CodecMsgOut (); virtual UInt32 getI2SIOM_FrameMatch (); virtual UInt32 getI2SIOM_PeakLevelIn0 (); virtual UInt32 getI2SIOM_PeakLevelIn1 (); virtual UInt32 getI2SIOM_PeakLevelSel (); virtual UInt32 getI2SIOMIntControl (); virtual UInt32 getPeakLevel ( UInt32 channelTarget ); virtual UInt32 getSerialFormatRegister (); virtual IOReturn setDataWordSizes ( UInt32 dataWordSizes ); virtual IOReturn setFrameCount ( UInt32 value ); virtual IOReturn setI2SIOM_CodecMsgIn ( UInt32 value ); virtual IOReturn setI2SIOM_CodecMsgOut ( UInt32 value ); virtual IOReturn setI2SIOM_FrameMatch ( UInt32 value ); virtual IOReturn setI2SIOM_PeakLevelIn0 ( UInt32 value ); virtual IOReturn setI2SIOM_PeakLevelIn1 ( UInt32 value ); virtual IOReturn setI2SIOM_PeakLevelSel ( UInt32 value ); virtual IOReturn setI2SIOMIntControl ( UInt32 intCntrl ); virtual IOReturn setPeakLevel ( UInt32 channelTarget, UInt32 levelMeterValue ); virtual IOReturn setSerialFormatRegister ( UInt32 serialFormat ); // // GPIO Methods // virtual IOReturn disableInterrupt ( IOService * device, PlatformInterruptSource source ); virtual void enableAmplifierMuteRelease ( void ); // [3514762] virtual IOReturn enableInterrupt ( IOService * device, PlatformInterruptSource source ); virtual GpioAttributes getClockMux ( ); virtual GpioAttributes getCodecErrorInterrupt (); virtual GpioAttributes getCodecInterrupt (); virtual GpioAttributes getCodecReset ( CODEC_RESET target ); GpioAttributes getComboIn ( void ); // [3453799] GPIOSelector getComboInAssociation ( void ); // [3453799] virtual GpioAttributes getComboInJackTypeConnected (); // for combo digital/analog connector GpioAttributes getComboOut ( void ); // [3453799] GPIOSelector getComboOutAssociation ( void ); // [3453799] virtual GpioAttributes getComboOutJackTypeConnected (); // for combo digital/analog connector virtual GpioAttributes getDigitalInConnected (); virtual GpioAttributes getDigitalOutConnected (); virtual GpioAttributes getHeadphoneConnected (); virtual GpioAttributes getHeadphoneMuteState (); virtual GpioAttributes getInputDataMux (); virtual GpioAttributes getInternalMicrophoneID (); virtual GpioAttributes getInternalSpeakerID (); virtual GpioAttributes getLineInConnected (); virtual GpioAttributes getLineOutConnected (); virtual GpioAttributes getLineOutMuteState (); virtual GpioAttributes getSpeakerConnected (); virtual GpioAttributes getSpeakerMuteState (); void setAssociateComboInTo ( GPIOSelector theDetectInterruptGpio ); // [3453799] void setAssociateComboOutTo ( GPIOSelector theDetectInterruptGpio ); // [3453799] virtual IOReturn setClockMux ( GpioAttributes muxState ); virtual IOReturn setCodecReset ( CODEC_RESET target, GpioAttributes reset ); void setComboIn ( GpioAttributes jackState ); // [3453799] void setComboOut ( GpioAttributes jackState ); // [3453799] virtual IOReturn setHeadphoneMuteState ( GpioAttributes muteState ); virtual IOReturn setInputDataMux ( GpioAttributes muxState ); virtual IOReturn setLineOutMuteState ( GpioAttributes muteState ); virtual IOReturn setSpeakerMuteState ( GpioAttributes muteState ); // // DBDMA Memory Address Acquisition Methods // virtual IODBDMAChannelRegisters * GetInputChannelRegistersVirtualAddress ( IOService * dbdmaProvider ); virtual IODBDMAChannelRegisters * GetOutputChannelRegistersVirtualAddress ( IOService * dbdmaProvider ); // // User Client Support // virtual IOReturn getPlatformState ( PlatformStateStructPtr outState ); virtual IOReturn setPlatformState ( PlatformStateStructPtr inState ); virtual void platformRunComboDelayTasks ( void ); // [3787193] UInt32 mComboInInterruptsProduced; // [3787193] UInt32 mComboInInterruptsConsumed; // [3787193] UInt32 mComboOutInterruptsProduced; // [3787193] UInt32 mComboOutInterruptsConsumed; // [3787193] virtual void triggerComboOneShot (UInt64 delayInNanos); // [3787193], [4166340] UInt32 mIrqEnableMask; // [4073140,4079688] protected: UInt32 mGpioMessageFlag; static UInt32 sInstanceCount; UInt32 mInstanceIndex; Boolean mDetectInterruptsHaveBeenRegistered; // [3585556] Don't allow multiple registrations or unregistrations of interrupts! Boolean mNonDetectInterruptsHaveBeenRegistered; // [3585556] Don't allow multiple registrations or unregistrations of interrupts! AppleOnboardAudio * mProvider; thread_call_t mRegisterDetectInterruptsThread; // [3517442] mpc thread_call_t mRegisterNonDetectInterruptsThread; // [3517442] mpc GPIOSelector mComboInAssociation; // [3453799] GPIOSelector mComboOutAssociation; // [3453799] GpioAttributes mComboInJackState; // [3453799] GpioAttributes mComboOutJackState; // [3453799] IOTimerEventSource * comboDelayTimer; // [3787193] PlatformInterfaceDBDMA * platformInterfaceDBDMA; PlatformInterfaceFCR * platformInterfaceFCR; PlatformInterfaceGPIO * platformInterfaceGPIO; PlatformInterfaceI2C * platformInterfaceI2C; PlatformInterfaceI2S * platformInterfaceI2S; IOWorkLoop * mWorkLoop; UInt32 mSupportSelectors; enum { kPlatformSupportDBDMA_bitAddress = 0, kPlatformSupportFCR_bitAddress = 4, kPlatformSupportGPIO_bitAddress = 8, kPlatformSupportI2C_bitAddress = 12, kPlatformSupportI2S_bitAddress = 16, KPlatformSupport_bitAddress_mask = 0x0000000F } PlatformSupportSelectorBitAddress; enum { kPlatformSupport_NoIO = 0, kPlatformSupport_MAPPED = 1, kPlatformSupport_PLATFORM = 2, kPlatformSupportDBDMA_K2 = 3 } PlatformSupportSelectors; }; #endif /* __PLATFORMINTERFACE__ */
b60838df2b7525ecf842c098a21928d6f15472dd
8c8ea3917d4a1552194966f974693a946264ab5a
/Attendance Monitor/FaceAnalyser.hh
cbd691df045771f79a107e8da2259cd27c00086a
[]
no_license
meismyles/attendance-monitor
717a300a721a67db60e44d4335d2db6a3811a3f3
729e22dab822ee396fafeeff2bc7311a0a3d7a8e
refs/heads/master
2021-01-18T17:25:18.457830
2015-03-20T16:07:28
2015-03-20T16:07:28
16,585,367
0
0
null
null
null
null
UTF-8
C++
false
false
502
hh
FaceAnalyser.hh
// // FaceAnalyser.h // Attendance Monitor // // Created by Myles Ringle on 22/03/2014. // Copyright (c) 2014 Myles Ringle. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import <opencv2/highgui/cap_ios.h> #import <opencv2/objdetect/objdetect.hpp> #import <opencv2/imgproc/imgproc.hpp> @interface FaceAnalyser : NSObject { cv::CascadeClassifier faceCascade; cv::Mat croppedFace; } - (cv::Mat) getCroppedFace; - (int) detectFace:(cv::Mat&)image; @end
b991050f09c2250be68394346c994b668fc10a95
9c99fa604569eee1e3d57a0c3d0a1d49a540dcd1
/include/engine/components/Transform.h
ee2b819f9bba6902a4c5071bbc344b76d4e04b37
[]
no_license
deviffy/engine
dea086fb3fe5c224754eef7692f68df27762611e
7373ca0a1baa7095cd7bf66010ae637c27e2860b
refs/heads/master
2021-01-14T13:48:38.237580
2013-09-01T22:50:43
2013-09-01T22:50:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
546
h
Transform.h
#pragma once #include "../Component.h" #include <bullet/btBulletDynamicsCommon.h> class Transform : public Component { public: static const ComponentType TYPE = COMPONENT_TRANSFORM; Transform(); Transform(const btTransform &transform); Transform(const btVector3 &position); Transform(float x, float y, float z); ~Transform() = default; btTransform transform() const; void setTransform(const btTransform &transform); void setRotation(const btQuaternion &rotation); ComponentType type() const; private: btTransform transform_; };
ad24373f85db4b22f079571c5168954ab4b1ed1b
cd31e1aa23ecaca84ca5da4345c7ed0a0d4ade21
/ch20/assocGen.h
a0e3271f407d72f8c05caa17fcd3c2604ee88aa6
[]
no_license
lockme/thinkincpp
d6fb5142f06cab3e8e9999b9e7da270a67609bc9
96e33c6a6c6521a706c520680c5cf408066c342a
refs/heads/master
2021-01-10T18:35:15.284292
2013-10-10T14:14:07
2013-10-10T14:14:07
13,473,087
0
1
null
null
null
null
UTF-8
C++
false
false
463
h
assocGen.h
//: C20:assoGen.h // The fill_n() and generate_n() equivalents // for associative containers. #ifndef ASSOCGEN_H_ #define ASSOCGEN_H_ template<class Assoc, class Count, class T> void assocFill_n(Assoc& a, Count n, const T& val) { for (; 0 < n; --n) { a.insert(val); } } template<class Assoc, class Count, class Gen> void assocGen_n(Assoc& a, Count n, Gen g) { for (; 0 < n; --n) { a.insert(g()); } } #endif // ASSOCGEN_H_ ///:~
c882569c84a972ac139a931beb69282c30d7d2f6
176c4a9bddcb9cc1474799d223080b00d1c5b84c
/include/openpose/gpu/cuda.hpp
7fc7420f80b4f71b3a964450b8a65d5556893eb3
[ "MIT" ]
permissive
dsciitpatna/UAVs-for-DM
5ef73d02615aac9ee7b164387628bfadf68a828a
b767a29eb9268cb3c6777dbb7329f52a161462ae
refs/heads/master
2020-04-24T03:54:05.214940
2019-07-12T05:28:20
2019-07-12T05:28:20
171,685,224
23
8
MIT
2019-04-06T16:00:21
2019-02-20T14:11:49
null
UTF-8
C++
false
false
809
hpp
cuda.hpp
#ifndef OPENPOSE_GPU_CUDA_HPP #define OPENPOSE_GPU_CUDA_HPP #include <utility> // std::pair #include <openpose/core/common.hpp> namespace op { const auto CUDA_NUM_THREADS = 512u; OP_API void cudaCheck(const int line = -1, const std::string& function = "", const std::string& file = ""); OP_API int getCudaGpuNumber(); inline unsigned int getNumberCudaBlocks(const unsigned int totalRequired, const unsigned int numberCudaThreads = CUDA_NUM_THREADS) { return (totalRequired + numberCudaThreads - 1) / numberCudaThreads; } OP_API void getNumberCudaThreadsAndBlocks(dim3& numberCudaThreads, dim3& numberCudaBlocks, const Point<int>& frameSize); } #endif // OPENPOSE_GPU_CUDA_HPP
c0005a02eee0dd01a5bf24b042add63f87bffb8e
c365d25ee2237b3c260198827b33b0253d43eaf4
/codeforces/277/a.cpp
ca41e64e7b3079bcce923f0442beb7c0dcaefe86
[]
no_license
germanohn/competitive-programming
fb1249910ce951fe290e9a5be3876d3870ab8aa3
fab9dc0e2998dd395c1b9d6639f8c187cf637669
refs/heads/master
2021-06-12T08:17:52.907705
2021-03-17T19:06:19
2021-03-17T19:06:19
58,595,999
0
0
null
null
null
null
UTF-8
C++
false
false
1,056
cpp
a.cpp
#include<bits/stdc++.h> using namespace std; const int N = 105; int n, m; int p[N], sz[N]; int find(int a) { if (p[a] == a) return a; return p[a] = find(p[a]); } void join(int a, int b) { a = find(a), b = find(b); if (a == b) return; if (sz[a] < sz[b]) swap(a, b); p[b] = p[a]; sz[a] += sz[b]; } int main() { scanf(" %d %d", &n, &m); for (int i = 1; i <= m; i++) p[i] = 0, sz[i] = 1; int ans = 0; for (int i = 0; i < n; i++) { int k; scanf(" %d", &k); if (!k) { ans++; } else { int pre, cur; scanf(" %d", &pre); if (!p[pre]) p[pre] = pre; while (k > 1) { scanf(" %d", &cur); if (!p[cur]) p[cur] = cur; join(pre, cur); pre = cur; k--; } } } int comp = 0; for (int i = 1; i <= m; i++) { if (p[i] == i) comp++; } ans += max(0, comp - 1); printf("%d\n", ans); }
1ce16ea269fa219b832e6b449cc62b8000d8ea55
22f32abaa89f32bfeeb47c8a5435078bf385a9e0
/1. Pointers/1. PointersIntro.cpp
72cc244e81ad28a9efbf597489616082b9fab842
[]
no_license
sohamnandi77/Cpp-Basic-Concepts
d5e1ffc79807cdc1e1efe1e70e70f20da964f883
2f7a4e662be1c37b95c4da2de10f246921ea8486
refs/heads/master
2023-06-07T17:35:11.382898
2021-06-24T12:36:30
2021-06-24T12:36:30
373,067,467
1
0
null
null
null
null
UTF-8
C++
false
false
1,082
cpp
1. PointersIntro.cpp
#include <iostream> using namespace std; int main() { int i = 10; cout << &i << endl; //* Display address of i int *p = &i; //* Pointers Pointers store address of variables or a memory location. cout << p << endl; cout << *p << endl; //* dereferencing cout << sizeof(p) << endl; //* 8 or 4 //? generally 8 for 64 bit & 4 for 32 bit , but not confirmed // * Changes will be reflected on both by changing either of them cout << i << endl; cout << *p << endl; i++; cout << i << endl; cout << *p << endl; *p = 11; cout << i << endl; cout << *p << endl; // * Here a is completely different storage; changing a will not be affecting p or i int a = i; a++; cout << a << endl; cout << i << endl; cout << *p << endl; // ? *p can treated same as integer (*p)++; cout << i << endl; cout << *p << endl; // * But creating an alias of p will be affecting p and i int *q = p; (*q)++; cout << *q << endl; cout << *p << endl; cout << i << endl; return 0; }
010c60aa67f8175ca700f7c2307a2dff19763bbd
0ef832d8eaedc16253cc220bc704a52597d248fe
/model_server/ldr/src/ldrScrapbook.cxx
e02752d6550baf17d0855ab34e639d9ba281156d
[ "BSD-2-Clause" ]
permissive
radtek/software-emancipation-discover
9c0474b1abe1a8a3f91be899a834868ee0edfc18
bec6f4ef404d72f361d91de954eae9a3bd669ce3
refs/heads/master
2020-05-24T19:03:26.967346
2015-11-21T22:23:54
2015-11-21T22:23:54
187,425,106
1
0
BSD-2-Clause
2019-05-19T02:26:08
2019-05-19T02:26:07
null
UTF-8
C++
false
false
6,077
cxx
ldrScrapbook.cxx
/************************************************************************* * Copyright (c) 2015, Synopsys, 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 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. * *************************************************************************/ // Implementation of ldrScrapbook class //------------------------------------------------ #include "genError.h" #include "ldrClipboard.h" #include "ldrScrapbook.h" #include "objOperate.h" init_relational (ldrScrapbook, ldrHierarchy); ldrScrapbook::ldrScrapbook() { } ldrScrapbook::ldrScrapbook(scrapbookPtr scrap_book, clipboardPtr clip_board) { Initialize(ldrScrapbook::ldrScrapbook); if (!scrap_book) return; if (!clip_board) clip_board = checked_cast(clipboard, scrap_book->get_root()); if (!clip_board) return; ldrClipboardPtr root = extract_clipboard (scrap_book, clip_board); this->put_root(root); } ldrScrapbook::ldrScrapbook(const ldrScrapbook &oo) { } ldrScrapbook::~ldrScrapbook() { } void ldrScrapbook::build_selection(const ldrSelection& olds, OperPoint& app_point) { Initialize (ldrScrapbook::build_selection); app_point.node = olds.ldr_symbol->get_appTree(); app_point.type = FIRST; Return } ldrClipboardPtr ldrScrapbook::extract_clipboard (scrapbookPtr head, clipboardPtr root) { Initialize (ldrScrapbook::extract_clipboard); ldrClipboardPtr l_node = NULL; if (root && head) { l_node = db_new (ldrClipboard, (root)); ldrClipboardPtr prev = NULL; for (clipboardPtr next = checked_cast(clipboard, root->get_first()); next; next = checked_cast(clipboard, next->get_next())) { ldrClipboardPtr new_node = extract_clipboard (head, next); if (new_node) if (prev) prev->put_after(new_node); else l_node->put_first (new_node); prev = new_node; } } ReturnValue (l_node); } void ldrScrapbook::insert_obj(objInserter *oi, objInserter *ni) { Initialize (ldrScrapbook::insert_obj); appTreePtr targ_obj = checked_cast(appTree, oi->targ_obj); appTreePtr src_obj = checked_cast(appTree, oi->src_obj); ldrClipboardPtr root = checked_cast(ldrClipboard,this->get_root()); ni->type = NULLOP; if (targ_obj && is_clipboard(targ_obj) ) { ldrNodePtr targ_ldr = checked_cast(ldrNode, find_ldr (targ_obj)); if (targ_ldr) { // Extract src ldr ldrNodePtr src_ldr = NULL; if (src_obj && is_clipboard(src_obj)) { src_ldr = checked_cast(ldrNode, find_ldr (src_obj)); if (!src_ldr) src_ldr = extract_clipboard ( checked_cast(scrapbook, src_obj->get_header()), checked_cast(clipboard, src_obj )); } switch (oi->type) { case FIRST: if (targ_ldr == root) { targ_ldr->put_first(src_ldr); ni->type = oi->type; ni->targ_obj = targ_ldr; ni->src_obj = src_ldr; } break; case AFTER: targ_ldr->put_after (src_ldr); ni->type = oi->type; ni->targ_obj = targ_ldr; ni->src_obj = src_ldr; break; case REPLACE: if (targ_ldr != src_ldr) { targ_ldr->put_after (src_ldr); targ_ldr->remove_from_tree (); } ni->type = oi->type; ni->targ_obj = targ_ldr; ni->src_obj = src_ldr; break; default: break; } } } Return } void ldrScrapbook::remove_obj(objRemover *ro, objRemover *nr) { Initialize (ldrScrapbook::remove_obj); appTreePtr src_obj = checked_cast(appTree, ro->src_obj); nr->src_obj = NULL; if (src_obj) { // find ldr for target obj ldrNodePtr src_ldr = checked_cast(ldrNode, find_ldr (src_obj)); if (src_ldr) { src_ldr->remove_from_tree(); nr->src_obj = src_ldr; } } Return } void ldrScrapbook::send_string(ostream& stream) const { Initialize (ldrScrapbook::send_string); ldrClipboardPtr root = checked_cast(ldrClipboard, this->get_root()); if (root) root->send_string(stream); Return } /* START-LOG------------------------------------------- $Log: ldrScrapbook.cxx $ Revision 1.5 1998/08/25 13:45:02EDT pero removed or; port to HP Revision 1.2.1.3 1992/11/21 22:54:33 builder typesafe casts. Revision 1.2.1.2 1992/10/09 19:43:58 jon RCS History Marker Fixup END-LOG--------------------------------------------- */
a2736665db76c689c80f73da2c779c2df98469ac
74e1b83ca8610db2acdfc1ee16dbad5988372dbc
/ThayHieu/20201022/socialize.cpp
66dbbb548d7135ef96542b77efb3bdc5b802f503
[]
no_license
zipdang04/VOI2021
cb99140b77d3f6f4970ea2925e46dc18858b7918
8170fb8f8ac723bbfa3a448c64dc7ab160939798
refs/heads/main
2023-04-21T01:09:27.695853
2021-05-15T09:37:49
2021-05-15T09:37:49
298,979,089
0
0
null
null
null
null
UTF-8
C++
false
false
2,214
cpp
socialize.cpp
#include <bits/stdc++.h> using namespace std; /* #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set; */ typedef long long ll; typedef long double ld; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef map<int, int> mii; typedef unordered_map<int, int> umii; typedef map<ll, ll> mll; typedef unordered_map<ll, ll> umll; /* struct Node { int node, len; Node() {node = len = 0;} Node(int node, int len) {this -> node = node, this -> len = len;} }; typedef vector<Node> vg; */ #define MAX 301 #define MOD 1000000007 #define fi first #define se second #define pf push_front #define pb push_back #define FOR(type, i, a, b) for(type i = (a); i <= (b); i++) #define FORR(type, i, b, a) for(type i = (b); i >= (a); i--) #define testBit(n, bit) ((n >> bit) & 1) #define flipBit(n, bit) (n ^ (1ll << bit)) #define cntBit(n) __builtin_popcount(n) #define cntBitll(n) __builtin_popcountll(n) #define randomize mt19937_64 mt(chrono::steady_clock::now().time_since_epoch().count()); const int MAX_VAL = 50000001; int n; int a[MAX]; int ans[MAX]; int checkSize(int person, int size){ int left = 1, right = MAX_VAL, ans = 0, bestSize = -1; while (left <= right){ int mid = (left + right) >> 1; int currGroup = a[person] / mid; int currSize = 1; FOR(int, i, person + 1, n) if (a[i] / mid == currGroup) currSize++; else break; FORR(int, i, person - 1, 1) if (a[i] / mid == currGroup) currSize++; else break; if (currSize >= size) bestSize = currSize, ans = mid, right = mid - 1; else left = mid + 1; } if (bestSize != size) ans = 0; return ans; } main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n; FOR(int, i, 1, n) cin >> a[i]; sort(a + 1, a + 1 + n); FOR(int, i, 1, n) ans[i] = INT32_MAX; FOR(int, i, 1, n){ FOR(int, teamSize, 1, n){ int days = checkSize(i, teamSize); if (!days) continue; ans[teamSize] = min(ans[teamSize], days); } } FOR(int, i, 1, n) if (ans[i] == INT32_MAX) cout << -1 << '\n'; else cout << ans[i] << '\n'; }
ffdea49d7cb393e17732e7de27025cba1e3a64ce
5f98e3093331d5552430c78fa26a274f959d763b
/native/inc/jni/jni_method_utils.h
bc05b4a6d89a4a93c763b5a31b58c9fcfa0bb91c
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
waicool20/SKrypton
50345dccf8bbda916cd2b45b475630396d836f87
0ec26e1858d36b4c829d45f17b1c22d35afcfc9c
refs/heads/master
2021-05-16T17:47:27.427627
2017-10-16T05:11:26
2017-10-16T05:11:26
103,044,311
10
1
null
null
null
null
UTF-8
C++
false
false
10,354
h
jni_method_utils.h
#ifndef SKRYPTONNATIVE_JNI_METHOD_UTILS_H #define SKRYPTONNATIVE_JNI_METHOD_UTILS_H #include <jni_utils.h> namespace PrivateMethodUtils { bool HandleMethodIDException(JNIEnv* env, jobject obj, const string& methodName, const string signature); } //<editor-fold desc="CallMethod helper template functions"> template<typename T> inline optional<T> CallMethod(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) = delete; template<> inline optional<void*> CallMethod<void*>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); env->CallVoidMethodV(obj, methodID, args); return {}; } template<> inline optional<jobject> CallMethod<jobject>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallObjectMethodV(obj, methodID, args) }; }; template<> inline optional<jboolean> CallMethod<jboolean>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallBooleanMethodV(obj, methodID, args) }; }; template<> inline optional<jbyte> CallMethod<jbyte>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallByteMethodV(obj, methodID, args) }; }; template<> inline optional<jchar> CallMethod<jchar>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallCharMethodV(obj, methodID, args) }; }; template<> inline optional<jshort> CallMethod<jshort>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallShortMethodV(obj, methodID, args) }; }; template<> inline optional<jint> CallMethod<jint>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallIntMethodV(obj, methodID, args) }; }; template<> inline optional<jlong> CallMethod<jlong>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallLongMethodV(obj, methodID, args) }; }; template<> inline optional<jfloat> CallMethod<jfloat>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallFloatMethodV(obj, methodID, args) }; }; template<> inline optional<jdouble> CallMethod<jdouble>(JNIEnv* env, jobject obj, const string& methodName, const string signature, ...) { auto clazz = env->GetObjectClass(obj); auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, obj, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallDoubleMethodV(obj, methodID, args) }; }; //</editor-fold> //<editor-fold desc="CallStaticMethod helper template functions"> template<typename T, class... Args> inline optional<T> CallStaticMethod(JNIEnv* env, string type, const string& methodName, const string signature, Args&&... args) { replace(type.begin(), type.end(), '.', '/'); return CallStaticMethod<T>(env, env->FindClass(type.c_str()), methodName, signature, forward<Args>(args)...); } template<typename T> inline optional<T> CallStaticMethod(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) = delete; template<> inline optional<void*> CallStaticMethod<void*>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); env->CallStaticVoidMethodV(clazz, methodID, args); return {}; }; template<> inline optional<jobject> CallStaticMethod<jobject>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticObjectMethodV(clazz, methodID, args) }; }; template<> inline optional<jboolean> CallStaticMethod<jboolean>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticBooleanMethodV(clazz, methodID, args) }; }; template<> inline optional<jbyte> CallStaticMethod<jbyte>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticByteMethodV(clazz, methodID, args) }; }; template<> inline optional<jchar> CallStaticMethod<jchar>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticCharMethodV(clazz, methodID, args) }; }; template<> inline optional<jshort> CallStaticMethod<jshort>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticShortMethodV(clazz, methodID, args) }; }; template<> inline optional<jint> CallStaticMethod<jint>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticIntMethodV(clazz, methodID, args) }; }; template<> inline optional<jlong> CallStaticMethod<jlong>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticLongMethodV(clazz, methodID, args) }; }; template<> inline optional<jfloat> CallStaticMethod<jfloat>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticFloatMethodV(clazz, methodID, args) }; }; template<> inline optional<jdouble> CallStaticMethod<jdouble>(JNIEnv* env, jclass clazz, const string& methodName, const string signature, ...) { auto methodID = env->GetStaticMethodID(clazz, methodName.c_str(), signature.c_str()); if (PrivateMethodUtils::HandleMethodIDException(env, clazz, methodName, signature)) return {}; va_list args; va_start(args, signature); return { env->CallStaticDoubleMethodV(clazz, methodID, args) }; }; //</editor-fold> #endif //SKRYPTONNATIVE_JNI_METHOD_UTILS_H
828ef3ba7e541984819b95046ffc5d85ba7a382b
984e5d8b65fcec45cf24dd196e25929e9fddbac9
/code/质因数分解.cpp
7cf41b0b6ac65f509afdd449b050fde70e25e2b8
[]
no_license
ydkhub/algorithm
536c6d7d0249d69e56e9544e379a177a0c81bc8d
75bd68c1cb099c6a5b7387adcbf235feaff5c777
refs/heads/master
2020-07-10T10:59:48.113937
2019-08-25T04:55:33
2019-08-25T04:55:33
204,247,797
0
0
null
null
null
null
UTF-8
C++
false
false
1,057
cpp
质因数分解.cpp
#include<cstdio> #include<cmath> const int maxn=100010; bool is_prime(int x){ if(x<=1)return false; int sqr=(int)sqrt(1.0*x); for(int i=2;i<=sqr;i++){ if(x%i==0)return false; } return true; } int prime[maxn]; int pnum=0; void find_prime(){ for(int i=1;i<maxn;i++){ if(is_prime(i)==true){ prime[pnum++]=i; } } } struct factor{ int x,cnt; }fac[10]; int main(){ find_prime(); int n,num=0; scanf("%d",&n); if(n==1)printf("1=1"); else{ printf("%d=",n); int sqr=(int)sqrt(1.0*n); for(int i=0;i<pnum&&prime[i]<=sqr;i++){ if(n%prime[i]==0){ fac[num].x=prime[i]; fac[num].cnt=0; while(n%prime[i]==0){ fac[num].cnt++; n/=prime[i]; } num++; } if(n==1)break; } if(n!=1){ fac[num].x=n; fac[num++].cnt=1; } for(int i=0;i<num;i++){ if(i>0)printf("*"); printf("%d",fac[i].x); if(fac[i].cnt>1){ printf("^%d",fac[i].cnt); } } } return 0; }
4cd272f02cb9c34c69ee97a2e7e4179b4943b0d7
d305e9667f18127e4a1d4d65e5370cf60df30102
/mindspore/core/abstract/primitive_infer_map.cc
b285453d1bc948f1cef63c7b15d591356be886a4
[ "Apache-2.0", "MIT", "Libpng", "LicenseRef-scancode-proprietary-license", "LGPL-2.1-only", "AGPL-3.0-only", "MPL-2.0-no-copyleft-exception", "IJG", "Zlib", "MPL-1.1", "BSD-3-Clause", "BSD-3-Clause-Open-MPI", "MPL-1.0", "GPL-2.0-only", "MPL-2.0", "BSL-1.0", "LicenseRef-scancode-unknown-license-reference", "Unlicense", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
imyzx2017/mindspore_pcl
d8e5bd1f80458538d07ef0a8fc447b552bd87420
f548c9dae106879d1a83377dd06b10d96427fd2d
refs/heads/master
2023-01-13T22:28:42.064535
2020-11-18T11:15:41
2020-11-18T11:15:41
313,906,414
6
1
Apache-2.0
2020-11-18T11:25:08
2020-11-18T10:57:26
null
UTF-8
C++
false
false
7,602
cc
primitive_infer_map.cc
/** * This is the C++ adaptation and derivative work of Myia (https://github.com/mila-iqia/myia/). * * Copyright 2019-2020 Huawei Technologies Co., Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "abstract/primitive_infer_map.h" #include "abstract/abstract_function.h" #include "abstract/infer_functions.h" namespace mindspore { namespace abstract { PrimitiveEvalImplMap &GetPrimitiveToEvalImplMap() { static PrimitiveEvalImplMap prim_eval_implement_map = { // Statements {prim::kPrimReturn, {InferImplReturn, true}}, {prim::kPrimDot, {InferImplDot, true}}, {prim::kPrimSwitch, {InferImplSwitch, true}}, {prim::kPrimSwitchLayer, {InferImplSwitchLayer, true}}, {prim::kPrimIs_, {InferImplIs_, true}}, {prim::kPrimIsNot, {InferImplIsNot, true}}, {prim::kPrimInDict, {InferImplInDict, true}}, {prim::kPrimNotInDict, {InferImplNotInDict, true}}, {prim::kPrimIsConsant, {InferImplIsConstant, true}}, // Maths {prim::kPrimMaximumGrad, {InferImplMinOrMaxGrad, true}}, {prim::kPrimMinimumGrad, {InferImplMinOrMaxGrad, true}}, {prim::kPrimMul, {InferImplMul, true}}, {prim::kPrimTensorAdd, {InferImplTensorAdd, true}}, {prim::kPrimSquare, {InferImplSquare, true}}, {prim::kPrimSqrt, {InferImplSqrt, true}}, {prim::kPrimSub, {InferImplSub, true}}, {prim::kPrimEqual, {InferImplEqual, true}}, {prim::kPrimMinimum, {InferImplMinimum, true}}, {prim::kPrimDivNoNan, {InferImplDivNoNan, true}}, // Array {prim::kPrimScalarToArray, {InferImplScalarToArray, true}}, {prim::kPrimArrayToScalar, {InferImplArrayToScalar, true}}, {prim::kPrimBroadcastShape, {InferImplBroadCastShape, true}}, {prim::kPrimPack, {InferImplPack, true}}, {prim::kPrimUnique, {InferImplUnique, true}}, {prim::kPrimUniqueGrad, {InferImplUniqueGrad, true}}, {prim::kPrimGatherV2, {InferImplGatherV2, true}}, {prim::kPrimSparseGatherV2, {InferImplGatherV2, true}}, {prim::kPrimEmbeddingLookup, {InferImplEmbeddingLookup, true}}, {prim::kPrimUnsortedSegmentSum, {InferImplUnsortedSegmentSum, true}}, {prim::kPrimScatterAdd, {InferImplScatterAdd, true}}, {prim::kPrimScatterUpdate, {InferImplScatterUpdate, true}}, {prim::kPrimMapCacheIdx, {InferImplMapCacheIdx, true}}, {prim::kPrimCacheSwapTable, {InferImplCacheSwapTable, true}}, {prim::kPrimUpdateCache, {InferImplUpdateCache, true}}, {prim::kPrimDiv, {InferImplDiv, true}}, {prim::kPrimRealDiv, {InferImplRealDiv, true}}, {prim::kPrimShape, {InferImplShape, false}}, {prim::kPrimDynamicShape, {InferImplDynamicShape, true}}, {prim::kPrimTranspose, {InferImplTranspose, true}}, {prim::kPrimReshape, {InferImplReshape, true}}, // Structure {prim::kPrimMakeTuple, {InferImplMakeTuple, true}}, {prim::kPrimMakeList, {InferImplMakeList, true}}, {prim::kPrimMakeDict, {InferImplMakeDict, true}}, {prim::kPrimMakeSlice, {InferImplMakeSlice, true}}, {prim::kPrimMakeKeywordArg, {InferImplMakeKwarg, true}}, {prim::kPrimExtractKeywordArg, {InferImplExtractKwarg, true}}, {prim::kPrimTupleGetItem, {InferImplTupleGetItem, true}}, {prim::kPrimListGetItem, {InferImplListGetItem, true}}, {prim::kPrimTupleSetItem, {InferImplTupleSetItem, true}}, {prim::kPrimListSetItem, {InferImplListSetItem, true}}, {prim::kPrimDictGetItem, {InferImplDictGetItem, true}}, {prim::kPrimDictSetItem, {InferImplDictSetItem, true}}, {prim::kPrimDictGetKeys, {InferImplDictGetKeys, true}}, {prim::kPrimDictGetValues, {InferImplDictGetValues, true}}, {prim::kPrimListAppend, {InferImplListAppend, true}}, {prim::kPrimTupleLen, {InferImplTupleLen, true}}, {prim::kPrimListLen, {InferImplListLen, true}}, {prim::kPrimArrayLen, {InferImplArrayLen, true}}, // NN {prim::kPrimPooling, {InferImplPooling, true}}, {prim::kPrimPoolingGrad, {InferImplPoolingGrad, true}}, {prim::kPrimFusedBatchNorm, {InferImplFusedBatchNorm, true}}, {prim::kPrimFusedBatchNormGrad, {InferImplFusedBatchNormGrad, true}}, {prim::kPrimBatchNormGrad, {InferImplBatchNormGrad, true}}, {prim::kPrimReluGrad, {InferImplReluGrad, true}}, {prim::kPrimConv2DBackpropInput, {InferImplConv2DBackpropInput, true}}, {prim::kPrimConv2DBackpropFilter, {InferImplConv2DBackpropFilter, true}}, {prim::kPrimBiasAddGrad, {InferImplBiasAddGrad, true}}, {prim::kPrimRelu, {InferImplRelu, true}}, {prim::kPrimZerosLike, {InferImplZerosLike, true}}, {prim::kPrimBpropCut, {InferImplBpropCut, true}}, {prim::kPrimLayerNorm, {InferImplLayerNorm, true}}, {prim::kPrimLayerNormGrad, {InferImplLayerNormGrad, true}}, {prim::kPrimDropoutGenMask, {InferImplDropoutGenMask, true}}, {prim::kPrimSparseApplyFtrl, {InferImplSparseApplyFtrl, true}}, {prim::kPrimSparseApplyProximalAdagrad, {InferImplSparseApplyProximalAdagrad, true}}, {prim::kPrimSGD, {InferImplSGD, true}}, // Others {prim::kPrimIdentity, {InferImplIdentity, true}}, // Set impl to null as it will use PartialEvaluator; {prim::kPrimPartial, {nullptr, true}}, {prim::kPrimEnvGetItem, {InferImplEnvGetItem, true}}, {prim::kPrimEnvSetItem, {InferImplEnvSetItem, true}}, {prim::kPrimEnvAdd, {InferImplEnvAdd, true}}, {prim::kPrimMakeRefKey, {InferImplMakeRefKey, true}}, {prim::kPrimMakeRef, {InferImplMakeRef, true}}, {prim::kPrimGetRefKey, {InferImplGetRefKey, true}}, {prim::kPrimGetRefValue, {InferImplGetRefValue, true}}, {prim::kPrimStateSetItem, {InferImplStateSetItem, true}}, {prim::kPrimDepend, {InferImplDepend, true}}, {prim::kPrimControlDepend, {InferImplControlDepend, true}}, // Debug {prim::kPrimDebug, {InferImplDebug, true}}, // SparseTensor {prim::kPrimMakeSparseTensor, {InferImplMakeSparseTensor, true}}, {prim::kPrimSparseTensorGetValues, {InferImplSparseTensorGetValues, true}}, {prim::kPrimSparseTensorGetIndices, {InferImplSparseTensorGetIndices, true}}, {prim::kPrimSparseTensorGetDenseShape, {InferImplSparseTensorGetDenseShape, true}}, // RowTensor {prim::kPrimMakeRowTensor, {InferImplMakeRowTensor, true}}, {prim::kPrimRowTensorGetValues, {InferImplRowTensorGetValues, true}}, {prim::kPrimRowTensorGetIndices, {InferImplRowTensorGetIndices, true}}, {prim::kPrimRowTensorGetDenseShape, {InferImplRowTensorGetDenseShape, true}}, // Comm Ops {prim::kPrimAllReduce, {InferImplAllReduce, true}}, {prim::kPrimBroadcast, {InferImplBroadcast, true}}, {prim::kPrimAllGather, {InferImplAllGather, true}}, {prim::kPrimReduceScatter, {InferImplReduceScatter, true}}, {prim::kPrimMemCpyAsync, {InferImplMemCpyAsync, true}}, {prim::kPrimCast, {InferImplCast, true}}, {prim::kPrimExpandDims, {InferImplExpandDims, true}}, }; return prim_eval_implement_map; } void RegisterStandardPrimitiveImpl(const PrimitivePtr &primitive, const StandardPrimitiveImplReg &impl_reg) { auto &prim_eval_map = GetPrimitiveToEvalImplMap(); prim_eval_map[primitive] = impl_reg; } } // namespace abstract } // namespace mindspore
efedbe4af46dfe4ed40fd4dfa8521e6d8f7b1630
4ea5386025362565f2f6bed9c3db99f7d1c98ddb
/PlaneWave/C++/utils.h
9f551d0d1432dc09a60b80ac64c45e81e730ac6d
[]
no_license
rmhsik/TFM
bf7823137fe3165d57deb681f0c2d81745b3d7c8
c0343b68b36ead44445da8dbe869e7f786c37fcf
refs/heads/master
2023-02-02T16:06:28.918280
2020-11-22T16:55:19
2020-11-22T16:55:19
300,009,563
0
0
null
null
null
null
UTF-8
C++
false
false
791
h
utils.h
#ifndef UTILS_H #define UILS_H #include <complex> #include <fftw3.h> const static std::complex<double> I(std::complex<double>(0,1)); void cgaussian(std::complex<double> **phi, double *x, double *z, double x0, double z0, double a, double q0, double p0, int Nx, int Nz); void zeros(std::complex<double> **phi, int Nx, int Nz); void waveSqr(std::complex<double> **phi,double **phi2, int Nx, int Nz); void linspace(double a, double b, int N, double *out, double *dz); void flatten(std::complex<double> **in, std::complex<double> *out, int Nx, int Nz); void unflatten(std::complex<double> *in, std::complex<double> **out, int Nx, int Nz); void normalize(std::complex<double> **in, int Nx, int Nz); void freqshift(double *in, double *out, int N); #endif
e5b1e430912d387ecbb3a032ec309eccd50072a9
627922dd08458bcb31495426df2fb6b8fa25a916
/miniutil/src/log4cplus/log4cplus.cpp
1ca66769c86be2adc79122fc9b14082164ba4cc1
[]
no_license
xeon2007/miniutil
9f735619c978fb3eddfa83b67c6274f8e948ae58
d8992e77fadc1eb3f5ab253c0aa7fc69c386750b
refs/heads/master
2016-09-05T14:32:14.642819
2012-04-04T16:23:11
2012-04-04T16:23:11
35,948,710
0
0
null
null
null
null
GB18030
C++
false
false
4,589
cpp
log4cplus.cpp
/**************************************************************************** ** ** Copyright (C) 2004-2008 VATATA.com . All rights reserved. ** ** This file is the part of the Miniutil Poject. ** Vatata's miniutil library is lightweight and portable (for linux ** and Windows). The C++ Class Library included Threadpool, Dll danymic loading, ** General socket application model and tcp server, httpserver/servlet, etc. ** It is a pratical utility disigned for who don't want learn the Big C++ ** Developing Platform, such as Boost or ACE. ** ** This file may be used under the terms of the GNU General Public ** License versions 2.0 or 3.0 as published by the Free Software ** Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Alternatively you may (at ** your option) use any later version of the GNU General Public ** License if such license has been publicly approved by VATATA.com. ** (or its successors, if any) and the Miniutil Project Aministrators. ** ** Please review the following information to ensure GNU General ** Public Licensing requirements will be met: ** http://www.gnu.org/licenses/lgpl.html. If you are unsure which ** license is appropriate for your use, please review the following ** information: http://code.google.com/p/miniutil/ or contact ** http://www.vatata.com. ** ** In addition, as a special exception, VATATA.com, as the sole ** copyright holder for Miniutil Project, grants users of VATATA ** P2P Platform the right to release and package with the related ** libraries without the source code. ** ** This file is provided "AS IS" with NO WARRANTY OF ANY KIND, ** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE. vatata reserves all rights not expressly ** granted herein. ** ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. ** ****************************************************************************/ // srttidll.cpp : 定义 DLL 应用程序的入口点。 // #include <stdio.h> #include "miniutil/srtti.h" #include "miniutil/log.h" #include <log4cplus/logger.h> #include <log4cplus/configurator.h> #include <log4cplus/helpers/loglog.h> #include <log4cplus/helpers/stringhelper.h> using namespace std; using namespace log4cplus; using namespace log4cplus::helpers; namespace miniutil { class logger_log4cplus : public miniutil::logger { public: static Logger thelogger; static miniutil::mutex m_mutex; logger_log4cplus() : logger(0) { } virtual void log( int level, const char* fmt, ... ); virtual void config( miniutil::tinyxml::TiXmlElement * _config ); }; } Logger miniutil::logger_log4cplus::thelogger = Logger::getInstance("logger"); miniutil::mutex miniutil::logger_log4cplus::m_mutex ; void miniutil::logger_log4cplus::config( miniutil::tinyxml::TiXmlElement * _config ) { miniutil::logger::config( _config ); std::string prop_filename; _config->QueryValueAttribute( "properties", & prop_filename ); if ( prop_filename.length() > 0 ) { try { PropertyConfigurator::doConfigure( prop_filename ); }catch(...){} } } void miniutil::logger_log4cplus::log(int level, const char* fmt, ... ) { miniutil::auto_mutex log_lock( & m_mutex ); char str[16384]; va_list v; va_start( v, fmt ); #ifdef WIN32 _vsnprintf(str, 16380, fmt, v ); #else vsnprintf( str, 16380, fmt, v ); #endif strcpy( str+ 16378, "..."); va_end( v ); switch( level ) { case LOG_LEVEL_ERROR: LOG4CPLUS_ERROR( miniutil::logger_log4cplus::thelogger, str ); break; case LOG_LEVEL_CRIT: LOG4CPLUS_FATAL( miniutil::logger_log4cplus::thelogger, str ); break; case LOG_LEVEL_WARN: LOG4CPLUS_WARN( miniutil::logger_log4cplus::thelogger, str ); break; case LOG_LEVEL_DEBUG: LOG4CPLUS_DEBUG( miniutil::logger_log4cplus::thelogger, str ); break; case LOG_LEVEL_TRACE: case LOG_LEVEL_AUDIT: default: LOG4CPLUS_INFO( miniutil::logger_log4cplus::thelogger, str ); break; } } extern "C" { int miniutil_dll_init( const char * version) { miniutil::srtti::srtti::_declare< miniutil::logger_log4cplus > ("miniutil::logger_log4cplus"); return 0; } } #ifdef WIN32 BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { return TRUE; } #endif
8cbd7dabf3a0976afdab94641ef96f5584c23a58
999fdf150a93dc69d920786641fc9cd8e83f2a75
/src/plastimatch/base/raw_pointset.cxx
265573e1325778c461ad75499287e44150c8ed37
[ "BSD-2-Clause", "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
agravgaard/Plastimatch
f79294947a1d44dd0c56798277374222fa92df57
7b5b79bb1a258d69a653bc82849ed420e673de3d
refs/heads/master
2021-01-17T06:53:30.814597
2020-08-21T12:51:14
2020-08-21T12:51:14
52,898,082
11
0
null
null
null
null
UTF-8
C++
false
false
6,887
cxx
raw_pointset.cxx
/* ----------------------------------------------------------------------- See COPYRIGHT.TXT and LICENSE.TXT for copyright and license information ----------------------------------------------------------------------- */ #include "plmbase_config.h" #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "file_util.h" #include "path_util.h" #include "plm_math.h" #include "print_and_exit.h" #include "raw_pointset.h" Raw_pointset* pointset_create (void) { Raw_pointset *ps; ps = (Raw_pointset*) malloc (sizeof (Raw_pointset)); memset (ps, 0, sizeof (Raw_pointset)); return ps; } void pointset_destroy (Raw_pointset *ps) { if (ps->points) { free (ps->points); } free (ps); } void pointset_add_point (Raw_pointset *ps, float lm[3]) { ps->num_points ++; pointset_resize (ps, ps->num_points); /* Note: Plastimatch landmarks are in LPS coordinates. Slicer landmarks are in RAS coordinates. Change LPS to RAS (note that LPS == ITK RAI). */ ps->points[(ps->num_points-1)*3 + 0] = - lm[0]; ps->points[(ps->num_points-1)*3 + 1] = - lm[1]; ps->points[(ps->num_points-1)*3 + 2] = lm[2]; } void pointset_add_point_noadjust (Raw_pointset *ps, float lm[3]) { ps->num_points ++; pointset_resize (ps, ps->num_points); /* Note: no RAS to LPS adjustment */ ps->points[(ps->num_points-1)*3 + 0] = lm[0]; ps->points[(ps->num_points-1)*3 + 1] = lm[1]; ps->points[(ps->num_points-1)*3 + 2] = lm[2]; } static Raw_pointset * pointset_load_fcsv (const char *fn) { FILE *fp; Raw_pointset *ps; char s[1024]; fp = fopen (fn, "r"); if (!fp) { return 0; } /* Got an fcsv file. Parse it. */ ps = pointset_create (); while (!feof(fp)) { char *s2; float lm[3]; int land_sel, land_vis; int rc; fgets (s, 1024, fp); if (feof(fp)) break; if (s[0]=='#') continue; // skip the label field assuming it does not contain commas s2 = strchr(s,','); if (!s2) { /* If there is no comma, it is not an fcsv file */ pointset_destroy (ps); fclose (fp); return 0; } rc = sscanf (s2, ",%f,%f,%f,%d,%d\n", &lm[0], &lm[1], &lm[2], &land_sel, &land_vis); if (rc != 5) { /* If there are not 5 numbers, then it is not an fcsv file */ pointset_destroy (ps); fclose (fp); return 0; } ps->num_points ++; pointset_resize (ps, ps->num_points); /* Note: Plastimatch landmarks are in LPS coordinates. Slicer landmarks are in RAS coordinates. Change RAS to LPS (note that LPS == ITK RAI). */ ps->points[(ps->num_points-1)*3 + 0] = - lm[0]; ps->points[(ps->num_points-1)*3 + 1] = - lm[1]; ps->points[(ps->num_points-1)*3 + 2] = lm[2]; } fclose (fp); return ps; } static Raw_pointset * pointset_load_txt (const char *fn) { FILE *fp; Raw_pointset *ps; char s[1024]; fp = fopen (fn, "r"); if (!fp) { return 0; } /* Parse as txt file */ ps = pointset_create (); while (!feof(fp)) { float lm[3]; int rc; fgets (s, 1024, fp); if (feof(fp)) break; if (s[0]=='#') continue; rc = sscanf (s, "%f , %f , %f\n", &lm[0], &lm[1], &lm[2]); if (rc != 3) { rc = sscanf (s, "%f %f %f\n", &lm[0], &lm[1], &lm[2]); } if (rc != 3) { print_and_exit ("Error parsing landmark file: %s\n", fn); } ps->num_points ++; pointset_resize (ps, ps->num_points); /* Assume LPS */ ps->points[(ps->num_points-1)*3 + 0] = lm[0]; ps->points[(ps->num_points-1)*3 + 1] = lm[1]; ps->points[(ps->num_points-1)*3 + 2] = lm[2]; } fclose (fp); return ps; } Raw_pointset* pointset_load (const char *fn) { Raw_pointset *ps; /* First try to load fcsv */ ps = pointset_load_fcsv (fn); if (ps) return ps; /* If that doesn't work, try loading ASCII */ ps = pointset_load_txt (fn); return ps; } static void pointset_save_txt (Raw_pointset* ps, const char *fn) { int i; FILE *fp; fp = fopen (fn, "w"); if (!fp) return; for (i = 0; i < ps->num_points; i++) { fprintf (fp, "%f %f %f\n", ps->points[i*3+0], ps->points[i*3+1], ps->points[i*3+2]); } fclose (fp); } static void pointset_save_fcsv (Raw_pointset* ps, const char *fn) { int i; FILE *fp; fp = fopen (fn, "w"); if (!fp) return; fprintf (fp, "# Fiducial List file %s\n" "# version = 2\n" "# name = plastimatch-fiducials\n" "# numPoints = %d\n" "# symbolScale = 5\n" "# symbolType = 12\n" "# visibility = 1\n" "# textScale = 4.5\n" "# color = 0.4,1,1\n" "# selectedColor = 1,0.5,0.5\n" "# opacity = 1\n" "# ambient = 0\n" "# diffuse = 1\n" "# specular = 0\n" "# power = 1\n" "# locked = 0\n" "# numberingScheme = 0\n" "# columns = label,x,y,z,sel,vis\n", fn, ps->num_points); for (i = 0; i < ps->num_points; i++) { fprintf (fp, "p-%03d,%f,%f,%f,1,1\n", i, - ps->points[i*3+0], - ps->points[i*3+1], ps->points[i*3+2]); } fclose (fp); } void pointset_save_fcsv_by_cluster (Raw_pointset* ps, int *clust_id, int which_cluster, const char *fn) { int i; int symbol; FILE *fp; // symbolType, see //http://www.slicer.org/slicerWiki/index.php/Modules:Fiducials-Documentation-3.4 symbol =which_cluster+2; if (symbol > 13) symbol -=13; fp = fopen (fn, "w"); if (!fp) return; int num_points_in_cluster=0; for (i = 0; i < ps->num_points; i++) { if (clust_id[i] == which_cluster) num_points_in_cluster++; } fprintf (fp, "# Fiducial List file %s\n" "# version = 2\n" "# name = plastimatch-fiducials\n" "# numPoints = %d\n" "# symbolScale = 5\n" "# symbolType = %d\n" "# visibility = 1\n" "# textScale = 4.5\n" "# color = 0.4,1,1\n" "# selectedColor = 1,0.5,0.5\n" "# opacity = 1\n" "# ambient = 0\n" "# diffuse = 1\n" "# specular = 0\n" "# power = 1\n" "# locked = 0\n" "# numberingScheme = 0\n" "# columns = label,x,y,z,sel,vis\n", fn, num_points_in_cluster, symbol); for (i = 0; i < ps->num_points; i++) { if (clust_id[i] == which_cluster) fprintf (fp, "p-%03d-c%02d,%f,%f,%f,1,1\n", i, clust_id[i], - ps->points[i*3+0], - ps->points[i*3+1], ps->points[i*3+2]); } fclose (fp); } void pointset_save (Raw_pointset* ps, const char *fn) { if (extension_is (fn, "fcsv")) { pointset_save_fcsv (ps, fn); } else { pointset_save_txt (ps, fn); } } void pointset_resize (Raw_pointset *ps, int new_size) { ps->num_points = new_size; ps->points = (float*) realloc (ps->points, 3 * (ps->num_points) * sizeof(float)); } void pointset_debug (Raw_pointset* ps) { int i; printf ("Pointset:\n"); for (i = 0; i < ps->num_points; i++) { printf (" %10f %10f %10f\n", ps->points[i*3 + 0], ps->points[i*3 + 1], ps->points[i*3 + 2]); } }
1ae143db368c1d4b871f221b29e3b7c53b0265b1
d1dc408f6b65c4e5209041b62cd32fb5083fe140
/src/utils/cLog.h
2bf56191c538f210b152f723ab1786e662454c6e
[]
no_license
dmitrygerasimuk/dune2themaker-fossfriendly
7b4bed2dfb2b42590e4b72bd34bb0f37f6c81e37
89a6920b216f3964241eeab7cf1a631e1e63f110
refs/heads/master
2020-03-12T03:23:40.821001
2011-02-19T12:01:30
2011-02-19T12:01:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,130
h
cLog.h
#ifndef D2TM_CLOG_H_ #define D2TM_CLOG_H_ class cLogger { public: void log(eLogLevel level, eLogComponent component, const char *event, const char *message); void log(eLogLevel level, eLogComponent component, const char *event, const char *message, eLogOutcome outcome, int playerId, int houseId); void log(eLogLevel level, eLogComponent component, const char *event, const char *message, eLogOutcome outcome); void logCommentLine(const char *txt); void logHeader(const char *txt); static cLogger *getInstance(); private: FILE *file; time_t current_time; std::string getLogLevelString(eLogLevel level); std::string getLogComponentString(eLogComponent component); std::string getLogOutcomeString(eLogOutcome outcome); std::string getCurrentFormattedTime(); std::string getLogHouseString(int houseId); void updateTime(); static cLogger *instance; std::string getIntegerAsString(int value); std::string getLongAsString(long value); long startTime; // start time of logging in miliseconds long getTimeInMilisDifference(); protected: cLogger(); }; #endif
a5b743ad617cae810c36342bd60610059fab3c87
21398f93e869699e6bbd73bf2346f538b2b368e9
/deredundancy-omp/main.cpp
ebc939286be99dc8e99e7ad7cbecdfae747cefe8
[ "MPL-2.0", "BSD-3-Clause" ]
permissive
zjin-lcf/HeCBench
fc67fa11d052ca5b9fbaac9ecee3d7a3ab3af08f
e2e13ff587c392361989cece0956d827167aa7b9
refs/heads/master
2023-08-18T05:08:57.134834
2023-08-14T01:22:41
2023-08-14T01:22:41
285,634,219
89
34
BSD-3-Clause
2023-09-08T18:28:55
2020-08-06T17:44:38
C++
UTF-8
C++
false
false
6,192
cpp
main.cpp
#include <chrono> #include "utils.h" #include "kernels.cpp" int main(int argc, char **argv) { Option option; checkOption(argc, argv, option); std::vector<Read> reads; bool fail = readFile(reads, option); if (fail) return 1; int readsCount = reads.size(); int* h_lengths = (int*) malloc (sizeof(int) * readsCount); long* h_offsets = (long*) malloc (sizeof(long) * (1 + readsCount)); h_offsets[0] = 0; for (int i = 0; i < readsCount; i++) { // copy data for lengths and offsets int length = reads[i].data.size(); h_lengths[i] = length; h_offsets[i+1] = h_offsets[i] + length/16*16+16; } long total_length = h_offsets[readsCount]; char* h_reads = (char*) malloc (sizeof(char) * total_length); for (int i = 0; i < readsCount; i++) { // copy data for reads memcpy(&h_reads[h_offsets[i]], reads[i].data.c_str(), h_lengths[i]*sizeof(char)); } auto t1 = std::chrono::high_resolution_clock::now(); unsigned int *h_compressed = (unsigned int*) malloc ((total_length / 16) * sizeof(int)); int *h_gaps = (int*) malloc(readsCount * sizeof(int)); unsigned short* h_indexs = (unsigned short*) malloc (total_length * sizeof(unsigned short)); long* h_words = (long*) malloc (sizeof(long) * readsCount); unsigned short *h_orders = (unsigned short*) malloc (total_length * sizeof(unsigned short)); int *h_magicBase = (int*) malloc ((readsCount * 4) * sizeof(int)); int* h_cluster = (int*) malloc (sizeof(int) * readsCount); for (int i = 0; i < readsCount; i++) { h_cluster[i] = -1; } unsigned short* h_table = (unsigned short*) malloc (sizeof(unsigned short) * 65536); memset(h_table, 0, 65536*sizeof(unsigned short)); // fill zero int *h_wordCutoff = (int*) malloc (readsCount * sizeof(int)); #pragma omp target data map(to: h_lengths[0:readsCount], \ h_offsets[0:1+readsCount], \ h_reads[0:total_length], \ h_table[0:65536]) \ map(alloc: h_compressed[0:total_length/16], \ h_gaps[0:readsCount], \ h_indexs[0:total_length], \ h_words[0:readsCount], \ h_magicBase[0:readsCount*4], \ h_orders[0:total_length], \ h_wordCutoff[0:readsCount]), \ map(tofrom: h_cluster[0:readsCount]) { kernel_baseToNumber(h_reads, total_length); kernel_compressData( h_lengths, h_offsets, h_reads, h_compressed, h_gaps, readsCount); //createIndex(data, option); int wordLength = option.wordLength; switch (wordLength) { case 4: kernel_createIndex4( h_reads, h_lengths, h_offsets, h_indexs, h_orders, h_words, h_magicBase, readsCount); break; case 5: kernel_createIndex5( h_reads, h_lengths, h_offsets, h_indexs, h_orders, h_words, h_magicBase, readsCount); break; case 6: kernel_createIndex6( h_reads, h_lengths, h_offsets, h_indexs, h_orders, h_words, h_magicBase, readsCount); break; case 7: kernel_createIndex7( h_reads, h_lengths, h_offsets, h_indexs, h_orders, h_words, h_magicBase, readsCount); break; } // createCutoff(data, option); float threshold = option.threshold; kernel_createCutoff( threshold, wordLength, h_lengths, h_words, h_wordCutoff, readsCount); // sortIndex(data); #pragma omp target update from (h_indexs[0:total_length]) #pragma omp target update from (h_offsets[0:1+readsCount]) #pragma omp target update from (h_words[0:readsCount]) for (int i = 0; i< readsCount; i++) { int start = h_offsets[i]; int length = h_words[i]; std::sort(&h_indexs[start], &h_indexs[start]+length); } // mergeIndex(data); #pragma omp target update to (h_indexs[0:total_length]) kernel_mergeIndex( h_offsets, h_indexs, h_orders, h_words, readsCount); int r = -1; // a shorthand for representative while (r < readsCount) { // clustering updateRepresentative(h_cluster, &r, readsCount); // update representative if (r >= readsCount-1) { // complete break; } //std::cout << r << "/" << readsCount << std::endl; kernel_makeTable( h_offsets, h_indexs, h_orders, h_words, h_table, r); kernel_magic( threshold, h_lengths, h_magicBase, h_cluster, r, readsCount); kernel_filter( threshold, wordLength, h_lengths, h_offsets, h_indexs, h_orders, h_words, h_wordCutoff, h_cluster, h_table, readsCount); kernel_align( threshold, h_lengths, h_offsets, h_compressed, h_gaps, r, h_cluster, readsCount); kernel_cleanTable( h_offsets, h_indexs, h_orders, h_words, h_table, r); } auto t2 = std::chrono::high_resolution_clock::now(); double total_time = std::chrono::duration_cast<std::chrono::microseconds>(t2 - t1).count(); printf("Device offload time %lf secs \n", total_time / 1.0e6); } // #pragma std::ofstream file(option.outputFile.c_str()); int sum = 0; for (int i = 0; i < readsCount; i++) { if (h_cluster[i] == i) { file << reads[i].name << std::endl; file << reads[i].data << std::endl; sum++; } } file.close(); std::cout << "cluster count: " << sum << std::endl; free(h_lengths); free(h_offsets); free(h_reads); free(h_indexs); free(h_words); free(h_cluster); free(h_table); return 0; }
1246607ed9ef6a9c484022fc67944910b357df42
27b87ae8f0463a7d5e9f5a9e934da5717b2ef29c
/src/base/command.cpp
06b5e14b6c5e59b749162349e3a6a8a3bcd9cd03
[]
no_license
llersch/zapps
07143225e8238b097f5d5c59354365f4ffedf320
b5092e54ac3966d9b34828933c0ff136808c6f18
refs/heads/master
2021-01-18T09:28:28.208889
2015-11-30T16:41:07
2015-11-30T16:41:07
42,859,732
0
0
null
2015-09-21T10:30:24
2015-09-21T10:30:23
null
UTF-8
C++
false
false
12,600
cpp
command.cpp
#include "command.h" //#include "commands/logreplay.h" //#include "commands/verifylog.h" //#include "commands/dbstats.h" //#include "commands/agglog.h" //#include "commands/mergerestore.h" //#include "commands/cat.h" //#include "commands/skew.h" //#include "commands/dirtypagestats.h" //#include "commands/trace.h" #include "kits_cmd.h" #include "genarchive.h" #include "mergeruns.h" #include "agglog.h" #include "logcat.h" #include "verifylog.h" #include "truncatelog.h" #include "logstats.h" #include "logpagestats.h" #include "dbinspect.h" #include "experiments/restore_cmd.h" /* * Adapted from * http://stackoverflow.com/questions/582331/is-there-a-way-to-instantiate-objects-from-a-string-holding-their-class-name */ Command::ConstructorMap Command::constructorMap; template<typename T> Command* createCommand() { return new T; } #define REGISTER_COMMAND(str, cmd) \ { \ Command::constructorMap[str] = &createCommand<cmd>; \ } void Command::init() { /* * COMMANDS MUST BE REGISTERED HERE AND ONLY HERE */ REGISTER_COMMAND("logcat", LogCat); //REGISTER_COMMAND("skew", skew); //REGISTER_COMMAND("trace", trace); //REGISTER_COMMAND("dirtypagestats", dirtypagestats); //REGISTER_COMMAND("logreplay", LogReplay); REGISTER_COMMAND("genarchive", GenArchive); REGISTER_COMMAND("mergeruns", MergeRuns); REGISTER_COMMAND("verifylog", VerifyLog); REGISTER_COMMAND("truncatelog", TruncateLog); //REGISTER_COMMAND("dbstats", DBStats); REGISTER_COMMAND("agglog", AggLog); REGISTER_COMMAND("logstats", LogStats); REGISTER_COMMAND("logpagestats", LogPageStats); REGISTER_COMMAND("dbinspect", DBInspect); REGISTER_COMMAND("kits", KitsCommand); REGISTER_COMMAND("restore", RestoreCmd); } void Command::setupCommonOptions() { options.add_options() ("help,h", "Displays help information regarding a specific command") ("config,c", po::value<string>()->implicit_value("zapps.conf"), "Specify path to a config file"); } void Command::showCommands() { cerr << "Usage: zapps <command> [options] " << endl << "Commands:" << endl; ConstructorMap::iterator it; for (it = constructorMap.begin(); it != constructorMap.end(); it++) { // Options common to all commands Command* cmd = (it->second)(); cmd->setupCommonOptions(); cmd->setupOptions(); cerr << it->first << endl << cmd->options << endl << endl; } } Command* Command::parse(int argc, char ** argv) { if (argc >= 2) { string cmdStr = argv[1]; std::transform(cmdStr.begin(), cmdStr.end(), cmdStr.begin(), ::tolower); if (constructorMap.find(cmdStr) != constructorMap.end()) { Command* cmd = constructorMap[cmdStr](); cmd->setupCommonOptions(); cmd->setCommandString(cmdStr); cmd->setupOptions(); po::variables_map vm; po::store(po::parse_command_line(argc,argv,cmd->getOptions()), vm); if (vm.count("config") > 0) { string pathToFile = vm["config"].as<string>(); std::ifstream file; file.open(pathToFile.c_str()); po::store(po::parse_config_file(file,cmd->getOptions(), true), vm); } if (vm.count("help") > 0) { cmd->helpOption(); return NULL; } po::notify(vm); cmd->setOptionValues(vm); return cmd; } } showCommands(); return NULL; } void Command::setupSMOptions() { boost::program_options::options_description smoptions("Storage Manager Options"); smoptions.add_options() ("db-config-design", po::value<string>()->default_value("normal"), "") ("physical-hacks-enable", po::value<int>()->default_value(0), "Enables physical hacks, such as padding of records") ("db-worker-sli", po::value<bool>()->default_value(0), "Speculative Lock inheritance") ("db-loaders", po::value<int>()->default_value(10), "Specifies the number of threads that are used to load the db") ("db-worker-queueloops", po::value<int>()->default_value(10), "?") ("db-cl-batchsz", po::value<int>()->default_value(10), "Specify the batchsize of a client executing transactions") ("db-cl-thinktime", po::value<int>()->default_value(0), "Specify a 'thinktime' for a client") ("records-to-access", po::value<uint>()->default_value(0), "Used in the benchmarks for the secondary indexes") ("activation_delay", po::value<uint>()->default_value(0), "") ("db-workers", po::value<uint>()->default_value(1), "Specify the number of workers executing transactions") ("dir-trace", po::value<string>()->default_value("RAT"), "") /** System related options **/ ("sys-maxcpucount", po::value<uint>()->default_value(0), "Maximum CPU Count of a system") ("sys-activecpucount", po::value<uint>()->default_value(0), "Active CPU Count of a system") /**SM Options**/ ("sm_fakeiodelay-enable", po::value<int>()->default_value(0), "Enables a artificial delay whenever there is a I/O operation") ("sm_fakeiodelay", po::value<uint>()->default_value(0), "Specify the imposed delay in usec") ("sm_errlog", po::value<string>()->default_value("shoremt.err.log"), "Path to the error log of the storage manager") ("sm_pagecleaners", po::value<uint>()->default_value(16), "Number of Page Cleaners") ("sm_chkpt_flush_interval", po::value<uint>()->default_value(-1), "Interval for checkpoint flushes") ("sm_backgroundflush", po::value<uint>()->default_value(1), "Disable/enable backgroundflushs (0 to disable, 1 to enable)") ("sm_log_page_flushers", po::value<uint>()->default_value(1), "Number of log page flushers") ("sm_preventive_chkpt", po::value<uint>()->default_value(1), "Disable/enable preventive checkpoints (0 to disable, 1 to enable)") ("sm_logbuf_seg_count", po::value<int>(), "Log Buffer Segment Count") ("sm_logbuf_flush_trigger", po::value<int>(), "?") ("sm_logbuf_block_size", po::value<int>(), "Log Buffer Block isze") ("sm_logbuf_part_size", po::value<int>(), "Log Buffer part size") ("sm_carray_slots", po::value<int>(), "") ("sm_restart", po::value<int>(), "Enable restart") ("sm_restore_segsize", po::value<int>(), "Segment size restore") ("sm_restore_prefetcher_window", po::value<int>(), "Segment size restore") ("sm_backup_prefetcher_segments", po::value<int>(), "Segment size restore") ("sm_rawlock_gc_interval_ms", po::value<int>(), "Garbage Collection Interval in ms") ("sm_rawlock_lockpool_segsize", po::value<int>(), "Segment size Lockpool") ("sm_rawlock_xctpool_segsize", po::value<int>(), "Segment size Transaction Pool") ("sm_rawlock_gc_generation_count", po::value<int>(), "Garbage collection generation count") ("sm_rawlock_gc_init_generation_count", po::value<int>(), "Garbage collection initial generation count") ("sm_rawlock_lockpool_initseg", po::value<int>(), "Lock pool init segment") ("sm_rawlock_xctpool_segsize", po::value<int>(), "Transaction Pool Segment Size") ("sm_rawlock_gc_free_segment_count", po::value<int>(), "Garbage Collection Free Segment Count") ("sm_rawlock_gc_max_segment_count", po::value<int>(), "Garbage Collection Maximum Segment Count") ("sm_locktablesize", po::value<int>(), "Lock table size") ("sm_rawlock_xctpool_initseg", po::value<int>(), "Transaction Pool Initialization Segment") ("sm_num_page_writers", po::value<int>(), "Number of page writers") ("sm_cleaner_interval_millisec_min", po::value<int>(), "Minimum of cleaner interval in ms") ("sm_cleaner_interval_millisec_max", po::value<int>(), "Maximal of cleaner interval in ms") ("sm_cleaner_write_buffer_pages", po::value<int>(), "Number of buffer pages to write") ("sm_archiver_workspace_size", po::value<int>(), "Workspace size archiver") ("sm_archiver_block_size", po::value<int>()->default_value(1024*1024), "Archiver Block size") ("sm_archiver_bucket_size", po::value<int>()->default_value(128), "Archiver bucket size") ("sm_merge_factor", po::value<int>(), "Merging factor") ("sm_archiving_blocksize", po::value<int>(), "Archiving block size") ("sm_reformat_log", po::value<bool>(), "Enable/Disable reformat log") ("sm_logging", po::value<bool>(), "Enable/Disable logging") ("sm_shutdown_clean", po::value<bool>(), "Force buffer before shutting down SM") ("sm_archiving", po::value<bool>(), "Enable/Disable archiving") ("sm_async_merging", po::value<bool>(), "Enable/Disable Asynchronous merging") ("sm_statistics", po::value<bool>(), "Enable/Disable display of statistics") ("sm_ticker_enable", po::value<bool>(), "Enable/Disable ticker (currently always enabled)") ("sm_ticker_msec", po::value<int>(), "Ticker interval in millisec") ("sm_prefetch", po::value<bool>(), "Enable/Disable prefetching") ("sm_restore_instant", po::value<bool>(), "Enable/Disable instant restore") ("sm_restore_reuse_buffer", po::value<bool>(), "Enable/Disable reusage of buffer") ("sm_restore_multiple_segments", po::value<int>(), "Number of segments to attempt restore at once") ("sm_restore_min_read_size", po::value<int>(), "Attempt to read at least this many bytes when scanning log archive") ("sm_restore_max_read_size", po::value<int>(), "Attempt to read at most this many bytes when scanning log archive") ("sm_restore_preemptive", po::value<bool>(), "Use preemptive scheduling during restore") ("sm_bufferpool_swizzle", po::value<bool>(), "Enable/Disable bufferpool swizzle") ("sm_archiver_eager", po::value<bool>(), "Enable/Disable eager archiving") ("sm_archiver_read_whole_blocks", po::value<bool>(), "Enable/Disable reading whole blocks in the archiver") ("sm_archiver_slow_log_grace_period", po::value<int>(), "Enable/Disable slow log grace period") ("sm_errlog_level", po::value<string>(), "Specify a errorlog level. Options:") //TODO Stefan Find levels and insert them ("sm_log_impl", po::value<string>(), "Choose log implementation. Options") //TODO Stefan Find Implementations ("sm_backup_dir", po::value<string>(), "Path to a backup directory") ("sm_bufferpool_replacement_policy", po::value<string>(), "Replacement Policy") ("sm_archdir", po::value<string>(), "Path to archive directory"); options.add(smoptions); } void Command::helpOption() { cerr << "Usage: zapps Command:" << commandString << " [options] " << endl << options << endl; } size_t LogScannerCommand::BLOCK_SIZE = 1024 * 1024; BaseScanner* LogScannerCommand::getScanner( bitset<logrec_t::t_max_logrec>* filter) { BaseScanner* s; if (isArchive) { if (merge) s = new MergeScanner(optionValues); else s = new LogArchiveScanner(optionValues); } else { s = new BlockScanner(optionValues, filter); } if (!filename.empty()) { s->setRestrictFile(logdir + "/" + filename); } return s; } void LogScannerCommand::setupOptions() { setupSMOptions(); po::options_description logscanner("Log Scanner Options"); logscanner.add_options() ("logdir,l", po::value<string>(&logdir)->required(), "Directory containing log to be scanned") ("file,f", po::value<string>(&filename)->default_value(""), "Scan only a specific file inside the given directory") ("archive,a", po::value<bool>(&isArchive)->default_value(false) ->implicit_value(true), "Scan log archive files isntead of normal recovery log") ("merge,m", po::value<bool>(&merge)->default_value(false) ->implicit_value(true), "Merge archiver input so that global sort order is produced") ("limit,n", po::value<size_t>(&limit)->default_value(0), "Number of log records to scan") ; options.add(logscanner); }
7ad7d0fdb97285c5d02871795cc8a58c4c400fee
f78d3a315150623b65289c6d4fdd03a522777527
/src/utils/zlib.h
df81313e331bd2971c3a7afe5befc450c5c859af
[]
no_license
adrigm/ARTS
c4672433c7ff691c92e398062aa3a05649a7aebf
89fc0f7ca5f44f8f677b08fe42a89baec70ebea2
refs/heads/master
2020-12-24T15:41:09.208267
2011-04-18T00:58:20
2011-04-18T00:58:20
1,596,809
0
0
null
null
null
null
UTF-8
C++
false
false
869
h
zlib.h
#ifndef UTILS_ZLIB_H #define UTILS_ZLIB_H #include <string> /** * Inflates either zlib or gzip deflated memory. The inflated memory is * expected to be freed by the caller. */ int inflateMemory(unsigned char *in, unsigned int inLength, unsigned char *&out, unsigned int &outLength); int inflateMemory(unsigned char *in, unsigned int inLength, unsigned char *&out); /** * Loads the given file from the filesystem, uncompressing if it ends in ".gz". * * @param filename The name of the file to be loaded and uncompressed * @param filesize The size of the file that was loaded and uncompressed. * * @return An allocated byte array containing the data that was loaded and * uncompressed, or <code>NULL</code> on fail. */ void *loadCompressedFile(const std::string &filename, int &filesize); #endif // UTILS_ZLIB_H
a42278973129ffbe737fd8cacc8b66517b121097
a2ac5f990cf0db2a172573448ffb8ac676c16bc6
/variants-bac/varianta-9.h
28c61bf241c379a75b1bdd3a2d24035b50e735a7
[]
no_license
GrigoAleex/Variante-Bac-Informatica-2009
cbdf3115f598d2899a5c733db4920ef976edef03
03c06d3f05260926fb39bb4c1dd966a4b8552378
refs/heads/master
2022-09-08T22:47:29.621196
2020-06-01T10:36:31
2020-06-01T10:36:31
268,491,446
0
0
null
null
null
null
UTF-8
C++
false
false
435
h
varianta-9.h
// // Created by Tridev on 5/31/2020. // #ifndef UNTITLED_VARIANTA_9_H #define UNTITLED_VARIANTA_9_H namespace varianta9{ int ex1( long n, int k ){ if( n && n % 10 == k ) return 1 + ex1( n / 10, k ); return 0; } //se va afisa: 3 void ex3( int n, int k){ n = n * k; while( n >= k ) { std::cout << n << ' '; n -= k; } } } #endif //UNTITLED_VARIANTA_9_H
03bdb4b3925a2de13beeafc53ac5c9e74ccd74b9
681c84ad83ce6ad403a8f905f65f4bb43ef2bb87
/hot/constant/ellipse/polyMesh/points
0f8f78d8115214170b1005a196665e68285477c1
[]
no_license
zachery-style/prolate
fd8c1b8edb5457508c50b431fc34c8bcfead1cab
b344df4ae9f22d16555b43b07cc66d0cd2fce3fd
refs/heads/main
2023-04-08T22:07:41.537811
2021-04-14T02:28:52
2021-04-14T02:28:52
346,477,510
1
0
null
null
null
null
UTF-8
C++
false
false
1,821,279
points
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2012 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class vectorField; location "constant/ellipse/polyMesh"; object points; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 46970 ( (1.504717e-06 -0.003997833 -0.00993349) (0.001847955 -0.003728515 -0.009819091) (-0.001889044 2.44485e-05 -0.009861917) (-6.042796e-06 -6.946697e-06 -0.00999895) (1.977243e-06 0.003997273 -0.009947912) (0.001843282 0.003723274 -0.00983139) (-0.001975204 -0.02375856 -0.007818655) (4.267626e-07 -0.02394803 -0.007969996) (0.001986596 -0.02375126 -0.007824896) (-0.003851212 -0.01973768 -0.007836929) (-0.002143102 -0.02026505 -0.008163874) (1.953273e-06 -0.02000621 -0.008051656) (0.002150595 -0.02029544 -0.00818854) (0.003865469 -0.01973458 -0.00782808) (-0.004025303 -0.01600257 -0.008130664) (-0.002011169 -0.01600431 -0.00804749) (1.804939e-06 -0.01600472 -0.008087124) (0.002011896 -0.01600737 -0.008060018) (0.004115046 -0.01599109 -0.008125816) (-0.004025847 -0.01200311 -0.008054424) (-0.00200459 -0.01200212 -0.008077847) (3.121563e-06 -0.01200123 -0.008041739) (0.002013956 -0.0120009 -0.008062869) (0.00403213 -0.012003 -0.008045843) (-0.005866052 -0.007963988 -0.007860904) (-0.004034956 -0.008004252 -0.008056777) (-0.002011345 -0.00800167 -0.008052771) (2.63495e-06 -0.008001058 -0.008051833) (0.002014972 -0.008001223 -0.008071769) (0.00402044 -0.008003242 -0.008045356) (0.00585208 -0.007994712 -0.007847105) (-0.005912316 -0.00400068 -0.007911827) (-0.004027765 -0.004000365 -0.008087419) (-0.002012217 -0.004000533 -0.008061593) (6.898916e-07 -0.004000085 -0.008026632) (0.002015586 -0.00400176 -0.008070257) (0.004037902 -0.004001771 -0.008079037) (0.005924293 -0.004003098 -0.007929243) (-0.00599949 2.899006e-07 -0.007984996) (-0.004025983 1.499476e-06 -0.008076117) (-0.002019415 -3.095828e-07 -0.008080349) (-3.106074e-07 6.661325e-07 -0.008014935) (0.002016351 -4.516218e-07 -0.008060846) (0.004030645 -6.730403e-07 -0.008073945) (0.005977147 -1.583658e-07 -0.007971881) (-0.005923952 0.004000322 -0.007929839) (-0.004037644 0.004001799 -0.008077675) (-0.002017824 0.004001293 -0.008079166) (-4.643007e-07 0.004000275 -0.008032094) (0.002014807 0.004001379 -0.008070809) (0.004044052 0.004000686 -0.008089307) (0.005930581 0.00400197 -0.007939808) (-0.005849505 0.007963318 -0.007835613) (-0.004020253 0.008007374 -0.008102033) (-0.002012393 0.008002726 -0.008062027) (1.241978e-06 0.008001035 -0.008040084) (0.002011304 0.008002047 -0.008060762) (0.004023515 0.00800276 -0.008040768) (0.00585562 0.00799762 -0.007857623) (-0.004026365 0.01199988 -0.008046868) (-0.002012952 0.0120036 -0.00807745) (-3.853987e-07 0.01200012 -0.008040164) (0.002013267 0.01200258 -0.008070163) (0.004017205 0.01200246 -0.008031775) (-0.004014293 0.01600199 -0.008117683) (-0.002009067 0.01600251 -0.008051389) (-2.469857e-06 0.01600532 -0.008087268) (0.002008428 0.0160018 -0.00804006) (0.00401804 0.01600369 -0.008129708) (-0.003869914 0.01974187 -0.007837716) (-0.002120132 0.02026434 -0.008190226) (6.096956e-07 0.02000317 -0.008053058) (0.002126325 0.02025987 -0.008171311) (0.003868694 0.01974374 -0.007838267) (-0.001971361 0.02376259 -0.007832562) (-3.343841e-07 0.02394866 -0.007969123) (0.001979154 0.02376643 -0.007816023) (-0.001891508 -0.03167455 -0.005787562) (1.336157e-06 -0.03182854 -0.005965101) (0.001862646 -0.03170926 -0.005826046) (-0.003977218 -0.02798954 -0.005890113) (-0.002007784 -0.02800565 -0.006049865) (6.704206e-07 -0.02801321 -0.006062487) (0.00201558 -0.02800779 -0.006044796) (0.003990523 -0.027987 -0.005911801) (-0.004015978 -0.02400171 -0.006027981) (-0.002012113 -0.02400656 -0.006059987) (3.917503e-07 -0.02401377 -0.006073131) (0.00201897 -0.02401242 -0.006070336) (0.004028698 -0.02400363 -0.006052447) (-0.006078553 -0.01997491 -0.006081668) (-0.004036753 -0.02000755 -0.006065031) (-0.002014835 -0.02000288 -0.006056161) (6.230553e-07 -0.02000446 -0.006058119) (0.002014874 -0.0200048 -0.006064344) (0.004037091 -0.02000565 -0.00607123) (0.006080695 -0.01997467 -0.006083518) (-0.006028126 -0.01601527 -0.006033699) (-0.004031694 -0.01600493 -0.006061429) (-0.002014007 -0.01600265 -0.006055219) (1.264556e-06 -0.01600309 -0.006054991) (0.002017062 -0.01600436 -0.006057957) (0.004047054 -0.01600713 -0.006077208) (0.006063267 -0.01600909 -0.006055534) (-0.006074219 -0.01200275 -0.006061362) (-0.004033603 -0.0120029 -0.006053922) (-0.002013069 -0.01200191 -0.006048966) (1.791713e-06 -0.01200184 -0.006044184) (0.002016241 -0.01200317 -0.006049226) (0.004040262 -0.01200522 -0.00606589) (0.006074104 -0.01200636 -0.006081243) (-0.00782614 -0.007999929 -0.0058222) (-0.006047438 -0.008001864 -0.006042983) (-0.004037143 -0.008001694 -0.00605063) (-0.002014071 -0.0080012 -0.006041694) (1.182217e-06 -0.008000985 -0.006037232) (0.002014441 -0.008001732 -0.006044638) (0.004030138 -0.008003269 -0.006050912) (0.006042926 -0.008002724 -0.006045266) (0.007823245 -0.007997043 -0.005841895) (-0.007915192 -0.004001848 -0.005907514) (-0.00607323 -0.004002554 -0.006072785) (-0.004033845 -0.004000611 -0.006053317) (-0.002014225 -0.00400039 -0.0060416) (4.002777e-07 -0.004000405 -0.006032622) (0.002014239 -0.004000965 -0.006041725) (0.004030638 -0.004002023 -0.006050636) (0.00607149 -0.004002979 -0.006078166) (0.007927399 -0.00400249 -0.005921429) (-0.00798847 -2.143586e-07 -0.005998964) (-0.006047244 1.182649e-06 -0.006051514) (-0.004035009 1.181146e-06 -0.006058001) (-0.002015575 3.421295e-07 -0.00604535) (-2.466077e-07 1.794897e-07 -0.006030927) (0.002014197 -1.503104e-07 -0.006040616) (0.004025484 -6.585576e-07 -0.006045592) (0.006016175 -8.828271e-07 -0.006015263) (0.007984129 -2.550767e-07 -0.005977627) (-0.007885886 0.004000137 -0.005912572) (-0.006083363 0.004004453 -0.006079857) (-0.004035845 0.004002194 -0.006054636) (-0.002015306 0.004001143 -0.006045881) (-1.454477e-07 0.004000687 -0.00603534) (0.002014867 0.004000735 -0.006043301) (0.004035023 0.004000997 -0.006052744) (0.006084246 0.004002964 -0.006080391) (0.007928827 0.004002346 -0.005927441) (-0.007775648 0.007997132 -0.00584054) (-0.006039541 0.008002245 -0.0060448) (-0.004028775 0.008003417 -0.006052813) (-0.002013364 0.008002036 -0.006045264) (3.40053e-07 0.008001223 -0.006037504) (0.002014225 0.008001614 -0.006043504) (0.004032726 0.008002426 -0.006051126) (0.006055632 0.008003056 -0.006057116) (0.007840704 0.007998706 -0.005850109) (-0.006059192 0.01200465 -0.006065621) (-0.004032502 0.01200404 -0.006060279) (-0.002014928 0.01200288 -0.006051624) (-2.512617e-07 0.01200175 -0.006044364) (0.002015173 0.0120027 -0.006050247) (0.004038952 0.0120042 -0.006067599) (0.006072206 0.012009 -0.006080338) (-0.006054369 0.01600285 -0.006059393) (-0.004041142 0.01600758 -0.006069999) (-0.002017811 0.01600391 -0.006061031) (-1.422337e-06 0.01600338 -0.006056193) (0.002015574 0.01600354 -0.006056305) (0.004045736 0.01600566 -0.006071952) (0.00604102 0.01600389 -0.006028777) (-0.006078101 0.01997394 -0.006081492) (-0.00404381 0.02000455 -0.006059085) (-0.002018749 0.0200054 -0.006062412) (-1.483721e-06 0.02000455 -0.006057426) (0.002015287 0.02000491 -0.006059678) (0.00404448 0.02001313 -0.006066159) (0.006074774 0.0199741 -0.006078454) (-0.004024184 0.02401051 -0.006052559) (-0.002025536 0.02401281 -0.006078786) (-2.254287e-06 0.02401189 -0.006075602) (0.002013959 0.02400702 -0.006057228) (0.004010271 0.02400484 -0.006032506) (-0.003993724 0.02799017 -0.005907828) (-0.002021851 0.02801311 -0.006075022) (-1.682223e-06 0.02801591 -0.006069403) (0.002006158 0.02801221 -0.006042736) (0.003961858 0.02798055 -0.005873475) (-0.0018582 0.03171513 -0.005834004) (-5.766777e-06 0.03185646 -0.005977477) (0.001852284 0.03168065 -0.005767137) (-0.002007482 -0.03579453 -0.00389546) (1.877354e-05 -0.0362326 -0.00414) (0.002001711 -0.03579547 -0.003928625) (-0.004113743 -0.03222992 -0.004119507) (-0.00204081 -0.03203418 -0.004102524) (2.944256e-06 -0.03202742 -0.004084954) (0.002025368 -0.03203134 -0.004077264) (0.004093297 -0.03223527 -0.004106382) (-0.005874453 -0.02799006 -0.003971756) (-0.004056871 -0.02801469 -0.004074287) (-0.002030767 -0.02801936 -0.004078667) (1.545088e-07 -0.02801811 -0.004070345) (0.002029492 -0.02801704 -0.004070154) (0.004075478 -0.02801614 -0.004067891) (0.005900062 -0.02799102 -0.003984963) (-0.006032093 -0.02400943 -0.00401395) (-0.004045826 -0.02400867 -0.004053467) (-0.002020521 -0.02400823 -0.004051102) (8.226338e-07 -0.02400949 -0.004050213) (0.002024038 -0.02400945 -0.004053919) (0.004053877 -0.02400878 -0.004058147) (0.006041785 -0.02400224 -0.00401875) (-0.007827302 -0.01974287 -0.003863951) (-0.006054653 -0.02001008 -0.004034113) (-0.004035691 -0.02000494 -0.004036898) (-0.002016171 -0.02000409 -0.004037718) (9.79623e-07 -0.02000457 -0.004038575) (0.002018806 -0.02000492 -0.004041525) (0.004039168 -0.02000494 -0.004044307) (0.006068026 -0.02000591 -0.004042946) (0.007836165 -0.01974138 -0.003856879) (-0.008125678 -0.01600578 -0.004018403) (-0.006057228 -0.01600614 -0.004033076) (-0.004032839 -0.01600391 -0.004033804) (-0.002014295 -0.01600261 -0.004032831) (1.071646e-06 -0.01600268 -0.00403328) (0.00201713 -0.01600323 -0.004035533) (0.00403753 -0.01600394 -0.004039297) (0.006063773 -0.01600471 -0.004036993) (0.00811475 -0.01602089 -0.004112772) (-0.00805987 -0.01200424 -0.004032128) (-0.00606153 -0.01200374 -0.004036504) (-0.004032201 -0.01200242 -0.004031268) (-0.002014129 -0.01200175 -0.004029816) (9.441297e-07 -0.01200181 -0.004029803) (0.002015918 -0.01200237 -0.004031404) (0.004033899 -0.01200301 -0.004035618) (0.006058837 -0.01200268 -0.004040063) (0.00806821 -0.01200214 -0.004033835) (-0.008110823 -0.008003761 -0.004042836) (-0.006053512 -0.008001999 -0.004029338) (-0.004031844 -0.008001385 -0.004029722) (-0.002015083 -0.008001049 -0.00402816) (4.536755e-07 -0.0080011 -0.004026966) (0.00201503 -0.008001566 -0.004028756) (0.004029786 -0.008002199 -0.004030452) (0.006048796 -0.008002991 -0.004029185) (0.008097877 -0.008009857 -0.004037095) (-0.008055463 -0.004001059 -0.004021219) (-0.006048158 -0.004000884 -0.004031438) (-0.004030816 -0.00400056 -0.004030982) (-0.002015229 -0.004000402 -0.004028209) (7.560034e-08 -0.004000495 -0.004025662) (0.002014488 -0.004000832 -0.004027356) (0.004028675 -0.004001305 -0.004028955) (0.006048166 -0.004001624 -0.004029217) (0.008075236 -0.004001338 -0.004029235) (-0.008089474 2.077091e-06 -0.004044935) (-0.006050898 5.974966e-07 -0.004035256) (-0.00403061 4.782673e-07 -0.004032503) (-0.002015389 2.668293e-07 -0.004029287) (-1.727834e-07 9.950864e-08 -0.004025738) (0.002014465 -8.110766e-08 -0.004027255) (0.004027828 -2.271754e-07 -0.004028043) (0.006046796 -1.141342e-07 -0.00402674) (0.008103118 1.4336e-06 -0.004051065) (-0.008049698 0.004000871 -0.004023806) (-0.006047376 0.00400163 -0.004032125) (-0.004030578 0.004001325 -0.00403221) (-0.002015271 0.00400091 -0.004029716) (1.305649e-07 0.004000684 -0.00402697) (0.002015509 0.004000678 -0.004028591) (0.004031119 0.004000885 -0.004030865) (0.006049329 0.004001331 -0.004031344) (0.008050387 0.004001632 -0.004021246) (-0.008094672 0.008002866 -0.004043673) (-0.006049009 0.008002276 -0.004031095) (-0.004029633 0.008002013 -0.00403151) (-0.002014689 0.008001554 -0.004030002) (5.165953e-07 0.008001286 -0.004028147) (0.002016453 0.008001448 -0.004029863) (0.004034081 0.008001929 -0.004032945) (0.006058206 0.00800233 -0.004035162) (0.008099174 0.008003477 -0.00403875) (-0.008060747 0.01200601 -0.004029158) (-0.006061319 0.012005 -0.004039673) (-0.004032375 0.01200309 -0.004034477) (-0.002014975 0.01200234 -0.00403199) (4.756316e-07 0.01200202 -0.004030799) (0.002017136 0.01200232 -0.004032087) (0.004038647 0.01200317 -0.00403707) (0.006069991 0.01200377 -0.004041331) (0.008075906 0.01200269 -0.004030268) (-0.00812385 0.01598954 -0.00410265) (-0.006061782 0.01600636 -0.004039654) (-0.004036119 0.01600421 -0.004037243) (-0.002016684 0.01600335 -0.004035504) (1.09465e-08 0.01600311 -0.004034204) (0.002018033 0.01600348 -0.004035036) (0.004042904 0.0160046 -0.004039532) (0.006084306 0.01600751 -0.00404806) (0.008135587 0.01600592 -0.004018111) (-0.007832291 0.01974436 -0.003853261) (-0.006064533 0.02000889 -0.004035247) (-0.004038633 0.02000473 -0.004036496) (-0.00201952 0.0200051 -0.004040079) (-7.688683e-07 0.02000515 -0.004039281) (0.002018983 0.02000551 -0.004038966) (0.004044642 0.02000664 -0.004039299) (0.006079546 0.02000689 -0.00404057) (-0.006030071 0.02400524 -0.00400549) (-0.004044744 0.02400836 -0.004043405) (-0.00202513 0.02401045 -0.004054584) (-1.862461e-06 0.02401011 -0.004052506) (0.002020586 0.02400977 -0.004050339) (0.004048337 0.02401095 -0.004045541) (0.006036221 0.02400591 -0.004021725) (-0.005904846 0.02798188 -0.003991241) (-0.004064055 0.02801742 -0.004059685) (-0.002032375 0.02801788 -0.004074769) (-1.030096e-06 0.02801628 -0.00407338) (0.002025619 0.0280175 -0.004076718) (0.004058277 0.0280192 -0.004072957) (0.005904477 0.02798031 -0.00399092) (-0.004110013 0.03223377 -0.004096221) (-0.002033228 0.03201885 -0.004075841) (1.549084e-06 0.03202106 -0.0040812) (0.002022849 0.03201703 -0.004078446) (0.004147796 0.03221792 -0.004005291) (-0.002011195 0.03581247 -0.00391449) (7.315388e-06 0.03622811 -0.004157717) (0.002005873 0.03579847 -0.003927267) (-0.003927099 -0.03581045 -0.002013321) (-0.00206669 -0.03604332 -0.00206621) (6.517456e-08 -0.0360555 -0.002069753) (0.002063754 -0.03604998 -0.002061171) (0.003889216 -0.03579847 -0.002003394) (-0.00579503 -0.03169793 -0.001854642) (-0.004068669 -0.03203054 -0.002051869) (-0.002045557 -0.03203107 -0.002058045) (-6.801667e-07 -0.03203025 -0.002049379) (0.002038692 -0.032026 -0.00204121) (0.004055262 -0.03201374 -0.002024105) (0.005802891 -0.03168365 -0.001839502) (-0.006041411 -0.02800629 -0.002008592) (-0.004057683 -0.0280136 -0.002032289) (-0.00203118 -0.02801607 -0.002039219) (-4.330078e-07 -0.02801605 -0.002036716) (0.002030897 -0.02801398 -0.002033012) (0.004066831 -0.02801119 -0.002029905) (0.006056466 -0.02800128 -0.002017075) (-0.007853825 -0.02374301 -0.001869637) (-0.006077796 -0.02401563 -0.00201823) (-0.004050135 -0.02400926 -0.002022783) (-0.002023757 -0.02400852 -0.002026056) (5.347806e-07 -0.02400879 -0.002027109) (0.002026112 -0.02400824 -0.002026214) (0.004056499 -0.02400798 -0.002025597) (0.006081774 -0.02400968 -0.002021195) (0.007852419 -0.02374024 -0.001874228) (-0.008001588 -0.02000247 -0.002001757) (-0.006066614 -0.02000969 -0.002017619) (-0.004040371 -0.02000615 -0.002017541) (-0.002019351 -0.02000477 -0.002019443) (8.626364e-07 -0.02000478 -0.002020595) (0.002021462 -0.02000475 -0.002020833) (0.004042983 -0.02000494 -0.002019983) (0.006066458 -0.02000589 -0.002018588) (0.008006223 -0.01999955 -0.00200235) (-0.008061433 -0.01600197 -0.002018046) (-0.006058973 -0.01600462 -0.0020182) (-0.004034429 -0.01600362 -0.00201569) (-0.002016636 -0.01600287 -0.002016585) (8.050043e-07 -0.01600282 -0.002017415) (0.002018265 -0.01600297 -0.002017589) (0.004035516 -0.01600322 -0.002016759) (0.006057829 -0.01600361 -0.002015522) (0.008060154 -0.0160018 -0.002013661) (-0.008085524 -0.01200574 -0.002014655) (-0.006053764 -0.01200335 -0.002015985) (-0.00403187 -0.01200228 -0.002014956) (-0.002016157 -0.01200187 -0.00201592) (5.458933e-07 -0.01200185 -0.002015466) (0.002016925 -0.01200211 -0.002016326) (0.004031344 -0.01200226 -0.002015276) (0.006051579 -0.01200235 -0.002014599) (0.008095983 -0.01200292 -0.002016227) (-0.008075131 -0.0080065 -0.002011676) (-0.006050958 -0.00800242 -0.002013693) (-0.004030981 -0.008001398 -0.002014775) (-0.002015081 -0.008001126 -0.002014442) (2.08072e-07 -0.008001194 -0.002014478) (0.002014926 -0.008001411 -0.002014385) (0.004029433 -0.008001715 -0.002014384) (0.006046082 -0.008002254 -0.002012589) (0.008055369 -0.008003545 -0.002010115) (-0.008067653 -0.004002314 -0.002013817) (-0.006042851 -0.004000902 -0.002013978) (-0.004028362 -0.004000558 -0.002015139) (-0.002014641 -0.004000478 -0.002014552) (1.403417e-07 -0.004000571 -0.002014094) (0.002014348 -0.004000758 -0.00201397) (0.004028066 -0.004001021 -0.002013992) (0.006043584 -0.004001343 -0.002012443) (0.008066233 -0.004001724 -0.002011227) (-0.009819869 1.593242e-06 -0.001880663) (-0.008054063 4.712824e-07 -0.002016955) (-0.00603688 2.54811e-07 -0.00201544) (-0.004026493 1.960207e-07 -0.002015764) (-0.002014113 1.347583e-07 -0.002015037) (1.326442e-07 4.125574e-08 -0.002014249) (0.002014209 -7.25296e-08 -0.002014149) (0.004026886 -1.657483e-07 -0.002014255) (0.006039499 -1.626576e-07 -0.002013604) (0.008063072 -5.792809e-07 -0.002015691) (0.009806797 8.718202e-07 -0.001879659) (-0.008052624 0.004001571 -0.00201466) (-0.006038484 0.004000883 -0.002014477) (-0.004027299 0.004000796 -0.002015626) (-0.002014286 0.004000714 -0.002015138) (4.492961e-07 0.004000654 -0.002014682) (0.002015205 0.004000631 -0.002014679) (0.004028521 0.004000708 -0.00201506) (0.006039565 0.00400096 -0.002013594) (0.008056646 0.004001563 -0.002011474) (-0.008061453 0.008001577 -0.002011364) (-0.006047253 0.008001611 -0.002014698) (-0.0040298 0.008001441 -0.002015571) (-0.002014638 0.008001334 -0.002015273) (8.381588e-07 0.008001312 -0.002015212) (0.002016949 0.008001392 -0.002015299) (0.004033427 0.008001666 -0.002016182) (0.00605222 0.008002332 -0.002015763) (0.008075338 0.008003867 -0.002016466) (-0.008078374 0.01200374 -0.00201609) (-0.006052605 0.01200319 -0.002016731) (-0.004031742 0.01200242 -0.002015905) (-0.002016435 0.01200215 -0.002016905) (1.005872e-06 0.01200207 -0.002016188) (0.002019754 0.01200233 -0.002017207) (0.004038142 0.01200284 -0.00201724) (0.006065447 0.01200427 -0.002019482) (0.008102401 0.01200955 -0.002023828) (-0.008062089 0.01600113 -0.002019001) (-0.006056609 0.01600506 -0.002016435) (-0.004034972 0.01600376 -0.002016285) (-0.002017647 0.01600321 -0.002017467) (8.478169e-07 0.01600319 -0.002018011) (0.002020671 0.01600343 -0.002017863) (0.004042148 0.01600424 -0.002018185) (0.006071175 0.01600658 -0.002021123) (0.008061929 0.01600766 -0.00201748) (-0.008004839 0.02000226 -0.001998541) (-0.006070622 0.02000882 -0.002018001) (-0.004042236 0.02000577 -0.00201699) (-0.002020927 0.02000519 -0.002019683) (3.036868e-07 0.02000531 -0.002020832) (0.00202271 0.02000545 -0.002020237) (0.004047329 0.02000604 -0.002019457) (0.006076804 0.02000776 -0.002019929) (0.008169607 0.02025236 -0.002119381) (-0.00786689 0.02373992 -0.001870673) (-0.006079398 0.02400973 -0.002017269) (-0.004052631 0.02400942 -0.002019453) (-0.002025545 0.02400914 -0.002024451) (-2.834606e-07 0.02400939 -0.002027154) (0.002025564 0.02400942 -0.002025945) (0.004055119 0.02400995 -0.002023257) (0.006082658 0.02401069 -0.002023649) (0.00779939 0.02370262 -0.001861826) (-0.006052124 0.02801883 -0.002002881) (-0.004067268 0.02801684 -0.002027164) (-0.002031832 0.02801531 -0.002032261) (-1.708966e-07 0.02801573 -0.002036253) (0.002031523 0.02801604 -0.002038155) (0.004063306 0.02801651 -0.002034124) (0.006050869 0.02801228 -0.002005218) (-0.00580761 0.03166999 -0.001859061) (-0.004070358 0.03201906 -0.002023686) (-0.002040812 0.03202695 -0.002040792) (5.389776e-07 0.03202876 -0.002047704) (0.002041914 0.03202614 -0.002049261) (0.004069988 0.03202218 -0.002040831) (0.005802603 0.03172016 -0.001856899) (-0.003925397 0.03581211 -0.002010207) (-0.002047317 0.03605663 -0.0020497) (-6.460094e-07 0.03606096 -0.002068828) (0.002048867 0.03603968 -0.002043409) (0.003886891 0.03580178 -0.002004749) (-3.66377e-06 -0.03994587 2.15769e-05) (-0.004173738 -0.03616942 1.206676e-05) (-0.002074981 -0.03605325 -2.91355e-06) (3.232378e-06 -0.03604399 8.273784e-06) (0.002068948 -0.03606639 9.61332e-06) (0.004127433 -0.03621609 2.011254e-05) (-0.005948968 -0.03198203 -2.667683e-07) (-0.004058373 -0.03201157 -1.705469e-07) (-0.002042908 -0.03202423 -2.869749e-06) (-1.154682e-06 -0.03202767 1.880974e-07) (0.002036185 -0.03202354 1.784455e-06) (0.004055453 -0.03200732 6.577928e-06) (0.005955001 -0.03198076 4.425261e-06) (-0.006096619 -0.02801492 2.522808e-06) (-0.004063315 -0.02801076 -5.984113e-07) (-0.002032347 -0.0280135 -1.27485e-06) (-7.845964e-07 -0.02801451 4.257191e-08) (0.002030801 -0.02801263 9.460655e-07) (0.00406274 -0.02801096 1.590234e-06) (0.006086231 -0.02802177 3.032184e-07) (-0.007989169 -0.02395198 -5.076441e-07) (-0.006085355 -0.02401335 1.643518e-07) (-0.004054429 -0.02400926 3.659952e-07) (-0.00202691 -0.02400855 5.790221e-07) (7.009413e-08 -0.02400875 1.070269e-06) (0.002027359 -0.02400814 9.76963e-07) (0.004055086 -0.02400894 1.118126e-07) (0.006080919 -0.02401295 -5.865559e-07) (0.007985725 -0.02394019 -5.673069e-07) (-0.008088691 -0.02000622 5.161362e-07) (-0.00607568 -0.02001077 -9.485673e-07) (-0.004043336 -0.02000648 1.674847e-07) (-0.002021639 -0.02000528 9.718763e-07) (5.81956e-07 -0.02000533 1.378633e-06) (0.002022899 -0.02000505 1.048602e-06) (0.004043837 -0.02000555 3.184916e-07) (0.0060707 -0.02000731 -1.427839e-06) (0.008082733 -0.02000927 -2.12007e-06) (-0.008066894 -0.01600185 -7.313428e-08) (-0.00605399 -0.01600413 -1.091136e-06) (-0.00403438 -0.01600359 -3.882332e-07) (-0.00201784 -0.01600316 5.115491e-07) (6.556617e-07 -0.01600322 1.025327e-06) (0.002019108 -0.01600311 8.764201e-07) (0.004035156 -0.01600322 4.978647e-07) (0.006054011 -0.0160032 -4.667393e-07) (0.008069221 -0.01600284 -1.728921e-06) (-0.008056374 -0.01200361 -3.159395e-07) (-0.00604841 -0.01200292 -1.146547e-06) (-0.004031205 -0.01200224 -5.502598e-07) (-0.002015776 -0.01200198 2.210877e-07) (4.72026e-07 -0.01200202 6.526669e-07) (0.002016462 -0.01200202 5.917525e-07) (0.004030446 -0.01200202 4.661621e-07) (0.006041393 -0.01200158 2.000153e-07) (0.008021969 -0.01199967 -5.501889e-07) (-0.008097786 -0.008003052 3.94895e-07) (-0.006048172 -0.008001804 -3.811329e-07) (-0.004029709 -0.008001334 -2.579981e-07) (-0.00201521 -0.008001213 1.593762e-07) (2.552933e-07 -0.008001248 4.086836e-07) (0.002015466 -0.008001345 3.734814e-07) (0.004028976 -0.008001497 3.646073e-07) (0.006043394 -0.008001865 5.473727e-07) (0.00807377 -0.008002965 1.088376e-06) (-0.00985178 -0.003995424 1.446003e-06) (-0.008023633 -0.003998597 3.373396e-07) (-0.006034803 -0.004000273 -8.966204e-08) (-0.004026096 -0.004000495 -8.74326e-08) (-0.002014197 -0.004000539 2.69626e-08) (3.122707e-07 -0.00400061 1.205673e-07) (0.002014835 -0.004000744 2.18659e-07) (0.004027619 -0.004000984 2.730639e-07) (0.006042236 -0.004001593 5.756723e-07) (0.008070506 -0.004003765 2.108974e-06) (0.009906144 -0.003934204 -5.163779e-06) (-0.009999224 1.488957e-06 -3.046041e-06) (-0.007994347 7.875524e-07 -1.93405e-07) (-0.006024995 3.126045e-07 -1.691865e-07) (-0.004023482 1.049829e-07 -8.454695e-08) (-0.002013471 4.95731e-08 -2.091741e-08) (3.818691e-07 -8.277322e-09 2.031813e-08) (0.00201438 -1.055195e-07 1.52558e-07) (0.004025221 -2.631478e-07 1.293948e-07) (0.006029534 -4.356013e-07 1.17293e-07) (0.008003621 -3.513878e-07 4.467249e-07) (0.009999759 7.619024e-07 3.200537e-07) (-0.009850677 0.003990732 -4.636931e-06) (-0.008022322 0.004000519 -2.418284e-06) (-0.006033606 0.004000614 -5.39317e-07) (-0.004025637 0.004000566 -1.441234e-07) (-0.00201398 0.0040006 -4.21899e-08) (6.131372e-07 0.004000601 1.10295e-07) (0.002015283 0.004000569 2.015378e-07) (0.004026934 0.004000475 9.679156e-08) (0.006033011 0.004000284 3.820657e-08) (0.00800976 0.003999442 3.33271e-07) (0.009881104 0.00399668 -2.070174e-06) (-0.008098542 0.008001263 -5.059614e-07) (-0.006047758 0.00800097 -5.107991e-07) (-0.004029511 0.008001057 -2.470362e-07) (-0.002015008 0.008001188 7.16059e-08) (9.733885e-07 0.008001275 3.422936e-07) (0.002017316 0.008001339 3.288859e-07) (0.004032259 0.008001369 1.897051e-07) (0.006049664 0.008001283 6.387411e-07) (0.008095953 0.008000772 3.846662e-06) (0.009841644 0.00773902 -1.613815e-05) (-0.008052435 0.01200249 -4.027872e-06) (-0.006047773 0.01200204 -1.935913e-06) (-0.00403143 0.01200189 -6.13898e-07) (-0.00201587 0.01200194 7.789139e-08) (1.288034e-06 0.01200212 4.498567e-07) (0.002019196 0.01200226 3.104348e-07) (0.004036383 0.01200259 2.45753e-08) (0.006054526 0.01200332 2.227232e-07) (0.008057376 0.01200362 1.956806e-06) (-0.008070089 0.01600615 -1.100168e-06) (-0.006054477 0.01600437 -1.931139e-06) (-0.004034694 0.01600335 -3.706952e-07) (-0.002018146 0.01600315 4.343996e-07) (1.304987e-06 0.01600342 7.501164e-07) (0.002021632 0.0160035 4.441147e-07) (0.004039847 0.01600391 -3.209688e-08) (0.006060125 0.01600517 -6.033418e-07) (0.008080422 0.01600776 -1.372056e-06) (-0.008098885 0.02001222 -1.244259e-06) (-0.006077119 0.02000874 -1.423894e-06) (-0.004043813 0.02000586 5.664523e-07) (-0.002022071 0.02000535 1.176843e-06) (9.885755e-07 0.02000573 1.204763e-06) (0.002024704 0.02000568 7.575659e-07) (0.004046977 0.02000594 1.665206e-07) (0.006070961 0.02000599 -5.347769e-07) (0.008043104 0.02000229 -1.588335e-06) (-0.007991331 0.02395073 -7.34276e-07) (-0.006083673 0.02401184 -9.944925e-07) (-0.004054794 0.02400978 1.243995e-06) (-0.002027114 0.02400914 1.518031e-06) (5.879641e-07 0.02400964 1.295422e-06) (0.002028837 0.02400956 8.390091e-07) (0.004058694 0.02401026 4.403505e-07) (0.006105843 0.02401465 -3.773835e-07) (0.007940604 0.02393727 -4.666044e-06) (-0.00609439 0.02801993 -1.138654e-06) (-0.004062356 0.02801485 5.625258e-08) (-0.002031608 0.02801483 1.01835e-06) (3.715145e-07 0.02801591 1.086212e-06) (0.002032588 0.02801496 6.481089e-07) (0.00406371 0.02801297 1.60261e-06) (0.006088012 0.02801372 4.966955e-06) (-0.005956663 0.03198372 1.806369e-06) (-0.004054723 0.03201439 9.009355e-07) (-0.002041702 0.03202634 2.407731e-06) (-3.484597e-07 0.03202996 2.383609e-06) (0.002038614 0.03202513 1.995033e-06) (0.004054842 0.0320102 5.284651e-06) (0.005952125 0.03197809 1.607414e-06) (-0.004140254 0.03624997 8.808571e-06) (-0.002079012 0.03605505 7.931273e-06) (-1.544099e-06 0.0360497 7.627039e-06) (0.002070732 0.0360666 -1.723555e-06) (0.004117985 0.03620643 -2.982387e-06) (-8.792756e-06 0.03995114 -3.91233e-06) (-0.003935201 -0.03581384 0.002015293) (-0.002065994 -0.03605279 0.002056237) (-2.1161e-06 -0.03606178 0.002073928) (0.00204029 -0.03603426 0.002041931) (0.003895901 -0.03579683 0.002007406) (-0.005803648 -0.03169991 0.00188128) (-0.004068853 -0.03201557 0.002033056) (-0.002042104 -0.03202626 0.002044028) (-1.42055e-06 -0.03202636 0.002046879) (0.002034701 -0.03202042 0.002037517) (0.004070692 -0.03202077 0.002024929) (0.005825192 -0.03170685 0.001843435) (-0.006060575 -0.02800587 0.002005324) (-0.004069776 -0.02801216 0.002026762) (-0.00203291 -0.02801435 0.002035485) (-4.010245e-07 -0.02801469 0.002037309) (0.002031482 -0.02801303 0.002034913) (0.004067549 -0.02801348 0.002029907) (0.006054568 -0.02800924 0.00201204) (-0.007837291 -0.02375355 0.001981227) (-0.00607472 -0.02401296 0.002020056) (-0.004056688 -0.02401039 0.002024761) (-0.002026505 -0.02400941 0.002028972) (1.970304e-07 -0.02400927 0.002031324) (0.002026707 -0.02400868 0.002029294) (0.004055813 -0.02400921 0.002025414) (0.006085476 -0.02401139 0.002022551) (0.007849987 -0.02373896 0.001866318) (-0.008008381 -0.02000013 0.00200028) (-0.006064184 -0.02000769 0.002013235) (-0.004042206 -0.02000618 0.002018978) (-0.002020831 -0.02000563 0.002023122) (6.653362e-07 -0.02000554 0.002024856) (0.002022625 -0.02000547 0.002023775) (0.004045636 -0.02000648 0.002021603) (0.006073127 -0.0200101 0.002018633) (0.008014096 -0.01999966 0.001999229) (-0.00803377 -0.01600102 0.002005908) (-0.006051857 -0.01600288 0.002011194) (-0.004033076 -0.01600336 0.002015189) (-0.002016714 -0.01600326 0.002018657) (8.155666e-07 -0.0160033 0.002020229) (0.002018873 -0.01600327 0.002019613) (0.004036887 -0.0160035 0.002018306) (0.006059874 -0.01600392 0.00201842) (0.008056214 -0.0160005 0.002013817) (-0.008066477 -0.01200623 0.00201121) (-0.006046589 -0.01200301 0.00201182) (-0.004029463 -0.01200218 0.002014187) (-0.002015562 -0.01200205 0.002016944) (6.292008e-07 -0.01200206 0.002017277) (0.002017107 -0.01200205 0.002017631) (0.004031555 -0.012002 0.002016082) (0.006051055 -0.01200199 0.002016342) (0.008092334 -0.01200145 0.002015174) (-0.008058415 -0.008003307 0.002010203) (-0.006044662 -0.00800178 0.00201295) (-0.004028938 -0.008001289 0.002014702) (-0.002014467 -0.008001193 0.002015141) (3.038823e-07 -0.008001252 0.002015682) (0.002015297 -0.008001246 0.002015079) (0.004029694 -0.00800138 0.002014743) (0.006045784 -0.008001845 0.002013528) (0.008062351 -0.008003402 0.002012536) (-0.008057352 -0.003998104 0.002011505) (-0.006039028 -0.004000135 0.002013939) (-0.00402727 -0.004000519 0.002015155) (-0.002014223 -0.004000564 0.002014607) (2.878884e-07 -0.004000616 0.00201442) (0.002014924 -0.004000674 0.002014276) (0.004028552 -0.004000919 0.002014377) (0.006042989 -0.004001574 0.002013329) (0.008064421 -0.004003128 0.002013224) (-0.00982582 -1.788443e-07 0.001869711) (-0.0080544 3.408424e-07 0.002018858) (-0.006036689 2.176911e-07 0.002015288) (-0.00402619 3.265317e-08 0.002015483) (-0.002013897 8.25958e-12 0.002014557) (3.841698e-07 -2.538112e-08 0.002014127) (0.002014809 -9.087252e-08 0.002014384) (0.004027494 -2.858237e-07 0.002014663) (0.006038784 -6.299854e-07 0.002013368) (0.008059439 -5.559964e-07 0.002014493) (0.009815376 2.941927e-06 0.001865883) (-0.008055514 0.004001753 0.002011115) (-0.006038925 0.004000806 0.00201414) (-0.004027363 0.004000553 0.002015524) (-0.002014223 0.004000554 0.002014946) (6.666209e-07 0.00400058 0.002014942) (0.002015559 0.004000542 0.002015284) (0.004028983 0.004000399 0.002015485) (0.006041031 0.004000057 0.002012858) (0.00806225 0.004000239 0.002009236) (-0.008060861 0.008001572 0.002013702) (-0.006046208 0.008000862 0.0020145) (-0.00402974 0.008000927 0.002015378) (-0.002014619 0.008001095 0.002015545) (9.015057e-07 0.008001239 0.002016296) (0.00201694 0.008001285 0.002016401) (0.004032561 0.008001241 0.002016672) (0.00605094 0.008000789 0.002015585) (0.008081829 0.007999722 0.002014838) (-0.008077033 0.01199766 0.002017877) (-0.006049589 0.01200044 0.002013436) (-0.004030763 0.01200143 0.002014795) (-0.002015978 0.0120018 0.002017259) (1.213766e-06 0.01200201 0.00201753) (0.002019257 0.01200227 0.002018294) (0.00403541 0.0120025 0.002017136) (0.006057172 0.01200266 0.002018131) (0.008100958 0.01200138 0.002025359) (-0.008041561 0.0160035 0.002004042) (-0.006049457 0.01600267 0.002012552) (-0.00403331 0.01600277 0.00201577) (-0.002017017 0.01600298 0.002018766) (1.304829e-06 0.01600322 0.002020054) (0.00202058 0.01600351 0.002019337) (0.004039881 0.01600412 0.00201812) (0.006063078 0.01600469 0.00201757) (0.008055115 0.01600259 0.002010515) (-0.008008333 0.02000192 0.001996458) (-0.006064183 0.02000574 0.002016268) (-0.004042433 0.02000539 0.002019994) (-0.00202116 0.02000536 0.002023212) (1.034544e-06 0.02000564 0.002024345) (0.002023928 0.02000595 0.002022615) (0.004047553 0.02000652 0.002020349) (0.006079558 0.0200069 0.002020006) (0.008185288 0.02027581 0.002124962) (-0.007843342 0.02376717 0.001986344) (-0.006079806 0.02401137 0.002023181) (-0.004056733 0.02400985 0.002027184) (-0.002026387 0.02400931 0.002029255) (7.090536e-07 0.02400996 0.002031075) (0.002028114 0.02401052 0.002028586) (0.004057289 0.02401119 0.002024088) (0.006086461 0.02401089 0.002019417) (0.007817324 0.02371476 0.00185116) (-0.006057171 0.02801302 0.00201491) (-0.004066191 0.02801467 0.002027484) (-0.002031461 0.02801486 0.002033669) (1.041252e-06 0.02801666 0.002038226) (0.002034523 0.02801763 0.002037724) (0.004070719 0.02801869 0.002029659) (0.006057568 0.02801345 0.002009836) (-0.005816811 0.03169364 0.001833059) (-0.004068712 0.03202596 0.002024208) (-0.002039245 0.03202809 0.00203914) (5.838347e-07 0.03203087 0.002050119) (0.00204216 0.03203116 0.002052172) (0.004073943 0.03202662 0.002030135) (0.005807071 0.03171619 0.001852624) (-0.003936111 0.03581618 0.002012663) (-0.002060586 0.03605196 0.002057028) (-4.849257e-06 0.03606542 0.002079102) (0.002067729 0.0360643 0.00207084) (0.003899372 0.03581179 0.002008004) (-0.002011999 -0.03581881 0.00392554) (2.475025e-06 -0.03621241 0.004175592) (0.001999233 -0.03579232 0.003867998) (-0.004112688 -0.03223427 0.004109167) (-0.002029801 -0.03202243 0.004081606) (7.805034e-07 -0.03202051 0.004070348) (0.00202396 -0.03201403 0.004066708) (0.004094329 -0.03222986 0.004089562) (-0.005902561 -0.02798703 0.003995879) (-0.004060778 -0.02801476 0.004061137) (-0.002032191 -0.02801994 0.004081687) (1.521137e-06 -0.02801767 0.004075213) (0.00203266 -0.02801604 0.004077005) (0.004065653 -0.028014 0.004077185) (0.005870406 -0.02797631 0.003976112) (-0.006051217 -0.02401277 0.004027216) (-0.004059075 -0.02401276 0.00406133) (-0.002025353 -0.02401275 0.004063281) (6.982639e-07 -0.02401147 0.004061419) (0.002026301 -0.02401121 0.004061879) (0.004054143 -0.02400987 0.004058751) (0.006056901 -0.02400783 0.004018992) (-0.007840454 -0.01974551 0.00386314) (-0.006059151 -0.02000628 0.004033109) (-0.004040436 -0.02000543 0.004043986) (-0.002018391 -0.02000642 0.004046618) (6.059865e-07 -0.02000624 0.004045645) (0.0020209 -0.02000635 0.004046166) (0.004045769 -0.02000729 0.004046584) (0.006080987 -0.02001046 0.004054131) (0.007840338 -0.0197412 0.003866953) (-0.008115563 -0.01601988 0.00410402) (-0.006054014 -0.01600477 0.004032533) (-0.004033487 -0.01600368 0.004036422) (-0.002014989 -0.0160035 0.004036986) (7.576052e-07 -0.01600368 0.004037183) (0.002017509 -0.01600352 0.004037506) (0.004038688 -0.01600326 0.004039388) (0.00606826 -0.01600455 0.004045438) (0.008139653 -0.01601657 0.004026685) (-0.008034889 -0.01200158 0.004013856) (-0.006049736 -0.01200382 0.004033276) (-0.004030235 -0.01200256 0.004033055) (-0.002013962 -0.01200216 0.004032955) (6.087697e-07 -0.01200225 0.00403319) (0.002015516 -0.01200201 0.004032958) (0.004033162 -0.01200195 0.004033903) (0.006055914 -0.0120029 0.004039254) (0.008062396 -0.01200504 0.004033737) (-0.00809074 -0.008003439 0.004051637) (-0.006050969 -0.008001456 0.004032488) (-0.004030171 -0.008001379 0.004031434) (-0.002014501 -0.008001274 0.0040305) (3.728917e-07 -0.00800128 0.004029731) (0.002015173 -0.008001185 0.004029981) (0.004030307 -0.008001303 0.004029237) (0.00605051 -0.00800115 0.004028287) (0.008086974 -0.008003311 0.004025598) (-0.00805444 -0.00400005 0.004030907) (-0.006049494 -0.00400116 0.004034454) (-0.004030599 -0.004000821 0.00403154) (-0.002014973 -0.004000683 0.004028305) (2.363661e-07 -0.00400063 0.004026035) (0.002015421 -0.004000626 0.004027649) (0.00403067 -0.004000851 0.004028898) (0.006048057 -0.00400113 0.004029006) (0.008045412 -0.004001924 0.004024094) (-0.008098732 -6.303487e-07 0.004041454) (-0.006052339 -6.824784e-07 0.004035017) (-0.004029922 -1.13506e-07 0.004031258) (-0.002015133 -4.436812e-08 0.004027687) (2.373967e-07 -2.479439e-08 0.004024889) (0.002015777 -2.349913e-08 0.004027632) (0.004030837 -1.357158e-07 0.004029785) (0.00604917 -6.812237e-07 0.004028044) (0.008080656 -2.477409e-06 0.004030608) (-0.008053362 0.004000688 0.004028836) (-0.006048207 0.00400087 0.004033882) (-0.004030838 0.004000772 0.004032398) (-0.002015255 0.004000644 0.004028954) (5.58449e-07 0.004000611 0.004027114) (0.0020166 0.00400063 0.004030038) (0.004032766 0.004000669 0.004032793) (0.006051022 0.004000313 0.004031611) (0.008069184 0.003999742 0.004023962) (-0.008082746 0.008000357 0.004054044) (-0.006052342 0.008001033 0.004034234) (-0.00403133 0.008001301 0.004031961) (-0.002014955 0.008001232 0.004030906) (8.455626e-07 0.008001301 0.00403086) (0.002017093 0.008001395 0.004032949) (0.004034104 0.008001561 0.00403481) (0.006053852 0.008001077 0.004035778) (0.008052894 0.008000344 0.004028138) (-0.008044973 0.01200069 0.004019803) (-0.006056302 0.01200112 0.004033947) (-0.004032247 0.01200188 0.004033) (-0.002014448 0.01200186 0.004032738) (1.078523e-06 0.012002 0.004033708) (0.002017237 0.01200227 0.00403446) (0.004036301 0.01200305 0.004036538) (0.006060826 0.01200404 0.004040729) (0.008059137 0.0120002 0.004036845) (-0.008111509 0.01598906 0.004118224) (-0.006052056 0.01600358 0.004034063) (-0.00403393 0.01600288 0.004036276) (-0.002015428 0.01600314 0.004036481) (1.210824e-06 0.01600305 0.004037088) (0.002018918 0.01600332 0.004037176) (0.004041087 0.01600502 0.004039989) (0.006069568 0.01601005 0.004044575) (0.008125585 0.01602252 0.004116065) (-0.007846098 0.01973819 0.003854304) (-0.00605707 0.02000333 0.004033462) (-0.004042024 0.02000554 0.004042376) (-0.002019469 0.02000598 0.004045732) (9.371136e-07 0.02000561 0.004044648) (0.002021986 0.02000601 0.004043595) (0.004045437 0.02000714 0.004042295) (0.006073711 0.02001108 0.004048324) (0.007824931 0.01972103 0.003849853) (-0.006049822 0.02399807 0.004027057) (-0.004055677 0.02401265 0.004061761) (-0.002026192 0.02401127 0.004062975) (8.389711e-08 0.02401077 0.004060436) (0.002027018 0.02401218 0.004059288) (0.00405383 0.02401433 0.004052899) (0.006043533 0.02400778 0.004024899) (-0.005882385 0.02798741 0.003978345) (-0.004063594 0.02801093 0.004062465) (-0.002033808 0.02801563 0.004074518) (8.520419e-07 0.02801715 0.004075933) (0.002034255 0.02802013 0.004081486) (0.004065053 0.02802344 0.004068643) (0.005875621 0.02798416 0.003956296) (-0.004096425 0.03223788 0.004106412) (-0.002024731 0.03202195 0.00407052) (2.772515e-06 0.03202214 0.004073818) (0.002033326 0.03203093 0.004088387) (0.004127776 0.03223733 0.004112058) (-0.001997861 0.03578765 0.003922501) (3.983421e-06 0.03621762 0.004176067) (0.002017042 0.03582006 0.0039214) (-0.001860833 -0.03169895 0.005835117) (1.950329e-06 -0.03198536 0.005976896) (0.001852676 -0.0316919 0.005796066) (-0.004000349 -0.0279882 0.00591764) (-0.002018394 -0.02801181 0.006063157) (2.78246e-06 -0.02802285 0.006105245) (0.002022254 -0.02802271 0.006072639) (0.003988148 -0.02798715 0.005900278) (-0.004036398 -0.0240068 0.006057703) (-0.002022562 -0.02401783 0.00609176) (-3.906295e-07 -0.02401181 0.006084672) (0.002021354 -0.02401253 0.006077111) (0.004027056 -0.02400758 0.006048078) (-0.006094132 -0.02000963 0.006102793) (-0.004032508 -0.02000414 0.006067052) (-0.002014123 -0.02000713 0.006071061) (-8.339051e-07 -0.02000697 0.00606743) (0.002017971 -0.02000771 0.006066516) (0.00404089 -0.02000846 0.006066525) (0.006086274 -0.01997536 0.006087128) (-0.006032141 -0.01600867 0.006032403) (-0.004038479 -0.01600326 0.006068589) (-0.00201481 -0.0160041 0.006059864) (1.354781e-07 -0.01600512 0.00605936) (0.002016145 -0.01600402 0.006059024) (0.00404036 -0.01600339 0.006066073) (0.006037019 -0.01599992 0.006035014) (-0.006067225 -0.01200408 0.006072825) (-0.004032898 -0.0120039 0.006059965) (-0.002014203 -0.01200248 0.006056247) (3.618606e-07 -0.01200302 0.00605126) (0.002014753 -0.01200226 0.006055798) (0.004035251 -0.01200189 0.006055565) (0.006060691 -0.01200493 0.006071456) (-0.007815258 -0.007997627 0.005853093) (-0.00605574 -0.008001614 0.006051072) (-0.004031532 -0.008001384 0.006051844) (-0.002013522 -0.008001489 0.006048493) (5.732352e-07 -0.00800155 0.006045664) (0.002014502 -0.008001082 0.006049344) (0.004030178 -0.008001931 0.006045526) (0.006040208 -0.008001496 0.006035713) (0.007826412 -0.007966428 0.005852711) (-0.007917109 -0.003999782 0.005904155) (-0.006080486 -0.004003511 0.006081911) (-0.004034536 -0.004001059 0.006053138) (-0.002014689 -0.004001091 0.006041547) (2.731217e-07 -0.004000788 0.006032477) (0.002015281 -0.004000598 0.006041577) (0.004034499 -0.004001295 0.006048464) (0.006077499 -0.004001833 0.006069269) (0.007869714 -0.00399767 0.005900595) (-0.007992332 1.27207e-07 0.005999028) (-0.00603791 -9.784851e-07 0.006040134) (-0.004030883 1.105491e-07 0.006050534) (-0.002015536 -1.824018e-07 0.006039814) (-1.588497e-07 -8.131458e-08 0.006028409) (0.002015499 6.199583e-08 0.006040312) (0.00403462 2.253236e-07 0.006051935) (0.006042218 -2.006432e-07 0.006037185) (0.007980341 1.257532e-05 0.005991209) (-0.007916457 0.004000188 0.005916678) (-0.006083014 0.004002694 0.006083935) (-0.004036598 0.004001397 0.006056648) (-0.002015601 0.004000809 0.006042599) (3.493755e-07 0.004000578 0.00603421) (0.002016823 0.004000683 0.006045868) (0.004038905 0.004001315 0.006058725) (0.00608598 0.004001661 0.006085132) (0.007925106 0.004002396 0.00592924) (-0.007828196 0.007994742 0.005849194) (-0.006053041 0.008001804 0.006054357) (-0.004033093 0.008002255 0.006051575) (-0.002014122 0.008001563 0.006048569) (5.871715e-07 0.008001693 0.006046871) (0.002016667 0.008001694 0.006053401) (0.004038107 0.008002152 0.006060178) (0.006059812 0.008002655 0.006059716) (0.007867614 0.007997598 0.005855821) (-0.00607599 0.01200449 0.006071375) (-0.004033626 0.01200388 0.006057308) (-0.002013953 0.01200197 0.00605378) (6.408562e-07 0.01200213 0.006051834) (0.002016244 0.0120028 0.00605691) (0.004036318 0.01200331 0.006059279) (0.00607042 0.01200516 0.006065984) (-0.006040974 0.01600556 0.006038328) (-0.00404073 0.01600478 0.006068888) (-0.002014724 0.01600434 0.006058088) (7.408851e-07 0.01600282 0.006060751) (0.00201824 0.01600221 0.006058242) (0.00404471 0.01600571 0.006067844) (0.00605453 0.0160086 0.006061548) (-0.006088163 0.02000907 0.006097326) (-0.004036734 0.02000624 0.00607069) (-0.002017015 0.02000701 0.006067991) (1.201678e-06 0.02000488 0.00606556) (0.002021056 0.02000424 0.006063816) (0.004038664 0.02000545 0.006055241) (0.006078127 0.01997416 0.00607797) (-0.004030542 0.02400651 0.006055612) (-0.002027063 0.02401472 0.006098107) (-1.145499e-06 0.02401127 0.006082299) (0.002026964 0.02401431 0.006079372) (0.004041289 0.02401137 0.006047276) (-0.00398675 0.027979 0.005912124) (-0.002017244 0.02800684 0.006060055) (-1.390549e-06 0.02802039 0.006105013) (0.002015788 0.02801224 0.006067353) (0.003998938 0.02798664 0.005913332) (-0.001854958 0.03171035 0.005811114) (3.288766e-06 0.03198841 0.005965779) (0.001871188 0.03170481 0.005840164) (-0.001881808 -0.02374714 0.007848237) (2.328048e-07 -0.02396842 0.007994286) (0.001982799 -0.02375219 0.00781673) (-0.003863698 -0.01973268 0.007827507) (-0.001999611 -0.02000158 0.008009137) (-6.326426e-07 -0.02000203 0.008080586) (0.002000654 -0.02000201 0.008009903) (0.003863742 -0.01973357 0.00784056) (-0.0041165 -0.01602287 0.008123114) (-0.002009426 -0.01600287 0.008057105) (-1.396827e-06 -0.01600767 0.00809287) (0.002007571 -0.0160009 0.008052095) (0.004119477 -0.01601392 0.008134458) (-0.004015344 -0.01200363 0.00805278) (-0.002014726 -0.01200198 0.008094597) (2.354868e-07 -0.0120046 0.008056377) (0.002020615 -0.01200302 0.008108228) (0.004018733 -0.01200149 0.008047574) (-0.0058514 -0.00799598 0.007828087) (-0.004020328 -0.007999944 0.008043984) (-0.002011601 -0.008001717 0.008075048) (8.363821e-07 -0.008003164 0.008078875) (0.002017351 -0.00800072 0.008086613) (0.004021008 -0.008002069 0.008042727) (0.005855345 -0.007995959 0.007842761) (-0.005935093 -0.004002243 0.007938901) (-0.004039352 -0.004001545 0.00809172) (-0.002015611 -0.00400287 0.008063019) (5.378338e-07 -0.004001012 0.008012219) (0.002018342 -0.004000146 0.008065694) (0.004037219 -0.004002083 0.008084496) (0.005917211 -0.004000204 0.007915003) (-0.005996097 -6.452453e-07 0.007995498) (-0.004024966 -6.800035e-07 0.008055945) (-0.002018823 -4.291805e-07 0.00806065) (-1.074995e-06 -6.446587e-08 0.008006595) (0.002014876 3.259481e-07 0.008059112) (0.004026391 -4.769246e-08 0.008061113) (0.005995667 1.326912e-05 0.00798802) (-0.005933065 0.004002395 0.007933636) (-0.004044267 0.004001422 0.008095919) (-0.002017154 0.004000825 0.008061301) (-2.19407e-07 0.003999711 0.008015358) (0.002018785 0.004000239 0.008075107) (0.004042897 0.004001088 0.008085501) (0.005941948 0.004002682 0.007945251) (-0.00583504 0.007993421 0.007843744) (-0.004020165 0.008001458 0.00804437) (-0.002011883 0.008002326 0.008072961) (-1.049631e-06 0.00800427 0.008080738) (0.002017322 0.008002537 0.008084946) (0.0040263 0.008001737 0.008056655) (0.005855184 0.007999539 0.007857304) (-0.004004554 0.01199947 0.008044702) (-0.002013735 0.01200231 0.008081682) (1.639031e-07 0.0120023 0.008056992) (0.002013311 0.01200764 0.008088892) (0.004017665 0.01199809 0.008041964) (-0.004115226 0.01602169 0.008123289) (-0.002010162 0.01600856 0.008055348) (-7.325283e-07 0.01600444 0.008095744) (0.002006789 0.0160016 0.008049319) (0.004118585 0.01602004 0.008120148) (-0.003853125 0.01972982 0.00784681) (-0.001998732 0.02000058 0.008010337) (1.472091e-06 0.02000485 0.008082755) (0.001997411 0.02000217 0.008004252) (0.003856289 0.01973364 0.007825186) (-0.001876447 0.02374297 0.007848793) (-5.213696e-07 0.02396755 0.007993014) (0.001985495 0.02375748 0.00783905) (2.97539e-06 -0.007926101 0.009880007) (-0.001867388 -0.003962077 0.00983665) (6.868223e-05 -0.00400405 0.009945264) (0.001873965 -0.003961995 0.009811026) (-0.001880105 8.346919e-07 0.009823761) (-3.423702e-05 -6.822423e-05 0.009998593) (0.001883895 4.73191e-07 0.009820497) (-0.001865755 0.003964175 0.009822588) (-7.049994e-05 0.004004874 0.009941914) (0.00186034 0.003728886 0.009811571) (-2.304185e-06 0.00792135 0.009866712) (-0.0009988667 -0.01000017 -0.009027933) (-0.001002438 -0.006000693 -0.009043984) (-0.001006874 -0.001999227 -0.009030379) (0.001003745 -0.001997968 -0.009007349) (-0.001004935 0.001999968 -0.009017402) (-0.001008382 0.006001102 -0.009079552) (-0.001000149 0.00999976 -0.009034462) (-0.001003025 -0.006004642 0.009042555) (-0.001005924 -0.002000376 0.008988408) (0.001005122 0.001999336 0.00899595) (0.001014368 0.005999433 0.009045718) (-0.002110273 -0.01202445 -0.009154277) (1.607261e-06 -0.01199843 -0.008993531) (-0.002004422 -0.008000599 -0.009039289) (-1.001812e-05 -0.005870559 -0.009905242) (1.254291e-06 -0.008001226 -0.009063109) (-0.0009198385 -0.003857557 -0.009912235) (-0.002010622 -0.004000851 -0.009094319) (0.001057589 -0.003998979 -0.009884456) (2.888242e-06 -0.001997029 -0.009985581) (-5.120576e-07 -0.003998939 -0.008994373) (0.00189685 -0.002302407 -0.009869288) (0.002006958 -0.004002874 -0.009085307) (-0.0009933245 6.065475e-07 -0.009949176) (-0.001880406 0.001700549 -0.009863966) (-0.002028848 -1.235388e-06 -0.009117787) (0.0009908529 5.333606e-06 -0.009886924) (-1.173674e-06 0.001998717 -0.009984771) (2.113217e-07 1.355613e-06 -0.008988266) (0.002014483 -1.070203e-06 -0.00906408) (-0.0009169109 0.004136427 -0.009912345) (-0.002026548 0.004001188 -0.009126403) (-4.740007e-05 0.005854393 -0.009902795) (-3.886027e-07 0.003998851 -0.00899935) (-0.002009384 0.008000832 -0.009046936) (1.710618e-06 0.008000726 -0.00903414) (-0.002123773 0.01203469 -0.009162861) (-3.308401e-07 0.01199875 -0.008992199) (-0.0009983789 -0.01200098 -0.008045125) (-0.002008313 -0.01000169 -0.008062627) (2.922724e-06 -0.01000087 -0.008045128) (-0.001002476 -0.008000753 -0.008038045) (-0.002011772 -0.006001225 -0.008052317) (1.796247e-06 -0.006000534 -0.008042647) (-0.00100523 -0.004000196 -0.008039509) (-0.00201781 -0.0020003 -0.008075967) (0.001007853 -0.004001498 -0.008046131) (1.360765e-07 -0.001999333 -0.008017589) (0.002016517 -0.002000711 -0.008068341) (-0.001008173 2.250461e-07 -0.008036806) (-0.002018706 0.002000614 -0.008081152) (0.001006477 6.42518e-07 -0.008026922) (-6.947546e-07 0.002000156 -0.008018262) (-0.001008473 0.004000488 -0.008051997) (-0.002014421 0.006002037 -0.00807573) (6.683909e-07 0.006001008 -0.00804696) (-0.001004555 0.008000932 -0.008043373) (-0.002010939 0.01000456 -0.008069812) (5.911054e-07 0.01000078 -0.008033477) (-0.001004748 0.01200019 -0.008044163) (-0.001005413 -0.008003625 0.008084952) (-0.002011818 -0.006002971 0.008070959) (-0.002006027 -0.008001178 0.009072578) (1.486383e-06 -0.006001703 0.008039658) (-6.435824e-07 -0.008003478 0.009069649) (-0.00100745 -0.004003314 0.008030647) (-0.002019165 -0.002001238 0.008059429) (-0.002013739 -0.004003079 0.009084862) (-9.099386e-07 -0.002000245 0.008005344) (6.089935e-07 -0.00399997 0.008973172) (-0.001009043 -2.020292e-07 0.008021869) (-0.00202635 2.770839e-07 0.00910086) (0.001006187 1.34913e-07 0.008022005) (-3.869821e-07 0.001999725 0.008007741) (-1.238661e-06 8.848656e-08 0.008989297) (0.002017819 0.002000495 0.008065492) (0.002017541 1.214645e-06 0.009096474) (0.001009624 0.003999166 0.008042598) (-8.418471e-07 0.00600159 0.008040435) (-6.076695e-07 0.003998668 0.0089765) (0.002018003 0.006001158 0.008080905) (0.002020782 0.004001532 0.009115635) (0.00100994 0.008001283 0.008089082) (-3.348966e-06 0.008008792 0.009070337) (0.002010208 0.008003136 0.009076012) (-0.0008700184 -0.007743175 0.009825958) (3.166727e-06 -0.006006326 0.009881383) (-0.0009966341 -0.004003522 0.009894936) (-0.001864122 -0.002002369 0.009808844) (6.762105e-05 -0.001992828 0.009982497) (-0.000994502 5.171245e-06 0.009944456) (0.0009985186 -1.078194e-05 0.009939095) (-7.168518e-05 0.001999391 0.009979696) (0.00188806 0.001994218 0.009802839) (0.001000629 0.004002685 0.009896479) (-3.81202e-06 0.006005955 0.009882401) (0.0008692537 0.007743985 0.009829628) (-0.0009967991 -0.001993186 -0.009932648) (0.001025528 -0.002060072 -0.009933145) (-0.0009949954 0.001998188 -0.009933626) (-0.0009957133 -0.01199747 -0.008976431) (-0.002004245 -0.01000139 -0.009008241) (2.739017e-06 -0.01000041 -0.00905874) (-0.001000654 -0.008000791 -0.009026352) (-0.00100056 -0.01000074 -0.008041207) (-0.002008097 -0.006001613 -0.009048596) (1.765136e-07 -0.005999682 -0.009046692) (-0.00100583 -0.004000049 -0.009049969) (-0.001003686 -0.006000567 -0.008038999) (0.00100525 -0.004005075 -0.009036079) (-0.002032489 -0.002000791 -0.009127333) (1.137587e-06 -0.001997417 -0.008986842) (-0.001004665 4.20419e-07 -0.00900767) (-0.001007588 -0.001999849 -0.008039418) (0.002014061 -0.001998772 -0.009102008) (0.00100516 3.205012e-06 -0.009006647) (0.001006975 -0.001999919 -0.008032629) (-0.002022123 0.002000603 -0.009128266) (-1.017793e-06 0.001999189 -0.008985039) (-0.001008955 0.003999255 -0.009055262) (-0.001008157 0.002000285 -0.008040825) (-0.002013449 0.006001663 -0.009113596) (1.84995e-06 0.006001252 -0.009058155) (-0.001003476 0.008000387 -0.009031777) (-0.001007129 0.006000995 -0.008057679) (-0.001995756 0.009998643 -0.009007434) (-3.601462e-07 0.01000124 -0.009024966) (-0.0009993445 0.01199839 -0.008973031) (-0.001003448 0.01000079 -0.008038831) (-0.001005011 -0.006003918 0.008057874) (-0.001008962 -0.002001016 0.008021113) (0.001008043 0.001999722 0.008027109) (0.001010505 0.006000438 0.008062984) (-0.001012603 -0.008007166 0.009125546) (-0.002014372 -0.006002562 0.009108941) (1.177414e-06 -0.006000403 0.008986271) (-0.00100478 -0.004005454 0.008994066) (-0.0009932436 -0.005983149 0.009891842) (-0.002026446 -0.001999797 0.0090901) (-1.130602e-06 -0.00199962 0.008982227) (-0.001006162 6.622363e-08 0.008997741) (-0.0009981833 -0.00199312 0.009910687) (0.001002581 3.176086e-07 0.008995697) (-7.214201e-07 0.001999511 0.008983792) (0.002018488 0.002002075 0.009099286) (0.001009675 0.003995895 0.009029377) (0.00100243 0.00199889 0.009930834) (-1.479924e-06 0.006001436 0.008985456) (0.002022205 0.006002025 0.009105272) (0.001015604 0.00799105 0.009127127) (0.0009749982 0.005984023 0.009865401) (0.001005164 -0.01000101 -0.009066165) (0.001012498 -0.006000582 -0.009056476) (0.003025556 -0.002000743 -0.009070609) (0.001002963 0.002000181 -0.008997222) (0.001009038 0.006003779 -0.00910097) (0.001004584 0.01000369 -0.009031452) (0.001005334 -0.005998177 0.009049425) (0.001001234 -0.001999261 0.008987898) (-0.001004597 0.002000056 0.008990137) (-0.001013275 0.006000566 0.009041764) (-0.0004977737 -0.008999233 -0.009492921) (-0.0005013047 -0.007000397 -0.009564292) (-0.0005011422 -0.004999863 -0.009542172) (-0.0004985541 -0.002998975 -0.009482281) (-0.0004973742 -0.0009977978 -0.009480127) (0.0005036607 -0.0009909616 -0.009479374) (0.001502611 -0.0009971024 -0.009532008) (-0.000498663 0.0009993106 -0.009476641) (-0.000502111 0.002997482 -0.009475089) (-0.0004963008 0.005000523 -0.009541278) (-0.0005001622 0.007001425 -0.009557309) (-0.0004987647 0.008997567 -0.009486372) (-0.0005008128 -0.005002823 0.009446495) (-0.0004992124 -0.002999531 0.009457753) (-0.0005007422 -0.0009996897 0.00947966) (0.0004985087 0.0009998875 0.0094803) (0.0004987639 0.002998483 0.009460276) (0.0005003409 0.004998158 0.009450406) (0.002132718 -0.01225428 -0.009133646) (6.665059e-07 -0.008001104 -0.009554142) (0.002010062 -0.008000906 -0.009066274) (-1.432188e-06 -0.004994862 -0.009909052) (-0.0004982414 -0.00399194 -0.009930222) (2.022323e-06 -0.002998101 -0.009963751) (-4.883038e-07 -0.003998195 -0.009463049) (0.004021599 -0.00400072 -0.009054913) (5.858638e-06 -0.000991493 -0.009995538) (-0.0004969833 -2.177768e-07 -0.00998583) (0.0004945707 2.062109e-06 -0.009941031) (-2.468961e-06 0.0009970845 -0.009995213) (-1.020337e-06 -2.353706e-07 -0.009486207) (0.001882654 0.002036525 -0.009850365) (0.001418232 0.0001327836 -0.009895024) (0.002007974 1.106314e-06 -0.009532321) (0.004051953 -5.198539e-07 -0.009087477) (0.001052769 0.003974394 -0.009899771) (-4.541078e-07 0.002998131 -0.009967649) (-0.0004960851 0.003997614 -0.00993007) (2.109372e-06 0.004991094 -0.009927884) (9.687682e-07 0.003998293 -0.009465936) (0.002010606 0.004004678 -0.009097702) (1.324548e-06 0.00800031 -0.009529613) (0.002005147 0.008001292 -0.009053467) (0.002120445 0.01202634 -0.009171162) (0.001005807 -0.01200033 -0.008042539) (0.002011888 -0.01000173 -0.008059505) (0.001009333 -0.008001936 -0.008079628) (0.002017214 -0.006000901 -0.008072295) (0.003024808 -0.004001414 -0.008068294) (0.004031097 -0.002001175 -0.008081876) (0.003027487 -6.278733e-07 -0.008080394) (0.002017129 0.002000176 -0.008065839) (0.001006654 0.004000975 -0.008048737) (0.002012518 0.006002117 -0.008076336) (0.00100769 0.008002475 -0.008059612) (0.002013822 0.01000287 -0.008053492) (0.001003963 0.01200213 -0.008044685) (0.001008148 -0.008001013 0.008089877) (0.002019461 -0.006000673 0.008081241) (0.002015394 -0.008001804 0.009077675) (0.001009236 -0.004000101 0.00803259) (0.002014353 -0.00200001 0.008057753) (0.002023373 -0.003998437 0.009091333) (-0.002017018 0.002000518 0.008059334) (-0.001008939 0.003999999 0.008030145) (-0.002016001 0.006002063 0.008072663) (-0.002016454 0.004000823 0.009070533) (-0.001009728 0.008004417 0.008088431) (-0.002005805 0.008001877 0.009064195) (0.000876357 -0.007751232 0.009827659) (0.0009925249 -0.003999124 0.009895714) (5.64531e-07 -0.003998417 0.009449982) (3.603459e-05 -0.005072898 0.009916947) (-0.0005649597 -0.004004803 0.009932488) (6.988637e-05 -0.002999084 0.009967936) (0.001870931 -0.001998546 0.009788857) (-0.001849033 0.002002067 0.009803295) (-1.114923e-06 1.228547e-07 0.009487365) (3.223085e-05 -0.0009311097 0.009994872) (-0.0005069641 -3.794127e-06 0.009984903) (0.0005358401 -7.0092e-05 0.009964112) (-6.954582e-05 0.00099328 0.009996183) (-0.0009964797 0.004000254 0.009893) (-1.269288e-06 0.003998303 0.009450236) (-7.249193e-05 0.002999419 0.009960858) (0.000565005 0.004004083 0.009931441) (-3.695189e-05 0.005074135 0.009917314) (-0.0008793132 0.007733685 0.009836799) (-0.0009986206 -0.01013779 -0.009560243) (-0.000498846 -0.0100009 -0.009040056) (-0.001001017 -0.009000992 -0.009023947) (-0.001003036 -0.006000251 -0.009563697) (-0.001001276 -0.007000653 -0.009035294) (-0.0005016416 -0.006000724 -0.009049032) (-0.001004012 -0.005000518 -0.009049404) (-0.001004799 -0.001997083 -0.009508808) (-0.001004868 -0.002999803 -0.009039421) (-0.0005006938 -0.001998342 -0.008997164) (-0.001006947 -0.0009990718 -0.009020077) (0.0009982329 -0.001995563 -0.009469891) (0.0005020813 -0.001997097 -0.008990139) (0.001508757 -0.00199913 -0.009050075) (0.001005006 -0.0009964492 -0.009008528) (-0.0009992042 0.002000098 -0.00948001) (-0.001003605 0.001000202 -0.00900706) (-0.0005013386 0.001999211 -0.008990488) (-0.001007175 0.002999162 -0.009037036) (-0.001008806 0.006001722 -0.00958043) (-0.00101006 0.005000534 -0.009075484) (-0.0005019219 0.006000891 -0.009061005) (-0.001005979 0.007000615 -0.009060754) (-0.001002555 0.01001313 -0.009563175) (-0.001001437 0.008998435 -0.009025912) (-0.0005017252 0.009999829 -0.009036253) (-0.000499379 -0.006002812 0.009001471) (-0.001008176 -0.005011895 0.009028527) (-0.00100986 -0.005999992 0.009482073) (-0.001005578 -0.003001861 0.008984674) (-0.000502404 -0.002000025 0.008982334) (-0.001007011 -0.001000033 0.008995334) (-0.001000083 -0.001999582 0.00945106) (0.001003756 0.0009999201 0.008995963) (0.0005011988 0.001999381 0.008986658) (0.001006721 0.002997812 0.008999887) (0.001001065 0.001999471 0.009459458) (0.00100632 0.004997773 0.009039893) (0.0005050975 0.005999461 0.009001532) (0.001009154 0.005998311 0.009481197) (3.391649e-06 -0.01026317 -0.009607253) (-0.0009985793 -0.008000298 -0.009504892) (-0.0004149069 -0.005851719 -0.009908215) (1.814068e-06 -0.005998107 -0.00955766) (3.253281e-06 -0.009001437 -0.009053069) (-0.0004995286 -0.00800072 -0.009035614) (6.240085e-07 -0.007000844 -0.009062716) (-0.0009440665 -0.003006255 -0.009900309) (-0.001012275 -0.003998885 -0.009572404) (-0.0004941428 -0.001999341 -0.009972735) (0.0004998943 -0.001995837 -0.009966091) (2.337231e-06 -0.001996606 -0.009477137) (-7.673676e-07 -0.004998913 -0.009014631) (-0.0005028461 -0.003999602 -0.009022359) (3.593285e-07 -0.002998421 -0.008986961) (0.001485146 -0.002112918 -0.009909865) (0.002146864 -0.002096569 -0.009607673) (-0.000993617 -0.0009986214 -0.00993579) (-0.0009951735 0.0009999435 -0.009941991) (-0.0009970935 6.015246e-07 -0.009464348) (0.0009979982 -0.0009903898 -0.009944213) (0.001003509 5.54565e-06 -0.009482972) (-0.0004878121 0.001999465 -0.009943357) (-1.137398e-06 0.001998697 -0.009476611) (1.430581e-06 -0.0009968908 -0.008988432) (-0.0005003239 7.658057e-07 -0.008989964) (0.0005013261 2.677125e-06 -0.008989373) (-7.725475e-07 0.0009998357 -0.008986822) (0.002018326 -0.001004547 -0.009091444) (0.001509551 1.599476e-06 -0.009039008) (-0.000987348 0.002973766 -0.009941071) (-0.0009264229 0.004866675 -0.009915644) (-0.001003964 0.0039988 -0.009546389) (4.557109e-06 0.006003619 -0.009567833) (-1.18115e-06 0.002998719 -0.008987039) (-0.0005040513 0.003998531 -0.009019392) (9.816162e-07 0.004999877 -0.009030787) (-0.001000906 0.008000102 -0.009505636) (2.18107e-07 0.009998896 -0.009485673) (1.967913e-06 0.00700139 -0.009055266) (-0.000500184 0.007999989 -0.009028093) (9.222808e-07 0.009000188 -0.009016409) (1.219616e-06 -0.005000434 0.008976507) (-0.0005013245 -0.004002111 0.008977562) (-3.894571e-07 -0.002999671 0.008976125) (-1.485429e-06 -0.0009997215 0.008987292) (-0.000502605 4.00573e-08 0.008989616) (0.0004999079 1.862394e-07 0.008988694) (-9.2971e-07 0.0009998551 0.008988197) (-5.955684e-07 0.002998998 0.008978587) (0.0005031385 0.003997768 0.008990992) (-1.201681e-06 0.004999274 0.008977506) (4.274914e-07 -0.005998943 0.009423684) (-0.0004982669 -0.00600381 0.009872) (-0.0009992902 -0.004002887 0.009445971) (-0.0009984668 -0.005007388 0.009870948) (-0.0009975406 -0.002998709 0.009900602) (-9.435723e-07 -0.001999233 0.009477003) (-0.0005674522 -0.001992979 0.009963307) (-0.001000913 4.513674e-08 0.009470858) (-0.0009999415 -0.0009882879 0.009938662) (0.0009993471 3.966163e-07 0.009466758) (0.001000413 0.0009937828 0.009928287) (-1.261312e-06 0.00199956 0.00947663) (0.0005679983 0.002000043 0.00996766) (0.001007716 0.003994584 0.009491531) (0.001002175 0.002997262 0.009881605) (0.0009846674 0.00500483 0.009868922) (-9.814634e-07 0.006000344 0.009423004) (0.0004958116 0.006002185 0.009871276) (-0.0004479276 -0.005001557 -0.00988819) (0.0009939205 -0.005946412 -0.009897347) (-0.00049255 -0.002997954 -0.009945193) (-0.0004948208 -0.0009986352 -0.009975294) (0.0005078171 -0.000983285 -0.009983603) (0.001431238 -0.001012802 -0.009901522) (-0.0004983164 0.0009989591 -0.009981965) (-0.0004996682 0.002998495 -0.009935607) (0.001060987 0.002003435 -0.009930567) (-0.0004987906 0.004995225 -0.009912764) (0.001000084 -0.01199614 -0.008969148) (0.002003679 -0.009999701 -0.009025722) (0.00101354 -0.008008322 -0.009157756) (0.001006624 -0.01000106 -0.008054762) (2.927189e-06 -0.009000869 -0.009517713) (-0.001000611 -0.007000757 -0.009533857) (0.002022095 -0.006001497 -0.00908205) (0.001010181 -0.006001061 -0.008064878) (4.724075e-07 -0.007001305 -0.009578304) (-1.327621e-06 -0.004997423 -0.009478441) (0.003015424 -0.00400076 -0.009037581) (-0.001003323 -0.003000357 -0.009546348) (1.03376e-06 -0.002998006 -0.00946811) (0.0005003084 -0.001995193 -0.00946971) (0.004049846 -0.002000577 -0.00907383) (0.003027716 -7.666833e-08 -0.009061504) (0.003026971 -0.002001166 -0.008079115) (0.002151769 -0.001242677 -0.00964426) (-0.0009971632 0.00100021 -0.009462684) (0.002019388 0.001999665 -0.009088793) (0.00100376 0.004000115 -0.009037149) (0.001006457 0.002000408 -0.008030547) (0.0004990201 3.403476e-06 -0.0094735) (0.001504451 3.182779e-06 -0.009522946) (-1.767544e-06 0.000998476 -0.009484347) (-1.145811e-06 0.002998091 -0.009467459) (-0.001008588 0.004998911 -0.009569253) (0.002012578 0.006004074 -0.009117699) (0.001011519 0.008004583 -0.009099084) (0.001007776 0.006002257 -0.008067188) (2.068074e-06 0.004999702 -0.009503761) (1.347512e-06 0.007001599 -0.009568196) (-0.001001615 0.008995898 -0.009492311) (0.002001903 0.01000126 -0.008998581) (0.0009969335 0.01200024 -0.008974311) (0.001006187 0.01000219 -0.008042146) (5.782719e-07 0.008998516 -0.009490371) (0.00100976 -0.006000381 0.008063545) (0.001006118 -0.001999815 0.008020687) (-0.001008147 0.002000017 0.008021459) (-0.001010974 0.00600197 0.008058845) (0.00101024 -0.008002244 0.009128482) (0.002019961 -0.005999708 0.009108262) (0.001007634 -0.003999396 0.008994786) (0.0009781818 -0.005977818 0.009897145) (1.04034e-06 -0.004998311 0.009436515) (0.002009603 -0.001999248 0.009082991) (0.0009929027 -0.00199899 0.009927196) (-3.816176e-07 -0.002998875 0.009464192) (-1.330575e-06 -0.000999533 0.009484967) (0.0004980804 2.527227e-07 0.009478049) (-0.002015436 0.002002513 0.009088885) (-0.001006121 0.003998419 0.008992299) (-0.0009960214 0.001999558 0.009928528) (-0.0005001625 5.903119e-08 0.009481001) (-9.974474e-07 0.0009998689 0.009486182) (-1.455116e-06 0.002998953 0.009462959) (0.0005005731 0.0009998502 0.008989166) (-0.002014488 0.006002128 0.009096266) (-0.001014699 0.008006878 0.009136031) (-0.0009806729 0.005972901 0.009888561) (-1.375447e-06 0.004998452 0.009437029) (0.0005028471 0.004998559 0.008994091) (-0.0005334303 -0.005072304 0.009900784) (-0.0005679418 -0.002999097 0.009952261) (-0.0005385428 -0.0009294681 0.009982501) (0.0005658651 0.000993438 0.009980106) (0.0005659854 0.002999254 0.009950884) (0.0005368198 0.005075499 0.009900586) (-0.000500092 -0.0102634 -0.009591362) (-0.0009976217 -0.008998869 -0.009493035) (-0.0004986213 -0.009000604 -0.009026608) (-0.000499535 -0.008000547 -0.00952892) (-0.0005017839 -0.006002576 -0.009563626) (-0.0005005577 -0.007000791 -0.009048014) (-0.00100618 -0.005000887 -0.00957267) (-0.0005023248 -0.004999966 -0.009037329) (-0.0005043724 -0.004000073 -0.009505611) (-0.0004977692 -0.0019982 -0.009478369) (-0.000501297 -0.002999046 -0.00900553) (-0.001001427 -0.0009977467 -0.009483201) (-0.0005003964 -0.0009981958 -0.008993073) (3.526007e-06 -0.0009943909 -0.009485398) (-0.0004980106 3.624985e-07 -0.009480312) (0.001500373 -0.001997952 -0.009495508) (0.00100259 -0.0009933544 -0.009484938) (0.0005025901 -0.0009957134 -0.008989941) (0.001509136 -0.0009990722 -0.009043875) (-0.0004982208 0.001998902 -0.009469179) (-0.0005006351 0.0009998272 -0.008988447) (-0.001005249 0.002998786 -0.009515092) (-0.0005030949 0.00299842 -0.009001389) (-0.000504893 0.003997293 -0.009495912) (-0.0005011349 0.006001226 -0.009575421) (-0.0005023838 0.004999991 -0.009045926) (-0.001004254 0.007000928 -0.009549011) (-0.0005010893 0.007000847 -0.009050842) (-0.0004987036 0.007999695 -0.009516219) (-0.0005636535 0.01014285 -0.009575112) (-0.0005001635 0.008998782 -0.009016538) (-0.0005018067 -0.005004223 0.008988507) (-0.0004987912 -0.00600054 0.009438705) (-0.001007908 -0.00501282 0.009483174) (-0.000498585 -0.004000146 0.00944724) (-0.0005018487 -0.003000651 0.008977144) (-0.0005029279 -0.0009999047 0.008988021) (-0.0009998537 -0.003000447 0.009440518) (-0.0004998496 -0.001999475 0.009469478) (-0.001002349 -0.0009997272 0.009466509) (0.0005019591 0.002998511 0.008984725) (0.0009997934 0.0009998455 0.009463212) (0.0004986636 0.00199956 0.009472993) (0.001001543 0.002997489 0.009448395) (0.0005008603 0.003997183 0.009460717) (0.0009993483 0.004997304 0.009492444) (0.0005023126 0.005998329 0.009437197) (-0.003008517 -0.01000134 -0.009120804) (-0.003005453 -0.005999125 -0.009006539) (-0.001498156 -0.007000397 -0.009499712) (-0.003019159 -0.001997376 -0.009068153) (-0.001508928 -0.003001427 -0.00957745) (0.0004988267 -0.002997604 -0.009459046) (0.0004965436 0.0009999966 -0.009477713) (0.003026242 0.00200036 -0.009082902) (0.0005026335 0.004997817 -0.009509029) (-0.003009066 0.01000743 -0.009114419) (-0.001502876 0.009005494 -0.009565838) (0.0005007577 0.009000009 -0.009496175) (-0.0009906671 0.0142116 -0.009149456) (-0.001509532 -0.009003282 -0.009563161) (-0.001503498 -0.00500108 -0.009521359) (-0.0002492939 -0.004498498 -0.009724045) (-0.0002480492 -0.003498478 -0.009705355) (-0.000246672 -0.0004970356 -0.009740116) (0.0002591546 -0.0004837759 -0.009736201) (-0.0002505986 0.000498056 -0.009739362) (-0.0002500264 0.003497196 -0.00969304) (-0.0002461641 0.00449733 -0.009699276) (-0.0002486959 0.007500216 -0.009799688) (-0.0002490307 0.008499323 -0.009754854) (-0.0005007984 0.0111611 -0.009536718) (-0.000247871 -0.004497479 0.00969043) (-0.0002483872 -0.00349844 0.009710431) (0.0002482405 0.000500187 0.009746921) (0.000247229 0.003498409 0.009707636) (0.0002476291 0.004497976 0.009690458) (0.0004980229 -0.004998419 -0.009463104) (0.001498756 0.001001734 -0.009499462) (0.0004966013 0.002998271 -0.009461125) (0.0005053767 0.00700324 -0.009571378) (0.0005017623 -0.004997736 0.009442007) (0.0004975618 -0.002998245 0.009455402) (0.0004969407 -0.0009993597 0.009476939) (-0.0005001357 0.0009999486 0.009474179) (-0.0005001116 0.002999033 0.009457387) (-0.0005021004 0.004997676 0.00943922) (-0.0007481127 -0.008499258 -0.009738505) (-0.000750647 -0.007500672 -0.009775127) (-0.0007500549 -0.006500209 -0.009796778) (-0.0007682892 -0.004515923 -0.009841766) (-0.0007628681 -0.005503715 -0.009842204) (-0.0007504944 -0.003500571 -0.009736539) (-0.0002453224 -0.002498005 -0.009712486) (-0.0002458824 -0.00149678 -0.009731627) (0.0007527104 -0.0004897774 -0.009714447) (0.001332001 -0.0003831669 -0.009829088) (-0.0002496508 0.001498653 -0.009728936) (-0.0002494513 0.002498382 -0.009712056) (-0.0002975021 0.005523625 -0.009838061) (-0.0002497306 0.006498286 -0.009843242) (-0.000747942 0.00849767 -0.009734514) (-0.0007392366 0.009475477 -0.009702405) (-0.0002494404 -0.002499123 0.009726228) (-0.0002500958 -0.001499281 0.009741218) (0.0002480762 0.001499883 0.0097434) (0.0002450557 0.00249895 0.00972478) (-0.003838637 -0.01172147 -0.008808746) (-0.003971164 -0.007984107 -0.008966801) (-0.00207541 -0.008010488 -0.009537742) (-0.004016508 -0.004002544 -0.009048305) (-0.002154672 -0.003993916 -0.009712337) (0.0004981387 -0.003997761 -0.009934848) (3.345143e-06 -0.004498248 -0.009918156) (-0.0002475828 -0.003997063 -0.009936638) (1.99077e-06 -0.003498254 -0.009948492) (3.61315e-07 -0.003997901 -0.009693526) (-0.004014685 4.71054e-06 -0.009122692) (6.096675e-06 -0.0004908748 -0.009998772) (-0.0002507 -1.652713e-06 -0.009995428) (0.000226046 -2.995959e-05 -0.009975473) (-4.980272e-06 0.0004946312 -0.009998209) (-3.509709e-06 -3.532536e-06 -0.009741269) (0.001884391 0.001324841 -0.009872548) (0.000495353 0.003996726 -0.009935982) (-1.364528e-06 0.003497526 -0.009957602) (-0.0002257796 0.004008602 -0.009903009) (1.553532e-06 0.004496865 -0.009931642) (2.497906e-06 0.003998222 -0.009698382) (0.004022913 0.004000129 -0.009075727) (-0.003989582 0.007998574 -0.008900147) (-0.002076263 0.00799461 -0.009533726) (1.178057e-06 0.00799996 -0.009781281) (-0.003853256 0.01173224 -0.008805213) (3.407137e-06 0.01200991 -0.009479305) (-0.001987228 0.01597848 -0.008959699) (-9.883864e-07 0.01601322 -0.009108975) (-0.003029148 -0.01200261 -0.008076424) (-0.004042064 -0.01000048 -0.008061626) (-0.003028427 -0.008004626 -0.008081873) (-0.004031389 -0.006001672 -0.008064433) (-0.003019795 -0.004000361 -0.008070125) (-0.004031724 -0.001996511 -0.008092794) (-0.003026249 -7.351393e-07 -0.008091181) (0.004047268 0.002000884 -0.008105885) (0.003026966 0.004000504 -0.008074902) (-0.003022099 0.008004242 -0.008074827) (-0.00402636 0.01000101 -0.008072813) (-0.003028496 0.01200584 -0.008061857) (-0.002013907 0.01400432 -0.008073699) (-4.822712e-07 0.01400125 -0.008105866) (-0.001007556 0.01600346 -0.008072986) (0.0005040681 -0.004003491 0.009933767) (3.573428e-07 -0.003997791 0.009694514) (9.61735e-06 -0.004510605 0.009934721) (-0.0002482512 -0.003999475 0.009940951) (1.307598e-05 -0.003499104 0.009957914) (-1.019818e-06 9.05524e-08 0.009741205) (0.0002514641 -2.286968e-06 0.009984619) (-9.247238e-06 0.0004869336 0.009998404) (-0.000505619 0.004004588 0.009934159) (-1.591772e-06 0.003998213 0.009692147) (-1.457591e-05 0.003499487 0.009949165) (0.000246992 0.003999323 0.009938415) (-1.025249e-05 0.004511599 0.009931979) (-0.001499649 -0.009999661 -0.009016854) (-0.001503176 -0.0060009 -0.009034875) (-0.001516109 -0.002001117 -0.009077784) (0.001005259 -0.003000821 -0.009011889) (-0.001498205 0.0100001 -0.009013691) (-0.0009991702 0.01099942 -0.009008532) (-0.00202796 -0.01006628 -0.009442961) (-0.0009971582 -0.00799893 -0.009742586) (-0.00215052 -0.006001954 -0.009626283) (-0.002000856 -0.009000574 -0.009011613) (-0.001502885 -0.008001096 -0.009038345) (-0.002010456 -0.007000621 -0.009049511) (0.0006226477 -0.005979726 -0.009884763) (-0.0007385901 -0.003984367 -0.009923901) (-0.0009374586 -0.003482131 -0.009914348) (-0.001006844 -0.003999926 -0.009832339) (-0.00141548 -0.00210115 -0.009914985) (-0.002178759 -0.001993855 -0.009705377) (-0.002008048 -0.005001529 -0.009066779) (-0.001507251 -0.004000632 -0.009060946) (-0.002013437 -0.003000672 -0.009125229) (0.001061914 -0.002999623 -0.009900201) (0.001000553 -0.004007458 -0.009503986) (0.001018686 -0.005066333 -0.009851578) (2.634623e-06 -0.002498111 -0.009978872) (4.374453e-06 -0.001494766 -0.009991189) (-0.0002454384 -0.001998247 -0.009956269) (2.919683e-06 -0.001996661 -0.009728378) (0.0005014414 -0.004000369 -0.008998361) (0.000742331 7.262718e-06 -0.009914133) (0.001241167 6.692763e-06 -0.009907595) (0.0009902598 -0.0004999249 -0.009928529) (0.0009992921 6.015319e-06 -0.009702151) (0.001022933 0.00106822 -0.009932092) (-1.443722e-06 0.00149815 -0.009991666) (-2.958107e-07 0.002498668 -0.009977112) (-0.0002490852 0.001998537 -0.009974361) (-1.080879e-06 0.001998624 -0.009729162) (0.0004958836 0.001999342 -0.00997137) (0.0020174 0.0009987537 -0.009081559) (3.515099e-06 0.005482304 -0.009921369) (-0.0001776009 0.005837814 -0.009897413) (1.027304e-05 0.006002161 -0.009849099) (0.0005013082 0.003999194 -0.009007359) (-0.0009980406 0.007998669 -0.00974216) (-0.002038161 0.009985344 -0.009445774) (-0.001508956 0.008002281 -0.009045096) (-0.002000361 0.009001274 -0.009012045) (0.0005050933 0.008002285 -0.009053348) (-0.0009953659 0.01200648 -0.009423544) (-1.263168e-06 0.01100005 -0.009035653) (-0.0004992633 0.01199894 -0.008982905) (0.0005028314 -0.00399919 0.008977279) (-0.0005030284 0.003998792 0.008977203) (0.0004974836 -0.006000714 0.00987134) (1.269658e-05 -0.002498355 0.009975137) (8.22354e-06 -0.001486481 0.009988003) (-7.950377e-07 -0.001999219 0.009728455) (-0.0002489018 -0.001997835 0.009974914) (0.0005028441 -0.001993098 0.009972042) (-0.0009961127 0.0009999653 0.009925595) (0.0009943847 -0.001004368 0.009924879) (-1.402809e-05 0.001499341 0.009985577) (-1.44031e-05 0.002499739 0.009967219) (-1.343794e-06 0.001999621 0.009727216) (0.0002473305 0.001999197 0.009983554) (-0.0005071732 0.00199911 0.009964292) (-0.000498511 0.006002872 0.00987263) (-0.001004103 -0.005998842 -0.009834149) (-0.0009287965 0.009857347 -0.009650711) (0.0005036906 -0.005999978 -0.009044956) (0.001007996 -0.005000821 -0.009042396) (0.00100339 0.001001685 -0.009002479) (0.0004998119 0.001999619 -0.008987381) (0.0005048833 0.006001608 -0.009071693) (0.0005031661 0.01000464 -0.009036054) (0.000501969 -0.00599863 0.009004508) (0.0004995083 -0.001999318 0.008981759) (-0.001005374 0.001000235 0.008993825) (0.001000379 -0.0009994736 0.008991315) (-0.0005019912 0.00199968 0.008982335) (-0.0005074646 0.006002364 0.009001313) (0.001006212 -0.005998517 -0.009501141) (0.0009981107 0.001999782 -0.0094604) (0.001509412 0.002000037 -0.009023228) (0.001002239 0.002999763 -0.009005695) (0.001006958 0.006002069 -0.009580265) (0.001007903 0.005001458 -0.009065487) (0.001019317 0.007008511 -0.009124425) (0.001039091 0.0100725 -0.009559625) (0.001006141 0.009003301 -0.009060706) (0.001013296 -0.00499984 0.009033958) (0.0009978864 -0.005997328 0.009483188) (0.001003947 -0.002998996 0.008984031) (0.0009969213 -0.001999071 0.009454732) (-0.001004339 0.002999298 0.008986371) (-0.001001104 0.002000028 0.009457662) (-0.001010458 0.004996806 0.009022586) (-0.001004295 0.005997503 0.009480073) (-0.000497826 -0.00899441 -0.009729496) (-0.0007475111 -0.008999095 -0.009486687) (-0.0004983844 -0.00850001 -0.00950851) (-0.0005021708 -0.006999606 -0.009825129) (-0.0007510966 -0.007000827 -0.009540532) (-0.0005008595 -0.007501119 -0.009548755) (-0.0005010862 -0.006502751 -0.009571152) (-0.0005636754 -0.005017194 -0.009845837) (-0.0002512204 -0.004998888 -0.009503324) (-0.0005078072 -0.005500083 -0.00954822) (-0.0007501612 -0.005000881 -0.009576231) (-0.0005019744 -0.004500018 -0.009544754) (-0.0004957686 -0.002998856 -0.009710838) (-0.0007501482 -0.00299965 -0.009508009) (-0.0002484079 -0.002998417 -0.009472303) (-0.0005003876 -0.003499185 -0.009486288) (-0.0004977414 -0.002498912 -0.009479953) (-0.0004955855 -0.0009980979 -0.009726409) (-0.0004978147 -0.001497719 -0.009479074) (-0.000246914 -0.0009965534 -0.009484081) (-0.0004973126 -0.000498446 -0.009480746) (0.0005056859 -0.0009865562 -0.009729068) (0.0005039125 -0.000490792 -0.009478889) (0.000254087 -0.0009918177 -0.009483106) (0.0007525938 -0.0009919853 -0.009477321) (0.001549921 -0.00100151 -0.009812278) (0.00150581 -0.0004961449 -0.009539387) (0.001252832 -0.0009948263 -0.009505197) (-0.0004981441 0.0009990547 -0.009727133) (-0.0002501479 0.0009988449 -0.00948206) (-0.000498434 0.0004996137 -0.00947891) (-0.0004985518 0.001499156 -0.009472898) (-0.0005005389 0.002997823 -0.009702466) (-0.0002510112 0.002997794 -0.009466827) (-0.0005000138 0.002498285 -0.009469926) (-0.0005042797 0.00349641 -0.009493692) (-0.00043726 0.005159622 -0.009850913) (-0.0002464427 0.005000183 -0.009521663) (-0.0005000504 0.004498786 -0.009499437) (-0.000500002 0.005500237 -0.009560844) (-0.0004998043 0.007001694 -0.009809719) (-0.0002498522 0.007001467 -0.009564781) (-0.0005003554 0.006501799 -0.009573115) (-0.0004989332 0.007500535 -0.009536828) (-0.000497561 0.00899714 -0.009726294) (-0.0007489606 0.008996601 -0.009484636) (-0.0002489639 0.008997968 -0.009488487) (-0.000498538 0.00849861 -0.009498582) (-0.0004991657 0.009496052 -0.009480953) (-0.0002490251 -0.004999062 0.00943497) (-0.0004981667 -0.004997946 0.009665682) (-0.000498648 -0.004499623 0.009440205) (-0.0002493771 -0.002998999 0.009463306) (-0.0004978679 -0.002999039 0.009704586) (-0.0004984734 -0.003499232 0.009453438) (-0.0004991244 -0.002499293 0.009466221) (-0.0002506697 -0.0009995284 0.00948532) (-0.0004994697 -0.0009996724 0.009730601) (-0.000499883 -0.001499488 0.00947869) (0.0004979255 0.0005000799 0.009483327) (0.0002484659 0.0009998867 0.009487591) (0.0004972952 0.0009998927 0.009730681) (0.0004980448 0.001499764 0.009480526) (0.0002478523 0.002998791 0.009462645) (0.0004963693 0.002998954 0.009704132) (0.0004976685 0.00249921 0.009468162) (0.0004984118 0.003498159 0.009456718) (0.0002488919 0.004998159 0.009437772) (0.0005003136 0.004998943 0.009667905) (0.00049917 0.004497765 0.009445152) (-0.000499674 -0.008000389 -0.009779478) (-0.0002373908 -0.004993144 -0.009907176) (-1.302034e-06 -0.004997254 -0.00969354) (-0.0004944064 -0.004501873 -0.009912184) (-0.0004899432 -0.003497153 -0.009912709) (-0.0005024567 -0.004001323 -0.009728112) (-0.0002471243 -0.002998471 -0.009959277) (1.667509e-06 -0.002998042 -0.009713027) (-6.731677e-07 -0.004497977 -0.009467795) (2.924845e-07 -0.003498227 -0.009463874) (-0.0002513138 -0.003998825 -0.009479943) (-0.0002450577 -0.0009961059 -0.009992522) (0.0002594136 -0.0009834917 -0.009991394) (5.130542e-06 -0.0009924611 -0.009740081) (-0.0004943242 -0.0004986828 -0.009985082) (-0.0004976411 0.0004990679 -0.009983765) (-0.000497213 -6.501682e-08 -0.009731766) (0.0005177508 -0.0004689005 -0.009984482) (0.0004963792 2.690888e-06 -0.009709326) (-0.0002501031 0.0009981804 -0.009989926) (-2.41617e-06 0.0009974882 -0.009739461) (0.0002475494 -3.158922e-07 -0.009480916) (-2.03811e-06 0.000498389 -0.009486055) (2.621804e-06 -0.0004954303 -0.009486695) (-0.0002494044 1.458328e-07 -0.009485527) (0.001482787 0.002020486 -0.009909747) (0.002125905 0.002032749 -0.009655538) (0.001422693 -0.0006293544 -0.009904434) (0.001507072 6.277501e-06 -0.009806859) (0.001066131 0.00299635 -0.009902974) (0.001033619 0.004822856 -0.009917852) (0.0009981102 0.003998016 -0.009484801) (-0.0002496131 0.002997228 -0.009936607) (-8.187218e-07 0.002997985 -0.009712911) (-0.0004973431 0.003498834 -0.009929118) (-0.0004965265 0.004499629 -0.009931418) (-0.0005032105 0.00399739 -0.00972228) (-0.0002482728 0.005018307 -0.009898932) (1.248794e-06 0.004999551 -0.009726455) (-7.309779e-07 0.003497908 -0.009465113) (1.690407e-06 0.004498471 -0.009475412) (-0.0002483671 0.003998893 -0.009470583) (0.001149739 0.008023511 -0.00969522) (6.727295e-07 0.007001824 -0.009825927) (-0.0004980446 0.007999431 -0.00976149) (3.863922e-07 0.00899791 -0.00973614) (1.24232e-06 0.007501467 -0.009549814) (1.029106e-06 0.00849941 -0.009509436) (-0.0002486974 0.008000488 -0.009525575) (0.001000847 -0.003998916 0.009442828) (0.0009890048 -0.004990893 0.009869307) (0.0009896161 -0.002996906 0.009883449) (1.041447e-06 -0.00449802 0.009440854) (4.369828e-07 -0.003498604 0.009457842) (-0.0002487127 -0.003998734 0.009448274) (4.324021e-07 -0.004996924 0.009672114) (-0.0002471333 -0.005006517 0.00990818) (-0.0005047992 -0.004510644 0.009922423) (-0.0005102355 -0.003499384 0.009947145) (-0.0004971141 -0.0039985 0.009687248) (-3.025221e-07 -0.002998895 0.009714071) (-0.0002487531 -0.00299849 0.009960241) (0.0002482303 1.046897e-07 0.009485737) (-1.216044e-06 0.0004999885 0.009490883) (-1.107435e-06 -0.0009994825 0.009738377) (-0.0002546707 -0.0009974229 0.009992292) (0.0004969314 1.876761e-07 0.009722002) (0.0005054598 0.0004871857 0.009978765) (-8.703738e-07 0.0009997858 0.009740608) (0.0002484265 0.0009981473 0.009992222) (-0.001001327 0.003998491 0.009444062) (-0.0009934833 0.002998132 0.009909207) (-0.0009954429 0.004995247 0.009868966) (-1.663538e-06 0.003498577 0.009455887) (-1.479648e-06 0.004498143 0.009441216) (0.0002486796 0.003997951 0.009451098) (-1.833343e-06 0.002999037 0.00970911) (0.000247258 0.002999184 0.009954946) (0.0005088068 0.003499046 0.00994413) (0.0005041184 0.004510299 0.009921949) (0.0004975316 0.003997938 0.00968906) (-9.441576e-07 0.00499785 0.009673113) (0.0002471386 0.005008186 0.009915807) (-0.001000773 -0.00650102 -0.009549786) (-0.0007523842 -0.006001697 -0.009561973) (-0.001007184 -0.005501115 -0.009568722) (-0.00106262 0.009621295 -0.009572354) (-0.0007555213 0.01011994 -0.009577349) (-0.0009902393 -0.008986921 -0.009710718) (-0.001001417 -0.00700087 -0.009788516) (-0.0009995044 -0.007500342 -0.009519146) (-0.0009991465 -0.008500155 -0.009491552) (-0.0007495777 -0.008000245 -0.009514851) (-0.0004228057 -0.005473861 -0.009897592) (-0.0004911168 -0.005995525 -0.009830812) (-0.001011041 -0.005002262 -0.009837724) (-0.0007308726 -0.002995919 -0.009925915) (-0.001068219 -0.003026522 -0.009861852) (-0.001005063 -0.003498966 -0.009560936) (-0.001007064 -0.004500456 -0.009574127) (-0.000760071 -0.004001445 -0.0095514) (-0.0004949954 -0.002499091 -0.009952781) (-0.000494957 -0.001498908 -0.009967413) (-0.0004955764 -0.001998725 -0.009718315) (1.772176e-06 -0.0024975 -0.009472638) (-0.0002472622 -0.001997526 -0.009475671) (3.041897e-06 -0.00149534 -0.009481979) (0.0007523299 -0.0009888206 -0.00996431) (0.001225808 -0.0009953394 -0.009934404) (0.00100003 -0.0009913791 -0.009715543) (0.0007503014 5.141012e-06 -0.009470798) (0.001258353 6.022608e-06 -0.009513147) (0.001006947 -0.0004943982 -0.009493334) (-0.0004978099 0.001499184 -0.009969446) (-0.0004987097 0.002498301 -0.009950529) (-0.0004944668 0.001999035 -0.009706404) (-1.38161e-06 0.001498689 -0.009481006) (-1.118115e-06 0.00249847 -0.00947179) (-0.0002497058 0.001998709 -0.009473407) (-0.000558967 0.005342829 -0.009907591) (-0.0005057543 0.00600119 -0.009848224) (2.962046e-06 0.005502248 -0.009550091) (2.501517e-06 0.006500516 -0.009579257) (-0.0002473856 0.006003104 -0.009563301) (-0.000995779 0.008987241 -0.009695336) (-0.000999497 0.008498888 -0.009493452) (-0.0007494782 0.007999613 -0.009510489) (-0.0005008239 0.009984199 -0.009672542) (-2.725518e-07 -0.002499077 0.009472617) (-7.048947e-07 -0.001499365 0.00948436) (-0.0002499952 -0.001999314 0.009476586) (-0.0005103724 -0.002498344 0.009959006) (-0.0005072934 -0.001486498 0.009974531) (-0.0004987411 -0.00199936 0.009717183) (-1.31379e-06 0.001499778 0.009484828) (-1.96277e-06 0.002499279 0.009470737) (0.0002479924 0.001999491 0.009478394) (0.0005095091 0.001499084 0.009975948) (0.0005101643 0.002499977 0.009962943) (0.0004972051 0.00199988 0.009720537) (0.0005346385 -0.005058159 -0.009907067) (0.0004957361 0.0009998373 -0.009983874) (0.001486195 0.001119353 -0.009911776) (0.0004954935 0.002997945 -0.009955102) (0.0004948537 0.004967631 -0.009935499) (-0.002998402 -0.01200072 -0.009018185) (-0.003885694 -0.01001198 -0.008859967) (-0.003140178 -0.008040798 -0.009245812) (-0.003022901 -0.01000215 -0.008063561) (-0.002066376 -0.009006644 -0.009463245) (-0.001501609 -0.0101448 -0.009496775) (-0.003993992 -0.006003644 -0.009001829) (-0.002122688 -0.006991965 -0.009557954) (-0.00300978 -0.004000428 -0.009046686) (-0.003022069 -0.006002054 -0.008065502) (-0.002155348 -0.005005177 -0.009671805) (-0.001568122 -0.008134921 -0.009586942) (-0.001499252 -0.006000851 -0.009509658) (-0.001503476 -0.007000376 -0.009033127) (-0.0009989163 -0.007499923 -0.009765475) (-0.001000504 -0.006501594 -0.009811737) (0.0004986722 -0.005999238 -0.009505957) (-0.004013435 -0.002000519 -0.009111187) (-0.002135401 -0.003000149 -0.00973022) (-0.003021366 -3.771156e-06 -0.009087082) (-0.003024048 -0.001999021 -0.008085361) (-0.001507521 -0.004001031 -0.009549494) (-0.00151005 -0.0020022 -0.009560261) (-0.00151078 -0.003000662 -0.009079484) (-0.001054414 -0.003495862 -0.009828135) (1.156174e-06 -0.003498165 -0.009702396) (0.001000592 -0.002999054 -0.009466755) (0.0005018499 -0.002998925 -0.008990033) (0.0004978841 -0.00299749 -0.009951008) (0.0004981346 -0.00399842 -0.009451245) (2.464377e-06 -0.00249767 -0.009722002) (0.0002407387 -8.980337e-06 -0.009728531) (-3.846332e-06 0.0004961074 -0.009741749) (0.0009976822 0.001002431 -0.009474004) (0.000496393 0.00199916 -0.009469959) (0.0004997358 0.001000732 -0.008987926) (0.0007465104 5.995924e-06 -0.009694664) (-1.529417e-06 0.001498318 -0.009735364) (0.004040779 0.001996607 -0.009105653) (0.003022821 0.003999782 -0.00905148) (0.003030233 0.002000137 -0.008087404) (0.002116464 0.001324597 -0.00964051) (-0.00317044 0.008034455 -0.009182489) (2.088109e-06 0.004497866 -0.009698483) (0.0004981922 0.003997698 -0.009461572) (0.001004278 0.004999969 -0.009527814) (0.0005031848 0.006000073 -0.0095855) (0.0005038886 0.004999882 -0.00904084) (7.110659e-05 0.005648048 -0.009846383) (-0.003855436 0.009994696 -0.008839561) (-0.002068531 0.008997611 -0.009461922) (-0.002996861 0.01199831 -0.009018065) (-0.003019106 0.01000443 -0.00806672) (-0.001575823 0.008146212 -0.009586022) (-0.001499053 0.01000248 -0.009509679) (-0.001500921 0.009001023 -0.009030462) (-0.0009964478 0.008496916 -0.009723548) (-0.0009844868 0.00947652 -0.009668901) (9.724565e-07 0.008499161 -0.009758583) (0.0005032666 0.008001115 -0.009535559) (0.0011348 0.00900917 -0.009647465) (0.0006067921 0.01021924 -0.009574725) (0.0005030297 0.009002139 -0.00903096) (-0.00200478 0.0140162 -0.009078283) (2.184276e-06 0.01424315 -0.009182869) (-0.0009999678 0.0160047 -0.009062533) (-0.001006386 0.01399926 -0.00808859) (-0.0004974707 0.0120116 -0.00946127) (0.0005007615 -0.002999104 0.008976365) (0.0005021752 -0.005007567 0.00990484) (0.0005032705 -0.002997515 0.009954291) (0.0005039827 -0.0009954609 0.009983095) (-0.000505878 0.0009943171 0.009972144) (-0.0005077268 0.002999551 0.009955523) (0.0002489437 0.0004929328 0.009991668) (0.0002482675 0.001499823 0.009988729) (-0.0005029424 0.005008313 0.009904757) (0.0002467793 0.00450653 0.00993003) (-0.001502688 -0.009000291 -0.009027954) (-0.0009967882 -0.008498213 -0.009720617) (-0.0004982413 -0.008499877 -0.009754639) (-0.0005016672 -0.00750175 -0.009804625) (-0.001504907 -0.005000874 -0.009047083) (-0.001013763 -0.004510097 -0.009841123) (-0.001014314 -0.005502304 -0.009835188) (-0.0002502777 -0.003998491 -0.009705671) (-0.0002434519 -0.004496171 -0.009921385) (6.055555e-07 -0.004497773 -0.009689549) (-0.0002495857 -0.004998591 -0.009718369) (-0.0005740758 -0.004638171 -0.009832841) (-0.0002509142 -0.004498899 -0.009497712) (-0.0002471578 -0.003498122 -0.009952504) (-0.0004969912 -0.003499057 -0.009703776) (-0.0002471125 -0.002998395 -0.009711234) (-0.0002496258 -0.003498614 -0.009472514) (4.464244e-06 -0.0004929746 -0.009742196) (-0.0002499454 -9.703069e-07 -0.009740186) (-0.0002465714 -0.0004969583 -0.00999585) (-0.0002456082 -0.0009960999 -0.00973706) (-0.0004956398 -0.0004985652 -0.009731186) (-0.0002475978 -0.0004974679 -0.009485609) (0.0002709533 -0.0004669116 -0.009991451) (0.0002568628 -0.0009873629 -0.009736453) (0.0005085349 -0.0004824192 -0.009727035) (0.0002536664 -0.0004922136 -0.009483403) (0.001508152 -0.0005025839 -0.009820554) (-0.0002509458 0.0004976436 -0.009995102) (-0.0004978048 0.0004991998 -0.009730306) (-0.0002501637 0.0009983264 -0.009735588) (-0.000250146 0.000499047 -0.009484542) (-0.0002410362 0.004001511 -0.009687862) (-0.0002514319 0.00349596 -0.009913239) (-6.194927e-07 0.003497647 -0.009704942) (-0.0002501601 0.002997563 -0.009700051) (-0.0005020098 0.003496378 -0.009725318) (-0.0002510412 0.003497573 -0.009468632) (-0.000245009 0.004495688 -0.009902307) (-0.0004977855 0.004499048 -0.009721321) (-0.0003124771 0.005168192 -0.009837443) (-0.0002475564 0.004498696 -0.009481165) (-0.0002484544 0.008001403 -0.009777213) (6.368995e-07 0.007502235 -0.009803753) (-0.0002508785 0.007001877 -0.009821977) (-0.0004975903 0.007500428 -0.009785266) (-0.0002489309 0.007500702 -0.009545908) (-0.0004978272 0.008498439 -0.009741706) (-0.0002486378 0.00899774 -0.009732471) (-0.0002489039 0.008499203 -0.009505959) (-0.0009962152 0.01114805 -0.009492367) (-0.0005006875 0.01100071 -0.009027205) (1.476165e-06 0.01116958 -0.009553879) (-0.000742615 0.009885198 -0.009667781) (-0.0002483091 -0.003998073 0.009697628) (1.038374e-06 -0.004497241 0.009688545) (-0.0002472173 -0.004505526 0.009931951) (-0.0002485717 -0.004498491 0.009440682) (-0.0002480587 -0.004997121 0.009672088) (-0.0004973013 -0.004497803 0.009681799) (3.745573e-07 -0.003498436 0.009709779) (-0.000247843 -0.003498511 0.009950632) (-0.0002488562 -0.003498771 0.009456894) (-0.0004976569 -0.003498748 0.009702568) (-0.0002489628 -0.002998761 0.009715856) (-0.000250428 -0.0009995076 0.009740789) (0.0002478105 1.357162e-08 0.009737676) (-1.086613e-06 0.0004999228 0.009747467) (0.0002483206 0.0005000615 0.009489526) (0.0004971569 0.0005001036 0.009734461) (0.0002483013 0.0009998593 0.009744042) (0.00024758 0.003997967 0.009696673) (-1.828417e-06 0.003498661 0.009704467) (0.0002466947 0.003498538 0.009946715) (0.0002480277 0.003498378 0.009456796) (0.0002470566 0.00299896 0.009712621) (0.0004967965 0.003498465 0.009701726) (-1.639485e-06 0.004497946 0.009687355) (0.0002484959 0.004497992 0.009442777) (0.0004977276 0.004497749 0.009683252) (0.0002483052 0.004998066 0.009676097) (-0.0006857266 -0.004373178 -0.009907799) (-0.0007332535 -0.003490147 -0.009934507) (-0.0002426568 -0.002497495 -0.009952963) (-0.0002455273 -0.001496941 -0.009988401) (0.0007500728 -0.0004881517 -0.009953061) (0.001242199 -0.0005045417 -0.009917333) (-0.0002497793 0.001498661 -0.00998133) (-0.0002489593 0.002498608 -0.00996012) (-0.0001860112 0.005475818 -0.009900476) (0.001004089 -0.004998205 -0.009492749) (0.0005020267 -0.004999426 -0.009015076) (0.001502693 0.001999462 -0.009485543) (0.001509388 0.001000908 -0.009035166) (0.001329928 -0.000111142 -0.009823477) (0.0009967063 0.002998718 -0.009459738) (0.0004999063 0.002999142 -0.008990124) (-7.793092e-07 0.002498495 -0.009721704) (0.001147792 0.007237559 -0.009697359) (0.000506847 0.0070032 -0.009073088) (2.682029e-06 0.006497152 -0.009847921) (0.0005046674 -0.004999204 0.008988965) (0.000498174 -0.005997586 0.009440395) (0.001008597 -0.00499822 0.009485668) (0.0004996218 -0.003998125 0.009445206) (0.0004991403 -0.0009995534 0.008986371) (0.0009985207 -0.002998251 0.009435935) (0.0004971008 -0.001998927 0.009469279) (-2.280638e-07 -0.002499054 0.009726355) (0.0009960108 -0.0009993361 0.0094586) (-4.576738e-07 -0.001499326 0.009739293) (-0.0005022694 0.0009999501 0.008986669) (-0.0005020801 0.002999187 0.008977869) (-0.001001559 0.001000265 0.009461159) (-0.000500014 0.001999647 0.009467034) (-1.232956e-06 0.001499866 0.009738899) (-0.0009999137 0.002998975 0.009446235) (-0.0005005867 0.003998449 0.009445809) (-2.104646e-06 0.002499418 0.009721777) (-0.0005051413 0.004999008 0.008985419) (-0.001006059 0.004994221 0.009475945) (-0.0005031864 0.006000735 0.00943759) (-0.0002497156 -0.002498911 0.009967141) (-0.0002508514 -0.00149144 0.009986) (0.0002409175 0.002498252 0.009964021) (-0.0007448908 -0.008993809 -0.009714798) (-0.0007485816 -0.008499888 -0.009497086) (-0.0007501191 -0.007999931 -0.009762297) (-0.000750859 -0.006501057 -0.009551549) (-0.0007516705 -0.007001196 -0.009782291) (-0.0007503915 -0.007500662 -0.00952942) (-0.0005008397 -0.006510272 -0.009837255) (-0.000755006 -0.006003142 -0.009819286) (-0.0007539015 -0.005500945 -0.009569417) (-0.0005602074 -0.005491799 -0.009827583) (-0.0007604472 -0.005011115 -0.009864147) (-0.0007518059 -0.00450054 -0.009572591) (-0.0008226496 -0.004132336 -0.009833737) (-0.0007466805 -0.002999565 -0.009732701) (-0.0007525856 -0.00349963 -0.009518213) (-0.000495731 -0.002499276 -0.009714331) (-0.0002474276 -0.002498073 -0.009473104) (-0.0002459411 -0.00199779 -0.009717373) (-0.0004959163 -0.001498201 -0.009721271) (-0.0002470658 -0.00149682 -0.009480876) (3.998746e-06 -0.001494708 -0.009735466) (0.0007520996 -0.0009895273 -0.009717887) (0.0007535616 -0.0004924359 -0.00947804) (0.001004399 -0.0004956696 -0.009725523) (0.001246083 -0.000992638 -0.009728977) (0.00126414 -0.0004953853 -0.009526489) (-0.0004975755 0.001499094 -0.009719044) (-0.0002499201 0.001498844 -0.009477989) (-0.0002488306 0.001998641 -0.009721159) (-0.0004985662 0.002498335 -0.009704684) (-0.000250292 0.002498346 -0.009469466) (-0.000510407 0.005507359 -0.009842066) (-0.0002477696 0.005500767 -0.009540904) (-0.0002448517 0.005988438 -0.009841801) (-0.0004995737 0.006501981 -0.009833576) (-0.0002492952 0.006501078 -0.009575988) (-0.0007485762 0.007999419 -0.009755837) (-0.000747318 0.00949768 -0.009490671) (-0.0007471861 0.008993951 -0.009712931) (-0.0007488524 0.008498274 -0.00949395) (-0.0004985656 0.009488432 -0.009696967) (-0.0002496241 -0.002499157 0.009471377) (-0.0004982253 -0.002499118 0.009716084) (-0.0002494968 -0.001999319 0.009730215) (-0.0002502543 -0.001499386 0.009483874) (-0.0004990601 -0.001499435 0.009730472) (0.0002482397 0.001499772 0.009485611) (0.0004971891 0.001499811 0.009732097) (0.0002473934 0.00199945 0.009733767) (0.000247133 0.00249913 0.009471202) (0.0004966677 0.002499528 0.009718152) (0.0002427203 0.0004943842 -0.009736303) (0.0004932858 0.0004993898 -0.009985238) (0.0002445813 0.0009963075 -0.00998966) (0.00049697 0.0005008115 -0.009477535) (0.0002468844 0.0009986534 -0.00948228) (0.0004951287 0.0009993344 -0.009728692) (0.0002389533 0.0004901648 -0.009992217) (0.0004943679 0.0004994925 -0.009727001) (0.0002454043 0.0009972486 -0.009735863) (0.0002464529 0.0004983673 -0.00948287) (-0.0009974416 -0.01796215 -0.008883344) (0.001000007 -0.01796266 -0.008883115) (-0.002983525 -0.01399863 -0.008885548) (-0.0009922851 -0.01421515 -0.009148201) (0.0009903958 -0.01422214 -0.009165468) (0.002983263 -0.01399808 -0.008881413) (-0.001488072 -0.01100479 -0.009438991) (0.0005080968 -0.01101933 -0.009549939) (0.003020349 -0.009996371 -0.009127203) (-0.003343337 -0.006733553 -0.009331083) (0.0005005011 -0.007000786 -0.009536287) (0.003009666 -0.00600156 -0.009006782) (-0.004834884 -0.001732691 -0.008831554) (-0.003381725 -0.003012487 -0.009369266) (0.002547164 -0.003009512 -0.009606908) (0.004834743 -0.001735744 -0.008822053) (-0.003027807 0.002000554 -0.009088817) (-0.001504563 0.001000299 -0.009497203) (0.002549217 0.001062519 -0.009572694) (-0.00300505 0.005999056 -0.009011609) (-0.001659554 0.005219663 -0.00971561) (0.003003228 0.005999477 -0.009015967) (0.003011441 0.01000468 -0.009120623) (-0.002987141 0.01399444 -0.008894025) (-0.00147971 0.01294932 -0.009332592) (0.0009927026 0.01421855 -0.00915664) (0.002983199 0.0139942 -0.008875597) (-0.001000961 0.01796932 -0.008886654) (0.000990448 0.01796468 -0.008880379) (-0.002988764 -0.02598104 -0.006904456) (-0.0009968625 -0.02600044 -0.007025427) (0.0009997782 -0.02600269 -0.007009039) (0.003001705 -0.02598679 -0.006935364) (-0.004837674 -0.0217246 -0.006839691) (-0.003006083 -0.02200003 -0.007013538) (-0.001000913 -0.02200186 -0.007064002) (0.001003398 -0.02200829 -0.007061273) (0.003005045 -0.02200265 -0.007022) (0.004846796 -0.02173193 -0.00685957) (-0.005148366 -0.01827227 -0.007127693) (-0.003024238 -0.01800317 -0.007074253) (-0.001007384 -0.0180024 -0.007071218) (0.001007164 -0.01800583 -0.007073597) (0.003029765 -0.01800344 -0.007076484) (0.005149118 -0.01803664 -0.007149161) (-0.005018318 -0.01400122 -0.007039966) (-0.003027291 -0.0140039 -0.007074093) (0.003030697 -0.01400792 -0.007077383) (0.005036256 -0.01400368 -0.007066007) (-0.006854355 -0.009969256 -0.006863019) (-0.005049876 -0.0100019 -0.007071798) (-0.003026042 -0.01000248 -0.00706066) (-0.001002859 -0.010001 -0.007043125) (0.001007121 -0.01000129 -0.007046962) (0.005034555 -0.01000429 -0.007068419) (0.006865889 -0.009966288 -0.006828536) (-0.006945859 -0.006001886 -0.006941441) (-0.005050048 -0.006001507 -0.007064058) (-0.003023362 -0.00600144 -0.00705666) (0.005044429 -0.006004952 -0.007068204) (0.006966532 -0.006007584 -0.006974268) (-0.007060309 -0.001981469 -0.007046424) (-0.005050024 -0.00200093 -0.007081053) (-0.003022783 -0.001999664 -0.007065849) (0.003022823 -0.002001048 -0.007060351) (0.005037289 -0.002002996 -0.00706757) (0.007031974 -0.001998931 -0.007019066) (-0.007057304 0.001969911 -0.007049294) (-0.00506335 0.002004039 -0.007086014) (0.00302553 0.002000157 -0.007064753) (0.005042755 0.001999546 -0.00706536) (0.007054668 0.001971286 -0.00703652) (-0.006960832 0.006001091 -0.006944319) (-0.005039806 0.006003583 -0.007055235) (0.005045978 0.006001781 -0.007060148) (0.006967182 0.006002872 -0.006966099) (-0.006850447 0.009966171 -0.006836323) (-0.005040462 0.01000108 -0.007073321) (-0.003021808 0.01000368 -0.007063585) (-0.001005277 0.01000134 -0.007042981) (0.001006071 0.01000169 -0.007042876) (0.0050394 0.01000389 -0.007075974) (0.006859437 0.009971745 -0.0068787) (-0.005034623 0.01400869 -0.007054699) (-0.003030821 0.01400765 -0.007083991) (-0.001007723 0.01400203 -0.007067583) (0.003026908 0.01400448 -0.007074198) (0.0050317 0.01400185 -0.007061288) (-0.005145804 0.0182789 -0.00714535) (-0.003030284 0.01800662 -0.0070806) (-0.001014005 0.01800498 -0.007077695) (0.001007122 0.01800736 -0.007072023) (0.003022589 0.01800605 -0.007065656) (0.005137989 0.01801942 -0.007142948) (-0.004865773 0.02172405 -0.006851993) (-0.003014491 0.02199952 -0.007022708) (-0.001005309 0.02200316 -0.007053953) (0.001003183 0.02200552 -0.007058944) (0.003002987 0.02199807 -0.007007616) (0.004837189 0.02172612 -0.006830789) (-0.003003276 0.02598846 -0.006949765) (-0.001004331 0.02600613 -0.007027605) (0.0009986636 0.02600315 -0.007026649) (0.00298596 0.02597424 -0.006889737) (-0.0009993199 -0.03396496 -0.005031077) (0.0009993402 -0.03397485 -0.005062671) (-0.003038688 -0.03001948 -0.005065664) (-0.001011661 -0.03002062 -0.005084104) (0.001011251 -0.0300231 -0.005093728) (0.003022951 -0.03002032 -0.005056963) (-0.005160539 -0.02631529 -0.005184129) (-0.003038826 -0.02601095 -0.005079727) (0.003042173 -0.02601483 -0.005087862) (0.005023938 -0.0260078 -0.005021975) (-0.006833801 -0.02173517 -0.004869007) (-0.00503657 -0.02200328 -0.00503697) (0.005042149 -0.02200621 -0.00505089) (0.006854295 -0.02174517 -0.004867493) (-0.007133109 -0.01825878 -0.005156234) (0.007165092 -0.01826557 -0.005147559) (-0.007050388 -0.01400513 -0.005033069) (0.007046529 -0.01400291 -0.00503255) (-0.007077544 -0.01000609 -0.005045297) (0.007070236 -0.01000666 -0.005048145) (-0.007049427 -0.006000629 -0.005029471) (0.007053687 -0.006002318 -0.005035663) (-0.007069491 -0.002001678 -0.005056668) (0.007071048 -0.002002886 -0.005036649) (-0.007076111 0.00200283 -0.0050476) (0.007066902 0.002001691 -0.005042117) (-0.007045042 0.006001199 -0.005033162) (0.007067793 0.006000674 -0.005042721) (-0.007064405 0.01000528 -0.005037763) (0.007075308 0.01000453 -0.005050922) (-0.007055397 0.01400371 -0.00502921) (0.007069444 0.01400718 -0.005039294) (-0.007154071 0.01826377 -0.005143623) (0.007146261 0.01802634 -0.005143738) (-0.006822822 0.02174584 -0.004862293) (-0.005039207 0.02200395 -0.005039412) (0.005044665 0.02200621 -0.005042031) (0.00685486 0.02173358 -0.004860851) (-0.004997113 0.02599345 -0.004993096) (-0.003046714 0.02601648 -0.005090177) (0.003031237 0.02601442 -0.00507513) (0.005004802 0.02599979 -0.005015104) (-0.004801712 0.02973398 -0.004768704) (-0.003030304 0.03002042 -0.005049072) (-0.001008999 0.03002118 -0.005087534) (0.001010211 0.0300178 -0.005087765) (0.003026154 0.03001778 -0.005039904) (-0.0009885338 0.03414892 -0.005071643) (0.0009977008 0.03397614 -0.005065773) (-0.001008419 -0.03782459 -0.003002656) (0.001011075 -0.03782181 -0.002924464) (-0.003066372 -0.03402947 -0.003105184) (-0.001028871 -0.03403998 -0.003075822) (0.001033377 -0.03405254 -0.003084271) (0.003050459 -0.03400945 -0.003030564) (-0.005032419 -0.03000015 -0.003012369) (0.005046021 -0.03001165 -0.003019571) (-0.006917537 -0.0259827 -0.002993529) (-0.005072148 -0.02601147 -0.003039363) (0.005085972 -0.02601217 -0.003045808) (0.006929829 -0.02598657 -0.002998908) (-0.007029763 -0.02200527 -0.003007643) (0.007024392 -0.0220052 -0.003012335) (-0.007080683 -0.01800816 -0.003032262) (0.007076161 -0.01800618 -0.003023145) (-0.008865186 -0.01396731 -0.002965404) (-0.007078155 -0.01400442 -0.003030519) (0.007072646 -0.01400394 -0.003022616) (0.008886304 -0.01396828 -0.002975086) (-0.00912322 -0.01001848 -0.003031945) (0.00910686 -0.01001758 -0.003035669) (-0.0092242 -0.006037414 -0.003114764) (0.008995226 -0.00600053 -0.003005861) (-0.00904183 -0.001999197 -0.00302532) (0.009061388 -0.002001194 -0.003013791) (-0.009045363 0.002000584 -0.00301599) (0.009041506 0.001999767 -0.003015907) (-0.009168012 0.006270629 -0.003155682) (0.008988984 0.005998045 -0.002997849) (-0.009123975 0.009999027 -0.003017155) (0.009133904 0.01000438 -0.003015217) (-0.008864801 0.01396868 -0.002974061) (-0.007073665 0.01400579 -0.003029487) (0.007105518 0.01400623 -0.003039011) (0.008884281 0.01396493 -0.002985377) (-0.007077361 0.01801335 -0.003022063) (0.007076513 0.01800943 -0.003032101) (-0.007035399 0.02199549 -0.003013084) (0.007026105 0.02200051 -0.003005204) (-0.006921102 0.0259829 -0.002995226) (-0.005076216 0.02601429 -0.00303116) (0.005079509 0.0260153 -0.00303697) (0.006922339 0.02598359 -0.002994226) (-0.005049109 0.03001907 -0.003023139) (0.005053709 0.03001293 -0.0030395) (-0.003042259 0.0340337 -0.003039747) (-0.001024878 0.03403777 -0.003072026) (0.001029089 0.0340415 -0.003090136) (0.003070994 0.03402636 -0.003065373) (-0.001003479 0.03782537 -0.0030072) (0.001006039 0.03781629 -0.002930036) (-0.002927615 -0.03783466 -0.001003794) (-0.001028524 -0.03807152 -0.001025048) (0.001065459 -0.03809847 -0.001033815) (0.003012798 -0.03783343 -0.0009996464) (-0.005044329 -0.03413791 -0.0009856614) (-0.003067542 -0.03403063 -0.001029501) (0.003051602 -0.0340282 -0.001017698) (0.005010287 -0.03412147 -0.0009728963) (-0.005064327 -0.03001339 -0.001008991) (0.005060752 -0.0300066 -0.001009413) (-0.007033887 -0.02600559 -0.001000857) (0.007040294 -0.02600742 -0.001003758) (-0.007098492 -0.02202052 -0.001007666) (0.007082091 -0.02200945 -0.001007814) (-0.008918081 -0.01793678 -0.0009907622) (-0.007066812 -0.01800548 -0.001006006) (0.007064128 -0.0180058 -0.001007913) (0.008906611 -0.01793532 -0.0009900573) (-0.009159164 -0.01422978 -0.00101942) (0.009166452 -0.01426777 -0.0011289) (-0.009074832 -0.01000151 -0.0009996987) (0.00900546 -0.01000085 -0.0009991428) (-0.009113357 -0.006001235 -0.001003902) (0.009135641 -0.006003681 -0.0009994764) (-0.008982738 -0.002001353 -0.001002804) (0.009023708 -0.002000258 -0.001003495) (-0.008974684 0.002002012 -0.001006829) (0.008983935 0.002002607 -0.001002415) (-0.009113555 0.006001531 -0.001004349) (0.009085476 0.005988419 -0.001013907) (-0.009070776 0.01000116 -0.00100244) (0.009101836 0.01000067 -0.001001239) (-0.009139107 0.01422979 -0.001011615) (0.009172192 0.01426476 -0.001130274) (-0.008911723 0.01792812 -0.0009846279) (-0.007070597 0.01800764 -0.001009588) (0.007081792 0.0180094 -0.001008026) (0.008882793 0.01796621 -0.001003261) (-0.007099202 0.02201363 -0.00101028) (0.007070421 0.02200598 -0.001005214) (-0.007024738 0.02600286 -0.001000887) (0.007039285 0.02600657 -0.00100598) (-0.005067596 0.03001584 -0.001010078) (0.005051697 0.03000745 -0.0010068) (-0.005044836 0.03413827 -0.0009830742) (-0.003067908 0.03402981 -0.00101774) (0.00305109 0.03401752 -0.001023366) (0.005006353 0.0341267 -0.0009828786) (-0.002931851 0.03782686 -0.00100584) (-0.001052395 0.03809197 -0.001064891) (0.001057403 0.03811932 -0.001030368) (0.002990536 0.03781238 -0.0009976745) (-0.002911199 -0.03781977 0.001010559) (-0.00104895 -0.03810711 0.001050254) (0.001060862 -0.0381035 0.001047909) (0.00300622 -0.03782513 0.001005457) (-0.005026411 -0.03413698 0.0009851366) (-0.003069665 -0.03402731 0.00102076) (0.003051573 -0.03402283 0.00102108) (0.005062125 -0.03396804 0.001000086) (-0.005066681 -0.03000831 0.001007838) (0.00509066 -0.03001565 0.001013745) (-0.007030041 -0.02601021 0.0009975025) (0.007021074 -0.0260037 0.001001914) (-0.007087492 -0.02201336 0.001003573) (0.00709301 -0.02201195 0.001008362) (-0.00891577 -0.01793307 0.0009875311) (-0.007065522 -0.01800599 0.001006204) (0.007070911 -0.0180036 0.001003892) (0.008907412 -0.01792476 0.0009841855) (-0.009152216 -0.01423855 0.001007813) (0.009177029 -0.01425666 0.00112091) (-0.009069371 -0.01000289 0.001004024) (0.008997068 -0.01000013 0.0009983405) (-0.009110286 -0.006004091 0.001002684) (0.009137836 -0.006005832 0.00100277) (-0.008973949 -0.001994094 0.001005115) (0.009007975 -0.002001078 0.001011197) (-0.008978073 0.002000013 0.001001499) (0.008983925 0.002000661 0.001003189) (-0.009117409 0.006002198 0.001010424) (0.009097377 0.006000795 0.001008975) (-0.009075834 0.01000131 0.001002906) (0.009100979 0.01000227 0.00100923) (-0.009157696 0.01424413 0.001005985) (0.009182934 0.01426726 0.00112691) (-0.008903147 0.0179352 0.000990327) (-0.007067184 0.01800443 0.00100617) (0.00706969 0.0180049 0.001006843) (0.008916157 0.01793366 0.0009876336) (-0.007095362 0.0220112 0.001004373) (0.007072361 0.02200627 0.001003958) (-0.007025688 0.02600334 0.001000215) (0.007040307 0.02600872 0.001001934) (-0.00506445 0.03001363 0.00100731) (0.00509177 0.03001626 0.001010484) (-0.005031484 0.03413442 0.0009900423) (-0.00306681 0.03403319 0.001024731) (0.003058584 0.03402585 0.00102881) (0.005056853 0.03396907 0.0009980685) (-0.002912095 0.03782016 0.001006565) (-0.001050192 0.0380794 0.001084734) (0.001059875 0.03808982 0.001041614) (0.003016652 0.03783583 0.001002626) (-0.00100556 -0.03785196 0.003028851) (0.0009996652 -0.03783513 0.003012564) (-0.003045932 -0.03403789 0.003040359) (-0.001023344 -0.03403689 0.003084214) (0.001021196 -0.03403106 0.003070061) (0.003044302 -0.03401747 0.0030416) (-0.005053726 -0.03000343 0.003023927) (0.005061338 -0.03000484 0.003016698) (-0.00693098 -0.02598673 0.003002458) (-0.005087862 -0.02601809 0.003042006) (0.005077495 -0.02601195 0.003037604) (0.006944117 -0.02598043 0.003000682) (-0.007023699 -0.02200348 0.003008181) (0.007034617 -0.0220081 0.003013166) (-0.007080494 -0.01800297 0.003021627) (0.007089391 -0.01800903 0.003031091) (-0.008868332 -0.01399644 0.002977122) (-0.007056103 -0.01400329 0.003017143) (0.007079495 -0.01400427 0.003033122) (0.008888079 -0.01399719 0.002988775) (-0.009131472 -0.01000645 0.003017134) (0.009053844 -0.01000504 0.003022974) (-0.009167064 -0.006271897 0.00313475) (0.009193319 -0.006038375 0.003168314) (-0.009051796 -0.00200085 0.003021212) (0.009032012 -0.002001423 0.003013632) (-0.009053276 0.001999944 0.003016879) (0.009061535 0.002000433 0.003015868) (-0.009166881 0.006291274 0.003163536) (0.008995659 0.005999591 0.002996534) (-0.009136724 0.009998739 0.003002388) (0.009135704 0.01000859 0.003012717) (-0.008869077 0.01400228 0.002981001) (-0.007067814 0.0139994 0.003021085) (0.007074032 0.01400487 0.003027548) (0.008889992 0.01399725 0.002982294) (-0.007062873 0.01800615 0.003021301) (0.007090437 0.01800933 0.003033304) (-0.007028742 0.02200286 0.003011717) (0.007066117 0.02200794 0.003014975) (-0.006933581 0.02598517 0.002999973) (-0.005086514 0.02601465 0.003049936) (0.005074658 0.02601713 0.003039627) (0.006942545 0.02598349 0.002997163) (-0.005054149 0.03000917 0.003016091) (0.005060074 0.03002245 0.003016871) (-0.003051661 0.03402552 0.003028653) (-0.001026663 0.03404088 0.003079354) (0.001026728 0.03404451 0.003087024) (0.003046995 0.03403265 0.003080197) (-0.0009860224 0.03778819 0.002967082) (0.001001111 0.03783415 0.003013609) (-0.0009864171 -0.03414578 0.005044875) (0.0009911585 -0.03415368 0.005077603) (-0.004762913 -0.02971015 0.00481921) (-0.003025639 -0.03002018 0.005066204) (-0.001009881 -0.0300224 0.005084558) (0.001015175 -0.03001787 0.005083891) (0.003025536 -0.03001076 0.005051235) (-0.005018741 -0.02600291 0.005017355) (-0.003046224 -0.02602025 0.005096518) (0.00304706 -0.02601982 0.00509624) (0.005012917 -0.0260018 0.005013099) (-0.006858907 -0.02175136 0.004865808) (-0.005054976 -0.0220069 0.005057253) (0.005049184 -0.02200867 0.005051434) (0.006849039 -0.02173554 0.004849981) (-0.007139315 -0.01827627 0.005157023) (0.007167693 -0.01827706 0.00515055) (-0.007038463 -0.01400631 0.005030905) (0.007043562 -0.0140021 0.005036359) (-0.007067733 -0.01000159 0.005047827) (0.007068307 -0.0100019 0.00504973) (-0.007058224 -0.006000887 0.00503894) (0.007060758 -0.006000093 0.00503535) (-0.007081358 -0.002003417 0.005055743) (0.00707156 -0.002001381 0.005041556) (-0.007073702 0.002000683 0.005052517) (0.007064301 0.00200012 0.005040924) (0.008825871 0.00172348 0.004842909) (-0.007057203 0.006001129 0.005038969) (0.00706462 0.006000514 0.005042419) (-0.007077343 0.0100003 0.005049431) (0.007075002 0.0100044 0.005053616) (-0.007044914 0.01399681 0.005017649) (0.007054783 0.01400645 0.005030601) (-0.007154115 0.01828219 0.0051467) (0.007135819 0.0180172 0.005120827) (-0.006872258 0.02174369 0.004868515) (-0.005057957 0.02200987 0.00504891) (0.005051274 0.0220095 0.005046545) (0.006858319 0.02172102 0.004843115) (-0.005022671 0.02600304 0.005028189) (-0.003046529 0.02601832 0.005098207) (0.003044849 0.02601887 0.005093055) (0.005016132 0.02600378 0.005010274) (-0.004785747 0.02970713 0.004778725) (-0.003031806 0.03001493 0.005047864) (-0.001011414 0.03001645 0.005075578) (0.001016446 0.03002183 0.005092189) (0.003028484 0.03000888 0.005065659) (-0.0009847187 0.03414744 0.00505322) (0.0009944 0.03415985 0.005081622) (-0.003010806 -0.02598691 0.006952574) (-0.001010154 -0.02600905 0.007034669) (0.001009508 -0.02601084 0.007042604) (0.003006552 -0.02598801 0.006939094) (-0.004862443 -0.02174631 0.006858014) (-0.00300639 -0.02200389 0.007030395) (-0.001007237 -0.02200849 0.00708428) (0.001001611 -0.02200408 0.007071924) (0.003018523 -0.02200322 0.00704497) (0.004866008 -0.02174 0.006855219) (-0.005156522 -0.01803889 0.007170117) (-0.003031766 -0.01800984 0.007077231) (-0.001006256 -0.0180086 0.007080878) (0.001006128 -0.01800767 0.007074251) (0.003032672 -0.01800937 0.007080565) (0.005155821 -0.01804316 0.007156305) (-0.005027859 -0.01401492 0.007042758) (-0.003022427 -0.01400279 0.007070573) (0.00302429 -0.01400244 0.007069176) (0.005049946 -0.01400483 0.007043729) (-0.006867564 -0.009966542 0.006874049) (-0.005044766 -0.01000441 0.007069753) (0.00503937 -0.01000521 0.007063177) (0.006855343 -0.009970204 0.006873267) (-0.00695599 -0.006003283 0.006955695) (-0.005045432 -0.006001039 0.007063547) (0.005036277 -0.006002298 0.007041527) (0.006935363 -0.006002546 0.006935632) (-0.0070562 -0.001983696 0.007038009) (-0.005047891 -0.002000592 0.007074263) (0.005060898 -0.002002526 0.007076069) (0.006984186 -0.001989624 0.007072252) (-0.007038 0.001984248 0.00706195) (-0.005049537 0.002003542 0.007084726) (0.005058418 0.002005496 0.007081382) (0.007039333 0.001996792 0.007040115) (-0.006959025 0.006003997 0.006951129) (-0.005047888 0.006001724 0.00706379) (0.005053846 0.006001251 0.007075805) (0.00697003 0.006006327 0.006978828) (-0.006862116 0.009963855 0.006840835) (-0.005048084 0.01000745 0.007061145) (0.00505499 0.01000906 0.007097052) (0.006847063 0.009997756 0.006878011) (-0.005030049 0.01401364 0.007054069) (-0.003023807 0.01400155 0.007064193) (0.00302962 0.01400468 0.007074376) (0.005026847 0.01400402 0.007039991) (-0.005140504 0.0180336 0.007185928) (-0.00302242 0.01800859 0.007072709) (-0.001007861 0.0180051 0.007081614) (0.001009052 0.01800244 0.007082525) (0.003034788 0.01799941 0.007076583) (0.005179387 0.01803666 0.007158082) (-0.004865638 0.02174512 0.006873622) (-0.003011667 0.02200345 0.007027663) (-0.001008749 0.02200914 0.007082924) (0.00101168 0.02200822 0.007069744) (0.003012371 0.02200259 0.007027143) (0.004854387 0.02173714 0.006861214) (-0.003012572 0.02599044 0.006949796) (-0.001009066 0.02600785 0.00704652) (0.001000111 0.02600466 0.007027036) (0.003003574 0.02598535 0.006940902) (-0.001001657 -0.01797363 0.008891659) (0.0009998024 -0.01796867 0.008879696) (-0.002980524 -0.01399553 0.008885082) (-0.001138259 -0.01427066 0.009175507) (0.001146367 -0.01426613 0.009176798) (0.002983718 -0.01399504 0.008885627) (-0.003022273 -0.01001444 0.009157446) (-0.001004522 -0.01000371 0.009096466) (0.001004091 -0.01000087 0.009098669) (0.003017917 -0.009997349 0.009137417) (-0.003004974 -0.006000387 0.009007566) (0.003011988 -0.006000403 0.009023631) (-0.004805495 -0.001731335 0.008822381) (-0.003026409 -0.002000695 0.009080101) (0.00302003 -0.002002542 0.009084016) (0.004831612 -0.001733429 0.008823122) (-0.004830912 0.001726239 0.008825071) (-0.003028067 0.002001508 0.009083652) (0.003025163 0.002001734 0.009077903) (-0.003005693 0.006001803 0.00901444) (0.003010038 0.005999955 0.009026681) (-0.003008412 0.01000248 0.009138223) (-0.001004334 0.01000269 0.009097081) (0.001006985 0.01000435 0.009097758) (0.003016634 0.0100006 0.009132733) (-0.002984653 0.01399522 0.008887522) (-0.001143483 0.01425841 0.00917763) (0.0011225 0.01426389 0.009184075) (0.002979553 0.01399365 0.008888835) (-0.0009953356 0.01797015 0.008885384) (0.001006475 0.01796932 0.00888184) (-0.0004976343 -0.01104502 -0.009546347) (-0.001499086 -0.01100045 -0.008550492) (-0.00150254 -0.001002749 -0.009516417) (0.001499364 -0.002999265 -0.009484905) (-0.001510656 0.003001111 -0.009573186) (-0.001642157 0.006771178 -0.009661029) (-0.001482074 0.0111405 -0.009421232) (-0.001506992 0.01100106 -0.008556218) (-0.001516169 -0.00699768 0.009666378) (-0.0005004162 -0.007001768 0.009475785) (-0.001649976 -0.005283914 0.009674337) (-0.00151299 -0.003001205 0.009465488) (-0.001513763 -0.0009997962 0.009495425) (0.001505005 0.0009997274 0.009493444) (0.001506579 0.002999628 0.009488464) (0.001615725 0.005030807 0.009750384) (0.0005052112 0.007000059 0.0094835) (0.001522394 0.007005325 0.009658744) (0.001491952 -0.01099281 -0.009432727) (0.0006335093 -0.009025847 -0.00969671) (0.00150804 -0.009008241 -0.009587037) (0.00150451 -0.01099858 -0.008525565) (0.0015175 -0.006984483 -0.009650953) (0.001643906 -0.005033258 -0.009715661) (0.00338276 -0.002997715 -0.009360821) (0.002558175 -0.001067636 -0.009598341) (0.003376875 -0.001000376 -0.009370357) (0.003545911 -0.003001941 -0.008596323) (0.00352759 -0.001001021 -0.008605673) (0.001501911 0.002998563 -0.009480322) (0.001661466 0.004960193 -0.00971855) (0.001556077 0.007070427 -0.009634379) (0.001531431 0.009014896 -0.009580111) (0.0005452294 0.01110917 -0.009537625) (0.001489826 0.01100061 -0.009433596) (0.001510606 0.01100258 -0.008538939) (0.0004987111 -0.006999306 0.009478811) (0.001506447 -0.007015689 0.009639922) (0.001640651 -0.005267635 0.009669954) (0.001507242 -0.002998768 0.009471973) (0.001493549 -0.0009996595 0.009480926) (-0.001507761 0.00100125 0.00948986) (-0.001502864 0.002999661 0.009472492) (-0.001638274 0.005260523 0.009687286) (-0.001502176 0.00700804 0.009657283) (-0.0005021929 0.007003342 0.00947344) (-0.002378754 -0.01075235 -0.00932699) (-0.002469323 -0.008985642 -0.009409163) (-0.003509337 -0.01100039 -0.008513112) (-0.002504394 -0.01100274 -0.008572268) (-0.003531513 -0.009006872 -0.008563702) (-0.002510188 -0.009002272 -0.008550906) (-0.002508866 -0.006999526 -0.009506314) (-0.003355347 -0.004998073 -0.009305578) (-0.002524357 -0.005001158 -0.00955981) (-0.003520757 -0.007003259 -0.008564357) (-0.00351919 -0.005000667 -0.008561992) (-0.00256135 -0.00299844 -0.009618156) (-0.003458825 -0.0009998027 -0.009428514) (-0.002537883 -0.000990881 -0.009628367) (-0.003529997 -0.002998768 -0.008605267) (-0.003515026 -0.0009998186 -0.008558322) (0.0033897 0.001001136 -0.009389183) (0.002534497 0.003006151 -0.009601167) (0.003389562 0.003003269 -0.009356275) (0.003541307 0.001000236 -0.008621966) (0.003544287 0.002999826 -0.008609812) (-0.002467765 0.008977975 -0.009421671) (-0.00237434 0.01075736 -0.009331294) (-0.003514508 0.009003123 -0.008565062) (-0.002510664 0.009004626 -0.008550336) (-0.003506733 0.01100052 -0.008508574) (-0.002518793 0.01100582 -0.008581434) (-0.000494515 0.01293729 -0.009413866) (-0.001506244 0.01300213 -0.008563133) (-0.0005010504 0.01299878 -0.008533393) (-0.001500632 0.01500222 -0.008565823) (-0.0005020246 0.01500479 -0.008629218) (-0.001987474 -0.01597718 -0.008957692) (2.621711e-06 -0.01601174 -0.00910613) (0.001986412 -0.01597792 -0.00893786) (-0.001876414 -0.0119769 -0.009326886) (1.279753e-06 -0.01199499 -0.009480088) (0.001972721 -0.01197314 -0.009343885) (0.003827527 -0.01171942 -0.008824132) (0.002004616 -0.008000496 -0.009554441) (0.003964546 -0.007983116 -0.008944847) (0.001482255 -0.004004055 -0.009860328) (0.001877381 -0.002992626 -0.009847276) (0.002015317 -0.004002694 -0.009632475) (-0.003847756 -0.000261412 -0.009320727) (-0.00188726 -0.0007043009 -0.009881724) (-0.001535159 1.51716e-05 -0.009907623) (-0.001878025 0.0009784579 -0.009833726) (-0.002161873 1.047464e-05 -0.009705113) (-0.004028895 0.00400083 -0.009055582) (-0.002167383 0.004007327 -0.009707781) (0.001868213 0.002966784 -0.009801701) (0.001495273 0.003977873 -0.0098397) (0.002018439 0.004003954 -0.009699968) (0.002005261 0.008005416 -0.009540823) (0.003967008 0.00798531 -0.0089383) (-0.001877008 0.01198458 -0.009335525) (0.001865402 0.0119793 -0.009341881) (0.003847881 0.01171479 -0.008813521) (0.00198415 0.01597784 -0.008948755) (-0.001991688 -0.02776509 -0.006860001) (-6.220852e-07 -0.02801043 -0.007027556) (0.001983338 -0.02795269 -0.006869613) (-0.003968607 -0.02397872 -0.006888496) (-0.0009921826 -0.02394027 -0.007924322) (-0.002006561 -0.02201248 -0.00802544) (-0.001996153 -0.02400349 -0.007019158) (0.0009886055 -0.02393872 -0.007938502) (2.299642e-06 -0.02224327 -0.008154935) (5.175753e-07 -0.02401255 -0.007053118) (0.002002138 -0.02201431 -0.008025687) (0.002004133 -0.0240082 -0.007031163) (0.003988691 -0.02398367 -0.006906376) (-0.003004538 -0.02001681 -0.008037338) (-0.003965738 -0.01798493 -0.007969973) (-0.004008846 -0.02000431 -0.007014161) (-0.001004092 -0.01999934 -0.008029965) (-0.002006594 -0.01800403 -0.008041335) (-0.002017455 -0.02000304 -0.007068119) (0.00100214 -0.02000219 -0.008029424) (1.617475e-06 -0.01800752 -0.008053829) (8.884279e-07 -0.02000542 -0.007067223) (0.002990043 -0.01998635 -0.008088843) (0.002007197 -0.01800381 -0.008051784) (0.002012389 -0.02000405 -0.007079057) (0.003981718 -0.0179972 -0.007985168) (0.004017494 -0.01999838 -0.007032624) (-0.004822841 -0.015728 -0.007854081) (-0.006003849 -0.01600844 -0.006913279) (-0.003007387 -0.01600254 -0.008045905) (-0.004154187 -0.01427992 -0.008195622) (-0.004029579 -0.01600362 -0.007076556) (-0.001003193 -0.01600213 -0.008069323) (-0.00201069 -0.01400292 -0.008065903) (-0.002015369 -0.01600362 -0.007067391) (0.001005519 -0.01600475 -0.008072786) (3.948939e-06 -0.01400763 -0.008110153) (1.496239e-06 -0.01600384 -0.007069852) (0.003011175 -0.01600356 -0.008035445) (0.002013398 -0.01400457 -0.008067466) (0.002017165 -0.01600644 -0.007071003) (0.004840307 -0.01573873 -0.007835602) (0.004169731 -0.01428632 -0.008186904) (0.004045513 -0.01600502 -0.007083635) (0.005929922 -0.01603102 -0.006935459) (-0.00499684 -0.01199892 -0.008091548) (-0.006182055 -0.01203728 -0.007160644) (-0.004036825 -0.01200444 -0.007066219) (-0.004013281 -0.01199868 -0.008618345) (-0.003538734 -0.01200307 -0.008076021) (-0.004023373 -0.01100152 -0.008046652) (-0.002011517 -0.01200206 -0.007062028) (-0.001996359 -0.01200162 -0.00857976) (-0.001499955 -0.01200118 -0.008059955) (-0.002006274 -0.01100228 -0.008078677) (-0.002513366 -0.0120025 -0.008076492) (2.633931e-06 -0.01200167 -0.00704941) (0.003026159 -0.01200987 -0.00806063) (0.002015758 -0.01200342 -0.00705718) (0.002010791 -0.01199571 -0.008556444) (0.001509123 -0.01200029 -0.008050365) (0.002011452 -0.01100142 -0.008055589) (0.004992062 -0.01198892 -0.00808035) (0.004020645 -0.01000215 -0.008054115) (0.00404486 -0.01200618 -0.007076514) (0.005851135 -0.009711178 -0.007811111) (0.006176948 -0.01203462 -0.007179887) (-0.005176475 -0.008038544 -0.008219689) (-0.005862908 -0.00600301 -0.007884216) (-0.006045908 -0.008001167 -0.00703461) (-0.004044095 -0.008002841 -0.007065956) (-0.004008877 -0.008000514 -0.008517002) (-0.004055281 -0.009009691 -0.008073984) (-0.003534536 -0.008005514 -0.008072358) (-0.004036524 -0.007002667 -0.008066681) (-0.002012777 -0.008001398 -0.007047719) (-0.002008895 -0.008001442 -0.008549375) (-0.002009482 -0.009001626 -0.008052901) (-0.002518879 -0.008002872 -0.008066658) (1.940256e-06 -0.00800084 -0.00704154) (0.003022885 -0.008002084 -0.008075001) (0.002013983 -0.008001525 -0.007054948) (0.005176214 -0.008042459 -0.008197086) (0.004032473 -0.006003098 -0.008058533) (0.004031069 -0.008004415 -0.007062243) (0.005898026 -0.00600308 -0.007882464) (0.006035576 -0.008001245 -0.007035642) (-0.005030076 -0.004001064 -0.008058113) (-0.005953942 -0.002015711 -0.007946312) (-0.006076 -0.004000316 -0.007098054) (-0.004033508 -0.004000474 -0.007069237) (-0.004019934 -0.004000652 -0.008586619) (-0.004030827 -0.005001078 -0.00807228) (-0.003524632 -0.004000348 -0.008079266) (-0.004035421 -0.002998614 -0.008095372) (-0.002012778 -0.004000395 -0.007048687) (0.002014609 -0.004001048 -0.007051562) (0.00503986 -0.004001199 -0.008062591) (0.004034012 -0.004002242 -0.00706536) (0.004036394 -0.00400131 -0.008578718) (0.003531059 -0.004001845 -0.008075616) (0.004035697 -0.003002048 -0.008085241) (0.0060042 -0.001998551 -0.007919) (0.006081886 -0.004002574 -0.007123094) (-0.005029478 1.437861e-06 -0.008052683) (-0.005966289 0.002013008 -0.007953948) (-0.006030743 1.513094e-06 -0.007047612) (-0.004047896 0.002002523 -0.008106771) (-0.00403651 1.687786e-06 -0.00707639) (-0.004013165 5.516819e-07 -0.008550515) (-0.004021392 -0.0009979926 -0.008065882) (-0.003529333 -9.392307e-07 -0.008093736) (-0.002015839 1.799091e-07 -0.007056947) (0.002014849 -1.985075e-07 -0.00704881) (0.005005628 -1.519935e-06 -0.00802578) (0.004028202 -8.435202e-07 -0.007061676) (0.004027476 -6.432874e-07 -0.00856802) (0.004024728 -0.001001131 -0.00807091) (0.003532305 -6.805487e-07 -0.00808579) (0.004046196 0.0010004 -0.008099927) (0.006011645 0.00199851 -0.007919166) (0.005984356 -1.51236e-06 -0.006993484) (-0.005036707 0.004001012 -0.008050093) (-0.005888906 0.005997391 -0.007878703) (-0.006092393 0.004003038 -0.007107311) (-0.003027952 0.004002138 -0.008077869) (-0.004019011 0.006002199 -0.008048518) (-0.004037183 0.004002326 -0.007067365) (0.002014549 0.004000818 -0.007053319) (0.005041872 0.00400065 -0.008066149) (0.004029111 0.006001247 -0.008056728) (0.004038183 0.004000936 -0.007068943) (0.004044215 0.004000264 -0.008594986) (0.004045226 0.003000829 -0.008102996) (0.00353526 0.004000377 -0.008084513) (0.005896605 0.006002218 -0.007892325) (0.006088987 0.004003708 -0.007120653) (-0.005173236 0.008278226 -0.008166397) (-0.006023648 0.008001221 -0.007029193) (-0.004029658 0.008005912 -0.007071645) (-0.00414166 0.008272936 -0.008695538) (-0.003520626 0.008005166 -0.008084737) (-0.004028378 0.009006103 -0.008101989) (-0.002012255 0.008002387 -0.007053376) (-0.002011822 0.008002223 -0.008559866) (-0.002010544 0.00900348 -0.008059007) (-0.002517057 0.008003752 -0.008067282) (5.790449e-07 0.008001071 -0.007039128) (0.003016327 0.008001568 -0.008059637) (0.002012455 0.008001714 -0.007050404) (0.005159249 0.008283631 -0.008192949) (0.004023944 0.01000217 -0.008057398) (0.004032732 0.008002859 -0.007058763) (0.005836126 0.009721485 -0.007827191) (0.006041472 0.008001192 -0.007043978) (-0.004995924 0.01200053 -0.008093017) (-0.006174263 0.01203834 -0.007170845) (-0.004157678 0.01429218 -0.008180141) (-0.004034053 0.01200326 -0.007071696) (-0.004017167 0.01199937 -0.008599853) (-0.004021347 0.01099973 -0.008044725) (-0.00353549 0.01200571 -0.008052334) (-0.00201531 0.01200337 -0.007063368) (-0.002005641 0.01200314 -0.008576564) (-0.002015094 0.01100359 -0.008083555) (-0.001508079 0.01200161 -0.00805938) (-0.002521681 0.01200533 -0.00807625) (-0.002014032 0.01300389 -0.00807553) (-4.576264e-07 0.01200113 -0.007048005) (-3.62372e-07 0.01199924 -0.008520685) (-0.0005022657 0.01199989 -0.008040145) (-5.922368e-07 0.01300006 -0.008061626) (0.003019544 0.01200747 -0.008063306) (0.002007547 0.01400261 -0.008061189) (0.0020133 0.01200312 -0.007058139) (0.002012506 0.01200003 -0.008574294) (0.002016452 0.01100361 -0.008064981) (0.001507956 0.01200282 -0.008055899) (0.004985867 0.01198796 -0.008065165) (0.004168463 0.01426613 -0.00818998) (0.004036846 0.01200467 -0.007073934) (0.006209884 0.01204003 -0.00719497) (-0.004841815 0.01573308 -0.007851762) (-0.005937947 0.01602951 -0.006941994) (-0.003023217 0.01600086 -0.008059588) (-0.003979083 0.01798572 -0.007983806) (-0.004036901 0.0160099 -0.007080963) (-0.002011143 0.01800321 -0.008047318) (-0.002018641 0.01600412 -0.007074629) (-0.002001627 0.01600016 -0.008515677) (-0.00201063 0.01500339 -0.008060575) (-0.001507672 0.01600236 -0.008057791) (0.001002933 0.01600533 -0.008069454) (-1.613864e-06 0.01800556 -0.008052085) (-2.340873e-06 0.01600403 -0.007070882) (-1.813762e-06 0.01600612 -0.008595627) (-1.963504e-06 0.01500394 -0.008110356) (-0.0005054554 0.01600458 -0.008083952) (0.00300775 0.01600129 -0.008035112) (0.002005137 0.01800426 -0.008038896) (0.002014335 0.0160037 -0.007064956) (0.004843693 0.01572386 -0.007851922) (0.003969422 0.01798528 -0.007966476) (0.004043369 0.01600344 -0.007082022) (0.00590387 0.01602798 -0.00691255) (-0.003007783 0.02001483 -0.008035226) (-0.004015435 0.02000107 -0.007025532) (-0.001002828 0.02000209 -0.008029025) (-0.002008913 0.02201309 -0.008023641) (-0.002017825 0.02001009 -0.007076614) (0.001001703 0.0200019 -0.008030985) (3.810506e-06 0.02225738 -0.008158368) (-9.517283e-07 0.02000468 -0.007064921) (0.003002262 0.020016 -0.008029781) (0.002007023 0.0220097 -0.008025164) (0.002015676 0.02000539 -0.007077275) (0.004017935 0.02000361 -0.007023908) (-0.00398806 0.02398497 -0.006913472) (-0.0009889654 0.02393717 -0.007923206) (-0.0020099 0.02400672 -0.00703268) (0.0009888579 0.02393528 -0.007944286) (-8.432911e-07 0.02400895 -0.007054669) (0.002000642 0.02399657 -0.007019269) (0.003973223 0.02397779 -0.006880572) (-0.001996066 0.02776861 -0.006891582) (1.29321e-07 0.02800572 -0.007029728) (0.00198056 0.02776709 -0.006855704) (-0.003790561 -0.03167451 -0.004783066) (-0.001007116 -0.03179679 -0.005897977) (-0.002017763 -0.0302351 -0.006128982) (-0.002194194 -0.03232108 -0.005250901) (0.00100644 -0.03180543 -0.00593043) (8.326683e-07 -0.03001233 -0.006045174) (4.354999e-06 -0.0320415 -0.005112376) (0.002019127 -0.0302275 -0.006134354) (0.002009796 -0.03201422 -0.005055855) (0.003832798 -0.03170861 -0.004763881) (-0.003132105 -0.02825528 -0.006206368) (-0.004151752 -0.02625241 -0.006165081) (-0.004021176 -0.02800767 -0.005041737) (-0.001002698 -0.02801175 -0.006049942) (-0.002015766 -0.02600773 -0.006058767) (-0.002025774 -0.02801898 -0.005084815) (0.00100363 -0.02801093 -0.00604314) (-1.417878e-07 -0.02601368 -0.006074536) (5.230222e-07 -0.02801892 -0.005080367) (0.003155184 -0.02828193 -0.006204327) (0.002022214 -0.02601011 -0.006067811) (0.002025328 -0.02801601 -0.005077169) (0.004155433 -0.026261 -0.006164809) (0.004041638 -0.02801069 -0.005050692) (-0.005089003 -0.02400231 -0.006087435) (-0.005894761 -0.02199361 -0.005886242) (-0.006075386 -0.02400112 -0.005083305) (-0.003020992 -0.0240033 -0.006052334) (-0.004028051 -0.02200538 -0.006050364) (-0.004035831 -0.02400624 -0.005056131) (-0.001005152 -0.0240105 -0.006069319) (-0.00201253 -0.022004 -0.006052159) (-0.002018189 -0.02400749 -0.005060907) (0.001006616 -0.0240128 -0.006069626) (8.981004e-07 -0.0220076 -0.006064326) (0.00303455 -0.02401189 -0.006079085) (0.002015941 -0.02200845 -0.006062858) (0.002022962 -0.02401079 -0.005066898) (0.00509857 -0.02400555 -0.006093988) (0.004038242 -0.0220052 -0.006063298) (0.004044995 -0.02400849 -0.005067965) (0.005895272 -0.02199396 -0.00588787) (0.006084226 -0.02400342 -0.005090282) (-0.005037149 -0.02000235 -0.006065185) (-0.006165116 -0.01827444 -0.006178329) (-0.006027871 -0.02000377 -0.00501653) (-0.003026397 -0.02000528 -0.006060714) (-0.004034031 -0.01800518 -0.006059116) (-0.004038388 -0.02000541 -0.00505362) (-0.001006146 -0.02000292 -0.006056247) (-0.002015299 -0.01800243 -0.006057449) (0.001006456 -0.02000505 -0.006060216) (7.126797e-07 -0.01800346 -0.00605549) (0.003026812 -0.02000429 -0.006068223) (0.002016452 -0.01800404 -0.006062531) (0.005035568 -0.02000898 -0.006069942) (0.004040891 -0.01800693 -0.00607109) (0.004039277 -0.02000595 -0.005062442) (0.006183414 -0.01827477 -0.006189773) (0.006024997 -0.02000053 -0.005022373) (-0.006904606 -0.01600927 -0.00600212) (-0.007835237 -0.01595783 -0.004854727) (-0.005038411 -0.01600897 -0.006056716) (-0.00602253 -0.01400333 -0.006022129) (-0.006046594 -0.01600902 -0.005038244) (-0.003022525 -0.01600359 -0.00606023) (-0.004030279 -0.01400377 -0.006057008) (-0.001005864 -0.01600254 -0.006054492) (-0.002012997 -0.01400235 -0.006051351) (0.001008207 -0.01600372 -0.006055945) (0.003029551 -0.01600544 -0.006065703) (0.002016664 -0.01400395 -0.006053219) (0.005061568 -0.0160093 -0.006075929) (0.004044504 -0.0140065 -0.006074356) (0.00691334 -0.01602624 -0.00591566) (0.006040271 -0.01400369 -0.006044584) (0.006060705 -0.01600479 -0.005049439) (0.007824972 -0.01573011 -0.004831192) (-0.007179276 -0.0120362 -0.006166097) (-0.007806666 -0.009730258 -0.005845505) (-0.008026891 -0.01200073 -0.005009466) (-0.005046372 -0.01200305 -0.006055901) (-0.006045289 -0.0100031 -0.006047267) (-0.006064314 -0.01200388 -0.00504716) (-0.003022951 -0.01200229 -0.006051635) (-0.004036322 -0.01000219 -0.006051901) (-0.001004779 -0.01200171 -0.006045298) (-0.002013511 -0.01000151 -0.00604474) (0.001008275 -0.01200225 -0.006045566) (1.507149e-06 -0.0100013 -0.006039329) (0.00302664 -0.0120045 -0.006055358) (0.002014909 -0.01000232 -0.00604573) (0.005053988 -0.0120056 -0.006073993) (0.004032992 -0.01000368 -0.006055871) (0.007183607 -0.0120372 -0.006182255) (0.006043078 -0.01000485 -0.006055499) (0.006064223 -0.01200413 -0.005060902) (0.007811923 -0.009719747 -0.005839939) (0.008074404 -0.01198772 -0.004987111) (-0.007020446 -0.008000158 -0.006019448) (-0.007866962 -0.006003582 -0.005874651) (-0.008221733 -0.008043549 -0.005166663) (-0.005047995 -0.008001757 -0.006052015) (-0.006065833 -0.006002473 -0.006058608) (-0.006050855 -0.008001975 -0.005036243) (-0.003024927 -0.008001603 -0.006047359) (-0.004035362 -0.006001166 -0.006050536) (-0.001005575 -0.008000946 -0.006037173) (-0.002014104 -0.006000815 -0.006040624) (0.001007521 -0.00800125 -0.006040783) (0.005038175 -0.008003458 -0.006052491) (0.004031067 -0.006002783 -0.006050375) (0.007028875 -0.008000589 -0.006024374) (0.006067322 -0.006003333 -0.006069594) (0.006046862 -0.008003296 -0.005038796) (0.007877679 -0.005997278 -0.005884915) (0.008163701 -0.00828153 -0.005148967) (-0.007096192 -0.004004361 -0.006081383) (-0.007955427 -0.002014097 -0.00594145) (-0.008019049 -0.00400045 -0.005015941) (-0.005048929 -0.004001279 -0.006060164) (-0.006056426 -0.002002051 -0.006061272) (-0.006055824 -0.004001488 -0.005047173) (-0.00302314 -0.004000447 -0.006048283) (-0.004033527 -0.001999865 -0.006056277) (-0.002014845 -0.00200001 -0.006043655) (0.003021958 -0.004001411 -0.006046554) (0.002014037 -0.002000572 -0.006040681) (0.005045051 -0.004002602 -0.006059941) (0.004026817 -0.00200144 -0.006047509) (0.007095654 -0.004003678 -0.006084085) (0.006038559 -0.002003256 -0.006038866) (0.006055037 -0.004002225 -0.005045048) (0.007926067 -0.002002249 -0.00600634) (0.00806054 -0.004000582 -0.005031207) (-0.007033283 -3.908109e-07 -0.006028212) (-0.00794272 0.002015084 -0.005946263) (-0.008056814 3.639918e-07 -0.005035775) (-0.005046477 1.556938e-06 -0.00606135) (-0.006069352 0.002004822 -0.006065064) (-0.006054334 7.068313e-07 -0.005046654) (-0.003024461 6.405342e-07 -0.00605325) (-0.004037421 0.002001968 -0.006058561) (0.003021129 -3.778646e-07 -0.006046479) (0.002014734 0.002000286 -0.006041954) (0.005026008 -9.691948e-07 -0.006038378) (0.004030897 0.002000268 -0.006050226) (0.006993554 -6.364701e-07 -0.005984984) (0.006050186 0.002001857 -0.006045675) (0.006040275 -3.691873e-07 -0.005027031) (0.007919209 0.001999376 -0.006001931) (0.008055949 6.40416e-07 -0.005028407) (-0.007107717 0.004005199 -0.00608338) (-0.007847787 0.006003173 -0.00586355) (-0.008024221 0.004000235 -0.005014215) (-0.005053914 0.004003006 -0.006063224) (-0.006061281 0.006002541 -0.006065355) (-0.006058925 0.004002729 -0.00504918) (-0.004031023 0.006002704 -0.006050508) (0.003024001 0.004000772 -0.006048549) (0.005052688 0.00400165 -0.006061775) (0.004034094 0.006001541 -0.00605026) (0.007127201 0.004002939 -0.006083946) (0.006075249 0.006001321 -0.006074269) (0.006061653 0.004001814 -0.005048768) (0.007887846 0.006004695 -0.005900111) (0.008034289 0.004000458 -0.005014623) (-0.007026585 0.008000662 -0.006026993) (-0.007801518 0.009718915 -0.005828875) (-0.00822267 0.008032164 -0.005173596) (-0.005036994 0.008003649 -0.0060537) (-0.006033712 0.01000356 -0.006045274) (-0.006045774 0.00800247 -0.00503848) (-0.003020943 0.008002765 -0.006050288) (-0.004029618 0.01000306 -0.006055812) (-0.001006262 0.008001412 -0.00603972) (-0.002013625 0.01000241 -0.006047267) (0.00100696 0.008001386 -0.006039747) (1.99451e-07 0.01000143 -0.006038828) (0.002014582 0.01000217 -0.006045461) (0.005044365 0.008003077 -0.006056385) (0.004034677 0.01000351 -0.006058881) (0.007051599 0.008002417 -0.006044268) (0.006050607 0.01000709 -0.006065361) (0.006059601 0.008002777 -0.00504798) (0.007827866 0.009726161 -0.005838046) (0.008226079 0.008041687 -0.005168034) (-0.007182922 0.01203513 -0.006164471) (-0.008078 0.01198753 -0.004991387) (-0.005042394 0.01200412 -0.006061241) (-0.006036664 0.01400387 -0.006039242) (-0.006060276 0.01200504 -0.005051456) (-0.003023267 0.01200375 -0.006055428) (-0.004037446 0.01400681 -0.006068757) (-0.001007199 0.01200199 -0.006046818) (-0.002016177 0.01400345 -0.006056535) (0.001006788 0.0120021 -0.006045637) (-8.520374e-07 0.0140024 -0.00605298) (0.003026241 0.01200363 -0.006058177) (0.002014845 0.01400285 -0.00605295) (0.00505499 0.01200623 -0.006079234) (0.004041847 0.01400446 -0.006071406) (0.007174739 0.0120353 -0.006161931) (0.00602863 0.01400383 -0.006031378) (0.00606759 0.01200573 -0.005056546) (0.008057645 0.01201588 -0.005024373) (-0.006914741 0.01600868 -0.006004975) (-0.007818709 0.01572868 -0.004844076) (-0.005054757 0.01600749 -0.006069265) (-0.006177662 0.01827897 -0.006173811) (-0.006060761 0.01600536 -0.005054115) (-0.003028181 0.01600516 -0.006067433) (-0.004043228 0.01800635 -0.006062223) (-0.001009346 0.01600337 -0.006057935) (-0.002019128 0.01800471 -0.006064212) (0.001006627 0.01600364 -0.006055761) (-1.695637e-06 0.01800407 -0.006056578) (0.003027996 0.01600413 -0.006063421) (0.002016146 0.01800484 -0.006059986) (0.005052038 0.01600565 -0.006061852) (0.004045349 0.01800858 -0.006068137) (0.00690445 0.01601544 -0.005899185) (0.006175656 0.01828015 -0.006150968) (0.006065595 0.01600509 -0.005048937) (0.007851546 0.01572718 -0.004859334) (-0.005048151 0.02000365 -0.006053502) (-0.005889093 0.02199543 -0.005890297) (-0.006023091 0.02000366 -0.005020249) (-0.00303036 0.02000566 -0.006063446) (-0.004037935 0.02200804 -0.006058114) (-0.004043008 0.02000442 -0.005052659) (-0.001009587 0.02000472 -0.006058301) (-0.002020639 0.02200568 -0.006062478) (0.001006157 0.0200045 -0.006058092) (-1.471413e-06 0.02200645 -0.006062779) (0.003029227 0.02000808 -0.006061561) (0.002013264 0.02200424 -0.006052665) (0.005041606 0.02001517 -0.006063475) (0.004026948 0.02200657 -0.006043686) (0.004045585 0.02000992 -0.005055288) (0.00588525 0.02199254 -0.005886833) (0.006038831 0.02000262 -0.005023818) (-0.00509423 0.02400293 -0.006098691) (-0.006073883 0.02399989 -0.005077539) (-0.003040158 0.02401406 -0.006083382) (-0.004153493 0.02626393 -0.006183919) (-0.004038496 0.02400875 -0.005057818) (-0.001011085 0.02401215 -0.006071531) (-0.002026604 0.02601924 -0.006094311) (-0.002027171 0.02401252 -0.005073036) (0.001004739 0.02400942 -0.006068086) (-2.193255e-06 0.02601654 -0.006081762) (0.003019554 0.02400676 -0.006049481) (0.002011036 0.02601143 -0.00605801) (0.002017366 0.02400936 -0.005059197) (0.005095254 0.02400516 -0.006082063) (0.004130448 0.02626913 -0.006155664) (0.004038485 0.02401057 -0.005051474) (0.006077701 0.02400269 -0.005081297) (-0.003157249 0.0282458 -0.006226156) (-0.004030685 0.02800309 -0.005045165) (-0.001009792 0.02801805 -0.006059254) (-0.002020448 0.0302316 -0.006140022) (-0.002031629 0.02802007 -0.005095009) (0.001004763 0.02801222 -0.006058712) (1.545696e-07 0.03001441 -0.006051265) (-1.44955e-06 0.02801802 -0.005087271) (0.00314302 0.02825798 -0.006181036) (0.002000584 0.03022594 -0.006129366) (0.002018312 0.02801726 -0.005081593) (0.004017488 0.02800216 -0.005028318) (-0.003843348 0.03172543 -0.00476865) (-0.001002887 0.03180845 -0.005935609) (-0.002019676 0.0320098 -0.005047875) (0.001001823 0.03180511 -0.00592675) (2.977424e-06 0.03203088 -0.005115007) (0.002155741 0.03229747 -0.005227144) (-0.003789883 -0.03365775 -0.0037903) (-0.0009890172 -0.03615066 -0.004074855) (-0.002042006 -0.0340261 -0.004091211) (-0.002246975 -0.03639073 -0.003259782) (0.001013991 -0.03617158 -0.004040007) (4.897322e-06 -0.03401494 -0.004046435) (-3.216122e-07 -0.03604609 -0.003061252) (0.002035202 -0.03402301 -0.004083033) (0.002044243 -0.0360386 -0.003059504) (0.003792736 -0.03372379 -0.003820592) (-0.004764757 -0.03168542 -0.003773025) (-0.003026973 -0.03201944 -0.004090303) (-0.004038096 -0.03000604 -0.004065702) (-0.004060251 -0.03203209 -0.003065263) (-0.001018043 -0.03202462 -0.004085492) (-0.002036427 -0.03002724 -0.004093844) (-0.002045714 -0.03203367 -0.003087045) (0.001018262 -0.03203151 -0.004091559) (7.559488e-07 -0.03002473 -0.004085324) (9.870369e-07 -0.03202877 -0.003066831) (0.003007348 -0.03201026 -0.004028941) (0.002027995 -0.03002303 -0.004075986) (0.002035735 -0.03202901 -0.003063783) (0.004776857 -0.0317038 -0.003813463) (0.004040878 -0.03000815 -0.004033308) (0.004023941 -0.03200562 -0.003007429) (-0.005035273 -0.028005 -0.004029868) (-0.006180624 -0.02627391 -0.00412326) (-0.006158555 -0.02825582 -0.003129638) (-0.003046871 -0.02801888 -0.004080221) (-0.004054693 -0.02601296 -0.004068958) (-0.004060021 -0.02801442 -0.003053729) (-0.001013856 -0.02801831 -0.004072629) (-0.002024722 -0.02601231 -0.004062305) (0.001013042 -0.02801742 -0.004068624) (0.003052179 -0.02801807 -0.004074135) (0.002026764 -0.02601236 -0.004061439) (0.005055658 -0.02800702 -0.004033611) (0.004064101 -0.02601224 -0.004067899) (0.004077472 -0.02801443 -0.003047951) (0.006167188 -0.026272 -0.004135203) (0.006189863 -0.0282612 -0.003165925) (-0.006894825 -0.02398095 -0.003980093) (-0.005050992 -0.02400977 -0.004040875) (-0.006051425 -0.02200854 -0.004032501) (-0.006064913 -0.02401063 -0.003025328) (-0.003032141 -0.02400782 -0.004052354) (-0.004038367 -0.02200587 -0.004040577) (-0.004047947 -0.02400882 -0.003036784) (0.003037745 -0.02400911 -0.004057412) (0.005060636 -0.02400846 -0.00404394) (0.004043846 -0.02200632 -0.004048651) (0.004055539 -0.02400801 -0.003039343) (0.006901669 -0.02398594 -0.003984526) (0.006062753 -0.02200778 -0.004044465) (0.006070207 -0.02400959 -0.003025022) (-0.007030954 -0.02000637 -0.00401412) (-0.007971586 -0.01798225 -0.003976321) (-0.008089579 -0.02000509 -0.002999413) (-0.005050056 -0.02000721 -0.004037936) (-0.00605868 -0.01800742 -0.004036251) (-0.006061323 -0.02000926 -0.003029314) (0.005054529 -0.02000541 -0.004046271) (0.007021235 -0.02000174 -0.004008545) (0.006063315 -0.01800421 -0.004036325) (0.006068835 -0.02000642 -0.003032792) (0.00798484 -0.01799728 -0.003974583) (0.008090762 -0.02000233 -0.002999732) (-0.007058795 -0.01600485 -0.004023829) (-0.008183869 -0.01426815 -0.004182347) (-0.008075529 -0.01600735 -0.003034289) (-0.006059336 -0.0140045 -0.00403323) (-0.006062795 -0.01600554 -0.003027501) (0.007066461 -0.01600648 -0.004030419) (0.006060506 -0.01400324 -0.004038588) (0.006061336 -0.01600438 -0.003024704) (0.008008432 -0.01399937 -0.003998752) (0.008043888 -0.01600158 -0.003010562) (-0.008819693 -0.01173426 -0.00385831) (-0.007083142 -0.01200529 -0.004046771) (-0.008073086 -0.01000322 -0.004043045) (-0.008064004 -0.01200413 -0.003025689) (-0.006058605 -0.01000322 -0.004034605) (-0.006056393 -0.01200328 -0.003025628) (0.007072996 -0.01200188 -0.004042315) (0.006053628 -0.01000323 -0.00403482) (0.00605433 -0.0120025 -0.003024122) (0.008074245 -0.01000262 -0.004021867) (0.008082957 -0.0120031 -0.003021958) (-0.008912463 -0.008016616 -0.003905368) (-0.007075809 -0.008002447 -0.004032392) (-0.008055679 -0.005999594 -0.004016825) (-0.008090381 -0.008004423 -0.003021618) (-0.00604947 -0.006001168 -0.00402846) (0.007067781 -0.00800451 -0.004029477) (0.006046674 -0.006002229 -0.004028302) (0.008898473 -0.007998735 -0.003986014) (0.008054271 -0.006002217 -0.004016707) (0.008092382 -0.008005245 -0.003024186) (-0.009011678 -0.004003644 -0.003999497) (-0.007056218 -0.004000866 -0.00402947) (-0.008082067 -0.002001164 -0.004043941) (-0.008065713 -0.004001506 -0.003020512) (-0.006049482 -0.002000434 -0.004034745) (0.007062037 -0.004001578 -0.00402991) (0.006048247 -0.002001067 -0.004027766) (0.009040561 -0.003999899 -0.004021281) (0.008097122 -0.002000324 -0.004046351) (0.008060773 -0.00400133 -0.003020081) (-0.009114412 3.535822e-06 -0.004060875) (-0.00706929 8.595449e-07 -0.00404059) (-0.008088682 0.002003232 -0.004034237) (-0.008080822 8.411141e-07 -0.003030566) (-0.006050685 0.002001525 -0.00403382) (0.007068485 2.418302e-07 -0.004033912) (0.006047822 0.002000821 -0.004029122) (0.009105781 -1.869646e-06 -0.004051241) (0.008086033 0.002001273 -0.004039265) (0.00808153 -1.332284e-07 -0.003028008) (-0.008995376 0.004000588 -0.003998233) (-0.007053511 0.004001474 -0.004029413) (-0.008039414 0.006000547 -0.004020333) (-0.00804376 0.004000879 -0.003017303) (-0.006045861 0.006001587 -0.004030715) (0.007055232 0.004001613 -0.004028703) (0.006052633 0.006001696 -0.004032715) (0.009008221 0.003999492 -0.004001113) (0.008041605 0.00600336 -0.004016109) (0.008046441 0.004001744 -0.003016415) (-0.008882212 0.008016135 -0.003893493) (-0.007067563 0.008002334 -0.004034695) (-0.008064085 0.01000227 -0.004033279) (-0.008073406 0.008002041 -0.003024299) (-0.006054089 0.01000375 -0.00403439) (0.007076387 0.008002852 -0.004035962) (0.006063878 0.01000291 -0.004038906) (0.008891772 0.008015071 -0.003895201) (0.008051595 0.01000186 -0.004020972) (0.008086815 0.008005451 -0.003033789) (-0.007080458 0.01200698 -0.004044956) (-0.008194108 0.01428095 -0.004172124) (-0.008081065 0.0120062 -0.003026279) (-0.006063972 0.01400559 -0.004040513) (-0.006056273 0.01200405 -0.003026743) (0.007089201 0.01200267 -0.004041886) (0.006078151 0.01400557 -0.004045097) (0.006071181 0.01200398 -0.003030727) (0.008201298 0.01427298 -0.004175663) (0.008098749 0.01200462 -0.003033642) (-0.007069699 0.01600862 -0.004034389) (-0.00798245 0.01799711 -0.003978178) (-0.008044541 0.01600248 -0.003009942) (-0.006059788 0.01800678 -0.004039426) (-0.006058784 0.01600594 -0.003025546) (0.007098617 0.01601073 -0.004042002) (0.006083215 0.01800795 -0.004051635) (0.006082186 0.01600759 -0.003035495) (0.007917847 0.01797421 -0.003995794) (0.008070846 0.01600996 -0.003030763) (-0.007022296 0.02000092 -0.0040092) (-0.008087626 0.0200008 -0.003000866) (-0.00505199 0.02000632 -0.004035815) (-0.006057164 0.02200666 -0.004023803) (-0.006069808 0.02000983 -0.003028442) (-0.004040638 0.02200567 -0.004038283) (0.005065123 0.02000688 -0.004041693) (0.004045552 0.02200762 -0.004040495) (0.00703553 0.02000509 -0.004018828) (0.006078019 0.02200576 -0.004033857) (0.006079715 0.02000831 -0.003031776) (0.007992616 0.01999918 -0.002984392) (-0.006891815 0.02398054 -0.003980595) (-0.005047521 0.02400619 -0.004027927) (-0.006175076 0.02625862 -0.004137113) (-0.006069532 0.0240039 -0.003021013) (-0.003035458 0.02400974 -0.004051358) (-0.00405246 0.02601244 -0.004049157) (-0.004049073 0.02400867 -0.00302922) (-0.00202861 0.02601386 -0.0040644) (0.003034223 0.02401068 -0.00405035) (0.002021688 0.02601305 -0.004060958) (0.005055514 0.02400841 -0.004035411) (0.004053556 0.02601611 -0.004058556) (0.004052764 0.02401034 -0.003034017) (0.006887137 0.02396807 -0.003969693) (0.006166998 0.02626987 -0.004156243) (0.006076196 0.02401083 -0.003032786) (-0.005030384 0.0280114 -0.004026533) (-0.006185732 0.02826241 -0.00313578) (-0.003052775 0.02801872 -0.004072292) (-0.004032876 0.03000839 -0.004032693) (-0.004072993 0.02801891 -0.003046538) (-0.001014414 0.02801707 -0.004072693) (-0.002032231 0.03002099 -0.004079966) (0.00101109 0.028016 -0.00407367) (4.957839e-07 0.03001945 -0.00408349) (0.003045026 0.02802005 -0.004079914) (0.00202862 0.03002162 -0.004088354) (0.005052554 0.0280107 -0.004040275) (0.004061003 0.0300237 -0.004084025) (0.004070684 0.028022 -0.003060376) (0.006204998 0.02824959 -0.003151273) (-0.004774551 0.03173347 -0.003840495) (-0.00301656 0.03200915 -0.004033626) (-0.003793247 0.03369608 -0.003817707) (-0.004034439 0.03201055 -0.003013208) (-0.001016809 0.03202231 -0.004080726) (-0.00203863 0.03402183 -0.004101475) (-0.00203833 0.0320256 -0.003064807) (0.00101539 0.03201998 -0.004086778) (1.956611e-06 0.03401632 -0.004048181) (1.033997e-06 0.03202468 -0.003065346) (0.003024225 0.03201297 -0.004046355) (0.002017067 0.03402009 -0.004067838) (0.002038665 0.0320262 -0.003074845) (0.00370839 0.03372326 -0.003812039) (0.004064378 0.03202982 -0.003064761) (-0.0009914524 0.03615077 -0.004076071) (-0.002032478 0.03603513 -0.003050674) (0.001014116 0.03617292 -0.004036266) (5.763275e-06 0.03604333 -0.003063977) (0.00202916 0.03603197 -0.003069533) (-0.002028857 -0.03822765 -0.002021856) (1.845847e-06 -0.03805959 -0.002082777) (-1.823883e-05 -0.03972776 -0.0009267825) (0.002044834 -0.03819927 -0.002037438) (-0.003036 -0.03601657 -0.002022126) (-0.004061782 -0.03402222 -0.002037715) (-0.004098924 -0.03614679 -0.0009768662) (-0.001036682 -0.03605362 -0.002065539) (-0.002057191 -0.03404069 -0.002066337) (-0.002070074 -0.03604574 -0.001030536) (0.001034313 -0.03606245 -0.002073923) (-1.433219e-07 -0.03404232 -0.002056663) (3.375365e-06 -0.03604548 -0.001031956) (0.003059854 -0.03603323 -0.002040072) (0.00205471 -0.03403961 -0.002054235) (0.0020688 -0.03606252 -0.00102706) (0.004046625 -0.03400563 -0.002011443) (0.004052719 -0.03613395 -0.0009841436) (-0.005032698 -0.03201185 -0.00201704) (-0.006111321 -0.03021126 -0.00199467) (-0.005900817 -0.03181921 -0.001006185) (-0.003065408 -0.0320336 -0.002062379) (-0.004064703 -0.0300204 -0.002041085) (-0.004066341 -0.03201737 -0.001020501) (-0.001024412 -0.03203031 -0.00205333) (-0.00204428 -0.03202686 -0.001029892) (0.001021309 -0.03203092 -0.002048286) (0.00305303 -0.03201948 -0.002032667) (0.002037639 -0.03202484 -0.001020091) (0.005033404 -0.03200078 -0.002005455) (0.004064768 -0.03001277 -0.002027388) (0.00405537 -0.03200798 -0.001011985) (0.006103217 -0.03021435 -0.00200668) (0.005896365 -0.03181942 -0.001003472) (-0.006861095 -0.02794641 -0.001973402) (-0.005062693 -0.02801246 -0.002022426) (-0.006072064 -0.02601493 -0.002017571) (-0.006064256 -0.02801262 -0.00100249) (-0.004053998 -0.02601059 -0.002026582) (-0.004059766 -0.02801232 -0.00101432) (0.00507581 -0.02801049 -0.002028381) (0.004063023 -0.02600966 -0.002028595) (0.00406117 -0.02800997 -0.001013126) (0.006883916 -0.02777018 -0.00198936) (0.006089523 -0.02601031 -0.002026119) (0.006068182 -0.02801051 -0.001009385) (-0.00705748 -0.0240129 -0.002011109) (-0.008049104 -0.02203017 -0.002013178) (-0.007951418 -0.02394532 -0.0009933679) (-0.005065854 -0.02401146 -0.002019751) (-0.006073867 -0.02201446 -0.002016773) (-0.006081529 -0.02401316 -0.001008785) (0.005074375 -0.02400862 -0.002024975) (0.007046777 -0.02401003 -0.002008278) (0.006073065 -0.0220076 -0.002019375) (0.006082077 -0.0240102 -0.001012542) (0.008042158 -0.02203622 -0.002011888) (0.007941459 -0.0239373 -0.0009977239) (-0.007066993 -0.02000819 -0.002014471) (-0.008044677 -0.01800195 -0.002004176) (-0.008055053 -0.02000323 -0.001001286) (-0.006061543 -0.01800643 -0.002018215) (-0.006074046 -0.02001068 -0.00100824) (0.007065261 -0.02000595 -0.002014496) (0.006060906 -0.01800466 -0.002016659) (0.006068948 -0.02000652 -0.001009224) (0.00804956 -0.01800167 -0.002005759) (0.008051751 -0.02000497 -0.001003336) (-0.008919323 -0.01597604 -0.001974554) (-0.007075063 -0.01600486 -0.002021223) (-0.008080569 -0.01400432 -0.002019317) (-0.008060724 -0.01600308 -0.001004672) (-0.006056035 -0.01400362 -0.002017055) (-0.006056013 -0.01600439 -0.001008489) (0.007072782 -0.01600386 -0.002016645) (0.006054524 -0.01400276 -0.002014725) (0.006054579 -0.01600341 -0.001007953) (0.008947368 -0.01597516 -0.001970942) (0.00808723 -0.01400313 -0.002013726) (0.008056344 -0.016003 -0.001007375) (-0.009175218 -0.01225711 -0.002134709) (-0.007067092 -0.01200445 -0.002016198) (-0.008075206 -0.01000709 -0.002015081) (-0.008066503 -0.01200615 -0.00100608) (0.007067955 -0.01200253 -0.002014382) (0.009170106 -0.01202344 -0.002129253) (0.008070444 -0.01000364 -0.002014524) (0.008042348 -0.01200156 -0.001006383) (-0.00903992 -0.008005026 -0.002003398) (-0.008076397 -0.00600278 -0.002011275) (-0.008089118 -0.008003623 -0.00100469) (0.008990624 -0.008002205 -0.002002819) (0.008057343 -0.006002528 -0.002008483) (0.008062174 -0.008002942 -0.001002821) (-0.009085038 -0.004002532 -0.002008271) (-0.009824887 -0.00196299 -0.001865304) (-0.009870615 -0.00397117 -0.000970458) (-0.008056387 -0.00200132 -0.002016187) (-0.008047943 -0.004001229 -0.001006814) (0.0090795 -0.004001235 -0.002013082) (0.008071023 -0.00200077 -0.002013577) (0.008073998 -0.004002874 -0.00100486) (0.009815475 -0.001724547 -0.001855988) (0.009840151 -0.003952847 -0.0009675632) (-0.009094616 1.06478e-06 -0.002017101) (-0.009818944 0.001962822 -0.001858771) (-0.009945557 4.243994e-07 -0.0009910437) (-0.008049226 0.002001076 -0.002015469) (-0.008013126 4.700622e-07 -0.001007325) (0.009099678 -3.585469e-06 -0.002017621) (0.008055913 0.002001066 -0.002014266) (0.008024284 -2.982695e-07 -0.001006419) (0.009805496 0.001961723 -0.001859856) (0.009943519 3.383475e-07 -0.0009941121) (-0.009072505 0.00400363 -0.002017854) (-0.009857152 0.003982892 -0.000984441) (-0.008063177 0.006001309 -0.002013262) (-0.008040522 0.004001374 -0.001010418) (0.009096658 0.004000493 -0.002011777) (0.008065491 0.00600215 -0.002013792) (0.008033265 0.004000727 -0.001006105) (0.009836054 0.003991934 -0.0009794869) (-0.00902484 0.008001497 -0.002001685) (-0.008070986 0.01000238 -0.002015741) (-0.008084962 0.008001577 -0.001004827) (0.009061441 0.00800215 -0.00201031) (0.008081116 0.01000782 -0.002015826) (0.008089515 0.00800091 -0.001005772) (0.009819373 0.007694444 -0.0008607303) (-0.009154724 0.01225945 -0.002133428) (-0.007065783 0.01200368 -0.002017346) (-0.008072568 0.01400244 -0.002016271) (-0.008059275 0.01200415 -0.0010103) (-0.006053353 0.01400381 -0.002016474) (0.007083231 0.01200576 -0.002020866) (0.006069231 0.01400538 -0.002020683) (0.009161979 0.01226479 -0.002141903) (0.008112303 0.01400963 -0.002026092) (0.008071336 0.01200619 -0.001010491) (-0.008940543 0.01598023 -0.001974376) (-0.007072036 0.01600498 -0.002018979) (-0.008054096 0.01800501 -0.0020106) (-0.008058892 0.01600378 -0.001009174) (-0.006062119 0.01800718 -0.002016635) (-0.006055839 0.01600483 -0.001009252) (0.007085276 0.0160087 -0.002022841) (0.006073157 0.01800739 -0.002020003) (0.00606464 0.01600606 -0.001009834) (0.008967393 0.01597582 -0.001976878) (0.008055396 0.01799912 -0.002007198) (0.008071654 0.01600935 -0.001007107) (-0.007077545 0.02001054 -0.002018301) (-0.008049061 0.02202759 -0.002007991) (-0.008061135 0.02000429 -0.001005574) (-0.006076113 0.02200882 -0.002017805) (-0.00607565 0.0200091 -0.001009431) (0.007083315 0.02000796 -0.002015544) (0.006080335 0.02200821 -0.002024599) (0.006073553 0.02000657 -0.001008857) (0.00798963 0.02199143 -0.00199074) (0.008034884 0.02000017 -0.001000539) (-0.007052222 0.02400745 -0.002013201) (-0.007955628 0.0239432 -0.000995405) (-0.005068793 0.02400984 -0.002017404) (-0.006081168 0.02601333 -0.002016393) (-0.006081569 0.02401263 -0.001009048) (-0.004059609 0.02601301 -0.002022578) (0.005072219 0.0240103 -0.002022759) (0.004059269 0.02601295 -0.002027006) (0.007036122 0.02400412 -0.002005432) (0.006086887 0.02601113 -0.002019565) (0.006095931 0.02401379 -0.001010653) (0.007879603 0.02378539 -0.001005282) (-0.006867986 0.02795392 -0.001993254) (-0.005078509 0.02801933 -0.002023261) (-0.006125943 0.03022765 -0.002012737) (-0.006066994 0.02801394 -0.00100357) (-0.004070032 0.03001882 -0.00202687) (-0.004063043 0.02801536 -0.001011907) (0.00506959 0.02801451 -0.002023937) (0.004069331 0.03002141 -0.002041539) (0.004059342 0.02801285 -0.001013355) (0.006873007 0.02777088 -0.001995758) (0.006104402 0.03021764 -0.002006426) (0.006061966 0.02801395 -0.001001858) (-0.005038407 0.03200514 -0.002008474) (-0.0059031 0.03182262 -0.001006165) (-0.003061671 0.03202379 -0.002033204) (-0.00408839 0.03401387 -0.002012056) (-0.004063415 0.03201715 -0.001013359) (-0.001021255 0.0320287 -0.002045381) (-0.002050745 0.03404072 -0.002050763) (-0.002042234 0.03202668 -0.001019041) (0.001021727 0.03202853 -0.002050827) (1.078739e-06 0.03404197 -0.002055847) (0.003064806 0.03202551 -0.002050132) (0.002050216 0.03403473 -0.00205572) (0.002039359 0.0320246 -0.001024001) (0.005039416 0.03200495 -0.002015085) (0.004042402 0.0340055 -0.002027319) (0.004052979 0.03200867 -0.001016059) (0.00589542 0.03181908 -0.001003327) (-0.003043117 0.03601303 -0.002034812) (-0.004101961 0.0361604 -0.0009904702) (-0.00103035 0.03606198 -0.002063216) (-0.002046504 0.03819644 -0.002044384) (-0.002067245 0.03605736 -0.00102014) (0.001030308 0.03606015 -0.002068919) (-9.685228e-06 0.03807689 -0.002077557) (-2.474738e-06 0.03605903 -0.001034644) (0.003040323 0.03601232 -0.0020157) (0.001999901 0.03815289 -0.001996586) (0.002069065 0.03606498 -0.001028686) (0.004054049 0.03613747 -0.0009813488) (-1.244051e-06 0.03972457 -0.000936387) (-0.0009326252 -0.0397574 3.464385e-06) (-0.002084994 -0.03808537 -3.402024e-06) (0.0009469364 -0.03977404 1.39631e-06) (4.908632e-06 -0.03801599 1.483618e-05) (7.237615e-06 -0.03969908 0.0009151833) (0.002102171 -0.03810495 1.870109e-05) (-0.003086449 -0.03603843 -5.774338e-06) (-0.004039547 -0.03401223 2.295608e-06) (-0.004083887 -0.03614955 0.0009956974) (-0.001036717 -0.03604629 5.135038e-06) (-0.002054829 -0.03403415 -2.748855e-06) (-0.002068219 -0.03605488 0.001028129) (0.00104414 -0.03606558 7.923633e-06) (-8.565303e-07 -0.03605768 0.00104664) (0.003048624 -0.03603118 8.183093e-06) (0.002044256 -0.03403682 3.645041e-06) (0.002062588 -0.03606948 0.001040219) (0.004013039 -0.03400319 5.377305e-06) (0.004038976 -0.03613739 0.0009901543) (-0.005046317 -0.03200174 -3.686429e-07) (-0.006036515 -0.03000729 2.340572e-06) (-0.005895211 -0.03181728 0.001007686) (-0.003053235 -0.03201804 -2.41172e-06) (-0.004065312 -0.03001144 -9.836851e-07) (-0.004067454 -0.03201153 0.00101773) (-0.002043537 -0.03202476 0.001021616) (0.003044242 -0.03201506 3.186503e-06) (0.002037282 -0.03202296 0.001021226) (0.005049477 -0.03199496 1.121446e-05) (0.004064788 -0.0300101 3.926754e-06) (0.004074853 -0.03201838 0.00102026) (0.006020076 -0.03000381 3.888923e-06) (0.00590482 -0.03180222 0.001010493) (-0.007063914 -0.02800204 2.157524e-07) (-0.005087176 -0.02801329 7.872054e-07) (-0.006092188 -0.02601388 1.934364e-06) (-0.006063015 -0.02801004 0.00100395) (-0.004064864 -0.02801031 0.001011587) (0.00508363 -0.02801611 1.358509e-06) (0.004066075 -0.02801261 0.001015141) (0.007075824 -0.02801614 -7.316688e-07) (0.006099666 -0.02602124 -4.931938e-07) (0.006070744 -0.02801555 0.001015151) (-0.007061839 -0.02401088 -1.25542e-07) (-0.00819988 -0.02225962 -4.101024e-06) (-0.007951365 -0.02394011 0.0009885343) (-0.006086222 -0.0220138 -9.497182e-07) (-0.0060801 -0.02401335 0.001007411) (0.00705095 -0.02400931 2.532907e-07) (0.0060766 -0.02200928 -1.06953e-06) (0.006078048 -0.02401112 0.001011062) (0.008205906 -0.02229268 0.0001376081) (0.007949789 -0.02393777 0.0009938257) (-0.00709585 -0.02001279 -4.747359e-07) (-0.00803562 -0.01800351 1.287915e-06) (-0.008055108 -0.02000855 0.001001559) (-0.006061626 -0.01800663 -6.546738e-07) (-0.006070292 -0.02000971 0.001005473) (0.007085447 -0.02000893 -2.863384e-06) (0.006060744 -0.01800506 -1.038321e-06) (0.006071858 -0.02000798 0.001007143) (0.008035378 -0.01800292 -2.15611e-06) (0.008054745 -0.02000585 0.001000166) (-0.009111871 -0.01602134 6.578081e-07) (-0.007060481 -0.01600357 -4.32174e-07) (-0.008077312 -0.01400398 -2.649397e-07) (-0.008053353 -0.01600041 0.001004304) (-0.006052865 -0.0160036 0.001005185) (0.007059593 -0.01600264 -1.390335e-06) (0.006055961 -0.01600311 0.001007901) (0.009118704 -0.0160575 -2.337453e-06) (0.008051089 -0.01400006 -1.326808e-06) (0.008062842 -0.0160011 0.00100435) (-0.009016928 -0.01199973 3.420869e-07) (-0.008077317 -0.0100032 3.071816e-07) (-0.008055864 -0.01200511 0.001003912) (0.008967143 -0.01199764 -8.042779e-08) (0.008036764 -0.01000116 4.531358e-07) (0.008044448 -0.01199957 0.001005046) (-0.009156112 -0.008005969 1.526072e-07) (-0.009849252 -0.005931625 -1.27342e-05) (-0.008076599 -0.006000669 1.010273e-07) (-0.008083177 -0.008002916 0.001004595) (0.009118022 -0.008004343 1.387666e-06) (0.008101288 -0.006004634 1.663885e-06) (0.00806231 -0.008002715 0.001004691) (-0.008958146 -0.003996825 1.182515e-06) (-0.009924107 -0.001995608 8.312075e-07) (-0.00987711 -0.003971476 0.0009904037) (-0.007998385 -0.001998437 4.461302e-07) (-0.008043874 -0.00399701 0.001006135) (0.009042498 -0.004004138 3.641677e-06) (0.008020924 -0.002001375 1.430972e-06) (0.008077381 -0.004002998 0.001007754) (0.009910073 -0.001997578 2.765394e-07) (0.00984393 -0.003758314 0.0009704014) (-0.008972699 7.223739e-07 -2.16239e-07) (-0.009924531 0.001996669 -1.765902e-06) (-0.009944514 -3.921886e-07 0.0009911646) (-0.007996553 0.002000465 -1.752287e-06) (-0.008012271 9.651978e-07 0.001007725) (0.008976987 -1.286024e-07 4.355857e-07) (0.007998989 0.001999988 1.568479e-07) (0.008020948 -3.260101e-07 0.001006627) (0.009940382 0.001997138 -3.760014e-07) (0.009930988 1.443319e-06 0.0009942357) (-0.008957485 0.003999106 -3.446873e-06) (-0.009834293 0.005961474 6.790563e-06) (-0.009846378 0.003970121 0.0009539587) (-0.008083016 0.006000414 -1.454089e-06) (-0.008041533 0.004001368 0.001004642) (0.008950912 0.003998045 -3.137981e-08) (0.008048435 0.005998991 2.050213e-06) (0.00803743 0.003999942 0.001005709) (0.009831826 0.005990904 -3.785405e-06) (0.009828879 0.003991524 0.0009781922) (-0.009161054 0.008005093 4.021133e-08) (-0.008075961 0.01000137 -9.033739e-07) (-0.008085444 0.008001256 0.0010052) (0.009142978 0.008000457 6.857468e-06) (0.008089165 0.01000195 2.400877e-06) (0.008095479 0.008000767 0.001011558) (-0.009014099 0.01199939 -1.741594e-06) (-0.00807413 0.01400774 -5.872136e-06) (-0.008056939 0.01200001 0.001002022) (0.009021689 0.01200001 2.199382e-06) (0.008064027 0.0140078 1.257394e-06) (0.008070759 0.01200374 0.001014245) (-0.009112995 0.0160336 2.692936e-06) (-0.007061998 0.01600506 -2.542904e-06) (-0.008046785 0.01800848 -1.572607e-06) (-0.008055692 0.01600284 0.001002366) (-0.006063394 0.01800638 -1.443177e-06) (-0.006052205 0.01600327 0.001005143) (0.007068342 0.01600655 -9.753e-07) (0.006063164 0.01800527 -1.487996e-07) (0.006059794 0.01600452 0.001008081) (0.009124452 0.01606044 -1.319024e-06) (0.008040118 0.01800483 -2.436355e-06) (0.0080611 0.01600413 0.001003827) (-0.007100446 0.02001245 -1.977756e-06) (-0.008191066 0.02226104 2.480556e-06) (-0.00805586 0.02000523 0.001002611) (-0.006084439 0.02201053 -1.518612e-06) (-0.006071636 0.02000684 0.001006733) (0.007072531 0.02000585 -3.027503e-07) (0.006086016 0.02200918 -6.676543e-07) (0.006072859 0.02000551 0.001008633) (0.008136074 0.02223671 9.316952e-08) (0.008016322 0.02000368 0.001002109) (-0.00706226 0.02400855 -1.52614e-06) (-0.00795199 0.02393867 0.0009890858) (-0.006089538 0.02601718 -3.637511e-07) (-0.006082798 0.02400937 0.001008273) (0.007078523 0.02400876 -1.092857e-06) (0.006120502 0.02602085 1.571236e-06) (0.006100718 0.02401375 0.001008638) (0.007880151 0.02378565 0.001007053) (-0.007070524 0.02801317 -2.308236e-07) (-0.005087151 0.02801998 -6.082104e-07) (-0.006034596 0.03000821 2.29729e-06) (-0.006061239 0.02801321 0.001005129) (-0.004061774 0.03001575 -9.036869e-08) (-0.004062923 0.02801448 0.001012178) (0.005083995 0.0280154 3.026556e-06) (0.004064247 0.03001281 3.038954e-06) (0.004069255 0.02801545 0.001014467) (0.007069976 0.02800774 3.385429e-06) (0.006019723 0.03000416 3.724308e-06) (0.006079715 0.02801465 0.001011051) (-0.005044279 0.03200448 4.618971e-08) (-0.005893285 0.03181625 0.001008567) (-0.003051731 0.03202059 1.888177e-06) (-0.004042136 0.03401337 2.267238e-06) (-0.004060894 0.03201901 0.001014691) (-0.002055111 0.03403746 4.907488e-06) (-0.002041501 0.03202771 0.001022176) (0.003046576 0.0320162 2.402891e-06) (0.002046242 0.03403656 2.466578e-06) (0.002042169 0.03202805 0.001027429) (0.005054057 0.03200616 1.013905e-05) (0.004014513 0.0340024 4.156364e-06) (0.00407636 0.03201932 0.001020718) (0.005899206 0.03179966 0.001010615) (-0.003089198 0.03604653 9.082094e-06) (-0.004089136 0.0361497 0.0009935888) (-0.001043781 0.03605063 8.15445e-06) (-0.002096994 0.03807578 8.148203e-06) (-0.00206468 0.03605646 0.001032158) (0.001044648 0.03606624 2.767841e-06) (-3.506157e-06 0.03802498 8.236085e-06) (-4.017413e-06 0.0360577 0.001050636) (0.003048224 0.03603421 3.560704e-07) (0.002103568 0.03810563 -2.013925e-05) (0.0020704 0.03606287 0.00103929) (0.004039609 0.03614025 0.0009907489) (-0.0009386008 0.03975696 -9.082194e-06) (0.0009407348 0.0397764 1.773913e-06) (-1.16198e-05 0.03969664 0.0009273799) (-0.002025449 -0.03822881 0.002054681) (-8.364092e-06 -0.0380935 0.002093873) (0.002014721 -0.03816637 0.001992191) (-0.003045081 -0.03602666 0.002018755) (-0.004082639 -0.03401511 0.002033906) (-0.001031265 -0.03606203 0.002076431) (-0.002055672 -0.03404066 0.002054608) (-0.002036678 -0.03604233 0.003059229) (0.00102945 -0.03605649 0.002066994) (-1.411693e-06 -0.03403893 0.00205694) (1.105214e-06 -0.03603935 0.003066564) (0.003051916 -0.03601079 0.002009261) (0.002041375 -0.03402862 0.002044295) (0.002014874 -0.03601419 0.00302355) (0.004050593 -0.03402052 0.002018184) (-0.005040086 -0.03201111 0.002011052) (-0.006121033 -0.03022385 0.002014033) (-0.003061173 -0.03202171 0.002038296) (-0.004073868 -0.03001399 0.002029692) (-0.004024474 -0.03200368 0.003010778) (-0.001022347 -0.03202764 0.002048477) (-0.002038373 -0.03202726 0.003070298) (0.001017987 -0.03202438 0.002044354) (-4.984604e-07 -0.03202305 0.003062833) (0.003055807 -0.03201948 0.00203107) (0.002030323 -0.03201785 0.003057741) (0.005042153 -0.03201457 0.002017979) (0.004075693 -0.03001853 0.002029835) (0.004054597 -0.03201105 0.003018212) (0.006107918 -0.0302063 0.001993623) (-0.006871459 -0.02794297 0.001988404) (-0.005079066 -0.02801187 0.002019053) (-0.006081297 -0.02601008 0.002017155) (-0.006193868 -0.02827133 0.003139195) (-0.004063379 -0.02601154 0.00202534) (-0.004072698 -0.02801423 0.003044998) (0.005074201 -0.02801317 0.002024645) (0.004059952 -0.02601062 0.002027162) (0.004071415 -0.02801455 0.003051693) (0.006881106 -0.02777629 0.001984765) (0.006073215 -0.02601247 0.002019418) (0.006173628 -0.02825551 0.003155685) (-0.007032622 -0.02400634 0.002006165) (-0.008057408 -0.02204162 0.002012958) (-0.005073407 -0.02401243 0.0020234) (-0.006067558 -0.02201046 0.002015023) (-0.006075488 -0.02401417 0.003035744) (-0.004057817 -0.02401158 0.003040381) (0.005072689 -0.02401051 0.002022926) (0.004056179 -0.02400942 0.003040061) (0.007062146 -0.0240085 0.002014595) (0.006082731 -0.02201166 0.002021001) (0.006088613 -0.02401514 0.003030532) (0.008060256 -0.02203386 0.002011554) (-0.007065645 -0.02000762 0.002009539) (-0.008052512 -0.01800065 0.002002972) (-0.008089613 -0.02000248 0.003001871) (-0.006059158 -0.01800446 0.002012846) (-0.006064688 -0.02000699 0.00302447) (0.007073376 -0.0200108 0.002011584) (0.006065644 -0.01800641 0.002018242) (0.006078606 -0.02001313 0.003035593) (0.008061897 -0.01800041 0.002004304) (0.008093043 -0.02000037 0.003005969) (-0.008927938 -0.01597231 0.001984344) (-0.007059984 -0.01600223 0.002010141) (-0.008060667 -0.01400253 0.002007578) (-0.00802109 -0.01599998 0.002999065) (-0.006047067 -0.01400266 0.002010608) (-0.006053045 -0.0160032 0.003019453) (0.007074366 -0.01600325 0.002018924) (0.006054442 -0.01400262 0.00201745) (0.006066286 -0.01600499 0.003031459) (0.008935993 -0.01598164 0.001986973) (0.008088162 -0.01400225 0.002017483) (0.008054101 -0.01600283 0.003021832) (-0.009172009 -0.01226439 0.002127843) (-0.007056183 -0.01200412 0.002010546) (-0.008058629 -0.01000745 0.002011597) (-0.008054022 -0.01200579 0.003013385) (-0.006045917 -0.01200316 0.003020152) (0.007066133 -0.01200178 0.0020166) (0.006053754 -0.01200248 0.003026214) (0.009147628 -0.01202202 0.002104405) (0.008060202 -0.01000232 0.002015914) (0.008081323 -0.01200299 0.003026571) (-0.009028177 -0.008002423 0.00200347) (-0.008063326 -0.006000332 0.002010413) (-0.008068081 -0.008002847 0.00302378) (0.009030057 -0.008002679 0.002005359) (0.008063048 -0.006003737 0.002012422) (0.008073208 -0.008003779 0.003018802) (-0.009086604 -0.003996908 0.00200879) (-0.00982117 -0.001962805 0.001861362) (-0.0080523 -0.001998299 0.002016764) (-0.008049123 -0.003999634 0.003017811) (0.009075177 -0.004002841 0.002016375) (0.00806011 -0.002002027 0.002013863) (0.008049455 -0.004003232 0.003019205) (0.009821884 -0.00174133 0.001861151) (-0.009093197 -1.749872e-06 0.002038392) (-0.00981373 0.001963549 0.001870913) (-0.008052538 0.002000418 0.002013688) (-0.008085548 -5.293703e-08 0.003029812) (0.009102318 1.390344e-06 0.002012236) (0.008058514 0.002000297 0.002011705) (0.008078138 -1.52199e-06 0.003028748) (0.009813159 0.001963392 0.001873862) (-0.009082443 0.00400109 0.002010484) (-0.008063656 0.006003277 0.002012657) (-0.008047798 0.004002138 0.003018861) (0.009099457 0.004001824 0.002010379) (0.008071967 0.005999555 0.002009672) (0.008057082 0.003999776 0.003012703) (-0.009031646 0.008000897 0.002006181) (-0.00806877 0.01000001 0.002014903) (-0.008065775 0.008002744 0.003030761) (0.009076085 0.007999413 0.002012127) (0.008083443 0.01000067 0.002020517) (0.008084757 0.007999492 0.003021622) (-0.009163692 0.01225106 0.002132965) (-0.007061527 0.0119991 0.002012757) (-0.008065624 0.01399867 0.002005008) (-0.008065767 0.01199711 0.003023847) (-0.006048113 0.01400113 0.002011843) (-0.006053047 0.01200043 0.003023307) (0.007073635 0.01200261 0.002020452) (0.006057946 0.01400368 0.002017001) (0.006057196 0.01200294 0.003027675) (0.009177759 0.01225573 0.002145136) (0.008093844 0.01400582 0.002018918) (0.008080721 0.01200189 0.003030908) (-0.008938869 0.01598186 0.001980239) (-0.007058245 0.01600316 0.002011307) (-0.008047928 0.01800191 0.002008125) (-0.008020509 0.01600116 0.003005605) (-0.006055534 0.01800415 0.002014484) (-0.006049919 0.01600299 0.003021951) (0.007074355 0.01600477 0.002016765) (0.006072692 0.01800573 0.00201989) (0.006067198 0.01600653 0.00302915) (0.00893995 0.01598083 0.001983257) (0.008052108 0.01800497 0.002006256) (0.008029879 0.0160019 0.0030077) (-0.007066683 0.02000671 0.0020121) (-0.008060692 0.02204182 0.002002109) (-0.008093567 0.02000151 0.003001098) (-0.006071484 0.02200794 0.002018893) (-0.006061907 0.02000479 0.00302807) (0.007081054 0.02000607 0.002016785) (0.006084647 0.02200877 0.002018301) (0.006082346 0.02001024 0.00303485) (0.007993833 0.02199363 0.001995339) (0.008016279 0.02000318 0.003004433) (-0.007038746 0.02400579 0.002006642) (-0.005073518 0.02401093 0.002026556) (-0.006088416 0.02601307 0.002023235) (-0.006076027 0.02401392 0.003037149) (-0.004062119 0.02601173 0.00202838) (-0.004058452 0.02401089 0.003043926) (0.005074331 0.02401141 0.002022335) (0.004062181 0.02601424 0.002026437) (0.004054719 0.02401239 0.003037002) (0.007036235 0.02400363 0.00200454) (0.006091819 0.02601474 0.002025731) (0.006073755 0.02401015 0.00303046) (-0.006877773 0.02795139 0.001982035) (-0.005076706 0.02801571 0.002025454) (-0.006122596 0.03021943 0.002012317) (-0.006182666 0.02828504 0.003168777) (-0.004067944 0.03001957 0.002024195) (-0.004068997 0.02801336 0.00304463) (0.005076779 0.02801671 0.002021559) (0.004081415 0.03002535 0.002032849) (0.004072321 0.02802218 0.003049284) (0.006897705 0.02777323 0.001995453) (0.006117359 0.03020618 0.001996798) (0.006184315 0.02825249 0.003138931) (-0.005050264 0.03201534 0.00201781) (-0.003058066 0.03202718 0.002030821) (-0.00408587 0.0340325 0.002010867) (-0.004024162 0.03200575 0.003008918) (-0.001020562 0.03203036 0.002047021) (-0.002052024 0.03404206 0.002050082) (-0.002034112 0.03202616 0.003059222) (0.001022645 0.03203225 0.002053373) (-1.586187e-06 0.03404407 0.002060674) (1.903712e-06 0.03202732 0.00306565) (0.003062525 0.03202869 0.002044548) (0.002054575 0.03404655 0.002069208) (0.00203982 0.03203352 0.003079585) (0.005056866 0.03201591 0.002016501) (0.004039509 0.03401863 0.002021165) (0.004063317 0.03201865 0.003029791) (-0.00303898 0.03603193 0.002022052) (-0.001031741 0.03607343 0.002079195) (-0.002019879 0.03819725 0.002026121) (-0.002033199 0.03604147 0.00305652) (0.001033073 0.03606737 0.002076562) (-1.326922e-05 0.0380851 0.00210907) (-6.207296e-06 0.03604215 0.003068719) (0.003072311 0.03603449 0.002036918) (0.002044744 0.03820037 0.002054205) (0.0020364 0.03604129 0.003078423) (-0.003785975 -0.03372688 0.003845852) (-0.001004867 -0.03617167 0.004103953) (-0.002043671 -0.03401416 0.00411175) (0.0009891148 -0.03615628 0.004086698) (1.473628e-06 -0.03402002 0.00406795) (0.002013402 -0.03401673 0.004061789) (0.003804994 -0.03368274 0.003826554) (-0.004760477 -0.03170314 0.003826517) (-0.003017477 -0.03200907 0.004036802) (-0.004026812 -0.03000183 0.004024614) (-0.003845275 -0.0317251 0.0047866) (-0.001015802 -0.03202326 0.004077431) (-0.002033768 -0.03002395 0.004086027) (-0.002013006 -0.03201118 0.005040562) (0.001016702 -0.03201861 0.004075509) (9.31604e-07 -0.03002053 0.004076254) (4.42629e-06 -0.03201329 0.005050487) (0.003006858 -0.03199943 0.00402671) (0.002030315 -0.03001637 0.004075413) (0.002005947 -0.03200535 0.005023208) (0.004757938 -0.03166933 0.003820975) (0.004028867 -0.03000461 0.004035382) (0.003800784 -0.03170994 0.004781968) (-0.005045512 -0.02800637 0.004019479) (-0.006170587 -0.02625484 0.004139677) (-0.003050398 -0.02801893 0.004082457) (-0.004063954 -0.02601539 0.004063927) (-0.004035424 -0.02800649 0.005052484) (-0.001013682 -0.02801885 0.004076592) (-0.002028294 -0.02601598 0.004071635) (-0.002028549 -0.02802219 0.005094463) (0.001016293 -0.02801624 0.004075445) (3.020913e-06 -0.02802243 0.005100572) (0.00305041 -0.02801642 0.004081525) (0.002029855 -0.0260142 0.004071115) (0.002032573 -0.02801934 0.005089761) (0.005046593 -0.02800228 0.004031513) (0.004061202 -0.0260118 0.004068433) (0.004032977 -0.02800411 0.005048596) (0.006130916 -0.02626717 0.00414878) (-0.006906549 -0.02398559 0.003980221) (-0.005072616 -0.02401392 0.004053998) (-0.006071858 -0.02200776 0.004031203) (-0.006102568 -0.02400607 0.005100401) (-0.003039868 -0.02401254 0.004062655) (-0.004049023 -0.02200829 0.004052209) (-0.004050773 -0.02401205 0.005074664) (-0.002024839 -0.02401574 0.005081454) (0.003039233 -0.02401074 0.004061229) (0.002026246 -0.0240137 0.005077905) (0.00506336 -0.02400929 0.004044622) (0.004049065 -0.02200871 0.004051191) (0.004042953 -0.02400999 0.005065522) (0.006905755 -0.0239815 0.003985921) (0.00607871 -0.02201483 0.00404588) (0.006104687 -0.0240054 0.005099253) (-0.007033831 -0.02000229 0.004013543) (-0.007979416 -0.01799358 0.003979987) (-0.005055438 -0.020006 0.004041545) (-0.006060862 -0.0180052 0.004036872) (-0.006028949 -0.02000382 0.005024884) (-0.004040085 -0.02000497 0.005062384) (0.005066897 -0.02000974 0.004052611) (0.004045927 -0.02000827 0.005060887) (0.007031534 -0.02000872 0.004011269) (0.006070217 -0.01800541 0.004048957) (0.006052906 -0.01999977 0.005054145) (0.00798136 -0.01798592 0.003975326) (-0.007042104 -0.01600269 0.004016506) (-0.007993254 -0.0140001 0.003993893) (-0.007850449 -0.01596257 0.00484672) (-0.006048696 -0.01400476 0.004031355) (-0.006053622 -0.01600812 0.005044043) (0.00708048 -0.01600801 0.004046477) (0.006061251 -0.01400356 0.00404148) (0.00606132 -0.01600272 0.005048923) (0.008213547 -0.01428197 0.004145985) (0.007845635 -0.01573047 0.004850272) (-0.008826466 -0.01172769 0.00384109) (-0.007055784 -0.01200466 0.004030678) (-0.008075137 -0.01000216 0.004032048) (-0.008082379 -0.01199871 0.004990639) (-0.006051625 -0.01000252 0.004034147) (-0.006057304 -0.01200437 0.005050653) (0.007068386 -0.01200415 0.004042348) (0.006052067 -0.01000181 0.004033682) (0.006058015 -0.01200354 0.005054978) (0.008036412 -0.01000124 0.004015676) (0.008099258 -0.01200326 0.004996701) (-0.008890276 -0.007996708 0.003987049) (-0.007068113 -0.00800166 0.004036146) (-0.008040639 -0.006000132 0.004014991) (-0.008217468 -0.008035952 0.005207018) (-0.00604875 -0.006001025 0.00403226) (-0.006054821 -0.008001453 0.005043904) (0.007067145 -0.008001474 0.004028209) (0.0060492 -0.006001129 0.0040281) (0.006050789 -0.008000781 0.005034929) (0.008842278 -0.007999525 0.0038781) (0.008109932 -0.006002927 0.004054809) (0.008199501 -0.008009943 0.005135887) (-0.009013536 -0.003999849 0.004001377) (-0.007056615 -0.004000864 0.004033694) (-0.008095417 -0.002001323 0.004045402) (-0.008034306 -0.004000604 0.005018389) (-0.006052294 -0.002001287 0.004035513) (-0.006060701 -0.004002206 0.005052847) (0.007055157 -0.004001578 0.004029184) (0.006049573 -0.002001039 0.00402939) (0.00605662 -0.004001112 0.005042168) (0.008974344 -0.004002017 0.003980833) (0.008077076 -0.00200231 0.004040697) (0.008008019 -0.004000591 0.005003162) (-0.009122622 -2.871464e-06 0.004071122) (-0.007074258 -8.109625e-07 0.004039563) (-0.008089977 0.00200198 0.004036461) (-0.008068304 -1.199721e-06 0.005036986) (-0.006050409 0.002000325 0.004034641) (-0.006053706 -1.299834e-06 0.005044551) (0.007065148 -1.43842e-06 0.004029882) (0.006049569 0.001999954 0.004029059) (0.006051572 -5.137094e-07 0.005035232) (0.009120851 -1.95131e-06 0.004033678) (0.008088896 0.001999819 0.004026624) (0.008051679 -2.113209e-06 0.005018973) (-0.009017883 0.004000188 0.004003978) (-0.007054545 0.004000984 0.004031831) (-0.008036565 0.006001409 0.00402019) (-0.008031599 0.003999975 0.005018323) (-0.006048494 0.006001054 0.004033059) (-0.006059488 0.004001378 0.005052024) (0.007060896 0.003999967 0.004028294) (0.006051257 0.006000455 0.004033099) (0.006063432 0.004001065 0.005050686) (0.009032693 0.003999768 0.004008778) (0.008044491 0.00599905 0.004020377) (0.008048836 0.00400057 0.005026047) (-0.008890471 0.00799863 0.003988261) (-0.007067145 0.008001182 0.004039165) (-0.008080746 0.01000253 0.004039616) (-0.008213296 0.008037455 0.005182993) (-0.006056176 0.0100011 0.004035681) (-0.006056244 0.008001444 0.005045098) (0.007065986 0.008000109 0.004037863) (0.006057745 0.01000263 0.004039311) (0.00605838 0.008001779 0.005048583) (0.008955399 0.007983383 0.003966622) (0.008069041 0.01000255 0.004047251) (0.008169131 0.008266768 0.005168971) (-0.008834729 0.0117244 0.003829527) (-0.007067663 0.0120009 0.004033315) (-0.008191454 0.01428954 0.004151543) (-0.008086442 0.01199954 0.004992083) (-0.006055185 0.01400187 0.004032803) (-0.006064181 0.01200246 0.005049808) (0.007075501 0.01200353 0.004046253) (0.006063163 0.01400624 0.004040636) (0.00606515 0.01200536 0.005054289) (0.008840272 0.0117252 0.003835247) (0.008007316 0.01399873 0.004001856) (0.008099453 0.01200261 0.004999041) (-0.007044491 0.01600293 0.004024869) (-0.007979334 0.01799444 0.003978932) (-0.007823421 0.01596209 0.004854128) (-0.006055216 0.01800487 0.004035304) (-0.006052628 0.01600461 0.005046661) (0.007054526 0.01600677 0.004027259) (0.006080726 0.01801214 0.00405082) (0.006067715 0.01601149 0.00505945) (0.007927897 0.01801038 0.004002623) (0.007836275 0.01596479 0.004860752) (-0.007034254 0.0200003 0.004012766) (-0.005055436 0.02000478 0.004040046) (-0.006063529 0.0220072 0.00403383) (-0.006033004 0.02000089 0.005022417) (-0.004049445 0.02200904 0.004050053) (-0.004044137 0.0200064 0.005059234) (0.005063061 0.0200086 0.004046788) (0.004048857 0.02201011 0.004046039) (0.004045355 0.02000677 0.005054465) (0.007034686 0.02000803 0.00401619) (0.006070742 0.0220101 0.004046526) (0.006047862 0.02000244 0.005043215) (-0.006908673 0.02398547 0.00398585) (-0.005066791 0.0240112 0.00405164) (-0.006163381 0.02625808 0.004158636) (-0.006093083 0.02400511 0.005102084) (-0.003039456 0.02401172 0.004063186) (-0.004062771 0.02601384 0.004071621) (-0.004046998 0.02401423 0.005071606) (-0.002029806 0.02601351 0.004070096) (-0.002026479 0.02401368 0.005083166) (0.003039786 0.02401288 0.004057226) (0.002029664 0.02601571 0.004069537) (0.002028126 0.02401366 0.00507497) (0.005061518 0.02401392 0.004044231) (0.004059172 0.02601812 0.004059231) (0.004047121 0.02401403 0.005061946) (0.006899828 0.02397278 0.00397772) (0.006156172 0.02625954 0.004142896) (0.006096085 0.02400414 0.005097571) (-0.00504504 0.02800328 0.004030956) (-0.003054329 0.0280144 0.00407697) (-0.004026183 0.03000376 0.004022863) (-0.004036217 0.02800665 0.005048302) (-0.001014639 0.02801616 0.004072397) (-0.002031228 0.03001886 0.004074029) (-0.002033023 0.02801687 0.005086952) (0.001016634 0.02801831 0.00407809) (1.952919e-06 0.03002038 0.004078954) (-2.583356e-07 0.02802013 0.005102511) (0.003052322 0.02802232 0.004081484) (0.002035567 0.03002494 0.004088939) (0.002032565 0.02802052 0.005095664) (0.005047398 0.0280081 0.004022753) (0.004040928 0.03001357 0.004039601) (0.004033551 0.02801332 0.005060529) (-0.004762737 0.03174636 0.003809192) (-0.003012486 0.03200495 0.004029281) (-0.003794926 0.03374277 0.003806404) (-0.003808417 0.03171605 0.004782548) (-0.001011099 0.03202446 0.004072373) (-0.002027975 0.03402368 0.004075245) (-0.002013192 0.03201101 0.005039219) (0.0010216 0.03202801 0.004086335) (3.2847e-06 0.03402111 0.004071012) (-1.399318e-06 0.03201135 0.005054851) (0.003017609 0.03201191 0.00404136) (0.002039079 0.034041 0.004100068) (0.002016332 0.03202179 0.005053965) (0.004785764 0.03168133 0.003827654) (0.003800742 0.03371999 0.003809716) (0.003814839 0.0317109 0.004779281) (-0.0009980752 0.03616438 0.004015365) (0.0009908349 0.0361595 0.004086662) (-0.001005259 -0.03182824 0.005899114) (-0.00201693 -0.03023044 0.006152287) (0.001010246 -0.03182812 0.005920318) (4.773493e-06 -0.03001798 0.006061823) (0.002016785 -0.03022111 0.006135746) (-0.003170718 -0.02828606 0.006200286) (-0.004154935 -0.0262823 0.006187246) (-0.001005048 -0.02801484 0.006074013) (-0.002024658 -0.02601847 0.006092366) (-0.001986072 -0.02796071 0.006878568) (0.001015478 -0.02801837 0.00609735) (8.893436e-07 -0.02601852 0.006106797) (3.305858e-06 -0.02801909 0.007085331) (0.003168512 -0.02827309 0.006182642) (0.002025272 -0.02602237 0.006091437) (0.001992292 -0.02777434 0.006898238) (0.004152383 -0.02627826 0.006154292) (-0.005100226 -0.02400647 0.006100966) (-0.005901833 -0.02199664 0.00589881) (-0.003039234 -0.02402064 0.006090041) (-0.004043858 -0.02200491 0.00607946) (-0.003989868 -0.02398813 0.00692305) (-0.001010365 -0.02401589 0.006086322) (-0.00201729 -0.02201141 0.00608119) (-0.002009896 -0.02400979 0.007064433) (0.00100892 -0.02401095 0.006079155) (-1.630558e-06 -0.02200804 0.006071233) (-3.585225e-07 -0.02400548 0.007055469) (0.003034272 -0.02401343 0.006079338) (0.002019386 -0.02200828 0.006069801) (0.002004325 -0.02400287 0.007029593) (0.005089369 -0.02400304 0.006082376) (0.004042483 -0.02200775 0.006071109) (0.003990005 -0.02398402 0.006922759) (0.005896077 -0.0219969 0.005896706) (-0.005019604 -0.02000133 0.006034445) (-0.006010864 -0.01799937 0.006009247) (-0.003024514 -0.02000733 0.006074534) (-0.004037815 -0.01800374 0.006068853) (-0.00401064 -0.02000179 0.007039141) (-0.001006512 -0.02000713 0.006070047) (-0.002015358 -0.01800568 0.006065961) (-0.00201043 -0.0200055 0.007069667) (0.001006567 -0.02000659 0.006065347) (-1.107966e-07 -0.0180063 0.006062204) (-2.020876e-06 -0.02000834 0.007079629) (0.003033853 -0.02000998 0.006075028) (0.002017472 -0.01800615 0.006063993) (0.002013082 -0.0200082 0.007064515) (0.005025849 -0.02000604 0.00602717) (0.004044885 -0.01800672 0.006072374) (0.004020282 -0.02000318 0.007041224) (0.006167034 -0.01826591 0.006162316) (-0.006912461 -0.01600828 0.006005422) (-0.005043281 -0.01600585 0.006061245) (-0.00602467 -0.01400325 0.006025203) (-0.006000344 -0.01601005 0.006913017) (-0.003025089 -0.01600347 0.006062856) (-0.004034344 -0.01400443 0.006062918) (-0.004039424 -0.01599823 0.007075005) (-0.001006934 -0.01600495 0.00605991) (-0.002013803 -0.01400304 0.006055973) (-0.002015177 -0.01600486 0.007071803) (0.001007494 -0.01600461 0.006059372) (-3.988694e-07 -0.01600677 0.007073711) (0.003028128 -0.0160041 0.006062637) (0.002015033 -0.01400289 0.006056121) (0.00201478 -0.01600375 0.007069832) (0.005043046 -0.01600204 0.006053772) (0.004038564 -0.01400217 0.006056803) (0.004034839 -0.0160028 0.007070158) (0.006932053 -0.0160284 0.005932049) (0.00602623 -0.01400197 0.006021859) (0.005897926 -0.01601562 0.006885664) (-0.007203809 -0.01204254 0.00615852) (-0.007852631 -0.009721463 0.005825512) (-0.005046309 -0.0120046 0.006062125) (-0.006051231 -0.01000319 0.006054989) (-0.006170395 -0.01204024 0.007173279) (-0.003023014 -0.01200266 0.006059182) (-0.004032926 -0.01000264 0.006056796) (-0.004031198 -0.01200491 0.007073171) (-0.002014211 -0.01200248 0.007071538) (0.003022925 -0.01200174 0.006054351) (0.002015163 -0.01200286 0.007075901) (0.00504865 -0.01200287 0.006059151) (0.004032583 -0.01000198 0.006052452) (0.004034401 -0.0120019 0.007067411) (0.007175797 -0.01204739 0.00621005) (0.006046257 -0.01000265 0.00605115) (0.006144611 -0.01202865 0.007144621) (-0.007048677 -0.008000596 0.006035064) (-0.007864229 -0.006004144 0.005882706) (-0.005043347 -0.008001571 0.006053766) (-0.00607153 -0.006002178 0.006072213) (-0.00604703 -0.008000773 0.007042152) (-0.004032795 -0.006001036 0.006050876) (-0.004031185 -0.008000947 0.00706241) (0.005038201 -0.008002374 0.006043421) (0.004031097 -0.006001562 0.006043958) (0.004031938 -0.008002794 0.007056132) (0.007017755 -0.008000951 0.006006255) (0.006056488 -0.006001832 0.006049789) (0.006022631 -0.008000786 0.007027192) (0.007828416 -0.005997781 0.005839007) (-0.007091511 -0.004005078 0.006101094) (-0.007951057 -0.002015449 0.005952093) (-0.005052329 -0.004001721 0.006062668) (-0.006059175 -0.002003303 0.006058603) (-0.006095434 -0.00400212 0.00709444) (-0.004032813 -0.002000752 0.006052175) (-0.004036376 -0.004001163 0.007069185) (0.005051458 -0.004001676 0.006055053) (0.004035747 -0.002000885 0.006051577) (0.004035455 -0.004001708 0.007062803) (0.00710173 -0.004001797 0.00606254) (0.006077428 -0.002002264 0.006066099) (0.006089789 -0.004002806 0.007104591) (0.007927976 -0.002016457 0.005932736) (-0.007038491 -3.029842e-06 0.006031208) (-0.007958135 0.002015308 0.005948155) (-0.005037315 1.128895e-07 0.006050487) (-0.006055568 0.002001883 0.006065859) (-0.006002941 6.608448e-07 0.007010905) (-0.004034 0.002001037 0.006055414) (-0.004032055 -8.399276e-09 0.007062729) (0.00504457 2.71158e-07 0.006052993) (0.004036694 0.002001299 0.00605581) (0.004036061 1.756201e-07 0.007066665) (0.007021381 -6.039237e-07 0.006005312) (0.006048283 0.002002822 0.006050121) (0.006017402 1.610612e-07 0.007025758) (0.007917042 0.001999052 0.006008967) (-0.007097763 0.004004238 0.006077877) (-0.007870653 0.00600083 0.005888274) (-0.005054926 0.004001931 0.006068022) (-0.00607327 0.006002167 0.006072045) (-0.006105456 0.004003008 0.007116546) (-0.004034608 0.006001627 0.00605289) (-0.004040068 0.004001545 0.007073907) (0.005057456 0.004001769 0.006069633) (0.004038562 0.006001373 0.006058584) (0.004041052 0.004001418 0.007074262) (0.007120087 0.004001268 0.00607724) (0.006084085 0.006002012 0.006080761) (0.006099641 0.004001621 0.007127483) (0.007895473 0.00600223 0.005899422) (-0.007043983 0.008001032 0.006046291) (-0.007842332 0.009723156 0.005837412) (-0.005044902 0.008002711 0.006053671) (-0.006055545 0.01000496 0.006052406) (-0.006038485 0.007999508 0.007049939) (-0.004033912 0.01000318 0.006053941) (-0.004032165 0.008002338 0.007060935) (0.005051277 0.008002707 0.006063618) (0.004037367 0.01000313 0.006061936) (0.004040626 0.008002194 0.007074972) (0.007050042 0.008002735 0.006051799) (0.006054071 0.01000496 0.006055479) (0.006051574 0.008002006 0.007052909) (0.007825194 0.009721396 0.005856762) (-0.007190364 0.01203359 0.006189018) (-0.005050204 0.01200523 0.00606175) (-0.006029072 0.01400202 0.006027247) (-0.006194384 0.01203948 0.007162027) (-0.003023221 0.01200238 0.00605533) (-0.004036784 0.01400491 0.006061038) (-0.004027927 0.01200353 0.007067141) (-0.002013872 0.01400262 0.006054179) (-0.002012987 0.0120016 0.007066672) (0.003025192 0.01200283 0.006056805) (0.002016832 0.01400265 0.006056777) (0.002015341 0.01200408 0.007072806) (0.005051775 0.01200479 0.006064509) (0.004039715 0.01400441 0.006061415) (0.004031963 0.01200202 0.007065891) (0.007166811 0.01203193 0.006197684) (0.006040402 0.01400567 0.006050672) (0.006191078 0.01203879 0.007191439) (-0.006910307 0.01600743 0.006000427) (-0.005046981 0.01600573 0.006065623) (-0.006009649 0.01800051 0.00600671) (-0.006001247 0.01601199 0.006912278) (-0.003025582 0.01600447 0.006059948) (-0.004036973 0.0180047 0.006067449) (-0.00404379 0.01600435 0.007072201) (-0.001006818 0.01600365 0.00606017) (-0.002015113 0.01800575 0.006062338) (-0.002014698 0.01600685 0.007070025) (0.001008769 0.01600242 0.006060124) (1.063871e-06 0.01800336 0.006063246) (-1.29764e-07 0.01600286 0.007077539) (0.003030283 0.0160034 0.006061217) (0.002019977 0.01800227 0.006061274) (0.002017284 0.01600184 0.007069786) (0.005051304 0.01600695 0.006068023) (0.004042676 0.01800493 0.006063028) (0.004047059 0.01600678 0.00707248) (0.006931527 0.01603097 0.005923345) (0.006164018 0.01827689 0.006182753) (0.005916821 0.01602963 0.006926412) (-0.005025454 0.02000293 0.00603355) (-0.005896916 0.02199722 0.005895589) (-0.003029009 0.02000863 0.006071209) (-0.004046356 0.02201009 0.006073784) (-0.004010346 0.01999691 0.007026151) (-0.001007776 0.02000594 0.006067165) (-0.002023566 0.02200938 0.006083427) (-0.002011785 0.02000722 0.007067331) (0.001010672 0.02000434 0.006065788) (2.500792e-07 0.02200746 0.006069759) (1.693525e-06 0.0200052 0.007078922) (0.003034295 0.0200054 0.006063517) (0.00202307 0.022008 0.006067219) (0.002015965 0.02000341 0.007060962) (0.005026549 0.0200014 0.006029409) (0.004044511 0.0220112 0.006061712) (0.004016893 0.02000413 0.007025049) (0.005890628 0.02199598 0.00589946) (-0.005101816 0.02400566 0.00609491) (-0.003035652 0.02401813 0.006095332) (-0.004163937 0.02625861 0.006166689) (-0.003994549 0.02398607 0.006927356) (-0.001014263 0.02401286 0.006088794) (-0.002025442 0.02601781 0.00609452) (-0.002019274 0.02400481 0.007064845) (0.001010472 0.02401084 0.006077965) (-1.484894e-06 0.02601468 0.00610274) (-8.093818e-07 0.02400839 0.007051066) (0.003046731 0.02401698 0.006080064) (0.002022913 0.02601761 0.006080501) (0.00200483 0.02400724 0.007040333) (0.005098062 0.02400626 0.006096869) (0.004160786 0.02626738 0.006182143) (0.003989564 0.02398569 0.006922281) (-0.003161698 0.02825211 0.006214719) (-0.001007746 0.02801476 0.006071851) (-0.002014108 0.03023286 0.006145275) (-0.001974429 0.02795336 0.006878265) (0.001007698 0.02801294 0.006078854) (9.966608e-07 0.03001604 0.006063128) (-1.277439e-06 0.02802409 0.007064374) (0.00314221 0.02827016 0.006202917) (0.002025859 0.03023223 0.006157747) (0.001992097 0.02796171 0.006881948) (-0.001006395 0.0318261 0.005899303) (0.001013325 0.0318329 0.00592671) (-0.000993833 -0.02393745 0.007956346) (-0.002009528 -0.02203217 0.008030051) (0.0009918304 -0.02394115 0.007954447) (-4.618789e-06 -0.02199866 0.008004674) (0.002010081 -0.02204304 0.008049003) (-0.002999103 -0.02000141 0.008089073) (-0.003976117 -0.01799801 0.007986695) (-0.001002187 -0.02000364 0.008053285) (-0.002009503 -0.0180056 0.008057365) (0.001002975 -0.02000288 0.008049974) (-1.201099e-06 -0.01801008 0.008058885) (0.00300364 -0.01999244 0.008087063) (0.002005467 -0.01800251 0.008051638) (0.004005241 -0.01801198 0.007938875) (-0.004849528 -0.01572941 0.007852693) (-0.003008322 -0.01600108 0.008029248) (-0.004001691 -0.01399988 0.008006473) (-0.001006893 -0.01600655 0.008076818) (-0.002014655 -0.01400483 0.008078837) (-0.001986031 -0.01597702 0.008960527) (0.001004835 -0.01600335 0.008072386) (5.638566e-07 -0.01400708 0.008066669) (-4.894794e-06 -0.01605907 0.009140037) (0.003007635 -0.01600063 0.008025416) (0.002013647 -0.01400555 0.008081582) (0.001985743 -0.01597928 0.008952282) (0.004843667 -0.01571769 0.007836723) (0.004001532 -0.01400074 0.008002564) (-0.004989225 -0.01199957 0.008094638) (-0.005822981 -0.009732677 0.007816219) (-0.003017506 -0.01200126 0.008077432) (-0.004032692 -0.01000318 0.008068551) (-0.00385118 -0.01171623 0.008834053) (-0.001008212 -0.01200411 0.008067766) (-0.002016933 -0.01000091 0.008081168) (-0.002141821 -0.01226252 0.009182644) (0.001009489 -0.01200664 0.008075312) (5.463791e-07 -0.01000363 0.008082468) (-6.914224e-07 -0.01200214 0.009021779) (0.003020381 -0.01200172 0.008087982) (0.002014546 -0.009999461 0.008093789) (0.002145868 -0.0122543 0.009166087) (0.005003265 -0.01200016 0.008007465) (0.004022722 -0.01000073 0.00805045) (0.003836419 -0.01172458 0.008816456) (0.005803819 -0.009739881 0.007821255) (-0.0051576 -0.008268786 0.008168877) (-0.00589814 -0.006000312 0.007904673) (-0.003017619 -0.008001775 0.008069306) (-0.004026665 -0.006000808 0.008059921) (-0.003969199 -0.007984885 0.00895242) (0.003028957 -0.008002185 0.008088534) (0.005162674 -0.008270672 0.008174898) (0.004030409 -0.006002334 0.008056759) (0.00396993 -0.00798343 0.008960945) (0.00589665 -0.005999333 0.007870642) (-0.005038599 -0.004001476 0.008067279) (-0.006010159 -0.001998599 0.007921031) (-0.003024187 -0.004001439 0.008075071) (-0.004037213 -0.002003105 0.008097018) (-0.004027352 -0.003999469 0.009087103) (0.003026503 -0.00400108 0.008073813) (0.005020623 -0.004001138 0.008039357) (0.004031969 -0.002003302 0.008092657) (0.004018518 -0.004001542 0.009070202) (0.005949296 -0.00201499 0.007947028) (-0.005034795 4.76175e-07 0.008048978) (-0.006013036 0.001999021 0.007920404) (-0.003026575 -1.431387e-06 0.008076545) (-0.004043343 0.002001619 0.008102108) (-0.004090516 4.0359e-07 0.009113888) (0.003023383 2.152411e-07 0.00807239) (0.005021904 -2.198699e-06 0.008048362) (0.004046415 0.002002236 0.008099144) (0.004090964 1.111301e-06 0.009112177) (0.006012471 0.001998201 0.007927525) (-0.005046654 0.004001208 0.008060618) (-0.00590517 0.006002719 0.00789519) (-0.003029028 0.004001583 0.008077335) (-0.004022307 0.006000965 0.008064625) (-0.004037534 0.004000309 0.009074195) (0.003028196 0.004001191 0.00807973) (0.005036292 0.004000781 0.008066332) (0.004026716 0.006001092 0.008067582) (0.004036851 0.004000222 0.009065343) (0.005911094 0.006000981 0.007908744) (-0.005144961 0.008284585 0.008172453) (-0.005829338 0.00971328 0.007821298) (-0.003018256 0.008001908 0.008070282) (-0.004018524 0.01000211 0.008056569) (-0.003965044 0.007983167 0.008952348) (-0.002010405 0.01000156 0.008071851) (9.464224e-08 0.0100039 0.008083934) (0.003025684 0.008002864 0.008084967) (0.002018248 0.01000436 0.008090866) (0.005165601 0.008270765 0.008187255) (0.004031642 0.01000206 0.008071903) (0.003969641 0.007984133 0.008955069) (0.005847716 0.009738295 0.00782946) (-0.004994395 0.0119983 0.00808913) (-0.003019468 0.0120011 0.008063527) (-0.004003045 0.01400006 0.007998901) (-0.0038328 0.0117197 0.008812062) (-0.001005821 0.01200251 0.008065471) (-0.002010852 0.01400158 0.008081038) (-0.002139522 0.01225355 0.00919062) (0.00100636 0.01200428 0.008069333) (-1.577139e-06 0.0140008 0.008068402) (1.715742e-06 0.01200177 0.009021733) (0.003021755 0.01200364 0.008075147) (0.002013661 0.01400587 0.008086835) (0.002152627 0.01226529 0.009176573) (0.004991556 0.01199962 0.008091075) (0.00400256 0.0139995 0.008008027) (0.0038296 0.01172783 0.008828858) (-0.004851697 0.01572156 0.007838651) (-0.003004168 0.01600051 0.008027447) (-0.00398025 0.01799828 0.007986012) (-0.001006874 0.01600512 0.008076652) (-0.002008172 0.01800495 0.008055052) (-0.001988926 0.01597704 0.008960615) (0.001005334 0.01600298 0.008077405) (-8.446082e-07 0.01800058 0.008068979) (-2.995503e-06 0.01607204 0.009142331) (0.003007412 0.01600099 0.008033896) (0.002007868 0.0180038 0.008043278) (0.001990267 0.01597848 0.008950449) (0.00484518 0.01572281 0.007851518) (0.003982048 0.01799828 0.007985929) (-0.003001276 0.01999912 0.008091081) (-0.001001312 0.02000601 0.0080549) (-0.0020148 0.02203429 0.008038243) (0.00100498 0.02000381 0.008051773) (3.212826e-06 0.02199962 0.008011838) (0.00300123 0.02000107 0.008089626) (0.002012174 0.02204483 0.008050865) (-0.0009919843 0.0239411 0.007950675) (0.0009925571 0.0239409 0.007953282) (-0.002003123 -0.008001583 0.009569329) (1.556573e-06 -0.007998421 0.009503479) (-0.0004822428 -0.007942367 0.009853158) (4.549487e-07 -0.006984148 0.009856415) (0.0004848999 -0.007949083 0.009846222) (0.002012887 -0.008003716 0.009562958) (-0.002111967 -0.003986865 0.009658026) (-0.00185968 -0.00472476 0.009820428) (-0.001469645 -0.003980885 0.009901751) (-0.001875591 -0.002996376 0.00979617) (0.002114029 -0.003986636 0.009642067) (0.001850807 -0.004722565 0.00980792) (0.001451832 -0.003984672 0.009873102) (0.001866898 -0.002995547 0.009786786) (-0.002154765 8.717682e-07 0.009753629) (-0.001883345 -0.001000378 0.00980783) (-0.001468004 -6.902264e-07 0.009892163) (-0.00187793 0.000999058 0.009819783) (0.002146715 2.362886e-06 0.009750816) (0.001475588 -1.390149e-06 0.009886265) (0.001877871 0.0009987655 0.009813871) (0.001869838 -0.001000138 0.009806275) (-0.002103089 0.00398763 0.009651716) (-0.001870025 0.002996347 0.009769226) (-0.001459678 0.003984624 0.009865086) (-0.001866523 0.004724029 0.009825165) (0.002023869 0.004005341 0.009668721) (0.001870547 0.002962965 0.009825909) (0.001482424 0.003997241 0.00986279) (-0.002002743 0.008001437 0.009561656) (-4.776254e-06 0.00800437 0.009495387) (2.428376e-07 0.006999034 0.00985792) (0.0004950527 0.007948885 0.00985955) (-0.0004980034 0.007947876 0.009840643) (0.002001252 0.008002985 0.009569721) (-0.0009975921 -0.01099886 -0.009007491) (-0.0009994136 -0.01000046 -0.008533964) (-0.001511409 0.002001111 -0.009062446) (-0.001516793 0.006001922 -0.009119381) (-0.001001242 0.009999945 -0.008530181) (-0.0009960551 -0.00700156 0.009107759) (-0.001506355 -0.006007786 0.009098709) (-0.001514642 -0.002000383 0.009025408) (0.001512172 0.002000001 0.009033378) (0.001528855 0.006001982 0.009098738) (0.001013444 0.006997311 0.009105228) (-0.0009955572 -0.01199021 -0.009428359) (-0.00149481 -0.0120004 -0.008992134) (-0.00215487 -0.01127689 -0.00917946) (-0.00252133 -0.01202266 -0.009107306) (-0.0004971055 -0.0119979 -0.008983999) (2.101112e-06 -0.01099943 -0.009037618) (0.0005005232 -0.01199792 -0.008985585) (-0.002504996 -0.008002256 -0.009045814) (0.0005033963 -0.008003171 -0.009125648) (-0.002510012 -0.004000998 -0.009077441) (0.001508995 -0.004011145 -0.009088425) (0.002024811 -0.00300154 -0.009100745) (0.002013885 -0.005001634 -0.009088798) (0.002512308 -0.004000628 -0.009073718) (-0.001520761 0.001930072 -0.009916611) (-0.002137902 0.001916314 -0.009684209) (-0.002037107 -0.001003939 -0.009145215) (-0.00151429 -4.102392e-07 -0.009049867) (-0.002019728 0.001000781 -0.009121333) (-0.002525443 -9.213765e-07 -0.009119931) (0.002520265 -1.33714e-06 -0.009078518) (-0.002040004 0.006001297 -0.009650433) (-0.002017853 0.00300215 -0.009130116) (-0.001516578 0.00400143 -0.009093945) (-0.00202411 0.005000537 -0.009119588) (-0.002018942 0.007001066 -0.009110764) (-0.002511895 0.008001259 -0.009025774) (-0.002167207 0.01129963 -0.009192044) (-0.001500181 0.01200117 -0.008993595) (-0.002539782 0.01202652 -0.009103818) (-0.002012401 0.01300762 -0.009123949) (0.0004978855 0.01199845 -0.008984755) (4.331287e-07 0.01299828 -0.008987051) (-0.000996092 -0.01199958 -0.008519691) (-0.000999333 -0.01100074 -0.008043213) (-0.002005959 -0.01000142 -0.008553233) (-0.001503523 -0.01000109 -0.008050697) (-0.002514958 -0.01000209 -0.008068653) (-0.0020057 0.01000477 -0.008563099) (-0.001506707 0.01000223 -0.008051617) (-0.002514947 0.010007 -0.008081111) (-0.001002351 0.01199914 -0.008517619) (-0.00100431 0.01100062 -0.008042179) (-0.001006022 0.01299991 -0.008060411) (-0.001510069 -0.008001709 0.00911962) (-0.002006543 -0.007001183 0.009092643) (-0.0005025939 -0.008011631 0.009113275) (8.574987e-07 -0.007000573 0.009018453) (0.0004985441 -0.007999758 0.009115531) (-0.002017036 -0.005006997 0.009103043) (-0.001509973 -0.004007712 0.00903216) (-0.00202946 -0.003000206 0.009080198) (-0.00203426 -0.001000356 0.009096751) (-0.001514881 1.499009e-07 0.009035258) (-0.00202015 0.001001742 0.009096999) (0.001508769 5.893957e-07 0.009032181) (0.002020102 0.001000922 0.009097231) (0.002003377 -0.0009993007 0.009085394) (0.002028529 0.003000139 0.009097015) (0.001517653 0.003993423 0.009094374) (0.002014985 0.004999977 0.009112572) (-2.210891e-06 0.007005117 0.009016155) (0.0005047282 0.007997409 0.009117523) (-0.0005132632 0.008023198 0.009116989) (0.002014326 0.007002585 0.009099027) (0.001512096 0.00800282 0.009120679) (-0.001039219 -0.008044186 0.009668083) (-0.0009748973 -0.006963349 0.00984325) (-0.002044069 -0.006019156 0.009659051) (-0.001376406 -0.005973284 0.009820186) (-0.002151175 -0.001998556 0.009736913) (-0.001459733 -0.001997678 0.009873287) (0.002136851 0.002003445 0.009743279) (0.001480418 0.001996268 0.009855601) (0.00204821 0.006008586 0.009642522) (0.001379921 0.005967444 0.009820771) (0.001021421 0.008025765 0.009665085) (0.0009772034 0.006969645 0.00984069) (-0.002644423 -0.01026455 -0.009170597) (0.0005052956 -0.01000362 -0.009071928) (-0.002507482 -0.006001219 -0.009038737) (-0.002523672 -0.002000013 -0.009098147) (0.00252251 -0.00199976 -0.009083369) (-0.002629109 0.0102599 -0.009148122) (-0.00100026 0.01300281 -0.008989724) (0.001014613 -0.01001436 -0.009588512) (0.001001151 -0.01099828 -0.009009167) (0.001503335 -0.009999509 -0.009030869) (0.001012743 -0.009005296 -0.009118672) (0.001006022 -0.01000108 -0.008559292) (0.001012251 -0.007004382 -0.009137259) (0.001525672 -0.006000048 -0.009102028) (0.002989531 -0.002006604 -0.009489598) (0.003029168 -0.00300047 -0.009061086) (0.00366566 -0.002002659 -0.009260775) (0.003019502 -0.00100068 -0.009075409) (0.003028704 -0.00200114 -0.008585155) (0.001506959 0.006004964 -0.009146909) (0.001503694 0.01000113 -0.009015531) (0.001000721 0.01100054 -0.009004745) (0.001005713 0.01000274 -0.008537583) (0.001002418 -0.006995344 0.009122788) (0.001515246 -0.006001598 0.009105232) (0.001504493 -0.001999324 0.009022558) (-0.001509611 0.002001014 0.009025943) (-0.001520136 0.006001471 0.009092745) (-0.00101911 0.007005018 0.009116571) (0.0009978174 -0.01198793 -0.009423108) (0.001988934 -0.009993044 -0.009456971) (0.001504567 -0.01199943 -0.008979941) (0.001997858 -0.01099709 -0.008989138) (0.001026449 -0.006732789 -0.009872899) (0.001057947 -0.008088166 -0.009659892) (0.001366106 -0.005951896 -0.009832334) (0.002045028 -0.006008551 -0.009606514) (0.002005628 -0.009000624 -0.00903697) (0.001511529 -0.008003127 -0.00912319) (0.002018716 -0.006998991 -0.00909414) (0.002976624 -0.00399982 -0.009443106) (0.003643167 -0.004003385 -0.009222241) (0.004024295 -0.002997867 -0.009065728) (0.003002845 2.277156e-06 -0.009487205) (0.00403925 -0.001000162 -0.009110744) (0.003674391 -1.808954e-06 -0.009228845) (0.004058113 0.0009977407 -0.009101709) (0.002041169 0.006010971 -0.009655528) (0.002014624 0.003000387 -0.009072974) (0.001508749 0.004000854 -0.009096553) (0.002010826 0.005003307 -0.009116865) (0.002520643 0.004001165 -0.009070279) (0.001989061 0.009982104 -0.009431046) (0.002008649 0.007002641 -0.009098869) (0.001512982 0.008003093 -0.009105373) (0.002003403 0.009000655 -0.009011617) (0.0009958463 0.01200122 -0.009423029) (0.002164024 0.01127469 -0.009187113) (0.001498957 0.01199874 -0.008988199) (0.001003252 -0.01199821 -0.008515385) (0.001005752 -0.01100035 -0.008043177) (0.002008777 -0.01000104 -0.008552703) (0.001508812 -0.01000104 -0.008055057) (0.003022955 -0.004001297 -0.008564451) (0.00302783 -0.003001327 -0.008075307) (0.00402992 -0.002000866 -0.008584042) (0.003531557 -0.002001454 -0.008087047) (0.003029228 -6.124001e-07 -0.008583198) (0.00302549 -0.001000967 -0.008079562) (0.003029408 0.0009998069 -0.008086834) (0.002011975 0.01000267 -0.008539939) (0.001509816 0.01000252 -0.008047192) (0.001001237 0.01200155 -0.008520196) (0.001005525 0.01100205 -0.008040747) (0.00151553 -0.008000515 0.009121801) (0.002012713 -0.007000177 0.009105388) (0.002022285 -0.00499944 0.009096208) (0.001513785 -0.003999782 0.009030421) (0.002018601 -0.00299804 0.009087431) (-0.002011866 0.003000621 0.009075407) (-0.001509114 0.003998364 0.009026242) (-0.002020861 0.005001969 0.009099552) (-0.002013712 0.007002695 0.009088842) (-0.001508826 0.008004067 0.009125466) (0.001021121 -0.00804384 0.009667976) (0.0009814988 -0.006961835 0.009841487) (0.002043267 -0.006018786 0.009651978) (0.001388333 -0.005983402 0.009839804) (0.002125394 -0.001999301 0.009714633) (0.001457737 -0.002000516 0.009869728) (-0.002137048 0.002005542 0.009739297) (-0.001471742 0.002000449 0.009874132) (-0.002031378 0.006021673 0.009641484) (-0.001385251 0.005974137 0.009824187) (-0.001014651 0.008033264 0.009660231) (-0.0009658946 0.006962995 0.009846714) (0.003025749 0.00100017 -0.009089092) (0.002520424 0.001999742 -0.009094152) (-0.002839367 -0.009729837 -0.009321492) (-0.003019622 -0.01101635 -0.009055635) (-0.003486719 -0.009997457 -0.008998045) (-0.003107871 -0.008992838 -0.009174598) (-0.003013902 -0.01000052 -0.008546086) (-0.002969554 -0.005982042 -0.00943354) (-0.003160582 -0.007269471 -0.00918861) (-0.00361358 -0.005986761 -0.009133415) (-0.003000847 -0.0049993 -0.009013953) (-0.003016364 -0.006001617 -0.008553282) (-0.002998972 -0.001996383 -0.009474212) (-0.003017346 -0.002999459 -0.009069018) (-0.003654083 -0.002267411 -0.009182674) (-0.003011155 -0.001000131 -0.009047001) (-0.003024138 -0.001998201 -0.008590104) (0.002992911 0.002006813 -0.009508413) (0.003659826 0.002000122 -0.009262898) (0.003027806 0.002999811 -0.00906596) (0.003030911 0.002000174 -0.008595469) (-0.002832109 0.00971834 -0.009316871) (-0.003119768 0.008991702 -0.00913031) (-0.003476967 0.009999131 -0.008974957) (-0.003021993 0.01101997 -0.009058347) (-0.003012642 0.01000395 -0.008551117) (-0.0009780931 0.01373909 -0.00933164) (-0.001508418 0.01401482 -0.009141182) (-0.0004987429 0.01424739 -0.009182792) (-0.0009993595 0.01505342 -0.00912123) (-0.001004979 0.01399404 -0.008595467) (-0.003487258 -0.01200208 -0.008884223) (-0.003873871 -0.01096671 -0.008843936) (-0.002884252 -0.008008409 -0.009355573) (-0.003987569 -0.00899876 -0.008893338) (-0.003557667 -0.008023 -0.009097334) (-0.003978625 -0.007000087 -0.008992565) (-0.002972393 -0.003999482 -0.009476176) (-0.0038358 -0.001731579 -0.009313916) (-0.00400452 -0.005000356 -0.009012825) (-0.003643231 -0.004005027 -0.009202135) (-0.004047523 -0.00301039 -0.009077516) (-0.003002039 -1.590815e-08 -0.009522643) (-0.004089868 -0.0009999507 -0.009106897) (-0.003657081 0.0002645199 -0.009204228) (0.002983964 0.004000555 -0.00946766) (0.004031298 0.002998284 -0.009095583) (0.003656898 0.003998212 -0.009229034) (-0.002875771 0.008009671 -0.009343165) (-0.003536115 0.008015825 -0.009053132) (-0.003892614 0.009014352 -0.008867623) (-0.003829212 0.01096642 -0.008818805) (-0.003480108 0.01199851 -0.008870283) (1.61303e-06 0.01375602 -0.009357089) (-0.001996829 0.01499957 -0.009011933) (-0.001497565 0.01599801 -0.009006043) (-6.365347e-06 0.01506733 -0.009184702) (-0.0005010263 0.01601094 -0.009092789) (-0.003019141 -0.01200187 -0.008554234) (-0.003023194 -0.01100209 -0.008064551) (-0.004171932 -0.01002946 -0.008686758) (-0.003532897 -0.01000199 -0.008058004) (-0.003025254 -0.008005882 -0.008601344) (-0.003025767 -0.009004321 -0.008074021) (-0.003031258 -0.00700353 -0.008084119) (-0.00401909 -0.006001054 -0.008543402) (-0.003524932 -0.006002153 -0.008066659) (-0.003016762 -0.004000402 -0.008567396) (-0.003019009 -0.005001009 -0.008062246) (-0.003022618 -0.002999553 -0.008080274) (-0.004021426 -0.001994592 -0.008576655) (-0.003528977 -0.00199775 -0.008095339) (-0.003026197 -2.570438e-06 -0.008598324) (-0.003023124 -0.0009998728 -0.008082677) (0.004048082 0.002001261 -0.008620054) (0.003538768 0.002000378 -0.008100818) (0.003026902 0.004000193 -0.008574091) (0.003029642 0.003000291 -0.00808196) (-0.003028573 0.008002967 -0.008571737) (-0.003020639 0.009004487 -0.008071559) (-0.004141417 0.009999593 -0.00870248) (-0.00352139 0.01000241 -0.008060386) (-0.003019129 0.01200367 -0.008541889) (-0.003022934 0.01100431 -0.00806126) (-0.002006306 0.0140024 -0.008560488) (-0.001509717 0.01400127 -0.00807892) (1.56243e-06 0.01399947 -0.008632305) (-0.0005032672 0.01400085 -0.008099655) (-0.001003054 0.0160032 -0.00856295) (-0.001005376 0.01500305 -0.00808853) (-0.002969168 -0.02196522 -0.007850864) (-0.0009905348 -0.02220439 -0.008125904) (0.0009905062 -0.02220588 -0.008119292) (0.002975926 -0.02195262 -0.007821041) (-0.001848993 -0.0176995 -0.008821085) (-0.0028501 -0.01572756 -0.008801474) (-0.003147792 -0.01824648 -0.00815854) (-4.68335e-07 -0.01793903 -0.008955277) (-0.0009993148 -0.016001 -0.009062144) (-0.001006509 -0.01799615 -0.008081301) (0.001859137 -0.01770861 -0.00881763) (0.001000652 -0.01600142 -0.009056154) (0.001009737 -0.01801036 -0.008083498) (0.002836671 -0.01571901 -0.008825819) (0.003169189 -0.01827501 -0.008179278) (-0.004985742 -0.0139954 -0.007900973) (-0.002010737 -0.01401415 -0.009081155) (-0.003027191 -0.0140043 -0.008062122) (-0.003646608 -0.01227211 -0.00865734) (-0.002504129 -0.01200198 -0.008571853) (-2.195222e-06 -0.01424729 -0.009183524) (-0.001469722 -0.01198269 -0.009406699) (-0.001002057 -0.01400632 -0.008088967) (-0.0004975567 -0.01199546 -0.00946276) (-0.001494789 -0.01199982 -0.008541164) (0.00201427 -0.01402068 -0.009077418) (0.0004993241 -0.01199229 -0.009467083) (0.001005939 -0.01400363 -0.008087864) (0.001498982 -0.01197955 -0.009415206) (0.001505461 -0.01199755 -0.008524073) (0.002997421 -0.01200012 -0.009024262) (0.003027817 -0.01400558 -0.008082659) (0.004907958 -0.01401484 -0.007915856) (-0.00512969 -0.009998067 -0.008140242) (-0.00411781 -0.01099082 -0.008642244) (-0.004169235 -0.009274663 -0.008675798) (-0.003478604 -0.01098486 -0.00895429) (-0.0009987674 -0.01102418 -0.009500174) (-0.001497768 -0.01099856 -0.009017713) (-0.001994337 -0.01100348 -0.009364774) (5.608929e-06 -0.0110383 -0.009565169) (0.001003059 -0.01100466 -0.009504524) (0.0005383634 -0.01007144 -0.009582636) (0.0005020823 -0.01099944 -0.009031935) (0.003876434 -0.01000502 -0.008814455) (0.00316178 -0.008037116 -0.009223586) (0.003018175 -0.0100029 -0.008059295) (0.001965067 -0.01096975 -0.009379935) (0.002000379 -0.009000721 -0.009517487) (0.002006018 -0.01099937 -0.008538723) (0.00512329 -0.009995832 -0.008146189) (-0.005014191 -0.005999886 -0.008025604) (-0.00401579 -0.007001448 -0.008535202) (-0.004025164 -0.005000853 -0.008559126) (-0.002985271 -0.006998973 -0.009384584) (-0.003361041 -0.005966044 -0.009324802) (-0.003516682 -0.007001849 -0.009126064) (0.0006152236 -0.008220191 -0.009705761) (0.001149903 -0.0071854 -0.009673104) (0.0005040252 -0.00700195 -0.00908828) (0.0006291958 -0.006772001 -0.009870202) (0.003996883 -0.006004315 -0.009012121) (0.002510075 -0.004002429 -0.009589276) (0.003022528 -0.006000912 -0.008061409) (0.002018424 -0.007001345 -0.009604138) (0.002042632 -0.005018439 -0.00963183) (0.003398301 -0.003999131 -0.009312398) (0.003530337 -0.004002304 -0.008585013) (0.005012539 -0.006002332 -0.008023969) (-0.004838646 -3.275932e-05 -0.008858256) (-0.00502974 -0.001999896 -0.008058237) (-0.003864539 -0.001000189 -0.009349502) (-0.004038318 -0.002998313 -0.008594448) (-0.004005645 -0.0009982924 -0.008529749) (-0.003367945 -0.003999335 -0.009322046) (-0.002987045 -0.002995914 -0.009494323) (-0.003494944 -0.002005982 -0.009382162) (-0.003657986 -0.003035541 -0.009243926) (0.002111948 -0.003000574 -0.009622282) (0.002981608 -0.003001631 -0.009487674) (0.002546962 -0.002028334 -0.009588856) (0.002526124 -0.002999911 -0.00908812) (0.004801119 -3.80043e-05 -0.008808829) (0.005026296 -0.00200014 -0.008053065) (0.004032541 -0.003002367 -0.008588502) (0.00401826 -0.001000731 -0.008570459) (-0.004055603 0.002001199 -0.009097759) (-0.005049571 0.002001631 -0.008076777) (-0.002140712 0.0009890886 -0.009707103) (-0.003029584 0.004003089 -0.00906288) (-0.003030934 0.002000791 -0.008094068) (-0.002144686 0.002998543 -0.009720149) (-0.00349106 6.103812e-07 -0.009406611) (-0.002554193 5.444701e-06 -0.009654334) (-0.003529519 -5.822242e-06 -0.008604567) (-0.001509286 -9.239141e-07 -0.009501206) (-0.001501748 0.002000699 -0.009515791) (-0.001510858 0.001000545 -0.009052105) (-0.001540575 0.0009838306 -0.00988938) (0.002634609 7.396751e-06 -0.009610738) (0.002996926 0.001013035 -0.009528698) (0.002545377 0.002021451 -0.00961181) (0.002518968 0.0009979023 -0.009100576) (0.0050409 0.001999664 -0.00806174) (0.004050997 0.001000414 -0.008612439) (0.004044049 0.00300057 -0.008616425) (-0.003987843 0.00600107 -0.008996707) (-0.005015818 0.006001558 -0.008009637) (-0.002060436 0.005060392 -0.00965183) (-0.003017017 0.006003194 -0.008063798) (-0.002032771 0.00693384 -0.009552306) (-0.00247768 0.007989051 -0.009454461) (-0.003514908 0.00800329 -0.008574173) (-0.002517188 0.008003125 -0.008558917) (-0.001512497 0.004002251 -0.00958475) (-0.001671138 0.006005898 -0.009724282) (-0.001522823 0.005002625 -0.009122196) (0.004004842 0.006003309 -0.00902154) (0.003132008 0.008037499 -0.009191587) (0.003018445 0.006000958 -0.008061743) (0.002033915 0.005008326 -0.009670865) (0.002011446 0.007011294 -0.009604479) (0.002530302 0.00400223 -0.009572795) (0.003377548 0.004000632 -0.009343823) (0.003537374 0.003999598 -0.008596043) (0.00502177 0.006000895 -0.008026573) (-0.005151166 0.009998975 -0.008139265) (-0.00414949 0.009042459 -0.008745606) (-0.004121979 0.01098461 -0.008641854) (-0.002865787 0.008964296 -0.0093317) (-0.003503983 0.009002113 -0.009020286) (0.003878279 0.01001004 -0.00883231) (0.002999118 0.01199852 -0.009008203) (0.003016096 0.01000281 -0.008053045) (0.001993931 0.008998721 -0.009474931) (0.001984016 0.01099343 -0.009378397) (0.002022248 0.01100408 -0.00857009) (0.005145768 0.009999011 -0.008123571) (-0.004990112 0.01399879 -0.007910259) (-0.001857334 0.01271764 -0.009321328) (-0.002845886 0.01571124 -0.008823783) (-0.003040145 0.01401673 -0.008093343) (-0.003659441 0.01227318 -0.008660428) (-0.002518141 0.01200427 -0.008573129) (-0.00200869 0.01300267 -0.008566448) (-0.002003037 0.01500166 -0.008532808) (-0.001482069 0.01198732 -0.00941472) (-0.0009967347 0.01294076 -0.009404355) (-0.00135212 0.01370554 -0.009299121) (-0.001620736 0.01326283 -0.009161056) (0.002009608 0.01401555 -0.009071118) (0.0009971471 0.01600375 -0.009056617) (0.001003295 0.01400221 -0.008087972) (0.000504032 0.01200559 -0.009466602) (0.001472862 0.01197216 -0.009388669) (0.001504546 0.01200155 -0.008538162) (4.461711e-07 0.01294057 -0.009417292) (-1.791502e-08 0.01299829 -0.008537376) (-2.861255e-06 0.01500549 -0.00864185) (0.002836745 0.0157167 -0.008802859) (0.00301321 0.01400496 -0.008062971) (0.004900918 0.01401505 -0.007906718) (-0.001861618 0.01771287 -0.008806851) (-0.003159078 0.01825322 -0.008180182) (-1.092218e-06 0.01794248 -0.008955819) (-0.001026221 0.018005 -0.008100906) (-0.001501586 0.01600138 -0.00853248) (-0.0005028635 0.01600502 -0.008585695) (0.001864983 0.01771134 -0.008809576) (0.001010022 0.01801678 -0.008076508) (0.003125036 0.01825947 -0.008174761) (-0.002976745 0.02196285 -0.007828407) (-0.0009893949 0.02221418 -0.008132462) (0.000989525 0.02222702 -0.008141561) (0.002957262 0.02196582 -0.007835364) (-0.002999887 -0.02978388 -0.005897703) (-0.0009926848 -0.02797849 -0.006976209) (-0.000999438 -0.03000527 -0.006030883) (0.0009966914 -0.02799518 -0.006989339) (0.001003399 -0.03000512 -0.006033114) (0.002996932 -0.02996823 -0.00588679) (-0.00487741 -0.0257616 -0.005848521) (-0.002014248 -0.02623578 -0.007118834) (-0.003128923 -0.02425173 -0.007134472) (-0.003028186 -0.02600419 -0.0060535) (9.976802e-08 -0.02600475 -0.007033414) (-0.001001662 -0.02400957 -0.00704818) (-0.001005434 -0.02601097 -0.006067018) (0.00213749 -0.02626573 -0.007133851) (0.001001017 -0.02400934 -0.007042656) (0.001006099 -0.02601212 -0.00606437) (0.00314703 -0.02426279 -0.007166512) (0.00303527 -0.02600528 -0.006082387) (0.004878012 -0.02577077 -0.005883952) (-0.004110833 -0.02201763 -0.007115254) (-0.004992598 -0.02000013 -0.006994827) (-0.005000494 -0.02200065 -0.006014843) (-0.002005364 -0.02200138 -0.007029266) (-0.00302116 -0.02000427 -0.007054518) (-0.003022111 -0.02200434 -0.006051592) (1.698816e-06 -0.02200833 -0.007083839) (-0.001006638 -0.02000186 -0.007064249) (-0.001004511 -0.0220053 -0.006059147) (0.002005478 -0.02200452 -0.007036094) (0.001004959 -0.02000536 -0.007065772) (0.001006155 -0.02200825 -0.006062663) (0.004128684 -0.02225194 -0.007116015) (0.003017684 -0.01999966 -0.007059524) (0.003029291 -0.02200892 -0.006067818) (0.005004015 -0.0199993 -0.007002792) (0.005019966 -0.02200034 -0.00603038) (-0.005840729 -0.01774929 -0.006823961) (-0.006841858 -0.01773211 -0.005851646) (-0.004015155 -0.018002 -0.0070344) (-0.00501361 -0.0160006 -0.007030012) (-0.005050546 -0.01800578 -0.006060823) (-0.002017176 -0.01800264 -0.007069969) (-0.003023824 -0.01600539 -0.007079427) (-0.00302426 -0.01800383 -0.006061527) (9.123772e-07 -0.01800533 -0.007069215) (-0.001005318 -0.01600273 -0.007066677) (-0.001006521 -0.01800246 -0.006055648) (0.002015816 -0.01800513 -0.007075122) (0.001007458 -0.01600489 -0.007069072) (0.001007268 -0.01800395 -0.006057911) (0.004024438 -0.01800342 -0.007043951) (0.003029769 -0.01600698 -0.007075087) (0.003028679 -0.01800444 -0.006068887) (0.005837553 -0.01773457 -0.006832801) (0.00502268 -0.01600285 -0.007029253) (0.005052133 -0.01801156 -0.006072984) (0.00681477 -0.01772401 -0.005864035) (-0.006074401 -0.0139848 -0.007085753) (-0.007081216 -0.01398434 -0.006073148) (-0.004033788 -0.01400366 -0.007074273) (-0.005034412 -0.01200233 -0.007051942) (-0.005033382 -0.01400442 -0.006049376) (-0.002013703 -0.01400301 -0.00706542) (-0.00302743 -0.01200294 -0.007069887) (-0.003022658 -0.01400295 -0.006056221) (-0.001002345 -0.01200162 -0.007052462) (0.002017116 -0.01400515 -0.007065995) (0.001007505 -0.01200192 -0.007050639) (0.004042689 -0.01401026 -0.007089811) (0.003029808 -0.01200678 -0.007067182) (0.00302909 -0.01400552 -0.006062378) (0.006085184 -0.0139724 -0.007087805) (0.005040311 -0.01200695 -0.007063818) (0.005056559 -0.01400608 -0.006075005) (0.007073762 -0.01397053 -0.006077005) (-0.006009768 -0.009998662 -0.007019702) (-0.006894058 -0.007998177 -0.00689959) (-0.007007002 -0.01000013 -0.00600171) (-0.004040999 -0.01000295 -0.007063911) (-0.005057413 -0.008001833 -0.007068392) (-0.005048382 -0.01000243 -0.006057479) (-0.002011653 -0.01000159 -0.007053557) (-0.00302642 -0.008002498 -0.007059396) (-0.003024457 -0.01000193 -0.006049091) (-0.003527049 -0.0110017 -0.008049199) (-0.002512642 -0.01100255 -0.008075055) (-0.003540038 -0.009006654 -0.008072717) (-0.002516153 -0.009002588 -0.008063032) (2.29044e-06 -0.01000099 -0.007042003) (-0.001003923 -0.008000811 -0.007038909) (-0.001005074 -0.01000124 -0.00604014) (-0.00150173 -0.01100123 -0.0080586) (0.002013737 -0.01000224 -0.007052967) (0.001007583 -0.008001125 -0.007050398) (0.001007762 -0.01000164 -0.006041801) (0.001508136 -0.0110004 -0.008046404) (0.00403274 -0.01000395 -0.007064733) (0.006002026 -0.0100003 -0.007008629) (0.005038318 -0.008005186 -0.007063759) (0.005042602 -0.01000415 -0.006063109) (0.00689156 -0.008002068 -0.006885135) (0.007004351 -0.01000103 -0.006005558) (-0.00608163 -0.006002773 -0.007073966) (-0.006950411 -0.004012496 -0.007029538) (-0.007068109 -0.006002656 -0.006046805) (-0.004037622 -0.006001569 -0.007064049) (-0.00504796 -0.004001274 -0.007073095) (-0.005048773 -0.006001521 -0.006054332) (-0.002012611 -0.006000943 -0.007046075) (-0.003021616 -0.004000387 -0.007059557) (-0.003023873 -0.006001045 -0.006046579) (-0.003530526 -0.007003557 -0.008072582) (-0.003523969 -0.005001036 -0.008068168) (0.004033342 -0.006003727 -0.007061904) (0.003023126 -0.004001455 -0.007058166) (0.006073997 -0.006003394 -0.007093905) (0.005050451 -0.004002876 -0.007077402) (0.00504439 -0.00600322 -0.006057489) (0.007011032 -0.004000288 -0.007015034) (0.0070867 -0.006004394 -0.00606819) (-0.006055739 -0.002003935 -0.007077356) (-0.007066831 -1.385158e-06 -0.007063486) (-0.007062499 -0.00200308 -0.006061717) (-0.004034433 -0.001999241 -0.00707515) (-0.005052125 2.312802e-06 -0.007081123) (-0.005046103 -0.00200056 -0.006061584) (-0.00201447 -0.002000043 -0.007053792) (-0.003024687 5.459412e-07 -0.00706973) (-0.003023455 -0.001999885 -0.006051148) (-0.003528634 -0.00299902 -0.008091344) (-0.003523967 -0.0009992279 -0.008079309) (0.002014648 -0.002000632 -0.007049678) (0.004029559 -0.002001662 -0.007064239) (0.003023305 -4.912166e-07 -0.007061888) (0.00302108 -0.002000939 -0.006046188) (0.003534679 -0.00300174 -0.008083182) (0.003527918 -0.001001064 -0.008085) (0.00603745 -0.002006804 -0.007069003) (0.00502232 -1.569474e-06 -0.007045695) (0.005033467 -0.002002263 -0.006048439) (0.007025706 -8.326681e-07 -0.007031741) (0.007071926 -0.002007587 -0.006029565) (-0.006069673 0.002004566 -0.007079877) (-0.006994275 0.004031778 -0.006984502) (-0.007080615 0.002005604 -0.006044734) (-0.0040419 0.002002401 -0.007079683) (-0.005056031 0.004002744 -0.007073913) (-0.005053651 0.002003216 -0.006064739) (0.002015285 0.002000261 -0.007050966) (0.004036321 0.002000203 -0.007071356) (0.003024811 0.004000689 -0.007061502) (0.003023008 0.002000228 -0.006048326) (0.003537397 0.001000023 -0.008098384) (0.003538506 0.003000324 -0.008094773) (0.00603209 0.001995318 -0.00705135) (0.005054486 0.00400168 -0.007077545) (0.005040562 0.002000638 -0.006050571) (0.006998427 0.004031723 -0.006988012) (0.00706306 0.002002965 -0.006043126) (-0.006061967 0.006002017 -0.007075397) (-0.006911856 0.00799976 -0.0069085) (-0.007063897 0.006002576 -0.006066833) (-0.004028778 0.00600344 -0.007057987) (-0.00503867 0.008009293 -0.007070992) (-0.005043954 0.006002895 -0.006054986) (-0.003020067 0.00800371 -0.007062755) (-0.001005328 0.008001245 -0.007042529) (0.001006365 0.008001531 -0.007045076) (0.004033373 0.006001547 -0.007057523) (0.006078553 0.006001147 -0.007082997) (0.005041848 0.008004289 -0.007060452) (0.00504994 0.006001806 -0.006058245) (0.006921263 0.007998951 -0.006912701) (0.007095887 0.005997793 -0.006088446) (-0.005997828 0.01000016 -0.007010331) (-0.007002536 0.01000066 -0.005999236) (-0.004031728 0.01000305 -0.00707016) (-0.005031363 0.01200271 -0.007054349) (-0.005038301 0.0100032 -0.006060212) (-0.002012792 0.01000292 -0.007056305) (-0.003027225 0.01200502 -0.007069574) (-0.003021607 0.010003 -0.006052202) (-0.003522763 0.00900459 -0.008081341) (-0.002515144 0.009004767 -0.008067235) (-0.00352212 0.01100234 -0.008044686) (-0.002520219 0.0110055 -0.00808029) (3.170929e-07 0.01000103 -0.007038152) (-0.001006494 0.01200142 -0.007052045) (-0.001006392 0.01000166 -0.006041399) (-0.001508756 0.01100189 -0.008060321) (0.002013014 0.0100024 -0.007050477) (0.001005451 0.01200206 -0.00705081) (0.001006929 0.0100017 -0.006040789) (0.001510526 0.01100284 -0.008050865) (0.004032395 0.01000341 -0.007065278) (0.003024429 0.01200491 -0.007066196) (0.006015751 0.01000215 -0.007021063) (0.005040181 0.01200325 -0.007069157) (0.005048031 0.0100057 -0.006071522) (0.007023598 0.01000136 -0.006018835) (-0.006079391 0.01397156 -0.007082646) (-0.007093455 0.01398493 -0.006083664) (-0.004033871 0.01401034 -0.007081314) (-0.005028364 0.01600539 -0.007040005) (-0.005047941 0.01400685 -0.006066151) (-0.002017795 0.01400426 -0.007072457) (-0.003031869 0.0160047 -0.007088938) (-0.003026336 0.01400504 -0.006063576) (-1.294321e-06 0.01400206 -0.007068368) (-0.001009975 0.01600347 -0.007071166) (-0.001008103 0.01400256 -0.006054254) (-0.001509665 0.01300176 -0.008070915) (-0.0005028265 0.01299981 -0.00805973) (-0.001507058 0.0150026 -0.008072527) (-0.0005037546 0.01500355 -0.008104169) (0.002012983 0.01400324 -0.007063856) (0.001005449 0.01600461 -0.007067448) (0.004044486 0.01400548 -0.007084714) (0.003025491 0.01600321 -0.007074724) (0.003027056 0.01400357 -0.006061138) (0.006077732 0.01397048 -0.0070797) (0.005013214 0.01600142 -0.007022567) (0.005047395 0.01400473 -0.006066883) (0.007087393 0.01399072 -0.005995321) (-0.005838669 0.01773274 -0.006858541) (-0.006853049 0.01772879 -0.00584475) (-0.004021778 0.0180047 -0.007041471) (-0.004996034 0.01999799 -0.006995447) (-0.005063443 0.01800857 -0.006059507) (-0.002020287 0.01800542 -0.007080251) (-0.003021382 0.02000827 -0.007061882) (-0.003029878 0.01800563 -0.006067199) (-2.608543e-06 0.01800538 -0.007069286) (-0.001009317 0.02000523 -0.007063668) (-0.001010111 0.01800411 -0.00605922) (0.002015377 0.01800622 -0.007072394) (0.001006157 0.02000492 -0.007066605) (0.001006726 0.01800451 -0.00605808) (0.004028901 0.01800434 -0.007046002) (0.003020878 0.02000783 -0.007057582) (0.003028688 0.01800639 -0.00606372) (0.00582552 0.01771205 -0.006817243) (0.005017731 0.02001568 -0.006940214) (0.005053723 0.01800707 -0.006060101) (0.006825586 0.01772578 -0.005850881) (-0.004129974 0.02225612 -0.0071256) (-0.0050116 0.02200021 -0.006020052) (-0.002010489 0.02200157 -0.007037724) (-0.003153136 0.0242621 -0.007184225) (-0.003032302 0.02200525 -0.006063297) (3.110109e-07 0.02200636 -0.007074363) (-0.001003381 0.02400512 -0.007037922) (-0.001009184 0.02200604 -0.006060124) (0.002003948 0.02199934 -0.007030959) (0.001001957 0.02400404 -0.00703896) (0.001004986 0.02200551 -0.00605904) (0.004106279 0.02201453 -0.007109966) (0.003132982 0.02425266 -0.007135748) (0.003022944 0.02200586 -0.006049005) (0.00500578 0.02200102 -0.006015376) (-0.004856528 0.02599608 -0.005865807) (-0.002015207 0.02623773 -0.007179134) (-0.003050308 0.02602177 -0.006088843) (-1.127392e-06 0.02600772 -0.007037441) (-0.0009966549 0.0279764 -0.006983628) (-0.001012678 0.02601862 -0.006075348) (0.002012334 0.02623748 -0.007118318) (0.0009923635 0.02797868 -0.006990615) (0.001004278 0.02601405 -0.006072704) (0.00301096 0.02600733 -0.006061022) (0.004872107 0.02575814 -0.005884835) (-0.002996131 0.0299735 -0.005906009) (-0.00099649 0.0300112 -0.006026228) (0.001003711 0.03000903 -0.006038141) (0.003001423 0.02978596 -0.00590609) (-0.002002301 -0.03377852 -0.004893905) (-0.003013467 -0.03201138 -0.005024824) (-0.003031931 -0.03421162 -0.004025019) (4.582453e-06 -0.03417106 -0.005070455) (-0.001011264 -0.03201868 -0.005068257) (-0.001012098 -0.0340122 -0.004057776) (0.001997819 -0.03380853 -0.004905293) (0.001009548 -0.03202376 -0.005086261) (0.001023773 -0.03403431 -0.004075415) (0.003007175 -0.03199465 -0.005100837) (0.002998971 -0.03419577 -0.004132662) (-0.004024619 -0.03002752 -0.00505333) (-0.004998139 -0.02798021 -0.004996411) (-0.005118187 -0.03002159 -0.004021199) (-0.002031966 -0.03002419 -0.005086792) (-0.003035022 -0.02801552 -0.005077088) (-0.003044798 -0.03002257 -0.004084418) (1.709527e-06 -0.03002547 -0.0050958) (-0.001010713 -0.0280183 -0.005079497) (-0.00101776 -0.0300246 -0.004087118) (0.002016617 -0.03001561 -0.005071706) (0.001010726 -0.02801753 -0.005075983) (0.001015149 -0.03002464 -0.004084576) (0.004027656 -0.03000784 -0.005147805) (0.003040288 -0.02801847 -0.005080567) (0.003040808 -0.03002036 -0.004062892) (0.005009687 -0.02801021 -0.005012381) (0.005141431 -0.03002737 -0.004009654) (-0.005860435 -0.02576165 -0.004860504) (-0.004041379 -0.02600941 -0.005077566) (-0.005020997 -0.02400508 -0.005024438) (-0.0050606 -0.02601435 -0.004054482) (-0.002023583 -0.02601208 -0.005074011) (-0.003030474 -0.02400706 -0.005064248) (-0.003040526 -0.02601236 -0.004067969) (0.002026875 -0.02601326 -0.005076986) (0.004045053 -0.0260108 -0.005084879) (0.003038342 -0.02401123 -0.005076288) (0.003045475 -0.02601298 -0.004068902) (0.005878501 -0.02576213 -0.004879064) (0.005031359 -0.02400613 -0.005032021) (0.00507064 -0.02601061 -0.004049515) (-0.006004397 -0.02199932 -0.004999365) (-0.007059435 -0.01999059 -0.004972243) (-0.007130625 -0.02201548 -0.004116112) (-0.004036233 -0.02200532 -0.005051338) (-0.00505139 -0.02000622 -0.00505211) (-0.005051555 -0.02200778 -0.004038916) (0.004043003 -0.02200714 -0.005064355) (0.006008869 -0.02200059 -0.00500848) (0.005045092 -0.02000635 -0.00505964) (0.005057761 -0.02200699 -0.004048177) (0.007069569 -0.01998771 -0.004979826) (0.007127783 -0.02202467 -0.004131238) (-0.006066101 -0.01800638 -0.005052526) (-0.007010623 -0.01600133 -0.005004922) (-0.007037596 -0.01800446 -0.004016759) (0.006066111 -0.01800215 -0.005043131) (0.00702847 -0.01600247 -0.005023092) (0.007039284 -0.01800248 -0.004017495) (-0.007920013 -0.01401745 -0.004905994) (-0.006049008 -0.01400566 -0.005035257) (-0.007065154 -0.01200416 -0.005041743) (-0.007080399 -0.01400271 -0.004038067) (0.006059232 -0.01400365 -0.00505195) (0.00790693 -0.01401419 -0.004909277) (0.007055467 -0.01200104 -0.005048385) (0.007063005 -0.01400308 -0.004033682) (-0.008122937 -0.009986947 -0.005100836) (-0.008849035 -0.009996674 -0.003876118) (-0.006060098 -0.01000363 -0.005044786) (-0.007063375 -0.008002242 -0.005031536) (-0.007079724 -0.0100049 -0.004042008) (0.006055785 -0.01000486 -0.005051362) (0.008127799 -0.009999685 -0.005120299) (0.007055456 -0.008004811 -0.005032997) (0.007071868 -0.01000363 -0.004034035) (0.008873436 -0.00996556 -0.003855577) (-0.007995547 -0.005999981 -0.005001758) (-0.008969459 -0.005985825 -0.003974444) (-0.006052015 -0.006001428 -0.005039609) (-0.007059431 -0.004001403 -0.005044242) (-0.007061717 -0.006000788 -0.004026281) (0.006051459 -0.006002546 -0.005042935) (0.008015934 -0.006000185 -0.005008301) (0.007069262 -0.004002073 -0.005046358) (0.007056395 -0.006002554 -0.004025355) (0.008991667 -0.006001547 -0.003993232) (-0.008057295 -0.002001208 -0.005040481) (-0.008831258 2.97449e-06 -0.004845264) (-0.00906658 -0.001994856 -0.004027616) (-0.006055014 -0.002001042 -0.005049105) (-0.007069987 2.253516e-07 -0.005051494) (-0.007064372 -0.00200069 -0.004038892) (0.006047958 -0.002001983 -0.00503403) (0.008071773 -0.002002078 -0.005029375) (0.007053572 -2.028123e-07 -0.005028678) (0.007069155 -0.002000987 -0.004033467) (0.00884867 -0.000242055 -0.004841803) (0.009086292 -0.001998525 -0.004041314) (-0.008062883 0.002001181 -0.005035449) (-0.009059282 0.001996773 -0.004032005) (-0.006060317 0.002002633 -0.005048105) (-0.007061709 0.004002461 -0.005042944) (-0.007066546 0.002002042 -0.004035065) (0.006051995 0.00200138 -0.005038516) (0.008059744 0.001999798 -0.005029271) (0.007070476 0.00400182 -0.005044454) (0.007063395 0.002001125 -0.004032612) (0.0090737 0.00199937 -0.004020175) (-0.008000022 0.005999485 -0.004998915) (-0.008959231 0.005987179 -0.003973074) (-0.006049363 0.006002029 -0.005043312) (-0.00705602 0.008001604 -0.005034154) (-0.007053616 0.00600122 -0.00402965) (0.006061341 0.006001575 -0.00504915) (0.008008879 0.005997959 -0.005002205) (0.007077212 0.00800271 -0.005044812) (0.007060488 0.006002245 -0.004029783) (0.008961721 0.005986846 -0.003983764) (-0.008145353 0.009999999 -0.005137875) (-0.008857141 0.009964969 -0.003875817) (-0.006052055 0.01000442 -0.005043733) (-0.00705793 0.0120036 -0.00504276) (-0.007071152 0.01000477 -0.004036745) (0.006063591 0.01000491 -0.005055525) (0.008122445 0.009987464 -0.005108779) (0.007067295 0.01200334 -0.005041098) (0.007079594 0.01000204 -0.00403808) (0.008860612 0.009966354 -0.003876486) (-0.00790883 0.01401423 -0.004903209) (-0.006059891 0.01400513 -0.005048576) (-0.007034819 0.01600299 -0.005024435) (-0.007081261 0.0140072 -0.004045579) (0.006065573 0.01400626 -0.005049845) (0.007913663 0.01399875 -0.004995202) (0.007042911 0.0160023 -0.005022111) (0.007097886 0.01400434 -0.00404785) (-0.006059636 0.0180059 -0.005058696) (-0.007065604 0.01998933 -0.004977686) (-0.007040716 0.01800323 -0.004021959) (-0.005047412 0.02000503 -0.005047415) (0.006066474 0.01800496 -0.005054104) (0.005056113 0.02000995 -0.00505109) (0.007013688 0.0200031 -0.005000333) (0.007076071 0.01801037 -0.0040452) (-0.006006882 0.02200022 -0.005002803) (-0.007118828 0.02202206 -0.004124902) (-0.004041979 0.02200561 -0.005055286) (-0.005021145 0.02400067 -0.00502079) (-0.005052327 0.02200635 -0.004032663) (-0.003039738 0.02401264 -0.005075738) (0.004041318 0.02200881 -0.005052064) (0.003029244 0.02401062 -0.005059437) (0.006008815 0.02200155 -0.005001186) (0.005023258 0.02400143 -0.005020986) (0.005064534 0.02200691 -0.004040152) (0.007133399 0.02203844 -0.004021413) (-0.005846342 0.0259927 -0.00484434) (-0.004035734 0.02600907 -0.005055124) (-0.005010496 0.02802222 -0.005004758) (-0.005046251 0.02600844 -0.004025072) (-0.002032336 0.02601824 -0.005091861) (-0.003048126 0.02801399 -0.00508867) (-0.003043807 0.02601391 -0.00406365) (-0.001013443 0.02802022 -0.005086907) (0.002018604 0.02601377 -0.005072946) (0.001008303 0.02801678 -0.005083799) (0.004041421 0.02601468 -0.005065934) (0.003027348 0.0280135 -0.005067488) (0.003037393 0.02601461 -0.00406311) (0.005880188 0.02598694 -0.004872138) (0.005011547 0.02800692 -0.005009693) (0.005051995 0.0260113 -0.004035912) (-0.004041695 0.03002149 -0.005150952) (-0.005123392 0.03002386 -0.004034691) (-0.00202498 0.03002206 -0.005082828) (-0.003020194 0.03199435 -0.005115959) (-0.003044427 0.030021 -0.004066126) (1.215874e-06 0.030021 -0.005096027) (-0.001013685 0.03202616 -0.005084385) (-0.001015005 0.0300202 -0.004082048) (0.002016882 0.03001906 -0.005083748) (0.001008006 0.03200991 -0.005088751) (0.001014177 0.03001918 -0.004085755) (0.004020006 0.03000665 -0.005041253) (0.002985313 0.03197795 -0.005073315) (0.003048957 0.03002694 -0.004089193) (0.005152177 0.03000219 -0.004034234) (-0.002004389 0.03381081 -0.004908589) (-0.003009665 0.03420853 -0.004124741) (1.063869e-06 0.03417457 -0.005076124) (-0.001019817 0.03401999 -0.004065422) (0.001996628 0.03378018 -0.004855298) (0.00102072 0.03401876 -0.004066809) (0.003030504 0.03419306 -0.00412398) (-0.001827956 -0.03766793 -0.002781261) (-0.00298357 -0.03595615 -0.002998306) (-0.002753253 -0.03757571 -0.001795662) (-5.350574e-06 -0.03795919 -0.002981677) (-0.001051279 -0.03606846 -0.00307266) (-0.001011196 -0.03804746 -0.002053337) (0.001835899 -0.03764865 -0.002763309) (0.001057497 -0.03610765 -0.003109178) (0.001022219 -0.03803382 -0.002067553) (0.003019659 -0.0360012 -0.003020979) (0.002799982 -0.03767041 -0.001824226) (-0.004071242 -0.03404964 -0.003055531) (-0.005016688 -0.0320172 -0.003033158) (-0.00487753 -0.03379235 -0.002007987) (-0.00205634 -0.03404168 -0.00309062) (-0.003060188 -0.03203389 -0.003084095) (-0.003067681 -0.03403975 -0.002065902) (2.562237e-06 -0.03403875 -0.003067813) (-0.001022771 -0.03202933 -0.003073926) (-0.001032376 -0.0340413 -0.002060144) (0.002048989 -0.03403823 -0.003074583) (0.00102154 -0.03203245 -0.00307073) (0.001029367 -0.03404607 -0.002059076) (0.004116785 -0.03418402 -0.002987276) (0.003037534 -0.03201729 -0.003036203) (0.003063543 -0.03402638 -0.002039576) (0.005093801 -0.03198734 -0.00300883) (0.004853098 -0.03378043 -0.001981618) (-0.005842228 -0.02995735 -0.002993632) (-0.004058677 -0.03001688 -0.003054802) (-0.005051549 -0.02800707 -0.003030285) (-0.005052001 -0.03001289 -0.00201799) (0.004063495 -0.03001373 -0.003033911) (0.005881531 -0.02996388 -0.002987563) (0.005082668 -0.02801258 -0.003039634) (0.005054174 -0.03000863 -0.00202036) (-0.006070754 -0.02601119 -0.003024134) (-0.0071691 -0.02425542 -0.003143977) (-0.007144754 -0.02624851 -0.00201695) (-0.004056137 -0.02601138 -0.003046873) (-0.005064971 -0.02401098 -0.003033835) (-0.005071681 -0.02601232 -0.002023084) (0.004068227 -0.02601101 -0.003047052) (0.006067305 -0.02601378 -0.003040567) (0.005073548 -0.02400886 -0.003037162) (0.005085717 -0.02601107 -0.002031553) (0.007163555 -0.02427204 -0.003131928) (0.007160192 -0.02623092 -0.002012121) (-0.007865661 -0.02195229 -0.00296539) (-0.006061418 -0.02201086 -0.003025592) (-0.007055922 -0.02000563 -0.00302569) (-0.007065994 -0.02201415 -0.002009214) (0.006066813 -0.02200727 -0.003030018) (0.007854835 -0.02195315 -0.002972917) (0.007055702 -0.0200069 -0.003024957) (0.007061312 -0.02200763 -0.00201414) (-0.008172818 -0.01827581 -0.003152094) (-0.008808905 -0.01774365 -0.001862886) (-0.006063781 -0.01800734 -0.003029113) (-0.007086525 -0.01600788 -0.00303593) (-0.007070834 -0.0180062 -0.002017866) (0.006065789 -0.01800511 -0.003027327) (0.008183041 -0.01828565 -0.003152452) (0.007072997 -0.01600595 -0.00302284) (0.007069139 -0.01800496 -0.002015129) (0.008819967 -0.01773269 -0.001870407) (-0.00806293 -0.01400497 -0.003022029) (-0.008994466 -0.01199774 -0.002999534) (-0.009068561 -0.01402132 -0.002023064) (-0.006059638 -0.0140039 -0.003026323) (-0.007072204 -0.01200419 -0.003029763) (-0.007074497 -0.01400431 -0.002019974) (0.006057947 -0.01400316 -0.003024557) (0.008067215 -0.01400774 -0.003009519) (0.007074889 -0.01200282 -0.003024973) (0.007074596 -0.01400298 -0.002015649) (0.009000755 -0.01199745 -0.002988025) (0.009083191 -0.01402094 -0.002007748) (-0.008081761 -0.01000503 -0.003024754) (-0.009139181 -0.007986627 -0.00311701) (-0.009034987 -0.01000376 -0.002010515) (0.008092987 -0.01000304 -0.003023052) (0.009164354 -0.008024614 -0.003128984) (0.008987336 -0.0100021 -0.002005914) (-0.008087222 -0.0060019 -0.003016335) (-0.009008845 -0.004000529 -0.003001842) (-0.009075406 -0.006002112 -0.002007745) (0.00806039 -0.006002429 -0.003016186) (0.009024281 -0.00400142 -0.003013479) (0.009032136 -0.006002114 -0.002003622) (-0.008068664 -0.002000436 -0.003028478) (-0.009096577 1.091227e-07 -0.003028697) (-0.009071864 -0.002001833 -0.002020581) (0.008077028 -0.002000726 -0.003025945) (0.009077605 -1.053319e-06 -0.003021227) (0.00910088 -0.001997696 -0.002005825) (-0.008065038 0.002001355 -0.003024112) (-0.008992229 0.004000625 -0.003003087) (-0.009065591 0.001999279 -0.002010517) (0.008065226 0.002000812 -0.003022979) (0.009005935 0.00400051 -0.003002264) (0.009081336 0.002001018 -0.002023606) (-0.008063346 0.006000484 -0.003025349) (-0.009194441 0.00800295 -0.003127693) (-0.009067608 0.006002426 -0.002008404) (0.008053966 0.006004474 -0.00302109) (0.009231068 0.008035049 -0.003165691) (0.009078593 0.006001706 -0.002014545) (-0.008082934 0.01000484 -0.003025405) (-0.009021272 0.01200093 -0.00298701) (-0.009022224 0.009999444 -0.002005919) (-0.00707659 0.01200575 -0.003030655) (0.00808949 0.01000597 -0.003024909) (0.007092747 0.01200418 -0.003033116) (0.009027215 0.01200021 -0.002997524) (0.009035552 0.01001029 -0.002002739) (-0.008065061 0.01400538 -0.003017707) (-0.009072652 0.01401993 -0.002014546) (-0.00605827 0.01400479 -0.003027211) (-0.007071506 0.0160072 -0.003024168) (-0.007068858 0.01400407 -0.002018531) (0.006077886 0.01400549 -0.003033405) (0.0081115 0.01400382 -0.003027769) (0.007100187 0.01601036 -0.003038901) (0.007093483 0.01400762 -0.002024778) (0.009104457 0.01402498 -0.002023284) (-0.008192272 0.01827495 -0.003133227) (-0.008814443 0.01773444 -0.001877024) (-0.006063785 0.01800826 -0.003026266) (-0.007066925 0.02001232 -0.003023063) (-0.007074041 0.01800843 -0.002017268) (0.00608024 0.01800886 -0.003035272) (0.008157784 0.01825381 -0.003138671) (0.007054467 0.02000679 -0.003017315) (0.007082433 0.01800792 -0.002017642) (0.008817292 0.01771349 -0.001850564) (-0.007858009 0.02195087 -0.00298167) (-0.006067758 0.0220059 -0.003025117) (-0.007179054 0.02425365 -0.003138082) (-0.007068079 0.02200831 -0.002014692) (-0.005065209 0.02400833 -0.003025167) (0.006082866 0.02200763 -0.003035973) (0.005072698 0.02401077 -0.003033638) (0.007814096 0.02175518 -0.002858854) (0.007145412 0.02402256 -0.003113145) (0.007055992 0.02200565 -0.002014053) (-0.00606136 0.02600652 -0.003023836) (-0.00715773 0.02623198 -0.00200828) (-0.004060819 0.02601348 -0.003036537) (-0.005078596 0.02801959 -0.003039967) (-0.005080384 0.02601571 -0.002021745) (0.004060975 0.02601519 -0.003043702) (0.006080557 0.02600675 -0.003030047) (0.005072804 0.02801612 -0.003043109) (0.005079957 0.026014 -0.002024827) (0.007158021 0.02621822 -0.002014791) (-0.005896167 0.02996757 -0.002999828) (-0.004067997 0.03001894 -0.003041529) (-0.005112671 0.03199188 -0.00302176) (-0.005062051 0.03001474 -0.002015412) (-0.003043203 0.03202063 -0.003040312) (-0.001019994 0.03202559 -0.00306584) (0.001020372 0.0320258 -0.003073501) (0.004077008 0.03003101 -0.003072084) (0.003061847 0.0320303 -0.003066836) (0.005886458 0.02997329 -0.00299207) (0.005027809 0.03201294 -0.003028579) (0.005050718 0.03001025 -0.002019477) (-0.00413031 0.03420152 -0.003025942) (-0.004883742 0.03380099 -0.001999375) (-0.002043111 0.03403721 -0.003077486) (-0.003019169 0.03601005 -0.003033925) (-0.003072495 0.03403122 -0.002039962) (3.061075e-06 0.03403511 -0.003069436) (-0.001032963 0.03606973 -0.003078754) (-0.001025653 0.03404218 -0.00205306) (0.002041655 0.03403428 -0.003081491) (0.00104948 0.03607518 -0.003138137) (0.001026897 0.03404239 -0.00206056) (0.004063216 0.03401914 -0.003037372) (0.003030239 0.03599839 -0.003029582) (0.003066292 0.03402418 -0.00204687) (0.004843474 0.03379075 -0.001992908) (-0.001821717 0.03764664 -0.002769733) (-0.002694947 0.03766209 -0.001784) (-7.004864e-06 0.03795407 -0.002984504) (-0.001028094 0.03805616 -0.002049381) (0.001814016 0.03766854 -0.002754602) (0.001020103 0.03804557 -0.002046211) (0.002702802 0.0375736 -0.001743993) (-0.0009433395 -0.03962095 -0.0009255659) (0.0008796213 -0.03957953 -0.0009328949) (-0.002054952 -0.0380437 -0.001021326) (-0.003093427 -0.03604169 -0.001023091) (-0.00301649 -0.03797051 3.911046e-06) (7.19452e-06 -0.03802837 -0.001022322) (-0.001034765 -0.03604589 -0.001032119) (-0.001035992 -0.03803679 8.964519e-06) (0.002060905 -0.0380699 -0.001020308) (0.001040214 -0.0360609 -0.001032769) (0.001063961 -0.03810095 9.221939e-06) (0.003076202 -0.03605783 -0.001021501) (0.003026286 -0.03801389 1.993377e-06) (-0.004048348 -0.03401426 -0.001017828) (-0.005076106 -0.03201791 -0.001000628) (-0.005117753 -0.03420408 4.989793e-06) (-0.002055919 -0.03403533 -0.001032949) (-0.003058066 -0.03202362 -0.001029033) (-0.00306261 -0.03402538 -2.4566e-06) (0.002048935 -0.03403876 -0.00102375) (0.00401696 -0.03400581 -0.001006302) (0.003047008 -0.03201682 -0.001015814) (0.00304098 -0.03402199 4.4127e-06) (0.005075305 -0.03198358 -0.001006518) (0.005088709 -0.03416001 1.550968e-06) (-0.00601751 -0.03000306 -0.001002906) (-0.007026533 -0.02798751 -0.000999629) (-0.00406496 -0.03001552 -0.001018703) (-0.005075543 -0.02801394 -0.001009006) (-0.005071045 -0.03000984 1.679314e-07) (0.004062293 -0.03000933 -0.001012868) (0.005999936 -0.03000097 -0.0009969055) (0.005076725 -0.02801207 -0.001013233) (0.00507049 -0.03001009 5.031126e-06) (0.007023703 -0.02798647 -0.0009929248) (-0.006081883 -0.02601113 -0.001004945) (-0.007058182 -0.02400937 -0.001007912) (-0.007041389 -0.02600656 1.307979e-06) (0.006097589 -0.02601376 -0.001016038) (0.007048656 -0.0240054 -0.001006326) (0.007044638 -0.02601371 -4.298952e-07) (-0.008168288 -0.02222457 -0.000993819) (-0.006084059 -0.02201498 -0.001008873) (-0.007088226 -0.02001096 -0.001007213) (-0.007116578 -0.0220185 -1.21513e-06) (0.006076153 -0.02200826 -0.00101039) (0.008149849 -0.0222345 -0.001010729) (0.007080066 -0.02000779 -0.001008558) (0.007089189 -0.0220103 -3.196287e-06) (-0.008033322 -0.01800153 -0.001000821) (-0.009057275 -0.0160086 -0.001002401) (-0.008957833 -0.01793992 3.946096e-07) (-0.006061965 -0.01800648 -0.001008171) (-0.007063666 -0.01600395 -0.001007508) (-0.007068073 -0.01800682 5.548123e-07) (0.006060037 -0.01800501 -0.001008563) (0.008032709 -0.01800481 -0.001004952) (0.007061276 -0.01600326 -0.00100814) (0.007065848 -0.01800521 -2.271194e-06) (0.009067451 -0.01601821 -0.001007983) (0.008930178 -0.01794258 1.117663e-06) (-0.008098071 -0.01400758 -0.001007308) (-0.009008131 -0.01200054 -0.0009993363) (-0.00899752 -0.01399948 -9.143585e-07) (0.008075335 -0.01400435 -0.001010776) (0.008963041 -0.01199901 -0.001002365) (0.008971146 -0.01399881 7.853405e-07) (-0.008072036 -0.010004 -0.001004712) (-0.009129134 -0.008004001 -0.001002564) (-0.009109217 -0.0100037 9.812631e-07) (0.008039698 -0.01000189 -0.001004373) (0.009075292 -0.008003187 -0.001000444) (0.009037421 -0.01000125 1.367133e-06) (-0.009808132 -0.005748345 -0.0008695694) (-0.008082797 -0.00600166 -0.001005408) (-0.009017347 -0.004000245 -0.001004992) (-0.009056569 -0.005999048 -1.466275e-06) (0.008085451 -0.006003426 -0.001003134) (0.009095305 -0.004004943 -0.001004316) (0.009178908 -0.006008649 4.248585e-06) (-0.0098749 -0.001997694 -0.0009956107) (-0.008021557 -0.002000756 -0.001006767) (-0.008985459 7.543542e-07 -0.001002906) (-0.008954359 -0.001997018 9.263944e-07) (0.008043715 -0.002001134 -0.001005904) (0.009862054 -0.001994383 -0.0009900154) (0.008994713 -7.176805e-07 -0.001003558) (0.008968234 -0.002000439 1.959523e-06) (-0.009873989 0.001998274 -0.0009902539) (-0.008015651 0.002001357 -0.001009246) (-0.009011207 0.004001362 -0.001012551) (-0.008953288 0.001999418 -2.075186e-06) (0.008020036 0.002001144 -0.001005886) (0.009889703 0.001997772 -0.0009893043) (0.0090125 0.004001071 -0.001005213) (0.008960674 0.001999369 2.924718e-07) (-0.009825446 0.005739979 -0.0008676748) (-0.008079711 0.006001002 -0.001006581) (-0.00912523 0.008003136 -0.001002823) (-0.009114881 0.006000969 -9.983902e-07) (0.008063668 0.005998813 -0.001007065) (0.00982926 0.005990118 -0.0009874997) (0.009129131 0.007994301 -0.001002896) (0.008991163 0.005997104 2.323263e-06) (-0.008068248 0.01000184 -0.001005826) (-0.008999509 0.01200098 -0.001003865) (-0.009108208 0.01000149 5.901213e-07) (0.008082169 0.0100034 -0.001005828) (0.009012902 0.0120024 -0.001004556) (0.009138329 0.01000034 9.611581e-07) (-0.008087658 0.01401129 -0.001014761) (-0.009061953 0.01600311 -0.001003212) (-0.009001298 0.01400503 -8.907377e-07) (-0.007063372 0.01600503 -0.001010149) (0.008099383 0.01401055 -0.001011638) (0.007075029 0.01600824 -0.001009609) (0.009067181 0.01601632 -0.001005965) (0.008991871 0.01399967 2.439588e-07) (-0.00803946 0.01800403 -0.001006934) (-0.008940974 0.01793995 -1.805671e-06) (-0.00606363 0.01800684 -0.001009239) (-0.007093188 0.02001133 -0.001010109) (-0.007072937 0.0180081 -1.818668e-06) (0.006067401 0.01800627 -0.001008791) (0.008086651 0.01802136 -0.001004319) (0.007080341 0.02000606 -0.001006571) (0.007069983 0.01800651 -1.327343e-06) (0.008950993 0.01794265 1.977338e-07) (-0.008176673 0.02222239 -0.0009997272) (-0.006082739 0.02201089 -0.00100975) (-0.007059067 0.02401031 -0.001007059) (-0.007112826 0.0220171 -2.543017e-06) (0.006082152 0.02200857 -0.001010263) (0.008127648 0.0220251 -0.001005669) (0.007098229 0.02401842 -0.001005993) (0.007076683 0.02200912 -3.066003e-07) (-0.006085123 0.0260153 -0.001007976) (-0.007023722 0.02798845 -0.0009998672) (-0.007034697 0.0260091 -1.459199e-08) (-0.005081757 0.0280189 -0.0010105) (0.00609704 0.02601896 -0.001010477) (0.005072148 0.02801424 -0.001008627) (0.007019948 0.02798778 -0.000995728) (0.00703961 0.02600329 6.279862e-07) (-0.006011357 0.03000349 -0.001000947) (-0.004065723 0.03001699 -0.001013043) (-0.005060293 0.03201184 -0.001007741) (-0.005070985 0.03001677 -4.276641e-07) (-0.003056917 0.03202132 -0.001016232) (0.004060037 0.03001257 -0.001015799) (0.003050203 0.03201661 -0.001022717) (0.005998585 0.02999859 -0.0009958554) (0.005054821 0.03199585 -0.001011732) (0.005067656 0.0300116 4.207441e-06) (-0.004048225 0.03400992 -0.001011268) (-0.005127365 0.03419379 -2.983045e-06) (-0.002053439 0.03403841 -0.001020954) (-0.003087948 0.03606385 -0.001011604) (-0.003063098 0.03402951 4.566042e-06) (-0.001038573 0.03605926 -0.001032843) (0.002047113 0.03403438 -0.00102541) (0.001039122 0.03606849 -0.001031313) (0.00401821 0.03399421 -0.001017438) (0.003071945 0.03602978 -0.001030993) (0.003042701 0.03402023 2.582782e-06) (0.005090116 0.03417073 1.945792e-06) (-0.002051587 0.0380534 -0.001019013) (-0.003016434 0.03796793 5.485179e-06) (-1.313676e-05 0.03807082 -0.001038121) (-0.0009506318 0.03960552 -0.0008562715) (-0.001058628 0.03803595 7.630629e-06) (0.002267951 0.03846981 -0.001193415) (0.0008267221 0.03959189 -0.0009729617) (0.001071375 0.0380929 -3.652966e-06) (0.003022851 0.03801762 -3.972861e-06) (-0.0009871028 -0.03960676 0.0008223421) (0.0008346175 -0.0395521 0.0009867635) (-0.002043254 -0.0380536 0.001035462) (-0.003093636 -0.0360446 0.001014695) (-0.002712559 -0.03763135 0.00181249) (-7.504142e-06 -0.03806443 0.001063306) (-0.001036273 -0.03606092 0.001042017) (-0.001026752 -0.03807606 0.00206651) (0.002238676 -0.03848776 0.001249691) (0.001039164 -0.03606598 0.001041965) (0.001035496 -0.03804053 0.002061105) (0.003056102 -0.03604289 0.001035042) (0.00267981 -0.03759601 0.001813241) (-0.004048974 -0.03400726 0.001020953) (-0.005069788 -0.03200152 0.00100972) (-0.004885484 -0.03380376 0.002013104) (-0.002055182 -0.03403672 0.001024564) (-0.003058214 -0.03201825 0.001019623) (-0.003073676 -0.03403221 0.002043106) (-0.0010274 -0.03404093 0.002060441) (0.00204384 -0.03403479 0.001025888) (0.001022031 -0.03403623 0.00205271) (0.004030648 -0.03400545 0.001013247) (0.003053041 -0.03201805 0.001019127) (0.003058702 -0.03402256 0.002033547) (0.005084646 -0.03202644 0.001020342) (0.004862612 -0.0337954 0.001986512) (-0.006020663 -0.03000451 0.001000844) (-0.007022812 -0.02799085 0.001000677) (-0.004069941 -0.03001088 0.00101403) (-0.00507987 -0.02801129 0.001008471) (-0.005063372 -0.03000982 0.002016936) (0.004074661 -0.03001536 0.001017578) (0.006225846 -0.03030037 0.001152642) (0.005084378 -0.02801613 0.001015031) (0.005066092 -0.03001316 0.002021338) (0.007011706 -0.02800011 0.000994873) (-0.006086987 -0.02601478 0.001006712) (-0.007047711 -0.02401019 0.001001617) (-0.00716328 -0.02621902 0.002010107) (-0.00508337 -0.02601353 0.002023283) (0.006080532 -0.02601558 0.001011652) (0.005077172 -0.02601244 0.002025047) (0.007051391 -0.02400493 0.001007921) (0.007158105 -0.0262627 0.002142481) (-0.008172931 -0.02221358 0.0009841626) (-0.006076741 -0.02201192 0.001005831) (-0.007083171 -0.02001251 0.001004779) (-0.007050128 -0.02200652 0.002006278) (0.006080444 -0.02201002 0.001009555) (0.00816584 -0.02224015 0.0009905141) (0.007083644 -0.02000865 0.00100346) (0.007078045 -0.02201041 0.002014403) (-0.008033972 -0.01800194 0.00100506) (-0.009057588 -0.01600012 0.00100572) (-0.008810624 -0.01773516 0.001869128) (-0.006059815 -0.01800591 0.001005942) (-0.007058243 -0.01600264 0.001004848) (-0.007069543 -0.01800355 0.002011946) (0.006062827 -0.01800505 0.001007268) (0.008045643 -0.01799925 0.0009991701) (0.007064281 -0.01600181 0.001006373) (0.007078607 -0.01800542 0.002014988) (0.00906554 -0.01601673 0.00100339) (0.008819574 -0.01773576 0.001866246) (-0.008083732 -0.01400414 0.001003484) (-0.008999038 -0.01200283 0.00100054) (-0.009069405 -0.01401809 0.002010996) (-0.00705818 -0.01400281 0.002009598) (0.00808804 -0.0139992 0.001007137) (0.007072788 -0.01400243 0.002018954) (0.008959476 -0.01199776 0.0009955106) (0.009106921 -0.01402248 0.00202581) (-0.008066187 -0.01000415 0.001004746) (-0.009124159 -0.008003409 0.001002717) (-0.009016197 -0.01000822 0.002002567) (0.008037525 -0.01000115 0.001005) (0.009069456 -0.008002557 0.001002148) (0.008989355 -0.01000093 0.002004729) (-0.009805706 -0.005737286 0.0008615516) (-0.008078991 -0.00600059 0.001004554) (-0.009022315 -0.003994458 0.001004946) (-0.009070079 -0.006000724 0.002005575) (0.008087809 -0.006004048 0.001005692) (0.009115064 -0.004000165 0.001009872) (0.009038109 -0.006003263 0.002005112) (-0.009871745 -0.001998666 0.0009946084) (-0.008016845 -0.001996911 0.001007671) (-0.008984471 4.365283e-07 0.001005362) (-0.009069088 -0.001998468 0.002025392) (0.008038374 -0.002001618 0.001008429) (0.009848427 -0.001987325 0.0009971354) (0.008988721 5.638345e-07 0.001003758) (0.009077864 -0.002003226 0.002007665) (-0.009873691 0.001999589 0.0009935509) (-0.00801706 0.002000511 0.001005407) (-0.009017927 0.004000788 0.0009982322) (-0.009074559 0.001999215 0.002014062) (0.008020763 0.002000167 0.001005524) (0.009877947 0.001999397 0.0009957566) (0.009015002 0.00399948 0.001004363) (0.009086546 0.002001828 0.002012302) (-0.00980103 0.005706901 0.0008631524) (-0.008079714 0.006001442 0.001005563) (-0.009132019 0.008003827 0.001007022) (-0.009072163 0.006002438 0.002007516) (0.008071373 0.005999901 0.001008199) (0.009839844 0.005969387 0.0009814682) (0.009153495 0.008003052 0.001024245) (0.009088156 0.006000454 0.002005424) (-0.00806782 0.01000051 0.001004544) (-0.009004759 0.01199871 0.0009991113) (-0.009030951 0.009999143 0.002008229) (0.008083503 0.01000142 0.001010974) (0.009013006 0.01200038 0.001007773) (0.009047744 0.01000117 0.002010535) (-0.008086471 0.01400319 0.0009991951) (-0.009050082 0.0160049 0.001000377) (-0.009069445 0.01402269 0.00200812) (-0.007059105 0.0160032 0.001003887) (-0.007060924 0.01399987 0.002010152) (0.008089219 0.01400999 0.001015724) (0.007066225 0.01600492 0.001006909) (0.007075112 0.01400444 0.002018805) (0.009070462 0.01601484 0.0009992272) (0.009122644 0.01402138 0.002014197) (-0.008038743 0.01800085 0.001006173) (-0.008827387 0.01773713 0.001869482) (-0.006059781 0.01800478 0.001006404) (-0.007086137 0.02000781 0.001006204) (-0.007064896 0.01800442 0.002013602) (0.006064376 0.01800468 0.001008218) (0.008031893 0.01800364 0.001001181) (0.007074434 0.02000461 0.001007383) (0.007084682 0.01800591 0.002018566) (0.00883025 0.01772587 0.001856036) (-0.008158439 0.02222725 0.0009926105) (-0.006079597 0.02200846 0.001006962) (-0.007054613 0.02400289 0.001001785) (-0.007054662 0.02200455 0.002007718) (0.006084536 0.02200846 0.001007679) (0.008126114 0.02202554 0.001004591) (0.007097646 0.02401422 0.001002198) (0.007068496 0.02200636 0.002010792) (-0.006087723 0.02601244 0.001008527) (-0.007019052 0.02798833 0.001001486) (-0.007152659 0.02622799 0.00201669) (-0.005078406 0.02801621 0.001010332) (-0.005084661 0.0260141 0.002029939) (0.006105074 0.02601919 0.00101247) (0.005089269 0.02801695 0.001012595) (0.00508248 0.02601536 0.002026144) (0.007018201 0.02798433 0.0009981989) (0.007159182 0.02623659 0.002020373) (-0.006018157 0.03000298 0.001000068) (-0.004064488 0.03001693 0.001012047) (-0.005060309 0.03200073 0.001008113) (-0.005062058 0.03001511 0.002014032) (-0.00305519 0.03202395 0.001018559) (0.004077426 0.03001847 0.001017387) (0.003057639 0.0320219 0.001024478) (0.006223768 0.03029517 0.001139645) (0.005099246 0.03201119 0.001012366) (0.005071198 0.03002188 0.002016988) (-0.004044516 0.03401744 0.001020544) (-0.004884732 0.03380492 0.00200462) (-0.002053316 0.03403944 0.001027867) (-0.003084726 0.03605663 0.001021538) (-0.003071023 0.03404115 0.002035672) (-0.00103715 0.03606127 0.001048936) (-0.001027562 0.03404469 0.00205898) (0.002051322 0.03404001 0.001033462) (0.001039508 0.03606359 0.001043181) (0.00102755 0.03404675 0.002064885) (0.00403211 0.0340048 0.001018964) (0.003077074 0.03604782 0.001041221) (0.003066485 0.03403581 0.002055892) (0.004874793 0.03378137 0.002004507) (-0.002036934 0.03805132 0.001026889) (-0.002692861 0.03767224 0.001807556) (-1.739752e-05 0.03805431 0.001070452) (-0.000984165 0.03963446 0.0008775854) (-0.001150023 0.0384663 0.00228017) (0.002065302 0.03805683 0.001037832) (0.0008109661 0.03957343 0.0009490724) (0.001029802 0.03804537 0.002072271) (0.002780164 0.03768056 0.001855643) (-0.001837335 -0.03770079 0.002751227) (-0.003000265 -0.03600037 0.003011539) (-1.81397e-06 -0.0380252 0.003033037) (-0.001017713 -0.03605426 0.00310541) (0.001796265 -0.03766133 0.002750686) (0.001031609 -0.03606444 0.003083529) (0.00299655 -0.03599004 0.00299528) (-0.00411856 -0.03418857 0.002998533) (-0.005120328 -0.0319958 0.003008667) (-0.002048926 -0.03404147 0.003082861) (-0.003040407 -0.03201839 0.003042243) (-0.003030889 -0.03421521 0.004109692) (-6.701352e-08 -0.03403159 0.003070506) (-0.001019954 -0.032026 0.003069459) (-0.001014076 -0.03401907 0.004072156) (0.002029762 -0.0340233 0.003060331) (0.001017452 -0.03202111 0.003062926) (0.0010182 -0.03402156 0.004069271) (0.004089996 -0.03417737 0.002996073) (0.003037757 -0.03201304 0.00303554) (0.002994653 -0.03418909 0.004103631) (0.005063352 -0.03200651 0.003021775) (-0.005887251 -0.02996891 0.002997383) (-0.004065962 -0.03001169 0.003039461) (-0.005077173 -0.02801448 0.003028765) (-0.005112504 -0.03000458 0.004007997) (-0.003047289 -0.03001976 0.004076196) (-0.001015699 -0.03002258 0.004081333) (0.001016649 -0.03001778 0.004077619) (0.004071081 -0.03001579 0.003039886) (0.003040472 -0.03001433 0.00407081) (0.005878112 -0.02996949 0.002979451) (0.005064286 -0.02800945 0.00303256) (0.005128641 -0.03001779 0.004032149) (-0.006078093 -0.02601254 0.003034912) (-0.007158507 -0.02425324 0.003144406) (-0.004068052 -0.02601421 0.003044495) (-0.005079654 -0.02401504 0.003041435) (-0.005079 -0.026015 0.004058324) (-0.003046318 -0.02601632 0.004073791) (0.004063712 -0.02601128 0.003046615) (0.003047185 -0.02601422 0.004074918) (0.006087763 -0.02601168 0.003020989) (0.005078109 -0.02401193 0.003036736) (0.005059821 -0.0260067 0.004046908) (0.007180581 -0.0242771 0.00313536) (-0.007839218 -0.02196172 0.002967113) (-0.006066525 -0.02201045 0.003026015) (-0.0070598 -0.02000721 0.003020593) (-0.007120727 -0.02225323 0.004119824) (-0.005068708 -0.02200945 0.004048442) (0.006080857 -0.02201387 0.003033601) (0.005068532 -0.02201185 0.004051514) (0.007859076 -0.02195664 0.002977885) (0.00706912 -0.02001907 0.003026438) (0.007146018 -0.02201803 0.004112668) (-0.008182648 -0.01827462 0.003155954) (-0.008780624 -0.01572492 0.002848465) (-0.006063013 -0.01800418 0.003023276) (-0.007060527 -0.01600306 0.003014778) (-0.007034863 -0.01800181 0.004018783) (0.006072063 -0.01800796 0.00303355) (0.008186463 -0.01827351 0.003151953) (0.007086256 -0.01600667 0.0030345) (0.007045146 -0.01800318 0.004029727) (0.008805338 -0.01571397 0.002883025) (-0.008059662 -0.01400093 0.003009519) (-0.009006851 -0.01200085 0.002999841) (-0.006046731 -0.01400315 0.003019054) (-0.0070566 -0.01200442 0.003019243) (-0.007046321 -0.01400532 0.004025934) (0.006060218 -0.01400345 0.003029695) (0.008092105 -0.01400046 0.003034018) (0.007073182 -0.01200305 0.003029181) (0.007075256 -0.01400621 0.004040076) (0.008994154 -0.01199723 0.002985423) (-0.00806261 -0.01000676 0.003020029) (-0.009184363 -0.008002621 0.003137332) (-0.00885644 -0.009998233 0.003878391) (-0.00706439 -0.01000297 0.004034269) (0.008063127 -0.01000235 0.003017358) (0.007060483 -0.01000203 0.004032347) (0.00911702 -0.008003689 0.003020306) (0.008815592 -0.009962364 0.003860191) (-0.008060538 -0.006000166 0.003021429) (-0.009000213 -0.003999163 0.00300301) (-0.008968337 -0.005998631 0.003957333) (-0.007055257 -0.006000698 0.004029276) (0.008074792 -0.006004081 0.003028044) (0.007067665 -0.006001574 0.004032915) (0.008996439 -0.003998954 0.00299959) (0.008892316 -0.00599955 0.003986617) (-0.008070423 -0.002000419 0.003027283) (-0.009104287 1.653515e-07 0.003031313) (-0.009070382 -0.001999293 0.004037106) (-0.007071178 -0.0020015 0.004039664) (0.00806142 -0.002002135 0.003023391) (0.00706273 -0.002001706 0.004032353) (0.009091715 -1.759747e-06 0.003036317) (0.009043634 -0.001998324 0.004019996) (-0.008069305 0.002000766 0.003023597) (-0.008996649 0.004001127 0.003012445) (-0.009074345 0.001996554 0.004034992) (-0.007067213 0.002000728 0.004036426) (0.008072589 0.001999731 0.003019776) (0.007065009 0.001999629 0.004028291) (0.009018863 0.00400009 0.003006162) (0.00906898 0.001998862 0.004043475) (-0.008061635 0.006007808 0.00302344) (-0.009178689 0.00800692 0.003153098) (-0.00895999 0.005999916 0.003971338) (-0.007053923 0.006001281 0.004030764) (0.008056214 0.005998661 0.003010478) (0.007055982 0.005999678 0.004029012) (0.00923112 0.008034527 0.0031421) (0.008988013 0.006002911 0.003992481) (-0.008072784 0.01000104 0.00302251) (-0.009015733 0.01200138 0.003002719) (-0.00884994 0.009998571 0.003882368) (-0.007066529 0.01199899 0.003023754) (-0.007070625 0.01000102 0.004039378) (0.008081733 0.01000095 0.003031321) (0.007075644 0.01200288 0.003032433) (0.007072345 0.01000257 0.004044892) (0.009021657 0.01200158 0.003004382) (0.008851686 0.01001066 0.003884582) (-0.008073976 0.01398815 0.003013441) (-0.008821749 0.0157136 0.002821824) (-0.006051142 0.01400114 0.003021482) (-0.007054429 0.01600406 0.003020132) (-0.007076042 0.01400337 0.004031096) (0.006060238 0.01400443 0.003027514) (0.008071918 0.01401134 0.003024396) (0.007074032 0.01600563 0.003024499) (0.007064022 0.01400428 0.004033379) (0.008826147 0.01572544 0.002826701) (-0.008188446 0.01826988 0.003140787) (-0.006055762 0.01800441 0.003024969) (-0.007058606 0.0200029 0.003023042) (-0.007035212 0.01800431 0.004017025) (0.006079508 0.01800905 0.003035119) (0.008180473 0.01826685 0.003133606) (0.007066741 0.02000889 0.003024124) (0.007074907 0.01801098 0.004039973) (-0.007837692 0.02195924 0.002966259) (-0.006069223 0.02200879 0.003032546) (-0.007156936 0.02427428 0.003147399) (-0.007122393 0.02224451 0.004116934) (-0.005075507 0.02401213 0.003042365) (-0.005063919 0.02200903 0.004045602) (0.006086635 0.02200997 0.003030642) (0.005071969 0.02401294 0.003036468) (0.005065434 0.02201098 0.004047667) (0.007842896 0.02174617 0.002879313) (0.0071622 0.02425313 0.003138573) (0.007129586 0.02203335 0.004026189) (-0.006079579 0.0260169 0.003037881) (-0.004065668 0.0260122 0.003048071) (-0.005071296 0.02801299 0.003037285) (-0.005072186 0.02601334 0.004064742) (-0.003047416 0.02601384 0.004074344) (0.004062103 0.02601664 0.003043044) (0.003046144 0.02601741 0.004070826) (0.006069152 0.02602317 0.003041162) (0.005063265 0.0280143 0.003029211) (0.005063573 0.02601765 0.004041065) (-0.005878765 0.02997059 0.002980565) (-0.004058812 0.03001485 0.003032441) (-0.005101887 0.03199518 0.003032995) (-0.005112084 0.0300255 0.004002045) (-0.003038748 0.03201771 0.003034931) (-0.003045907 0.03001494 0.00406656) (-0.001017405 0.03202787 0.00306449) (-0.00101422 0.03001975 0.004074883) (0.001022935 0.03203127 0.003075046) (0.001019787 0.03002341 0.004086641) (0.004081361 0.0300274 0.003048952) (0.003046994 0.03202562 0.003053143) (0.003043581 0.0300194 0.004074649) (0.00585012 0.02996528 0.002989778) (0.005056734 0.03202559 0.00301662) (0.005136627 0.03002037 0.004047715) (-0.004126921 0.03419223 0.003019096) (-0.002042412 0.03403803 0.003067741) (-0.003003114 0.03600264 0.003008722) (-0.0029943 0.03418986 0.004104118) (-9.383612e-07 0.03403697 0.003074007) (-0.001058877 0.03605648 0.003107504) (-0.001005874 0.03402752 0.004070154) (0.002045188 0.03404694 0.003098977) (0.001024132 0.036079 0.003084619) (0.001024444 0.03402991 0.004076227) (0.004094225 0.03418249 0.003002455) (0.003032346 0.03602881 0.00304088) (0.00301732 0.03420117 0.004135287) (-0.001823646 0.03763053 0.002744074) (-3.047186e-06 0.03802482 0.003032214) (0.001852607 0.03764496 0.002780056) (-0.002007027 -0.0338139 0.004926701) (-0.003011213 -0.03199305 0.00511455) (2.525564e-06 -0.03420139 0.005131526) (-0.001009061 -0.03200951 0.005055022) (0.00199652 -0.03380257 0.004888009) (0.001009269 -0.03201416 0.005075606) (0.002989435 -0.03198367 0.005110728) (-0.004036301 -0.0300222 0.005122445) (-0.005007769 -0.02802855 0.005010299) (-0.002024159 -0.03002472 0.005087213) (-0.003043942 -0.02802154 0.005094669) (-0.002998631 -0.0299758 0.005897671) (2.550107e-06 -0.03002452 0.005086438) (-0.001010901 -0.02802157 0.005093562) (-0.0009984719 -0.03001027 0.006045801) (0.002022264 -0.03001176 0.005064439) (0.001018867 -0.02802016 0.00510007) (0.00100488 -0.03001059 0.006048524) (0.004005679 -0.03001725 0.005110202) (0.003042608 -0.02801687 0.005081626) (0.002989086 -0.02996104 0.005888747) (0.005004579 -0.02800689 0.005003481) (-0.005888903 -0.02576476 0.004878782) (-0.00404327 -0.02601331 0.005065493) (-0.005043102 -0.02400887 0.005047262) (-0.004861476 -0.02599244 0.005859068) (-0.002029456 -0.02602024 0.005093413) (-0.003042208 -0.02401677 0.005087064) (-0.003042557 -0.02601582 0.006103495) (-0.001010887 -0.02601987 0.006091655) (0.002033067 -0.02602007 0.005095533) (0.001013402 -0.02602031 0.006099783) (0.004048351 -0.02601194 0.005077428) (0.003039987 -0.02401416 0.005080812) (0.00302956 -0.02602579 0.006087901) (0.005878115 -0.02575671 0.004865587) (0.005028229 -0.02400335 0.005027355) (0.004868324 -0.02575845 0.00587913) (-0.006022223 -0.02200368 0.005013817) (-0.007068098 -0.01998755 0.00498435) (-0.004049565 -0.02200809 0.005074678) (-0.005047572 -0.02000481 0.005054351) (-0.005012496 -0.02200247 0.00601434) (-0.003026954 -0.02201193 0.006078218) (-0.001008774 -0.02201029 0.006078539) (0.001006506 -0.02200707 0.006069148) (0.004047208 -0.02200919 0.005066438) (0.003033958 -0.02200953 0.006075827) (0.006023559 -0.02200124 0.005014154) (0.005057287 -0.02000962 0.005056834) (0.005011092 -0.02200245 0.006016412) (0.007010026 -0.02000382 0.005002302) (-0.006068769 -0.01801153 0.005050109) (-0.007023544 -0.01599902 0.005011327) (-0.006852575 -0.01772971 0.00584279) (-0.005054499 -0.01800417 0.006069697) (-0.003026312 -0.01800542 0.00606956) (-0.001006466 -0.01800606 0.006064003) (0.001006996 -0.01800593 0.006061699) (0.00303232 -0.01800763 0.006071671) (0.006072407 -0.01800098 0.00505874) (0.00505335 -0.01800219 0.006063845) (0.007043611 -0.01600342 0.005025404) (0.006850677 -0.01773454 0.005852391) (-0.007898065 -0.01400134 0.004996388) (-0.006048533 -0.01400607 0.005041166) (-0.007051414 -0.01200379 0.005036787) (-0.007090811 -0.01398469 0.006078865) (-0.005037858 -0.0140067 0.006055355) (-0.003022968 -0.01400281 0.006059027) (0.003024918 -0.01400235 0.006056358) (0.006052831 -0.0140027 0.005045695) (0.005049886 -0.01400253 0.006051484) (0.007909268 -0.01399935 0.00498949) (0.007054039 -0.01200409 0.005049173) (0.007077642 -0.01397174 0.006077115) (-0.008160072 -0.009997083 0.005131637) (-0.006058296 -0.01000276 0.005050816) (-0.007070769 -0.008000864 0.00504503) (-0.007013157 -0.01000033 0.006011085) (-0.005046895 -0.01000342 0.006061661) (0.006057426 -0.01000216 0.005048567) (0.00504435 -0.01000324 0.00605644) (0.00812436 -0.009995942 0.005127239) (0.007063009 -0.007999674 0.005026615) (0.007022083 -0.01000229 0.006014576) (-0.008004196 -0.006000288 0.005002162) (-0.006056731 -0.006001434 0.005047607) (-0.00706662 -0.004002143 0.005051276) (-0.007078479 -0.006002253 0.00607207) (-0.005048755 -0.006001379 0.00605802) (0.006050925 -0.00600099 0.005036409) (0.005042017 -0.00600178 0.006044453) (0.008193919 -0.006262303 0.005139091) (0.007056751 -0.004001057 0.005035575) (0.007054324 -0.006001738 0.006043134) (-0.008073899 -0.002000412 0.005038344) (-0.008824592 -8.215527e-07 0.004837176) (-0.006059285 -0.00200254 0.005049075) (-0.007076513 -2.436104e-06 0.005052348) (-0.007077457 -0.002005018 0.006055716) (-0.00504479 -0.002001288 0.006056656) (0.006059057 -0.002001069 0.00504215) (0.005053772 -0.002001446 0.00605851) (0.008052653 -0.002002206 0.005030131) (0.007064386 -1.32954e-06 0.005032508) (0.007079106 -0.002000078 0.006046002) (0.008842411 3.37797e-05 0.004839111) (-0.008070687 0.002001522 0.005036484) (-0.006055953 0.002000558 0.005048944) (-0.007063774 0.004001261 0.005046973) (-0.007068422 0.002000753 0.006062535) (-0.005045505 0.002001711 0.006062937) (0.006053308 0.002000711 0.005040813) (0.005048196 0.002002478 0.00605988) (0.008049382 0.00199947 0.005019092) (0.007075008 0.004001116 0.005046251) (0.00704325 0.001998701 0.006048156) (-0.00800517 0.006001184 0.005001182) (-0.006056756 0.006001377 0.005047926) (-0.007068586 0.008000944 0.005044885) (-0.007080124 0.006003371 0.006074939) (-0.005050869 0.006001876 0.006059955) (0.006062539 0.00600115 0.005051008) (0.005056379 0.006001567 0.006067161) (0.008013917 0.005999442 0.005011018) (0.007071121 0.00799878 0.005049222) (0.007115987 0.006004147 0.006074795) (-0.008143718 0.009996505 0.005144783) (-0.006064753 0.01000242 0.005049849) (-0.00705656 0.01200061 0.005037748) (-0.007016151 0.01000037 0.006017194) (-0.005049443 0.010005 0.006058163) (0.006062196 0.01000425 0.005052085) (0.005051271 0.01000501 0.00606888) (0.008153889 0.01000135 0.00514282) (0.007066266 0.01200354 0.005047815) (0.007018207 0.01000232 0.006018124) (-0.007901027 0.01400167 0.004987538) (-0.006050392 0.01400211 0.005039291) (-0.007024962 0.01600232 0.005018849) (-0.007092466 0.01398485 0.006082322) (-0.00504328 0.01400615 0.006057879) (-0.003024168 0.01400301 0.00605576) (0.003028111 0.01400332 0.006059137) (0.006063876 0.01400791 0.005054476) (0.005048124 0.01400563 0.006061157) (0.007910911 0.01400114 0.004998009) (0.007021027 0.01600226 0.005022378) (0.007088706 0.0139732 0.00608673) (-0.006061972 0.01800553 0.005047068) (-0.00706919 0.01998763 0.004984876) (-0.006850506 0.01772385 0.00584752) (-0.005054732 0.02000473 0.005048554) (-0.005045986 0.01800163 0.006064392) (-0.003025801 0.01800637 0.006065479) (-0.001006719 0.01800448 0.006063071) (0.001009445 0.01800267 0.006062609) (0.003032374 0.01800321 0.006064324) (0.006066041 0.01800877 0.005053146) (0.005054445 0.02000603 0.005051345) (0.005056174 0.01800485 0.006067567) (0.006938896 0.02001348 0.005015153) (0.006798681 0.01773308 0.005850966) (-0.006020304 0.02200256 0.00500763) (-0.004051735 0.02201121 0.005067198) (-0.005038063 0.02400786 0.00503809) (-0.005016007 0.02200326 0.00602487) (-0.003040243 0.02401576 0.005086793) (-0.003033241 0.0220105 0.006074913) (-0.001011731 0.02200864 0.006077868) (0.001011005 0.02200729 0.006068402) (0.004049387 0.02201146 0.00505945) (0.003043222 0.02401515 0.005077817) (0.003035978 0.02200917 0.006066156) (0.006018933 0.02199998 0.005014349) (0.005032082 0.02400976 0.005033465) (0.005011735 0.02200281 0.00601626) (-0.005894086 0.02576949 0.004877511) (-0.004042512 0.02601588 0.005082489) (-0.005011238 0.02803133 0.005008841) (-0.004865064 0.02576429 0.005871453) (-0.002031692 0.02601783 0.005094701) (-0.003051488 0.02801488 0.005090587) (-0.003042496 0.02601587 0.00609092) (-0.001014409 0.02801802 0.005089553) (-0.001014957 0.02601711 0.006095297) (0.002031013 0.02601832 0.005090264) (0.001015212 0.02801923 0.005097384) (0.00100869 0.02601265 0.00608385) (0.004042035 0.02601294 0.005062651) (0.003043947 0.02802178 0.005095834) (0.003025078 0.02602042 0.006089813) (0.005866724 0.02575622 0.004861323) (0.005016748 0.02800135 0.005023412) (0.004855871 0.02598855 0.005860464) (-0.004010819 0.03001593 0.005110489) (-0.002024824 0.03001619 0.005068895) (-0.003021776 0.03199266 0.005109117) (-0.002996802 0.02997091 0.005888194) (1.105422e-06 0.0300211 0.005091039) (-0.001004831 0.03201033 0.005050756) (-0.001004013 0.03000018 0.00604044) (0.002030811 0.03002305 0.00508574) (0.001012007 0.03201453 0.005080402) (0.001006561 0.03001217 0.006054952) (0.004024397 0.03003295 0.005122278) (0.00302619 0.03201111 0.005122358) (0.003009097 0.02996913 0.005902664) (-0.002011931 0.03381688 0.004923341) (-4.338707e-06 0.03417943 0.005148067) (0.00201657 0.0338211 0.004927511) (-0.001000489 -0.0279885 0.007028458) (0.001000973 -0.02798809 0.007043797) (-0.002015213 -0.02623295 0.007175539) (-0.003149772 -0.0242544 0.007164801) (1.481375e-07 -0.02600733 0.007051434) (-0.001005584 -0.02401136 0.007058339) (0.002014065 -0.02624626 0.007174907) (0.001002501 -0.02400258 0.00704347) (0.003137882 -0.02425708 0.007175761) (-0.004120953 -0.02226027 0.007135685) (-0.004982383 -0.01998686 0.007064068) (-0.002011266 -0.02200499 0.007067784) (-0.003016498 -0.02000817 0.007070512) (-0.002964435 -0.02195529 0.007854643) (-4.861884e-06 -0.02200705 0.00706799) (-0.001004733 -0.02000733 0.0070817) (-0.001010939 -0.02223362 0.008156012) (0.002010561 -0.02200446 0.007049511) (0.001004462 -0.02000707 0.007073641) (0.001010193 -0.02223406 0.008161704) (0.004120428 -0.02201545 0.007157438) (0.003026181 -0.02001115 0.007071786) (0.002881893 -0.02197634 0.007869057) (0.004982907 -0.01998858 0.007070512) (-0.005828206 -0.01771897 0.006850181) (-0.004021692 -0.01800051 0.007048954) (-0.005016882 -0.01600057 0.007032585) (-0.002016171 -0.01800721 0.007076537) (-0.003025475 -0.0160037 0.007069938) (-0.003177426 -0.01827285 0.008183362) (-6.873075e-07 -0.01800948 0.007076986) (-0.00100708 -0.01600644 0.007072006) (-0.001002308 -0.01801101 0.008088561) (0.002014673 -0.01800635 0.007070803) (0.00100645 -0.01600508 0.00707051) (0.001005323 -0.01800866 0.008076327) (0.00404507 -0.01800911 0.007080428) (0.003027122 -0.01600436 0.007068456) (0.003168446 -0.01828537 0.008190498) (0.005840793 -0.01771906 0.006811291) (0.00500974 -0.01600201 0.007017143) (-0.006077641 -0.01398466 0.007091998) (-0.004029248 -0.01400454 0.007062844) (-0.005036145 -0.0120042 0.007056262) (-0.004996302 -0.01399975 0.007912002) (-0.002014706 -0.01400373 0.007071385) (-0.003022187 -0.01200249 0.007073649) (-0.003018173 -0.01400435 0.008066044) (-0.001011695 -0.01400885 0.008077282) (0.002015278 -0.01400371 0.007073289) (0.001013349 -0.01400814 0.008089139) (0.004032763 -0.01400234 0.007054754) (0.003023902 -0.01200182 0.007075307) (0.003017997 -0.01399985 0.008072408) (0.005981438 -0.01398692 0.007070192) (0.005031362 -0.01200112 0.007044632) (0.004900359 -0.01401366 0.007899883) (-0.006005248 -0.01000036 0.007007094) (-0.006914966 -0.007999629 0.006918885) (-0.004033858 -0.01000316 0.007069718) (-0.005036877 -0.008000046 0.007063365) (-0.005119077 -0.01000343 0.008151087) (-0.003022365 -0.01000261 0.00807542) (-0.001006478 -0.01000304 0.008079909) (0.001006804 -0.01000205 0.008083315) (0.00403424 -0.01000216 0.007066442) (0.003019912 -0.01000113 0.008088135) (0.006003821 -0.009999168 0.007000958) (0.00504029 -0.008004978 0.00704818) (0.005104406 -0.009989233 0.008105508) (0.006893174 -0.008000961 0.006884987) (-0.006081061 -0.006003067 0.007094737) (-0.006948559 -0.004010845 0.007031256) (-0.004031526 -0.006000843 0.007060006) (-0.005055026 -0.004001518 0.007076486) (-0.005019766 -0.006000265 0.008033777) (-0.003017592 -0.006001153 0.008056742) (0.004031036 -0.006002067 0.007052574) (0.003028436 -0.00600152 0.008077174) (0.006064174 -0.006002803 0.007058524) (0.005050498 -0.004002201 0.007064053) (0.005005327 -0.006000943 0.008001052) (0.006979807 -0.004018661 0.006975882) (-0.006046925 -0.002000018 0.007072187) (-0.007069895 8.578287e-07 0.007059913) (-0.004035602 -0.002001167 0.007070368) (-0.00503701 9.104082e-07 0.007059324) (-0.005033861 -0.002000928 0.008057301) (-0.003029704 -0.002002016 0.00808289) (0.004036823 -0.002001582 0.007069102) (0.003025297 -0.002001438 0.008080743) (0.00610646 -0.002006793 0.007095058) (0.005046499 7.367956e-08 0.007068246) (0.005030913 -0.00200171 0.008045924) (0.007056218 -3.347107e-07 0.00706071) (-0.006045152 0.002007472 0.007088368) (-0.00703349 0.004012938 0.006946732) (-0.004038122 0.002001362 0.007074991) (-0.005061473 0.004002248 0.007083559) (-0.005032506 0.002001817 0.008059829) (-0.003030189 0.002000764 0.008085255) (0.004041543 0.002001913 0.007075226) (0.003029564 0.002001381 0.008084218) (0.006058547 0.002015232 0.007073897) (0.00506143 0.00400196 0.007089316) (0.005048547 0.002001912 0.008077628) (0.007012095 0.004000012 0.007010258) (-0.006084201 0.006002166 0.007091263) (-0.00692209 0.007999976 0.006912634) (-0.00403291 0.006001595 0.007063027) (-0.005040711 0.008004039 0.007059983) (-0.005019673 0.006000174 0.008029053) (-0.003020363 0.006002464 0.008065701) (0.004037571 0.00600127 0.007069772) (0.003023075 0.006001415 0.008075529) (0.006089164 0.006001364 0.007114129) (0.005059448 0.008002237 0.007080389) (0.005019544 0.006000861 0.008033439) (0.006922043 0.007998824 0.006912281) (-0.006004595 0.01000087 0.007009606) (-0.004032678 0.0100032 0.007063286) (-0.005034875 0.0120051 0.007058996) (-0.005148471 0.01000077 0.008130667) (-0.003021427 0.0120016 0.007065011) (-0.003016808 0.01000162 0.008069192) (-0.001005904 0.01000295 0.008079153) (0.00100809 0.01000381 0.008082824) (0.004038746 0.01000341 0.007078226) (0.003025423 0.01200357 0.007072852) (0.003024164 0.01000104 0.008090166) (0.006018398 0.01000122 0.007025094) (0.005039007 0.01200314 0.007060582) (0.005145167 0.01000145 0.008148707) (0.006837925 0.01171968 0.006798347) (-0.006077635 0.01398453 0.007089553) (-0.004033095 0.01400602 0.007058549) (-0.005015027 0.01600093 0.007031057) (-0.005002127 0.01400063 0.007909759) (-0.002013841 0.01400251 0.007069572) (-0.003024825 0.01600542 0.007065429) (-0.003018554 0.01399156 0.008060071) (-0.001007057 0.01600448 0.007073614) (-0.001008327 0.01400277 0.008085581) (0.002016951 0.01400385 0.00707498) (0.001007428 0.01600228 0.007074464) (0.00100373 0.01400448 0.008092481) (0.004034476 0.01400369 0.007058212) (0.003030586 0.0160037 0.007070577) (0.003032066 0.01400886 0.008090075) (0.006084349 0.01397223 0.007084211) (0.005018435 0.01600153 0.007030879) (0.004996218 0.01399798 0.007890786) (-0.005841537 0.01772495 0.00683028) (-0.004019435 0.01800303 0.007044624) (-0.004981955 0.01998956 0.007070515) (-0.002013565 0.01800743 0.007071643) (-0.003021096 0.0200113 0.007061316) (-0.00315203 0.01828577 0.008197972) (3.437708e-07 0.01800317 0.007082718) (-0.001006652 0.0200069 0.007077587) (-0.001013198 0.01799873 0.008102559) (0.0020189 0.01800132 0.007070319) (0.001010997 0.02000442 0.007076052) (0.001009322 0.01800296 0.008102465) (0.00402502 0.01800423 0.007040644) (0.003032343 0.02000521 0.007057886) (0.003158027 0.01827473 0.008183833) (0.005863023 0.01773422 0.006822592) (0.004985393 0.01998544 0.00707075) (-0.004142476 0.022023 0.007134085) (-0.002017715 0.02200458 0.007075553) (-0.003162853 0.02426209 0.007181069) (-0.002969725 0.02196364 0.007852161) (1.207298e-06 0.02200693 0.007068416) (-0.001008623 0.02400761 0.007062248) (-0.001013657 0.02224621 0.008157251) (0.002011299 0.02200419 0.00704751) (0.00100311 0.02400706 0.007050987) (0.001017547 0.02223537 0.008160329) (0.004127049 0.02225212 0.007130074) (0.003177057 0.02427732 0.00715719) (0.002967802 0.02196432 0.007834447) (-0.002019468 0.02623271 0.007158585) (-7.747849e-07 0.02600874 0.00704607) (-0.001001306 0.02798738 0.007027943) (0.002132101 0.02626416 0.007166828) (0.001004042 0.02800049 0.007037481) (-0.001841042 -0.01769112 0.008829281) (-0.002832421 -0.01572338 0.008820216) (-2.388332e-06 -0.01793815 0.008955549) (-0.001005123 -0.01600893 0.009083074) (0.001840218 -0.01770842 0.008822827) (0.001003442 -0.01600893 0.009074837) (0.00282481 -0.01572282 0.00882564) (-0.002020281 -0.01402507 0.009104012) (-0.003000142 -0.01200277 0.009024761) (1.29465e-07 -0.01400482 0.008980754) (-0.001003361 -0.0120015 0.009012188) (0.002017745 -0.0140325 0.009094758) (0.00100434 -0.01200379 0.009014643) (0.00300487 -0.01200301 0.009034583) (-0.003889919 -0.01001099 0.008864673) (-0.002012462 -0.009997397 0.009042709) (-0.003130975 -0.008274888 0.009181842) (2.081794e-06 -0.01000512 0.009127605) (-0.00151895 -0.008018669 0.009661835) (-0.000626571 -0.008260224 0.009678119) (0.002009265 -0.009995899 0.009056089) (0.0006189563 -0.008257162 0.009681385) (0.001527598 -0.008017071 0.009658833) (0.003869675 -0.01000592 0.008843324) (0.003169065 -0.008040722 0.009223044) (-0.004006136 -0.005999229 0.009018263) (-0.003014244 -0.004000905 0.00906582) (-0.002010044 -0.007005426 0.009620987) (-0.002009839 -0.00500581 0.009635469) (-0.001510662 -0.007000238 0.009108871) (0.0004996509 -0.006998213 0.009049229) (0.003996602 -0.006003668 0.009035241) (0.003018519 -0.004000331 0.009052625) (0.002006112 -0.007001866 0.009617742) (0.0020223 -0.005003697 0.009633331) (-0.00404536 -0.002017473 0.009098455) (-0.00483559 1.01784e-06 0.008761438) (-0.003017698 -1.285477e-06 0.009060112) (-0.002166789 -0.002995735 0.009710479) (-0.002176538 -0.0009998862 0.009741654) (-0.001515242 -0.003002394 0.009019667) (0.004040817 -0.002013928 0.009094244) (0.00301144 3.182804e-07 0.009045458) (0.002141662 -0.002994467 0.00972793) (0.002105613 -0.0009991079 0.009734269) (0.004834276 -3.147664e-05 0.008811543) (-0.004052087 0.002018567 0.009099109) (-0.003025533 0.004001242 0.009059723) (-0.002145253 0.001003637 0.009749179) (-0.002126998 0.002998156 0.009700945) (-0.001511824 0.001000886 0.00903039) (0.004045363 0.002013732 0.00909734) (0.00302302 0.00400155 0.009062877) (0.002146345 0.001001034 0.009747082) (0.002138329 0.002986224 0.009672412) (-0.00399997 0.006003459 0.009015255) (-0.003133292 0.008035958 0.009192479) (-0.002017809 0.005005056 0.009647414) (-0.002019321 0.007004613 0.009601807) (-0.001515561 0.004993106 0.009089532) (0.003999195 0.006003876 0.009034816) (0.003159939 0.00804045 0.009195522) (0.002041908 0.005016004 0.009660397) (0.002013516 0.007005235 0.009617192) (-0.003887518 0.01001168 0.008870327) (-0.002000648 0.01000048 0.009035359) (-0.003002039 0.01200026 0.009030209) (4.760401e-07 0.01000565 0.009129742) (-0.001002458 0.01200144 0.009010648) (-0.001513119 0.008022998 0.009662107) (-0.0006438087 0.008273579 0.009682442) (0.002012348 0.0100044 0.009056823) (0.001004656 0.01200261 0.009010056) (0.0006273381 0.008263014 0.009681423) (0.001514702 0.00802467 0.009658757) (0.003893552 0.0100108 0.008862655) (0.003010545 0.01200377 0.009033909) (-0.002013342 0.01402208 0.009108023) (-0.002827296 0.01571977 0.00881493) (-1.53685e-06 0.01399494 0.008989625) (-0.001006548 0.01601773 0.009090416) (0.002016869 0.01402204 0.009103673) (0.001003882 0.0160134 0.009082402) (0.002831546 0.01572137 0.008826362) (-0.001855888 0.01770974 0.008813845) (-5.441696e-07 0.01794525 0.008958447) (0.001838459 0.01769767 0.008803507) (-0.001345638 -0.006734474 0.009820488) (0.0004889616 -0.006984 0.009883815) (-0.001473714 -0.002999397 0.009838638) (-0.001469192 0.001000731 0.009863375) (-0.001468476 0.004996947 0.009841049) (-0.0004972236 -0.01100065 -0.009024323) (-0.0009978506 -0.01099999 -0.008529798) (-0.00150176 -0.01000075 -0.008545117) (-0.002003845 -0.01100245 -0.008591983) (-0.002005998 -0.009001266 -0.008541517) (-0.00151661 -0.001000889 -0.0090688) (-0.00151378 -0.0009325148 -0.009914975) (-0.00213697 -0.0009172125 -0.009649988) (0.001511764 -0.003002426 -0.00904653) (0.00146957 -0.003003899 -0.00990593) (0.001652552 -0.004277885 -0.009665535) (-0.00151312 0.003001083 -0.009082322) (-0.001515253 0.006999903 -0.009103036) (-0.001498798 0.01099956 -0.009005803) (-0.002025745 0.01106815 -0.009359201) (-0.001503347 0.0100019 -0.008542297) (-0.002006841 0.009003177 -0.008546423) (-0.001001942 0.01099982 -0.00852819) (-0.002016011 0.01100171 -0.008602898) (-0.001503278 0.01200075 -0.008538037) (-0.0005010249 0.01199913 -0.008517419) (-0.0004971969 -0.007003603 0.009043908) (-0.00151808 -0.005024366 0.00910169) (-0.001133324 -0.00725199 0.009673708) (-0.001633769 -0.006027353 0.009660562) (4.260742e-07 -0.006997078 0.009446114) (-0.0004879634 -0.006981916 0.009882545) (-0.001503979 -0.004001238 0.009488583) (-0.001485199 -0.004994639 0.009852913) (-0.001517437 -0.001000125 0.00903195) (-0.001507448 -0.001999304 0.009485339) (-0.001510576 -9.902835e-08 0.009502341) (-0.001464011 -0.0009987059 0.009881089) (0.001510318 0.001000234 0.009032543) (0.00151418 0.002998068 0.009039746) (0.00150934 0.002000156 0.009485236) (0.001507893 5.526311e-07 0.009498096) (0.001460675 0.0009974779 0.009876529) (0.001646618 0.004268845 0.009669843) (0.001459782 0.002983923 0.00989236) (0.001505362 0.004997266 0.009109648) (0.0005056496 0.006999474 0.009039392) (0.001521279 0.007002724 0.009111107) (0.001630948 0.005992119 0.009673094) (0.001377691 0.005012707 0.009826587) (0.001138772 0.00724938 0.009685435) (-8.408557e-07 0.007004788 0.009444195) (0.0004976361 0.006980305 0.009898365) (0.001348808 0.006725618 0.009837748) (0.001501426 -0.009999887 -0.009508062) (0.001498792 -0.01099666 -0.008982394) (0.001043251 -0.009034433 -0.009663103) (0.00050742 -0.009004312 -0.009105376) (0.001507018 -0.009001642 -0.009080193) (0.001516594 -0.008026721 -0.009657113) (0.001003794 -0.01099923 -0.00852983) (0.001506743 -0.01000042 -0.008549431) (0.001625788 -0.005986083 -0.009658111) (0.001529054 -0.006994404 -0.009129667) (0.001359735 -0.006694464 -0.009821349) (0.001513722 -0.005001492 -0.009094037) (0.001393255 -0.005018726 -0.009812396) (0.003388007 -0.002000052 -0.009386508) (0.003690724 -0.003001121 -0.009228986) (0.002989918 -0.001011632 -0.009511368) (0.002521908 -0.001002929 -0.009083997) (0.003647306 -0.001000694 -0.00926049) (0.003389376 2.908032e-06 -0.009346135) (0.003030879 -0.003001166 -0.008577814) (0.003536992 -0.002001938 -0.008608445) (0.003025068 -0.001000995 -0.008586029) (0.003538659 -9.358143e-07 -0.008597369) (0.001506986 0.003000092 -0.009034298) (0.001656564 0.004244335 -0.009687701) (0.001469783 0.002984005 -0.009866485) (0.002117237 0.00298986 -0.0096675) (0.001620582 0.006004814 -0.00972715) (0.00151669 0.005004521 -0.009119497) (0.001402226 0.004701373 -0.009846745) (0.001528534 0.007011727 -0.009158664) (0.00154051 0.008017491 -0.009651195) (0.001507221 0.0100117 -0.009504001) (0.001508594 0.009003269 -0.009054031) (0.001007695 0.01102945 -0.009500713) (0.0004993093 0.01100044 -0.009023011) (0.001506878 0.0110009 -0.009005736) (0.001508559 0.01000237 -0.008537419) (0.001004257 0.01100182 -0.008527284) (0.001514125 -0.007004934 0.009119514) (0.001527804 -0.005002691 0.009109779) (0.001127027 -0.007247595 0.009678794) (0.00160844 -0.006018765 0.009662625) (0.001360312 -0.006709217 0.009825689) (0.00149587 -0.004000029 0.009472234) (0.001485561 -0.004992105 0.009844488) (0.001510758 -0.002998962 0.009022298) (0.00150218 -0.0009994598 0.009024572) (0.001497015 -0.001999499 0.009480597) (0.001474187 -0.002998024 0.00985478) (0.001461091 -0.0010011 0.009852679) (-0.0015082 0.00299978 0.009020247) (-0.001506009 0.002001524 0.009487154) (-0.001496193 0.00399934 0.009472185) (-0.001468357 0.002997742 0.009860116) (-0.001517998 0.007005413 0.009121783) (-0.0005103101 0.007008445 0.009045444) (-0.001630422 0.00602243 0.009674442) (-0.001115419 0.007254684 0.009659662) (-0.001347783 0.006725605 0.009803872) (-0.0004950977 0.006979463 0.009881142) (-0.002477319 -0.009978126 -0.009354889) (-0.00252209 -0.01103528 -0.009148814) (-0.002858502 -0.008964234 -0.009307853) (-0.003520477 -0.009005339 -0.009050569) (-0.002501369 -0.009001567 -0.009007) (-0.002485418 -0.007997601 -0.009471331) (-0.00301531 -0.0110007 -0.008544577) (-0.003522192 -0.00999971 -0.008536307) (-0.002512804 -0.01000224 -0.008566195) (-0.003016286 -0.009004481 -0.008574324) (-0.003527523 -0.008005948 -0.008564642) (-0.002515296 -0.008003017 -0.008566999) (-0.002523659 -0.006000894 -0.009538163) (-0.002521018 -0.007001381 -0.009066265) (-0.002952453 -0.004994591 -0.009419982) (-0.003633015 -0.004998057 -0.009171146) (-0.002505716 -0.005001179 -0.009048086) (-0.002527015 -0.004000455 -0.009603806) (-0.003042114 -0.007003793 -0.008611923) (-0.003515277 -0.006002044 -0.008557184) (-0.003013475 -0.005000647 -0.008551167) (-0.003522557 -0.004000804 -0.008582354) (-0.002545518 -0.00199434 -0.00960675) (-0.002523965 -0.003000169 -0.009096566) (-0.003004922 -0.000998358 -0.009504576) (-0.0035011 -0.001000388 -0.009013018) (-0.002519922 -0.001001922 -0.00910768) (-0.003022015 -0.002999338 -0.00858408) (-0.003529989 -0.00199549 -0.008610464) (-0.003019773 -0.001000234 -0.008577173) (0.003374096 0.002001164 -0.009381325) (0.003661344 0.00100009 -0.009269333) (0.002986157 0.003001463 -0.009488469) (0.002519895 0.003000318 -0.009078508) (0.003674188 0.002998698 -0.009239856) (0.003030272 0.000999867 -0.008596475) (0.003541355 0.002000561 -0.00862241) (0.003030952 0.003000067 -0.008584795) (-0.002477858 0.009960825 -0.009349598) (-0.002501339 0.009001609 -0.008995451) (-0.003463682 0.0109853 -0.008933743) (-0.002533228 0.01104045 -0.009145661) (-0.003020297 0.009003944 -0.00855865) (-0.003511401 0.01000049 -0.008534245) (-0.002507703 0.01001138 -0.00859199) (-0.003017014 0.01100303 -0.00854439) (-0.0004982274 0.01376259 -0.009351024) (-0.0004978707 0.01299906 -0.008986426) (-0.0014956 0.0150158 -0.009087209) (-0.0005007449 0.01506216 -0.009175129) (-0.001003983 0.01299909 -0.008534086) (-0.001508372 0.01399879 -0.008574437) (-0.0005018385 0.01400076 -0.008617578) (-0.001001292 0.01500517 -0.008595837) (0.00238503 -0.01097036 -0.009323518) (0.002497026 -0.006999162 -0.009502968) (-0.003392311 0.001014466 -0.00939439) (-0.003353144 0.004993148 -0.009321026) (0.002518514 0.004999734 -0.009581242) (0.002479342 0.008978563 -0.009391176) (0.0004958706 0.0129341 -0.009412701) (-0.001368542 -0.02670379 -0.007301881) (0.0004996077 -0.02676018 -0.0073762) (-0.0034684 -0.022975 -0.007366851) (-0.001497114 -0.02300003 -0.007500522) (0.0004998825 -0.02299972 -0.007552263) (0.002628896 -0.02325181 -0.007626474) (-0.003507474 -0.01899897 -0.007520755) (0.002512916 -0.0190006 -0.007555057) (0.004479949 -0.01898913 -0.007561537) (-0.005504113 -0.01501544 -0.007422565) (-0.001003463 -0.01400285 -0.007065288) (0.001007677 -0.01400352 -0.007065218) (0.004520913 -0.01500125 -0.007532527) (-0.005653587 -0.01100454 -0.00766971) (0.00302279 -0.01000375 -0.007058813) (0.004530908 -0.0110023 -0.007547861) (0.006322971 -0.01072868 -0.007316051) (-0.005529851 -0.007000648 -0.007536991) (0.003022521 -0.006001886 -0.007057272) (0.00641813 -0.007001009 -0.007422043) (-0.005550099 -0.003001633 -0.007589105) (0.006498561 -0.003002261 -0.007499673) (-0.005578037 0.00100782 -0.007598215) (-0.003026863 0.002001138 -0.007070647) (0.006522003 0.0009841112 -0.007532776) (-0.005551556 0.00500167 -0.007563393) (-0.003020213 0.006002707 -0.00705896) (0.003021585 0.006001186 -0.007055499) (0.006455794 0.005004476 -0.007446949) (-0.005674934 0.009274381 -0.007701414) (0.003021362 0.01000308 -0.007056854) (0.006371613 0.008997618 -0.007358036) (-0.005577866 0.01298446 -0.007590447) (0.0010047 0.01400275 -0.007064944) (0.004532684 0.01300286 -0.007563739) (-0.005355714 0.01696508 -0.007356352) (-0.003528998 0.01700781 -0.007582679) (0.004683025 0.01703588 -0.007658126) (-0.00361504 0.02101894 -0.007641255) (-0.001511312 0.02100424 -0.007560387) (0.0005006657 0.02100429 -0.007543954) (0.00250231 0.02099888 -0.007521493) (0.004346593 0.02071929 -0.007334358) (-0.001510139 0.02501713 -0.007600084) (0.0004932487 0.02525591 -0.00765565) (0.00246876 0.02495385 -0.007368409) (-0.003363857 -0.03074903 -0.005384397) (-0.001506699 -0.03101308 -0.005540676) (0.0005061972 -0.03102595 -0.005585899) (0.002510105 -0.03122281 -0.005633078) (-0.003536916 -0.02700713 -0.005567301) (-0.001009102 -0.02601268 -0.005068237) (0.001010502 -0.02601302 -0.005067176) (0.004627068 -0.027012 -0.005632766) (-0.005662267 -0.02325019 -0.005653632) (-0.00302588 -0.02200487 -0.005051378) (0.00303203 -0.02200771 -0.005062554) (0.006309244 -0.02271531 -0.005308482) (-0.005055306 -0.01800636 -0.00505617) (0.005054419 -0.01800654 -0.00505883) (0.006624439 -0.01903059 -0.005631774) (-0.007396094 -0.01499701 -0.005498279) (-0.00504023 -0.0140049 -0.005041059) (0.005053043 -0.01400469 -0.005057225) (0.006555267 -0.01500273 -0.005551472) (-0.007647914 -0.01103214 -0.005687321) (-0.007528333 -0.00699953 -0.005513518) (0.008335919 -0.006964655 -0.005331606) (-0.007579276 -0.003001079 -0.005561988) (0.008339954 -0.003002655 -0.005371935) (-0.00758602 0.001003612 -0.005559553) (0.00836002 0.001002667 -0.005357914) (-0.007528345 0.005000914 -0.005534513) (0.008280628 0.004997924 -0.005353242) (-0.007504296 0.009000596 -0.005500007) (-0.007606391 0.01300176 -0.005503651) (-0.005047902 0.01400506 -0.005051936) (0.005053089 0.01400494 -0.005053446) (-0.007343434 0.01696976 -0.005364699) (-0.005056202 0.01800605 -0.005056651) (0.005059148 0.01800686 -0.005057031) (0.006519802 0.01700257 -0.005512691) (-0.005523398 0.02100344 -0.005535017) (-0.003033466 0.02200649 -0.005058534) (0.003028435 0.02200768 -0.005050451) (0.006479501 0.02099825 -0.005484643) (-0.005481245 0.02499343 -0.005482693) (-0.001014607 0.0260168 -0.005077964) (0.0010069 0.02601377 -0.005072277) (0.004518371 0.02499903 -0.005530105) (-0.003656537 0.02925431 -0.005647786) (0.002510794 0.0290149 -0.005580037) (0.00432425 0.02873546 -0.005345752) (-0.001505113 0.03300716 -0.005408238) (0.0004941894 0.03300292 -0.005521253) (-0.003383856 -0.03479752 -0.00338764) (-0.001532387 -0.03505547 -0.003603813) (0.002668345 -0.03531151 -0.003679923) (-0.005367325 -0.03073767 -0.003359538) (-0.003051784 -0.0300239 -0.003071334) (0.00304743 -0.03001694 -0.003045456) (0.004508722 -0.0309985 -0.003498638) (-0.005554168 -0.02700277 -0.003519697) (0.006435771 -0.02698775 -0.00350326) (-0.007401445 -0.02298065 -0.003480965) (-0.005054271 -0.02200904 -0.003028148) (0.00506104 -0.02200644 -0.00303351) (0.00654631 -0.02300579 -0.00351694) (-0.007520308 -0.01899906 -0.003501983) (0.008520208 -0.01501268 -0.003502067) (-0.007071129 -0.01000433 -0.003026821) (0.007072563 -0.01000312 -0.00302283) (0.008693895 -0.01127435 -0.003643705) (-0.007065469 -0.006001687 -0.003019428) (0.007055969 -0.006002387 -0.003017693) (0.008566327 -0.00700319 -0.003516997) (-0.009310816 -0.002997898 -0.0033487) (-0.007056586 -0.00200039 -0.003025124) (0.007060616 -0.002000705 -0.003022918) (0.008587598 -0.003000557 -0.003535508) (-0.009376201 0.00100099 -0.003379871) (-0.00705349 0.002001175 -0.003023511) (0.007054036 0.002000785 -0.003021776) (0.008604406 0.00100056 -0.003528261) (-0.009332029 0.004961385 -0.003339338) (-0.007053105 0.006001143 -0.003022289) (0.007054691 0.006002783 -0.003021472) (0.008530646 0.005001599 -0.003509921) (-0.007071822 0.01000435 -0.003027027) (0.007080227 0.01000362 -0.003027639) (0.00856342 0.009002238 -0.003523624) (0.008652633 0.01298991 -0.003635455) (-0.007553019 0.0170072 -0.003512919) (0.008380855 0.01697867 -0.003391598) (-0.007612891 0.02101964 -0.003627327) (-0.005057436 0.02200654 -0.00302447) (0.005068185 0.02200747 -0.003032404) (0.006671609 0.02526816 -0.00364656) (-0.005659353 0.02925871 -0.00365937) (-0.003050252 0.03001894 -0.003047904) (0.003060002 0.0300278 -0.003075756) (-0.003498335 0.03300478 -0.003502897) (0.004409588 0.03276821 -0.003394139) (-0.001519774 0.03684888 -0.003516333) (0.0005013248 0.03715227 -0.003512085) (0.002325726 0.03660543 -0.003265834) (-0.001510103 -0.03900918 -0.001494011) (0.0004880318 -0.03927488 -0.001691606) (0.002254281 -0.0385477 -0.001268479) (-0.0035856 -0.03504052 -0.001539075) (0.004463787 -0.03497962 -0.001491263) (-0.005522841 -0.03100287 -0.001503541) (0.00626687 -0.03071435 -0.001339892) (-0.007342378 -0.02670054 -0.001366444) (-0.005074006 -0.02601153 -0.0010086) (0.0050821 -0.02601203 -0.001014889) (0.006560087 -0.02700803 -0.001509025) (-0.007542435 -0.02300762 -0.001499943) (0.008620155 -0.01901377 -0.001498466) (-0.007068128 -0.01400453 -0.001008202) (0.007060358 -0.01400229 -0.001007825) (0.008570342 -0.01500084 -0.001506972) (-0.009472379 -0.01099464 -0.001494784) (-0.007060866 -0.01000353 -0.001006083) (0.007045136 -0.01000193 -0.001005327) (0.008546715 -0.0110026 -0.001511596) (-0.009617847 -0.00700549 -0.001508125) (-0.00965743 -0.003282404 -0.001648789) (-0.009471579 0.001001317 -0.001503362) (-0.009645341 0.005015899 -0.001506111) (-0.009557905 0.009002154 -0.001503918) (-0.007058376 0.01000184 -0.001007064) (0.007066462 0.01000319 -0.001006997) (-0.009351622 0.01295383 -0.001483687) (-0.007064414 0.01400507 -0.001010706) (0.007076425 0.01400711 -0.00101072) (0.008608174 0.01301337 -0.001528185) (0.008514619 0.01700588 -0.001500979) (-0.007602361 0.02101368 -0.001515654) (0.00835571 0.02076376 -0.001485176) (-0.007600518 0.02500334 -0.001499166) (-0.005078033 0.02601528 -0.001009472) (0.005080524 0.02601453 -0.001010414) (0.006600118 0.02901347 -0.001497102) (-0.005413729 0.03300333 -0.001500362) (0.004527795 0.03299581 -0.001511622) (-0.003495498 0.03680269 -0.001494994) (0.002542378 0.0370267 -0.001514525) (-0.00166846 -0.039331 0.0004911319) (0.0005332336 -0.03901008 0.0005161213) (0.002362793 -0.03874841 0.0004858741) (0.004556014 -0.03515772 0.0005029816) (-0.005528138 -0.03099658 0.0004971827) (0.006330996 -0.03072254 0.000484156) (-0.007388545 -0.02676441 0.000496355) (-0.005079101 -0.02601197 0.001009464) (0.005077182 -0.02601393 0.001013033) (0.006597428 -0.027018 0.0005059609) (-0.007585869 -0.02300531 0.0005008996) (0.008668793 -0.01925022 0.0004943912) (-0.009307432 -0.01470178 0.0003668192) (-0.007060842 -0.01400304 0.001003924) (0.007062358 -0.0140011 0.001007219) (0.008593119 -0.01500907 0.0005034246) (-0.00958761 -0.01099967 0.0005014217) (-0.007055795 -0.01000324 0.001004631) (0.007044369 -0.01000139 0.001006173) (0.008508259 -0.01099959 0.0005012467) (-0.009681006 -0.007021739 0.0005098653) (-0.009411183 -0.002993495 0.0005003754) (-0.009449767 0.0009980037 0.0004971385) (-0.009467535 0.004998122 0.0004984917) (-0.009647796 0.0090021 0.0005003601) (-0.007056986 0.01000046 0.001004901) (0.007065954 0.01000155 0.001009533) (-0.009442509 0.01298193 0.0004967037) (-0.007060895 0.01400191 0.00100208) (0.007068565 0.01400513 0.001009831) (0.008535601 0.01300515 0.0005092612) (0.008520533 0.01700163 0.0004980048) (-0.007586871 0.0210093 0.0005006765) (0.008443424 0.02094579 0.0004929367) (-0.007652287 0.02523788 0.0004974905) (-0.00507907 0.02601314 0.001011786) (0.005087049 0.02601552 0.001012734) (0.006661455 0.02924081 0.0005010668) (-0.005572506 0.03297094 0.0005018692) (-0.001029566 0.03404313 0.001034819) (-0.003504635 0.03717021 0.0005092136) (0.002594598 0.03708056 0.0005105154) (-0.0013392 -0.03854245 0.00227245) (0.0004907738 -0.03876621 0.002390147) (-0.00373294 -0.03528769 0.002719618) (0.004290368 -0.03470385 0.002363127) (-0.005627372 -0.0312298 0.002509062) (-0.003049575 -0.03001623 0.003051992) (0.003048974 -0.03001473 0.003049587) (0.006669126 -0.02726579 0.002631795) (-0.007634021 -0.02325502 0.002630003) (-0.005064057 -0.02200993 0.003032742) (0.005070249 -0.02201109 0.003036397) (-0.00754585 -0.01900239 0.002511946) (0.008452541 -0.01897705 0.002480488) (0.008514288 -0.01500088 0.002507008) (-0.009349016 -0.01097578 0.002358029) (-0.007057458 -0.01000405 0.00302128) (0.007062011 -0.01000226 0.003022481) (0.008574218 -0.01100401 0.002526764) (-0.009434337 -0.006994195 0.002468269) (-0.007050976 -0.006000639 0.00301967) (0.00705957 -0.006002498 0.003022225) (0.008546249 -0.007003866 0.002509544) (-0.009567109 -0.003003514 0.002512405) (-0.007056503 -0.002000258 0.003025013) (0.007053566 -0.002001655 0.003021675) (-0.009628436 0.0009959113 0.002545787) (-0.007055284 0.002000622 0.003023445) (0.007056284 0.001999554 0.003019041) (-0.009495679 0.004999515 0.002497212) (-0.007050885 0.006002194 0.003021888) (0.00705438 0.005999566 0.003017674) (-0.00941141 0.008973053 0.002446896) (-0.007063654 0.01000044 0.003025559) (0.007070361 0.01000143 0.003030436) (0.008573564 0.009000991 0.002519749) (0.008572131 0.01300169 0.00252013) (0.008632841 0.01702796 0.002517771) (-0.007524844 0.02100165 0.002503404) (-0.005062812 0.02200823 0.00303477) (0.005067703 0.02200972 0.003033175) (-0.007391809 0.02496434 0.002481162) (0.00656733 0.02501006 0.00251698) (-0.005548092 0.0290114 0.002519092) (-0.003046767 0.03001561 0.003044815) (0.003055681 0.03002396 0.003058005) (0.006379312 0.02896266 0.002482406) (-0.005285004 0.03269381 0.002347219) (0.004692315 0.03328242 0.002627748) (-0.003192473 0.03660302 0.002354295) (-0.00153732 0.03706227 0.002575472) (0.0005122176 0.03708211 0.002598316) (0.002562388 0.03719447 0.002584985) (-0.001505276 -0.03500812 0.004522461) (0.0005061691 -0.03520689 0.004681292) (0.002332358 -0.03470096 0.00428427) (-0.003510618 -0.03100671 0.004525868) (0.004461288 -0.03096489 0.004438759) (-0.005630616 -0.02700527 0.004636954) (-0.001011633 -0.02601842 0.005087467) (0.001016318 -0.02601812 0.005093952) (-0.00303341 -0.02201054 0.005072585) (0.003035569 -0.02200949 0.005067827) (0.006634071 -0.0230248 0.004630069) (-0.007565332 -0.01898741 0.004483482) (-0.005055227 -0.01800644 0.005057028) (0.005061062 -0.01800382 0.005060072) (-0.007514158 -0.01500001 0.004511287) (-0.005041364 -0.01400507 0.005045569) (0.005048247 -0.0140021 0.005047267) (-0.007546221 -0.01100273 0.00452688) (0.008471979 -0.01098453 0.004468287) (0.00858655 -0.00701638 0.004543178) (0.00870156 -0.003006195 0.004667295) (0.008510109 0.0009985301 0.00450435) (0.008694723 0.004998336 0.004659278) (0.008598117 0.008999356 0.004506954) (-0.007543882 0.01299821 0.004521612) (-0.005044269 0.01400321 0.005045668) (0.005052427 0.01400614 0.005053999) (0.00837907 0.0130118 0.004391807) (-0.007658408 0.0172685 0.004642062) (-0.0050531 0.01800328 0.005053702) (0.005059812 0.01800696 0.005058911) (-0.007322506 0.02097882 0.004355288) (-0.003035893 0.0220105 0.005069596) (0.003037818 0.02201009 0.005061517) (0.006525262 0.02100332 0.004517272) (-0.005543873 0.02500149 0.004534644) (-0.001014905 0.02601586 0.005088322) (0.001013235 0.02601497 0.005086366) (0.006388902 0.02498122 0.004481801) (-0.005374322 0.02874901 0.004374188) (0.004667021 0.02930299 0.004736534) (-0.003462763 0.03296216 0.004454109) (-0.001499065 0.03302828 0.004571929) (0.002669469 0.03330468 0.004744007) (-0.001356638 -0.03070382 0.006291202) (0.0005007515 -0.03076879 0.00638966) (-0.003508382 -0.02698853 0.006446822) (-0.001510564 -0.02701349 0.006563056) (0.0005063469 -0.02701812 0.006614542) (0.002634789 -0.02728382 0.006703999) (-0.005338341 -0.02273258 0.006326427) (-0.003515206 -0.02301196 0.006555252) (0.004611351 -0.02302237 0.006638937) (-0.005646473 -0.01903283 0.006638469) (-0.00551954 -0.01500738 0.006548326) (-0.001007695 -0.01400528 0.007067536) (0.001007909 -0.01400505 0.00707081) (0.006497216 -0.01499901 0.006493382) (-0.007315916 -0.01072189 0.006320496) (-0.003023034 -0.01000202 0.007068484) (-0.001006078 -0.01000237 0.007062117) (0.001006735 -0.010002 0.007064388) (0.003022825 -0.01000116 0.007070974) (0.006663526 -0.01126557 0.006691472) (-0.007408452 -0.007000498 0.006420716) (-0.003020458 -0.006001136 0.007055461) (0.003023709 -0.006001227 0.007059475) (0.006556123 -0.007002422 0.006544957) (-0.007448073 -0.002997561 0.006530473) (-0.003025089 -0.002001198 0.007061513) (0.003023956 -0.00200078 0.007060293) (0.006602469 -0.002998618 0.00659703) (-0.007575649 0.001003569 0.006478016) (-0.003026127 0.002000585 0.007063386) (0.003026853 0.002000899 0.007064672) (-0.007444039 0.005014399 0.006461345) (-0.003022397 0.00600158 0.007059482) (0.003025303 0.006001221 0.007066373) (0.006623963 0.005001941 0.006621261) (-0.007377167 0.008998233 0.006357254) (-0.003021099 0.01000166 0.007063174) (-0.001005768 0.01000214 0.007061438) (0.001007465 0.01000275 0.007064835) (0.00302567 0.01000262 0.007074985) (0.006537195 0.009000968 0.006533818) (-0.001006401 0.01400259 0.007069553) (0.001006652 0.01400302 0.007072419) (0.00665521 0.01303922 0.006664553) (-0.005514439 0.01700103 0.006523141) (0.006374545 0.01697131 0.006383842) (-0.005493978 0.02099989 0.006493413) (0.0045115 0.02100247 0.006509192) (-0.003641438 0.02526257 0.006720735) (0.002534192 0.0250179 0.00657878) (0.004482709 0.02498377 0.006403667) (-0.001492175 0.02920221 0.006615267) (0.0004959073 0.02926854 0.006709114) (0.002500403 0.02897317 0.0064209) (0.0003683679 -0.02270867 0.008291611) (-0.001512918 -0.0190434 0.008599184) (0.0004953312 -0.01923497 0.008658075) (0.002479002 -0.01897971 0.008453887) (-0.003522099 -0.01501652 0.008531989) (-0.001513263 -0.015006 0.008574739) (0.0005036327 -0.01500282 0.008602021) (0.002500816 -0.01499996 0.008507602) (0.004314027 -0.01471743 0.008312907) (-0.00350336 -0.0110002 0.008517285) (-0.00150927 -0.01100198 0.008562372) (0.002511415 -0.01100146 0.008605785) (0.004503372 -0.01100333 0.008417009) (-0.005351661 -0.006956951 0.008334831) (-0.003509247 -0.006999997 0.008526376) (0.00462314 -0.007000721 0.008656159) (-0.005361909 -0.002998752 0.008367194) (-0.003542905 -0.003001323 0.008610086) (0.004691238 -0.003033931 0.008756691) (-0.005401857 0.001003646 0.008390645) (-0.003529938 0.0009994854 0.008606515) (0.004657975 0.001269912 0.008699015) (-0.005337328 0.004995246 0.008328217) (-0.003531451 0.005004037 0.008583444) (0.004646136 0.004997542 0.008716833) (-0.003521853 0.009000212 0.008550345) (0.002518692 0.009002741 0.008578998) (0.004509469 0.008998208 0.008601131) (-0.003620685 0.01302092 0.008636183) (-0.001509883 0.01300961 0.008606555) (0.0005016373 0.01300196 0.008535048) (0.002513623 0.01300512 0.008562981) (0.004375747 0.01300762 0.008352314) (-0.003476725 0.01697122 0.008371623) (-0.001503287 0.01700224 0.008514294) (0.0005022519 0.01700179 0.008549253) (0.002519927 0.01703459 0.008619455) (-0.001497809 0.02096834 0.008386489) (0.0004986312 0.0209891 0.008483066) (0.0023448 0.02071317 0.008299537) (-0.001478281 -0.02095112 -0.00837077) (-0.0004969087 -0.02093989 -0.008454486) (0.0005009118 -0.02094333 -0.008457662) (0.001473268 -0.02094674 -0.008343733) (-0.002481924 -0.01896651 -0.00838728) (-0.003387711 -0.01697812 -0.008376548) (-0.002512728 -0.01703162 -0.008614497) (-0.001514343 -0.01904381 -0.008560785) (-0.0004953083 -0.01922647 -0.008653301) (-0.00150217 -0.01700054 -0.008512382) (-0.0005005085 -0.01700066 -0.008532442) (0.0004909006 -0.01923256 -0.008640612) (0.001512177 -0.01904252 -0.008574288) (0.0005021632 -0.01700294 -0.00853397) (0.001501599 -0.0170044 -0.008512875) (0.002478106 -0.01895177 -0.008454716) (0.002518998 -0.01703641 -0.008623033) (0.003477634 -0.01696853 -0.008380751) (-0.004390329 -0.01297995 -0.00838287) (-0.003503408 -0.01500086 -0.008513156) (-0.002500097 -0.0149997 -0.008508522) (-0.003619388 -0.01302585 -0.008651197) (-0.00250748 -0.01300152 -0.008548627) (-0.001478865 -0.01296679 -0.009341277) (-0.000497709 -0.01293341 -0.009407604) (-0.00149893 -0.01500038 -0.00856617) (-0.0004983863 -0.01500501 -0.008628759) (-0.00149366 -0.01299752 -0.008559492) (-0.0004970396 -0.01299993 -0.008531213) (0.0004996706 -0.01294142 -0.009417833) (0.001480615 -0.01294637 -0.009329023) (0.0005068353 -0.01500022 -0.008633668) (0.001503179 -0.01500138 -0.008567201) (0.0005031224 -0.0130026 -0.008533582) (0.001509557 -0.01300056 -0.008565668) (0.002500922 -0.01499958 -0.008513198) (0.003510062 -0.01501337 -0.008537883) (0.002517497 -0.01300487 -0.008549649) (0.003630888 -0.01302914 -0.008637672) (0.004373548 -0.01297689 -0.00837633) (-0.004490552 -0.01099102 -0.00848908) (-0.004494204 -0.009001614 -0.008592033) (0.002459593 -0.008983912 -0.009404771) (0.002507143 -0.0110046 -0.008562875) (0.003504645 -0.01100005 -0.008507885) (0.002513586 -0.009001307 -0.008549751) (0.003512127 -0.009003661 -0.008546287) (0.004488352 -0.0109895 -0.008483747) (0.004491359 -0.009000571 -0.008589317) (-0.005352683 -0.006731592 -0.008310658) (-0.004634569 -0.006998031 -0.008649801) (-0.005344036 -0.00499651 -0.008305371) (-0.004674964 -0.005001477 -0.008723637) (0.003332585 -0.006718683 -0.009340662) (0.002510967 -0.005000482 -0.009571422) (0.003347187 -0.004997908 -0.009275234) (0.003518978 -0.007001929 -0.008555768) (0.003527361 -0.005001945 -0.008560453) (0.004631917 -0.006996367 -0.008633862) (0.005348475 -0.006722263 -0.008332673) (0.004672719 -0.005000785 -0.008716078) (0.005332887 -0.004995485 -0.008338311) (-0.005354393 -0.003001288 -0.008361492) (-0.004687102 -0.003035594 -0.008753202) (-0.005397761 -0.001001846 -0.008399747) (-0.004503199 -0.0009979819 -0.008506933) (0.004667432 -0.003040877 -0.008742086) (0.005382083 -0.003000735 -0.008375529) (0.004507865 -0.001000015 -0.008513659) (0.005381293 -0.001002979 -0.008376788) (-0.00538682 0.001000555 -0.008403365) (-0.004672896 0.001273453 -0.00869483) (-0.005365024 0.002999869 -0.008358643) (-0.004671913 0.003009724 -0.008739783) (-0.002556439 0.0009944171 -0.00965443) (-0.003380124 0.003001255 -0.009363377) (-0.00253905 0.002996279 -0.009630015) (-0.003534374 0.0009989004 -0.008622752) (-0.003542484 0.003001143 -0.008612969) (0.004681513 0.001270103 -0.008710097) (0.005355243 0.001001167 -0.008374335) (0.004676797 0.003006553 -0.008778136) (0.005378685 0.003001134 -0.008335604) (-0.005357827 0.00499845 -0.008312279) (-0.004652733 0.005001581 -0.008689986) (-0.005330768 0.006961127 -0.008331005) (-0.00460794 0.006986789 -0.008611358) (-0.002517694 0.005012005 -0.009582263) (-0.003344819 0.006725922 -0.009317159) (-0.002500351 0.006988872 -0.009507419) (-0.003523306 0.005002679 -0.008572402) (-0.00350747 0.007001971 -0.008538047) (0.003368098 0.004992864 -0.009328601) (0.002495793 0.006999222 -0.009498181) (0.003339229 0.006722364 -0.009320131) (0.003530114 0.005000595 -0.008578052) (0.002509348 0.007000722 -0.008569016) (0.003513588 0.007000113 -0.008531472) (0.004676835 0.005002575 -0.008716383) (0.005347349 0.004997253 -0.0083351) (0.004655047 0.006996285 -0.008650549) (0.005307023 0.006965179 -0.008307091) (-0.004542266 0.009011756 -0.008564028) (-0.004492495 0.01098771 -0.008492341) (0.002377765 0.01074665 -0.009332082) (0.002511264 0.009000741 -0.008535353) (0.003517436 0.009002074 -0.008538869) (0.002513064 0.01100277 -0.00855949) (0.003498602 0.01100061 -0.008503684) (0.00449462 0.008999199 -0.008596505) (0.004482841 0.01098769 -0.008470639) (-0.004382785 0.01297777 -0.008371717) (-0.003623527 0.01302206 -0.00864091) (-0.002511797 0.01300364 -0.008551141) (-0.003506486 0.01500158 -0.008513074) (-0.00250512 0.01500065 -0.008515391) (0.001483263 0.01294998 -0.009336123) (0.0004993735 0.01299912 -0.008534147) (0.001501584 0.01300733 -0.008564594) (0.0004999606 0.01500222 -0.008632462) (0.001501768 0.01500334 -0.008562755) (0.002503154 0.01300119 -0.008543579) (0.003616385 0.01302278 -0.008623205) (0.002500742 0.0149989 -0.008501434) (0.003502015 0.01500021 -0.008505819) (0.004373437 0.01297812 -0.008372556) (-0.003391199 0.0169783 -0.008396006) (-0.002520298 0.01703468 -0.008620382) (-0.002485476 0.01896852 -0.00839287) (-0.001499647 0.01699919 -0.00851889) (-0.0005046932 0.01700371 -0.008536706) (-0.001512191 0.0190461 -0.008572922) (-0.000494133 0.01920783 -0.008642476) (0.0005002025 0.01700526 -0.008534635) (0.001500257 0.01700082 -0.008511833) (0.0004941218 0.01923156 -0.008648856) (0.00151008 0.0190473 -0.008571331) (0.002512393 0.01703246 -0.008607012) (0.003377143 0.01697617 -0.008353467) (0.002486702 0.01896689 -0.008386646) (-0.001483012 0.02094745 -0.008364619) (-0.0005003875 0.02094235 -0.008446217) (0.0004979099 0.0209409 -0.00845783) (0.001477253 0.02094467 -0.008359537) (-0.002494004 -0.02896599 -0.006395085) (-0.001345516 -0.03070056 -0.006296603) (-0.000497626 -0.03075572 -0.006354725) (-0.001502294 -0.02902054 -0.006608933) (-0.0005014875 -0.02924236 -0.006647227) (0.0004983342 -0.03075038 -0.006374346) (0.001370861 -0.03072123 -0.006310072) (0.0004986799 -0.02925551 -0.006666567) (0.001491912 -0.02919875 -0.006605133) (0.002497453 -0.02896795 -0.006405552) (-0.004471016 -0.0249847 -0.006381566) (-0.002476479 -0.02496046 -0.007366188) (-0.003496075 -0.0269849 -0.006424219) (-0.002643496 -0.02725962 -0.00666271) (-0.003645166 -0.02525475 -0.006653927) (-0.00250666 -0.02500328 -0.00653694) (-0.0004977526 -0.02676021 -0.00736736) (-0.001503725 -0.0250106 -0.007595784) (-0.0004971481 -0.02525043 -0.00763554) (-0.001498091 -0.02700173 -0.006528744) (-0.0005022245 -0.02701075 -0.00655385) (0.001480048 -0.02673591 -0.007312928) (0.0004955195 -0.02524024 -0.007659186) (0.001499744 -0.02502365 -0.007597945) (0.0005013695 -0.02701633 -0.006565754) (0.001504345 -0.02700377 -0.006522151) (0.002485935 -0.02497756 -0.007384299) (0.002652825 -0.02726319 -0.006686203) (0.003504344 -0.02698977 -0.006436784) (0.002517 -0.02501084 -0.006561278) (0.00365592 -0.02526595 -0.006705946) (0.004483543 -0.02498474 -0.006399642) (-0.004365889 -0.02073587 -0.00733424) (-0.005328529 -0.02272138 -0.006312719) (-0.004620714 -0.02301845 -0.006619829) (-0.00550666 -0.0210125 -0.006421675) (-0.004505338 -0.0210003 -0.006520558) (-0.002612536 -0.02325246 -0.007622617) (-0.003621481 -0.02102003 -0.007613344) (-0.002502511 -0.02099873 -0.007521829) (-0.003509128 -0.02299775 -0.006528295) (-0.0004975894 -0.02300417 -0.007550245) (-0.001510473 -0.0209965 -0.007553918) (-0.0004999248 -0.0210003 -0.007546662) (0.001498555 -0.02299932 -0.007496904) (0.0005013194 -0.02100355 -0.007543107) (0.001505809 -0.02100779 -0.007552038) (0.003487727 -0.02297959 -0.00739179) (0.002505314 -0.02100171 -0.007531968) (0.003624199 -0.02101661 -0.007639148) (0.003520129 -0.02301144 -0.006551592) (0.004365748 -0.02097742 -0.007319728) (0.004635559 -0.02301754 -0.006652262) (0.005334222 -0.02273447 -0.006315109) (0.004515416 -0.02100206 -0.006533847) (0.005512553 -0.02101298 -0.006428771) (-0.00639301 -0.01699743 -0.006394986) (-0.00447342 -0.01898211 -0.007555753) (-0.005356248 -0.01696436 -0.007349736) (-0.004649305 -0.01703045 -0.007671709) (-0.005629617 -0.01902073 -0.006636674) (-0.005512805 -0.01700156 -0.006513262) (-0.002524206 -0.01900211 -0.007570227) (-0.003517938 -0.01700205 -0.007568271) (0.003507886 -0.01900164 -0.007521088) (0.003525702 -0.01700889 -0.007556804) (0.004659884 -0.01703135 -0.00766133) (0.005353974 -0.01672775 -0.007353797) (0.005616783 -0.01902165 -0.006617788) (0.005521668 -0.01700384 -0.006525225) (0.00637354 -0.01697158 -0.006367721) (-0.006559042 -0.01497073 -0.006561339) (-0.006664052 -0.01300567 -0.006639582) (-0.004514055 -0.01500377 -0.007529112) (-0.005580889 -0.01298454 -0.007591052) (-0.00452619 -0.01300391 -0.007541349) (-0.005513875 -0.0150005 -0.006546509) (0.005511223 -0.0150005 -0.007413035) (0.004546351 -0.01301197 -0.007578803) (0.005503268 -0.01300403 -0.007602922) (0.005568878 -0.01500615 -0.006581906) (0.006507298 -0.01500143 -0.00651035) (0.006643912 -0.01300612 -0.006657552) (-0.006342036 -0.01071269 -0.007295451) (-0.006379776 -0.009001162 -0.007338658) (-0.007300761 -0.01071791 -0.006330225) (-0.006673518 -0.01128572 -0.006683406) (-0.007327201 -0.008996417 -0.006351072) (-0.006516994 -0.009000914 -0.00651835) (-0.004529479 -0.01100316 -0.007547558) (-0.005681164 -0.009273567 -0.007664091) (0.005658138 -0.01103761 -0.007652141) (0.005507699 -0.009002993 -0.007519262) (0.006338871 -0.008991213 -0.007349038) (0.006669283 -0.01127613 -0.00667642) (0.00731794 -0.01072079 -0.006354137) (0.006511623 -0.009000877 -0.006514025) (0.007347679 -0.00899817 -0.006350956) (-0.006423385 -0.006999934 -0.007419995) (-0.006457868 -0.005014783 -0.00746536) (-0.007381 -0.006998623 -0.006386281) (-0.00656715 -0.00700392 -0.006570319) (-0.007431248 -0.005002377 -0.006428339) (-0.006602606 -0.005003967 -0.006591865) (-0.005543571 -0.005000948 -0.007551391) (0.005526938 -0.007002887 -0.00754997) (0.005550292 -0.005002426 -0.007569491) (0.006453065 -0.00501706 -0.007465705) (0.006577594 -0.007003148 -0.006570445) (0.007402043 -0.006999834 -0.006403513) (0.006613217 -0.005004311 -0.00661701) (0.007466276 -0.005014602 -0.006451502) (-0.006503793 -0.002986942 -0.007494651) (-0.00648265 -0.001002853 -0.00757781) (-0.007428178 -0.003001108 -0.006518903) (-0.006569186 -0.003005711 -0.006559709) (-0.007572635 -0.001002183 -0.006478581) (-0.005565433 -0.001004567 -0.007603456) (0.005558784 -0.003002666 -0.007596553) (0.005518423 -0.001003045 -0.007543223) (0.006531411 -0.0009858716 -0.00752822) (0.006527087 -0.003002344 -0.006534504) (0.007502167 -0.003002192 -0.006495387) (0.007528873 -0.0009851442 -0.006519254) (-0.006485883 0.001002411 -0.007575041) (-0.006534525 0.003001275 -0.007438792) (-0.007578075 0.0009995527 -0.006479491) (-0.00743716 0.002999357 -0.006538441) (-0.00660342 0.003011079 -0.006596294) (-0.005577964 0.003002919 -0.00758865) (0.005521275 0.0009995642 -0.007534612) (0.005572464 0.003002161 -0.007577361) (0.006525501 0.003009995 -0.007439109) (0.007526521 0.0009842221 -0.006512333) (0.006602162 0.003008268 -0.00658257) (0.007453051 0.003011994 -0.006536405) (-0.006450655 0.005002875 -0.00743192) (-0.006401822 0.00700042 -0.007394177) (-0.007444929 0.005002294 -0.006448896) (-0.006602071 0.005003558 -0.006612953) (-0.007394301 0.006999692 -0.006403193) (-0.006570289 0.007002087 -0.006570873) (-0.005521695 0.007002275 -0.007525066) (0.005549719 0.005002445 -0.007584201) (0.005529532 0.007001199 -0.007531531) (0.006408714 0.007001125 -0.007408617) (0.006607177 0.005004074 -0.006627699) (0.007463624 0.005003781 -0.006470182) (0.006588797 0.007001523 -0.006584736) (0.007431013 0.007001812 -0.006425634) (-0.006315947 0.008998638 -0.007333423) (-0.00636366 0.01070924 -0.007287364) (-0.007351408 0.00899957 -0.006352271) (-0.006518136 0.009000433 -0.006516872) (-0.007315108 0.0107071 -0.006324979) (-0.006645966 0.01127421 -0.006688481) (-0.005635445 0.01100416 -0.007681671) (-0.004528085 0.01100011 -0.007555744) (0.005509164 0.009000083 -0.007514612) (0.004521833 0.01100168 -0.007542529) (0.00564827 0.01103206 -0.007670037) (0.006337341 0.01072643 -0.007323954) (0.006533741 0.009003049 -0.00653763) (0.007353363 0.009001349 -0.006372001) (0.006665567 0.01127078 -0.006699298) (0.007350109 0.01073126 -0.006341591) (-0.006634961 0.01300431 -0.006634887) (-0.006488894 0.01498923 -0.006582605) (-0.004525031 0.01300501 -0.00755136) (-0.00550611 0.01501438 -0.007422753) (-0.004518842 0.01500423 -0.007536144) (-0.005562571 0.015008 -0.006573692) (0.005499362 0.01300011 -0.007598072) (0.004515712 0.01500122 -0.007533905) (0.005500431 0.01500023 -0.00740871) (0.005535099 0.0150045 -0.00655534) (0.006621162 0.01300499 -0.006637466) (0.006487584 0.01499929 -0.00649478) (-0.00640589 0.01698489 -0.006389114) (-0.004649747 0.01703779 -0.007683032) (-0.004480262 0.01898595 -0.007559491) (-0.005529036 0.01700191 -0.006522215) (-0.005652239 0.01902441 -0.006621713) (-0.003508731 0.01900174 -0.007524525) (-0.002515779 0.01900032 -0.007586086) (0.00351896 0.01700316 -0.007555061) (0.00251443 0.01900747 -0.007581732) (0.003510649 0.01900562 -0.007519057) (0.005345448 0.01672011 -0.007347443) (0.004497023 0.01900036 -0.007503682) (0.005509815 0.0170014 -0.006511513) (0.004539286 0.01900783 -0.006566483) (0.00561481 0.01902144 -0.00662084) (0.006376901 0.01696837 -0.006371293) (-0.00437236 0.02097799 -0.007353344) (-0.005510269 0.02101332 -0.006426651) (-0.004514856 0.02100385 -0.006522531) (-0.005336673 0.02272662 -0.006321239) (-0.004632942 0.02301722 -0.006650712) (-0.002504564 0.02100045 -0.007528313) (-0.003491468 0.02297946 -0.007395502) (-0.002626519 0.02324693 -0.007635415) (-0.003526473 0.02300306 -0.006548773) (-0.0005021987 0.02100133 -0.007536353) (-0.001499729 0.02299963 -0.007505572) (-0.0004998092 0.02300453 -0.007543361) (0.001502711 0.02100088 -0.007559063) (0.0005019768 0.02300325 -0.007549677) (0.001497345 0.02299905 -0.007495449) (0.00362736 0.02101389 -0.007611571) (0.002611577 0.0232474 -0.007605247) (0.003460454 0.02297331 -0.007366042) (0.003508135 0.02300155 -0.006520538) (0.004510605 0.021001 -0.006520283) (0.005505607 0.02101153 -0.006421969) (0.004611236 0.02301673 -0.0066082) (0.005344449 0.02272908 -0.006313195) (-0.00448236 0.02498423 -0.006400782) (-0.002488981 0.02496121 -0.007400642) (-0.003694615 0.0252827 -0.006677123) (-0.00252829 0.02501662 -0.006573823) (-0.003506685 0.02698942 -0.006448835) (-0.002652417 0.02725956 -0.006705989) (-0.0005013326 0.02525644 -0.007652547) (-0.001358335 0.0267202 -0.007314442) (-0.0004978017 0.02676072 -0.007376227) (-0.001507679 0.02701265 -0.006539488) (-0.0005031694 0.02701187 -0.006562543) (0.001495208 0.02501426 -0.007587689) (0.0005004571 0.02676198 -0.007377549) (0.001355353 0.02670136 -0.007311022) (0.0005036279 0.02702056 -0.006566284) (0.001502354 0.02700337 -0.006520418) (0.002512106 0.02500389 -0.006531285) (0.003621 0.0252661 -0.006656384) (0.002629896 0.02725334 -0.006666951) (0.003491474 0.02698102 -0.006413054) (0.004473947 0.02498158 -0.006372307) (-0.00249427 0.02896778 -0.006406298) (-0.001498316 0.02901826 -0.006617301) (-0.0005010406 0.02925011 -0.006653565) (-0.001377133 0.03070756 -0.00628369) (-0.0004994245 0.03075227 -0.006359086) (0.0004998239 0.02924179 -0.006668665) (0.001498332 0.02901674 -0.006607229) (0.0004992974 0.03076336 -0.006369708) (0.001350261 0.03070917 -0.006306527) (0.002484072 0.02896551 -0.006385548) (-0.002369164 -0.03471355 -0.00433633) (-0.00349577 -0.03298272 -0.00441921) (-0.002634518 -0.03328173 -0.004693898) (-0.001501324 -0.03280985 -0.005386507) (-0.0004879953 -0.03299946 -0.005505348) (-0.001504102 -0.0350012 -0.004498864) (-0.0005069286 -0.03519411 -0.004618804) (-0.001510883 -0.03301124 -0.004556717) (0.0004984272 -0.03300796 -0.005521598) (0.001514325 -0.03282865 -0.005422608) (0.0005094093 -0.03518693 -0.004638397) (0.00150497 -0.03499598 -0.004544998) (0.001516228 -0.03304214 -0.00458303) (0.00235446 -0.03266789 -0.005287964) (0.002367324 -0.03470752 -0.004324795) (0.002642975 -0.03335815 -0.004699266) (0.003456911 -0.03295784 -0.004457415) (-0.004382903 -0.02875413 -0.005336221) (-0.004489269 -0.03098029 -0.004409774) (-0.005372347 -0.02875783 -0.00438192) (-0.004658353 -0.02925489 -0.00473077) (-0.002519395 -0.03101715 -0.005624367) (-0.003631911 -0.029245 -0.005633205) (-0.002517213 -0.02901974 -0.005570197) (-0.003521425 -0.0310088 -0.004541357) (-0.0004995993 -0.03101446 -0.005582417) (0.001502575 -0.0310102 -0.005557605) (0.003377278 -0.03076291 -0.005383272) (0.002515948 -0.02901149 -0.005566267) (0.003638266 -0.02925335 -0.005651279) (0.003504131 -0.03100278 -0.004518684) (0.004383463 -0.02876187 -0.005393046) (0.004463439 -0.03095675 -0.004456142) (0.004708187 -0.02928049 -0.004700852) (0.005381165 -0.02875813 -0.00438161) (-0.006375607 -0.02498691 -0.004470005) (-0.00461188 -0.02700507 -0.005621493) (-0.005472045 -0.02497146 -0.005472431) (-0.004514209 -0.02500104 -0.005529077) (-0.00561484 -0.02699476 -0.004622402) (-0.005519798 -0.02500861 -0.004518608) (0.003533868 -0.02701945 -0.005569608) (0.005308091 -0.02672877 -0.005304114) (0.004525297 -0.02499879 -0.005540174) (0.005496792 -0.02500276 -0.005498032) (0.005638359 -0.0270103 -0.004630416) (0.005528329 -0.02500903 -0.004522877) (0.00639347 -0.02498265 -0.004479248) (-0.006304076 -0.0227198 -0.005314058) (-0.00647949 -0.02099921 -0.005488786) (-0.006620316 -0.02302149 -0.004599711) (-0.007347172 -0.0207456 -0.004372681) (-0.006519577 -0.02099974 -0.004502063) (-0.005536586 -0.02100431 -0.005533567) (0.005678223 -0.02326701 -0.005636874) (0.005525526 -0.02100264 -0.005556146) (0.006463842 -0.02099233 -0.00548212) (0.006635377 -0.02302365 -0.004623221) (0.006522045 -0.02100129 -0.004508206) (0.007346256 -0.02073624 -0.004360855) (-0.006637729 -0.01903334 -0.005649832) (-0.007341125 -0.01696327 -0.00534827) (-0.00650697 -0.017003 -0.00550811) (-0.007559626 -0.01898749 -0.0044834) (-0.007639164 -0.01726721 -0.004640303) (0.00652014 -0.01700025 -0.005509187) (0.007336384 -0.01697043 -0.005338011) (0.007566975 -0.01898366 -0.004482922) (0.007654481 -0.01703807 -0.004648088) (-0.008373424 -0.01296687 -0.004378013) (-0.006524814 -0.01500646 -0.005516401) (-0.007601355 -0.01300033 -0.005497229) (-0.007540466 -0.01500231 -0.00451561) (-0.007560262 -0.0130072 -0.004540125) (0.007403836 -0.01500245 -0.005499916) (0.007590815 -0.01299849 -0.005499389) (0.007509694 -0.01500176 -0.004509668) (0.007569574 -0.01299504 -0.004553797) (0.008308678 -0.01472487 -0.004352137) (0.008374139 -0.01300946 -0.004378828) (-0.00842864 -0.01100223 -0.004507242) (-0.008534175 -0.009001974 -0.004526647) (-0.007518258 -0.009000521 -0.005501986) (-0.007601597 -0.01101114 -0.004567155) (0.007647641 -0.01103633 -0.005659578) (0.007495222 -0.009000289 -0.005496865) (0.007546816 -0.01100187 -0.004528815) (0.008483206 -0.01098608 -0.004475433) (0.008550965 -0.009013613 -0.004526162) (-0.008308561 -0.006722959 -0.005343508) (-0.008281553 -0.004995843 -0.005310566) (-0.008610741 -0.007001669 -0.004514477) (-0.008634749 -0.004999235 -0.00464055) (-0.007543002 -0.00500092 -0.005529303) (0.007518759 -0.007000229 -0.005510318) (0.007561511 -0.00500011 -0.005550732) (0.008330096 -0.004998138 -0.005356231) (0.00861572 -0.006985548 -0.004607251) (0.008707507 -0.005000056 -0.004630247) (-0.008324998 -0.002997113 -0.005366963) (-0.008392558 -0.001000622 -0.005384448) (-0.008711919 -0.003000056 -0.004661722) (-0.008692882 -0.001266812 -0.004690607) (-0.007570977 -0.001004406 -0.005570625) (0.007591074 -0.003003161 -0.005543616) (0.007542464 -0.001000782 -0.005526227) (0.008382637 -0.0009979806 -0.005357491) (0.00873344 -0.003007845 -0.004704237) (0.008697975 -0.001271344 -0.00467971) (-0.008391356 0.001000831 -0.005386892) (-0.008344832 0.002998468 -0.005330725) (-0.008704881 0.001291626 -0.004650252) (-0.008734411 0.003005711 -0.004651523) (-0.007587669 0.003002542 -0.005538503) (0.007538165 0.0009999412 -0.005527416) (0.007575491 0.003002834 -0.005563741) (0.008326034 0.002998249 -0.005340199) (0.008751934 0.001038208 -0.004708327) (0.008720329 0.003009294 -0.004663766) (-0.008282447 0.004990899 -0.00531479) (-0.008318637 0.006734149 -0.005321446) (-0.008661662 0.004998802 -0.004636057) (-0.008613932 0.006996619 -0.004510689) (-0.007514928 0.00699992 -0.005510082) (0.00756993 0.005000329 -0.005535772) (0.007564726 0.007001017 -0.005535368) (0.008319257 0.006728453 -0.005340349) (0.008647335 0.004999052 -0.004625714) (0.008601121 0.006999761 -0.004505252) (-0.008552536 0.009002277 -0.004517155) (-0.008476226 0.01098456 -0.004473007) (-0.007643266 0.01103605 -0.005654732) (-0.007549931 0.0110038 -0.004529517) (0.007523503 0.009000577 -0.005513534) (0.007689449 0.01103715 -0.005657602) (0.007591023 0.01099647 -0.004542727) (0.008523129 0.009001566 -0.004509713) (0.008423384 0.01100027 -0.004499136) (-0.008370574 0.01298055 -0.004382582) (-0.007413852 0.01500351 -0.005503228) (-0.006545409 0.0150046 -0.005533521) (-0.007574843 0.01300634 -0.004547412) (-0.007524889 0.01500185 -0.004513166) (0.007582419 0.01297108 -0.005580919) (0.006547533 0.01500572 -0.005546751) (0.007431171 0.01503032 -0.005422252) (0.007559956 0.0130025 -0.00452502) (0.007546588 0.01500309 -0.004520631) (0.008377549 0.01296867 -0.004359434) (-0.006520302 0.01700324 -0.005527461) (-0.006642254 0.01903272 -0.005639426) (-0.007641434 0.01703708 -0.004648405) (-0.007562297 0.01898372 -0.004484314) (0.007364014 0.01672392 -0.005342797) (0.006639235 0.01903249 -0.005629033) (0.007647514 0.01702221 -0.004649062) (0.006582975 0.01900508 -0.004563758) (0.007457937 0.01901734 -0.004516333) (-0.006481046 0.02099757 -0.005480891) (-0.006289678 0.02272793 -0.005343179) (-0.007348515 0.02074921 -0.004351997) (-0.006534806 0.02100266 -0.004510899) (-0.006627562 0.0230282 -0.004603801) (-0.005670121 0.02326252 -0.005661894) (0.005546778 0.02100929 -0.005532153) (0.005645037 0.02326919 -0.005642732) (0.006299229 0.02272372 -0.005316459) (0.006530204 0.02100099 -0.004511216) (0.007327163 0.02073128 -0.004357646) (0.006630619 0.02301193 -0.004614762) (-0.006380041 0.02497475 -0.004470818) (-0.004517537 0.025006 -0.005532214) (-0.005291801 0.02673502 -0.005305452) (-0.004614286 0.02723678 -0.00561177) (-0.005522356 0.0249957 -0.004505078) (-0.00560693 0.0272371 -0.004608462) (-0.003531574 0.02701031 -0.005576667) (0.003524324 0.02701144 -0.005551561) (0.005484313 0.02499886 -0.005487508) (0.004607084 0.02700645 -0.00561148) (0.005302416 0.02671711 -0.005322272) (0.005521009 0.02499915 -0.004513444) (0.005606811 0.02723627 -0.004621988) (0.006395695 0.02497961 -0.004473502) (-0.004377223 0.02875864 -0.005391616) (-0.005382454 0.02876321 -0.004362712) (-0.00452656 0.02900631 -0.004519702) (-0.004475271 0.03098356 -0.004453519) (-0.002527257 0.0290147 -0.005569759) (-0.003378826 0.03076391 -0.005399661) (-0.002516095 0.03122103 -0.005655807) (-0.003507738 0.03100087 -0.004520956) (-0.001510363 0.03101609 -0.005549995) (-0.0004995968 0.03101462 -0.005590361) (0.0005053253 0.03101584 -0.005589859) (0.001510713 0.03101557 -0.005545386) (0.003621964 0.02923856 -0.005616614) (0.002517608 0.03101392 -0.005630251) (0.003366278 0.03075613 -0.005346862) (0.003680671 0.03131365 -0.00471821) (0.00466453 0.02926545 -0.004662489) (0.00538026 0.02877052 -0.004396999) (0.004480562 0.03096001 -0.004404372) (-0.00235129 0.03269188 -0.005273377) (-0.003471726 0.03296964 -0.004459304) (-0.002687927 0.03327828 -0.004703772) (-0.002371859 0.0347066 -0.004357767) (-0.0004985497 0.03300601 -0.005536858) (-0.001513639 0.03301381 -0.004564625) (-0.001507088 0.03500159 -0.004521711) (-0.0005011145 0.03520679 -0.004648175) (0.001493221 0.03281155 -0.005407556) (0.001505426 0.03301187 -0.004573023) (0.0004986791 0.035194 -0.004636198) (0.001519988 0.03500366 -0.004530039) (0.002635458 0.0332745 -0.004691594) (0.003455219 0.03293822 -0.004467647) (0.002354361 0.0347025 -0.004318526) (-0.003209379 -0.03662993 -0.002295191) (-0.002524547 -0.03717367 -0.002533873) (-0.001515522 -0.03683699 -0.00351551) (-0.0004951946 -0.03714823 -0.003537425) (-0.001277006 -0.03861405 -0.002191673) (-0.0005002782 -0.03875669 -0.002388551) (-0.001556368 -0.03703941 -0.002582508) (-0.0005162535 -0.03706394 -0.002575962) (0.0005119122 -0.03715398 -0.003509177) (0.001521028 -0.03682529 -0.003441266) (0.0004962392 -0.03875829 -0.002383819) (0.001245375 -0.03856148 -0.002249475) (0.0005036648 -0.03708341 -0.002623692) (0.001537145 -0.03705858 -0.002574523) (0.002318919 -0.0366241 -0.003249765) (0.002529052 -0.03719035 -0.002535569) (0.003273517 -0.03663479 -0.002291555) (-0.004390593 -0.03279446 -0.003503603) (-0.0043322 -0.03472385 -0.002377995) (-0.005301149 -0.03268847 -0.002330687) (-0.004682207 -0.03328117 -0.002676813) (-0.002663256 -0.03523688 -0.003678444) (-0.003541955 -0.03301843 -0.00354446) (-0.003664401 -0.03531971 -0.002694644) (0.001557636 -0.03507528 -0.003620314) (0.00343104 -0.03478719 -0.003434724) (0.003503761 -0.03300405 -0.003496105) (0.003686362 -0.03529133 -0.002694569) (0.004458258 -0.03296159 -0.003464587) (0.004288934 -0.03470616 -0.002341046) (0.004661619 -0.0332942 -0.002677411) (0.005244892 -0.03269408 -0.002352515) (-0.006395465 -0.02896144 -0.002483709) (-0.004518604 -0.03100058 -0.003513632) (-0.00561343 -0.02924034 -0.0036278) (-0.00560661 -0.03121447 -0.002497393) (-0.00552886 -0.02900245 -0.002510832) (0.005391258 -0.03075806 -0.00337578) (0.005677095 -0.02925949 -0.003632308) (0.005633525 -0.03120889 -0.00250101) (0.005541 -0.02900361 -0.002516706) (0.006374621 -0.02896482 -0.00248987) (-0.006417288 -0.02698216 -0.003493036) (-0.006654452 -0.02525303 -0.00363887) (-0.006647816 -0.02726161 -0.00265956) (-0.007370595 -0.02495511 -0.002484142) (-0.006557307 -0.02501167 -0.002511924) (0.005576892 -0.02701095 -0.003541417) (0.006682187 -0.02525835 -0.003651484) (0.006702996 -0.02725604 -0.002640892) (0.006571274 -0.0250064 -0.002514149) (0.007390408 -0.02495924 -0.002482715) (-0.008300979 -0.020706 -0.002336082) (-0.006545175 -0.02300834 -0.003515192) (-0.007631672 -0.0210199 -0.00361347) (-0.007633169 -0.02322962 -0.002519878) (-0.007521575 -0.02100278 -0.0025039) (0.007398451 -0.02297425 -0.003478816) (0.007607233 -0.02101876 -0.003614384) (0.007634808 -0.02324477 -0.002515282) (0.007520623 -0.02100224 -0.002504392) (0.008301211 -0.02069842 -0.002338009) (-0.008371291 -0.01698161 -0.003387039) (-0.008446161 -0.01897836 -0.002475097) (-0.008633474 -0.01701204 -0.002514669) (-0.007572089 -0.01700588 -0.003521796) (-0.007544516 -0.01900433 -0.002516337) (0.007523004 -0.0190013 -0.003505805) (0.007563091 -0.017011 -0.003519214) (0.007539702 -0.01900294 -0.002509515) (0.008359381 -0.01696503 -0.003478631) (0.008446326 -0.0189788 -0.002471369) (0.008617718 -0.01700545 -0.002508899) (-0.008508126 -0.01499938 -0.003492465) (-0.008646798 -0.01302338 -0.003623428) (-0.008685586 -0.01527649 -0.002658482) (-0.008537726 -0.01300286 -0.002507916) (0.008649789 -0.01299258 -0.003604708) (0.008709214 -0.01527475 -0.002650392) (0.008574009 -0.01300295 -0.002505503) (-0.008514788 -0.01100074 -0.003505653) (-0.008573998 -0.009002594 -0.003522346) (-0.00936628 -0.01096415 -0.002359088) (-0.008572079 -0.01100576 -0.00251232) (-0.009395286 -0.008996561 -0.002483338) (-0.008601689 -0.009025564 -0.002526597) (0.008569168 -0.009003542 -0.003519815) (0.008598417 -0.01100278 -0.002520636) (0.009333527 -0.01072298 -0.002348738) (0.008587937 -0.009007547 -0.002517888) (0.009352905 -0.008985697 -0.002478554) (-0.008613696 -0.00699942 -0.003527765) (-0.00932249 -0.004735233 -0.003340643) (-0.008573175 -0.004998888 -0.003521322) (-0.009420047 -0.006998246 -0.002467432) (-0.008568767 -0.007004086 -0.002510175) (-0.009488884 -0.004998712 -0.0024955) (-0.008580813 -0.005002743 -0.002518419) (0.009336627 -0.006727423 -0.003345261) (0.008564196 -0.005001389 -0.003526876) (0.009305427 -0.004995686 -0.003354295) (0.008553155 -0.0070027 -0.002509966) (0.009400918 -0.006993866 -0.002491854) (0.008540353 -0.005001622 -0.002510977) (0.009479657 -0.005001136 -0.00249924) (-0.008569299 -0.003001555 -0.003530622) (-0.009370541 -0.0009984778 -0.003384846) (-0.008611694 -0.0009994509 -0.003541783) (-0.009556448 -0.002999621 -0.002516676) (-0.009623298 -0.0009992258 -0.002557428) (0.009324313 -0.00300305 -0.003363542) (0.008602956 -0.001000242 -0.003550558) (0.009352927 -0.001000012 -0.003357475) (0.009562978 -0.003003614 -0.002508739) (0.009629334 -0.001007659 -0.002541681) (-0.008608878 0.001004407 -0.003541677) (-0.009320016 0.003002432 -0.003330621) (-0.008561679 0.003000735 -0.003525788) (-0.009626519 0.001001167 -0.00255775) (-0.009560515 0.00300457 -0.002510832) (0.009337799 0.001000118 -0.003366178) (0.008561943 0.003002176 -0.003530941) (0.009301373 0.002996094 -0.003338477) (0.00963873 0.0009990482 -0.002535498) (0.00958204 0.003004033 -0.002506624) (-0.008521869 0.005000428 -0.003510834) (-0.008573324 0.007000317 -0.003534689) (-0.009490542 0.005001698 -0.002495782) (-0.008541105 0.005000941 -0.002512125) (-0.009419749 0.006997667 -0.002472421) (-0.008554528 0.007001241 -0.00251616) (0.009264569 0.004997704 -0.003327392) (0.008558645 0.007005744 -0.003524293) (0.0092982 0.006715954 -0.003351328) (0.009521735 0.005001395 -0.002498214) (0.008573693 0.00700686 -0.002526444) (0.009466954 0.006998267 -0.002486143) (-0.008554808 0.009001635 -0.003518442) (-0.00870352 0.0112768 -0.003650481) (-0.00941646 0.008981284 -0.002464484) (-0.00854786 0.009000075 -0.002512754) (-0.009338189 0.010978 -0.002362625) (-0.008583385 0.01100382 -0.00251955) (0.008698681 0.0112776 -0.003653873) (0.008562102 0.009006541 -0.002521478) (0.009439979 0.008982495 -0.002464799) (0.008581867 0.01100545 -0.002515399) (0.009319557 0.01097176 -0.002397204) (-0.008627041 0.01299101 -0.003621026) (-0.008511542 0.01501242 -0.003494449) (-0.008538398 0.01300181 -0.00250897) (-0.008698013 0.01526933 -0.002668055) (0.008519596 0.01499938 -0.003497949) (0.008574447 0.01300466 -0.002516423) (0.008696787 0.01527878 -0.002671767) (-0.008358516 0.01697113 -0.003472411) (-0.008620427 0.01700303 -0.002508581) (-0.008456014 0.01897797 -0.002478903) (-0.007522554 0.01899991 -0.00350633) (-0.007551874 0.01900592 -0.002509955) (0.007568318 0.0170056 -0.003524308) (0.007691095 0.01927403 -0.003684622) (0.007563912 0.01900813 -0.002506908) (0.008619102 0.01700483 -0.002506351) (0.008382787 0.01896553 -0.002486133) (-0.008311309 0.0207168 -0.002339273) (-0.007393349 0.02298021 -0.003480396) (-0.006544729 0.02300335 -0.003516705) (-0.007523169 0.02100163 -0.002506973) (-0.007644311 0.02323425 -0.002516517) (0.007586485 0.02099011 -0.00350249) (0.006556141 0.02300537 -0.003517794) (0.007364433 0.02275225 -0.003375425) (0.007515596 0.0210013 -0.002500534) (0.007609169 0.02303549 -0.002512071) (-0.006681456 0.02526238 -0.003615872) (-0.006423471 0.02698465 -0.003495616) (-0.007371031 0.02495364 -0.002488105) (-0.006552226 0.02500515 -0.002511059) (-0.006691098 0.02726116 -0.00266086) (-0.005560637 0.0270173 -0.00352498) (0.005571444 0.02701899 -0.003527706) (0.006434291 0.02698786 -0.003496083) (0.006555394 0.02500626 -0.002518739) (0.007379115 0.02495621 -0.002485114) (0.006703758 0.02726466 -0.002636003) (-0.006404861 0.02896821 -0.002495719) (-0.005401605 0.03076045 -0.003380209) (-0.004519912 0.03100408 -0.003517763) (-0.005549363 0.02901315 -0.002515987) (-0.005636295 0.03122387 -0.002509807) (0.005642955 0.02925551 -0.003665091) (0.004731084 0.03134932 -0.003741758) (0.005368084 0.03076773 -0.003400874) (0.005543664 0.02900763 -0.00251406) (0.00563917 0.0312233 -0.002497956) (0.006376171 0.02895736 -0.002483241) (-0.004465224 0.03296475 -0.003469836) (-0.00528404 0.03267817 -0.002362107) (-0.00472962 0.03329645 -0.002676364) (-0.004340273 0.03473215 -0.002383505) (-0.003447923 0.03477977 -0.00346898) (-0.002671772 0.03531084 -0.003746115) (-0.003714442 0.03531309 -0.002729005) (-0.001542802 0.03504005 -0.003586083) (0.001547515 0.03506508 -0.003624107) (0.003530157 0.03301447 -0.003531045) (0.002665014 0.03529993 -0.003738622) (0.00337079 0.03479153 -0.00349204) (0.003688927 0.03526512 -0.002646048) (0.004677335 0.03325872 -0.002648425) (0.005253375 0.03267576 -0.002375032) (0.004310108 0.03469494 -0.002369357) (-0.002333412 0.03658478 -0.003224023) (-0.003217542 0.03663313 -0.002305828) (-0.002569604 0.03720228 -0.002511817) (-0.0004958778 0.03714152 -0.003541808) (-0.001526583 0.03706667 -0.002570228) (-0.0005140694 0.03705503 -0.00258746) (-0.001300991 0.03860202 -0.00218872) (-0.00050158 0.03876019 -0.00238691) (0.001516793 0.03682405 -0.003443391) (0.0005152458 0.03709602 -0.002608581) (0.001537966 0.03704355 -0.002574939) (0.000491668 0.03875377 -0.002390771) (0.001332626 0.03852566 -0.002246976) (0.00250121 0.03716215 -0.002522059) (0.003218847 0.03663547 -0.002299664) (-0.002223695 -0.03859649 -0.001338723) (-0.003490241 -0.03680691 -0.001499428) (-0.002558882 -0.03704167 -0.001529347) (-0.002350928 -0.03873616 -0.0004926394) (-0.003513554 -0.0371802 -0.0005011721) (-0.002628526 -0.03705403 -0.0005248136) (-0.0004980726 -0.0392936 -0.001679063) (-0.001717371 -0.03929203 -0.0004735247) (-0.0005060934 -0.03894935 -0.0004924892) (0.001507113 -0.03900524 -0.001493777) (0.0005229068 -0.03902261 -0.000511295) (0.001593349 -0.03934814 -0.0004979767) (0.002582975 -0.03706087 -0.001541778) (0.003518414 -0.03684889 -0.00151232) (0.002380351 -0.03873462 -0.0004927) (0.002600071 -0.03707826 -0.0005076054) (0.003593396 -0.03717672 -0.0004881488) (-0.004501223 -0.03499575 -0.001508976) (-0.005414217 -0.03300089 -0.00150916) (-0.004566649 -0.0330004 -0.001516619) (-0.004600453 -0.03519845 -0.0004992822) (-0.005574919 -0.03297045 -0.0005000503) (0.003556524 -0.03503548 -0.001516315) (0.004529827 -0.03300881 -0.001516294) (0.005393823 -0.03299565 -0.001494575) (0.004560207 -0.0351675 -0.0004921287) (0.005582715 -0.03296955 -0.0004995479) (-0.006257163 -0.03071774 -0.001356047) (-0.00659917 -0.02919583 -0.001485279) (-0.006337 -0.03074231 -0.0004898349) (-0.006683136 -0.02924446 -0.0004988077) (-0.005534596 -0.03100096 -0.0004979463) (0.005513668 -0.03099758 -0.001504039) (0.005537074 -0.03099825 -0.0004962361) (0.006604307 -0.02902014 -0.001496463) (0.006320646 -0.0307517 -0.0004908019) (0.006636371 -0.0292577 -0.0005001477) (-0.0065492 -0.02700384 -0.001504106) (-0.007602015 -0.02500573 -0.00150109) (-0.007387449 -0.02676902 -0.0004986886) (-0.006590463 -0.02700402 -0.0004996471) (-0.007666649 -0.02522821 -0.0004992826) (0.007358355 -0.02672349 -0.001367422) (0.007606101 -0.02500608 -0.00150185) (0.006608797 -0.02701942 -0.0005039232) (0.007400908 -0.02676539 -0.0004992987) (0.007650778 -0.02523505 -0.0004980377) (-0.008394349 -0.0209713 -0.00149584) (-0.008498005 -0.02095097 -0.0004996645) (-0.007604046 -0.02100719 -0.001510633) (-0.00758532 -0.02301719 -0.0005009797) (-0.007587205 -0.02101528 -0.0005034018) (0.007533803 -0.02300262 -0.001505815) (0.007594498 -0.02100705 -0.001512962) (0.007547728 -0.02300541 -0.0005035319) (0.007567756 -0.02100775 -0.000504157) (0.008393021 -0.02096975 -0.001498607) (0.008286917 -0.02267308 -0.0003817561) (0.008493676 -0.02098962 -0.000498367) (-0.008625151 -0.01901236 -0.001499299) (-0.008500424 -0.01699833 -0.001501902) (-0.008658969 -0.01923483 -0.0005026394) (-0.008511493 -0.01700004 -0.0004997074) (0.008498553 -0.01700135 -0.001500589) (0.008667327 -0.01924336 -0.0005001284) (0.008515133 -0.01700158 -0.0005013508) (-0.008571734 -0.01500193 -0.001510761) (-0.009343983 -0.01295149 -0.001484091) (-0.008601051 -0.01302206 -0.001513898) (-0.009314667 -0.01468619 -0.0003767724) (-0.008588786 -0.0150112 -0.0005022329) (-0.009441409 -0.01298306 -0.0004982053) (-0.008544859 -0.01300482 -0.0005004591) (0.008595589 -0.01300147 -0.001502349) (0.009338383 -0.01296543 -0.001465031) (0.008566736 -0.01499883 -0.0005051955) (0.00932245 -0.01472918 -0.0004835742) (0.00850827 -0.01300008 -0.0005041231) (0.009393261 -0.0129908 -0.0004975485) (-0.008553879 -0.01100401 -0.001505994) (-0.009546048 -0.008999988 -0.001497983) (-0.009576346 -0.01099748 -0.0005022738) (-0.009651496 -0.009007685 -0.000502653) (0.009392878 -0.01099374 -0.001480415) (0.008534554 -0.009002977 -0.001504489) (0.009474559 -0.008999497 -0.001490754) (0.008510614 -0.01100007 -0.0005011316) (0.009480665 -0.01099797 -0.0004968611) (0.009572766 -0.009003494 -0.0004974314) (-0.009622535 -0.005009861 -0.001522107) (-0.009655712 -0.007017246 -0.0005097372) (-0.009455252 -0.00499418 -0.0004936028) (0.00956219 -0.00700413 -0.001499959) (0.009643141 -0.005019738 -0.001508138) (0.009664864 -0.007006782 -0.0004967281) (0.009662414 -0.005216522 -0.0004903478) (-0.009473486 -0.0009986848 -0.001501247) (-0.009414285 -0.002997302 -0.0004961975) (-0.009451042 -0.0009978308 -0.0004977344) (0.009658488 -0.003023678 -0.001624967) (0.009484064 -0.001000763 -0.001506335) (0.009424706 -0.00300038 -0.0004976865) (0.009451055 -0.0009996355 -0.0004993485) (-0.009647926 0.003261829 -0.001654237) (-0.009450514 0.0009995873 -0.0004990173) (-0.009411678 0.002999845 -0.0005029246) (0.009474872 0.0009994885 -0.001499112) (0.009652318 0.003282338 -0.00164865) (0.009458416 0.0009991544 -0.0004984558) (0.009426441 0.002999666 -0.0004983584) (-0.009629179 0.007007237 -0.001506526) (-0.009460389 0.004999631 -0.000499028) (-0.009683637 0.006993763 -0.0005043072) (0.009647367 0.004989979 -0.001625544) (0.009665508 0.007015769 -0.001522988) (0.009407454 0.004995829 -0.0005011495) (0.009477527 0.006998002 -0.0005025679) (-0.009484327 0.01099551 -0.001495061) (-0.008549359 0.01100203 -0.00150753) (-0.009659693 0.009007129 -0.0004941366) (-0.009584492 0.01100153 -0.0005038335) (0.009619 0.009000303 -0.001518176) (0.008560551 0.01100567 -0.001509664) (0.009476325 0.01099519 -0.001493491) (0.009714675 0.009040808 -0.0005068378) (0.00957502 0.01100213 -0.0005017954) (-0.008583512 0.01300572 -0.001518631) (-0.008564656 0.01500243 -0.001507817) (-0.009444334 0.01297895 -0.0005004368) (-0.008536277 0.0130057 -0.0005093726) (-0.0093217 0.01468918 -0.0003667523) (-0.00858952 0.01501426 -0.0004996105) (0.009378139 0.01296644 -0.001481004) (0.008579456 0.01500365 -0.001508445) (0.00853604 0.01300472 -0.0005048204) (0.009434222 0.01298949 -0.0004992805) (0.00860392 0.01501304 -0.0005051179) (0.009341717 0.01472902 -0.0004827495) (-0.008495622 0.01700005 -0.001502041) (-0.00861416 0.01901338 -0.00149884) (-0.008512963 0.01700069 -0.0005024112) (-0.008663804 0.01924022 -0.0004999768) (0.008570249 0.01904211 -0.001511887) (0.008531509 0.01700559 -0.0005022731) (0.008661955 0.01920723 -0.0004913337) (-0.00839568 0.02096867 -0.001496935) (-0.00849788 0.02094965 -0.0004993498) (-0.007533479 0.0230046 -0.001504376) (-0.007587323 0.02101019 -0.0005047672) (-0.007589572 0.02300686 -0.0005027127) (0.007565561 0.02100427 -0.001505807) (0.007511957 0.0230011 -0.001497802) (0.007548351 0.02100411 -0.0005006557) (0.007525318 0.02300229 -0.0005019003) (0.008440561 0.02093936 -0.0004904036) (-0.0073357 0.02670756 -0.001351516) (-0.006551768 0.02700698 -0.001508693) (-0.007658556 0.02523988 -0.0005007633) (-0.007395727 0.02676277 -0.0004981439) (-0.006586155 0.02701587 -0.0005008723) (0.007526265 0.02503183 -0.001503098) (0.006559711 0.02700996 -0.001508433) (0.007344285 0.02670674 -0.001360273) (0.007635814 0.02502696 -0.0005003562) (0.006613129 0.02701685 -0.000499516) (0.007387542 0.0267604 -0.000497818) (-0.006611097 0.02920345 -0.00149098) (-0.006264601 0.0307037 -0.001322246) (-0.006681665 0.02925748 -0.0005004796) (-0.006337156 0.03075644 -0.0004953623) (-0.00552456 0.03100716 -0.001499384) (-0.005544968 0.03101067 -0.0005018688) (0.005518689 0.03099856 -0.001503209) (0.00552951 0.0309959 -0.0004944079) (0.006239249 0.03068692 -0.001344748) (0.006662924 0.02923457 -0.0004959295) (0.006318077 0.03073672 -0.0004948259) (-0.004561367 0.0330134 -0.001516787) (-0.004502618 0.03499592 -0.001503881) (-0.005573729 0.03297259 -0.0005012026) (-0.004591621 0.03517586 -0.0004952008) (-0.003591648 0.03502461 -0.0015293) (0.003560784 0.03500055 -0.001532159) (0.0053926 0.03299419 -0.001495778) (0.004462613 0.03498468 -0.001492438) (0.005584161 0.03297533 -0.0004979425) (0.004561347 0.03517852 -0.0004900904) (-0.002553731 0.03705264 -0.001521696) (-0.002282976 0.03858947 -0.001286948) (-0.003508724 0.03718165 -0.0005007465) (-0.002625771 0.03706454 -0.0005003469) (-0.002338697 0.03875101 -0.0004952527) (-0.001510194 0.03900229 -0.001513465) (-0.0005360884 0.03928259 -0.001681477) (-0.001694356 0.0393042 -0.0005011821) (-0.000532958 0.03905051 -0.0005123104) (0.0004845587 0.03929956 -0.001658911) (0.001499347 0.03899698 -0.001512225) (0.0005307455 0.03902635 -0.00052125) (0.001621305 0.03934192 -0.0004968665) (0.003508205 0.03683408 -0.001509628) (0.002602615 0.03707758 -0.0005175395) (0.003587256 0.03718055 -0.0004956321) (0.002387806 0.0387293 -0.0004835523) (-0.00234324 -0.03872539 0.0005012229) (-0.003500494 -0.03717793 0.0005062296) (-0.002606133 -0.03707725 0.000503266) (-0.002250626 -0.03860593 0.001316673) (-0.003504639 -0.0368155 0.001505716) (-0.002567691 -0.03705745 0.001526777) (-0.000523484 -0.03902549 0.0005575193) (-0.00151206 -0.03901424 0.001521218) (-0.0005463702 -0.03934141 0.001636233) (0.001611484 -0.03931823 0.000538457) (0.0004746851 -0.03930246 0.00169802) (0.001506442 -0.03903353 0.001505681) (0.002595882 -0.03707709 0.0005246488) (0.003588154 -0.03717022 0.0004955197) (0.002548498 -0.03703667 0.001525075) (0.003531109 -0.03684098 0.0015065) (-0.004600666 -0.03519371 0.0005013813) (-0.005563815 -0.03296921 0.0005049308) (-0.004503341 -0.03500147 0.001521928) (-0.005416892 -0.03300892 0.001504265) (-0.004568986 -0.03301016 0.001524676) (-0.003605323 -0.03502613 0.001529203) (0.003571615 -0.03501779 0.001515997) (0.005588047 -0.03297025 0.0004988008) (0.004473129 -0.03498868 0.001505064) (0.004571592 -0.03302753 0.001512191) (0.005445701 -0.03283183 0.0015189) (-0.006325778 -0.03074956 0.0004997196) (-0.006667146 -0.02922552 0.0004973853) (-0.006265672 -0.0307099 0.001364086) (-0.006613172 -0.02919938 0.001493499) (-0.005523628 -0.03100287 0.001503456) (0.005534344 -0.03099878 0.0005097586) (0.00554671 -0.03100998 0.001515455) (0.006648803 -0.02923687 0.0004976689) (0.006615059 -0.02899565 0.001504162) (-0.006592003 -0.02701728 0.0005036095) (-0.007651383 -0.02523645 0.0005007247) (-0.007338455 -0.02670559 0.001364482) (-0.006550253 -0.02701014 0.001504282) (-0.007598569 -0.02501864 0.001497739) (0.007395801 -0.02676713 0.0005003983) (0.007655983 -0.0252397 0.0005007635) (0.006547 -0.02700782 0.001510407) (0.007339934 -0.026733 0.001482474) (0.007607079 -0.02501235 0.001502452) (-0.008498 -0.02095112 0.0004987279) (-0.008395635 -0.02097142 0.001497652) (-0.00758575 -0.02101373 0.0005007248) (-0.007521881 -0.02300286 0.001500135) (-0.007593984 -0.02101862 0.001506068) (0.007568631 -0.02300391 0.0005030822) (0.007576871 -0.02101013 0.0005010315) (0.007529962 -0.02300117 0.001504225) (0.007585766 -0.02100857 0.001500096) (0.008496005 -0.02096631 0.0004981435) (0.008396966 -0.02097078 0.00149826) (-0.008664538 -0.01925174 0.000500715) (-0.008509897 -0.01700123 0.0005005273) (-0.008628267 -0.01901337 0.001501238) (-0.008491756 -0.01699766 0.001502196) (0.008519118 -0.01700112 0.0004998217) (0.008627975 -0.01901523 0.001500769) (0.008503312 -0.01699638 0.001502697) (-0.008588202 -0.01499833 0.0005007167) (-0.00943422 -0.01298221 0.000502045) (-0.008541592 -0.01300394 0.0005005561) (-0.008555443 -0.01499738 0.001503227) (-0.009361922 -0.01295383 0.001492364) (-0.008580851 -0.01300888 0.001505727) (0.009321666 -0.01472134 0.0004763909) (0.008510118 -0.01299718 0.0005014651) (0.009385534 -0.01299146 0.0004978079) (0.008575081 -0.01500314 0.001504884) (0.008608834 -0.01299708 0.001507008) (0.009343797 -0.01296615 0.001475605) (-0.009660906 -0.009004484 0.0005079859) (-0.009480597 -0.01099737 0.001497265) (-0.008542659 -0.01100483 0.001505937) (-0.009553808 -0.009001418 0.001502548) (0.009472542 -0.01099855 0.0004997254) (0.009562118 -0.009002533 0.0005012857) (0.008544805 -0.01100117 0.001511191) (0.00939343 -0.01099722 0.001481249) (0.008534662 -0.009001952 0.001505512) (0.009479091 -0.008998816 0.001491862) (-0.009456021 -0.004998631 0.0005002775) (-0.009626212 -0.007001796 0.001515687) (-0.009640083 -0.00500473 0.00151222) (0.00965108 -0.007008212 0.000506755) (0.009676565 -0.005040039 0.0005025368) (0.00956579 -0.007003613 0.001505522) (0.009649251 -0.005015695 0.001522866) (-0.009449503 -0.0009977973 0.0004990718) (-0.009666399 -0.003267522 0.001647378) (-0.009470462 -0.0009976772 0.001503899) (0.009454991 -0.003001306 0.0005036343) (0.009438143 -0.0009987307 0.0005001496) (0.009660129 -0.003022968 0.001613594) (0.009485387 -0.001000886 0.001504793) (-0.009409304 0.00299811 0.0004977423) (-0.009475674 0.0009987555 0.001503603) (-0.009664487 0.003278744 0.001660101) (0.009448243 0.0009996762 0.0004992125) (0.009420407 0.002998362 0.0005004639) (0.009480012 0.001001157 0.001499796) (0.009683222 0.003278898 0.00166289) (-0.00971127 0.007043837 0.0005079537) (-0.009635034 0.0050132 0.001515715) (-0.009621298 0.007004784 0.001512581) (0.009410043 0.004997218 0.0005003622) (0.009676049 0.007243557 0.0006308077) (0.009622259 0.004990594 0.001608555) (0.009655684 0.007013652 0.001537878) (-0.009572195 0.01100095 0.0004997922) (-0.00954742 0.009001571 0.001504569) (-0.009475869 0.01099678 0.001499247) (-0.008549553 0.01099895 0.001507987) (0.009711604 0.009017041 0.0005095448) (0.0095717 0.01099918 0.0005010602) (0.009607352 0.009003055 0.001509562) (0.00856182 0.01100035 0.001514939) (0.00947163 0.01099447 0.001499329) (-0.00853678 0.01300142 0.0004963067) (-0.009320762 0.01470517 0.0003618337) (-0.00860096 0.01500707 0.000505075) (-0.00935724 0.0129458 0.001487559) (-0.008577351 0.01299827 0.001493421) (-0.008558711 0.01499895 0.001499177) (0.009435924 0.01299078 0.0004997336) (0.008581912 0.01500338 0.0005035008) (0.009335405 0.01474016 0.0004806661) (0.008617742 0.01300996 0.001529212) (0.009357954 0.01297135 0.001479927) (0.008571233 0.01500494 0.001502658) (-0.00851687 0.01700107 0.0004995361) (-0.008658359 0.0192562 0.0005022942) (-0.008500947 0.01700052 0.001499344) (-0.008620229 0.0190153 0.001507632) (0.00865528 0.01924925 0.0004976515) (0.008499686 0.01700036 0.001499996) (0.00860548 0.0190129 0.001506364) (-0.008502741 0.02095 0.0004984587) (-0.008391612 0.02096895 0.00149817) (-0.007584927 0.02300643 0.0004974006) (-0.007591035 0.02100663 0.001513178) (-0.007523137 0.02299971 0.001497777) (0.007549994 0.02100472 0.0005036462) (0.0075245 0.02300234 0.0005011887) (0.007569501 0.02100135 0.00150737) (0.007515196 0.02299867 0.001500329) (0.008360638 0.02076802 0.00149386) (-0.0073834 0.02676241 0.0004957963) (-0.006588032 0.02701272 0.0005029007) (-0.007598873 0.02501752 0.001499751) (-0.007341355 0.02670092 0.001349645) (-0.006553173 0.02700675 0.001505287) (0.007637638 0.02503277 0.0005006684) (0.006605698 0.02701659 0.0005056625) (0.00738474 0.02675917 0.0005009577) (0.007538526 0.02502477 0.0015042) (0.006564751 0.02701369 0.001503658) (0.007346824 0.02670985 0.001367954) (-0.006683355 0.02926859 0.0004994091) (-0.006323221 0.03076431 0.0005005889) (-0.00661586 0.0291951 0.001492099) (-0.00628317 0.03068054 0.001362185) (-0.005532875 0.03100497 0.0005008963) (-0.005529427 0.0310037 0.001505617) (0.005527308 0.03100825 0.0005076619) (0.005544739 0.03101483 0.001503337) (0.006344496 0.0307325 0.0004941513) (0.006619414 0.0290005 0.001502786) (-0.004590384 0.03517342 0.0005038486) (-0.005421128 0.03300356 0.001511141) (-0.004550126 0.03303035 0.001515194) (-0.004513829 0.03499946 0.001513788) (-0.003600291 0.03503154 0.001546142) (0.003578556 0.03501152 0.001532748) (0.005578886 0.03297118 0.0005055762) (0.00455609 0.03516762 0.0005042071) (0.004570077 0.03302097 0.001514132) (0.00546859 0.03283001 0.001515925) (0.004475248 0.03498801 0.001503791) (-0.002609455 0.03707111 0.0005245874) (-0.002331885 0.03874438 0.0004951399) (-0.003507747 0.03681338 0.001505575) (-0.002570527 0.03704208 0.001533195) (-0.002234322 0.03860417 0.001344037) (-0.001750929 0.03930523 0.000512314) (-0.000543159 0.03901267 0.0005609165) (-0.001534681 0.03707687 0.001561767) (-0.001479024 0.03891533 0.001476559) (-0.0005670135 0.03931934 0.001596365) (0.0005372511 0.03900293 0.0005285284) (0.001586243 0.03932606 0.0005527495) (0.0004863287 0.0393147 0.001681225) (0.001528344 0.03900472 0.001529494) (0.003588709 0.03716855 0.0004951878) (0.0023613 0.03874805 0.0004887133) (0.002586722 0.03707363 0.001543505) (0.003537879 0.03685274 0.00152578) (0.002209274 0.03856868 0.001300594) (-0.003231121 -0.0366011 0.002356734) (-0.002539091 -0.03719309 0.002536895) (-0.002324879 -0.03664841 0.003285671) (-0.0005008617 -0.03877272 0.002378421) (-0.001559161 -0.03704823 0.002590472) (-0.0005145564 -0.03707817 0.002596933) (-0.001515819 -0.03685036 0.003527873) (-0.000493437 -0.03719332 0.003598311) (0.001244633 -0.03857223 0.00226855) (0.0005128594 -0.03707276 0.002600637) (0.001531122 -0.03706534 0.002578395) (0.0004933209 -0.0371788 0.003601533) (0.001519056 -0.03684194 0.003540604) (0.00250159 -0.03715739 0.002501067) (0.003202126 -0.03666672 0.002278997) (0.002242117 -0.03660998 0.003210273) (-0.004339035 -0.0347266 0.002361576) (-0.005319059 -0.03268218 0.00234847) (-0.004667257 -0.03327787 0.002699083) (-0.004437161 -0.03295244 0.003459399) (-0.00347324 -0.03479545 0.003472704) (-0.002694574 -0.0353525 0.003713727) (-0.003500238 -0.03299678 0.003500861) (-0.001532173 -0.03503795 0.00361647) (0.001526557 -0.03502348 0.00357257) (0.003697489 -0.03527153 0.002703255) (0.002630594 -0.03529234 0.003682521) (0.003470914 -0.03479012 0.003470338) (0.00348869 -0.03299241 0.003492626) (0.004712762 -0.03324621 0.002634063) (0.005282471 -0.03267435 0.002366269) (0.004374398 -0.03297784 0.00346541) (-0.006406221 -0.0289636 0.002494747) (-0.005551248 -0.0290038 0.002512501) (-0.005391178 -0.03076004 0.003378061) (-0.004511594 -0.03099844 0.003503097) (-0.005642645 -0.02924279 0.003625013) (0.005616114 -0.03122246 0.002513754) (0.005534386 -0.02900769 0.002512837) (0.004525104 -0.03099975 0.003503947) (0.005401058 -0.03076268 0.003384194) (0.005630708 -0.02925123 0.003631514) (0.006378204 -0.02895356 0.002478043) (-0.006694127 -0.02727698 0.002647646) (-0.007395016 -0.0249602 0.002481441) (-0.006564595 -0.02501262 0.002522438) (-0.006439201 -0.02698821 0.003508484) (-0.00670468 -0.02527242 0.003650371) (-0.005572958 -0.02702335 0.003539955) (0.005543798 -0.02700742 0.003526138) (0.006570833 -0.02500498 0.002518988) (0.007392252 -0.02496915 0.002487154) (0.006426657 -0.02698509 0.003500304) (0.006692211 -0.02528759 0.003654085) (-0.008301509 -0.02070249 0.002358067) (-0.007526398 -0.02100196 0.002501214) (-0.007398467 -0.02297876 0.003491049) (-0.006547907 -0.02301367 0.003517696) (-0.007646932 -0.02101972 0.003622506) (0.007653322 -0.02323506 0.002520828) (0.007527135 -0.02100448 0.002502793) (0.006551543 -0.02300886 0.003517374) (0.00738987 -0.0229783 0.003486998) (0.007620004 -0.0210186 0.003619245) (0.008315301 -0.02070456 0.002350836) (-0.008456503 -0.01897778 0.00247334) (-0.008625258 -0.01703274 0.002512423) (-0.008371207 -0.01696841 0.003471466) (-0.007518866 -0.01900223 0.003504995) (-0.007558326 -0.01700472 0.003506983) (0.00755378 -0.01900584 0.00251329) (0.007519577 -0.01900103 0.003514041) (0.00758256 -0.01700731 0.003532861) (0.008630923 -0.0170339 0.002515159) (0.008380122 -0.01697795 0.003389049) (-0.0084948 -0.01499958 0.002496735) (-0.008537 -0.01300181 0.002504804) (-0.008516646 -0.01501358 0.003509656) (-0.008636713 -0.0130245 0.003614752) (0.008566966 -0.01300211 0.002518004) (0.00852969 -0.01500229 0.00351238) (0.008644103 -0.0129884 0.003624746) (-0.008568833 -0.0110062 0.002513014) (-0.009387111 -0.00898396 0.002453968) (-0.008542002 -0.009007016 0.002512174) (-0.008510476 -0.0110013 0.003503359) (-0.008564175 -0.009003869 0.00352898) (0.009326596 -0.01072544 0.002339011) (0.008582845 -0.009002697 0.002524289) (0.009316445 -0.009009181 0.002365828) (0.008680498 -0.01127873 0.003659972) (0.008531012 -0.009000709 0.003508553) (-0.008555227 -0.007000808 0.002510033) (-0.009501054 -0.005000318 0.002497316) (-0.008549717 -0.007001588 0.003513889) (-0.009286939 -0.004959919 0.003372791) (-0.008536156 -0.004999715 0.003506731) (0.009446529 -0.006984963 0.002473323) (0.008555054 -0.005004743 0.002517465) (0.009459366 -0.004999108 0.002484278) (0.00857365 -0.007003894 0.003522795) (0.008531918 -0.005002333 0.00351396) (0.009322809 -0.004725349 0.003331759) (-0.009632562 -0.001001731 0.002531919) (-0.009311739 -0.002996923 0.003353281) (-0.008571816 -0.002999777 0.003528341) (-0.009374984 -0.0009980472 0.003379851) (-0.008617502 -0.00100262 0.003542329) (0.009539964 -0.003003322 0.002499929) (0.00961725 -0.001004705 0.002533127) (0.008550466 -0.003002289 0.003514482) (0.009286902 -0.002995326 0.003359383) (0.008598679 -0.001002728 0.003547392) (0.009370987 -0.0009990942 0.003362762) (-0.009563269 0.003002834 0.00251543) (-0.009373561 0.001000618 0.003378182) (-0.008618158 0.001002038 0.003532804) (-0.009315046 0.002998163 0.0033412) (-0.008570257 0.003000802 0.003525594) (0.009630668 0.001000099 0.002556502) (0.009581564 0.003004839 0.002517198) (0.008602682 0.0009988913 0.003540705) (0.009377711 0.0009973254 0.003386757) (0.008587484 0.003000113 0.00351335) (0.009330622 0.002996748 0.003350419) (-0.008545115 0.005004389 0.002512245) (-0.009426225 0.006997003 0.002482731) (-0.008554304 0.007003872 0.002520748) (-0.009306899 0.004962961 0.003339834) (-0.008531965 0.00500105 0.003513323) (-0.00854691 0.007000715 0.003516386) (0.009529181 0.005001148 0.002503113) (0.008579069 0.006997204 0.002509845) (0.009473179 0.00699655 0.002495529) (0.008546583 0.00499961 0.003510809) (0.009272889 0.004991323 0.003344477) (0.00854504 0.006998896 0.003511007) (0.009311188 0.006733944 0.003328731) (-0.008548857 0.008999799 0.00251338) (-0.009342291 0.01097731 0.00238083) (-0.008588431 0.01099921 0.002517291) (-0.008557966 0.009001634 0.00353387) (-0.008511349 0.01099831 0.003506115) (0.009448493 0.008982577 0.002472586) (0.008585213 0.01100066 0.00252451) (0.009354989 0.01097458 0.002383241) (0.008563703 0.00900429 0.003532708) (0.008517411 0.01100071 0.003505456) (-0.008547558 0.01299785 0.002507978) (-0.00849605 0.01499828 0.002498495) (-0.008617488 0.01302078 0.00361828) (-0.008523489 0.01501426 0.003505832) (0.008506779 0.01500108 0.002501627) (0.008663869 0.01302377 0.003624603) (0.008531307 0.01501512 0.003513703) (-0.008632172 0.01702965 0.002513461) (-0.008460377 0.01897744 0.002478412) (-0.008374622 0.01696899 0.003475178) (-0.007549525 0.01900301 0.002510489) (-0.007544066 0.01700836 0.003521818) (-0.007514109 0.01900143 0.003503897) (0.007592411 0.01900433 0.002523315) (0.007559607 0.0170031 0.003514517) (0.007529271 0.0190035 0.003510959) (0.008401886 0.018968 0.002488094) (0.008373009 0.01697021 0.003476874) (-0.008311806 0.02070456 0.002321505) (-0.007635371 0.02325427 0.002626789) (-0.007622142 0.02101862 0.003630166) (-0.007395095 0.02297741 0.003481966) (-0.006554679 0.02300669 0.003528302) (0.007537509 0.02100298 0.002507171) (0.007628167 0.02303766 0.002515895) (0.007612429 0.0210245 0.003516664) (0.006548826 0.02300638 0.003520877) (0.007378441 0.0229805 0.003396137) (-0.006570068 0.02501066 0.00252281) (-0.006683201 0.02726607 0.0026623) (-0.006696859 0.02527382 0.00365936) (-0.006437676 0.02698977 0.003510609) (-0.005568816 0.02700879 0.003551605) (0.005546743 0.02701171 0.003525951) (0.007367512 0.02495345 0.002485718) (0.006683786 0.02725962 0.0026445) (0.006685628 0.02527846 0.003669887) (0.006428085 0.02698483 0.00349833) (-0.006404576 0.02896569 0.002491883) (-0.005632599 0.03121304 0.002508206) (-0.005633288 0.02923932 0.003631584) (-0.005393909 0.0307584 0.00337535) (-0.004516839 0.03099341 0.003511195) (0.005538669 0.0290071 0.002508213) (0.00563782 0.03122137 0.002511647) (0.005626783 0.02924722 0.00363065) (0.004544035 0.03101341 0.003532494) (0.005401491 0.0307618 0.003387743) (-0.004718184 0.0333104 0.002663775) (-0.004347074 0.03471707 0.002371586) (-0.004430317 0.03294983 0.003447971) (-0.003691009 0.03535016 0.002690753) (-0.003503888 0.03299916 0.003498606) (-0.003461392 0.03479367 0.003454276) (-0.002667887 0.03531501 0.003705097) (-0.001531555 0.03505637 0.003597577) (0.001543774 0.03504271 0.003627076) (0.003688924 0.03531549 0.002713215) (0.003509024 0.03300463 0.003504547) (0.002659296 0.03531559 0.003692198) (0.003474873 0.0347974 0.003481118) (0.005269562 0.03267176 0.002346802) (0.004311106 0.03470103 0.002360631) (0.004386283 0.03298152 0.003471054) (-0.002534358 0.0372034 0.002537028) (-0.002264668 0.03663291 0.003298524) (-0.0005218458 0.03708552 0.002586799) (-0.0004956266 0.03874716 0.002385682) (-0.001528008 0.03684754 0.003449544) (-0.0004894086 0.0371576 0.003596132) (0.001562888 0.03708524 0.002583449) (0.0004901337 0.03876625 0.002390043) (0.001307669 0.03852085 0.002300615) (0.0004983193 0.03718472 0.003598647) (0.001520151 0.03685259 0.003534815) (0.003277306 0.03663962 0.002309543) (0.00230382 0.03669721 0.003219088) (-0.002356038 -0.03473038 0.004365646) (-0.003465213 -0.03296422 0.004459793) (-0.002660769 -0.03330645 0.004725971) (-0.002352238 -0.03269597 0.005304183) (-0.0005010959 -0.03520516 0.004650585) (-0.00151715 -0.03302871 0.004580841) (-0.001498231 -0.03300344 0.00539289) (-0.0004979248 -0.03297463 0.005575991) (0.001515337 -0.03503668 0.004541182) (0.001520044 -0.03300617 0.004571586) (0.0005047053 -0.03297762 0.005593354) (0.001503596 -0.03300428 0.005407426) (0.002672886 -0.03326684 0.004696582) (0.003456595 -0.0329607 0.00444714) (0.002314442 -0.03270132 0.005249024) (-0.004450525 -0.0309931 0.004466555) (-0.005366953 -0.02875157 0.004379122) (-0.004526436 -0.02900313 0.004520807) (-0.004384913 -0.0287607 0.005388388) (-0.003390384 -0.03076519 0.00540676) (-0.00252456 -0.03122629 0.005661945) (-0.00364406 -0.02924263 0.005684098) (-0.002519565 -0.02901119 0.005570308) (-0.001505347 -0.03101401 0.005545182) (-0.0005006115 -0.03102743 0.005554709) (0.0005115582 -0.03101946 0.005565998) (0.001503449 -0.03100085 0.005534566) (0.003494303 -0.03099536 0.004512749) (0.002507443 -0.03121846 0.005613173) (0.00337755 -0.03076246 0.005388771) (0.00252825 -0.02900731 0.005556014) (0.003638548 -0.02923699 0.005629629) (0.004682822 -0.02927218 0.004745911) (0.005367335 -0.0287666 0.004382124) (0.004375567 -0.02876414 0.00537245) (-0.006395 -0.02498707 0.00448084) (-0.00553756 -0.02501095 0.004535416) (-0.005294735 -0.02671137 0.005316119) (-0.004622153 -0.02723761 0.00561601) (-0.005502251 -0.02500209 0.005497002) (-0.004528826 -0.02500465 0.005548551) (-0.003535349 -0.02701825 0.005579114) (0.003529093 -0.02701016 0.0055597) (0.005628261 -0.02701195 0.004616587) (0.005522158 -0.02500267 0.004524322) (0.004633286 -0.02700999 0.005609093) (0.005304999 -0.02670214 0.005311474) (0.004517319 -0.02499998 0.005524266) (0.005484104 -0.02500249 0.005481726) (0.006393578 -0.02498058 0.004482474) (-0.006637572 -0.02301825 0.004616413) (-0.00732251 -0.02097294 0.004367781) (-0.006517048 -0.02100316 0.00451124) (-0.006303236 -0.02272992 0.00533877) (-0.006486821 -0.02099562 0.005488818) (-0.00567388 -0.02326269 0.005661558) (-0.005526168 -0.0210025 0.005549647) (0.005656093 -0.02327399 0.005654733) (0.005545245 -0.02101731 0.005533685) (0.006537756 -0.02100268 0.004522682) (0.007354352 -0.02074239 0.004367872) (0.006319839 -0.02272744 0.005343655) (0.006424809 -0.02101293 0.005510361) (-0.00764531 -0.01727808 0.004640579) (-0.006646274 -0.01902772 0.005655897) (-0.007361468 -0.01696205 0.005363304) (-0.006512359 -0.01700369 0.005508569) (0.007568087 -0.01898554 0.004487935) (0.007689234 -0.01704291 0.004661322) (0.006646581 -0.0190197 0.005616263) (0.006521487 -0.01699866 0.005518873) (0.007334655 -0.01696731 0.005359414) (-0.00828087 -0.01471779 0.004342997) (-0.00835389 -0.01300731 0.004378299) (-0.007528531 -0.01300287 0.004520876) (-0.00742004 -0.01501105 0.005509543) (-0.006541472 -0.01500743 0.005532609) (-0.007586433 -0.01298405 0.005578679) (0.007531767 -0.01500357 0.004516325) (0.007551422 -0.01300501 0.004533526) (0.006555951 -0.01500287 0.00554688) (0.007417121 -0.01501347 0.00550327) (0.007590662 -0.01298436 0.00557994) (0.008379691 -0.01298092 0.004387296) (-0.008480368 -0.0109892 0.004490634) (-0.008577687 -0.009016422 0.004523267) (-0.007679111 -0.01104038 0.005675147) (-0.007521563 -0.00900086 0.005514132) (0.007543361 -0.01100335 0.004530578) (0.007665777 -0.01100927 0.005654172) (0.00769012 -0.009260917 0.005666574) (0.008519302 -0.009001273 0.004511325) (-0.008600096 -0.006985467 0.004597962) (-0.008665326 -0.004998541 0.004659064) (-0.0083074 -0.006732594 0.005352343) (-0.008249862 -0.004994967 0.005379989) (-0.007537455 -0.007000486 0.005523999) (-0.007548779 -0.005001411 0.005539246) (0.007521276 -0.007000133 0.005508686) (0.007523695 -0.005001403 0.005512921) (0.0086086 -0.004986759 0.004606032) (0.008293945 -0.00496162 0.005344769) (-0.008713233 -0.003006417 0.004703752) (-0.008711596 -0.00127757 0.004668437) (-0.008340458 -0.002995884 0.005347471) (-0.00839669 -0.001001201 0.005381058) (-0.007584446 -0.003001403 0.005564139) (-0.007597015 -0.001008743 0.005572651) (0.007563334 -0.003002464 0.005543243) (0.007593849 -0.001000108 0.005545222) (0.008682747 -0.001272837 0.004667937) (0.00831707 -0.002996635 0.005334233) (0.008384043 -0.001000709 0.005372665) (-0.008712363 0.001281435 0.004675513) (-0.008732514 0.00300578 0.004664605) (-0.008392905 0.001001042 0.005384278) (-0.008325006 0.003000694 0.005362591) (-0.00757977 0.0009998529 0.005571592) (-0.007586757 0.003000377 0.005553655) (0.007546317 0.000998286 0.005528369) (0.007585995 0.003002914 0.005560345) (0.008752716 0.00303615 0.004655423) (0.008390559 0.001002232 0.005387063) (0.008339153 0.002999389 0.005372301) (-0.008663832 0.00499933 0.004648131) (-0.008604751 0.006985009 0.004598828) (-0.008280895 0.004995048 0.005328601) (-0.008299741 0.006735844 0.005351966) (-0.007546398 0.005000759 0.005537219) (-0.007534139 0.006999879 0.005525468) (0.007572385 0.005000183 0.005543753) (0.007537046 0.007000604 0.005528933) (0.00864717 0.007000298 0.004622773) (0.008295596 0.004999347 0.005345) (0.008322368 0.006963018 0.005342951) (-0.008571654 0.009014119 0.004523557) (-0.008487166 0.01098701 0.0044925) (-0.007551994 0.01100085 0.004529597) (-0.007518966 0.008999435 0.005512724) (-0.007672581 0.01103657 0.005682242) (0.007561861 0.01100274 0.004539772) (0.007517078 0.009000818 0.005512808) (0.007702547 0.01104568 0.005688519) (0.008487635 0.01098983 0.004493302) (-0.008380779 0.01297668 0.004375774) (-0.007540335 0.01500144 0.004522366) (-0.007590843 0.01298439 0.005581094) (-0.007427147 0.01501135 0.005507928) (-0.006540363 0.01500181 0.005533108) (0.007548816 0.01300176 0.004536505) (0.007522893 0.01499941 0.004511886) (0.007601689 0.01298649 0.005586736) (0.006568886 0.01501175 0.005566331) (0.007426014 0.01500964 0.005514182) (0.008308958 0.01472146 0.004333671) (-0.007566298 0.0189875 0.004483168) (-0.007353623 0.01696657 0.005351664) (-0.006515836 0.01700191 0.005510864) (-0.006657509 0.01902661 0.005627644) (0.007634398 0.01726233 0.004625818) (0.006586461 0.01901166 0.004542006) (0.007440913 0.01901769 0.004513782) (0.00652973 0.01700386 0.005522289) (0.007369814 0.01673498 0.005342876) (0.006622024 0.01901884 0.005619558) (-0.006518325 0.02099961 0.00451048) (-0.006638744 0.02301915 0.004630921) (-0.006485925 0.02099606 0.005493372) (-0.006322691 0.02272267 0.005326532) (-0.005553505 0.02100367 0.005535153) (-0.005662637 0.02326912 0.005652951) (0.005547503 0.02100388 0.005537451) (0.005660674 0.0232665 0.005640489) (0.007352033 0.02073262 0.004352926) (0.006632913 0.02302161 0.004613304) (0.006415836 0.02101022 0.005504241) (0.006314864 0.02272866 0.005340339) (-0.006393795 0.02498897 0.004482267) (-0.005631909 0.02700912 0.004630694) (-0.005495121 0.02500359 0.005491324) (-0.004516995 0.02500493 0.005543478) (-0.005317132 0.02672526 0.005295743) (-0.004638556 0.02700592 0.00562825) (-0.003539976 0.02701642 0.005573974) (0.003543312 0.02700801 0.005574097) (0.005529208 0.02500298 0.004516125) (0.005620789 0.02700141 0.00463271) (0.004519948 0.0250107 0.005541011) (0.005495743 0.02500047 0.005492248) (0.004626208 0.02724111 0.00561551) (0.005297247 0.0267226 0.005316273) (-0.004518986 0.02900343 0.004520278) (-0.00444304 0.030982 0.004456253) (-0.004375689 0.02876454 0.005386546) (-0.003506795 0.03100072 0.004518618) (-0.003625504 0.02924786 0.005638222) (-0.0025295 0.02900884 0.005555039) (-0.003383432 0.03076091 0.005399343) (-0.002503934 0.03122423 0.005615196) (-0.001512012 0.031008 0.005538181) (-0.0005066279 0.03101565 0.005554239) (0.0005072547 0.03101819 0.005579285) (0.001513284 0.03101299 0.00554976) (0.003507955 0.03100133 0.004518253) (0.002529027 0.02901409 0.005571228) (0.003658218 0.02925938 0.005675199) (0.002509276 0.03122963 0.005652649) (0.003391293 0.03076852 0.005404734) (0.005372395 0.02876319 0.004374736) (0.004474561 0.03096938 0.004479639) (0.004396522 0.02876448 0.00537097) (-0.002646795 0.03328533 0.004730982) (-0.00234585 0.03473373 0.004351501) (-0.00234799 0.0326971 0.00528204) (-0.00151016 0.03500018 0.004530083) (-0.0004940873 0.03523326 0.004637464) (-0.001505667 0.03300524 0.005390256) (-0.0004994796 0.03297854 0.005573128) (0.001526292 0.03303674 0.004589497) (0.0005142597 0.03521968 0.004639745) (0.001533446 0.03502173 0.004549794) (0.0005047598 0.03298328 0.0055924) (0.001510562 0.03301484 0.005422608) (0.003464896 0.03296915 0.00446084) (0.002387019 0.03473547 0.004360341) (0.002344644 0.03268121 0.005328096) (-0.002501724 -0.02897317 0.006412619) (-0.0005009121 -0.03076034 0.006374212) (-0.001491616 -0.0291998 0.006615944) (-0.0004983096 -0.02924462 0.006702089) (0.001343286 -0.03069021 0.006328151) (0.0005037792 -0.02924421 0.006730126) (0.00151302 -0.02902355 0.006653627) (0.002492123 -0.02896518 0.006404164) (-0.004486956 -0.02498015 0.006405483) (-0.002645121 -0.02725921 0.006695366) (-0.003675918 -0.02528144 0.006662543) (-0.002519627 -0.02501344 0.006578196) (-0.002487482 -0.02495812 0.007391421) (-0.0005018293 -0.02701936 0.006591798) (-0.001362316 -0.02672378 0.007346398) (-0.0004972803 -0.02676354 0.007397663) (-0.001508889 -0.02500234 0.007611819) (-0.0005015268 -0.02523727 0.007654324) (0.001510716 -0.02701484 0.006568793) (0.0005024628 -0.02676776 0.00740287) (0.00136777 -0.02671735 0.007329477) (0.000497038 -0.02522917 0.007664839) (0.001496622 -0.02501735 0.00759437) (0.003503912 -0.02698906 0.006435522) (0.002522509 -0.0250107 0.006569496) (0.003663079 -0.0252757 0.006691383) (0.002489901 -0.02496341 0.007395219) (0.004486163 -0.02498351 0.006397043) (-0.004621727 -0.02301975 0.006638853) (-0.005492739 -0.02099868 0.006490685) (-0.004511913 -0.02099959 0.006522705) (-0.004361397 -0.02097484 0.007350954) (-0.003482739 -0.02297872 0.007404333) (-0.00251159 -0.02323748 0.007663279) (-0.00360762 -0.0210177 0.007621405) (-0.002500455 -0.02100104 0.007522547) (-0.001500322 -0.02300089 0.007540651) (-0.0005017069 -0.02300429 0.007538768) (-0.001495361 -0.02100763 0.007595097) (-0.0005030263 -0.02100371 0.007556523) (0.0004995683 -0.02300386 0.007536521) (0.001499208 -0.022999 0.007509344) (0.0004958624 -0.02100631 0.007557707) (0.001506251 -0.02100676 0.007580714) (0.003523835 -0.02300656 0.006556432) (0.002624645 -0.02324605 0.007630462) (0.003483065 -0.02297298 0.007389543) (0.002511707 -0.02100424 0.007538146) (0.003542245 -0.02103328 0.00764711) (0.005334977 -0.02272558 0.006307292) (0.004516821 -0.0210052 0.00652765) (0.005493047 -0.02099854 0.0064916) (0.004377698 -0.02075278 0.007359811) (-0.006290536 -0.01872158 0.006320757) (-0.006400676 -0.01703103 0.006396608) (-0.00550929 -0.01699905 0.006517807) (-0.00447767 -0.01898815 0.007560949) (-0.005358341 -0.01673006 0.007343183) (-0.004654588 -0.01703604 0.007676427) (-0.003503101 -0.01899705 0.007514471) (-0.002514215 -0.01900396 0.007552708) (-0.003526457 -0.01700456 0.00756374) (0.002510847 -0.01900515 0.007546865) (0.003515188 -0.01900407 0.007542622) (0.003533027 -0.01700524 0.007558704) (0.005629948 -0.01903447 0.006639696) (0.005508343 -0.01700153 0.006511552) (0.004501089 -0.01900326 0.007510855) (0.004642047 -0.01702385 0.007661873) (0.005328398 -0.016721 0.007324546) (0.006382709 -0.01697467 0.006361561) (-0.006561575 -0.0149705 0.006567711) (-0.006648292 -0.01300548 0.006645382) (-0.005504505 -0.01501232 0.007427598) (-0.00451058 -0.01499786 0.007519952) (-0.005581211 -0.01298402 0.007594545) (-0.004516259 -0.01300468 0.007558038) (0.005545047 -0.01500028 0.006541161) (0.004508205 -0.01500276 0.007512406) (0.005400688 -0.01501497 0.007399933) (0.004528719 -0.01300186 0.007554927) (0.005486751 -0.01298737 0.007570435) (0.006620273 -0.01300266 0.006620439) (-0.006674178 -0.01126996 0.006687323) (-0.007362319 -0.008997762 0.006377815) (-0.006528931 -0.009001549 0.006530514) (-0.006327618 -0.01071948 0.007309194) (-0.006342058 -0.009001922 0.007363866) (-0.005643301 -0.01103669 0.007680634) (-0.004523225 -0.0110035 0.007554063) (-0.005504772 -0.00900003 0.007506726) (0.004540326 -0.01099807 0.007572356) (0.005641489 -0.01103253 0.007640286) (0.005501003 -0.009000826 0.007506223) (0.007321485 -0.01072995 0.006351037) (0.006516933 -0.009000773 0.006515574) (0.007355958 -0.008995799 0.00635384) (0.006330416 -0.01072384 0.007311428) (0.006347618 -0.008996354 0.007360603) (-0.006588783 -0.007002341 0.00657813) (-0.007462245 -0.005002669 0.006447368) (-0.006611724 -0.005002357 0.006609866) (-0.006425251 -0.007000613 0.007428569) (-0.006467605 -0.005016967 0.007457715) (-0.005528769 -0.007000035 0.00753834) (-0.00555403 -0.005001214 0.007573004) (0.005508405 -0.007000671 0.007511557) (0.005541404 -0.005001411 0.007541764) (0.007378384 -0.007000408 0.006389226) (0.00658754 -0.00500282 0.006590881) (0.0074284 -0.005003999 0.006430495) (0.006396511 -0.007000719 0.007384292) (0.006431769 -0.005002049 0.007433357) (-0.006585889 -0.003009453 0.006570211) (-0.00758015 -0.001001499 0.006480137) (-0.006503781 -0.003000133 0.007499617) (-0.006533097 -0.0009866413 0.007547795) (-0.00556224 -0.003001312 0.007592008) (-0.00554164 -0.001000598 0.007553932) (0.005570021 -0.003003033 0.007577625) (0.005567238 -0.0009999893 0.00759613) (0.007434404 -0.003001943 0.006526141) (0.007568412 -0.001001918 0.006477743) (0.00648147 -0.003018271 0.007467404) (0.006479422 -0.0009887458 0.00756368) (-0.007497879 0.002987315 0.006501115) (-0.006574758 0.003001381 0.00659198) (-0.006547523 0.0009845864 0.007554409) (-0.006531822 0.0030166 0.00745368) (-0.005534304 0.00100317 0.007560288) (-0.005558257 0.003003574 0.007609935) (0.005549029 0.001002697 0.007552497) (0.005571656 0.003005744 0.007612415) (0.007557429 0.0009872752 0.006536617) (0.007504426 0.003001415 0.006502081) (0.006556578 0.0009888935 0.007557012) (0.006504803 0.00300125 0.007503682) (-0.006614422 0.005003007 0.006603838) (-0.00740954 0.007000466 0.00641152) (-0.006581892 0.007000743 0.006580173) (-0.006460087 0.005001271 0.007473307) (-0.006430869 0.006998688 0.007427818) (-0.005562707 0.005000718 0.007576015) (-0.005535073 0.007000629 0.007534429) (0.005564027 0.00499999 0.00759482) (0.005534151 0.007000945 0.007548394) (0.007470331 0.005014917 0.006465587) (0.006600639 0.007002888 0.006589129) (0.007432866 0.007000421 0.006438523) (0.006483621 0.00501494 0.007476544) (0.006437495 0.007001655 0.007432671) (-0.006528994 0.009000228 0.006527764) (-0.007319192 0.01073354 0.006336513) (-0.006687799 0.01127313 0.006688484) (-0.00634491 0.008994243 0.007364339) (-0.006357245 0.01073481 0.007318419) (-0.005504588 0.009000856 0.007504752) (-0.005666675 0.01103968 0.007673752) (-0.004521778 0.01100243 0.007550087) (0.005513824 0.009000088 0.007520703) (0.004529207 0.01100101 0.007560174) (0.005648838 0.01103897 0.00770203) (0.00736607 0.008997691 0.006366125) (0.006516348 0.0110018 0.006515912) (0.007347911 0.01073164 0.006342702) (0.006368258 0.008999788 0.007379999) (0.006352425 0.01075062 0.00732227) (-0.006665222 0.01300995 0.006628201) (-0.006570609 0.0149707 0.006558013) (-0.005539103 0.01500588 0.006542266) (-0.005587507 0.01298393 0.007593532) (-0.004524744 0.01300549 0.007547432) (-0.005504441 0.01501257 0.007426279) (-0.004511742 0.01500074 0.007510665) (0.005540678 0.01500653 0.00656313) (0.004515846 0.01299961 0.007541375) (0.005580448 0.01298381 0.007588468) (0.004510929 0.0150016 0.007513196) (0.005505772 0.01501212 0.007419025) (0.006522814 0.01500204 0.006520833) (-0.006399435 0.01703199 0.006394653) (-0.006301285 0.01872181 0.006310517) (-0.00564365 0.01903384 0.006646003) (-0.005354842 0.0167277 0.00733595) (-0.004650421 0.01703367 0.007656503) (-0.004481781 0.01898837 0.0075646) (-0.003519449 0.01700614 0.007552577) (-0.003508451 0.01900174 0.007518967) (-0.002509401 0.01900373 0.007549611) (0.003524853 0.01700914 0.007561475) (0.002511049 0.01900117 0.007546571) (0.003505566 0.01900399 0.007513743) (0.005522302 0.01700315 0.006528253) (0.005649339 0.01902932 0.006638728) (0.004672677 0.01703338 0.007650445) (0.005355988 0.01671316 0.007343917) (0.004478288 0.01898768 0.007567442) (-0.004516163 0.02100372 0.006532339) (-0.005342274 0.02273124 0.006325488) (-0.004618739 0.02302601 0.006641204) (-0.004361271 0.02074926 0.007353944) (-0.003525109 0.02301055 0.006551891) (-0.003631076 0.02101877 0.007615603) (-0.002502856 0.02100119 0.00752374) (-0.003480581 0.02297443 0.007400187) (-0.00252126 0.02322345 0.007663893) (-0.001505806 0.02100818 0.007576523) (-0.0005018352 0.02100726 0.007557021) (-0.00150222 0.02299805 0.007536605) (-0.0005014888 0.02300496 0.007535496) (0.0005073984 0.02100421 0.007558507) (0.001521991 0.02100462 0.007583736) (0.0005024823 0.02300397 0.007533958) (0.001499006 0.02300043 0.007512327) (0.003523685 0.02300319 0.006556935) (0.002502451 0.02100168 0.007517656) (0.003624705 0.0210185 0.007632257) (0.002626638 0.02325211 0.00763454) (0.003484329 0.0229805 0.007399878) (0.005489812 0.02099797 0.006490263) (0.00462315 0.02301757 0.006630691) (0.005330619 0.02273664 0.006313945) (0.004378717 0.02097918 0.007356607) (-0.00447584 0.02498459 0.006403677) (-0.002519676 0.02501378 0.006586173) (-0.003508186 0.02699352 0.006448023) (-0.002638937 0.02729007 0.006701135) (-0.002488795 0.02495987 0.007393648) (-0.001513523 0.02701478 0.006560531) (-0.0005052136 0.02702114 0.006604018) (-0.00150238 0.02500995 0.007604313) (-0.0004987015 0.02524416 0.007649874) (-0.001351242 0.02670975 0.007338806) (-0.000499821 0.02676826 0.007392476) (0.0005024683 0.02701014 0.006598372) (0.001505583 0.02700658 0.006548309) (0.0005019273 0.02524031 0.00766006) (0.001499777 0.02502686 0.007611813) (0.0004997967 0.02676851 0.007397567) (0.001479718 0.02672669 0.00733392) (0.00363693 0.02527564 0.006706921) (0.002662652 0.02728654 0.006682876) (0.003505421 0.02698933 0.006438437) (0.002485877 0.02497429 0.007392877) (-0.002493334 0.02897132 0.006403373) (-0.0004980142 0.02924895 0.00670253) (-0.001360279 0.0307111 0.006300278) (-0.0004950411 0.03076237 0.006373907) (0.001494333 0.02919722 0.006630386) (0.0005014106 0.03076621 0.006396753) (0.001370125 0.03071842 0.006311954) (-0.002355273 -0.0207028 0.008309144) (-0.0003578685 -0.0226908 0.008298725) (-0.001497052 -0.02096766 0.008384491) (-0.0004977966 -0.02098618 0.008481596) (0.0004995309 -0.02098805 0.008482244) (0.001496984 -0.02097013 0.008378772) (0.002333693 -0.02070517 0.008303644) (-0.00247474 -0.01897554 0.008453537) (-0.003473072 -0.01696988 0.008377805) (-0.00251132 -0.01703586 0.008624597) (-0.0004945401 -0.01923531 0.008660043) (-0.001504732 -0.01699825 0.00851719) (-0.0005024741 -0.01700495 0.008544741) (0.001512512 -0.01904121 0.008597349) (0.0004992623 -0.01700357 0.008543578) (0.001499518 -0.01699915 0.008520577) (0.002517373 -0.01703483 0.008624028) (0.003470226 -0.01697051 0.008375892) (-0.00432882 -0.01472296 0.008312502) (-0.004379354 -0.01301128 0.008368928) (-0.002500978 -0.0150015 0.008512833) (-0.003617312 -0.01302292 0.00863581) (-0.002512516 -0.01300192 0.008561954) (-0.0005056523 -0.01501461 0.008589951) (-0.001512779 -0.01300596 0.008599414) (-0.0005044321 -0.01300608 0.008526335) (-0.0004819463 -0.01473526 0.009332341) (-0.001487814 -0.0129644 0.009384358) (-0.0004992347 -0.01299899 0.009431264) (0.001510207 -0.0150057 0.008576224) (0.0005059007 -0.01300638 0.008533485) (0.001514662 -0.01302301 0.008608692) (0.0004799627 -0.01473385 0.009342019) (0.0005012269 -0.01299106 0.009431406) (0.001490846 -0.01296603 0.009379263) (0.00351806 -0.01501693 0.008525029) (0.002517012 -0.01300452 0.008552559) (0.003622753 -0.01302012 0.008648963) (0.004362338 -0.01299692 0.008350696) (-0.004490119 -0.01098932 0.008491238) (-0.004493801 -0.00899762 0.008595071) (-0.002519406 -0.01100306 0.008586792) (-0.003525379 -0.009001528 0.008556996) (-0.002514729 -0.008999779 0.008564746) (-0.002388972 -0.01097715 0.009355206) (-0.00246704 -0.008977114 0.009431584) (-0.001494949 -0.01099788 0.009478649) (-0.0005062569 -0.01100494 0.009580201) (-0.001512398 -0.009005979 0.009606296) (-0.000506264 -0.00900321 0.009653189) (0.001510048 -0.01100279 0.008570692) (0.0005021672 -0.01100272 0.009582345) (0.001500002 -0.01099802 0.009473484) (0.0005069145 -0.00901482 0.009671062) (0.001515429 -0.009004181 0.009606132) (0.003502799 -0.01099936 0.008506964) (0.002516385 -0.008999289 0.008578411) (0.003517559 -0.009001007 0.008556826) (0.002374286 -0.0109785 0.009362105) (0.002474966 -0.008985783 0.009446491) (0.004495079 -0.0089971 0.008583455) (-0.004629279 -0.006999037 0.008653821) (-0.005369033 -0.004999236 0.008308349) (-0.004659462 -0.005000156 0.00873499) (-0.003531253 -0.005000203 0.00857965) (-0.003330025 -0.006962162 0.009325571) (-0.002497915 -0.007000427 0.009510025) (-0.003359115 -0.004997077 0.009327934) (-0.002508518 -0.005005615 0.009589554) (0.003520894 -0.007002351 0.008569613) (0.003538218 -0.005002019 0.008582107) (0.002498997 -0.006999748 0.009504179) (0.003351172 -0.006730549 0.009336238) (0.002521637 -0.005002439 0.009574029) (0.00335266 -0.004997483 0.009334326) (0.005349943 -0.006964395 0.008316206) (0.004686993 -0.005002195 0.008709755) (0.005295075 -0.004998659 0.008301802) (-0.004707572 -0.003034302 0.008746676) (-0.005400664 -0.00100372 0.008393382) (-0.004503687 -0.001001988 0.008501869) (-0.003545736 -0.001008363 0.008599589) (-0.003398324 -0.003002489 0.00936156) (-0.002540543 -0.003001664 0.009619114) (-0.003485721 -0.0009892771 0.009381223) (-0.002544217 -0.00100059 0.009658515) (0.003535053 -0.003001534 0.008601961) (0.00353302 -0.001001435 0.008589419) (0.002541228 -0.002999541 0.009630455) (0.003361345 -0.002999476 0.009339273) (0.002551274 -0.0009986206 0.009610731) (0.003492651 -0.0010021 0.009403943) (0.005350983 -0.002998284 0.008327616) (0.004500469 -0.001000051 0.008507568) (0.00539055 -0.001003249 0.008390701) (-0.004506987 0.001000485 0.008506705) (-0.005368886 0.002998898 0.008362781) (-0.004695152 0.003034548 0.008756239) (-0.003545843 0.003001307 0.008611042) (-0.003487579 0.0009996446 0.009391832) (-0.002540073 0.0009991984 0.009641124) (-0.00338144 0.003003325 0.00936454) (-0.002529746 0.00300197 0.009627615) (0.003524965 0.001002146 0.008599113) (0.003544366 0.003002343 0.008608049) (0.002560327 0.0009984673 0.009648264) (0.003489463 0.001000248 0.009394538) (0.002562651 0.003007287 0.009614829) (0.003380075 0.003001213 0.009361179) (0.005391731 0.00100112 0.0083947) (0.004696532 0.003003288 0.008736196) (0.005386836 0.002998657 0.008351576) (-0.004684482 0.005001664 0.008731183) (-0.005339846 0.006962927 0.008275695) (-0.004624946 0.006999416 0.008649894) (-0.00351585 0.006999822 0.008554612) (-0.002514328 0.007004308 0.008571225) (-0.003368108 0.004998097 0.009324643) (-0.002516549 0.005004227 0.009580399) (-0.003352675 0.006720243 0.009337113) (-0.002488957 0.006999044 0.009476957) (0.003524064 0.005000758 0.008589329) (0.00351579 0.007002044 0.008563153) (0.002520928 0.005001874 0.009583904) (0.003377305 0.004998745 0.00932879) (0.002500303 0.006999881 0.009509953) (0.003343261 0.006722197 0.009334157) (0.005368262 0.005001247 0.008314028) (0.004641088 0.007000469 0.008671146) (0.005373315 0.006956733 0.008327042) (-0.004496852 0.00899829 0.008585086) (-0.004488951 0.01098888 0.008479899) (-0.002509071 0.009000371 0.008549909) (-0.003501037 0.01100115 0.00850905) (-0.002513126 0.01100148 0.00858319) (-0.002469717 0.00898443 0.009423566) (-0.002374825 0.01097361 0.009348805) (-0.00150644 0.01100215 0.008556089) (-0.001503801 0.009003216 0.009609916) (-0.000514273 0.009021304 0.009652475) (-0.001498811 0.01099862 0.009477246) (-0.0004992009 0.01100404 0.009580404) (0.001509161 0.01100503 0.008562268) (0.0004889143 0.00902264 0.009680225) (0.001510717 0.009008202 0.009607848) (0.0005060811 0.01100333 0.009581974) (0.001502993 0.01099886 0.009476548) (0.003516087 0.009003488 0.008565886) (0.002520415 0.01100344 0.00859599) (0.003506089 0.01099914 0.008522196) (0.002477346 0.008984684 0.009452349) (0.002383076 0.01097789 0.009354576) (0.004486318 0.01099015 0.008485923) (-0.004372302 0.01301213 0.008365282) (-0.004323133 0.0147321 0.008303707) (-0.00251128 0.01300051 0.008556699) (-0.003510441 0.01501682 0.008529781) (-0.002501034 0.01500043 0.008513236) (-0.0005032132 0.01299994 0.008533818) (-0.001504497 0.01500104 0.008576156) (-0.0005032702 0.01499678 0.008595524) (-0.00147984 0.01296593 0.009367365) (-0.0004948187 0.01298651 0.009424736) (-0.0004822558 0.01474448 0.009342325) (0.00151327 0.01300664 0.008612742) (0.000499614 0.01501265 0.008602864) (0.001503573 0.01500248 0.008581352) (0.0005019994 0.01299376 0.009431167) (0.001481697 0.01296675 0.009374137) (0.0004764854 0.01473489 0.009339877) (0.003628059 0.0130291 0.008661691) (0.002502972 0.01500203 0.008511201) (0.003510853 0.0150172 0.008538822) (0.004345886 0.0147371 0.008305976) (-0.002514013 0.01703564 0.008626479) (-0.002475521 0.01897346 0.008445765) (-0.0005035477 0.01700234 0.008545984) (-0.001520495 0.01904941 0.008590791) (-0.0004998512 0.01920774 0.008663749) (0.001499354 0.01700368 0.00851426) (0.0004918738 0.0192089 0.008668261) (0.0015087 0.01904725 0.008591465) (0.003477479 0.01696997 0.008379415) (0.002471074 0.01897704 0.008454033) (-0.002350183 0.0207023 0.00830602) (-0.0004991891 0.02098857 0.00847272) (-0.0003699261 0.02268956 0.008303873) (0.001496422 0.02096627 0.008379468) (0.0003702016 0.02270235 0.008283362) (-0.002353534 -0.02367599 -0.007777022) (-0.001492251 -0.02396319 -0.007861359) (-0.001983515 -0.02295317 -0.007922597) (-0.002003025 -0.02423299 -0.007614181) (5.753681e-07 -0.02476459 -0.007867188) (-0.000497358 -0.02394505 -0.00795524) (0.0004989899 -0.02394583 -0.007963127) (-1.272645e-06 -0.02305126 -0.008091958) (7.524737e-07 -0.02400162 -0.007510931) (0.001496213 -0.02397183 -0.007856086) (0.002340169 -0.02370008 -0.007800117) (0.001983066 -0.02294988 -0.007926149) (0.002009747 -0.02423675 -0.007628414) (-0.003487593 -0.01999507 -0.007891579) (-0.003973272 -0.01896744 -0.007868167) (-0.004013099 -0.02001748 -0.007590861) (-0.001981019 -0.01996128 -0.008380386) (-0.002022167 -0.02103621 -0.008137138) (-0.002515324 -0.02003343 -0.008144617) (-0.001507456 -0.01999984 -0.008014333) (-0.002008516 -0.01900387 -0.008026883) (-0.002020527 -0.02000447 -0.007569632) (2.952413e-06 -0.02005589 -0.008575165) (7.04547e-07 -0.02099873 -0.008006479) (-0.000500296 -0.020003 -0.008044506) (0.0005017362 -0.02000275 -0.008044954) (3.186316e-06 -0.01901829 -0.008084839) (1.302559e-06 -0.02000595 -0.00756347) (0.001995071 -0.01998276 -0.008381726) (0.00202016 -0.02105037 -0.008134846) (0.001505844 -0.02000324 -0.008014959) (0.002507918 -0.02022912 -0.008162626) (0.00200433 -0.0190008 -0.008023583) (0.002011838 -0.02000258 -0.007588835) (0.0034934 -0.019995 -0.007904249) (0.003970532 -0.01896498 -0.007871295) (0.004023502 -0.0200278 -0.007603579) (-0.003867334 -0.0157295 -0.008339553) (-0.004013369 -0.01701411 -0.00804071) (-0.004494836 -0.01600263 -0.007916117) (-0.003640678 -0.01626444 -0.008202361) (-0.004139649 -0.01502481 -0.008181889) (-0.004024785 -0.01600156 -0.007575846) (-0.002000401 -0.01600067 -0.008509416) (-0.002012549 -0.017004 -0.00804754) (-0.002516978 -0.01600776 -0.008058368) (-0.00150586 -0.01600211 -0.008054468) (-0.002009531 -0.01500288 -0.008053793) (1.811277e-06 -0.01600495 -0.008594416) (1.220642e-06 -0.01700471 -0.008058928) (-0.0005008847 -0.01600399 -0.00808068) (0.0005039284 -0.01600409 -0.008083917) (2.956796e-06 -0.01500564 -0.008111244) (0.002004872 -0.01600333 -0.008522246) (0.002006011 -0.01701286 -0.008062121) (0.001507014 -0.01600621 -0.008061854) (0.002520524 -0.01600454 -0.008064341) (0.002011248 -0.01500513 -0.008059033) (0.003864643 -0.01596844 -0.008320221) (0.00399387 -0.0169993 -0.008094041) (0.00350784 -0.01600108 -0.008016365) (0.00451093 -0.01600476 -0.007934892) (0.004135679 -0.01503767 -0.008175539) (0.004034115 -0.01600141 -0.007566182) (-0.005369518 -0.01199333 -0.007864747) (-0.00592474 -0.01201488 -0.007420459) (-0.004013992 -0.01300254 -0.008031612) (-0.004671877 -0.01226834 -0.00819588) (-0.004036075 -0.01200527 -0.007566151) (-0.002008581 -0.01300232 -0.008068929) (2.684737e-06 -0.01200022 -0.008522002) (-0.0004975569 -0.01200081 -0.008040975) (0.0005040445 -0.012001 -0.008041044) (3.353526e-06 -0.01300334 -0.008061423) (0.002015021 -0.01300315 -0.008066412) (0.00251886 -0.01200439 -0.008063539) (0.004009343 -0.01200019 -0.008605208) (0.004020241 -0.0130038 -0.008024673) (0.003534176 -0.01201592 -0.008060109) (0.004679341 -0.01227515 -0.008161493) (0.004018184 -0.01100079 -0.008032574) (0.004044121 -0.01200508 -0.007569966) (0.005382483 -0.01196696 -0.007880229) (0.005919663 -0.01201957 -0.007420292) (-0.005841302 -0.008739021 -0.007804626) (-0.005506568 -0.008000551 -0.008015487) (-0.005852966 -0.006997085 -0.007855863) (-0.006090266 -0.007986213 -0.007604053) (-0.00453674 -0.0080024 -0.008062587) (0.002014159 -0.008001017 -0.008575972) (0.002012946 -0.009001575 -0.008063688) (0.002518895 -0.008001478 -0.008070794) (0.004000963 -0.007999436 -0.008500094) (0.004022046 -0.009005377 -0.008074295) (0.003520215 -0.008003119 -0.008061349) (0.004527876 -0.008003685 -0.0080469) (0.00402859 -0.007005041 -0.008057287) (0.005838124 -0.008966418 -0.007834497) (0.005517643 -0.008013699 -0.008039572) (0.005863655 -0.006998488 -0.007875985) (0.006115285 -0.007997069 -0.007623794) (-0.005881764 -0.004999217 -0.007897681) (-0.005616073 -0.004000723 -0.008130971) (-0.005929783 -0.003002127 -0.007932841) (-0.006179241 -0.004005315 -0.007701827) (-0.004527411 -0.004000828 -0.008102792) (0.004036384 -0.005002168 -0.008070014) (0.004547327 -0.004001388 -0.008086242) (0.005907285 -0.005001047 -0.007908264) (0.005647592 -0.004000976 -0.008150426) (0.00594551 -0.003015512 -0.007941385) (0.006207245 -0.004007162 -0.007694715) (-0.006015513 -0.001000125 -0.007925667) (-0.006342067 -5.215814e-09 -0.007832825) (-0.005671477 3.066799e-06 -0.008199144) (-0.006019641 0.001000455 -0.007935277) (-0.006006813 -1.801018e-06 -0.007516464) (-0.004524103 2.247634e-06 -0.008057176) (-0.004038851 0.001003257 -0.008106467) (0.004521705 -9.886032e-07 -0.008046916) (0.00598152 -0.0009848839 -0.007970985) (0.005631478 -1.292508e-06 -0.008183764) (0.006304911 -2.131828e-06 -0.007770474) (0.005978621 0.0009846923 -0.007965954) (0.005974616 -1.027939e-06 -0.007479673) (-0.005953567 0.003002063 -0.007944936) (-0.00564279 0.004000932 -0.008147442) (-0.005901639 0.005002456 -0.007908304) (-0.006172252 0.003999097 -0.007709401) (-0.004037933 0.004001252 -0.00857764) (-0.004044148 0.003002626 -0.00809492) (-0.004541697 0.004001147 -0.00807829) (-0.003536156 0.004002417 -0.008081355) (-0.004027323 0.005001781 -0.008061073) (-0.002015394 0.004001161 -0.007057326) (0.004556883 0.004000733 -0.008096043) (0.0040368 0.005001223 -0.008073354) (0.005957304 0.003016523 -0.007950755) (0.00563828 0.003999884 -0.008162228) (0.0059189 0.005000974 -0.007912473) (0.006162132 0.004004757 -0.007734535) (-0.005851025 0.006999472 -0.007872291) (-0.005489391 0.007988378 -0.00807267) (-0.005856279 0.008713881 -0.00783987) (-0.006084391 0.007986797 -0.007592628) (-0.004015022 0.00700344 -0.008048111) (-0.004529005 0.008011827 -0.008063225) (0.002009222 0.008001987 -0.008562322) (0.002011858 0.007002211 -0.008071877) (0.002012178 0.009002186 -0.008052282) (0.00251306 0.008001545 -0.008057734) (0.004000461 0.008001598 -0.008496002) (0.004025869 0.007001267 -0.008041811) (0.003519787 0.008001753 -0.008048979) (0.0045271 0.00800473 -0.008050636) (0.004037227 0.00900403 -0.008076921) (0.005874519 0.007004307 -0.007877247) (0.005491849 0.007999633 -0.008088026) (0.005854973 0.008959201 -0.007834779) (0.006113922 0.007998216 -0.007617881) (-0.005371876 0.01200146 -0.007858776) (-0.005916568 0.01201414 -0.007399881) (-0.004664483 0.01227264 -0.008165879) (-0.004012037 0.01300512 -0.008024394) (-0.004033739 0.01200139 -0.007569528) (0.0005013362 0.01200091 -0.008040313) (0.002515975 0.01200469 -0.008069224) (0.00200886 0.01300284 -0.008065646) (0.004006478 0.01199823 -0.008588103) (0.004010438 0.01100098 -0.008031715) (0.003524335 0.01201153 -0.008064484) (0.004663909 0.01227226 -0.008161805) (0.004009325 0.0130005 -0.008014563) (0.004029494 0.01200427 -0.007560243) (0.005376848 0.01196562 -0.007852775) (0.00592787 0.01201936 -0.007437107) (-0.003851557 0.01572654 -0.008349411) (-0.004138193 0.01502361 -0.00816287) (-0.004500678 0.0160015 -0.007926001) (-0.003674765 0.01627381 -0.008184205) (-0.004015853 0.01701628 -0.008046741) (-0.004029508 0.01600513 -0.007570569) (-0.002512884 0.01600148 -0.0080609) (-0.002011804 0.01700463 -0.008053919) (0.0005003186 0.01600586 -0.008082176) (-3.107469e-06 0.01700573 -0.008062477) (0.002000868 0.01600017 -0.008502842) (0.002006253 0.0150017 -0.008048072) (0.001506125 0.01600306 -0.008051734) (0.002508839 0.01600378 -0.008042778) (0.002016026 0.01699956 -0.0080444) (0.003855163 0.01573153 -0.008323904) (0.004131156 0.01502321 -0.008158074) (0.003643112 0.01627984 -0.008171543) (0.004497869 0.01600285 -0.007928951) (0.004006788 0.01701522 -0.008036553) (0.004033296 0.01600011 -0.007570924) (-0.003968838 0.01896271 -0.007868945) (-0.003492092 0.01999455 -0.007900422) (-0.004020881 0.02002587 -0.007601216) (-0.00198684 0.01996835 -0.00838039) (-0.002001534 0.0190001 -0.008027396) (-0.00251165 0.02003796 -0.008147972) (-0.001500224 0.02000187 -0.008018672) (-0.002015373 0.02103362 -0.008122164) (-0.002014142 0.0200157 -0.00758075) (1.76591e-06 0.02005387 -0.008584079) (-6.633678e-07 0.01900477 -0.00808106) (-0.0005009188 0.02000035 -0.008040547) (0.0005003383 0.02000324 -0.00804638) (1.308284e-08 0.02100173 -0.008006746) (-2.399107e-07 0.020004 -0.007561062) (0.001983956 0.01996729 -0.008381116) (0.002002457 0.01900231 -0.008034038) (0.001497656 0.01999951 -0.008012224) (0.002530818 0.02002328 -0.008143909) (0.00201131 0.02103808 -0.00814056) (0.002016116 0.02000565 -0.007583717) (0.003974365 0.01896798 -0.0078541) (0.003490099 0.01999425 -0.007892432) (0.004008555 0.02001795 -0.0075924) (-0.001983582 0.02295273 -0.007929471) (-0.002334616 0.02370449 -0.007773559) (-0.001495294 0.02396584 -0.00786025) (-0.002012249 0.02423424 -0.007614208) (3.411775e-07 0.02304755 -0.00808839) (-0.0004965065 0.02394423 -0.007961598) (0.0004979428 0.0239456 -0.007966617) (-3.271204e-06 0.02475248 -0.007869291) (-1.042955e-07 0.02400373 -0.007508692) (0.001981397 0.02295039 -0.007916225) (0.001500404 0.02395945 -0.00785504) (0.002341366 0.02368352 -0.007782585) (0.002003084 0.02421863 -0.00761812) (-0.001479853 -0.03173727 -0.005851046) (-0.002000936 -0.03100057 -0.005930102) (-0.002018493 -0.03199388 -0.005524639) (-0.0005017459 -0.03184156 -0.005960736) (0.000505733 -0.03182407 -0.005963768) (9.932277e-07 -0.03121464 -0.006165393) (1.664767e-06 -0.03229284 -0.005740756) (0.001477744 -0.03174751 -0.005870969) (0.002009123 -0.03101061 -0.005933969) (0.001997938 -0.03198654 -0.005607805) (-0.003862521 -0.02873433 -0.005792514) (-0.004316704 -0.02769617 -0.005812449) (-0.003513781 -0.02801776 -0.006115742) (-0.004008248 -0.02701717 -0.006097216) (-0.004130164 -0.02824217 -0.005621005) (-0.002013749 -0.02822553 -0.006647166) (-0.002005186 -0.02900721 -0.006028698) (-0.002505312 -0.02800261 -0.006038746) (-0.001505781 -0.02801437 -0.006065005) (-0.002012396 -0.02700751 -0.006050507) (-0.002017942 -0.02801475 -0.005573591) (2.212638e-07 -0.02800638 -0.006534608) (1.700969e-06 -0.02901202 -0.006072883) (-0.0005013685 -0.0280115 -0.00605461) (0.0005015376 -0.02801534 -0.006056408) (5.427536e-08 -0.02701298 -0.006074918) (0.002138126 -0.02825554 -0.006648717) (0.002004692 -0.02900271 -0.00602587) (0.001508748 -0.02800626 -0.0060366) (0.002512745 -0.0280083 -0.006041409) (0.002021152 -0.02700923 -0.006058853) (0.002020844 -0.02801284 -0.005567262) (0.003862646 -0.02872945 -0.005832092) (0.003525786 -0.0280204 -0.006116788) (0.00434172 -0.02770806 -0.00581129) (0.004021768 -0.02702407 -0.006107585) (0.004143462 -0.02824506 -0.005638484) (-0.005387144 -0.0239884 -0.005880359) (-0.005845135 -0.02270896 -0.005825545) (-0.005881369 -0.02398523 -0.005368157) (-0.004143363 -0.02425762 -0.006652299) (-0.004010078 -0.02499949 -0.006024173) (-0.004500152 -0.02399853 -0.006001693) (-0.00351973 -0.0240038 -0.006040746) (-0.004017443 -0.02300222 -0.006033496) (-0.004026031 -0.02400343 -0.005545606) (-0.00200487 -0.02400498 -0.006545312) (-0.002013868 -0.02500753 -0.006061495) (-0.002516883 -0.02400473 -0.006056581) (7.024716e-07 -0.0240103 -0.005059632) (0.002012355 -0.02401124 -0.006556825) (0.002020516 -0.02501227 -0.006071275) (0.002527239 -0.02401294 -0.006076204) (0.004145638 -0.02425241 -0.00667343) (0.004020369 -0.02500226 -0.006036564) (0.003533875 -0.02400843 -0.006065719) (0.004512593 -0.02400088 -0.006019433) (0.00403179 -0.02300516 -0.006053951) (0.004037892 -0.02400664 -0.005563405) (0.005397201 -0.02399567 -0.005882367) (0.005843746 -0.02272119 -0.005824036) (0.005881461 -0.02399708 -0.005382227) (-0.005854453 -0.01997281 -0.006375028) (-0.005994268 -0.020995 -0.005985858) (-0.006383228 -0.01997133 -0.005878695) (-0.005508481 -0.01999951 -0.006019444) (-0.006142833 -0.01902996 -0.006153887) (-0.006007392 -0.02000162 -0.005507253) (-0.004028022 -0.02000807 -0.006553746) (-0.004036316 -0.02100827 -0.006061284) (-0.004538243 -0.02000542 -0.006065589) (-0.00201534 -0.02000361 -0.005047504) (0.002017332 -0.02000505 -0.005052783) (0.004029771 -0.0200029 -0.006559444) (0.004035867 -0.02100531 -0.006065696) (0.004539554 -0.02000744 -0.006075024) (0.005863136 -0.01996859 -0.006369966) (0.005995259 -0.02099784 -0.005991361) (0.005510516 -0.01999938 -0.006021933) (0.006361928 -0.01996966 -0.005875626) (0.006153434 -0.01902145 -0.006135048) (0.006004615 -0.01999841 -0.005507112) (-0.006142482 -0.01626803 -0.006639926) (-0.006014195 -0.01700162 -0.00601698) (-0.006626373 -0.01626603 -0.006132494) (-0.005537197 -0.01601312 -0.006050633) (-0.006011772 -0.01500585 -0.006015749) (-0.006040341 -0.01601266 -0.005539468) (-0.004031363 -0.01600432 -0.005044956) (1.734854e-06 -0.01400263 -0.006052227) (0.0040403 -0.0160052 -0.005055093) (0.006180368 -0.01604134 -0.006647465) (0.006025745 -0.01700303 -0.006022626) (0.005563784 -0.01600915 -0.006066446) (0.006656089 -0.01603471 -0.006166247) (0.006077628 -0.01500589 -0.00608131) (0.006060113 -0.01600608 -0.005555785) (-0.007417238 -0.0120203 -0.005917909) (-0.007879681 -0.01196766 -0.005365201) (-0.006080877 -0.01200177 -0.006565706) (-0.006050224 -0.01300283 -0.006040552) (-0.006589112 -0.01200108 -0.00606023) (-0.006070309 -0.01100504 -0.006074002) (-0.004032455 -0.01200259 -0.00504149) (0.004036403 -0.01200389 -0.005049583) (0.006074499 -0.01200429 -0.00657643) (0.006057185 -0.01300527 -0.006062899) (0.006584299 -0.01200686 -0.006078344) (0.006068021 -0.01100789 -0.006089261) (0.007424527 -0.01201967 -0.005917466) (0.007862012 -0.01196638 -0.005365689) (-0.007805086 -0.008954697 -0.005825732) (-0.007591856 -0.007997759 -0.006086222) (-0.007859422 -0.007000888 -0.00583305) (-0.008045116 -0.008015144 -0.005506881) (-0.006050035 -0.008001657 -0.006545235) (-0.006043167 -0.009002327 -0.006041148) (-0.006540457 -0.008001434 -0.006034828) (-0.006055334 -0.007002217 -0.00605109) (0.003022198 -0.008002491 -0.006048338) (0.002014374 -0.0060013 -0.006043232) (0.006040989 -0.008002174 -0.006544389) (0.00603635 -0.00900325 -0.006043131) (0.006541372 -0.008002191 -0.006037699) (0.006055241 -0.007002906 -0.006056376) (0.00785423 -0.008963286 -0.005859377) (0.007600704 -0.007997055 -0.006088235) (0.007835119 -0.007001226 -0.00587787) (0.008065004 -0.007997358 -0.005473505) (-0.007888694 -0.005000761 -0.00589666) (-0.007691505 -0.003996394 -0.00617449) (-0.007932958 -0.003002328 -0.005930059) (-0.008113544 -0.004000409 -0.005625168) (-0.006078794 -0.004002241 -0.006587237) (-0.006072327 -0.005002477 -0.006067396) (-0.006587941 -0.004003424 -0.006079617) (-0.006067078 -0.003002859 -0.006069278) (0.006080582 -0.004003011 -0.006603205) (0.006074499 -0.005003191 -0.006078771) (0.006588054 -0.004003086 -0.006084961) (0.006054242 -0.003003098 -0.006058581) (0.00790123 -0.005000596 -0.005910086) (0.0076636 -0.004004847 -0.006224205) (0.007945849 -0.003015568 -0.005940759) (0.008152565 -0.004000112 -0.00563694) (-0.00780659 9.45954e-07 -0.006334346) (-0.007930788 -0.0009995538 -0.00601512) (-0.007513853 3.316807e-07 -0.006006179) (-0.007933515 0.001001067 -0.006016836) (-0.008190369 -1.16548e-06 -0.005675823) (-0.002015933 0.002000733 -0.006046201) (0.007763632 -4.775394e-07 -0.006287667) (0.007974286 -0.0009846159 -0.005979631) (0.007481875 -5.141542e-07 -0.005976026) (0.007969351 0.0009843702 -0.005979693) (0.008188256 -3.107473e-07 -0.005647138) (-0.007925799 0.003002265 -0.005918135) (-0.007681765 0.004001227 -0.006174859) (-0.007865799 0.005000447 -0.005880944) (-0.008110296 0.004000162 -0.005603252) (-0.006094426 0.00400452 -0.006596956) (-0.006083835 0.003005765 -0.006077705) (-0.006600825 0.00400529 -0.006086213) (-0.006072954 0.005003246 -0.006075935) (-0.003024382 0.004001625 -0.006051128) (-0.002014042 0.006001594 -0.006045152) (0.002014453 0.00600117 -0.006043649) (0.00609393 0.004003429 -0.006601367) (0.006076812 0.003003645 -0.006068696) (0.006605746 0.004003389 -0.006088056) (0.006080797 0.00500228 -0.006082063) (0.00794203 0.003014546 -0.005943618) (0.007740752 0.004004378 -0.006159409) (0.007910756 0.005000197 -0.005908942) (0.008136037 0.004000101 -0.005605194) (-0.007834689 0.006999115 -0.005830332) (-0.00758318 0.007997653 -0.006085613) (-0.007805289 0.008958079 -0.005835259) (-0.00801147 0.008014633 -0.005503268) (-0.006036279 0.008001872 -0.006544208) (-0.006050211 0.007002271 -0.006054009) (-0.006538504 0.008001607 -0.006039878) (-0.006032894 0.009002581 -0.006039662) (0.003022828 0.008001925 -0.006047321) (0.006052382 0.008002597 -0.006556207) (0.006066073 0.007001921 -0.006064593) (0.006558645 0.008002775 -0.006054275) (0.006050115 0.00900501 -0.006058467) (0.007872171 0.007001798 -0.005881543) (0.00761921 0.007999131 -0.006114416) (0.007839454 0.008964969 -0.005883133) (0.008059953 0.008015032 -0.005532639) (-0.007411621 0.01201926 -0.005914837) (-0.007866853 0.01196652 -0.00537015) (-0.006058882 0.01200401 -0.006571431) (-0.006050499 0.01100563 -0.006069497) (-0.006572556 0.01200422 -0.00606683) (-0.006047664 0.0130042 -0.006048009) (-0.004032434 0.01200355 -0.005046333) (0.004037976 0.01200366 -0.005050243) (0.006084162 0.01200991 -0.006592733) (0.006069032 0.01101194 -0.006092899) (0.006575423 0.01200756 -0.006070252) (0.006046401 0.01300575 -0.006054801) (0.007423735 0.01201391 -0.00593256) (0.00788038 0.01199814 -0.005377342) (-0.006178262 0.01603691 -0.006684903) (-0.006051796 0.01500574 -0.006059667) (-0.006646607 0.016261 -0.006142352) (-0.005558805 0.01600616 -0.006069507) (-0.006030514 0.01700515 -0.006037585) (-0.006059636 0.01600439 -0.005559824) (-0.004038197 0.01600504 -0.005051476) (0.004041517 0.01600492 -0.005051877) (0.006143526 0.01603314 -0.006627751) (0.006040552 0.01500647 -0.00604445) (0.005547095 0.01600466 -0.006047009) (0.006646891 0.01603186 -0.006130473) (0.00600998 0.01700209 -0.006006478) (0.006049377 0.01600413 -0.005541576) (-0.005844585 0.01997112 -0.006373495) (-0.006131701 0.01903149 -0.006166464) (-0.006377438 0.01997482 -0.005849589) (-0.005515522 0.02000101 -0.006018168) (-0.005983258 0.02099373 -0.005985869) (-0.006002781 0.02000056 -0.005508157) (-0.004034335 0.02000387 -0.006548614) (-0.004549708 0.0200032 -0.00605736) (-0.004038233 0.02100596 -0.006053929) (-0.002019537 0.0200051 -0.005051333) (0.002017287 0.02000548 -0.005049298) (0.004037672 0.02001065 -0.006557556) (0.004044221 0.01901109 -0.006069346) (0.004547773 0.0200154 -0.006067427) (0.004039678 0.021011 -0.006056148) (0.005860901 0.01997 -0.006356728) (0.006139755 0.01903074 -0.006144668) (0.005511309 0.02000282 -0.00601583) (0.0063534 0.01997171 -0.005870933) (0.005994624 0.02099692 -0.005991174) (0.006009798 0.02000042 -0.005507599) (-0.005835284 0.02272645 -0.00584756) (-0.005388547 0.0239908 -0.005888922) (-0.005875212 0.02399107 -0.005373166) (-0.004142073 0.02427171 -0.006674136) (-0.004029535 0.02300581 -0.0060537) (-0.004505473 0.02400118 -0.006017908) (-0.003535853 0.02401383 -0.006067395) (-0.004014531 0.02500573 -0.006034859) (-0.00403315 0.02400909 -0.005559003) (-0.002019344 0.02401015 -0.006564126) (-0.002534284 0.02401319 -0.006083403) (-0.002027449 0.02501754 -0.00608809) (-2.655589e-06 0.02401088 -0.00506373) (0.002008937 0.02400311 -0.006542512) (0.002518722 0.02400669 -0.006053665) (0.002013624 0.02500948 -0.006058287) (0.004116157 0.02425043 -0.006649072) (0.004014934 0.02300323 -0.00603184) (0.003515786 0.02400703 -0.006039957) (0.004501786 0.02400046 -0.00599923) (0.004007377 0.02500452 -0.006018188) (0.00402721 0.0240085 -0.005545127) (0.005833833 0.02272404 -0.005825405) (0.005395505 0.02399367 -0.005878822) (0.005875751 0.0239922 -0.005387535) (-0.004016463 0.02702352 -0.006117539) (-0.00432508 0.02775315 -0.005811032) (-0.003530465 0.02802456 -0.006119269) (-0.003862504 0.02873696 -0.005819741) (-0.004142564 0.02823379 -0.005648026) (-0.002028514 0.02823611 -0.006690148) (-0.002022532 0.02701598 -0.006085466) (-0.002519166 0.02800093 -0.006061302) (-0.001519891 0.02802816 -0.006081346) (-0.002012029 0.02900932 -0.0060408) (-0.002027117 0.02801788 -0.005589052) (-1.070462e-06 0.02801075 -0.006534411) (-1.678079e-06 0.02701829 -0.006082695) (-0.0005048641 0.02801598 -0.006061805) (0.0005020062 0.02801366 -0.00606645) (-2.595467e-06 0.02901969 -0.006080106) (0.002008699 0.02823689 -0.006627368) (0.002010419 0.0270101 -0.006049091) (0.001510572 0.02801364 -0.006063528) (0.002506822 0.02800222 -0.006036773) (0.00200209 0.02900632 -0.006030347) (0.002012629 0.02801546 -0.005569305) (0.004008452 0.02702112 -0.00609699) (0.003521999 0.02802267 -0.00610373) (0.004316855 0.02771634 -0.005779805) (0.003851047 0.02872308 -0.005788809) (0.004119462 0.02823522 -0.005608358) (-0.002014658 0.03101179 -0.005949696) (-0.001484809 0.03174572 -0.005881489) (-0.002000916 0.03199792 -0.005599719) (-3.258421e-06 0.03122686 -0.006186871) (-0.0005033159 0.03183524 -0.005989053) (0.0005037342 0.03181834 -0.005976408) (-6.8627e-07 0.03229406 -0.005757332) (0.001990798 0.03098922 -0.005906311) (0.001485238 0.03174621 -0.005862354) (0.002001211 0.03199601 -0.005505161) (-0.002285257 -0.03568535 -0.00378208) (-0.001510726 -0.03598822 -0.004008294) (-0.002042272 -0.03522029 -0.00418089) (-0.002050598 -0.03621974 -0.003551538) (4.070848e-06 -0.03580197 -0.004423427) (2.662419e-06 -0.0367457 -0.003821891) (-0.0005161166 -0.0362169 -0.004156946) (0.0005021595 -0.03621684 -0.004143688) (7.701292e-06 -0.03501694 -0.004051199) (9.711346e-06 -0.03603091 -0.00353955) (0.001536734 -0.03587797 -0.004062115) (0.002355857 -0.03568788 -0.00380352) (0.002037638 -0.03521058 -0.00417848) (0.00200745 -0.03618528 -0.003646277) (-0.003973195 -0.03195591 -0.004461023) (-0.003966346 -0.03294175 -0.003964643) (-0.004428252 -0.03197156 -0.003956857) (-0.003507509 -0.03200494 -0.004036283) (-0.004009662 -0.03100119 -0.004019288) (-0.004017187 -0.03200749 -0.003519607) (-0.002047113 -0.03203668 -0.004601718) (-0.00203462 -0.03302965 -0.004091576) (-0.002534934 -0.03202807 -0.00409602) (-0.001530005 -0.03202945 -0.00409328) (0.00201826 -0.03202804 -0.004573441) (0.002026108 -0.03303603 -0.004077342) (0.001522677 -0.03203382 -0.004088511) (0.002521611 -0.03202666 -0.004060915) (0.003962524 -0.03197583 -0.004435975) (0.003962568 -0.03298055 -0.003970043) (0.00348729 -0.03199683 -0.003996884) (0.004452278 -0.03198127 -0.003964399) (0.003997264 -0.03099762 -0.003997231) (0.003992727 -0.03199671 -0.003490842) (-0.00578518 -0.0277193 -0.004367031) (-0.005773971 -0.02873947 -0.003845591) (-0.005622553 -0.02824559 -0.004124006) (-0.006097607 -0.02701833 -0.004004538) (-0.006083782 -0.02801588 -0.003508902) (-0.004041786 -0.02801107 -0.004568073) (-0.004058649 -0.02901344 -0.004079291) (-0.004552097 -0.02800957 -0.004059532) (-0.002030908 -0.02801752 -0.003059144) (4.495167e-07 -0.02601313 -0.004059068) (0.002030809 -0.02801549 -0.003051154) (0.004063115 -0.02801358 -0.004569296) (0.004079436 -0.02901706 -0.004064762) (0.004577068 -0.02801305 -0.004054375) (0.005807871 -0.02773744 -0.004337992) (0.005826362 -0.02873518 -0.003880748) (0.005642162 -0.02824561 -0.004141006) (0.00610061 -0.02702536 -0.004012072) (0.006123016 -0.02803452 -0.003524779) (-0.005998778 -0.02399884 -0.004497729) (-0.006022497 -0.02500211 -0.004006461) (-0.006646053 -0.02426759 -0.004138) (-0.005544671 -0.02400899 -0.004027534) (-0.006039108 -0.02300637 -0.004018961) (-0.006051468 -0.02400948 -0.003521492) (-0.001009467 -0.02400895 -0.004050365) (-0.002017625 -0.02200559 -0.0040422) (0.001011449 -0.0240095 -0.004050759) (0.002021031 -0.02200687 -0.004046443) (0.006010904 -0.02400095 -0.004505245) (0.006029852 -0.02500377 -0.004011657) (0.005554116 -0.02400675 -0.004031421) (0.006658524 -0.02425052 -0.004141728) (0.006048232 -0.02300482 -0.004027759) (0.006058783 -0.02400569 -0.003523939) (-0.007604727 -0.02001752 -0.004019461) (-0.007874656 -0.01896867 -0.003977432) (-0.007904939 -0.01999696 -0.00349657) (-0.00604441 -0.02000785 -0.004527373) (-0.006053902 -0.02101056 -0.004034724) (-0.006548112 -0.0200101 -0.004028305) (-0.003025675 -0.02000438 -0.004037621) (-0.004035127 -0.0180045 -0.004036244) (-0.004037969 -0.02000568 -0.003027006) (0.003029001 -0.02000491 -0.004043236) (0.004038797 -0.01800439 -0.00404177) (0.004041899 -0.02000484 -0.003031418) (0.006051527 -0.02000361 -0.004536677) (0.006072784 -0.02100744 -0.004048903) (0.00656227 -0.02000544 -0.004034378) (0.007603814 -0.02001791 -0.004017798) (0.007875046 -0.01896482 -0.003968722) (0.007905236 -0.01999605 -0.003495039) (-0.00798393 -0.01598872 -0.004473955) (-0.008040199 -0.01701727 -0.004020414) (-0.008345838 -0.01572582 -0.00385466) (-0.007548093 -0.01600298 -0.004012856) (-0.008159948 -0.01502319 -0.004120451) (-0.008182547 -0.01627616 -0.003663173) (-0.00504401 -0.01600508 -0.004033416) (-0.004031431 -0.01400311 -0.004031634) (0.00504908 -0.01600398 -0.004038396) (0.004035815 -0.01400343 -0.004037345) (0.007923434 -0.01601326 -0.004502091) (0.00808464 -0.01700128 -0.003991543) (0.007545032 -0.01600519 -0.004021041) (0.008334157 -0.01597161 -0.003885561) (0.008168071 -0.01527154 -0.004146748) (0.0080088 -0.01599943 -0.003501516) (-0.008198453 -0.01204029 -0.004670127) (-0.008027252 -0.01300137 -0.004019771) (-0.008596785 -0.01199789 -0.003998046) (-0.007583074 -0.01200579 -0.004047472) (-0.008075729 -0.01100684 -0.004041557) (-0.008072529 -0.01200577 -0.003535668) (-0.00504436 -0.01200298 -0.004032538) (0.005045145 -0.01200305 -0.004037563) (0.008164598 -0.01227567 -0.004670638) (0.008043376 -0.01299986 -0.004020429) (0.007574338 -0.01200174 -0.004040917) (0.00857377 -0.01201458 -0.004036049) (0.008062195 -0.01100294 -0.004015994) (0.008087627 -0.01200299 -0.003530655) (-0.008081042 -0.008003756 -0.004532781) (-0.008097118 -0.009003627 -0.004037587) (-0.00874409 -0.008041728 -0.004179666) (-0.008124057 -0.006997009 -0.004036369) (-0.008099322 -0.008003273 -0.003531937) (-0.006053512 -0.008002276 -0.00302172) (0.006049823 -0.008002626 -0.003020777) (0.008057213 -0.008006364 -0.004524038) (0.008091362 -0.009004434 -0.004027435) (0.008665598 -0.008278598 -0.004172083) (0.008053062 -0.007003689 -0.004018634) (0.008095551 -0.008007269 -0.003529841) (-0.0080518 -0.004001645 -0.00451871) (-0.008047737 -0.005000582 -0.004018991) (-0.008544378 -0.004001259 -0.004013014) (-0.008068582 -0.003000481 -0.004032) (-0.008064968 -0.004001082 -0.003521704) (-0.006046664 -0.004000863 -0.003022051) (0.006045801 -0.004001388 -0.003020241) (0.008086084 -0.004001569 -0.004531854) (0.008062461 -0.005001325 -0.004020759) (0.008572991 -0.004001066 -0.004026162) (0.008087115 -0.003001382 -0.004041585) (0.008070439 -0.004001285 -0.003525678) (-0.008069542 2.105225e-06 -0.004542554) (-0.008091228 -0.001001285 -0.004051202) (-0.008589543 2.85916e-06 -0.004039173) (-0.008096514 0.00100592 -0.004047425) (-0.008094197 1.041797e-06 -0.003539285) (-0.006045294 4.23628e-07 -0.003024681) (0.006045404 -8.847384e-08 -0.003021043) (0.008101874 3.094008e-06 -0.00456363) (0.008098597 -0.001000024 -0.004045526) (0.008612793 1.872134e-06 -0.004052914) (0.008098294 0.001000975 -0.004046491) (0.008095655 3.535791e-07 -0.003537787) (-0.008056503 0.004000669 -0.004530776) (-0.008070127 0.003001804 -0.004027835) (-0.008534664 0.004000392 -0.004018208) (-0.008038279 0.005000588 -0.004018624) (-0.008047066 0.004000811 -0.003519644) (-0.006042547 0.004001144 -0.003022485) (0.00604398 0.004001213 -0.003021568) (0.008055746 0.004001422 -0.004523578) (0.008068538 0.003002436 -0.004030141) (0.008539034 0.004000912 -0.004014609) (0.008038145 0.00500188 -0.004015525) (0.008049084 0.004001794 -0.00352009) (-0.00808124 0.008000189 -0.004537337) (-0.008088478 0.007000897 -0.004050688) (-0.008729372 0.008040523 -0.004174289) (-0.008083583 0.0090023 -0.004033952) (-0.00808056 0.008002491 -0.003534227) (-0.006049405 0.008002052 -0.003023352) (0.006055904 0.008002555 -0.003025283) (0.008083079 0.008002596 -0.00452862) (0.008088647 0.007009427 -0.004037635) (0.00874136 0.008036355 -0.004170535) (0.008082982 0.009002496 -0.004030174) (0.008087436 0.008004272 -0.003535376) (-0.008156996 0.01227948 -0.004667045) (-0.008053034 0.01100482 -0.004017498) (-0.008552555 0.01201237 -0.004034537) (-0.007579984 0.01200761 -0.004042131) (-0.008018958 0.01300172 -0.004009747) (-0.008089168 0.0120079 -0.003532275) (-0.005044289 0.01200372 -0.00403594) (-0.004034007 0.0140037 -0.00403579) (0.005053108 0.01200375 -0.00404008) (0.00404042 0.01400373 -0.004037767) (0.008222436 0.01203659 -0.004664284) (0.008070073 0.011001 -0.004028292) (0.007589906 0.01200221 -0.004038665) (0.008560727 0.0120137 -0.00402436) (0.008041 0.01300225 -0.004016591) (0.008096037 0.01200445 -0.003545053) (-0.007924822 0.01600392 -0.004507507) (-0.00818357 0.01504284 -0.004148566) (-0.008350831 0.01596603 -0.003880323) (-0.007557158 0.01600705 -0.004020506) (-0.008089147 0.01699865 -0.003994228) (-0.008013384 0.01600108 -0.003502505) (-0.005047098 0.01600479 -0.004037937) (-0.004038393 0.01800457 -0.00403778) (0.005059548 0.01600524 -0.004042286) (0.004044713 0.01800576 -0.0040406) (0.007943131 0.01600409 -0.004511644) (0.008157243 0.01502501 -0.004129026) (0.007582346 0.01601001 -0.004025856) (0.00835692 0.0157311 -0.003856807) (0.008033203 0.01700103 -0.004009139) (0.008193236 0.01628412 -0.003666546) (-0.007864493 0.01896803 -0.003968321) (-0.007598697 0.02001929 -0.00401874) (-0.007904106 0.01999578 -0.003496445) (-0.006049244 0.02000589 -0.004529719) (-0.00656051 0.02000752 -0.004030787) (-0.00606832 0.02101049 -0.004035558) (-0.003029236 0.02000489 -0.004038964) (-0.004040544 0.02000542 -0.003026145) (-0.002021886 0.02200706 -0.004045462) (0.003031253 0.02000624 -0.004039454) (0.002019384 0.02200705 -0.004042367) (0.004046952 0.02000616 -0.003029378) (0.006068186 0.02000483 -0.004537569) (0.006083328 0.01900763 -0.004050357) (0.006570495 0.02000657 -0.004033688) (0.006079967 0.02100707 -0.004036367) (0.007864296 0.01874131 -0.003876603) (0.007527573 0.02000375 -0.004010643) (0.007870876 0.0199794 -0.003384493) (-0.005997132 0.02399649 -0.004490471) (-0.006040555 0.02300614 -0.004012506) (-0.006647504 0.0242602 -0.004123113) (-0.005541973 0.02400504 -0.004016791) (-0.006022282 0.02500061 -0.003999834) (-0.006050724 0.0240059 -0.003513377) (-0.001013068 0.02401047 -0.004053524) (0.001008875 0.02400971 -0.004051223) (-1.946773e-06 0.02601345 -0.004062708) (0.006007499 0.02399941 -0.00449956) (0.00605089 0.02300345 -0.004025026) (0.00555015 0.02400656 -0.004027665) (0.006636042 0.02425826 -0.004134847) (0.006021709 0.02500293 -0.004010825) (0.00605883 0.02400879 -0.003525376) (-0.005792026 0.02774057 -0.004346955) (-0.00610694 0.02701831 -0.004013677) (-0.005623928 0.02825381 -0.004143134) (-0.005823783 0.02873716 -0.003870289) (-0.006122847 0.02802428 -0.003513396) (-0.004053402 0.02801285 -0.004559844) (-0.004559693 0.0280162 -0.004049644) (-0.00406214 0.02901764 -0.004058043) (-0.002031795 0.02801602 -0.003051744) (0.002030125 0.02801714 -0.00305841) (0.004040491 0.02801119 -0.004560053) (0.00456029 0.02801726 -0.004062303) (0.004059388 0.02902161 -0.004078225) (0.005824118 0.02773066 -0.004337538) (0.006114624 0.0270317 -0.004014624) (0.005654743 0.02824819 -0.004146647) (0.005848591 0.02874285 -0.003832619) (0.006119136 0.02802922 -0.003546075) (-0.003970106 0.03198642 -0.004459877) (-0.004002731 0.03099538 -0.004003721) (-0.004457711 0.03199234 -0.003959628) (-0.003497057 0.03199856 -0.004002161) (-0.003970113 0.03298194 -0.003972731) (-0.004003306 0.03200118 -0.003494547) (-0.002028079 0.03201366 -0.004566811) (-0.002534342 0.03201382 -0.004063065) (-0.001525961 0.03202242 -0.004083326) (-0.002035718 0.03301802 -0.004078192) (0.002018057 0.032011 -0.004575613) (0.00151995 0.03201955 -0.00408491) (0.002521711 0.03201556 -0.00406439) (0.002017509 0.03301496 -0.004068832) (0.003993805 0.03196745 -0.004397223) (0.004044749 0.031023 -0.004049152) (0.003528105 0.0320079 -0.004033208) (0.004428623 0.03180842 -0.003988899) (0.003885138 0.03298014 -0.003972447) (0.004209504 0.03235125 -0.003719478) (-0.0020048 0.03523304 -0.004222015) (-0.002348091 0.03571281 -0.003794049) (-0.001508885 0.03598946 -0.00401187) (-0.002022991 0.03619084 -0.003621094) (3.713078e-06 0.03581307 -0.004421804) (3.351032e-06 0.03502177 -0.004055992) (-0.0004977798 0.03623242 -0.004147466) (0.000507237 0.03621576 -0.004142661) (4.030227e-06 0.03675107 -0.003814706) (7.518661e-06 0.03602568 -0.003548218) (0.002015036 0.03521533 -0.004169561) (0.001523692 0.03587135 -0.004063468) (0.002354563 0.03570238 -0.003818705) (0.001988949 0.03618567 -0.003656094) (-0.001828619 -0.03860159 -0.001766686) (-1.869649e-06 -0.03904138 -0.002036038) (-2.734466e-07 -0.03960453 -0.001282344) (0.001807781 -0.03859169 -0.001793258) (-0.003828182 -0.03570664 -0.002353617) (-0.003638352 -0.03618906 -0.002018479) (-0.004181511 -0.03521248 -0.002036663) (-0.004032363 -0.03600174 -0.001506697) (-0.002083472 -0.03604961 -0.002588887) (-0.002073044 -0.03703901 -0.002067377) (-0.002555315 -0.03603251 -0.002045423) (-0.001553229 -0.03605108 -0.002069239) (-0.002064249 -0.03604498 -0.001548576) (-1.289402e-06 -0.03605692 -0.002577127) (4.203645e-07 -0.03705908 -0.002077178) (-0.0005173442 -0.03605356 -0.002065287) (0.0005161464 -0.03606138 -0.002077115) (0.002054758 -0.03604601 -0.002564917) (0.002072198 -0.03705295 -0.002068494) (0.001550123 -0.03605872 -0.002069925) (0.002574141 -0.03604082 -0.002055304) (0.002066117 -0.03605774 -0.001546904) (0.00381039 -0.03569926 -0.002346298) (0.003651407 -0.0362162 -0.002024096) (0.004130785 -0.03519115 -0.00201892) (0.003986204 -0.03597683 -0.001500209) (-0.005584212 -0.03199025 -0.001995536) (-0.00590923 -0.03100188 -0.002001575) (-0.005854599 -0.03174565 -0.001484923) (-0.004065568 -0.03203384 -0.002562456) (-0.004068709 -0.0330328 -0.002052179) (-0.004554484 -0.03202249 -0.002037547) (-0.004070728 -0.03202234 -0.00153526) (-0.00203681 -0.03002234 -0.002048144) (0.002032947 -0.03001866 -0.00203616) (0.004050455 -0.03201337 -0.002523302) (0.004045882 -0.03301212 -0.002021549) (0.004548007 -0.03200939 -0.002018337) (0.00405674 -0.03201232 -0.001520555) (0.005578856 -0.03199049 -0.001990154) (0.005902516 -0.03099663 -0.00199988) (0.00585234 -0.03174807 -0.001480608) (-0.006034797 -0.02799782 -0.002507446) (-0.006005889 -0.02899782 -0.001997849) (-0.006662817 -0.02825214 -0.002135002) (-0.005554349 -0.02801027 -0.002015023) (-0.00605706 -0.0270095 -0.002015098) (-0.006042059 -0.02800767 -0.001505379) (-0.003045505 -0.02801527 -0.002037676) (0.003048197 -0.0280122 -0.002030717) (0.006043342 -0.02800175 -0.002517387) (0.006012025 -0.02899757 -0.002002004) (0.005569164 -0.02800733 -0.002024081) (0.006660845 -0.02822688 -0.002023214) (0.006078949 -0.0270088 -0.00202428) (0.006071589 -0.02800686 -0.001516463) (-0.007648855 -0.02404835 -0.002019479) (-0.007912152 -0.02298682 -0.001999657) (-0.007879365 -0.02395239 -0.001483006) (-0.006072264 -0.0240135 -0.002522069) (-0.006075523 -0.02501487 -0.002017188) (-0.006572321 -0.02401615 -0.002015732) (-0.004044546 -0.0220077 -0.002019407) (-0.004052141 -0.02400921 -0.001010579) (0.004048488 -0.02200623 -0.002022268) (0.004055694 -0.0240083 -0.001012554) (0.006078214 -0.02400968 -0.002523502) (0.006088147 -0.02500973 -0.00202337) (0.006571311 -0.02400974 -0.002015906) (0.007631644 -0.02405545 -0.002009573) (0.007906318 -0.02298506 -0.0019998) (0.007872161 -0.02394942 -0.001484531) (-0.00814554 -0.0202567 -0.002625278) (-0.008142587 -0.0212328 -0.002019001) (-0.008446152 -0.01995666 -0.00199127) (-0.007544479 -0.02000486 -0.002008385) (-0.008018446 -0.0190018 -0.00200348) (-0.008020516 -0.02000039 -0.001500322) (-0.005052991 -0.02000775 -0.002017181) (0.005054896 -0.02000524 -0.002019416) (0.008152735 -0.02024995 -0.002630576) (0.008145303 -0.02123635 -0.00201508) (0.00754465 -0.02000393 -0.002008685) (0.008451705 -0.01995149 -0.001990442) (0.008024269 -0.01900091 -0.002002331) (0.008020007 -0.02000196 -0.001501683) (-0.008083166 -0.01600546 -0.002533238) (-0.008060895 -0.01700136 -0.00200947) (-0.008513346 -0.01599882 -0.002010423) (-0.008079998 -0.01500065 -0.002023102) (-0.008055929 -0.01600203 -0.001509194) (0.008072231 -0.01600147 -0.002519425) (0.008063 -0.0170044 -0.002011108) (0.008520205 -0.01599917 -0.002003633) (0.008086522 -0.01500129 -0.002018218) (0.008053508 -0.01600208 -0.001509368) (-0.009362182 -0.01196462 -0.001978642) (-0.008071603 -0.01200416 -0.002517861) (-0.008084794 -0.01300677 -0.002015867) (-0.008596234 -0.01200449 -0.00201191) (-0.00807449 -0.01100568 -0.002013839) (-0.008076673 -0.01200744 -0.001510504) (-0.006051982 -0.01000303 -0.002014747) (-0.006051003 -0.01200325 -0.001007896) (0.006048288 -0.01000232 -0.002013724) (0.006044966 -0.01200197 -0.001006855) (0.00809421 -0.01200243 -0.002518205) (0.008099383 -0.01300323 -0.002013324) (0.008604003 -0.01200264 -0.002016938) (0.008090665 -0.01100357 -0.002018961) (0.008069003 -0.01200236 -0.001510266) (0.009320045 -0.01197899 -0.00185464) (-0.009509966 -0.008000062 -0.001996039) (-0.007064153 -0.008003741 -0.002012623) (-0.008079307 -0.008007277 -0.002516551) (-0.008077745 -0.009009337 -0.002014675) (-0.00856736 -0.008007472 -0.002008936) (-0.008076178 -0.007004054 -0.002010622) (-0.006047852 -0.006001559 -0.002013308) (-0.00604947 -0.008002109 -0.001006571) (0.007054717 -0.008002782 -0.002011047) (0.006044675 -0.006001879 -0.002011974) (0.006043721 -0.008001996 -0.001005497) (0.008071346 -0.008004353 -0.002516344) (0.008061797 -0.009004012 -0.002012247) (0.008536141 -0.00800349 -0.002007697) (0.008055751 -0.007002999 -0.002008594) (0.008054251 -0.008003074 -0.001505741) (0.009433858 -0.007999112 -0.001997497) (-0.009628552 -0.004020938 -0.002022729) (-0.009809287 -0.00272266 -0.001845849) (-0.009818816 -0.003971351 -0.001379052) (-0.007052366 -0.004001322 -0.002013253) (-0.008066302 -0.004001868 -0.002516984) (-0.008074128 -0.005002424 -0.002013712) (-0.008577199 -0.004002903 -0.002013108) (-0.00603881 -0.002000322 -0.002014999) (0.007053103 -0.0040015 -0.002011428) (0.006041827 -0.002000755 -0.002013185) (0.008059469 -0.004001473 -0.002514743) (0.008061682 -0.005002081 -0.00200959) (0.008574051 -0.004001732 -0.00201152) (0.009599322 -0.004004522 -0.002023458) (0.009809631 -0.003721592 -0.001356615) (-0.009791915 -0.000993664 -0.001873298) (-0.0097528 1.101068e-06 -0.002136705) (-0.009787199 0.0009986507 -0.001884364) (-0.009887106 2.074196e-06 -0.001464225) (-0.00704201 3.135918e-07 -0.002015684) (-0.006036514 0.002000666 -0.002015078) (0.007047477 -1.438851e-07 -0.00201412) (0.006038113 0.002000433 -0.002013581) (0.009848518 -0.000964734 -0.001876463) (0.009740078 -5.192532e-06 -0.00213526) (0.00978545 0.0009988794 -0.00187546) (0.009888445 2.396446e-06 -0.001458217) (-0.009791894 0.002721839 -0.001858987) (-0.009621652 0.004025882 -0.00204388) (-0.009811379 0.00397173 -0.001389426) (-0.007043275 0.004000952 -0.002013754) (-0.008047125 0.004001168 -0.002515384) (-0.00856112 0.004002302 -0.002015832) (-0.008057776 0.005001331 -0.002013456) (-0.006043053 0.006001113 -0.002014308) (0.007043823 0.004001192 -0.002012176) (0.006044982 0.006001556 -0.002014362) (0.009801949 0.002726476 -0.001849183) (0.009659328 0.004014866 -0.002045395) (0.009793984 0.004009124 -0.001401462) (-0.009495622 0.008000818 -0.001998466) (-0.00705702 0.008001563 -0.002013629) (-0.008062717 0.00800164 -0.00251733) (-0.008063783 0.007001458 -0.002012253) (-0.008551584 0.008001543 -0.002007395) (-0.008062233 0.009001691 -0.002012255) (-0.006050599 0.0100024 -0.002015744) (-0.006047311 0.008001245 -0.001007096) (0.007062751 0.008003011 -0.002015208) (0.00605894 0.01000324 -0.002017297) (0.006050184 0.008001745 -0.001007092) (0.008076473 0.008005251 -0.002524852) (0.008072816 0.007003123 -0.002015995) (0.008575062 0.008003547 -0.00201534) (0.008076534 0.009005469 -0.002016144) (0.009545983 0.008001459 -0.002003224) (-0.009340872 0.01196743 -0.001978915) (-0.008080377 0.01200372 -0.002520364) (-0.008073227 0.01100345 -0.002015962) (-0.00857408 0.01200349 -0.00201078) (-0.008074359 0.01300293 -0.002016786) (-0.008068584 0.01200396 -0.001513374) (-0.006049618 0.01200272 -0.0010089) (0.00605877 0.01200395 -0.001009253) (0.008098345 0.01200609 -0.002524926) (0.008085254 0.01100752 -0.002017943) (0.008601174 0.01201314 -0.002024465) (0.008113067 0.01300958 -0.002026507) (0.008086811 0.0120084 -0.001517983) (0.009362954 0.011967 -0.001976285) (-0.0080839 0.01600303 -0.002519273) (-0.008073081 0.01499966 -0.002019077) (-0.008509232 0.01600123 -0.002004209) (-0.008075498 0.01699896 -0.002025931) (-0.008054017 0.01600158 -0.001513751) (0.008070869 0.01600859 -0.00252743) (0.008093231 0.01500924 -0.00202304) (0.008522457 0.01600286 -0.002008224) (0.008064672 0.01701015 -0.002010915) (0.008062521 0.0160076 -0.001511119) (-0.008143368 0.02025832 -0.002627708) (-0.008024782 0.01900245 -0.002004668) (-0.008454357 0.01995285 -0.001982414) (-0.007554965 0.02000817 -0.002013331) (-0.008145108 0.02123341 -0.002008837) (-0.008018148 0.0200032 -0.001502824) (-0.005055163 0.02000677 -0.002016644) (-0.004046485 0.02200703 -0.002017727) (0.005061885 0.02000656 -0.002019956) (0.004050684 0.02200751 -0.002021031) (0.008128403 0.02003108 -0.002514036) (0.00803064 0.01899984 -0.002000241) (0.007581866 0.02000425 -0.002010769) (0.008381967 0.01995482 -0.001985814) (0.008124568 0.02101214 -0.002004598) (0.008021722 0.01999831 -0.001500458) (-0.007909754 0.02298516 -0.001997605) (-0.007631041 0.02405037 -0.002034475) (-0.00788116 0.02395391 -0.001486243) (-0.006074817 0.02400638 -0.002520451) (-0.006572338 0.02400847 -0.00201534) (-0.006079602 0.02501111 -0.002016171) (-0.004053733 0.02400979 -0.001009244) (0.004056732 0.02400995 -0.001011218) (0.006079035 0.02401048 -0.002530446) (0.00656913 0.02400866 -0.002018093) (0.006083184 0.02501091 -0.002021463) (0.007858064 0.02294959 -0.00198302) (0.007607222 0.02401264 -0.001998681) (0.007851771 0.02373908 -0.001478768) (-0.006048489 0.0280066 -0.002514153) (-0.006070062 0.02701722 -0.002016939) (-0.006643124 0.02826123 -0.002115209) (-0.005571895 0.02801952 -0.002015967) (-0.006013763 0.02900444 -0.001999924) (-0.006051122 0.02801443 -0.001504583) (-0.003048856 0.02801534 -0.002029082) (-0.00203511 0.03001953 -0.002035805) (0.003048581 0.02801667 -0.002038154) (0.002036067 0.03002064 -0.00204493) (0.006045669 0.02800322 -0.002511808) (0.006074602 0.02701263 -0.002014393) (0.005563612 0.0280125 -0.002015495) (0.00665892 0.0282455 -0.002005006) (0.006010205 0.02900188 -0.002001708) (0.006062827 0.02801356 -0.001501993) (-0.005912583 0.03100908 -0.002005491) (-0.005585457 0.031992 -0.001993884) (-0.005854573 0.03174303 -0.00148181) (-0.004066603 0.03201766 -0.00252439) (-0.004561183 0.03201439 -0.002018319) (-0.004075994 0.03301757 -0.002022027) (-0.004068596 0.03201909 -0.001519815) (0.00407523 0.03202723 -0.002553249) (0.004555339 0.03201253 -0.002029004) (0.004058039 0.03301625 -0.00203213) (0.004059894 0.03201371 -0.00152765) (0.005904452 0.03099965 -0.00200752) (0.005591109 0.03199137 -0.001994802) (0.005840649 0.0317478 -0.001474966) (-0.00382964 0.03571145 -0.002345283) (-0.004179988 0.03521547 -0.002017878) (-0.003627275 0.03617834 -0.002034129) (-0.004022445 0.03598208 -0.001498998) (-0.002034765 0.0360542 -0.002562093) (-0.00255624 0.03604627 -0.00203472) (-0.00154088 0.03606152 -0.002058246) (-0.002047127 0.03707201 -0.002053212) (-0.002056872 0.03605674 -0.001537152) (2.154289e-06 0.03605836 -0.002575851) (-0.0005161264 0.03605933 -0.002067596) (0.000515071 0.03606424 -0.002072537) (-4.22353e-06 0.03707017 -0.00207536) (0.002046056 0.03603999 -0.002563021) (0.001543448 0.03605373 -0.002058149) (0.002548275 0.03602656 -0.002027059) (0.002048539 0.03703673 -0.002031632) (0.002056198 0.0360486 -0.001534079) (0.00381666 0.03569379 -0.002358331) (0.004115378 0.03520952 -0.002028305) (0.003643666 0.03617512 -0.001994619) (0.003984297 0.0359775 -0.001500078) (-0.001797392 0.03861159 -0.001784762) (-1.344539e-05 0.03905634 -0.002017629) (9.602584e-07 0.03959677 -0.001292255) (0.001736176 0.03860978 -0.001793366) (-0.001288171 -0.03958964 1.251851e-05) (-0.002054879 -0.03908777 9.367354e-06) (3.5956e-06 -0.03983377 -0.0004851177) (-0.0005045451 -0.03992495 2.037383e-05) (0.0005000335 -0.039924 1.15985e-05) (1.720598e-06 -0.03896998 1.77206e-05) (-5.483777e-06 -0.03981152 0.0005094493) (0.001317848 -0.03960403 7.143958e-06) (0.002038231 -0.03907588 6.404237e-06) (-0.004136572 -0.03620497 -0.0004960544) (-0.003889913 -0.03680477 3.317485e-06) (-0.004395739 -0.03580029 3.415916e-06) (-0.003567609 -0.03601169 4.121895e-06) (-0.004048887 -0.03501182 4.606121e-06) (-0.0041431 -0.03617986 0.0005000581) (-0.002076679 -0.03604803 -0.0005167279) (-0.002084026 -0.03706806 -3.425949e-06) (-0.00258893 -0.03605184 -6.545614e-06) (-0.002072356 -0.03605566 0.0005117979) (0.002069743 -0.03606475 -0.0005085584) (0.002087989 -0.03708825 1.459735e-05) (0.002568282 -0.03605427 8.811735e-06) (0.002067727 -0.03606933 0.0005260567) (0.004093899 -0.036176 -0.0004970835) (0.003872817 -0.03679103 2.025424e-06) (0.003531972 -0.03601572 1.134079e-05) (0.0043512 -0.03577704 4.053996e-06) (0.004003105 -0.0350103 6.129057e-06) (0.004066488 -0.03617691 0.000498315) (-0.005893477 -0.03200995 -0.0005009057) (-0.005780014 -0.03270983 1.235024e-05) (-0.005518558 -0.03199466 -2.275099e-06) (-0.006124566 -0.03123313 5.756726e-06) (-0.005889648 -0.03200441 0.000499911) (0.005898036 -0.03201104 -0.0004984122) (0.005794329 -0.03269963 -2.662012e-06) (0.005507173 -0.03199006 9.226126e-06) (0.006123276 -0.0312458 4.109421e-06) (0.005898057 -0.03199598 0.0005079172) (-0.006088863 -0.02801328 -0.0005001691) (-0.006108531 -0.02901909 4.527622e-06) (-0.00656278 -0.02800661 2.226438e-06) (-0.00610297 -0.02701573 2.947021e-06) (-0.006082404 -0.02801066 0.0005032583) (-0.004059909 -0.02601026 4.440779e-08) (0.00406088 -0.02601078 2.983297e-07) (0.006078149 -0.02801732 -0.000504422) (0.006076353 -0.02902651 8.076308e-07) (0.006562539 -0.02801466 -5.43527e-07) (0.006109662 -0.02702656 9.140213e-08) (0.006075749 -0.02801581 0.0005055518) (-0.00798762 -0.02394919 -0.0005003538) (-0.007858832 -0.02476235 1.131004e-06) (-0.007530102 -0.02400515 -8.433511e-07) (-0.008120845 -0.02306631 -3.848214e-06) (-0.007988811 -0.02394835 0.0004985715) (-0.00507064 -0.02401071 4.336462e-07) (-0.004055623 -0.02400958 0.001011527) (0.005069866 -0.02401072 -4.599838e-07) (0.004054883 -0.02400911 0.00101256) (0.00798578 -0.02393995 -0.0004995683) (0.007859188 -0.02475282 -1.298078e-06) (0.007515662 -0.02400125 2.352235e-07) (0.008136093 -0.02300972 5.304894e-06) (0.007974581 -0.0239401 0.0005006504) (-0.008075618 -0.02000483 -0.0005030744) (-0.008040842 -0.02100604 -1.063644e-06) (-0.008616483 -0.02005424 1.705777e-06) (-0.007596415 -0.02001091 -1.16611e-08) (-0.008089464 -0.01900696 2.137648e-06) (-0.008077842 -0.02001369 0.0005006496) (0.008071921 -0.02000939 -0.0005038703) (0.008036316 -0.02100331 1.694151e-07) (0.007585484 -0.02000921 -2.853394e-06) (0.008620508 -0.02006796 -1.917328e-06) (0.008081129 -0.01900552 -3.033318e-06) (0.008079513 -0.02000804 0.0005008689) (-0.008067114 -0.01600343 -0.0005021744) (-0.008040536 -0.01700242 8.447613e-07) (-0.008573652 -0.01599915 -2.853574e-07) (-0.008080099 -0.01500296 -5.756612e-07) (-0.008062652 -0.01600165 0.0005017271) (-0.006051642 -0.01400333 -1.359255e-06) (0.006048057 -0.01400208 -6.834645e-08) (0.008062156 -0.01600318 -0.0005048813) (0.008042961 -0.01700273 -1.592496e-06) (0.008579917 -0.01600293 -1.771492e-06) (0.008079261 -0.01500164 -1.35764e-06) (0.008071154 -0.01600337 0.0005014649) (-0.009505554 -0.01199694 2.719201e-07) (-0.007056587 -0.01200345 -9.605974e-07) (-0.008059943 -0.0120044 -0.0005026) (-0.008060986 -0.01300425 -4.221777e-07) (-0.008542092 -0.01200241 9.783844e-08) (-0.008056898 -0.01200409 0.0005016933) (-0.006048184 -0.01000244 -7.229769e-07) (-0.006047201 -0.0120029 0.001005028) (0.00703961 -0.01200082 -2.008833e-07) (0.006040104 -0.01000164 3.8606e-07) (0.006044938 -0.01200157 0.001007637) (0.00802634 -0.01200049 -0.0005031891) (0.008032552 -0.0129995 -1.039193e-06) (0.00849712 -0.01199866 -4.998958e-07) (0.008024862 -0.01100028 1.255456e-08) (0.008026842 -0.01199936 0.0005019186) (0.009462107 -0.01199723 2.925127e-07) (-0.009691715 -0.008033076 -2.264121e-06) (-0.009817244 -0.006706206 4.662194e-08) (-0.007064531 -0.00800219 -1.535026e-07) (-0.006046033 -0.008001715 0.001005702) (0.007053095 -0.008002242 7.172205e-07) (0.006043741 -0.008001818 0.00100662) (0.009641287 -0.008005776 6.065493e-07) (-0.009843372 -0.003993906 -0.0004963717) (-0.009826839 -0.004987927 -3.154044e-06) (-0.009393992 -0.003996507 1.525972e-06) (-0.009885999 -0.002994382 2.76966e-06) (-0.009843878 -0.003996578 0.0005002769) (0.00990638 -0.00394007 -0.0004949061) (0.009846562 -0.004733403 -1.574678e-05) (0.009497033 -0.003999638 1.642467e-06) (0.009873782 -0.00298882 8.731991e-07) (0.009849703 -0.003964455 0.000503524) (-0.009984712 4.417785e-07 -0.0004936905) (-0.009962113 -0.0009966739 -3.402085e-07) (-0.009476833 7.255135e-07 -9.273727e-07) (-0.009961989 0.0009998073 3.65683e-07) (-0.009982783 -4.346418e-06 0.0004967102) (0.009985986 -1.116184e-06 -0.0004986894) (0.009954888 -0.0009995367 2.914227e-07) (0.009476799 1.104637e-07 2.825769e-07) (0.009970083 0.00099935 1.206771e-06) (0.009965364 -1.261584e-06 0.0004975279) (-0.009850713 0.003994123 -0.0004963476) (-0.009886677 0.002995915 -1.142351e-06) (-0.009394025 0.003996701 -3.333377e-06) (-0.009903833 0.004973664 -2.183308e-06) (-0.009837963 0.003994112 0.0005064144) (0.009868564 0.003994206 -0.0004955622) (0.009910546 0.002996123 1.769566e-07) (0.009403253 0.003996939 -8.741958e-07) (0.009850933 0.004994676 -2.981315e-07) (0.009859417 0.003994016 0.0004920993) (-0.00983682 0.006684886 -0.0001188897) (-0.009696932 0.008012267 1.765649e-06) (-0.007064433 0.00800088 -5.082557e-07) (-0.006047831 0.01000133 -1.050372e-06) (-0.006046838 0.008000824 0.001006314) (0.007064107 0.008000987 1.638285e-06) (0.006053194 0.01000218 5.855018e-07) (0.006050172 0.008000983 0.001007901) (0.009826765 0.007730254 -0.0004763789) (0.009862112 0.006935087 -6.988107e-06) (0.009683671 0.008217053 -3.541059e-06) (0.009824665 0.007710844 0.0003591709) (-0.009505997 0.0119977 -1.034332e-07) (-0.007054657 0.01200228 -3.068548e-06) (-0.008054864 0.01200365 -0.0005071706) (-0.008537702 0.01200153 -3.647476e-06) (-0.008055965 0.01300469 -5.876528e-06) (-0.008053389 0.01200124 0.0004987376) (-0.006050986 0.0140032 -2.410317e-06) (-0.006047771 0.01200113 0.001005106) (0.007061235 0.0120038 9.885532e-07) (0.006057797 0.01400454 -3.044416e-07) (0.006055051 0.01200289 0.0010092) (0.008061066 0.01200446 -0.0005038613) (0.008542779 0.01200232 2.236622e-06) (0.008053881 0.01300555 1.821026e-06) (0.008060397 0.01200351 0.0005077971) (0.009516575 0.0119987 2.34303e-06) (-0.008065343 0.01600535 -0.0005046796) (-0.008083267 0.01500791 -1.70881e-06) (-0.008577112 0.01600662 1.125472e-06) (-0.008048116 0.01700527 -1.743757e-06) (-0.00806902 0.01600497 0.0005016448) (0.008084445 0.01600936 -0.0005042048) (0.008087113 0.01501009 -2.184565e-07) (0.00858876 0.01600659 -1.470304e-06) (0.008050376 0.0170061 -2.207766e-06) (0.008073111 0.01600493 0.0005013126) (-0.008084753 0.02001046 -0.0005031172) (-0.008111652 0.01902203 -1.692312e-06) (-0.008625818 0.02006068 -9.863413e-07) (-0.007604383 0.02001363 -1.789685e-06) (-0.008047603 0.02100649 -3.889537e-07) (-0.008089949 0.02000838 0.0005024521) (0.008048262 0.02000058 -0.0005021046) (0.008073025 0.01900246 -3.19472e-06) (0.007561107 0.02000477 -6.21093e-07) (0.008563496 0.02005032 -2.297197e-06) (0.008002269 0.02100171 -2.763707e-07) (0.008038816 0.02000395 0.0005003494) (-0.007991842 0.02394908 -0.0004994359) (-0.00813035 0.02306761 2.260956e-06) (-0.007527701 0.02400511 -9.963736e-07) (-0.007866573 0.02475496 -7.725205e-07) (-0.007984474 0.02394703 0.0004971352) (-0.005070224 0.02401077 4.334485e-07) (-0.004060132 0.0260125 9.148506e-07) (-0.004055671 0.02400954 0.001012986) (0.005078219 0.02401177 2.992563e-07) (0.004063579 0.02601253 8.993256e-07) (0.004058903 0.02401063 0.001011899) (0.007888121 0.02397613 -0.0005009747) (0.008027929 0.02305294 -6.825228e-07) (0.007522965 0.02400183 -1.331229e-06) (0.007819412 0.02471604 6.370556e-06) (0.007883602 0.02396903 0.0005005657) (-0.006084049 0.0280182 -0.000502336) (-0.006097623 0.02702231 -6.32319e-07) (-0.006565611 0.02800922 -5.828799e-09) (-0.006102742 0.02901921 -2.672494e-06) (-0.006077995 0.02801828 0.0005022548) (0.006076009 0.02801433 -0.00049884) (0.00612003 0.02701978 3.162537e-06) (0.006564696 0.02800541 4.5782e-06) (0.006069489 0.02901032 6.987326e-06) (0.006082427 0.02801324 0.0005071232) (-0.00590165 0.03201188 -0.0004978761) (-0.006135978 0.03125486 1.093762e-06) (-0.005519784 0.03199276 -1.713505e-06) (-0.005786069 0.03271622 1.560413e-06) (-0.005892833 0.03200391 0.0005033104) (-0.00102334 0.03202904 2.743528e-06) (-1.053663e-06 0.03404133 4.614116e-06) (-1.170796e-07 0.03203084 0.00102843) (0.00589164 0.03200846 -0.0004974495) (0.006123646 0.03124487 5.111459e-07) (0.005523557 0.03200095 9.103475e-06) (0.005773324 0.03269512 4.893479e-06) (0.00589685 0.03199928 0.0005051153) (-0.004137151 0.03618853 -0.0004952005) (-0.004042869 0.03501921 3.028092e-06) (-0.004399781 0.03579832 3.865129e-06) (-0.003561361 0.03604215 6.478953e-06) (-0.003893646 0.03679814 4.876234e-06) (-0.004124423 0.03619526 0.0005066112) (-0.002077539 0.03605521 -0.0005056835) (-0.002593226 0.03605367 8.865967e-06) (-0.002091283 0.03706441 8.659005e-06) (-0.002074606 0.0360563 0.0005211294) (0.002072387 0.03606814 -0.0005163696) (0.002569172 0.03605642 -2.222795e-06) (0.00208863 0.03708885 -9.202707e-06) (0.002070243 0.03606463 0.0005177409) (0.004095538 0.03617226 -0.0004965164) (0.004005238 0.03500546 4.360301e-06) (0.00353149 0.03602014 -4.333656e-07) (0.004345924 0.03577829 4.703609e-06) (0.003874259 0.0367921 2.012296e-06) (0.004077864 0.03618278 0.0005025642) (-0.002046095 0.03910656 5.211842e-06) (-0.00132851 0.03958738 5.507267e-06) (-8.339158e-06 0.03983312 -0.000490338) (-5.633407e-06 0.03897966 4.086368e-06) (-0.0005008443 0.03992496 5.797228e-06) (0.0004915619 0.03992607 -6.756436e-06) (-3.732137e-06 0.03981634 0.0004916662) (0.002055558 0.03905934 -7.384869e-06) (0.001310836 0.03960624 -3.443526e-07) (-0.001781419 -0.03859919 0.001837976) (-5.259715e-06 -0.0395812 0.001345093) (-1.74717e-05 -0.03905598 0.002052603) (0.001760001 -0.03860747 0.001800959) (-0.004038557 -0.03600721 0.001512669) (-0.003633515 -0.0362052 0.002010984) (-0.004169702 -0.03524064 0.002043947) (-0.003826059 -0.0357103 0.002381615) (-0.002065409 -0.03605702 0.001544644) (-0.002080051 -0.03706284 0.002064035) (-0.002566001 -0.03604442 0.002032536) (-0.001549063 -0.03605899 0.0020696) (-0.002066706 -0.03604663 0.002571436) (-4.316696e-06 -0.03707818 0.002084742) (-0.0005167854 -0.03606331 0.002076284) (0.0005136256 -0.03605922 0.002072771) (-6.551882e-07 -0.03605735 0.002577569) (0.002053971 -0.0360493 0.001540453) (0.002039174 -0.03703363 0.002041815) (0.001541299 -0.03604874 0.002057375) (0.002543259 -0.03602323 0.002027496) (0.002026903 -0.03602554 0.002543429) (0.003998436 -0.03597967 0.001503458) (0.003674158 -0.03618483 0.001984955) (0.004140748 -0.03522022 0.0020126) (0.003828176 -0.03569103 0.002332685) (-0.005866642 -0.03174253 0.001479874) (-0.005590459 -0.03198862 0.001994539) (-0.005915026 -0.03100432 0.002007707) (-0.004073152 -0.03201404 0.001527038) (-0.004067097 -0.03301291 0.002037027) (-0.00455784 -0.03201287 0.002025491) (-0.004057085 -0.03201441 0.002532657) (-0.002036193 -0.0300184 0.00203889) (0.002033203 -0.03001602 0.002036116) (0.004075379 -0.03202208 0.001522607) (0.004060633 -0.03301686 0.002017731) (0.004565419 -0.03201798 0.002021902) (0.004069024 -0.03201946 0.002525624) (0.0058714 -0.03174274 0.001484874) (0.005608796 -0.03198691 0.002002563) (0.005913362 -0.03100508 0.002002393) (-0.00605348 -0.02800754 0.001504559) (-0.006021343 -0.02900021 0.00200392) (-0.006684268 -0.02825758 0.002122238) (-0.005572927 -0.02800963 0.00201262) (-0.006070523 -0.02700992 0.002013026) (-0.006043955 -0.02800695 0.002511051) (-0.003050603 -0.02801299 0.002031986) (-0.002032037 -0.02801617 0.003056571) (0.003049221 -0.02801289 0.002032802) (0.002031389 -0.02801378 0.003054995) (0.006074632 -0.0280162 0.001529351) (0.006015888 -0.02900459 0.002003582) (0.00556641 -0.02801157 0.002019977) (0.006672064 -0.02823481 0.002011131) (0.006063155 -0.02701102 0.002016518) (0.006033014 -0.02800329 0.002515743) (-0.007872741 -0.02396775 0.001495897) (-0.007626782 -0.02423304 0.002013916) (-0.007949982 -0.0229533 0.001985471) (-0.007771266 -0.02370791 0.002349008) (-0.006079708 -0.02501268 0.002020285) (-0.006559233 -0.02401054 0.002014364) (-0.006074964 -0.02401387 0.002529107) (-0.004048455 -0.02200824 0.002021861) (0.004050512 -0.02200787 0.002023461) (0.006080087 -0.025011 0.002020934) (0.006580109 -0.02401022 0.002020444) (0.006089168 -0.02401234 0.002527579) (0.007873164 -0.02395478 0.001482299) (0.007642194 -0.02404911 0.002020368) (0.007913021 -0.0229859 0.002000043) (-0.008021181 -0.02000291 0.001500314) (-0.008156437 -0.0212322 0.002004) (-0.008453065 -0.01995073 0.001987027) (-0.007547126 -0.0200051 0.002005308) (-0.008025029 -0.01900128 0.002001484) (-0.008151452 -0.02025575 0.002631) (-0.005054159 -0.02000694 0.002016505) (-0.004041713 -0.02000598 0.003030486) (0.00505936 -0.02000786 0.002020657) (0.004046544 -0.02000703 0.003034056) (0.008026179 -0.02000264 0.001499669) (0.00816618 -0.02123111 0.002017956) (0.007553101 -0.02000739 0.002004704) (0.008450545 -0.01995059 0.001986601) (0.00803218 -0.01899997 0.002000727) (0.008163954 -0.02025573 0.002621516) (-0.008041762 -0.01600015 0.001505634) (-0.008055357 -0.01700206 0.002012702) (-0.008489473 -0.01599974 0.002001417) (-0.008042251 -0.01500093 0.002005205) (-0.008034432 -0.01600242 0.002503735) (0.0080574 -0.0159995 0.001508739) (0.008070272 -0.01699159 0.002016924) (0.008506303 -0.01600014 0.00200148) (0.008066078 -0.01500221 0.002014351) (0.00806922 -0.01600651 0.002518666) (-0.009355234 -0.01196136 0.001978364) (-0.008060719 -0.01200601 0.001507311) (-0.008068675 -0.01300526 0.002010045) (-0.008563802 -0.01200745 0.002011404) (-0.008060024 -0.01100639 0.00201142) (-0.008061405 -0.01200488 0.002511012) (-0.006045761 -0.01000272 0.002012618) (0.006046929 -0.0100018 0.002014749) (0.008070443 -0.01200052 0.001509441) (0.008094879 -0.01300162 0.002016311) (0.008598301 -0.01200037 0.002006623) (0.008083668 -0.01100213 0.002020358) (0.008088947 -0.01200244 0.002520584) (0.009339615 -0.01197592 0.001872039) (-0.009501935 -0.008000357 0.001999489) (-0.007052769 -0.008002371 0.002011439) (-0.008057008 -0.009005638 0.002011262) (-0.008551182 -0.008003359 0.002007683) (-0.008062337 -0.007001572 0.002009725) (-0.008057822 -0.008003354 0.002515583) (-0.006042313 -0.006000807 0.002013159) (-0.006046956 -0.008001748 0.003022093) (0.007054244 -0.008002397 0.002012582) (0.006045241 -0.006001835 0.002013331) (0.006048887 -0.008001715 0.003021064) (0.008057442 -0.008002865 0.001507712) (0.008058972 -0.009002682 0.002014052) (0.008558399 -0.008003802 0.002011009) (0.008059885 -0.007003632 0.00201124) (0.008077788 -0.00800418 0.002517998) (0.009430972 -0.007995907 0.001984069) (-0.009814693 -0.003976023 0.001378082) (-0.009629307 -0.004017454 0.002032215) (-0.009810938 -0.00272829 0.001852289) (-0.007044591 -0.003999343 0.002012504) (-0.006037175 -0.001999885 0.002014992) (-0.006043604 -0.004000545 0.003022917) (0.007051657 -0.004002259 0.002012868) (0.006040288 -0.002001122 0.002013475) (0.006045038 -0.004001455 0.003020815) (0.008065759 -0.005003668 0.00201315) (0.008571538 -0.004003338 0.002013688) (0.008054494 -0.004003227 0.002515919) (0.009811159 -0.00369474 0.001340861) (0.009596173 -0.00400536 0.002030856) (-0.00989084 -1.597567e-07 0.001461002) (-0.009793059 -0.0009941053 0.001864145) (-0.009745954 -4.521213e-06 0.002186584) (-0.009787908 0.0009948892 0.001879228) (-0.007041946 4.310791e-07 0.002015565) (-0.006036966 0.002000457 0.002014739) (-0.006045962 -1.123429e-07 0.003024553) (0.007044948 -7.591502e-07 0.002013246) (0.006038861 0.001999789 0.002012948) (0.006045206 -7.138836e-07 0.00302083) (0.009888308 3.412337e-06 0.001470284) (0.009814226 -0.0009657138 0.001869548) (0.009753939 5.665508e-06 0.002127833) (0.009788924 0.0009966747 0.001889564) (-0.009796992 0.003982948 0.001375957) (-0.009812001 0.002724139 0.001858803) (-0.009636953 0.004021783 0.002040898) (-0.007044325 0.004001208 0.002012516) (-0.008566368 0.004001682 0.0020101) (-0.008059269 0.005002831 0.00201169) (-0.008050651 0.004002043 0.00251458) (-0.00604286 0.00600103 0.002014165) (-0.006043106 0.004000889 0.003023032) (0.007047417 0.003999886 0.002010413) (0.006045617 0.0060003 0.002013685) (0.006045641 0.004000058 0.003020775) (0.009789319 0.004007968 0.001390067) (0.009831942 0.002723784 0.001850714) (0.009661387 0.004020665 0.002045437) (-0.009508759 0.007999942 0.002000063) (-0.007054885 0.008001056 0.002013918) (-0.008063378 0.007002436 0.00201355) (-0.008553812 0.008001502 0.002011409) (-0.008061362 0.009000703 0.002013651) (-0.00805975 0.008002243 0.002521366) (-0.006048418 0.01000055 0.002014253) (-0.006048549 0.008001014 0.0030242) (0.007063569 0.008000208 0.002014681) (0.006054653 0.0100016 0.00201746) (0.006052275 0.008000835 0.003024879) (0.008078831 0.006999255 0.002011858) (0.008586035 0.007999503 0.002013999) (0.00808215 0.009000321 0.002018016) (0.008081555 0.007999441 0.002518005) (0.009563209 0.007999042 0.002011079) (-0.009368581 0.01196773 0.001964926) (-0.00806514 0.01199864 0.001507768) (-0.008071942 0.01099892 0.002015941) (-0.008578034 0.01199568 0.002025288) (-0.008077836 0.0129988 0.002010727) (-0.008075551 0.01199757 0.002520365) (0.008086846 0.01200317 0.001520586) (0.008084235 0.01100073 0.002022438) (0.008611055 0.01199821 0.002027085) (0.008104302 0.01300373 0.002023949) (0.008093639 0.0120015 0.00252707) (0.009367863 0.01196814 0.001976926) (-0.008045371 0.0160024 0.001503793) (-0.008047448 0.01500085 0.00200386) (-0.008502924 0.01600073 0.001996294) (-0.00805998 0.01700763 0.0020073) (-0.008048608 0.01600254 0.002506708) (0.008055997 0.01600371 0.001506619) (0.008065502 0.01500319 0.002011742) (0.008511248 0.0160001 0.002001682) (0.008061308 0.01700464 0.002010315) (0.008060422 0.01600074 0.002514508) (-0.008021334 0.02000241 0.001499794) (-0.008025169 0.01900135 0.002003584) (-0.00844308 0.01995316 0.001981271) (-0.007549637 0.02000641 0.002005857) (-0.0081563 0.02123779 0.002011191) (-0.008162604 0.02025703 0.002619697) (-0.005053705 0.02000549 0.002018255) (-0.004048931 0.02200746 0.00202343) (-0.004042095 0.02000537 0.003031027) (0.005062323 0.02000681 0.002020069) (0.004051831 0.02200845 0.00202169) (0.00404711 0.02000708 0.003031489) (0.00801896 0.02000385 0.001501646) (0.008032816 0.01900542 0.002006718) (0.007569734 0.02000641 0.002010106) (0.008386199 0.01995671 0.00198622) (0.008135796 0.02101561 0.002014237) (0.008151139 0.02003831 0.002509219) (-0.007868758 0.02396159 0.001498255) (-0.007946807 0.02295008 0.001981752) (-0.007634521 0.02423588 0.002009538) (-0.007792443 0.02369124 0.002357914) (-0.006565979 0.0240091 0.002016582) (-0.00608547 0.02501255 0.002024187) (-0.006078483 0.0240135 0.002531848) (0.006567515 0.02400786 0.002012064) (0.006087932 0.02501295 0.002022861) (0.00607932 0.02401017 0.002525029) (0.007855688 0.02373737 0.001486396) (0.007863278 0.02294981 0.001979875) (0.007606919 0.02401493 0.002001055) (-0.006052981 0.02801076 0.001509005) (-0.006075004 0.02701368 0.002022863) (-0.006668054 0.02826338 0.002136445) (-0.005570649 0.0280148 0.002022013) (-0.006019589 0.0290053 0.002004829) (-0.006041218 0.02801325 0.002519017) (-0.00304818 0.02801414 0.002030327) (-0.002033833 0.03001979 0.002035297) (-0.002031556 0.02801467 0.003052638) (0.00305256 0.02801799 0.002034362) (0.002038136 0.03002302 0.002043593) (0.002034032 0.02801889 0.003058423) (0.006088835 0.02801867 0.001517379) (0.006075942 0.02701259 0.002019158) (0.005569581 0.028014 0.002015314) (0.006662693 0.02824633 0.002019449) (0.006021469 0.02900497 0.002002935) (0.00603739 0.02800208 0.002508099) (-0.005854078 0.03175717 0.001485384) (-0.005918301 0.03100597 0.002005124) (-0.00558849 0.0319909 0.001995829) (-0.004067737 0.03202478 0.001520655) (-0.004564371 0.03202266 0.002022283) (-0.004071676 0.03302993 0.002020681) (-0.004059293 0.03202191 0.0025238) (0.004078443 0.03202402 0.001526217) (0.004570265 0.03202302 0.002022387) (0.004058142 0.03302431 0.002024356) (0.004070288 0.03202565 0.002531693) (0.005868017 0.03174203 0.00149057) (0.005916601 0.03100676 0.002003813) (0.005603443 0.03198003 0.002000567) (-0.004050383 0.03598879 0.00151219) (-0.004182647 0.03523084 0.00201118) (-0.003631275 0.03621286 0.002003928) (-0.003839213 0.03570505 0.002382567) (-0.0020583 0.03605781 0.001546808) (-0.002564873 0.03603726 0.002037494) (-0.001541433 0.03606478 0.002069044) (-0.002076212 0.03705632 0.002064496) (-0.002058007 0.03605227 0.002571551) (-0.0005202862 0.03607092 0.002079351) (0.0005136008 0.03606545 0.002077875) (-7.766874e-06 0.037078 0.002093399) (-5.933798e-06 0.03605974 0.002582627) (0.002071448 0.03606238 0.001556614) (0.001553979 0.0360672 0.002076576) (0.002576868 0.03605915 0.002058042) (0.002079511 0.03707836 0.002076847) (0.002057437 0.03606118 0.002584497) (0.003994927 0.03598785 0.001508244) (0.004139008 0.03521578 0.002019624) (0.003666251 0.03618811 0.002033896) (0.003825705 0.03572177 0.002353763) (-0.00179304 0.03856306 0.001720885) (-2.97267e-06 0.03959109 0.001308812) (-2.084069e-05 0.03906664 0.002038885) (0.001779111 0.0386058 0.001830076) (-0.002020976 -0.03622403 0.003656679) (-0.002340582 -0.03570459 0.003821789) (-0.001513638 -0.03600578 0.004042802) (-0.002076124 -0.03521122 0.004188632) (1.364958e-06 -0.03602438 0.003562538) (1.454564e-06 -0.03679628 0.003843628) (-0.0004851123 -0.0362117 0.004154395) (0.0004922092 -0.03621518 0.004163376) (1.184288e-06 -0.03502371 0.004082606) (1.10978e-06 -0.03581363 0.004415611) (0.00201334 -0.03618015 0.003597564) (0.001511119 -0.03599163 0.004033239) (0.002323455 -0.03569123 0.00375494) (0.002008904 -0.03519468 0.00414989) (-0.00399501 -0.0319922 0.00349247) (-0.003945703 -0.03298423 0.003971292) (-0.004444759 -0.03197473 0.003945357) (-0.0035001 -0.03199776 0.004007957) (-0.003997886 -0.03099021 0.003992781) (-0.003962273 -0.0319807 0.004450037) (-0.002032986 -0.03302172 0.004090258) (-0.002528745 -0.03201755 0.004067818) (-0.001523366 -0.03202513 0.004083922) (-0.002022608 -0.03201803 0.004570239) (0.002024075 -0.03301283 0.004065349) (0.001522291 -0.03201678 0.004074823) (0.002522028 -0.03200916 0.004057078) (0.00201656 -0.03201006 0.004553483) (0.003996543 -0.03199426 0.003484639) (0.003937495 -0.03296811 0.003959342) (0.003485399 -0.03198809 0.003987502) (0.004454556 -0.03195479 0.003933302) (0.003988866 -0.03099299 0.003988715) (0.003947707 -0.03197612 0.004444087) (-0.006113852 -0.02802494 0.003520031) (-0.005796749 -0.02874095 0.003856906) (-0.005624976 -0.028236 0.004128888) (-0.006101905 -0.02702436 0.004011146) (-0.005826009 -0.02771615 0.004319626) (-0.004050021 -0.02901241 0.004053248) (-0.004562187 -0.02801203 0.00404235) (-0.004051032 -0.02801372 0.004567116) (1.21323e-06 -0.0260149 0.004070762) (0.004061968 -0.02901601 0.004080857) (0.004565803 -0.02800801 0.004065799) (0.004054276 -0.02800977 0.004576447) (0.006095328 -0.02802333 0.0035147) (0.005781297 -0.02872612 0.003865922) (0.005624556 -0.02824301 0.004121364) (0.006086864 -0.02701936 0.004000006) (0.005816363 -0.02770857 0.004321915) (-0.006066867 -0.02401406 0.003532874) (-0.006040588 -0.02500356 0.00402588) (-0.006655607 -0.0242713 0.004132858) (-0.00556942 -0.02401352 0.004044653) (-0.006054978 -0.02300912 0.004027549) (-0.006016652 -0.02400302 0.004511527) (-0.001011753 -0.02401214 0.004061662) (-0.002021707 -0.02200927 0.004054318) (0.001013046 -0.0240111 0.004061218) (5.992379e-07 -0.02401258 0.005075868) (0.002023301 -0.02200834 0.004052884) (0.006074108 -0.02401441 0.003526544) (0.006032565 -0.02500568 0.004017144) (0.005562887 -0.02400907 0.004033548) (0.006658139 -0.02425784 0.004130023) (0.006060532 -0.02300896 0.004029469) (0.006024548 -0.02400241 0.004510365) (-0.007909038 -0.01999671 0.003496829) (-0.007607955 -0.02002442 0.004009572) (-0.007874861 -0.01896758 0.003976062) (-0.006061857 -0.02100687 0.004031338) (-0.006549357 -0.02000507 0.004025315) (-0.006047392 -0.02000598 0.00453294) (-0.003028998 -0.02000606 0.004046177) (-0.004037154 -0.01800436 0.004040229) (-0.002016823 -0.02000689 0.005059201) (0.003032628 -0.02000666 0.004046706) (0.002019859 -0.02000695 0.005057236) (0.004043065 -0.01800504 0.004043898) (0.006086091 -0.02101371 0.004049046) (0.006573174 -0.02000994 0.004042489) (0.006069961 -0.02000606 0.004561279) (0.007906939 -0.01999681 0.003495487) (0.007601312 -0.02001942 0.004024957) (0.007877565 -0.0189669 0.003971611) (-0.007995943 -0.01599858 0.003492785) (-0.008081573 -0.01700133 0.003996962) (-0.008350173 -0.01597398 0.003869839) (-0.007519648 -0.01600062 0.00400129) (-0.008141358 -0.01527046 0.004126866) (-0.007982853 -0.01600073 0.004481921) (-0.005043903 -0.01600445 0.004034817) (-0.004030575 -0.01400311 0.00403357) (-0.004034328 -0.01600385 0.00504999) (0.005051527 -0.01600312 0.004040891) (0.0040352 -0.01400236 0.004035832) (0.004038627 -0.0160028 0.005050025) (0.008192404 -0.01626739 0.003690076) (0.008037726 -0.01701746 0.004017938) (0.0075739 -0.01601038 0.004037823) (0.00835335 -0.01573624 0.003867483) (0.008168281 -0.01502605 0.00415907) (0.007926386 -0.01600432 0.004498421) (-0.008056902 -0.01200845 0.003515517) (-0.008018013 -0.01300113 0.004009952) (-0.008594634 -0.01199835 0.004007344) (-0.007551602 -0.01200418 0.004025253) (-0.008038808 -0.01100147 0.004014716) (-0.008165041 -0.0122745 0.004651129) (-0.005039672 -0.01200307 0.004033058) (-0.004031605 -0.01200302 0.005045509) (0.005044161 -0.01200222 0.004036018) (0.004034246 -0.01200191 0.005044493) (0.00808709 -0.0120043 0.003534538) (0.008046198 -0.01300381 0.004014533) (0.00756977 -0.01200489 0.004041697) (0.008574018 -0.01201276 0.004033677) (0.008041086 -0.01100323 0.004019851) (0.008172238 -0.01228513 0.004673168) (-0.00807811 -0.008002671 0.003535456) (-0.008093646 -0.009004959 0.004047043) (-0.008686867 -0.008283137 0.004163733) (-0.008051751 -0.007001393 0.004023972) (-0.008069983 -0.008000352 0.004538818) (0.008071649 -0.008003038 0.003521316) (0.008059088 -0.009001104 0.004019437) (0.008718608 -0.0080067 0.004144628) (0.0081051 -0.007005275 0.004040906) (0.008078603 -0.008003066 0.004520171) (-0.008053716 -0.004000041 0.003522389) (-0.008041798 -0.004999797 0.004021112) (-0.008544066 -0.003999561 0.004025207) (-0.008073055 -0.003000925 0.004041502) (-0.008059217 -0.003999844 0.004540863) (0.008048749 -0.004002641 0.003520949) (0.008050035 -0.005001677 0.004025946) (0.008518008 -0.004001443 0.004011079) (0.008057849 -0.003002209 0.004030063) (0.008044249 -0.00400145 0.004525881) (-0.008101232 -2.027632e-07 0.003537679) (-0.008110523 -0.001003351 0.004045428) (-0.008598787 -9.535285e-07 0.00403901) (-0.008096581 0.001002739 0.004042442) (-0.008081459 -4.382713e-07 0.00453835) (0.00808767 -2.146176e-06 0.003536184) (0.008093628 -0.001003635 0.004042451) (0.008579121 -2.343699e-06 0.004021647) (0.008075137 0.0009986029 0.004027943) (0.008057197 -2.489809e-06 0.004523792) (-0.008051469 0.004001454 0.003523145) (-0.008073894 0.003001331 0.004031924) (-0.008544244 0.004000154 0.004025559) (-0.008039617 0.005000808 0.004021815) (-0.008057473 0.004000009 0.004537982) (0.008063998 0.00399976 0.003516621) (0.008083213 0.002999978 0.004024919) (0.008565227 0.003999776 0.004020236) (0.008053755 0.004999313 0.004022734) (0.008079606 0.003999802 0.004531604) (-0.00807087 0.008001766 0.003540624) (-0.008051002 0.007001242 0.004025332) (-0.008695158 0.008264699 0.004171662) (-0.008090611 0.00900214 0.004055574) (-0.008064271 0.008000191 0.004537074) (0.008069101 0.008000108 0.003525879) (0.008046869 0.006999429 0.004021) (0.00850911 0.008002319 0.004002966) (0.00807925 0.009006284 0.004053924) (0.008056866 0.007996393 0.004529807) (-0.008063688 0.01199697 0.003531629) (-0.008049489 0.01100175 0.004022913) (-0.008594838 0.01199988 0.004012823) (-0.007565448 0.01200117 0.004029656) (-0.008022168 0.01300196 0.004005379) (-0.008181113 0.01226841 0.004652015) (-0.005043589 0.01200172 0.004033598) (-0.004032187 0.01400227 0.004033775) (-0.004033463 0.01200267 0.005044225) (0.005047644 0.01200365 0.004038307) (0.00403783 0.01400397 0.004037517) (0.004036643 0.01200333 0.005047749) (0.008080446 0.01200126 0.003539173) (0.008048689 0.01100187 0.004029769) (0.007576389 0.01200228 0.004047583) (0.008604772 0.01200236 0.004013376) (0.00803936 0.01300086 0.004028383) (0.008185313 0.0122653 0.004676702) (-0.008004367 0.01600024 0.003505091) (-0.008190463 0.01503168 0.004174351) (-0.00834314 0.0159671 0.003855326) (-0.007526646 0.016001 0.004018301) (-0.008089393 0.0169999 0.003998465) (-0.007983503 0.01598876 0.004483781) (-0.005043288 0.01600277 0.004035121) (-0.004037389 0.01800376 0.004039369) (-0.004035258 0.01600333 0.005049663) (0.005054505 0.01600705 0.004042433) (0.004044429 0.01800592 0.004041925) (0.004041217 0.01600493 0.005052209) (0.008006531 0.01600009 0.003499904) (0.008157957 0.01526493 0.004141034) (0.007527585 0.01600189 0.004009642) (0.008350402 0.01597547 0.003868918) (0.008086287 0.01699245 0.003999414) (0.007986213 0.01600218 0.004485797) (-0.007906804 0.01999561 0.003494341) (-0.007875989 0.01896644 0.003970671) (-0.00761073 0.02002668 0.0040198) (-0.006548232 0.02000185 0.004025054) (-0.00605898 0.02100425 0.00403359) (-0.006048992 0.02000211 0.004531032) (-0.003030373 0.02000599 0.004045105) (-0.002022838 0.02200841 0.004053654) (-0.002018801 0.0200065 0.00505768) (0.003033336 0.02000653 0.004042916) (0.002024223 0.02200869 0.004049622) (0.002021689 0.02000549 0.00505401) (0.00608177 0.01901143 0.004050492) (0.006564569 0.02001174 0.004039112) (0.006072173 0.02101243 0.004045833) (0.0060642 0.0200077 0.004551574) (0.007881783 0.01996878 0.003472227) (0.007869129 0.0189797 0.003881591) (0.007583832 0.01998954 0.003996004) (-0.006064288 0.02400709 0.003533395) (-0.006052362 0.0230048 0.004030769) (-0.006675046 0.02424046 0.004145274) (-0.00556208 0.02400699 0.004040555) (-0.006034189 0.02500054 0.004020731) (-0.006016273 0.02400002 0.004511288) (-0.001012975 0.02401087 0.004061425) (0.00101333 0.02401118 0.004059671) (4.662461e-08 0.02601386 0.004069495) (-6.475002e-07 0.02401106 0.005074223) (0.006058865 0.02400969 0.003531458) (0.00605485 0.02300679 0.004030656) (0.005556224 0.02401105 0.004036314) (0.006655895 0.02425557 0.004135149) (0.006032905 0.02500179 0.004019554) (0.006017676 0.02400011 0.004512734) (-0.006124829 0.0280182 0.003521562) (-0.006109883 0.02702332 0.004015521) (-0.00563544 0.0282376 0.004133046) (-0.005812393 0.02874918 0.003863313) (-0.005823159 0.02771033 0.00433798) (-0.004560425 0.02800851 0.004049529) (-0.004053887 0.02900978 0.004050651) (-0.004055279 0.02800946 0.004566558) (0.004561303 0.02801895 0.004053333) (0.004064665 0.02902679 0.004069925) (0.004054585 0.02802069 0.004573704) (0.006095619 0.02801764 0.003515638) (0.00608739 0.02701858 0.004000765) (0.005625282 0.02823565 0.004128313) (0.00578766 0.02873335 0.003835284) (0.005798147 0.02769757 0.004332835) (-0.003991269 0.03199376 0.003486971) (-0.003996151 0.03099039 0.003995351) (-0.004431211 0.03197631 0.003958966) (-0.003489973 0.03199561 0.003996752) (-0.003964511 0.03297552 0.003954018) (-0.003967887 0.03198317 0.004454367) (-0.002524452 0.0320152 0.004059156) (-0.001517324 0.03202579 0.004075324) (-0.002025753 0.03302377 0.004076298) (-0.002017893 0.03201737 0.004560908) (0.001529718 0.03203186 0.004091424) (0.002531537 0.03202631 0.004076088) (0.002035252 0.03303627 0.004097733) (0.002026369 0.03202689 0.004575588) (0.004015551 0.03200912 0.003504432) (0.004013938 0.03100106 0.004006285) (0.003504966 0.03199948 0.004005704) (0.004473845 0.03198106 0.003974669) (0.003972571 0.0329837 0.003975499) (0.003970711 0.03199167 0.004461621) (-0.002002663 0.03620554 0.003650395) (-0.002033968 0.03522578 0.004197949) (-0.002311135 0.03570798 0.003815526) (-0.001512848 0.03584722 0.004040996) (-3.907969e-06 0.03602671 0.003566516) (3.095825e-06 0.03502013 0.004083994) (-0.0004957731 0.03619826 0.004150192) (0.0005072115 0.03621864 0.004159455) (-3.984963e-07 0.03680271 0.00384687) (6.712079e-07 0.03581099 0.004417739) (0.002028113 0.03619168 0.003665208) (0.002030362 0.03522132 0.004216787) (0.001512985 0.03600431 0.004032117) (0.002390777 0.03572277 0.003837369) (-0.001991645 -0.03199554 0.005601111) (-0.001488997 -0.0317414 0.005851405) (-0.002016933 -0.03100938 0.005943747) (1.03802e-05 -0.03200348 0.005526195) (-2.076455e-06 -0.03269656 0.005756112) (-0.0004996672 -0.03201401 0.005917141) (0.0005049753 -0.03201679 0.005932468) (1.213646e-05 -0.03125199 0.006157783) (0.00199089 -0.03199096 0.005572568) (0.001482283 -0.03175332 0.00586604) (0.002008222 -0.03100487 0.005916188) (-0.004153467 -0.02824106 0.005626649) (-0.003847885 -0.02873713 0.005851227) (-0.004366755 -0.02774665 0.005817843) (-0.003525264 -0.02802632 0.006136564) (-0.004026095 -0.02703281 0.00612821) (-0.002023327 -0.028019 0.005584238) (-0.002005789 -0.02900513 0.006032279) (-0.002521261 -0.02801601 0.006058492) (-0.00151017 -0.02801255 0.006061884) (-0.00202163 -0.02701632 0.006076853) (-0.002138374 -0.02825109 0.006665484) (3.589616e-06 -0.02902864 0.006107006) (-0.0005020231 -0.02801877 0.006093602) (0.0005079398 -0.02801946 0.006107047) (1.458392e-06 -0.0270218 0.006120381) (2.32081e-06 -0.02801753 0.006580907) (0.00202894 -0.02802038 0.005584794) (0.002016595 -0.0290069 0.006042631) (0.001526332 -0.02802261 0.006097178) (0.002522229 -0.02801017 0.006047128) (0.002025919 -0.02702328 0.006085523) (0.002026807 -0.02825865 0.006683573) (0.004128904 -0.02824208 0.005619237) (0.003844846 -0.02873148 0.005809476) (0.003525759 -0.02802145 0.006111995) (0.004333804 -0.02769234 0.005798564) (0.004008576 -0.02702493 0.006097127) (-0.00589484 -0.02399618 0.005396862) (-0.005392551 -0.02399665 0.005895791) (-0.00584183 -0.02272785 0.005845418) (-0.004043378 -0.02401013 0.005571537) (-0.004018795 -0.02500906 0.006037394) (-0.004509912 -0.02400226 0.006015945) (-0.003543058 -0.02401583 0.006076591) (-0.004033886 -0.02300616 0.006065086) (-0.004153167 -0.0242584 0.006665375) (-0.00202408 -0.02501836 0.006092549) (-0.002530416 -0.02401901 0.006092476) (-0.002016974 -0.0240155 0.006583947) (0.00202362 -0.02501725 0.006084574) (0.002528956 -0.02401337 0.006079891) (0.002014016 -0.024008 0.006559299) (0.004034359 -0.02400918 0.005558379) (0.004019047 -0.0250074 0.00603722) (0.003533156 -0.02401125 0.00606429) (0.004505905 -0.02400182 0.006011017) (0.004028069 -0.02300687 0.00605734) (0.004147242 -0.02425915 0.006672853) (0.005882121 -0.02399784 0.00539013) (0.005385542 -0.02399198 0.005877945) (0.005829076 -0.02273846 0.005833261) (-0.006013796 -0.02000102 0.005515042) (-0.005997974 -0.0209997 0.005997888) (-0.006376091 -0.01997925 0.005886533) (-0.005507023 -0.01999975 0.006019847) (-0.006146499 -0.01926249 0.006137984) (-0.005872967 -0.01998616 0.006369989) (-0.004035673 -0.02100429 0.006071023) (-0.004531018 -0.02000249 0.006055139) (-0.004022888 -0.02000318 0.006556318) (0.004043523 -0.02100932 0.006069238) (0.004536263 -0.02000707 0.006050096) (0.004032984 -0.02000663 0.006560434) (0.006016802 -0.02000215 0.005512692) (0.005994223 -0.02099808 0.005999528) (0.005512428 -0.02000292 0.006009925) (0.006369146 -0.01996835 0.00587383) (0.006151018 -0.01903357 0.006149726) (0.005886328 -0.01996954 0.006365787) (-0.006046722 -0.01600997 0.005542415) (-0.006019898 -0.01700245 0.006024439) (-0.006632368 -0.01627295 0.00614713) (-0.005539023 -0.01600707 0.006047058) (-0.006015526 -0.01500387 0.006017175) (-0.006153689 -0.01626772 0.006637416) (3.099307e-07 -0.01400409 0.006055304) (0.006053589 -0.01600157 0.005544456) (0.00601049 -0.01699958 0.006012754) (0.005540485 -0.01600071 0.006041883) (0.006653107 -0.01602731 0.00614033) (0.006052272 -0.01500434 0.006040221) (0.006125012 -0.01602942 0.006632701) (-0.007858752 -0.0119963 0.005364466) (-0.00742085 -0.01201624 0.005932296) (-0.006048277 -0.01300372 0.006048092) (-0.006579829 -0.0120038 0.006074136) (-0.006076461 -0.01100487 0.006084833) (-0.006062166 -0.01200259 0.006580743) (-0.001006739 -0.01200286 0.006052827) (-0.002013989 -0.01000187 0.006053009) (0.001007444 -0.01200287 0.006053631) (4.145006e-07 -0.01000213 0.006049295) (2.911295e-07 -0.01200388 0.007058955) (0.002014176 -0.01000146 0.006052874) (0.006039766 -0.01300337 0.0060415) (0.006569446 -0.01200894 0.006087355) (0.006067299 -0.0110041 0.006081088) (0.006051463 -0.01200296 0.006563677) (0.007878956 -0.01199746 0.00537372) (0.007425951 -0.01201464 0.005929429) (-0.008040748 -0.008014752 0.005514533) (-0.0078612 -0.008966872 0.005836787) (-0.007608907 -0.00799819 0.006107181) (-0.007863158 -0.006999875 0.005842542) (-0.006048801 -0.009002337 0.006048849) (-0.006559611 -0.008001257 0.006047167) (-0.006063789 -0.007001729 0.006060894) (-0.006056381 -0.008001356 0.006550591) (-0.003022088 -0.008001404 0.006050459) (-0.001006116 -0.008001651 0.006046468) (-0.002013719 -0.006001311 0.006044239) (-0.002012327 -0.008001562 0.007059417) (0.001007269 -0.008001244 0.006047391) (8.492896e-07 -0.008001903 0.00705719) (0.003022274 -0.008001308 0.006049013) (0.002015005 -0.006000843 0.006045143) (0.002014727 -0.008000774 0.00706462) (0.006040279 -0.009001783 0.006039012) (0.006535023 -0.008001073 0.006025303) (0.006046574 -0.00700162 0.006040492) (0.006033736 -0.008001631 0.006534161) (0.007984414 -0.007987061 0.005493619) (0.007816772 -0.008717708 0.00583849) (0.007583256 -0.00798726 0.006071345) (0.007808283 -0.006996385 0.005812434) (-0.008128308 -0.004000628 0.005612739) (-0.007896078 -0.005001913 0.005882843) (-0.00770351 -0.004000324 0.006177786) (-0.007935571 -0.003002119 0.005927812) (-0.006078757 -0.00500254 0.006079671) (-0.00659244 -0.004004657 0.006094627) (-0.006075961 -0.003004382 0.006074146) (-0.006089585 -0.004003386 0.006594251) (-0.003023497 -0.004001004 0.006047856) (-0.00201539 -0.002000691 0.006040129) (-0.002014429 -0.004001666 0.007048831) (0.003023945 -0.004000884 0.006046328) (0.002015267 -0.002000311 0.006039945) (0.002015525 -0.004000456 0.007050087) (0.006067201 -0.005001919 0.00606103) (0.00659113 -0.004001565 0.006071013) (0.006081574 -0.003001717 0.006073052) (0.006088924 -0.004002489 0.006588127) (0.008090687 -0.003999168 0.005587012) (0.007855902 -0.005004445 0.005863439) (0.007682904 -0.003997409 0.006158095) (0.007906451 -0.003003478 0.005910226) (-0.008211791 -3.50198e-06 0.005674205) (-0.007935534 -0.00100167 0.006018187) (-0.007514547 -9.476408e-07 0.006008737) (-0.007934133 0.001002149 0.006016364) (-0.00782973 -1.583634e-06 0.006347837) (-0.003023504 -1.422006e-07 0.006047507) (-0.002015737 0.002000351 0.006040809) (-0.002016367 -3.693133e-07 0.007046699) (0.003024557 1.053958e-07 0.006047929) (0.002016344 0.002000408 0.006042661) (0.002014878 1.23508e-07 0.007046954) (0.008192989 -4.312562e-06 0.005646053) (0.007916051 -0.001000986 0.006009681) (0.007497826 5.043792e-07 0.005991597) (0.007975051 0.0009856397 0.005989131) (0.007823192 3.049407e-05 0.006322823) (-0.008123675 0.004000181 0.005607522) (-0.007938248 0.003003153 0.005932012) (-0.007673189 0.004001357 0.006207017) (-0.007889397 0.004999203 0.005907256) (-0.006073662 0.003002147 0.006082686) (-0.006595685 0.004003388 0.006084418) (-0.006081298 0.005002422 0.006079731) (-0.006097143 0.004003251 0.006603438) (-0.003024943 0.004001041 0.006049898) (-0.002014874 0.006001252 0.006045395) (-0.002015877 0.004000841 0.007049605) (0.003026628 0.004000948 0.006052637) (0.002016779 0.006001099 0.006049515) (0.002016943 0.004000506 0.007055743) (0.006603418 0.004001527 0.006088707) (0.006089613 0.005001623 0.006087281) (0.006095966 0.004001515 0.006608749) (0.008141858 0.004000597 0.005622032) (0.007937803 0.003015059 0.005943734) (0.007736233 0.004007525 0.006158999) (0.007909946 0.005000087 0.005914705) (-0.008034061 0.008013204 0.005510923) (-0.00785866 0.006999036 0.005856721) (-0.007617656 0.007997961 0.006109728) (-0.007860592 0.008963296 0.005862135) (-0.006063188 0.007001625 0.006062819) (-0.006552807 0.008001238 0.006054115) (-0.006049111 0.009002806 0.006047376) (-0.006048628 0.008001294 0.006557175) (-0.003022951 0.008001714 0.006050728) (-0.001006669 0.008001663 0.006047049) (-0.002013754 0.01000172 0.006051205) (-0.002012916 0.008001752 0.007059186) (0.001008273 0.008001621 0.006049464) (6.969806e-07 0.010002 0.006050044) (1.149187e-07 0.008002327 0.007058311) (0.003026347 0.008001848 0.006057109) (0.002016407 0.01000233 0.006056018) (0.002016334 0.008001905 0.007067319) (0.006072799 0.007002215 0.006070241) (0.006560292 0.008002634 0.006057397) (0.006052253 0.0090034 0.006052834) (0.006058795 0.008002527 0.006562007) (0.008086939 0.008000436 0.00549258) (0.007883586 0.007003786 0.005879979) (0.007626579 0.007999811 0.006124526) (0.007835085 0.008961311 0.005849612) (-0.007866131 0.0120005 0.005364968) (-0.007419817 0.01201681 0.005932094) (-0.006082033 0.01100842 0.006078436) (-0.006582818 0.01200196 0.006079415) (-0.00605406 0.01300328 0.006044266) (-0.006072884 0.01200428 0.006573997) (-0.001006359 0.01200202 0.006052553) (0.001007981 0.01200247 0.006054319) (5.851745e-07 0.01400236 0.006056264) (1.976947e-07 0.01200225 0.007059647) (0.006061826 0.01100659 0.006064938) (0.006570607 0.01200304 0.006061914) (0.006056752 0.01300569 0.006057665) (0.006071521 0.01200447 0.006565337) (0.007878965 0.01199838 0.005377409) (0.007440416 0.01201598 0.005934389) (-0.006049635 0.01600514 0.005548176) (-0.006021674 0.01500236 0.006020132) (-0.006622048 0.01626564 0.00616368) (-0.005545973 0.01600562 0.006051436) (-0.006019979 0.01700261 0.006024041) (-0.006161182 0.01627797 0.0066348) (0.006060631 0.01600919 0.005562788) (0.00605397 0.01500942 0.006080493) (0.005552594 0.0160075 0.006063934) (0.006663539 0.01603583 0.006169968) (0.00602312 0.0170041 0.006026412) (0.006162193 0.01603878 0.006663096) (-0.006011711 0.02000003 0.005509153) (-0.006144216 0.01926925 0.006129162) (-0.006371242 0.01998186 0.005887108) (-0.005508546 0.02000193 0.006013643) (-0.005998044 0.02100061 0.005998641) (-0.005882508 0.01998119 0.006377696) (-0.004535288 0.02000465 0.006055326) (-0.004041228 0.02100791 0.00608314) (-0.004025834 0.02000342 0.00656186) (0.00453615 0.02000395 0.006045371) (0.004039416 0.02100738 0.006055713) (0.004028872 0.02000432 0.0065435) (0.006013672 0.02000222 0.005511911) (0.006159527 0.01902891 0.006140562) (0.005511874 0.01999899 0.006010009) (0.006359287 0.01997914 0.005870295) (0.005981572 0.0209992 0.005992958) (0.005871448 0.01997588 0.006361354) (-0.005892656 0.02399676 0.005393148) (-0.00584109 0.02272539 0.005832151) (-0.005389204 0.02399369 0.005886951) (-0.004038818 0.02401204 0.005566383) (-0.00403759 0.02300979 0.00606293) (-0.004512736 0.02400261 0.006021874) (-0.003533797 0.0240127 0.006076486) (-0.004023251 0.02500609 0.006051759) (-0.004145533 0.02425195 0.00668227) (-0.002531267 0.02401699 0.006099386) (-0.002025937 0.02501676 0.006099392) (-0.002024997 0.02401149 0.006591028) (0.002538945 0.02401674 0.006082049) (0.002026454 0.02501703 0.006084106) (0.002020159 0.02401189 0.006566693) (0.004042239 0.02401274 0.005558661) (0.004036432 0.02300912 0.006048884) (0.003541374 0.02401326 0.006067104) (0.004510323 0.02400284 0.006019329) (0.004016082 0.02500383 0.006036991) (0.004164293 0.02426432 0.006663609) (0.005895643 0.02399613 0.005398471) (0.005824327 0.02272489 0.005838379) (0.005400112 0.02399589 0.005895232) (-0.00413859 0.02824048 0.005627504) (-0.004017886 0.02702364 0.006116567) (-0.004333838 0.02772956 0.005806834) (-0.003527956 0.02802288 0.006117582) (-0.003868523 0.02872904 0.005815894) (-0.002027356 0.02801414 0.005579534) (-0.002021581 0.02701935 0.006082928) (-0.002523806 0.02800453 0.006056479) (-0.00151193 0.02800939 0.006058656) (-0.002010745 0.02900288 0.006029352) (-0.002136186 0.0282499 0.006664502) (-1.188882e-06 0.02701653 0.006115878) (-0.0005055843 0.02801973 0.006094442) (0.000503071 0.02801825 0.006099459) (-1.59575e-06 0.02902383 0.006117755) (-1.170945e-06 0.02801677 0.006563297) (0.002026492 0.02801768 0.005587281) (0.002022745 0.02701678 0.006070871) (0.001511355 0.02801088 0.006064655) (0.002520604 0.02800926 0.006055669) (0.002010644 0.02900788 0.006038598) (0.002129004 0.0282603 0.006681721) (0.004145712 0.0282528 0.005652801) (0.004020301 0.02702122 0.006105986) (0.003522746 0.0280316 0.00612969) (0.004378308 0.02774159 0.005808458) (0.003872096 0.02875011 0.00584072) (-0.001997146 0.03199105 0.005600733) (-0.002010143 0.03100843 0.005931135) (-0.001481942 0.03175524 0.005841431) (-2.641924e-06 0.03200603 0.005525243) (3.819832e-06 0.0312626 0.00614164) (-0.000500014 0.03201672 0.005914969) (0.0005041456 0.03202088 0.005932852) (5.25753e-06 0.03267088 0.005774451) (0.002000706 0.03200123 0.005623903) (0.002015545 0.031017 0.005958803) (0.001487871 0.03175677 0.005877935) (-0.002023966 -0.02404839 0.007655221) (-0.001488019 -0.02395702 0.007881022) (-0.002000575 -0.02298773 0.007909348) (-2.688106e-07 -0.02400255 0.007515452) (-3.288933e-07 -0.02476176 0.007865075) (-0.0005014297 -0.0239526 0.007982684) (0.0005008168 -0.02395472 0.007985786) (-7.717217e-07 -0.02318319 0.008112559) (0.002007567 -0.02423117 0.007626016) (0.001497631 -0.02396791 0.007863028) (0.002344506 -0.0237228 0.007789916) (0.001986142 -0.02295668 0.007940695) (-0.004016097 -0.02003046 0.007613362) (-0.003494292 -0.01999614 0.007905393) (-0.003973728 -0.01896603 0.007870173) (-0.002005942 -0.02000272 0.007545469) (-0.002008867 -0.0212281 0.008164022) (-0.002628255 -0.02025579 0.00814612) (-0.001498005 -0.02000294 0.008023721) (-0.002004515 -0.01900151 0.008033444) (-0.001986559 -0.01995774 0.008441927) (-2.038486e-06 -0.02000771 0.007581744) (-1.56133e-06 -0.02100155 0.008021268) (-0.0005031035 -0.02000794 0.008065456) (0.0005008145 -0.02000449 0.008069803) (-1.057514e-06 -0.01901905 0.008094489) (9.115919e-07 -0.02004374 0.008617087) (0.002006379 -0.02000587 0.007543989) (0.002012684 -0.02123127 0.008148961) (0.001500766 -0.02000153 0.008022464) (0.002627319 -0.02025762 0.008141185) (0.002003005 -0.0190021 0.008028966) (0.001986454 -0.01995442 0.008450444) (0.00401672 -0.0199965 0.007606183) (0.003490522 -0.01997335 0.007916146) (0.00389129 -0.01898215 0.007890263) (-0.004031049 -0.01599543 0.007557435) (-0.003992014 -0.01700361 0.008090737) (-0.004509822 -0.01601636 0.007930867) (-0.003505008 -0.01600077 0.008008495) (-0.00415375 -0.01527387 0.00814851) (-0.003862121 -0.01597641 0.008349916) (-0.002014352 -0.01700172 0.00806694) (-0.002509913 -0.01600417 0.008060976) (-0.001508395 -0.01600432 0.008064603) (-0.002011065 -0.01500392 0.008062784) (-0.002003111 -0.01600091 0.008515171) (-1.621647e-06 -0.01700869 0.008073278) (-0.0005042948 -0.01600837 0.008084435) (0.000501734 -0.016005 0.008084442) (3.042318e-07 -0.01500803 0.008096011) (-2.573767e-06 -0.01600657 0.008603891) (0.002007211 -0.01700208 0.008060217) (0.001506156 -0.01600222 0.008060735) (0.002511257 -0.01599968 0.00805526) (0.002008676 -0.01500299 0.008061145) (0.002002161 -0.01600143 0.0085111) (0.004024955 -0.01600111 0.007552129) (0.003995978 -0.01699106 0.008084528) (0.003505418 -0.01599856 0.008010708) (0.004510809 -0.01601355 0.007929268) (0.00414811 -0.01527579 0.008151564) (0.003870743 -0.01597485 0.008342657) (-0.00592806 -0.01201608 0.007416587) (-0.005369875 -0.0119994 0.007864503) (-0.004025604 -0.01200488 0.007571685) (-0.00400672 -0.01300131 0.008040974) (-0.004636046 -0.0122712 0.008182437) (-0.003518765 -0.01199976 0.008081059) (-0.004018402 -0.01100289 0.008052373) (-0.004011556 -0.01200242 0.008598135) (-0.002015234 -0.01300316 0.008090314) (-0.00251505 -0.01200191 0.008086838) (-0.001511966 -0.01200327 0.008082318) (-0.002015799 -0.01100176 0.008083072) (-0.002012956 -0.01200095 0.008602496) (4.136212e-07 -0.01300601 0.008053642) (-0.0005040307 -0.01200447 0.008058107) (0.0005046511 -0.01200526 0.008062219) (-3.036552e-08 -0.01200399 0.008542322) (0.00201816 -0.01300614 0.008091666) (0.001514859 -0.01200686 0.008094043) (0.002519895 -0.01200315 0.008098619) (0.002015463 -0.01100128 0.008095746) (0.002026618 -0.01199902 0.008618757) (0.004029465 -0.01200173 0.007565371) (0.004009045 -0.01300164 0.008028106) (0.003523336 -0.01200014 0.008085133) (0.004663261 -0.01204077 0.008188922) (0.004024721 -0.01099876 0.008053315) (0.003997039 -0.01199862 0.008589791) (0.005894433 -0.01201359 0.007380642) (0.005360759 -0.01196455 0.007859774) (-0.006102634 -0.007999232 0.007622252) (-0.005861106 -0.008957653 0.007850258) (-0.005487438 -0.007999089 0.008080367) (-0.005891353 -0.007003735 0.007878765) (-0.004044575 -0.009002174 0.00807399) (-0.004516641 -0.007997553 0.008048415) (-0.003519787 -0.008000998 0.008053278) (-0.004021166 -0.007000194 0.008047396) (-0.003999462 -0.00799991 0.008499035) (-0.002009733 -0.008001526 0.008578996) (-0.002014028 -0.009001254 0.008077082) (-0.002514741 -0.008001448 0.00807029) (0.00201773 -0.008000976 0.008591222) (0.002014917 -0.009000075 0.008086809) (0.002523771 -0.008001167 0.008087488) (0.00402352 -0.009000764 0.008062766) (0.00352414 -0.008002018 0.008070111) (0.0045287 -0.008004111 0.008035661) (0.00402131 -0.007002275 0.008048666) (0.00400375 -0.008000996 0.008507237) (0.006101883 -0.00799793 0.00760596) (0.005845102 -0.008959985 0.007809985) (0.005484786 -0.008000687 0.008080042) (0.005859939 -0.007003606 0.007866571) (-0.006194525 -0.004004846 0.00768955) (-0.005919115 -0.005000718 0.007919841) (-0.00562977 -0.004002406 0.008158619) (-0.005946161 -0.003016113 0.007950977) (-0.004033017 -0.005000914 0.008078032) (-0.00454757 -0.004002398 0.008098651) (-0.003530829 -0.00400135 0.008086486) (-0.00404448 -0.003001351 0.008098319) (-0.004038831 -0.004001577 0.008600985) (0.004036064 -0.005001998 0.008070377) (0.003532285 -0.004001526 0.008081444) (0.00454133 -0.004002649 0.008088079) (0.004040464 -0.003001724 0.008094418) (0.004035382 -0.004002328 0.008592511) (0.006179765 -0.00400413 0.007700146) (0.005905073 -0.005000526 0.007893026) (0.005609506 -0.004000763 0.008120324) (0.005932397 -0.003003561 0.007934764) (-0.005993235 9.054376e-08 0.007496798) (-0.005989925 -0.0009843697 0.007977013) (-0.006289224 -1.688679e-06 0.007779549) (-0.005686097 4.97088e-07 0.008220224) (-0.00599283 0.0009846844 0.007982129) (-0.004027974 -0.001002431 0.008066123) (-0.004523961 7.080007e-08 0.008039599) (-0.003528555 -1.660054e-06 0.008072991) (-0.004028595 0.00100071 0.008068459) (-0.004012191 -4.459913e-07 0.008529537) (0.00402478 -0.001001488 0.008064582) (0.003526373 1.730224e-07 0.008070816) (0.004524893 -4.525102e-07 0.008049287) (0.004041761 0.001001593 0.008087307) (0.004010317 6.708115e-09 0.008531665) (0.005997672 8.975414e-07 0.007502009) (0.006014437 -0.0009993461 0.007925007) (0.005649681 -6.72189e-06 0.008200578) (0.006340905 3.005951e-05 0.007842224) (0.005994162 0.0009859865 0.007986503) (-0.006223446 0.004004711 0.007698436) (-0.005952075 0.003013997 0.00794603) (-0.005661182 0.004000843 0.008140893) (-0.005922567 0.004999096 0.007911197) (-0.004047983 0.003001187 0.008103387) (-0.004550759 0.004001438 0.008104728) (-0.003537889 0.004001694 0.008089605) (-0.004037222 0.005001426 0.008080455) (-0.004044688 0.004001341 0.008601725) (0.004046294 0.003001612 0.008095627) (0.003535222 0.004001354 0.00808652) (0.004552454 0.004001041 0.008086755) (0.004031438 0.005000514 0.008077765) (0.004045436 0.004000894 0.008584968) (0.006207392 0.004001179 0.007728787) (0.005959549 0.003013803 0.007954749) (0.005637967 0.003999642 0.008175431) (0.005928707 0.005000972 0.007931581) (-0.00611823 0.00799628 0.007624331) (-0.005886378 0.007002271 0.007878844) (-0.005490639 0.007998469 0.00807886) (-0.005837782 0.008959615 0.007837761) (-0.004018456 0.00700096 0.0080484) (-0.004518544 0.008004377 0.008039665) (-0.00352206 0.008001197 0.008060498) (-0.004033768 0.008999713 0.008072148) (-0.004001713 0.008000417 0.008505822) (-0.002014619 0.007002669 0.008076965) (-0.002009582 0.008002415 0.008573876) (-0.00251434 0.008001997 0.00806787) (-0.002010504 0.009001817 0.008069769) (0.00201589 0.008002933 0.008587272) (0.002522108 0.008002739 0.008084624) (0.002017356 0.009003294 0.008086105) (0.004026555 0.00700163 0.008060535) (0.003524223 0.008002614 0.008071847) (0.004538213 0.007999867 0.008061355) (0.004027391 0.009004658 0.008081601) (0.004006719 0.008000899 0.008515396) (0.006124618 0.008001031 0.007630968) (0.005895513 0.007005726 0.007875203) (0.005501221 0.007999699 0.008096392) (0.005857268 0.008961554 0.007867242) (-0.005925139 0.01201542 0.007418265) (-0.005370635 0.01199732 0.007872184) (-0.004018651 0.01200188 0.00756437) (-0.004009646 0.01100061 0.008036807) (-0.004626638 0.01226902 0.008200801) (-0.003521838 0.01200221 0.008058153) (-0.0040128 0.01300171 0.00802544) (-0.004008505 0.01200033 0.008591238) (-0.002012039 0.01100168 0.008073742) (-0.002517449 0.01200139 0.008074903) (-0.001509294 0.01200289 0.008076039) (-0.002013451 0.0130026 0.008087423) (-0.002013525 0.01200248 0.008580095) (-0.0005027948 0.01200211 0.00805961) (0.0005031828 0.01200312 0.008061192) (-6.844442e-07 0.0130014 0.008055236) (6.803047e-07 0.01200203 0.008542675) (0.002015807 0.01100545 0.008086579) (0.001509988 0.01200608 0.008081822) (0.002519216 0.01200542 0.008084495) (0.002012981 0.01300796 0.008092894) (0.002009906 0.01201077 0.008583646) (0.004025956 0.01200003 0.00755989) (0.004022313 0.01099976 0.008044125) (0.003522792 0.0120007 0.008070577) (0.004679797 0.0122637 0.008168898) (0.00400945 0.01299971 0.008033048) (0.004009663 0.01199973 0.008604302) (0.005933625 0.01201595 0.007439133) (0.005361605 0.01199881 0.007872358) (-0.004035747 0.01600272 0.007551417) (-0.0041598 0.0152732 0.008144404) (-0.004509255 0.01601623 0.007931621) (-0.003502432 0.01599938 0.008010052) (-0.003994748 0.01699979 0.008092557) (-0.003877648 0.0159783 0.008341823) (-0.00200915 0.01500377 0.00806265) (-0.002511306 0.01600904 0.008059842) (-0.00150804 0.01600675 0.008063772) (-0.002012439 0.01701379 0.008062455) (-0.002001648 0.01600104 0.008514365) (-1.087819e-06 0.01500187 0.008096996) (-0.0005039285 0.01600362 0.008088065) (0.0005032511 0.01600437 0.008092223) (-8.685381e-07 0.01700291 0.008079079) (-1.004e-06 0.01600805 0.008604914) (0.002010499 0.01500265 0.008066563) (0.001506171 0.01600228 0.00806074) (0.002506734 0.01600133 0.008054612) (0.002010268 0.01700193 0.008051011) (0.002000526 0.01600276 0.00851228) (0.004037634 0.01600427 0.007552109) (0.004160479 0.01527264 0.008152438) (0.003503304 0.01599946 0.008008792) (0.004506425 0.01601367 0.007934073) (0.003992623 0.01700083 0.008087565) (0.003882856 0.01597722 0.008348434) (-0.004026192 0.02001358 0.00760116) (-0.003967286 0.01896373 0.007870355) (-0.003495663 0.01999626 0.00790546) (-0.002003937 0.02000494 0.00754562) (-0.002002844 0.01900119 0.008031221) (-0.002622896 0.02024762 0.008149144) (-0.001498014 0.02000197 0.008027319) (-0.002016359 0.02124399 0.008148333) (-0.001985264 0.01995287 0.00845963) (1.779792e-06 0.02000499 0.007582437) (7.477081e-07 0.01900021 0.008112807) (-0.0005020378 0.02000932 0.008070475) (0.0005049682 0.02000245 0.008076285) (1.829153e-06 0.0210021 0.008022302) (1.12938e-06 0.02006143 0.008615298) (0.002008015 0.02000291 0.007540843) (0.002001865 0.01900196 0.008027266) (0.001502128 0.02000213 0.008019722) (0.002626436 0.02025952 0.008143433) (0.002006526 0.02123195 0.008149233) (0.001980194 0.01995399 0.008443772) (0.004021607 0.0200336 0.007608409) (0.003971717 0.01897044 0.007869827) (0.003493451 0.01999566 0.007906097) (-0.002024157 0.02404156 0.007642202) (-0.001999183 0.02298676 0.007910519) (-0.001485583 0.0239534 0.007880035) (-3.135058e-07 0.02400361 0.007513052) (-2.318e-06 0.0231812 0.008111414) (-0.0005016824 0.02395564 0.007982935) (0.0004995274 0.02395411 0.007984361) (-7.776028e-07 0.02475662 0.007876614) (0.002000249 0.02423812 0.007630355) (0.001987174 0.02295135 0.007937823) (0.001497709 0.02396974 0.007866599) (0.002349404 0.02370148 0.007790652) (-0.001975036 -0.01196737 0.009380519) (-1.37369e-06 -0.01200076 0.009516905) (0.00197782 -0.01196342 0.0093705) (1.58116e-06 -0.008732934 0.009815064) (-0.003833224 -1.015663e-06 0.009301076) (0.003863726 6.53293e-07 0.009333384) (1.383424e-07 0.008701349 0.009811692) (-0.001983768 0.01196533 0.009375597) (2.420507e-06 0.0120017 0.009516748) (0.001978265 0.01196557 0.009372489) (-0.002020166 -0.01300997 -0.009126231) (7.47106e-07 -0.0129985 -0.00899111) (-0.00252042 0.004001785 -0.009095888) (-0.0009990063 -0.01300239 -0.008058829) (-0.002006766 -0.009000163 0.009046991) (-0.002503085 -0.008001005 0.009040016) (1.497591e-06 -0.00900839 0.00911733) (-0.002515656 -0.004001087 0.009083032) (-0.0025221 -1.07076e-06 0.009105556) (0.00251776 4.650305e-07 0.009096867) (0.002524504 0.00400094 0.009090553) (-2.158746e-06 0.009010009 0.009122388) (0.002516646 0.008003553 0.009045654) (0.002009271 0.009002903 0.009050046) (-0.0009988207 -0.01299655 -0.008988545) (-0.002524467 0.002000948 -0.009120022) (-0.002507205 0.006001759 -0.009060849) (-0.00100255 -0.009004818 0.009129301) (-0.002508849 -0.006001449 0.009056652) (-0.002522099 -0.002000025 0.009099914) (0.002514955 0.002000777 0.009101487) (0.002515243 0.006001153 0.009066241) (0.001014468 0.009003613 0.009128041) (0.002020623 -0.01303573 -0.009130914) (0.002501042 -0.01200265 -0.009137584) (0.002510699 -0.008001078 -0.009035937) (0.004024369 -0.005002391 -0.009041777) (0.004386167 -0.004002632 -0.008874859) (0.004475561 -1.396999e-05 -0.008954794) (0.002499894 0.0080003 -0.009023072) (0.002535383 0.01202267 -0.009102775) (0.002015804 0.01300329 -0.009129714) (0.001006481 -0.01300192 -0.008061487) (0.002515573 -0.01000298 -0.008066624) (0.00302304 -0.005001266 -0.00806142) (0.004530322 -0.001999971 -0.008079075) (0.002011947 0.006002918 -0.008595374) (0.002514723 0.00600134 -0.008068437) (0.002515864 0.01000307 -0.008058616) (0.001003104 0.01300298 -0.008061341) (0.00200783 -0.00900045 0.009050185) (0.002520358 -0.008001971 0.009053579) (0.002521802 -0.00400049 0.009080513) (-0.002016604 0.006002316 0.008585263) (-0.002517457 0.006002348 0.008066936) (-0.002517037 0.004001042 0.009074724) (-0.002503902 0.00800085 0.009025416) (-0.002002498 0.00900123 0.009038406) (0.001001469 -0.013 -0.008982385) (0.002650146 -0.01026968 -0.009160526) (0.002512132 -0.006000482 -0.00903859) (0.003010478 -0.005000738 -0.009013963) (0.004488304 -0.00200047 -0.008896197) (0.002505954 0.006000646 -0.009062658) (0.002623845 0.01026449 -0.009153617) (0.0009962209 0.01300104 -0.00898667) (0.001004729 -0.009001055 0.009130406) (0.00251835 -0.006001217 0.009064097) (0.002516084 -0.002000623 0.009096949) (-0.002518345 0.002000945 0.009099008) (-0.002508998 0.006002143 0.009037878) (-0.001012388 0.009006262 0.009133784) (-0.004354779 -0.007957719 -0.008833632) (-0.004385207 -0.004002427 -0.00889466) (-0.004476901 -1.211054e-05 -0.008971241) (-0.00405364 0.001013636 -0.009104267) (0.00439953 0.00399976 -0.008911319) (0.004012984 0.005001809 -0.009050988) (-0.003975964 0.006985569 -0.008972881) (-0.004342074 0.007722407 -0.008827374) (-0.002472888 0.01596898 -0.008853088) (-0.001972013 0.01695134 -0.008860969) (0.0004991954 0.0160149 -0.009097163) (-1.355968e-06 0.0169966 -0.009019698) (-0.00302196 -0.01300247 -0.008066088) (-0.004523909 -0.01000149 -0.008037975) (-0.004041216 -0.0100028 -0.00756469) (-0.00453575 -0.006001129 -0.008066505) (-0.004537763 -0.001993221 -0.008106562) (-0.003028756 0.001000048 -0.00809602) (0.004555678 0.002001658 -0.008110185) (0.003023015 0.005000816 -0.008068011) (-0.003019377 0.007004727 -0.00807136) (-0.004529247 0.01000142 -0.008050052) (-0.004030838 0.01000243 -0.007572967) (-0.003025948 0.01300709 -0.008058071) (-0.002526078 0.01400951 -0.008078003) (0.0005010053 0.01400228 -0.008098054) (-0.00101231 0.01700334 -0.008063551) (-0.002979838 -0.01298116 -0.00896654) (-0.004383768 -0.006000562 -0.008828672) (-0.004489269 -0.002001788 -0.008902307) (-0.003023224 0.0009994089 -0.009095262) (0.004424124 0.002013527 -0.008945851) (0.00301411 0.005000196 -0.009038869) (-0.003160356 0.007269082 -0.009165311) (-0.002979063 0.01298115 -0.008965987) (-0.002494281 0.01399691 -0.008995654) (0.0004959329 0.01424019 -0.009185112) (-0.0009982659 0.01698456 -0.008986675) (-0.0009741258 -0.02173763 -0.008317377) (0.0009812488 -0.02172323 -0.008323809) (-0.002976541 -0.01796907 -0.008378941) (-0.0008565838 -0.01872008 -0.008828571) (-0.001483007 -0.01776474 -0.008866816) (-0.000492588 -0.01793432 -0.008943165) (-0.0009961359 -0.01698196 -0.008986334) (-0.001132834 -0.01827041 -0.008710796) (0.0008608492 -0.01870033 -0.008830334) (0.0004939478 -0.01793831 -0.008946105) (0.001486084 -0.01775807 -0.008865871) (0.0009984357 -0.01698145 -0.008982083) (0.001148057 -0.01829932 -0.008694068) (0.002993927 -0.01799492 -0.008401707) (-0.002874482 -0.01497295 -0.008841035) (-0.003354554 -0.0137185 -0.008820797) (-0.002491766 -0.01399547 -0.008996689) (-0.003147588 -0.01427365 -0.008665893) (-0.0009761743 -0.01373088 -0.009328979) (-0.001006585 -0.0150454 -0.00914263) (-0.001500518 -0.01401625 -0.009127588) (-0.0004971078 -0.01425079 -0.009182526) (-0.001002704 -0.01401136 -0.008597921) (0.0009759709 -0.01372851 -0.00934103) (0.001012431 -0.01504667 -0.009135876) (0.0005006919 -0.0142468 -0.009179582) (0.001488282 -0.01401968 -0.009145296) (0.001002892 -0.01400292 -0.008598695) (0.002878398 -0.01497664 -0.008862219) (0.002495748 -0.01399855 -0.00900716) (0.003335289 -0.01372565 -0.008834519) (0.002978608 -0.01298066 -0.008967127) (0.003153734 -0.01426433 -0.008677968) (-0.0048617 -0.00999567 -0.008354702) (0.002833817 -0.009737226 -0.009322709) (0.003022406 -0.01101841 -0.009072252) (0.003483157 -0.009996797 -0.008980672) (0.003131174 -0.008989456 -0.009130136) (0.003013322 -0.01000001 -0.008547007) (0.004863605 -0.009995387 -0.008347072) (-0.005005167 -0.005985461 -0.008509315) (0.002976375 -0.005984886 -0.009433867) (0.003168699 -0.007275464 -0.009182853) (0.003610246 -0.00598696 -0.009127663) (0.003019043 -0.006000245 -0.008546504) (0.004366411 -0.006000453 -0.008861635) (0.005004622 -0.005984343 -0.008491091) (-0.004863785 -0.0009669013 -0.00880538) (-0.004999282 -0.002002534 -0.008599639) (0.004817571 -0.0009663384 -0.008807702) (0.00500115 -0.00200236 -0.008602489) (-0.004849657 0.0007284406 -0.008827578) (-0.004410706 0.002015006 -0.008916234) (-0.005032154 0.002016578 -0.008571241) (-0.002983583 0.002000323 -0.009513154) (-0.003676725 0.002001947 -0.009248734) (-0.003024904 0.003001227 -0.009080171) (-0.003032439 0.002000473 -0.008602044) (0.004855038 0.000738731 -0.008817412) (0.005035981 0.002015146 -0.008553215) (-0.004340689 0.005995881 -0.008821307) (-0.004999319 0.005998461 -0.008472587) (-0.002969161 0.005981429 -0.009434523) (-0.003008121 0.005003219 -0.009038965) (-0.003606248 0.005986121 -0.009130795) (-0.003011402 0.006002693 -0.008550114) (0.002961909 0.00598437 -0.009449118) (0.003612432 0.00598625 -0.009139105) (0.00315361 0.00726883 -0.009167925) (0.003012173 0.006000469 -0.008550281) (0.004369058 0.00599927 -0.008858048) (0.004999996 0.005998284 -0.00849763) (-0.004871769 0.009996218 -0.008341088) (0.00282755 0.009716666 -0.009318956) (0.003110642 0.008984537 -0.009138048) (0.00347789 0.009995645 -0.008972929) (0.003015098 0.01102062 -0.00905353) (0.003009122 0.01000177 -0.008538499) (0.004862793 0.009996956 -0.008347225) (-0.003365425 0.01372919 -0.008828635) (-0.002876021 0.01497374 -0.008850867) (-0.003162888 0.01428264 -0.008678625) (0.0009867412 0.01373872 -0.009330583) (0.001506673 0.01401868 -0.009138872) (0.0009942125 0.01504522 -0.009135493) (0.001002801 0.01399972 -0.00859819) (0.002975857 0.01298086 -0.008958069) (0.002491391 0.01399544 -0.008993881) (0.003345684 0.01372593 -0.008824172) (0.002875299 0.01497569 -0.008848376) (0.003152561 0.01427269 -0.008671544) (-0.002980742 0.01797162 -0.008391519) (-0.001491494 0.01775626 -0.008855357) (-0.0004875441 0.01793701 -0.008941315) (-0.0008586675 0.01871352 -0.008809902) (-0.001135435 0.01829361 -0.008692421) (0.0009957413 0.01698387 -0.008982923) (0.0004945145 0.01793577 -0.008945927) (0.001484846 0.01776268 -0.008865351) (0.0008568432 0.018702 -0.008821187) (0.00116099 0.01829226 -0.0086945) (0.002973613 0.01796721 -0.008378307) (-0.000980833 0.02172845 -0.008320872) (0.0009781967 0.02174476 -0.008339526) (-0.0009826247 -0.02872855 -0.006838142) (-0.0009915233 -0.02998487 -0.006474541) (0.0009969023 -0.02875439 -0.006841473) (0.0009937766 -0.02999697 -0.006488345) (-0.002861466 -0.02673789 -0.006841366) (-0.003349938 -0.0257471 -0.0068277) (-0.00249196 -0.02599793 -0.007073915) (-0.003004105 -0.02501315 -0.007085815) (-0.003147656 -0.02626469 -0.006638935) (-0.0009913895 -0.02597553 -0.007475783) (-0.0009916537 -0.02720101 -0.007129714) (-0.001623344 -0.02628627 -0.007204584) (-0.0005001534 -0.0260072 -0.007021528) (-0.001002203 -0.02500715 -0.007037917) (-0.001001585 -0.02600674 -0.006552858) (0.0009992763 -0.02598037 -0.007491276) (0.0009986353 -0.0272393 -0.00713247) (0.0005003923 -0.02600689 -0.007026424) (0.00150066 -0.02600278 -0.006997215) (0.0009994365 -0.02501259 -0.007047895) (0.001001931 -0.02600848 -0.006544448) (0.002873556 -0.02673672 -0.006862045) (0.002513108 -0.02602285 -0.007096456) (0.003379774 -0.02574908 -0.006878592) (0.003022682 -0.02503043 -0.007116446) (0.003155382 -0.02624077 -0.006693407) (-0.004501085 -0.02201275 -0.0069202) (-0.00488891 -0.02099248 -0.006898924) (-0.00499816 -0.0219913 -0.006586941) (-0.003122048 -0.02225453 -0.007625955) (-0.002994909 -0.02299385 -0.006993391) (-0.00349947 -0.02199633 -0.007001507) (-0.002505763 -0.02200065 -0.007017393) (-0.003016938 -0.02100266 -0.007031631) (-0.003015837 -0.02200246 -0.006537883) (-0.0009968499 -0.02199557 -0.007554804) (-0.001000482 -0.02300591 -0.007054944) (-0.001503899 -0.02200137 -0.007045931) (-0.000499269 -0.02200513 -0.007078737) (-0.001004404 -0.02100099 -0.007061345) (0.001002361 -0.0220071 -0.007550214) (0.001001924 -0.02300725 -0.007049771) (0.0005023497 -0.02200758 -0.00707441) (0.001503551 -0.02200558 -0.007046899) (0.001003833 -0.0210066 -0.007060037) (0.003121857 -0.02225113 -0.007622078) (0.003003355 -0.02300381 -0.007014652) (0.002507267 -0.0220032 -0.007028339) (0.003500439 -0.02200047 -0.007003114) (0.003011146 -0.02100039 -0.007036158) (0.003019376 -0.02200705 -0.006551531) (0.004496682 -0.0220023 -0.007006189) (0.004909473 -0.02099655 -0.006911825) (0.005011849 -0.02198777 -0.006606469) (-0.004989574 -0.01799528 -0.007393054) (-0.005095319 -0.01900503 -0.007087198) (-0.00550176 -0.01799675 -0.006993979) (-0.004512926 -0.0180022 -0.007022484) (-0.005003893 -0.0170002 -0.007004177) (-0.005036648 -0.01800577 -0.006541443) (-0.003024814 -0.01800076 -0.007574309) (-0.00302262 -0.01900277 -0.007065234) (-0.003519562 -0.01800296 -0.007054427) (-0.002521925 -0.01800283 -0.007072994) (-0.0030234 -0.0170041 -0.007077598) (0.003032966 -0.01800189 -0.007575275) (0.003021898 -0.01900049 -0.007066542) (0.002523249 -0.01800415 -0.007076344) (0.003526878 -0.01800386 -0.007060509) (0.003030002 -0.0170065 -0.007075035) (0.00491021 -0.01801544 -0.007410336) (0.005093623 -0.01897297 -0.007091013) (0.004523142 -0.01800394 -0.007040897) (0.005521495 -0.01801128 -0.006931877) (0.005181148 -0.01728482 -0.007183095) (0.005040266 -0.01801108 -0.006563016) (-0.006358154 -0.01399878 -0.006855454) (-0.006874019 -0.01399587 -0.006386822) (-0.005147733 -0.01427512 -0.007666125) (-0.005016047 -0.0150011 -0.007047413) (-0.005500217 -0.01399883 -0.007008032) (-0.004527377 -0.01400352 -0.007054973) (-0.005022126 -0.01300192 -0.00703644) (-0.00502685 -0.01400272 -0.006548563) (0.005161483 -0.01403457 -0.007689705) (0.005038493 -0.01500379 -0.007058946) (0.004543567 -0.01400664 -0.007082364) (0.005515532 -0.01400327 -0.007022569) (0.005045792 -0.01301506 -0.00708636) (0.005048821 -0.01400558 -0.006572932) (0.006381828 -0.01397081 -0.006875842) (0.006870972 -0.01396777 -0.006384012) (-0.006836567 -0.01072719 -0.006834955) (-0.006577468 -0.009971169 -0.007076774) (-0.006855616 -0.008998611 -0.006862082) (-0.007069123 -0.009971325 -0.00657682) (-0.005044133 -0.01000218 -0.007573177) (-0.005042692 -0.01100179 -0.007066662) (-0.005544369 -0.0100006 -0.00707285) (-0.004545334 -0.01000264 -0.007065267) (-0.005066833 -0.009001971 -0.007070658) (0.005025718 -0.01000436 -0.007563807) (0.005039963 -0.0110046 -0.007066525) (0.004535688 -0.01000382 -0.007066563) (0.005523769 -0.01000459 -0.007058532) (0.005033969 -0.009003912 -0.007060944) (0.006816855 -0.01073809 -0.006837335) (0.006571791 -0.009970816 -0.007060144) (0.006853522 -0.008993624 -0.0068439) (0.007066762 -0.009971176 -0.006567692) (-0.006919027 -0.006999638 -0.006921584) (-0.006734428 -0.006011545 -0.007179489) (-0.006957298 -0.005017651 -0.006974141) (-0.007180191 -0.006003481 -0.006668049) (-0.005039428 -0.006000941 -0.007556455) (-0.005057977 -0.007001924 -0.007072534) (-0.005555949 -0.006001548 -0.007060474) (-0.005048382 -0.005001393 -0.007066454) (0.005034683 -0.00600564 -0.007558123) (0.005043657 -0.007007771 -0.00707251) (0.005553149 -0.006003326 -0.007073341) (0.005048499 -0.005003477 -0.007072744) (0.00693159 -0.007000925 -0.00692741) (0.006701102 -0.006009648 -0.007224996) (0.007023255 -0.005031356 -0.006990356) (0.007212292 -0.006011055 -0.006702197) (-0.006810224 -0.001999505 -0.00727498) (-0.007066599 -0.002988755 -0.00698189) (-0.00735428 -0.00195456 -0.00682015) (-0.006496786 -0.001999657 -0.006996382) (-0.007050228 -0.0009984398 -0.007053662) (-0.007004861 -0.002000697 -0.006496248) (-0.005047239 -0.002000971 -0.007581741) (-0.0050478 -0.003001003 -0.007077969) (-0.005559442 -0.002002669 -0.007087551) (-0.005051461 -0.00100017 -0.007082659) (0.00503794 -0.002002474 -0.007571773) (0.005045338 -0.003002819 -0.0070763) (0.005542613 -0.002004578 -0.007074869) (0.005025724 -0.001002496 -0.007051222) (0.006787958 -0.001999139 -0.007308641) (0.007028947 -0.002971826 -0.007036828) (0.006475977 -0.002002154 -0.006977131) (0.007305915 -0.001997306 -0.006762257) (0.007030443 -0.001001878 -0.007019951) (0.00698032 -0.002002433 -0.006469864) (-0.00679951 0.001967319 -0.007296524) (-0.007045991 0.0009969175 -0.007055267) (-0.007326105 0.001972538 -0.006818499) (-0.00651422 0.002001039 -0.007011653) (-0.00701564 0.002999645 -0.007013298) (-0.00701549 0.002002883 -0.006506693) (-0.005063825 0.002003348 -0.007589154) (-0.005059889 0.001004587 -0.00708594) (-0.005576314 0.002005245 -0.007092694) (-0.005062134 0.003003387 -0.007081823) (0.005043632 0.001998934 -0.007570334) (0.005029723 0.0009992526 -0.007051228) (0.005544286 0.001998275 -0.007064639) (0.005054532 0.003001123 -0.007073986) (0.006826252 0.00196756 -0.007324613) (0.007017714 0.0009979174 -0.007024373) (0.006494247 0.001998872 -0.006990966) (0.007328536 0.001967752 -0.00680451) (0.007005202 0.003000783 -0.00700627) (0.006990363 0.00200224 -0.006482627) (-0.006964667 0.005005195 -0.006977511) (-0.006681834 0.005999842 -0.007189729) (-0.006930289 0.007000218 -0.006933856) (-0.007201092 0.006003654 -0.006698562) (-0.005030172 0.006003351 -0.007540501) (-0.005048051 0.005002686 -0.007063562) (-0.00554891 0.00600269 -0.007060856) (-0.00503491 0.00700577 -0.007055023) (0.005037424 0.006001473 -0.00754949) (0.005050287 0.005001838 -0.007071511) (0.005557847 0.006001429 -0.007067799) (0.005041734 0.007002577 -0.00705419) (0.00696894 0.005006445 -0.007000257) (0.006701438 0.006002681 -0.007196259) (0.006942673 0.007001674 -0.006947896) (0.007233835 0.005988796 -0.00671267) (-0.006890819 0.008996378 -0.006859194) (-0.00655067 0.009972292 -0.007056466) (-0.006813039 0.01073653 -0.006820527) (-0.007071789 0.009971238 -0.006570296) (-0.005047686 0.009998692 -0.007571691) (-0.005045538 0.009006491 -0.007084188) (-0.005534285 0.009997272 -0.007064271) (-0.004536932 0.01000253 -0.007071937) (-0.005032262 0.01100143 -0.007066754) (0.005031783 0.01000067 -0.007560134) (0.005038372 0.009004195 -0.007068185) (0.004536492 0.01000351 -0.007068513) (0.005534159 0.01000384 -0.00707935) (0.005041433 0.01100505 -0.007074291) (0.006880404 0.008997914 -0.006885778) (0.006589011 0.009972804 -0.007091518) (0.006847136 0.01074033 -0.006828814) (0.007087833 0.009972781 -0.006588545) (-0.006366762 0.0139663 -0.006896689) (-0.006858881 0.01400233 -0.00638125) (-0.005162444 0.01427227 -0.00766671) (-0.005025969 0.01300456 -0.00704338) (-0.005513209 0.01400184 -0.00701092) (-0.004535223 0.01400979 -0.007067714) (-0.005044712 0.01500617 -0.007055654) (-0.005042111 0.01400775 -0.006563061) (0.005159496 0.01403577 -0.007679872) (0.00505084 0.01300185 -0.007091488) (0.004538266 0.01400351 -0.007074713) (0.005506822 0.01400076 -0.00701728) (0.005021264 0.01500299 -0.007051698) (0.005041484 0.01400362 -0.006570255) (0.006357662 0.01396706 -0.00686568) (0.00686058 0.01397214 -0.006340309) (-0.004994648 0.01800369 -0.007385283) (-0.005009071 0.01700192 -0.007011676) (-0.005502378 0.01799708 -0.006997156) (-0.004517108 0.01800388 -0.007025103) (-0.005094892 0.0190042 -0.007089722) (-0.005052423 0.01800905 -0.006539909) (-0.003033924 0.01800514 -0.007576405) (-0.003030341 0.01700597 -0.007083637) (-0.003526912 0.01800629 -0.007067439) (-0.002524886 0.01800535 -0.007082146) (-0.003024459 0.01900705 -0.007071654) (0.003014242 0.01800568 -0.007554655) (0.003023943 0.01700455 -0.007068025) (0.002518788 0.01800614 -0.007070825) (0.003525045 0.01800572 -0.007054787) (0.003021486 0.0190066 -0.007066369) (0.004908208 0.01798404 -0.007411368) (0.005171471 0.01727569 -0.007185447) (0.004527441 0.01800185 -0.007036229) (0.005506125 0.01801355 -0.006921077) (0.00501829 0.01899147 -0.007101495) (0.005044394 0.01800413 -0.006547726) (-0.004901943 0.02099377 -0.006897251) (-0.004497244 0.0220004 -0.006999709) (-0.005003936 0.02198632 -0.006591948) (-0.003134286 0.02224961 -0.007626713) (-0.003014253 0.02100212 -0.007036502) (-0.003506507 0.02200087 -0.007008656) (-0.002511986 0.02199931 -0.007029186) (-0.003009241 0.02300076 -0.007016216) (-0.003025512 0.02200282 -0.006550098) (-0.00100216 0.02200031 -0.007542336) (-0.001007487 0.02100367 -0.007056628) (-0.001508188 0.02200308 -0.007047417) (-0.0005027132 0.02200488 -0.007062602) (-0.001003614 0.02300374 -0.007044553) (0.001001506 0.0220073 -0.007551199) (0.001004025 0.02100432 -0.007060653) (0.0005018907 0.0220078 -0.007071236) (0.001503818 0.02200205 -0.00704433) (0.001002502 0.0230041 -0.007046814) (0.003126091 0.022251 -0.007612812) (0.003016302 0.0210024 -0.007030423) (0.0025033 0.02199812 -0.007016085) (0.003498229 0.02199678 -0.006994106) (0.002995445 0.02299538 -0.006987333) (0.003014929 0.02200265 -0.006534337) (0.004885794 0.02098067 -0.006888712) (0.004502328 0.02201104 -0.006916859) (0.004994845 0.02199075 -0.006577312) (-0.003011822 0.025024 -0.007123938) (-0.003382523 0.02574131 -0.00688441) (-0.002504067 0.02600082 -0.007121846) (-0.002879594 0.02674879 -0.006873711) (-0.003171334 0.02629047 -0.006685087) (-0.000994145 0.02597677 -0.007485466) (-0.001003311 0.02500772 -0.007039572) (-0.001648296 0.02630353 -0.007206807) (-0.0005012142 0.02600472 -0.007030336) (-0.0009915493 0.02721784 -0.007128547) (-0.001008983 0.02601522 -0.006555715) (0.000991537 0.02597883 -0.00749011) (0.0009993759 0.0250024 -0.007041469) (0.0005004162 0.026006 -0.00703301) (0.00163277 0.02628184 -0.007192367) (0.0009941904 0.02722518 -0.007125838) (0.001001329 0.02601063 -0.006556865) (0.003004191 0.02501429 -0.007069983) (0.002488614 0.02599971 -0.007071518) (0.003356621 0.02574541 -0.006833316) (0.002876536 0.0267359 -0.006832191) (0.003127605 0.02626176 -0.006678003) (-0.0009805057 0.02874611 -0.006845214) (-0.0009900439 0.02998363 -0.006469948) (0.0009795668 0.02873806 -0.006842428) (0.0009952775 0.02998322 -0.006488802) (-0.002359337 -0.03373325 -0.004789427) (-0.002878853 -0.03276314 -0.00488164) (-0.002992963 -0.03376931 -0.00438874) (-0.0008924319 -0.03371902 -0.005223016) (-0.0009546812 -0.03471635 -0.004774065) (-0.001510285 -0.03400347 -0.004902502) (-0.000485647 -0.0341431 -0.005058074) (-0.001152298 -0.03328757 -0.005208283) (-0.001006658 -0.03399351 -0.004516833) (0.0008575193 -0.03369252 -0.005265664) (0.0009911476 -0.03473295 -0.004807285) (0.0004974001 -0.03415193 -0.005072413) (0.001512935 -0.03402487 -0.004941337) (0.001143081 -0.03331589 -0.005232908) (0.001009583 -0.03401898 -0.004542866) (0.002317457 -0.03371863 -0.004819194) (0.002972114 -0.03278359 -0.004864806) (0.002975711 -0.03379895 -0.00438816) (-0.004393354 -0.02977094 -0.004910237) (-0.004872464 -0.02876068 -0.004881507) (-0.004904373 -0.02999774 -0.00440967) (-0.003025177 -0.03022903 -0.005660036) (-0.003148549 -0.03126135 -0.005191598) (-0.003693582 -0.03027705 -0.005181769) (-0.002539895 -0.03002481 -0.005085947) (-0.003032056 -0.02901794 -0.005068031) (-0.003042584 -0.03002183 -0.004583182) (-0.00100519 -0.03001329 -0.005564535) (-0.001010921 -0.03102097 -0.005075654) (-0.001520895 -0.03002112 -0.005090556) (-0.0005039409 -0.03002291 -0.005089571) (0.00100731 -0.03001647 -0.005571827) (0.001010417 -0.03102568 -0.005096656) (0.0005069582 -0.03002546 -0.005096813) (0.001514568 -0.03001815 -0.005084231) (0.003132606 -0.0302392 -0.005647428) (0.0031328 -0.03127475 -0.005203436) (0.002521125 -0.03001644 -0.005060484) (0.003672752 -0.03030571 -0.005223776) (0.003035701 -0.02901921 -0.005071446) (0.003036555 -0.03002277 -0.004568462) (0.004388063 -0.02999609 -0.004903674) (0.004889413 -0.02877329 -0.00489106) (0.004905331 -0.0299975 -0.004401222) (-0.005028145 -0.02602441 -0.005526716) (-0.005119267 -0.02701068 -0.005124482) (-0.005530874 -0.0260267 -0.00502628) (-0.004539725 -0.02601555 -0.005076088) (-0.005017827 -0.02501505 -0.005021697) (-0.005049352 -0.02602249 -0.004566271) (-0.003035499 -0.02600799 -0.005575989) (-0.003039165 -0.02701332 -0.005079251) (-0.003542013 -0.02601012 -0.005079393) (0.003039558 -0.02601364 -0.005590664) (0.003041085 -0.02701706 -0.005084152) (0.003545414 -0.02601423 -0.005087171) (0.005024826 -0.02602248 -0.005610117) (0.005132761 -0.02724512 -0.005129022) (0.004537638 -0.02600686 -0.005074816) (0.005609345 -0.02602247 -0.005013495) (0.005036026 -0.02501161 -0.005037602) (0.00505991 -0.02600699 -0.004546987) (-0.006585974 -0.02201887 -0.005000596) (-0.006883945 -0.02098005 -0.004972845) (-0.006925917 -0.02201201 -0.004508081) (-0.005022125 -0.02200119 -0.005531477) (-0.005033901 -0.02300153 -0.00503354) (-0.005525786 -0.02200063 -0.005019987) (-0.005045546 -0.02100544 -0.005044898) (0.005033142 -0.02200395 -0.005544179) (0.005043033 -0.02300746 -0.005045372) (0.005530058 -0.02200345 -0.005031541) (0.005044447 -0.02100665 -0.005061023) (0.006585113 -0.02201824 -0.005010491) (0.006893667 -0.02098026 -0.004976698) (0.006940977 -0.02200989 -0.004510836) (-0.006992517 -0.01799772 -0.005500339) (-0.007119325 -0.01901621 -0.005105351) (-0.007400125 -0.01800995 -0.004990657) (-0.006560132 -0.01800418 -0.0050419) (-0.006995625 -0.01699818 -0.004999108) (-0.007022756 -0.01799887 -0.004514186) (0.006991345 -0.01799898 -0.005498188) (0.007107687 -0.01901819 -0.005103545) (0.006563718 -0.01799767 -0.005026841) (0.007395478 -0.01799823 -0.004998227) (0.00700968 -0.01699911 -0.005003613) (0.007033411 -0.0180001 -0.004515462) (-0.00700742 -0.01400214 -0.005503928) (-0.007038446 -0.01500458 -0.005021326) (-0.007680358 -0.01404152 -0.005171721) (-0.006550136 -0.01400527 -0.005031938) (-0.007067584 -0.01300762 -0.005041336) (-0.007062635 -0.01400409 -0.004536479) (0.007007403 -0.01400052 -0.005507057) (0.007039558 -0.01500268 -0.005032187) (0.006554561 -0.01400268 -0.005042918) (0.007672455 -0.0140423 -0.00516218) (0.007071417 -0.01299477 -0.005061869) (0.007059456 -0.0140025 -0.004537571) (-0.008377003 -0.009965386 -0.004874585) (-0.007062316 -0.0100051 -0.005534887) (-0.007077331 -0.0110042 -0.005055507) (-0.007575071 -0.01000646 -0.005035325) (-0.007065458 -0.009003614 -0.005035071) (-0.007081246 -0.01000583 -0.004546207) (0.007063107 -0.01000894 -0.005546531) (0.00706006 -0.01100491 -0.005054793) (0.007564721 -0.01000555 -0.005033282) (0.007055653 -0.009003792 -0.005033565) (0.007069316 -0.01000447 -0.004540769) (0.008322772 -0.009997928 -0.004859511) (-0.008456861 -0.005987017 -0.004980266) (-0.008819652 -0.005962851 -0.004351811) (-0.007051287 -0.00600151 -0.005533647) (-0.007060326 -0.007000032 -0.00503205) (-0.00752921 -0.005999775 -0.005016064) (-0.007052031 -0.00500107 -0.005035104) (0.007062457 -0.006002562 -0.005546907) (0.007048237 -0.00700305 -0.005030306) (0.007541125 -0.006001619 -0.005024373) (0.007062291 -0.005001822 -0.005042805) (0.00849159 -0.005996908 -0.004995809) (0.008809042 -0.005995153 -0.004366689) (-0.008550884 -0.002016901 -0.00502311) (-0.008834357 -0.000749163 -0.004836046) (-0.008895969 -0.002013376 -0.004403728) (-0.007074902 -0.002002595 -0.005569017) (-0.007067214 -0.003001663 -0.00505189) (-0.007571016 -0.002001556 -0.005056473) (-0.00706892 -0.001001438 -0.005056153) (0.007076391 -0.002005156 -0.005537228) (0.007072778 -0.00300257 -0.005041435) (0.007581029 -0.002003174 -0.005037619) (0.007057955 -0.001001413 -0.005030542) (0.008562526 -0.002017653 -0.005026139) (0.008839987 -0.0007710456 -0.004848296) (0.008914589 -0.002016759 -0.004408107) (-0.008834229 0.0007359775 -0.004846915) (-0.008556611 0.002016727 -0.005027806) (-0.008895293 0.002013234 -0.004405206) (-0.007085148 0.002004014 -0.005553468) (-0.007074333 0.001001992 -0.005050794) (-0.007577118 0.002002385 -0.005044329) (-0.007073756 0.003003118 -0.005045149) (0.007071533 0.002002534 -0.005548381) (0.007056373 0.001000708 -0.005033486) (0.007570787 0.002001193 -0.005042018) (0.007070349 0.003002314 -0.00504687) (0.00854552 0.001999799 -0.005020875) (0.008901623 0.002001676 -0.004386934) (-0.008470308 0.005986239 -0.004980834) (-0.008815344 0.005962451 -0.004354941) (-0.007043274 0.006001611 -0.00554059) (-0.007050002 0.005001731 -0.005039202) (-0.007527614 0.006000303 -0.005016858) (-0.007054993 0.007001048 -0.00503597) (0.007074115 0.006000274 -0.005558703) (0.007066858 0.005001179 -0.005042877) (0.00755112 0.005999489 -0.00502714) (0.007081738 0.007000809 -0.005044445) (0.008466222 0.005987258 -0.00497261) (0.008805113 0.005963992 -0.00437078) (-0.008366279 0.009997751 -0.00486408) (-0.007053534 0.01000462 -0.005528681) (-0.007055751 0.009003711 -0.005033386) (-0.007563994 0.01000429 -0.005033275) (-0.007060303 0.01100533 -0.00504195) (-0.007066937 0.01000481 -0.004538413) (0.007066414 0.01000441 -0.005552304) (0.007073941 0.009003742 -0.005046707) (0.007567335 0.01000416 -0.005037617) (0.007076554 0.01100309 -0.005048814) (0.007077312 0.01000239 -0.004543635) (0.008351144 0.009964445 -0.004872468) (-0.007013106 0.01400185 -0.00550896) (-0.00707517 0.01300517 -0.005058507) (-0.007669458 0.01403708 -0.005144319) (-0.006561366 0.01400486 -0.005041145) (-0.007048487 0.01500396 -0.005031465) (-0.007073556 0.01400582 -0.004540308) (0.00722106 0.01427517 -0.005663915) (0.007048453 0.0130037 -0.005027897) (0.006569618 0.01400687 -0.005045566) (0.00766344 0.01427335 -0.005159293) (0.007049731 0.01500494 -0.005040778) (0.007075451 0.01400608 -0.004541753) (-0.006999489 0.0180023 -0.005504307) (-0.007009256 0.01699978 -0.00500654) (-0.007395525 0.017999 -0.004994105) (-0.00655549 0.01800436 -0.005052533) (-0.00710525 0.01901957 -0.005116085) (-0.007035637 0.01800182 -0.004518997) (0.00693669 0.01801817 -0.00551951) (0.007211522 0.01726995 -0.00514568) (0.00656327 0.01800617 -0.005047435) (0.007423064 0.01798605 -0.004908721) (0.007125061 0.01900502 -0.005013639) (0.007050786 0.01800243 -0.004528943) (-0.006891959 0.02097937 -0.004981451) (-0.006587527 0.02201783 -0.005006629) (-0.006929717 0.02201191 -0.004512958) (-0.005028913 0.02200162 -0.005536453) (-0.00504402 0.02100546 -0.005044799) (-0.005527786 0.02200297 -0.00502165) (-0.005037038 0.02300239 -0.005039773) (0.005028524 0.02200485 -0.005535635) (0.005056207 0.02100907 -0.005047686) (0.005534333 0.02200397 -0.005024786) (0.005036422 0.02300404 -0.005039892) (0.006884507 0.02097089 -0.00498619) (0.006583876 0.02202249 -0.005006371) (0.006933782 0.02200972 -0.004503454) (-0.005080159 0.0259925 -0.005583056) (-0.005022155 0.02499921 -0.005020191) (-0.005575514 0.025993 -0.005074958) (-0.00451717 0.02600178 -0.005021122) (-0.005141875 0.02723394 -0.005119935) (-0.005020233 0.02600067 -0.00451032) (-0.00304863 0.02601799 -0.005597846) (-0.003544983 0.02601397 -0.005077763) (-0.003046999 0.02701496 -0.005091792) (0.003024192 0.02601203 -0.005573279) (0.003537157 0.02601482 -0.005070905) (0.003029588 0.0270145 -0.005073749) (0.005002374 0.02601256 -0.005600745) (0.005030421 0.02499819 -0.005029296) (0.004539581 0.0260121 -0.005061037) (0.005586299 0.02599963 -0.005083504) (0.005123262 0.02724191 -0.005142127) (0.005024838 0.02600542 -0.004526743) (-0.004862397 0.02899145 -0.004860624) (-0.004454615 0.02997267 -0.004889001) (-0.004894106 0.02998148 -0.004470639) (-0.003134971 0.03024494 -0.005635832) (-0.003046187 0.02901945 -0.005072594) (-0.003682851 0.03029964 -0.005204342) (-0.002530548 0.03001954 -0.005068132) (-0.003154115 0.03128808 -0.00522057) (-0.003043077 0.030024 -0.0045709) (-0.001002927 0.03001812 -0.005566041) (-0.0015146 0.03002312 -0.005094335) (-0.0005033685 0.03002006 -0.00509262) (-0.001010211 0.03102165 -0.005084615) (0.001006948 0.03001431 -0.005570065) (0.0005061105 0.03001919 -0.005094814) (0.001513969 0.03001718 -0.005085922) (0.001010752 0.03101793 -0.005087151) (0.003031667 0.03022366 -0.005640226) (0.003027894 0.02901489 -0.005057855) (0.002518021 0.03002229 -0.005087752) (0.003659 0.03026562 -0.005155057) (0.003133745 0.03128867 -0.005169574) (0.003040317 0.03002551 -0.004577241) (0.004883732 0.02876189 -0.0048781) (0.004394569 0.02976938 -0.004899958) (0.004911085 0.02998909 -0.004413446) (-0.002983671 0.03278308 -0.004852844) (-0.002355324 0.03369786 -0.004840426) (-0.002985864 0.03379722 -0.004387991) (-0.0009830636 0.03371765 -0.00529726) (-0.001003702 0.03300735 -0.005036641) (-0.001507442 0.03400178 -0.005001335) (-0.0004994098 0.03417467 -0.00507943) (-0.0009918168 0.03473537 -0.00481148) (-0.00101048 0.03400875 -0.004544279) (0.0008659333 0.03371306 -0.005241902) (0.001144385 0.03326984 -0.005236741) (0.0004947362 0.03415064 -0.005077369) (0.00151355 0.0340135 -0.004929065) (0.0009879539 0.03471749 -0.004804115) (0.001007821 0.03400149 -0.0045285) (0.002949173 0.03277256 -0.004847261) (0.002307528 0.0337234 -0.00477782) (0.002990259 0.03380203 -0.004383734) (-0.002788362 -0.03665985 -0.002729373) (-0.0008474432 -0.03764559 -0.003179104) (-0.001494766 -0.03773338 -0.00286372) (-0.0004947687 -0.03795944 -0.002981624) (-0.001222532 -0.03738485 -0.003233246) (-0.0009965848 -0.03822762 -0.0026425) (0.0005052893 -0.03784279 -0.003031671) (0.001466343 -0.03775135 -0.002830316) (0.001074891 -0.03734924 -0.003206256) (0.0009921406 -0.03820601 -0.002663898) (0.002821475 -0.03666039 -0.002765224) (-0.004395782 -0.03376526 -0.002907424) (-0.004881768 -0.03275885 -0.002878835) (-0.004806544 -0.03370468 -0.002371518) (-0.003216771 -0.03430479 -0.003749281) (-0.003158997 -0.03526254 -0.003201171) (-0.00369535 -0.03431308 -0.003247328) (-0.002561024 -0.03403469 -0.003091024) (-0.003069814 -0.03303809 -0.003093757) (-0.003065537 -0.03404128 -0.002586338) (-0.001021096 -0.0340297 -0.003573055) (-0.001035664 -0.03505061 -0.003074723) (-0.001543251 -0.03404351 -0.003087865) (0.001033108 -0.03404897 -0.003588229) (0.001043727 -0.03507371 -0.003095566) (0.001542493 -0.03405014 -0.003086038) (0.003007943 -0.03400642 -0.003525815) (0.003218169 -0.03528476 -0.003143115) (0.00255439 -0.03402591 -0.003059872) (0.003521871 -0.03400133 -0.003004713) (0.003038096 -0.03301613 -0.003033378) (0.00306602 -0.03402088 -0.002544595) (0.004375346 -0.03378507 -0.002978238) (0.004863983 -0.03277267 -0.002975903) (0.004770025 -0.0337062 -0.002372627) (-0.005202003 -0.03025724 -0.003635522) (-0.005185122 -0.03125577 -0.003150454) (-0.005606486 -0.03023563 -0.003112585) (-0.004553713 -0.03000908 -0.00303951) (-0.005038608 -0.02900385 -0.003021905) (-0.005037144 -0.03000683 -0.002516768) (0.005234752 -0.03028706 -0.003633467) (0.005189069 -0.03127739 -0.003177167) (0.004565922 -0.03001335 -0.003028679) (0.005621348 -0.03023542 -0.003144139) (0.005068337 -0.02901354 -0.003026716) (0.005048559 -0.03000723 -0.002521659) (-0.006866993 -0.02573796 -0.003355292) (-0.00683414 -0.02673325 -0.002869724) (-0.006690744 -0.0262689 -0.003147642) (-0.007093725 -0.0250178 -0.0030175) (-0.007095862 -0.02600615 -0.002499525) (-0.005068519 -0.02601146 -0.003546713) (-0.005065301 -0.02700918 -0.003036524) (-0.005574715 -0.02601112 -0.003031282) (0.005080409 -0.02601184 -0.003548359) (0.005089067 -0.02701276 -0.003045812) (0.005583354 -0.02601264 -0.003043239) (0.006874485 -0.02574101 -0.003357608) (0.006869904 -0.02674594 -0.002863483) (0.006684438 -0.02627458 -0.00316774) (0.007111776 -0.02502271 -0.003016121) (0.00711372 -0.0260045 -0.002506116) (-0.007015475 -0.02200077 -0.003506451) (-0.007017711 -0.02300349 -0.003005945) (-0.007633484 -0.02225032 -0.003121729) (-0.006551904 -0.02200912 -0.003019216) (-0.007038007 -0.02100561 -0.00301538) (-0.007039594 -0.02200929 -0.002509024) (0.007007569 -0.02200324 -0.003507627) (0.007014199 -0.0230056 -0.003004743) (0.006553147 -0.02200674 -0.003022917) (0.007627479 -0.02225714 -0.003131514) (0.007039092 -0.02100424 -0.003018954) (0.007036297 -0.02200578 -0.002512051) (-0.008400373 -0.01799739 -0.002987978) (-0.007061494 -0.01800671 -0.003525028) (-0.007065115 -0.01900676 -0.0030286) (-0.007584658 -0.01800832 -0.003032134) (-0.007082619 -0.01700779 -0.003031758) (-0.007076385 -0.01800739 -0.00252658) (0.007060985 -0.01800513 -0.003521594) (0.007060742 -0.01900542 -0.003022101) (0.007579312 -0.01800665 -0.003018608) (0.007074789 -0.01700741 -0.003023194) (0.0070723 -0.01800553 -0.002519378) (0.008388397 -0.01799447 -0.002985808) (-0.008817503 -0.01372679 -0.003336928) (-0.008841497 -0.01473988 -0.002855831) (-0.008660894 -0.01426157 -0.003140979) (-0.008936067 -0.01297562 -0.002979864) (-0.00897825 -0.01398437 -0.002491402) (0.00881605 -0.01372249 -0.003354818) (0.00885372 -0.01474747 -0.002867672) (0.008657797 -0.01426556 -0.003122189) (0.00895011 -0.01298399 -0.002973959) (0.008994325 -0.01398524 -0.002494506) (-0.008992938 -0.009998191 -0.003480471) (-0.009065058 -0.01100301 -0.003024263) (-0.008581203 -0.01000367 -0.003016843) (-0.009131072 -0.009003482 -0.003020055) (-0.009228128 -0.01003948 -0.002659629) (0.008975686 -0.009986197 -0.003476277) (0.009053355 -0.01100354 -0.003010841) (0.00858159 -0.01000125 -0.003018594) (0.009144197 -0.008996068 -0.003018747) (0.0091737 -0.01002286 -0.002625207) (-0.00911093 -0.006014353 -0.003540532) (-0.009203659 -0.007002563 -0.003127185) (-0.009332849 -0.006013467 -0.002892412) (-0.008595953 -0.006001765 -0.003005895) (-0.009180352 -0.005275841 -0.003153646) (-0.009046305 -0.006001315 -0.002500046) (0.009131144 -0.005985531 -0.003611279) (0.009185769 -0.007270693 -0.003147276) (0.008541274 -0.006001603 -0.00301261) (0.009411865 -0.005984875 -0.002976298) (0.00899904 -0.005000323 -0.003013286) (0.008990158 -0.006001271 -0.002501556) (-0.009215624 -0.001998949 -0.003677751) (-0.009017037 -0.003000487 -0.003012943) (-0.009457882 -0.001998742 -0.002978763) (-0.008566591 -0.002000101 -0.003029502) (-0.009073855 -0.0009985029 -0.003025684) (-0.009064161 -0.0020001 -0.002522623) (0.009235424 -0.002000304 -0.00363662) (0.009045066 -0.003001016 -0.003018074) (0.008579268 -0.002000838 -0.003023813) (0.00947999 -0.002002614 -0.002973879) (0.009067789 -0.001001217 -0.003030341) (0.009087241 -0.00199995 -0.002512215) (-0.009220683 0.001996576 -0.003651439) (-0.009072996 0.001002478 -0.003025411) (-0.009464014 0.00200223 -0.002975052) (-0.008565086 0.00200107 -0.003022555) (-0.009017124 0.003000982 -0.003009101) (-0.009066708 0.00200132 -0.002514583) (0.009207822 0.002000831 -0.003654187) (0.009062675 0.0009994267 -0.003014115) (0.00856407 0.002000552 -0.003021723) (0.009457386 0.00199904 -0.002975592) (0.009022137 0.003001081 -0.003011559) (0.009077066 0.001999877 -0.002516061) (-0.009105165 0.006001229 -0.003509664) (-0.008990669 0.004998402 -0.002995254) (-0.009358995 0.005997782 -0.002980988) (-0.008573287 0.005999184 -0.003030085) (-0.009211227 0.007037571 -0.00315435) (-0.009036332 0.006000111 -0.002514847) (0.009108758 0.005986841 -0.003601478) (0.008988937 0.005001183 -0.003000361) (0.008533466 0.006003753 -0.003015135) (0.009408217 0.005982357 -0.002960598) (0.009176168 0.007260022 -0.003147017) (0.009022734 0.006001766 -0.002505978) (-0.008985047 0.009986728 -0.00347858) (-0.009133398 0.008983462 -0.003103632) (-0.009322258 0.00971515 -0.002848877) (-0.008563033 0.01000232 -0.003014992) (-0.00907284 0.01102013 -0.003047269) (-0.009163797 0.01026827 -0.002654861) (0.008990225 0.009986502 -0.003480755) (0.009139668 0.008984719 -0.003124621) (0.008571832 0.01000686 -0.003018008) (0.009324767 0.009732157 -0.002861157) (0.009081252 0.01102185 -0.00302562) (0.009178211 0.01028332 -0.002647087) (-0.008805634 0.0137196 -0.003343829) (-0.008950971 0.01297947 -0.00297052) (-0.008655216 0.01425397 -0.003133025) (-0.00884547 0.01474351 -0.002875277) (-0.008979152 0.01398534 -0.002492708) (0.008835258 0.01373072 -0.003362894) (0.008973431 0.01298333 -0.002978679) (0.00868717 0.01425964 -0.003124701) (0.008855461 0.01473777 -0.002878317) (0.009002292 0.01398772 -0.002496424) (-0.008382345 0.01799163 -0.002988997) (-0.007058504 0.01800719 -0.003523067) (-0.007071956 0.0170096 -0.003021688) (-0.007578327 0.01801811 -0.003013114) (-0.007074113 0.01901112 -0.003021309) (-0.007076125 0.01801102 -0.002519601) (0.007076831 0.01801087 -0.003540226) (0.00708434 0.01700892 -0.003033262) (0.007553597 0.01800377 -0.003023613) (0.007075016 0.0190116 -0.003028835) (0.007077996 0.01800871 -0.002523027) (0.008386938 0.01797049 -0.002978046) (-0.007013289 0.02199968 -0.003511192) (-0.007043675 0.02100409 -0.003023679) (-0.007642151 0.02224316 -0.003124734) (-0.006559273 0.0220023 -0.003022461) (-0.007019184 0.02299835 -0.003006689) (-0.007045735 0.0220004 -0.002512331) (0.007183064 0.02225901 -0.003615011) (0.007048701 0.02100719 -0.003012775) (0.006571108 0.02200579 -0.00303035) (0.007593886 0.02201747 -0.003010254) (0.007188904 0.02327519 -0.003192077) (0.007048878 0.02200645 -0.002521706) (-0.006849663 0.02574434 -0.003356478) (-0.007109264 0.0250233 -0.003012159) (-0.006660808 0.02626256 -0.003157629) (-0.006863848 0.02674353 -0.002866029) (-0.007096274 0.02600201 -0.00249556) (-0.005065378 0.02601305 -0.003530674) (-0.005576673 0.02601224 -0.003027278) (-0.005079264 0.02701777 -0.003035291) (0.00507129 0.02601505 -0.003538219) (0.005584351 0.02601331 -0.003032755) (0.005078963 0.02701735 -0.0030395) (0.006855028 0.02574139 -0.003383027) (0.007087145 0.02499212 -0.003004615) (0.006702227 0.02625262 -0.003156566) (0.006868618 0.02673896 -0.002878707) (0.007112688 0.026002 -0.002502384) (-0.005215438 0.03029254 -0.003651462) (-0.005069776 0.02902018 -0.003040783) (-0.005636091 0.03025715 -0.003130604) (-0.004572281 0.03001989 -0.003039826) (-0.005217741 0.03127252 -0.003178773) (-0.005058963 0.03001655 -0.002525493) (0.005211115 0.03024143 -0.003677343) (0.005061804 0.0290162 -0.00304216) (0.004572644 0.03002548 -0.003060633) (0.005621758 0.03024845 -0.003137685) (0.005190597 0.03128157 -0.00316227) (0.005050541 0.03001367 -0.002527938) (-0.00487238 0.03277683 -0.002991339) (-0.004389511 0.03380561 -0.002984347) (-0.004803346 0.0337309 -0.002337049) (-0.003022208 0.03401775 -0.003529581) (-0.003041913 0.03302367 -0.003038765) (-0.00353069 0.03401434 -0.003017425) (-0.002548956 0.03403683 -0.003069523) (-0.00317113 0.03536352 -0.003161024) (-0.003068867 0.03403402 -0.002546217) (-0.001023452 0.03402959 -0.003572302) (-0.00153629 0.03403937 -0.003079058) (-0.001027486 0.03504706 -0.003071688) (0.001027986 0.03403373 -0.003589328) (0.001536131 0.03404103 -0.003091041) (0.001037838 0.03505626 -0.003108407) (0.003033224 0.0340143 -0.003543323) (0.003063107 0.03302841 -0.003059274) (0.002552685 0.03403058 -0.003075223) (0.003725177 0.03428936 -0.003216011) (0.003179856 0.03531202 -0.003148281) (0.003072584 0.03402785 -0.002558856) (0.004860761 0.03275933 -0.002871937) (0.004372344 0.03375744 -0.002899148) (0.004771892 0.03370924 -0.002331945) (-0.00283567 0.03663314 -0.002737372) (-0.0008514091 0.03760526 -0.003242989) (-0.001192445 0.03741016 -0.003270337) (-0.001478731 0.03777554 -0.002837683) (-0.0004969506 0.03796437 -0.002980945) (-0.001005974 0.03823025 -0.00263481) (0.001054512 0.03731981 -0.003247438) (0.0005013573 0.03784568 -0.003038207) (0.00146243 0.0377416 -0.002838269) (0.0009845364 0.03821926 -0.002659283) (0.002770508 0.03658906 -0.002809805) (-0.002818492 -0.03775167 -0.001440663) (-0.002638218 -0.03822229 -0.0009886049) (-0.003289811 -0.03731882 -0.001037848) (-0.003018913 -0.03784394 -0.0004977655) (-0.00101908 -0.03805296 -0.001552291) (-0.001152515 -0.03941054 -0.001149471) (-0.001548001 -0.03805114 -0.001015647) (-0.0005091589 -0.03803546 -0.001026282) (-0.001038581 -0.03803618 -0.0005019149) (0.001035241 -0.03805276 -0.00155206) (0.001221875 -0.0393898 -0.001042334) (0.0005292891 -0.03804694 -0.001032658) (0.001570914 -0.03810314 -0.001030305) (0.001056894 -0.03812271 -0.0005208224) (0.002866332 -0.03777379 -0.001478091) (0.002672121 -0.03826669 -0.0009858025) (0.003195337 -0.03767855 -0.0008604424) (0.003283415 -0.03737301 -0.001171284) (0.003020964 -0.037999 -0.0004935424) (-0.004980836 -0.03398796 -0.001496106) (-0.004775461 -0.03476494 -0.000986564) (-0.005287181 -0.03368868 -0.0009933666) (-0.004517654 -0.03399755 -0.001008778) (-0.005032262 -0.03299348 -0.001000356) (-0.005074434 -0.03417165 -0.0004974569) (-0.003070617 -0.03403566 -0.00154662) (-0.003074575 -0.03503427 -0.001026621) (-0.003562844 -0.03402479 -0.001025338) (0.003061137 -0.03403114 -0.001529408) (0.003057453 -0.03503785 -0.001018246) (0.003538703 -0.0340179 -0.00101245) (0.004945334 -0.03397097 -0.001488993) (0.004740813 -0.03471122 -0.0009869159) (0.004483059 -0.03399361 -0.001001159) (0.005251821 -0.0336848 -0.0009816847) (0.005015351 -0.03299319 -0.00100036) (0.005048547 -0.03415915 -0.0004890079) (-0.00648811 -0.02999259 -0.0009876376) (-0.006880368 -0.02876845 -0.0009946244) (-0.00506008 -0.03001383 -0.001516047) (-0.005058904 -0.03101223 -0.001005802) (-0.005544214 -0.03000953 -0.00100467) (-0.005069357 -0.03001145 -0.0005033105) (0.005058804 -0.03000933 -0.001516984) (0.005061248 -0.03099817 -0.001007434) (0.005534615 -0.03000415 -0.001003894) (0.005065502 -0.03000748 -0.0005016972) (0.006457976 -0.02997048 -0.0009859903) (0.006850401 -0.02874796 -0.0009676096) (-0.007209663 -0.02629695 -0.001637707) (-0.007157138 -0.02722168 -0.0009926502) (-0.007494067 -0.02597973 -0.0009936034) (-0.006568118 -0.02600846 -0.001002153) (-0.007045136 -0.0250057 -0.001005385) (-0.007038195 -0.02600381 -0.0005005868) (0.007231142 -0.02629762 -0.00164534) (0.007175233 -0.02722481 -0.0009986255) (0.006583265 -0.02601162 -0.001013175) (0.007505709 -0.02598125 -0.0009968601) (0.007051118 -0.02500558 -0.001006154) (0.007038432 -0.02600766 -0.0005016484) (-0.008372746 -0.02174981 -0.0009855683) (-0.007084541 -0.02201631 -0.001509712) (-0.007080974 -0.02301522 -0.001007367) (-0.007591944 -0.02202182 -0.001005217) (-0.007097156 -0.02101554 -0.00100822) (-0.007113091 -0.02202315 -0.000504569) (0.007077602 -0.02200918 -0.001511467) (0.007064077 -0.02300741 -0.001007142) (0.007572441 -0.02200892 -0.0010037) (0.007083725 -0.02100822 -0.001008934) (0.007087169 -0.02201031 -0.0005059777) (0.008363021 -0.02177431 -0.000990683) (-0.008848389 -0.01794992 -0.001488275) (-0.00883327 -0.01872869 -0.0009761167) (-0.00849399 -0.01800089 -0.0009995596) (-0.00896321 -0.0169923 -0.0009958667) (-0.008932959 -0.01794789 -0.0004995389) (0.008848523 -0.01795395 -0.001483915) (0.008835192 -0.0187344 -0.0009841942) (0.008492198 -0.01800029 -0.001001252) (0.008973673 -0.01699408 -0.0009986012) (0.008928191 -0.01794027 -0.0004992568) (-0.009129232 -0.01402574 -0.001510553) (-0.009140076 -0.01504943 -0.001011813) (-0.009337364 -0.01377103 -0.0009881842) (-0.008615078 -0.01400798 -0.001005837) (-0.008995801 -0.01300274 -0.0009984622) (-0.00919005 -0.01429465 -0.0006273575) (0.00915634 -0.01403069 -0.00151396) (0.009154432 -0.01502324 -0.001009168) (0.008578233 -0.01400825 -0.001014538) (0.009345105 -0.01394973 -0.0009791703) (0.008989107 -0.01299904 -0.001005652) (0.008976656 -0.01400012 -0.0004994123) (-0.009037996 -0.01000195 -0.001503036) (-0.009043296 -0.01100014 -0.0009997633) (-0.009580557 -0.01000053 -0.0009956844) (-0.008574674 -0.01000326 -0.001002959) (-0.00910493 -0.009003818 -0.001002765) (-0.009100651 -0.01000109 -0.0005000508) (0.008983853 -0.01000137 -0.001501176) (0.008981109 -0.01099968 -0.001000881) (0.008526418 -0.01000155 -0.001002568) (0.009496169 -0.0100003 -0.0009963669) (0.009039029 -0.009001652 -0.0009993785) (0.009025567 -0.01000101 -0.0004983852) (-0.009105505 -0.006002819 -0.001511409) (-0.009137527 -0.007001464 -0.001007666) (-0.009669453 -0.006036604 -0.001029805) (-0.009083911 -0.004997337 -0.0009941142) (-0.009096587 -0.005994047 -0.0005050819) (0.009088803 -0.006003625 -0.001507887) (0.009111382 -0.007006403 -0.001000546) (0.009672133 -0.006016981 -0.0009932052) (0.009124064 -0.005002294 -0.001004644) (0.009166765 -0.006002496 -0.0005020338) (-0.009023828 -0.00200337 -0.001508521) (-0.009008879 -0.003004745 -0.001002291) (-0.009432071 -0.001999927 -0.000998989) (-0.008981304 -0.0009996719 -0.001002625) (-0.008960955 -0.001998691 -0.000499996) (0.009102111 -0.001999883 -0.001507419) (0.009029016 -0.00300137 -0.001002361) (0.009475825 -0.001999087 -0.001000738) (0.008999309 -0.001000867 -0.001004955) (0.00898016 -0.002000406 -0.0005003161) (-0.009013075 0.002002057 -0.001509185) (-0.008977632 0.001001042 -0.001004183) (-0.009426719 0.002000512 -0.0009994864) (-0.008994991 0.003004597 -0.001015017) (-0.008957421 0.002000497 -0.0005036561) (0.00902236 0.002004277 -0.00150891) (0.008986132 0.001000297 -0.001002252) (0.009438355 0.002001356 -0.0009982186) (0.009002755 0.003006554 -0.001001188) (0.008965886 0.002000359 -0.0005003635) (-0.009109465 0.006003238 -0.001509508) (-0.009075017 0.004996817 -0.001004815) (-0.009653779 0.00603488 -0.001012793) (-0.009136736 0.007003162 -0.001006914) (-0.009113334 0.00600304 -0.0005033566) (0.009104113 0.005999171 -0.001513095) (0.009024163 0.004996679 -0.001009558) (0.009667923 0.006268461 -0.001159057) (0.00910626 0.006996636 -0.00100877) (0.009011881 0.005994118 -0.0005043324) (-0.009038932 0.01000086 -0.001502846) (-0.009099934 0.009002751 -0.001001743) (-0.009571427 0.01000147 -0.001003068) (-0.008570802 0.01000157 -0.001004228) (-0.009038864 0.01099901 -0.001001361) (-0.009102978 0.010001 -0.0005004798) (0.009061152 0.01000382 -0.001502316) (0.009140345 0.009003767 -0.001002221) (0.008591348 0.01000272 -0.001004094) (0.009617341 0.009999276 -0.0009996697) (0.0090495 0.01100076 -0.001001398) (0.009128113 0.01000013 -0.0005012439) (-0.009144547 0.01401163 -0.001505693) (-0.008995117 0.01300113 -0.0009976326) (-0.00933491 0.01376764 -0.0009841446) (-0.008596992 0.01401707 -0.001017292) (-0.009112744 0.01505956 -0.001017512) (-0.009191814 0.01429507 -0.0006339468) (0.009161974 0.01403252 -0.00151875) (0.00901246 0.01300404 -0.00100549) (0.008607911 0.01401224 -0.001009548) (0.009359841 0.01395089 -0.0009854042) (0.00914896 0.01502325 -0.0009998784) (0.009000358 0.01400308 -0.0005022556) (-0.00884772 0.01794522 -0.001481455) (-0.008969922 0.01699098 -0.001000094) (-0.008494004 0.01799935 -0.0009999677) (-0.008835168 0.01874391 -0.0009747641) (-0.008930564 0.01793354 -0.0004983953) (0.008850933 0.01776165 -0.001484037) (0.008975708 0.01698819 -0.0009993684) (0.00869215 0.01830022 -0.001139245) (0.008822226 0.01870587 -0.0008629499) (0.008944885 0.01793983 -0.0004920843) (-0.008374665 0.02174454 -0.0009814923) (-0.007087516 0.02201323 -0.001512926) (-0.007096642 0.02101241 -0.001010516) (-0.007597319 0.02201391 -0.001009382) (-0.007080394 0.02301176 -0.00100918) (-0.00711071 0.02201327 -0.0005062134) (0.007063309 0.02200606 -0.00150869) (0.007079465 0.02100542 -0.001004972) (0.007544805 0.02200171 -0.001002532) (0.007067214 0.0230089 -0.001004892) (0.007074805 0.02200782 -0.0005031781) (0.008310971 0.02170019 -0.0008598707) (-0.007204651 0.02628543 -0.001636186) (-0.007045076 0.02500877 -0.001003378) (-0.007495256 0.02598175 -0.0009937781) (-0.006568653 0.02601054 -0.001005593) (-0.007161402 0.02720872 -0.0009988132) (-0.007030675 0.02600531 -0.0005000862) (0.007204057 0.02629707 -0.001659692) (0.007064334 0.02501093 -0.001005134) (0.006581049 0.02601687 -0.001009571) (0.007483809 0.02594739 -0.0009937067) (0.007165119 0.02721198 -0.0009942921) (0.007035864 0.02600387 -0.0005006541) (-0.006876307 0.02876346 -0.0009974789) (-0.006488084 0.02999504 -0.0009882302) (-0.005066245 0.03001564 -0.001515097) (-0.005547873 0.0300103 -0.001007182) (-0.005059289 0.03101354 -0.001006752) (-0.005070475 0.03001686 -0.0005050034) (0.005051362 0.03000925 -0.001512653) (0.005527979 0.03000291 -0.00100109) (0.005048501 0.03100216 -0.001007155) (0.005058955 0.0300082 -0.0005001823) (0.006863147 0.02874511 -0.0009793733) (0.006460003 0.02997293 -0.000989767) (-0.004977801 0.03399088 -0.00149492) (-0.005028648 0.03300181 -0.001003763) (-0.00528504 0.03367991 -0.0009772188) (-0.004516477 0.03400133 -0.001009706) (-0.004777847 0.03476593 -0.0009726836) (-0.005081657 0.03417058 -0.0004953462) (-0.003072857 0.03403027 -0.001530163) (-0.003564053 0.03402038 -0.001015809) (-0.003074526 0.0350386 -0.001017063) (0.003060765 0.03401929 -0.0015358) (0.003540737 0.03400615 -0.001021188) (0.00305542 0.03502006 -0.001023887) (0.004941943 0.03397594 -0.001490888) (0.005007973 0.032995 -0.0009958778) (0.004484265 0.03398446 -0.001011258) (0.005263713 0.03367025 -0.0009879289) (0.004764202 0.03471206 -0.0009852876) (0.005045165 0.03416059 -0.0004924882) (-0.002833142 0.03772696 -0.001446407) (-0.003258175 0.03738858 -0.001001597) (-0.002634264 0.03823005 -0.0009843395) (-0.003020786 0.03783899 -0.0004977903) (-0.00103814 0.03809367 -0.001562696) (-0.001559691 0.0380587 -0.001038867) (-0.0005423486 0.03813137 -0.001046277) (-0.001074544 0.03936528 -0.001235157) (-0.001053097 0.03805482 -0.0005232805) (0.001031192 0.03806595 -0.001538214) (0.0005188613 0.03806879 -0.001032378) (0.001586603 0.03814873 -0.001026284) (0.001185775 0.0394107 -0.001037279) (0.001067211 0.03812546 -0.0005294954) (0.002816406 0.03770202 -0.001420108) (0.003270459 0.0373292 -0.001200629) (0.002598192 0.03823998 -0.001009603) (0.003233846 0.03761287 -0.0008477966) (0.003018814 0.03800458 -0.0004988299) (-0.003009892 -0.03783678 0.000506724) (-0.002616098 -0.03821228 0.001002302) (-0.003280659 -0.037299 0.001041283) (-0.002825549 -0.0377541 0.001470494) (-0.001040042 -0.0380619 0.0005262532) (-0.001080017 -0.0394027 0.001149341) (-0.001546751 -0.03807898 0.00104419) (-0.0005343451 -0.03811877 0.001091163) (-0.00104074 -0.03810188 0.001570715) (0.00107521 -0.03811374 0.0005271472) (0.001190078 -0.0393714 0.00104737) (0.000522634 -0.03805777 0.001052861) (0.001589254 -0.03813725 0.001067297) (0.001029172 -0.03807046 0.001559057) (0.00302272 -0.03799315 0.0004963335) (0.002591138 -0.03827094 0.001024288) (0.003213285 -0.03765438 0.0008454949) (0.003214893 -0.03737854 0.001208957) (0.002831789 -0.03768958 0.001458742) (-0.005064544 -0.03416605 0.0004991449) (-0.004775714 -0.03473593 0.0009987011) (-0.005302124 -0.03367608 0.0009923678) (-0.004511805 -0.03399988 0.001018235) (-0.005027114 -0.0329998 0.001006957) (-0.004980659 -0.03399438 0.001506794) (-0.003077518 -0.03503384 0.001018334) (-0.003565366 -0.0340178 0.001020891) (-0.003076577 -0.03403042 0.001532449) (0.003051579 -0.03502708 0.001023605) (0.003545363 -0.03401421 0.001016857) (0.003060646 -0.03402346 0.001527204) (0.005058705 -0.03413517 0.000496433) (0.004761549 -0.0347332 0.0009750061) (0.00450921 -0.03399505 0.001013041) (0.005257483 -0.03370495 0.0008575449) (0.005211678 -0.03329739 0.001167955) (0.004924674 -0.03401589 0.001515391) (-0.006482883 -0.02999522 0.0009913487) (-0.006884645 -0.02875421 0.0009976295) (-0.005068654 -0.03000844 0.0005030788) (-0.005057962 -0.03100463 0.0010073) (-0.005546851 -0.03000633 0.001003891) (-0.005069763 -0.03000968 0.001512293) (0.005078522 -0.03001142 0.0005104654) (0.00507698 -0.03101733 0.00101617) (0.00559445 -0.03001281 0.00100872) (0.005084385 -0.03001357 0.001518806) (0.006422362 -0.03000612 0.001002996) (0.006843919 -0.02873904 0.000984599) (-0.00703459 -0.02600582 0.000500391) (-0.007168425 -0.02722532 0.0009945182) (-0.007489898 -0.02598004 0.0009931035) (-0.006572305 -0.0260148 0.001002901) (-0.007042435 -0.02501115 0.001000876) (-0.007194429 -0.02631141 0.001623599) (0.007036651 -0.02600807 0.0005009791) (0.007159728 -0.02724094 0.001002075) (0.006559329 -0.02601115 0.001007156) (0.007502084 -0.02598256 0.001000828) (0.007038732 -0.02500669 0.001003842) (0.007013212 -0.02600328 0.001504869) (-0.008366076 -0.02174175 0.0009787314) (-0.007107977 -0.02201676 0.0005011877) (-0.007067524 -0.02300997 0.001003126) (-0.007583956 -0.02201102 0.001001263) (-0.007088455 -0.02101449 0.001004202) (-0.00707177 -0.02201073 0.001505448) (0.007097441 -0.02201272 0.0005032572) (0.007077615 -0.02300918 0.001010301) (0.007587205 -0.02201491 0.001006794) (0.007087749 -0.02101036 0.001005023) (0.007088077 -0.02200962 0.001509987) (0.008375193 -0.02173654 0.0009834184) (-0.008947497 -0.0179375 0.0004950788) (-0.008835873 -0.01874277 0.0009792513) (-0.008491385 -0.01799892 0.0009981954) (-0.008969813 -0.01699126 0.0009949231) (-0.008847833 -0.01795178 0.001480997) (0.008942945 -0.017944 0.0004979063) (0.008825307 -0.01873753 0.000980033) (0.008492275 -0.01799806 0.0009971653) (0.008962586 -0.01699459 0.0009975439) (0.008848368 -0.01794616 0.001481515) (-0.00917651 -0.01428488 0.000632291) (-0.009133736 -0.0150444 0.001013225) (-0.009343473 -0.01375866 0.000992293) (-0.008592741 -0.01400512 0.001001614) (-0.008998049 -0.01300511 0.0009994525) (-0.009139008 -0.01402332 0.001497278) (0.008985294 -0.01399788 0.0005019833) (0.009129018 -0.01502331 0.0009942008) (0.008600263 -0.01399507 0.001006086) (0.009332856 -0.01394918 0.0009851446) (0.008988254 -0.01299448 0.001000806) (0.009154423 -0.01403132 0.001519662) (-0.00910374 -0.01000382 0.0005048194) (-0.009037446 -0.01100163 0.00100184) (-0.009570294 -0.01000158 0.001003854) (-0.008569149 -0.01000402 0.001004564) (-0.009099016 -0.009003158 0.001004678) (-0.009034017 -0.010004 0.001503572) (0.009019168 -0.01000092 0.0005000661) (0.008974852 -0.01099941 0.0009998344) (0.008521972 -0.01000082 0.001002742) (0.009483106 -0.009998814 0.0009944381) (0.009031663 -0.009001199 0.0009991131) (0.008980353 -0.01000115 0.001499736) (-0.009105848 -0.00600084 0.0005019241) (-0.009132392 -0.007005193 0.001005078) (-0.009661825 -0.006041046 0.001026543) (-0.009090737 -0.004996555 0.0010013) (-0.009111249 -0.006000911 0.001499781) (0.009162067 -0.006007261 0.0005020726) (0.00910579 -0.007004361 0.00100399) (0.009661019 -0.006009538 0.001000026) (0.00914841 -0.005008066 0.001003913) (0.00909559 -0.006004665 0.001508147) (-0.008957308 -0.001995651 0.0005019966) (-0.008998554 -0.002989374 0.001005144) (-0.009424637 -0.001995573 0.001000412) (-0.008977112 -0.0009973051 0.001005165) (-0.009013171 -0.001993811 0.001511434) (0.00897386 -0.002000615 0.0005048734) (0.00903224 -0.00300136 0.00100755) (0.009456938 -0.001999189 0.001011102) (0.00898884 -0.0009995644 0.001006314) (0.009071567 -0.00200438 0.001519862) (-0.008958017 0.001999243 0.0004990676) (-0.008979552 0.0009996761 0.001002822) (-0.009429257 0.00199971 0.0009982764) (-0.008997982 0.003000841 0.001001509) (-0.009020291 0.002000527 0.001506086) (0.008963166 0.00199954 0.0005010605) (0.008983298 0.001000488 0.001002637) (0.00943521 0.002000293 0.001000129) (0.009004993 0.003000922 0.001004948) (0.009029189 0.00200184 0.00150656) (-0.009126298 0.005995157 0.0004932695) (-0.009071377 0.005006647 0.001008557) (-0.009681904 0.006024545 0.001014955) (-0.009145759 0.007001643 0.001003586) (-0.009109937 0.006001133 0.001507528) (0.009024654 0.00599871 0.0005071628) (0.009033338 0.004999577 0.001005441) (0.009660273 0.006254154 0.001145394) (0.009122094 0.006999984 0.001014793) (0.009112685 0.005999637 0.001513525) (-0.009098312 0.01000133 0.000501656) (-0.009105469 0.009001891 0.00100448) (-0.009585351 0.01000233 0.001002495) (-0.008571962 0.01000075 0.001003996) (-0.00904415 0.01099935 0.001000032) (-0.009037355 0.0100006 0.00150495) (0.009126477 0.0100002 0.0005043072) (0.009144491 0.009003573 0.001018468) (0.008592549 0.01000149 0.001010782) (0.009614251 0.0100052 0.001008334) (0.009047979 0.011 0.001006582) (0.009059953 0.01000022 0.001508908) (-0.009187587 0.01429525 0.0006317501) (-0.009001319 0.01299947 0.0009998305) (-0.009344914 0.01377015 0.0009860724) (-0.008600156 0.01400535 0.0009979689) (-0.009141284 0.01504677 0.001005734) (-0.00913936 0.01401865 0.00149517) (0.00899164 0.01400299 0.0005007635) (0.009002267 0.01300357 0.001002529) (0.008598127 0.01401546 0.001020586) (0.009359496 0.01395225 0.0009874952) (0.009166073 0.01501736 0.001006715) (0.009157756 0.01404272 0.001531481) (-0.008938482 0.01794113 0.0004976221) (-0.008959529 0.01699145 0.000993118) (-0.008495017 0.01799847 0.001003301) (-0.00884011 0.01872449 0.0009794322) (-0.008859651 0.01795319 0.001478793) (0.008950786 0.01794346 0.0004954142) (0.008964848 0.01699518 0.0009956324) (0.008492447 0.01800175 0.001000653) (0.008820326 0.01871869 0.0009737125) (0.008863784 0.01794896 0.00148932) (-0.008364882 0.0217415 0.000981122) (-0.007109648 0.02201191 0.0005002068) (-0.007091828 0.02100931 0.001006253) (-0.007594771 0.02201572 0.001003068) (-0.007074661 0.02300648 0.001002578) (-0.007075938 0.02200721 0.001507276) (0.007076045 0.02200765 0.0005025923) (0.007080129 0.02100516 0.0010072) (0.00754836 0.02200343 0.001002423) (0.007065747 0.02300761 0.001002429) (0.007067535 0.0220058 0.00150645) (0.00831912 0.021699 0.0008599146) (-0.007035409 0.02600578 0.0005007273) (-0.007046951 0.02500434 0.001002448) (-0.007493055 0.0259797 0.0009936019) (-0.006570617 0.02600898 0.001004895) (-0.007162403 0.02722038 0.0009949942) (-0.007172794 0.02628967 0.001636313) (0.007035121 0.02600619 0.0005014869) (0.007067958 0.0250074 0.001003402) (0.006589019 0.02601717 0.001008722) (0.007475712 0.02594649 0.0009922661) (0.007171188 0.027209 0.0009959732) (0.007213944 0.02630799 0.001637105) (-0.006876773 0.02875902 0.0009983829) (-0.006481083 0.02999312 0.0009925224) (-0.005066078 0.03001474 0.0005035657) (-0.005546174 0.03000884 0.001003742) (-0.005054844 0.03100833 0.001006722) (-0.005068055 0.03001569 0.00151078) (0.005078813 0.03001418 0.0005082472) (0.005592974 0.03001054 0.0010052) (0.005078015 0.03101406 0.001010923) (0.005084155 0.03002118 0.001515264) (0.006866696 0.02873405 0.0009798469) (0.006422015 0.03000727 0.001003957) (-0.00507602 0.03416797 0.0005011573) (-0.005014233 0.03300389 0.00100415) (-0.005256487 0.03370758 0.0009741081) (-0.004506957 0.03401105 0.001017649) (-0.004773291 0.03473318 0.0009927521) (-0.004988101 0.0339918 0.001505521) (-0.00356234 0.03402568 0.001023918) (-0.00307346 0.03503889 0.001026519) (-0.003072841 0.0340374 0.00153357) (0.003550809 0.03401468 0.001024023) (0.003063031 0.0350304 0.001031386) (0.003068992 0.03403023 0.001541692) (0.005051196 0.03413853 0.000494604) (0.005230412 0.03332116 0.001155255) (0.00450995 0.03399753 0.001014538) (0.005259424 0.03367267 0.0008794976) (0.004751691 0.03471012 0.000975676) (0.00492132 0.03402173 0.001509594) (-0.003013961 0.03782972 0.0005034727) (-0.00324823 0.03735944 0.001011059) (-0.002641875 0.0381817 0.0009920688) (-0.002844398 0.03772986 0.001466859) (-0.001059959 0.038044 0.0005419546) (-0.001041494 0.03707166 0.001061836) (-0.001538109 0.03806418 0.001051939) (-0.0005494741 0.03810155 0.00109863) (-0.001077967 0.03932538 0.001236251) (-0.001031631 0.03810501 0.001590515) (0.001076756 0.03809875 0.0005425815) (0.0005201993 0.03805263 0.001052283) (0.001553185 0.03809923 0.001035445) (0.001206836 0.03936694 0.001035761) (0.001037112 0.03806354 0.0015641) (0.003024148 0.03799691 0.0004916941) (0.003261012 0.03738058 0.001220559) (0.00267492 0.03824556 0.001032809) (0.003225647 0.03761664 0.000843245) (0.002866066 0.03777356 0.001483519) (-0.002835085 -0.03664553 0.002748512) (-0.001012354 -0.03825919 0.002678302) (-0.001487925 -0.03779038 0.002893126) (-0.0004986181 -0.03800677 0.003030736) (-0.001140233 -0.03735303 0.003314002) (-0.0008181751 -0.03764217 0.003242132) (0.001004631 -0.03822062 0.002686521) (0.0004906712 -0.03799756 0.003032956) (0.001481456 -0.03777378 0.002878801) (0.001181955 -0.03742832 0.003271061) (0.0008263574 -0.03764981 0.003244859) (0.0027955 -0.03656434 0.002756299) (-0.004802608 -0.03371136 0.002348771) (-0.004363021 -0.03379764 0.002978245) (-0.00485147 -0.03277785 0.002984931) (-0.003069165 -0.03403449 0.002549457) (-0.003178483 -0.03536556 0.003165388) (-0.003526636 -0.03401231 0.003015464) (-0.00255522 -0.03404371 0.003069682) (-0.003040088 -0.03302245 0.003039599) (-0.00302595 -0.03402397 0.003530618) (-0.001022741 -0.03504331 0.003090609) (-0.001536576 -0.03404 0.00309104) (-0.001020145 -0.0340298 0.003584873) (0.001024536 -0.03503978 0.003073199) (0.001528595 -0.03402833 0.003069706) (0.001020314 -0.03402572 0.003573103) (0.003055615 -0.03402192 0.002541361) (0.003216516 -0.03532234 0.003198629) (0.00253466 -0.03402127 0.003055204) (0.003516881 -0.03400397 0.003011301) (0.003032831 -0.03301258 0.003032121) (0.003008055 -0.03400348 0.003520432) (0.004785194 -0.03371672 0.002351526) (0.004359825 -0.03375783 0.002986908) (0.004894319 -0.03276022 0.00287347) (-0.005055799 -0.03001033 0.002522649) (-0.005217308 -0.03127027 0.003163248) (-0.005634104 -0.03024759 0.003136948) (-0.004571667 -0.03000912 0.003035854) (-0.005062035 -0.02900892 0.003026625) (-0.005224087 -0.03025017 0.003666991) (0.005057722 -0.03001105 0.002521634) (0.005233354 -0.03125543 0.00316092) (0.004578179 -0.03001376 0.003033025) (0.005632692 -0.03024089 0.003129847) (0.005057745 -0.02900957 0.003025833) (0.005225108 -0.03026659 0.003641831) (-0.007103486 -0.02600463 0.002502972) (-0.006870043 -0.02674442 0.002877921) (-0.006695576 -0.02625112 0.003161111) (-0.007121062 -0.02501954 0.003013509) (-0.006871847 -0.02574554 0.003379853) (-0.005085858 -0.02701831 0.00303669) (-0.005589784 -0.0260188 0.003039774) (-0.005084783 -0.02601784 0.00355069) (0.005070241 -0.0270112 0.003035674) (0.005582549 -0.02601249 0.003031148) (0.005070853 -0.02601066 0.003544129) (0.007113892 -0.02602518 0.002521805) (0.006861209 -0.0267463 0.002886936) (0.006711245 -0.02626663 0.003141606) (0.00711997 -0.02502688 0.003026391) (0.006876154 -0.0257417 0.003375706) (-0.007032081 -0.02200442 0.002506322) (-0.00701692 -0.0230047 0.003006516) (-0.007628602 -0.02225145 0.003130914) (-0.006551627 -0.02200834 0.003018319) (-0.007038623 -0.02100407 0.003011864) (-0.007003944 -0.02200143 0.003500043) (0.007050625 -0.0220096 0.002514688) (0.007025734 -0.02300517 0.003004539) (0.006568018 -0.02201279 0.003026187) (0.007625752 -0.02224817 0.003124616) (0.007051995 -0.02100986 0.003017221) (0.007015657 -0.0220003 0.003502673) (-0.008398515 -0.0179955 0.00299076) (-0.007076135 -0.01800312 0.002516733) (-0.007066566 -0.01900436 0.00302243) (-0.007589424 -0.018001 0.003018738) (-0.007072333 -0.01700333 0.003017286) (-0.007058016 -0.01800302 0.00352182) (0.007084058 -0.01800772 0.002523016) (0.007072707 -0.01901134 0.003028086) (0.007600189 -0.0180073 0.003026408) (0.007088491 -0.01700768 0.003032539) (0.007068435 -0.01800714 0.003534553) (0.008399923 -0.01799847 0.002987004) (-0.008982323 -0.01399861 0.002492444) (-0.008828341 -0.01497702 0.002873317) (-0.008672834 -0.01427872 0.00314219) (-0.008952177 -0.01298075 0.002976533) (-0.008827065 -0.01372487 0.003340141) (0.009007155 -0.01399905 0.002500187) (0.008836654 -0.01497419 0.002869991) (0.008692846 -0.01426888 0.003157673) (0.008964027 -0.01298582 0.002974848) (0.00883433 -0.01372796 0.003366344) (-0.009172431 -0.01027644 0.002624819) (-0.009057337 -0.01102221 0.003042935) (-0.00931045 -0.009728098 0.002861112) (-0.008553303 -0.01000784 0.00301529) (-0.009137949 -0.008986708 0.003120705) (-0.009003137 -0.01000024 0.003481006) (0.009144008 -0.009992833 0.002616653) (0.009024973 -0.01100061 0.003001113) (0.008546167 -0.01000156 0.0030095) (0.009101792 -0.009019646 0.003036764) (0.008953648 -0.009985394 0.003463841) (-0.009037256 -0.005999708 0.002513564) (-0.009213411 -0.007035948 0.003132034) (-0.009362352 -0.006002672 0.002981183) (-0.00856828 -0.005999694 0.003029165) (-0.008987861 -0.004999873 0.002997585) (-0.009113071 -0.006000282 0.003508385) (0.009011257 -0.006003308 0.002511367) (0.009127089 -0.006988246 0.003103871) (0.008575594 -0.006004652 0.003032626) (0.009300282 -0.006008406 0.002878413) (0.009167526 -0.005273409 0.003148252) (0.009060468 -0.006015061 0.003524648) (-0.009071748 -0.001999317 0.002518202) (-0.00902486 -0.00299853 0.003011978) (-0.009472559 -0.001999407 0.00297603) (-0.008571458 -0.002000788 0.003027171) (-0.009079807 -0.001000887 0.003026564) (-0.00922266 -0.002005478 0.003667389) (0.009063028 -0.002001357 0.002511439) (0.009000862 -0.003002591 0.003005112) (0.008556926 -0.00200206 0.003021507) (0.009447507 -0.002000823 0.002970901) (0.009063564 -0.001001507 0.003028938) (0.009201738 -0.002001332 0.003648043) (-0.009070874 0.001999892 0.002515724) (-0.009083078 0.00100053 0.003020019) (-0.009472942 0.002000223 0.002977207) (-0.008571438 0.002000524 0.003022202) (-0.009023977 0.003000104 0.003011751) (-0.009228212 0.001999313 0.00365346) (0.009081259 0.002000608 0.002515734) (0.009078355 0.0009996187 0.003029652) (0.008577149 0.002000026 0.003019472) (0.009478557 0.002001778 0.002982639) (0.0090424 0.002999744 0.003006295) (0.009239243 0.001999683 0.003641242) (-0.009039823 0.006010538 0.002511826) (-0.008989087 0.005002085 0.002999938) (-0.00936827 0.005995811 0.002981604) (-0.00857444 0.006018337 0.003026877) (-0.009211241 0.007034379 0.003168079) (-0.009108848 0.006002591 0.003511971) (0.009030413 0.005998874 0.002501557) (0.009000033 0.005000247 0.002997519) (0.008539342 0.005998103 0.003001955) (0.009409475 0.005985618 0.00295911) (0.009176416 0.007269331 0.003154301) (0.009121334 0.005985868 0.003597759) (-0.009186692 0.01026351 0.002643843) (-0.009138914 0.00898579 0.003105964) (-0.009314951 0.009732213 0.002867112) (-0.008566623 0.01000082 0.003010653) (-0.009088853 0.01102299 0.003018044) (-0.00899488 0.01000017 0.003484162) (0.009189522 0.01028288 0.002655073) (0.009150229 0.008988645 0.003101547) (0.008572962 0.01000086 0.003024297) (0.009346474 0.00972331 0.002860898) (0.009081525 0.0110178 0.003028062) (0.009001546 0.009996424 0.003492257) (-0.008979936 0.01399922 0.002493692) (-0.008953838 0.01298091 0.002975773) (-0.008668589 0.01426229 0.003148782) (-0.008854011 0.01497777 0.002885363) (-0.008820738 0.01373244 0.003342145) (0.009013239 0.01399748 0.0024975) (0.008974531 0.01298206 0.002979609) (0.00867818 0.0142817 0.003153097) (0.00886358 0.01497479 0.00287482) (0.008833645 0.01373231 0.003357339) (-0.008396098 0.01799621 0.002991591) (-0.007064526 0.01800539 0.002517263) (-0.00705729 0.01700631 0.00302123) (-0.007561201 0.01800551 0.003013063) (-0.007062193 0.01900348 0.003022743) (-0.007051082 0.01800593 0.003523043) (0.007091222 0.01800701 0.00252623) (0.007081949 0.01700746 0.003027468) (0.007583962 0.01800831 0.00302782) (0.007079726 0.01900924 0.003028913) (0.007082127 0.0180106 0.003538019) (0.008400751 0.01796854 0.00298672) (-0.007035442 0.02200288 0.002509693) (-0.007036397 0.02100143 0.003014815) (-0.007641644 0.02225017 0.003125876) (-0.006554769 0.02200726 0.00302481) (-0.007020679 0.02300432 0.003007892) (-0.007003939 0.0219978 0.003498923) (0.007081149 0.0220097 0.002517628) (0.007071596 0.02100827 0.003024093) (0.006583637 0.02200914 0.003023517) (0.007619914 0.02203572 0.003016093) (0.007023467 0.02300293 0.003010011) (0.007217318 0.02228498 0.003658868) (-0.007106951 0.02600369 0.002500564) (-0.007107238 0.02502334 0.003017477) (-0.006695118 0.02627925 0.00315076) (-0.006864415 0.02675265 0.002876611) (-0.006870272 0.02574241 0.003373097) (-0.005588898 0.02601578 0.003047648) (-0.005081693 0.02701337 0.003046793) (-0.005082125 0.02601378 0.003557954) (0.005576264 0.02601784 0.003039496) (0.005067825 0.02701579 0.003034644) (0.005068747 0.0260176 0.003542356) (0.007114166 0.02600413 0.002502366) (0.00710815 0.02502057 0.003018126) (0.006676979 0.02630134 0.003179261) (0.006856926 0.02674557 0.002885306) (0.006878288 0.02574567 0.003373607) (-0.005055033 0.03001228 0.002517522) (-0.005057352 0.0290101 0.003025123) (-0.005648836 0.03023915 0.003126315) (-0.004563595 0.03001522 0.003027542) (-0.005204237 0.03127915 0.003147672) (-0.005228479 0.03027022 0.003659007) (0.005063893 0.0300199 0.002522094) (0.005058901 0.02901815 0.00302659) (0.00458748 0.0300281 0.003042782) (0.005638733 0.03025359 0.003127681) (0.005228731 0.03128191 0.00316706) (0.005231036 0.03029214 0.003643899) (-0.004819748 0.03369385 0.002360908) (-0.004860652 0.03276919 0.002988272) (-0.004368377 0.03380104 0.002979317) (-0.003067759 0.03404123 0.002537418) (-0.003040574 0.03302014 0.003031452) (-0.003533085 0.03401361 0.003017905) (-0.002550169 0.0340312 0.003051906) (-0.003209595 0.03532579 0.003140791) (-0.003012359 0.03400738 0.003516932) (-0.001533586 0.034043 0.003078685) (-0.001038474 0.03504809 0.00308965) (-0.00102114 0.03403551 0.003581764) (0.001538883 0.03404753 0.003098917) (0.001026954 0.03505342 0.003087681) (0.001026429 0.034037 0.003587487) (0.003060568 0.03403843 0.002571363) (0.003041769 0.03302667 0.003055269) (0.002549215 0.03404655 0.003096324) (0.003522211 0.03401204 0.003018875) (0.003206312 0.03533741 0.003283849) (0.00302427 0.03401938 0.003547237) (0.004776932 0.0337102 0.00235047) (0.004879291 0.03275658 0.002887594) (0.004354141 0.03376503 0.002975525) (-0.002808889 0.03658098 0.002770597) (-0.001031335 0.03821619 0.002584391) (-0.00118679 0.03733692 0.003234674) (-0.001481179 0.03772077 0.002812162) (-0.0005025505 0.03798735 0.003017397) (-0.0008598174 0.03755767 0.003229336) (0.00100922 0.03822543 0.002680145) (0.001154381 0.03744309 0.003248802) (0.0004905324 0.03800157 0.003032396) (0.001488404 0.03777488 0.002876605) (0.0008466713 0.03761489 0.003273311) (0.00280802 0.03668979 0.00281795) (-0.002990854 -0.03380329 0.004388067) (-0.002342618 -0.03372306 0.004842707) (-0.00298429 -0.03277479 0.004863098) (-0.001003388 -0.03400691 0.00453064) (-0.001002118 -0.03472086 0.004808749) (-0.001502635 -0.03400078 0.004986346) (-0.0004992403 -0.03417199 0.005120618) (-0.001005818 -0.0330083 0.005018706) (-0.0009758797 -0.03370743 0.005274434) (0.001015093 -0.03401196 0.004549927) (0.0009970383 -0.03476472 0.004834493) (0.0005013408 -0.03420073 0.005133341) (0.001504141 -0.03400466 0.005012469) (0.001007437 -0.03299827 0.005033855) (0.0009818826 -0.03374266 0.005303161) (0.002973088 -0.03378558 0.004368873) (0.002335134 -0.03369811 0.004814793) (0.002984775 -0.03277486 0.00486709) (-0.004887199 -0.02997697 0.004467262) (-0.004461947 -0.02997936 0.004890195) (-0.004874583 -0.02899172 0.004873123) (-0.003047458 -0.03002291 0.00458565) (-0.003171888 -0.03130498 0.005211002) (-0.003669119 -0.03027588 0.005240406) (-0.002531294 -0.03002131 0.005075482) (-0.003036471 -0.02901892 0.005087434) (-0.003121567 -0.03025238 0.005647378) (-0.001009339 -0.03101796 0.005067858) (-0.001515832 -0.03002476 0.005091356) (-0.0005043964 -0.03002473 0.00508473) (-0.001003703 -0.03001735 0.005570102) (0.0010114 -0.03101491 0.005073294) (0.0005097382 -0.03002203 0.005087902) (0.001520215 -0.03001465 0.005077064) (0.001011438 -0.03001462 0.005571818) (0.003039257 -0.0300151 0.004576323) (0.003183769 -0.03126884 0.005197173) (0.00252777 -0.03001251 0.005057824) (0.003661385 -0.03027955 0.005216663) (0.003034825 -0.02901226 0.005068208) (0.00312603 -0.03024455 0.005640017) (0.004902093 -0.0299982 0.004393751) (0.00437858 -0.02999755 0.004888296) (0.004898322 -0.0287721 0.00489445) (-0.005067569 -0.02601205 0.004556869) (-0.005123016 -0.02724547 0.005128094) (-0.005608345 -0.02601539 0.005021524) (-0.004532475 -0.02600675 0.005037108) (-0.00504523 -0.02501365 0.00505293) (-0.005090963 -0.0260005 0.005590975) (-0.003044911 -0.02702157 0.005095914) (-0.003547433 -0.02601817 0.005085762) (-0.00304571 -0.02602016 0.005602595) (0.003046191 -0.02701826 0.005093068) (0.003548588 -0.02601612 0.005086409) (0.003041017 -0.0260232 0.005595459) (0.00504851 -0.02600187 0.00454532) (0.005122915 -0.02723782 0.005114842) (0.00453941 -0.02600353 0.005067908) (0.005593036 -0.02602022 0.004998323) (0.005025797 -0.02500336 0.00502806) (0.005006967 -0.02601478 0.005598386) (-0.006997962 -0.02199898 0.004499472) (-0.006612929 -0.02201914 0.005012455) (-0.006905022 -0.02098159 0.004989391) (-0.005061824 -0.02300906 0.005062041) (-0.005545116 -0.02200591 0.005035976) (-0.005051047 -0.02100553 0.005059043) (-0.005036971 -0.02200419 0.005545573) (0.005045509 -0.02300585 0.005050395) (0.005541976 -0.02200662 0.005035914) (0.005056797 -0.02101276 0.005056044) (0.005031242 -0.02200584 0.005538346) (0.006939268 -0.02201703 0.004517207) (0.006587831 -0.0219892 0.005011544) (0.006908037 -0.02099521 0.004897755) (-0.007023508 -0.01800059 0.004520189) (-0.007111309 -0.01901958 0.005098611) (-0.007402501 -0.01800816 0.004998697) (-0.006565655 -0.01801205 0.005044728) (-0.006999686 -0.01700041 0.005001312) (-0.007008141 -0.01800127 0.005502794) (0.007038656 -0.01800386 0.004525652) (0.007104647 -0.01900753 0.005108105) (0.006564124 -0.01799993 0.00504693) (0.007399516 -0.01800101 0.005000834) (0.007019542 -0.0170021 0.005010215) (0.007001737 -0.01799912 0.005505215) (-0.007043572 -0.0140061 0.004530446) (-0.007045572 -0.01500422 0.00503835) (-0.007652126 -0.014271 0.005156967) (-0.006547399 -0.01400642 0.005037529) (-0.007032861 -0.01300351 0.005025202) (-0.007004436 -0.01400084 0.005503325) (0.007060892 -0.01400419 0.004542089) (0.007046594 -0.01500107 0.005036696) (0.006549161 -0.0140026 0.005041842) (0.007665537 -0.0142745 0.005160212) (0.007036995 -0.01300273 0.005032321) (0.007008107 -0.01400011 0.005505382) (-0.008373555 -0.009994528 0.004865329) (-0.007066157 -0.01000239 0.004540118) (-0.007062667 -0.01100316 0.005050798) (-0.007570111 -0.01000044 0.005039713) (-0.007069682 -0.009001595 0.005041765) (-0.007060171 -0.01000026 0.005550053) (0.00706197 -0.01000184 0.0045394) (0.007066101 -0.01100483 0.005053389) (0.00756129 -0.01000184 0.005047938) (0.007077261 -0.008997427 0.005038046) (0.007066393 -0.01000267 0.005555464) (0.008315655 -0.009998223 0.004840444) (-0.008797972 -0.005998548 0.004323772) (-0.008470471 -0.005984849 0.004990459) (-0.007071707 -0.007000459 0.005041483) (-0.007541745 -0.006000273 0.005022054) (-0.007059146 -0.005001444 0.00504431) (-0.007059903 -0.006001451 0.005548836) (0.007061603 -0.00700017 0.005031439) (0.007572304 -0.005997615 0.005038393) (0.007052989 -0.005000831 0.005032476) (0.007046708 -0.006000845 0.005531387) (0.008837433 -0.005730189 0.00433881) (0.008402165 -0.006000165 0.004988788) (-0.008899836 -0.002013949 0.00440397) (-0.008563502 -0.002014463 0.00502919) (-0.008842594 -0.0007328038 0.004850238) (-0.007076325 -0.003002847 0.005056011) (-0.007586014 -0.002002432 0.005052599) (-0.007081192 -0.001004314 0.005056042) (-0.007089515 -0.002004925 0.005564798) (0.00706431 -0.003001132 0.00504056) (0.007570844 -0.002001969 0.005039524) (0.007073391 -0.001001398 0.005038829) (0.007081609 -0.002000912 0.005548393) (0.00888285 -0.00201494 0.004396033) (0.008545788 -0.00201698 0.005022362) (0.008821381 -0.0007302906 0.00485379) (-0.008903101 0.002014929 0.004409502) (-0.008841083 0.00073236 0.004859203) (-0.008570621 0.002015284 0.005023085) (-0.007074163 0.0009996952 0.005053646) (-0.007578961 0.002001179 0.005051647) (-0.007070797 0.003000928 0.005049285) (-0.007078394 0.002000841 0.00556308) (0.007058963 0.0009992432 0.005033378) (0.007565436 0.001999644 0.005037729) (0.00707198 0.003001014 0.005045702) (0.007061531 0.002000156 0.005549899) (0.008886867 0.001996255 0.004489037) (0.008800909 0.0009666246 0.004846951) (0.008594852 0.002000537 0.004996757) (-0.008800172 0.005995722 0.004340646) (-0.008477738 0.005983106 0.004994672) (-0.007057855 0.005001101 0.005042324) (-0.007540247 0.006000966 0.005021845) (-0.007072571 0.007001375 0.005042061) (-0.007058693 0.006001542 0.005549907) (0.007069815 0.005000845 0.00504497) (0.007548367 0.00599975 0.005029236) (0.007063294 0.006999802 0.005043589) (0.007080748 0.006001937 0.005553898) (0.00883151 0.006000742 0.004338016) (0.008486629 0.005997514 0.004996835) (-0.008371043 0.009999501 0.004870706) (-0.007072765 0.01000075 0.004544548) (-0.007068775 0.009000514 0.005044867) (-0.00757357 0.009998684 0.005043847) (-0.007072091 0.01100111 0.005052133) (-0.007070601 0.009999486 0.005544545) (0.007073314 0.01000324 0.004549018) (0.007065501 0.009001731 0.005046389) (0.007573176 0.01000249 0.005047904) (0.007076626 0.01100691 0.005055419) (0.007065774 0.01000493 0.005551195) (0.008363797 0.009997438 0.004867911) (-0.007057545 0.01400061 0.00452768) (-0.007038034 0.01299966 0.005020032) (-0.00766709 0.0142628 0.005146934) (-0.006549058 0.01400061 0.005031719) (-0.007047991 0.0150008 0.005033698) (-0.007011335 0.01399901 0.005505321) (0.007061141 0.01400564 0.004534428) (0.007048873 0.01300402 0.005032215) (0.006563023 0.01400784 0.005046675) (0.007674416 0.0142735 0.005150808) (0.00705542 0.0150062 0.005036541) (0.007014793 0.01400353 0.005511973) (-0.007033932 0.0180066 0.004513225) (-0.00700668 0.01700171 0.005000745) (-0.007401908 0.01800881 0.004996661) (-0.006560263 0.01801061 0.005039479) (-0.007114713 0.01902146 0.005107533) (-0.006997581 0.0180005 0.005503812) (0.007027479 0.01800294 0.004511786) (0.007192349 0.01727705 0.005190017) (0.006554622 0.0180061 0.005038078) (0.007409895 0.01799529 0.00489913) (0.007097302 0.01898971 0.005000925) (0.006931983 0.01801353 0.005514287) (-0.00699659 0.02199962 0.004498191) (-0.006903015 0.02098163 0.00498973) (-0.006598133 0.02202101 0.005003082) (-0.005060322 0.0210071 0.005051249) (-0.005544733 0.02200576 0.005030438) (-0.005058715 0.02301347 0.005051393) (-0.005043861 0.02200809 0.005541576) (0.005056222 0.02100782 0.005051983) (0.005541203 0.02200518 0.005032336) (0.005050906 0.02301086 0.005045676) (0.005036078 0.02200796 0.005536324) (0.006929543 0.02201246 0.004499563) (0.006898107 0.02098474 0.004897363) (0.006587459 0.02199047 0.00500242) (-0.005052455 0.02601241 0.004569473) (-0.005043851 0.0250076 0.005046402) (-0.005608557 0.02601347 0.005021234) (-0.004528412 0.02601348 0.005076009) (-0.005138496 0.02724152 0.005123619) (-0.005011846 0.02601581 0.005603691) (-0.003547613 0.02601726 0.005090625) (-0.003049808 0.02701714 0.005095725) (-0.003043983 0.02601944 0.005602477) (0.003547012 0.02601546 0.005082142) (0.00304597 0.0270195 0.005095461) (0.003039269 0.02601959 0.005596653) (0.005056616 0.02601616 0.004533953) (0.005032623 0.02501482 0.005031934) (0.004527177 0.02600828 0.005032301) (0.005602967 0.02601744 0.005008133) (0.005127746 0.02723372 0.005137389) (0.005092609 0.02600029 0.005590485) (-0.004890748 0.02997682 0.004467081) (-0.004878151 0.02899104 0.004880674) (-0.004472652 0.02997779 0.004886998) (-0.003046785 0.03001674 0.004572473) (-0.003041291 0.02901412 0.005067403) (-0.003688641 0.0302886 0.005208454) (-0.0025301 0.03001482 0.005060725) (-0.003150587 0.03128108 0.00521924) (-0.003142774 0.03024226 0.005645163) (-0.001518426 0.03001474 0.005075045) (-0.0005061456 0.03001959 0.00508359) (-0.001008699 0.03101477 0.005061794) (-0.001007876 0.03000952 0.005562233) (0.0005087035 0.0300213 0.005094673) (0.001524954 0.03002381 0.005092496) (0.001014373 0.03101951 0.005082492) (0.001011625 0.03001754 0.005577829) (0.003038802 0.03001574 0.004579734) (0.003040955 0.02901805 0.005080297) (0.002530034 0.03001549 0.005074077) (0.003657706 0.03027908 0.005217279) (0.003159145 0.03124216 0.005228077) (0.003141093 0.03024789 0.005646365) (0.004915933 0.03000047 0.004402718) (0.004902716 0.02877378 0.004899496) (0.004377856 0.02999453 0.004892017) (-0.002988465 0.03379985 0.004356462) (-0.002980967 0.03276867 0.004865239) (-0.002350084 0.03370375 0.004811039) (-0.00099159 0.03401238 0.00454113) (-0.001002447 0.03300813 0.005011721) (-0.001502735 0.03399106 0.00498709) (-0.0005021624 0.03419567 0.005112832) (-0.0009873932 0.03477646 0.004796208) (-0.0009509645 0.03367744 0.005301395) (0.001016225 0.03402183 0.004544406) (0.001011071 0.03301671 0.005038812) (0.0005068701 0.03419461 0.005135246) (0.001510963 0.03401023 0.005023106) (0.0009909317 0.03475517 0.00484877) (0.0009900057 0.0337259 0.005300796) (0.002989094 0.03381157 0.004401812) (0.002990806 0.03277997 0.004888543) (0.002371641 0.03372718 0.004861357) (-0.000990971 -0.02999699 0.006498433) (-0.0009975684 -0.02874827 0.00688312) (0.0009979998 -0.02999015 0.006520487) (0.0009894511 -0.02875713 0.006897506) (-0.003157359 -0.0262736 0.006731177) (-0.002881258 -0.02674265 0.006877471) (-0.003383171 -0.02574922 0.006886704) (-0.002508284 -0.02600827 0.007113177) (-0.003019357 -0.02502319 0.007124134) (-0.001010909 -0.02601696 0.006574477) (-0.0009985355 -0.02722273 0.00716599) (-0.001676864 -0.02630819 0.007208179) (-0.0005021062 -0.02600729 0.007039516) (-0.001009285 -0.02501199 0.007049028) (-0.0009939832 -0.02598071 0.007497159) (0.001009808 -0.02601828 0.006581308) (0.0009936717 -0.02723069 0.007174815) (0.0005038341 -0.02600877 0.007049991) (0.001668894 -0.0263041 0.007200343) (0.001005778 -0.02500593 0.007049391) (0.0009950856 -0.02598363 0.007507215) (0.003136616 -0.02627391 0.006705042) (0.002885446 -0.02674559 0.006873937) (0.002502457 -0.02600336 0.007117609) (0.003377568 -0.02574598 0.006878309) (0.00302293 -0.02502044 0.007113149) (-0.005010656 -0.02201859 0.00659872) (-0.004501773 -0.02199997 0.006999832) (-0.004991704 -0.02098138 0.006902918) (-0.003016923 -0.02200984 0.006562177) (-0.003004399 -0.02300116 0.007020371) (-0.003499397 -0.02200158 0.007008986) (-0.002507744 -0.02200414 0.007048062) (-0.003005289 -0.02100336 0.007041107) (-0.003130573 -0.02224881 0.007631765) (-0.001007053 -0.02300987 0.007070849) (-0.001509119 -0.02200847 0.007081599) (-0.000505846 -0.02200675 0.007076839) (-0.001004497 -0.02100738 0.007083183) (-0.001005867 -0.0220055 0.007577233) (0.001001955 -0.02300251 0.007053909) (0.0004948074 -0.02200827 0.007073732) (0.001508235 -0.02200468 0.007062269) (0.001003271 -0.02100599 0.00707405) (0.0009984728 -0.0220001 0.007569034) (0.003027842 -0.02200734 0.006567187) (0.003006405 -0.02300018 0.007017199) (0.002513673 -0.02200314 0.007041231) (0.003513271 -0.02200048 0.007034157) (0.00303421 -0.02101182 0.007073946) (0.003132137 -0.02202124 0.007635847) (0.005011212 -0.02202073 0.006589911) (0.004520052 -0.02201475 0.00695106) (0.004986767 -0.02098227 0.006899886) (-0.005051166 -0.01800282 0.006571995) (-0.005089372 -0.0189851 0.007101368) (-0.005517617 -0.0180124 0.006932326) (-0.004523286 -0.01800252 0.007045375) (-0.005183374 -0.0172748 0.00718615) (-0.004910932 -0.01801576 0.007407543) (-0.003023223 -0.01900682 0.007078621) (-0.003526827 -0.01800501 0.007064651) (-0.002524607 -0.0180086 0.007076948) (-0.003028889 -0.01700667 0.00707384) (-0.003039766 -0.01801408 0.007568962) (0.003025986 -0.01900968 0.007075564) (0.002522478 -0.01800748 0.007073065) (0.003540468 -0.01801056 0.00708191) (0.003031544 -0.01700711 0.007074248) (0.003031212 -0.01800819 0.007573265) (0.005042528 -0.01800411 0.006559508) (0.005096495 -0.01898508 0.007097049) (0.004535269 -0.01800616 0.007057811) (0.0055176 -0.01801198 0.006925205) (0.005146893 -0.01728373 0.007172286) (0.004908165 -0.01801472 0.007410983) (-0.006865514 -0.01399905 0.006356756) (-0.00637409 -0.01399484 0.006845777) (-0.00503372 -0.01400928 0.006554563) (-0.005024812 -0.01500644 0.007050512) (-0.005504672 -0.01400266 0.007010217) (-0.004531363 -0.01400938 0.007055737) (-0.005026716 -0.01300683 0.00704189) (-0.005160024 -0.01428775 0.007657819) (0.005050839 -0.0140031 0.006549143) (0.005027276 -0.01500125 0.007030971) (0.004538497 -0.01400347 0.007048889) (0.00568495 -0.01427334 0.007149351) (0.005038237 -0.01299998 0.00705204) (0.005148742 -0.01404267 0.007644827) (0.006875197 -0.01396821 0.006373875) (0.006357608 -0.01397185 0.006844601) (-0.007077009 -0.009972137 0.006581336) (-0.006844743 -0.01073374 0.006837452) (-0.006579392 -0.009971685 0.007074328) (-0.006868295 -0.008994322 0.006874184) (-0.00503895 -0.01100364 0.007067705) (-0.005548742 -0.01000491 0.0070623) (-0.004537633 -0.01000367 0.007068971) (-0.005036749 -0.009001963 0.007061063) (-0.005037372 -0.0100047 0.007566758) (0.005040883 -0.01100281 0.007059232) (0.004538351 -0.01000328 0.007064901) (0.005531322 -0.01000587 0.007052759) (0.00503715 -0.009004454 0.007052193) (0.005026046 -0.01000492 0.007554042) (0.007078611 -0.009971779 0.006577842) (0.006834017 -0.0107331 0.006834311) (0.006576852 -0.009971454 0.007075249) (0.006867452 -0.008998691 0.006869291) (-0.007193047 -0.00600379 0.006706752) (-0.006936359 -0.007000452 0.00693626) (-0.006697291 -0.006008405 0.007218665) (-0.006969868 -0.005019666 0.006978391) (-0.005039538 -0.00700048 0.007059189) (-0.005559286 -0.006001685 0.007072048) (-0.005051382 -0.005001285 0.007070804) (-0.005035353 -0.006000659 0.007554512) (0.005032879 -0.007003042 0.007038917) (0.005544078 -0.006002162 0.007043814) (0.005042833 -0.005002015 0.007052139) (0.005024864 -0.006002065 0.007526531) (0.007175971 -0.006003181 0.006663234) (0.006911705 -0.007001273 0.006911888) (0.00667897 -0.006003342 0.007167418) (0.00695422 -0.005004914 0.006958863) (-0.00700797 -0.002002337 0.006494681) (-0.007068375 -0.002985404 0.006982963) (-0.007343071 -0.001964095 0.006852278) (-0.00648859 -0.002000436 0.006984077) (-0.007053758 -0.0009986947 0.007043738) (-0.006815618 -0.001999014 0.007289795) (-0.0050531 -0.0030012 0.007078355) (-0.005554406 -0.002000233 0.007080175) (-0.005040324 -0.001000135 0.007061555) (-0.00504767 -0.002000556 0.007578471) (0.005058036 -0.003002561 0.007072918) (0.005585907 -0.002004039 0.007089843) (0.005054233 -0.001001328 0.007074543) (0.005053658 -0.002002441 0.007571358) (0.007017618 -0.001999154 0.00651021) (0.007032703 -0.003014026 0.006958724) (0.006677944 -0.002281551 0.007167306) (0.007289315 -0.001964237 0.006818122) (0.007060557 -0.0009854573 0.007062875) (0.006819711 -0.001725092 0.007325017) (-0.00699622 0.002000382 0.006500862) (-0.007051251 0.0009984476 0.007042498) (-0.007306871 0.002004357 0.006780208) (-0.006490983 0.002000426 0.006998504) (-0.00698926 0.002989443 0.007070104) (-0.006840968 0.001961414 0.007334007) (-0.005039933 0.00100234 0.007067185) (-0.005555157 0.002005862 0.007097609) (-0.005057211 0.003002858 0.007091227) (-0.005047853 0.002003885 0.007586159) (0.0050501 0.001002853 0.007069091) (0.005567328 0.002010327 0.0070853) (0.00506036 0.003003942 0.007088452) (0.005061799 0.002005985 0.007588082) (0.006980908 0.001999368 0.006482072) (0.007047708 0.0009989293 0.00705091) (0.00648144 0.002000408 0.006983899) (0.007306401 0.001998595 0.006798481) (0.00704351 0.002969309 0.007049375) (0.006798752 0.001992453 0.007290552) (-0.007208696 0.00601012 0.006695535) (-0.006985783 0.005017665 0.006960902) (-0.006705216 0.006002963 0.007197056) (-0.006935714 0.007000954 0.006936195) (-0.005055853 0.005001711 0.007073776) (-0.005562016 0.006001639 0.007072247) (-0.005041529 0.007002379 0.007056693) (-0.005037457 0.006001183 0.007552879) (0.005058306 0.005001024 0.007083272) (0.005567329 0.006001323 0.007088344) (0.005052958 0.007001468 0.007072094) (0.005041331 0.006001095 0.007563486) (0.00724377 0.006010704 0.006703393) (0.006991659 0.005030456 0.00698495) (0.00670356 0.006003529 0.00723541) (0.006950821 0.007001233 0.006949765) (-0.007081088 0.009971603 0.00658054) (-0.006883365 0.008993373 0.006861585) (-0.006573203 0.009971958 0.007058913) (-0.006858253 0.01073704 0.006821888) (-0.005039759 0.009004683 0.007054639) (-0.005544207 0.01000972 0.00705259) (-0.004539862 0.01000482 0.007062055) (-0.005042923 0.01100595 0.007064107) (-0.005046478 0.01000745 0.007551378) (0.005053586 0.009005059 0.007082923) (0.004546775 0.01000513 0.007084791) (0.005552821 0.01001253 0.007097498) (0.005045743 0.0110054 0.007084692) (0.005051036 0.01000908 0.007593268) (0.007096956 0.009984751 0.006582289) (0.006886067 0.008999611 0.006882436) (0.00658598 0.009984639 0.007092494) (0.00686293 0.01096571 0.006845175) (-0.006887505 0.01399958 0.006368256) (-0.006362622 0.01399823 0.006856629) (-0.005038747 0.01400931 0.006562201) (-0.005026056 0.01300631 0.007045637) (-0.005508405 0.01400156 0.007010092) (-0.004533496 0.01400969 0.007059371) (-0.005030664 0.01500444 0.007044343) (-0.005169528 0.01428535 0.007653764) (0.005040126 0.01400476 0.006554398) (0.005028119 0.01300224 0.007040079) (0.004532858 0.01400418 0.007051906) (0.005507312 0.01400211 0.007010269) (0.005029577 0.01500457 0.007037706) (0.0051417 0.0142735 0.007662224) (0.006888844 0.01397155 0.006393526) (0.006374102 0.01396952 0.006878732) (-0.005037082 0.01800006 0.006569754) (-0.005151074 0.01727551 0.007194488) (-0.005521309 0.01801399 0.006941852) (-0.004516784 0.01800186 0.007047693) (-0.005090723 0.01898651 0.007099234) (-0.004913484 0.01801693 0.007406208) (-0.003023753 0.01700748 0.007068665) (-0.003522081 0.01800657 0.007059975) (-0.002517806 0.01800792 0.007070937) (-0.003020339 0.01900863 0.007066168) (-0.003018691 0.01800971 0.007574177) (0.003032264 0.01700297 0.007073751) (0.002526953 0.0179998 0.007071894) (0.003529263 0.01800415 0.007061163) (0.003027395 0.01900315 0.007068491) (0.003037073 0.01799258 0.007576472) (0.005053341 0.01800373 0.006561356) (0.005160902 0.01727136 0.007199146) (0.004532805 0.01800254 0.007038039) (0.005528368 0.01801389 0.006940037) (0.005088651 0.01898991 0.007105572) (0.004917568 0.0180162 0.007415829) (-0.005017343 0.02201983 0.006602268) (-0.004986911 0.02098372 0.006908614) (-0.004521824 0.02201571 0.006950763) (-0.00302569 0.02200794 0.006559441) (-0.003017286 0.0210042 0.007043685) (-0.003514044 0.02200298 0.007017078) (-0.002514196 0.02200196 0.007049116) (-0.003012257 0.02300448 0.007023302) (-0.003121545 0.02225191 0.007631477) (-0.001007605 0.02100813 0.007077385) (-0.001515484 0.02200666 0.007085941) (-0.0005044925 0.02200912 0.007077167) (-0.001010823 0.02300817 0.007074594) (-0.001002994 0.02201065 0.007573197) (0.001013122 0.02100601 0.007073885) (0.000507263 0.02200721 0.007071468) (0.001513293 0.02200691 0.007064582) (0.001006777 0.02300678 0.007056923) (0.001012642 0.02200919 0.00756149) (0.0030274 0.02200624 0.006554016) (0.003015878 0.02100234 0.007032418) (0.002511646 0.02200246 0.007032889) (0.00350208 0.02199749 0.007015203) (0.003010594 0.02299999 0.007020628) (0.003125271 0.02225959 0.007624419) (0.005001338 0.02201536 0.006590736) (0.004984402 0.02098187 0.006907132) (0.004496614 0.02199933 0.006996392) (-0.003185532 0.02626497 0.006695709) (-0.003018701 0.02502297 0.007120281) (-0.003386358 0.02574769 0.00687511) (-0.002508614 0.02600806 0.007116602) (-0.002884169 0.02673889 0.0068776) (-0.001013586 0.02601436 0.006580401) (-0.001007665 0.02500882 0.007056109) (-0.001665026 0.02629535 0.007227607) (-0.0005022368 0.02600791 0.007042811) (-0.0009946179 0.02722661 0.0071662) (-0.000996561 0.02598397 0.007496848) (0.001004202 0.02600915 0.006562987) (0.001000078 0.0250094 0.007051412) (0.0005000322 0.02600607 0.007043685) (0.001501213 0.02600541 0.007017762) (0.001000938 0.0272372 0.007175277) (0.0009998527 0.02598492 0.007504848) (0.003132573 0.02627683 0.006716243) (0.003025668 0.02502569 0.007125859) (0.002516355 0.02601871 0.007111098) (0.003372763 0.02574748 0.006876976) (0.002872148 0.02674441 0.006880508) (-0.0009917696 0.0299958 0.006499711) (-0.0009973146 0.028753 0.006878935) (0.0009956098 0.0300026 0.006519215) (0.0009995526 0.02876815 0.006889926) (-0.0009846525 -0.02176632 0.008359407) (0.0009842502 -0.02176059 0.008359149) (-0.002991898 -0.01799603 0.008400691) (-0.001137858 -0.01827248 0.008686835) (-0.0008565977 -0.01870916 0.008838654) (-0.00147845 -0.01776317 0.008853465) (-0.0004892777 -0.01793491 0.008946134) (-0.001000653 -0.01698736 0.008998722) (0.001128335 -0.01829267 0.008697695) (0.0008738844 -0.01871104 0.008827355) (0.0004907907 -0.01793434 0.008944696) (0.001488954 -0.01776154 0.008864457) (0.0009980264 -0.01698709 0.008991909) (0.002994185 -0.01799622 0.008402156) (-0.003156193 -0.01427733 0.008688547) (-0.002866033 -0.01497412 0.008839515) (-0.003352173 -0.01372578 0.008843755) (-0.002495576 -0.01400106 0.00901315) (-0.002978869 -0.01298179 0.008973456) (-0.001014728 -0.01401215 0.008569988) (-0.001009139 -0.01502133 0.009153551) (-0.001538016 -0.01404173 0.009153195) (-0.0005012153 -0.01400354 0.008991308) (-0.000999468 -0.01299947 0.009003098) (-0.0009787032 -0.01394827 0.009357883) (0.001021224 -0.01401031 0.008589579) (0.0009996012 -0.0150178 0.009147545) (0.0005057175 -0.01400133 0.00899609) (0.001513666 -0.01403317 0.009145787) (0.001007158 -0.01300561 0.009007229) (0.0009833126 -0.0139492 0.00935556) (0.003131974 -0.01426323 0.008672516) (0.002879638 -0.01497509 0.0088556) (0.002494276 -0.01400085 0.009014562) (0.003354665 -0.01372471 0.008815276) (0.002977156 -0.01298213 0.008973327) (-0.004873201 -0.009999547 0.0083486) (-0.003016541 -0.0100045 0.008565868) (-0.0030412 -0.01102268 0.009073233) (-0.003489824 -0.009998811 0.009006139) (-0.002663856 -0.010256 0.009180223) (-0.003129589 -0.009025392 0.009184011) (-0.002858214 -0.009723413 0.00933453) (-0.001005985 -0.01000343 0.008589214) (-0.001004243 -0.01100284 0.009048462) (-0.001507071 -0.01000128 0.009059195) (-0.0005022964 -0.01000519 0.009117348) (-0.001005015 -0.01000606 0.009612644) (0.001005995 -0.01000167 0.00859233) (0.00100328 -0.01100229 0.009050026) (0.0005033994 -0.01000204 0.009121793) (0.001505698 -0.01000019 0.009063952) (0.001003784 -0.01000206 0.009614894) (0.003013148 -0.01000132 0.008579716) (0.00303674 -0.01102217 0.009084657) (0.002662003 -0.01026441 0.00918934) (0.003486188 -0.009997243 0.008998773) (0.003122343 -0.00899056 0.009151465) (0.002854642 -0.009743347 0.009332148) (0.004872883 -0.009965343 0.008363812) (-0.005008034 -0.005998061 0.008517784) (-0.00436656 -0.006002425 0.008842361) (-0.003013339 -0.006000897 0.008543823) (-0.002999627 -0.007000041 0.008995962) (-0.003634981 -0.005998639 0.009164195) (-0.003013768 -0.004999879 0.009039522) (-0.002964044 -0.005998384 0.00941467) (0.003027325 -0.006001407 0.008571029) (0.003163576 -0.007273352 0.009189018) (0.003614984 -0.005988086 0.009149388) (0.003021931 -0.005000978 0.009040543) (0.002975967 -0.005982835 0.009457808) (0.004989815 -0.005997458 0.008479096) (0.004360074 -0.005999947 0.008859177) (-0.005001997 -0.002001024 0.008601888) (-0.004492258 -0.00199796 0.008910611) (-0.004857121 -0.0009689511 0.008809536) (-0.003031456 -0.002002037 0.00859149) (-0.00302619 -0.003000865 0.009075064) (-0.003672286 -0.002034296 0.009253655) (-0.003032014 -0.001005396 0.00908009) (-0.002993642 -0.001996973 0.009506596) (0.003025088 -0.002002102 0.008590582) (0.003018604 -0.003000877 0.00906363) (0.00365719 -0.002043416 0.009262697) (0.003023195 -0.001000667 0.009068961) (0.002991865 -0.001996722 0.009510152) (0.005001035 -0.002001489 0.008599237) (0.004491513 -0.001997602 0.008911582) (0.004880594 -0.0009675301 0.00881851) (-0.005001199 0.002000642 0.008600152) (-0.004834839 0.0009659638 0.00884163) (-0.004492405 0.001999416 0.008907854) (-0.003031767 0.00200113 0.008594164) (-0.003021891 0.000999647 0.009087853) (-0.003685921 0.002040278 0.009251002) (-0.003025696 0.003001009 0.009073735) (-0.002991406 0.001996882 0.009513657) (0.003029873 0.002001755 0.008590876) (0.003014577 0.001001332 0.009073055) (0.003680716 0.002039827 0.009251365) (0.003028995 0.00300176 0.0090722) (0.002990773 0.001997294 0.009503166) (0.005031369 0.002018597 0.008570122) (0.004846569 0.0007223558 0.008812085) (0.004406352 0.002014915 0.008925678) (-0.00500737 0.005997484 0.008503202) (-0.004379436 0.006000035 0.008848231) (-0.003015939 0.006002974 0.0085514) (-0.003017347 0.005002512 0.009037847) (-0.003608819 0.005986936 0.009146206) (-0.003151114 0.007278635 0.009184024) (-0.002973252 0.005984271 0.009444877) (0.003018419 0.006001249 0.008564761) (0.003012987 0.005001108 0.009046625) (0.003611172 0.005988088 0.009158667) (0.003152605 0.007271515 0.009185827) (0.002979182 0.00598254 0.009452883) (0.005000869 0.005998466 0.008499305) (0.004357497 0.006003633 0.008854119) (-0.004857364 0.009997241 0.008354052) (-0.003008761 0.01000188 0.008561647) (-0.003117074 0.008986165 0.009139593) (-0.003495941 0.009997435 0.009007005) (-0.00264637 0.01026451 0.00920078) (-0.003027267 0.01102055 0.009079518) (-0.002860169 0.00973164 0.00932759) (-0.001005536 0.01000323 0.008588856) (-0.001501817 0.01000209 0.009055654) (-0.0005040915 0.01000429 0.009121455) (-0.001001787 0.01100218 0.009046982) (-0.00100375 0.01000278 0.009614177) (0.001008177 0.0100043 0.00859157) (0.0005042148 0.01000715 0.009119825) (0.001509273 0.01000381 0.009061439) (0.001005892 0.01100325 0.00904782) (0.001004697 0.01000594 0.009614302) (0.003018928 0.009997034 0.008583425) (0.003115259 0.008989694 0.009148938) (0.002646468 0.01027068 0.009193291) (0.003494148 0.009998375 0.009013517) (0.00301747 0.01102166 0.009092576) (0.002853231 0.009730578 0.00933508) (0.004867507 0.01000031 0.008366255) (-0.003157312 0.0142669 0.008680399) (-0.002978075 0.01298178 0.008974356) (-0.003353064 0.01372931 0.008827721) (-0.002496467 0.01400031 0.009013117) (-0.002870358 0.01497455 0.008846339) (-0.001013248 0.01400239 0.008584655) (-0.001005491 0.01300099 0.009006288) (-0.001507898 0.01403606 0.009162236) (-0.0005018728 0.01399626 0.008996082) (-0.001013535 0.01502679 0.009154701) (-0.0009857134 0.01395227 0.009362871) (0.0009984459 0.01400492 0.008596929) (0.001003324 0.0130006 0.009001169) (0.0004972994 0.01400435 0.009000358) (0.001521492 0.01403405 0.009164213) (0.001001992 0.01501463 0.009153055) (0.0009890957 0.01394883 0.009359205) (0.003144507 0.01426379 0.008678509) (0.002979863 0.01298249 0.008975501) (0.0024998 0.01399848 0.009014459) (0.003351449 0.01373515 0.00882055) (0.00288019 0.01497893 0.008860544) (-0.002992528 0.01799512 0.008400862) (-0.001144694 0.01828121 0.008700135) (-0.0009992311 0.01698685 0.008998176) (-0.001495549 0.0177793 0.008858623) (-0.0004953295 0.01793441 0.008935134) (-0.0008534542 0.01870693 0.008821707) (0.001148635 0.01829423 0.008697444) (0.0009987196 0.0169876 0.008992621) (0.0004893469 0.01793812 0.008946177) (0.001483035 0.0177549 0.008852863) (0.000868231 0.01869934 0.008828841) (0.002991623 0.01799524 0.008399572) (-0.0009943566 0.02177244 0.008364778) (0.0009878318 0.0217623 0.008367858) (2.952015e-07 -0.01875784 -0.008856253) (-0.001978956 -0.01694731 -0.008862152) (-0.002476202 -0.01596745 -0.008874379) (-0.001495736 -0.01599482 -0.009005684) (-0.001995135 -0.01499709 -0.009011815) (3.842475e-07 -0.01375831 -0.009362918) (-2.296516e-07 -0.01699407 -0.009018378) (-0.0005034586 -0.01601556 -0.009090623) (0.0005011532 -0.01600572 -0.009095301) (4.806195e-07 -0.01506863 -0.009187411) (0.001987842 -0.01694533 -0.008861604) (0.001498638 -0.0159972 -0.009006922) (0.002477685 -0.01596917 -0.008866497) (0.001998498 -0.01499768 -0.009008088) (0.003482581 -0.01199394 -0.008875103) (0.003855341 -0.01096561 -0.008808837) (0.002880741 -0.008010798 -0.009352288) (0.00398822 -0.008997407 -0.008872251) (0.003526664 -0.008017989 -0.009076545) (0.004343903 -0.00796404 -0.008830861) (0.003976747 -0.007000319 -0.008979194) (-0.002978083 0.004002124 -0.009486174) (-0.004038887 0.003001891 -0.009082053) (-0.004385475 0.00399785 -0.008866185) (-0.003702419 0.004007673 -0.009226891) (-0.004005842 0.004999321 -0.00903238) (0.00288252 0.008008504 -0.00931354) (0.003972357 0.007000701 -0.008966678) (0.003527422 0.008016212 -0.009048447) (0.004365221 0.007963558 -0.008826861) (0.003982504 0.008997677 -0.008875245) (0.003871979 0.01096504 -0.008824599) (0.003479659 0.01199431 -0.008879693) (0.001995611 0.0149964 -0.009006538) (0.001495572 0.01599628 -0.009007712) (0.002466463 0.01596518 -0.008853987) (0.001984896 0.01695471 -0.00884554) (9.367799e-08 0.01873996 -0.008857311) (-0.001981484 -0.02576789 -0.007353533) (-0.002357606 -0.02771385 -0.006793193) (-0.00149954 -0.02798168 -0.006901219) (-0.00199827 -0.02699799 -0.006995948) (-2.009513e-07 -0.0259984 -0.007526726) (-1.16374e-06 -0.0287581 -0.006880818) (-0.0004986419 -0.02800047 -0.007012611) (0.00049787 -0.02800623 -0.007019823) (1.71097e-07 -0.02724752 -0.007179084) (0.001973962 -0.02595347 -0.007351369) (0.001833546 -0.02868781 -0.006766248) (0.001488783 -0.0279677 -0.006954285) (0.002360358 -0.02774754 -0.006835417) (0.001994543 -0.0269952 -0.007075987) (-0.002845139 -0.02273521 -0.007787275) (-0.002979593 -0.02397406 -0.007373542) (-0.003329315 -0.02171514 -0.007789641) (-0.003876911 -0.0219783 -0.007357733) (-0.00384955 -0.02472978 -0.006825133) (-0.004352182 -0.02371196 -0.006817456) (-0.003498744 -0.02401477 -0.007077204) (-0.003978151 -0.02298472 -0.007058133) (-0.000973695 -0.0247311 -0.007828703) (-0.0009970132 -0.02303435 -0.008035185) (-0.001000812 -0.02400346 -0.007498221) (-0.002481015 -0.02197629 -0.007950619) (-0.001495848 -0.02201022 -0.008120323) (-0.002000028 -0.02199887 -0.007509257) (-0.001998356 -0.02499908 -0.006999778) (-0.002495759 -0.02399608 -0.006995248) (-0.001501732 -0.02401061 -0.007058477) (-0.002000448 -0.02300229 -0.007016144) (0.0009759796 -0.02473943 -0.007837533) (0.001000933 -0.0230364 -0.00804304) (0.0009982905 -0.02400144 -0.007502049) (2.837682e-07 -0.02176049 -0.008358304) (-0.0004950749 -0.02222919 -0.008158888) (0.0004977502 -0.02224574 -0.00815889) (2.460985e-06 -0.02200879 -0.00759665) (1.579314e-06 -0.02502276 -0.007081196) (-0.0005005628 -0.02401176 -0.007046557) (0.000500335 -0.02401108 -0.007048829) (8.887504e-07 -0.02300898 -0.007069553) (0.002830365 -0.02272438 -0.007809711) (0.002990608 -0.0239785 -0.007398299) (0.001493348 -0.02201216 -0.00811206) (0.002483996 -0.02197924 -0.007954728) (0.001998669 -0.02200034 -0.007511673) (0.002002609 -0.02500169 -0.007012992) (0.001503655 -0.02401023 -0.007053085) (0.002506075 -0.02400107 -0.007014009) (0.002005341 -0.02300502 -0.00702419) (0.003344019 -0.02172949 -0.007788112) (0.003966771 -0.02196655 -0.007366751) (0.003863717 -0.02473852 -0.006864416) (0.003513313 -0.02401636 -0.00711019) (0.004353431 -0.02373259 -0.006842008) (0.004000449 -0.02301679 -0.007081665) (-0.004805994 -0.0197406 -0.007314725) (-0.005362593 -0.01973 -0.006847479) (-0.002968116 -0.0209777 -0.007954144) (-0.003018017 -0.01903397 -0.008138783) (-0.003013267 -0.02000192 -0.007539106) (-0.004353867 -0.01796103 -0.007837807) (-0.003507169 -0.01800457 -0.00811174) (-0.004001355 -0.01799843 -0.007505509) (-0.00418719 -0.02128617 -0.007154584) (-0.004623871 -0.02026484 -0.007144527) (-0.003525603 -0.02000637 -0.007048873) (-0.004015263 -0.01900182 -0.007033114) (-0.001000771 -0.02000774 -0.00852821) (-0.0010069 -0.02099459 -0.008000246) (-0.001005875 -0.01899953 -0.008069464) (-0.001006094 -0.02000047 -0.007554641) (-0.001997327 -0.01802106 -0.008617095) (-0.002506563 -0.01800034 -0.008020626) (-0.001504606 -0.01800097 -0.008065131) (-0.002014934 -0.01800297 -0.007564272) (-0.002011722 -0.02100221 -0.007050931) (-0.002516766 -0.0200023 -0.00706163) (-0.001512259 -0.02000172 -0.007064341) (-0.002018799 -0.0190025 -0.007070362) (0.001001797 -0.02000761 -0.008527131) (0.0009999021 -0.02100097 -0.007998837) (0.001001549 -0.01900563 -0.00806408) (0.001003753 -0.02000455 -0.007554597) (1.214242e-06 -0.01800301 -0.008512866) (-0.0005020767 -0.01800373 -0.008058388) (0.0005046353 -0.01800732 -0.008057616) (1.159743e-06 -0.02100559 -0.007067098) (-0.0005021013 -0.02000383 -0.00706639) (0.0005028929 -0.02000538 -0.007066092) (0.002823149 -0.01969163 -0.008299921) (0.002970119 -0.02098652 -0.00795411) (0.003119562 -0.0190154 -0.00814523) (0.003009109 -0.01999744 -0.007538765) (0.002002199 -0.01801321 -0.008630468) (0.001506401 -0.01800834 -0.008069247) (0.0025157 -0.01800223 -0.008047092) (0.002013122 -0.01800546 -0.007571054) (0.002008875 -0.02100558 -0.007057117) (0.001508099 -0.02000484 -0.007070778) (0.00251581 -0.02000333 -0.007070111) (0.002013615 -0.01900376 -0.007074537) (0.004855315 -0.01971807 -0.007294193) (0.0035219 -0.01803292 -0.008132222) (0.00434749 -0.01795895 -0.007858673) (0.004005915 -0.01800113 -0.007506961) (0.004004251 -0.02100042 -0.007006736) (0.003521233 -0.01999645 -0.007060545) (0.004658882 -0.0202634 -0.007145951) (0.004022181 -0.01900342 -0.007037297) (0.00534886 -0.0197297 -0.006864742) (-0.004887888 -0.0149781 -0.007837855) (-0.004998549 -0.01599842 -0.007588126) (-0.005326256 -0.01372374 -0.007823198) (-0.005865972 -0.01396805 -0.007356274) (-0.005886394 -0.01698505 -0.006881443) (-0.006311694 -0.015706 -0.00680728) (-0.005632627 -0.01603057 -0.00713303) (-0.005980461 -0.01498822 -0.007067784) (-0.003003067 -0.01600347 -0.008591363) (-0.003006333 -0.01699884 -0.008014784) (-0.003015674 -0.01500245 -0.00804407) (-0.003019277 -0.01600581 -0.007577265) (-0.00400388 -0.01400121 -0.008430131) (-0.004511896 -0.01400373 -0.008110899) (-0.003519211 -0.01400511 -0.00806404) (-0.004033744 -0.0140037 -0.00758055) (-0.004024117 -0.01700231 -0.007059244) (-0.004529819 -0.01600262 -0.007066796) (-0.003526426 -0.01600591 -0.007085439) (-0.004031694 -0.01500446 -0.007072672) (-0.001000999 -0.01600091 -0.008561365) (-0.001003887 -0.0169998 -0.008054734) (-0.001002548 -0.01500409 -0.008089073) (-0.002006629 -0.01400096 -0.00855589) (-0.002518783 -0.01400314 -0.008058504) (-0.001505308 -0.01400509 -0.008077336) (0.001003157 -0.01600222 -0.008561349) (0.001005469 -0.0170064 -0.008056454) (0.00100662 -0.01500387 -0.008089585) (4.586279e-06 -0.01401465 -0.008642718) (-0.0004983436 -0.01400332 -0.008098197) (0.0005055869 -0.01400622 -0.008102513) (0.003009437 -0.01600749 -0.008607886) (0.003006135 -0.01700056 -0.008014222) (0.003011433 -0.01500728 -0.00806024) (0.00302368 -0.01600645 -0.007564146) (0.002008383 -0.01400286 -0.008555751) (0.001507632 -0.01400406 -0.008073665) (0.002520531 -0.01400525 -0.008069499) (0.004874175 -0.01496429 -0.007878854) (0.005010907 -0.01598545 -0.007595252) (0.003995824 -0.01400199 -0.008415799) (0.003524598 -0.01401138 -0.008064838) (0.004509436 -0.01400288 -0.00812382) (0.004036679 -0.01401635 -0.007591306) (0.004037777 -0.01700474 -0.007069814) (0.003536435 -0.01600687 -0.007077409) (0.004550177 -0.016003 -0.007082417) (0.004040941 -0.01500682 -0.007084536) (0.005858624 -0.01396202 -0.00735307) (0.005866827 -0.01697146 -0.006886413) (0.005622512 -0.01602065 -0.00713378) (0.00601892 -0.01500047 -0.007012113) (-0.00483491 -0.01172816 -0.008350234) (-0.004995842 -0.01300414 -0.008003271) (-0.005086612 -0.01098676 -0.008102154) (-0.005019151 -0.01200118 -0.00753359) (-0.005433366 -0.0100156 -0.007931302) (-0.006010483 -0.01000078 -0.007515441) (-0.006118941 -0.01300582 -0.007129722) (-0.00643937 -0.01202908 -0.006953498) (-0.005542249 -0.01200176 -0.007054679) (-0.006152944 -0.01125941 -0.007165545) (-0.004034068 -0.01300381 -0.007067759) (-0.004538534 -0.01200502 -0.007060034) (-0.004037271 -0.01100343 -0.007063012) (0.003013261 -0.01200737 -0.008542037) (0.003025934 -0.01300686 -0.008057287) (0.003018158 -0.01100497 -0.008054491) (0.004845136 -0.01173059 -0.008329748) (0.005018413 -0.01301667 -0.007940395) (0.005090215 -0.01098164 -0.008098298) (0.005013262 -0.01200596 -0.007525367) (0.004141997 -0.01003589 -0.008672151) (0.003519041 -0.0100033 -0.008050817) (0.004515444 -0.01000037 -0.008038604) (0.004028585 -0.01000341 -0.007562626) (0.00404565 -0.0130093 -0.007084336) (0.004550055 -0.01200559 -0.007077926) (0.004037512 -0.01100449 -0.007066918) (0.00550823 -0.009998488 -0.007918955) (0.005987456 -0.009988493 -0.007574334) (0.006124136 -0.01300296 -0.007132721) (0.005543103 -0.01200394 -0.007058509) (0.006448717 -0.01203152 -0.006938748) (0.006149966 -0.01127193 -0.00717905) (-0.004924949 -0.008018119 -0.008426543) (-0.005178561 -0.009000472 -0.008170045) (-0.005160809 -0.007270109 -0.008193152) (-0.005052547 -0.008001352 -0.007576961) (-0.005586718 -0.005986764 -0.008093294) (-0.006140731 -0.005998351 -0.007664612) (-0.006025498 -0.009001011 -0.007028438) (-0.006680287 -0.008002437 -0.007139823) (-0.005549164 -0.008001293 -0.007047022) (-0.006064127 -0.007002456 -0.00705929) (0.00302545 -0.008001646 -0.00858556) (0.003021174 -0.009002789 -0.008069555) (0.003026031 -0.007000671 -0.008080505) (0.004913823 -0.008016582 -0.008412063) (0.00517033 -0.009008311 -0.008182033) (0.005153131 -0.007286549 -0.008196489) (0.005040886 -0.00800677 -0.007569532) (0.004025642 -0.006001191 -0.008540627) (0.003525483 -0.006001825 -0.008058594) (0.004537171 -0.00600396 -0.008055535) (0.005590081 -0.005986963 -0.008109616) (0.006151741 -0.006000662 -0.007668911) (0.006008049 -0.009000441 -0.007014659) (0.005533243 -0.008002537 -0.00704841) (0.006644977 -0.008002892 -0.007120169) (0.006053465 -0.007001927 -0.007067643) (-0.006833606 -0.003723963 -0.007304852) (-0.00503095 -0.004003697 -0.008552464) (-0.005024583 -0.005001074 -0.008042546) (-0.005039134 -0.0029997 -0.008065624) (-0.005040754 -0.004001379 -0.007570286) (-0.005644659 -0.001999303 -0.008173476) (-0.006213973 -0.002043608 -0.007740928) (-0.006083155 -0.005002755 -0.007095929) (-0.006670845 -0.004261503 -0.007190455) (-0.005559861 -0.00400166 -0.007081998) (-0.006046795 -0.003001469 -0.007081393) (0.005023836 -0.004002293 -0.008554369) (0.005027014 -0.00500118 -0.008045847) (0.005041669 -0.003001953 -0.008069193) (0.005049321 -0.004002461 -0.007574289) (0.006836237 -0.003718705 -0.007313271) (0.005649181 -0.001996012 -0.008173782) (0.006313086 -0.00173494 -0.007810695) (0.006156073 -0.002273425 -0.007689919) (0.006082313 -0.00500444 -0.00711292) (0.005565878 -0.004003104 -0.007095189) (0.006680186 -0.004267543 -0.007199782) (0.006039148 -0.003002819 -0.00708114) (0.007310209 -0.003725038 -0.006827022) (-0.006821687 -9.584627e-09 -0.007307262) (-0.007305513 -2.655335e-07 -0.006833222) (-0.005083346 -1.152922e-05 -0.008598281) (-0.005021766 -0.001000411 -0.008041582) (-0.005039338 0.001001473 -0.008059478) (-0.005047568 2.050976e-06 -0.007578299) (-0.005668275 0.001997956 -0.008175126) (-0.006223447 0.002039755 -0.007722878) (-0.00606212 -0.00100482 -0.007089896) (-0.006482327 -2.490207e-07 -0.006986075) (-0.005554604 2.49463e-06 -0.007080274) (-0.00606422 0.001010758 -0.007088465) (-0.004052437 0.002002143 -0.008613371) (-0.004556424 0.002002801 -0.008111396) (-0.003539897 0.002001219 -0.008103522) (0.005069255 -1.328879e-05 -0.008574769) (0.005008604 -0.001002268 -0.008028198) (0.005025958 0.001000391 -0.008039985) (0.005018551 -1.579904e-06 -0.007544312) (0.006776834 -1.998893e-06 -0.007286984) (0.005651498 0.001998034 -0.008155334) (0.006316444 0.001729056 -0.007803035) (0.006171205 0.002258513 -0.007679587) (0.0059948 -0.001002731 -0.007004947) (0.005511734 -1.788828e-06 -0.007031567) (0.006449446 -7.34269e-07 -0.00695223) (0.005992147 0.0009984305 -0.007003216) (0.007287683 -8.996673e-07 -0.006768272) (-0.00501777 0.004000375 -0.008527365) (-0.005047177 0.003001675 -0.008067382) (-0.005026709 0.005001049 -0.008029348) (-0.0050497 0.004002018 -0.007568517) (-0.005619044 0.005998641 -0.008109948) (-0.006135486 0.006003741 -0.007660119) (-0.006088376 0.003005578 -0.007106249) (-0.006735622 0.004036146 -0.00721557) (-0.005572128 0.004002991 -0.007088018) (-0.006080996 0.005002118 -0.007095129) (-0.003030963 0.004002643 -0.008579399) (-0.00303009 0.003001428 -0.008087499) (-0.003021159 0.005002562 -0.008068552) (-0.004008751 0.006000343 -0.008527873) (-0.004521349 0.006001637 -0.008039045) (-0.003517593 0.00600278 -0.008060327) (0.005031694 0.00400076 -0.008548995) (0.005042429 0.003000372 -0.008069523) (0.005032854 0.005001129 -0.008050556) (0.005049665 0.004001394 -0.007578011) (0.00402265 0.006000838 -0.008547355) (0.003524709 0.006001108 -0.00805932) (0.004531825 0.006001522 -0.008058781) (0.005624014 0.005998562 -0.008119332) (0.006161224 0.005998796 -0.007663329) (0.006096702 0.003004677 -0.007089149) (0.005569281 0.004002612 -0.007094336) (0.006727428 0.004036305 -0.007233817) (0.006078233 0.005003864 -0.007114738) (-0.004991858 0.00799942 -0.008403527) (-0.005005642 0.007000964 -0.008003797) (-0.00516298 0.009042394 -0.00818475) (-0.00503799 0.008016031 -0.007576225) (-0.005436738 0.01001364 -0.007940715) (-0.006000965 0.01000123 -0.007494796) (-0.006046916 0.007001995 -0.007051653) (-0.006626357 0.008001138 -0.007142512) (-0.005531594 0.00800418 -0.007048475) (-0.006011124 0.009000868 -0.007015575) (0.00300962 0.008001507 -0.008560998) (0.003016162 0.007000853 -0.008064197) (0.003019366 0.009001792 -0.008057265) (0.00500157 0.008001587 -0.00841469) (0.005009748 0.007001696 -0.008011208) (0.005157532 0.00904259 -0.008175449) (0.005043897 0.00800778 -0.007562077) (0.004145229 0.0100357 -0.008685138) (0.003518448 0.01000268 -0.008049419) (0.004521511 0.00999992 -0.0080313) (0.004028714 0.01000285 -0.007561825) (0.005509465 0.009999964 -0.007915272) (0.005994676 0.009988557 -0.007579358) (0.006062229 0.007000968 -0.007061369) (0.00553739 0.008002199 -0.007048413) (0.00665203 0.008001491 -0.007150336) (0.006024591 0.009001933 -0.007030927) (-0.004841928 0.01172468 -0.008316775) (-0.005086909 0.01098669 -0.008104714) (-0.004993993 0.01300346 -0.008008943) (-0.005018901 0.0120014 -0.007535364) (-0.005350019 0.01373187 -0.00781158) (-0.005855678 0.01396714 -0.007359483) (-0.006136336 0.01127077 -0.007193216) (-0.006443436 0.01203147 -0.006940313) (-0.005536464 0.01200316 -0.007051575) (-0.006125758 0.01300202 -0.007121648) (-0.003995755 0.01400019 -0.00841903) (-0.004518114 0.01400393 -0.008107443) (-0.003518914 0.01400927 -0.008054873) (-0.004025773 0.01401418 -0.007578012) (-0.004031799 0.01100239 -0.007067951) (-0.004536488 0.01200183 -0.007070705) (-0.004032269 0.01300656 -0.007071574) (0.003011887 0.01200613 -0.008544864) (0.003015724 0.0110046 -0.008054132) (0.003014263 0.01300432 -0.00804801) (0.002004305 0.01400085 -0.008550358) (0.001506107 0.01400408 -0.008072636) (0.002508878 0.01400326 -0.008056038) (0.004846472 0.0117413 -0.0083052) (0.00508537 0.01098015 -0.008089551) (0.005007652 0.01301509 -0.007931094) (0.005008947 0.01200108 -0.007518119) (0.003992028 0.01399936 -0.008410596) (0.003526373 0.01400264 -0.008053294) (0.004506721 0.01399872 -0.008105444) (0.004047463 0.01400562 -0.007583259) (0.004032719 0.01100391 -0.007066762) (0.004540258 0.01200391 -0.007075464) (0.004040485 0.01300475 -0.007079789) (0.005844343 0.01396575 -0.00735006) (0.006163869 0.01128165 -0.007176956) (0.005551752 0.01200452 -0.007076358) (0.006466152 0.0120326 -0.006957266) (0.006119535 0.01300383 -0.007166777) (-0.00488778 0.01497844 -0.007867557) (-0.005011643 0.01599997 -0.007597298) (-0.006006069 0.01500002 -0.007009018) (-0.005641043 0.01603677 -0.007150199) (-0.005892434 0.01697376 -0.006894503) (-0.00300069 0.01600581 -0.008607375) (-0.003022473 0.01500621 -0.00806889) (-0.00301483 0.01700354 -0.008031435) (-0.003031454 0.01600226 -0.00758809) (-0.004366341 0.01796399 -0.007854506) (-0.003514026 0.01800623 -0.00814051) (-0.004007867 0.01799972 -0.007514664) (-0.004035812 0.01500941 -0.007082252) (-0.004536234 0.01601573 -0.007071142) (-0.003536852 0.01600494 -0.007093904) (-0.004029838 0.01700669 -0.007064751) (-0.002004205 0.0180195 -0.008614651) (-0.002513983 0.01799864 -0.008033299) (-0.001512802 0.01799696 -0.008071262) (-0.002018013 0.01800447 -0.007574638) (0.0009997068 0.01600375 -0.008559811) (0.00100181 0.0150036 -0.008088478) (0.00100533 0.01700847 -0.008054701) (5.916767e-07 0.01800393 -0.008512752) (-0.0005095027 0.01800526 -0.008060827) (0.0005039674 0.01800903 -0.008054738) (0.003001904 0.01600244 -0.008587865) (0.003010708 0.01500009 -0.008040004) (0.003001967 0.01700126 -0.008016738) (0.003018818 0.01600206 -0.007566905) (0.002001725 0.01801865 -0.008609584) (0.001509038 0.01800883 -0.008066005) (0.002499384 0.01800057 -0.008014658) (0.002012327 0.01800621 -0.007565411) (0.004872814 0.01496593 -0.007859758) (0.005002365 0.01598608 -0.007597342) (0.003510713 0.01800418 -0.008110314) (0.004350916 0.01796574 -0.007818487) (0.004010886 0.01800182 -0.007515961) (0.004038382 0.01500395 -0.007078262) (0.003534056 0.01600304 -0.007083973) (0.004545623 0.0160023 -0.007075313) (0.004045036 0.01700539 -0.007068104) (0.005996286 0.01499788 -0.006990088) (0.005605939 0.01601983 -0.007107905) (0.005842121 0.01697145 -0.006859394) (-0.004795806 0.01970813 -0.007310711) (-0.005357915 0.0197325 -0.006855261) (-0.003038495 0.01903898 -0.008153804) (-0.002968514 0.02097656 -0.007943001) (-0.003013468 0.02000731 -0.007547003) (-0.003340487 0.02172342 -0.007793055) (-0.003964044 0.02196641 -0.007358081) (-0.004019102 0.01900505 -0.007035673) (-0.004632817 0.02026734 -0.007125551) (-0.003523877 0.02001284 -0.007062184) (-0.004002475 0.02099951 -0.007003198) (-0.000999911 0.02000984 -0.008526548) (-0.001008524 0.01900351 -0.008065422) (-0.001003712 0.02099795 -0.008000974) (-0.001007236 0.02000437 -0.007552989) (-0.002484046 0.02197772 -0.007954142) (-0.001498122 0.02201805 -0.008113589) (-0.00200318 0.02199928 -0.007512707) (-0.00201855 0.01900693 -0.007080743) (-0.002517799 0.02000691 -0.007069261) (-0.001513857 0.02000751 -0.007069969) (-0.002014316 0.02100517 -0.007058397) (0.001000134 0.0200085 -0.008526575) (0.001007834 0.01900513 -0.008064275) (0.0009974481 0.02100096 -0.008007833) (0.00100486 0.02000415 -0.007557042) (1.364561e-06 0.02176291 -0.008354117) (-0.0005008035 0.02223026 -0.008154959) (0.0004992336 0.02223308 -0.008148897) (2.35122e-06 0.02200717 -0.00757978) (-0.000504879 0.02000456 -0.007062598) (0.0005024096 0.02000512 -0.007065674) (-4.326563e-07 0.02100483 -0.007061782) (0.003022851 0.01903756 -0.008130565) (0.002966508 0.02097453 -0.007946198) (0.003011822 0.020007 -0.007540952) (0.001499725 0.02201464 -0.008108338) (0.002481396 0.02197324 -0.007946251) (0.001998419 0.02199657 -0.007509377) (0.00201589 0.0190067 -0.007079314) (0.001510636 0.02000481 -0.007071149) (0.002517204 0.02000435 -0.007066929) (0.002008649 0.02100207 -0.007055948) (0.003333086 0.02170939 -0.007784367) (0.003874665 0.0219767 -0.007372576) (0.004029191 0.01900612 -0.00705254) (0.003526304 0.0200138 -0.007056686) (0.004647056 0.02002286 -0.007140353) (0.004154366 0.02126996 -0.007167052) (0.005348569 0.01972049 -0.006863233) (-0.002839475 0.02272598 -0.007798753) (-0.002990599 0.02397912 -0.007408305) (-0.003998069 0.02301835 -0.007093806) (-0.004330337 0.02372395 -0.006850488) (-0.003522187 0.02401527 -0.007122236) (-0.003864703 0.02473834 -0.006867657) (-0.001000165 0.02303558 -0.008034351) (-0.0009751236 0.02472852 -0.007831426) (-0.001000235 0.02399984 -0.007501609) (-0.001992911 0.02577146 -0.007382886) (-0.002009614 0.02300112 -0.007030045) (-0.002511635 0.02400438 -0.007025702) (-0.001508057 0.02400468 -0.007051683) (-0.002008159 0.02500784 -0.007031132) (0.001001108 0.02303607 -0.008041581) (0.0009811333 0.02473777 -0.00783309) (0.0009994886 0.02399984 -0.007500324) (-1.775684e-06 0.02599878 -0.007536343) (-1.534908e-07 0.02300607 -0.007066799) (-0.0005014504 0.02400767 -0.007045806) (0.0004998769 0.02400911 -0.007047804) (-1.063334e-06 0.02501574 -0.007084321) (0.002846306 0.02274261 -0.007757006) (0.00297679 0.02397283 -0.007364939) (0.001985277 0.02575489 -0.007340377) (0.002001278 0.02299776 -0.007015434) (0.001504585 0.02400341 -0.007042946) (0.002498608 0.02399483 -0.006993593) (0.001998811 0.024999 -0.006996552) (0.003979533 0.02298382 -0.007055215) (0.003499754 0.02401264 -0.007065614) (0.004331073 0.0237071 -0.006810184) (0.003846302 0.02474196 -0.006818261) (-0.002006195 0.02700765 -0.007037089) (-0.002364353 0.02770768 -0.006853446) (-0.00150119 0.02797912 -0.006918858) (-2.468715e-06 0.02726728 -0.007155881) (-0.0004990463 0.02800138 -0.007017276) (0.0004982715 0.0279982 -0.007014864) (1.302163e-06 0.02876264 -0.006887977) (0.001998367 0.02699531 -0.006986648) (0.001493831 0.02797951 -0.006906054) (0.002357796 0.02770352 -0.006788034) (5.322011e-06 -0.03371894 -0.005283329) (5.641601e-06 -0.03478969 -0.004846122) (-0.002845014 -0.03170021 -0.005315788) (-0.003352774 -0.02971618 -0.005794833) (-0.003858436 -0.02976024 -0.005388399) (-0.003497266 -0.03178399 -0.004892348) (-0.003889911 -0.03098394 -0.004893838) (-0.0009936435 -0.03117069 -0.006114296) (-0.001005525 -0.03225811 -0.005669099) (-0.00200018 -0.02976909 -0.00636145) (-0.002510311 -0.03000804 -0.006028712) (-0.001635967 -0.03027411 -0.006211261) (-0.002022441 -0.0300197 -0.005565297) (-0.002002647 -0.03299745 -0.005114339) (-0.00253243 -0.0322342 -0.005160003) (-0.001524283 -0.03202329 -0.005060713) (-0.002023766 -0.03101979 -0.005061449) (0.0009952705 -0.03117528 -0.006144036) (0.001007607 -0.03225178 -0.00568691) (6.128963e-07 -0.03001035 -0.006531444) (-0.0004995917 -0.03000715 -0.006038678) (0.0005016956 -0.03001001 -0.006041496) (1.380785e-06 -0.03001973 -0.005578704) (2.792879e-06 -0.03300918 -0.005034348) (-0.0004999186 -0.03202451 -0.005093763) (0.0005149416 -0.03203846 -0.00511739) (2.829966e-06 -0.03103171 -0.005105455) (0.002856354 -0.03072168 -0.005786846) (0.002859421 -0.0317518 -0.00535053) (0.001974778 -0.02977649 -0.006363115) (0.00164992 -0.03028113 -0.006208511) (0.002497589 -0.02997875 -0.006079918) (0.002008516 -0.03000829 -0.005546241) (0.001995647 -0.03319139 -0.005137874) (0.001509447 -0.03202015 -0.005064509) (0.002633496 -0.03224884 -0.005178663) (0.002008571 -0.03101458 -0.005077492) (0.003351861 -0.02973081 -0.005829946) (0.003891553 -0.02976644 -0.005410748) (0.003471408 -0.03195446 -0.004871478) (0.003974972 -0.03097367 -0.004883464) (-0.004833368 -0.02772111 -0.005330939) (-0.005322259 -0.02772515 -0.004841758) (-0.002995937 -0.02798242 -0.006426145) (-0.003019654 -0.02901445 -0.006125539) (-0.003014176 -0.027002 -0.00604585) (-0.003024799 -0.0280098 -0.005574894) (-0.003993711 -0.02598366 -0.006410623) (-0.004514934 -0.02602942 -0.00600981) (-0.003516768 -0.02600069 -0.006037212) (-0.004030978 -0.02600082 -0.005573866) (-0.004143245 -0.02925412 -0.00518668) (-0.00463532 -0.02823971 -0.005150503) (-0.003530604 -0.02801148 -0.005057612) (-0.004030597 -0.0270081 -0.0050505) (-0.0009983674 -0.02800382 -0.006520265) (-0.001000565 -0.02901094 -0.006040378) (-0.001004012 -0.02701063 -0.006058673) (-0.002009222 -0.02600466 -0.006532164) (-0.002521792 -0.02600593 -0.006053782) (-0.001509324 -0.02601046 -0.006070246) (-0.002027796 -0.02902255 -0.005088303) (-0.002531985 -0.02801845 -0.005084381) (0.0009996971 -0.02800309 -0.006508043) (0.001002503 -0.02901396 -0.006044599) (0.001004993 -0.02701153 -0.006058874) (-3.160675e-07 -0.02601118 -0.006565632) (-0.0005028235 -0.02601259 -0.00606984) (0.0005025573 -0.02601483 -0.006071551) (0.003002634 -0.02798578 -0.006436266) (0.003023118 -0.02902206 -0.006121067) (0.00302373 -0.02701458 -0.006055767) (0.003031902 -0.02801714 -0.005574854) (0.002015251 -0.02600716 -0.006540601) (0.001513001 -0.02601001 -0.006059688) (0.002530502 -0.02600927 -0.006076124) (0.002021755 -0.02901642 -0.005074835) (0.002533051 -0.02801727 -0.005080846) (0.004855667 -0.02772898 -0.005348833) (0.00400423 -0.02598837 -0.006428156) (0.003524384 -0.02600976 -0.006053505) (0.004530249 -0.02603092 -0.006029006) (0.004035862 -0.02600828 -0.005587529) (0.004192095 -0.02928193 -0.005200791) (0.003542441 -0.02801654 -0.005068002) (0.00466968 -0.02824626 -0.005159589) (0.004040233 -0.02701137 -0.005059438) (0.005359042 -0.02774022 -0.004863252) (-0.004864865 -0.02397739 -0.006350385) (-0.00497492 -0.02497587 -0.005963699) (-0.005141754 -0.02326429 -0.006148522) (-0.005003603 -0.02399908 -0.005507711) (-0.005587343 -0.02200861 -0.006094285) (-0.006085744 -0.02200085 -0.005591715) (-0.005965004 -0.02498 -0.004972301) (-0.006343946 -0.02397985 -0.004853159) (-0.00550336 -0.02400093 -0.005004017) (-0.006124812 -0.02326723 -0.005140738) (-0.003010942 -0.02399685 -0.00652886) (-0.003024921 -0.02500579 -0.006056046) (-0.003019325 -0.02300323 -0.00605007) (-0.004017183 -0.02200316 -0.006537184) (-0.00452331 -0.02200462 -0.006046182) (-0.003525885 -0.02200509 -0.006052132) (-0.004039121 -0.02500802 -0.005066743) (-0.004532129 -0.02400572 -0.005043535) (0.00302573 -0.0240088 -0.006565568) (0.003037879 -0.02501105 -0.006080421) (0.003032081 -0.02301176 -0.00607368) (0.004860163 -0.02398774 -0.006361091) (0.004980902 -0.02497585 -0.005982904) (0.005153377 -0.02327229 -0.006147053) (0.005020035 -0.02400107 -0.005518092) (0.004024917 -0.02200192 -0.006542975) (0.003535219 -0.02200807 -0.006066245) (0.004534627 -0.0220021 -0.00606381) (0.004046445 -0.02500945 -0.005076179) (0.0045419 -0.02400679 -0.005052989) (0.005623987 -0.02200593 -0.006122854) (0.006092987 -0.02200329 -0.005596194) (0.005979472 -0.02497256 -0.004984806) (0.005508976 -0.02400385 -0.00501086) (0.006360592 -0.02398906 -0.00487088) (0.006127871 -0.02326581 -0.005137513) (-0.00684244 -0.01997203 -0.005359228) (-0.007316713 -0.01970936 -0.004831623) (-0.005161803 -0.02026907 -0.006704592) (-0.005019919 -0.02099875 -0.006047408) (-0.005039884 -0.01900411 -0.006051644) (-0.005046664 -0.02000503 -0.005559127) (-0.006013029 -0.01800326 -0.006511753) (-0.006503775 -0.01800226 -0.006010925) (-0.005559471 -0.01800532 -0.006065144) (-0.00607227 -0.01800792 -0.005563069) (-0.006035325 -0.02100476 -0.005007648) (-0.006503757 -0.02000016 -0.005000599) (-0.005546814 -0.02000599 -0.005038111) (-0.006047967 -0.01900516 -0.005039383) (0.005166815 -0.02027642 -0.006709745) (0.005028766 -0.02100441 -0.006063014) (0.005038459 -0.01900724 -0.006057349) (0.005039397 -0.02000732 -0.005565255) (0.006832679 -0.01996451 -0.005332149) (0.006010167 -0.01800099 -0.006509064) (0.005556794 -0.01801215 -0.006070508) (0.006503314 -0.01800063 -0.006005041) (0.006072006 -0.0180026 -0.005548172) (0.006027348 -0.02100104 -0.00502656) (0.00553867 -0.02000386 -0.005044351) (0.00650626 -0.01999798 -0.005002069) (0.006045176 -0.01900134 -0.005035036) (0.007299073 -0.01973479 -0.004849959) (-0.006797687 -0.01570927 -0.006290914) (-0.006884541 -0.01698369 -0.005899895) (-0.007055039 -0.01498797 -0.005977542) (-0.0071246 -0.0160339 -0.005630154) (-0.007334203 -0.01395835 -0.005846001) (-0.007795645 -0.01671471 -0.00482089) (-0.00758037 -0.01598088 -0.005077071) (-0.007865964 -0.0149981 -0.004871962) (-0.005028106 -0.01600673 -0.006550322) (-0.005042284 -0.01700672 -0.00605382) (-0.005033494 -0.01500662 -0.006054779) (-0.006008126 -0.01400071 -0.006509334) (-0.006509544 -0.01400082 -0.006006879) (-0.005530229 -0.01400429 -0.006039638) (-0.006037443 -0.01400524 -0.005530394) (-0.006048883 -0.01700673 -0.005040877) (-0.006533767 -0.01600612 -0.005023593) (-0.006046619 -0.01500774 -0.005034851) (0.005051714 -0.01600819 -0.006565633) (0.005053939 -0.01701035 -0.006069527) (0.005064964 -0.01500726 -0.006081894) (0.006864113 -0.01696731 -0.005871897) (0.006993149 -0.01499891 -0.00599736) (0.007125116 -0.01603246 -0.005646652) (0.006017637 -0.0140025 -0.006520926) (0.005554051 -0.01400522 -0.006063824) (0.006510504 -0.01400098 -0.006013925) (0.006052288 -0.01400396 -0.005552217) (0.006055269 -0.01700345 -0.005039761) (0.006549865 -0.0160036 -0.00503889) (0.006063874 -0.01500445 -0.005055293) (0.007353479 -0.01396948 -0.005863443) (0.007592369 -0.01599749 -0.004998667) (0.007862032 -0.01496638 -0.004873655) (-0.006950047 -0.01203016 -0.006447682) (-0.007144997 -0.01300162 -0.006113105) (-0.007168057 -0.01126719 -0.006152322) (-0.007060491 -0.01200194 -0.00554046) (-0.007568246 -0.009988599 -0.005981492) (-0.007931511 -0.01000085 -0.005506588) (-0.007941541 -0.01300425 -0.00501103) (-0.00753123 -0.01200318 -0.00501692) (-0.008110914 -0.01099828 -0.005015926) (-0.006029249 -0.010002 -0.006541078) (-0.006527892 -0.01000291 -0.006024783) (0.006967629 -0.01202869 -0.006448553) (0.00712866 -0.01300196 -0.006117743) (0.007166253 -0.01127598 -0.006195197) (0.0070553 -0.01200347 -0.005551148) (0.006021214 -0.01000201 -0.006534719) (0.006531172 -0.01000493 -0.006036703) (0.007566882 -0.009988207 -0.005983954) (0.007906652 -0.01000017 -0.005501283) (0.007934538 -0.01301237 -0.00501002) (0.007516997 -0.01200049 -0.005016396) (0.008327556 -0.0117249 -0.004821453) (0.0080877 -0.01098108 -0.005082012) (-0.007121801 -0.007998966 -0.006633021) (-0.00700511 -0.009000014 -0.00599965) (-0.007035543 -0.007002379 -0.006042641) (-0.007039597 -0.008001507 -0.005522693) (-0.007654578 -0.006002517 -0.00611498) (-0.008084791 -0.005986492 -0.005576039) (-0.00818082 -0.009002077 -0.005165133) (-0.008385886 -0.00801501 -0.004888869) (-0.007578316 -0.008003353 -0.005031909) (-0.008167067 -0.007273343 -0.005163356) (-0.006076937 -0.006003046 -0.006569872) (-0.006573257 -0.006003055 -0.00605827) (0.007137205 -0.008001145 -0.006647118) (0.007004862 -0.009000655 -0.006006049) (0.007062291 -0.007002002 -0.006043704) (0.007034037 -0.008002084 -0.005523238) (0.006075363 -0.006003832 -0.006585868) (0.006581557 -0.006003907 -0.006074927) (0.007668589 -0.006003734 -0.006138476) (0.008103504 -0.005998318 -0.005600311) (0.008164927 -0.009032276 -0.005143027) (0.007563504 -0.008008517 -0.005033632) (0.008395043 -0.00799606 -0.004985595) (0.007994933 -0.007000599 -0.004996496) (-0.007206463 -0.004044288 -0.006721037) (-0.007089784 -0.005002375 -0.006059151) (-0.007095394 -0.003005721 -0.006080183) (-0.007074455 -0.004002323 -0.005560586) (-0.0077068 -0.00203978 -0.006223866) (-0.008157822 -0.001997798 -0.005655224) (-0.007998104 -0.005000228 -0.005001775) (-0.008490824 -0.003999915 -0.004995922) (-0.007547196 -0.004000751 -0.005034458) (-0.008045148 -0.003000395 -0.005025801) (-0.006051051 -0.002002537 -0.006563066) (-0.006558007 -0.002002715 -0.006056196) (0.007190738 -0.004281163 -0.006673033) (0.007104575 -0.005002365 -0.006083504) (0.007069945 -0.003004022 -0.006042279) (0.007081008 -0.004002618 -0.005564362) (0.006029741 -0.002004094 -0.006544266) (0.00654433 -0.002004178 -0.00602769) (0.007777304 -0.001728762 -0.006318643) (0.007669247 -0.002276367 -0.00614189) (0.008178026 -0.002003675 -0.005630727) (0.008039313 -0.004999778 -0.005020275) (0.007568053 -0.004001497 -0.005043209) (0.008547561 -0.004000051 -0.005019391) (0.008074668 -0.003001376 -0.005029361) (-0.006987159 -4.523531e-08 -0.006482685) (-0.007050672 -0.001005716 -0.006060952) (-0.007068369 0.001003814 -0.006051853) (-0.007064669 -3.012302e-07 -0.005551612) (-0.00773099 0.002042705 -0.006179314) (-0.008157439 0.001995428 -0.005646702) (-0.008051442 -0.001000133 -0.005036688) (-0.008605126 4.189173e-08 -0.005072357) (-0.007572683 2.602696e-07 -0.005050065) (-0.008058184 0.001002714 -0.00503193) (-0.006067239 0.002005462 -0.006571448) (-0.006572983 0.00200523 -0.00605467) (0.006947002 -5.763722e-07 -0.006449667) (0.007006639 -0.001002313 -0.005991333) (0.007004711 0.001000766 -0.005994842) (0.007034522 -5.138947e-07 -0.005515454) (0.006040874 0.002000608 -0.006545494) (0.006553611 0.002003037 -0.006039801) (0.00777548 0.001735753 -0.00633594) (0.007671189 0.00226897 -0.006168761) (0.008150402 0.001998642 -0.00563388) (0.008049082 -0.0009998018 -0.005029838) (0.007560254 1.272163e-07 -0.005031854) (0.008604436 1.414094e-05 -0.004986443) (0.008060705 0.001000416 -0.005037684) (-0.007240642 0.004038384 -0.006710274) (-0.00712501 0.00300999 -0.006069121) (-0.007077571 0.005003307 -0.006093359) (-0.007078242 0.004003715 -0.005558972) (-0.007627509 0.006002526 -0.006135128) (-0.008082505 0.005986116 -0.005568628) (-0.008047227 0.003001165 -0.005027069) (-0.008505021 0.003999339 -0.005003227) (-0.007548276 0.004001512 -0.005031035) (-0.008003471 0.005000076 -0.005001481) (-0.006068011 0.006002418 -0.00657595) (-0.006568393 0.006002461 -0.006070659) (0.007246687 0.004034063 -0.006727274) (0.007101652 0.003007713 -0.006082801) (0.00711215 0.005001973 -0.00609157) (0.007092592 0.004002478 -0.005560562) (0.006081559 0.006001038 -0.006585095) (0.006590407 0.00600005 -0.006083726) (0.00766008 0.00600123 -0.006176826) (0.008102141 0.005986975 -0.005590936) (0.008047947 0.00300147 -0.005026366) (0.007561102 0.004001391 -0.005032583) (0.008509449 0.003999616 -0.0050042) (0.008013458 0.005000137 -0.005007939) (-0.00715515 0.008000924 -0.00665668) (-0.007047559 0.007001352 -0.00604599) (-0.007007797 0.009000524 -0.006005895) (-0.007032655 0.008001379 -0.005524844) (-0.007563703 0.009987614 -0.005982899) (-0.007910848 0.00999858 -0.005506365) (-0.008175694 0.007271703 -0.005163713) (-0.008416414 0.008013969 -0.004907865) (-0.007568932 0.007999709 -0.005035587) (-0.008191983 0.009009324 -0.005168265) (-0.006015066 0.01000148 -0.006533476) (-0.00652274 0.01000368 -0.00602574) (0.00716533 0.008004122 -0.006655727) (0.007081755 0.007001912 -0.00606893) (0.007025717 0.009002115 -0.006023877) (0.007061362 0.008002606 -0.005544464) (0.006036133 0.01000615 -0.006554483) (0.006539417 0.01000409 -0.006045945) (0.007583509 0.009990069 -0.005998042) (0.007930908 0.01000341 -0.005512332) (0.008190245 0.007255545 -0.005160057) (0.00758894 0.008003112 -0.005041775) (0.008392393 0.008015353 -0.004894277) (0.008187355 0.009003067 -0.00515068) (-0.006952769 0.01202871 -0.006444482) (-0.007163083 0.01127855 -0.006146732) (-0.007136371 0.01300745 -0.006119819) (-0.007055593 0.01200203 -0.005540816) (-0.00736147 0.01396499 -0.005864372) (-0.008100266 0.01098097 -0.005094538) (-0.00830965 0.01173633 -0.004842906) (-0.007522174 0.01200031 -0.00501367) (-0.00793721 0.01301494 -0.005011898) (-0.006012797 0.01400167 -0.006512306) (-0.006517312 0.01400159 -0.006014607) (-0.005547326 0.01400557 -0.006057708) (-0.006050682 0.01400462 -0.005547102) (0.00695183 0.01202814 -0.006450268) (0.007187858 0.01127621 -0.006187666) (0.007115442 0.01299169 -0.006101525) (0.00706273 0.01200301 -0.005543402) (0.006007382 0.01400178 -0.006513113) (0.005542524 0.01400471 -0.006053448) (0.006512198 0.0140021 -0.006010565) (0.006054827 0.01400583 -0.005545904) (0.007353802 0.01372723 -0.005859246) (0.007792261 0.0137379 -0.005354332) (0.008113995 0.01099889 -0.005012946) (0.007555181 0.01200188 -0.005029603) (0.007999037 0.01299028 -0.004998103) (-0.006803736 0.01570239 -0.00631314) (-0.007072548 0.01498856 -0.005989023) (-0.006883414 0.01698246 -0.005889165) (-0.00714155 0.01603328 -0.005650988) (-0.00787473 0.01496639 -0.004872514) (-0.007594831 0.01599744 -0.005001005) (-0.005046197 0.0160074 -0.006561952) (-0.005054836 0.01500757 -0.006072952) (-0.005052606 0.01700738 -0.00605871) (-0.006019304 0.01800434 -0.006521253) (-0.006523371 0.0180086 -0.006011666) (-0.005574952 0.01801006 -0.006059312) (-0.006061019 0.01800617 -0.005565596) (-0.006061381 0.01500538 -0.005051816) (-0.006552786 0.01600425 -0.005041918) (-0.006053726 0.01700551 -0.005051144) (0.0050425 0.0160045 -0.006555175) (0.005049579 0.01500523 -0.006065591) (0.005054875 0.01700661 -0.006061537) (0.004041103 0.01800727 -0.00656509) (0.004551671 0.01800863 -0.006068013) (0.006924343 0.01501198 -0.00601604) (0.006864292 0.0169684 -0.005853654) (0.007118242 0.01598381 -0.005615926) (0.005995425 0.01800013 -0.006494699) (0.005552808 0.01800512 -0.00604743) (0.006493696 0.01800022 -0.005998423) (0.006052075 0.0180035 -0.005551645) (0.00606534 0.0150061 -0.005051527) (0.006561861 0.01600411 -0.005039793) (0.006066829 0.01700408 -0.00504845) (0.007871866 0.01497922 -0.004887338) (0.007602608 0.01599612 -0.00500966) (-0.006860412 0.01996918 -0.00535158) (-0.007338207 0.01970123 -0.004816632) (-0.005168956 0.02027875 -0.006695573) (-0.005050956 0.01900487 -0.006047902) (-0.005035245 0.02100257 -0.006044299) (-0.005046393 0.02000364 -0.005551444) (-0.0056055 0.02200617 -0.006100737) (-0.006093089 0.02200242 -0.005594506) (-0.006041446 0.019005 -0.00504194) (-0.006504276 0.01999931 -0.005002848) (-0.005538436 0.02000531 -0.005036257) (-0.006026592 0.02100747 -0.005022788) (-0.004027544 0.02201062 -0.00654554) (-0.004533457 0.0220113 -0.006053469) (-0.003536103 0.02200579 -0.006061005) (0.005173948 0.02026764 -0.006693573) (0.005041469 0.01900933 -0.006053085) (0.005034966 0.0210088 -0.006042821) (0.005049084 0.02001363 -0.005555828) (0.004016057 0.0220028 -0.006526638) (0.00352673 0.02200696 -0.006047362) (0.004521071 0.02200384 -0.006035383) (0.006846705 0.01996436 -0.005348758) (0.005604086 0.02200693 -0.006108214) (0.006096739 0.02200238 -0.005584701) (0.006058328 0.01900452 -0.005042003) (0.005551913 0.0200065 -0.005038926) (0.006519055 0.02000097 -0.00500893) (0.006044283 0.02100057 -0.00502279) (-0.004873442 0.02398164 -0.006367201) (-0.005141379 0.0232643 -0.006156493) (-0.004983887 0.0249946 -0.005975774) (-0.005006013 0.02399865 -0.005506033) (-0.006135386 0.02327086 -0.005141365) (-0.006341723 0.02397077 -0.004878255) (-0.005500441 0.02399606 -0.004994586) (-0.00596482 0.02499472 -0.004969795) (-0.003033978 0.02400957 -0.006573048) (-0.003035008 0.02300741 -0.006071429) (-0.003045603 0.02502204 -0.006085238) (-0.004000299 0.02598692 -0.006431808) (-0.004494199 0.02601668 -0.006080357) (-0.003525359 0.02600974 -0.006061838) (-0.004030514 0.02600751 -0.00555582) (-0.004532292 0.02400524 -0.005041623) (-0.004037763 0.02501049 -0.005058376) (-0.00201638 0.02601498 -0.006580144) (-0.002537591 0.02601899 -0.006093414) (-0.001520085 0.02602167 -0.006086146) (-1.435744e-06 0.02601461 -0.006569093) (-0.0005067506 0.02601653 -0.00607718) (0.0005016477 0.02601623 -0.00607941) (0.003009968 0.02400045 -0.00652623) (0.003020106 0.02300546 -0.006047318) (0.003015455 0.02500835 -0.006049923) (0.002004139 0.02600894 -0.006530571) (0.001506784 0.02601179 -0.006068284) (0.002513067 0.02600819 -0.006057238) (0.004891269 0.02397683 -0.006339347) (0.005140088 0.02326533 -0.00615374) (0.004980099 0.02497497 -0.005972274) (0.005004595 0.02399826 -0.005503468) (0.003990459 0.02598059 -0.006402432) (0.003508768 0.02600723 -0.006026088) (0.004510649 0.02602911 -0.006013359) (0.004033311 0.02601073 -0.005567074) (0.004535911 0.02400724 -0.005039309) (0.004041307 0.02501278 -0.005057543) (0.006128748 0.02326941 -0.005137314) (0.005497188 0.02399639 -0.004997163) (0.006351739 0.02398243 -0.004849002) (0.00596296 0.02499524 -0.004974778) (-0.004797113 0.02669292 -0.005797156) (-0.004866859 0.02775948 -0.00533964) (-0.005754249 0.02671274 -0.004824105) (-0.005345371 0.02775548 -0.004860942) (-0.003003547 0.02798795 -0.0064488) (-0.003026486 0.02700786 -0.006077146) (-0.003031287 0.02902539 -0.006135278) (-0.003037104 0.02800124 -0.005589635) (-0.003369122 0.02974339 -0.005796646) (-0.003890762 0.0297662 -0.005412423) (-0.004032715 0.02700726 -0.005048701) (-0.004654887 0.02826523 -0.005172717) (-0.003545763 0.02801281 -0.005067646) (-0.004182638 0.02927255 -0.005222304) (-0.001004835 0.02801005 -0.006523552) (-0.001011283 0.0270187 -0.006069265) (-0.001002837 0.02901298 -0.00604526) (-0.001988827 0.02977007 -0.006372985) (-0.002499738 0.02998222 -0.006088935) (-0.001622904 0.03029998 -0.006182549) (-0.002016821 0.03001563 -0.005547046) (-0.002541506 0.02801701 -0.005095468) (-0.002028454 0.02902169 -0.005090398) (0.001002475 0.02800481 -0.006524355) (0.001005393 0.02701584 -0.006067893) (0.001000035 0.02900873 -0.006053554) (1.731665e-06 0.03000565 -0.006536138) (-0.0004996982 0.03000932 -0.006038214) (0.000501411 0.0300114 -0.006047021) (6.806845e-07 0.03001948 -0.005581604) (0.002992795 0.02798034 -0.006417865) (0.003009691 0.02700437 -0.006030565) (0.003019729 0.02900829 -0.006115805) (0.003017775 0.02800771 -0.005558739) (0.001996365 0.02977501 -0.006348688) (0.001646927 0.03028999 -0.006192405) (0.002513353 0.03000315 -0.006025071) (0.002004908 0.03001493 -0.00556304) (0.002523412 0.02801624 -0.00507973) (0.0020176 0.02901841 -0.005085083) (0.004853027 0.02772551 -0.005326814) (0.003349894 0.02967284 -0.005777505) (0.003887822 0.02974429 -0.005353325) (0.004024061 0.02700801 -0.00504462) (0.003524618 0.02800853 -0.005045191) (0.004641934 0.02824062 -0.005159062) (0.004151726 0.02924559 -0.005140882) (0.005785933 0.02672052 -0.004796817) (0.005348538 0.0277428 -0.004851793) (-0.002877202 0.03070508 -0.005797004) (-0.002851145 0.03175396 -0.005375173) (-0.003973906 0.03097395 -0.004891233) (-0.003471272 0.03196148 -0.004874544) (-0.0009928207 0.03116591 -0.006123968) (-0.001018738 0.03228197 -0.005690625) (-0.002027101 0.03101865 -0.005086661) (-0.002664805 0.03224703 -0.00516806) (-0.001507777 0.03201382 -0.005069234) (-0.002014207 0.033203 -0.005122788) (0.0009994098 0.0311773 -0.006143746) (0.001005173 0.0322441 -0.00569188) (8.087274e-06 0.03372186 -0.005310453) (2.171596e-06 0.03102516 -0.005106477) (-0.0004983221 0.03202361 -0.005114023) (0.0005113665 0.03201605 -0.005119311) (1.37701e-06 0.03300914 -0.005039394) (0.002866662 0.03170902 -0.005301989) (0.00201813 0.03101353 -0.005062452) (0.001506255 0.03201584 -0.005058099) (0.002508786 0.03223524 -0.005139397) (0.001999163 0.03299451 -0.005101888) (0.003891616 0.0307663 -0.00490863) (0.003380396 0.03197357 -0.004866109) (2.994623e-07 0.03479388 -0.004846003) (-2.063732e-05 -0.0376194 -0.003260558) (-0.002875703 -0.03479312 -0.003858425) (-0.002872122 -0.0356559 -0.003300112) (-0.003483283 -0.03379532 -0.003968537) (-0.003888362 -0.0337968 -0.003509113) (-0.003340277 -0.03573954 -0.002870303) (-0.003908897 -0.03477356 -0.00290622) (-0.0009927425 -0.03576589 -0.004299193) (-0.0009878873 -0.03672803 -0.00378912) (-0.001006856 -0.03501558 -0.004046376) (-0.00102543 -0.03603617 -0.003538906) (-0.002031803 -0.03419539 -0.004667864) (-0.002690027 -0.03430233 -0.004221398) (-0.001518732 -0.03401368 -0.004095329) (-0.002049766 -0.03403449 -0.00359286) (-0.00202745 -0.03700714 -0.003053218) (-0.002535501 -0.03623027 -0.00314148) (-0.001562618 -0.03607349 -0.003087255) (-0.002064894 -0.03505102 -0.003088356) (0.0009917487 -0.03575155 -0.004350944) (0.000873632 -0.03666452 -0.003783866) (0.001034936 -0.03503718 -0.004075229) (0.001231866 -0.03641993 -0.003788473) (4.02285e-06 -0.03399818 -0.004514263) (-0.0005045853 -0.03401293 -0.004043963) (0.0005134555 -0.03402189 -0.00405616) (-8.457808e-06 -0.03702915 -0.003040435) (-0.0005215287 -0.03604355 -0.003052897) (0.0005170016 -0.03608257 -0.003105948) (0.002974865 -0.0347753 -0.003880668) (0.002857613 -0.03579528 -0.003372401) (0.002035672 -0.03421416 -0.004657672) (0.001531034 -0.03404329 -0.004089394) (0.002681418 -0.03427604 -0.004247877) (0.002040748 -0.0340346 -0.003583753) (0.002001109 -0.03715488 -0.003010068) (0.001536976 -0.03608184 -0.003094319) (0.002688234 -0.03623591 -0.003159069) (0.002053002 -0.03504231 -0.00307122) (0.003444106 -0.03393015 -0.003965746) (0.0039411 -0.03393793 -0.003449961) (0.003370321 -0.03578417 -0.002855761) (0.003865338 -0.03478753 -0.002983308) (-0.004875324 -0.03096828 -0.003965377) (-0.004884894 -0.03177575 -0.003482545) (-0.005358501 -0.02974885 -0.003867389) (-0.005777336 -0.02971014 -0.003353804) (-0.00532908 -0.03175535 -0.002852374) (-0.005733161 -0.03066729 -0.002837799) (-0.003161276 -0.03229759 -0.004730798) (-0.003025794 -0.03301885 -0.004054879) (-0.003034468 -0.03102053 -0.004082586) (-0.003044482 -0.03202541 -0.003584733) (-0.004165185 -0.03026629 -0.00473765) (-0.004528635 -0.02999775 -0.004034777) (-0.00354622 -0.03001704 -0.004073568) (-0.004050988 -0.03001168 -0.003555562) (-0.004212693 -0.03332504 -0.00321107) (-0.004701514 -0.03230558 -0.003203381) (-0.003562641 -0.03203387 -0.003072617) (-0.004055824 -0.0310216 -0.003055251) (-0.001015076 -0.03202087 -0.004582635) (-0.001015243 -0.03301759 -0.004074446) (0.001015224 -0.03202921 -0.004597334) (0.001020431 -0.0330326 -0.004087429) (0.002995314 -0.03200104 -0.004522273) (0.002999859 -0.03301122 -0.004023543) (0.003024695 -0.0310163 -0.004047116) (0.003022459 -0.03201484 -0.003533798) (0.004880362 -0.03097733 -0.003975428) (0.00486427 -0.03195631 -0.003478199) (0.004033017 -0.03000132 -0.004538789) (0.003543529 -0.03001668 -0.004052019) (0.004537355 -0.03000651 -0.004015055) (0.004056898 -0.03001204 -0.003532046) (0.004017285 -0.03300386 -0.002997063) (0.003532693 -0.03201118 -0.003020144) (0.00451515 -0.03200145 -0.002999168) (0.004044225 -0.03101096 -0.003023083) (0.005393541 -0.0297594 -0.003885564) (0.005794628 -0.02973489 -0.003361615) (0.005350623 -0.03174349 -0.002859373) (0.005784469 -0.03071192 -0.002822593) (-0.005151133 -0.02823974 -0.004649477) (-0.005192375 -0.02924823 -0.004157967) (-0.005042571 -0.02700712 -0.004039082) (-0.005042426 -0.0280061 -0.003530162) (-0.006020926 -0.02603012 -0.004514683) (-0.006407968 -0.02598201 -0.003992914) (-0.005561754 -0.02601254 -0.004035553) (-0.006041469 -0.02600536 -0.003505051) (-0.006072257 -0.02901098 -0.0029992) (-0.006409601 -0.02797956 -0.002988771) (-0.005536114 -0.02800141 -0.003013925) (-0.00603661 -0.02700172 -0.00300644) (0.00517884 -0.02823785 -0.004678951) (0.005226668 -0.02928112 -0.004143422) (0.005059609 -0.02700999 -0.004040802) (0.005074256 -0.02801425 -0.003535614) (0.006023908 -0.02603127 -0.004515786) (0.005565235 -0.02601072 -0.004037142) (0.006422 -0.02598536 -0.003999575) (0.006046395 -0.02600856 -0.003522796) (0.00611048 -0.02902218 -0.00302158) (0.00557319 -0.02800788 -0.003037658) (0.00643246 -0.02798711 -0.003001041) (0.006055517 -0.02700486 -0.003027146) (-0.006822653 -0.02371942 -0.004322768) (-0.006836925 -0.02473799 -0.003868171) (-0.007073212 -0.02298788 -0.003987425) (-0.007100327 -0.02402298 -0.003516704) (-0.00737613 -0.0219794 -0.003878441) (-0.00781622 -0.021702 -0.00333193) (-0.007387122 -0.02397457 -0.002984812) (-0.007785732 -0.02269456 -0.002853961) (-0.005036547 -0.02400789 -0.004536197) (-0.005054906 -0.02501228 -0.004047432) (-0.006043912 -0.02200521 -0.004526335) (-0.006543781 -0.02200393 -0.004025888) (-0.006057235 -0.02200974 -0.00352998) (-0.006063817 -0.02500959 -0.003023657) (-0.006548561 -0.02400525 -0.003020521) (-0.006063472 -0.02301104 -0.003024109) (0.005046554 -0.02400776 -0.004541047) (0.005065731 -0.02501017 -0.004046691) (0.00683347 -0.02371528 -0.004328087) (0.006851257 -0.02474097 -0.003878477) (0.007074658 -0.02298808 -0.003988707) (0.007096778 -0.02402052 -0.003511346) (0.006055263 -0.02200711 -0.004543965) (0.006550942 -0.02200844 -0.004037351) (0.006065546 -0.02200742 -0.003537212) (0.006069964 -0.02500963 -0.003030979) (0.006552887 -0.02401111 -0.003012718) (0.006067701 -0.0230081 -0.003025722) (0.007380774 -0.02197729 -0.003877098) (0.007791558 -0.02172462 -0.003337108) (0.007397179 -0.0239778 -0.002986038) (0.007795661 -0.02267863 -0.002846062) (-0.007154648 -0.02026883 -0.004624753) (-0.007162422 -0.02128298 -0.00418521) (-0.007042061 -0.01900942 -0.004017998) (-0.00706137 -0.02000355 -0.003530719) (-0.007832543 -0.01797515 -0.0043702) (-0.007506918 -0.0180005 -0.00399774) (-0.008128606 -0.01800157 -0.003518603) (-0.0079729 -0.02099149 -0.002978841) (-0.008308689 -0.01970869 -0.002854331) (-0.007536203 -0.02000181 -0.003012588) (-0.008146101 -0.01902889 -0.003126301) (0.00715017 -0.02025453 -0.004621956) (0.007172405 -0.02128331 -0.004180246) (0.007039868 -0.01900349 -0.004017867) (0.007058105 -0.02000898 -0.003531063) (0.0078319 -0.01796456 -0.004370391) (0.007508068 -0.01800059 -0.004004047) (0.008135532 -0.01803436 -0.003524256) (0.007971962 -0.02099029 -0.002979352) (0.007529785 -0.02000391 -0.003011687) (0.00830359 -0.01972143 -0.002855549) (0.008131022 -0.01902043 -0.00311073) (-0.007029779 -0.01600245 -0.004513682) (-0.007050057 -0.01700459 -0.00402244) (-0.007070918 -0.01500502 -0.004029191) (-0.007082739 -0.01600826 -0.003537697) (-0.008106694 -0.01400198 -0.00451037) (-0.008419797 -0.01400013 -0.003990449) (-0.007589844 -0.0139985 -0.00404281) (-0.008054209 -0.01400055 -0.003525061) (-0.008031955 -0.01700164 -0.003008994) (-0.008572645 -0.01601941 -0.003029922) (-0.007591089 -0.01600902 -0.003040035) (-0.008064757 -0.01500457 -0.003024159) (0.007068532 -0.01600748 -0.004534689) (0.007052876 -0.01700467 -0.004025147) (0.007065326 -0.01500517 -0.004032556) (0.007067613 -0.0160068 -0.003526081) (0.008100982 -0.01398369 -0.004583742) (0.007545085 -0.01400231 -0.004021882) (0.008458523 -0.01398289 -0.003963665) (0.008031545 -0.01400221 -0.003506588) (0.008019356 -0.01700167 -0.003002309) (0.007565542 -0.01600514 -0.003017865) (0.008566444 -0.01601801 -0.003031521) (0.008063953 -0.01500213 -0.003014018) (-0.008856203 -0.01096326 -0.003865767) (-0.008877851 -0.01199604 -0.003487528) (-0.007080162 -0.01200573 -0.004549969) (-0.007075138 -0.01300402 -0.004039866) (-0.007084549 -0.01100584 -0.004047965) (-0.00802888 -0.01000395 -0.004513799) (-0.008674689 -0.009998314 -0.004170549) (-0.007585293 -0.01000521 -0.004044858) (-0.008074758 -0.01000336 -0.003534038) (-0.008047939 -0.01300247 -0.003019062) (-0.008533952 -0.01200214 -0.003014077) (-0.008070838 -0.01100427 -0.003023832) (0.007069421 -0.0120012 -0.004551477) (0.007071695 -0.01300096 -0.004041609) (0.007071179 -0.01100289 -0.004037518) (0.008838061 -0.01071089 -0.003857255) (0.008849856 -0.01201258 -0.003404451) (0.00803768 -0.01000068 -0.0045121) (0.007579196 -0.01000346 -0.004029874) (0.008648077 -0.009990446 -0.00412682) (0.008079725 -0.010003 -0.00352323) (0.008064046 -0.0130046 -0.003011896) (0.008560976 -0.01200257 -0.003017442) (0.00809654 -0.01100291 -0.003024733) (-0.008879138 -0.009003143 -0.003894272) (-0.008908607 -0.006999965 -0.003993653) (-0.009055182 -0.008002326 -0.003511308) (-0.009356256 -0.00796342 -0.002880797) (-0.008021438 -0.0060002 -0.00450822) (-0.008519106 -0.005998936 -0.004003794) (-0.008080664 -0.006000412 -0.003519923) (-0.008086806 -0.00900586 -0.003023855) (-0.008585243 -0.008003367 -0.003015281) (-0.008093153 -0.007002597 -0.003019975) (0.008820982 -0.007732419 -0.004329312) (0.008877626 -0.009011914 -0.003897685) (0.008965208 -0.006984886 -0.003976319) (0.00907845 -0.008025482 -0.003528928) (0.008048988 -0.006001639 -0.004512781) (0.008533906 -0.006001189 -0.004008477) (0.008065976 -0.006002442 -0.003518742) (0.008092186 -0.009003455 -0.003021995) (0.008597809 -0.008005774 -0.003027077) (0.008083561 -0.007003869 -0.003018404) (0.009324816 -0.007975444 -0.002868339) (-0.008839647 -0.004004539 -0.004355314) (-0.008987391 -0.005000962 -0.003979177) (-0.009041495 -0.003000379 -0.004010709) (-0.00912854 -0.003986689 -0.003617085) (-0.009445172 -0.003983261 -0.002956837) (-0.008085829 -0.002002275 -0.004553702) (-0.0085847 -0.002000725 -0.00404062) (-0.008078738 -0.002000559 -0.003537209) (-0.008084899 -0.005002062 -0.003022307) (-0.008550836 -0.004001536 -0.003016453) (-0.008062957 -0.003001072 -0.003023783) (0.008857881 -0.004000576 -0.004391579) (0.009014448 -0.005000617 -0.004009965) (0.009073178 -0.003000296 -0.004019239) (0.009207361 -0.004001303 -0.003641928) (0.008105157 -0.001999716 -0.004556498) (0.008604574 -0.002000005 -0.004049721) (0.008088803 -0.002000577 -0.003534987) (0.008055543 -0.005001701 -0.003017897) (0.008553111 -0.004001273 -0.003018799) (0.008069253 -0.003001001 -0.003023515) (0.009437028 -0.004001982 -0.002975456) (-0.008959806 2.115384e-08 -0.004476935) (-0.009096734 -0.0009966598 -0.004040165) (-0.009081149 0.001005217 -0.004062379) (-0.009287157 -4.783455e-06 -0.003670454) (-0.009528863 1.363252e-06 -0.002990796) (-0.00810215 0.002003817 -0.004534536) (-0.008591602 0.002002624 -0.004028465) (-0.008078447 0.002001829 -0.00353032) (-0.008077074 -0.0009998043 -0.00303056) (-0.008594391 6.602111e-07 -0.003031621) (-0.008075884 0.001001704 -0.003028769) (0.008915572 1.250073e-05 -0.004498846) (0.009092719 -0.000999504 -0.00405439) (0.009095556 0.0009958504 -0.004022239) (0.009254091 -1.395685e-06 -0.003648861) (0.008096072 0.002001287 -0.004549524) (0.00859371 0.002000777 -0.00403829) (0.008076098 0.002001092 -0.003530703) (0.00808093 -0.001000512 -0.003029403) (0.008588735 -4.90865e-07 -0.003027424) (0.008075381 0.001000305 -0.003024988) (0.009499593 -1.552285e-06 -0.002986203) (-0.008824048 0.004003076 -0.004381542) (-0.009028939 0.003000231 -0.004014363) (-0.008967814 0.005000397 -0.003976265) (-0.009155446 0.003997841 -0.003619622) (-0.009398228 0.003999564 -0.002968486) (-0.008027677 0.006000219 -0.004510766) (-0.008503156 0.0060008 -0.004001767) (-0.008052002 0.006000691 -0.003523094) (-0.008052529 0.003001109 -0.003020059) (-0.008528797 0.004000694 -0.003012138) (-0.008044798 0.005000577 -0.003018201) (0.008835601 0.00399863 -0.004349384) (0.009047944 0.003000372 -0.004006602) (0.008972173 0.004997927 -0.003988426) (0.009166553 0.004001653 -0.003640549) (0.008029638 0.00599995 -0.00451012) (0.008501881 0.006002781 -0.003999295) (0.008050051 0.006003924 -0.00352006) (0.008054523 0.003001387 -0.00301997) (0.008535718 0.004001423 -0.003012379) (0.008044478 0.005002647 -0.003015893) (0.009419549 0.003999121 -0.002952487) (-0.008892689 0.006998104 -0.003983792) (-0.00884862 0.009000164 -0.00387632) (-0.009040242 0.008000635 -0.003526235) (-0.009291126 0.00799755 -0.002872323) (-0.008043179 0.01000199 -0.004523303) (-0.008645652 0.009985577 -0.004118209) (-0.007573185 0.01000434 -0.004035674) (-0.008074851 0.01000529 -0.003528329) (-0.00807286 0.007001299 -0.003027722) (-0.008572976 0.008001841 -0.003018216) (-0.008074733 0.009002591 -0.003023089) (0.008899236 0.006999517 -0.0039884) (0.008858651 0.008998225 -0.003859846) (0.009062383 0.00801395 -0.003537109) (0.008023419 0.01000218 -0.0045102) (0.007575491 0.0100016 -0.004032237) (0.008624655 0.009987243 -0.004115004) (0.008069763 0.0100026 -0.003521769) (0.008081338 0.007007374 -0.003033267) (0.008595938 0.00800487 -0.003039233) (0.008087691 0.009005229 -0.003033101) (0.009339216 0.008012044 -0.002866489) (-0.008843771 0.010726 -0.003846557) (-0.008879607 0.01200943 -0.003390234) (-0.007076714 0.01200668 -0.004548928) (-0.007074108 0.01100605 -0.004039024) (-0.007081382 0.01300712 -0.00404747) (-0.008112206 0.01400081 -0.004508039) (-0.008413846 0.01400031 -0.003994719) (-0.007579944 0.01400772 -0.004049984) (-0.008050983 0.01400469 -0.003528691) (-0.008099873 0.01100886 -0.003031256) (-0.008559979 0.01200398 -0.003015009) (-0.008054144 0.01300382 -0.00302067) (0.007082949 0.0120028 -0.00454297) (0.00708771 0.0110013 -0.004041168) (0.007086892 0.01300356 -0.004041448) (0.008838202 0.01072819 -0.003863623) (0.008898899 0.01201148 -0.003395976) (0.008123736 0.01400305 -0.004520611) (0.007600809 0.01400116 -0.004048429) (0.008430286 0.01400033 -0.004001464) (0.008077711 0.01400271 -0.003532977) (0.008106339 0.01100408 -0.00302531) (0.008571047 0.0120035 -0.00302855) (0.008089788 0.0130038 -0.003031088) (-0.007066574 0.01601063 -0.004537763) (-0.00707535 0.01500765 -0.004036814) (-0.007050501 0.01700553 -0.004025937) (-0.00706808 0.01600745 -0.003528111) (-0.007845363 0.01796004 -0.004346185) (-0.007508441 0.01799914 -0.004002461) (-0.008127853 0.01802754 -0.003528212) (-0.008060967 0.01500374 -0.003023683) (-0.008563061 0.01602038 -0.003024793) (-0.007565931 0.01600594 -0.003018825) (-0.008022479 0.01700331 -0.003001551) (0.007091225 0.01601031 -0.004535803) (0.007098615 0.01500691 -0.004045828) (0.007081445 0.01700795 -0.00403943) (0.007107391 0.016012 -0.003545277) (0.00607861 0.01800645 -0.004555325) (0.006586642 0.01800925 -0.004053115) (0.007859141 0.01772307 -0.00434956) (0.007690972 0.01827052 -0.004149297) (0.008097011 0.01799402 -0.003507362) (0.008078568 0.01500578 -0.003022685) (0.007597202 0.01601117 -0.00303741) (0.008550714 0.01602256 -0.003036793) (0.00802833 0.01700179 -0.003009722) (-0.007160778 0.02025304 -0.004630814) (-0.007044454 0.0190026 -0.004028488) (-0.007171263 0.02127936 -0.004173561) (-0.007072711 0.020017 -0.00352554) (-0.007376804 0.02197686 -0.003879178) (-0.007810202 0.02171931 -0.003320616) (-0.008129714 0.01902283 -0.003115176) (-0.008307717 0.01971954 -0.002835189) (-0.00753801 0.02000679 -0.003009369) (-0.00797267 0.02099012 -0.002980575) (-0.006047455 0.02200307 -0.004513056) (-0.00654347 0.02200385 -0.004018649) (-0.006063555 0.02200711 -0.003526911) (0.007154956 0.02002373 -0.004637171) (0.007075089 0.01900549 -0.004048049) (0.007167148 0.02127254 -0.004148804) (0.007055905 0.02000606 -0.00352167) (0.006071399 0.02200275 -0.004531163) (0.006568881 0.0220057 -0.004024896) (0.006083983 0.02200671 -0.00353231) (0.007355072 0.02174441 -0.003877131) (0.008110422 0.01902984 -0.003015664) (0.007514759 0.02000166 -0.003005101) (0.00787264 0.02096805 -0.002971741) (-0.006817991 0.0237255 -0.004304977) (-0.007068938 0.022986 -0.003986024) (-0.006835379 0.02472712 -0.003862149) (-0.007091582 0.02402032 -0.003511285) (-0.00779287 0.02270411 -0.002859155) (-0.007393582 0.02397705 -0.002982068) (-0.005034616 0.02400332 -0.004526399) (-0.005048238 0.0250068 -0.004027186) (-0.00607517 0.02601455 -0.004486893) (-0.006411549 0.02598093 -0.00398787) (-0.005540012 0.02600643 -0.004016219) (-0.006029784 0.02600439 -0.00351055) (-0.006068254 0.02300471 -0.003022559) (-0.006561093 0.0239975 -0.003017823) (-0.006067251 0.02500596 -0.003017672) (0.005040299 0.02400535 -0.004530577) (0.005054951 0.02500974 -0.004035262) (0.006814435 0.02371547 -0.004342892) (0.00700476 0.02299893 -0.003991292) (0.006843138 0.02474312 -0.003845677) (0.007020688 0.02400465 -0.003520461) (0.006081046 0.02601641 -0.004492182) (0.005545931 0.02600815 -0.004025508) (0.006420241 0.02598337 -0.00399201) (0.006046676 0.02600632 -0.003518234) (0.006082855 0.02300899 -0.003043425) (0.006556573 0.02400893 -0.003023795) (0.006075663 0.02500988 -0.003026614) (0.007367082 0.0239813 -0.002890293) (-0.005161913 0.02826805 -0.004639999) (-0.005043502 0.02700978 -0.004024662) (-0.005189757 0.02927822 -0.004191352) (-0.005063151 0.02801838 -0.003540798) (-0.005405783 0.02976623 -0.00388712) (-0.00581336 0.0297284 -0.003379689) (-0.006039975 0.02700671 -0.003016211) (-0.006426433 0.02798535 -0.002999331) (-0.005569147 0.02801463 -0.003027414) (-0.006119583 0.0290133 -0.003034756) (-0.004021675 0.03000351 -0.00452828) (-0.004514263 0.03000239 -0.004013476) (-0.003544673 0.03001773 -0.004051973) (-0.004057977 0.03001595 -0.003541806) (0.005162805 0.02824746 -0.004667154) (0.005045759 0.02701187 -0.004036498) (0.005190411 0.02928584 -0.004181165) (0.005064916 0.02801561 -0.003545118) (0.004178485 0.03028656 -0.004742277) (0.003556447 0.03002683 -0.004087311) (0.004556781 0.03001679 -0.004050182) (0.004073202 0.03003027 -0.003580766) (0.005404944 0.02975983 -0.00390687) (0.005804551 0.02971402 -0.003360093) (0.006057842 0.02701021 -0.003016824) (0.005566791 0.0280074 -0.003033406) (0.006433161 0.02798672 -0.003000759) (0.006115116 0.02901863 -0.003013652) (-0.004886992 0.03097599 -0.003978429) (-0.004882249 0.03196279 -0.003474196) (-0.005774347 0.03067758 -0.002845377) (-0.005367544 0.03173571 -0.002866407) (-0.003008373 0.0320047 -0.004529507) (-0.003028717 0.03101633 -0.004055001) (-0.003008582 0.03300755 -0.004024505) (-0.003028941 0.03201534 -0.003538417) (-0.003460069 0.03395213 -0.003950121) (-0.003959716 0.03394332 -0.003453614) (-0.004052497 0.03101494 -0.003030236) (-0.004527635 0.03200463 -0.003009279) (-0.003539811 0.03201566 -0.003025239) (-0.004023711 0.03300957 -0.003002756) (-0.001013709 0.0320215 -0.004582957) (-0.001017703 0.03302114 -0.004071937) (-0.002045654 0.03420917 -0.004677615) (-0.002690692 0.03429478 -0.004250569) (-0.001532948 0.03402627 -0.004102231) (-0.002039208 0.03402954 -0.003592606) (0.001011685 0.03201562 -0.004590501) (0.001015913 0.03301845 -0.004080056) (1.27656e-06 0.03400299 -0.004517041) (-0.0005070648 0.03401806 -0.004050699) (0.0005099611 0.03401678 -0.004053923) (0.003009275 0.0320047 -0.004524262) (0.003040474 0.03102783 -0.004083607) (0.003008382 0.03300273 -0.004022702) (0.003044047 0.03202469 -0.003563028) (0.002005946 0.03419858 -0.004615176) (0.001527362 0.03401474 -0.004069681) (0.002663701 0.03430206 -0.004253141) (0.002030276 0.03402847 -0.003584476) (0.004908435 0.03079515 -0.003994437) (0.004899359 0.03176575 -0.003389862) (0.003454365 0.03394175 -0.003934531) (0.003873349 0.03377209 -0.003498621) (0.004077591 0.03103858 -0.003074239) (0.003570783 0.03203423 -0.003064733) (0.004693008 0.03224836 -0.003201207) (0.004220998 0.03329535 -0.003156174) (0.005785563 0.0307054 -0.002863519) (0.00534436 0.03172672 -0.002877238) (-0.002983823 0.03479214 -0.003881298) (-0.002887704 0.03579227 -0.003396609) (-0.003877092 0.03478171 -0.002993714) (-0.0033833 0.03577822 -0.002877427) (-0.0009915137 0.03575173 -0.004322832) (-0.001022336 0.03501497 -0.004041913) (-0.0009925831 0.03671549 -0.003789311) (-0.001018939 0.03603087 -0.003544339) (-0.002038958 0.03504273 -0.00307525) (-0.002669514 0.03625793 -0.003179837) (-0.00153611 0.03606177 -0.003079837) (-0.002004984 0.0371501 -0.003007312) (0.0009928078 0.0357591 -0.004344225) (0.001032223 0.03502986 -0.004074042) (0.0008538347 0.03666869 -0.003781431) (0.001220212 0.03635056 -0.003844526) (-8.357453e-06 0.03767005 -0.003188063) (-0.000512279 0.03604318 -0.003056071) (0.0005281384 0.03607296 -0.003111307) (3.669495e-06 0.03703115 -0.003038832) (0.00298219 0.03478315 -0.003869916) (0.002859585 0.03578311 -0.003370353) (0.002039628 0.03503884 -0.003081862) (0.00153061 0.03607147 -0.003099873) (0.00266883 0.03622265 -0.003174857) (0.001996568 0.03714825 -0.003015089) (0.003867046 0.03475871 -0.002889318) (0.003381649 0.03573727 -0.002878031) (-0.0009918238 -0.03894301 -0.001972668) (-0.0007992728 -0.03949331 -0.001252251) (-0.002001718 -0.0378199 -0.002497453) (-0.002457823 -0.03781718 -0.001970035) (-0.001648891 -0.03834434 -0.00221316) (-0.002204838 -0.03832458 -0.001703972) (-0.001235389 -0.0395261 -0.0008060504) (-0.00198013 -0.03894807 -0.0009844665) (0.000976972 -0.03890943 -0.00195075) (0.0007641276 -0.03952146 -0.001269591) (4.422824e-06 -0.03829196 -0.002745397) (-0.00050232 -0.03806097 -0.002077999) (0.000507055 -0.03805173 -0.002086094) (6.09802e-06 -0.03806846 -0.001545903) (-0.0004668799 -0.03973032 -0.000924746) (0.0004904775 -0.03970287 -0.0009278419) (5.222379e-06 -0.03898368 -0.00100139) (0.001986556 -0.03781927 -0.002479767) (0.001700033 -0.03832446 -0.002239287) (0.002494937 -0.03783365 -0.002001456) (0.002182594 -0.038338 -0.001705506) (0.001980124 -0.0389402 -0.0009785687) (-0.00314332 -0.03621577 -0.002640275) (-0.002967699 -0.03713092 -0.001976023) (-0.003056429 -0.03503653 -0.002051831) (-0.003068546 -0.03603496 -0.001532539) (-0.004197282 -0.03426354 -0.002680241) (-0.004627701 -0.0342227 -0.002022856) (-0.003570737 -0.03403897 -0.002061263) (-0.004066637 -0.03401673 -0.001524868) (-0.003801113 -0.03669031 -0.000976081) (-0.004314195 -0.0357662 -0.0009805284) (-0.003551961 -0.03602038 -0.001011623) (-0.004040043 -0.03501556 -0.00101174) (-0.001044964 -0.03606125 -0.002574999) (-0.00103132 -0.03705754 -0.002066414) (-0.002073969 -0.03705009 -0.001027673) (-0.002585672 -0.03604486 -0.001026437) (0.001037961 -0.03607823 -0.00259093) (0.001032171 -0.03706023 -0.002076752) (0.003169908 -0.03622281 -0.002683213) (0.003030154 -0.0371639 -0.002014534) (0.003062355 -0.0350288 -0.002042141) (0.00307761 -0.03606724 -0.001530454) (0.00207537 -0.03707371 -0.001027112) (0.002578429 -0.03606111 -0.0010237) (0.004236917 -0.03428049 -0.002650999) (0.003559964 -0.03401836 -0.002029201) (0.004619281 -0.03419283 -0.002000984) (0.004035677 -0.03401892 -0.001509166) (0.003790334 -0.03673155 -0.0009859035) (0.003528215 -0.03602769 -0.0010091) (0.004263065 -0.03573523 -0.0009633965) (0.004003124 -0.03499673 -0.001000263) (-0.00513897 -0.0322583 -0.002634039) (-0.00512075 -0.03319784 -0.002019266) (-0.005064801 -0.03101837 -0.002025169) (-0.005051618 -0.03200133 -0.001509229) (-0.006061646 -0.02997141 -0.002485097) (-0.006345389 -0.02977083 -0.001971735) (-0.005518314 -0.0300003 -0.001997497) (-0.006170306 -0.03029156 -0.001656627) (-0.00567381 -0.03229469 -0.00101938) (-0.006091782 -0.03116902 -0.0009854905) (-0.004059003 -0.03301545 -0.001020535) (-0.004569167 -0.03201352 -0.001011492) (0.005172814 -0.03223585 -0.002632169) (0.005096643 -0.03318442 -0.002002294) (0.005063722 -0.0310104 -0.002024261) (0.005040947 -0.03199619 -0.001513263) (0.004036086 -0.03300794 -0.001010459) (0.004562348 -0.03200007 -0.001009756) (0.006056433 -0.02997198 -0.002490139) (0.00551925 -0.03000205 -0.002006608) (0.006338262 -0.02975757 -0.00197819) (0.006154531 -0.03029426 -0.001637824) (0.005689042 -0.03221678 -0.001019192) (0.006079631 -0.03116822 -0.0009862407) (-0.006845856 -0.02774037 -0.002365423) (-0.006786885 -0.0287062 -0.001838791) (-0.007027444 -0.02702623 -0.002001376) (-0.006972336 -0.027954 -0.001494871) (-0.007364249 -0.02576966 -0.001985672) (-0.0050584 -0.02800983 -0.002528025) (-0.005055861 -0.02901245 -0.002020602) (-0.00606855 -0.02601221 -0.002522492) (-0.006555833 -0.02601726 -0.002014331) (-0.006078938 -0.02601209 -0.00151046) (-0.006062827 -0.02901753 -0.001002307) (-0.006537204 -0.02800777 -0.001000511) (-0.006081083 -0.02701186 -0.001002643) (0.005079712 -0.02801122 -0.002535508) (0.005062839 -0.02900973 -0.002023352) (0.006833819 -0.02770834 -0.002374305) (0.007040356 -0.02700942 -0.002011868) (0.006929393 -0.0279842 -0.001502131) (0.006079908 -0.026012 -0.00253314) (0.006572906 -0.02600661 -0.00201488) (0.00609827 -0.02601136 -0.001523967) (0.00603684 -0.02900587 -0.001003689) (0.006546432 -0.02800607 -0.001004987) (0.006094692 -0.02701528 -0.001013232) (0.00738016 -0.02576145 -0.001989543) (-0.007026843 -0.02400272 -0.00250696) (-0.007026826 -0.02500743 -0.002004853) (-0.007077856 -0.02302243 -0.002008071) (-0.007070324 -0.02401203 -0.001513612) (-0.007967745 -0.02196737 -0.002491871) (-0.007533347 -0.02200282 -0.002001194) (-0.008151455 -0.02202625 -0.001496635) (-0.00784623 -0.02471791 -0.0009670822) (-0.007520351 -0.02400463 -0.001003745) (-0.00807611 -0.02304011 -0.001004236) (0.007025753 -0.0240067 -0.00250389) (0.00703341 -0.02500324 -0.002003255) (0.007064674 -0.02301045 -0.002017978) (0.007059196 -0.02400644 -0.001508533) (0.007969926 -0.02196666 -0.002482782) (0.007533262 -0.02200501 -0.002007699) (0.008145141 -0.02203655 -0.001502649) (0.007824214 -0.02473769 -0.0009840802) (0.007514517 -0.0240004 -0.001003079) (0.008068273 -0.0230403 -0.001009954) (-0.007057369 -0.02000739 -0.002519325) (-0.007074242 -0.02101052 -0.002012325) (-0.007065862 -0.0190067 -0.002016243) (-0.007080994 -0.0200094 -0.001510864) (-0.008047868 -0.0180055 -0.002514087) (-0.008627461 -0.01803259 -0.002010494) (-0.007564129 -0.01800485 -0.002013211) (-0.008049189 -0.01800336 -0.001501134) (-0.008041329 -0.02100398 -0.001001103) (-0.008564608 -0.02003692 -0.0009989654) (-0.007579124 -0.02000784 -0.001005067) (-0.008064345 -0.01900151 -0.001002695) (0.007058652 -0.02000629 -0.002517921) (0.007070131 -0.02100634 -0.00201525) (0.00706433 -0.01900527 -0.00201426) (0.007075263 -0.02000653 -0.001511559) (0.008040922 -0.01800339 -0.002507852) (0.007564006 -0.018004 -0.00201164) (0.008635313 -0.01803088 -0.002015497) (0.008048562 -0.01800178 -0.001506969) (0.008027403 -0.02100371 -0.001001904) (0.007572483 -0.0200072 -0.001006661) (0.008564912 -0.02003933 -0.001002752) (0.008063328 -0.01901219 -0.00100394) (-0.008839133 -0.0159761 -0.002386318) (-0.008868958 -0.01696683 -0.001969185) (-0.008992748 -0.01499698 -0.00199555) (-0.008996809 -0.01599739 -0.001498902) (-0.008070032 -0.01400266 -0.002521886) (-0.00855958 -0.01400351 -0.002015098) (-0.008089277 -0.01400794 -0.00151433) (-0.008033919 -0.01700156 -0.001001763) (-0.008550284 -0.01600294 -0.001002573) (-0.008087363 -0.01500514 -0.001006665) (0.008855998 -0.01597189 -0.002381299) (0.008872551 -0.01696447 -0.001971391) (0.009012436 -0.01499856 -0.002000226) (0.009005469 -0.01599957 -0.001498864) (0.008079959 -0.01400406 -0.002515262) (0.008571254 -0.01400301 -0.002007073) (0.00808731 -0.01400371 -0.001510037) (0.008034657 -0.01700313 -0.001005444) (0.008547061 -0.01600321 -0.001006177) (0.008073703 -0.01500292 -0.001008845) (-0.009113768 -0.01200267 -0.002509155) (-0.009143942 -0.01304012 -0.002019363) (-0.009008229 -0.01100014 -0.002001779) (-0.009009386 -0.01199913 -0.001498834) (-0.009440008 -0.009993601 -0.001977632) (-0.00946252 -0.01198988 -0.0009948721) (-0.008085651 -0.010008 -0.002521855) (-0.008569385 -0.01000739 -0.00201471) (-0.008069563 -0.01000531 -0.001508872) (-0.008080032 -0.01300906 -0.001007688) (-0.008550226 -0.01200541 -0.001003804) (-0.008065258 -0.01100436 -0.001005068) (0.009126672 -0.01201569 -0.002536266) (0.009153614 -0.01300482 -0.002015408) (0.009170695 -0.01128193 -0.002158931) (0.008984477 -0.01200024 -0.001505634) (0.00809168 -0.01000423 -0.002518696) (0.008551952 -0.01000366 -0.002012779) (0.008049785 -0.01000266 -0.001508759) (0.008060975 -0.01300268 -0.001007913) (0.00851582 -0.01200081 -0.001004868) (0.008037452 -0.01100151 -0.001005719) (0.009383285 -0.009980866 -0.001981313) (0.00940588 -0.01199347 -0.0009977667) (-0.009016049 -0.008001498 -0.00250479) (-0.009053899 -0.00901527 -0.002011205) (-0.0090577 -0.007002818 -0.002003642) (-0.009083799 -0.008003492 -0.001501613) (-0.009578261 -0.006001739 -0.002004985) (-0.009654944 -0.008006837 -0.001000245) (-0.008078236 -0.006002635 -0.002513703) (-0.008580201 -0.006002755 -0.002009976) (0.008994861 -0.008001843 -0.002503637) (0.008997942 -0.009004706 -0.002006875) (0.00901137 -0.007001808 -0.002001181) (0.009028447 -0.008002551 -0.001500085) (0.008053523 -0.006002415 -0.002511885) (0.008550086 -0.006002424 -0.002006551) (0.008048991 -0.00900242 -0.00100334) (0.008568059 -0.008003188 -0.001001534) (0.009520579 -0.006002492 -0.002001701) (0.009586047 -0.008002679 -0.001001371) (-0.009038534 -0.004001087 -0.002507577) (-0.009082244 -0.005003459 -0.002018945) (-0.009081819 -0.003008053 -0.002005276) (-0.009078793 -0.004003386 -0.001523838) (-0.009657858 -0.00198702 -0.002121565) (-0.009852104 -0.001978792 -0.001451797) (-0.009834466 -0.004957092 -0.0009690405) (-0.009463367 -0.003996162 -0.001000037) (-0.009858785 -0.002991197 -0.0009734287) (0.009040044 -0.00400155 -0.002509963) (0.009059172 -0.005001317 -0.002007295) (0.009094354 -0.003001815 -0.002005351) (0.009100679 -0.004002973 -0.001515013) (0.009632699 -0.002000719 -0.002015114) (0.009848529 -0.0019943 -0.001469755) (0.009808183 -0.004704804 -0.0008555287) (0.009665837 -0.004259714 -0.001130607) (0.009898236 -0.002970705 -0.0009782883) (-0.009105428 2.328725e-06 -0.002523806) (-0.009080845 -0.001000485 -0.002018376) (-0.00908065 0.001000749 -0.002017854) (-0.009025145 8.888388e-07 -0.001508603) (-0.009652074 0.001985802 -0.002101009) (-0.009863012 0.001983292 -0.001449343) (-0.009909888 -0.0009977906 -0.0009914752) (-0.00946198 7.924184e-07 -0.0009980403) (-0.009908967 0.0009994919 -0.0009923028) (0.009105256 -1.276968e-06 -0.002521935) (0.009094858 -0.001003423 -0.00202565) (0.0090864 0.0009998299 -0.0020125) (0.009033608 -1.750763e-06 -0.001508589) (0.009643107 0.001986946 -0.002123065) (0.009868463 0.001982741 -0.001471625) (0.009900965 -0.0009992453 -0.000997274) (0.009464312 -7.713006e-07 -0.0009998128) (0.009916339 0.0009981101 -0.0009915722) (-0.009029614 0.004001644 -0.002506862) (-0.009066128 0.002997223 -0.002009377) (-0.009070994 0.005002935 -0.002010602) (-0.009069282 0.004004551 -0.001525485) (-0.009570317 0.006003695 -0.002002627) (-0.00984138 0.002993486 -0.0009833982) (-0.009452741 0.0040003 -0.00100304) (-0.009820958 0.004971261 -0.0009727971) (-0.008058878 0.006000892 -0.002518937) (-0.008568372 0.006001724 -0.002012129) (0.009049598 0.004000584 -0.002505821) (0.0090906 0.003001575 -0.00201569) (0.009089824 0.005000805 -0.002004322) (0.009088176 0.004004131 -0.001508663) (0.00805808 0.006003606 -0.00251757) (0.008573888 0.006001932 -0.00201384) (0.009600236 0.006004972 -0.002027712) (0.009813205 0.005728371 -0.001344368) (0.009861869 0.002996132 -0.0009910566) (0.009460139 0.003999688 -0.001003171) (0.009847397 0.004980999 -0.00098084) (-0.009000781 0.008000455 -0.00249975) (-0.009049643 0.007002138 -0.002004353) (-0.009009183 0.008999746 -0.001997236) (-0.00908368 0.008003387 -0.001501693) (-0.009425501 0.009995769 -0.0019789) (-0.009646214 0.00800468 -0.001003304) (-0.008086575 0.01000311 -0.002523947) (-0.00856132 0.01000117 -0.002013688) (-0.008065015 0.01000203 -0.001509566) (0.009035169 0.008002163 -0.002515127) (0.0090773 0.007001806 -0.002011686) (0.009041491 0.009003446 -0.002006526) (0.009112707 0.008000767 -0.001514253) (0.008089883 0.01000959 -0.002520689) (0.008570994 0.01001048 -0.002011404) (0.008078228 0.01000525 -0.001510508) (0.009452262 0.009996708 -0.00198548) (0.009812444 0.00696371 -0.0008901848) (0.00968317 0.007971494 -0.0009890672) (-0.009118621 0.01200505 -0.002506757) (-0.009001118 0.0109999 -0.001999779) (-0.009147952 0.01303123 -0.002023862) (-0.008991864 0.01200142 -0.001500801) (-0.009453066 0.0119939 -0.0009988222) (-0.008062728 0.01400157 -0.002516328) (-0.008555989 0.01400098 -0.002010326) (-0.008081768 0.01400572 -0.001514336) (-0.008060629 0.01100244 -0.00100744) (-0.008540993 0.01200346 -0.001008814) (-0.008070812 0.01300724 -0.001014001) (0.009146082 0.01200287 -0.002515738) (0.009012449 0.01100126 -0.002002448) (0.009170705 0.01303714 -0.002021658) (0.00900782 0.01200555 -0.001504928) (0.008105451 0.01400741 -0.002527163) (0.008594615 0.01400742 -0.002019442) (0.008109159 0.01401047 -0.001519382) (0.008072585 0.01100443 -0.00100743) (0.008553929 0.01200544 -0.001009508) (0.00808258 0.01300845 -0.001013298) (0.009467727 0.01199572 -0.0009969874) (-0.008857594 0.01597737 -0.002384912) (-0.008996794 0.01499802 -0.001996642) (-0.00885033 0.01696 -0.00197716) (-0.008989901 0.01599817 -0.001498983) (-0.008045846 0.0180078 -0.002508116) (-0.008622234 0.01803563 -0.002014404) (-0.007571298 0.0180075 -0.00201564) (-0.008056867 0.01800167 -0.001513217) (-0.008078861 0.01500827 -0.0010109) (-0.008548799 0.01600177 -0.001005598) (-0.008039149 0.01700208 -0.001008678) (0.008860868 0.01597803 -0.002382271) (0.009025707 0.01500023 -0.001995916) (0.008861913 0.01695381 -0.001979572) (0.00900776 0.01599799 -0.001500847) (0.008023029 0.01800006 -0.002504952) (0.007575821 0.01800487 -0.002013534) (0.008632132 0.01801117 -0.002000872) (0.008075949 0.01800369 -0.001505258) (0.008088689 0.01500963 -0.001008335) (0.008555685 0.01600672 -0.001004617) (0.008056587 0.01701149 -0.001004864) (-0.007068577 0.0200096 -0.002520036) (-0.007073559 0.01900921 -0.002016545) (-0.007078399 0.02101099 -0.002018561) (-0.00708733 0.02001086 -0.001514229) (-0.00796005 0.02196584 -0.002486465) (-0.007538048 0.02200192 -0.002005087) (-0.008141092 0.02204607 -0.001499267) (-0.008075718 0.01901328 -0.001005222) (-0.008571911 0.02003184 -0.001006073) (-0.007586458 0.02000965 -0.001008667) (-0.008034434 0.02100588 -0.001005304) (0.00706472 0.02000803 -0.002515679) (0.007084042 0.01900863 -0.002015387) (0.007067381 0.02100642 -0.002013581) (0.007082129 0.02000686 -0.00151126) (0.007871586 0.02196585 -0.002482927) (0.007517553 0.02200173 -0.001999049) (0.008061094 0.02204527 -0.00150856) (0.008068236 0.01900677 -0.001007573) (0.007568888 0.02000362 -0.001003791) (0.008517915 0.02000038 -0.001001627) (0.008159664 0.02128887 -0.001133162) (-0.007028909 0.02400038 -0.002504868) (-0.007071983 0.02301173 -0.002018844) (-0.007028763 0.02500239 -0.00200282) (-0.007078572 0.02401383 -0.001510955) (-0.007370234 0.02576717 -0.001995645) (-0.008065729 0.02304073 -0.001005775) (-0.007525775 0.02400585 -0.001003888) (-0.007848485 0.0247463 -0.0009724429) (-0.006072166 0.02601113 -0.002523159) (-0.00656167 0.02600623 -0.002008385) (-0.006088819 0.02601495 -0.001512197) (0.007013837 0.02400227 -0.002502625) (0.007073866 0.02300514 -0.002013307) (0.007016891 0.02500187 -0.00200415) (0.007063599 0.02400735 -0.001506416) (0.006082609 0.02600932 -0.002524782) (0.006567126 0.02600312 -0.002012773) (0.006092613 0.02601581 -0.001516612) (0.007359907 0.02575648 -0.001992633) (0.007996487 0.02297243 -0.0009978833) (0.007677854 0.02428564 -0.001017065) (-0.006826449 0.02774456 -0.002372835) (-0.007024428 0.02702887 -0.002006159) (-0.006786234 0.02866985 -0.001853288) (-0.006969301 0.02795129 -0.001490121) (-0.005080441 0.02801938 -0.002532617) (-0.005069657 0.02901734 -0.002021012) (-0.006075877 0.02998037 -0.002498324) (-0.006352856 0.02975157 -0.001978275) (-0.005535036 0.030009 -0.002002817) (-0.006144865 0.03029481 -0.001651665) (-0.006081819 0.02701645 -0.001007213) (-0.00653497 0.02800546 -0.0009997941) (-0.006066208 0.02901029 -0.001003035) (0.005071876 0.02801531 -0.002533788) (0.005058279 0.02901246 -0.002021727) (0.006827011 0.02771274 -0.002366512) (0.007034176 0.0270069 -0.002010163) (0.00692878 0.02798534 -0.001502115) (0.006058486 0.02997409 -0.002492783) (0.005517354 0.03000045 -0.0020037) (0.006330231 0.02975723 -0.001970927) (0.006152616 0.03028574 -0.001628726) (0.006090126 0.0270198 -0.001007244) (0.006537155 0.0280086 -0.000997665) (0.006032448 0.02900961 -0.0009995461) (-0.005179021 0.03224725 -0.002644481) (-0.005066124 0.03101202 -0.002006544) (-0.00511674 0.03319181 -0.002010901) (-0.005044441 0.03201463 -0.001506926) (-0.00609327 0.03117289 -0.0009877599) (-0.005666389 0.03225035 -0.001023003) (-0.004288037 0.03429069 -0.002632213) (-0.004644793 0.03419802 -0.002012472) (-0.003584756 0.03402336 -0.002030664) (-0.004074604 0.03401381 -0.001520077) (-0.004562659 0.03201551 -0.00101091) (-0.004056236 0.03301415 -0.001013295) (0.005164231 0.0322412 -0.002646121) (0.005061766 0.03100929 -0.002020926) (0.005092029 0.0331871 -0.002005506) (0.005040458 0.03200241 -0.001506553) (0.004198682 0.03424564 -0.002664332) (0.003563347 0.03401524 -0.002041903) (0.004610603 0.03418786 -0.002002582) (0.004040864 0.03399755 -0.001534372) (0.004552028 0.03200334 -0.001011144) (0.004036387 0.03300318 -0.001015668) (0.006078516 0.03116697 -0.0009839049) (0.005674435 0.03224752 -0.001046187) (-0.003168133 0.0362167 -0.002674599) (-0.003067356 0.03503248 -0.002045745) (-0.002976718 0.03712083 -0.001977222) (-0.003072538 0.03603906 -0.001539798) (-0.004038966 0.03500408 -0.001001372) (-0.004315478 0.0357412 -0.0009781319) (-0.003555894 0.03602713 -0.001019568) (-0.003802508 0.03672423 -0.0009764641) (-0.001029271 0.03606496 -0.002573938) (-0.001032439 0.03706936 -0.002065928) (-0.001991197 0.03782275 -0.002502512) (-0.002463682 0.03780191 -0.001976346) (-0.001691555 0.03834524 -0.002185099) (-0.002193292 0.03833905 -0.001689831) (-0.002580434 0.03606034 -0.001013127) (-0.002068927 0.03706495 -0.001018854) (0.00103282 0.03606515 -0.002596638) (0.001028155 0.03706276 -0.002064692) (-9.500873e-06 0.03832187 -0.00272916) (-0.0005141663 0.03805744 -0.002091692) (0.000500289 0.0380746 -0.002070414) (-1.39132e-05 0.03807639 -0.001570847) (0.003141835 0.03623322 -0.002651084) (0.003058169 0.03502297 -0.002033275) (0.002956025 0.03710566 -0.001973107) (0.003068533 0.03601997 -0.001527053) (0.001971365 0.03780508 -0.002479856) (0.001709018 0.03834062 -0.002168353) (0.002399121 0.03775208 -0.001942854) (0.002178174 0.03830011 -0.001542966) (0.00257371 0.03604622 -0.001028041) (0.002090127 0.03710268 -0.001036898) (0.004004056 0.03498359 -0.001010899) (0.003533339 0.03600476 -0.001014125) (0.004277497 0.03573873 -0.0009722141) (0.003790184 0.03672117 -0.0009757229) (-0.000995287 0.03893837 -0.001978611) (-0.001974958 0.03895145 -0.0009883002) (-0.001313338 0.03948307 -0.000787068) (0.0009711885 0.0389073 -0.001957282) (0.0008200306 0.03950994 -0.001246113) (-2.2846e-05 0.03904873 -0.001026795) (-0.0005055262 0.03970958 -0.0009796012) (0.0004706482 0.03970568 -0.0009194842) (0.00204784 0.03885276 -0.00101715) (-0.003280756 -0.03762486 1.534916e-05) (-0.0009550935 -0.03971871 -0.0004451163) (-0.001022659 -0.03899658 6.020643e-06) (-0.000931813 -0.03975297 0.000472839) (-0.002074485 -0.03805166 -0.00050697) (-0.002740603 -0.03832494 -1.741867e-05) (-0.001562668 -0.03807607 1.006745e-06) (-0.002063732 -0.03806417 0.0005105046) (-0.001329227 -0.03946308 0.000834712) (-0.00197517 -0.03895502 0.0009978078) (0.0009605774 -0.03965569 -0.0004852674) (0.00106365 -0.03910161 6.766346e-06) (0.0009720248 -0.03962512 0.0004954423) (6.867671e-06 -0.03801101 -0.0005045307) (-0.0005164594 -0.03801898 1.717378e-05) (0.0005308512 -0.03804566 9.264403e-06) (7.589758e-07 -0.03802796 0.0005362569) (-0.000518697 -0.03967873 0.0009791237) (0.0005048999 -0.03965914 0.0009721241) (-1.354615e-05 -0.03903289 0.001058774) (0.002095419 -0.03809008 -0.0005028556) (0.001594477 -0.03812688 2.449122e-05) (0.002758284 -0.03834882 2.429056e-05) (0.002106996 -0.03811849 0.0005407335) (0.002024951 -0.03886569 0.001020913) (0.003266449 -0.03772549 4.030433e-06) (-0.004864644 -0.03478485 2.264251e-06) (-0.005353632 -0.03375394 4.407488e-07) (-0.003105191 -0.03603669 -0.0005221143) (-0.003094418 -0.03705349 -1.119208e-05) (-0.003091521 -0.03605212 0.0005028233) (-0.004036245 -0.03401184 -0.0005060019) (-0.004521634 -0.03401061 3.617207e-06) (-0.004035156 -0.03400733 0.0005086278) (-0.003778979 -0.03669724 0.0009710627) (-0.004320394 -0.03572899 0.0009863008) (-0.003555172 -0.03602508 0.001007546) (-0.004038882 -0.03499865 0.001015286) (-0.002067364 -0.03706062 0.001031945) (-0.002583524 -0.03605062 0.001019393) (0.003051979 -0.03603572 -0.0005050121) (0.003058348 -0.03703191 8.947248e-06) (0.003042596 -0.03603146 0.0005178185) (0.002077369 -0.03711261 0.001062001) (0.00256294 -0.03605593 0.001034492) (0.004835384 -0.0347616 3.760901e-06) (0.004007704 -0.03399993 -0.0004993702) (0.00449803 -0.03399288 4.687333e-06) (0.004013188 -0.03399949 0.0005089921) (0.003773412 -0.0367244 0.0009887995) (0.003529223 -0.03600499 0.001018666) (0.004274796 -0.03569431 0.0009850905) (0.004001805 -0.03499609 0.00100458) (0.005328385 -0.03375099 8.334033e-06) (-0.005064519 -0.03200165 -0.0004955236) (-0.005007702 -0.03299942 1.508856e-06) (-0.005060941 -0.03100569 -2.453545e-07) (-0.005066619 -0.03200326 0.0004950169) (-0.00602696 -0.03000494 -0.0004987079) (-0.00654936 -0.03001577 1.924165e-06) (-0.005559647 -0.03000803 9.109492e-07) (-0.006023775 -0.03000235 0.000500439) (-0.005684676 -0.03226275 0.001028523) (-0.006088438 -0.03117006 0.0009896088) (-0.004058678 -0.03301075 0.001020028) (-0.00456665 -0.03200716 0.001013971) (0.005077941 -0.03198889 -0.000496454) (0.005010988 -0.03299377 6.382944e-06) (0.005065159 -0.03100509 8.345458e-06) (0.005066016 -0.03199684 0.0005247447) (0.004064044 -0.03301555 0.001019611) (0.004586516 -0.03202104 0.001021951) (0.00600566 -0.03000201 -0.0004964299) (0.005551494 -0.03000956 4.487706e-06) (0.006513627 -0.02999624 2.837743e-06) (0.006027735 -0.03000357 0.0005057669) (0.005667632 -0.03228799 0.001029445) (0.006106745 -0.03100197 0.001001773) (-0.007049031 -0.02800434 -0.0005003962) (-0.006919195 -0.02877025 1.96661e-06) (-0.007199139 -0.02725345 9.665537e-06) (-0.007053641 -0.0280096 0.0005009104) (-0.007527816 -0.02600424 -4.296783e-07) (-0.006089822 -0.02601105 -0.0005012486) (-0.006577985 -0.02601218 2.210618e-06) (-0.006090946 -0.02601499 0.0005041727) (-0.006056983 -0.02900746 0.001003682) (-0.006537288 -0.02800715 0.001001177) (-0.006079564 -0.02701428 0.001005691) (0.007047067 -0.02800562 -0.0005009155) (0.006900881 -0.0287664 1.987223e-06) (0.007188372 -0.02726594 9.433731e-07) (0.007048306 -0.02800521 0.0004999489) (0.00610064 -0.0260176 -0.0005072325) (0.006587667 -0.02602127 -5.408918e-07) (0.006090759 -0.0260181 0.0005058737) (0.006042251 -0.02900647 0.001007014) (0.006544953 -0.02800918 0.001010573) (0.006087672 -0.02701796 0.001013764) (0.007536412 -0.02601321 -1.420517e-06) (-0.007061542 -0.02400814 -0.0005029874) (-0.007065828 -0.02501511 1.266001e-06) (-0.00709283 -0.0230143 -9.058305e-07) (-0.007060871 -0.02400886 0.0005014485) (-0.008189227 -0.02226144 -0.0004998058) (-0.008405469 -0.02175976 -7.315241e-07) (-0.007632203 -0.0220189 -1.199046e-06) (-0.008191778 -0.02223906 0.000498779) (-0.007827425 -0.02474569 0.0009676273) (-0.007517173 -0.02400466 0.0009984662) (-0.008068376 -0.02303716 0.001007366) (0.007050174 -0.02400604 -0.0005028344) (0.00706623 -0.02501909 4.254278e-07) (0.007069834 -0.02300933 -6.462591e-07) (0.007049392 -0.02400583 0.00050344) (0.008194305 -0.02230627 -0.000632591) (0.007586676 -0.02200749 -5.542545e-06) (0.008374429 -0.02196859 7.24658e-06) (0.008185093 -0.02227157 0.0005221192) (0.007837138 -0.02472628 0.0009727162) (0.007516163 -0.02400053 0.001003867) (0.008069706 -0.02304916 0.001015543) (-0.008855515 -0.01875295 6.619755e-07) (-0.007094046 -0.02001231 -0.0005037336) (-0.007102404 -0.02101566 -1.131834e-06) (-0.007092406 -0.02001374 0.0005022421) (-0.008034196 -0.01800158 -0.0004998302) (-0.008502183 -0.01799948 -1.461412e-07) (-0.008033771 -0.01800755 0.0005028066) (-0.008038177 -0.02100603 0.001000508) (-0.00856718 -0.02004056 0.001001175) (-0.007575706 -0.02001208 0.001003769) (-0.008066568 -0.01901065 0.00100808) (0.007083646 -0.02000887 -0.0005057451) (0.007084524 -0.02100941 -2.890383e-06) (0.007087353 -0.02000882 0.0005004635) (0.008859691 -0.01875368 3.286851e-06) (0.008031545 -0.01800478 -0.0005027085) (0.008494682 -0.01799922 -8.133388e-07) (0.008043643 -0.01800029 0.0004978958) (0.008034477 -0.02100699 0.0009997636) (0.007575813 -0.02000759 0.00100122) (0.008564859 -0.02004027 0.001003034) (0.008066729 -0.01900803 0.0009962504) (-0.009096126 -0.01601597 -0.0005038835) (-0.009019682 -0.01699552 5.652307e-08) (-0.009145687 -0.01518164 1.361977e-06) (-0.009085547 -0.01601702 0.0004979822) (-0.009378251 -0.01392946 -6.845362e-06) (-0.008092195 -0.01400621 -0.0005016419) (-0.008562208 -0.01400266 1.845516e-07) (-0.008085824 -0.01400376 0.0005010304) (-0.00803427 -0.01700065 0.001004779) (-0.00854601 -0.01599853 0.001003484) (-0.008075703 -0.01500122 0.001003957) (0.009104089 -0.01604786 -0.000508091) (0.009015343 -0.01700096 1.251776e-06) (0.009134987 -0.01523532 -2.331619e-06) (0.009100973 -0.01605073 0.0005039334) (0.008054045 -0.01400163 -0.0005059799) (0.008523891 -0.01399832 -8.244146e-07) (0.008064707 -0.01399988 0.000503007) (0.008043108 -0.01699858 0.001002897) (0.008551507 -0.01600211 0.001002377) (0.008085487 -0.01500183 0.001004901) (0.009408719 -0.01393605 1.543397e-06) (-0.009014385 -0.01199992 -0.0004997774) (-0.008979961 -0.01300057 3.435451e-07) (-0.009071734 -0.01100114 3.843475e-07) (-0.009015983 -0.0120007 0.0005008363) (-0.009622737 -0.01000601 -3.709391e-07) (-0.00945437 -0.01199542 0.0009969451) (-0.008066892 -0.01300585 0.001003347) (-0.008537436 -0.01200494 0.00100276) (-0.008059375 -0.01100456 0.001004536) (0.008959553 -0.01199815 -0.0004997879) (0.008951726 -0.01299652 -3.651044e-08) (0.008999965 -0.01099897 8.636256e-07) (0.008955121 -0.01199785 0.0004985334) (0.008037079 -0.01000142 -0.0005014951) (0.008534109 -0.01000106 7.593549e-07) (0.008035628 -0.01000103 0.0005022652) (0.008065808 -0.01299886 0.001005976) (0.00851699 -0.01199846 0.001001399) (0.008036862 -0.0110004 0.001005657) (0.00955156 -0.01000205 2.045517e-06) (0.009395311 -0.01199413 0.0009880554) (-0.009151959 -0.00800485 -0.000504545) (-0.009140861 -0.009003383 1.926215e-06) (-0.009132211 -0.007004057 3.264781e-06) (-0.009153191 -0.00800548 0.0005052383) (-0.009835871 -0.005952647 -0.0004744203) (-0.009485893 -0.00599807 -5.135854e-06) (-0.009828347 -0.005950702 0.0004809539) (-0.009645423 -0.008003815 0.0009988249) (0.009104901 -0.008003516 -0.0004988363) (0.009077364 -0.009002275 1.908222e-06) (0.009156134 -0.007006256 1.940931e-06) (0.009097924 -0.008002622 0.0005024732) (0.008047552 -0.009001896 0.001004558) (0.008566893 -0.008002818 0.001003512) (0.009726165 -0.006050414 9.503885e-06) (0.009572302 -0.008002348 0.001002353) (-0.00897409 -0.003998122 -0.0004999183) (-0.008992647 -0.004997257 5.602909e-07) (-0.008950087 -0.002996437 1.403877e-06) (-0.008976334 -0.003995816 0.000502325) (-0.009910582 -0.001995258 -0.0004962906) (-0.009429367 -0.00199615 9.565416e-07) (-0.009911499 -0.001996063 0.0004973324) (-0.009831444 -0.004956829 0.0009790096) (-0.009466237 -0.003996402 0.001008041) (-0.009843717 -0.002990537 0.0009816885) (0.009043342 -0.004003983 -0.0004994195) (0.009151879 -0.005012459 5.86784e-06) (0.008984044 -0.003001744 3.026887e-06) (0.009090006 -0.004002685 0.0005063439) (0.009895526 -0.001997246 -0.0004982006) (0.009425804 -0.001999006 1.258457e-06) (0.009876844 -0.001994814 0.0004953053) (0.009678939 -0.004235237 0.001013003) (0.009859182 -0.002940161 0.000977406) (-0.008974372 7.508701e-07 -0.0005005461) (-0.008965138 -0.0009980372 4.350593e-07) (-0.008964562 0.0009998832 -9.41586e-07) (-0.008973546 2.587754e-07 0.0005010943) (-0.009913297 0.001997885 -0.0004977871) (-0.009429284 0.001997999 -1.719372e-06) (-0.009908913 0.001996144 0.0004946558) (-0.00990764 -0.0009977672 0.000990042) (-0.009461102 -3.049986e-07 0.001000274) (-0.009909251 0.0009978408 0.0009880231) (0.008981347 -3.987068e-07 -0.0005008816) (0.008970997 -0.001000056 9.281242e-07) (0.008970309 0.0009996696 3.900547e-07) (0.008975235 4.372751e-08 0.0005015028) (0.009927639 0.0019975 -0.0004974565) (0.00944131 0.00199824 8.529841e-08) (0.009912384 0.001996963 0.0004962685) (0.009887549 -0.0009934214 0.0009910438) (0.009456205 1.085363e-06 0.00100008) (0.009904506 0.0009993473 0.0009940908) (-0.008972805 0.004000006 -0.0005061174) (-0.008948207 0.002999377 -3.093084e-06) (-0.009000466 0.004999471 -2.627634e-06) (-0.008972276 0.003999908 0.0004988922) (-0.009824239 0.005943364 -0.0004918114) (-0.009700086 0.006297012 0.0001352341) (-0.009848201 0.005773583 0.0004886441) (-0.009840517 0.002989534 0.0009894981) (-0.009459593 0.003996252 0.0009863415) (-0.009818711 0.004948997 0.0009808701) (0.008964098 0.003998667 -0.0005017764) (0.008954003 0.002999064 4.140171e-07) (0.008959139 0.004997114 5.554303e-07) (0.00896446 0.003998347 0.0005015874) (0.009819318 0.005991959 -0.0004886563) (0.009413186 0.005997655 -1.529515e-07) (0.009850537 0.005977685 0.0004819773) (0.00985638 0.002992687 0.0009826302) (0.009458906 0.003998003 0.001001419) (0.009868118 0.004977644 0.0009730707) (-0.009154607 0.008002035 -0.0005011993) (-0.009147684 0.006995501 -5.157824e-06) (-0.009140186 0.009004421 1.028713e-06) (-0.009155879 0.008002114 0.0005012751) (-0.009623008 0.01000119 1.019e-06) (-0.009656782 0.008009914 0.001012878) (0.009140046 0.008003039 -0.0005004546) (0.009045654 0.006997946 6.553874e-06) (0.009175848 0.009007298 3.176747e-06) (0.009149696 0.008005112 0.0005153142) (0.009663473 0.01000122 -7.225997e-07) (0.009817177 0.006740584 0.0008712573) (0.009701489 0.008024885 0.001045092) (-0.009013525 0.01200011 -0.0005029103) (-0.009070364 0.0110002 -2.43523e-07) (-0.008978885 0.01299859 -2.194384e-06) (-0.009010215 0.011999 0.0004987567) (-0.00938093 0.01393794 3.025039e-07) (-0.009469097 0.01199366 0.0009958961) (-0.008084678 0.01401129 -0.0005116459) (-0.008557927 0.01400861 -6.279117e-06) (-0.008085571 0.01400546 0.0004976177) (-0.008059662 0.01100002 0.001003674) (-0.008540253 0.01199934 0.001000782) (-0.00806648 0.01300112 0.0009991399) (0.009016997 0.01200064 -0.0005003956) (0.00908002 0.01100018 1.251163e-06) (0.008977801 0.01300062 2.000701e-06) (0.009016446 0.01199993 0.0005046477) (0.008076005 0.01400865 -0.0005052591) (0.008532908 0.01400624 1.519169e-06) (0.008069453 0.01400763 0.0005081087) (0.008072782 0.01100195 0.001011885) (0.008555087 0.01200297 0.001013961) (0.008079445 0.01300722 0.001016712) (0.009431107 0.01393566 3.306354e-06) (0.009464983 0.01199409 0.0009996439) (-0.009090221 0.01601068 -0.0005035096) (-0.009143236 0.01519156 -8.273829e-07) (-0.00901844 0.01699516 -1.543842e-06) (-0.009095409 0.01602134 0.0005085946) (-0.008038733 0.01800632 -0.0005031761) (-0.008498944 0.0180008 -6.448661e-07) (-0.008046628 0.01800345 0.000501166) (-0.008082987 0.0150033 0.001000773) (-0.008545239 0.01600206 0.001000735) (-0.008036763 0.01700174 0.001003754) (0.009118286 0.01604114 -0.0005011328) (0.009155582 0.01523824 -1.384028e-06) (0.00901883 0.01700192 -2.776145e-06) (0.00911747 0.01603664 0.0004986777) (0.008057751 0.01800966 -0.0005029841) (0.00850427 0.01800096 -1.86724e-06) (0.008033555 0.01800395 0.0004992737) (0.008077944 0.01500602 0.001008312) (0.008550927 0.01600218 0.001000632) (0.008036968 0.01700362 0.001001517) (-0.008869444 0.01876078 3.40739e-07) (-0.007097753 0.02001216 -0.0005058664) (-0.007101201 0.02101359 -2.240312e-06) (-0.007100196 0.02001037 0.0005022313) (-0.008198049 0.02224424 -0.000499332) (-0.00839987 0.02176101 -6.954478e-07) (-0.007622225 0.02202497 -1.827288e-06) (-0.008195567 0.02224704 0.0004954769) (-0.008063223 0.01900215 0.001003351) (-0.008565458 0.02004022 0.001001936) (-0.007578639 0.02000704 0.001005289) (-0.008030974 0.02100595 0.001001792) (0.007075904 0.02000587 -0.0005034003) (0.007069684 0.02100677 1.390538e-07) (0.007072767 0.02000528 0.000503377) (0.00885909 0.01875395 3.59601e-06) (0.008136155 0.02222082 -0.0004953418) (0.007558985 0.02200889 4.292393e-08) (0.008338558 0.0217498 9.201357e-07) (0.008140953 0.02221807 0.0004904989) (0.008039059 0.0190035 0.001005068) (0.007557157 0.02000386 0.001005596) (0.008509555 0.02002642 0.0009992254) (0.008190516 0.02130114 0.001147472) (-0.00705958 0.02400976 -0.0005033138) (-0.007093297 0.0230121 -1.844244e-06) (-0.007068073 0.02501104 -7.283528e-07) (-0.007059645 0.02400565 0.0004990456) (-0.007522499 0.02600531 -4.454653e-07) (-0.008072734 0.02304381 0.001000957) (-0.007518028 0.02399967 0.000997889) (-0.007830352 0.0247336 0.0009813337) (-0.006087346 0.02601635 -0.0005037408) (-0.006573302 0.02601544 -2.117887e-07) (-0.00608874 0.02601411 0.0005035213) (0.007113793 0.02400863 -0.0005078193) (0.007070818 0.02300809 -1.017744e-06) (0.007060412 0.02500988 5.140701e-07) (0.007106065 0.02401351 0.0005050007) (0.006108536 0.02601979 -0.0005039393) (0.006607573 0.02601704 1.019758e-06) (0.006111895 0.02601954 0.0005070078) (0.007524722 0.0259728 4.52276e-07) (0.00799505 0.022973 0.0009993271) (0.007679683 0.02428032 0.001023324) (-0.007045915 0.02800687 -0.0004982908) (-0.007179795 0.02726212 7.774375e-07) (-0.006921306 0.02877097 1.790175e-06) (-0.007040446 0.02800439 0.0005008153) (-0.006023675 0.0300044 -0.0004995981) (-0.006541522 0.03001014 5.213541e-06) (-0.005561973 0.03001488 9.056648e-08) (-0.006024468 0.03000677 0.00050137) (-0.006081109 0.02701368 0.00100736) (-0.006529292 0.02800879 0.001000904) (-0.00605577 0.02901403 0.001002678) (0.007049367 0.02800936 -0.0004985034) (0.007202835 0.02723262 1.193434e-06) (0.006899259 0.02877193 1.098149e-06) (0.00705233 0.02800483 0.0005028977) (0.006004422 0.02999952 -0.0004962546) (0.005549077 0.03000888 3.633418e-06) (0.006513468 0.0300026 2.583214e-06) (0.006029657 0.03000361 0.0005044001) (0.006099626 0.02701866 0.001012207) (0.00655616 0.02801079 0.001007982) (0.006040677 0.02900672 0.001005009) (-0.005061432 0.03200854 -0.0005040148) (-0.005060578 0.03101313 8.359321e-08) (-0.005011169 0.03299719 4.608519e-07) (-0.005062722 0.03200481 0.0005038975) (-0.005352498 0.03375635 5.166535e-06) (-0.006089098 0.03117225 0.0009914807) (-0.005661679 0.03224568 0.001027025) (-0.004038312 0.03400819 -0.0005026984) (-0.004531826 0.03400636 -2.899605e-07) (-0.004034937 0.03400993 0.0005096564) (-0.004560165 0.03201319 0.001011525) (-0.004052334 0.03302031 0.001017133) (0.005073172 0.03199888 -0.0004932646) (0.005061453 0.03100978 5.969154e-06) (0.005011867 0.03299662 5.779049e-06) (0.005083996 0.0320197 0.0005209876) (0.004008118 0.03399706 -0.000503333) (0.004499206 0.03399511 4.838998e-06) (0.004014421 0.03400081 0.0005103108) (0.00458947 0.03201854 0.001018178) (0.004062753 0.03301645 0.001020606) (0.005329547 0.03373509 6.335658e-06) (0.006102674 0.03100212 0.001000207) (0.005672729 0.03224269 0.001017323) (-0.004867636 0.03479016 1.243498e-06) (-0.003105462 0.03604693 -0.0005024361) (-0.003102768 0.03704562 1.179332e-05) (-0.003096918 0.0360529 0.000522653) (-0.003250404 0.03767049 -5.117144e-06) (-0.004034021 0.03499797 0.001011446) (-0.004302734 0.0357454 0.001002615) (-0.003551277 0.03602026 0.001026085) (-0.003804154 0.03668004 0.00097623) (-0.00207418 0.03805698 -0.0005028525) (-0.002776479 0.03828691 1.08887e-05) (-0.001595252 0.03806731 6.238836e-06) (-0.002067319 0.03806054 0.0005183248) (-0.002579271 0.03605442 0.00102445) (-0.001550559 0.03606098 0.001041811) (-0.00206168 0.03706256 0.001030918) (-5.706064e-06 0.03803847 -0.0005151568) (-0.0005317151 0.03803149 1.193911e-05) (0.0005305846 0.03804637 3.262786e-06) (-7.093146e-06 0.03802468 0.0005377404) (0.003051067 0.03602844 -0.000513284) (0.003048888 0.03704489 -3.531271e-07) (0.003050508 0.03603446 0.0005172172) (0.00211336 0.038124 -0.000523736) (0.001606114 0.03811558 -2.283565e-05) (0.00274683 0.03836582 -3.781842e-05) (0.00209058 0.03808651 0.000500533) (0.002580217 0.03606009 0.001040282) (0.002076694 0.03707167 0.001042229) (0.00482882 0.0347742 4.658851e-06) (0.003257412 0.03773566 -1.14132e-05) (0.004004713 0.03499066 0.00101399) (0.003536134 0.03600599 0.001018974) (0.004276349 0.03571332 0.0009803733) (0.003777342 0.03671057 0.0009799708) (-0.0009431571 0.03975448 -0.0004577099) (-0.00105543 0.0389893 2.613745e-06) (-0.0009606728 0.03970308 0.0004756305) (-0.001977094 0.0389433 0.0009911331) (-0.001281952 0.0395158 0.0008065896) (0.0009490727 0.03965504 -0.000483344) (0.00107892 0.03908619 -1.063396e-05) (0.0009630232 0.03963299 0.0004817374) (-3.08873e-05 0.03901689 0.001070432) (-0.0004986202 0.03967727 0.0009970298) (0.0004654156 0.03966296 0.0009652436) (0.00196619 0.03892374 0.0009848642) (-0.0009988619 -0.03894543 0.001979995) (-0.002191532 -0.03835021 0.00172335) (-0.002470223 -0.03780993 0.001988242) (-0.001669556 -0.03836317 0.002196225) (-0.002006016 -0.03783952 0.002502518) (0.0007556386 -0.03948343 0.001365446) (0.0009847042 -0.03892763 0.001957865) (-1.187566e-05 -0.0380922 0.001581449) (-0.0005216255 -0.03809182 0.002090495) (0.0005084612 -0.03806746 0.002097446) (-4.682743e-06 -0.03836847 0.00274045) (0.002201873 -0.03829794 0.001557879) (0.00173481 -0.03831872 0.002190035) (0.002419745 -0.03775471 0.001955036) (0.00197315 -0.0378047 0.002461346) (-0.003085026 -0.03605564 0.00151552) (-0.002974878 -0.0371343 0.001993944) (-0.003071815 -0.03503596 0.002040873) (-0.003158556 -0.03622368 0.00264096) (-0.004084219 -0.03401226 0.00153686) (-0.004659908 -0.03418512 0.002016916) (-0.003582193 -0.03402435 0.002041735) (-0.004249273 -0.03428817 0.002682445) (-0.003327691 -0.03577147 0.002865267) (-0.003883154 -0.03479281 0.00299963) (-0.001031104 -0.03707365 0.0020814) (-0.001026312 -0.036058 0.002593798) (-0.002018211 -0.03717654 0.003036486) (-0.002661549 -0.03623801 0.003139305) (-0.001531876 -0.03605161 0.003101102) (-0.002048909 -0.0350486 0.003076638) (0.001034037 -0.03706292 0.002072937) (0.001027764 -0.03606111 0.002579279) (1.992183e-07 -0.03703675 0.003049757) (-0.0005068125 -0.03604394 0.003077122) (0.0005120738 -0.03604559 0.003069426) (0.003079188 -0.03602341 0.001531272) (0.002966797 -0.03711859 0.001973073) (0.003061131 -0.03501921 0.002032724) (0.003147997 -0.03622394 0.00263466) (0.001988513 -0.03714114 0.002982176) (0.001543388 -0.03604006 0.003081581) (0.002620987 -0.03622018 0.003126328) (0.002026272 -0.0350226 0.003051804) (0.004052875 -0.03401342 0.001514212) (0.003559363 -0.034021 0.002025603) (0.004622562 -0.0341894 0.002029076) (0.004205512 -0.03432236 0.002649562) (0.003358882 -0.03577211 0.002861115) (0.003848898 -0.03477261 0.002975045) (-0.005059124 -0.03200297 0.001510912) (-0.005108597 -0.03319228 0.002019031) (-0.005064606 -0.03100952 0.002014621) (-0.005165255 -0.03228037 0.002637976) (-0.006185031 -0.03030086 0.001639302) (-0.006353131 -0.02976586 0.001984459) (-0.005533589 -0.03000571 0.002007028) (-0.00606898 -0.02997645 0.002493043) (-0.005356391 -0.03175111 0.002874167) (-0.005776531 -0.03068823 0.002814629) (-0.004010401 -0.03299686 0.003002005) (-0.004520229 -0.03200124 0.003000585) (-0.003533722 -0.03201044 0.003025399) (-0.004048419 -0.03101058 0.003027598) (0.005057633 -0.03202292 0.001513037) (0.005118722 -0.03317557 0.00199001) (0.005070618 -0.03101758 0.002029272) (0.005153625 -0.03226971 0.002655116) (0.004012782 -0.0329983 0.002997844) (0.003541241 -0.03201062 0.003022495) (0.004730554 -0.0322998 0.00316155) (0.004064057 -0.03101434 0.003028856) (0.006192479 -0.03025328 0.001531676) (0.005531863 -0.03000611 0.002011584) (0.006339561 -0.02973529 0.001981995) (0.006057333 -0.02997764 0.002492311) (0.005352082 -0.03175693 0.002877744) (0.005761815 -0.03069983 0.002811634) (-0.00697947 -0.0279577 0.001494722) (-0.006777456 -0.02868329 0.001848373) (-0.007028048 -0.02702912 0.002004351) (-0.006861923 -0.02773838 0.002384759) (-0.007365465 -0.02576162 0.001993585) (-0.005070298 -0.02901029 0.002017967) (-0.005080324 -0.02801375 0.002524865) (-0.006090699 -0.02601402 0.00151064) (-0.006563353 -0.02600158 0.002009402) (-0.006077739 -0.02601259 0.002526) (-0.006108306 -0.02901905 0.003016621) (-0.006439567 -0.02798755 0.003000403) (-0.005572254 -0.0280146 0.003015874) (-0.006057958 -0.02701588 0.003022786) (0.005068671 -0.0290127 0.002021805) (0.005069091 -0.02801144 0.002528933) (0.006929844 -0.02800613 0.001503265) (0.007086276 -0.02697731 0.001996491) (0.00683002 -0.02771617 0.002351112) (0.006073024 -0.0260137 0.001517249) (0.006550802 -0.02601079 0.002014791) (0.006080558 -0.02601103 0.002521108) (0.00608478 -0.0290165 0.003008739) (0.005544871 -0.02800425 0.00302251) (0.006410134 -0.02798097 0.002993484) (0.006044722 -0.02700717 0.003018362) (0.007361321 -0.02595482 0.00198047) (-0.007049822 -0.02401237 0.001503001) (-0.007025839 -0.02500281 0.002003165) (-0.007034716 -0.02300571 0.00200509) (-0.007019143 -0.02400016 0.002506817) (-0.00814115 -0.02203548 0.001502118) (-0.007531897 -0.02200224 0.002003101) (-0.007975725 -0.02199072 0.002482375) (-0.00740076 -0.0239819 0.002988045) (-0.007799137 -0.02272987 0.002858307) (-0.00608138 -0.02501539 0.003035376) (-0.006554717 -0.02400714 0.003028195) (-0.006070001 -0.02301321 0.003029876) (0.007068596 -0.0240033 0.001514246) (0.007020463 -0.02500308 0.002006991) (0.007097135 -0.0230142 0.00202268) (0.007047222 -0.02400718 0.002513025) (0.006088304 -0.0250163 0.003027415) (0.006573747 -0.02401548 0.003024626) (0.006082863 -0.0230138 0.003031308) (0.008154268 -0.02202678 0.001490458) (0.007546089 -0.02200342 0.002004016) (0.007972917 -0.02196694 0.002486864) (0.007402415 -0.02397807 0.002987551) (0.007802959 -0.0226938 0.002845565) (-0.007075773 -0.02001086 0.001506951) (-0.007066594 -0.02100841 0.002007585) (-0.007065653 -0.01900546 0.002011291) (-0.007061709 -0.02000677 0.002513682) (-0.008054089 -0.01799551 0.001508275) (-0.008644869 -0.01803436 0.002014183) (-0.007565988 -0.0180022 0.002009077) (-0.008052369 -0.01799957 0.002504597) (-0.007973479 -0.02099269 0.002977171) (-0.008304967 -0.0197253 0.002852288) (-0.007536251 -0.02000534 0.003015439) (-0.008133607 -0.01902395 0.003117946) (0.007079803 -0.0200091 0.001506546) (0.007077146 -0.02101101 0.00201161) (0.007073466 -0.01900784 0.00201267) (0.007069712 -0.0200141 0.002517507) (0.008074572 -0.01799591 0.00150145) (0.007577585 -0.01800308 0.002010506) (0.008620501 -0.01803202 0.002021082) (0.00806039 -0.01800202 0.002512133) (0.007972809 -0.02099123 0.00298095) (0.007541756 -0.02001421 0.003015868) (0.008322578 -0.01972655 0.002841396) (0.00814692 -0.01902473 0.003139741) (-0.008993327 -0.01600001 0.001498148) (-0.008844726 -0.01696183 0.001982833) (-0.009000437 -0.01499961 0.001997341) (-0.008845046 -0.01596776 0.002469567) (-0.00807375 -0.01400375 0.00150619) (-0.008550616 -0.01400134 0.002005102) (-0.008051555 -0.01400144 0.002507886) (-0.008015614 -0.01700152 0.00299733) (-0.008599556 -0.01600152 0.003002435) (-0.00754957 -0.01600225 0.003007906) (-0.008041103 -0.01500051 0.003005554) (0.009010762 -0.01599923 0.001499117) (0.008853273 -0.01696933 0.001981759) (0.009016959 -0.01500216 0.00200247) (0.008851345 -0.01597101 0.002464848) (0.008095879 -0.01400226 0.001511724) (0.008585386 -0.01400277 0.002015172) (0.008083651 -0.01400141 0.00252605) (0.008024097 -0.01699997 0.003009081) (0.007584559 -0.0160062 0.00303178) (0.008605068 -0.01600552 0.003006664) (0.008061337 -0.01500399 0.003028058) (-0.009006369 -0.01200069 0.001502293) (-0.009132855 -0.01303273 0.002023143) (-0.009010239 -0.01100185 0.001996666) (-0.009121893 -0.01200313 0.002503251) (-0.009434242 -0.009997453 0.00199109) (-0.008058485 -0.01000538 0.001507544) (-0.008548949 -0.01000933 0.002009112) (-0.008066176 -0.01000938 0.002516193) (-0.008042399 -0.01300251 0.003010582) (-0.008533422 -0.01200526 0.003006956) (-0.00805574 -0.01100586 0.003016764) (0.008984679 -0.01199906 0.001492964) (0.009134543 -0.01300003 0.002009032) (0.009160607 -0.01127969 0.002152348) (0.009115283 -0.01202178 0.002522469) (0.008045679 -0.01000164 0.001509631) (0.008538166 -0.01000245 0.002013647) (0.008071644 -0.01000269 0.002519902) (0.008071928 -0.01300227 0.003025875) (0.008558454 -0.01200253 0.003017566) (0.008078107 -0.01100299 0.003024165) (0.009405937 -0.009979542 0.001972832) (-0.009082044 -0.008003745 0.001506165) (-0.009009975 -0.009004631 0.002002529) (-0.009053612 -0.007001076 0.002003059) (-0.009004041 -0.008001979 0.002500189) (-0.009571893 -0.006002262 0.00200171) (-0.009303677 -0.007997144 0.002848331) (-0.00856993 -0.006000358 0.002009094) (-0.008057789 -0.006000275 0.002515733) (-0.008067706 -0.009005114 0.003025108) (-0.008568097 -0.008002377 0.003021227) (-0.008066297 -0.007001163 0.003019215) (0.009038592 -0.008002318 0.001501385) (0.009002057 -0.009001568 0.002003543) (0.009013782 -0.007002905 0.002001009) (0.009180842 -0.008274043 0.002657648) (0.008557927 -0.006003991 0.002010413) (0.008062697 -0.006004001 0.002518874) (0.008067895 -0.009002785 0.003017611) (0.008567966 -0.008004485 0.003015284) (0.008075304 -0.007003769 0.003021136) (0.009517276 -0.006001006 0.001996344) (0.009335207 -0.007718974 0.002848027) (-0.00908403 -0.0039941 0.001511718) (-0.009074955 -0.004999263 0.00200803) (-0.009072662 -0.002997033 0.002007205) (-0.009039087 -0.003998759 0.002505363) (-0.009879519 -0.001982925 0.001467525) (-0.009644643 -0.001985136 0.002121646) (-0.009405268 -0.003995974 0.002964075) (-0.008047375 -0.004999755 0.003016503) (-0.008536718 -0.003999448 0.003012617) (-0.008058216 -0.002999781 0.003022379) (0.009109215 -0.004004538 0.00151285) (0.009063904 -0.005003752 0.002008414) (0.009084639 -0.003002075 0.002011549) (0.009021351 -0.004002008 0.002505707) (0.008064558 -0.005004378 0.003025001) (0.008528625 -0.004002991 0.003012991) (0.008051647 -0.0030026 0.003019166) (0.009844889 -0.001996784 0.001477096) (0.00962676 -0.002004523 0.002011029) (0.009430814 -0.00397999 0.002963953) (-0.009024822 -1.069013e-07 0.001517107) (-0.009080202 -0.001000014 0.002030659) (-0.009085114 0.0009996767 0.002020733) (-0.009109653 -7.378681e-07 0.00252729) (-0.009863531 0.001985017 0.001453836) (-0.009657608 0.001984609 0.002130616) (-0.009538909 -3.273581e-07 0.002994045) (-0.00808141 -0.00100063 0.003029805) (-0.008600703 -2.415681e-08 0.00303195) (-0.008080129 0.001000571 0.003026757) (0.00903313 8.615848e-07 0.001507712) (0.00908682 -0.00100134 0.002018397) (0.009090409 0.001001103 0.002010615) (0.009109437 -7.002921e-07 0.002517414) (0.008072486 -0.001001923 0.00302805) (0.00859025 -1.720771e-06 0.003034857) (0.008076505 0.0009991767 0.00302529) (0.009874021 0.001983416 0.001455743) (0.009668064 0.001985479 0.002109973) (0.009532036 -1.039287e-06 0.002985828) (-0.009082656 0.004000821 0.001499159) (-0.009073814 0.002997312 0.002004244) (-0.009075387 0.005002227 0.002009918) (-0.009035688 0.004001026 0.002507733) (-0.009577578 0.005999189 0.002002364) (-0.009401607 0.003997444 0.002981263) (-0.008570481 0.006003894 0.002011475) (-0.008058729 0.006005493 0.002518071) (-0.008057023 0.003001136 0.003020591) (-0.008534655 0.00400216 0.00301638) (-0.008047185 0.005004199 0.003018587) (0.009092991 0.004000542 0.001507335) (0.009090565 0.003000856 0.002006158) (0.009098258 0.005001159 0.00201302) (0.009055801 0.004000604 0.002508202) (0.008582534 0.005999703 0.002008474) (0.008062772 0.005998992 0.002509764) (0.008065571 0.002999877 0.003015156) (0.008549541 0.003999959 0.003009301) (0.008051944 0.004999391 0.003011032) (0.009800016 0.005723605 0.001346513) (0.009606536 0.006004742 0.002005121) (0.009424021 0.003999919 0.002979474) (-0.00908204 0.008001194 0.001506614) (-0.009054964 0.007001477 0.002008964) (-0.009016078 0.008999404 0.002003673) (-0.009004562 0.008000996 0.002506873) (-0.009440143 0.009995222 0.001991262) (-0.009303523 0.007998025 0.002849968) (-0.008063649 0.01000012 0.00150893) (-0.008563767 0.009999839 0.002013714) (-0.008081468 0.01000049 0.002520564) (-0.0080654 0.00700402 0.003027793) (-0.008563427 0.008003804 0.00303226) (-0.008067242 0.009001511 0.003028078) (0.009120519 0.008000141 0.001514701) (0.009087632 0.00699882 0.002009261) (0.00905639 0.008999997 0.002010755) (0.009048226 0.00799895 0.002508335) (0.008080127 0.01000092 0.00151515) (0.008579021 0.0100006 0.00201825) (0.008092271 0.01000107 0.002526861) (0.008078479 0.006997902 0.003015316) (0.00859882 0.007999117 0.003015912) (0.008086386 0.009001098 0.003030518) (0.009465522 0.009994693 0.001992303) (0.009352157 0.008009899 0.002880738) (-0.009002863 0.01199684 0.001500607) (-0.009004159 0.01099823 0.00200437) (-0.009133319 0.01303976 0.002015315) (-0.009116444 0.01200477 0.002511465) (-0.008074498 0.0140002 0.001499121) (-0.008554607 0.01400019 0.00200102) (-0.008062975 0.01399307 0.002509587) (-0.008069672 0.01100015 0.003020648) (-0.008541854 0.01199754 0.003016722) (-0.008054046 0.01299426 0.00301367) (0.009010716 0.01199981 0.001507009) (0.009021372 0.01100104 0.002003187) (0.009159371 0.01301646 0.002031021) (0.009127897 0.01200012 0.002510806) (0.008099345 0.0140095 0.001518484) (0.008593544 0.01400438 0.002013451) (0.008082195 0.01400707 0.002522776) (0.008076859 0.01100123 0.003029197) (0.008555533 0.01200083 0.003018179) (0.008070701 0.01300436 0.003025424) (-0.008994493 0.01600011 0.001498843) (-0.008996969 0.01500012 0.00199787) (-0.008848134 0.01695669 0.001985086) (-0.008845632 0.01596672 0.002481081) (-0.008063091 0.01799793 0.001514405) (-0.008620574 0.01803648 0.002014688) (-0.007562489 0.01800365 0.002011664) (-0.008041764 0.01800125 0.002503384) (-0.008040324 0.01499819 0.003006901) (-0.008600599 0.01600463 0.003004727) (-0.007544483 0.01600349 0.003014992) (-0.008016516 0.01700011 0.003002468) (0.009012292 0.01599864 0.00149975) (0.009023002 0.01499741 0.002002186) (0.008854256 0.01696931 0.001981543) (0.008856043 0.01596724 0.002477209) (0.008062616 0.01800581 0.00150183) (0.007578011 0.01800587 0.002014409) (0.008624716 0.01803196 0.002010451) (0.008036229 0.01800448 0.002507379) (0.008059252 0.01500182 0.003013207) (0.007560636 0.01600355 0.003016662) (0.008607033 0.01600572 0.003009688) (0.008024229 0.01700088 0.003004566) (-0.00707695 0.02000645 0.001509759) (-0.007064668 0.01900498 0.002012866) (-0.007069413 0.02100686 0.00201194) (-0.007061582 0.02000643 0.002515524) (-0.008157632 0.02203477 0.001507322) (-0.007535467 0.0220016 0.001999655) (-0.0079663 0.02198775 0.002484376) (-0.0081407 0.01902394 0.0031341) (-0.008330647 0.01972753 0.002824001) (-0.007540766 0.02000088 0.003012963) (-0.007970989 0.02099235 0.002974743) (0.007077009 0.02000468 0.00151164) (0.007086077 0.01900544 0.002018909) (0.007075055 0.02100626 0.002015502) (0.007077772 0.02000873 0.002521108) (0.008057652 0.02204395 0.001509732) (0.007531421 0.02200259 0.002002451) (0.007885361 0.02196264 0.002485968) (0.008134508 0.01904412 0.003033667) (0.007530149 0.02000395 0.003008645) (0.007893572 0.02096937 0.00298856) (-0.00706257 0.02400002 0.001503912) (-0.007039747 0.02300297 0.002006163) (-0.007027406 0.0249995 0.002002054) (-0.007017807 0.02400363 0.002504298) (-0.007360815 0.02576539 0.001986303) (-0.007791226 0.02273379 0.0028699) (-0.007402367 0.02397887 0.002986871) (-0.006092824 0.02601257 0.001514746) (-0.006567623 0.02600606 0.002012682) (-0.006084554 0.02601554 0.002533513) (-0.006073163 0.02301131 0.003035462) (-0.006556725 0.02401539 0.003029109) (-0.006079427 0.02501495 0.003037328) (0.007065977 0.02400509 0.001502694) (0.007060314 0.02300303 0.002003669) (0.007024682 0.02500346 0.002004602) (0.00702277 0.02400238 0.002505844) (0.006105615 0.02601982 0.001518588) (0.006578365 0.02601064 0.002021268) (0.006078223 0.02601559 0.002532664) (0.00607789 0.02300933 0.003029015) (0.006555109 0.02400591 0.003019456) (0.006073945 0.02501488 0.003038356) (0.007366009 0.02577707 0.001989076) (0.007368697 0.02396488 0.00297752) (-0.006979417 0.02795547 0.001493912) (-0.007027938 0.02703063 0.00200384) (-0.006794884 0.02869092 0.001854605) (-0.006843607 0.02774779 0.002371453) (-0.005068082 0.02901544 0.002020079) (-0.005075679 0.0280151 0.002533247) (-0.006183658 0.03028804 0.001633226) (-0.006349566 0.02976103 0.001989907) (-0.005531473 0.03000452 0.002006248) (-0.006069077 0.02997659 0.00249421) (-0.006064197 0.02700974 0.00303389) (-0.0064374 0.02798611 0.003004231) (-0.005560708 0.02801514 0.003035113) (-0.006102614 0.02902056 0.003022373) (0.005071475 0.02901783 0.002018901) (0.005069352 0.02801499 0.002525706) (0.006935376 0.02798541 0.001505315) (0.007052314 0.02700283 0.002011434) (0.006816362 0.02771734 0.002368193) (0.006187969 0.03026523 0.001530276) (0.005537484 0.03001263 0.002004735) (0.006347572 0.02975376 0.001979471) (0.006058541 0.02997053 0.002492466) (0.00604581 0.02700851 0.003016508) (0.005548474 0.02800397 0.003015592) (0.006415316 0.02797874 0.002988341) (0.006085301 0.02901569 0.003008838) (-0.005059756 0.03201202 0.00151094) (-0.005069246 0.0310193 0.002012802) (-0.005121862 0.03320152 0.002015846) (-0.005168506 0.03226431 0.002653183) (-0.005770073 0.03069968 0.00283239) (-0.005368439 0.0317513 0.002856233) (-0.004075352 0.03403576 0.001532417) (-0.00466095 0.03420639 0.00200345) (-0.003580826 0.03404126 0.002027839) (-0.004257554 0.03431464 0.002637896) (-0.004045827 0.03101265 0.003023742) (-0.004518289 0.03200113 0.003007477) (-0.003533167 0.03201184 0.003020439) (-0.004019605 0.03300363 0.003000838) (0.005085351 0.03201904 0.001516914) (0.005084189 0.03103226 0.002016078) (0.005111764 0.03318562 0.001990733) (0.005145158 0.03224979 0.00264082) (0.004047915 0.03401105 0.001527555) (0.003558456 0.0340269 0.002040469) (0.004617075 0.0342054 0.002013494) (0.004185798 0.03430302 0.002670869) (0.004077462 0.03102634 0.003042422) (0.003551183 0.0320216 0.003035811) (0.004732944 0.03229212 0.003173609) (0.004025745 0.03300971 0.003007375) (0.005761007 0.03070556 0.002844725) (0.005358312 0.03175773 0.002867145) (-0.003078396 0.03604258 0.001545638) (-0.003066137 0.03504457 0.002035922) (-0.002980828 0.03713968 0.001981175) (-0.003138749 0.03623871 0.002653893) (-0.003887571 0.03478786 0.002992077) (-0.003357376 0.03580339 0.002855751) (-0.001032933 0.03607219 0.001566999) (-0.001026668 0.03710755 0.002096537) (-0.001039197 0.03606383 0.002587416) (-0.002136838 0.0383874 0.001695085) (-0.002473785 0.03780503 0.00198872) (-0.001503746 0.03834417 0.002199635) (-0.001989606 0.03780611 0.002491067) (-0.002044386 0.03504562 0.003069406) (-0.002664166 0.03623701 0.003148123) (-0.001531386 0.03606012 0.003081362) (-0.002005405 0.03716238 0.00301845) (0.001034232 0.03707212 0.002080758) (0.001029522 0.03607528 0.002585234) (-1.867384e-05 0.03808179 0.001595949) (-0.0005201001 0.03812232 0.002101964) (0.0005057743 0.03807235 0.002098287) (-1.28366e-05 0.03831803 0.002786109) (-0.0005286964 0.03604526 0.003080493) (0.0005093812 0.03605371 0.003070387) (-5.15187e-06 0.03703693 0.003047849) (0.003100621 0.03603712 0.001538263) (0.003071174 0.03503884 0.002058919) (0.00303516 0.03717162 0.002014798) (0.003178482 0.0362484 0.002643081) (0.002215473 0.03832073 0.001714177) (0.001709642 0.03833589 0.002231732) (0.002505604 0.03784137 0.002003769) (0.001995979 0.03783248 0.002496944) (0.002043233 0.03504722 0.003099825) (0.001545028 0.03606221 0.003099412) (0.002643947 0.03625947 0.003200331) (0.002029343 0.03717863 0.003020918) (0.003847293 0.03478642 0.002992708) (0.003372999 0.03578533 0.002889326) (-0.001000585 0.03878255 0.001989984) (0.000766072 0.03949103 0.001320721) (0.0009801493 0.03892178 0.001968147) (-1.809664e-06 -0.03769194 0.003320424) (-0.002860134 -0.03576959 0.003375748) (-0.002999824 -0.03480171 0.003903833) (-0.00395339 -0.03395391 0.003464773) (-0.003450346 -0.03395583 0.003961766) (-0.001015989 -0.03603833 0.003568225) (-0.0009921115 -0.03671226 0.003821592) (-0.001014626 -0.03501307 0.004060139) (-0.0009660826 -0.03576141 0.004330925) (-0.002048168 -0.03403362 0.003598585) (-0.002706135 -0.03428463 0.004267398) (-0.001523444 -0.034023 0.004112964) (-0.002016797 -0.03419672 0.004715553) (0.00102343 -0.03601469 0.003554857) (0.000971019 -0.03673869 0.00376306) (0.001014029 -0.03502569 0.004060063) (0.0009774865 -0.03576047 0.004344114) (-0.0005053657 -0.03401842 0.004064536) (0.0005083256 -0.03402121 0.004068058) (2.488774e-06 -0.03401373 0.004554206) (3.26226e-06 -0.0348073 0.004894088) (0.002846355 -0.0357681 0.003346748) (0.002985708 -0.03476868 0.003822972) (0.002020258 -0.03401866 0.003564842) (0.001529028 -0.03402554 0.004090505) (0.002638968 -0.03427906 0.004201947) (0.002016704 -0.03422698 0.004652636) (0.003925693 -0.03395137 0.003444687) (0.003444783 -0.033944 0.003944901) (-0.004881693 -0.03195908 0.003465395) (-0.004880141 -0.03097641 0.003960608) (-0.005816377 -0.02974411 0.003373111) (-0.005396477 -0.02975452 0.003873297) (-0.003027478 -0.03201338 0.003539846) (-0.003012488 -0.03300632 0.004022198) (-0.00303666 -0.03101754 0.004059747) (-0.00300709 -0.03200504 0.004532644) (-0.004054099 -0.03000555 0.003536425) (-0.004519821 -0.02999406 0.004005261) (-0.0035427 -0.03001306 0.004060172) (-0.004009659 -0.03000016 0.004512689) (-0.003479613 -0.03196266 0.004885667) (-0.003981688 -0.03097231 0.004883976) (-0.001015025 -0.03302264 0.004074297) (-0.001012626 -0.03201925 0.004569846) (-0.002033298 -0.03319749 0.005139793) (-0.002643736 -0.03225215 0.005161789) (-0.001507972 -0.03201277 0.00504019) (-0.002023619 -0.03103049 0.005087122) (0.001017818 -0.03301875 0.004071508) (0.001014284 -0.03201566 0.004575782) (3.675779e-06 -0.03300202 0.005013854) (-0.000508167 -0.03202541 0.005059765) (0.0005171684 -0.03201057 0.005074007) (2.767228e-06 -0.0310235 0.005073803) (0.003020143 -0.03200573 0.00353122) (0.003000496 -0.03299878 0.004021041) (0.003028539 -0.03101021 0.004052365) (0.002995291 -0.031993 0.004524114) (0.002011617 -0.03319627 0.005104269) (0.001507692 -0.03199914 0.005047271) (0.002635324 -0.03225853 0.005148211) (0.00201533 -0.03100564 0.005053294) (0.004893896 -0.03178209 0.00349018) (0.004880393 -0.03096732 0.003960521) (0.004053049 -0.03001001 0.003537852) (0.0035358 -0.03000931 0.004057891) (0.004528264 -0.03000229 0.004023908) (0.004016554 -0.03000265 0.004530832) (0.003464552 -0.03195325 0.004870428) (0.003961598 -0.03096687 0.004868513) (0.005800991 -0.02973461 0.003348418) (0.005388171 -0.02976212 0.003875054) (-0.005059444 -0.02801044 0.003528488) (-0.005194339 -0.02927888 0.004156698) (-0.005056809 -0.02701076 0.004037457) (-0.005203932 -0.02826061 0.004643117) (-0.00604724 -0.02600794 0.003527882) (-0.006423027 -0.0259878 0.004002114) (-0.005579904 -0.02601085 0.004056014) (-0.006027605 -0.02602963 0.004528967) (-0.00535177 -0.02773684 0.004870079) (-0.004139659 -0.02929223 0.005211369) (-0.004662421 -0.02825565 0.005187318) (-0.00354074 -0.02801452 0.00507791) (-0.004036896 -0.02701051 0.005052489) (-0.002025939 -0.02902212 0.005091111) (-0.002537408 -0.02802227 0.005095979) (0.002028193 -0.02901536 0.005077458) (0.002539002 -0.02801851 0.005086684) (0.005055078 -0.02800725 0.003533393) (0.005208435 -0.02926558 0.004178498) (0.005047464 -0.02700527 0.004034828) (0.005184992 -0.02823644 0.004671035) (0.004155301 -0.02927581 0.005211941) (0.003537457 -0.02800992 0.005062947) (0.004683043 -0.02823643 0.005193022) (0.004040951 -0.02700775 0.00505095) (0.00604163 -0.02601147 0.003527259) (0.005549784 -0.02600488 0.004040926) (0.006411855 -0.02598293 0.003992576) (0.006018202 -0.02602714 0.004504851) (0.005347483 -0.02774953 0.004849162) (-0.007100419 -0.0240174 0.003508269) (-0.006853526 -0.0247396 0.003883329) (-0.007083965 -0.02301807 0.003999983) (-0.006833469 -0.02372432 0.004315584) (-0.007804425 -0.02172116 0.003321566) (-0.00737831 -0.02196852 0.003968365) (-0.005076497 -0.02501539 0.00405788) (-0.005060776 -0.02401218 0.00455373) (-0.006068687 -0.02200994 0.003529375) (-0.00655324 -0.02200356 0.00401966) (-0.006069842 -0.02200658 0.004527529) (-0.005990248 -0.02497732 0.004991878) (-0.006360084 -0.02398109 0.004866946) (-0.005527142 -0.02400752 0.005025047) (-0.006145306 -0.02328043 0.005142324) (-0.004049453 -0.0250137 0.005073112) (-0.004549687 -0.02400978 0.00506276) (0.005060333 -0.0250082 0.00404501) (0.005047518 -0.02400634 0.004541358) (0.004044372 -0.02501134 0.005070665) (0.004537097 -0.02400634 0.005048521) (0.007104773 -0.02402076 0.003515074) (0.006849432 -0.02474972 0.003879162) (0.007074124 -0.02298794 0.003990197) (0.006830602 -0.0237248 0.004328964) (0.006081717 -0.02201449 0.003540165) (0.006567064 -0.02200919 0.004032344) (0.00606888 -0.02201377 0.004545979) (0.005974288 -0.02496981 0.004980071) (0.005517797 -0.02400119 0.005009767) (0.006368692 -0.02397714 0.004879894) (0.006175084 -0.02326599 0.005140752) (0.007785339 -0.02172145 0.003322199) (0.007374135 -0.02197898 0.003888124) (-0.007067174 -0.02000849 0.003527948) (-0.007010971 -0.02099975 0.004006675) (-0.007042486 -0.01900382 0.004019263) (-0.007153165 -0.02027493 0.004656725) (-0.008131187 -0.0180285 0.003527783) (-0.007500163 -0.018 0.003997722) (-0.007846382 -0.01797299 0.004375293) (-0.007332276 -0.01972095 0.004826666) (-0.006035174 -0.02100668 0.005029763) (-0.006507848 -0.02000064 0.005003822) (-0.005544155 -0.02000474 0.005043763) (-0.006048007 -0.01900559 0.005039477) (0.007071535 -0.02002551 0.003532472) (0.007193397 -0.02129544 0.004158996) (0.007036198 -0.01900045 0.00403013) (0.007162201 -0.02027056 0.004629198) (0.006049247 -0.02101058 0.005041915) (0.005558213 -0.0200078 0.005054651) (0.00669588 -0.0202664 0.005187387) (0.006059404 -0.01900233 0.005048309) (0.008120176 -0.01800123 0.003519462) (0.007513418 -0.01799992 0.004010106) (0.007854383 -0.01796169 0.004337285) (0.007310963 -0.01973444 0.004838214) (-0.007053219 -0.01600346 0.003516302) (-0.007042652 -0.01700253 0.004017409) (-0.007049798 -0.015005 0.004024789) (-0.007028967 -0.01600118 0.004514089) (-0.00802337 -0.01400051 0.003508156) (-0.008450202 -0.01398789 0.003965635) (-0.007528606 -0.01400383 0.004014351) (-0.008098073 -0.01398864 0.004597232) (-0.007801723 -0.01671818 0.004823962) (-0.007583642 -0.01598282 0.005078956) (-0.007865368 -0.01500809 0.004882299) (-0.006054899 -0.01700812 0.005043318) (-0.006545037 -0.01600559 0.005033112) (-0.00605208 -0.01500718 0.005043624) (0.007086714 -0.01600738 0.003542285) (0.007067253 -0.0170063 0.004038632) (0.007073845 -0.01500623 0.004044646) (0.007077128 -0.01600821 0.004548218) (0.006059271 -0.0170019 0.005048415) (0.006557533 -0.01600323 0.005040766) (0.006060248 -0.01500282 0.005050203) (0.00806024 -0.01400583 0.003521566) (0.007580688 -0.01400904 0.004027172) (0.008426269 -0.01399923 0.004000483) (0.008131379 -0.01400589 0.004518689) (0.007606649 -0.01600161 0.005009181) (0.007878635 -0.01497643 0.004874375) (-0.008881884 -0.01199114 0.003483105) (-0.008857132 -0.01096172 0.003866486) (-0.007048424 -0.01300485 0.004028088) (-0.007058524 -0.01100373 0.004031952) (-0.007056245 -0.01200474 0.004535837) (-0.008062783 -0.01000386 0.00352432) (-0.008707441 -0.010002 0.004154676) (-0.007569163 -0.01000291 0.004032534) (-0.008056994 -0.01000128 0.004523382) (-0.007989939 -0.0129987 0.004993139) (-0.008303326 -0.01171847 0.004859169) (-0.007525913 -0.01200152 0.005018388) (-0.008102664 -0.01098382 0.005098673) (0.00706956 -0.01300494 0.004040413) (0.007062906 -0.01100316 0.004037127) (0.007062744 -0.01200445 0.004549293) (0.008879454 -0.0120124 0.003389395) (0.008822261 -0.01073048 0.003842065) (0.008046697 -0.01000229 0.003515807) (0.007554341 -0.01000195 0.004026273) (0.008632902 -0.009985738 0.004111604) (0.00802124 -0.01000052 0.004512728) (0.008003487 -0.01300348 0.004994768) (0.007535866 -0.01200254 0.005029563) (0.00832049 -0.01173028 0.00485034) (0.008100167 -0.01098639 0.005084281) (-0.009060281 -0.007999658 0.003522407) (-0.008881719 -0.009014642 0.003890583) (-0.008952426 -0.006984981 0.003970246) (-0.008834552 -0.007720706 0.004332082) (-0.008052639 -0.005999906 0.00351714) (-0.008512773 -0.005999485 0.003998704) (-0.008033685 -0.006000138 0.00451129) (-0.008217316 -0.009006799 0.005137721) (-0.008417665 -0.008015592 0.004905982) (-0.007583654 -0.00800032 0.00505535) (-0.008189096 -0.00727411 0.005150903) (0.009004305 -0.008002553 0.003481788) (0.008808378 -0.008994463 0.003855716) (0.008882858 -0.007015225 0.00388726) (0.008088734 -0.00600335 0.003537409) (0.00868847 -0.006275401 0.004170807) (0.008070739 -0.00599869 0.004534419) (0.008155921 -0.009001522 0.005127839) (0.00756616 -0.008001116 0.00501889) (0.008365769 -0.008001899 0.004882831) (0.008221916 -0.007035105 0.005175788) (-0.009170675 -0.003999516 0.003624246) (-0.008985956 -0.005002352 0.003982515) (-0.009043496 -0.003000416 0.004016484) (-0.008840057 -0.003997163 0.004372933) (-0.008084698 -0.002001351 0.003536444) (-0.008597095 -0.002001079 0.004044885) (-0.008106833 -0.002000159 0.004554209) (-0.008013007 -0.005000462 0.005005414) (-0.008512873 -0.004000571 0.004998271) (-0.007557354 -0.004001338 0.005039115) (-0.008056124 -0.003000906 0.005033238) (0.009113959 -0.003985973 0.003603646) (0.008960734 -0.004985372 0.003971242) (0.009007017 -0.003001637 0.004001331) (0.008813274 -0.003996538 0.004366882) (0.008070367 -0.002002271 0.003531049) (0.008571865 -0.002001688 0.004038804) (0.008084182 -0.002001987 0.004553793) (0.007998967 -0.004999462 0.004996758) (0.007540094 -0.004001003 0.005023634) (0.008481169 -0.00399782 0.00498671) (0.008031987 -0.003002124 0.005017589) (-0.009292696 1.808448e-06 0.003676272) (-0.009094464 -0.001002745 0.004058215) (-0.009101656 0.001001949 0.004047438) (-0.008965515 1.541002e-06 0.004477868) (-0.008082415 0.002001177 0.003530309) (-0.008596317 0.00200189 0.004033092) (-0.008100006 0.002002788 0.004540959) (-0.008069062 -0.001002043 0.005037412) (-0.008609817 3.423987e-07 0.005075648) (-0.007582186 -2.320533e-06 0.005051309) (-0.008059936 0.001001337 0.005042879) (0.009264139 -4.271542e-06 0.003706272) (0.00907764 -0.0009987377 0.004037151) (0.009083805 0.0009981157 0.004061426) (0.008968603 1.382163e-05 0.004472374) (0.00808402 0.001999666 0.00352398) (0.008593406 0.002000403 0.004024839) (0.008096866 0.002000068 0.004526451) (0.008055128 -0.00100248 0.005026791) (0.007566826 -1.94525e-06 0.005029498) (0.008595698 1.148331e-05 0.005079804) (0.00803954 0.0009986272 0.005020976) (-0.00915943 0.003999911 0.003636634) (-0.009050952 0.00300063 0.004010033) (-0.008988011 0.005003004 0.003986606) (-0.008853199 0.004000591 0.004358805) (-0.008049683 0.006003775 0.003521306) (-0.008506275 0.006000875 0.004008748) (-0.008029764 0.006000885 0.004516856) (-0.008054659 0.003000524 0.005030732) (-0.008510975 0.00399959 0.005005855) (-0.007553013 0.004000704 0.005037534) (-0.008011397 0.004999341 0.00500406) (0.009193475 0.00400005 0.003623894) (0.009051596 0.002997589 0.004026293) (0.009007802 0.004999941 0.004005737) (0.008869009 0.004002297 0.004382849) (0.008050447 0.005999077 0.003513974) (0.008523951 0.005998972 0.004012962) (0.00804418 0.0059987 0.004525247) (0.008057505 0.003000636 0.005031801) (0.007570002 0.004001142 0.00503745) (0.008530908 0.004002638 0.005016846) (0.008028949 0.00499993 0.005019947) (-0.009038298 0.008001747 0.003535558) (-0.008945034 0.006983537 0.003965699) (-0.0088773 0.009014952 0.003901302) (-0.008836071 0.007722371 0.004335103) (-0.008068266 0.01000162 0.003530661) (-0.008715598 0.01000509 0.004156081) (-0.007575383 0.01000146 0.004040005) (-0.008052653 0.01000026 0.004533785) (-0.008187693 0.007286333 0.005150063) (-0.008420029 0.008014649 0.004907984) (-0.007577071 0.008001147 0.005048145) (-0.008185183 0.009002946 0.005175163) (0.009091354 0.0080138 0.003534461) (0.008970931 0.00699892 0.003974782) (0.008890622 0.00899887 0.003988117) (0.008832118 0.007964017 0.004343743) (0.00806892 0.01000184 0.003537976) (0.007574461 0.01000251 0.004046485) (0.008690597 0.01003553 0.004176844) (0.008047494 0.01000171 0.004527963) (0.008005421 0.006998963 0.005005417) (0.007584046 0.00799319 0.005054458) (0.008417739 0.008001165 0.005001604) (0.008168655 0.009039447 0.005159416) (-0.008872851 0.01199937 0.003484258) (-0.008854828 0.01096428 0.003861669) (-0.007068166 0.01100099 0.004036359) (-0.007067211 0.01300096 0.004030203) (-0.007064619 0.01200115 0.004536035) (-0.008060948 0.01400478 0.003516375) (-0.008415249 0.01400184 0.003994144) (-0.007594283 0.01400876 0.004028294) (-0.008106675 0.01400359 0.004515502) (-0.008105867 0.01098185 0.005090128) (-0.008323001 0.01172456 0.004836502) (-0.007529838 0.01199998 0.005017059) (-0.007997057 0.01300304 0.004990933) (0.007072865 0.01100325 0.004045312) (0.007068474 0.01300401 0.004039826) (0.007076135 0.01200383 0.004551849) (0.008887512 0.01199774 0.003492391) (0.008839254 0.01096589 0.003853024) (0.008046318 0.0140038 0.003512118) (0.007546935 0.01400139 0.004021596) (0.008472386 0.01398734 0.003975781) (0.008102426 0.01398668 0.004599294) (0.008109174 0.01098456 0.005098992) (0.007549141 0.01200204 0.005029516) (0.008341692 0.01172244 0.004839106) (0.008005033 0.01300122 0.004999524) (-0.007050568 0.01600418 0.003524574) (-0.007062358 0.01500259 0.004033357) (-0.007041787 0.01700384 0.004018844) (-0.007033602 0.01600207 0.00451888) (-0.008135122 0.0180292 0.003521167) (-0.007507211 0.01799903 0.004000382) (-0.007816409 0.01797273 0.004369017) (-0.007862814 0.0150113 0.004876972) (-0.00759115 0.01598384 0.005078545) (-0.007791696 0.01671601 0.004856092) (-0.006051479 0.01500313 0.00504383) (-0.006543756 0.01600404 0.005037926) (-0.006050992 0.01700489 0.005042748) (0.007065277 0.01600599 0.003525739) (0.00706221 0.01500401 0.004031065) (0.00706314 0.01701091 0.004032615) (0.007039866 0.01600712 0.004526673) (0.006584543 0.0180134 0.004049001) (0.006076578 0.01801157 0.004554065) (0.00606997 0.0150102 0.005061818) (0.006558896 0.01601085 0.005050601) (0.006067968 0.01701282 0.005055525) (0.008135941 0.01803123 0.00352038) (0.007691258 0.01827504 0.004163085) (0.007835735 0.01774228 0.004369435) (0.007875094 0.01501026 0.004890118) (0.007584428 0.01597197 0.005086765) (0.007776729 0.01671125 0.00483639) (-0.007064544 0.02000255 0.003530841) (-0.007030736 0.01900247 0.004018234) (-0.007013114 0.02099731 0.004004798) (-0.00714475 0.02027283 0.004637283) (-0.007803758 0.02171321 0.003347252) (-0.007379679 0.02196815 0.003973688) (-0.007312738 0.01973317 0.004813371) (-0.006068719 0.02200782 0.003535375) (-0.006552605 0.02200526 0.004022699) (-0.006058084 0.02200808 0.004530148) (-0.006050885 0.01900208 0.005034014) (-0.006506047 0.01999903 0.005003142) (-0.005551363 0.02000289 0.005037746) (-0.006045231 0.02100105 0.005030407) (0.007058749 0.02000959 0.003525276) (0.007070754 0.0190107 0.004030148) (0.007186479 0.02127515 0.004139453) (0.007141836 0.02002712 0.004632862) (0.006085072 0.02201029 0.00353636) (0.006560786 0.02200884 0.004034992) (0.006054485 0.02200751 0.004548393) (0.006054922 0.01900434 0.005041804) (0.005553092 0.02000474 0.005046752) (0.006677721 0.02026827 0.005174115) (0.006039373 0.0210054 0.00503783) (0.00737011 0.02174423 0.003878327) (-0.007097971 0.02402383 0.003513089) (-0.00708316 0.02301759 0.003998605) (-0.006864816 0.02474407 0.003859665) (-0.006828875 0.02374369 0.004353169) (-0.005070659 0.02501235 0.004058067) (-0.005054846 0.02401044 0.004549094) (-0.006049583 0.02600716 0.003530252) (-0.006424598 0.02598704 0.004001164) (-0.005570373 0.02601209 0.004061842) (-0.006034241 0.02604458 0.004534622) (-0.006144083 0.02327346 0.005156367) (-0.006357736 0.02398518 0.004875597) (-0.005522097 0.02400136 0.005017221) (-0.005991169 0.02497784 0.004989111) (-0.00454443 0.02401186 0.005057126) (-0.004043889 0.0250152 0.005078154) (0.005062293 0.02501611 0.004043392) (0.005049884 0.02401225 0.004541642) (0.004541425 0.02401271 0.005048783) (0.004044633 0.02501426 0.005064495) (0.007096941 0.02399249 0.003506636) (0.007014197 0.02300219 0.004010028) (0.006860939 0.02473922 0.00386742) (0.006829474 0.02371544 0.004317205) (0.006041137 0.0260056 0.003520086) (0.005559403 0.02601582 0.004033697) (0.006411249 0.02598336 0.003993787) (0.006012422 0.02602397 0.004512303) (0.006150437 0.02325184 0.00516832) (0.005514377 0.02400301 0.005012625) (0.006368128 0.02398254 0.004869647) (0.005979676 0.02497599 0.004983406) (-0.005060224 0.02800726 0.003534775) (-0.005053669 0.02700687 0.004043552) (-0.005157845 0.029273 0.004177907) (-0.005174618 0.02826316 0.00465452) (-0.005823276 0.02975541 0.003343137) (-0.005391371 0.02975414 0.003871126) (-0.0053319 0.02774344 0.004863946) (-0.004046248 0.03000924 0.003530277) (-0.004513969 0.03000213 0.004004717) (-0.003544684 0.03001115 0.004050346) (-0.004010126 0.02999926 0.004514685) (-0.004040759 0.02700952 0.005057526) (-0.004661386 0.02826995 0.005184232) (-0.003545353 0.02801062 0.005068178) (-0.004147595 0.02927427 0.005173315) (-0.002544235 0.02801672 0.005090792) (-0.002029882 0.02901585 0.005076291) (0.002539915 0.0280214 0.005097753) (0.002032367 0.0290209 0.005091837) (0.005053132 0.02801319 0.003529168) (0.005045686 0.02700876 0.004030231) (0.005203109 0.02929439 0.004166561) (0.005186135 0.02824082 0.004641203) (0.004067572 0.03002291 0.003548764) (0.003542653 0.03001733 0.004056545) (0.004539303 0.03000829 0.004032073) (0.004027668 0.03001036 0.004531835) (0.004036354 0.02701188 0.005055445) (0.003544059 0.02801788 0.005078466) (0.004650259 0.02825651 0.005198095) (0.004183769 0.02927689 0.005196628) (0.005827008 0.02973182 0.003337664) (0.005397846 0.02976754 0.003873689) (0.005326586 0.02773619 0.004861815) (-0.004873533 0.03194663 0.003467721) (-0.004879244 0.03097207 0.003968936) (-0.003024315 0.03201051 0.003533195) (-0.003029284 0.03101125 0.004054283) (-0.003009166 0.03300376 0.004022394) (-0.003005856 0.03200071 0.004523291) (-0.003955892 0.0339412 0.00345714) (-0.003447328 0.03394883 0.003951221) (-0.003968331 0.03096929 0.004881492) (-0.003477957 0.03196246 0.004885978) (-0.001008272 0.03302656 0.004070314) (-0.00100775 0.03201975 0.004564297) (-0.00203495 0.03403239 0.003575745) (-0.002684496 0.03426583 0.004190891) (-0.001503852 0.0340395 0.004106864) (-0.00202072 0.03422545 0.004674061) (-0.002023727 0.03101839 0.00506873) (-0.002636415 0.03226439 0.005155616) (-0.001509902 0.03201268 0.005038583) (-0.002027217 0.03319501 0.005132513) (0.001023349 0.03303061 0.004082032) (0.001018119 0.03202342 0.004583824) (-0.0005033294 0.03402557 0.00406343) (0.0005134352 0.03402682 0.004069026) (1.882377e-06 0.03400728 0.004563195) (9.156439e-07 0.03101938 0.005079522) (-0.0005179415 0.03201869 0.005061271) (0.0005120755 0.03200794 0.005078635) (4.57814e-07 0.03300297 0.005017033) (0.003031463 0.03201898 0.003548847) (0.00303197 0.03101355 0.004063584) (0.003008811 0.03300909 0.004041217) (0.003008987 0.03200938 0.004532518) (0.002041492 0.03404557 0.003604244) (0.001535502 0.03403349 0.004093352) (0.002686443 0.03435377 0.004254776) (0.002038393 0.03421604 0.004689093) (0.002031769 0.03102862 0.005080971) (0.001514628 0.0320174 0.005055622) (0.002653592 0.03228151 0.005173113) (0.00201102 0.0332112 0.005144057) (0.00491227 0.03178678 0.003502983) (0.004899269 0.03096624 0.003981817) (0.003948811 0.03395493 0.003456433) (0.003470131 0.03395767 0.003951768) (0.003969214 0.03097907 0.004872821) (0.003477619 0.03196827 0.004894923) (-0.00286403 0.03576898 0.003366648) (-0.002953241 0.03476322 0.003860518) (-0.001236563 0.03634107 0.003788806) (-0.001012899 0.03502736 0.004058074) (-0.0008288511 0.03673817 0.003772705) (-0.0009748167 0.03576557 0.004273553) (0.001016943 0.03602777 0.003559747) (0.001024369 0.03502555 0.004072531) (0.001018572 0.03668533 0.003794839) (0.0009877365 0.03577227 0.004334223) (7.478668e-07 0.03769747 0.003316047) (8.710215e-07 0.03480272 0.004896895) (0.002877759 0.03580638 0.003373841) (0.002977822 0.03479538 0.003884462) (1.108289e-06 -0.03375873 0.005361772) (-0.002873667 -0.03175321 0.005356672) (-0.002881964 -0.03069033 0.005820289) (-0.003888542 -0.02976774 0.005410959) (-0.003381019 -0.02973485 0.005815386) (-0.001023622 -0.03225628 0.005664747) (-0.0009912264 -0.03117183 0.00610698) (-0.002010065 -0.03001406 0.005556247) (-0.002503794 -0.02998221 0.006093093) (-0.001629939 -0.03029935 0.006207202) (-0.001994708 -0.02977484 0.00638097) (0.001018201 -0.03228474 0.005689193) (0.0009936825 -0.03117159 0.006129608) (3.869163e-06 -0.03002349 0.005579315) (-0.0004990092 -0.03001577 0.006049118) (0.0005044417 -0.0300163 0.006062947) (4.290431e-06 -0.03002035 0.006563568) (0.002874046 -0.03174608 0.005338334) (0.002842353 -0.03071192 0.005770089) (0.002011069 -0.03000449 0.00554078) (0.001638922 -0.03029426 0.006183394) (0.002496951 -0.02997877 0.006069309) (0.001989355 -0.02975643 0.006362687) (0.003883095 -0.02976504 0.005382557) (0.003366145 -0.02974066 0.005795509) (-0.004859419 -0.02775689 0.005335512) (-0.004804213 -0.02670741 0.005801699) (-0.003040035 -0.02802285 0.005585544) (-0.003031087 -0.02902669 0.006132564) (-0.00302785 -0.02701276 0.006062804) (-0.003005049 -0.02798848 0.006442959) (-0.004032606 -0.02601506 0.005563762) (-0.004498672 -0.02601788 0.006087257) (-0.003530445 -0.02601399 0.006058169) (-0.004002429 -0.02598715 0.00643474) (-0.001002046 -0.02901367 0.006071362) (-0.001008208 -0.02701887 0.006088275) (-0.001002047 -0.0280077 0.006542796) (-0.002534532 -0.02601705 0.00609602) (-0.001518473 -0.02602158 0.006095513) (-0.002016475 -0.02601195 0.006577478) (-0.001840405 -0.02869052 0.006803248) (-0.002367324 -0.02774934 0.00683595) (-0.001493299 -0.02795484 0.006987984) (-0.002006979 -0.0270285 0.007039786) (0.001008892 -0.02901141 0.006088274) (0.001015384 -0.02702249 0.006107447) (0.001005552 -0.02801388 0.006560968) (-0.0005045182 -0.02601915 0.006097318) (0.000507147 -0.02601811 0.00610617) (-8.292751e-08 -0.02601441 0.00659432) (2.925773e-06 -0.0287762 0.006936387) (-0.0005016711 -0.02801141 0.007060411) (0.0005025366 -0.02801149 0.007080927) (7.721979e-08 -0.02722778 0.007204466) (0.003038682 -0.02801804 0.005571296) (0.003021323 -0.02902304 0.006117865) (0.003016042 -0.02701212 0.006048237) (0.003001015 -0.02798411 0.006441015) (0.001519935 -0.0260223 0.006097696) (0.002530287 -0.02602378 0.006089061) (0.00201432 -0.02601854 0.006573308) (0.001509875 -0.02799252 0.006952976) (0.002369073 -0.02771688 0.006846118) (0.002007995 -0.0270064 0.007041836) (0.004872086 -0.02774292 0.005350144) (0.004040328 -0.02601416 0.005573557) (0.003526373 -0.02601551 0.006055041) (0.004525649 -0.02603293 0.006021786) (0.0040021 -0.0259873 0.006424738) (-0.005015941 -0.02400046 0.005526202) (-0.004992448 -0.02500045 0.00598748) (-0.005162822 -0.02328011 0.00615497) (-0.004874527 -0.02398618 0.006373812) (-0.006107618 -0.02200526 0.005610847) (-0.005608437 -0.02200564 0.006107892) (-0.003044348 -0.02502061 0.006092324) (-0.00303058 -0.02301666 0.006083462) (-0.003029524 -0.02401713 0.006567862) (-0.004549924 -0.02200044 0.006071322) (-0.003533571 -0.02200961 0.006078108) (-0.004030146 -0.02200185 0.006558644) (-0.003865807 -0.02474356 0.006873582) (-0.00434305 -0.02371223 0.006837784) (-0.003522181 -0.02402184 0.00711092) (-0.004001259 -0.02301899 0.00709444) (-0.002006864 -0.02500507 0.007039697) (-0.002509539 -0.0240022 0.007037186) (-0.001506826 -0.02401533 0.007080459) (-0.002018497 -0.02300718 0.007086255) (2.72085e-07 -0.0250079 0.00707936) (-0.0005031475 -0.02400702 0.007053933) (0.0005010276 -0.02400277 0.007050007) (-1.479144e-06 -0.02300594 0.007059583) (0.003035064 -0.02501935 0.006082603) (0.003032584 -0.02301054 0.006075757) (0.003024982 -0.02400725 0.006564814) (0.002006642 -0.02500365 0.007026518) (0.001502141 -0.02400073 0.007042916) (0.002505323 -0.0239993 0.007021683) (0.002006057 -0.02300161 0.007031122) (0.005006335 -0.02399943 0.005501673) (0.004978622 -0.02497405 0.005968183) (0.00515189 -0.02327152 0.006137272) (0.004867898 -0.0239858 0.006361604) (0.003539341 -0.0220089 0.006075845) (0.004540545 -0.022008 0.006060465) (0.004031958 -0.02200388 0.006566554) (0.003873487 -0.02474646 0.006861211) (0.003511791 -0.02401955 0.007098927) (0.004328304 -0.02372188 0.006845031) (0.003999517 -0.0229948 0.007089898) (0.00610106 -0.02200767 0.005607165) (0.005601072 -0.0220018 0.006112766) (-0.006844409 -0.01996568 0.005368212) (-0.005036254 -0.02000309 0.005551564) (-0.005021044 -0.02100197 0.006045749) (-0.005036689 -0.01900208 0.006049864) (-0.005002491 -0.020001 0.006504264) (-0.006064393 -0.01801695 0.005539464) (-0.006587203 -0.01798916 0.005994507) (-0.005552569 -0.01800142 0.006057964) (-0.00598909 -0.0179911 0.006574859) (-0.005370144 -0.01996766 0.006845542) (-0.003998669 -0.02100027 0.007015115) (-0.004648102 -0.02026987 0.007170113) (-0.003519519 -0.02001165 0.007078724) (-0.004013032 -0.01899527 0.00704304) (-0.002007696 -0.02100483 0.007071432) (-0.002514648 -0.02000612 0.007066561) (-0.001506284 -0.02000673 0.007080087) (-0.002013445 -0.01900621 0.007073522) (-3.454649e-06 -0.02100697 0.00706995) (-0.0005036476 -0.02000805 0.007079864) (0.0005005583 -0.02000809 0.007076597) (0.002014119 -0.02100866 0.00706737) (0.001508535 -0.02000721 0.007070271) (0.002519066 -0.0200093 0.007064309) (0.002013083 -0.01900724 0.007066574) (0.005044666 -0.02000938 0.005545585) (0.005032318 -0.02101216 0.006029499) (0.005040089 -0.01900486 0.006047772) (0.005008023 -0.02000159 0.006508376) (0.004175051 -0.02127826 0.007179726) (0.003527509 -0.02001241 0.007080172) (0.004639767 -0.0202564 0.007154749) (0.004030582 -0.0190078 0.007058787) (0.006864036 -0.01973691 0.00535286) (0.006075468 -0.01799669 0.005560889) (0.005558168 -0.01799773 0.006057202) (0.006513988 -0.01800483 0.006018951) (0.006004584 -0.01800067 0.006498937) (0.005362146 -0.0199668 0.006854075) (-0.007140355 -0.01602716 0.005631733) (-0.006883203 -0.0169793 0.005894724) (-0.007067285 -0.0149876 0.005983897) (-0.006803447 -0.01572317 0.006303888) (-0.00780249 -0.01372207 0.005329449) (-0.007346091 -0.01396535 0.005863818) (-0.005048884 -0.01700505 0.006066935) (-0.00503878 -0.01500661 0.00605998) (-0.005034538 -0.01600361 0.006555134) (-0.006040135 -0.01400515 0.005536818) (-0.006513936 -0.01400118 0.006010929) (-0.005533138 -0.01400543 0.006043766) (-0.006008336 -0.01400085 0.006510482) (-0.005884573 -0.01698227 0.006881331) (-0.006294982 -0.01573061 0.006821281) (-0.005623166 -0.01602215 0.007132753) (-0.005984774 -0.01498854 0.007074068) (-0.004034341 -0.01700152 0.007068545) (-0.004544157 -0.01599365 0.007078465) (-0.003531411 -0.0160015 0.007070204) (-0.004032999 -0.01500017 0.007068515) (0.005042618 -0.01700292 0.006058839) (0.005049271 -0.015002 0.006053509) (0.005028462 -0.01600235 0.006543622) (0.00403707 -0.01700592 0.007070943) (0.003533143 -0.01600406 0.007068304) (0.00453037 -0.0160026 0.007067124) (0.00403357 -0.01500189 0.007059481) (0.007150327 -0.01603209 0.005632127) (0.006881745 -0.01697345 0.005882776) (0.006995082 -0.01500077 0.006003414) (0.006042858 -0.01400243 0.005538261) (0.005546723 -0.01400233 0.006041238) (0.006509073 -0.01400172 0.006006281) (0.006002387 -0.01400059 0.006502223) (0.005850792 -0.01696746 0.006843087) (0.005595346 -0.01598461 0.007099835) (0.006006489 -0.0150115 0.006917339) (0.007816008 -0.01371853 0.005345042) (0.007361911 -0.01396067 0.005835137) (-0.007066192 -0.01200457 0.005543783) (-0.007145675 -0.01300458 0.006134928) (-0.007170517 -0.01126766 0.006157385) (-0.006954133 -0.0120288 0.006451718) (-0.007927085 -0.009999165 0.005515442) (-0.007574573 -0.009989726 0.005992975) (-0.006539119 -0.01000203 0.00603922) (-0.006031841 -0.01000227 0.006535756) (-0.00613332 -0.01300576 0.007132534) (-0.00644969 -0.01203024 0.006936142) (-0.005545425 -0.01200261 0.007057195) (-0.006167665 -0.01126489 0.007160873) (-0.004028612 -0.0130049 0.007068343) (-0.004534486 -0.01200588 0.007070469) (-0.00403217 -0.01100403 0.007071006) (0.004032992 -0.01300203 0.007060836) (0.004537994 -0.01200201 0.007062922) (0.004035651 -0.01100154 0.00706983) (0.007057368 -0.01200539 0.005565219) (0.00713072 -0.01300746 0.006135761) (0.007176948 -0.011282 0.006172806) (0.006955772 -0.01203123 0.006454656) (0.00653784 -0.01000198 0.00603888) (0.006027335 -0.0100014 0.006533112) (0.006080867 -0.01298834 0.007090476) (0.00552565 -0.01199992 0.007030457) (0.006439141 -0.01202975 0.006928485) (0.006166607 -0.01126664 0.007134062) (0.007927476 -0.01001552 0.005434597) (0.007517885 -0.01000101 0.006006922) (-0.007053246 -0.008000856 0.005537643) (-0.007023111 -0.009001113 0.006023263) (-0.007062255 -0.007001652 0.00605552) (-0.007178004 -0.008000275 0.006640388) (-0.00809017 -0.005986316 0.005582407) (-0.007660959 -0.006001363 0.006137639) (-0.00658033 -0.006002502 0.006078093) (-0.006079987 -0.006002593 0.006586897) (-0.006013639 -0.009000481 0.007013001) (-0.006687894 -0.008000063 0.007147197) (-0.005536089 -0.00800092 0.007044981) (-0.006070622 -0.007001212 0.00707186) (0.007039515 -0.007998656 0.005517146) (0.007019324 -0.009000096 0.006009904) (0.007034523 -0.007001807 0.006023617) (0.007127861 -0.008002595 0.006611391) (0.006560971 -0.006001943 0.006050049) (0.00606183 -0.006002368 0.006557985) (0.006009489 -0.009000837 0.007012294) (0.005526804 -0.008002534 0.007033816) (0.006621497 -0.0080008 0.007130535) (0.006039337 -0.007000888 0.007044927) (0.008076043 -0.006001753 0.005484212) (0.007621625 -0.006000385 0.006118635) (-0.007079835 -0.00400338 0.005571012) (-0.007094839 -0.005002599 0.006086819) (-0.007111213 -0.003008799 0.006093408) (-0.007166844 -0.004040672 0.006748163) (-0.008178489 -0.001997474 0.00563912) (-0.007723818 -0.002039631 0.006197185) (-0.006566575 -0.002004945 0.006055107) (-0.0060498 -0.00200224 0.006558119) (-0.006093752 -0.005001221 0.00710399) (-0.006678536 -0.004270765 0.00719704) (-0.005573104 -0.004002034 0.007085961) (-0.006067916 -0.003003144 0.007067947) (0.007069626 -0.004001121 0.005545156) (0.007081298 -0.005002549 0.006054073) (0.00709436 -0.002995265 0.00607026) (0.007245468 -0.004042333 0.006677796) (0.006582873 -0.002001847 0.006060291) (0.006091012 -0.002004324 0.006582698) (0.006071974 -0.005002495 0.007088047) (0.005566951 -0.004002676 0.007077523) (0.006707663 -0.0040001 0.007220198) (0.00610498 -0.003006406 0.007111287) (0.008145802 -0.001999734 0.005630189) (0.007730395 -0.002038843 0.006186265) (-0.007072011 -3.52498e-06 0.005553768) (-0.007075062 -0.001010744 0.00606309) (-0.007059846 0.0009998938 0.006057516) (-0.006986912 -1.579548e-07 0.006482199) (-0.008169447 0.002000299 0.005646122) (-0.007734099 0.002037265 0.006229949) (-0.007336499 3.385928e-06 0.006803099) (-0.006557059 0.002001036 0.006058085) (-0.006048728 0.002003746 0.006575113) (-0.006007676 -0.001000227 0.007016831) (-0.006475443 3.920714e-08 0.006971019) (-0.005530986 1.080453e-06 0.00704971) (-0.006006035 0.001002547 0.007021601) (0.007056878 -1.164625e-06 0.005527353) (0.007075969 -0.0009985656 0.006033093) (0.007010072 0.0009990016 0.006004745) (0.006976289 -1.329999e-06 0.006475139) (0.006059306 -0.0009991107 0.007070922) (0.005543949 -9.393814e-08 0.007062941) (0.006476271 -1.595128e-06 0.006976431) (0.006012274 0.001004088 0.007018961) (0.008165931 0.001998886 0.005633875) (0.007676041 0.002257416 0.006156736) (0.007799723 0.001725606 0.006318286) (0.007316702 -6.36206e-06 0.006820358) (-0.007078321 0.004002354 0.005562441) (-0.007077649 0.003000657 0.006054683) (-0.007097937 0.00500261 0.006079414) (-0.007181762 0.004269665 0.006661583) (-0.008083192 0.005985539 0.005573399) (-0.007648877 0.006002765 0.00615921) (-0.007298149 0.003717759 0.006836189) (-0.00658248 0.006002636 0.006075721) (-0.006083324 0.006002457 0.006585489) (-0.006079297 0.00300264 0.007137411) (-0.006725074 0.004036869 0.007228441) (-0.00558222 0.004002743 0.007098084) (-0.006094636 0.005002022 0.007109065) (0.007095373 0.004001903 0.005561187) (0.007069176 0.003002139 0.006052169) (0.007120332 0.005004453 0.006087152) (0.007196994 0.004266661 0.006685949) (0.006601472 0.00600288 0.00608475) (0.006092593 0.006001841 0.006599813) (0.006056299 0.003004264 0.007085927) (0.005580728 0.00400185 0.007109385) (0.00667845 0.004278159 0.007189051) (0.006105167 0.004997753 0.007121827) (0.008096555 0.005998648 0.005597715) (0.007709067 0.006002453 0.006140731) (0.007302095 0.003727067 0.006858769) (-0.007051465 0.008000629 0.005539473) (-0.00706778 0.007000556 0.006055717) (-0.007029742 0.009000132 0.006025064) (-0.007147816 0.008003021 0.0066767) (-0.007925504 0.009999174 0.005515067) (-0.007580431 0.009988927 0.005994237) (-0.006543737 0.01000283 0.006037888) (-0.006032425 0.01000428 0.006535872) (-0.006066025 0.007000956 0.007075205) (-0.006643221 0.007999281 0.007172236) (-0.005536275 0.008001736 0.007045276) (-0.006011974 0.008999948 0.007013715) (0.007052845 0.008001243 0.005543053) (0.007088513 0.007003459 0.006070534) (0.007028842 0.009001321 0.006021939) (0.007151828 0.008005453 0.0066765) (0.006540073 0.0100043 0.006036327) (0.006041198 0.01000326 0.006547956) (0.006072904 0.007000557 0.007083818) (0.005549067 0.008002576 0.007061273) (0.006664409 0.008001203 0.007150817) (0.006027999 0.009001394 0.007031645) (0.007926633 0.01000082 0.005514441) (0.007584237 0.009988673 0.005993816) (-0.007066462 0.01200034 0.005550532) (-0.007157732 0.01127691 0.006188535) (-0.007154188 0.01300406 0.006107598) (-0.006969507 0.01203006 0.006463657) (-0.007805083 0.01371579 0.005342627) (-0.007337924 0.01396637 0.005855766) (-0.006042302 0.01400229 0.005536913) (-0.006515149 0.01400028 0.006013606) (-0.005540382 0.01400431 0.006045069) (-0.006012462 0.01400054 0.00651388) (-0.006159597 0.01128094 0.007205772) (-0.006447345 0.01202828 0.006943839) (-0.005545224 0.01200513 0.007059668) (-0.006118694 0.01300036 0.007144442) (-0.004029558 0.0110032 0.007063634) (-0.004530251 0.01200437 0.007070372) (-0.004029878 0.01300484 0.007061757) (0.004035013 0.01100268 0.007071915) (0.004535389 0.01200172 0.00706462) (0.004030963 0.0130025 0.007061093) (0.007066286 0.01200072 0.005556625) (0.007164094 0.01128686 0.006209773) (0.007141034 0.01299971 0.006133135) (0.006933664 0.01201294 0.006515736) (0.006056282 0.01400738 0.00555665) (0.005546768 0.01400581 0.006057077) (0.006522054 0.01400381 0.006027265) (0.006018733 0.01400296 0.006530657) (0.0061715 0.0112734 0.007201031) (0.005549465 0.01200366 0.007064232) (0.006518432 0.0120126 0.006933044) (0.00614829 0.01300045 0.007144277) (0.007822324 0.01372563 0.005335343) (0.007365022 0.01396782 0.005868867) (-0.00714041 0.01603626 0.005654574) (-0.007065156 0.01498701 0.005980562) (-0.006890793 0.01697855 0.005889077) (-0.006802522 0.01571714 0.006316426) (-0.005046877 0.01500599 0.006061937) (-0.005044815 0.01700486 0.006071794) (-0.005038346 0.01600561 0.006561598) (-0.006055873 0.01800248 0.005542742) (-0.006581885 0.017991 0.005989739) (-0.005543289 0.01799846 0.006044653) (-0.00599234 0.01799148 0.006577213) (-0.005985246 0.01498875 0.007072167) (-0.006300134 0.01572103 0.006827582) (-0.005622639 0.01601954 0.007135847) (-0.005886625 0.01698252 0.00688661) (-0.004040131 0.01500494 0.007061335) (-0.004549344 0.0160038 0.007073116) (-0.003533211 0.0160049 0.007065849) (-0.004035189 0.01700441 0.007068766) (0.005051024 0.01500671 0.006067224) (0.005050107 0.01700615 0.006067849) (0.005040698 0.01600581 0.006560019) (0.004041683 0.01500467 0.007061242) (0.00353767 0.01600576 0.007069369) (0.004551771 0.0160087 0.007076761) (0.004038826 0.01700549 0.007060471) (0.007125832 0.01601938 0.005629194) (0.007005924 0.01500274 0.006012937) (0.006879426 0.01696141 0.00586481) (0.006056211 0.01800645 0.005549569) (0.005556727 0.01800589 0.006069162) (0.006503549 0.0180015 0.006008864) (0.006009581 0.01800071 0.006508787) (0.006006787 0.01500089 0.007002214) (0.005617838 0.01601837 0.007125403) (0.005855111 0.01696702 0.006873276) (-0.00684881 0.01997173 0.005367111) (-0.00504598 0.02000429 0.005546187) (-0.005038833 0.01900201 0.006047573) (-0.005033969 0.02100526 0.00604932) (-0.005004896 0.01999998 0.00651044) (-0.006108833 0.02200434 0.005593054) (-0.005605219 0.02200672 0.006107954) (-0.005358097 0.01996689 0.006838754) (-0.004544836 0.02201137 0.006067547) (-0.003539965 0.02201028 0.006073758) (-0.004041207 0.02200851 0.006560713) (-0.004016872 0.01900287 0.007033668) (-0.004635758 0.02024956 0.007154298) (-0.003524332 0.02001379 0.00706369) (-0.004152384 0.02126959 0.0072103) (-0.002011882 0.01900656 0.007067436) (-0.002514421 0.02000727 0.007065374) (-0.001509755 0.02000707 0.007074487) (-0.002014388 0.02100819 0.007070115) (-0.0005029198 0.0200065 0.0070781) (0.0005067309 0.02000449 0.007080498) (1.916789e-06 0.02100605 0.007070186) (0.002016716 0.01900247 0.007065765) (0.001514382 0.02000404 0.007071047) (0.002521301 0.02000431 0.007055831) (0.002014123 0.021003 0.007061377) (0.005043798 0.02000398 0.005544444) (0.005042605 0.01900277 0.00604717) (0.005035012 0.02100147 0.006036976) (0.005005302 0.02000024 0.006507153) (0.003539565 0.0220095 0.006064835) (0.004545458 0.02201315 0.00605579) (0.004032782 0.02200756 0.006549699) (0.004012561 0.01900713 0.007036672) (0.003545428 0.02000785 0.007061409) (0.004655113 0.02027701 0.007149147) (0.004002412 0.02099994 0.007001272) (0.006846151 0.01972765 0.005339965) (0.006103452 0.02200792 0.005603315) (0.005607053 0.02200883 0.00610505) (0.005351699 0.01996183 0.006846603) (-0.005014131 0.0240022 0.005517313) (-0.005157136 0.02327016 0.006164388) (-0.004982173 0.0249775 0.005973865) (-0.004884043 0.02398099 0.006366353) (-0.003034052 0.0230138 0.006081058) (-0.003034274 0.02501687 0.006100078) (-0.003030211 0.02401542 0.006578898) (-0.004033151 0.02601435 0.005580385) (-0.0045235 0.02603336 0.006030418) (-0.00352852 0.02600945 0.006053795) (-0.00400982 0.02598958 0.0064331) (-0.003999493 0.0229913 0.007086394) (-0.004350693 0.02372154 0.00683324) (-0.003516163 0.02402419 0.007116779) (-0.003878273 0.0247517 0.006869537) (-0.002532169 0.02602068 0.006096575) (-0.001522948 0.02601784 0.006097021) (-0.002017711 0.02600999 0.00657064) (-0.002030603 0.02300319 0.007105899) (-0.002513299 0.02400443 0.007042091) (-0.001513533 0.02400624 0.007086723) (-0.002006911 0.02500537 0.007037747) (-0.0005077245 0.02601705 0.006100554) (0.0005039457 0.02601305 0.006095801) (-1.223602e-06 0.02601216 0.006588839) (-3.196561e-07 0.02300666 0.007055733) (-0.000503679 0.02400841 0.007052486) (0.0005027735 0.02400579 0.007049777) (-1.66976e-06 0.02501521 0.007076087) (0.003040078 0.02301218 0.006072181) (0.003034489 0.02501751 0.006089539) (0.003050446 0.02401784 0.006559283) (0.001514894 0.02601385 0.006076812) (0.002528654 0.02602147 0.006087153) (0.00201308 0.02601312 0.006558508) (0.002006643 0.02300361 0.007035091) (0.001505092 0.02400762 0.007063535) (0.002517514 0.02400609 0.007016147) (0.002009131 0.02500438 0.007024399) (0.005008823 0.02400591 0.005518661) (0.005147878 0.02327541 0.006151465) (0.004988324 0.02499937 0.005986302) (0.004882824 0.02397858 0.006348969) (0.004035591 0.02600991 0.005560936) (0.003521458 0.02600838 0.006047922) (0.00449795 0.02601828 0.006086765) (0.003997152 0.02598589 0.00642743) (0.004002032 0.02302001 0.007094302) (0.003525941 0.02402667 0.007107855) (0.004324948 0.02371938 0.006850515) (0.003870311 0.024744 0.006862127) (-0.004868658 0.02773379 0.005352953) (-0.003047825 0.02801065 0.005593967) (-0.003021695 0.02701296 0.006055033) (-0.003022724 0.02902375 0.00610651) (-0.003002432 0.02798869 0.00644718) (-0.003882976 0.0297612 0.005394197) (-0.003362645 0.02973727 0.005831197) (-0.001011468 0.02701784 0.00609133) (-0.001005456 0.02901433 0.006063013) (-0.00100223 0.02800932 0.006540118) (-0.002014775 0.03001068 0.005545524) (-0.002496711 0.02997879 0.006071455) (-0.001650821 0.03026801 0.006218569) (-0.001978208 0.02977227 0.006377262) (-0.002009053 0.02703236 0.007039127) (-0.00235981 0.02775237 0.006846411) (-0.001494233 0.02795367 0.006990122) (-0.001834198 0.02869098 0.00679676) (0.001008443 0.02701309 0.006088568) (0.001008413 0.02901405 0.006076422) (0.001003698 0.02800665 0.006547801) (1.124067e-06 0.03002038 0.00558323) (-0.0005001834 0.03001284 0.006049375) (0.0005019562 0.03001601 0.006066051) (9.768553e-07 0.03001366 0.006567303) (-1.999059e-06 0.02725474 0.007195483) (-0.0005019735 0.0280172 0.007057909) (0.0005000414 0.02800165 0.007058797) (5.943101e-07 0.02876959 0.006928401) (0.003032057 0.02802153 0.005594536) (0.003024405 0.0270091 0.006050819) (0.003033199 0.0290298 0.006127627) (0.003006822 0.02798739 0.006443142) (0.002020728 0.0300155 0.00555779) (0.001652031 0.03029991 0.006221793) (0.002501614 0.02998523 0.006098688) (0.001991936 0.02977954 0.006392635) (0.001995611 0.02699883 0.007083838) (0.001493877 0.02797727 0.00699467) (0.002366696 0.02773917 0.006865751) (0.001829218 0.02870666 0.006802818) (0.0048506 0.02775474 0.005349706) (0.004794553 0.0267169 0.005810778) (0.003889978 0.02975991 0.005406586) (0.003352411 0.02974437 0.005824478) (-0.002857504 0.03174443 0.005354661) (-0.002818405 0.03066215 0.00577384) (-0.001013804 0.03225148 0.005670253) (-0.000990126 0.03117527 0.006104919) (0.001020903 0.03226056 0.005709259) (0.0009943896 0.03118759 0.006132885) (7.090822e-06 0.03376012 0.005369843) (0.002857549 0.03176127 0.005379729) (0.002853704 0.0306981 0.005781445) (-0.001995596 -0.02577236 0.007377333) (4.122605e-07 -0.02601499 0.007546959) (0.001991307 -0.02577182 0.007367473) (-0.002987084 -0.02398065 0.007400219) (-0.002838445 -0.02269437 0.007804354) (-0.003982863 -0.02196733 0.007375257) (-0.003321812 -0.02172869 0.007801065) (-0.001000879 -0.02400186 0.007517085) (-0.0009844897 -0.02472993 0.007830261) (-0.001011172 -0.02304388 0.008059247) (-0.002002716 -0.02200029 0.007529023) (-0.002490109 -0.02196604 0.007974316) (-0.001516807 -0.0220387 0.00813141) (0.0009987515 -0.02399914 0.007508811) (0.0009677012 -0.02473488 0.007838843) (0.001005865 -0.02303807 0.008069971) (-6.883017e-06 -0.02200491 0.007547024) (-0.0006439802 -0.02229118 0.008183357) (0.0006246133 -0.02228796 0.008183175) (-1.805009e-06 -0.02192958 0.008408653) (0.00299261 -0.0239788 0.007396389) (0.002824771 -0.02269694 0.007809692) (0.002005272 -0.02200201 0.007528352) (0.00150863 -0.02203011 0.008124039) (0.002477275 -0.02199022 0.007969621) (0.003891175 -0.02197941 0.007384779) (-0.004819342 -0.01972282 0.007335514) (-0.003007212 -0.02000408 0.007538832) (-0.002972893 -0.02099012 0.00797736) (-0.003118028 -0.01902594 0.008118878) (-0.00285044 -0.01971483 0.008305674) (-0.004005568 -0.01799792 0.007513875) (-0.004355363 -0.0179671 0.007836211) (-0.003518941 -0.01803146 0.00812664) (-0.001002864 -0.02000605 0.007575055) (-0.0009972737 -0.02100118 0.00801862) (-0.001005202 -0.01900477 0.008082341) (-0.001005237 -0.0200131 0.008557802) (-0.002014497 -0.01800717 0.007572748) (-0.002518598 -0.01800579 0.008040117) (-0.001504282 -0.01801049 0.008080247) (-0.002007441 -0.01802137 0.008623327) (0.001003349 -0.02000572 0.007567509) (0.0009996026 -0.0210014 0.008023859) (0.001003549 -0.01900918 0.008075208) (0.001005952 -0.02001223 0.00855565) (-0.0005028162 -0.01801022 0.008064482) (0.0005012968 -0.01800954 0.008059329) (-9.953438e-07 -0.01800105 0.008513398) (-1.265926e-06 -0.01875497 0.008870123) (0.003009547 -0.02000322 0.007536258) (0.003003784 -0.02100913 0.007926939) (0.003128128 -0.0190194 0.00814563) (0.002839336 -0.01972037 0.008305765) (0.002010856 -0.01800496 0.007565124) (0.001504902 -0.01800158 0.008069389) (0.002511822 -0.01800381 0.008037251) (0.002001351 -0.01801502 0.008633125) (0.004824309 -0.01971188 0.007318831) (0.004174885 -0.01827168 0.007707985) (0.003526671 -0.01802818 0.008124397) (0.004358524 -0.01772962 0.007864827) (-0.005005454 -0.01598733 0.007601409) (-0.004882695 -0.01498051 0.007881139) (-0.005864141 -0.01396676 0.007356472) (-0.005323652 -0.01372505 0.007825565) (-0.003019718 -0.01600302 0.007557822) (-0.003009407 -0.01700153 0.008021065) (-0.003011265 -0.01500145 0.008045169) (-0.003007298 -0.01600281 0.008605679) (-0.004017413 -0.01400302 0.007542048) (-0.004598979 -0.01398615 0.008108346) (-0.003511616 -0.01400049 0.008033746) (-0.003973212 -0.01398572 0.008467227) (-0.00100447 -0.01700697 0.008066724) (-0.001010046 -0.01500826 0.008084149) (-0.001005567 -0.01600308 0.008568444) (-0.002514964 -0.01400389 0.0080679) (-0.001514763 -0.01400713 0.008085066) (-0.00201359 -0.01400515 0.008574732) (-0.001978351 -0.01695157 0.008871368) (-0.002473001 -0.01596271 0.008844189) (-0.001501285 -0.0159964 0.009028528) (-0.002003702 -0.01500162 0.009029621) (0.001003403 -0.0170043 0.008057015) (0.001008264 -0.01500495 0.008088135) (0.001002956 -0.01600044 0.008562016) (-0.0005058062 -0.01400811 0.008064367) (0.000506782 -0.01400658 0.008072397) (1.053306e-06 -0.01400633 0.008534607) (-3.223319e-06 -0.01700381 0.009043533) (-0.0005031877 -0.01605147 0.009125002) (0.000499707 -0.01604177 0.009121956) (3.768832e-06 -0.01525546 0.009152567) (0.00301992 -0.01600304 0.00755439) (0.003006744 -0.01700102 0.008017649) (0.003007436 -0.01500113 0.008041121) (0.003008624 -0.0160028 0.008603554) (0.001513313 -0.01400723 0.008093838) (0.002515359 -0.01400239 0.00806998) (0.00201032 -0.01400759 0.008572952) (0.001981957 -0.01694915 0.00884953) (0.001498902 -0.01599766 0.009028864) (0.002466743 -0.01597177 0.008858413) (0.001997899 -0.01500155 0.009025434) (0.004996623 -0.01598888 0.007581178) (0.004855913 -0.01496584 0.007887047) (0.004019406 -0.01400189 0.007535146) (0.003510174 -0.01400174 0.008036964) (0.0045865 -0.0139814 0.008087211) (0.0039728 -0.0139874 0.00846712) (0.005814939 -0.01371466 0.007341728) (-0.005021551 -0.01200189 0.007537336) (-0.005002383 -0.01300044 0.008008313) (-0.005097858 -0.01098331 0.008092312) (-0.004852397 -0.01172767 0.008303438) (-0.005979865 -0.009988747 0.007566851) (-0.005506554 -0.01000001 0.007914753) (-0.003015975 -0.01300226 0.008062108) (-0.003020453 -0.01100243 0.00807301) (-0.003008934 -0.01200079 0.008555186) (-0.004032781 -0.01000326 0.007571016) (-0.004513333 -0.01000266 0.008045226) (-0.003526608 -0.01000252 0.008066228) (-0.004164531 -0.01003689 0.008698116) (-0.003486085 -0.01199651 0.008885537) (-0.003862346 -0.01096665 0.008860023) (-0.001009809 -0.01300645 0.008069634) (-0.001007234 -0.01100323 0.008071725) (-0.001007129 -0.0120035 0.008551892) (-0.002523245 -0.01000051 0.008087999) (-0.001510938 -0.01000195 0.0080776) (-0.002017689 -0.009999276 0.008575766) (-0.002028981 -0.01303974 0.009184) (-0.002502104 -0.01200812 0.009139586) (-0.001505162 -0.01200159 0.009022656) (-0.002004332 -0.01100191 0.009014226) (0.001011073 -0.01300963 0.008078417) (0.001007493 -0.01100369 0.008075584) (0.001008842 -0.01200714 0.008559419) (-1.499354e-07 -0.0130024 0.008974288) (-0.0005023586 -0.01200212 0.009015709) (0.0005015663 -0.01200199 0.009019145) (-2.810525e-07 -0.01100416 0.009081344) (0.003016273 -0.0130009 0.0080624) (0.003018568 -0.01100172 0.008085003) (0.003012926 -0.01200094 0.008564536) (0.001510471 -0.01000107 0.008085018) (0.00251834 -0.009998411 0.008106323) (0.002013243 -0.009997079 0.008593657) (0.002032093 -0.01304083 0.009134381) (0.001502775 -0.01200163 0.00900993) (0.002523275 -0.0120078 0.009148479) (0.002000935 -0.01100147 0.009011199) (0.00500839 -0.01199983 0.007514378) (0.005010071 -0.01300096 0.007918377) (0.004998136 -0.01099738 0.008089215) (0.004031549 -0.01000158 0.007566296) (0.003523332 -0.01000118 0.008066395) (0.004505502 -0.009999309 0.008011614) (0.00413948 -0.01003531 0.008653359) (0.003477725 -0.01199459 0.008889616) (0.003841861 -0.01097125 0.008850109) (0.005979776 -0.009987528 0.007558657) (0.005497517 -0.01000261 0.007909164) (-0.005029021 -0.007996703 0.007571691) (-0.005149333 -0.009037655 0.008183188) (-0.005002329 -0.006999234 0.008006365) (-0.004997196 -0.008003378 0.00840477) (-0.006164277 -0.006003055 0.007679865) (-0.005613585 -0.005998399 0.00811631) (-0.003022379 -0.009002032 0.008074885) (-0.003015575 -0.007001157 0.008055831) (-0.003009818 -0.008002887 0.008575738) (-0.004530781 -0.00600138 0.008064692) (-0.003522457 -0.006000777 0.008057837) (-0.004021343 -0.006000643 0.008549004) (-0.00398096 -0.008997139 0.008882311) (-0.004354156 -0.007963426 0.008821126) (-0.003513798 -0.008002501 0.009102807) (-0.00398703 -0.007000305 0.008975501) (0.003023063 -0.009001396 0.008086421) (0.003032939 -0.007002016 0.008092637) (0.003035632 -0.008003893 0.008598948) (0.00504991 -0.008007913 0.007550403) (0.005144181 -0.009036233 0.008160738) (0.004998073 -0.006999846 0.008000222) (0.004995563 -0.008001873 0.00840765) (0.003529055 -0.006001903 0.008071947) (0.004535896 -0.006003098 0.008044347) (0.004026367 -0.00600198 0.008551845) (0.003982656 -0.008996835 0.008886521) (0.0035343 -0.008019068 0.009096117) (0.004357927 -0.007963938 0.008835682) (0.003980125 -0.00700009 0.008996189) (0.006156396 -0.006003697 0.007640895) (0.005586313 -0.005998647 0.008075187) (-0.006822236 -0.003728084 0.007331011) (-0.005049113 -0.004001507 0.007576908) (-0.005030364 -0.005000921 0.008052014) (-0.005036531 -0.002999529 0.008078313) (-0.005035889 -0.004002873 0.00855145) (-0.00616949 -0.002276607 0.007668095) (-0.006304372 -0.001724098 0.007822375) (-0.005662658 -0.002000157 0.008165338) (-0.003021234 -0.005001258 0.008065762) (-0.003028307 -0.003001561 0.008080537) (-0.003021991 -0.004001293 0.008579478) (-0.00453862 -0.002004616 0.008103859) (-0.003536039 -0.002002506 0.008094406) (-0.004030823 -0.002004599 0.008601819) (-0.004025932 -0.005000317 0.009060295) (-0.004388015 -0.004001349 0.008900245) (-0.003633289 -0.0040016 0.00924694) (-0.004047698 -0.002999459 0.009092299) (0.003027709 -0.005001276 0.008072584) (0.003026007 -0.003001176 0.008077702) (0.00302569 -0.004000876 0.008573979) (0.005040149 -0.004001942 0.007557135) (0.005011786 -0.005000739 0.008019631) (0.005027274 -0.003001501 0.008053009) (0.005007761 -0.004002378 0.008522544) (0.003530702 -0.002002517 0.008092682) (0.004532209 -0.002005392 0.008096255) (0.004025104 -0.002003594 0.008596029) (0.004009954 -0.00500094 0.009060878) (0.003649986 -0.003999711 0.009216737) (0.004398727 -0.004002038 0.008922099) (0.004055414 -0.002999669 0.00908474) (0.00622502 -0.002039494 0.007695101) (0.005654203 -0.001998374 0.008146773) (-0.006829371 7.334543e-07 0.007302055) (-0.005039027 8.467322e-07 0.007560658) (-0.005032557 -0.0010007 0.008039986) (-0.005028017 0.001001739 0.008042914) (-0.005098236 5.090145e-07 0.008596146) (-0.006168957 0.002276054 0.007676747) (-0.006314472 0.001724367 0.007834435) (-0.005651167 0.002000426 0.008178601) (-0.00302996 -0.001002676 0.008081071) (-0.003027241 0.0009997789 0.008083186) (-0.003024991 -1.862431e-06 0.00857748) (-0.004547678 0.002001903 0.008110883) (-0.003538708 0.002001204 0.008098028) (-0.004039954 0.002002696 0.008605566) (-0.004018482 -0.001004676 0.009126782) (-0.004467988 1.298036e-06 0.008953326) (-0.003512995 -1.338809e-06 0.00901029) (-0.004016701 0.001004338 0.009123351) (0.003024953 -0.001000718 0.008076308) (0.003026031 0.001001042 0.008080487) (0.003019492 3.245299e-07 0.008568097) (0.00504056 -9.574321e-07 0.007567661) (0.005021883 -0.001001434 0.008037162) (0.005044224 0.001000826 0.008053748) (0.005078074 -1.155176e-05 0.008589497) (0.003538435 0.002001936 0.008095534) (0.004555931 0.002003218 0.008107959) (0.004044191 0.002002365 0.008604376) (0.0040133 -0.00100299 0.00911699) (0.00349858 5.254838e-07 0.00901694) (0.004479377 -1.399521e-05 0.008969184) (0.004016303 0.001000603 0.009108901) (0.006803227 -2.974182e-06 0.007331834) (0.006159467 0.002273457 0.007688944) (0.005668702 0.001997827 0.00817897) (0.006334091 0.001716177 0.007821218) (-0.00505893 0.004002002 0.007578235) (-0.005044957 0.003002351 0.008072083) (-0.005035361 0.00500052 0.008045431) (-0.005026023 0.004002644 0.008544608) (-0.006167452 0.006001924 0.007685483) (-0.005616326 0.00599768 0.008118494) (-0.003030607 0.003001138 0.008082438) (-0.003024694 0.005002166 0.008070155) (-0.00302993 0.004001719 0.008578681) (-0.004519166 0.006000603 0.008071027) (-0.003522438 0.006001616 0.008066405) (-0.004013182 0.006000417 0.008552205) (-0.004041348 0.003001636 0.00908624) (-0.004397637 0.004003049 0.008901793) (-0.003674206 0.004001308 0.009235057) (-0.004029164 0.005000725 0.009050777) (0.003030572 0.003001368 0.008082994) (0.003024454 0.0050011 0.008076635) (0.00302792 0.004001424 0.008581085) (0.005054007 0.00400146 0.007586929) (0.005043075 0.003002999 0.008078961) (0.005026953 0.005000077 0.00805135) (0.005016064 0.004000687 0.008535352) (0.003525425 0.006001469 0.008072998) (0.004527698 0.00600088 0.008065766) (0.004017587 0.006000904 0.008557733) (0.004011721 0.003003009 0.0090963) (0.003658897 0.004002903 0.009231276) (0.004389107 0.003999457 0.008886134) (0.00401376 0.005001069 0.00905509) (0.00682721 0.003718957 0.00733027) (0.006174241 0.006003904 0.007707178) (0.005612809 0.006000154 0.008130894) (-0.005035952 0.00800703 0.007564564) (-0.005002441 0.007001953 0.008008302) (-0.005165086 0.009040062 0.008176309) (-0.004994088 0.007999386 0.008396762) (-0.00598699 0.009985878 0.007569913) (-0.005506632 0.009999824 0.007912531) (-0.003020098 0.007003387 0.008075311) (-0.003019687 0.009000941 0.008068244) (-0.00301246 0.008002185 0.00857014) (-0.004028326 0.01000258 0.007562189) (-0.0045211 0.01000075 0.008031349) (-0.003519421 0.01000172 0.008058121) (-0.004130166 0.01003704 0.008680151) (-0.003978154 0.006999112 0.008980234) (-0.004352514 0.007962575 0.008841504) (-0.003546927 0.008018063 0.009078222) (-0.003984354 0.00899802 0.008888493) (-0.00251362 0.0100011 0.00807716) (-0.001507817 0.01000226 0.008073161) (-0.002006516 0.01000112 0.008563977) (0.003025094 0.007002033 0.008086991) (0.00302443 0.009002306 0.00808965) (0.003027324 0.008004089 0.008584488) (0.00151243 0.01000407 0.008082524) (0.002524781 0.01000377 0.008105418) (0.00201808 0.01000494 0.008589533) (0.005069188 0.007999923 0.007588073) (0.0050121 0.007000362 0.008017599) (0.005176522 0.009039911 0.008199784) (0.005004314 0.008001791 0.008419356) (0.004035673 0.01000291 0.007578128) (0.003526134 0.01000204 0.008073413) (0.004526171 0.01000087 0.008051027) (0.00416074 0.01003602 0.008695936) (0.003979887 0.007000862 0.008986052) (0.00354322 0.008019194 0.009090876) (0.004363702 0.007965634 0.008827683) (0.00398543 0.009000924 0.008893961) (0.005996833 0.009988196 0.007582781) (0.005517617 0.01000268 0.007927919) (-0.005017955 0.0120025 0.007540743) (-0.005088678 0.01098284 0.008100451) (-0.005000333 0.01299992 0.008005181) (-0.004847381 0.01171978 0.008322517) (-0.005852618 0.01396526 0.007353942) (-0.005337712 0.01372187 0.007821498) (-0.003017271 0.0110014 0.008065625) (-0.003014923 0.01299837 0.008051041) (-0.003013071 0.01200113 0.008545037) (-0.004022959 0.01400443 0.007535371) (-0.004605561 0.01398608 0.008096702) (-0.003510271 0.01399906 0.008025874) (-0.003970423 0.01398657 0.008459344) (-0.003865933 0.01096411 0.008836835) (-0.003482249 0.01199361 0.008879308) (-0.001005393 0.01100254 0.008070002) (-0.001007034 0.01300295 0.008075004) (-0.001004865 0.01200245 0.008548771) (-0.002514397 0.01399747 0.00806498) (-0.001506613 0.01400257 0.008091789) (-0.002007134 0.01400127 0.008579593) (-0.001998772 0.01100187 0.009021041) (-0.002524298 0.01201321 0.009134277) (-0.00150648 0.01200234 0.009014254) (-0.0020208 0.01303623 0.009156693) (0.001007233 0.01100412 0.008073272) (0.001005818 0.01300419 0.00807928) (0.001005684 0.01200405 0.00855169) (-0.0005048219 0.01400075 0.008072427) (0.0005009375 0.01400348 0.008075654) (-2.178462e-06 0.01399727 0.008536254) (2.106916e-06 0.01100565 0.009081514) (-0.00049994 0.01200133 0.009016295) (0.0005033002 0.01200217 0.00901801) (3.311192e-07 0.01299854 0.008975132) (0.003021316 0.01100274 0.008083054) (0.003021011 0.01300502 0.008066278) (0.003014726 0.01200184 0.008555093) (0.001508901 0.01400588 0.008095741) (0.00252264 0.01400659 0.008081291) (0.002009318 0.01400495 0.008580595) (0.002004602 0.01100243 0.009016113) (0.001507485 0.01200143 0.009013223) (0.002515911 0.01200527 0.009144832) (0.002020681 0.01304369 0.009153755) (0.005018501 0.01200066 0.007532924) (0.00509834 0.01098007 0.008115254) (0.004992864 0.01299936 0.00799124) (0.00483996 0.01172465 0.008331818) (0.00402222 0.01400185 0.007539015) (0.003515139 0.01400129 0.008046169) (0.004601285 0.01398607 0.008097711) (0.003970537 0.01398585 0.008477295) (0.003862345 0.01097207 0.008829845) (0.003487057 0.0119953 0.008881268) (0.005866335 0.01396762 0.007359382) (0.005346784 0.01372156 0.007804403) (-0.005008162 0.01598956 0.007594647) (-0.004891034 0.01498119 0.007884096) (-0.00301745 0.01600416 0.007553754) (-0.003012001 0.01499982 0.008044171) (-0.003002678 0.01700169 0.008021297) (-0.003004413 0.01600315 0.008602922) (-0.004006255 0.0180012 0.007509686) (-0.004368878 0.01796897 0.007843903) (-0.003518129 0.018031 0.00811459) (-0.001006742 0.01500461 0.00808619) (-0.001007941 0.01700357 0.008068014) (-0.001005494 0.016005 0.008567681) (-0.002011426 0.01800726 0.007568546) (-0.002507913 0.01800508 0.008045116) (-0.001508103 0.01800693 0.008078601) (-0.002004649 0.0180185 0.008633649) (-0.002002243 0.0149996 0.009030463) (-0.00246833 0.01596684 0.00886706) (-0.001500518 0.0159987 0.009025632) (-0.001977402 0.01695307 0.008859975) (0.001004775 0.01500347 0.008092437) (0.001005532 0.01700254 0.008066217) (0.001003874 0.01600269 0.0085669) (-0.0005072849 0.01800146 0.00807456) (0.000503534 0.01799949 0.008078592) (-6.063676e-07 0.01800058 0.008519252) (2.57033e-06 0.01522931 0.009177642) (-0.0005009181 0.01604428 0.009113566) (0.000510555 0.0160488 0.009127544) (-2.539255e-07 0.01700117 0.009042813) (0.003022829 0.01600291 0.007560295) (0.003021577 0.01500342 0.008059303) (0.003004704 0.01700104 0.008022086) (0.003003702 0.01600404 0.008614266) (0.002015195 0.01800151 0.007563511) (0.001506139 0.0180065 0.008072272) (0.002514404 0.01799685 0.008037044) (0.001997615 0.0180249 0.008621783) (0.002002474 0.01500095 0.009029441) (0.001501256 0.01599787 0.009026029) (0.002477468 0.01596398 0.008855714) (0.001976269 0.01694869 0.008852049) (0.005004407 0.01598941 0.007593777) (0.004875155 0.01497736 0.007874771) (0.004004412 0.0180009 0.007507176) (0.00352635 0.01803034 0.008118682) (0.004362343 0.01796642 0.007856398) (-0.004830184 0.01971788 0.007302168) (-0.003010907 0.02000757 0.007537463) (-0.003131035 0.01902531 0.008153504) (-0.002978499 0.02099009 0.007967928) (-0.002864154 0.01972774 0.008298495) (-0.003891551 0.02197974 0.007379395) (-0.003313193 0.02171188 0.00780331) (-0.001004471 0.02000676 0.007572747) (-0.001005818 0.01900047 0.008087302) (-0.0009977825 0.02100648 0.008021848) (-0.001000051 0.02001792 0.008558196) (-0.002003317 0.02200128 0.007534358) (-0.002489392 0.02196744 0.00797126) (-0.0015013 0.02203241 0.008146574) (0.001009505 0.02000423 0.007570811) (0.001003654 0.01900263 0.008084028) (0.001004837 0.02100094 0.008019031) (0.001002101 0.02001625 0.00855849) (2.142772e-06 0.02200426 0.007549299) (-0.0006398566 0.0222952 0.008190883) (0.0006446281 0.0222886 0.008191357) (-9.659696e-07 0.02192295 0.008400707) (-1.347126e-06 0.0187461 0.008868847) (0.003020029 0.02000363 0.007533019) (0.003111686 0.01901855 0.008152269) (0.002974229 0.0209904 0.007971979) (0.002860639 0.01972392 0.008296483) (0.002004309 0.02200244 0.007526626) (0.001506641 0.02203353 0.008122617) (0.002482471 0.02198846 0.007966423) (0.004829029 0.01971294 0.007326054) (0.003971782 0.0219673 0.00736834) (0.003350525 0.02172688 0.0077869) (-0.002981938 0.02397816 0.007403204) (-0.002852505 0.02270191 0.007795224) (-0.001001051 0.02399982 0.007515369) (-0.001013406 0.02304679 0.008065178) (-0.000989079 0.02474266 0.007832803) (-0.001995417 0.02576569 0.007383832) (0.0009974967 0.02400337 0.007513448) (0.001016314 0.023044 0.008068735) (0.0009794538 0.02472256 0.007842468) (-1.221919e-07 0.02600709 0.007535564) (0.002990329 0.02398119 0.007409881) (0.002854676 0.02272757 0.007804039) (0.001981414 0.0259482 0.007374266) (-3.509856e-06 -0.01394144 0.009407617) (-0.0009982198 -0.01199595 0.009464771) (-0.001985501 -0.009996019 0.009462329) (0.0009989806 -0.01199598 0.009465775) (4.473047e-06 -0.0100286 0.009673488) (0.00199259 -0.009997262 0.009453243) (-0.002983617 -0.007998164 0.00936721) (0.002874061 -0.008009745 0.009359995) (-0.002979839 -0.004001042 0.009488604) (0.002977053 -0.004000657 0.009474208) (-0.003008636 2.281367e-07 0.009534928) (0.003006507 1.034933e-08 0.009516142) (-0.002981768 0.004001238 0.009481341) (0.0029812 0.004001539 0.00948517) (-0.00287728 0.008010255 0.009322875) (-0.001987532 0.009998457 0.00945931) (1.559291e-06 0.01002873 0.009671931) (0.002894438 0.008007412 0.009345835) (0.001991548 0.009998202 0.009457817) (-0.0009981742 0.01199808 0.009465195) (0.001002984 0.01199972 0.009463847) (-1.718346e-06 0.01392968 0.0094184) (0.0004813545 -0.01873955 -0.008845438) (-0.001366578 -0.01371038 -0.009296102) (-0.001492853 -0.01500838 -0.009086835) (0.0004985236 -0.01375131 -0.009355619) (0.0005092966 -0.01504767 -0.009178753) (0.002474543 -0.0149782 -0.008955017) (0.002332782 -0.01172124 -0.009311062) (0.002479819 -0.009984916 -0.00935255) (0.002616745 -0.01103258 -0.009185806) (0.0024707 -0.007995727 -0.009438418) (0.002988012 -0.006997254 -0.009389302) (0.002503866 -0.006001189 -0.009511487) (0.002519241 -0.00699852 -0.009070047) (0.004343781 -0.006994606 -0.008827418) (0.004388299 -0.003015924 -0.008889995) (-0.002995102 0.0009976164 -0.009523397) (-0.003397143 0.002003266 -0.009373842) (-0.003658518 0.001033311 -0.009262017) (0.004498894 0.0009984504 -0.008921655) (-0.003349661 0.00399807 -0.0093569) (-0.002964282 0.005003173 -0.009456489) (-0.003348707 0.005963488 -0.009306009) (-0.003636794 0.005001901 -0.009200099) (0.002975427 0.004997951 -0.009460385) (0.002501468 0.006000041 -0.009558091) (0.002515364 0.005000926 -0.009074934) (0.004389374 0.005001032 -0.00888093) (0.002468018 0.007993758 -0.009437595) (0.002856671 0.008970571 -0.009304436) (0.002471426 0.009957291 -0.009353658) (0.002504758 0.008999224 -0.008992762) (0.004332564 0.008707858 -0.008818092) (-0.00337169 0.01297674 -0.008866183) (0.0009858754 0.01293698 -0.009387894) (0.0004994592 0.01375131 -0.009358603) (0.0004972304 0.01299568 -0.008987662) (0.001860257 0.01271911 -0.009312702) (0.002502078 0.01300305 -0.009050694) (-0.001485495 0.01694785 -0.008958571) (0.0004973378 0.016996 -0.009009981) (0.002369139 0.01674723 -0.008808068) (-0.000973074 -0.02674195 -0.007338134) (-0.001498313 -0.02597762 -0.007399143) (-0.001493283 -0.02701583 -0.007108872) (-3.278447e-07 -0.02676347 -0.007385452) (0.0009953485 -0.02673441 -0.007354368) (0.0005005344 -0.02600649 -0.007518575) (0.0005007138 -0.0272474 -0.007163447) (0.001827758 -0.02667665 -0.0072962) (0.002363061 -0.02572516 -0.007319114) (0.002495821 -0.02698275 -0.006913527) (-0.005851275 -0.02072313 -0.006308966) (-0.006331916 -0.02073545 -0.005818107) (-0.003353068 -0.02373424 -0.007289592) (-0.003843193 -0.02272278 -0.007304962) (-0.002993208 -0.02301294 -0.007560424) (-0.003480155 -0.02198354 -0.007556291) (-0.003627427 -0.02324174 -0.007134568) (-0.00149452 -0.02299431 -0.00798796) (-0.001639251 -0.02429584 -0.007658256) (-0.001992862 -0.02299974 -0.007484278) (-0.0009976976 -0.02300138 -0.007528971) (-0.001500344 -0.02199732 -0.007530187) (-0.001500977 -0.02300445 -0.007037878) (0.0004986788 -0.02304158 -0.008079262) (0.0004990524 -0.02400097 -0.007507899) (4.436845e-07 -0.02300368 -0.007562942) (0.0009996936 -0.02300222 -0.007528492) (0.0005013605 -0.0220053 -0.007575315) (0.0005012602 -0.02300741 -0.007063251) (0.002473508 -0.02294259 -0.00783623) (0.002493976 -0.02399847 -0.007569043) (0.00199706 -0.02299922 -0.007487407) (0.003004314 -0.02301519 -0.007567485) (0.002497407 -0.02199708 -0.007494864) (0.002509305 -0.02300414 -0.00702382) (0.003835527 -0.02272876 -0.007324571) (0.004342981 -0.02171074 -0.007268416) (0.004388895 -0.02299588 -0.006893353) (0.005836288 -0.02073067 -0.006306889) (0.00630331 -0.02073389 -0.005852154) (-0.004884883 -0.01897517 -0.007342906) (-0.005322627 -0.01774028 -0.007280433) (-0.005401855 -0.01899381 -0.006903225) (-0.003496523 -0.01900005 -0.008004542) (-0.003672121 -0.0202775 -0.007661303) (-0.004136907 -0.0192469 -0.007646448) (-0.003016503 -0.01899993 -0.007555645) (-0.003510262 -0.01800035 -0.007534583) (-0.003519927 -0.01900369 -0.007048026) (-0.001508536 -0.01900138 -0.008045804) (-0.001512578 -0.02000075 -0.007554543) (-0.002018556 -0.01900277 -0.007563375) (0.0005029732 -0.0190075 -0.008071268) (0.0005024696 -0.02000472 -0.007559209) (0.002503717 -0.01899876 -0.008017314) (0.002511565 -0.02000306 -0.007566351) (0.002010118 -0.01900265 -0.007563478) (0.003014076 -0.01899693 -0.007551221) (0.002522236 -0.01800345 -0.007570446) (0.002518503 -0.01900247 -0.00707108) (0.004318523 -0.01870863 -0.007816796) (0.004487425 -0.02000836 -0.007398116) (0.004136915 -0.01926284 -0.007642335) (0.004860569 -0.01896907 -0.007359054) (0.004590379 -0.01798612 -0.00759916) (0.004508683 -0.01900082 -0.007010156) (-0.00538846 -0.01601087 -0.007382189) (-0.005816306 -0.01472011 -0.007327213) (-0.005120643 -0.01502756 -0.007621749) (-0.005486135 -0.01398864 -0.007574139) (-0.005643101 -0.01526148 -0.007167777) (-0.003508724 -0.01500105 -0.008037766) (-0.003519311 -0.0160072 -0.007597702) (-0.00403103 -0.01500454 -0.00756799) (2.445277e-06 -0.01400327 -0.007068536) (-0.001004989 -0.01400232 -0.006051445) (-0.00150464 -0.01500282 -0.008070259) (-0.0004994183 -0.01500431 -0.008103207) (-0.001500838 -0.01300156 -0.008067297) (-0.0004976734 -0.01300178 -0.008057725) (0.001008367 -0.01400308 -0.006052131) (0.0005053818 -0.01500373 -0.008105697) (0.001507534 -0.01500424 -0.008071798) (0.0005044938 -0.01300304 -0.008059549) (0.001510468 -0.01300228 -0.008068281) (0.002513902 -0.01500534 -0.008053422) (0.004522917 -0.01500344 -0.008024604) (0.004662325 -0.01626562 -0.007686668) (0.004026133 -0.01500564 -0.007571209) (0.005124397 -0.01498721 -0.007623721) (0.004531516 -0.01400503 -0.007570332) (0.004542897 -0.01500434 -0.007073462) (0.005849787 -0.01472119 -0.007319361) (0.006352817 -0.01472927 -0.00684813) (-0.005400421 -0.01100548 -0.007896115) (-0.005618093 -0.01199601 -0.00763815) (-0.006017658 -0.0110029 -0.007427581) (-0.005026219 -0.01100157 -0.007546584) (-0.005676147 -0.010038 -0.007727114) (-0.005550283 -0.01099919 -0.007082784) (-0.004033378 -0.01100327 -0.007559212) (0.004031924 -0.01100326 -0.007556846) (0.003021703 -0.00800263 -0.00705896) (0.003023562 -0.01000323 -0.006050644) (0.002514834 -0.01100393 -0.008062813) (0.003519861 -0.011005 -0.008040421) (0.002516857 -0.009002133 -0.008065213) (0.003520691 -0.009004412 -0.008066429) (0.004507278 -0.01100088 -0.008008446) (0.004551966 -0.01200309 -0.007568334) (0.005025926 -0.01100379 -0.007539433) (0.004529161 -0.01000287 -0.007559522) (0.004540931 -0.0110041 -0.007067493) (0.00601916 -0.01101188 -0.007430387) (0.006355593 -0.009969978 -0.007337936) (0.006502671 -0.0110001 -0.006998002) (-0.005497506 -0.007000043 -0.008095586) (-0.005517718 -0.008000109 -0.007522421) (-0.006127877 -0.00699893 -0.007635705) (-0.005065302 -0.007001782 -0.007592389) (-0.005530929 -0.00599996 -0.007539316) (-0.0055521 -0.007001645 -0.007055184) (0.002014648 -0.006001138 -0.007054269) (0.003022117 -0.006001913 -0.006046906) (0.003525119 -0.007002734 -0.008065865) (0.003528739 -0.005001855 -0.008064992) (0.004536772 -0.00701104 -0.008073318) (0.005046209 -0.007016285 -0.007591082) (0.006379828 -0.007998919 -0.007378856) (0.006125451 -0.006999465 -0.007652614) (0.006437413 -0.006005034 -0.007443056) (0.006671486 -0.007003308 -0.007175931) (-0.006811556 -0.002965163 -0.007331391) (-0.007313237 -0.002724021 -0.006825873) (-0.005638656 -0.003000374 -0.008149726) (-0.005546689 -0.004002734 -0.00757259) (-0.006169572 -0.003005137 -0.007737019) (-0.005044746 -0.003000711 -0.007579199) (-0.005564335 -0.002004057 -0.007597093) (-0.005553684 -0.003001725 -0.007084313) (0.004540596 -0.003002642 -0.008093026) (0.005047269 -0.003002491 -0.007580389) (0.006529927 -0.00399962 -0.007433566) (0.006171566 -0.003039122 -0.007728215) (0.006817848 -0.002965084 -0.007321332) (0.006469273 -0.002000964 -0.007560554) (0.006492117 -0.003001112 -0.007004842) (-0.006793391 0.0009910897 -0.007324068) (-0.007322964 0.0009976355 -0.00677801) (-0.005678316 0.0009984076 -0.00815907) (-0.005549753 1.897893e-06 -0.007579849) (-0.006162074 0.001271473 -0.007699568) (-0.005059102 0.001004394 -0.007586515) (-0.005584614 0.002003916 -0.007599278) (-0.005571533 0.001007605 -0.007093241) (-0.002016354 0.002000632 -0.007058218) (-0.003024673 0.004001765 -0.007063824) (-0.003025477 0.002001175 -0.006053614) (-0.003534525 0.001000559 -0.008105035) (-0.003538391 0.003001748 -0.008095156) (0.004554805 0.001000906 -0.008100769) (0.005030022 0.0009995743 -0.007551486) (0.006294651 0.000962121 -0.007782638) (0.006531412 -5.224531e-07 -0.00753245) (0.005979147 0.0009979976 -0.007483247) (0.006780295 0.0009995342 -0.007278931) (0.006469899 0.001987445 -0.00755445) (0.006452644 0.0009998456 -0.006957219) (-0.00563635 0.005000628 -0.00812868) (-0.005561589 0.004002 -0.007582172) (-0.006157316 0.005001696 -0.00768493) (-0.005040145 0.005002088 -0.007553097) (-0.005536111 0.006002241 -0.007544189) (-0.005561958 0.005002428 -0.007075298) (-0.002013343 0.006001787 -0.007055498) (-0.003021905 0.006002182 -0.006048974) (-0.003525199 0.005002469 -0.008068652) (-0.00351634 0.007003874 -0.008061977) (0.002013099 0.006001325 -0.007053875) (0.003020497 0.008001879 -0.007053705) (0.003023275 0.006001279 -0.006047067) (0.003530187 0.00500084 -0.008072453) (0.002513161 0.0070013 -0.008065489) (0.003520566 0.007000987 -0.008049248) (0.004545408 0.00500164 -0.008077734) (0.00504335 0.005001649 -0.007567367) (0.006475099 0.004015727 -0.007467012) (0.006147056 0.005004318 -0.007713321) (0.006430134 0.006001955 -0.007431893) (0.006699916 0.005008307 -0.007232631) (-0.005515585 0.009012609 -0.007945494) (-0.005511838 0.008001521 -0.007517195) (-0.005992271 0.009000569 -0.007583782) (-0.005050641 0.009009072 -0.007595065) (-0.005680987 0.01002524 -0.007693772) (-0.005544443 0.009005341 -0.007079731) (0.003023913 0.01000278 -0.006051522) (0.002515047 0.009001827 -0.008052937) (0.003525873 0.009002514 -0.008061045) (0.002516022 0.01100387 -0.008064003) (0.003513743 0.01100398 -0.008041056) (0.00402397 0.01100292 -0.007553819) (0.004527825 0.009003676 -0.008059887) (0.005031928 0.009004457 -0.007560308) (0.004530344 0.01000193 -0.007556187) (0.00639749 0.007999702 -0.007378095) (0.006085572 0.008984145 -0.007595009) (0.006383869 0.009966591 -0.007361284) (0.006618491 0.008999085 -0.007122722) (-0.005335112 0.01295969 -0.007838412) (-0.005619629 0.01199846 -0.007629222) (-0.005872433 0.01300283 -0.007371823) (-0.005008617 0.01300112 -0.007517505) (-0.005487589 0.01398875 -0.007575093) (-0.005519918 0.01300211 -0.007024575) (-0.003523114 0.01300435 -0.008043941) (-0.004025696 0.01300648 -0.007559482) (0.001006399 0.01400265 -0.006052156) (0.0005008739 0.01300109 -0.008059541) (0.001505784 0.01300482 -0.008067582) (0.0005002993 0.01500354 -0.008103971) (0.001504746 0.01500332 -0.008066427) (0.002510803 0.01300346 -0.00805953) (0.004623814 0.01302436 -0.008121927) (0.004529292 0.01200295 -0.007554903) (0.004031495 0.01300384 -0.007561198) (0.005173917 0.0132767 -0.007681363) (0.004527271 0.01400221 -0.007555613) (0.004544316 0.01300338 -0.007085044) (0.005884483 0.01299874 -0.007382295) (0.006402038 0.01300107 -0.006898414) (-0.005382556 0.01601142 -0.007388942) (-0.004999274 0.01699982 -0.007499262) (-0.005320769 0.01771813 -0.007318714) (-0.005588125 0.01697373 -0.007084232) (-0.003635479 0.01703282 -0.008174471) (-0.003538136 0.01599845 -0.007600368) (-0.004021544 0.017004 -0.007555038) (-0.003027469 0.01700542 -0.007573946) (-0.003518011 0.01800302 -0.007555464) (-0.003532326 0.01700685 -0.007083101) (-0.001509904 0.01700115 -0.008052244) (0.0005012026 0.01700756 -0.008059544) (0.002505773 0.01700193 -0.008027745) (0.003014846 0.01700349 -0.007551671) (0.002512612 0.01800541 -0.007557797) (0.004398901 0.01701314 -0.007891399) (0.004686575 0.01626765 -0.007686614) (0.004031544 0.01700292 -0.007547437) (0.00502072 0.01701169 -0.007435908) (0.004606356 0.01797356 -0.007605798) (0.004560354 0.01700642 -0.007069365) (-0.005839493 0.02072427 -0.006310231) (-0.006350695 0.02072386 -0.00578592) (-0.003366723 0.0209775 -0.007833045) (-0.003659423 0.02028901 -0.007679766) (-0.00399352 0.02099721 -0.007486428) (-0.003000711 0.02099832 -0.007507059) (-0.003494858 0.02198686 -0.007566263) (-0.003512024 0.02100166 -0.007033079) (-0.001642751 0.02126267 -0.008167157) (-0.001510535 0.0200081 -0.007559887) (-0.002009702 0.02100451 -0.007548401) (-0.001005506 0.02100112 -0.007538718) (-0.001503113 0.02200204 -0.007529788) (-0.001511853 0.02100492 -0.007062778) (0.0004989357 0.02099827 -0.008005756) (0.000501938 0.02000471 -0.00756012) (2.265525e-07 0.0210035 -0.007544852) (0.001001035 0.02100288 -0.007543957) (0.0005017295 0.02200899 -0.007571336) (0.0005017572 0.02100557 -0.00706209) (0.002506346 0.02101803 -0.008037178) (0.002514055 0.01999954 -0.007558997) (0.002002013 0.021001 -0.007549533) (0.003002592 0.02099636 -0.007496807) (0.002494086 0.02199421 -0.007485299) (0.002510707 0.02100144 -0.007040813) (0.00439199 0.01999144 -0.007399709) (0.004003507 0.02101371 -0.007421398) (0.004502512 0.02099082 -0.007081271) (0.006320169 0.02071972 -0.005836014) (0.005814162 0.02073546 -0.006334565) (-0.003368925 0.02374044 -0.007346461) (-0.002882127 0.02474651 -0.007338751) (-0.003511447 0.0249899 -0.006949328) (-0.001349766 0.02471079 -0.007799098) (-0.001639926 0.0242876 -0.007680313) (-0.002001707 0.02500092 -0.007507511) (-0.0009901125 0.02520766 -0.007626335) (-0.001502265 0.0259822 -0.007410426) (-0.001509653 0.0250058 -0.007029077) (0.0004970827 0.0247536 -0.007853473) (0.0004984849 0.02400378 -0.007508088) (1.538145e-06 0.02524971 -0.00765175) (0.0009883947 0.02519929 -0.007619631) (0.0005002308 0.02599562 -0.007524654) (0.00049821 0.02501889 -0.007065738) (0.002485367 0.02399246 -0.007551766) (0.001992806 0.02499481 -0.007474628) (0.002838225 0.02472484 -0.007312536) (0.002331913 0.02571105 -0.007288265) (0.002629063 0.02525106 -0.007135818) (-0.001381637 0.0287064 -0.006814622) (0.0004990158 0.02876058 -0.006875204) (-0.003793237 -0.03272016 -0.004358298) (-0.004318414 -0.03172104 -0.004307578) (-0.004257679 -0.0326921 -0.003793785) (-0.001360629 -0.03470496 -0.004744212) (0.0004931842 -0.03369732 -0.005319965) (0.0005106731 -0.0347823 -0.004836296) (0.003820789 -0.03272322 -0.004301449) (0.004328882 -0.03171559 -0.004305314) (0.004291385 -0.03272641 -0.00382333) (-0.003002572 -0.03100217 -0.005429582) (-0.003496309 -0.02999071 -0.005504867) (-0.003526888 -0.03100454 -0.005112119) (-0.001497347 -0.03098183 -0.006090868) (-0.001489825 -0.032186 -0.005604982) (-0.002133861 -0.03126199 -0.005668858) (-0.001003861 -0.03101616 -0.005550127) (-0.001510131 -0.03001085 -0.005587672) (-0.001520701 -0.03102136 -0.005069378) (0.0005014877 -0.03120302 -0.006171959) (0.0005218193 -0.03228698 -0.005740685) (1.583016e-06 -0.03102804 -0.005581149) (0.001004713 -0.03102019 -0.005572192) (0.0005046759 -0.03001976 -0.005578429) (0.0005090475 -0.03103114 -0.005108472) (0.002483249 -0.03076916 -0.00587133) (0.002494443 -0.03199466 -0.005423969) (0.002129912 -0.03129872 -0.005716189) (0.00298935 -0.0309866 -0.00550157) (0.002509686 -0.0300055 -0.005534551) (0.002506257 -0.03101077 -0.005049225) (0.004326082 -0.03073691 -0.004760731) (-0.004900493 -0.02699849 -0.005399513) (-0.005357505 -0.02575549 -0.005355896) (-0.005410525 -0.02699742 -0.004904483) (-0.003657398 -0.02726189 -0.006199132) (-0.003516311 -0.02800544 -0.005536721) (-0.00401532 -0.02700188 -0.005527318) (-0.003033122 -0.02700922 -0.005572301) (-0.00353413 -0.02600599 -0.005572744) (-0.003540254 -0.02701124 -0.00507043) (3.674724e-07 -0.02601351 -0.005067926) (-0.001007448 -0.024009 -0.005059369) (-0.001011539 -0.02601289 -0.004060345) (-0.001506509 -0.02701047 -0.006058108) (-0.000502557 -0.02701244 -0.006067015) (0.001009577 -0.02401037 -0.005060323) (0.0010125 -0.02601276 -0.004058583) (0.0005024352 -0.02701604 -0.006070864) (0.001511514 -0.02700867 -0.006050595) (0.002529055 -0.02701109 -0.006071317) (0.002525238 -0.02801413 -0.005571568) (0.003034061 -0.02701655 -0.005578743) (0.004391056 -0.0270034 -0.005908665) (0.00450593 -0.02798199 -0.005494859) (0.004024882 -0.02700837 -0.005537865) (0.004996655 -0.02698629 -0.005404567) (0.004666098 -0.02627987 -0.005740325) (0.004531775 -0.02700769 -0.005041561) (-0.005497311 -0.02300127 -0.00599605) (-0.005595184 -0.0239993 -0.005598345) (-0.005978153 -0.0229971 -0.005490842) (-0.005023677 -0.02299712 -0.005530209) (-0.005501893 -0.02199739 -0.005508243) (-0.005527708 -0.02299541 -0.005019272) (-0.002015083 -0.02200472 -0.00504962) (-0.003025103 -0.02000424 -0.005048534) (-0.003027949 -0.02200557 -0.004042381) (-0.003519939 -0.02300321 -0.006045478) (0.002018986 -0.02200753 -0.005056458) (0.003027471 -0.02000492 -0.005055342) (0.003032799 -0.02200674 -0.004049004) (0.003535239 -0.0230108 -0.006068578) (0.004528877 -0.02300333 -0.006047154) (0.004529305 -0.02400292 -0.005539257) (0.00503906 -0.02300649 -0.005538329) (0.005986306 -0.02299792 -0.005488946) (0.006362137 -0.02199212 -0.005363385) (0.006406758 -0.02301149 -0.004993861) (-0.0069129 -0.01902832 -0.005412202) (-0.007309644 -0.0177136 -0.005306328) (-0.007357399 -0.01897697 -0.00486782) (-0.00403618 -0.01800471 -0.005049844) (-0.005044793 -0.01600715 -0.005047542) (-0.005048063 -0.01800592 -0.004037018) (-0.005539258 -0.01900356 -0.006044803) (-0.005535942 -0.01700603 -0.006041595) (-0.005530431 -0.02000358 -0.005531979) (-0.006040971 -0.01900473 -0.005544002) (-0.006037778 -0.01700661 -0.005536665) (0.004039687 -0.01800559 -0.005057748) (0.006037855 -0.01899926 -0.0055321) (0.005055333 -0.01600594 -0.005057822) (0.005051424 -0.01800436 -0.004040878) (0.005538011 -0.01900292 -0.006041791) (0.00554344 -0.01700745 -0.00604868) (0.005523929 -0.02000229 -0.005537304) (0.006045139 -0.01700361 -0.005534993) (0.006413493 -0.01902469 -0.005918819) (0.006567371 -0.01997313 -0.005569647) (0.006903344 -0.01902662 -0.005401184) (0.00669495 -0.01826543 -0.005648118) (0.006527741 -0.01899996 -0.005018987) (-0.00728954 -0.01472193 -0.005848479) (-0.007372659 -0.01601357 -0.005386899) (-0.007138421 -0.01527981 -0.005653873) (-0.007501119 -0.01400076 -0.005497486) (-0.007631342 -0.01499991 -0.005128494) (-0.004029353 -0.01400339 -0.005041315) (-0.005044492 -0.01200308 -0.00504251) (-0.005042212 -0.0140039 -0.004031025) (-0.005528002 -0.01500731 -0.006045424) (-0.006034615 -0.01500868 -0.005530277) (0.004038286 -0.01400445 -0.005052075) (0.006068996 -0.01500509 -0.005567623) (0.005048049 -0.0120041 -0.005054104) (0.005046522 -0.01400337 -0.004037492) (0.005573739 -0.01500686 -0.006082158) (0.006669233 -0.01527117 -0.006173656) (0.006541497 -0.01600374 -0.005545669) (0.007154423 -0.01527448 -0.005664805) (0.006531028 -0.01400208 -0.005529091) (0.006557491 -0.01500345 -0.005046681) (-0.007428577 -0.01101204 -0.006015792) (-0.007618991 -0.01198481 -0.005600965) (-0.007911258 -0.01101361 -0.005401171) (-0.007072036 -0.0110009 -0.005557564) (-0.007685469 -0.0102726 -0.005656847) (-0.007556321 -0.01100293 -0.005047003) (0.006574345 -0.01101306 -0.006095729) (0.007064683 -0.01100928 -0.005577705) (0.007888868 -0.01101315 -0.005406786) (0.008319542 -0.01096277 -0.004846294) (-0.007613378 -0.007002099 -0.006112058) (-0.007531734 -0.008001203 -0.005509079) (-0.008085897 -0.007000841 -0.005488585) (-0.007042878 -0.007001016 -0.005529976) (-0.007527223 -0.006000876 -0.005511828) (-0.007572066 -0.006996797 -0.005033044) (0.006562987 -0.007002787 -0.006054935) (0.007045733 -0.007001966 -0.005531986) (0.008307189 -0.007727212 -0.005340142) (0.008077014 -0.006984771 -0.005570127) (0.008313191 -0.005992763 -0.005347598) (0.008460812 -0.006986386 -0.004978054) (-0.007699289 -0.003003203 -0.006202344) (-0.007560032 -0.004000537 -0.005550043) (-0.008148739 -0.003000546 -0.00562092) (-0.007081902 -0.003002987 -0.005568497) (-0.007582218 -0.002002108 -0.005578112) (-0.007563366 -0.003000979 -0.005045413) (0.006560442 -0.003003409 -0.006050025) (0.007079158 -0.003003612 -0.005546834) (0.008339707 -0.004000468 -0.005357336) (0.008179583 -0.002997671 -0.005621545) (0.008366239 -0.002000491 -0.005349996) (0.008558588 -0.003002967 -0.005020088) (-0.007705284 0.001288348 -0.006166285) (-0.007569007 -4.714626e-07 -0.005550097) (-0.008170125 0.001002489 -0.005648991) (-0.007077689 0.001002457 -0.005557034) (-0.007589259 0.002002962 -0.005552053) (-0.007577233 0.001002496 -0.005049457) (0.007040318 0.001000732 -0.00552419) (0.008385798 -1.727922e-06 -0.005357604) (0.008153622 0.0009991201 -0.00566454) (0.008345064 0.001999708 -0.005344171) (0.008565229 0.001018175 -0.005020864) (-0.007647529 0.005000884 -0.006174252) (-0.007556118 0.004002295 -0.005541229) (-0.008081856 0.004998278 -0.005588407) (-0.007057068 0.005002351 -0.005556474) (-0.007511771 0.006000592 -0.005511041) (-0.007531716 0.005000856 -0.005023805) (0.006598122 0.005002302 -0.006092433) (0.007084224 0.005001295 -0.005559986) (0.008296705 0.003999383 -0.005352951) (0.008115186 0.0049988 -0.005605163) (0.008342951 0.005963407 -0.005343212) (0.008474027 0.004998025 -0.00499218) (-0.007571008 0.008983923 -0.00606618) (-0.007513002 0.008000472 -0.005507746) (-0.007983286 0.008986091 -0.005492763) (-0.007029622 0.009002423 -0.005517888) (-0.007658983 0.01027346 -0.005658048) (-0.007558431 0.009003626 -0.00503317) (-0.005043003 0.01200396 -0.00504749) (0.00505167 0.0120049 -0.005055323) (0.006544419 0.009003968 -0.006046579) (0.007051986 0.009003553 -0.005540113) (0.00800853 0.008987853 -0.005508885) (0.008350665 0.009001954 -0.004856925) (-0.007383656 0.01299783 -0.005862362) (-0.007619478 0.01198471 -0.005596809) (-0.007859398 0.01272592 -0.005346626) (-0.007040186 0.01300389 -0.005527529) (-0.007505909 0.01400109 -0.005504659) (-0.007683149 0.01327381 -0.005179126) (-0.004034504 0.0140045 -0.005048824) (-0.005052981 0.01600577 -0.005056583) (-0.005045083 0.01400416 -0.004036311) (-0.005560511 0.01500713 -0.00607414) (-0.006058655 0.01500539 -0.005557209) (0.004038347 0.01400387 -0.005049803) (0.005056851 0.01600534 -0.005054766) (0.005055159 0.01400438 -0.004039864) (0.005548795 0.01500551 -0.006057179) (0.006054499 0.01500603 -0.005550467) (0.006535774 0.01300457 -0.006036871) (0.007030206 0.01300217 -0.005516712) (0.006562674 0.01400589 -0.005536108) (0.007853698 0.01296916 -0.005378918) (-0.007381167 0.01600925 -0.00538226) (-0.007085064 0.01697191 -0.005591448) (-0.007291111 0.01771552 -0.005351414) (-0.007495279 0.01700026 -0.005000233) (-0.004041947 0.01800482 -0.005052038) (-0.005525584 0.020003 -0.005530102) (-0.005049494 0.0180055 -0.004038351) (-0.005549439 0.01700644 -0.006051176) (-0.005549254 0.01900554 -0.006043312) (-0.006045943 0.01700543 -0.00555028) (-0.006033546 0.01900414 -0.005544411) (-0.003029871 0.02000463 -0.005050738) (0.004044289 0.0180073 -0.005054405) (0.00302969 0.02000719 -0.005050204) (0.006036229 0.01700282 -0.005531193) (0.005062433 0.0180061 -0.004043933) (0.005533819 0.01700339 -0.006034648) (0.004547085 0.01901168 -0.00606889) (0.005531716 0.01900438 -0.006034953) (0.006038547 0.01900281 -0.005533303) (0.006077167 0.01900602 -0.004553796) (0.005531934 0.02000598 -0.005529225) (0.006577 0.01697457 -0.006078013) (0.006540887 0.01600193 -0.005531488) (0.00709467 0.01699385 -0.005505601) (0.00666199 0.01827739 -0.005671998) (0.006573922 0.01700253 -0.005037417) (-0.0067949 0.02072431 -0.005322364) (-0.005660538 0.02126804 -0.006152587) (-0.006133974 0.02127077 -0.005651762) (-0.005038563 0.02100393 -0.005547403) (-0.005510432 0.02199936 -0.005510968) (-0.005536742 0.0210064 -0.005034855) (-0.002021674 0.02200693 -0.005056611) (-0.003032049 0.02200655 -0.004043774) (-0.003535203 0.0230068 -0.006064799) (-0.001013085 0.02401185 -0.005066105) (0.002016069 0.02200625 -0.005049255) (0.001006404 0.02400978 -0.005060964) (0.003031899 0.02200765 -0.00404224) (0.00351969 0.02300564 -0.006042366) (0.004536071 0.02100881 -0.006047151) (0.00504913 0.02101111 -0.005547915) (0.006578016 0.01997465 -0.005577337) (0.006158893 0.02126585 -0.005650372) (0.006815399 0.0207101 -0.005309263) (0.006373488 0.02199101 -0.005364462) (0.006643355 0.02124899 -0.005129275) (-0.00532613 0.02472593 -0.005806047) (-0.005595756 0.02400372 -0.005587525) (-0.005810241 0.02474071 -0.005297524) (-0.005145167 0.02526353 -0.00563457) (-0.005365128 0.02598654 -0.005368657) (-0.005638844 0.02525368 -0.005134359) (-0.00354726 0.02502312 -0.006069477) (-0.004030295 0.02501016 -0.005555492) (-0.003539499 0.02601314 -0.005579384) (-2.713959e-06 0.02601491 -0.005075) (-0.001014448 0.02601402 -0.004063267) (-0.001517487 0.02702085 -0.0060774) (-0.0005061303 0.027017 -0.006075643) (0.0010096 0.02601299 -0.004061699) (0.0005027312 0.02701826 -0.006079295) (0.001507998 0.02701197 -0.00605727) (0.002518089 0.02500862 -0.006056346) (0.004630759 0.02524778 -0.006121294) (0.00451921 0.02400348 -0.005523674) (0.004029022 0.02500893 -0.005547319) (0.005146605 0.02524475 -0.005660091) (0.004675304 0.0262718 -0.005727836) (0.004540125 0.0250086 -0.005046607) (0.005802294 0.0247092 -0.005331138) (0.006288698 0.02471115 -0.004815622) (-0.003501165 0.02898678 -0.005917635) (-0.003524352 0.02800383 -0.005543019) (-0.004020284 0.02900719 -0.005532916) (-0.003030101 0.02901092 -0.005553611) (-0.00350968 0.03001005 -0.005535388) (-0.003549466 0.02901676 -0.00505997) (-0.001502623 0.02901057 -0.006041047) (-0.002020323 0.02901814 -0.005574066) (-0.001501925 0.03002257 -0.00558075) (0.0005020176 0.02901363 -0.00607475) (0.0005040612 0.03001635 -0.005579339) (0.002631371 0.02925015 -0.006185357) (0.002515345 0.02801156 -0.005567835) (0.002009108 0.02901429 -0.005566414) (0.003014281 0.02900878 -0.00553979) (0.002638271 0.03030993 -0.005747492) (0.002522046 0.0290189 -0.005085113) (0.004492008 0.02796411 -0.005478328) (0.003998898 0.02900156 -0.005473894) (0.004529283 0.02900877 -0.005028487) (-0.004311129 0.0317001 -0.004324139) (-0.003794047 0.03272222 -0.004358635) (-0.004321612 0.03273609 -0.003812187) (-0.003351328 0.03266964 -0.004750471) (-0.00148836 0.03221099 -0.005660715) (-0.001979851 0.03277767 -0.005363405) (-0.0009958205 0.03300288 -0.005518593) (-0.001337369 0.03369034 -0.005230729) (-0.00163469 0.03328451 -0.005168452) (0.0005153262 0.03225186 -0.005771881) (-7.37301e-07 0.03301274 -0.005534146) (0.001001713 0.03302214 -0.005433069) (0.0004800955 0.03373306 -0.005294929) (0.0005045215 0.03300077 -0.005051101) (0.002499914 0.03177616 -0.005385221) (0.001848081 0.03269633 -0.005349759) (0.002507388 0.0330076 -0.004901798) (0.004294511 0.03167953 -0.004286792) (0.003793273 0.03270701 -0.004335445) (0.0003315734 -0.03766428 -0.003193906) (-0.003025743 -0.03502426 -0.003527895) (-0.003559608 -0.03420572 -0.003550637) (-0.003554577 -0.0350277 -0.003043283) (-0.001639333 -0.03532319 -0.004275929) (-0.001676743 -0.0363248 -0.003691014) (-0.002046189 -0.03503721 -0.003578717) (-0.001021927 -0.03503658 -0.003566026) (-0.001533035 -0.03403543 -0.003594318) (-0.001550456 -0.03505698 -0.003090428) (0.0005157723 -0.03502376 -0.004061174) (0.0005331666 -0.03606237 -0.003578395) (0.00105202 -0.03507529 -0.003603206) (0.00250584 -0.03500538 -0.004029569) (0.002504988 -0.03598883 -0.003526728) (0.002042695 -0.03504489 -0.003582333) (0.00301612 -0.0351955 -0.0035282) (0.002541788 -0.03402104 -0.003578338) (0.002559846 -0.03502091 -0.003041055) (0.003757592 -0.03460159 -0.0032722) (0.004315774 -0.03368123 -0.003300515) (-0.005111441 -0.03099151 -0.003512941) (-0.00548232 -0.02999683 -0.003491308) (-0.005477688 -0.03098458 -0.002975327) (-0.00203586 -0.03002418 -0.003071401) (-0.003045384 -0.02801648 -0.003058088) (-0.003052227 -0.03002203 -0.002047242) (-0.003524762 -0.03101027 -0.004048097) (-0.003533826 -0.0320164 -0.003549437) (-0.004028756 -0.03100851 -0.003532832) (0.002030479 -0.03002069 -0.003055156) (0.004019528 -0.03100391 -0.003509902) (0.003050379 -0.02801427 -0.003048713) (0.003048051 -0.03001446 -0.002029599) (0.003512984 -0.03100636 -0.00402096) (0.003511137 -0.03200539 -0.003509572) (0.004600634 -0.03123202 -0.004108595) (0.004591971 -0.03223259 -0.003602486) (0.00510621 -0.03101035 -0.003508538) (0.004568607 -0.03001357 -0.00351802) (0.00454506 -0.03101157 -0.003025949) (-0.005526244 -0.02700119 -0.004018112) (-0.005514226 -0.02800206 -0.003505527) (-0.006178026 -0.02725751 -0.003620065) (-0.00505947 -0.02700824 -0.00354007) (-0.005564796 -0.0260088 -0.003530561) (-0.005558549 -0.02700531 -0.003023507) (0.005081187 -0.02701286 -0.003546231) (0.006362617 -0.02674406 -0.003872384) (0.006380039 -0.02773843 -0.003366927) (0.006195004 -0.02726767 -0.003664645) (0.006624779 -0.02602275 -0.003529723) (0.00663299 -0.0270174 -0.00302483) (-0.007323327 -0.02271713 -0.003849269) (-0.007351252 -0.02372949 -0.00333923) (-0.007160681 -0.02326587 -0.003640278) (-0.007568197 -0.0219869 -0.003488347) (-0.007573234 -0.02300021 -0.002991562) (-0.004042085 -0.02200709 -0.003030349) (-0.005048952 -0.02000723 -0.003026414) (-0.005057719 -0.0220099 -0.002017291) (-0.006056134 -0.02300949 -0.003523885) (0.004047455 -0.02200619 -0.003034916) (0.006062082 -0.02300664 -0.003528053) (0.005054466 -0.02000502 -0.003031194) (0.005060947 -0.02200642 -0.002020543) (0.006523619 -0.02300211 -0.00401118) (0.006531758 -0.02400211 -0.003511813) (0.007148484 -0.02326409 -0.003637636) (0.006547747 -0.02200671 -0.003527492) (0.006550428 -0.02300766 -0.003016006) (-0.007642557 -0.01925367 -0.004122465) (-0.00768666 -0.02026639 -0.003643325) (-0.008014119 -0.01900321 -0.003515357) (-0.007054836 -0.01900742 -0.003524619) (-0.007543847 -0.01800288 -0.003512434) (-0.007549543 -0.01900401 -0.003020636) (0.007053276 -0.01900549 -0.003522317) (0.008026315 -0.01900324 -0.003510119) (0.008341585 -0.01774551 -0.003369944) (0.008354771 -0.01897453 -0.002868154) (-0.007567935 -0.01500482 -0.004021014) (-0.007589303 -0.01601088 -0.003547088) (-0.008026933 -0.01500175 -0.003509878) (0.008361333 -0.01500261 -0.003984616) (0.008457658 -0.01597936 -0.0034744) (0.008033018 -0.01500144 -0.003509327) (0.008612691 -0.0140043 -0.003506532) (0.008636315 -0.01503266 -0.003036728) (-0.008957219 -0.01098461 -0.003473737) (-0.006053964 -0.01000291 -0.003023758) (-0.007071167 -0.008003236 -0.00302226) (-0.007064245 -0.0100045 -0.002014434) (-0.007592782 -0.01100748 -0.004053155) (-0.008063457 -0.01100415 -0.003529815) (-0.00808753 -0.009003736 -0.003530846) (-0.008077681 -0.01100576 -0.002518545) (-0.008088594 -0.00901244 -0.002521675) (0.006053295 -0.01000269 -0.003023007) (0.008103484 -0.01100267 -0.003528187) (0.007065943 -0.008003516 -0.003020165) (0.00705982 -0.01000271 -0.002013096) (0.007572142 -0.01100268 -0.004030501) (0.008089155 -0.009004518 -0.003525854) (0.008097095 -0.01100327 -0.002520975) (0.00808397 -0.009004953 -0.002517829) (0.00863955 -0.01100505 -0.004009183) (0.008711064 -0.01203783 -0.00366524) (0.008899472 -0.0109999 -0.003487296) (0.008527047 -0.01000176 -0.003509766) (0.008585385 -0.01100217 -0.003019342) (-0.009084333 -0.007003719 -0.003541213) (-0.009296286 -0.00699914 -0.002889839) (-0.006050253 -0.006001428 -0.003020809) (-0.007057267 -0.004001054 -0.003020912) (-0.007060797 -0.006002135 -0.002012044) (-0.00810842 -0.007000501 -0.003529913) (-0.00807292 -0.005000488 -0.003522092) (-0.008078889 -0.007004062 -0.002514472) (-0.008076793 -0.00500232 -0.002517292) (0.006046305 -0.006002033 -0.003019691) (0.008076833 -0.007004312 -0.003521568) (0.007055639 -0.004001387 -0.0030197) (0.0070532 -0.006002236 -0.002010136) (0.008063692 -0.005001646 -0.003522295) (0.008064354 -0.007003301 -0.002513313) (0.008053377 -0.005001836 -0.002512954) (0.008510472 -0.007000713 -0.004006502) (0.00858798 -0.008008572 -0.00352766) (0.009122652 -0.007001637 -0.003522215) (0.008562086 -0.006001325 -0.003514705) (0.00859928 -0.007003228 -0.003014325) (-0.009354463 -0.003962267 -0.003349039) (-0.009186908 -0.003001472 -0.003651875) (-0.009331108 -0.002000383 -0.003387658) (-0.009425908 -0.002996826 -0.002965967) (-0.006045405 -0.002000295 -0.003024062) (-0.007058475 6.100861e-07 -0.003026501) (-0.007045055 -0.002000571 -0.002014948) (-0.008068535 -0.003000959 -0.003529232) (-0.008090177 -0.00100004 -0.003540028) (0.006046244 -0.002000781 -0.00302084) (0.008079722 -0.003000951 -0.003532138) (0.007060601 1.784294e-08 -0.003023804) (0.007051782 -0.00200078 -0.002013328) (0.008092476 -0.001000212 -0.003539807) (0.008590242 -0.003001604 -0.004043603) (0.008576125 -0.004001172 -0.003525579) (0.009214336 -0.002999118 -0.003660809) (0.008601704 -0.002000624 -0.003532822) (0.008566945 -0.003000958 -0.003022893) (-0.009405008 1.87212e-06 -0.003393953) (-0.009247646 0.001005409 -0.003664196) (-0.009336201 0.00199863 -0.003385628) (-0.009495696 0.001001993 -0.002985969) (-0.006043919 0.002000965 -0.003023691) (-0.007047204 0.004001038 -0.003020526) (-0.007040448 0.002000828 -0.002014851) (-0.008090371 0.001002997 -0.003537754) (-0.008061539 0.003001256 -0.003524884) (0.00604399 0.002000602 -0.003021252) (0.008089042 0.001000651 -0.003533272) (0.007048087 0.00400155 -0.003019316) (0.007043304 0.002000635 -0.002013198) (0.008061359 0.00300177 -0.003526464) (0.008608953 0.001000402 -0.004043815) (0.008614496 8.779661e-08 -0.003537548) (0.009238362 0.001000118 -0.003633665) (0.008583827 0.002001031 -0.00353218) (0.008579365 0.001000006 -0.003022118) (-0.009277743 0.003996048 -0.003348678) (-0.009110889 0.004985839 -0.003605021) (-0.009300563 0.005727884 -0.003356066) (-0.009412347 0.00497963 -0.002945525) (-0.006044836 0.006001366 -0.003022471) (-0.007062724 0.008002168 -0.003024516) (-0.007051486 0.006001029 -0.002013467) (-0.008041356 0.00500068 -0.003518687) (-0.008079343 0.007001273 -0.003538559) (-0.008049379 0.005000967 -0.002515735) (-0.008062186 0.0070013 -0.002518797) (0.006048316 0.006001886 -0.003022916) (0.0080433 0.005002381 -0.003516783) (0.007069098 0.008003563 -0.00302606) (0.007052147 0.006001898 -0.002013285) (0.008077912 0.007006576 -0.003533245) (0.008072461 0.007005434 -0.002524121) (0.008512488 0.00500111 -0.004003658) (0.008544691 0.004001577 -0.003518851) (0.009145756 0.00499853 -0.003622727) (0.008525109 0.006002486 -0.003508294) (0.008527894 0.005002289 -0.003010361) (-0.009014034 0.009002315 -0.003496716) (-0.009306025 0.008963727 -0.00285182) (-0.006054183 0.01000322 -0.003025181) (-0.007062274 0.01000265 -0.002015515) (-0.007571622 0.01100622 -0.004032794) (-0.008075855 0.009003077 -0.003528684) (-0.008112342 0.01101422 -0.003532135) (-0.00806793 0.009001898 -0.002518542) (-0.008089407 0.01100499 -0.002523718) (0.006063377 0.01000313 -0.003027636) (0.008083377 0.009003319 -0.003530372) (0.007071827 0.01000441 -0.002016809) (0.007589472 0.01099983 -0.004038043) (0.008110741 0.01100226 -0.003526466) (0.008079635 0.009006499 -0.002524142) (0.008094246 0.01100645 -0.002521276) (0.008704015 0.009003377 -0.004145538) (0.008580299 0.00800265 -0.003534474) (0.009028565 0.00900397 -0.003503717) (0.008523083 0.0100016 -0.003508195) (0.008579493 0.009003965 -0.003039692) (-0.008847174 0.01296784 -0.003361318) (-0.007570803 0.01300663 -0.004041349) (-0.008048958 0.01300332 -0.003526612) (0.008513208 0.01299152 -0.00400139) (0.008708631 0.01203858 -0.003689868) (0.008075038 0.01300286 -0.003536305) (0.008868535 0.01296754 -0.003380995) (0.008626161 0.0140039 -0.003512755) (0.008537846 0.01300245 -0.003014594) (-0.007529309 0.0170029 -0.004014006) (-0.007550647 0.01600547 -0.00351742) (-0.00815825 0.01726582 -0.003632047) (-0.007063133 0.01700755 -0.003523463) (-0.007538561 0.01800233 -0.00351167) (-0.007562398 0.01700923 -0.003013548) (-0.005052697 0.02000653 -0.003025051) (0.005063297 0.02000642 -0.003030231) (0.007086797 0.01700935 -0.003538038) (0.008412447 0.01600005 -0.003495074) (0.008174102 0.01702145 -0.003629391) (0.008312885 0.017728 -0.003369136) (0.008479599 0.01698365 -0.002985079) (-0.007430152 0.02101082 -0.004015776) (-0.007675172 0.02027961 -0.003651521) (-0.007851529 0.02097674 -0.003378479) (-0.007048362 0.02100816 -0.003538762) (-0.007567441 0.02198499 -0.003486492) (-0.007501413 0.02099792 -0.003004338) (-0.004044373 0.02200647 -0.003027351) (-0.005059946 0.02200731 -0.002016098) (-0.006058169 0.02300603 -0.003520408) (0.004049915 0.02200759 -0.003031264) (0.005065467 0.02200762 -0.002021625) (0.006071572 0.0230072 -0.003530617) (0.00656829 0.02100979 -0.004028607) (0.007035508 0.02100523 -0.003509434) (0.006578095 0.02200461 -0.003517654) (0.007803431 0.02072125 -0.003355387) (-0.007342242 0.02373463 -0.003352803) (-0.006913064 0.02498281 -0.003493247) (-0.007322499 0.0247473 -0.0028589) (-0.005541052 0.0250038 -0.004014813) (-0.006055836 0.02500525 -0.003507259) (-0.005559145 0.02601148 -0.003522759) (-0.003049386 0.02801623 -0.003047003) (0.003049426 0.02801965 -0.003061093) (0.006603485 0.02501668 -0.004016262) (0.006518364 0.02400389 -0.003508452) (0.006067515 0.02501138 -0.003523416) (0.00690682 0.02497164 -0.00349251) (0.006621493 0.02602139 -0.003515874) (0.006541518 0.02500548 -0.003014514) (-0.005520622 0.02900749 -0.004006256) (-0.005541764 0.02801305 -0.003520948) (-0.005914647 0.02898434 -0.00349879) (-0.005064828 0.02902211 -0.003550135) (-0.005538277 0.0300108 -0.003511413) (-0.005541818 0.02901108 -0.00302487) (-0.002032753 0.03001912 -0.00305593) (-0.003516579 0.0320085 -0.003515222) (-0.003052115 0.03001804 -0.002029698) (-0.003517354 0.03100649 -0.004026945) (-0.004027329 0.03100705 -0.0035203) (0.002034061 0.03002149 -0.00306828) (0.003055212 0.03002136 -0.002045379) (0.003545196 0.03103052 -0.004084885) (0.004073948 0.0310478 -0.003586292) (0.003552347 0.03203433 -0.003564574) (0.004561217 0.02902233 -0.004069448) (0.005058924 0.02901622 -0.003548856) (0.004566983 0.03001846 -0.003559404) (0.006364249 0.02774246 -0.003383699) (0.005915624 0.02898619 -0.003500325) (0.006357799 0.0287305 -0.002866942) (-0.004720784 0.03269208 -0.003320641) (-0.003614358 0.03323612 -0.004125076) (-0.00410035 0.03324341 -0.003606751) (-0.003022069 0.0330147 -0.003532331) (-0.00361417 0.03420862 -0.003607768) (-0.003533038 0.03301479 -0.003018559) (-0.001527419 0.03302326 -0.004085026) (-0.001536137 0.03403388 -0.003591105) (0.00251439 0.03300877 -0.004064682) (0.003032552 0.03301607 -0.003545301) (0.002533361 0.03402319 -0.003586818) (0.004574564 0.03203196 -0.003562961) (0.004131996 0.03302295 -0.003550266) (0.004542466 0.03301466 -0.003040941) (-0.001319267 0.03663507 -0.003762359) (-0.001672138 0.0363189 -0.003737412) (-0.00195646 0.03672113 -0.003353065) (-0.001002002 0.0371501 -0.003496864) (-0.001542305 0.03728028 -0.003187051) (0.0004830714 0.03677541 -0.003787185) (0.0005306949 0.03604364 -0.00359452) (-8.618228e-06 0.03714142 -0.003539399) (0.001022241 0.0368799 -0.003555801) (0.0003424965 0.03762526 -0.003220421) (0.0006652799 0.03739659 -0.003291174) (0.00251505 0.03598698 -0.003528242) (0.001991314 0.03674503 -0.003316236) (0.00246227 0.03676485 -0.002959163) (-0.001478054 -0.03874432 -0.00194886) (-0.001959102 -0.03873017 -0.001452374) (-0.001007212 -0.03923236 -0.001565354) (-0.00153932 -0.03805932 -0.00155385) (-0.001547877 -0.03923142 -0.0009855552) (0.000492628 -0.03902993 -0.002019328) (0.0004778887 -0.03955638 -0.001315476) (1.26749e-05 -0.03934517 -0.001627639) (0.001021895 -0.03920731 -0.001524108) (0.0005123971 -0.03805443 -0.001566434) (0.0005326809 -0.03901099 -0.00102601) (0.001948003 -0.03872762 -0.001452483) (0.002509366 -0.0381718 -0.001496717) (0.00229352 -0.03864794 -0.000977421) (-0.004738262 -0.03468702 -0.001338705) (-0.005221304 -0.03369348 -0.001330908) (-0.003567155 -0.03504465 -0.002052163) (-0.003713845 -0.03626748 -0.001673819) (-0.004238916 -0.03532532 -0.001673477) (-0.003072028 -0.03503729 -0.001540378) (-0.003574944 -0.03403247 -0.001541915) (-0.003561611 -0.03502589 -0.00102026) (0.00257662 -0.03605646 -0.001539307) (0.003066242 -0.03504242 -0.001529695) (0.004365119 -0.03480174 -0.001987322) (0.00424347 -0.03568662 -0.001337551) (0.004205023 -0.03530216 -0.001639384) (0.004716459 -0.03469731 -0.001327714) (0.004665672 -0.03430794 -0.001645336) (0.004526576 -0.03512855 -0.0009791607) (-0.005697745 -0.03130326 -0.002144806) (-0.005623098 -0.03219508 -0.001500897) (-0.006065143 -0.0309729 -0.001489253) (-0.005055968 -0.03101143 -0.001515072) (-0.005542399 -0.03000914 -0.001511461) (-0.005520464 -0.0310058 -0.0009994359) (0.004553198 -0.03200659 -0.001517944) (0.005053292 -0.03100433 -0.001516653) (0.006053557 -0.03096949 -0.001488323) (0.006364218 -0.0299693 -0.001485902) (0.006295672 -0.03071619 -0.0009712609) (-0.007130865 -0.02701848 -0.001498881) (-0.007410817 -0.02598238 -0.001500801) (-0.007356039 -0.02674013 -0.0009792376) (-0.004057187 -0.02601055 -0.001012217) (-0.005067416 -0.02401074 -0.001008804) (-0.005079324 -0.02601179 8.702918e-07) (-0.00606544 -0.02700977 -0.001508109) (-0.00609831 -0.02701124 -0.0005002137) (0.004061332 -0.02600988 -0.001013791) (0.006084879 -0.0270111 -0.001519121) (0.005072421 -0.02400938 -0.001013021) (0.005081591 -0.02601473 -1.721439e-07) (0.006107388 -0.0270206 -0.0005058276) (0.00655414 -0.02700508 -0.002012163) (0.006711053 -0.02828833 -0.001648555) (0.007154004 -0.02702807 -0.00150563) (0.00659811 -0.02600978 -0.001522234) (0.006584297 -0.02701571 -0.001009622) (-0.007707282 -0.02330516 -0.002127713) (-0.007673136 -0.02425827 -0.001634364) (-0.00801119 -0.02299762 -0.001495717) (-0.007076249 -0.02301671 -0.001509478) (-0.007567701 -0.02200943 -0.001503945) (-0.007564212 -0.02301086 -0.00100424) (0.007064612 -0.02300818 -0.001511708) (0.00801777 -0.02299494 -0.00149596) (0.008326598 -0.02171057 -0.00136126) (-0.008798663 -0.01871817 -0.001365119) (-0.007548941 -0.01900444 -0.002010853) (-0.007565727 -0.02000548 -0.001506969) (-0.008041584 -0.01900191 -0.001501615) (0.008536648 -0.01901445 -0.002005796) (0.008507439 -0.01999734 -0.001498098) (0.008038775 -0.01900207 -0.001503269) (0.00880278 -0.0186988 -0.001344102) (0.008661735 -0.01825498 -0.001633041) (0.00864352 -0.01922484 -0.0009891015) (-0.009083629 -0.01501384 -0.001510424) (-0.009315693 -0.01369168 -0.001358111) (-0.006054073 -0.01400367 -0.001008405) (-0.007061241 -0.01200432 -0.001007218) (-0.007062625 -0.01400353 -1.103236e-06) (-0.008079969 -0.01500353 -0.001513417) (-0.008092163 -0.01301234 -0.001513767) (-0.008085373 -0.01500647 -0.0005027192) (-0.008068226 -0.01300578 -0.0005026418) (0.006050747 -0.01400246 -0.001007426) (0.008078399 -0.01500206 -0.001511203) (0.007049198 -0.01200172 -0.001006562) (0.007052818 -0.01400126 -8.096127e-07) (0.008089091 -0.01300298 -0.001508737) (0.008069896 -0.01500164 -0.0005053886) (0.008038357 -0.01300092 -0.000504626) (0.008565899 -0.01499991 -0.002013535) (0.008525918 -0.01600097 -0.001504473) (0.009087417 -0.01501845 -0.001511382) (0.008587444 -0.01400401 -0.001504544) (0.008572353 -0.01500349 -0.001008357) (-0.009435953 -0.01097857 -0.001964373) (-0.009455511 -0.01197463 -0.001484093) (-0.009016422 -0.01100012 -0.001500993) (-0.00950849 -0.009998376 -0.001496972) (-0.009542343 -0.01099781 -0.0009972401) (-0.006049872 -0.01000273 -0.001007133) (-0.007064218 -0.008002792 -0.001005492) (-0.007059472 -0.0100029 -4.476249e-07) (-0.008067948 -0.01100534 -0.00150902) (0.00604245 -0.01000193 -0.001006146) (0.008060253 -0.01100253 -0.001511341) (0.007051631 -0.008002379 -0.001004249) (0.007040262 -0.0100014 3.204456e-07) (0.008049342 -0.009002983 -0.00150687) (0.00802735 -0.01100075 -0.0005022926) (0.008604318 -0.01100531 -0.002025674) (0.008549498 -0.01200166 -0.001508051) (0.008998896 -0.01100204 -0.00150652) (0.00852986 -0.01000244 -0.00150678) (0.008517656 -0.01100095 -0.001004413) (-0.009544585 -0.007001642 -0.001997496) (-0.009583189 -0.008001832 -0.001496968) (-0.009103323 -0.007002527 -0.001506398) (-0.009633518 -0.00602321 -0.00152385) (-0.009679507 -0.00701991 -0.001020887) (0.008542978 -0.007002754 -0.002005942) (0.008545926 -0.008003084 -0.001503592) (0.009060676 -0.00700367 -0.001501586) (-0.009625775 -0.003013246 -0.002011685) (-0.009643765 -0.00402175 -0.001630554) (-0.009826602 -0.00299348 -0.001493254) (-0.009084333 -0.003014094 -0.00150911) (-0.00946284 -0.002000258 -0.001498562) (-0.009462006 -0.003004292 -0.0009948428) (0.009085913 -0.003002225 -0.001508316) (0.009812205 -0.002971474 -0.00137906) (-0.009722194 0.0009991242 -0.002139292) (-0.009493154 1.414757e-06 -0.001502793) (-0.00985281 0.0009996894 -0.001465168) (-0.009016064 0.001001386 -0.001509364) (-0.009464546 0.00199849 -0.001493866) (-0.009441888 0.001000515 -0.0009991684) (0.009022818 0.001000444 -0.001506337) (0.009860529 0.0009949677 -0.001461751) (-0.0095976 0.005009119 -0.002016852) (-0.009635613 0.004021267 -0.001614116) (-0.009800888 0.004721624 -0.001359662) (-0.009090006 0.005000277 -0.001507287) (-0.009651183 0.006024016 -0.001524304) (-0.009656471 0.005252432 -0.001133786) (-0.007060882 0.008001176 -0.001006042) (0.007062745 0.008001671 -0.001006101) (0.009093625 0.005000861 -0.001515274) (0.009801452 0.004964063 -0.001353807) (-0.009462957 0.008998676 -0.001980965) (-0.009595706 0.008005868 -0.001498858) (-0.00905791 0.009001861 -0.001502304) (-0.009520926 0.009999903 -0.001498406) (-0.0096091 0.009003047 -0.001001751) (-0.006048461 0.01000183 -0.001007833) (-0.007058167 0.01200327 -0.001009375) (-0.007058709 0.01000122 -1.238724e-06) (-0.008063538 0.0110028 -0.001510935) (0.006055 0.01000275 -0.001007948) (0.007068969 0.01200505 -0.00100944) (0.007065489 0.01000215 1.477979e-06) (0.008076465 0.01100621 -0.001512797) (0.008568088 0.009005629 -0.002013411) (0.0090975 0.009002226 -0.001510894) (0.008575099 0.01000542 -0.001507681) (-0.009308861 0.01274098 -0.001856195) (-0.009417209 0.01197859 -0.001484481) (-0.009150993 0.01326177 -0.001625995) (-0.009308582 0.01370443 -0.001369442) (-0.009433231 0.01295412 -0.0009832995) (-0.0060526 0.01400379 -0.001009324) (-0.007061143 0.01400429 -3.906914e-06) (-0.008081916 0.01300552 -0.001517195) (-0.00807281 0.01500356 -0.001513718) (-0.008061578 0.01300673 -0.0005100783) (-0.008083108 0.01501005 -0.0005053389) (0.006062614 0.01400518 -0.001009935) (0.008104404 0.01301034 -0.00152246) (0.007065856 0.0140059 1.284446e-07) (0.008088462 0.015008 -0.001514384) (0.008062123 0.01300634 -0.0005051577) (0.008094027 0.01501095 -0.0005048999) (0.008612096 0.01300977 -0.002024003) (0.008569667 0.01200905 -0.001516844) (0.009180952 0.013277 -0.001647417) (0.008609097 0.01401012 -0.001516065) (0.008565361 0.01300817 -0.00101359) (-0.008934487 0.01697833 -0.00148396) (-0.0080448 0.01699987 -0.001514411) (0.008676296 0.01726996 -0.002127086) (0.008531682 0.01600409 -0.001505861) (0.008054668 0.01700823 -0.001507516) (0.008937574 0.01695426 -0.001490381) (0.008662011 0.01823358 -0.001504837) (0.008515313 0.01700494 -0.001001808) (-0.007568024 0.02101176 -0.002016404) (-0.007571353 0.02000854 -0.001510946) (-0.008197123 0.02130193 -0.001652215) (-0.007096818 0.02101284 -0.001515298) (-0.007572005 0.02201382 -0.001507217) (-0.007583877 0.02101091 -0.001009002) (-0.005069193 0.02401093 -0.001008688) (0.005074362 0.02401106 -0.00101073) (0.007075904 0.0210062 -0.001509712) (0.008327616 0.0206998 -0.001857911) (0.008465239 0.019959 -0.001489821) (0.008166194 0.02123677 -0.001516525) (0.008380731 0.02096809 -0.001000864) (-0.007502858 0.02497503 -0.00200113) (-0.007688868 0.02426504 -0.001634205) (-0.007796392 0.02468978 -0.001362413) (-0.007041852 0.02500313 -0.00150253) (-0.007413794 0.02598075 -0.001500675) (-0.007629275 0.0252145 -0.0009932968) (-0.004059781 0.02601286 -0.00101058) (-0.005079722 0.02601501 2.985557e-07) (-0.006072695 0.02701526 -0.001510825) (-0.006093545 0.02701906 -0.0005032461) (0.004060686 0.0260123 -0.001012417) (0.005087589 0.02601537 1.508899e-06) (0.006080686 0.02701544 -0.001511199) (0.006108274 0.02702002 -0.0005014978) (0.006559669 0.02500657 -0.002014921) (0.007031641 0.02500544 -0.0015065) (0.006582785 0.02601391 -0.001518356) (-0.006845595 0.02874693 -0.001466755) (-0.005548915 0.02901264 -0.00201112) (-0.006026132 0.02900686 -0.00150509) (-0.005546357 0.03001105 -0.001514549) (0.006493491 0.02899588 -0.001998808) (0.006685014 0.02829726 -0.001623509) (0.006016531 0.02900164 -0.001498024) (0.006837005 0.02870369 -0.001347158) (0.006383675 0.02997357 -0.001488879) (0.006630775 0.02922253 -0.0009922281) (-0.005356854 0.0327732 -0.001991825) (-0.005619827 0.0322257 -0.001497111) (-0.005194235 0.0332843 -0.001640958) (-0.005237323 0.03368329 -0.001336326) (-0.005515572 0.03299821 -0.001001983) (-0.004070381 0.03301747 -0.001520554) (-0.00357956 0.03402252 -0.001526045) (-0.00103152 0.03404017 5.077408e-06) (0.004532217 0.03300612 -0.002015695) (0.004551435 0.03200755 -0.001517659) (0.00404901 0.03300679 -0.001526087) (0.005140043 0.03326291 -0.001626672) (0.004683478 0.03427264 -0.001676127) (0.00452019 0.03299665 -0.001007263) (-0.003325766 0.03669981 -0.001940402) (-0.003730715 0.03628409 -0.001694759) (-0.003754656 0.0366226 -0.00131966) (-0.003140524 0.03722901 -0.001531111) (-0.003534059 0.03702051 -0.001007309) (-0.001546422 0.03707451 -0.002061026) (-0.002058314 0.03706762 -0.001541795) (-0.001553554 0.03807337 -0.001550706) (0.0005109323 0.03707494 -0.002077106) (0.0005044152 0.03807316 -0.001555846) (0.002677364 0.03728529 -0.002127755) (0.002558257 0.03603178 -0.001526739) (0.0020579 0.03705646 -0.001530128) (0.003135438 0.03722403 -0.001531632) (0.002493211 0.03799244 -0.001489858) (0.002595047 0.03706088 -0.001034041) (0.004247711 0.03565632 -0.001360735) (0.003735504 0.03666965 -0.001357264) (0.0004578703 0.03958879 -0.001273062) (-0.00322189 -0.03762338 0.0003330689) (-0.001673389 -0.0393379 -7.362422e-06) (-0.001255929 -0.03960271 0.0004984696) (-0.002030793 -0.03903969 0.0005115769) (-0.001034811 -0.03904182 0.0005165697) (-0.001558128 -0.03807984 0.0005142002) (-0.001531569 -0.03926125 0.001041862) (0.0005229129 -0.0390094 8.396166e-06) (0.0004708121 -0.03979395 0.0004890324) (-1.897203e-06 -0.0389608 0.0005305011) (0.001251602 -0.03945271 0.0006518794) (0.0005329685 -0.03805045 0.0005277097) (0.0005231751 -0.03900879 0.001047062) (0.002382973 -0.03874159 1.299226e-05) (0.002025116 -0.03901323 0.0004988813) (0.00277566 -0.03831303 0.0005051587) (0.002331867 -0.03866507 0.0008796425) (-0.004815077 -0.03476637 0.0005103938) (-0.005305442 -0.03374463 0.000500389) (-0.003553281 -0.03601369 0.0005046299) (-0.004031991 -0.03500441 0.000505809) (-0.003566329 -0.03501875 0.001016729) (0.002566112 -0.03605508 0.0005216588) (0.004588231 -0.03521385 2.046707e-06) (0.004295796 -0.03576378 0.000504582) (0.003986866 -0.03499049 0.0005048105) (0.004778506 -0.03473943 0.000504671) (0.004490329 -0.03398711 0.0005073284) (0.004522704 -0.03512499 0.0009930144) (-0.005543335 -0.03099997 2.934528e-07) (-0.005702225 -0.03228703 0.0006159544) (-0.006103563 -0.03121585 0.000498573) (-0.005060405 -0.0310049 0.0005006325) (-0.005551172 -0.0300055 0.0005013026) (-0.005523521 -0.03100029 0.001002524) (-0.003053114 -0.03001513 0.002033212) (0.003052729 -0.03001573 0.002031498) (0.005068921 -0.03100583 0.0005153263) (0.006345773 -0.03076644 -1.282707e-06) (0.006105129 -0.03119835 0.0004938279) (0.006486243 -0.02999342 0.0004946543) (0.006322879 -0.03070901 0.0008806979) (-0.007391014 -0.02677037 1.217759e-06) (-0.007169661 -0.02724248 0.0005015844) (-0.007519596 -0.02599935 0.0004991858) (-0.00735635 -0.02675132 0.0009804438) (-0.004061535 -0.02601046 0.001011721) (-0.005071665 -0.02401118 0.001009709) (-0.006096425 -0.02701611 0.0005042341) (-0.006071687 -0.02701135 0.001508295) (0.004060657 -0.0260111 0.00101388) (0.006098873 -0.0270204 0.0005070978) (0.00506883 -0.02401046 0.001011451) (0.006074844 -0.02701542 0.00152043) (0.006610564 -0.02703242 -2.528977e-07) (0.006550079 -0.02800814 0.0005021355) (0.007194232 -0.02725589 0.000503581) (0.00657556 -0.02601502 0.0005040007) (0.006578592 -0.02701365 0.001007887) (-0.007591615 -0.02301293 -1.525575e-06) (-0.007527396 -0.0240037 0.0004998351) (-0.008121994 -0.02304624 0.000501094) (-0.007087913 -0.02301136 0.0005014444) (-0.007616646 -0.02201755 0.0005000188) (-0.007552934 -0.02300489 0.001002492) (-0.005060415 -0.02200943 0.002018933) (0.005065527 -0.02200921 0.002021513) (0.007076477 -0.02300833 0.0005042704) (0.008311512 -0.02265576 -0.0001093274) (0.00811094 -0.02305061 0.0005087294) (0.008388418 -0.02178584 0.0005088061) (-0.008858594 -0.01875387 0.0004965625) (-0.007590332 -0.02001406 0.0005018873) (-0.008087594 -0.0190219 0.0005041882) (0.00867277 -0.01923056 -4.181831e-06) (0.008606558 -0.02006243 0.0005029758) (0.008091215 -0.01899959 0.0004964193) (0.008863096 -0.01875609 0.0004976309) (0.008498791 -0.01800218 0.0004978616) (0.008639998 -0.01922244 0.0009911233) (-0.009313021 -0.01471711 4.806898e-06) (-0.009147647 -0.01502742 0.0004978501) (-0.009345898 -0.01395932 0.0004974622) (-0.006049981 -0.014003 0.00100468) (-0.007055343 -0.01200368 0.001004191) (-0.008081756 -0.01500133 0.0005015706) (-0.008064985 -0.01300462 0.0005013264) (-0.008060379 -0.01500043 0.001505192) (-0.008075208 -0.01300689 0.001506461) (0.006050861 -0.01400204 0.00100793) (0.008084308 -0.01500403 0.0005024582) (0.007049586 -0.01200079 0.001006825) (0.008040526 -0.01299894 0.0005023138) (0.008078345 -0.01500195 0.001509399) (0.008093645 -0.01300024 0.001510309) (0.008593789 -0.01500006 -8.727957e-07) (0.00857463 -0.01600626 0.0005015147) (0.009135217 -0.01521468 0.0004957628) (0.008543415 -0.01399781 0.0005031088) (0.00858976 -0.01500248 0.001000126) (-0.009585195 -0.01100096 1.558451e-07) (-0.009506765 -0.01199596 0.0005003192) (-0.009067676 -0.01100121 0.0005017429) (-0.009623974 -0.01000541 0.0005083067) (-0.009533313 -0.01099826 0.0009998757) (-0.006046351 -0.01000248 0.001005424) (-0.007058909 -0.008002125 0.001004779) (-0.007053715 -0.01000413 0.002011461) (-0.008056246 -0.01100545 0.001507508) (0.006042096 -0.0100016 0.001007018) (0.008026597 -0.01100014 0.0005022167) (0.007051817 -0.008002199 0.001005714) (0.007055815 -0.01000191 0.002014355) (0.008058316 -0.01100118 0.001511812) (0.008048545 -0.009002173 0.001508286) (0.00851095 -0.01099968 2.485772e-07) (0.008498801 -0.01199837 0.0005004876) (0.008984263 -0.01099903 0.0004999719) (0.008527701 -0.01000088 0.0005013436) (0.00851551 -0.01099992 0.001003787) (-0.009676519 -0.007181657 2.413587e-06) (-0.009695815 -0.00801979 0.0005086661) (-0.009826276 -0.006704631 0.0003666352) (-0.009136073 -0.007004718 0.0005079676) (-0.009662874 -0.006261424 0.0006197099) (-0.009671984 -0.007028031 0.001013094) (-0.007050222 -0.006000537 0.002011388) (0.00705501 -0.006002638 0.002012737) (0.009135844 -0.007005576 0.0005040203) (-0.009406234 -0.002995295 2.098567e-06) (-0.009412408 -0.003996975 0.0005020878) (-0.009876439 -0.002993754 0.0004973494) (-0.008960181 -0.002993949 0.0005023261) (-0.009424799 -0.001995673 0.0004995554) (-0.009450245 -0.002988346 0.001000531) (-0.007041919 -0.001999234 0.002014835) (0.007047017 -0.002001511 0.002013331) (0.008998608 -0.003002081 0.0005053124) (0.009885152 -0.002990099 0.0004994097) (-0.009456353 0.0009993942 -5.952444e-07) (-0.009469416 -1.346026e-06 0.0004984714) (-0.009946115 0.0009963928 0.0004948155) (-0.008966554 0.0009994113 0.0004998857) (-0.009425371 0.001997821 0.0004969055) (-0.009443582 0.0009988044 0.0009972657) (-0.007041775 0.002000565 0.002013902) (0.007044699 0.001999764 0.002011672) (0.008969497 0.0009998847 0.0005010028) (0.009938912 0.0009997706 0.0004980734) (-0.009465429 0.004997085 -6.132852e-07) (-0.009406857 0.003998671 0.0004998762) (-0.009865299 0.004950483 0.0004886492) (-0.009019102 0.005000432 0.0004994121) (-0.009674266 0.00623075 0.0005038046) (-0.00966021 0.00524999 0.001119984) (-0.007060404 0.008000801 0.001005478) (-0.007050861 0.006001697 0.002013015) (0.007064716 0.008000631 0.001008259) (0.007055036 0.005999817 0.002011233) (0.008979813 0.004998213 0.000503164) (0.009835325 0.004993223 0.0004942741) (-0.009660214 0.0090068 1.325114e-06) (-0.009685133 0.008004455 0.0005009853) (-0.009130567 0.009002304 0.0005015446) (-0.009610094 0.01000136 0.0005022875) (-0.009622583 0.009001713 0.001004972) (-0.006047352 0.01000083 0.001005906) (-0.007055633 0.01200055 0.001003358) (-0.007058315 0.01000003 0.002013853) (-0.008061885 0.01099928 0.001508944) (0.006053327 0.01000179 0.00100878) (0.00706537 0.01200323 0.001010771) (0.007068349 0.01000111 0.002018513) (0.008076709 0.01100138 0.001517102) (0.00916671 0.009003862 0.0005099572) (-0.009419159 0.01298596 7.575864e-07) (-0.00949274 0.01199677 0.0004996235) (-0.008995682 0.01299974 0.0004984) (-0.009361928 0.01396035 0.0004997084) (-0.00942256 0.01294951 0.00098869) (-0.006049721 0.01400204 0.001004373) (-0.008059895 0.01300272 0.0004970834) (-0.008087929 0.01500603 0.0005011396) (-0.00807573 0.01299939 0.001501305) (-0.008064004 0.01500104 0.001501733) (0.006057315 0.014004 0.001008619) (0.008059882 0.01300582 0.0005088356) (0.008080852 0.01500655 0.0005043844) (0.008102727 0.01300725 0.001523217) (0.008075256 0.01500546 0.001509404) (0.008525594 0.01300415 2.241011e-06) (0.008544929 0.0120024 0.0005075395) (0.008987522 0.01300181 0.0005052885) (0.008546976 0.01400703 0.0005081853) (0.008564665 0.01300809 0.001017768) (-0.008998425 0.01699495 0.000498208) (-0.008046777 0.01700331 0.0005009884) (0.008528765 0.01700393 -2.616168e-06) (0.008578145 0.01600109 0.0004992624) (0.008043368 0.01700403 0.0004995069) (0.009014591 0.01699784 0.0004982201) (0.008499638 0.01800286 0.0004982414) (0.008501235 0.01700154 0.0009986446) (-0.007590097 0.02101345 -1.769533e-06) (-0.007602823 0.02001025 0.0005022156) (-0.008042366 0.02100562 0.000499594) (-0.007098808 0.02101086 0.0005014431) (-0.00762116 0.02201028 0.0004979954) (-0.007579413 0.02100898 0.001005779) (-0.005070879 0.02400994 0.001011103) (-0.005061063 0.02200775 0.002021347) (0.005077742 0.02401166 0.001010695) (0.0050666 0.02200842 0.00201972) (0.007072813 0.02100594 0.0005036404) (0.008454018 0.02094702 -1.514795e-06) (0.008554797 0.02005435 0.0004977829) (0.008010772 0.02100525 0.0005025324) (0.008338712 0.02173626 0.0004828169) (0.008376615 0.02097154 0.0009976714) (-0.007656771 0.02525116 -1.292494e-07) (-0.007525737 0.02400207 0.0004984756) (-0.007865004 0.0247456 0.0004965212) (-0.007063359 0.02500666 0.0004979736) (-0.007521964 0.02600238 0.0004991623) (-0.007629091 0.0252134 0.0009914672) (-0.004061313 0.02601202 0.001013408) (-0.006093079 0.0270169 0.000503323) (-0.006075444 0.0270122 0.001512652) (0.004064965 0.02601341 0.001013478) (0.006109969 0.02701882 0.0005075087) (0.006092515 0.02701895 0.001515803) (0.007066195 0.02501118 0.0005028668) (0.006593924 0.02601637 0.000505111) (0.007826027 0.0246987 0.0003541245) (-0.006900615 0.02876976 0.0005008082) (-0.006079649 0.02902482 0.000501783) (-0.005550903 0.03001173 0.0005020439) (-0.003049821 0.03001836 0.002028445) (-0.001022614 0.03203007 0.001026216) (0.003058072 0.03002258 0.002037691) (0.00666867 0.02923474 9.443529e-06) (0.006560197 0.02800822 0.0005048886) (0.006061076 0.02900898 0.0005049946) (0.006883046 0.02876966 0.0005020308) (0.006485633 0.0299952 0.0004952044) (0.006618594 0.02920631 0.0009979251) (-0.00557272 0.0331177 7.670417e-07) (-0.005726237 0.03228784 0.0006345914) (-0.005792946 0.03267337 0.0003699044) (-0.00500746 0.03299585 0.0005027609) (-0.005314641 0.03372077 0.0005069545) (-0.005504341 0.03299792 0.001003256) (-1.527869e-06 0.03404352 0.00103689) (-0.001543294 0.03606625 0.001557147) (0.005031796 0.03300449 0.000512343) (0.004487878 0.03399051 0.0005068758) (0.004573614 0.03301923 0.001018455) (0.005770335 0.03266777 0.0003716156) (-0.003602995 0.03717928 5.299348e-06) (-0.003549473 0.03602287 0.0005135629) (-0.003824879 0.03675766 0.0004940167) (-0.003308224 0.0373769 0.0006781871) (-0.003232801 0.03764942 0.000299325) (-0.003522196 0.03699882 0.001010158) (-0.002079983 0.03706332 0.0005217866) (-0.001588032 0.03806569 0.0005262223) (-0.001548454 0.03706593 0.001045725) (0.0005321985 0.0380445 0.0005324691) (0.002591975 0.03708475 -1.25191e-05) (0.002571775 0.03605697 0.0005168062) (0.002082931 0.0370797 0.000513103) (0.003054861 0.03704396 0.0005220999) (0.002761538 0.03834048 0.0004798067) (0.002594781 0.03708163 0.001050952) (0.004292001 0.03577168 0.0005032478) (0.003818764 0.03679981 0.0005035638) (-0.001334161 0.03955874 0.000477558) (0.0004805129 0.0397998 0.0004660606) (-0.001454188 -0.0387562 0.001964412) (-0.0009645152 -0.03865227 0.002317269) (-0.00150195 -0.0381789 0.002515693) (0.0004992827 -0.03903797 0.002043438) (-5.70692e-06 -0.03877739 0.00240106) (0.000944577 -0.03864463 0.002354468) (0.0005099151 -0.03830315 0.002773154) (0.002284553 -0.03763845 0.002299973) (-0.003585272 -0.03503375 0.002049445) (-0.003493557 -0.03597582 0.002498152) (-0.004052922 -0.03501199 0.002519429) (-0.003068531 -0.03503735 0.002550436) (-0.003582472 -0.03402016 0.00254658) (-0.003526761 -0.03522078 0.003048725) (-0.001546548 -0.03605152 0.002586437) (-0.001536402 -0.03504607 0.003097407) (0.0005129417 -0.03605696 0.00257903) (0.002521866 -0.03601422 0.002519915) (0.003061348 -0.03501534 0.002551758) (0.002538276 -0.03502639 0.003056512) (0.004378107 -0.03480533 0.002005271) (0.004019518 -0.03500982 0.00250753) (0.004503944 -0.03399051 0.002506569) (-0.005680777 -0.03129562 0.002141094) (-0.005419147 -0.03199433 0.002494382) (-0.005860805 -0.03077319 0.002475844) (-0.005049936 -0.03101347 0.002516124) (-0.005520791 -0.03000596 0.002508996) (-0.005499023 -0.03098765 0.002990109) (-0.002033241 -0.03001955 0.003060363) (-0.00304928 -0.02801438 0.003051815) (-0.003518649 -0.03100535 0.004028148) (-0.003512967 -0.03200281 0.003514779) (-0.00402093 -0.03100031 0.00351225) (0.002030324 -0.03001487 0.003055061) (0.003049035 -0.02801357 0.003053434) (0.003507741 -0.03199769 0.003504676) (0.004022249 -0.03100126 0.003508876) (0.003508181 -0.03099881 0.004017547) (0.004568436 -0.03201803 0.002524927) (0.005060034 -0.03101346 0.002526135) (0.004576029 -0.03101154 0.003026881) (0.00585739 -0.03076805 0.002485438) (0.006289234 -0.02970235 0.00234423) (-0.006915799 -0.02698157 0.002493032) (-0.007325552 -0.02570401 0.002353995) (-0.005572382 -0.02801189 0.002516221) (-0.006074917 -0.02701419 0.002520962) (-0.005583422 -0.0270203 0.003031852) (-0.001012921 -0.02601562 0.004070487) (0.001015264 -0.02601441 0.004071156) (0.006534689 -0.02700635 0.002006159) (0.00659752 -0.02800387 0.002507614) (0.00606165 -0.02700832 0.002518427) (0.006924823 -0.02697083 0.002498699) (0.006555279 -0.02600773 0.002511871) (0.00663576 -0.0270334 0.00301733) (-0.007503012 -0.02300037 0.002000351) (-0.007569844 -0.02399773 0.002490209) (-0.007840877 -0.02294029 0.002472896) (-0.007030481 -0.02300455 0.00250691) (-0.007501606 -0.02199897 0.002498941) (-0.007579219 -0.02301586 0.003003308) (-0.004049362 -0.02200858 0.003035712) (-0.005053505 -0.02000627 0.003027023) (-0.006067435 -0.02301351 0.003530481) (-0.003034518 -0.02200903 0.004054487) (0.004051868 -0.0220086 0.003037311) (0.00303595 -0.02200848 0.004053135) (0.005062107 -0.02000897 0.003034651) (0.006075839 -0.02301308 0.003531775) (0.006578228 -0.0240104 0.002523672) (0.007059979 -0.02301052 0.0025193) (0.006565443 -0.02301179 0.003022533) (0.007852307 -0.02275988 0.00247976) (-0.007551522 -0.01900374 0.002007612) (-0.007548362 -0.0200054 0.002508837) (-0.008005713 -0.01900016 0.002500174) (-0.007065612 -0.01900454 0.00251654) (-0.00757391 -0.0180015 0.002513172) (-0.00754738 -0.01900199 0.003017979) (-0.005050238 -0.01800499 0.004038831) (0.005058822 -0.01800523 0.004047119) (0.007073136 -0.01900994 0.002520076) (0.008537865 -0.01901165 0.002002111) (0.00835377 -0.01994818 0.00247023) (0.008012675 -0.01899993 0.002507929) (0.00853554 -0.01801599 0.002509655) (0.008352606 -0.01897377 0.002880585) (-0.008923983 -0.0149783 0.002470017) (-0.008033328 -0.01500079 0.002504181) (-0.005039137 -0.01400377 0.004031878) (0.005046211 -0.01400242 0.004036842) (0.008538186 -0.01500202 0.002007203) (0.008662001 -0.0162595 0.002621176) (0.008060788 -0.01500337 0.002520011) (0.008939078 -0.0149758 0.002473076) (0.00856231 -0.01399996 0.002519437) (0.008650921 -0.01502527 0.00313756) (-0.009425851 -0.01097605 0.001965804) (-0.00932793 -0.01172292 0.00236181) (-0.009185178 -0.01102579 0.002612225) (-0.009352445 -0.009982043 0.0024609) (-0.006047667 -0.01000273 0.003021962) (-0.007057171 -0.008002258 0.003022115) (-0.007553945 -0.01100327 0.004025423) (-0.00806573 -0.01100672 0.002515117) (-0.008059583 -0.009006374 0.002517056) (-0.008044249 -0.01100406 0.003514627) (-0.008076876 -0.009004232 0.003534537) (0.006050518 -0.01000193 0.003023347) (0.008082627 -0.011003 0.00252424) (0.007060856 -0.008002353 0.003020395) (0.008074039 -0.009003022 0.002519599) (0.008080529 -0.01100436 0.003529051) (0.008056225 -0.009001868 0.003517117) (0.007557815 -0.01100337 0.004031286) (0.008596907 -0.01100293 0.002026146) (0.00858613 -0.01200242 0.002511947) (0.009117713 -0.01100272 0.002518443) (0.00856592 -0.01000287 0.002519035) (0.008559646 -0.01100275 0.003016228) (-0.009538947 -0.007001257 0.001998602) (-0.009400804 -0.007998391 0.002453418) (-0.00902775 -0.006999494 0.00249945) (-0.009468322 -0.005997376 0.00248651) (-0.009320849 -0.007011387 0.002880029) (-0.006044531 -0.006000914 0.003021825) (-0.007049131 -0.004000094 0.003021001) (-0.008059347 -0.007001362 0.002514159) (-0.008062104 -0.007001316 0.00352285) (-0.008047037 -0.004999846 0.003516926) (0.006047583 -0.006001657 0.003020943) (0.008064486 -0.007003937 0.002515816) (0.007051881 -0.004002164 0.00302064) (0.008060335 -0.005004014 0.00251841) (0.008085553 -0.007003905 0.003530157) (0.008058133 -0.005003119 0.0035256) (0.008547425 -0.007003812 0.002007655) (0.008598171 -0.008005817 0.002520315) (0.009007431 -0.007000684 0.002502981) (0.008550948 -0.006004334 0.002517842) (0.008567995 -0.007003061 0.003012505) (-0.00961913 -0.002996147 0.002013872) (-0.009535181 -0.004000021 0.002500648) (-0.00905446 -0.002999393 0.002510245) (-0.009598379 -0.002002272 0.002531233) (-0.009436447 -0.002998117 0.002973745) (-0.0060452 -0.002000426 0.003024322) (-0.007060632 -4.330706e-08 0.003025935) (-0.008067742 -0.003000355 0.003530183) (-0.008098605 -0.001001685 0.00353841) (0.006044801 -0.002001131 0.003021086) (0.007057349 -1.114303e-06 0.00302187) (0.008055915 -0.00300239 0.003523117) (0.00808447 -0.001002544 0.003537251) (0.008545395 -0.004003276 0.002512761) (0.009041514 -0.00300245 0.002506371) (0.008537909 -0.003002737 0.003013898) (-0.009727131 0.0009991128 0.002141671) (-0.009665703 -6.318859e-07 0.002552355) (-0.009091889 0.0009984747 0.002520878) (-0.009595763 0.002003972 0.002533456) (-0.009506166 0.001000735 0.002984897) (-0.006044481 0.002000414 0.003023872) (-0.007048239 0.004001364 0.003020885) (-0.008094882 0.001001266 0.003533999) (-0.00806638 0.003001141 0.003526359) (0.006045254 0.001999766 0.003020498) (0.007052703 0.003999736 0.003016839) (0.00808471 0.0009988356 0.003530932) (0.008076252 0.002999874 0.003518815) (0.00909404 0.001000054 0.002523445) (0.008585312 0.0009993035 0.003029381) (-0.009608318 0.005003922 0.002017498) (-0.009531686 0.004001194 0.002500921) (-0.009022156 0.005002582 0.002505593) (-0.009463981 0.005996937 0.002486516) (-0.009405625 0.004982587 0.002956133) (-0.006044837 0.006001195 0.003023082) (-0.007058075 0.008001443 0.003025909) (-0.008051628 0.005003708 0.002515103) (-0.008059733 0.007003539 0.002520497) (-0.008044606 0.005002168 0.003520036) (-0.008059652 0.007002263 0.00352768) (0.006047747 0.006000268 0.00302197) (0.00706438 0.008000145 0.003024065) (0.008075622 0.006998513 0.002513095) (0.00805321 0.004999426 0.003515363) (0.008059949 0.006999055 0.003518677) (0.009041585 0.005000263 0.002504872) (0.008556622 0.00599867 0.002505753) (0.008538051 0.004999523 0.003005726) (-0.009473516 0.008998891 0.001999209) (-0.009400066 0.007995726 0.002453245) (-0.009001502 0.008995358 0.002493461) (-0.009348574 0.009998032 0.002482698) (-0.009316601 0.008963327 0.002834134) (-0.006051762 0.01000069 0.003024355) (-0.008064613 0.009001015 0.002520256) (-0.008083383 0.01099943 0.00252007) (-0.008072986 0.009001783 0.003539531) (-0.008052964 0.01100034 0.003523232) (-0.007564766 0.01100145 0.00403213) (0.006056076 0.01000185 0.003027676) (0.008084445 0.009000553 0.002523756) (0.008090008 0.01100105 0.00252788) (0.008077948 0.009002823 0.00354066) (0.008058479 0.01100165 0.00353013) (0.007569217 0.01100266 0.004042825) (0.008578998 0.00900023 0.002016252) (0.008581003 0.007999071 0.002514855) (0.009018782 0.009001492 0.002502584) (0.008603845 0.01000269 0.002524804) (0.008586327 0.009001538 0.003025645) (-0.009325986 0.01273696 0.001867167) (-0.009323 0.01172922 0.002342934) (-0.00905655 0.01301887 0.002511184) (-0.008070502 0.01299597 0.002514197) (-0.005041722 0.01400201 0.004032655) (0.005049218 0.01400515 0.00403888) (0.008610573 0.01299918 0.002021997) (0.008583174 0.01199885 0.002518881) (0.008090043 0.01300397 0.002526234) (0.009083243 0.01301806 0.00252606) (0.008556478 0.01400619 0.002514956) (0.008524791 0.01300216 0.003006218) (-0.008810273 0.01673938 0.002360508) (-0.008042487 0.01700239 0.002506449) (-0.007560081 0.01800464 0.002512058) (-0.007548183 0.01700616 0.003016006) (-0.005052179 0.02000485 0.003028517) (-0.005048098 0.01800338 0.004037663) (0.005062851 0.02000806 0.003032593) (0.005060768 0.01800806 0.004045768) (0.00866248 0.01725544 0.002129288) (0.008657579 0.01625904 0.00263056) (0.008050346 0.01700123 0.002507543) (0.008814742 0.01674692 0.002374297) (0.008528964 0.01800526 0.00250671) (0.008508818 0.01700008 0.003000108) (-0.00756465 0.02100777 0.002008953) (-0.007550568 0.02000835 0.002505888) (-0.008104125 0.02101488 0.002499201) (-0.007048037 0.02100421 0.002512409) (-0.007502386 0.02199755 0.002497313) (-0.007503284 0.02099785 0.003002171) (-0.00404977 0.02200804 0.003036851) (-0.006068495 0.02300856 0.003536769) (-0.003035528 0.02200884 0.004053421) (0.004051287 0.02200934 0.003033955) (0.003036692 0.02200943 0.004048696) (0.006069186 0.02300918 0.003532248) (0.007073161 0.02100823 0.002520083) (0.008333378 0.02070848 0.001860206) (0.008353259 0.01973634 0.002378441) (0.008018723 0.02100024 0.002501716) (-0.007502685 0.02499716 0.001997243) (-0.007568262 0.0239966 0.002487879) (-0.007188987 0.02525377 0.00263096) (-0.00731854 0.02570146 0.002343438) (-0.007346299 0.02473865 0.002863397) (-0.006085123 0.02501487 0.002533473) (-0.003048595 0.02801308 0.003048467) (-0.001014389 0.02601371 0.004068997) (0.001014686 0.02601449 0.004069175) (0.003051852 0.02801991 0.003053996) (0.006566944 0.02500935 0.002015206) (0.006558912 0.02400669 0.002515478) (0.006082349 0.02501309 0.002529328) (0.007171477 0.02525825 0.002624216) (0.006549012 0.02601501 0.002523639) (0.006544835 0.02501432 0.003027084) (-0.005549587 0.02901108 0.00201413) (-0.005566472 0.02801482 0.002529844) (-0.006159144 0.02926652 0.002634402) (-0.005064816 0.02901403 0.00252534) (-0.005526412 0.03000238 0.002506468) (-0.005536361 0.02900411 0.003015007) (-0.002030786 0.03001833 0.003053385) (-0.004018502 0.03099969 0.003511591) (-0.0035104 0.03200209 0.003509523) (-0.0035154 0.03100212 0.004022716) (0.002035751 0.03002373 0.003065528) (0.004042762 0.03101467 0.003529231) (0.003524483 0.03201122 0.003522245) (0.003521444 0.03100677 0.004028653) (0.00506446 0.02901667 0.002522985) (0.006501172 0.02898508 0.002001851) (0.006604897 0.02800216 0.002503301) (0.006152957 0.02925543 0.002625927) (0.006265122 0.02968319 0.002374229) (0.006333478 0.02873965 0.00285877) (-0.005367758 0.0327793 0.001991905) (-0.00542155 0.03199311 0.002493546) (-0.005008487 0.03299123 0.002508747) (-0.00406938 0.03302744 0.002517731) (-0.003584028 0.03404529 0.002529022) (-0.003530672 0.03301169 0.00301451) (0.004549713 0.03302196 0.002011284) (0.004554167 0.03201254 0.002520143) (0.00405108 0.03302507 0.00251929) (0.004998506 0.03297973 0.002496444) (0.004502471 0.03399019 0.002506529) (0.004621817 0.03301172 0.003023043) (-0.003325938 0.03668743 0.001976361) (-0.003500406 0.03597804 0.002498093) (-0.002950191 0.03676341 0.002478346) (-0.001531369 0.03708225 0.002076627) (-0.001541061 0.03605953 0.002577146) (-0.002227122 0.03732995 0.002742284) (-0.001037861 0.03707564 0.002588027) (-0.001511209 0.03802324 0.002526139) (-0.001504853 0.03725769 0.003155657) (0.000512039 0.03707383 0.002088388) (0.0005121864 0.03606616 0.002583097) (-7.718106e-06 0.03707119 0.002602385) (0.001027708 0.03710051 0.002593247) (0.0005155294 0.03832084 0.00275929) (0.000507367 0.0370648 0.003059162) (0.002736983 0.03736139 0.002192666) (0.002554589 0.03604691 0.002565788) (0.002207597 0.03735083 0.002735655) (0.002971837 0.0368013 0.002490062) (0.002328827 0.03770417 0.002333237) (0.002498905 0.03681263 0.002991771) (-0.004285611 -0.03271799 0.003812764) (-0.003813556 -0.03272447 0.004323013) (-0.004297106 -0.03173875 0.004329209) (-0.003330828 -0.03464596 0.003750221) (-0.00330877 -0.03369065 0.004274263) (-0.001667975 -0.03528806 0.004285438) (-0.001340764 -0.03570432 0.004294609) (-0.002022235 -0.03484192 0.004458477) (-0.0009887343 -0.03516174 0.00458488) (-0.001634798 -0.03429433 0.004733021) (-0.001384342 -0.03473965 0.004754991) (0.0005059431 -0.03502441 0.004078789) (0.0005029383 -0.03580531 0.004407592) (1.059286e-06 -0.03521638 0.004691627) (0.0009915551 -0.03516984 0.004618175) (0.0005065631 -0.03401667 0.004554348) (0.000502487 -0.03480206 0.004892953) (0.002495899 -0.03499459 0.003987505) (0.002001627 -0.03481124 0.004408299) (0.002500996 -0.03400245 0.004526325) (0.004274625 -0.03171501 0.00431463) (0.00427837 -0.03270137 0.003785111) (0.003793977 -0.03273284 0.004291914) (-0.004773432 -0.03072788 0.004323522) (-0.003611546 -0.03223701 0.004622971) (-0.004104041 -0.03122898 0.004590705) (-0.003044342 -0.03102613 0.004570466) (-0.003542645 -0.03001519 0.004576516) (-0.003533682 -0.03103429 0.005142852) (-0.001517382 -0.03202234 0.004573175) (-0.001514705 -0.0310226 0.005072628) (0.0005109354 -0.0310202 0.005078939) (0.002512216 -0.03200656 0.004547563) (0.003037437 -0.03101422 0.004562444) (0.002522623 -0.03100787 0.005035774) (0.004584818 -0.03122607 0.00409675) (0.004096277 -0.03122526 0.004586366) (0.004773244 -0.03071284 0.004312287) (0.004619479 -0.03001019 0.004612206) (0.004315612 -0.0307525 0.004793895) (-0.005538319 -0.0270069 0.00402656) (-0.005494785 -0.02797656 0.004498096) (-0.005896518 -0.0270008 0.004394103) (-0.005037923 -0.02700427 0.004525919) (-0.005718615 -0.02628394 0.004692212) (-0.005403465 -0.02698518 0.004990224) (-0.003544011 -0.02701782 0.005082522) (1.946848e-06 -0.026018 0.005093563) (-0.001011093 -0.02401416 0.005076578) (-0.001514233 -0.02701816 0.006081512) (-0.0005032895 -0.02702124 0.006102839) (0.001012115 -0.02401238 0.005075338) (0.0005086736 -0.02702077 0.006119072) (0.001522478 -0.02702196 0.006097396) (0.004555214 -0.02799642 0.0045632) (0.005033934 -0.02700232 0.004522814) (0.004529619 -0.02700178 0.005026432) (0.006345284 -0.02676147 0.003835568) (0.005879432 -0.02699459 0.004385707) (0.006325626 -0.02574209 0.004320545) (-0.007323756 -0.0227235 0.003858427) (-0.006895635 -0.02298993 0.004382887) (-0.007299424 -0.0217171 0.00430369) (-0.005546092 -0.02400957 0.004535152) (-0.006045354 -0.02300701 0.004522303) (-0.005559611 -0.02300912 0.005042242) (-0.00201986 -0.02201072 0.005068619) (-0.003026855 -0.02000608 0.005060187) (-0.003533581 -0.02301361 0.006078061) (0.002021525 -0.02200881 0.005063523) (0.003032265 -0.02000746 0.005059499) (0.003533987 -0.02300962 0.006071478) (0.006524195 -0.02300225 0.004010866) (0.006581626 -0.02399045 0.004490119) (0.006055906 -0.02300605 0.004528529) (0.006879812 -0.02297528 0.004388005) (0.006687535 -0.02226977 0.004667693) (0.006423408 -0.02301192 0.005007714) (-0.007641982 -0.01926476 0.004135219) (-0.007403057 -0.02000608 0.004483115) (-0.007796249 -0.01872047 0.00433878) (-0.007005914 -0.01900118 0.004502838) (-0.007601054 -0.01801693 0.004601564) (-0.007370845 -0.01898002 0.004865635) (-0.004037592 -0.01800416 0.005055298) (-0.005047632 -0.0160062 0.005050939) (-0.005534793 -0.019 0.006039512) (-0.005527184 -0.02000217 0.005536986) (-0.006040163 -0.01900244 0.005536367) (-0.006042601 -0.01700804 0.005535929) (-0.005538447 -0.01700363 0.006045103) (0.004043305 -0.01800505 0.005056583) (0.005052583 -0.0160022 0.005051948) (0.005536656 -0.02000785 0.005531833) (0.006053879 -0.01900423 0.005539242) (0.006043152 -0.01699999 0.005537816) (0.005538693 -0.01900405 0.006043704) (0.005531206 -0.01700031 0.006034237) (0.006558673 -0.02000421 0.004549354) (0.007017573 -0.01900375 0.004510179) (0.006531006 -0.01900113 0.005021632) (0.007788224 -0.01872575 0.004351113) (-0.007538657 -0.01500558 0.004015276) (-0.007494457 -0.0159996 0.004493764) (-0.008068339 -0.01499454 0.00448564) (-0.007042254 -0.01500343 0.004528705) (-0.007526107 -0.01400396 0.004516704) (-0.007627543 -0.01503268 0.005150891) (-0.004030996 -0.01400351 0.005045635) (-0.005042654 -0.01200363 0.005046606) (-0.00553154 -0.01500689 0.006046841) (-0.006042039 -0.01500741 0.005538243) (-0.001006834 -0.0140039 0.006055874) (0.001007601 -0.01400378 0.006056908) (0.004035319 -0.014002 0.005044715) (0.005046104 -0.01200242 0.005047954) (0.006057593 -0.01500287 0.005549244) (0.005552925 -0.01500192 0.006048204) (0.007060489 -0.01500446 0.004539735) (0.006558815 -0.01500277 0.005047841) (0.00839053 -0.01498129 0.003883016) (0.00802469 -0.01500329 0.004513653) (0.008357548 -0.01372833 0.004353488) (-0.007553082 -0.01200453 0.004529122) (-0.008013374 -0.01100141 0.004508329) (-0.007059133 -0.01100346 0.004538871) (-0.007566383 -0.01000192 0.004533953) (-0.007545985 -0.01100224 0.005032791) (-0.003022872 -0.01000204 0.006055515) (-0.001006406 -0.01000208 0.006050225) (0.001007111 -0.01000186 0.006050903) (0.003021849 -0.01000133 0.006051402) (0.007060257 -0.01100355 0.00454358) (0.008618921 -0.01100373 0.004020005) (0.008406926 -0.01199605 0.004490193) (0.008011079 -0.01100213 0.004506399) (0.008491083 -0.0100003 0.004485071) (0.008339627 -0.01096271 0.004852772) (-0.008817107 -0.006963678 0.004336999) (-0.00806227 -0.007000821 0.004521755) (-0.007592448 -0.006999247 0.005037406) (-0.003022285 -0.006001123 0.006047576) (0.003022923 -0.006001123 0.006046483) (0.008741936 -0.00704547 0.004168062) (0.008562036 -0.008003258 0.004515211) (0.008086627 -0.007002017 0.004538941) (0.008608962 -0.005999643 0.004513624) (0.008397733 -0.007014367 0.004895094) (-0.008873104 -0.003001747 0.004381654) (-0.008079925 -0.003001456 0.004556075) (-0.007572896 -0.003001652 0.005049155) (-0.003023779 -0.002000733 0.006047839) (0.003024368 -0.002000544 0.006047137) (0.008544346 -0.003002129 0.004022391) (0.008666075 -0.003999586 0.004648732) (0.008064166 -0.003002316 0.004537221) (0.00884591 -0.003003751 0.004379326) (0.008716721 -0.002036201 0.004698228) (0.008514086 -0.003003921 0.005005199) (-0.008907521 0.001000502 0.004500994) (-0.008093365 0.001005111 0.004550836) (-0.007577853 0.001000309 0.005055402) (-0.00302454 0.002000568 0.006049343) (0.00302585 0.002000705 0.006050533) (0.008566141 0.0009984882 0.004026764) (0.00851716 -6.181655e-07 0.004506703) (0.008052315 0.0009985295 0.004520758) (0.0089332 0.0009824377 0.004467373) (0.008703509 0.002273237 0.004646108) (0.00858694 0.0009871464 0.005076277) (-0.008811927 0.004997182 0.004368738) (-0.008039019 0.004999976 0.004523608) (-0.007541529 0.005000404 0.005027723) (-0.003023735 0.006001394 0.006049575) (0.003026398 0.006001243 0.006054311) (0.008541811 0.004999249 0.004019056) (0.008724685 0.004002624 0.00465844) (0.008059243 0.004999121 0.004530454) (0.0088437 0.004998352 0.004372855) (0.008667246 0.005997515 0.004650867) (0.008511007 0.00500041 0.005003175) (-0.00807345 0.008999801 0.004542477) (-0.007570128 0.01000028 0.004541748) (-0.007566144 0.008999859 0.005043863) (-0.005046573 0.01200294 0.005045556) (-0.003022873 0.01000204 0.006052915) (-0.001006299 0.01000184 0.006050014) (0.001008093 0.01000215 0.006052349) (0.003026013 0.01000248 0.006059029) (0.00504939 0.0120044 0.005050393) (0.008665598 0.009289811 0.004161304) (0.008610545 0.007985994 0.004597697) (0.008049079 0.009002237 0.00452973) (0.008823881 0.008723981 0.004328638) (0.008535161 0.01001552 0.004513766) (0.008405634 0.009015643 0.004902026) (-0.007560786 0.01300115 0.00402414) (-0.007560378 0.01200204 0.004527287) (-0.008143697 0.01302115 0.004618648) (-0.007055701 0.01299991 0.004529211) (-0.007547375 0.01399986 0.004519103) (-0.007511147 0.01299841 0.005003328) (-0.004032856 0.01400299 0.005045065) (-0.005047748 0.01600375 0.005051557) (-0.006043427 0.01500319 0.005540365) (-0.005542877 0.01500511 0.006047263) (-0.001006469 0.01400255 0.006056272) (0.001008085 0.0140025 0.006057492) (0.004037829 0.01400414 0.005048629) (0.005056883 0.01600764 0.005058804) (0.006067683 0.0150104 0.005572535) (0.005553951 0.0150079 0.006071421) (0.007062938 0.01300436 0.004540963) (0.008530222 0.01301528 0.004014667) (0.008410839 0.01200048 0.004492878) (0.008150111 0.01303326 0.004666784) (0.008351641 0.01396607 0.004356884) (-0.007524637 0.01700063 0.004007064) (-0.007506826 0.0159993 0.004498375) (-0.007888556 0.01699423 0.004478911) (-0.007036481 0.01700266 0.004512396) (-0.007613326 0.01801508 0.004603941) (-0.007556723 0.01698729 0.004977813) (-0.004038411 0.01800391 0.005053648) (-0.005535682 0.01700299 0.006045916) (-0.006040219 0.01700344 0.005537712) (-0.006048116 0.01899898 0.005525169) (-0.005536846 0.0200023 0.005528447) (-0.005539868 0.01899981 0.006036389) (-0.003029806 0.02000668 0.005058034) (0.00404362 0.01800511 0.005053413) (0.003032865 0.02000598 0.005053051) (0.006077925 0.01900963 0.004551994) (0.006045561 0.0170067 0.005542625) (0.00604121 0.01900197 0.005534165) (0.005532823 0.02000241 0.005529137) (0.00554136 0.01700537 0.006049963) (0.005545464 0.01900073 0.00603975) (0.007056066 0.0170144 0.004534393) (0.006569993 0.01801101 0.004543623) (0.006569386 0.01701619 0.005052493) (0.008314084 0.0167152 0.003833179) (0.007873793 0.0169746 0.004473913) (-0.007493787 0.02099827 0.00399387) (-0.007403763 0.02000875 0.004485657) (-0.007102061 0.0210017 0.004613958) (-0.00727119 0.0217287 0.004360014) (-0.006051315 0.02100301 0.004532059) (-0.005558168 0.0210042 0.005039967) (-0.002022513 0.02200929 0.005068382) (-0.00353707 0.0230125 0.006072462) (-0.001013693 0.02401202 0.005077666) (0.002023879 0.02200875 0.005060108) (0.001012261 0.02401131 0.005072361) (0.003539286 0.02301041 0.006066903) (0.006563545 0.02101567 0.004031357) (0.006554671 0.02000734 0.004543449) (0.006054311 0.02100787 0.004546166) (0.007093683 0.02099405 0.004498777) (0.006676908 0.02227416 0.00467203) (0.006629257 0.02102057 0.005129926) (-0.005562859 0.02500803 0.004044621) (-0.005541147 0.02400523 0.004531389) (-0.006135187 0.02523363 0.004633823) (-0.005057409 0.02501043 0.004557033) (-0.005682381 0.02628906 0.00472447) (-0.005688505 0.02525395 0.005153389) (-9.479836e-07 0.026015 0.005090501) (-0.001517398 0.02701714 0.006082023) (-0.0005069624 0.02702017 0.006108526) (0.0005040031 0.02701472 0.006106614) (0.001513473 0.02701283 0.006073571) (0.005050159 0.02501434 0.004538087) (0.004538051 0.02501392 0.005047231) (0.006619071 0.02501842 0.004010628) (0.00657918 0.02398844 0.004493249) (0.006118851 0.0252317 0.004634981) (0.006332569 0.02574412 0.004346286) (0.006273117 0.02471294 0.004836478) (-0.005510161 0.02899969 0.004004625) (-0.005498615 0.02797626 0.004498562) (-0.005107058 0.02900822 0.0045051) (-0.004045226 0.02900812 0.004555739) (-0.003552599 0.03001562 0.00455865) (-0.003520873 0.02901188 0.005033759) (0.00253781 0.02901899 0.005088506) (0.004566441 0.02903045 0.004067639) (0.00454246 0.02801062 0.004553191) (0.004058051 0.02902835 0.004583908) (0.005042859 0.02902461 0.004533344) (0.004629651 0.03000855 0.004616388) (0.004536578 0.02903385 0.005073891) (-0.003798865 0.03273463 0.004312852) (-0.004292181 0.03273724 0.003820383) (-0.004334173 0.03170864 0.004326217) (-0.003612335 0.03322979 0.004116759) (-0.003606582 0.03222886 0.004595658) (-0.002998509 0.03319054 0.004614163) (-0.003267599 0.03367985 0.004296146) (-0.00334242 0.03264666 0.004765343) (-0.001512497 0.03303147 0.004084225) (-0.001511466 0.03202167 0.004565618) (-0.002016953 0.03301781 0.004568682) (-0.001001295 0.03301838 0.004549359) (-0.001594985 0.03430718 0.004769562) (-0.001638093 0.03331047 0.005172555) (0.001018265 0.03302488 0.004565095) (0.0005111436 0.03402028 0.004552514) (0.0005069193 0.03300844 0.005029637) (0.002533528 0.03303424 0.004093313) (0.002523413 0.0320241 0.004560673) (0.002027078 0.0330294 0.004587296) (0.002999963 0.03319435 0.004647963) (0.002522506 0.03401803 0.004559952) (0.002515738 0.03300648 0.005027932) (0.004315784 0.0327108 0.003818308) (0.004327796 0.03174623 0.004318292) (0.003823904 0.03273724 0.004331549) (-0.001353365 0.03566821 0.004234669) (0.0004990436 0.03677552 0.003840947) (0.0005018176 0.03580628 0.004407935) (-0.001496609 -0.03097907 0.006086307) (-0.0009847774 -0.03075107 0.006345887) (-0.001500946 -0.03000189 0.006419732) (0.0005034217 -0.03125591 0.00616115) (4.00439e-06 -0.03076802 0.00639273) (0.0009807619 -0.03073871 0.006350024) (0.0005017312 -0.03001146 0.006559258) (0.002476391 -0.03075554 0.005856235) (0.002330992 -0.02969059 0.006315461) (-0.003659057 -0.02726928 0.006205897) (-0.003385142 -0.02774968 0.0063815) (-0.003874319 -0.02673594 0.006385064) (-0.00303006 -0.02703054 0.006643025) (-0.003540728 -0.02602325 0.006635601) (-0.001505219 -0.02800402 0.006529119) (-0.002011456 -0.02700373 0.006546664) (-0.001006587 -0.0270154 0.006572823) (-0.001522321 -0.02602271 0.006592849) (-0.001508428 -0.02703444 0.007146807) (0.0005038656 -0.02801391 0.006581007) (-6.164914e-07 -0.02701547 0.006622322) (0.001008549 -0.02702324 0.00659194) (0.0005052042 -0.02601418 0.00659093) (0.0005016426 -0.02725693 0.007212027) (0.002529463 -0.02702453 0.006084692) (0.002501657 -0.02800451 0.006621485) (0.002011097 -0.0270182 0.006559784) (0.003014734 -0.02702706 0.006637415) (0.002509815 -0.02601227 0.006554841) (0.00249515 -0.02697077 0.006930919) (0.004396428 -0.02699891 0.005899398) (0.003867942 -0.02674165 0.006356427) (0.004347955 -0.02574029 0.006354618) (-0.006328966 -0.02073049 0.005855337) (-0.005839441 -0.02074279 0.00632508) (-0.00550281 -0.02299972 0.005998718) (-0.00500878 -0.02301546 0.006424849) (-0.005388542 -0.02199497 0.006396803) (-0.003527202 -0.02400849 0.006540477) (-0.004011944 -0.02300211 0.006523234) (-0.00301824 -0.0230139 0.006562467) (-0.003518604 -0.02200717 0.006554874) (-0.003629804 -0.02326241 0.007166707) (-0.001511029 -0.02301009 0.007078349) (0.0004995259 -0.02300493 0.007058113) (0.002520432 -0.02400758 0.006561268) (0.00302328 -0.02300653 0.006558551) (0.002508196 -0.0229996 0.007030158) (0.004520219 -0.0230041 0.006046304) (0.004491408 -0.02398975 0.006577687) (0.004010155 -0.02300423 0.006530252) (0.00500341 -0.02301381 0.006416795) (0.004664078 -0.02228484 0.006696852) (0.004393047 -0.02298003 0.006891546) (0.006310253 -0.02072033 0.005830243) (0.005831398 -0.02072087 0.006326088) (-0.005583887 -0.01997174 0.006581437) (-0.006000709 -0.01900844 0.00641391) (-0.005021694 -0.0190009 0.00653192) (-0.005660707 -0.01826674 0.006675553) (-0.005407602 -0.01901502 0.006899932) (-0.003519488 -0.01900341 0.007063026) (0.002519019 -0.01900823 0.007067784) (0.004522884 -0.02000328 0.006539249) (0.005022825 -0.01900318 0.006531006) (0.004511846 -0.01900188 0.007017931) (0.006431243 -0.01903036 0.00592414) (0.005923745 -0.01902607 0.006421576) (0.006332311 -0.01772449 0.006336446) (-0.007324641 -0.01471627 0.005824918) (-0.006865902 -0.01496607 0.006349863) (-0.005525736 -0.01600279 0.006534088) (-0.005999719 -0.01499999 0.006503694) (-0.005032999 -0.0150068 0.006562025) (-0.005520313 -0.01400464 0.006534351) (-0.005652875 -0.0152834 0.007165012) (1.24015e-07 -0.01400549 0.007066311) (-0.001007051 -0.01200346 0.00706336) (-0.001512013 -0.01500614 0.00807677) (-0.0005053688 -0.01500999 0.008086382) (-0.001513753 -0.01300566 0.008090606) (-0.0005048258 -0.01300617 0.008054014) (0.001007642 -0.01200402 0.007066654) (0.0005041241 -0.0150054 0.008092803) (0.001509787 -0.01500495 0.008079682) (0.0005057866 -0.01300674 0.008059713) (0.001514625 -0.01301218 0.008098789) (0.005042887 -0.01500166 0.006547944) (0.004528297 -0.01500217 0.007044579) (0.006676241 -0.01527742 0.006153693) (0.006412554 -0.01602586 0.006416069) (0.006161027 -0.01527824 0.006637754) (0.006844419 -0.01472048 0.00631553) (0.006573003 -0.01397092 0.006575224) (0.006322286 -0.01472108 0.006808907) (-0.007432165 -0.01101407 0.006024869) (-0.007003295 -0.01100199 0.006509973) (-0.007360104 -0.00996404 0.006344575) (-0.00607449 -0.01100385 0.006586465) (-0.005541308 -0.01100207 0.007077508) (-0.002013944 -0.0100017 0.007066243) (-0.003020934 -0.008001305 0.00706021) (-0.003518549 -0.01100199 0.008058276) (-0.004027203 -0.01100392 0.007567521) (-0.002520024 -0.01100216 0.008087769) (-0.003532458 -0.00900198 0.008070777) (-0.002518485 -0.009000996 0.008076156) (4.570358e-07 -0.01000258 0.007060702) (-0.001005285 -0.008002124 0.007058325) (-0.001511126 -0.01100236 0.00807522) (0.002013797 -0.0100011 0.007070327) (0.001007237 -0.008001108 0.007061143) (0.001511629 -0.01100307 0.008083923) (0.003023096 -0.008001316 0.007064614) (0.002517203 -0.01100129 0.008103152) (0.004033785 -0.01100033 0.007571064) (0.003519388 -0.01100035 0.008059616) (0.002519395 -0.009000021 0.008089584) (0.003524467 -0.009001065 0.008072696) (0.004541532 -0.01100163 0.007069549) (0.006575689 -0.01100418 0.006093475) (0.006673334 -0.01204193 0.006695184) (0.006059409 -0.0110019 0.006576731) (0.007010517 -0.01099817 0.006513607) (0.006510258 -0.009999907 0.006512745) (0.006501921 -0.01100024 0.006998085) (-0.007628882 -0.00700118 0.006128705) (-0.007382978 -0.008002467 0.006405812) (-0.007183898 -0.00700263 0.006675862) (-0.007435748 -0.006001813 0.006433669) (-0.006070208 -0.007001778 0.006569301) (-0.005548534 -0.007000947 0.007058082) (-0.002012329 -0.006001794 0.007053029) (-0.003023429 -0.004001242 0.007059517) (-0.003518838 -0.007000622 0.008049837) (-0.00352793 -0.005000866 0.008072856) (0.002015773 -0.006000674 0.007057826) (0.003024195 -0.004001013 0.007058747) (0.003526282 -0.007002144 0.008072337) (0.003532773 -0.005001752 0.008074946) (0.006546928 -0.007001676 0.006035962) (0.006532283 -0.00800146 0.00652757) (0.006046568 -0.007001805 0.006544494) (0.007152947 -0.007004166 0.00663891) (0.006575134 -0.006002878 0.006565865) (0.006659262 -0.007001531 0.007143992) (-0.00769545 -0.003002257 0.006207088) (-0.00747062 -0.004015248 0.006472747) (-0.007208734 -0.003285987 0.006663331) (-0.007508078 -0.002001445 0.006504105) (-0.007321658 -0.002723844 0.006855788) (-0.006076922 -0.003004723 0.006577497) (-0.005565001 -0.003001776 0.00708292) (-0.002016152 -0.002001044 0.007046962) (-0.003024551 -5.063869e-07 0.007060236) (-0.003536563 -0.003001565 0.008093096) (-0.003535144 -0.001003839 0.008085507) (0.00201461 -0.002000226 0.007046467) (0.003024258 1.206859e-07 0.007060331) (0.003533 -0.003001674 0.008088816) (0.003529534 -0.001001212 0.008080654) (0.0065915 -0.002999769 0.006075411) (0.006611284 -0.004002366 0.006594445) (0.006095396 -0.003002949 0.006593845) (0.007197631 -0.003246528 0.006666) (0.006586177 -0.002005171 0.006566911) (0.006723874 -0.003045959 0.007230681) (-0.007666155 0.001268973 0.006195195) (-0.00756749 -3.574314e-07 0.006542048) (-0.00781904 0.0007278487 0.006317502) (-0.006989653 0.001000324 0.006487178) (-0.007518533 0.002015015 0.006501508) (-0.007307211 0.0009986561 0.006795413) (-0.005534572 0.001003146 0.007060401) (-0.002016253 0.002000314 0.007047424) (-0.0030259 0.0040012 0.007062323) (-0.003530963 0.0009998834 0.008088598) (-0.003540295 0.003001289 0.00809631) (0.002016399 0.002000383 0.007050762) (0.003026846 0.004000976 0.007065477) (0.003532271 0.001001481 0.008088749) (0.003539034 0.003001725 0.008092933) (0.006968383 0.0009986639 0.006465071) (0.006464823 0.0009999196 0.006964837) (0.007817056 0.000967706 0.006314479) (-0.007681491 0.004999341 0.006168566) (-0.007433769 0.003999672 0.006523704) (-0.007227172 0.005038174 0.006703491) (-0.007432766 0.006002268 0.006430256) (-0.006093638 0.005002621 0.006596857) (-0.005573097 0.005001782 0.007086704) (-0.002014596 0.006001494 0.007054966) (-0.003021142 0.00800162 0.007060694) (-0.00353081 0.005002277 0.008078095) (-0.003520677 0.007001136 0.008063586) (-0.002516378 0.007002923 0.008071685) (-0.001006836 0.008002305 0.00705916) (0.00201651 0.006001019 0.007061355) (0.001008065 0.008001838 0.007062269) (0.003025767 0.008001996 0.007071483) (0.003528263 0.005000997 0.008080674) (0.003524084 0.007001989 0.008073246) (0.006607523 0.005002422 0.006092193) (0.006606378 0.004001032 0.006611121) (0.006101713 0.005000766 0.006609617) (0.007235211 0.005047231 0.00673591) (0.006618098 0.006003307 0.006612945) (0.006736276 0.005026421 0.007227357) (-0.00759672 0.008984732 0.006085373) (-0.007392187 0.007999641 0.006389875) (-0.007126859 0.008995615 0.006620161) (-0.007368238 0.009968537 0.006348641) (-0.006034384 0.009002087 0.006536892) (-0.005527521 0.009003369 0.007032954) (-0.002012249 0.01000156 0.007062203) (-0.003526897 0.00900048 0.008066346) (-0.004021589 0.01100202 0.007556851) (-0.002513885 0.009001207 0.008066622) (-0.003514722 0.01100143 0.008045082) (-0.002516023 0.01100132 0.008079453) (3.856507e-07 0.01000253 0.007061339) (-0.00100586 0.01200199 0.007062495) (-0.001508326 0.01100221 0.00806982) (0.002016059 0.01000299 0.007071498) (0.001006869 0.01200318 0.007065489) (0.001510976 0.01100494 0.008077474) (0.002522088 0.009002987 0.008090103) (0.004030287 0.01100137 0.007566105) (0.003524712 0.009003381 0.008080465) (0.002521995 0.01100435 0.008096484) (0.003522331 0.01100129 0.008059637) (0.006545175 0.009002555 0.006040122) (0.006563513 0.008002789 0.006565242) (0.006044077 0.009002628 0.006548079) (0.007131698 0.008999359 0.006617393) (0.006519116 0.01000059 0.006514728) (0.006621385 0.008998783 0.00712579) (-0.00738855 0.01300128 0.005877608) (-0.006918812 0.01300481 0.006420212) (-0.006045685 0.01300268 0.006542366) (-0.005527767 0.01400404 0.006534966) (-0.005521017 0.0130017 0.007032878) (-2.762754e-07 0.01400222 0.007068209) (-0.001509446 0.01300445 0.008094057) (-0.0005037111 0.01300137 0.008059784) (-0.001507496 0.01500383 0.008078971) (-0.0005039692 0.0150013 0.008091576) (0.0005022452 0.01300275 0.008061666) (0.001510877 0.01300641 0.008099511) (0.0005014985 0.01500581 0.008096746) (0.001507367 0.01500312 0.008082816) (0.004530637 0.01300215 0.007055066) (0.006553396 0.0130049 0.006049269) (0.006666307 0.01227475 0.006652759) (0.006050534 0.01300503 0.006555529) (0.006921808 0.0130136 0.006426198) (0.006599521 0.01397979 0.006606669) (0.006428218 0.01301299 0.006917499) (-0.00553389 0.01600522 0.006539061) (-0.00609866 0.01701949 0.006603633) (-0.005033428 0.01700681 0.006582902) (-0.005680066 0.01826889 0.006662956) (-0.0055073 0.01699092 0.00709702) (-0.003529222 0.01700661 0.007067536) (0.005038664 0.01700496 0.006568794) (0.004546077 0.01700442 0.007066006) (0.006597125 0.01697761 0.006094968) (0.006440499 0.0160303 0.00644034) (0.006097972 0.01697804 0.006597234) (0.006350203 0.01772468 0.006330192) (-0.005841232 0.02073058 0.006336699) (-0.0063181 0.02072607 0.005857202) (-0.00566191 0.02127366 0.006172222) (-0.005588413 0.01997286 0.00658519) (-0.005124954 0.02124787 0.006638615) (-0.005386004 0.02199455 0.006399809) (-0.005317409 0.02070396 0.00680121) (-0.00402755 0.02100375 0.00659001) (-0.003531371 0.02200762 0.006555716) (-0.003522824 0.02100206 0.007058859) (-0.001512243 0.02100804 0.007081541) (0.0005077307 0.02100578 0.007073609) (0.002514271 0.02100299 0.007042559) (0.004537906 0.02100615 0.006047107) (0.004522234 0.02000287 0.006527808) (0.004022601 0.02100393 0.006534059) (0.005131609 0.02125768 0.006622963) (0.004677287 0.0222845 0.006686382) (0.004609596 0.02100635 0.007091909) (0.006309009 0.0207285 0.005837908) (0.005839626 0.02072862 0.006318533) (-0.005344816 0.02474018 0.005804154) (-0.004804611 0.02473605 0.006309067) (-0.003532012 0.02501355 0.006092778) (-0.003516435 0.02400409 0.006549206) (-0.004027633 0.02502533 0.006635967) (-0.003019827 0.02500579 0.006556329) (-0.003531685 0.02602655 0.006642182) (-0.003502103 0.02498791 0.006942657) (-0.002018458 0.02501141 0.006578541) (-0.001526486 0.02601489 0.006594387) (-0.001509016 0.02500475 0.007038654) (0.000502345 0.02600994 0.006580149) (0.0005049399 0.02500608 0.007067874) (0.002535691 0.0250201 0.006091924) (0.002535966 0.02401467 0.006563205) (0.002020316 0.02501363 0.006565869) (0.003018823 0.02501272 0.006563414) (0.002513427 0.0260146 0.006558011) (0.002664542 0.02526547 0.007176583) (0.004631391 0.02525287 0.006144245) (0.004488746 0.02398941 0.006577837) (0.004019632 0.02502056 0.006622434) (0.00482777 0.02471031 0.006316871) (0.00436572 0.02573503 0.00635179) (-0.003492996 0.02898494 0.005899322) (-0.003378859 0.02774791 0.006378834) (-0.002875041 0.02874853 0.006353192) (-0.001507145 0.02900171 0.006041878) (-0.001505152 0.02800407 0.006528244) (-0.001995184 0.02897529 0.006572852) (-0.0009988315 0.02925086 0.006650594) (-0.001498271 0.03000395 0.006416049) (-0.001482176 0.02873719 0.006833951) (0.0005025507 0.02902656 0.006112059) (0.0004999053 0.02801081 0.006561793) (-2.816797e-06 0.02925257 0.00670854) (0.001003773 0.02924633 0.00666361) (0.0004998469 0.03001213 0.006558032) (0.0005007293 0.02876964 0.006922787) (0.002644059 0.02926036 0.006177693) (0.002532685 0.02801693 0.006620517) (0.001996058 0.02898134 0.006590012) (0.002874212 0.0287437 0.00637115) (0.002365523 0.0296912 0.006318349) (0.0003755667 0.03265285 0.005780111) (-0.001489145 -0.02299467 0.008007734) (-0.001361319 -0.02170358 0.008329173) (0.0005053683 -0.02302661 0.008120331) (-2.839183e-07 -0.02270224 0.008305228) (0.0004987652 -0.02196712 0.008365496) (0.002461811 -0.02295831 0.007848641) (-0.00351552 -0.01900489 0.00802062) (-0.002882604 -0.01897639 0.008348926) (-0.003361946 -0.01774095 0.008350837) (-0.001504111 -0.01900277 0.008066328) (-0.001499084 -0.01998984 0.008497185) (-0.002001854 -0.01900963 0.008535069) (-0.001009492 -0.0190342 0.008652192) (-0.001505886 -0.01824164 0.008666904) (0.0005018353 -0.01902067 0.008087086) (0.0005027206 -0.02003888 0.008600513) (1.231197e-06 -0.01924041 0.008664345) (0.001000277 -0.01903212 0.008660681) (0.0004980582 -0.01800333 0.008520909) (0.0004815797 -0.01872941 0.008859111) (0.002506176 -0.01900146 0.008010438) (0.002477813 -0.01995615 0.008364072) (0.00200177 -0.01901101 0.008528609) (0.002887122 -0.01897353 0.00835572) (0.002503448 -0.0180159 0.008519958) (-0.003511582 -0.01499974 0.008031289) (-0.003482118 -0.01598218 0.008470647) (-0.003980106 -0.01499339 0.00838041) (-0.003117899 -0.01502094 0.008648229) (-0.003516239 -0.0140024 0.0086122) (-0.001505063 -0.01600144 0.008542294) (-0.002007036 -0.01500268 0.008541779) (-0.001011826 -0.01500854 0.008585721) (-0.001518342 -0.01400852 0.008584728) (-0.001524399 -0.015025 0.009109595) (0.0004998132 -0.01600244 0.008589744) (2.586718e-06 -0.01500952 0.008607252) (0.001007505 -0.01500311 0.008587184) (0.0005082813 -0.01400551 0.008548467) (0.0004958272 -0.01520926 0.009168269) (0.002508149 -0.01500131 0.008046586) (0.002637362 -0.01625494 0.008650859) (0.002003299 -0.01500239 0.008537107) (0.00311541 -0.01502209 0.00863126) (0.002507645 -0.01400123 0.008549615) (0.002474922 -0.01497799 0.008957286) (0.004486991 -0.01498767 0.008067455) (0.003982744 -0.0149951 0.008388235) (0.004337316 -0.01396179 0.00830539) (-0.005412351 -0.01101688 0.007904843) (-0.00486607 -0.01096741 0.008334008) (-0.00365182 -0.01226976 0.008685056) (-0.004107377 -0.0109897 0.008631193) (-0.003016943 -0.01100283 0.008554238) (-0.003518521 -0.01000183 0.008545716) (-0.003470628 -0.01098428 0.008966208) (-0.00151012 -0.01200261 0.008572675) (-0.002013515 -0.01100158 0.008568302) (-0.001006479 -0.01100315 0.008566438) (-0.001510351 -0.01000158 0.008575608) (-0.00150408 -0.01100152 0.009025177) (0.0005040669 -0.01200476 0.008547208) (0.001006405 -0.01100347 0.008569754) (0.0005021047 -0.01100229 0.009073393) (0.002517305 -0.01200382 0.008587615) (0.002012394 -0.01100019 0.00858185) (0.003012265 -0.0110021 0.008565464) (0.002518481 -0.009992491 0.008630671) (0.002610186 -0.01102682 0.009168501) (0.004672972 -0.01126486 0.008186911) (0.00439861 -0.01201588 0.008395662) (0.004101897 -0.01098906 0.008602201) (0.004842797 -0.01072875 0.008329534) (0.004499861 -0.01000039 0.008499762) (-0.005580054 -0.006985771 0.008090404) (-0.005350547 -0.007726805 0.008297205) (-0.004990083 -0.006984363 0.008474258) (-0.005361317 -0.00599847 0.008290126) (-0.003507043 -0.008000818 0.008528062) (-0.004008688 -0.006999776 0.008518174) (-0.003007312 -0.007000794 0.008535931) (-0.003519603 -0.00600048 0.008550212) (-0.003603647 -0.006985422 0.009115894) (0.002525923 -0.008001662 0.008587292) (0.003046163 -0.007002618 0.008619977) (0.002527182 -0.007001433 0.009082218) (0.004516428 -0.007002706 0.008036816) (0.004600995 -0.007985778 0.008598778) (0.004009719 -0.007001202 0.008532947) (0.004985727 -0.006984126 0.008476184) (0.004678379 -0.006004688 0.008672234) (0.004349403 -0.006999332 0.00882365) (-0.005622989 -0.002993169 0.008186267) (-0.005352403 -0.004000428 0.008346514) (-0.005036672 -0.003015763 0.008571069) (-0.005374417 -0.002001119 0.008394771) (-0.003527551 -0.0040014 0.008603993) (-0.004049709 -0.003000674 0.008605148) (-0.003029657 -0.003001378 0.008587126) (-0.003540373 -0.002002375 0.00861274) (-0.003673209 -0.003003643 0.00924651) (0.003025284 -0.003001169 0.0085815) (0.0025181 -0.002999895 0.00908951) (0.004547199 -0.003001063 0.008100495) (0.004671356 -0.004008014 0.008745516) (0.004046733 -0.003000711 0.008603643) (0.005010647 -0.003016317 0.008548094) (0.004657359 -0.002275742 0.00868755) (0.004420443 -0.003014978 0.00892612) (-0.00566897 0.001004142 0.008192551) (-0.005409804 1.835778e-07 0.008404671) (-0.00508073 0.0009866336 0.008588369) (-0.005382812 0.001999966 0.008380579) (-0.003524031 -2.28454e-06 0.008558736) (-0.004015539 0.001001082 0.008546204) (-0.003026413 0.0009996165 0.008593957) (-0.003545537 0.002002289 0.008615562) (-0.003676227 0.001273931 0.00920056) (0.003022865 0.001001377 0.008585736) (0.002522494 0.001000326 0.009100997) (0.004554696 0.001002378 0.008095528) (0.004502718 -6.650221e-07 0.008509062) (0.004031431 0.00100086 0.008572539) (0.005002527 0.001003529 0.008602849) (0.004687654 0.00204121 0.008758886) (0.00449352 0.0009997916 0.008912769) (0.006331393 0.0009698642 0.007839723) (-0.005637261 0.004999703 0.008131849) (-0.005344293 0.00399952 0.00835128) (-0.005019106 0.005000544 0.008524422) (-0.005336358 0.00599177 0.008315357) (-0.003544284 0.004001925 0.008602306) (-0.004039328 0.005001438 0.008579003) (-0.003023187 0.005002759 0.008564689) (-0.003516558 0.006001431 0.008557085) (-0.003647831 0.005005804 0.009206103) (0.00302108 0.005001115 0.008573387) (0.002518825 0.005001085 0.009080137) (0.004532761 0.004999618 0.008079246) (0.004690936 0.004001376 0.00871595) (0.004024348 0.005000028 0.008576376) (0.005008761 0.004999913 0.008514464) (0.004642182 0.006000736 0.008694202) (0.004400458 0.004999671 0.008854574) (-0.005497762 0.008999118 0.007996005) (-0.005317209 0.007742799 0.008316397) (-0.00489136 0.009014002 0.008385746) (-0.003516999 0.008001082 0.00854751) (-0.004151409 0.009275188 0.008673883) (-0.00301632 0.008999882 0.008557653) (-0.003510473 0.01000164 0.008539767) (-0.003523773 0.009003927 0.009024216) (-0.002007081 0.0090016 0.008561792) (-0.001505673 0.01000228 0.008570414) (-0.001505039 0.009002286 0.009095888) (0.0005012185 0.009010496 0.009127634) (0.002521535 0.008003326 0.00857934) (0.002015419 0.009003516 0.008580393) (0.003020405 0.009001304 0.008585265) (0.002528097 0.01000466 0.008629098) (0.002507167 0.00900117 0.009020824) (0.004535258 0.00900135 0.008060672) (0.004601445 0.007985907 0.008615476) (0.004159702 0.009276911 0.008681834) (0.004902992 0.009015654 0.008406936) (0.004513246 0.01001441 0.008540452) (0.00434085 0.00871595 0.008832971) (-0.005347295 0.01295783 0.007849576) (-0.003514678 0.0130003 0.008041163) (-0.003650109 0.01227079 0.00866036) (-0.004000563 0.01301377 0.008510205) (-0.003004115 0.01299983 0.008516047) (-0.003512954 0.01400528 0.008608934) (-0.003378341 0.01297534 0.008865859) (-0.00150826 0.01200334 0.008561041) (-0.002012989 0.01300414 0.008588156) (-0.001007322 0.01300336 0.00855954) (-0.001498862 0.01400117 0.008595524) (-0.00164464 0.01327539 0.00918442) (0.0005032335 0.0120029 0.008545667) (-5.879518e-07 0.01299989 0.008525887) (0.001004746 0.01300306 0.008561466) (0.0004984033 0.01400364 0.008550529) (0.0005015413 0.01300072 0.008984344) (0.002518977 0.01300646 0.008080019) (0.002515752 0.0120039 0.008571968) (0.002007396 0.01301045 0.008589832) (0.003005878 0.01300145 0.008525442) (0.002515581 0.01400411 0.008559119) (0.002520377 0.01302084 0.009078198) (0.004633486 0.01303343 0.008156705) (0.004490896 0.01199923 0.008399493) (0.004003411 0.0130146 0.008522024) (0.004356759 0.01395933 0.008346809) (-0.003629498 0.01725651 0.008162952) (-0.003481234 0.01598047 0.008466483) (-0.003842031 0.01671932 0.008314216) (-0.003000318 0.01699891 0.008502702) (-0.003364788 0.01774965 0.008344372) (-0.001508444 0.01700814 0.00805781) (-0.001504304 0.01600409 0.008540423) (-0.002140595 0.01725955 0.008658119) (-0.001003237 0.01700065 0.008528765) (-0.001509929 0.01823394 0.008668083) (-0.001488483 0.01695515 0.008944273) (0.0005032248 0.01700188 0.008076806) (0.0005045972 0.01600675 0.008596105) (-6.181651e-07 0.01700267 0.008554265) (0.001002122 0.01700286 0.008524916) (0.0005018334 0.01800083 0.008523027) (0.0005016183 0.01700006 0.009028581) (0.00250892 0.01700127 0.008038134) (0.00262496 0.01626167 0.008665116) (0.002131463 0.01726304 0.008666234) (0.003000145 0.01700071 0.008509219) (0.002501084 0.01801471 0.008515261) (0.002388522 0.01674544 0.008817287) (0.004400448 0.01701379 0.007904176) (0.003840493 0.01672073 0.008307516) (-0.003365019 0.02097516 0.007846847) (-0.001619725 0.02129914 0.008189276) (-0.001498299 0.01999001 0.008498805) (-0.001992288 0.02076361 0.008350393) (-0.000991984 0.02095652 0.008451942) (-0.001370169 0.02169831 0.008322566) (0.0005023588 0.02100129 0.008017264) (0.0005059629 0.02004182 0.008600655) (1.013045e-06 0.02099969 0.008488327) (0.0009904676 0.020957 0.008455476) (0.0004994349 0.02196452 0.008366913) (0.00249701 0.02101796 0.008100933) (0.002476947 0.0199567 0.008338085) (0.001983921 0.0207603 0.008359571) (-0.001355072 0.02468605 0.007802461) (0.0005001303 0.02475864 0.007863228) (0.0003554278 0.008712706 0.009815289) (-0.0004968757 -0.01199947 -0.008518088) (0.0005026277 -0.01199981 -0.008518739) (0.002010529 -0.009001197 -0.00855833) (0.002011055 0.007002748 -0.008586818) (0.002009719 0.009001764 -0.008540887) (0.0004998847 0.01199992 -0.008518493) (-0.002014806 0.0070032 0.008587351) (-0.001356051 -0.02469716 -0.007806496) (-0.000500383 -0.02475716 -0.007855272) (0.0004972792 -0.0247595 -0.007861584) (0.001357998 -0.02470466 -0.007789355) (-0.002476636 -0.0229451 -0.007826023) (-0.003370031 -0.02097474 -0.007846111) (-0.001873885 -0.02074063 -0.008326066) (-0.002364079 -0.01973733 -0.008334069) (-0.002502982 -0.02101514 -0.008039868) (-0.001359629 -0.0217168 -0.008289073) (-0.000495926 -0.0217559 -0.008358211) (-0.0004955933 -0.02305499 -0.008075857) (-0.0009980365 -0.02093171 -0.008427465) (-0.001489708 -0.01997844 -0.008469374) (-0.001643874 -0.02124941 -0.008162877) (4.032768e-07 -0.0209444 -0.008465173) (-0.0005009681 -0.02003738 -0.008564399) (-0.0004994627 -0.02099581 -0.008004154) (0.0004987119 -0.02175782 -0.008354046) (0.001347781 -0.02170236 -0.008325475) (0.001497502 -0.02299435 -0.007981209) (0.0009815411 -0.02093305 -0.008437794) (0.0005027616 -0.02003537 -0.008571066) (0.0005004926 -0.02100035 -0.008004767) (0.001864999 -0.02073355 -0.008333807) (0.001493022 -0.01998229 -0.008466002) (0.001641487 -0.0212716 -0.00814924) (0.002475602 -0.01977412 -0.008355179) (0.0025129 -0.02104635 -0.008060713) (0.003378137 -0.02097307 -0.007835029) (-0.004317132 -0.01871412 -0.007817686) (-0.004390174 -0.01701232 -0.007876054) (-0.002365022 -0.01673357 -0.008818535) (-0.00286681 -0.0187426 -0.008346892) (-0.003353975 -0.01772088 -0.008327725) (-0.002497781 -0.01799951 -0.008501241) (-0.001993376 -0.01899537 -0.008497753) (-0.002640638 -0.01927016 -0.008189887) (-0.002984719 -0.01699662 -0.008486973) (-0.003490615 -0.01600131 -0.008411619) (-0.003629409 -0.01702212 -0.008160081) (-0.00213509 -0.01726418 -0.008656233) (-0.002627329 -0.01625519 -0.008657252) (-0.00250724 -0.0170015 -0.008033807) (-0.0004829068 -0.01875162 -0.00884239) (-0.001489121 -0.01694595 -0.00894612) (-0.0004992102 -0.01699311 -0.009003285) (-0.001009939 -0.01902948 -0.008647468) (-0.001512281 -0.018244 -0.008668341) (-0.0004999764 -0.01799757 -0.008521992) (2.666816e-06 -0.01925143 -0.00865077) (-0.000500804 -0.01901346 -0.008078506) (-0.0009997416 -0.01699702 -0.008525692) (-0.001501028 -0.01600039 -0.008530668) (-0.001506116 -0.01700108 -0.008047098) (7.128958e-07 -0.01700267 -0.008536979) (-0.0005010676 -0.01600549 -0.00858303) (-0.0005015238 -0.01700273 -0.008058049) (0.0004998568 -0.01699444 -0.009008246) (0.001488815 -0.01695204 -0.008944814) (0.000994077 -0.01903223 -0.008649631) (0.000503366 -0.01800712 -0.008517104) (0.001512038 -0.01824191 -0.008672242) (0.002001265 -0.01900018 -0.008512089) (0.001504513 -0.01900213 -0.008048825) (0.001002653 -0.01700269 -0.008521212) (0.0005027815 -0.0160021 -0.008586447) (0.0005036482 -0.0170051 -0.008058259) (0.002132381 -0.01726702 -0.008655437) (0.001502725 -0.01600343 -0.008536372) (0.00150506 -0.0170084 -0.008053218) (0.002357872 -0.01673777 -0.008832039) (0.002886793 -0.01896043 -0.008344648) (0.002504327 -0.0180148 -0.008533392) (0.003360555 -0.01774696 -0.00833753) (0.003515754 -0.01900727 -0.008020214) (0.003000939 -0.0170008 -0.008506907) (0.002633338 -0.0162527 -0.00866525) (0.002512275 -0.01700545 -0.008045506) (0.003823013 -0.01671819 -0.008309449) (0.003479587 -0.01598545 -0.008478832) (0.0036303 -0.01725491 -0.008144869) (0.004400959 -0.0170119 -0.007897447) (-0.004350539 -0.01372905 -0.008344454) (-0.003891409 -0.01498011 -0.008393267) (-0.004507012 -0.01500193 -0.008017845) (-0.005333432 -0.01296286 -0.007850249) (-0.004005484 -0.01299895 -0.00852112) (-0.004491487 -0.01199788 -0.008412612) (-0.00463902 -0.01302496 -0.008146884) (-0.002470821 -0.01497605 -0.008951026) (-0.003385875 -0.01297561 -0.008863368) (-0.002508849 -0.01300426 -0.009053979) (-0.001852141 -0.01271144 -0.009318102) (-0.003120905 -0.01502389 -0.008634889) (-0.003511257 -0.01400587 -0.0086178) (-0.002510247 -0.01400128 -0.008533389) (-0.00200227 -0.0150003 -0.008529279) (-0.002513825 -0.01500338 -0.008045269) (-0.003003173 -0.01300177 -0.008521616) (-0.003522427 -0.01300267 -0.008071234) (-0.002007757 -0.01300204 -0.008556949) (-0.002514949 -0.01300245 -0.008065991) (-0.0004948913 -0.01374448 -0.00936499) (-0.0004975039 -0.01506381 -0.009173422) (-0.0009920513 -0.01293216 -0.009395558) (-0.001620489 -0.01324458 -0.009167887) (-0.0004984116 -0.01299831 -0.008984702) (6.536465e-07 -0.01293685 -0.00942211) (-0.001002207 -0.01500461 -0.008603779) (-0.001504673 -0.01400782 -0.008575187) (-0.0004969634 -0.01400047 -0.008612266) (2.92856e-06 -0.01500778 -0.008643129) (-0.0009965571 -0.01300086 -0.008533719) (2.764614e-06 -0.01300274 -0.00853799) (0.00133607 -0.01370774 -0.00931549) (0.001501213 -0.01501067 -0.009091901) (0.0009887372 -0.01293026 -0.009382855) (0.0005011748 -0.01300146 -0.008987695) (0.001632591 -0.01325468 -0.009153208) (0.001860117 -0.01273246 -0.009319019) (0.001007039 -0.01500297 -0.008602192) (0.000506335 -0.0140103 -0.008624558) (0.001500371 -0.01400416 -0.008568562) (0.002004665 -0.01500173 -0.008531517) (0.001003938 -0.01300025 -0.008537007) (0.002011134 -0.01300144 -0.008554822) (0.002528131 -0.01302696 -0.009067344) (0.003370542 -0.01297672 -0.008863683) (0.003112802 -0.01502334 -0.008648071) (0.002513399 -0.01400118 -0.008548055) (0.003516011 -0.01400594 -0.008610646) (0.003889702 -0.01500911 -0.008375578) (0.003513445 -0.01500366 -0.008049784) (0.003007868 -0.0130016 -0.008517674) (0.00251069 -0.01200095 -0.008553716) (0.002521258 -0.01300536 -0.008064284) (0.004006177 -0.01300082 -0.008509737) (0.003646554 -0.01227687 -0.008669513) (0.00353091 -0.01300939 -0.008050462) (0.004349571 -0.01372744 -0.008345568) (0.004491587 -0.01199766 -0.008409763) (0.004642805 -0.01302042 -0.008133706) (0.005355054 -0.01271894 -0.007843085) (-0.004344507 -0.008727397 -0.0088202) (-0.004857951 -0.01096537 -0.00834287) (-0.004506973 -0.01001368 -0.008526946) (-0.004511212 -0.01100037 -0.00801956) (-0.004890728 -0.009003914 -0.00839032) (-0.005519301 -0.009002561 -0.007935191) (-0.004591715 -0.007984788 -0.008607091) (-0.004537594 -0.009002278 -0.008048434) (0.003466996 -0.0109842 -0.008950383) (0.002872779 -0.008964737 -0.009345013) (0.002504714 -0.009000234 -0.008993835) (0.003517633 -0.009005418 -0.009013282) (0.003007899 -0.01100204 -0.008541288) (0.002512617 -0.01000286 -0.00857057) (0.0035084 -0.0100013 -0.008524142) (0.004114412 -0.01098809 -0.008621563) (0.003022093 -0.009001487 -0.00856393) (0.002517881 -0.008001088 -0.008567639) (0.004143423 -0.009269982 -0.008647472) (0.00350969 -0.00800197 -0.008546419) (0.004353251 -0.008716148 -0.008790075) (0.004865241 -0.01096319 -0.008343787) (0.004507817 -0.01001406 -0.008531487) (0.005407568 -0.01101381 -0.007902639) (0.004882224 -0.00900205 -0.008381353) (0.004590271 -0.007982644 -0.008595727) (0.004523966 -0.009001682 -0.008046256) (0.005498438 -0.008985823 -0.007994688) (-0.00434309 -0.006998067 -0.008830513) (-0.00437942 -0.005000211 -0.00884881) (-0.005014665 -0.006999859 -0.008431943) (-0.005330676 -0.005963245 -0.008348911) (-0.004652773 -0.006001403 -0.008683813) (-0.004551048 -0.007001694 -0.008084882) (-0.005020415 -0.004999467 -0.008537483) (-0.005357551 -0.004000539 -0.008325632) (-0.005602147 -0.004998741 -0.008106036) (-0.004629353 -0.004004678 -0.008765123) (-0.004539893 -0.005001327 -0.00808155) (0.003348797 -0.005965894 -0.009346486) (0.003520111 -0.00700415 -0.009120217) (0.002964207 -0.004997939 -0.009421916) (0.002512672 -0.005000595 -0.009059219) (0.003642866 -0.005001102 -0.009170908) (0.00303196 -0.006997882 -0.008601861) (0.003519083 -0.006000791 -0.008544413) (0.004013615 -0.007000754 -0.008522922) (0.00301986 -0.005000985 -0.008549722) (0.004035418 -0.005001693 -0.008565826) (0.004372782 -0.005001584 -0.008868785) (0.005010472 -0.006998862 -0.00842154) (0.004666865 -0.006001995 -0.008664707) (0.005354344 -0.005963174 -0.008329953) (0.005498691 -0.007003042 -0.008100178) (0.005011949 -0.004998042 -0.008526006) (0.004679578 -0.004003437 -0.008724132) (0.00454305 -0.005001924 -0.008076001) (0.005372123 -0.00399977 -0.008366615) (0.005618398 -0.004997442 -0.008135329) (-0.006340369 -0.0007264015 -0.007833834) (-0.004401018 -0.003014224 -0.008909627) (-0.00448009 -0.0009864271 -0.008961348) (-0.005037283 -0.00301415 -0.008564925) (-0.005375224 -0.002000927 -0.008381178) (-0.004642103 -0.0022539 -0.008705984) (-0.004544453 -0.002998599 -0.008105524) (-0.005080801 -0.0009878607 -0.00858987) (-0.00540475 2.937577e-06 -0.008412477) (-0.005649956 -0.001002123 -0.00817136) (-0.004508362 5.554566e-07 -0.00851318) (-0.004519025 -0.0009976039 -0.008050508) (0.004476993 -0.0009857676 -0.008950041) (0.005026591 -0.00301769 -0.008570462) (0.004663925 -0.002267933 -0.008695189) (0.005382 -0.002002547 -0.008378342) (0.005666311 -0.002998696 -0.008164043) (0.005074235 -0.0009887556 -0.008583972) (0.004510021 -1.092672e-06 -0.008514976) (0.004516504 -0.00100133 -0.008041466) (0.005380507 2.656415e-06 -0.008364961) (0.005643341 -0.001004102 -0.008169815) (0.006330018 -0.0009651248 -0.007787126) (-0.006346743 0.0007343633 -0.007819053) (-0.0044961 0.0009992645 -0.008914785) (-0.004391314 0.003002585 -0.00889641) (-0.005001681 0.001004001 -0.008604282) (-0.005362636 0.002001073 -0.008387955) (-0.004692354 0.002037511 -0.008753355) (-0.00403492 0.001002967 -0.008609226) (-0.00454177 0.001005704 -0.008110354) (-0.005027751 0.003002611 -0.008551578) (-0.005352147 0.004000153 -0.008340108) (-0.005658635 0.00300151 -0.008159141) (-0.004044709 0.003003033 -0.008600388) (-0.00466503 0.003999528 -0.008715532) (-0.004549828 0.003003575 -0.008098024) (-0.002546895 0.001988915 -0.009650496) (-0.002525882 0.001000212 -0.009121274) (-0.002983074 0.003001959 -0.009496925) (-0.003660841 0.002998786 -0.009256816) (-0.002520744 0.003001338 -0.009109058) (-0.002532266 0.004009232 -0.009611389) (-0.003028767 0.0009992758 -0.008605688) (-0.003546763 0.002000391 -0.008619568) (-0.003030965 0.003001327 -0.008593543) (-0.003550309 0.004003788 -0.008592233) (0.004415416 0.003002193 -0.008937977) (0.004998403 0.001001374 -0.008597465) (0.004693737 0.002040418 -0.008767671) (0.00535507 0.002001138 -0.008360187) (0.005656894 0.001002999 -0.008154579) (0.005024444 0.003001747 -0.00855851) (0.004698988 0.003999947 -0.008740118) (0.00455209 0.003001636 -0.008113208) (0.005352896 0.004001072 -0.008345841) (0.005653161 0.002997137 -0.008154641) (-0.004384815 0.005002408 -0.008834406) (-0.004346541 0.006965885 -0.00883734) (-0.005005806 0.005000551 -0.008502053) (-0.00533515 0.005995873 -0.008299055) (-0.00463541 0.005997447 -0.008655791) (-0.004021153 0.005000793 -0.008554574) (-0.004531453 0.005001546 -0.008057996) (-0.004981142 0.006987903 -0.008472407) (-0.00534436 0.007726331 -0.008321594) (-0.005579997 0.006984397 -0.008085314) (-0.004001954 0.007000221 -0.008509894) (-0.004513934 0.00800223 -0.008597276) (-0.004516453 0.007003488 -0.008029336) (-0.002505998 0.006000712 -0.009553801) (-0.002513268 0.005001703 -0.009078696) (-0.002988092 0.006996314 -0.009374377) (-0.003514532 0.007000987 -0.009109002) (-0.002513392 0.007003024 -0.009056519) (-0.003017776 0.005002853 -0.008563498) (-0.003509014 0.006001584 -0.008549869) (-0.003021174 0.00700601 -0.008572229) (0.003362434 0.005964197 -0.009343341) (0.003646216 0.004998423 -0.009202263) (0.002984597 0.006999843 -0.009389764) (0.002504933 0.006999684 -0.009057654) (0.003514995 0.007002215 -0.009113732) (0.003020795 0.005000587 -0.008563788) (0.002511145 0.006001211 -0.008571138) (0.003521715 0.006001099 -0.008552933) (0.004033252 0.005001436 -0.008572867) (0.003010865 0.006999303 -0.008573962) (0.002508242 0.008001064 -0.008551205) (0.004013914 0.007000164 -0.008513251) (0.003508051 0.008000864 -0.008526622) (0.004342099 0.006997345 -0.008836611) (0.005014632 0.005000578 -0.008523907) (0.004648371 0.006001832 -0.008693142) (0.005342341 0.005993838 -0.008304769) (0.005636404 0.005001589 -0.008156616) (0.004992943 0.006984262 -0.008473779) (0.004597766 0.007984252 -0.008604217) (0.004531546 0.007000815 -0.008041855) (0.005357333 0.007721662 -0.008322466) (0.005582133 0.006986061 -0.008091012) (-0.004897183 0.009013469 -0.008382764) (-0.004509594 0.01000176 -0.008534849) (-0.004537457 0.009005291 -0.008075991) (-0.004834575 0.01096351 -0.008352974) (-0.005400062 0.01100551 -0.007903121) (-0.004485303 0.01199649 -0.008409886) (-0.004510314 0.01100078 -0.008016921) (0.003511915 0.0090035 -0.009004902) (0.002532891 0.01103392 -0.009147138) (0.003460779 0.01098165 -0.008952377) (0.003015373 0.009000088 -0.008544672) (0.002512975 0.01000375 -0.008555014) (0.003506968 0.01000097 -0.008523974) (0.004153286 0.009281907 -0.008654193) (0.00300882 0.01100342 -0.008537165) (0.002513542 0.01200359 -0.008567351) (0.004103639 0.01098935 -0.008614758) (0.003645252 0.01227903 -0.008663903) (0.004897306 0.009014559 -0.008399363) (0.004510716 0.01001191 -0.008527576) (0.005500807 0.008999435 -0.00800276) (0.004850823 0.01096115 -0.008317146) (0.004480997 0.01199874 -0.008387225) (0.004502664 0.01099975 -0.008004438) (0.005407514 0.01101349 -0.007892675) (-0.004355004 0.01372566 -0.008330978) (-0.004003651 0.01300023 -0.008510079) (-0.004635212 0.01302765 -0.008158322) (-0.003891243 0.01498088 -0.008383091) (-0.004511497 0.01500115 -0.008025199) (-0.00250956 0.0130048 -0.009053115) (-0.002478898 0.01497714 -0.008957477) (-0.003006739 0.01300185 -0.008516917) (-0.003513772 0.01400263 -0.008610804) (-0.002518517 0.01400812 -0.008550658) (-0.002520976 0.01300614 -0.0080708) (-0.003123944 0.01502416 -0.008648112) (-0.003498454 0.01600055 -0.008424518) (-0.003514844 0.01500256 -0.008027868) (-0.002631807 0.01625541 -0.008664495) (-0.002516694 0.01500454 -0.008059838) (0.001343685 0.01371764 -0.009306992) (0.001619951 0.0132534 -0.009163214) (0.0005019112 0.01505462 -0.00918227) (0.00150201 0.01501798 -0.009086166) (0.001000328 0.01300315 -0.008537683) (0.0005003784 0.01400226 -0.008614831) (0.001506108 0.01400532 -0.008569189) (0.002005456 0.01300044 -0.008556243) (0.0009978828 0.01500305 -0.008601949) (0.0004993886 0.01600656 -0.008586619) (0.002000946 0.01499962 -0.008523813) (0.0015012 0.01600116 -0.00852945) (0.003366826 0.01297682 -0.008857505) (0.002469267 0.01497624 -0.00894623) (0.00300139 0.01300063 -0.00850825) (0.00250186 0.01400153 -0.008533998) (0.003511771 0.01400063 -0.008602048) (0.003999263 0.01300019 -0.008499728) (0.003517704 0.01300385 -0.008039006) (0.003120048 0.01502114 -0.008628439) (0.002638152 0.01625488 -0.008635642) (0.002507329 0.01500126 -0.008039243) (0.003887706 0.01497685 -0.008375009) (0.003487783 0.01599665 -0.008400695) (0.003508459 0.01500157 -0.008026197) (0.004348601 0.01372515 -0.008340894) (0.005343307 0.01273578 -0.007829356) (0.004498274 0.01500494 -0.008025115) (-0.004392528 0.01701029 -0.007885153) (-0.004323352 0.01872334 -0.007803864) (-0.002365767 0.01674443 -0.008821875) (-0.002990997 0.01699659 -0.008504094) (-0.003356911 0.01772658 -0.008346449) (-0.002501246 0.01799966 -0.008504378) (-0.002128889 0.01726044 -0.008666734) (-0.002512913 0.01700312 -0.008040538) (-0.002861969 0.01874913 -0.008345012) (-0.003499475 0.01900099 -0.008022433) (-0.001996025 0.01899424 -0.008500801) (-0.002377613 0.01974471 -0.00834094) (-0.002635215 0.01925553 -0.008175782) (-0.0005013364 0.01699701 -0.009005372) (-0.0004875643 0.0187385 -0.008844436) (-0.001000683 0.01700147 -0.00852471) (-0.001516997 0.01822827 -0.008656606) (-0.0004989965 0.01800147 -0.008515289) (-1.87823e-06 0.01700449 -0.008539086) (-0.0005088205 0.01700491 -0.008064508) (-0.0009938359 0.01902743 -0.008646806) (-0.001491314 0.0199821 -0.008470736) (-0.001506004 0.01900274 -0.00805051) (-3.571834e-06 0.01925139 -0.008659455) (-0.0005004185 0.02003164 -0.008563838) (-0.000503655 0.01900728 -0.008065323) (0.001483843 0.01695156 -0.008946394) (0.0004810876 0.01874516 -0.00885238) (0.001003246 0.01700158 -0.008520428) (0.0005072346 0.01800376 -0.008517615) (0.001516697 0.01823889 -0.008670701) (0.002131151 0.01725631 -0.008652213) (0.001509566 0.01700372 -0.008046303) (0.001005197 0.01903216 -0.008635758) (0.0004999921 0.02003726 -0.008567668) (0.0005032584 0.01900703 -0.00807086) (0.001992144 0.01899393 -0.008496384) (0.001487997 0.01998028 -0.008468666) (0.001506009 0.01900454 -0.008053314) (0.002984618 0.01699481 -0.008486313) (0.002496316 0.01799862 -0.008496409) (0.003360139 0.01772787 -0.008320857) (0.003624181 0.01702234 -0.008159042) (0.002849629 0.01873576 -0.00833388) (0.002373221 0.01973455 -0.008342559) (0.002634789 0.01925952 -0.008165839) (0.003500962 0.0190007 -0.008001566) (0.004350996 0.01872371 -0.007790925) (-0.001865112 0.02073346 -0.008337849) (-0.002510015 0.02101846 -0.00804474) (-0.002477342 0.02294823 -0.007843565) (-0.0009914819 0.02093005 -0.00841827) (-0.001359073 0.0217158 -0.008310204) (-0.0004979952 0.02174878 -0.008357187) (-6.317748e-07 0.02094598 -0.008460059) (-0.0005012989 0.02099769 -0.008001381) (-0.001497365 0.02299556 -0.007987593) (-0.0004987869 0.02305755 -0.008068716) (0.0009885695 0.02093661 -0.008438969) (0.0004975436 0.02174973 -0.008348348) (0.001337697 0.02169862 -0.008300427) (0.001869723 0.02072958 -0.00834037) (0.00162368 0.02125613 -0.00816352) (0.000503563 0.02305199 -0.008076172) (0.001494437 0.02299396 -0.007977263) (0.003377344 0.02097555 -0.007840062) (0.002457093 0.02294652 -0.007819508) (-0.0004969263 0.02474082 -0.007867184) (0.001353856 0.02472133 -0.007783455) (-0.002364061 -0.0297105 -0.006312143) (-0.00238456 -0.03076054 -0.005875107) (-0.002864749 -0.02873905 -0.006343146) (-0.003380274 -0.02773998 -0.006359614) (-0.00349716 -0.02897618 -0.005890593) (-0.002002625 -0.02900238 -0.006507514) (-0.002498441 -0.02800193 -0.006588786) (-0.002627527 -0.02925037 -0.006158332) (-0.00135985 -0.02868583 -0.006808499) (-0.0005001815 -0.02875696 -0.006866053) (-0.0009950714 -0.03072095 -0.006328811) (-0.001498031 -0.02998045 -0.006409219) (-0.0004981392 -0.03000407 -0.006516544) (2.647399e-06 -0.03075554 -0.006383227) (-0.0004986316 -0.03118229 -0.006169979) (-0.0009879999 -0.02921666 -0.006624448) (-0.001632503 -0.02829361 -0.006698479) (-0.001502629 -0.02900403 -0.006035046) (3.78289e-06 -0.02923095 -0.006671265) (-0.0005000041 -0.02800519 -0.006523401) (-0.0005013533 -0.02901114 -0.006057103) (0.0005002094 -0.02876318 -0.006878458) (0.001483989 -0.02875447 -0.006814333) (0.0009819827 -0.03074397 -0.006347249) (0.0005002783 -0.0300044 -0.006525235) (0.001501717 -0.03000305 -0.006414653) (0.001498086 -0.03098254 -0.006106394) (0.0009997413 -0.02924741 -0.006627195) (0.0004989484 -0.02800794 -0.006527931) (0.0005011335 -0.02902117 -0.006063875) (0.001993266 -0.02897047 -0.006560276) (0.001502154 -0.02799851 -0.006499802) (0.001504702 -0.02900229 -0.006030656) (0.002357272 -0.02970991 -0.006290732) (0.002879061 -0.02872942 -0.006356184) (0.002513512 -0.0280152 -0.006604604) (0.002629109 -0.02925741 -0.006179538) (0.00337834 -0.02774393 -0.00637808) (0.003498059 -0.02898793 -0.005905503) (-0.004360024 -0.02574273 -0.006326048) (-0.003870341 -0.02674755 -0.006358954) (-0.004388432 -0.02699777 -0.005895729) (-0.004803209 -0.02471121 -0.006281464) (-0.00531867 -0.02468413 -0.005824344) (-0.004006305 -0.02501933 -0.006599545) (-0.004481627 -0.02398575 -0.006553561) (-0.004625508 -0.02523588 -0.006117509) (-0.002347883 -0.02569999 -0.007304633) (-0.002484161 -0.02696187 -0.006875334) (-0.002858228 -0.02472812 -0.007300745) (-0.003485019 -0.02498078 -0.006893835) (-0.002627529 -0.02525302 -0.007135774) (-0.001992892 -0.02499414 -0.007483091) (-0.002484067 -0.02399368 -0.007558158) (-0.003017262 -0.02701916 -0.006614639) (-0.003514306 -0.02602306 -0.006611084) (-0.002507355 -0.02600225 -0.006509064) (-0.002004239 -0.02700138 -0.006518339) (-0.002519038 -0.02700761 -0.006052249) (-0.003009278 -0.02499971 -0.006519962) (-0.003505949 -0.02399832 -0.00650861) (-0.003524451 -0.02500607 -0.006049306) (-0.00200604 -0.02500436 -0.00653911) (-0.002507599 -0.02400081 -0.006535053) (-0.002518842 -0.02500661 -0.006060295) (-0.0005002925 -0.02600411 -0.007509451) (-0.0005004942 -0.02724852 -0.007146376) (-0.0009936942 -0.02521206 -0.007627135) (-0.001499861 -0.02499935 -0.007016852) (-0.0005017711 -0.02501972 -0.007053037) (4.118468e-06 -0.02524514 -0.00766966) (-0.0004992016 -0.02400374 -0.007502883) (-0.001000288 -0.02700296 -0.006537467) (-0.001501888 -0.02600708 -0.00656773) (-0.0005017264 -0.02601037 -0.00655568) (-1.829088e-07 -0.02700859 -0.006572442) (0.00148697 -0.02594733 -0.007451835) (0.001488876 -0.02720671 -0.007107601) (0.0009916775 -0.02521171 -0.007634674) (0.000500256 -0.02502031 -0.007073217) (0.001502105 -0.02500402 -0.007021997) (0.001998798 -0.0250216 -0.007499208) (0.001634472 -0.02429269 -0.007658658) (0.00100011 -0.02700659 -0.006539093) (0.000501006 -0.02601348 -0.006560294) (0.001506878 -0.02600622 -0.006533591) (0.002010996 -0.02700484 -0.006522354) (0.002012259 -0.02500946 -0.006550825) (0.00286781 -0.02473014 -0.007340154) (0.002634128 -0.02525877 -0.007169485) (0.003510932 -0.02499032 -0.006940178) (0.003361369 -0.02373161 -0.007349672) (0.003029425 -0.02702765 -0.006629392) (0.002515428 -0.02600015 -0.006534378) (0.003523674 -0.02603076 -0.006641091) (0.00388889 -0.02674478 -0.006374611) (0.003660995 -0.02728726 -0.006206781) (0.003025752 -0.0250057 -0.006554319) (0.002518667 -0.02401021 -0.006558973) (0.002529027 -0.02501327 -0.006079514) (0.004024528 -0.02502267 -0.006613805) (0.003513117 -0.02400079 -0.006536606) (0.00353818 -0.02501087 -0.00607213) (0.004355334 -0.02574856 -0.006331696) (0.004813376 -0.02471773 -0.006295136) (0.004496771 -0.02399095 -0.006583095) (0.004635588 -0.02523441 -0.006129249) (0.00533661 -0.02474696 -0.005826492) (-0.004373884 -0.02298215 -0.006851558) (-0.004508007 -0.02101576 -0.007088337) (-0.004008281 -0.02101076 -0.007421385) (-0.004474954 -0.01997935 -0.007376983) (-0.005000166 -0.02301106 -0.006410559) (-0.005382272 -0.02198345 -0.006374157) (-0.004644174 -0.02227472 -0.00667641) (-0.004004214 -0.02299829 -0.006507635) (-0.004514292 -0.02300115 -0.00602895) (-0.005110159 -0.02101612 -0.006641602) (-0.005495505 -0.01999357 -0.006599281) (-0.005645021 -0.02125813 -0.006161644) (-0.004036637 -0.02101173 -0.006552391) (-0.004524058 -0.02000592 -0.006554327) (-0.004528102 -0.02100316 -0.006051209) (-0.002494136 -0.02199749 -0.007492925) (-0.002500599 -0.0230003 -0.007010034) (-0.003000256 -0.02099912 -0.007500036) (-0.003529952 -0.0210064 -0.007037499) (-0.002512019 -0.02100147 -0.00703912) (-0.002009636 -0.02100212 -0.007544139) (-0.002508476 -0.02000017 -0.00755497) (-0.003009687 -0.02299898 -0.006530519) (-0.003516394 -0.02200234 -0.006536393) (-0.0004968441 -0.02199978 -0.007579156) (-0.0004994901 -0.02300796 -0.007063351) (-0.001003569 -0.02099702 -0.00754158) (-0.001508981 -0.0210006 -0.007058199) (-0.0005008908 -0.02100355 -0.007067177) (1.260523e-06 -0.02100366 -0.007549933) (-0.0005013805 -0.02000359 -0.007560467) (0.001498457 -0.02200117 -0.00752532) (0.001503063 -0.02300585 -0.007035785) (0.001002083 -0.02100515 -0.007539155) (0.0005023577 -0.02100587 -0.007063177) (0.001506055 -0.02100644 -0.007061546) (0.002006054 -0.02100565 -0.007544437) (0.00150685 -0.02000397 -0.007560103) (0.003494649 -0.0219878 -0.007563015) (0.003623777 -0.0232642 -0.007162762) (0.003001013 -0.02099671 -0.007502636) (0.002510928 -0.02100353 -0.007048302) (0.003513012 -0.02099881 -0.007032676) (0.003993786 -0.02100028 -0.007485734) (0.003649459 -0.0202675 -0.007674121) (0.003021083 -0.02301009 -0.006555591) (0.003521621 -0.02200592 -0.006544535) (0.004015322 -0.02300094 -0.006526074) (0.004022296 -0.02100255 -0.006542731) (0.004597994 -0.02100858 -0.007105611) (0.005007886 -0.02301219 -0.006419295) (0.0046431 -0.02226525 -0.00670759) (0.005382748 -0.02197979 -0.006380509) (0.005502083 -0.02299988 -0.005994765) (0.005139419 -0.02102322 -0.006642982) (0.004533221 -0.02000466 -0.006563838) (0.004534574 -0.02100506 -0.006066247) (0.005500916 -0.0199915 -0.006597532) (0.005642004 -0.02126047 -0.006176053) (-0.006342545 -0.01772706 -0.006333192) (-0.005917648 -0.01902868 -0.006423228) (-0.006426162 -0.01902545 -0.005930601) (-0.00610176 -0.01700437 -0.006600018) (-0.006483165 -0.01599736 -0.006480816) (-0.006595694 -0.01700893 -0.006106052) (-0.004604518 -0.01798633 -0.007597052) (-0.004499278 -0.01900076 -0.00700324) (-0.00499541 -0.01699891 -0.007490596) (-0.005588163 -0.01697148 -0.007077101) (-0.004522139 -0.01700061 -0.00704546) (-0.004018133 -0.01699953 -0.007548313) (-0.004661644 -0.01627455 -0.007690536) (-0.005016295 -0.01900163 -0.006520916) (-0.005672529 -0.01827558 -0.006668156) (-0.005025807 -0.01700434 -0.006533778) (-0.005522648 -0.01601 -0.006542163) (-0.002519697 -0.01800205 -0.00756435) (-0.00252282 -0.01900231 -0.007071612) (-0.003017904 -0.01700251 -0.007565472) (-0.003523609 -0.01700384 -0.007073295) (0.003514817 -0.01800271 -0.007539823) (0.003522545 -0.01900141 -0.007052831) (0.003025077 -0.01700624 -0.007561533) (0.003533772 -0.01700736 -0.007072562) (0.004022704 -0.01700067 -0.007542491) (0.003526373 -0.0160053 -0.00755819) (0.005399442 -0.01898028 -0.006894088) (0.005023877 -0.01701527 -0.007445381) (0.004546832 -0.01700593 -0.00707423) (0.005502166 -0.01699359 -0.007089863) (0.005391473 -0.01597985 -0.007395491) (0.005016002 -0.01900271 -0.006522554) (0.005671132 -0.01827786 -0.006667743) (0.005919817 -0.01903023 -0.006429034) (0.005048631 -0.01701147 -0.006563752) (0.006097903 -0.01697715 -0.006599218) (0.005552777 -0.01600824 -0.006551674) (0.006369398 -0.0177325 -0.006332764) (0.00643121 -0.01602841 -0.006435238) (0.006591548 -0.0169765 -0.00608467) (-0.006360351 -0.01496697 -0.00684997) (-0.006397598 -0.0130032 -0.006900125) (-0.005868016 -0.01300071 -0.007398647) (-0.006854708 -0.01496554 -0.006343662) (-0.006602347 -0.01399664 -0.006599381) (-0.005993563 -0.01499934 -0.006499157) (-0.006491152 -0.01499977 -0.0059924) (-0.006910418 -0.01300417 -0.00641339) (-0.007369627 -0.01299909 -0.00587552) (-0.006044694 -0.01300267 -0.006539473) (-0.006719176 -0.01202854 -0.006674654) (-0.006556323 -0.01300129 -0.006032975) (-0.004518944 -0.0140047 -0.007542071) (-0.004524821 -0.01500358 -0.007056022) (-0.005006612 -0.01300161 -0.00751325) (-0.005517661 -0.01300164 -0.007026057) (-0.004531092 -0.01300382 -0.007053285) (-0.004030302 -0.01300362 -0.007563202) (-0.00454062 -0.01200761 -0.007558925) (-0.005025697 -0.01500409 -0.006556548) (-0.005516571 -0.01400133 -0.006530897) (0.004040323 -0.01300999 -0.007572963) (0.005508693 -0.0140021 -0.007511235) (0.005666826 -0.01527942 -0.007165781) (0.005149895 -0.01329245 -0.007706003) (0.004551149 -0.01301075 -0.00708911) (0.005528421 -0.0130055 -0.007041735) (0.005860906 -0.01300156 -0.007373716) (0.005604222 -0.01199132 -0.007613261) (0.005059212 -0.01500603 -0.006579815) (0.005537755 -0.01400419 -0.006548541) (0.006183961 -0.01527964 -0.006687262) (0.006044711 -0.01300467 -0.006553884) (0.006397691 -0.01300188 -0.006898602) (0.006816404 -0.01473007 -0.006349423) (0.006585577 -0.0139727 -0.006586521) (0.007321244 -0.01473876 -0.005821509) (0.006903764 -0.01300002 -0.00639282) (0.006714399 -0.01203936 -0.006679513) (0.00654633 -0.01300437 -0.006047179) (0.007381745 -0.01299914 -0.005862304) (-0.006343242 -0.009965656 -0.007348103) (-0.006504014 -0.01100042 -0.007000775) (-0.006608687 -0.008997629 -0.00711661) (-0.006000355 -0.009000961 -0.007597892) (-0.006390349 -0.008000511 -0.007400599) (-0.006998618 -0.0110002 -0.00650248) (-0.00732417 -0.009968632 -0.006340613) (-0.006505775 -0.01000193 -0.006511282) (-0.006065096 -0.01100539 -0.006593118) (-0.006573199 -0.01100738 -0.006065992) (-0.007091076 -0.008996002 -0.006589953) (-0.007359534 -0.007998928 -0.006360608) (-0.007579234 -0.008984292 -0.006067322) (-0.006037125 -0.009001779 -0.006539512) (-0.006550853 -0.008001104 -0.006542059) (-0.006528471 -0.009001747 -0.006023673) (-0.004539583 -0.01000253 -0.007559876) (-0.0045395 -0.01100332 -0.00706118) (-0.005075711 -0.009001032 -0.007570965) (-0.005572284 -0.009001826 -0.007060411) (0.005650099 -0.01028599 -0.007668078) (0.005538495 -0.01100257 -0.007071782) (0.005035052 -0.009004329 -0.007559112) (0.005521931 -0.009002533 -0.007041768) (0.006075564 -0.008983933 -0.007588632) (0.005523606 -0.008001356 -0.007539208) (0.006051052 -0.011004 -0.006583543) (0.006024067 -0.009001821 -0.00653281) (0.00659074 -0.008996979 -0.007092915) (0.007002321 -0.01099812 -0.006510008) (0.006501914 -0.01000063 -0.006502233) (0.007337047 -0.009965988 -0.006359164) (0.007438312 -0.01101579 -0.006014936) (0.007098384 -0.008997074 -0.006600535) (0.006544562 -0.008001969 -0.006539933) (0.006527021 -0.009002743 -0.006028602) (0.007365291 -0.007998724 -0.006387661) (0.00757412 -0.008983694 -0.006069874) (-0.006439029 -0.006001813 -0.007444254) (-0.006696947 -0.007005753 -0.007177886) (-0.006703656 -0.005042256 -0.007234867) (-0.00618028 -0.004997834 -0.007672623) (-0.006528774 -0.004000611 -0.007438238) (-0.007130431 -0.007003981 -0.006673496) (-0.007403428 -0.00599849 -0.006410338) (-0.00659778 -0.00600493 -0.006575605) (-0.006062321 -0.007002634 -0.006559849) (-0.006553331 -0.007002552 -0.006050358) (-0.007217289 -0.005002736 -0.006666724) (-0.007449698 -0.004016184 -0.006454406) (-0.007669995 -0.005001099 -0.006146976) (-0.00608178 -0.005002812 -0.006582929) (-0.006593766 -0.004002549 -0.006594012) (-0.006585084 -0.005002971 -0.006070122) (-0.00503921 -0.005001173 -0.007558801) (-0.005560064 -0.005001743 -0.007072104) (0.005535807 -0.006001908 -0.007554185) (0.00554272 -0.007003481 -0.00706245) (0.005042 -0.005003037 -0.007565156) (0.005562124 -0.005003404 -0.007086398) (0.006174154 -0.005002105 -0.007686375) (0.005566273 -0.004003032 -0.007581037) (0.006059375 -0.007002833 -0.006565093) (0.006084654 -0.005003758 -0.006600806) (0.006711077 -0.005039067 -0.007250566) (0.007191605 -0.007002669 -0.006661945) (0.006600602 -0.006005758 -0.006604308) (0.007431721 -0.006003537 -0.006432731) (0.007633973 -0.007001005 -0.006114932) (0.007248731 -0.005038127 -0.006709159) (0.006596037 -0.004002546 -0.006610227) (0.006593001 -0.005003289 -0.006086547) (0.007436054 -0.004003418 -0.006532439) (0.007680063 -0.00499584 -0.006182462) (-0.0078063 -0.0007333819 -0.006339332) (-0.006503991 -0.002014968 -0.00751648) (-0.00651291 -0.00299959 -0.007017483) (-0.006793178 -0.001000609 -0.00730232) (-0.007296673 -0.0009955964 -0.006813237) (-0.00648925 -0.001000827 -0.006993799) (-0.006176277 -0.001286441 -0.007688969) (-0.006553633 1.378519e-07 -0.007572566) (-0.007182893 -0.003277801 -0.006657975) (-0.007502638 -0.002000534 -0.006496716) (-0.006527396 -0.002001882 -0.006524596) (-0.00606347 -0.003003119 -0.006575366) (-0.006580425 -0.00300448 -0.006072703) (-0.006989621 -0.001001211 -0.006489897) (-0.007565892 -1.597367e-08 -0.006536625) (-0.00766613 -0.001282338 -0.006185723) (-0.005047071 -0.001000813 -0.007580209) (-0.005562306 -0.00100217 -0.007093039) (0.005549169 -0.002003997 -0.007588882) (0.00555204 -0.003003255 -0.007087494) (0.005022474 -0.001002596 -0.007549185) (0.005519515 -0.001003111 -0.007041379) (0.005980142 -0.00100083 -0.007482107) (0.005509423 -1.639286e-06 -0.007538845) (0.00604789 -0.003003116 -0.006569787) (0.007302257 -0.002965693 -0.006819523) (0.006778413 -0.001002119 -0.007297654) (0.006456742 -0.001001008 -0.006951501) (0.007259481 -0.001003959 -0.006798229) (0.00699854 -0.0030025 -0.006495716) (0.006503017 -0.002002768 -0.006501477) (0.007561493 -0.002001319 -0.006461096) (0.007722102 -0.003040504 -0.006185597) (0.006954113 -0.001000713 -0.006449285) (0.007760667 -0.0009610307 -0.006292014) (0.007520439 -6.790915e-07 -0.006528752) (0.007482349 -0.001000273 -0.005975954) (-0.00783969 0.0007322717 -0.006327689) (-0.006510775 0.002000926 -0.007509032) (-0.006492639 0.001001633 -0.006996835) (-0.00681908 0.002722731 -0.00732188) (-0.007303295 0.002723391 -0.006839629) (-0.006696964 0.003278691 -0.00717024) (-0.00620525 0.003005314 -0.007704635) (-0.006460485 0.004014899 -0.007463368) (-0.00699562 0.001001467 -0.006491736) (-0.007510295 0.002000942 -0.006506097) (-0.006543084 0.002004572 -0.006536074) (-0.007171154 0.003280933 -0.006689556) (-0.007477172 0.004016015 -0.006461912) (-0.007735764 0.003005081 -0.006146928) (-0.006091035 0.003006897 -0.006595137) (-0.006622443 0.004005143 -0.006606437) (-0.006603058 0.003008045 -0.006080281) (-0.005059868 0.003002672 -0.00758049) (-0.005578365 0.003004294 -0.007094031) (0.005542992 0.001995391 -0.007572356) (0.005520459 0.000998913 -0.007036749) (0.005053442 0.003000876 -0.00757624) (0.005572612 0.003002233 -0.00708131) (0.006226257 0.003041675 -0.007688715) (0.005556151 0.004002329 -0.007595532) (0.006087869 0.003004643 -0.006581353) (0.007288331 0.001000859 -0.006756854) (0.006820391 0.002724451 -0.007327486) (0.006684363 0.003270873 -0.007187307) (0.007318079 0.002710446 -0.006820676) (0.006952545 0.001000552 -0.006451195) (0.006519146 0.002002124 -0.00651279) (0.007555931 0.001989085 -0.006463414) (0.007795846 0.0009650081 -0.006320466) (0.007484447 0.0009993594 -0.005977548) (0.007181894 0.003285154 -0.006681224) (0.006621523 0.004003021 -0.00661539) (0.006593317 0.00300583 -0.006075061) (0.00747018 0.004016959 -0.006502875) (0.007703336 0.003037913 -0.006233663) (-0.006418031 0.006000709 -0.007419572) (-0.006707667 0.005004565 -0.007207886) (-0.006664351 0.007002175 -0.007163432) (-0.006123651 0.007000356 -0.007628464) (-0.00636241 0.008001022 -0.007372321) (-0.007198698 0.00500869 -0.006737842) (-0.007423773 0.006000641 -0.006419583) (-0.006587955 0.006002152 -0.006591923) (-0.006082344 0.00500311 -0.006591004) (-0.006582731 0.005003494 -0.006086099) (-0.007182513 0.007002522 -0.006679318) (-0.007371069 0.008001804 -0.006377165) (-0.007610373 0.006999976 -0.006106413) (-0.006053111 0.007002221 -0.006558952) (-0.006543478 0.008001106 -0.006549798) (-0.006554605 0.007001906 -0.006054812) (-0.005023338 0.007006371 -0.007538503) (-0.005538062 0.007003364 -0.007049104) (0.005546624 0.006000454 -0.007552214) (0.005562405 0.005002523 -0.007087802) (0.005031999 0.00700283 -0.007540727) (0.005547004 0.00700164 -0.007053143) (0.006141204 0.007002455 -0.007638663) (0.005520347 0.008001172 -0.007527788) (0.006086295 0.005003002 -0.006602298) (0.006068537 0.007001591 -0.006569353) (0.006680082 0.006999062 -0.007174051) (0.007210921 0.005009705 -0.006751243) (0.006609089 0.005998279 -0.006603399) (0.007444907 0.006001704 -0.006452792) (0.007720285 0.004999047 -0.006143724) (0.007204199 0.007004736 -0.006701545) (0.006561188 0.008002606 -0.006557935) (0.006577086 0.00700168 -0.006069723) (0.007384181 0.00799993 -0.006403141) (0.007660774 0.007000898 -0.006135266) (-0.006330376 0.009964187 -0.007335862) (-0.006593114 0.008996289 -0.007090582) (-0.006505304 0.01100002 -0.00699545) (-0.006010743 0.01100091 -0.007404944) (-0.007120489 0.008996694 -0.006608458) (-0.007331151 0.009967541 -0.006347708) (-0.006496126 0.010001 -0.006504346) (-0.006023812 0.009001608 -0.006532875) (-0.006525376 0.009001982 -0.006025197) (-0.007000168 0.01099861 -0.006505901) (-0.007419797 0.01101234 -0.00601163) (-0.006031774 0.01100299 -0.006579544) (-0.006690452 0.01203632 -0.006699222) (-0.006555929 0.01100933 -0.006065761) (-0.004537408 0.01000166 -0.00756955) (-0.005022797 0.01100095 -0.00755209) (-0.005527721 0.01100065 -0.007076051) (-0.004533787 0.01100154 -0.007067632) (-0.004029185 0.01100111 -0.00756304) (-0.004539774 0.01199757 -0.007575351) (0.005659129 0.01027194 -0.007682039) (0.005530322 0.009002691 -0.007051248) (0.005018577 0.01100011 -0.007538045) (0.004536288 0.01100382 -0.007067901) (0.005551834 0.01100999 -0.007094035) (0.006024978 0.01101676 -0.007439202) (0.005594827 0.01198812 -0.00762336) (0.006040287 0.009004278 -0.006551539) (0.006065503 0.01101702 -0.006607851) (0.006515819 0.01100255 -0.007017229) (0.007121789 0.008999037 -0.006618335) (0.006517959 0.01000117 -0.006526157) (0.007365452 0.009964641 -0.006361329) (0.007590755 0.008985881 -0.00608337) (0.007018409 0.01100245 -0.006521993) (0.006696649 0.01204237 -0.006695086) (0.006566892 0.01100864 -0.006086524) (0.007447094 0.01101274 -0.006032606) (-0.006398453 0.01299855 -0.006896634) (-0.006337578 0.0147293 -0.006843387) (-0.005828599 0.0147328 -0.007329071) (-0.006899194 0.0130048 -0.006397708) (-0.006583105 0.01398602 -0.006593616) (-0.006037976 0.01300291 -0.006539199) (-0.006545909 0.01300415 -0.006037399) (-0.00685232 0.01496259 -0.006333404) (-0.007324978 0.01472083 -0.005842519) (-0.006186547 0.01527688 -0.006677654) (-0.006513893 0.01601196 -0.006431353) (-0.00651031 0.0150004 -0.006009348) (-0.004523377 0.01400804 -0.007549499) (-0.004532163 0.0130059 -0.007063106) (-0.005134158 0.01502236 -0.007627144) (-0.005689747 0.01527777 -0.007150024) (-0.004537 0.01500922 -0.007065414) (-0.004027793 0.01500737 -0.007575316) (-0.004661173 0.01628302 -0.007697539) (-0.005531837 0.01400429 -0.006539106) (-0.005052886 0.01500799 -0.006572787) (-0.005550939 0.01600635 -0.00656536) (0.004028247 0.01500248 -0.007562078) (0.003525105 0.01600153 -0.007583592) (0.005504101 0.01400056 -0.007509317) (0.005529049 0.01300253 -0.007056048) (0.005109683 0.01499089 -0.007628846) (0.004533289 0.01500309 -0.007066638) (0.005640085 0.01527332 -0.007152407) (0.005850374 0.0147141 -0.007289963) (0.005384909 0.01597908 -0.007387996) (0.005525015 0.01400291 -0.006541218) (0.006035527 0.01300505 -0.006559554) (0.005041542 0.01500436 -0.006566497) (0.006154823 0.01527807 -0.006672587) (0.005532696 0.01600311 -0.00653336) (0.006333194 0.01473683 -0.006821433) (0.006890105 0.01300052 -0.006389892) (0.006575572 0.01397201 -0.006573264) (0.007390147 0.0129659 -0.005880844) (0.006823459 0.01470338 -0.0063034) (0.006404817 0.01602539 -0.006412811) (0.006626816 0.01527556 -0.006159261) (-0.006361697 0.01774462 -0.006329032) (-0.006116814 0.01697582 -0.006613284) (-0.00660621 0.01701481 -0.006126161) (-0.005920849 0.01902929 -0.006429624) (-0.006424316 0.01902607 -0.00592624) (-0.004604827 0.0179851 -0.007603949) (-0.004525474 0.01700557 -0.007050805) (-0.004873354 0.01897825 -0.007356387) (-0.005406521 0.01899383 -0.00690748) (-0.004500384 0.01899989 -0.007000824) (-0.004143185 0.01925336 -0.00763867) (-0.004485211 0.02000887 -0.007388682) (-0.005035533 0.01700549 -0.0065382) (-0.005709286 0.01826924 -0.006652058) (-0.005024063 0.01900408 -0.00651478) (-0.00550122 0.01999277 -0.006596267) (-0.004537339 0.02000225 -0.006543705) (-0.00252277 0.01800301 -0.00757352) (-0.003020344 0.01900471 -0.007559602) (-0.003522684 0.01900835 -0.007056325) (-0.002521251 0.01900528 -0.007083491) (-0.002013728 0.01900576 -0.007574275) (-0.002508812 0.0200062 -0.007560375) (-0.0005034531 0.02000338 -0.00755484) (0.002012958 0.0190067 -0.007575789) (0.001508407 0.02000382 -0.007561191) (0.003511886 0.01800339 -0.007531267) (0.003531116 0.01700475 -0.00706937) (0.003013138 0.01900458 -0.00755268) (0.002518779 0.01900698 -0.007079206) (0.003524723 0.019008 -0.00705349) (0.004136158 0.01925725 -0.007642391) (0.003669771 0.02029874 -0.007669661) (0.00403914 0.01900934 -0.006567273) (0.005492858 0.0169924 -0.007079554) (0.004851787 0.01872885 -0.007371219) (0.004676069 0.01927487 -0.007204367) (0.005386628 0.01897969 -0.006886947) (0.005054551 0.01700682 -0.006561763) (0.004544762 0.01800622 -0.006560963) (0.005671769 0.01827266 -0.006638538) (0.006073891 0.01697429 -0.006577357) (0.005023243 0.01900116 -0.006527397) (0.004543454 0.02001076 -0.006560234) (0.005907219 0.01902993 -0.00641445) (0.005499955 0.01999709 -0.006592626) (0.006346556 0.0177279 -0.006316377) (0.006411944 0.01902569 -0.005916321) (-0.004330245 0.02173289 -0.0072738) (-0.004595838 0.02100286 -0.007087389) (-0.004392353 0.02299274 -0.00689939) (-0.003853631 0.02274097 -0.007329808) (-0.005139956 0.02101707 -0.006648456) (-0.005383425 0.02198473 -0.006382984) (-0.004657183 0.02229576 -0.006702425) (-0.004023253 0.02100505 -0.006534766) (-0.004537245 0.02100605 -0.006048225) (-0.005009735 0.02301161 -0.006424613) (-0.0054972 0.02299584 -0.005993006) (-0.00401326 0.0230052 -0.006529365) (-0.004492805 0.02398881 -0.006581388) (-0.004526157 0.02300095 -0.006048865) (-0.002500069 0.02199663 -0.007495801) (-0.002513636 0.0210027 -0.007046885) (-0.003006155 0.02301429 -0.007575176) (-0.003643407 0.02326229 -0.007164638) (-0.002513055 0.0229972 -0.007033432) (-0.001999683 0.02299853 -0.007492916) (-0.002494962 0.02399853 -0.007576953) (-0.003526239 0.02200414 -0.006544931) (-0.003026987 0.02300339 -0.006555238) (-0.00352304 0.02400909 -0.006539859) (-0.002527086 0.02400941 -0.006567041) (-0.0005018884 0.02200225 -0.007555344) (-0.0005036021 0.02100392 -0.00705668) (-0.0009999858 0.02300081 -0.007523231) (-0.001506212 0.02300244 -0.00703799) (-0.0005017147 0.02300601 -0.007056699) (5.747851e-07 0.02300166 -0.007558822) (-0.0004994508 0.02400328 -0.00750768) (0.001500343 0.02200073 -0.00752529) (0.001506589 0.02100278 -0.007062314) (0.001000568 0.02300186 -0.007526663) (0.0005015487 0.02300636 -0.007061232) (0.001502278 0.02300133 -0.007031078) (0.001991635 0.02299527 -0.007477866) (0.001642091 0.02429319 -0.007659087) (0.00347947 0.02198208 -0.007548461) (0.003527396 0.02100471 -0.007036964) (0.002991812 0.02300626 -0.007547905) (0.002500543 0.02299591 -0.007006622) (0.003629934 0.02325592 -0.007125737) (0.003845009 0.02269825 -0.007302912) (0.003334045 0.02372261 -0.007316415) (0.003516691 0.02200346 -0.006529213) (0.004031832 0.02100964 -0.006548491) (0.003010202 0.02300082 -0.006526231) (0.002511934 0.0240018 -0.006532304) (0.0039971 0.02299709 -0.006499578) (0.003494346 0.02399814 -0.006505414) (0.004365059 0.02297791 -0.006855213) (0.005115262 0.02101671 -0.006639587) (0.004657104 0.02227145 -0.006656373) (0.005386657 0.02197884 -0.006377447) (0.005664354 0.02127763 -0.006148045) (0.004998208 0.02300867 -0.006398843) (0.004483125 0.02398455 -0.006552797) (0.004511169 0.02300017 -0.006027725) (0.005499169 0.02299896 -0.005995304) (-0.004823353 0.0247122 -0.006302333) (-0.004347888 0.02573998 -0.006358507) (-0.004018935 0.02502305 -0.00661992) (-0.004620954 0.02525543 -0.006142634) (-0.003859998 0.02673921 -0.006381038) (-0.004475343 0.02697489 -0.005868008) (-0.002364296 0.02572349 -0.007332198) (-0.002644033 0.02527286 -0.007180917) (-0.002495886 0.02697104 -0.006931349) (-0.003032664 0.02501599 -0.006552979) (-0.003527309 0.02602473 -0.006651444) (-0.002521671 0.02601241 -0.006551839) (-0.002019573 0.02501424 -0.006569971) (-0.002537458 0.02501906 -0.006091804) (-0.003034697 0.02703264 -0.006647742) (-0.003374879 0.02774855 -0.006391376) (-0.003635951 0.02726873 -0.006213863) (-0.002013809 0.02700844 -0.006553676) (-0.002504855 0.02799901 -0.006623064) (-0.002527925 0.02701348 -0.006096484) (-0.0004994239 0.02599873 -0.007518857) (-0.0005017426 0.02501501 -0.007064589) (-0.0009790831 0.02673609 -0.007341636) (-0.001500438 0.02702477 -0.007115765) (-0.0004973513 0.02723552 -0.007167889) (-4.077742e-07 0.02676251 -0.007386921) (-0.00151673 0.0260217 -0.006575744) (-0.0005044123 0.02601281 -0.006561072) (-0.001005893 0.02701385 -0.006543074) (-0.001648863 0.02831826 -0.006695766) (-1.063783e-06 0.02702033 -0.0065712) (-0.0005014701 0.02800918 -0.006528444) (0.00149685 0.02597877 -0.007392044) (0.001498202 0.02499908 -0.007012338) (0.0009800001 0.02675024 -0.007348661) (0.0005041033 0.02725482 -0.007161599) (0.001497291 0.02701425 -0.007097787) (0.0005012635 0.02601449 -0.006565636) (0.001500435 0.02600607 -0.006558995) (0.002008101 0.02500552 -0.006534332) (0.001003587 0.02701513 -0.006544321) (0.0005003601 0.02800673 -0.006528725) (0.002001139 0.02700079 -0.006511519) (0.001650567 0.02829855 -0.006690824) (0.003479157 0.02498025 -0.006884219) (0.002481035 0.02695944 -0.006879502) (0.002996792 0.02500098 -0.006508208) (0.002498954 0.02600138 -0.006517308) (0.003513909 0.02602061 -0.006597877) (0.004005741 0.02501502 -0.006581083) (0.00351544 0.02501059 -0.006043017) (0.003003265 0.02701702 -0.006602973) (0.002494903 0.02799866 -0.006585745) (0.002514431 0.02700752 -0.006056477) (0.003860776 0.02673553 -0.006339842) (0.003369418 0.02774297 -0.006338016) (0.003654299 0.02727123 -0.006155278) (0.004815645 0.02471941 -0.006288946) (0.004365578 0.02573632 -0.006322703) (0.005318562 0.02473667 -0.005824332) (0.004381916 0.02699594 -0.005887119) (-0.002889258 0.02874731 -0.006371371) (-0.002342747 0.02968509 -0.006312136) (-0.002004659 0.02900242 -0.006533135) (-0.002650624 0.02926777 -0.006180169) (-0.002486006 0.03079253 -0.005866234) (-0.0004975247 0.02875423 -0.006867707) (-0.000993396 0.02921382 -0.00663137) (-0.00150192 0.02997971 -0.006398223) (-0.0004976207 0.03000234 -0.006518817) (-3.685981e-06 0.02925823 -0.006672639) (-0.0005039012 0.02901785 -0.006063994) (-0.0009832947 0.03074342 -0.006321218) (-0.001495971 0.03098272 -0.006105431) (7.33491e-07 0.03076846 -0.006379065) (-0.0005014773 0.03118719 -0.006155941) (0.00136975 0.02869004 -0.006809293) (0.0009872926 0.02920556 -0.006638753) (0.0004992625 0.03000635 -0.006527952) (0.00150083 0.02998305 -0.006405925) (0.001999554 0.02900012 -0.006494256) (0.001502564 0.02900515 -0.006032557) (0.0009735541 0.03071602 -0.006344581) (0.0005023851 0.03119674 -0.006162865) (0.001498625 0.0309844 -0.006095258) (0.002881493 0.0287339 -0.006353454) (0.002371501 0.02970929 -0.006268075) (0.003480551 0.02897366 -0.005883718) (0.002398655 0.03075585 -0.005864919) (-0.001345676 -0.03565563 -0.00427086) (-0.001352387 -0.0366172 -0.003754332) (-0.0004981693 -0.03579681 -0.004395231) (-0.0005040537 -0.03676029 -0.003811778) (0.0005080501 -0.03580476 -0.004414696) (0.0004755483 -0.03672095 -0.003812719) (0.001359316 -0.03567322 -0.004305382) (-0.002503189 -0.0330015 -0.004931469) (-0.001856112 -0.0327126 -0.005363429) (-0.002510101 -0.03179818 -0.005404827) (-0.003269499 -0.03364957 -0.004254929) (-0.002522136 -0.03399584 -0.004523614) (-0.002011652 -0.03482635 -0.004446281) (-0.002502966 -0.03498727 -0.004009639) (-0.003023996 -0.03301281 -0.004629428) (-0.003496574 -0.03221238 -0.004644286) (-0.0036317 -0.03321382 -0.004135425) (-0.002018752 -0.03301946 -0.004565497) (-0.002525005 -0.03201836 -0.004567891) (-0.002534848 -0.03303461 -0.004092027) (-0.000466282 -0.03369563 -0.005301122) (-0.0004983006 -0.03477202 -0.004844273) (-0.0009977638 -0.03300955 -0.005403267) (-0.001511031 -0.03323858 -0.005136533) (-0.0005025917 -0.03300316 -0.005031671) (3.257766e-06 -0.03300598 -0.005531222) (-0.0004962093 -0.03225775 -0.005722461) (-0.0009869507 -0.03514544 -0.004557992) (-0.001645271 -0.03426449 -0.004714121) (-0.0005005332 -0.03399717 -0.004506634) (4.855492e-06 -0.03518311 -0.004637534) (-0.0005069035 -0.03501858 -0.004046259) (-0.001011603 -0.03300486 -0.004564489) (-0.001528599 -0.03202772 -0.004584609) (-0.001523241 -0.03302264 -0.004085865) (0.001389766 -0.03472063 -0.004767903) (0.001004586 -0.03302318 -0.005435243) (0.0005066176 -0.03301537 -0.005049532) (0.001540081 -0.03329474 -0.005172176) (0.001985988 -0.03275053 -0.005360513) (0.001492598 -0.03217973 -0.005644164) (0.0009927932 -0.03515594 -0.004591947) (0.0005078221 -0.03400491 -0.004522116) (0.001647825 -0.03433254 -0.00471814) (0.002007927 -0.0348163 -0.004423299) (0.001701755 -0.03530958 -0.004270384) (0.001015362 -0.03302473 -0.004588704) (0.002016133 -0.03304101 -0.004567259) (0.001516321 -0.0320313 -0.004585842) (0.001524827 -0.0330407 -0.004092252) (0.002502206 -0.03299101 -0.005014108) (0.003294201 -0.03267911 -0.004764259) (0.002503209 -0.03400251 -0.00452262) (0.003292487 -0.033717 -0.004318417) (0.003263607 -0.03465061 -0.003717269) (0.002979846 -0.03317907 -0.004622157) (0.002512976 -0.03202352 -0.004559445) (0.002518854 -0.03303749 -0.004061885) (0.003596628 -0.03222057 -0.004600672) (0.003614027 -0.03324942 -0.004103197) (-0.004517486 -0.02901453 -0.005037877) (-0.003993349 -0.02900139 -0.005492004) (-0.004488544 -0.02797909 -0.005478783) (-0.004784278 -0.03071303 -0.004327542) (-0.004536162 -0.03000643 -0.004642082) (-0.004122188 -0.03100815 -0.004624057) (-0.004599667 -0.03122975 -0.004102236) (-0.005036241 -0.02903556 -0.00452762) (-0.005488459 -0.02797841 -0.00449432) (-0.005492052 -0.02899757 -0.003999582) (-0.004038881 -0.02900622 -0.004581001) (-0.004524954 -0.02800133 -0.004542516) (-0.004565054 -0.02900602 -0.004071266) (-0.002682218 -0.0303179 -0.005737504) (-0.002521488 -0.03101487 -0.005057524) (-0.00301757 -0.02901543 -0.00555147) (-0.003527239 -0.02901019 -0.005048348) (-0.002532107 -0.02902285 -0.00508579) (-0.002017717 -0.02901783 -0.005569645) (-0.002522078 -0.02801377 -0.0055731) (-0.003028862 -0.03101766 -0.004581746) (-0.003549243 -0.0300168 -0.004577401) (-0.0005014289 -0.03001578 -0.005571568) (-0.0005023929 -0.03102542 -0.005094622) (0.001511804 -0.03000964 -0.005576268) (0.001509856 -0.03101857 -0.005078675) (0.002013762 -0.02901064 -0.005557474) (0.003516456 -0.03000674 -0.005524811) (0.003526728 -0.03102525 -0.005130106) (0.003020273 -0.02901147 -0.005552469) (0.002528285 -0.02901766 -0.005075317) (0.003540651 -0.02902055 -0.005057196) (0.004023654 -0.02901728 -0.00553188) (0.00352429 -0.02801153 -0.005545681) (0.00301866 -0.03101572 -0.004552208) (0.003542901 -0.03002506 -0.004565949) (0.004102878 -0.03122885 -0.004593555) (0.004077614 -0.02901635 -0.004579265) (0.004545424 -0.02903111 -0.005050865) (0.004820813 -0.03071512 -0.004307689) (0.004622224 -0.03000591 -0.004613806) (0.005027984 -0.02903964 -0.004556195) (0.004553909 -0.02800284 -0.004550127) (0.004597698 -0.02901826 -0.004054099) (0.005493483 -0.02797957 -0.00450771) (0.005515637 -0.0290086 -0.004017673) (-0.006258074 -0.02471105 -0.004835632) (-0.005820634 -0.02473869 -0.005308018) (-0.006325076 -0.02573043 -0.004363608) (-0.005898699 -0.02699655 -0.004393333) (-0.006340527 -0.02673897 -0.003859659) (-0.006112088 -0.02523482 -0.004624649) (-0.006559462 -0.02398487 -0.004479951) (-0.006605657 -0.02501661 -0.004014953) (-0.004660639 -0.02627245 -0.005705465) (-0.004523054 -0.02700609 -0.005036198) (-0.005132773 -0.02524154 -0.00563056) (-0.005640889 -0.02525852 -0.005137029) (-0.004533929 -0.02500988 -0.005052109) (-0.004026565 -0.02500279 -0.005553288) (-0.004516646 -0.02400092 -0.005525871) (-0.005026533 -0.02700303 -0.004533915) (-0.005677612 -0.02628845 -0.004694675) (-0.005038865 -0.02501418 -0.004544126) (-0.005520504 -0.02400411 -0.004516812) (-0.005544738 -0.02500892 -0.004029044) (0.003537899 -0.0260137 -0.005583975) (0.003543331 -0.02701668 -0.00507645) (0.004035668 -0.02500599 -0.005566736) (0.00538173 -0.02599282 -0.005377813) (0.005407375 -0.02698404 -0.004996788) (0.005153669 -0.02525203 -0.005653977) (0.004543312 -0.02500743 -0.005060377) (0.005642486 -0.02527512 -0.005149032) (0.005818465 -0.02472087 -0.005331356) (0.005610742 -0.02400507 -0.005613602) (0.005040999 -0.02700587 -0.004534277) (0.005713688 -0.02628208 -0.004686472) (0.005895449 -0.02699739 -0.004388911) (0.005539833 -0.02700799 -0.004024604) (0.005051897 -0.02500979 -0.004544523) (0.006124427 -0.02524003 -0.004622887) (0.005530138 -0.02400554 -0.004522746) (0.005553632 -0.02500892 -0.004031246) (0.006289675 -0.02469581 -0.004816264) (0.006324914 -0.02574437 -0.004345049) (0.006582492 -0.02398955 -0.004492037) (0.006611198 -0.02501897 -0.004017577) (-0.006375464 -0.02199484 -0.005367596) (-0.006404658 -0.02301103 -0.004995371) (-0.006785354 -0.02071369 -0.005326619) (-0.006631731 -0.02124879 -0.005111384) (-0.006161558 -0.02127655 -0.005637018) (-0.006578223 -0.01997444 -0.005585426) (-0.006860722 -0.02297791 -0.004376119) (-0.006683133 -0.02226978 -0.004656597) (-0.006025947 -0.0230011 -0.004511694) (-0.006514514 -0.0230029 -0.004001028) (-0.007101339 -0.021022 -0.004518228) (-0.00739402 -0.01998197 -0.004475662) (-0.007442351 -0.02101258 -0.004012291) (-0.006042898 -0.02100635 -0.004522338) (-0.00653158 -0.02000872 -0.004514285) (-0.00654449 -0.02101011 -0.004033985) (-0.005038241 -0.02100376 -0.005548468) (-0.005544005 -0.02100549 -0.005030628) (0.005519017 -0.02199968 -0.005517606) (0.005532304 -0.02300466 -0.005025335) (0.005037247 -0.0210064 -0.005566203) (0.005538159 -0.02100452 -0.005048743) (0.006152498 -0.02126452 -0.00565887) (0.006034207 -0.02300307 -0.004524057) (0.006049445 -0.02100481 -0.004538135) (0.006814126 -0.02073956 -0.005274536) (0.006623986 -0.02125163 -0.0051177) (0.006882736 -0.0229797 -0.004386798) (0.00669076 -0.02228639 -0.004670643) (0.007327116 -0.02270842 -0.003826683) (0.007112122 -0.02101585 -0.004519495) (0.006544009 -0.02000189 -0.004522048) (0.006574693 -0.02100814 -0.004047845) (0.007399811 -0.01998139 -0.004479841) (0.007427865 -0.02101287 -0.004011615) (-0.007786017 -0.01872156 -0.004329696) (-0.007887498 -0.01699869 -0.00447667) (-0.006685558 -0.01828535 -0.005673481) (-0.00653242 -0.01900194 -0.00502754) (-0.007071013 -0.0169717 -0.005583899) (-0.007553417 -0.01698691 -0.004976073) (-0.006528028 -0.01700341 -0.005021866) (-0.006526587 -0.01600793 -0.005519803) (-0.007009316 -0.01900112 -0.004502939) (-0.007602383 -0.01801998 -0.004603692) (-0.00703007 -0.01700098 -0.004516139) (-0.007506107 -0.01600006 -0.004498703) (-0.007535124 -0.01700218 -0.004011542) (0.007311426 -0.01771962 -0.005332028) (0.007369726 -0.01897751 -0.004861042) (0.007076925 -0.0169736 -0.005575957) (0.006538081 -0.01700095 -0.005021969) (0.007497907 -0.01699924 -0.004996791) (0.00737957 -0.01600881 -0.005382995) (0.007014008 -0.01899957 -0.004506423) (0.007603557 -0.01798729 -0.004605366) (0.007801406 -0.01871849 -0.004344459) (0.00764653 -0.01925721 -0.004143107) (0.007042668 -0.01700303 -0.004524218) (0.007886985 -0.01701371 -0.004387422) (0.007659546 -0.01627993 -0.004672339) (0.007530001 -0.01700277 -0.004014581) (0.008322489 -0.01672849 -0.003812987) (-0.007853462 -0.01271807 -0.00534567) (-0.008345816 -0.01371893 -0.004349758) (-0.008045084 -0.01502053 -0.004503426) (-0.008379989 -0.01498047 -0.003890052) (-0.008129254 -0.01299124 -0.004630562) (-0.008404827 -0.01201333 -0.004398745) (-0.008511573 -0.01300406 -0.003996339) (-0.006527502 -0.01400361 -0.005517979) (-0.006543683 -0.01500654 -0.005027029) (-0.007039104 -0.01300246 -0.005520865) (-0.007691028 -0.01328942 -0.005175671) (-0.007050738 -0.01500406 -0.004524714) (-0.00755386 -0.0140024 -0.00453517) (-0.007070567 -0.01300571 -0.004542437) (-0.007575934 -0.01200659 -0.004548147) (-0.007565856 -0.01300322 -0.004036432) (0.00750078 -0.01400013 -0.005500329) (0.007601667 -0.01498767 -0.00511219) (0.007034186 -0.01300093 -0.005527323) (0.007668716 -0.01327018 -0.005191606) (0.007830978 -0.01272484 -0.005346253) (0.007619211 -0.01198783 -0.005607903) (0.00705162 -0.01500417 -0.00453249) (0.007543057 -0.01400234 -0.004524481) (0.008065933 -0.01498555 -0.004483175) (0.007551716 -0.01500439 -0.004023053) (0.007075043 -0.01299812 -0.004554211) (0.008158259 -0.01303138 -0.004654267) (0.007560735 -0.01200144 -0.004548716) (0.007566033 -0.01299973 -0.004037017) (0.008353706 -0.01395735 -0.004340606) (0.008402365 -0.01199865 -0.004486841) (0.008520537 -0.01299962 -0.004005975) (-0.008341453 -0.01072356 -0.004853364) (-0.00835417 -0.009001073 -0.004871294) (-0.008008811 -0.008988609 -0.005493473) (-0.008509581 -0.009986203 -0.004505409) (-0.00818405 -0.01128878 -0.004681393) (-0.008618089 -0.01098641 -0.004105279) (-0.008066432 -0.009002567 -0.004535849) (-0.008570821 -0.008015767 -0.00453185) (-0.008733936 -0.009006749 -0.004151048) (-0.007038396 -0.009002614 -0.005519053) (-0.007566226 -0.009002642 -0.005034676) (-0.007089618 -0.01100684 -0.004557028) (-0.007577856 -0.01000658 -0.004542027) (0.007661038 -0.01027908 -0.005660839) (0.007530949 -0.01100157 -0.005024233) (0.007029929 -0.009003121 -0.005521211) (0.007547117 -0.00900076 -0.005021641) (0.007984533 -0.008999525 -0.005490736) (0.007508367 -0.00800013 -0.00550088) (0.007064383 -0.0110032 -0.004544872) (0.007564727 -0.0100035 -0.004530754) (0.008011701 -0.01100071 -0.004504923) (0.008058249 -0.009000459 -0.004522716) (0.00837756 -0.009012483 -0.004882531) (0.008513992 -0.01000357 -0.004495069) (0.008606833 -0.007998356 -0.004507267) (0.008718477 -0.009037384 -0.004147758) (-0.008340564 -0.005962085 -0.005356884) (-0.008405244 -0.007000233 -0.00498705) (-0.00846211 -0.004997908 -0.004981599) (-0.008100074 -0.004999013 -0.005595614) (-0.00831679 -0.003998135 -0.005309639) (-0.008833958 -0.006714252 -0.004345916) (-0.00861104 -0.005987659 -0.004604292) (-0.008060716 -0.006998639 -0.004526003) (-0.008707738 -0.007261457 -0.0041536) (-0.008795505 -0.004997212 -0.00437953) (-0.008026826 -0.005000793 -0.004517229) (-0.008687907 -0.004003889 -0.004627271) (-0.008526592 -0.0050006 -0.004012391) (-0.007064066 -0.005001717 -0.005545389) (-0.007533623 -0.005000526 -0.005022139) (0.0075437 -0.006001533 -0.005528986) (0.007531594 -0.007002737 -0.005017812) (0.007076059 -0.005001923 -0.005560088) (0.007555001 -0.00500089 -0.005035026) (0.008131368 -0.00499874 -0.005620628) (0.007570527 -0.00400178 -0.005565247) (0.008029942 -0.007001853 -0.004511401) (0.008068044 -0.005000731 -0.004519077) (0.00852118 -0.004999326 -0.00500885) (0.008841218 -0.006964087 -0.004371275) (0.008674927 -0.005999849 -0.004622481) (0.008836866 -0.005000979 -0.004370483) (0.008731582 -0.004002269 -0.004646386) (0.008552591 -0.00500073 -0.004015774) (-0.008359536 -0.001998716 -0.005381559) (-0.008521651 -0.003001804 -0.00501018) (-0.008603319 -0.00100141 -0.005000644) (-0.008159945 -0.0009993243 -0.005658548) (-0.008415906 -1.347401e-07 -0.005398996) (-0.008866655 -0.003001568 -0.004378587) (-0.008731569 -0.002039848 -0.004690155) (-0.00807214 -0.002999714 -0.004536385) (-0.008565885 -0.002999851 -0.004026768) (-0.008906673 -0.001001366 -0.004498078) (-0.008087894 -0.001003034 -0.004564731) (-0.008531544 3.175031e-06 -0.004516251) (-0.008598932 -0.001001281 -0.004050067) (-0.007067967 -0.001003151 -0.005565212) (-0.007570124 -0.001001666 -0.005055976) (0.007594651 -0.002006918 -0.005538258) (0.007579726 -0.003002309 -0.005039487) (0.007042961 -0.001002091 -0.005520766) (0.007561221 -0.001000896 -0.005033476) (0.008159697 -0.0009980219 -0.005664207) (0.007544014 -2.762766e-07 -0.005519278) (0.008095858 -0.003002279 -0.004554273) (0.008095257 -0.0009999988 -0.004546795) (0.008605427 -0.001012999 -0.004988801) (0.008891843 -0.003000829 -0.0043871) (0.008755879 -0.002033976 -0.004707045) (0.008914179 -0.001012449 -0.004497547) (0.008693392 0.0002720869 -0.004687227) (0.008603287 -0.001000461 -0.004044159) (-0.008364942 0.001998443 -0.005361372) (-0.008605949 0.001002499 -0.005000783) (-0.008529008 0.003003039 -0.005021489) (-0.008135871 0.003000494 -0.005622167) (-0.008307304 0.003998433 -0.005327208) (-0.008913674 0.0009989537 -0.004499181) (-0.008758621 0.00203942 -0.004649879) (-0.008101226 0.00100987 -0.004553617) (-0.008601241 0.001009521 -0.004050868) (-0.008863659 0.003000972 -0.004384238) (-0.008083204 0.0030021 -0.00453105) (-0.008691949 0.003999997 -0.004666399) (-0.008565992 0.00300141 -0.004023329) (-0.007095194 0.003005293 -0.005556389) (-0.007568025 0.003002108 -0.005036399) (0.007578215 0.002001331 -0.005549953) (0.007560989 0.001000507 -0.00503712) (0.007085282 0.003003983 -0.005564002) (0.007565816 0.003001961 -0.005042615) (0.00813869 0.002999591 -0.005632518) (0.00758496 0.004002083 -0.00554021) (0.008103477 0.001001255 -0.004561017) (0.008077034 0.003004111 -0.004536636) (0.008530437 0.002999982 -0.005012954) (0.008930237 0.001014653 -0.004414425) (0.008750469 0.002004319 -0.004687399) (0.008862967 0.00299759 -0.004379481) (0.008687531 0.004000972 -0.004644733) (0.008568753 0.003003039 -0.004025942) (-0.008328439 0.005965989 -0.005336592) (-0.008480478 0.00499803 -0.004986623) (-0.008408457 0.006999512 -0.004987971) (-0.008076921 0.00700039 -0.00548351) (-0.008811455 0.004990216 -0.004331948) (-0.008612528 0.005986901 -0.004602867) (-0.008038777 0.005000588 -0.00451822) (-0.008511571 0.00500004 -0.00400522) (-0.008829096 0.006731181 -0.004350812) (-0.008059788 0.006999091 -0.004528794) (-0.00858036 0.008014241 -0.004537758) (-0.008692924 0.007273609 -0.004162343) (-0.007038505 0.007001094 -0.005532212) (-0.007565553 0.006999936 -0.005037583) (0.007548484 0.006000373 -0.005541347) (0.007551696 0.005000581 -0.005027934) (0.007073555 0.007001492 -0.005551726) (0.00760235 0.006996944 -0.005038954) (0.008105662 0.0070002 -0.005501617) (0.007551149 0.008001837 -0.005532193) (0.008035174 0.005000939 -0.004514) (0.008072954 0.006997931 -0.004519574) (0.008406708 0.006997955 -0.004989411) (0.008797158 0.004996404 -0.004362245) (0.00861087 0.005986957 -0.004608508) (0.008814494 0.006716004 -0.004348216) (0.008575807 0.008013683 -0.004521932) (0.008682696 0.007288436 -0.004142678) (-0.008389999 0.009002721 -0.004887388) (-0.008339535 0.01096296 -0.004852395) (-0.007901029 0.01101331 -0.00540756) (-0.008518512 0.01000226 -0.004502355) (-0.00807041 0.009003006 -0.004534786) (-0.008707136 0.009001916 -0.004146031) (-0.008013288 0.01100087 -0.004508002) (-0.008386084 0.01199665 -0.004485635) (-0.008624995 0.01100118 -0.004015155) (-0.00705991 0.01100769 -0.005543049) (-0.007536962 0.01100195 -0.005026287) (-0.007563203 0.01000394 -0.004533897) (-0.007066687 0.01100544 -0.004541163) (-0.007571088 0.0120086 -0.004543922) (0.00768305 0.01027055 -0.005665283) (0.007571005 0.00900266 -0.005036142) (0.007078094 0.01100382 -0.005556293) (0.007565462 0.01100106 -0.005031608) (0.007925661 0.01101532 -0.005413038) (0.007641992 0.01199713 -0.005632977) (0.007566316 0.01000155 -0.004532946) (0.008059178 0.009001577 -0.004524353) (0.007086051 0.0110006 -0.004546229) (0.008183743 0.01127852 -0.004661435) (0.007588665 0.01200202 -0.004538813) (0.008317299 0.01073601 -0.004850141) (0.008493701 0.009988062 -0.004495293) (0.008397352 0.01201271 -0.004395419) (0.008622272 0.01100179 -0.004018939) (-0.008350203 0.01372428 -0.004362831) (-0.008122682 0.01302147 -0.004616127) (-0.008496109 0.01298615 -0.004002204) (-0.008018636 0.01500047 -0.004510878) (-0.008374211 0.01501124 -0.003893266) (-0.006537594 0.01400332 -0.005528322) (-0.007168766 0.01528132 -0.00566153) (-0.007620005 0.01498826 -0.00511875) (-0.006558301 0.01500481 -0.005041755) (-0.006545711 0.01600121 -0.005539288) (-0.007083031 0.0130069 -0.004554106) (-0.007559973 0.0140038 -0.004526868) (-0.007061044 0.01500597 -0.004534443) (-0.007677053 0.01627919 -0.004643464) (-0.007569492 0.01500766 -0.004027975) (0.007507114 0.01400138 -0.005505633) (0.007522536 0.01300122 -0.005011861) (0.00716407 0.01503698 -0.005675436) (0.006562949 0.01500603 -0.005047785) (0.007623266 0.01502079 -0.005123219) (0.007381114 0.01596941 -0.005382945) (0.00707119 0.01300409 -0.004536866) (0.007556999 0.01400451 -0.004529643) (0.008154263 0.01298877 -0.004616334) (0.007577496 0.01300252 -0.00403428) (0.007072681 0.01500666 -0.004539115) (0.008038453 0.0150009 -0.004516022) (0.007713167 0.01627899 -0.004650442) (0.00759032 0.01500405 -0.004037325) (0.008345545 0.01372639 -0.004367132) (0.008400289 0.01498136 -0.003893571) (-0.007896885 0.01701107 -0.004395686) (-0.008307256 0.01672646 -0.003850164) (-0.007812749 0.01872597 -0.00433678) (-0.006673943 0.01827487 -0.005686105) (-0.006537162 0.01700365 -0.005034337) (-0.006917153 0.0190283 -0.005413718) (-0.007358907 0.0189729 -0.004862733) (-0.006527667 0.01900297 -0.005030173) (-0.006573609 0.01997342 -0.005574642) (-0.007036841 0.01700404 -0.004524434) (-0.007604725 0.01798533 -0.004595023) (-0.007014721 0.01899957 -0.004512597) (-0.007397469 0.01998001 -0.004481443) (-0.00765949 0.01925364 -0.004140544) (-0.006543543 0.02000149 -0.00451863) (0.007456386 0.01701723 -0.005026451) (0.006913014 0.01901577 -0.005405656) (0.006556506 0.0190043 -0.005031695) (0.007375832 0.01873312 -0.004864169) (0.007080096 0.01700385 -0.004537234) (0.006577662 0.01800639 -0.004551407) (0.007627689 0.01799017 -0.004509697) (0.007909125 0.01698137 -0.004402124) (0.007543842 0.01700475 -0.004020559) (0.007213185 0.01927077 -0.004686131) (0.006559405 0.02000342 -0.004529257) (0.006585661 0.0190077 -0.004053929) (0.007398628 0.01998258 -0.004392108) (0.007654677 0.01903451 -0.00403872) (-0.006375058 0.0219951 -0.005377242) (-0.006639913 0.02125398 -0.005133902) (-0.00640589 0.02300944 -0.004992127) (-0.005979241 0.02299484 -0.005485049) (-0.007110021 0.02101941 -0.004521479) (-0.006676883 0.02227053 -0.00463875) (-0.006049309 0.02100726 -0.004525583) (-0.006572167 0.02101254 -0.004041745) (-0.00687282 0.02297713 -0.004368594) (-0.007331305 0.0227404 -0.003821652) (-0.006031623 0.02300648 -0.004506359) (-0.006560134 0.02398284 -0.004479023) (-0.006512628 0.02300292 -0.003998712) (-0.005033042 0.02299722 -0.005547478) (-0.005529602 0.02300257 -0.005023004) (-0.004520536 0.02400377 -0.00553356) (-0.005519537 0.02399952 -0.004507372) (0.00551536 0.02200218 -0.005512941) (0.005555333 0.02100649 -0.005036617) (0.005022441 0.02300222 -0.005539956) (0.005524403 0.02300172 -0.00502212) (0.005982195 0.02299748 -0.005486898) (0.005590507 0.02400203 -0.005589093) (0.006064508 0.02100359 -0.004531002) (0.006035597 0.02299879 -0.004517744) (0.005524285 0.02400128 -0.004513929) (0.006405013 0.02301203 -0.004995552) (0.007098681 0.0209943 -0.004505747) (0.006692708 0.02227395 -0.004665246) (0.00740418 0.02097301 -0.003989349) (0.006868649 0.02297781 -0.004377423) (0.006577273 0.02398825 -0.004485644) (0.006523324 0.02299967 -0.004009774) (-0.006267088 0.0247256 -0.004814849) (-0.006324263 0.0257381 -0.004366341) (-0.00612218 0.02524779 -0.00460905) (-0.006602473 0.02501798 -0.004008654) (-0.005882944 0.02696962 -0.004463574) (-0.006343816 0.02674399 -0.00386381) (-0.004499627 0.02599814 -0.005507036) (-0.004529271 0.02500613 -0.005038774) (-0.004965535 0.02697424 -0.00544891) (-0.005450028 0.02696566 -0.004961513) (-0.004519264 0.0270014 -0.005017646) (-0.004012126 0.02700352 -0.0055353) (-0.004498316 0.02799895 -0.005495755) (-0.005033363 0.02500236 -0.0045237) (-0.005501306 0.02599655 -0.004493744) (-0.00502297 0.02700097 -0.004505932) (-0.005494003 0.0279965 -0.004494307) (-0.005521403 0.0270048 -0.004007619) (-0.004545977 0.02800874 -0.004542265) (-0.003040025 0.02701085 -0.005593553) (-0.00354501 0.02701313 -0.005076255) (-0.002533313 0.02801003 -0.005588134) (0.003528093 0.02601176 -0.005563611) (0.003022382 0.02701144 -0.005564981) (0.003530902 0.02701275 -0.005062518) (0.00400802 0.02700266 -0.005517912) (0.003510323 0.02800388 -0.005523601) (0.005372606 0.02598979 -0.005384049) (0.005634679 0.02525311 -0.00514846) (0.004992265 0.02698425 -0.005397235) (0.004512866 0.02700519 -0.005036277) (0.005463238 0.0269769 -0.004965187) (0.005038969 0.02500527 -0.004531275) (0.005504069 0.02599973 -0.00450134) (0.006122943 0.02525369 -0.004618734) (0.005545551 0.02500615 -0.00402388) (0.005016827 0.02700624 -0.004530264) (0.004542013 0.02800755 -0.004557056) (0.005887716 0.02698078 -0.004477796) (0.005501549 0.02800421 -0.004506306) (0.005528039 0.02700848 -0.004014729) (0.006333942 0.02573636 -0.00435794) (0.006367041 0.02675025 -0.003873951) (-0.004513423 0.02902267 -0.005105416) (-0.004330738 0.03073051 -0.004777434) (-0.005110478 0.02901731 -0.004498923) (-0.004594023 0.0302311 -0.004595986) (-0.004059362 0.02901339 -0.004558704) (-0.00455746 0.02901846 -0.004056126) (-0.004806876 0.03072042 -0.004301037) (-0.004110565 0.03122689 -0.004594599) (-0.004605651 0.03123238 -0.004117073) (-0.002514892 0.03000937 -0.005536247) (-0.002537922 0.02901996 -0.005084256) (-0.002997835 0.03099036 -0.005512503) (-0.003525741 0.03102125 -0.005132851) (-0.002522185 0.03101588 -0.005072229) (-0.002168273 0.03131627 -0.005697761) (-0.002498783 0.0320004 -0.005429743) (-0.003548155 0.03002427 -0.004557376) (-0.003022506 0.03102007 -0.004567665) (-0.003606461 0.03223422 -0.004614028) (-0.002531103 0.03200478 -0.004553342) (-0.0005011739 0.03001626 -0.005575073) (-0.001006312 0.031019 -0.005555853) (-0.001515984 0.03101895 -0.00508264) (-0.0005019757 0.03102103 -0.005102002) (-2.560128e-07 0.03102981 -0.005595922) (-0.0004886293 0.03226754 -0.005773682) (-0.001519065 0.03201894 -0.004579959) (0.001509277 0.0300118 -0.005575755) (0.001007814 0.03101741 -0.005566608) (0.0005079096 0.03101976 -0.005104778) (0.001513904 0.03101699 -0.005071171) (0.00215173 0.03126042 -0.005663956) (0.00148471 0.03219758 -0.0056113) (0.001513782 0.03201572 -0.004579963) (0.003485748 0.02998657 -0.005486708) (0.003524112 0.02900747 -0.005031837) (0.00300263 0.03099832 -0.005430413) (0.002513102 0.03102081 -0.005058584) (0.003524592 0.03103698 -0.005033941) (0.003536967 0.03002365 -0.00456278) (0.004035789 0.02900916 -0.004539596) (0.003031778 0.03103326 -0.004581853) (0.002507074 0.0320101 -0.004541021) (0.004043629 0.03102962 -0.004644681) (0.003623096 0.03199716 -0.004630611) (0.005073545 0.02905674 -0.004546073) (0.004544301 0.03003279 -0.004641828) (0.005527249 0.02900827 -0.004020317) (0.004761724 0.03066934 -0.004356801) (0.004641352 0.03120744 -0.004018798) (-0.002509181 0.03300072 -0.00501925) (-0.003005395 0.03319395 -0.004612012) (-0.003292336 0.03372377 -0.004288907) (-0.002515062 0.03401825 -0.00451956) (-0.002029729 0.03301189 -0.00455837) (-0.002537882 0.03300944 -0.00406346) (-0.003276712 0.03463916 -0.003804308) (-0.002018372 0.03483596 -0.004448013) (-0.002524418 0.03501576 -0.004040448) (-0.0004942686 0.03376348 -0.005288068) (-0.0005004123 0.03300722 -0.005038137) (-0.001358004 0.03474262 -0.004768541) (-0.0004983654 0.03479003 -0.004849986) (-0.001010799 0.0330141 -0.00455767) (-0.001656095 0.03429757 -0.004758559) (-0.0005033545 0.03400536 -0.004523923) (-0.0009888707 0.03515673 -0.004583831) (-0.001331088 0.03567259 -0.004258907) (-0.00170017 0.03530882 -0.00423398) (1.498574e-06 0.03519909 -0.004636075) (-0.0004992241 0.03580052 -0.0044014) (-0.0005058758 0.03502525 -0.004053514) (0.001497742 0.03323612 -0.005175843) (0.0005050766 0.0347559 -0.004865306) (0.001415169 0.03467995 -0.004755167) (0.001009274 0.03300602 -0.004579926) (0.0005038839 0.03400281 -0.004520838) (0.001649151 0.03426769 -0.004671213) (0.002005996 0.0330055 -0.004547522) (0.001519099 0.03301896 -0.004081771) (0.0009947225 0.03515617 -0.00459129) (0.0005076792 0.03580728 -0.004414839) (0.0005114776 0.03502297 -0.00406128) (0.002006944 0.03481669 -0.004415497) (0.001357869 0.03567769 -0.004290437) (0.001707357 0.03530332 -0.004269671) (0.003292741 0.03264689 -0.00475543) (0.002990443 0.03317856 -0.004589195) (0.002501106 0.03400486 -0.004503959) (0.003321173 0.03367498 -0.004271349) (0.003601329 0.03323008 -0.004114547) (0.002512716 0.03501199 -0.004021531) (0.003290084 0.03460995 -0.003785773) (-0.0004907211 0.03672449 -0.003833535) (-0.002481505 -0.03678544 -0.002872049) (-0.001879134 -0.03675402 -0.003356407) (-0.002488825 -0.03582227 -0.003497791) (-0.002334084 -0.03770062 -0.002347687) (-0.00295526 -0.03678476 -0.002466699) (-0.003502519 -0.03596806 -0.002503115) (-0.003302953 -0.03672102 -0.001943481) (-0.002228285 -0.03724197 -0.002715304) (-0.002539597 -0.03602605 -0.00254334) (-0.002695762 -0.0372993 -0.002178916) (-0.0004884441 -0.03765517 -0.003229749) (-0.001003203 -0.03714261 -0.003495282) (-0.001542029 -0.03725339 -0.003217834) (-0.0005257657 -0.03703293 -0.003026439) (-9.53255e-06 -0.03714244 -0.003536716) (-0.0005124172 -0.03602491 -0.0035386) (-0.0009797644 -0.0386353 -0.002289576) (-0.001495282 -0.03813706 -0.002487688) (-0.0004913169 -0.03831098 -0.002728842) (-5.275834e-07 -0.03877581 -0.002391143) (-0.0005082832 -0.03902027 -0.002041725) (-0.001048757 -0.03707306 -0.002578315) (-0.001561915 -0.03605544 -0.002582998) (-0.001547327 -0.03705617 -0.002073387) (-2.639621e-06 -0.03706087 -0.002590597) (-0.0005205025 -0.03605532 -0.002569332) (-0.0005128307 -0.03705859 -0.002070461) (0.001027363 -0.03687038 -0.003560599) (0.0006153524 -0.037385 -0.003301406) (0.001513756 -0.03723868 -0.003159819) (0.001964808 -0.036738 -0.003343978) (0.001543416 -0.03633921 -0.003744796) (0.0009642952 -0.03862371 -0.002341069) (0.0005085014 -0.0382603 -0.002752453) (0.001502624 -0.0381744 -0.002528528) (0.001462421 -0.0386909 -0.001946528) (0.00103213 -0.03708076 -0.002588342) (0.00051525 -0.03607271 -0.002596489) (0.0005123269 -0.03706324 -0.002086845) (0.002189519 -0.03732055 -0.002704402) (0.001543424 -0.03606412 -0.002579529) (0.001555747 -0.03706119 -0.002080241) (0.002488951 -0.03677523 -0.002958171) (0.002307064 -0.03765968 -0.00234823) (0.00296411 -0.03679368 -0.002471728) (0.002559443 -0.03602875 -0.002553194) (0.002737348 -0.03731054 -0.002206802) (0.003512133 -0.03599203 -0.002512418) (0.003360733 -0.03675599 -0.001992337) (-0.004545847 -0.03304348 -0.00304535) (-0.004125434 -0.03320088 -0.003517164) (-0.004599415 -0.03219006 -0.003508838) (-0.004533429 -0.03399712 -0.002519082) (-0.004046595 -0.03498243 -0.002535109) (-0.004406804 -0.03480807 -0.00201144) (-0.005005668 -0.03298025 -0.002503928) (-0.005418521 -0.0319943 -0.002502995) (-0.005359515 -0.0327688 -0.002000149) (-0.004070104 -0.03303974 -0.002566499) (-0.004546409 -0.03202156 -0.002538247) (-0.00455177 -0.0330248 -0.00203775) (-0.002561835 -0.03402439 -0.003593152) (-0.002545273 -0.03502818 -0.003066825) (-0.003056466 -0.0330246 -0.003586295) (-0.003576359 -0.0330444 -0.003085852) (-0.003042468 -0.03504112 -0.002567898) (-0.003566196 -0.03404297 -0.002583628) (0.001540198 -0.03405078 -0.003598369) (0.00154835 -0.03506561 -0.00309432) (0.003595755 -0.03419251 -0.00359595) (0.003511383 -0.03518666 -0.003037214) (0.003016335 -0.03301336 -0.003527442) (0.003526983 -0.03300863 -0.003011603) (0.004117468 -0.03323542 -0.003614745) (0.00306431 -0.03501062 -0.002542093) (0.003574382 -0.03401589 -0.002536145) (0.004016771 -0.03499708 -0.002523227) (0.003550252 -0.03502012 -0.002032177) (0.004041828 -0.03301097 -0.00252348) (0.00475868 -0.03266785 -0.003304875) (0.004607976 -0.03320019 -0.002991452) (0.004506904 -0.03399365 -0.002495849) (0.004990775 -0.03298648 -0.002498811) (0.00455153 -0.03201042 -0.002519376) (0.004522902 -0.03300748 -0.00201691) (0.005412928 -0.03199681 -0.002498458) (0.005344789 -0.03276019 -0.001976789) (-0.006329552 -0.02872981 -0.002863665) (-0.005848723 -0.02898477 -0.003491366) (-0.006322161 -0.02773772 -0.003368292) (-0.006309241 -0.02966329 -0.002312405) (-0.005850496 -0.0307655 -0.002483471) (-0.006147421 -0.02924755 -0.00263153) (-0.006630374 -0.02801289 -0.002518393) (-0.006559284 -0.02897513 -0.001985206) (-0.004551154 -0.03000151 -0.003534968) (-0.004549085 -0.03101253 -0.003041973) (-0.005034663 -0.0289961 -0.00351812) (-0.005506711 -0.02899846 -0.003002607) (-0.005038053 -0.0310096 -0.002516551) (-0.00550352 -0.02999774 -0.002495631) (-0.005047761 -0.0290086 -0.002523739) (-0.005547933 -0.02800538 -0.002517932) (-0.005536674 -0.02900698 -0.002008989) (0.005511536 -0.03000357 -0.003514356) (0.005496193 -0.0309854 -0.002988931) (0.00507352 -0.02901886 -0.003517285) (0.005541197 -0.02900823 -0.003016439) (0.005912934 -0.02898442 -0.003500131) (0.005549514 -0.02801356 -0.003522998) (0.00503978 -0.0310032 -0.002517476) (0.005514003 -0.02999803 -0.002508877) (0.005856809 -0.03077323 -0.002499519) (0.00568515 -0.03129671 -0.002150584) (0.005063931 -0.02901018 -0.002527091) (0.006151972 -0.0292459 -0.002630798) (0.005569228 -0.02800743 -0.002530358) (0.005540726 -0.02900486 -0.002013907) (0.006347478 -0.02874717 -0.002866405) (0.006267645 -0.0296979 -0.002343933) (0.006611485 -0.02800424 -0.00250597) (0.006490797 -0.02899565 -0.001996703) (-0.006610455 -0.02601906 -0.003513449) (-0.006620174 -0.02702347 -0.003022891) (-0.006913393 -0.0249826 -0.003491153) (-0.007330685 -0.02474029 -0.002863429) (-0.006524017 -0.02500136 -0.003010336) (-0.006050483 -0.02500435 -0.003519356) (-0.006527218 -0.02400675 -0.003511315) (-0.006905629 -0.02697708 -0.002486025) (-0.007310186 -0.02571755 -0.002368248) (-0.006536164 -0.02600744 -0.00251535) (-0.006053692 -0.02700679 -0.002522246) (-0.006527125 -0.02700347 -0.002010864) (-0.007167664 -0.02526512 -0.002631511) (-0.007516844 -0.02402794 -0.00250372) (-0.007501974 -0.02497567 -0.002002386) (-0.00607343 -0.02501354 -0.002521036) (-0.0065579 -0.02401051 -0.00251645) (-0.006560077 -0.02501373 -0.002011846) (0.005573278 -0.02601109 -0.003539459) (0.005583964 -0.02701072 -0.0030416) (0.006062842 -0.02500584 -0.003526807) (0.006085464 -0.02700905 -0.002529505) (0.006084602 -0.02501005 -0.002527303) (0.006917456 -0.02498593 -0.003495138) (0.006541027 -0.02500608 -0.003018036) (0.007330114 -0.02473345 -0.002859212) (0.007327166 -0.02373875 -0.003350334) (0.006926449 -0.02696827 -0.002494877) (0.0065479 -0.02600706 -0.002518237) (0.007322874 -0.02570067 -0.002348805) (0.007169449 -0.0252586 -0.002625785) (0.006562534 -0.02400904 -0.002514056) (0.006572376 -0.02500694 -0.002013876) (0.007524305 -0.02402734 -0.002504482) (0.007507566 -0.02497642 -0.002003929) (-0.007848661 -0.0209739 -0.003385143) (-0.007850468 -0.02276359 -0.002474829) (-0.008100734 -0.02101346 -0.002499932) (-0.008346708 -0.01994781 -0.002479041) (-0.00835326 -0.02075311 -0.001979389) (-0.006545339 -0.02200653 -0.003522406) (-0.006549491 -0.02300826 -0.003016804) (-0.007041458 -0.02100586 -0.003523945) (-0.007507081 -0.02100039 -0.002999555) (-0.007045084 -0.0230112 -0.002510913) (-0.0075053 -0.02200005 -0.002501376) (-0.007048236 -0.02100781 -0.002512936) (-0.007537539 -0.02000524 -0.002511168) (-0.007562002 -0.02100565 -0.002007936) (0.007562721 -0.02198563 -0.003480628) (0.007580514 -0.02299911 -0.002992036) (0.007045928 -0.02100463 -0.003528713) (0.007499768 -0.0210004 -0.003001438) (0.007859785 -0.02097597 -0.003360653) (0.00766829 -0.02028021 -0.003658679) (0.007037235 -0.02300843 -0.002511626) (0.007504567 -0.02200458 -0.002501913) (0.007847568 -0.02275532 -0.002479427) (0.007677396 -0.02330077 -0.002157201) (0.00704784 -0.02100501 -0.002514823) (0.00809958 -0.02101289 -0.002499057) (0.007541643 -0.02000439 -0.002509559) (0.007559351 -0.02100481 -0.002012023) (0.008344463 -0.01994988 -0.002477381) (0.008369741 -0.02077109 -0.001984026) (-0.008336892 -0.01772634 -0.003344186) (-0.008354175 -0.01897779 -0.00287292) (-0.00850211 -0.0169859 -0.002990746) (-0.008164183 -0.01702282 -0.003622454) (-0.008411509 -0.01599937 -0.00349137) (-0.008530149 -0.01801744 -0.002504118) (-0.008005845 -0.01900195 -0.002502906) (-0.008522588 -0.01901525 -0.002006546) (-0.008847382 -0.0167172 -0.002340101) (-0.008056676 -0.01700612 -0.00251565) (-0.008685852 -0.01602409 -0.002645283) (-0.008664386 -0.01725475 -0.002143716) (-0.007074607 -0.01700722 -0.003529567) (-0.007576975 -0.01700682 -0.003027022) (-0.007064087 -0.01900675 -0.002523269) (-0.007572055 -0.01800693 -0.002524053) (0.007545624 -0.01800338 -0.003511155) (0.007538685 -0.01900189 -0.003010656) (0.007069155 -0.01700837 -0.00352548) (0.00756494 -0.01700783 -0.003017309) (0.008165452 -0.01725498 -0.003628894) (0.007548755 -0.01600573 -0.003517372) (0.007061509 -0.01900533 -0.002517981) (0.007565712 -0.01800479 -0.002514908) (0.008001563 -0.0189991 -0.002497648) (0.00754933 -0.01900367 -0.002009019) (0.008045259 -0.01700376 -0.002509974) (0.008489503 -0.01698591 -0.002997047) (0.008520313 -0.01801489 -0.002505666) (0.008815343 -0.01672732 -0.002340343) (0.008681185 -0.01602114 -0.002635665) (0.008655251 -0.01726354 -0.002128731) (-0.00860497 -0.01400533 -0.003504823) (-0.008646112 -0.01503028 -0.003039447) (-0.00883841 -0.01297618 -0.003371333) (-0.008508064 -0.01300001 -0.00300644) (-0.008047431 -0.01300158 -0.003521449) (-0.008674905 -0.01227402 -0.003649147) (-0.008892333 -0.01499495 -0.002491221) (-0.008515889 -0.01400198 -0.002506086) (-0.008086926 -0.01499878 -0.002531964) (-0.008549824 -0.01499783 -0.002016243) (-0.009042125 -0.01301891 -0.002508837) (-0.009329418 -0.01172425 -0.002340222) (-0.00932133 -0.01273399 -0.001856397) (-0.008067076 -0.01300388 -0.00251795) (-0.008552824 -0.01200178 -0.002509561) (-0.00857894 -0.01300717 -0.002010404) (0.008057853 -0.01300328 -0.003512478) (0.008108137 -0.01500027 -0.002525886) (0.008088022 -0.01300348 -0.002513666) (0.008839389 -0.01297131 -0.003355444) (0.008522365 -0.0130046 -0.003002769) (0.008902249 -0.01499505 -0.002495272) (0.008527206 -0.01400329 -0.002500937) (0.009087521 -0.01300381 -0.002501399) (0.008594954 -0.01200021 -0.002516092) (0.008597429 -0.01300223 -0.00200883) (0.009334649 -0.01273337 -0.001850638) (-0.008549821 -0.01000068 -0.00352482) (-0.008552238 -0.01100152 -0.003012407) (-0.009026899 -0.009002643 -0.00348982) (-0.009324059 -0.008720138 -0.002860366) (-0.008580665 -0.009004417 -0.003019001) (-0.008590186 -0.008003343 -0.003527225) (-0.009143498 -0.01099265 -0.002614665) (-0.009332022 -0.01000961 -0.002380422) (-0.008597564 -0.01000951 -0.002525322) (-0.008560575 -0.01100434 -0.002009744) (-0.009177761 -0.009278422 -0.002657004) (-0.009451059 -0.007983206 -0.00246684) (-0.009475918 -0.008997199 -0.001987816) (-0.008563042 -0.00800861 -0.00251226) (-0.008576815 -0.009014195 -0.002015072) (0.009024582 -0.009002065 -0.003501697) (0.008587902 -0.009000031 -0.003017172) (0.009336103 -0.008724651 -0.002843337) (0.009142209 -0.01100306 -0.002525781) (0.008592874 -0.01000488 -0.002514844) (0.009320225 -0.009977917 -0.002368449) (0.009340921 -0.01099133 -0.001979937) (0.009177168 -0.009279212 -0.002658678) (0.008554201 -0.008004368 -0.002513943) (0.008545678 -0.009004801 -0.002010749) (0.009398055 -0.007977741 -0.002470528) (0.009396453 -0.008997177 -0.001991691) (-0.008575149 -0.00599938 -0.003513321) (-0.008596263 -0.007002105 -0.003014936) (-0.009122174 -0.005000086 -0.003514761) (-0.009385335 -0.004997839 -0.002990848) (-0.008604263 -0.005003433 -0.003028119) (-0.008557982 -0.004001228 -0.003515565) (-0.009024961 -0.007002515 -0.002502486) (-0.009454849 -0.005996248 -0.002479647) (-0.008575693 -0.006002485 -0.002508832) (-0.008573903 -0.007004074 -0.002008114) (-0.009061839 -0.005002527 -0.002516058) (-0.009521986 -0.004000834 -0.002500154) (-0.00959959 -0.005008965 -0.002030133) (-0.008561746 -0.004001927 -0.002514573) (-0.00858192 -0.005002884 -0.002015567) (0.009346631 -0.005963953 -0.003354766) (0.009349956 -0.006993979 -0.002988266) (0.00918647 -0.005000009 -0.003658367) (0.008540576 -0.005001267 -0.003017339) (0.009400689 -0.004996123 -0.002967543) (0.009319111 -0.003998546 -0.003346533) (0.009010601 -0.00700067 -0.00250343) (0.008534226 -0.006002007 -0.002508374) (0.009437847 -0.006000715 -0.002489234) (0.009477539 -0.006999929 -0.001995928) (0.009010361 -0.005001277 -0.002506723) (0.008555193 -0.004001488 -0.002513239) (0.008562694 -0.005001941 -0.002008703) (0.009523463 -0.004002848 -0.00250392) (0.009564267 -0.005001635 -0.002007739) (-0.008587863 -0.002000242 -0.003543644) (-0.00855297 -0.003001099 -0.003021839) (-0.009258097 -0.0009966115 -0.00365934) (-0.00949215 -0.0009984926 -0.002986461) (-0.008584804 -0.0009994112 -0.003031061) (-0.008621813 -1.63381e-07 -0.003542534) (-0.009049418 -0.003000902 -0.002512823) (-0.009584666 -0.002003024 -0.002541409) (-0.009086143 -0.0009992009 -0.002526166) (-0.009660014 5.322543e-06 -0.002548381) (-0.00971859 -0.0009994207 -0.002137849) (0.009330734 -0.002002789 -0.003383094) (0.009465671 -0.003001852 -0.002977301) (0.009224396 -0.0009993003 -0.003696226) (0.008584914 -0.001000804 -0.003032075) (0.009489882 -0.001002317 -0.002980837) (0.009351939 -3.193236e-07 -0.003391956) (0.009065644 -0.003001557 -0.002511441) (0.00959993 -0.00200149 -0.002512606) (0.009632121 -0.003023294 -0.002019134) (0.009101019 -0.001002775 -0.002524178) (0.009654456 -2.166102e-07 -0.002550219) (0.009651422 -0.0009890917 -0.002125049) (-0.008589046 0.00200064 -0.003530572) (-0.008583706 0.001002151 -0.003029574) (-0.009182374 0.002999991 -0.003652615) (-0.009436045 0.003002227 -0.002961444) (-0.008544582 0.003000951 -0.00301713) (-0.008538738 0.004000291 -0.003512812) (-0.009087443 0.001001449 -0.002524866) (-0.009595435 0.002006055 -0.002529505) (-0.009046249 0.003000964 -0.002509693) (-0.009526572 0.004002435 -0.002500325) (-0.009634957 0.003001827 -0.002013019) (-0.008542432 0.004001388 -0.002512488) (0.009313408 0.002000806 -0.00336789) (0.009478082 0.0009985805 -0.002982011) (0.009180391 0.003002857 -0.003663219) (0.008548332 0.003001361 -0.003018559) (0.009439057 0.003000871 -0.002962161) (0.009286792 0.004003378 -0.00331386) (0.009092594 0.0009992865 -0.002514316) (0.009607388 0.002002459 -0.002531229) (0.009719817 0.000998912 -0.00212476) (0.009064079 0.003001418 -0.002509257) (0.009552935 0.004000788 -0.002502804) (0.009641345 0.003003041 -0.002024209) (-0.008531179 0.006000129 -0.003510607) (-0.008527043 0.004999866 -0.003011841) (-0.009064314 0.007012743 -0.003533383) (-0.009321551 0.007014144 -0.002883586) (-0.008579604 0.007001129 -0.003027596) (-0.00857023 0.008002568 -0.003529403) (-0.009017819 0.005000833 -0.002503965) (-0.009457102 0.005998883 -0.002489556) (-0.008557184 0.006000548 -0.002519148) (-0.008564785 0.005001847 -0.00201267) (-0.009020295 0.007001327 -0.002507554) (-0.009386072 0.007996999 -0.002455387) (-0.009533952 0.007001969 -0.001997987) (-0.008547424 0.008001162 -0.002511725) (-0.008562383 0.007001772 -0.002009613) (0.009288819 0.005963557 -0.003365042) (0.009394157 0.004998703 -0.002959432) (0.009098918 0.006998028 -0.003508771) (0.008595943 0.007010376 -0.003042111) (0.009365759 0.007001898 -0.002986479) (0.009033523 0.005001147 -0.002503049) (0.008549847 0.006003509 -0.002514679) (0.009491419 0.00600007 -0.002494959) (0.009630224 0.005006041 -0.002012479) (0.00905193 0.007005711 -0.002519444) (0.008569925 0.008005017 -0.002524799) (0.008579379 0.007002985 -0.002015647) (0.009436121 0.007994566 -0.002475512) (0.009576063 0.007000539 -0.002007493) (-0.008528513 0.01000075 -0.003507118) (-0.00856355 0.009000653 -0.003015577) (-0.008909748 0.01099957 -0.003491734) (-0.008592243 0.01100766 -0.003030132) (-0.008713687 0.01204003 -0.003652484) (-0.008997022 0.008997727 -0.002499772) (-0.009349125 0.01000029 -0.002470585) (-0.008591623 0.01000051 -0.002526218) (-0.008546733 0.009000896 -0.002007387) (-0.009160488 0.01102214 -0.002622375) (-0.009312116 0.0117238 -0.002352763) (-0.009417815 0.0109771 -0.0019673) (-0.008564919 0.01200036 -0.002511483) (-0.008555358 0.01100256 -0.002010571) (0.009349302 0.008967219 -0.002875772) (0.008915996 0.01100008 -0.003493355) (0.008594143 0.01100366 -0.003015032) (0.009014266 0.009001358 -0.002505864) (0.008588358 0.0100173 -0.002514856) (0.009365246 0.009994003 -0.00248146) (0.009512963 0.009000223 -0.001997669) (0.009182642 0.01102399 -0.002628684) (0.008581567 0.01200345 -0.002516985) (0.00856427 0.01100725 -0.002013009) (0.009320996 0.01172947 -0.002332848) (0.009421604 0.01097356 -0.001966743) (-0.008604333 0.01400178 -0.003504219) (-0.008513443 0.01300023 -0.003006816) (-0.008640247 0.01502785 -0.003035833) (-0.008041554 0.01500387 -0.00351572) (-0.008463179 0.01598174 -0.003469306) (-0.009048792 0.01301932 -0.002512178) (-0.0085168 0.01399892 -0.002505231) (-0.008063725 0.01300306 -0.002517367) (-0.008563529 0.01300022 -0.002012935) (-0.008890925 0.01499378 -0.002492258) (-0.008086188 0.01499529 -0.002525267) (-0.008666858 0.01602671 -0.002624288) (-0.008547469 0.01499714 -0.002013128) (0.008035954 0.01500376 -0.003514916) (0.007611348 0.01601603 -0.00354472) (0.008101001 0.01300649 -0.002526731) (0.008108343 0.0150112 -0.00253311) (0.008646832 0.01503293 -0.003024938) (0.009078078 0.01301829 -0.0025139) (0.008541324 0.01400401 -0.002506764) (0.009338814 0.0127395 -0.001870295) (0.00890755 0.01499563 -0.002494636) (0.008657262 0.01602495 -0.002641469) (0.008569527 0.01500586 -0.002015626) (-0.008338472 0.01774859 -0.003369835) (-0.008487797 0.01698591 -0.002996895) (-0.008340714 0.01897764 -0.002870879) (-0.008011064 0.01900065 -0.003512042) (-0.008818132 0.01672458 -0.002336022) (-0.008521236 0.01801418 -0.002510306) (-0.008058001 0.01700353 -0.00250963) (-0.008649442 0.01725382 -0.002143472) (-0.00800243 0.01900038 -0.002500485) (-0.008360947 0.01994867 -0.002472246) (-0.008529244 0.01901426 -0.002008423) (-0.007059947 0.01900885 -0.003525648) (-0.007554348 0.01900482 -0.003006734) (-0.00757175 0.01801198 -0.002515139) (-0.007072695 0.01900991 -0.002518725) (-0.007550018 0.02000698 -0.002513646) (-0.007558664 0.01900695 -0.00201208) (0.007540272 0.01800441 -0.003520483) (0.00756423 0.01700567 -0.003023797) (0.007086102 0.01901503 -0.003544264) (0.007547555 0.01900636 -0.003018691) (0.007930213 0.01901058 -0.003505566) (0.007638713 0.02002469 -0.003630785) (0.007559839 0.01800508 -0.002515448) (0.008043177 0.01700358 -0.002509783) (0.007077909 0.01901025 -0.002518312) (0.008167139 0.0192592 -0.002632771) (0.00753938 0.0200042 -0.002505632) (0.007573762 0.01900589 -0.002009186) (0.008317266 0.01873814 -0.002868418) (0.008837369 0.01673651 -0.002354387) (0.008507065 0.01799726 -0.002500482) (0.008334058 0.01973651 -0.002358553) (0.00851419 0.0189933 -0.001993872) (-0.008100028 0.02101228 -0.002499087) (-0.008355861 0.02075743 -0.001985857) (-0.007839451 0.02277029 -0.002488044) (-0.006549975 0.02200464 -0.003523316) (-0.007153109 0.02325408 -0.003643043) (-0.00757876 0.02299733 -0.002991434) (-0.006556284 0.02300104 -0.003018507) (-0.006523349 0.02400327 -0.003501994) (-0.007054208 0.02100539 -0.002517729) (-0.007507114 0.02199844 -0.002500459) (-0.00705152 0.0230017 -0.002511834) (-0.007522387 0.02402717 -0.002502998) (-0.007684123 0.02329645 -0.002148468) (-0.006561704 0.02400253 -0.002516241) (0.00741976 0.02198125 -0.003495222) (0.007650723 0.02125731 -0.00312549) (0.00714216 0.02303661 -0.0035215) (0.006576277 0.0230068 -0.003058312) (0.007430823 0.02301229 -0.003004299) (0.00705126 0.02100657 -0.002515052) (0.007661881 0.02226553 -0.002633868) (0.007998888 0.02099884 -0.002497203) (0.007546597 0.02100233 -0.002005819) (0.007049804 0.02300372 -0.002531633) (0.006558553 0.02400833 -0.002523721) (0.007820328 0.0227391 -0.002369653) (0.007490392 0.02399642 -0.002486675) (0.007663596 0.0232595 -0.002112123) (-0.006604929 0.02602098 -0.003514117) (-0.006541441 0.02500212 -0.003006309) (-0.006612462 0.02701899 -0.003015051) (-0.006170183 0.02727719 -0.00365744) (-0.00634412 0.02774081 -0.003365424) (-0.007157158 0.02525524 -0.00262445) (-0.007303129 0.02569957 -0.002358946) (-0.006530769 0.02600318 -0.002514517) (-0.006074163 0.02500901 -0.002519482) (-0.006562126 0.02500701 -0.002010391) (-0.006909724 0.02697891 -0.002488912) (-0.006077762 0.02701712 -0.002530389) (-0.006614891 0.02802082 -0.00252134) (-0.006533069 0.02700497 -0.002011017) (-0.005068376 0.02701684 -0.003534498) (-0.005572376 0.02701521 -0.003027981) (-0.005571501 0.02801589 -0.002525014) (0.005569261 0.02601301 -0.003529157) (0.00507126 0.02701765 -0.003540596) (0.005577634 0.02701523 -0.003030638) (0.006203157 0.02728212 -0.003647653) (0.005543609 0.02801017 -0.003532117) (0.006079858 0.02500989 -0.00252607) (0.006080665 0.0270115 -0.002518495) (0.005563929 0.0280101 -0.002524097) (0.007309459 0.02470722 -0.002831688) (0.006629076 0.0270313 -0.003021711) (0.007138379 0.02525936 -0.002633492) (0.006556204 0.02600312 -0.002516017) (0.007321909 0.02570761 -0.002362058) (0.007478171 0.02496847 -0.001987285) (0.006931372 0.02696804 -0.002492348) (0.00660605 0.02800612 -0.002503954) (0.006549626 0.02700892 -0.002008268) (-0.006356455 0.02874837 -0.002864957) (-0.006304849 0.02967605 -0.002354024) (-0.006153509 0.02925869 -0.002625166) (-0.006561674 0.02897299 -0.001989505) (-0.005870825 0.03076613 -0.002485747) (-0.004566663 0.03001904 -0.00353733) (-0.005119261 0.03102664 -0.003536547) (-0.005510757 0.0309946 -0.002993336) (-0.004557799 0.03101365 -0.00303523) (-0.004604595 0.03223243 -0.003617465) (-0.005070875 0.0290187 -0.002530184) (-0.005528125 0.03001092 -0.002510569) (-0.005054431 0.03100924 -0.002523792) (-0.005425894 0.03199739 -0.002495499) (-0.005700303 0.03129749 -0.00212566) (-0.004562977 0.0320123 -0.002520306) (0.005518676 0.03001212 -0.003518101) (0.0055361 0.02900842 -0.003022546) (0.005060422 0.03103058 -0.003544103) (0.004571052 0.03103616 -0.003066528) (0.005495508 0.03099327 -0.002999459) (0.005061033 0.02901442 -0.002530821) (0.005514913 0.03000376 -0.002506472) (0.00616159 0.02925941 -0.002631652) (0.005537847 0.02900645 -0.002009791) (0.00505676 0.0310155 -0.002521273) (0.004562824 0.03200983 -0.002545437) (0.005858346 0.03077276 -0.002485433) (0.005421901 0.03199639 -0.002503398) (0.005694175 0.03128619 -0.002148133) (0.006277744 0.0297008 -0.002369652) (-0.004270566 0.03370823 -0.003301328) (-0.004610367 0.03319244 -0.002990323) (-0.003805873 0.03460423 -0.003312177) (-0.005008944 0.03299968 -0.002505351) (-0.0045327 0.03400201 -0.002528758) (-0.004082124 0.03301685 -0.002522301) (-0.004558604 0.03301257 -0.002020269) (-0.004061747 0.03501102 -0.002515014) (-0.004400578 0.03481309 -0.002002876) (-0.002544736 0.03402324 -0.003588596) (-0.003070442 0.03520725 -0.003533096) (-0.00351815 0.03519968 -0.003030443) (-0.002543717 0.03504914 -0.003069162) (-0.002027215 0.03503672 -0.003597369) (-0.002497894 0.03597983 -0.003504639) (-0.00359183 0.03402176 -0.002530007) (-0.003060533 0.03504253 -0.002557355) (-0.003502833 0.03598065 -0.002501084) (-0.003580544 0.03502817 -0.002046941) (-0.002551932 0.03603487 -0.002548978) (-0.001025261 0.03503189 -0.003562566) (-0.00153761 0.03504788 -0.003079216) (-0.0005047154 0.03602623 -0.003538772) (-0.001533855 0.03606025 -0.002569764) (-0.0005138143 0.03605448 -0.002571881) (0.001533204 0.03403567 -0.0035949) (0.001045061 0.03505009 -0.0036189) (0.001539207 0.03505567 -0.00310123) (0.002029721 0.03503801 -0.003595384) (0.001538253 0.03634628 -0.003738294) (0.0005192354 0.03607044 -0.002593595) (0.001538056 0.03605414 -0.002580119) (0.003613946 0.03419412 -0.003521314) (0.003570126 0.03303027 -0.0030435) (0.003027761 0.03519106 -0.003547059) (0.002544956 0.03503146 -0.003063442) (0.003553955 0.03502734 -0.003035516) (0.003577276 0.03401461 -0.002556906) (0.004068769 0.03302303 -0.002533061) (0.003064074 0.03503431 -0.002538387) (0.002538395 0.0360237 -0.002545466) (0.004020838 0.0349898 -0.002516528) (0.003529464 0.03597923 -0.0025096) (0.003549392 0.03501491 -0.002024079) (0.004990959 0.03297951 -0.002498883) (0.00450444 0.0339826 -0.002508972) (0.005351242 0.0327577 -0.001990893) (0.004365591 0.03479521 -0.001994496) (-0.002475261 0.03679114 -0.002974903) (-0.00295855 0.0367682 -0.002464552) (-0.002329351 0.03770406 -0.002354718) (-0.002144945 0.03735153 -0.002718824) (-0.002697406 0.03734172 -0.002142939) (-0.0004704049 0.03762884 -0.003218063) (-0.0005165022 0.03703461 -0.003034698) (-0.001033021 0.03708341 -0.002584619) (-0.001491267 0.03814255 -0.002486602) (-0.0005042493 0.03825909 -0.002764307) (-1.364961e-06 0.03707105 -0.002584778) (-0.0005171686 0.03706313 -0.002077386) (-0.0009751625 0.0386759 -0.002252422) (-0.001469464 0.03873462 -0.001963245) (-7.32197e-06 0.03877119 -0.002400348) (-0.0005118523 0.03903224 -0.00202475) (0.00151479 0.03721346 -0.003168419) (0.001024529 0.03707113 -0.002595057) (0.0004964333 0.03831099 -0.00270535) (0.00151148 0.03815102 -0.002542487) (0.002195214 0.03731235 -0.002695541) (0.001552242 0.03706047 -0.00205129) (0.0009784922 0.03863475 -0.002320805) (0.0004915149 0.03902307 -0.002029136) (0.001425631 0.03870486 -0.001949912) (0.002933071 0.036765 -0.002470567) (0.002270518 0.03763099 -0.002295491) (0.003322367 0.036715 -0.001958726) (-0.0004685254 -0.03958246 -0.00130533) (-0.001295766 -0.03958862 -0.0004611834) (-0.000488263 -0.03983455 -0.0004796692) (0.0004819768 -0.03981192 -0.0004788649) (0.001265353 -0.0395566 -0.0003592808) (-0.003757137 -0.03662332 -0.001301636) (-0.004315465 -0.03565374 -0.001313374) (-0.003837802 -0.03675986 -0.0004980492) (-0.0043469 -0.03578955 -0.0004960895) (-0.0024898 -0.03814532 -0.001491146) (-0.002307477 -0.03867638 -0.0009554762) (-0.00314677 -0.037248 -0.001510533) (-0.003524853 -0.03703661 -0.0009991978) (-0.002604251 -0.0370549 -0.001019719) (-0.002067939 -0.03705114 -0.001553693) (-0.002566522 -0.03603941 -0.001537149) (-0.003259382 -0.03759905 -0.0003190787) (-0.002715901 -0.03824271 -0.0005053444) (-0.002021671 -0.03903336 -0.0005017509) (-0.002413161 -0.03877541 4.642376e-06) (-0.003331364 -0.03733964 -0.0006862682) (-0.003555499 -0.03602009 -0.0005042758) (-0.003593913 -0.03719888 1.968041e-06) (-0.00208661 -0.03705482 -0.0005154751) (-0.002596685 -0.03604598 -0.0005196454) (-0.002606728 -0.03707381 -1.093868e-05) (-0.0005063988 -0.03805858 -0.001559423) (-0.0005036853 -0.0390084 -0.001017691) (-0.001038488 -0.03900668 -0.0004900826) (-0.00157361 -0.03805747 -0.0004996708) (-0.0005131228 -0.03801144 -0.0005026392) (5.664031e-06 -0.03894383 -0.000495226) (-0.0005118569 -0.0389744 2.137732e-05) (0.001551913 -0.03806806 -0.00156373) (0.001611445 -0.03921338 -0.001031635) (0.002067662 -0.03706652 -0.001556155) (0.001186418 -0.03946547 -0.0006731357) (0.000529503 -0.03805013 -0.0005123799) (0.001580545 -0.03811654 -0.0005048675) (0.002018905 -0.03902856 -0.0004916003) (0.001707853 -0.03939116 4.672252e-05) (0.00208485 -0.03708104 -0.0005067832) (0.003196482 -0.03728998 -0.001542625) (0.002600806 -0.03708106 -0.001022555) (0.003510403 -0.0371637 -0.001004622) (0.003760307 -0.03664895 -0.001350558) (0.003697626 -0.03633119 -0.001650062) (0.002773075 -0.03833745 -0.0005102875) (0.003256794 -0.03770472 -0.0004615275) (0.003061633 -0.03704254 -0.0005071005) (0.002572128 -0.03605651 -0.0005074009) (0.002596421 -0.03707678 1.377643e-05) (0.003828324 -0.03677007 -0.0004959758) (0.003518659 -0.03600816 -0.0004991685) (0.003654377 -0.03719386 1.298906e-05) (0.0043184 -0.03575228 -0.0004876231) (-0.005765558 -0.03266787 -0.0003422837) (-0.004711563 -0.0342769 -0.001647974) (-0.004567368 -0.03515046 -0.0009876588) (-0.005198616 -0.03325368 -0.001628156) (-0.005513621 -0.03299575 -0.001002387) (-0.004547083 -0.03300333 -0.001010835) (-0.004072074 -0.0330208 -0.001534214) (-0.004566546 -0.03201298 -0.001523019) (-0.004816624 -0.03477317 -0.0004911239) (-0.005302134 -0.0337458 -0.0005040275) (-0.004505918 -0.03400034 -0.0005008054) (-0.004032443 -0.03501373 -0.0005024284) (-0.004644065 -0.03521697 5.129468e-06) (-0.00501185 -0.03299526 -0.0004995822) (-0.00570246 -0.03228285 -0.0006228687) (-0.005564447 -0.03312033 4.964488e-07) (0.003554257 -0.03402469 -0.001521224) (0.003534614 -0.03502111 -0.001009847) (0.004045337 -0.0330141 -0.00151859) (0.003992504 -0.03499368 -0.0004968792) (0.005198761 -0.03363896 -0.001337713) (0.005149549 -0.03328118 -0.001651119) (0.004523176 -0.03300016 -0.001006817) (0.005520475 -0.03299704 -0.0009922013) (0.00562952 -0.03219374 -0.001504187) (0.004797411 -0.03474297 -0.0004873919) (0.004480786 -0.03398726 -0.0004954105) (0.005289002 -0.03371892 -0.0005049125) (0.005008699 -0.03299081 -0.0004954464) (0.005766341 -0.03268273 -0.0003491094) (0.005667623 -0.03226307 -0.000625434) (0.005581173 -0.0331298 2.796992e-06) (-0.006394321 -0.02999608 -0.001489332) (-0.006304716 -0.03075067 -0.0009769234) (-0.006839092 -0.0287376 -0.001477263) (-0.006670007 -0.02925757 -0.001001488) (-0.006020095 -0.02900264 -0.001501061) (-0.006516784 -0.02800213 -0.001502855) (-0.006521484 -0.03000649 -0.0004952728) (-0.006118604 -0.03122175 -0.0004981586) (-0.006369156 -0.03075082 -5.940957e-07) (-0.006904406 -0.02877134 -0.0004980864) (-0.006094808 -0.02901427 -0.0004996881) (-0.00655229 -0.02800637 -0.0004996926) (-0.006706944 -0.02925365 8.552701e-06) (-0.005061408 -0.0310076 -0.0005011493) (-0.005553449 -0.03000874 -0.0005007631) (0.005535488 -0.03000889 -0.001509067) (0.005524404 -0.03099124 -0.00100046) (0.006021738 -0.02900318 -0.001502062) (0.005068204 -0.03100082 -0.0004992776) (0.005540531 -0.03000577 -0.0004991574) (0.006097161 -0.03122485 -0.0004940216) (0.005542251 -0.03100764 7.217056e-06) (0.006058285 -0.02901846 -0.0005035554) (0.006806662 -0.0286996 -0.001375104) (0.006618906 -0.02920786 -0.0009931618) (0.006491323 -0.02999601 -0.0004939863) (0.006888183 -0.02875165 -0.0004986963) (0.00654714 -0.02801135 -0.0005022025) (0.006684256 -0.02926045 -2.38749e-06) (-0.007806106 -0.02470573 -0.001354886) (-0.00788078 -0.0247434 -0.0004979286) (-0.006575993 -0.02601015 -0.001506159) (-0.006571226 -0.02701021 -0.0009986814) (-0.007030251 -0.02500502 -0.001503076) (-0.00763013 -0.02521496 -0.0009992912) (-0.007180195 -0.0272338 -0.0005000894) (-0.007523889 -0.02600134 -0.000499708) (-0.006574661 -0.02600719 -0.0005003699) (-0.006599301 -0.02701595 5.2969e-06) (-0.007066912 -0.02500245 -0.0005017448) (-0.007530219 -0.02400363 -0.0005014269) (-0.007655252 -0.02524348 -1.273703e-06) (0.007424776 -0.02598384 -0.001505277) (0.007378007 -0.02674017 -0.0009835568) (0.007041054 -0.02500463 -0.001504449) (0.007634187 -0.02521025 -0.0009954129) (0.00780611 -0.02469927 -0.001364359) (0.00768744 -0.0242537 -0.001629407) (0.007187991 -0.02724568 -0.0005022219) (0.006586657 -0.02601518 -0.0005052637) (0.007528044 -0.02600317 -0.0004997417) (0.007410811 -0.02676768 -6.839271e-07) (0.00706501 -0.02500673 -0.0005023272) (0.007854472 -0.02477077 -0.0004979623) (0.007514954 -0.02400095 -0.0005008541) (0.007650481 -0.02524331 3.372802e-07) (-0.008332876 -0.0217203 -0.001355478) (-0.008472036 -0.02094519 -0.0009935933) (-0.008210861 -0.02128505 -0.001640797) (-0.008507892 -0.01999756 -0.001497826) (-0.008394533 -0.0217621 -0.0004994688) (-0.008115349 -0.02307232 -0.0004973268) (-0.008037617 -0.02100642 -0.000501036) (-0.008596492 -0.02005175 -0.0005059813) (-0.008506336 -0.02095146 -4.452859e-07) (-0.007095911 -0.02101279 -0.001511896) (-0.007585242 -0.02101208 -0.00100619) (-0.007089852 -0.02301606 -0.0005034331) (-0.007623943 -0.02203112 -0.0005040539) (-0.007101307 -0.02101717 -0.0005044342) (-0.007590473 -0.02000993 -0.0005030298) (-0.007590183 -0.02101282 -9.825648e-07) (0.007565013 -0.02200882 -0.001506681) (0.007544906 -0.02300426 -0.001003401) (0.007087341 -0.02100756 -0.001513156) (0.007570354 -0.02100687 -0.001006639) (0.008209432 -0.02129959 -0.00164747) (0.007560665 -0.02000499 -0.001507978) (0.007066812 -0.02300805 -0.0005045339) (0.007586206 -0.02201177 -0.0005050456) (0.008130369 -0.02300242 -0.0005099258) (0.007552722 -0.02300728 -5.888057e-07) (0.007083083 -0.02100899 -0.0005058122) (0.00802781 -0.02100392 -0.00050017) (0.007581243 -0.02000934 -0.0005050034) (0.007570726 -0.02100761 -2.72519e-06) (0.008468231 -0.02095705 -0.0009889353) (0.008377319 -0.02196411 -0.0005103098) (0.00859683 -0.02006513 -0.0005044491) (0.008505383 -0.02099389 -1.076217e-06) (-0.008653401 -0.01825453 -0.001624728) (-0.008645974 -0.01921445 -0.0009914589) (-0.00894115 -0.01697498 -0.001485217) (-0.008499716 -0.01699985 -0.0009990452) (-0.008040123 -0.0170013 -0.001504027) (-0.008525459 -0.01599989 -0.001504479) (-0.008850774 -0.0187589 -0.000496601) (-0.008494607 -0.01800177 -0.0005006632) (-0.008086034 -0.01900088 -0.0004997793) (-0.008660816 -0.01924189 8.955587e-07) (-0.008997315 -0.01699372 -0.000499673) (-0.008037529 -0.01700181 -0.0005004619) (-0.008568376 -0.0160031 -0.0005019641) (-0.008520755 -0.01700034 4.255348e-07) (0.008040008 -0.01700223 -0.001507204) (0.008078153 -0.01901168 -0.0005020747) (0.008038148 -0.01700341 -0.0005033774) (0.008937366 -0.01697753 -0.001488461) (0.008503123 -0.01700116 -0.001002093) (0.008860963 -0.01874636 -0.0004971779) (0.008491808 -0.01800022 -0.0005007448) (0.009006493 -0.01699803 -0.0004995649) (0.008565697 -0.0160038 -0.0005050944) (0.008522229 -0.01700177 -4.145125e-07) (-0.008581171 -0.01401021 -0.001513991) (-0.008598988 -0.01500492 -0.001004485) (-0.009154901 -0.01326004 -0.001619235) (-0.009411328 -0.01295386 -0.0009861872) (-0.008563456 -0.01301071 -0.001005826) (-0.00856265 -0.01200672 -0.00150672) (-0.009143306 -0.01503403 -0.000505443) (-0.009365504 -0.01396219 -0.0004963027) (-0.008606835 -0.01400659 -0.000496395) (-0.008581142 -0.01500124 -8.994349e-07) (-0.008992294 -0.01300145 -0.0004985084) (-0.009495743 -0.01199579 -0.000499283) (-0.009415625 -0.0129929 3.639154e-07) (-0.008544866 -0.01200318 -0.0005012893) (-0.008535164 -0.01300307 8.299651e-08) (0.009324988 -0.01374897 -0.001361011) (0.009311844 -0.01469101 -0.0008508405) (0.009186954 -0.01324996 -0.001632946) (0.008540376 -0.01300245 -0.001006895) (0.009418462 -0.01297742 -0.0009994897) (0.00938197 -0.01198008 -0.001477422) (0.009141412 -0.01520381 -0.000495285) (0.008529444 -0.01400087 -0.0005056905) (0.009385556 -0.01393405 -0.0004873097) (0.009329935 -0.01474638 -8.038462e-07) (0.008952649 -0.0129987 -0.0005017239) (0.008499669 -0.01199957 -0.0005021645) (0.008501927 -0.01299797 -8.988735e-07) (0.009434405 -0.01199653 -0.0004970752) (0.009417924 -0.01298971 8.805174e-07) (-0.008562477 -0.0100047 -0.00150702) (-0.008558283 -0.01100314 -0.001003015) (-0.009064557 -0.00900525 -0.001503525) (-0.009617022 -0.009003649 -0.00100376) (-0.009064557 -0.01099972 -0.0005008155) (-0.009614242 -0.009998513 -0.0004994783) (-0.009132076 -0.009004419 -0.0005017155) (-0.009687887 -0.008018706 -0.0005105125) (-0.009660565 -0.009003833 3.262749e-06) (0.009430356 -0.009999083 -0.001492846) (0.009449922 -0.01099729 -0.0009963431) (0.009003296 -0.009002116 -0.001499059) (0.008544979 -0.009002307 -0.001001656) (0.009541519 -0.009000526 -0.0009989827) (0.009518154 -0.008001857 -0.001497425) (0.008989733 -0.01099899 -0.0004988516) (0.008530966 -0.01000121 -0.0005002827) (0.009526743 -0.0100011 -0.000497135) (0.009507053 -0.01099843 1.512763e-06) (0.009064704 -0.009002591 -0.0004983838) (0.009618821 -0.008003385 -0.0004980901) (0.009596541 -0.009001886 3.054774e-06) (-0.009804703 -0.004721041 -0.001358026) (-0.009808631 -0.006701601 -0.0003701131) (-0.009840332 -0.004976198 -0.0004822476) (-0.00908348 -0.005002607 -0.001519954) (-0.009665841 -0.005247807 -0.001117383) (-0.00913856 -0.00700083 -0.0005043025) (-0.009676225 -0.006239514 -0.0006237956) (-0.009019321 -0.00499643 -0.0004973451) (-0.009409309 -0.003997118 -0.0004982159) (-0.009418559 -0.004996695 -4.338346e-07) (0.009603399 -0.006006777 -0.001517691) (0.009630124 -0.007013002 -0.001001317) (0.00910721 -0.00500228 -0.001505389) (0.00966959 -0.005011156 -0.001000856) (0.00963388 -0.004006331 -0.001509208) (0.009142984 -0.007004249 -0.0004987253) (0.009703482 -0.006034376 -0.0005086751) (0.009685407 -0.007011168 9.156738e-07) (0.009147877 -0.005009721 -0.0004994396) (0.009841922 -0.004731793 -0.0004804142) (0.009491015 -0.004004313 -0.000502171) (0.009682059 -0.005216294 -1.181636e-06) (-0.009852728 -0.0009933817 -0.001458491) (-0.009876452 -0.002992718 -0.000493541) (-0.009947889 -0.0009970381 -0.0004959976) (-0.00901997 -0.001000285 -0.001508411) (-0.009444317 -0.0009987514 -0.0009980123) (-0.008963464 -0.002999135 -0.0004994642) (-0.009427393 -0.001997144 -0.0004977354) (-0.008968104 -0.000998706 -0.0005001926) (-0.009470534 6.856869e-07 -0.0004973749) (-0.009456519 -0.0009974179 1.494839e-07) (0.009665992 -0.002271285 -0.001643845) (0.009481598 -0.002999287 -0.001003178) (0.009040566 -0.001001997 -0.001511895) (0.00945327 -0.001000559 -0.00100254) (0.009896067 -0.0009842797 -0.001472891) (0.009492858 -2.167413e-06 -0.001501278) (0.008990973 -0.003001707 -0.0004990693) (0.009432054 -0.001999186 -0.0004992525) (0.009855024 -0.002993162 -0.000494352) (0.009424327 -0.002999161 2.346606e-06) (0.008978216 -0.001000294 -0.0005010283) (0.009941433 -0.0009986436 -0.0004968431) (0.00947306 -5.889448e-07 -0.0004993517) (0.009452021 -0.0009994707 5.176765e-07) (-0.009836116 0.00298325 -0.001474715) (-0.009948998 0.0009986834 -0.0004974031) (-0.009877836 0.002996921 -0.000496412) (-0.009057712 0.003008758 -0.001527594) (-0.00944477 0.003003383 -0.001009793) (-0.008966302 0.001000352 -0.0005017587) (-0.009426312 0.00199925 -0.0005002987) (-0.008958767 0.003001077 -0.0005065572) (-0.009411128 0.003998726 -0.0005024587) (-0.009405211 0.0029976 -2.247731e-06) (0.009466563 0.002001219 -0.001505262) (0.009449063 0.0009994375 -0.000997797) (0.009069156 0.003015465 -0.001501676) (0.009460547 0.003008058 -0.0009971915) (0.009839948 0.002994418 -0.001479348) (0.009726703 0.004036711 -0.001636009) (0.008973969 0.0009998124 -0.0005003967) (0.009438952 0.001999112 -0.0004985225) (0.009957776 0.0009986457 -0.0004973498) (0.009462249 0.0009993627 6.102899e-07) (0.008964319 0.00300092 -0.0005002927) (0.009898071 0.002995804 -0.000496537) (0.009411286 0.003997169 -0.0005000186) (0.009422017 0.002997697 3.512383e-07) (-0.009858796 0.004979937 -0.0004803768) (-0.009819242 0.00668072 -0.0003858715) (-0.009105359 0.007003293 -0.001505441) (-0.009674245 0.007025063 -0.001022348) (-0.00902116 0.004999661 -0.0005030075) (-0.009680784 0.006264634 -0.0006339806) (-0.009144107 0.006997923 -0.0005022069) (-0.009695491 0.007999923 -0.0005011189) (-0.009689146 0.006991578 7.458147e-06) (0.009638572 0.006002304 -0.001519908) (0.009457086 0.004998695 -0.001011061) (0.009118943 0.006998519 -0.001507037) (0.009680389 0.007017957 -0.001112) (0.009644494 0.008006482 -0.001530271) (0.008974201 0.004996293 -0.0005031583) (0.009442891 0.005994344 -0.0005040835) (0.009840556 0.00499527 -0.0004923965) (0.009392893 0.004996232 -8.74979e-08) (0.00904956 0.006998105 -0.0005018284) (0.009846926 0.006925388 -0.0004806643) (0.009666024 0.008214873 -0.0004948727) (0.009477859 0.006997965 4.291719e-07) (-0.008558309 0.01000153 -0.001507217) (-0.009016352 0.01100035 -0.001501297) (-0.009534235 0.01099451 -0.0009972999) (-0.008553263 0.01100152 -0.001005399) (-0.008551191 0.0120033 -0.001510041) (-0.009134011 0.009004187 -0.0004984594) (-0.009622766 0.009999501 -0.0004995412) (-0.009066202 0.0110007 -0.0005024497) (-0.009505479 0.01199634 -0.000498891) (-0.009585275 0.01099949 1.484558e-06) (-0.00853963 0.01200279 -0.0005063776) (0.009549607 0.01000066 -0.00149663) (0.009683741 0.009021168 -0.0009981688) (0.009020951 0.01100226 -0.001502407) (0.008565839 0.01100343 -0.0010055) (0.009541903 0.01099763 -0.000997908) (0.009425223 0.01197793 -0.001484507) (0.009166 0.009002924 -0.0005019016) (0.009649292 0.01000162 -0.0005023503) (0.009727322 0.009056684 2.869869e-06) (0.009070997 0.0110012 -0.0005010231) (0.008545017 0.01200317 -0.0005029955) (0.009500859 0.01199864 -0.0004968315) (0.009590412 0.01099946 7.560834e-07) (-0.00857929 0.01400428 -0.001508895) (-0.008550478 0.01300684 -0.001012949) (-0.00908255 0.01501521 -0.001501303) (-0.008581512 0.01501108 -0.001009385) (-0.008521462 0.01599992 -0.001506997) (-0.008993984 0.01299926 -0.0005001461) (-0.009361718 0.01396708 -0.0004999626) (-0.008595462 0.01401617 -0.0005160997) (-0.008528905 0.01300347 -5.693609e-06) (-0.009142818 0.01503436 -0.0005000009) (-0.009317344 0.01469996 -2.737303e-06) (-0.008565569 0.01600283 -0.0005023791) (-0.008588445 0.01500894 1.307e-06) (0.009334898 0.0137305 -0.00137778) (0.009445099 0.01297268 -0.0009873442) (0.009101975 0.01501607 -0.001509847) (0.008583003 0.01500904 -0.001003561) (0.009304809 0.01471125 -0.00086365) (0.008986181 0.01300055 -0.0005030122) (0.008551602 0.01400691 -0.0005044763) (0.00943481 0.0139381 -0.0004916604) (0.009444332 0.01299181 2.056121e-06) (0.009139891 0.01521704 -0.0004977341) (0.008587489 0.01600617 -0.0005024256) (0.008597077 0.01501324 -4.821357e-07) (0.00934124 0.01473943 1.754712e-06) (-0.008657423 0.0182608 -0.001630573) (-0.008503026 0.01699891 -0.001004125) (-0.008808615 0.0187057 -0.001354327) (-0.008642566 0.01922502 -0.0009948088) (-0.00804391 0.01900528 -0.001505589) (-0.008505724 0.01999755 -0.001499552) (-0.00899493 0.01699388 -0.0005013688) (-0.00849386 0.0179977 -0.0005000672) (-0.008042239 0.01700427 -0.000504495) (-0.008525358 0.01700229 -1.393882e-06) (-0.008839626 0.01876785 -0.0004971948) (-0.008090116 0.01901554 -0.000501961) (-0.008607948 0.02006148 -0.0005018259) (-0.008675165 0.01924428 -7.313009e-07) (-0.007597305 0.02001215 -0.0005050032) (0.008057892 0.01900154 -0.001504453) (0.007569138 0.02000383 -0.001507622) (0.008056904 0.01700893 -0.0005034082) (0.008083873 0.01900188 -0.0005043231) (0.007566065 0.02000399 -0.0005025698) (0.008643769 0.01903021 -0.001014625) (0.009012959 0.01699986 -0.0005025484) (0.008516283 0.01800327 -0.000501177) (0.008858649 0.01872772 -0.0004808725) (0.008565084 0.02003418 -0.0005040862) (0.008661846 0.01923376 -5.196135e-06) (-0.008354084 0.02169804 -0.00135239) (-0.00847261 0.02094242 -0.0009917652) (-0.008012277 0.02299522 -0.001492606) (-0.008402205 0.02175953 -0.0004978466) (-0.008040369 0.02100487 -0.0005017148) (-0.008511169 0.02095199 -8.342873e-07) (-0.008126965 0.02305169 -0.0005005523) (-0.007075493 0.02301268 -0.001512994) (-0.007561146 0.02300821 -0.001006709) (-0.00709982 0.02101237 -0.0005060362) (-0.007623082 0.02201069 -0.0005052226) (-0.007090639 0.023011 -0.0005048071) (-0.007528774 0.02400425 -0.0005015512) (-0.007593106 0.02301254 -4.874677e-07) (0.007538561 0.02200408 -0.001502381) (0.007569881 0.02100202 -0.0009996879) (0.007058235 0.0230066 -0.001506912) (0.00751732 0.02300441 -0.001000031) (0.007953031 0.02294094 -0.001491741) (0.007649054 0.0242083 -0.001500079) (0.00707251 0.0210062 -0.000502611) (0.00755128 0.02200714 -0.0005023495) (0.00800351 0.02100119 -0.0004992975) (0.007542512 0.0210052 3.525898e-07) (0.007075079 0.02300746 -0.0005041848) (0.008021893 0.02302751 -0.0005016139) (0.007691321 0.02429013 -0.000645763) (0.007532528 0.02300412 -8.386962e-07) (0.008334606 0.02173913 -0.000485731) (-0.007867959 0.02474772 -0.0004979165) (-0.00658705 0.02600981 -0.001508613) (-0.007138111 0.02702416 -0.001510436) (-0.007357742 0.0267449 -0.0009789897) (-0.006568187 0.027011 -0.001006592) (-0.006518165 0.02800717 -0.001497731) (-0.007057242 0.02501252 -0.0005016936) (-0.007516795 0.02600026 -0.0004993543) (-0.006570815 0.02601275 -0.0005021098) (-0.00718341 0.027246 -0.0004967727) (-0.007390971 0.02677126 4.11694e-07) (-0.006550124 0.02800997 -0.0004993714) (-0.006587103 0.02702575 -3.701365e-07) (0.007401005 0.02597314 -0.001497825) (0.007591554 0.0250668 -0.001012262) (0.007141907 0.02701902 -0.001513994) (0.006580699 0.02701949 -0.001005835) (0.007374906 0.02674747 -0.0009816331) (0.007067284 0.02500844 -0.0005018713) (0.006592986 0.02601601 -0.0005029021) (0.007508246 0.02596031 -0.0005006796) (0.007820616 0.0246964 -0.0003494173) (0.007635825 0.02518237 8.540747e-07) (0.007189803 0.0272343 -0.0004968042) (0.006550822 0.02800776 -0.0004978129) (0.006632398 0.02701603 3.057904e-06) (0.007402283 0.02676584 5.17103e-07) (-0.006391651 0.02999952 -0.001495662) (-0.006662685 0.0292364 -0.0009987458) (-0.006314196 0.03071799 -0.0009746342) (-0.006068221 0.03097711 -0.001492712) (-0.006903984 0.02876969 -0.000498159) (-0.006521841 0.030001 -0.0004977224) (-0.006086656 0.02902271 -0.000503073) (-0.006694988 0.02922579 -1.103933e-06) (-0.006106234 0.03122743 -0.0004986303) (-0.006369158 0.03075597 3.322668e-06) (-0.005055674 0.03101383 -0.001508003) (-0.005526619 0.03100328 -0.00100079) (-0.004562544 0.03201719 -0.001515395) (-0.005556068 0.03001316 -0.0005029235) (-0.005063901 0.03101455 -0.0005040416) (-0.005696175 0.03228052 -0.0006387155) (-0.005547454 0.03101209 4.467833e-07) (0.005531416 0.03000402 -0.001502366) (0.005047723 0.03100617 -0.001512427) (0.00551751 0.03099583 -0.001002548) (0.006049403 0.03097126 -0.00148844) (0.005620889 0.03220236 -0.001490151) (0.005536282 0.03000403 -0.0004975987) (0.006055325 0.02901039 -0.0004972072) (0.005058674 0.0310035 -0.0004979321) (0.00609405 0.03121823 -0.0004938711) (0.00570915 0.03228247 -0.0006191274) (0.005538352 0.03100825 3.607972e-06) (0.00628325 0.03072924 -0.0009833702) (0.006880564 0.02875552 -0.0004943126) (0.006488553 0.02999639 -0.0004952546) (0.006346121 0.03075961 2.529323e-07) (-0.005741763 0.03267375 -0.0003811946) (-0.004710014 0.03429903 -0.001671427) (-0.00454225 0.0330084 -0.001010082) (-0.004738108 0.03468038 -0.001366415) (-0.004572486 0.03515069 -0.0009841624) (-0.00424269 0.03528265 -0.001630668) (-0.004285951 0.03565621 -0.001364925) (-0.005011255 0.03299672 -0.0005008815) (-0.005321086 0.03372883 -0.0004982512) (-0.004512907 0.03399729 -0.0005005028) (-0.00482411 0.03476832 -0.0004808554) (-0.004025094 0.03500156 -0.0004985394) (-0.004351155 0.03579056 -0.0004950499) (-0.004648915 0.035207 -2.010125e-06) (-0.003076302 0.03503453 -0.001533584) (-0.00356333 0.03502154 -0.001014884) (-0.002564318 0.03604905 -0.001529869) (-0.003556248 0.0360222 -0.0005017675) (-0.002596135 0.03605467 -0.0005027424) (0.00355694 0.03400851 -0.001534958) (0.003062698 0.03501814 -0.00153131) (0.003536588 0.03500219 -0.00101842) (0.004207323 0.03526258 -0.001683808) (0.003728421 0.03625832 -0.001661783) (0.002572599 0.03605309 -0.0005153329) (0.003993771 0.03499292 -0.0004989157) (0.003521191 0.03600428 -0.0005043896) (0.005166685 0.0336932 -0.001335125) (0.005508015 0.03300457 -0.0009903454) (0.004701506 0.03465895 -0.001343175) (0.004529703 0.03512603 -0.0009753683) (0.005005454 0.03299276 -0.0004958063) (0.004479823 0.03398809 -0.0004984271) (0.00531054 0.03369057 -0.0004856597) (0.005770384 0.03271507 -0.0003605265) (0.005575539 0.0331208 2.713218e-06) (0.004797619 0.03474475 -0.0004852366) (0.004295626 0.035772 -0.000484784) (0.004595269 0.03520411 9.380598e-06) (-0.003836812 0.03675941 -0.0004894936) (-0.0024867 0.03814606 -0.001495489) (-0.002590517 0.0370834 -0.001000518) (-0.002306952 0.03867204 -0.0009715296) (-0.001937802 0.03874149 -0.001459572) (-0.003332211 0.03735248 -0.0006405683) (-0.003219225 0.0376339 -0.0003100788) (-0.002703888 0.03825467 -0.0004975723) (-0.002086972 0.03706187 -0.0005048064) (-0.002618458 0.03706384 1.087794e-05) (-0.002025917 0.03903008 -0.0005006607) (-0.002408588 0.03878236 1.97324e-06) (-0.0005282838 0.03808133 -0.001596694) (-0.001042773 0.03920615 -0.00158485) (-0.001556896 0.03920585 -0.00104116) (-0.0007041676 0.03955562 -0.001173364) (-1.697124e-05 0.03930581 -0.001683342) (-0.0003724301 0.03961877 -0.001287096) (-0.001576609 0.03806539 -0.0005123038) (-0.000532671 0.03806114 -0.0005172519) (-0.001048366 0.03902756 -0.0005296806) (-0.001254379 0.03962198 -0.0004702356) (-0.001750036 0.03931535 2.608441e-06) (-7.905539e-06 0.03897844 -0.0005083126) (-0.0004959555 0.03983102 -0.0004874812) (-0.0005252674 0.03898978 1.13669e-05) (0.00155936 0.03807749 -0.001534133) (0.00101122 0.03921737 -0.001517875) (0.0005161805 0.0390331 -0.001020067) (0.001584403 0.0392399 -0.0009839055) (0.001857914 0.03871882 -0.00147047) (0.0005289722 0.03806032 -0.000519114) (0.001596418 0.03812958 -0.0005169363) (0.002093038 0.03709516 -0.0005208648) (0.001222459 0.03947773 -0.0006934908) (0.0005012839 0.03980765 -0.0004929706) (0.0005236622 0.03900851 -1.496675e-06) (0.002015411 0.03902819 -0.0005061537) (0.001309085 0.03952136 -0.0003512648) (0.001744719 0.03935833 -6.875365e-05) (0.003506387 0.03715836 -0.001010433) (0.002340627 0.03866461 -0.0008358412) (0.003058568 0.03703749 -0.0005198627) (0.0027762 0.0383351 -0.0004982332) (0.003250655 0.03768637 -0.000466482) (0.003818397 0.03678259 -0.0004943985) (0.00362501 0.03722847 4.339584e-06) (0.002382656 0.03874172 -2.881328e-06) (-0.0005020355 -0.03981465 0.0004965199) (-0.0003766994 -0.03959512 0.001360264) (0.00129449 -0.03952505 0.0003217547) (0.0004790511 -0.03956755 0.001309026) (-0.003826862 -0.03678001 0.0004998482) (-0.004344543 -0.03578071 0.0004990332) (-0.00376914 -0.03662392 0.001377375) (-0.004267498 -0.03571336 0.001358435) (-0.002688128 -0.03826261 0.0005024568) (-0.002302315 -0.03864906 0.0009588032) (-0.003286141 -0.03739727 0.0006330377) (-0.003516408 -0.03700664 0.001006802) (-0.00259468 -0.03705449 0.001019385) (-0.00207715 -0.03706648 0.0005117782) (-0.00258818 -0.03605645 0.0005062331) (-0.002500164 -0.03815603 0.001505295) (-0.001958368 -0.03871985 0.001486884) (-0.003152145 -0.03726529 0.00151832) (-0.003754582 -0.03631038 0.001631416) (-0.003314664 -0.0367116 0.001973092) (-0.002066878 -0.03706924 0.001557066) (-0.002573904 -0.0360519 0.001527617) (-0.002722337 -0.0373272 0.002154771) (-0.0005227991 -0.0380505 0.0005460042) (-0.0006858212 -0.03949561 0.001302742) (-0.001055914 -0.03918862 0.001594272) (-0.001546145 -0.03808627 0.001565801) (-0.0005316622 -0.03810708 0.001593873) (-1.130811e-05 -0.03933846 0.001681858) (-0.0005208393 -0.03904139 0.0020384) (-0.001552039 -0.03707347 0.002072392) (-0.000518857 -0.03707875 0.002085152) (0.001593369 -0.03812112 0.0005400727) (0.001626061 -0.03916841 0.00105162) (0.002087379 -0.03709542 0.0005345149) (0.0009769039 -0.03924487 0.001548373) (0.000503953 -0.03807389 0.001580217) (0.001574325 -0.0380768 0.001550605) (0.001865468 -0.03874619 0.0014729) (0.00144519 -0.03871333 0.001961345) (0.0005129607 -0.03706831 0.002084586) (0.002061841 -0.03705881 0.001543807) (0.001556058 -0.03705768 0.002062259) (0.003276434 -0.03764799 0.000461391) (0.003045389 -0.0370406 0.0005225344) (0.002575789 -0.03708729 0.001046396) (0.003501492 -0.03715093 0.0009934855) (0.003812772 -0.03679924 0.0005037911) (0.003510558 -0.0360042 0.0005081422) (0.002508791 -0.03800611 0.001494956) (0.003165211 -0.03723844 0.001525201) (0.002558379 -0.03603561 0.001531208) (0.002669584 -0.03728645 0.002160707) (0.003749274 -0.03666347 0.001354382) (0.00374417 -0.03626001 0.0016809) (0.003328291 -0.0367444 0.001969933) (0.004223735 -0.03569553 0.001325939) (-0.005720064 -0.03270761 0.0003721219) (-0.00450302 -0.03399841 0.0005055214) (-0.004557264 -0.03514414 0.0009931954) (-0.005007953 -0.03299546 0.0005035709) (-0.005500733 -0.03299445 0.00100597) (-0.004543535 -0.03300526 0.001015837) (-0.004791878 -0.03464148 0.001339007) (-0.00520794 -0.03370551 0.00131703) (-0.004725933 -0.03430027 0.001690491) (-0.004259963 -0.03527538 0.001664312) (-0.004408645 -0.0348107 0.002010604) (-0.005205993 -0.03328803 0.001638438) (-0.005636284 -0.03219824 0.001500079) (-0.005371144 -0.03277521 0.001985269) (-0.004074596 -0.03301397 0.001531005) (-0.004569398 -0.0320101 0.001521197) (-0.004545955 -0.03300412 0.002033139) (-0.003084161 -0.03503812 0.00152837) (-0.003584426 -0.03402181 0.001533054) (0.003536255 -0.03501036 0.00101462) (0.003066425 -0.03502368 0.001527283) (0.003562094 -0.03401934 0.00152092) (0.004221349 -0.03530516 0.001626883) (0.003564198 -0.03501569 0.002026737) (0.004068285 -0.03302095 0.001518685) (0.005284153 -0.03371352 0.0004875393) (0.005023435 -0.03299579 0.0005122542) (0.004579028 -0.0330155 0.001025454) (0.005470132 -0.03302825 0.001011296) (0.005761045 -0.03270268 0.0003538133) (0.005667968 -0.03227574 0.00065859) (0.004710294 -0.03465659 0.001387213) (0.004666773 -0.03428214 0.001655015) (0.00520173 -0.03331865 0.001523258) (0.004576684 -0.03202423 0.001519676) (0.004556746 -0.03300753 0.002012082) (0.00565112 -0.03218769 0.00150282) (0.005374081 -0.0327419 0.001990007) (-0.006515321 -0.03000346 0.0004984375) (-0.006306912 -0.03073051 0.0009832907) (-0.006901689 -0.02876902 0.0005007055) (-0.006668604 -0.02923726 0.001002448) (-0.00607747 -0.0290033 0.0005027453) (-0.006557453 -0.02800669 0.0005010334) (-0.006401698 -0.02999744 0.001500981) (-0.006071904 -0.03097508 0.001492058) (-0.00683351 -0.02874349 0.001483464) (-0.006029029 -0.02900431 0.001503155) (-0.006527434 -0.02800627 0.001501008) (-0.006567871 -0.02897553 0.001992439) (-0.005059715 -0.03100647 0.001511727) (-0.005558021 -0.03000974 0.001505666) (-0.005551054 -0.02900611 0.00200993) (0.005561828 -0.03000812 0.0005068456) (0.005539969 -0.03101147 0.001009503) (0.006058316 -0.02901001 0.0005019322) (0.005072757 -0.03101885 0.001519911) (0.005578914 -0.03000378 0.001514969) (0.006030597 -0.0310114 0.001502141) (0.005694741 -0.03129379 0.002177825) (0.006039145 -0.02900311 0.001508444) (0.005546569 -0.02900806 0.002013337) (0.006876525 -0.02876444 0.0005034739) (0.006622281 -0.02920585 0.0009952846) (0.006406333 -0.02980004 0.001508105) (0.006837715 -0.02870559 0.001349621) (0.006711029 -0.02829723 0.001666338) (0.006500665 -0.02898495 0.002000687) (-0.007867314 -0.02475134 0.0004986832) (-0.007798863 -0.02469736 0.001359126) (-0.006576264 -0.02601366 0.0005027808) (-0.006565527 -0.02701582 0.00100349) (-0.007066466 -0.02500819 0.0005025378) (-0.007627207 -0.02521598 0.0009920842) (-0.007127752 -0.02702857 0.001501664) (-0.007411374 -0.02597859 0.001503116) (-0.006590957 -0.02601699 0.001503432) (-0.006540943 -0.02700821 0.00200672) (-0.007024791 -0.02500722 0.001498539) (-0.007672308 -0.02429703 0.001632007) (-0.007500871 -0.02499931 0.001999419) (-0.006560278 -0.02500863 0.002013847) (0.00752263 -0.02600308 0.0005000555) (0.007372924 -0.02676265 0.000996669) (0.007056026 -0.02500896 0.0005023451) (0.007630576 -0.02520871 0.0009923544) (0.00785874 -0.02475306 0.0004962551) (0.007517057 -0.02400014 0.0005017502) (0.00712713 -0.0271999 0.001496981) (0.00654714 -0.02600918 0.001511766) (0.007465499 -0.02594736 0.001493648) (0.00727993 -0.02670162 0.00185541) (0.007028748 -0.02500354 0.001506771) (0.006560986 -0.02500735 0.002016136) (0.007804263 -0.02470151 0.001355668) (0.007672392 -0.02425784 0.001637349) (0.007505072 -0.02499874 0.002001608) (-0.008391277 -0.0217622 0.00049761) (-0.008474013 -0.02094412 0.0009920842) (-0.008042662 -0.02100544 0.0004997806) (-0.008599081 -0.02006698 0.0004987528) (-0.008330385 -0.02170734 0.001365223) (-0.008012487 -0.02299802 0.001498322) (-0.008197999 -0.02129719 0.00164397) (-0.008508253 -0.01999824 0.001497285) (-0.00835425 -0.02076314 0.001988096) (-0.007098014 -0.02101553 0.0005015065) (-0.007577817 -0.02101378 0.001002974) (-0.007050778 -0.02300858 0.001503866) (-0.007563371 -0.02200886 0.001503902) (-0.007085653 -0.02101418 0.001506574) (-0.007562307 -0.02000985 0.001504505) (-0.007560493 -0.02100575 0.002002959) (0.007606265 -0.02201643 0.0005036844) (0.007558605 -0.02300871 0.001009577) (0.007088885 -0.0210106 0.0005014971) (0.007573644 -0.0210093 0.001002204) (0.008036629 -0.02100632 0.0005009012) (0.007586998 -0.02000856 0.0005000092) (0.007080894 -0.02300849 0.001514817) (0.007571608 -0.02200492 0.001501053) (0.008007954 -0.02299233 0.001495109) (0.007688242 -0.02329425 0.002143134) (0.007088565 -0.02101031 0.001507076) (0.008201433 -0.02129511 0.001633375) (0.007564595 -0.02000686 0.001501905) (0.007565099 -0.02100807 0.002005491) (0.008472475 -0.02094363 0.0009925666) (0.008351775 -0.02170763 0.001357691) (0.008513476 -0.01999854 0.001498599) (0.008349548 -0.02077045 0.001989818) (-0.008499065 -0.01800041 0.0004984336) (-0.008639898 -0.01921825 0.0009949655) (-0.008992856 -0.0169948 0.0004993405) (-0.008501383 -0.01699863 0.001000938) (-0.008038445 -0.01700319 0.0005025855) (-0.008562716 -0.01600088 0.0004997843) (-0.008798726 -0.01871105 0.001379192) (-0.008655216 -0.01824767 0.001631815) (-0.008041257 -0.01900276 0.00150414) (-0.008536101 -0.01901535 0.002003634) (-0.008920768 -0.0169712 0.001484522) (-0.008038012 -0.01699911 0.001508033) (-0.008515852 -0.01599941 0.001502291) (-0.008656524 -0.01726631 0.002143373) (0.008047398 -0.01700123 0.0005001525) (0.008049395 -0.01900275 0.001499799) (0.007560141 -0.0190048 0.002006778) (0.008050787 -0.01699472 0.001508391) (0.009006634 -0.01699998 0.0005002329) (0.008503433 -0.01699813 0.001000901) (0.008808418 -0.01870753 0.001361966) (0.008658535 -0.01825563 0.001628249) (0.008944077 -0.01697521 0.001490075) (0.00852861 -0.01599951 0.001503855) (0.008667281 -0.01724982 0.002141078) (-0.008595266 -0.01400342 0.0004988977) (-0.008586656 -0.01499958 0.001003561) (-0.008988676 -0.01300071 0.0005005127) (-0.009413249 -0.01296615 0.000979698) (-0.008548441 -0.01300686 0.001001457) (-0.008542442 -0.01200331 0.0005013844) (-0.009075069 -0.01500695 0.001504607) (-0.009310807 -0.01370671 0.001347696) (-0.008571994 -0.01400413 0.001504877) (-0.008516326 -0.01499989 0.002001075) (-0.009170633 -0.01325262 0.001641442) (-0.009446243 -0.01197635 0.001491814) (-0.009342042 -0.01272868 0.001860188) (-0.008543729 -0.01200546 0.00150609) (-0.008565 -0.01300521 0.002010541) (0.009406952 -0.01392893 0.0004989619) (0.00930557 -0.01470249 0.0008595522) (0.008951385 -0.01299635 0.0005002455) (0.008546526 -0.01299612 0.001003264) (0.009413078 -0.01297362 0.0009869185) (0.009427449 -0.01199777 0.0004977322) (0.009102895 -0.01502385 0.001510074) (0.008607893 -0.0140043 0.001510523) (0.009333125 -0.01374032 0.001367591) (0.009165545 -0.0132466 0.00164019) (0.008551968 -0.01199967 0.001503208) (0.00859458 -0.01300032 0.002011701) (0.009404917 -0.01197878 0.001459342) (0.009319192 -0.01270841 0.001847046) (-0.008552195 -0.01100402 0.00100381) (-0.009134818 -0.009003593 0.0005053006) (-0.009607715 -0.009002935 0.001005638) (-0.009013757 -0.01100224 0.001502152) (-0.009516909 -0.009999996 0.001500385) (-0.008551702 -0.01000561 0.001506357) (-0.008547557 -0.01100571 0.002008377) (-0.009056132 -0.009003422 0.001504152) (-0.009590302 -0.008006176 0.001509417) (-0.009467085 -0.009001785 0.001995421) (-0.008544231 -0.009006338 0.002008662) (0.0095174 -0.01000147 0.0004995724) (0.009437963 -0.01099775 0.0009954979) (0.009057942 -0.009002035 0.0005010804) (0.008541727 -0.009001726 0.001002561) (0.009527945 -0.009000603 0.0009962943) (0.009606864 -0.008000864 0.0005030574) (0.008998802 -0.0110018 0.001505374) (0.00852408 -0.0100015 0.001506845) (0.009435815 -0.009999625 0.001488982) (0.009352386 -0.01099508 0.001986946) (0.009005081 -0.009001096 0.001499217) (0.00855318 -0.008002922 0.001505626) (0.008546334 -0.009002533 0.002012557) (0.009522982 -0.008000966 0.001496211) (0.009398881 -0.008995986 0.001958558) (-0.009855457 -0.004974919 0.0004877138) (-0.009815179 -0.004725274 0.001340366) (-0.009023483 -0.004997337 0.0005009159) (-0.00965854 -0.005254893 0.00113612) (-0.009104254 -0.007001217 0.001507464) (-0.009651637 -0.006019026 0.001498542) (-0.008563233 -0.007001445 0.002007265) (-0.009091154 -0.004998823 0.001512751) (-0.0096467 -0.00401921 0.001625641) (-0.009598539 -0.005004635 0.002014286) (0.009694085 -0.006023331 0.0005003514) (0.009616836 -0.007004478 0.001004712) (0.009147272 -0.005007241 0.0005034431) (0.009692245 -0.005059825 0.001008508) (0.009829556 -0.00471054 0.0003691421) (0.00969533 -0.004285348 0.0006414686) (0.009063451 -0.007003742 0.001504485) (0.009609096 -0.006007088 0.001511599) (0.009473701 -0.007001146 0.001994788) (0.009116595 -0.005004601 0.00151335) (0.008568845 -0.005004094 0.002012284) (0.009639301 -0.003995512 0.001503621) (0.00956066 -0.005002465 0.002000365) (-0.009947352 -0.0009976653 0.0004977556) (-0.00983759 -0.002997183 0.00147794) (-0.009857843 -0.0009945432 0.001447154) (-0.008966024 -0.0009977084 0.0005016276) (-0.009440642 -0.0009977079 0.0009990515) (-0.009065926 -0.002982551 0.001511135) (-0.009472388 -0.001999182 0.001503283) (-0.009015882 -0.0009976143 0.001514108) (-0.009492987 -9.356172e-07 0.001513032) (-0.009714449 -0.0009992062 0.00216057) (0.009420694 -0.001999167 0.000502252) (0.009475441 -0.002998829 0.001002888) (0.008970774 -0.0009997973 0.0005028158) (0.009441812 -0.0009973886 0.001001455) (0.009920627 -0.000997977 0.0004975972) (0.009461248 -1.084909e-07 0.0004993102) (0.009081336 -0.003004655 0.001509823) (0.009678541 -0.002279522 0.001658762) (0.009822689 -0.002955654 0.001373834) (0.009623778 -0.00301901 0.002037119) (0.009031713 -0.001000658 0.001511528) (0.009885878 -0.0009832334 0.001461372) (0.009496553 1.734109e-06 0.001503204) (0.009667631 -0.0009888136 0.002123113) (-0.009872325 0.002995915 0.0004947927) (-0.0098548 0.0009941593 0.001462626) (-0.009830912 0.002995742 0.001492621) (-0.008958748 0.002999536 0.0004989319) (-0.009447522 0.002999522 0.001000155) (-0.009020022 0.0009997036 0.001510028) (-0.009467558 0.002000928 0.001503763) (-0.009064471 0.003003537 0.001506417) (-0.009675889 0.004019799 0.001595955) (-0.009632333 0.002994529 0.0020073) (0.009431231 0.001998537 0.0004989323) (0.009443067 0.00100033 0.0009992229) (0.008962934 0.002999269 0.0005017691) (0.009461729 0.003000212 0.001002203) (0.009885478 0.00299731 0.0004993192) (0.009407041 0.003996825 0.0004985532) (0.009026303 0.001001103 0.001505732) (0.009476768 0.002000525 0.001499166) (0.009861434 0.0009987611 0.001462512) (0.009725466 0.0009994503 0.002124658) (0.009080128 0.003004388 0.001511638) (0.009829927 0.002999514 0.001491374) (0.009733389 0.004032839 0.001633555) (0.009626559 0.003003561 0.002031822) (-0.009800005 0.004717331 0.001340161) (-0.009161299 0.006998612 0.0004980521) (-0.009691625 0.007017059 0.001001487) (-0.00908517 0.005008221 0.001512894) (-0.009651983 0.006014564 0.001511999) (-0.008567367 0.00500327 0.002010921) (-0.009103784 0.007001919 0.001508788) (-0.009585205 0.008000115 0.001505788) (-0.009543834 0.007000444 0.002003147) (-0.008564108 0.007002484 0.002012354) (0.009452888 0.005998362 0.0005028179) (0.009460739 0.004998448 0.001003764) (0.009102759 0.00699636 0.0005180334) (0.009683638 0.007037133 0.001014232) (0.00982864 0.006958156 0.0004803059) (0.009696606 0.008025963 0.0005114762) (0.009105909 0.005001354 0.001508326) (0.009646347 0.005996174 0.001512914) (0.009806943 0.004963687 0.001364452) (0.009635925 0.005006462 0.002040801) (0.009123127 0.006997815 0.001518599) (0.008587918 0.006998832 0.002011018) (0.009638097 0.008002842 0.001512312) (0.009589569 0.007000803 0.002006541) (-0.009061682 0.01100031 0.0004999146) (-0.009548544 0.01099799 0.0009957694) (-0.008554132 0.01099973 0.00100268) (-0.008538043 0.01200037 0.0004983536) (-0.009056448 0.009001112 0.00150522) (-0.009511061 0.01000015 0.001500631) (-0.008558082 0.01000025 0.001507949) (-0.00854951 0.009000348 0.002010413) (-0.009016269 0.01099905 0.001504285) (-0.009437306 0.01197526 0.001486091) (-0.009419864 0.01097765 0.00197426) (-0.00854878 0.01199747 0.001506652) (-0.008561094 0.01099837 0.002014984) (0.009644674 0.009999399 0.0005012708) (0.009678176 0.009007441 0.001027499) (0.009069232 0.01099987 0.0005034342) (0.008566189 0.0110012 0.001010809) (0.009539469 0.0109989 0.001003028) (0.009498508 0.01199741 0.000501665) (0.009099979 0.009001463 0.001512375) (0.008577739 0.0100006 0.001513724) (0.009538528 0.009998398 0.001503336) (0.009532956 0.008997805 0.002003515) (0.009020501 0.01099909 0.001507426) (0.008573978 0.01200193 0.001519918) (0.008567496 0.01099965 0.002018282) (0.009434703 0.01197583 0.001487871) (0.009456364 0.01097847 0.001972242) (-0.008597755 0.01400679 0.0004964788) (-0.008548104 0.01300066 0.0009968163) (-0.009146135 0.01502755 0.000503712) (-0.008599454 0.0150027 0.0009987916) (-0.008571526 0.01600574 0.0005038566) (-0.009171406 0.01325254 0.001631103) (-0.009304843 0.01370097 0.001367738) (-0.008572581 0.01399955 0.001491152) (-0.008576785 0.0130015 0.002009883) (-0.009078913 0.01500964 0.001502437) (-0.008518975 0.01600134 0.001500419) (-0.008518157 0.01500056 0.001999914) (0.009394069 0.01394029 0.0004881735) (0.009422628 0.01297614 0.0009861959) (0.009143592 0.0152054 0.0004903551) (0.008578164 0.01500458 0.001007436) (0.009303174 0.0147121 0.0008624365) (0.009181759 0.01326798 0.001640858) (0.008609537 0.0140146 0.001520307) (0.009343547 0.01373551 0.001371594) (0.009336714 0.0127376 0.001874451) (0.009103835 0.01502354 0.001500832) (0.008529352 0.01600146 0.00150209) (0.008539966 0.01500066 0.002005145) (-0.008496719 0.01800283 0.0005004193) (-0.008500149 0.01699992 0.0009998747) (-0.008844647 0.01875309 0.0004978848) (-0.008647808 0.01920599 0.0009906578) (-0.008105067 0.01900614 0.0005015102) (-0.008609972 0.02005831 0.0005044077) (-0.008949504 0.01697575 0.001490657) (-0.008670596 0.01825168 0.0016388) (-0.008042739 0.01700207 0.001506995) (-0.008648708 0.01726849 0.002121409) (-0.008796029 0.01870051 0.001353858) (-0.008041762 0.01899999 0.001507956) (-0.008509723 0.01999765 0.001496316) (-0.008529221 0.01901478 0.002008797) (-0.00756305 0.02000519 0.001507218) (-0.007552622 0.01900382 0.002008676) (0.008069664 0.01900606 0.0005014602) (0.007560044 0.02000465 0.0005024114) (0.008044452 0.01700411 0.001504675) (0.008036344 0.01900268 0.0015072) (0.007558563 0.02000356 0.001507534) (0.00757556 0.01900465 0.002015022) (0.00885986 0.01875047 0.0004961987) (0.008616578 0.01921107 0.000993701) (0.008937186 0.01697834 0.001487515) (0.00866156 0.01826471 0.001635709) (0.008785882 0.01869009 0.001373489) (0.00847595 0.01996519 0.001490893) (0.008511229 0.01899967 0.002001033) (-0.008392085 0.02176174 0.000497726) (-0.008469921 0.02094341 0.0009935496) (-0.008117812 0.02305282 0.0004940826) (-0.008342423 0.02170847 0.001366069) (-0.00819145 0.02129771 0.001642751) (-0.008351675 0.02076229 0.00199216) (-0.008013605 0.02299691 0.001494545) (-0.00708851 0.02300884 0.0004995821) (-0.007558044 0.02300572 0.000999834) (-0.007087207 0.02100732 0.001510886) (-0.007565313 0.02200738 0.001505494) (-0.007057709 0.02300324 0.001504156) (-0.007680563 0.02428036 0.001633596) (-0.007503679 0.02299912 0.001996991) (0.007555346 0.02200566 0.0005022148) (0.007574436 0.02100456 0.001008466) (0.007072742 0.0230083 0.0005020518) (0.007518135 0.02300393 0.001002091) (0.008017537 0.02302786 0.0005011361) (0.007699621 0.0242942 0.0006442248) (0.007079044 0.02100503 0.001510373) (0.007541972 0.02200339 0.00150274) (0.008168965 0.02122348 0.001511349) (0.007553944 0.02100326 0.002011654) (0.007056977 0.02300429 0.001503042) (0.007960271 0.02294008 0.001492668) (0.00764859 0.02420708 0.001493233) (0.007674916 0.02324997 0.002124866) (-0.007794207 0.02471924 0.001371858) (-0.006573305 0.02601068 0.000502022) (-0.00718634 0.02724075 0.0005035136) (-0.007372276 0.02673877 0.0009823071) (-0.006566322 0.02701118 0.001004209) (-0.006543082 0.02801065 0.0005007971) (-0.007032233 0.02500113 0.001501731) (-0.007408885 0.02598307 0.001499478) (-0.006584955 0.02600885 0.001508303) (-0.006566133 0.02500791 0.002015492) (-0.007135042 0.02702415 0.001498678) (-0.006524505 0.02800664 0.001503789) (-0.006535694 0.02700634 0.0020124) (0.007506643 0.02595932 0.0005016955) (0.0075884 0.02505738 0.001010411) (0.007170181 0.02724311 0.0005004537) (0.006587694 0.02701505 0.001008615) (0.007358252 0.02674448 0.0009825201) (0.007039685 0.02500486 0.00150339) (0.006604964 0.02602251 0.001513305) (0.007404684 0.02597356 0.00150373) (0.007475223 0.02496636 0.00199798) (0.007145767 0.02702662 0.001492884) (0.006725333 0.02830394 0.001644783) (0.006553433 0.02700843 0.0020142) (-0.006517319 0.03000382 0.0005005543) (-0.006650924 0.02925301 0.0009957755) (-0.006308584 0.03071485 0.0009770881) (-0.006097718 0.03122754 0.0004997459) (-0.006836101 0.02873526 0.001484486) (-0.006399603 0.03000041 0.001496377) (-0.006031777 0.02900362 0.001501387) (-0.006568391 0.02897506 0.001993781) (-0.006072312 0.03097564 0.001493777) (-0.005057827 0.03101033 0.0005034649) (-0.005521617 0.03100087 0.001003543) (-0.005556473 0.03000984 0.001504811) (-0.005059757 0.03101361 0.001509689) (-0.005640326 0.03220048 0.001502083) (-0.005694337 0.03130252 0.002149821) (-0.004565289 0.03202128 0.001516547) (0.005561527 0.03000985 0.000505563) (0.005068661 0.03101416 0.0005113012) (0.005535144 0.0310062 0.001003818) (0.006101252 0.03120162 0.0004945193) (0.005699909 0.03231624 0.0006636378) (0.005573483 0.03001777 0.001511125) (0.006040145 0.02900776 0.001506129) (0.005549276 0.02901104 0.00200918) (0.0050787 0.03102196 0.001513886) (0.004584133 0.03202293 0.001520681) (0.006018441 0.03100678 0.001498666) (0.00565514 0.03218735 0.001512879) (0.00570464 0.03132353 0.002130692) (0.006323125 0.03069292 0.0008591508) (0.006813463 0.02869697 0.001370358) (0.006406291 0.02979919 0.001508745) (-0.0045083 0.0339978 0.000506172) (-0.00453433 0.0330145 0.001012278) (-0.004814068 0.03478166 0.0004942054) (-0.004562384 0.0351455 0.0009911374) (-0.0040212 0.03500114 0.0005074533) (-0.004338958 0.03579801 0.0004947383) (-0.005164949 0.03330564 0.001634704) (-0.005239103 0.0336747 0.001361128) (-0.004702269 0.034344 0.001682168) (-0.004067164 0.03303042 0.001523072) (-0.004558181 0.03302436 0.002018239) (-0.004747572 0.03467805 0.00140374) (-0.004262206 0.03528048 0.001674521) (-0.004284796 0.03571176 0.001350254) (-0.004412094 0.03481264 0.002013545) (-0.003562069 0.03502147 0.001025653) (-0.002589962 0.03605649 0.0005203148) (-0.003580205 0.03403493 0.001533312) (-0.003079136 0.03504009 0.001539232) (-0.003743619 0.03628508 0.001705758) (-0.003577032 0.03505188 0.00203277) (-0.002570838 0.0360455 0.001537675) (0.003543417 0.03500881 0.001022292) (0.003991987 0.03499393 0.0005077523) (0.003516327 0.03600716 0.0005081266) (0.003565535 0.03401985 0.001533675) (0.004068252 0.0330214 0.001524798) (0.003079212 0.03503152 0.001541994) (0.002583712 0.03605637 0.001547249) (0.004212997 0.03528422 0.001665942) (0.003756565 0.03625097 0.00166833) (0.003562747 0.03502873 0.00204507) (0.005300232 0.03373975 0.0004939147) (0.005469984 0.03302548 0.001016131) (0.004784502 0.03475341 0.0005020191) (0.004521326 0.0351231 0.0009901593) (0.005205178 0.03327657 0.001516516) (0.004671251 0.03429045 0.001671465) (0.005364408 0.03274529 0.001993131) (0.0046967 0.03467857 0.001352611) (0.004253652 0.03564487 0.001332314) (0.004372089 0.03479401 0.001997909) (-0.003757986 0.03661366 0.00133132) (-0.002674091 0.03826992 0.0005211883) (-0.002588629 0.03706424 0.001012522) (-0.002295663 0.03865281 0.0009733887) (-0.002045441 0.03902565 0.0005088245) (-0.003157909 0.03723458 0.001537753) (-0.002501333 0.03815756 0.001500511) (-0.002051211 0.03707577 0.001552854) (-0.002736572 0.03729105 0.002163152) (-0.00192953 0.03869502 0.001443912) (-0.000537987 0.03804288 0.0005507409) (-0.00106773 0.03900258 0.0005440546) (-0.001511122 0.03923053 0.00105444) (-0.000719474 0.03946338 0.00130549) (-8.645092e-06 0.03895779 0.0005273231) (-0.0005054185 0.03981412 0.0004976341) (-0.001032106 0.03708862 0.001577998) (-0.001509804 0.03807953 0.001559583) (-0.0005377983 0.03810613 0.001591741) (-0.0005208867 0.03709462 0.002091193) (-0.001061545 0.03907081 0.001569012) (-0.001483206 0.03865386 0.001819962) (-2.364944e-05 0.03930986 0.001720174) (-0.000378748 0.03959311 0.001367896) (-0.00051126 0.03901498 0.002032965) (0.001578761 0.03810253 0.0005245308) (0.001261934 0.03942906 0.0007202725) (0.0005198095 0.03900829 0.001041183) (0.001537223 0.03921975 0.001017073) (0.002010002 0.03902546 0.0004976058) (0.001329089 0.03951548 0.0002971509) (0.0005065195 0.03807522 0.001579035) (0.001566261 0.03806756 0.001573461) (0.002079432 0.03707084 0.001564362) (0.001565121 0.03707606 0.00208386) (0.001017387 0.03922899 0.001544622) (0.000459844 0.0395508 0.001373174) (0.0004845574 0.03903408 0.002049339) (0.001947784 0.03873203 0.001463462) (0.00143204 0.03872952 0.001947349) (0.003262396 0.03767665 0.0004839928) (0.003498392 0.03715512 0.001001554) (0.00228572 0.03867606 0.000961219) (0.003207955 0.03728707 0.001538437) (0.002508502 0.03817035 0.001500042) (0.003742247 0.03667772 0.001339104) (0.003344636 0.03676699 0.002010888) (-0.002318921 -0.03770394 0.002381922) (-0.002953126 -0.03677547 0.002469894) (-0.002459681 -0.03679009 0.002969254) (-0.002247321 -0.03731788 0.002737977) (-0.002549377 -0.03603039 0.002533565) (-0.00198663 -0.03677923 0.003371936) (-0.002508537 -0.03598632 0.003518844) (-0.0005224272 -0.03833916 0.002736347) (-0.00102277 -0.03707065 0.002614145) (-0.001562006 -0.03723459 0.003203788) (-0.0005046935 -0.03704689 0.003074233) (-2.082463e-06 -0.03708091 0.002590467) (-0.0005130124 -0.03605833 0.002583653) (-0.0004810888 -0.03768514 0.00331176) (-0.001002916 -0.0371573 0.003507877) (-0.001648289 -0.0363179 0.003754474) (-0.001353665 -0.03666569 0.003763313) (-1.764421e-06 -0.03719136 0.003609578) (-0.0005001342 -0.03603001 0.003560308) (-0.000501858 -0.03677208 0.003862586) (0.001482692 -0.03817269 0.002541682) (0.001029298 -0.03708683 0.002597772) (0.0005128517 -0.03705658 0.003064349) (0.001553644 -0.037327 0.003211252) (0.00215534 -0.03729066 0.002691301) (0.001534571 -0.03604706 0.002568951) (0.0004695509 -0.03770356 0.00328572) (0.0009930606 -0.03715015 0.003505128) (0.0005045577 -0.03602399 0.003559639) (0.000497089 -0.03678544 0.003836464) (0.00195664 -0.03674041 0.003360516) (0.00169937 -0.03624422 0.00374093) (0.001385615 -0.03660018 0.003743662) (0.002943284 -0.03675226 0.002454396) (0.002417564 -0.03675546 0.002928957) (0.003499703 -0.03597506 0.002501423) (0.002470394 -0.035962 0.003463474) (-0.004530945 -0.03401521 0.002515896) (-0.00500063 -0.03298973 0.002515958) (-0.004600293 -0.03318431 0.002994334) (-0.004044658 -0.03300485 0.002538589) (-0.004546005 -0.03201609 0.002524367) (-0.004285806 -0.03367865 0.003248296) (-0.003747931 -0.03468221 0.003314501) (-0.004805876 -0.03264442 0.003271198) (-0.004099052 -0.03322388 0.003607509) (-0.004586763 -0.03222444 0.003600011) (-0.002552656 -0.03505995 0.00305538) (-0.003526219 -0.03300814 0.003018025) (-0.00303722 -0.03522963 0.003533481) (-0.003608389 -0.03420143 0.003616898) (-0.002558703 -0.03403533 0.003594574) (-0.002053199 -0.03504533 0.003589545) (-0.002530951 -0.03503084 0.004061349) (-0.00302315 -0.03301393 0.003532194) (-0.00362009 -0.0332324 0.004114829) (-0.002532033 -0.03301828 0.004078767) (-0.001019878 -0.03503232 0.003583632) (-0.00153267 -0.0340339 0.003604942) (-0.0005030677 -0.03502149 0.004067273) (-0.001523736 -0.03302692 0.004092582) (0.001531818 -0.03503244 0.00307118) (0.001021278 -0.03502644 0.003568731) (0.001527208 -0.03402546 0.00357884) (0.002010413 -0.03501347 0.003549197) (0.001654668 -0.03532308 0.004219013) (0.001524734 -0.03301818 0.00407876) (0.003554642 -0.03402301 0.002527536) (0.003536334 -0.03521086 0.003051294) (0.003521341 -0.03300457 0.003010884) (0.004056703 -0.03301295 0.002510422) (0.003025306 -0.03519278 0.003525506) (0.002515502 -0.03401378 0.003560756) (0.003612443 -0.03419512 0.003610854) (0.00374523 -0.03465695 0.003312035) (0.003283009 -0.0346329 0.003722301) (0.003010998 -0.03300357 0.003523435) (0.002527377 -0.03300334 0.004061657) (0.004075637 -0.03322497 0.003594575) (0.003592877 -0.03322401 0.004105157) (0.005000207 -0.03298151 0.002491326) (0.004616072 -0.03300671 0.003009459) (0.005435212 -0.03200534 0.002504918) (0.004231757 -0.03367815 0.003289669) (0.004615249 -0.0322178 0.003486609) (-0.006295415 -0.02970511 0.002361665) (-0.006344209 -0.02874608 0.002870131) (-0.006170425 -0.02924548 0.00263445) (-0.006615195 -0.02802376 0.002523944) (-0.005900998 -0.0289846 0.003488644) (-0.006369688 -0.02774137 0.003376326) (-0.004557703 -0.03101222 0.003027597) (-0.005068133 -0.02901047 0.002523532) (-0.005537138 -0.02900583 0.003012568) (-0.005104855 -0.03102147 0.003525305) (-0.005510362 -0.03000205 0.003509945) (-0.004570952 -0.02999747 0.003533898) (-0.004594984 -0.03122294 0.004097757) (-0.005043638 -0.02900432 0.003518629) (-0.005533459 -0.0280061 0.003514486) (-0.005508372 -0.02900144 0.004004609) (-0.004552229 -0.02901054 0.004029597) (0.00551742 -0.03000496 0.002508268) (0.005508456 -0.03099594 0.002999319) (0.005061732 -0.02901166 0.002524481) (0.005518302 -0.02900496 0.003009157) (0.006144513 -0.02925983 0.002632144) (0.005554218 -0.02800792 0.002521793) (0.005132731 -0.03099105 0.003524383) (0.004566268 -0.03000906 0.003527653) (0.005516396 -0.03000624 0.0035114) (0.005057169 -0.02900741 0.003528353) (0.004572855 -0.02901272 0.00408471) (0.005885229 -0.02897863 0.003491859) (0.005520669 -0.0280058 0.00351047) (0.005500317 -0.02900301 0.004005884) (0.006341211 -0.02873042 0.002847264) (0.00636755 -0.02773789 0.003358138) (-0.006545058 -0.02600306 0.002515992) (-0.006643306 -0.02702711 0.003016034) (-0.007181848 -0.02526619 0.002637587) (-0.007347805 -0.02473578 0.002872003) (-0.006558507 -0.02500763 0.003020281) (-0.00608089 -0.02501516 0.002529417) (-0.00655566 -0.02400947 0.002522484) (-0.00662382 -0.02602598 0.003540943) (-0.006179668 -0.02728719 0.003669952) (-0.006365948 -0.02674548 0.003865121) (-0.006926964 -0.02498569 0.003498701) (-0.007330258 -0.02373402 0.003352093) (-0.006078962 -0.02501562 0.003537657) (-0.006529519 -0.02400711 0.003508523) (-0.006607175 -0.02502217 0.004023391) (-0.005076327 -0.02701759 0.0035416) (-0.00558144 -0.02601707 0.003546073) (-0.005568375 -0.02501234 0.0040479) (0.005560839 -0.02700972 0.003027091) (0.006088257 -0.02501101 0.002524902) (0.005061653 -0.02700944 0.003538889) (0.005563828 -0.02601071 0.003536436) (0.006161466 -0.02725971 0.003653935) (0.005524113 -0.0270042 0.004012681) (0.006078989 -0.02502255 0.003530366) (0.005550177 -0.0250069 0.004032857) (0.007337689 -0.02573173 0.00236845) (0.00715543 -0.02525933 0.002636882) (0.006553962 -0.02501363 0.003019379) (0.007330487 -0.02474974 0.002859003) (0.007532268 -0.02403235 0.002506698) (0.006632039 -0.02603491 0.003535124) (0.006931797 -0.02498523 0.003498718) (0.006530116 -0.02400801 0.003510322) (0.006614174 -0.0250216 0.004012416) (0.007348169 -0.02373577 0.003351907) (-0.00810673 -0.02101437 0.002495583) (-0.00835611 -0.01995262 0.002475522) (-0.00782843 -0.02097321 0.003360462) (-0.006551527 -0.0230107 0.003020907) (-0.007047766 -0.0210056 0.00250882) (-0.007510593 -0.02099975 0.003001733) (-0.007160859 -0.02327035 0.003633501) (-0.007565687 -0.02198781 0.0034938) (-0.006548089 -0.02200727 0.003518018) (-0.006517906 -0.02300415 0.004006925) (-0.007035952 -0.02100219 0.003513128) (-0.007679687 -0.02027709 0.003675537) (-0.007494872 -0.02099928 0.003997324) (-0.006540988 -0.02100392 0.004019342) (0.007512128 -0.02200214 0.002501732) (0.007579725 -0.02299986 0.002991431) (0.00705771 -0.02101031 0.002513996) (0.00750407 -0.02099951 0.003002429) (0.008105658 -0.02101567 0.002495481) (0.007552382 -0.02001186 0.002507702) (0.007155255 -0.02325765 0.00363114) (0.006563256 -0.02201025 0.003527073) (0.00755447 -0.02198482 0.003486307) (0.00732741 -0.0227142 0.003832034) (0.00706469 -0.02100927 0.003519052) (0.006588932 -0.02101233 0.004034433) (0.007847348 -0.02096606 0.003373064) (0.007678661 -0.02028694 0.00365861) (0.007428602 -0.0210142 0.004014068) (-0.008534258 -0.01801546 0.002496153) (-0.008346803 -0.01897465 0.002876941) (-0.00881571 -0.01674147 0.002372318) (-0.008502249 -0.01700099 0.002997019) (-0.008040027 -0.01700186 0.002505085) (-0.008632496 -0.01626013 0.002632789) (-0.008336294 -0.01774786 0.003357678) (-0.008021215 -0.01900261 0.003506193) (-0.008156929 -0.01725366 0.003613808) (-0.008461554 -0.01598179 0.00347785) (-0.00830287 -0.01672835 0.003824949) (-0.007565101 -0.01700303 0.003010384) (-0.007057484 -0.01900449 0.003521782) (-0.007537477 -0.01800121 0.003513086) (-0.007063209 -0.01700392 0.003518197) (-0.007534412 -0.01600224 0.003505206) (-0.007519479 -0.01700164 0.00400321) (0.007583474 -0.01800573 0.002518889) (0.007553155 -0.01900552 0.003020862) (0.007581687 -0.01700624 0.003026406) (0.008054165 -0.01700224 0.002511637) (0.007058049 -0.01900983 0.003532534) (0.007548644 -0.0180033 0.003523836) (0.008016731 -0.01900442 0.003519789) (0.007636722 -0.01924557 0.004146881) (0.007083454 -0.01700782 0.003538389) (0.008160382 -0.01702067 0.00363364) (0.007586933 -0.01600645 0.003542473) (0.007554088 -0.01700587 0.004028181) (0.008831011 -0.01673765 0.002340422) (0.008501395 -0.01699992 0.002989841) (0.008342666 -0.01772812 0.003354281) (0.008423299 -0.01600142 0.003498008) (-0.008528926 -0.01400077 0.002502544) (-0.008645846 -0.01501803 0.003110849) (-0.009047861 -0.01301784 0.002510158) (-0.008506927 -0.01300156 0.003000271) (-0.008054759 -0.01300322 0.00250963) (-0.00855007 -0.01200256 0.002504166) (-0.008601244 -0.0140025 0.003515222) (-0.008019509 -0.01500152 0.003502488) (-0.008355214 -0.01499495 0.003971914) (-0.008843406 -0.01297415 0.00336983) (-0.00803765 -0.01300273 0.003513715) (-0.008663626 -0.01228289 0.003655546) (-0.008510764 -0.01301325 0.003999882) (-0.007537528 -0.01300368 0.004021404) (0.00808435 -0.01300214 0.00252278) (0.008041845 -0.01500258 0.00352768) (0.007564122 -0.01500633 0.004041312) (0.008066567 -0.01300364 0.00352748) (0.007566955 -0.01300563 0.004033167) (0.009066344 -0.01300802 0.002523551) (0.008527451 -0.01300106 0.003012008) (0.008609528 -0.0140003 0.003522141) (0.008873214 -0.01296629 0.003368078) (0.008713133 -0.01203815 0.003661458) (0.008525385 -0.01298585 0.004008476) (-0.008569418 -0.01001489 0.002511622) (-0.008540304 -0.01100467 0.003015106) (-0.008989167 -0.009001834 0.002496) (-0.009312531 -0.008963986 0.002837759) (-0.008559127 -0.009004495 0.003023749) (-0.008545375 -0.008003229 0.002511342) (-0.00896275 -0.01098387 0.003467763) (-0.008546797 -0.01000246 0.003516551) (-0.008624958 -0.01098537 0.004107162) (-0.009030233 -0.009000605 0.003509078) (-0.008573841 -0.00800239 0.003529567) (-0.008727049 -0.009043938 0.004183994) (0.009349069 -0.009965144 0.0023726) (0.009210455 -0.00903513 0.00265993) (0.008564216 -0.009002812 0.003013117) (0.009365553 -0.007995634 0.002483311) (0.008891477 -0.01099855 0.003488613) (0.008513338 -0.01000151 0.003504892) (0.008965948 -0.008998062 0.003471349) (0.008554546 -0.008002549 0.003513978) (0.00867556 -0.008997562 0.004134606) (-0.008556677 -0.005999994 0.00251704) (-0.008574796 -0.00700051 0.003013117) (-0.009023119 -0.004999522 0.00250415) (-0.009398202 -0.00498427 0.002964445) (-0.008529544 -0.00499956 0.003010797) (-0.009081425 -0.007018698 0.003539053) (-0.009298713 -0.005730039 0.003341753) (-0.008543688 -0.005998592 0.003507639) (-0.008505188 -0.007001752 0.004003103) (-0.009124782 -0.004986854 0.003602346) (-0.009287576 -0.003992778 0.003329561) (-0.008550645 -0.00400018 0.003515605) (-0.008522338 -0.004999133 0.004011282) (0.009416895 -0.005995742 0.002473743) (0.0093453 -0.006967108 0.002855189) (0.009031762 -0.005004086 0.002510191) (0.008566519 -0.005005957 0.00302649) (0.009358094 -0.00499932 0.002976827) (0.009498139 -0.004001091 0.00249643) (0.009034897 -0.007002398 0.003509573) (0.008581634 -0.006002793 0.003531877) (0.009102455 -0.004998957 0.003513077) (0.008529566 -0.00400213 0.003510517) (0.008502543 -0.005000337 0.004003349) (0.009335771 -0.003958821 0.003357649) (-0.008552377 -0.002999439 0.003019434) (-0.009092487 -0.001000685 0.002519441) (-0.00950475 -0.001000117 0.002987301) (-0.008590338 -0.001000996 0.003030956) (-0.009199995 -0.002997423 0.003642945) (-0.009342986 -0.002000255 0.003367003) (-0.00859474 -0.002002743 0.00354045) (-0.008568684 -0.00300109 0.004040714) (-0.009251576 -0.001002184 0.003666003) (-0.009406165 -3.848961e-08 0.003393161) (-0.008629317 2.189599e-07 0.003543166) (-0.008620045 -0.001005387 0.00404491) (0.009579122 -0.00200202 0.002513131) (0.00940519 -0.003001503 0.002972167) (0.009087599 -0.001001455 0.002518897) (0.008577359 -0.001001963 0.003031451) (0.009488294 -0.001001571 0.002983095) (0.009664884 -1.157281e-06 0.002530466) (0.009168894 -0.002999981 0.003618906) (0.008574905 -0.002002153 0.003530884) (0.009322766 -0.001999366 0.003369948) (0.009228656 -0.001001637 0.003683569) (0.008609473 -2.850249e-06 0.003551461) (0.008600584 -0.001003941 0.004041295) (0.009403098 -8.158594e-07 0.003391935) (-0.008590289 0.001000654 0.003025874) (-0.009051954 0.002999918 0.002510505) (-0.009439363 0.003000252 0.002969679) (-0.008551146 0.003000823 0.003018255) (-0.008547775 0.004001957 0.002512148) (-0.0092664 0.001001693 0.003645411) (-0.009339743 0.002000103 0.003368483) (-0.008595587 0.002000931 0.003530814) (-0.00860395 0.001004724 0.004041121) (-0.009193845 0.002999848 0.003645838) (-0.009280032 0.003994254 0.003347601) (-0.008545933 0.004001285 0.003520766) (-0.008575308 0.003001343 0.004026827) (0.009608062 0.002003473 0.002532956) (0.009504075 0.001000262 0.00298807) (0.009068908 0.003001189 0.002510631) (0.008564737 0.003000021 0.003011972) (0.009453934 0.002998961 0.002973595) (0.009557776 0.004001189 0.002508121) (0.009252161 0.0009991485 0.003679029) (0.008600357 0.002000012 0.003523701) (0.00935681 0.002000861 0.003364877) (0.009223106 0.002999474 0.003622827) (0.0085668 0.00399999 0.003511548) (0.008584527 0.003000316 0.004021676) (0.009286633 0.0039988 0.003382371) (-0.008559008 0.006009081 0.002517539) (-0.008530754 0.005005369 0.00301394) (-0.009024189 0.007001738 0.002516636) (-0.009322242 0.007013321 0.002890244) (-0.008572702 0.00700399 0.003031504) (-0.008546929 0.008002266 0.00251883) (-0.009120235 0.004984876 0.003603622) (-0.009330105 0.005730657 0.003333395) (-0.008537872 0.006004725 0.003512406) (-0.008520886 0.005000124 0.004012905) (-0.009080827 0.007014356 0.003533583) (-0.008560232 0.008000876 0.003536543) (-0.008506661 0.006998875 0.004003805) (0.009500754 0.005999336 0.002500825) (0.009405946 0.00499962 0.002955296) (0.009057554 0.006996277 0.002506138) (0.008597677 0.00699488 0.003010143) (0.009377793 0.007001757 0.002983389) (0.009447693 0.007992774 0.00247745) (0.009161373 0.004998321 0.003626209) (0.008535864 0.005999211 0.003503891) (0.009295965 0.005962168 0.003357757) (0.009110444 0.007001233 0.003510907) (0.008557943 0.007999779 0.003514421) (0.008518198 0.006999923 0.004006876) (-0.00859592 0.009999912 0.002518955) (-0.008556225 0.009001022 0.003023007) (-0.009156924 0.01101925 0.002634162) (-0.008558427 0.01100119 0.003009469) (-0.008560166 0.01199787 0.00251745) (-0.009018132 0.009000478 0.003512198) (-0.008548166 0.01000139 0.00351953) (-0.008730357 0.009040127 0.004198162) (-0.008959043 0.01098469 0.003472055) (-0.008668874 0.01226084 0.003656354) (-0.008626031 0.01098477 0.004114455) (0.00938034 0.009994679 0.002494578) (0.009352863 0.008965468 0.002866568) (0.009171094 0.01102422 0.002622338) (0.00856029 0.01100033 0.003017489) (0.009321607 0.01173023 0.002361871) (0.009043371 0.009004355 0.003525116) (0.008544852 0.01000106 0.003526063) (0.008961924 0.01098496 0.003469891) (0.008687697 0.01227323 0.003659638) (0.008627092 0.01098955 0.00410649) (-0.00853456 0.01399219 0.002504228) (-0.008502513 0.01299824 0.003001789) (-0.008927609 0.01497864 0.00247196) (-0.008634184 0.0150185 0.003112249) (-0.008039017 0.01499897 0.002505531) (-0.008657711 0.01625021 0.002631517) (-0.008845982 0.01298071 0.003379473) (-0.008602898 0.01400278 0.003509424) (-0.008047253 0.01299638 0.00351306) (-0.008507078 0.01300067 0.004001992) (-0.008038648 0.01500024 0.003519522) (-0.008466324 0.01598549 0.003470587) (-0.008379552 0.01500968 0.003889006) (-0.007535339 0.01600329 0.003518757) (-0.007563868 0.01500177 0.004037394) (0.008057159 0.01500252 0.002512734) (0.008074347 0.01300238 0.003529735) (0.007560594 0.01300253 0.004036643) (0.00803448 0.01499885 0.003507984) (0.007542595 0.01600228 0.003512034) (0.007549186 0.01499816 0.004020807) (0.008948881 0.01497951 0.002477311) (0.008632164 0.01502156 0.003116148) (0.0088628 0.01297962 0.003382121) (0.008618925 0.01400219 0.003512354) (0.008471261 0.01598234 0.003479199) (0.008381048 0.01499176 0.003972155) (-0.008532047 0.01801533 0.002503045) (-0.00850086 0.01700152 0.002999433) (-0.008354966 0.01897406 0.002870164) (-0.008012414 0.01899992 0.002503988) (-0.008336873 0.01995606 0.002472361) (-0.008335349 0.01774412 0.003355671) (-0.0081619 0.01725879 0.003640411) (-0.008309719 0.01672679 0.003861798) (-0.008016635 0.01900799 0.003520615) (-0.007063438 0.01900479 0.002517046) (-0.007550437 0.01900069 0.003016633) (-0.007051931 0.0170068 0.00352443) (-0.007538624 0.01800439 0.003513311) (-0.00704849 0.01900365 0.003524264) (-0.007682488 0.02028232 0.003655838) (-0.007640131 0.0192525 0.004123839) (0.007583011 0.01800574 0.00252133) (0.007567449 0.0170048 0.003017956) (0.007092206 0.01900683 0.002525592) (0.007557066 0.01900838 0.003020467) (0.008198481 0.01926423 0.002650998) (0.007557669 0.0200081 0.002509897) (0.007076532 0.01700869 0.003530182) (0.007564534 0.01800541 0.003525656) (0.008158604 0.01725314 0.003627704) (0.00752299 0.0170032 0.004007302) (0.007067666 0.01900935 0.003529768) (0.006584997 0.0190125 0.004045678) (0.00800628 0.01900027 0.003492765) (0.007665776 0.02025969 0.003641132) (0.007637263 0.01902412 0.004121172) (0.008360761 0.01874037 0.002867634) (0.008340521 0.0177404 0.003368209) (-0.007831381 0.02296115 0.002477452) (-0.007846008 0.02097743 0.003365317) (-0.007033904 0.02300243 0.002508803) (-0.007577824 0.02301542 0.003002737) (-0.00655703 0.0230103 0.003027445) (-0.006559742 0.02401171 0.002523328) (-0.007030167 0.02099878 0.003515636) (-0.007564222 0.02198687 0.003491378) (-0.006549542 0.0220052 0.003523623) (-0.006541064 0.02100134 0.004021157) (-0.00716051 0.0232652 0.003638444) (-0.007358059 0.02373753 0.003349411) (-0.007315993 0.02273591 0.003861628) (-0.006532375 0.02400163 0.003514389) (-0.006527122 0.02299989 0.004015368) (0.007686579 0.02226806 0.00263148) (0.007677418 0.02126154 0.003138029) (0.007042424 0.02300534 0.002508858) (0.006558004 0.02300668 0.003019434) (0.00750051 0.02300004 0.002992409) (0.007840613 0.022737 0.002363049) (0.007501094 0.02399923 0.002502163) (0.007047196 0.02100926 0.0035129) (0.006590572 0.0220091 0.003524188) (0.007437702 0.02201464 0.003510496) (0.007833487 0.02073319 0.003370305) (0.007415384 0.02098378 0.003993747) (0.007143862 0.02302379 0.003630276) (0.006527419 0.0240051 0.003514167) (0.006525023 0.02300265 0.004010301) (0.007323744 0.02371873 0.003356693) (-0.006548587 0.0260085 0.002516376) (-0.006549924 0.0250113 0.003019774) (-0.006917345 0.02698057 0.002491752) (-0.00664487 0.02702357 0.003019527) (-0.006085434 0.02701537 0.002536701) (-0.006618175 0.02801997 0.002523313) (-0.006924894 0.02498553 0.003497885) (-0.006646524 0.02602448 0.003531431) (-0.006073827 0.02501264 0.003537318) (-0.006605899 0.02502164 0.004018522) (-0.006188033 0.02727366 0.003674979) (-0.00637488 0.02775244 0.003381152) (-0.006367915 0.02674827 0.003870573) (-0.005578954 0.02701288 0.003045263) (-0.005578709 0.02601291 0.003552134) (-0.005073047 0.02701013 0.003550616) (-0.005543891 0.02800276 0.003521502) (-0.005539043 0.02700465 0.004029553) (0.005559474 0.02701254 0.003027362) (0.006066059 0.02700824 0.002522252) (0.005555705 0.0280082 0.002515565) (0.005563437 0.02601526 0.003536638) (0.006067183 0.02501188 0.003541658) (0.005552284 0.02501107 0.004033034) (0.005058509 0.02701477 0.003535704) (0.006178381 0.02726739 0.003642516) (0.005523992 0.0280028 0.003511937) (0.005522756 0.02700168 0.00401601) (0.007306501 0.02569425 0.002376136) (0.007324455 0.02474776 0.002862766) (0.006925901 0.02696807 0.002496838) (0.006632313 0.02702737 0.003026667) (0.006928009 0.02498296 0.003498759) (0.006625971 0.0260169 0.003522091) (0.00635583 0.02774179 0.003362515) (0.006332276 0.02674368 0.003883034) (-0.006294463 0.02968755 0.002360988) (-0.006350192 0.02873533 0.002860151) (-0.005851867 0.03077724 0.00249479) (-0.005901657 0.028976 0.003488594) (-0.005046344 0.03101073 0.002513883) (-0.00550172 0.03098699 0.002988521) (-0.004555626 0.03101664 0.003024215) (-0.004558057 0.03202156 0.002525943) (-0.005029777 0.02900521 0.003525314) (-0.005516994 0.0299963 0.003502574) (-0.004555133 0.03000992 0.003524455) (-0.004543936 0.02900833 0.004034261) (-0.00512175 0.03101153 0.003552349) (-0.004588089 0.03222294 0.003587972) (-0.004598351 0.03122188 0.004099212) (0.005522964 0.03000754 0.002506703) (0.005522203 0.0290064 0.003008818) (0.005078439 0.0310234 0.002528098) (0.004596535 0.03102945 0.003045382) (0.005506087 0.0309898 0.00299566) (0.005875477 0.03077196 0.002479262) (0.005434005 0.03200156 0.002506072) (0.005049822 0.02901955 0.003523914) (0.004582783 0.03002647 0.0035435) (0.005519645 0.03000434 0.003513938) (0.005884397 0.02897831 0.003488824) (0.005504897 0.02900214 0.0040088) (0.005116714 0.03099468 0.003556265) (0.004611238 0.03223947 0.003514256) (0.004620924 0.03123402 0.004118292) (-0.004532078 0.03400361 0.002515428) (-0.004604369 0.03318596 0.002991441) (-0.004033179 0.03502666 0.002540454) (-0.004750693 0.03266371 0.00329481) (-0.004259065 0.03366831 0.00329438) (-0.004114884 0.03323061 0.003605822) (-0.00380216 0.03464897 0.003279786) (-0.003059461 0.03504656 0.002534879) (-0.003514122 0.03519266 0.003034108) (-0.002560913 0.03504199 0.003052977) (-0.00254164 0.03603451 0.002539045) (-0.003020121 0.03300923 0.003525203) (-0.003616744 0.03420943 0.003609828) (-0.00253647 0.03401344 0.003551801) (-0.002528643 0.0330132 0.004070577) (-0.003020828 0.03518816 0.003517958) (-0.003282408 0.03464109 0.003720373) (-0.00203498 0.03504855 0.003588011) (-0.002489805 0.03597988 0.003502425) (-0.002507812 0.0350084 0.004021098) (-0.001536785 0.03505228 0.003083493) (-0.0005236271 0.03606336 0.00258318) (-0.001524697 0.03404153 0.003590183) (-0.00104093 0.03503869 0.003594562) (-0.001546379 0.03630493 0.003714098) (-0.001657353 0.03530934 0.004247195) (-0.0005304004 0.03602605 0.003582222) (-0.0005045926 0.03503389 0.004066561) (0.00154129 0.03505286 0.003103937) (0.001549468 0.03606859 0.002587063) (0.001538011 0.03404213 0.003605578) (0.001532586 0.03303705 0.00409719) (0.001025951 0.03503628 0.003585488) (0.0005083475 0.03602979 0.003559597) (0.0005139079 0.03503012 0.004066571) (0.002035859 0.03504114 0.003606195) (0.001668439 0.03628443 0.003762099) (0.001688992 0.03530284 0.004295724) (0.003550485 0.03402936 0.002546212) (0.003531797 0.03301564 0.003023409) (0.003071695 0.03504882 0.002596368) (0.002544568 0.03504294 0.003095816) (0.003559314 0.03521196 0.003024854) (0.004009242 0.03500829 0.002509845) (0.003520945 0.03599822 0.002516481) (0.003024105 0.03301804 0.00354457) (0.002545722 0.03405475 0.003599831) (0.003612839 0.0342053 0.003621002) (0.004109877 0.03324583 0.00360354) (0.003617312 0.0332322 0.004124924) (0.003052884 0.03520314 0.003562194) (0.002507692 0.03599731 0.003524552) (0.002552625 0.03502117 0.004064105) (0.003765015 0.03464073 0.0033037) (0.003320631 0.03463382 0.003794033) (0.00424157 0.03365685 0.003357469) (-0.002336765 0.03770223 0.002348156) (-0.002463927 0.03676753 0.002980766) (-0.001971497 0.03675939 0.003365473) (-0.0005121088 0.0383541 0.002704983) (-0.0005202122 0.03704369 0.003055435) (-0.0008497548 0.03863371 0.002292449) (-1.184657e-05 0.03877481 0.002403155) (-0.001002997 0.03700272 0.003525018) (-0.0004507226 0.03766044 0.003318118) (-2.900958e-06 0.03718994 0.003609199) (-0.0004816225 0.03677641 0.003827182) (0.001514588 0.03818008 0.002523304) (0.001597444 0.03732034 0.00318821) (0.000948121 0.03864923 0.002344109) (0.001001282 0.03715309 0.003503669) (0.0004626411 0.03768786 0.003305512) (0.001990266 0.03676836 0.003359485) (0.001378288 0.03662032 0.003745391) (-0.0005003551 -0.0358095 0.004407575) (0.001349629 -0.03568949 0.004290554) (-0.00251852 -0.03401393 0.004548226) (-0.003002546 -0.03318636 0.004611268) (-0.003320913 -0.03265612 0.004771952) (-0.002504922 -0.03299579 0.005003185) (-0.002025103 -0.03301783 0.004577216) (-0.002518686 -0.03201266 0.004554691) (-0.001993906 -0.03276989 0.005376719) (-0.00249861 -0.03199799 0.005420714) (-0.0005017649 -0.0340054 0.0045421) (-0.000496739 -0.03479937 0.004872908) (-0.00100942 -0.03301661 0.004551886) (-0.001652494 -0.03330306 0.005177682) (-0.0005003585 -0.03300237 0.005016669) (-0.001377284 -0.0337068 0.005201212) (-0.0004965219 -0.03374134 0.005338244) (-0.0009985844 -0.03299317 0.005486311) (-0.001490676 -0.0322079 0.005624375) (3.777646e-06 -0.03311945 0.005564172) (-0.0006355083 -0.032311 0.005675558) (-0.0003546905 -0.03268822 0.005760929) (0.001673518 -0.03429553 0.004745595) (0.001364729 -0.03468953 0.004802129) (0.001014453 -0.03301036 0.004559163) (0.0005060667 -0.03300333 0.005029256) (0.00164481 -0.03325936 0.005188955) (0.002020292 -0.03300743 0.004548051) (0.001517231 -0.0320107 0.004568431) (0.0005057035 -0.03375943 0.005338608) (0.001364028 -0.03369064 0.005252393) (0.001004664 -0.03299825 0.00550937) (0.0006756206 -0.03228863 0.005724847) (0.0003549227 -0.03267903 0.005788862) (0.001979016 -0.03278718 0.005333762) (0.001501671 -0.03219547 0.005643043) (0.003278388 -0.03369285 0.004260874) (0.003000974 -0.03318342 0.004624295) (0.002496059 -0.03299068 0.00498577) (0.003324893 -0.03268116 0.004751224) (0.003596458 -0.03221719 0.004584073) (0.002486 -0.03198541 0.005404307) (-0.004597641 -0.03023191 0.004595584) (-0.004304716 -0.03070515 0.004779548) (-0.00512243 -0.02901902 0.004507647) (-0.004520884 -0.02901908 0.005119088) (-0.004029974 -0.0290156 0.004563431) (-0.00456028 -0.02800837 0.004547769) (-0.004032928 -0.02900308 0.005530986) (-0.004504776 -0.02800421 0.005503565) (-0.002534463 -0.03102407 0.005069033) (-0.003522403 -0.02901493 0.005070393) (-0.002533379 -0.02902018 0.005089346) (-0.002997405 -0.03099681 0.005524272) (-0.003516681 -0.03000984 0.005536493) (-0.002511651 -0.03001089 0.005542791) (-0.002144509 -0.03131479 0.005706954) (-0.002498741 -0.03078306 0.005881593) (-0.003022811 -0.02901121 0.005565751) (-0.003527015 -0.02800743 0.00555132) (-0.003505248 -0.02899091 0.00591955) (-0.002015706 -0.02901474 0.005569919) (-0.002530618 -0.02802014 0.005584773) (-0.00263382 -0.02925697 0.006180837) (-0.0005054447 -0.03102593 0.005073029) (-0.001002573 -0.03100762 0.005537347) (-0.001505052 -0.03002087 0.005585835) (-0.000501098 -0.03002241 0.005572602) (6.041438e-06 -0.03102338 0.005562726) (-0.0004981115 -0.03125497 0.006132206) (-0.001501339 -0.02900711 0.006040683) (-0.0005022485 -0.02901953 0.006096819) (0.001512884 -0.03100796 0.005059463) (0.001005524 -0.03100821 0.005548379) (0.0005084896 -0.03002073 0.005580761) (0.001515227 -0.0300116 0.005566546) (0.00213629 -0.03127995 0.005681732) (0.001495794 -0.03098312 0.006091577) (0.0005068955 -0.02901897 0.006114028) (0.00202183 -0.02901107 0.005561877) (0.00151126 -0.02900952 0.006057963) (0.003531413 -0.03000988 0.004570903) (0.003501307 -0.03101423 0.005126619) (0.002533821 -0.02901403 0.005073329) (0.003529479 -0.02900737 0.005057856) (0.004053396 -0.02901685 0.004601011) (0.002991539 -0.03099201 0.005501523) (0.002511609 -0.03000527 0.005525456) (0.00350564 -0.03000315 0.005507205) (0.003020505 -0.02900583 0.00553934) (0.002534087 -0.02801744 0.005575915) (0.002667645 -0.02925601 0.006176743) (0.004006432 -0.02900348 0.005503153) (0.003521068 -0.02800588 0.005533553) (0.003488636 -0.02898607 0.005890633) (0.005052907 -0.0290216 0.004534897) (0.00452591 -0.02903038 0.005046212) (0.005485468 -0.02797793 0.004497205) (0.00450004 -0.02798064 0.005492769) (-0.006325486 -0.02574682 0.004373045) (-0.006310864 -0.02471865 0.004798856) (-0.006124962 -0.02523551 0.004645761) (-0.006575081 -0.02399006 0.004493089) (-0.005861233 -0.02472678 0.005341255) (-0.004522102 -0.02700346 0.005022785) (-0.005062781 -0.02501441 0.004557017) (-0.005662231 -0.02527579 0.005158249) (-0.00454819 -0.02501089 0.005060237) (-0.004971208 -0.02697292 0.005457181) (-0.005377121 -0.02599193 0.005364252) (-0.004509617 -0.02600235 0.005516354) (-0.004021962 -0.02700875 0.005536967) (-0.004466392 -0.02699164 0.005879534) (-0.005145738 -0.02526501 0.005677475) (-0.005609429 -0.02400443 0.005618643) (-0.00534481 -0.02473382 0.005840787) (-0.004038168 -0.02501225 0.0055661) (-0.004530323 -0.02400489 0.00554603) (-0.004630072 -0.02525614 0.006132812) (-0.003040263 -0.02702117 0.005591244) (-0.003541616 -0.02601879 0.005583763) (-0.00252771 -0.02701728 0.006080327) (-0.003551745 -0.0250253 0.006076676) (-0.002533015 -0.02501886 0.006096082) (0.003543976 -0.02701256 0.005074353) (0.003035645 -0.02701745 0.005580911) (0.003540292 -0.02601735 0.005580626) (0.004018726 -0.02700623 0.005520462) (0.0036454 -0.02727125 0.006174741) (0.002530987 -0.02501853 0.006087152) (0.004032763 -0.02501017 0.005558414) (0.00353753 -0.02501738 0.006072384) (0.005695849 -0.02627097 0.004701946) (0.005402792 -0.02698665 0.00498326) (0.005043529 -0.02500499 0.004540683) (0.004536017 -0.02500577 0.005052024) (0.005639217 -0.02526202 0.005141307) (0.006132247 -0.02523772 0.004637143) (0.005538623 -0.02400428 0.00452569) (0.004989845 -0.02698705 0.005406615) (0.004677827 -0.0262739 0.005726007) (0.00535891 -0.02598613 0.005357523) (0.005140265 -0.02524609 0.005639638) (0.004520242 -0.02400349 0.005529807) (0.004628186 -0.02524358 0.006124307) (0.005816572 -0.0247254 0.005330709) (0.005598447 -0.02400448 0.005587951) (0.005319482 -0.02470681 0.005812053) (0.006290659 -0.02471849 0.004839636) (-0.006701342 -0.02227696 0.004663498) (-0.006420473 -0.02301388 0.005007133) (-0.007098371 -0.02100668 0.0046159) (-0.006637166 -0.02125862 0.005126859) (-0.006051322 -0.02100672 0.004530128) (-0.006531506 -0.020005 0.004522412) (-0.006383942 -0.0219978 0.005373156) (-0.005997396 -0.02299938 0.005504013) (-0.006799408 -0.02070418 0.005320498) (-0.00615774 -0.02127268 0.005669286) (-0.006590064 -0.01997087 0.005588752) (-0.005546353 -0.0210055 0.005046962) (-0.005051167 -0.02300533 0.005559279) (-0.00551753 -0.02200125 0.005516361) (-0.004531599 -0.02300447 0.006055924) (-0.005038023 -0.02100344 0.005558909) (-0.005633342 -0.02126499 0.006179264) (-0.004535035 -0.02100207 0.006061722) (0.005548458 -0.02300453 0.005039026) (0.005557137 -0.02101423 0.005049901) (0.006064737 -0.02101162 0.004548493) (0.005028645 -0.02300368 0.005541844) (0.005515113 -0.02200234 0.005515695) (0.0060012 -0.02299917 0.005503656) (0.005497815 -0.02299821 0.005990122) (0.005046514 -0.02101387 0.00554644) (0.004538175 -0.02100959 0.00605038) (0.006148284 -0.02127446 0.005648479) (0.005657143 -0.02127785 0.006146081) (0.007115909 -0.0210181 0.004517704) (0.006648246 -0.02102079 0.005147729) (0.007395972 -0.01998007 0.004484273) (0.006380012 -0.02198479 0.005391326) (0.006598414 -0.01999469 0.005501864) (-0.007889866 -0.01699932 0.004482431) (-0.006531943 -0.01900267 0.005025264) (-0.007031594 -0.01700278 0.004514707) (-0.007556588 -0.01698702 0.004980252) (-0.006534734 -0.01700479 0.00502587) (-0.006914952 -0.01902723 0.005412464) (-0.007309715 -0.01773728 0.005318146) (-0.006696856 -0.01829422 0.005652573) (-0.006415018 -0.01900755 0.005999761) (-0.007084167 -0.01697002 0.005588357) (-0.007390609 -0.01601295 0.005403781) (-0.006538049 -0.01600765 0.005529385) (-0.006602628 -0.01701996 0.006105791) (0.007604619 -0.01798791 0.004614661) (0.007367832 -0.01898008 0.004868288) (0.00705924 -0.01700604 0.00453521) (0.006544869 -0.01700177 0.005033677) (0.007504969 -0.01700048 0.005004824) (0.007881946 -0.01701266 0.004390049) (0.007698803 -0.0162819 0.004659186) (0.006914565 -0.01899637 0.005410968) (0.006700879 -0.01825626 0.005685594) (0.00732498 -0.01772638 0.00533056) (0.007085445 -0.01697511 0.005584847) (0.006551725 -0.01600135 0.005534748) (0.006586398 -0.01697545 0.00609585) (0.007389938 -0.01601412 0.005390114) (-0.008337774 -0.01396635 0.0043638) (-0.008140459 -0.01303562 0.004641744) (-0.008396143 -0.01200112 0.004488946) (-0.007824009 -0.01296016 0.005340874) (-0.006552959 -0.01500647 0.005041746) (-0.007043756 -0.01300489 0.004530601) (-0.007502598 -0.01299911 0.005002422) (-0.007155897 -0.01528352 0.005655573) (-0.007565444 -0.01398656 0.005483105) (-0.006531164 -0.01400362 0.005525175) (-0.006498858 -0.01500044 0.00599943) (-0.007028119 -0.01300184 0.00552266) (-0.007633893 -0.01200018 0.005630151) (-0.00737933 -0.0130002 0.005886138) (-0.006551384 -0.01300279 0.006043554) (0.0075541 -0.01400476 0.004529634) (0.00762751 -0.01502215 0.005125206) (0.007058115 -0.01300429 0.004542303) (0.007513134 -0.01300153 0.005008111) (0.008163351 -0.01302769 0.004632629) (0.007560108 -0.01200655 0.004551823) (0.007158192 -0.01526915 0.005661047) (0.00652843 -0.01400189 0.005524491) (0.007567703 -0.01398764 0.005483669) (0.007307289 -0.0147192 0.00584256) (0.007024382 -0.01300294 0.00552479) (0.006535668 -0.01300486 0.006038479) (0.007858921 -0.01296639 0.005359519) (0.00763338 -0.01199295 0.005642793) (0.007390665 -0.01299807 0.005862402) (-0.008542659 -0.01000085 0.004519777) (-0.008332584 -0.01096431 0.004860165) (-0.008394817 -0.009002009 0.004887512) (-0.008085203 -0.00900231 0.004528359) (-0.008607295 -0.007996536 0.004499127) (-0.007909751 -0.01101737 0.005414938) (-0.008006984 -0.008987154 0.005505396) (-0.007577533 -0.009001774 0.005030796) (-0.007073988 -0.01100352 0.005574912) (-0.007686505 -0.01027365 0.005682766) (-0.006587885 -0.01100458 0.006091985) (-0.007046602 -0.009001041 0.005535363) (-0.007538342 -0.008000615 0.005524195) (-0.007590887 -0.008984879 0.006084468) (-0.006542598 -0.009001849 0.006040349) (0.007551168 -0.01000156 0.004531773) (0.007544615 -0.01100359 0.005030431) (0.007583867 -0.008994938 0.00503112) (0.008048272 -0.009001619 0.004517128) (0.007081135 -0.01100841 0.005570503) (0.007701615 -0.01004131 0.005707576) (0.007909637 -0.01100543 0.005402718) (0.007435623 -0.01100735 0.006032413) (0.00707842 -0.008992827 0.005536106) (0.006533698 -0.009000782 0.006027011) (0.007919987 -0.008999385 0.005510473) (0.007509477 -0.00799907 0.005502545) (0.007583815 -0.009000509 0.005990708) (0.008339935 -0.009001961 0.004851373) (-0.008635981 -0.005998923 0.004621169) (-0.008412638 -0.007001479 0.005003618) (-0.008817982 -0.005001269 0.004344002) (-0.008484273 -0.004998511 0.004985197) (-0.008041262 -0.004999741 0.004526813) (-0.008692522 -0.003998392 0.004676647) (-0.008354182 -0.005960684 0.005352164) (-0.00809034 -0.007002021 0.005495308) (-0.008103306 -0.004999259 0.005596355) (-0.00828095 -0.004001833 0.00538406) (-0.007543678 -0.005000885 0.005029083) (-0.007057015 -0.007001011 0.005542508) (-0.007532867 -0.006000726 0.005523256) (-0.006570413 -0.007001831 0.006062542) (-0.007070181 -0.005002119 0.005560539) (-0.007570328 -0.004002012 0.005550921) (-0.007674875 -0.005001819 0.006169737) (-0.006591644 -0.00500286 0.006088873) (0.007572679 -0.006999721 0.005034651) (0.007534789 -0.005000258 0.005019317) (0.008036875 -0.00500058 0.004518552) (0.007041319 -0.007000409 0.005523275) (0.007522556 -0.006000099 0.005514206) (0.00801538 -0.007014215 0.005501405) (0.007596969 -0.006998956 0.006092553) (0.007055759 -0.005001456 0.005536461) (0.006576614 -0.005002109 0.00606364) (0.008069401 -0.004986543 0.005571291) (0.007544985 -0.004000993 0.005527556) (0.007659938 -0.005003624 0.006127811) (0.008862352 -0.004964183 0.004346174) (0.008464798 -0.004988509 0.00497909) (0.008302068 -0.005725134 0.005337993) (0.008303546 -0.003994656 0.005299809) (-0.008749547 -0.002032809 0.004690533) (-0.008538902 -0.003003104 0.005014538) (-0.008915254 -0.001000689 0.004498113) (-0.008611043 -0.001004009 0.005003724) (-0.008123195 -0.001005438 0.004549045) (-0.008540337 8.780802e-07 0.004518974) (-0.008356671 -0.001998536 0.005379215) (-0.008150117 -0.003000149 0.00563286) (-0.008185742 -0.001000479 0.005663922) (-0.008418751 2.558337e-07 0.005398393) (-0.007587354 -0.001004479 0.005055709) (-0.007092559 -0.003004724 0.005574371) (-0.007599829 -0.002003088 0.005562484) (-0.006593259 -0.003007031 0.006082967) (-0.007085222 -0.001007559 0.005566206) (-0.007580143 -3.459787e-06 0.005552601) (-0.007688163 -0.001272575 0.006164725) (0.007554859 -0.003001854 0.005033243) (0.00757706 -0.001001896 0.005038431) (0.008102181 -0.001005227 0.004550813) (0.007077242 -0.003000098 0.005553234) (0.007584447 -0.002002001 0.005546845) (0.008119436 -0.003002607 0.005608578) (0.007695506 -0.003006106 0.006186952) (0.007081602 -0.001000637 0.005542045) (0.008168691 -0.001002061 0.005650271) (0.007560786 -1.792049e-06 0.005523495) (0.007690853 -0.001260766 0.006153731) (0.008900811 -0.0009991269 0.004492158) (0.008592323 -0.001001741 0.004991219) (0.008342249 -0.001998767 0.005368083) (0.008404603 -4.265266e-06 0.005398499) (-0.008754176 0.002039587 0.004665592) (-0.008613352 0.001004669 0.005008613) (-0.00887866 0.003001556 0.004380178) (-0.008537135 0.003001173 0.005021847) (-0.008084422 0.003001575 0.004538823) (-0.008688997 0.003998931 0.004677617) (-0.008371958 0.001999323 0.005354265) (-0.008163666 0.000999572 0.005674783) (-0.008148201 0.003001002 0.005626921) (-0.008302854 0.003997965 0.005339818) (-0.00757033 0.003000747 0.00504386) (-0.007074168 0.0009996372 0.005561672) (-0.007589932 0.002001732 0.005570447) (-0.0070815 0.003001013 0.005558624) (-0.007559264 0.00400126 0.005553014) (-0.007724413 0.003002725 0.006186011) (-0.006580769 0.00300159 0.006077619) (0.007557928 0.0009986961 0.005030612) (0.007573059 0.003001123 0.005042918) (0.008095179 0.00300004 0.004529344) (0.007047139 0.0009991952 0.005529688) (0.00756572 0.001998513 0.005551335) (0.008174896 0.0009990901 0.00566235) (0.007494188 0.000997564 0.005990158) (0.007079618 0.003001879 0.0055572) (0.008147357 0.002997551 0.005648217) (0.00759093 0.004002788 0.005543381) (0.007714522 0.003043183 0.00619669) (0.008890302 0.003013428 0.004400595) (0.00855381 0.003016564 0.005022845) (0.00837328 0.002000319 0.005379271) (0.00831032 0.004000225 0.005367712) (-0.008627059 0.005999489 0.004635804) (-0.008488265 0.004996625 0.004984838) (-0.008821391 0.006956363 0.004359043) (-0.008411908 0.007000154 0.005001282) (-0.008062939 0.007003275 0.004519953) (-0.008602742 0.007998368 0.004503733) (-0.008311796 0.005966437 0.005330189) (-0.008095054 0.004997473 0.00559487) (-0.00808692 0.007001076 0.005493764) (-0.007595319 0.007003667 0.005036061) (-0.007070461 0.005001756 0.005556999) (-0.007526551 0.006000508 0.005525382) (-0.006594242 0.005002781 0.006083352) (-0.007057099 0.007000711 0.00554377) (-0.00753628 0.007999939 0.005522381) (-0.007631099 0.006998543 0.006139672) (-0.006569438 0.007001233 0.006064282) (0.007557346 0.005000228 0.005034067) (0.007547774 0.006998338 0.005031453) (0.008041762 0.006999196 0.004518244) (0.007089745 0.005001957 0.005561246) (0.007558246 0.006000973 0.005531303) (0.008111392 0.004999604 0.005621535) (0.007719867 0.004995412 0.006163843) (0.007065651 0.007001545 0.00554986) (0.006584176 0.007002739 0.006072967) (0.008084677 0.006986842 0.005577988) (0.007530806 0.008000137 0.00552441) (0.007668304 0.007001886 0.006152643) (0.00880585 0.006995454 0.004354066) (0.00847384 0.006984641 0.004992189) (0.008282581 0.005995235 0.005330247) (0.008306449 0.007722223 0.005345021) (-0.008538555 0.01000092 0.004527616) (-0.008397772 0.009001136 0.004887755) (-0.008336481 0.01096909 0.004848405) (-0.008018115 0.01100019 0.004508332) (-0.008406916 0.01199954 0.004492061) (-0.00800236 0.008986555 0.005503913) (-0.00790619 0.01101595 0.005417219) (-0.007067208 0.01100105 0.004541267) (-0.007549204 0.01099999 0.005035482) (-0.007048903 0.009000205 0.005533625) (-0.007675673 0.0102682 0.0056706) (-0.006543722 0.009001449 0.006038898) (-0.007084805 0.01100264 0.005571896) (-0.007638362 0.01199733 0.005624006) (-0.00742929 0.01101137 0.006019871) (-0.006592722 0.01100838 0.00608215) (0.007569616 0.01000249 0.004544302) (0.007557476 0.009001027 0.005039354) (0.00707354 0.0110043 0.004549659) (0.00756625 0.01100501 0.005040257) (0.008018341 0.01099989 0.004512565) (0.007581468 0.01200138 0.004557659) (0.007045223 0.009002136 0.005534746) (0.007690535 0.0102722 0.005677342) (0.008007565 0.009001017 0.005503759) (0.00759631 0.008984775 0.006085188) (0.007080473 0.0110127 0.00556948) (0.006553528 0.01101069 0.006058454) (0.007921499 0.01101797 0.005420318) (0.007656378 0.01199662 0.0056341) (0.007445248 0.01101804 0.006030459) (0.008363332 0.01096609 0.004858863) (-0.008337064 0.01373015 0.004351981) (-0.008045159 0.01501362 0.004524547) (-0.007840673 0.01296263 0.00535235) (-0.007052056 0.01500177 0.004531597) (-0.007638456 0.01503335 0.00514273) (-0.006550628 0.01500217 0.0050401) (-0.007031477 0.01300085 0.005515427) (-0.007568737 0.01398742 0.005485021) (-0.006531685 0.01400065 0.00552467) (-0.006559868 0.01300333 0.006030938) (-0.007184103 0.01527467 0.005663169) (-0.007394812 0.0160147 0.005403069) (-0.007334454 0.01473448 0.005830039) (-0.006537908 0.01600381 0.005542144) (-0.006500205 0.01499931 0.00599834) (0.007544756 0.01400233 0.004518858) (0.007519415 0.01300094 0.005009663) (0.007053712 0.01500513 0.004531833) (0.00657051 0.01501007 0.005056076) (0.00764084 0.01502747 0.005144277) (0.008077183 0.01499737 0.00449228) (0.007505801 0.01600243 0.004502473) (0.00703784 0.01300282 0.005527315) (0.0065437 0.01400614 0.005540343) (0.007574638 0.0139897 0.005490646) (0.007852409 0.01295957 0.005359348) (0.007385705 0.01299938 0.005893232) (0.007154229 0.0152845 0.005664646) (0.006551145 0.01600755 0.005555562) (0.006670387 0.01527742 0.006190186) (0.007399235 0.01598124 0.005406404) (0.007318444 0.01473189 0.005828065) (-0.007780896 0.01872748 0.004345342) (-0.006535146 0.01700476 0.005025655) (-0.007008829 0.01900083 0.004503182) (-0.007363501 0.01897962 0.004876266) (-0.006535316 0.019002 0.005018458) (-0.006531866 0.02000057 0.004515892) (-0.007086334 0.01697171 0.005585393) (-0.007309371 0.01772443 0.005337235) (-0.006689445 0.01827806 0.00566509) (-0.006610623 0.01702127 0.006110702) (-0.006914573 0.01902802 0.005411911) (-0.006582681 0.01997013 0.005587116) (-0.006418593 0.01900841 0.006002197) (0.007596984 0.01801686 0.004513424) (0.007502774 0.01700034 0.004996986) (0.007204322 0.01928479 0.004661982) (0.006530134 0.01900032 0.00501671) (0.007354582 0.01873294 0.004862347) (0.00738673 0.01998152 0.004393344) (0.007105503 0.01699658 0.005506133) (0.006669169 0.01827106 0.00564742) (0.006893953 0.01898181 0.005395997) (0.006581118 0.01999276 0.00549511) (0.006419073 0.01902806 0.005909329) (-0.006717258 0.0222868 0.004664825) (-0.006628839 0.02125118 0.005137028) (-0.006882338 0.0229916 0.004380699) (-0.006421264 0.02301348 0.005005181) (-0.006039111 0.02300542 0.004528373) (-0.006575501 0.02398909 0.004489282) (-0.006803367 0.02072061 0.005309949) (-0.006380839 0.02199101 0.005367848) (-0.006177294 0.02126878 0.005656736) (-0.005998133 0.02299931 0.00550268) (-0.005548903 0.02300966 0.005036277) (-0.005053958 0.02100682 0.005551829) (-0.005517206 0.02200244 0.005511532) (-0.00453957 0.02100773 0.006064689) (-0.005051307 0.02301314 0.0055492) (-0.005610854 0.02400461 0.005607635) (-0.005507429 0.02300009 0.006002776) (-0.004527688 0.02400749 0.005541608) (-0.004535278 0.02301028 0.006057586) (0.005553657 0.02100629 0.005045776) (0.005548469 0.02300247 0.00503385) (0.00604495 0.02300076 0.004526673) (0.005536431 0.02400625 0.00452728) (0.005049212 0.02100556 0.005548262) (0.005520677 0.02200342 0.005513896) (0.006145464 0.02127715 0.005661242) (0.00566672 0.02126256 0.006159635) (0.005036012 0.02301045 0.005536791) (0.004525279 0.02400914 0.005538097) (0.004525959 0.02300704 0.006036221) (0.006002441 0.02299896 0.005506649) (0.005606373 0.02401119 0.005614581) (0.005507526 0.02300066 0.005998843) (0.00687809 0.02298208 0.004384441) (0.0064201 0.02301247 0.005007313) (0.00638106 0.02198314 0.005378203) (-0.006332412 0.02572899 0.00437665) (-0.006294757 0.0246951 0.004837219) (-0.005905527 0.02700019 0.004392724) (-0.005828041 0.0247446 0.005353465) (-0.004538979 0.02501174 0.005063806) (-0.005032567 0.02700477 0.004528934) (-0.005412514 0.02698341 0.004983155) (-0.004531786 0.02700482 0.005033115) (-0.004551462 0.02800812 0.004553723) (-0.005137654 0.0252601 0.005662134) (-0.00536161 0.02599528 0.005354857) (-0.004646696 0.02628655 0.005738611) (-0.004031994 0.02501198 0.00556977) (-0.004634967 0.02523836 0.006136418) (-0.004994346 0.02698614 0.00540406) (-0.004025756 0.02700609 0.005537652) (-0.004508433 0.02797881 0.005503584) (-0.004405973 0.02699978 0.005905501) (-0.003548693 0.02701424 0.005081472) (-0.003540822 0.02601693 0.005585301) (-0.002530449 0.02501878 0.006105147) (-0.00304358 0.02701719 0.005591504) (-0.00352702 0.02800602 0.005544967) (-0.003654385 0.02728903 0.006190017) (-0.002538845 0.02801367 0.005584205) (-0.002526079 0.02702795 0.00609352) (0.003547253 0.02701522 0.00508169) (0.003540062 0.02601207 0.005578581) (0.004033728 0.02501079 0.005559117) (0.003529118 0.02501252 0.006079715) (0.0030395 0.02701649 0.005589337) (0.002532354 0.0280189 0.005589131) (0.002533596 0.02702194 0.006073991) (0.004020432 0.02700629 0.005531332) (0.003527602 0.02801302 0.005556585) (0.00366675 0.02726181 0.00618618) (0.005706594 0.02628247 0.004659389) (0.005658158 0.02526237 0.005135808) (0.005034363 0.02700117 0.004523971) (0.004521652 0.02700487 0.005031067) (0.005382487 0.0269865 0.004981772) (0.005871351 0.02699642 0.004387164) (0.005486826 0.02797739 0.004497808) (0.005136072 0.02528214 0.005659436) (0.004506552 0.02600288 0.005513146) (0.005369079 0.02599563 0.005359792) (0.005825774 0.02473406 0.005327593) (0.005335406 0.02472151 0.00583152) (0.00496737 0.02697294 0.0054591) (0.004509909 0.02800693 0.005504211) (0.004480616 0.02698269 0.005887616) (-0.004594618 0.03022998 0.004594739) (-0.004518125 0.02903427 0.005119654) (-0.004763313 0.03073002 0.004327312) (-0.004357215 0.0307168 0.004778319) (-0.004108314 0.03122541 0.00459769) (-0.004012477 0.02900494 0.005515389) (-0.00253886 0.02901512 0.005074523) (-0.003026984 0.03101368 0.004570524) (-0.003518339 0.03102648 0.005129785) (-0.002515525 0.03101466 0.005055965) (-0.002512972 0.03201118 0.004547861) (-0.003021572 0.02900861 0.005543262) (-0.003507449 0.03000309 0.005521135) (-0.002514962 0.03000689 0.005528745) (-0.002021778 0.02901062 0.005557989) (-0.00265032 0.02925434 0.006172157) (-0.002991432 0.03098734 0.005499587) (-0.002164217 0.0313101 0.005704891) (-0.002495974 0.03199231 0.005405064) (-0.002482197 0.0307685 0.005870146) (-0.001515415 0.03101528 0.005060453) (-0.0005080509 0.03101859 0.005072395) (-0.001514658 0.03000265 0.005571646) (-0.0005041871 0.03001712 0.005572482) (-0.0005063286 0.02902146 0.006099284) (-0.001003842 0.03100585 0.005537426) (-0.00150417 0.03220621 0.005626315) (-0.001495354 0.03098004 0.006081072) (1.982729e-06 0.03102186 0.005567179) (-0.0006799819 0.03232076 0.005702828) (-0.0004936324 0.03123245 0.006149755) (0.0005092618 0.03101848 0.005088543) (0.001522818 0.03102393 0.005077956) (0.00152447 0.03202839 0.004582307) (0.0005061506 0.03001994 0.005585487) (0.001519405 0.03001835 0.005583819) (0.002024205 0.02901537 0.005573202) (0.001509162 0.02900763 0.006052312) (0.001006649 0.03101221 0.005556232) (0.0006592916 0.03228294 0.005699284) (0.0004980469 0.03124986 0.006177198) (0.002165517 0.03131483 0.005694477) (0.001511688 0.03221304 0.005641358) (0.001495083 0.03098231 0.006109344) (0.003533992 0.03001602 0.004560121) (0.003545032 0.02901738 0.005072159) (0.003028669 0.03100343 0.004574782) (0.002523216 0.03101023 0.005065611) (0.003526687 0.03102275 0.005130635) (0.004109986 0.03123245 0.004595896) (0.003610516 0.03223331 0.004597322) (0.003028195 0.02901507 0.005554847) (0.002515502 0.03001109 0.00554279) (0.003519658 0.03000792 0.005546447) (0.004023289 0.02901052 0.00553532) (0.003505882 0.02899017 0.005922238) (0.003002011 0.03099391 0.005527369) (0.002500808 0.03200432 0.005431023) (0.002488928 0.03078056 0.005884065) (0.00479052 0.03072049 0.00433757) (0.004351035 0.03071995 0.004785851) (-0.002519377 0.03402376 0.004538172) (-0.002504618 0.03299181 0.005002204) (-0.002009349 0.03483509 0.004460136) (-0.001992153 0.03277309 0.005367645) (-0.0004994703 0.03401709 0.004539709) (-0.0005028217 0.03300677 0.005013256) (-0.0009901643 0.03515665 0.004586724) (-0.00136046 0.03474314 0.004739684) (-0.0004943199 0.03478469 0.00488146) (3.694987e-06 0.03518901 0.00469866) (-0.0004976384 0.03579819 0.004389332) (-0.001002567 0.03299424 0.005479561) (-0.001301501 0.0336452 0.005245053) (-0.0005006812 0.03375966 0.005323516) (1.259323e-06 0.03312706 0.005561197) (-0.0003353506 0.03268247 0.005775803) (0.00166523 0.03431723 0.004715568) (0.001641979 0.03331034 0.005198124) (0.0009982258 0.03517883 0.004617728) (0.0005035858 0.03480846 0.004889287) (0.001355022 0.03470085 0.004807893) (0.002018608 0.03483532 0.004445877) (0.001329612 0.0356765 0.004303024) (0.001009014 0.03300688 0.005510206) (0.0004935786 0.0337478 0.005358873) (0.001332041 0.0336861 0.005264515) (0.002005902 0.03276828 0.005373045) (0.003318181 0.0337027 0.004260569) (0.003344015 0.03269408 0.004767662) (-0.002341693 -0.02971024 0.006306853) (-0.002890565 -0.02874545 0.006358221) (-0.001994479 -0.02897788 0.006575282) (-0.002519234 -0.02802773 0.006616416) (-0.0004988263 -0.03000973 0.006542068) (-0.001000819 -0.02924258 0.006662152) (-0.001483588 -0.02873064 0.006841288) (-0.0004983968 -0.02877421 0.006917562) (3.296671e-06 -0.02926936 0.006705755) (-0.0005004899 -0.02801157 0.006564228) (0.001502824 -0.0299835 0.006424167) (0.0009934526 -0.02921825 0.006680961) (0.0005026316 -0.02877775 0.006931561) (0.001360526 -0.02871336 0.006874266) (0.002005408 -0.0290072 0.006528494) (0.001651106 -0.02830889 0.006711949) (0.002877656 -0.02874297 0.006366199) (0.003363978 -0.02774389 0.006368222) (-0.004370967 -0.02574382 0.006353613) (-0.004808196 -0.02472921 0.006311206) (-0.004013995 -0.0250222 0.006628259) (-0.004492561 -0.02399012 0.006580762) (-0.002522693 -0.02600914 0.006571281) (-0.002494231 -0.02698211 0.006924339) (-0.003024293 -0.02501147 0.006547007) (-0.003501472 -0.02498717 0.006944028) (-0.002632403 -0.02526305 0.007188639) (-0.002016166 -0.02501318 0.006574873) (-0.002521614 -0.02401487 0.006575957) (-0.002357988 -0.0257117 0.007327249) (-0.002876553 -0.02474888 0.007339416) (-0.003355304 -0.02373955 0.0073381) (-0.002002543 -0.02497622 0.007503879) (-0.002505399 -0.02402804 0.007531409) (-0.0005040334 -0.02601564 0.00657996) (-0.000496709 -0.02724929 0.007192568) (-0.001513916 -0.02500586 0.007038628) (-0.0005047458 -0.02500866 0.007068227) (-0.0009770226 -0.02674927 0.0073666) (-0.001502617 -0.02598295 0.00742406) (-0.0004999938 -0.02600105 0.007526187) (6.646191e-07 -0.02677073 0.007408019) (-0.0009992728 -0.02521538 0.007633041) (-0.001620693 -0.0242595 0.007681555) (-0.00136449 -0.0247 0.007803909) (-9.24358e-08 -0.02524486 0.007663593) (-0.0005014337 -0.02400084 0.007512237) (-0.0004966907 -0.02476123 0.00786166) (0.001516755 -0.02602206 0.006584773) (0.001499903 -0.02702029 0.007140987) (0.0005016939 -0.02500128 0.007068974) (0.001506785 -0.02500472 0.007024634) (0.00201538 -0.02501157 0.006562823) (0.0009825338 -0.02675272 0.007390788) (0.0005029432 -0.0260028 0.007533354) (0.001496229 -0.02598142 0.007419445) (0.0009978093 -0.02520852 0.007641879) (0.0004997856 -0.02400002 0.00751326) (0.0005000206 -0.02475856 0.007864945) (0.001997082 -0.02499891 0.007495072) (0.001628737 -0.02428351 0.007653359) (0.001360962 -0.0246979 0.007819495) (0.00352958 -0.02602671 0.006629381) (0.003022766 -0.02501115 0.006554743) (0.002643846 -0.02525467 0.007177133) (0.003500762 -0.02498726 0.006927724) (0.004022001 -0.02502044 0.006622598) (0.0035166 -0.0240054 0.006534511) (0.002371565 -0.02571157 0.007332354) (0.002868581 -0.02474424 0.007330949) (0.002490665 -0.02399705 0.007568997) (0.003370324 -0.02372355 0.007331396) (0.004789459 -0.02470339 0.006315697) (-0.004683892 -0.02226428 0.006699912) (-0.004390715 -0.02299626 0.006902447) (-0.005134609 -0.02125875 0.006623864) (-0.005331955 -0.02072789 0.006768469) (-0.00460383 -0.02100632 0.007109166) (-0.004019768 -0.02100211 0.006548226) (-0.00451864 -0.02000129 0.006539089) (-0.00434448 -0.02171638 0.007290936) (-0.003840851 -0.02273846 0.007324468) (-0.003994655 -0.02099883 0.007496094) (-0.004486543 -0.02000921 0.007406274) (-0.002507872 -0.02300506 0.00706124) (-0.003502622 -0.02100231 0.007038611) (-0.002507686 -0.02100446 0.007052822) (-0.002993124 -0.02300028 0.007575628) (-0.003493537 -0.02198682 0.007565756) (-0.002501517 -0.02200027 0.007512306) (-0.002140351 -0.02328951 0.007723072) (-0.002485056 -0.02276259 0.007867684) (-0.002995121 -0.02099756 0.007499356) (-0.003646485 -0.02027611 0.007661077) (-0.003379988 -0.02097174 0.007862942) (-0.002000926 -0.0210003 0.00755608) (-0.002510639 -0.02000304 0.007540212) (-0.002497825 -0.02101306 0.008100263) (-0.0005037888 -0.02300743 0.007063858) (-0.001504665 -0.02100778 0.007089784) (-0.000504242 -0.02100667 0.007074554) (-0.001003822 -0.02300539 0.007545839) (-0.001507067 -0.02200673 0.007560667) (-0.0005067024 -0.02200242 0.007569851) (-1.287945e-07 -0.02300383 0.00753402) (-0.0005022512 -0.0230256 0.008115873) (-0.00100059 -0.02100483 0.007568734) (-0.001501936 -0.02000515 0.007566443) (-0.001619528 -0.02129562 0.008194255) (-3.746272e-06 -0.02100496 0.00755289) (-0.0005032556 -0.02000803 0.007577339) (-0.0005007697 -0.02100055 0.008016471) (0.00150401 -0.02300172 0.007042443) (0.000497994 -0.02100742 0.007072251) (0.00150915 -0.02100733 0.007076651) (0.0009990127 -0.02299913 0.007537491) (0.0004856098 -0.02201111 0.007571519) (0.00150858 -0.02200323 0.007548393) (0.001998753 -0.02299893 0.007498789) (0.001499828 -0.02299814 0.007998949) (0.001001087 -0.02100372 0.007562887) (0.0005000745 -0.0200077 0.007575581) (0.0004986767 -0.02100145 0.008019792) (0.002008603 -0.02100797 0.007558304) (0.001504998 -0.02000525 0.00755726) (0.001630772 -0.02129372 0.008196448) (0.003530489 -0.02200585 0.006565827) (0.003640144 -0.02325445 0.007158887) (0.002522239 -0.02100855 0.007061741) (0.003534497 -0.02100739 0.007066502) (0.004036625 -0.02100722 0.006562305) (0.002998137 -0.02299009 0.007574248) (0.002504821 -0.02199929 0.007506207) (0.003509624 -0.02200136 0.007515238) (0.003859452 -0.02272986 0.00732746) (0.003152988 -0.02127957 0.007703556) (0.002508551 -0.02000651 0.007540076) (0.002496914 -0.02101083 0.008091829) (0.004012869 -0.02101182 0.007442712) (0.003644595 -0.02026048 0.007696716) (0.003373233 -0.02074874 0.007865672) (0.005387794 -0.02199469 0.006385681) (0.005141597 -0.02125863 0.006629042) (0.004525027 -0.02102278 0.007114956) (0.005313016 -0.02071578 0.006800941) (0.005579377 -0.01997461 0.006578864) (0.004483108 -0.01997369 0.00740186) (-0.006341183 -0.01797394 0.006341226) (-0.006094842 -0.01702001 0.006614361) (-0.006483103 -0.01599789 0.006486355) (-0.004503036 -0.01899928 0.007011022) (-0.005042029 -0.01700338 0.006565399) (-0.005511168 -0.01698793 0.007088096) (-0.004541682 -0.01700227 0.00707656) (-0.004857616 -0.01896878 0.007358548) (-0.004593337 -0.01798575 0.007605802) (-0.004127781 -0.01924184 0.007637305) (-0.004306357 -0.01872822 0.007798889) (-0.005022209 -0.01701445 0.007442787) (-0.005381497 -0.01598061 0.007391386) (-0.004020879 -0.01700127 0.007544136) (-0.004679696 -0.01625359 0.007698586) (-0.004396172 -0.01701472 0.007896322) (-0.00251946 -0.0190067 0.007074506) (-0.003531764 -0.01700429 0.007073129) (-0.003017546 -0.01900354 0.007560903) (-0.003517306 -0.0180039 0.00754131) (-0.002525356 -0.01800947 0.007566539) (-0.002010057 -0.01900431 0.007559582) (-0.00250127 -0.01900026 0.008001451) (-0.003025641 -0.01700679 0.007561001) (-0.003522808 -0.01600038 0.007550615) (-0.003640977 -0.01725854 0.008165898) (-0.00250859 -0.01700258 0.008044953) (-0.0005052371 -0.01901952 0.008094605) (-0.001507745 -0.01700406 0.008059343) (-0.0005034403 -0.01700841 0.008068209) (0.002007745 -0.01900511 0.007552479) (0.001504182 -0.01900188 0.008059603) (0.0005012023 -0.01700638 0.008063796) (0.001504764 -0.01700168 0.008052597) (0.003531203 -0.01901022 0.007072193) (0.003539209 -0.01700772 0.007076213) (0.003015508 -0.01900486 0.007558516) (0.002518418 -0.01800588 0.007562011) (0.00353199 -0.01800713 0.00756749) (0.004133852 -0.01902649 0.007666805) (0.003508116 -0.01900542 0.008021103) (0.00302564 -0.01700555 0.007558719) (0.002507886 -0.01700242 0.008040115) (0.004019456 -0.01700142 0.007536639) (0.003523768 -0.01600234 0.007547944) (0.00363821 -0.01725454 0.008153488) (0.005669177 -0.01827497 0.006659314) (0.00540464 -0.01901569 0.006901213) (0.005026596 -0.01700621 0.00655755) (0.004534088 -0.01700659 0.007072453) (0.005492417 -0.01698894 0.007076507) (0.006077961 -0.01697534 0.006578188) (0.00552045 -0.01599988 0.006526189) (0.004870804 -0.018965 0.007367982) (0.004519441 -0.01800137 0.0076282) (0.005015898 -0.01701565 0.00743953) (0.004665695 -0.01628225 0.007678924) (0.004400318 -0.01698334 0.007903295) (0.005350332 -0.01596618 0.00737432) (-0.006593731 -0.0139968 0.006592753) (-0.006361941 -0.01495915 0.006855055) (-0.006908873 -0.01300366 0.006405532) (-0.006401277 -0.01300264 0.006895303) (-0.006043381 -0.01300305 0.006545568) (-0.006669017 -0.0120284 0.006704701) (-0.005848246 -0.0147286 0.007308178) (-0.005870962 -0.01299955 0.007387718) (-0.004531493 -0.01500204 0.00705765) (-0.005524272 -0.01300262 0.007030094) (-0.004529582 -0.01300672 0.007062231) (-0.005122047 -0.01501944 0.007629905) (-0.00549001 -0.01398821 0.007577984) (-0.004518158 -0.0140092 0.007534589) (-0.004022268 -0.01499737 0.007549489) (-0.004493548 -0.01498546 0.008072258) (-0.005007841 -0.01300396 0.007516838) (-0.00563813 -0.01199689 0.007635938) (-0.005347615 -0.01296537 0.007834173) (-0.004019395 -0.01300365 0.007560669) (-0.004525358 -0.0120061 0.007573137) (-0.004630988 -0.01303607 0.008183913) (-0.00251008 -0.01500291 0.008050491) (-0.003517 -0.01300142 0.008058387) (-0.002516043 -0.01300261 0.008077438) (0.004024831 -0.01500138 0.007544325) (0.003512531 -0.01500129 0.008027412) (0.002518408 -0.01300363 0.008075118) (0.004023765 -0.01300181 0.007551562) (0.003515927 -0.0130002 0.008055898) (0.005543415 -0.01400196 0.006530193) (0.005651788 -0.01503127 0.007139558) (0.004539598 -0.01300207 0.007060422) (0.005511434 -0.01299968 0.007008492) (0.006020726 -0.01300166 0.006521848) (0.005098714 -0.0149872 0.007602262) (0.004518503 -0.01400375 0.007526274) (0.005508627 -0.01401201 0.007423232) (0.005173686 -0.01327217 0.007673016) (0.004531842 -0.01200207 0.00756014) (0.004623611 -0.01300458 0.008138501) (0.005838702 -0.01296876 0.007333575) (0.005589182 -0.01198373 0.007593734) (0.005358593 -0.01273397 0.00781396) (0.006896289 -0.01300157 0.006395717) (0.006378953 -0.01300071 0.006874019) (-0.006509354 -0.0100001 0.006510753) (-0.006504627 -0.0110006 0.00700117) (-0.007118212 -0.008998909 0.006622245) (-0.00660473 -0.008997593 0.007116116) (-0.006036854 -0.009001921 0.006537983) (-0.006575366 -0.008000703 0.006550046) (-0.006355581 -0.009963131 0.007330187) (-0.006013977 -0.01101197 0.007427197) (-0.006076217 -0.008983987 0.007579055) (-0.006402917 -0.007997014 0.007392029) (-0.00453504 -0.01100435 0.007068126) (-0.005529167 -0.009001899 0.00703696) (-0.005022977 -0.0110024 0.007548108) (-0.0056641 -0.01027605 0.007661783) (-0.004530406 -0.01000355 0.007564389) (-0.004503785 -0.01100018 0.008014588) (-0.005026358 -0.009000825 0.007557112) (-0.005513044 -0.00800006 0.007523884) (-0.005497126 -0.008999501 0.007997563) (-0.004518391 -0.009000155 0.008047205) (0.00554429 -0.01100349 0.007054392) (0.005522474 -0.009003134 0.007032792) (0.006026763 -0.009001781 0.006529775) (0.00502324 -0.01100041 0.007536934) (0.004529183 -0.01000211 0.007555202) (0.00564347 -0.01027713 0.007672038) (0.006006012 -0.01101135 0.007410342) (0.00538622 -0.01101115 0.007889502) (0.005031432 -0.009003824 0.007545721) (0.004516306 -0.009001572 0.008031596) (0.006074433 -0.008983948 0.007580842) (0.005511178 -0.008001639 0.007518434) (0.005493808 -0.009000112 0.00799611) (0.007352155 -0.009967097 0.006349335) (0.007102038 -0.008997604 0.006593445) (0.006600344 -0.008997402 0.007105161) (0.007364867 -0.008003776 0.006362819) (0.006348515 -0.009967016 0.007366649) (0.006367469 -0.007996663 0.007378402) (-0.006595629 -0.006003683 0.006604908) (-0.006701439 -0.007002587 0.007181202) (-0.007224296 -0.005002361 0.006709428) (-0.006722232 -0.005036869 0.007228218) (-0.006089729 -0.005002299 0.006594658) (-0.006594813 -0.004004318 0.006609042) (-0.006446922 -0.006002939 0.007443125) (-0.006145673 -0.006999616 0.007660657) (-0.006183854 -0.004997195 0.007695861) (-0.006527913 -0.00400062 0.007436391) (-0.005568496 -0.005001529 0.007082455) (-0.005025839 -0.006999496 0.007546479) (-0.00554464 -0.00600123 0.007556623) (-0.004517734 -0.006999761 0.008045284) (-0.005043181 -0.00500111 0.007566264) (-0.005560721 -0.004002246 0.007582515) (-0.005618081 -0.005001459 0.008139626) (-0.004537339 -0.005000947 0.008085993) (0.005530671 -0.007001769 0.007034724) (0.005554761 -0.00500213 0.007061554) (0.00607371 -0.005002441 0.006576777) (0.005021317 -0.007002935 0.007524243) (0.005527771 -0.00600173 0.007520811) (0.006108402 -0.006999261 0.00764042) (0.005566911 -0.006986207 0.008071935) (0.005032111 -0.005001632 0.007540672) (0.004542824 -0.005002088 0.00806543) (0.006174036 -0.00500149 0.007666656) (0.005551883 -0.004002446 0.007564684) (0.005598235 -0.005000433 0.008097898) (0.00740869 -0.006001143 0.00640346) (0.00720759 -0.005005985 0.006677105) (0.006663956 -0.005003273 0.007220821) (0.007450237 -0.004017444 0.006455783) (0.00641539 -0.006001535 0.007407621) (0.006451539 -0.004004816 0.007456395) (-0.007816114 -0.0007284168 0.006336739) (-0.00653002 -0.002003547 0.006522437) (-0.006515165 -0.003000293 0.00701461) (-0.006995862 -0.001001476 0.006487738) (-0.007302335 -0.0009968606 0.006822075) (-0.006470271 -0.001000409 0.006967925) (-0.006804946 -0.002964052 0.007332896) (-0.006473404 -0.002000127 0.007565318) (-0.006222281 -0.003042951 0.007703576) (-0.006819621 -0.0009996224 0.007299114) (-0.00598977 -0.001001129 0.007491834) (-0.00655133 -5.585074e-07 0.007544457) (-0.006304906 -0.0009576585 0.00781603) (-0.005536441 -0.001000096 0.007052847) (-0.005050087 -0.00300078 0.007584282) (-0.005558852 -0.001999773 0.007591339) (-0.00455527 -0.003000414 0.008104772) (-0.005041666 -0.001000399 0.007560213) (-0.005539859 8.562721e-07 0.007561809) (-0.005683166 -0.001002466 0.008182089) (-0.004524301 -0.001001702 0.008045488) (0.005580086 -0.003003857 0.007087895) (0.005567597 -0.001001328 0.007085733) (0.00504932 -0.003002273 0.007568739) (0.005581212 -0.002003285 0.007582776) (0.006218381 -0.003003621 0.007704312) (0.005623575 -0.003001972 0.008140255) (0.005047636 -0.001001388 0.007571938) (0.004519445 -0.001001739 0.008046569) (0.006185193 -0.001261611 0.007675854) (0.005534726 -1.830813e-06 0.007565163) (0.005657646 -0.001001811 0.00816771) (0.007500341 -0.002002244 0.006501603) (0.007294411 -0.002705564 0.006842333) (0.006996438 -0.001000837 0.006487248) (0.006497658 -0.001001103 0.006995013) (0.007324856 -0.001000318 0.00679229) (0.007812674 -0.0007176483 0.006327284) (0.007556034 1.108009e-05 0.006548283) (0.006523402 -0.002015037 0.007441477) (0.006842564 -0.0009637214 0.007353423) (0.00654733 1.211056e-05 0.007563136) (0.006316241 -0.000722414 0.007837635) (-0.006523091 0.002001062 0.00653521) (-0.006467851 0.001000069 0.006967177) (-0.007018669 0.00300067 0.0065125) (-0.007339421 0.00296444 0.006818533) (-0.006677193 0.003273652 0.007185327) (-0.00608013 0.003002638 0.006607994) (-0.006610246 0.004004011 0.006598346) (-0.006793201 0.001001168 0.007318765) (-0.006478379 0.001988235 0.007563726) (-0.005992777 0.001000568 0.007496108) (-0.006331165 0.0009624914 0.007825732) (-0.006820626 0.002721743 0.007325986) (-0.006171177 0.003037352 0.007746235) (-0.006477558 0.004016523 0.007483917) (-0.005569936 0.003003533 0.007113053) (-0.005039006 0.001002465 0.007565166) (-0.005555329 0.002007459 0.007605165) (-0.004526268 0.001001127 0.00804823) (-0.005053692 0.003002867 0.007590877) (-0.005582898 0.004002702 0.007582816) (-0.0056512 0.003000431 0.008167175) (-0.004557393 0.003000539 0.008111323) (0.005546354 0.001004181 0.00705779) (0.005570191 0.003005418 0.007098981) (0.005051794 0.001002309 0.007569127) (0.005576975 0.002012806 0.00759647) (0.005996863 0.001000383 0.007500882) (0.005690794 0.001000761 0.008167292) (0.005058452 0.003003989 0.007593231) (0.004558491 0.003001667 0.008099935) (0.006195469 0.003039762 0.007737925) (0.00556987 0.004000638 0.00760807) (0.005651456 0.00300365 0.008184586) (0.007567656 0.001999784 0.006474125) (0.007298227 0.001001417 0.006813713) (0.007002771 0.002999497 0.006501459) (0.006500561 0.003000964 0.007009329) (0.007318386 0.002965949 0.006826888) (0.007443021 0.004001114 0.006536376) (0.006802071 0.00100459 0.007297098) (0.006481419 0.00199879 0.007568767) (0.006829619 0.002965666 0.007356297) (0.00653797 0.004002639 0.007436961) (-0.006602415 0.006003832 0.006594706) (-0.006720517 0.005003176 0.007214461) (-0.007204883 0.007001086 0.006657264) (-0.006662471 0.006998707 0.007201386) (-0.00606785 0.007001424 0.006572381) (-0.006551412 0.008000926 0.006568573) (-0.006449472 0.006001136 0.007446635) (-0.006175457 0.005000099 0.007712871) (-0.006167588 0.007002559 0.007654309) (-0.00639829 0.007998162 0.007395665) (-0.005549419 0.007001492 0.007057114) (-0.005049033 0.005001164 0.007566153) (-0.00554858 0.00600077 0.007557784) (-0.004545972 0.005001208 0.008086074) (-0.005028578 0.007002444 0.007541692) (-0.005519345 0.008000523 0.007522981) (-0.005583984 0.006984928 0.008090496) (-0.004514288 0.007001563 0.008041365) (0.00557795 0.005000255 0.00710114) (0.005556379 0.00700138 0.007071007) (0.006077987 0.007001948 0.006580612) (0.005047442 0.005000625 0.007575924) (0.005550307 0.006001879 0.007574396) (0.006198396 0.004995812 0.00771896) (0.005628488 0.004999551 0.008164317) (0.005041018 0.007000787 0.007556777) (0.004529338 0.007001105 0.008056912) (0.006143617 0.007000431 0.007678011) (0.005531865 0.008001344 0.007540887) (0.005588603 0.006987214 0.008099931) (0.007457871 0.006001655 0.006447848) (0.007214345 0.007006598 0.006692073) (0.006699651 0.006999422 0.007185778) (0.007404115 0.008000527 0.006391488) (0.006458915 0.006003665 0.00747611) (0.006398117 0.008001204 0.007406295) (-0.006512234 0.01000062 0.006509666) (-0.006605459 0.008996178 0.007105378) (-0.007006356 0.01100198 0.006506928) (-0.006505795 0.01099907 0.006999797) (-0.006070012 0.01101178 0.006583994) (-0.00667329 0.01203126 0.006703844) (-0.006339421 0.009968718 0.007329687) (-0.006078392 0.008983279 0.007585797) (-0.006015291 0.01101033 0.00742819) (-0.005548406 0.01100793 0.007076001) (-0.004534666 0.01100433 0.007063573) (-0.005034012 0.009004079 0.007548448) (-0.00566093 0.01028316 0.007656866) (-0.004534574 0.0100039 0.007553487) (-0.00452215 0.00900138 0.008038965) (-0.005029432 0.01100331 0.007545497) (-0.005620166 0.01200261 0.00765047) (-0.005410456 0.01101627 0.007903561) (-0.004513688 0.0120013 0.007577531) (-0.004501431 0.0110002 0.008014791) (0.005540481 0.009004776 0.007059008) (0.004539879 0.01100342 0.007075054) (0.005548041 0.01100581 0.007094696) (0.006049657 0.01100296 0.00656311) (0.005049066 0.009003625 0.007576888) (0.004541485 0.01000426 0.007579184) (0.00567266 0.01027312 0.007682142) (0.00608829 0.008984513 0.00760011) (0.00550803 0.008999557 0.008014065) (0.005029591 0.01100244 0.007569148) (0.004528621 0.01199737 0.00755517) (0.004510979 0.01099847 0.008018474) (0.006028961 0.01101275 0.007444443) (0.005624364 0.01199998 0.00762847) (0.005423047 0.01101822 0.007920899) (0.007350711 0.0099714 0.006374876) (0.007081908 0.01098892 0.006494026) (0.006494707 0.01098871 0.007078184) (0.00634401 0.009966977 0.007360409) (-0.006600806 0.01399596 0.006604762) (-0.006395003 0.01300353 0.006900005) (-0.006834059 0.01496404 0.006347377) (-0.00634133 0.01496318 0.006841047) (-0.006004264 0.01500128 0.006500604) (-0.006485416 0.01599887 0.006486718) (-0.005875677 0.0129999 0.007378264) (-0.005842028 0.0147286 0.007332553) (-0.004531372 0.01300665 0.007060689) (-0.005043941 0.01500679 0.006561916) (-0.005671091 0.01527687 0.007172462) (-0.004535008 0.01500475 0.007052736) (-0.00500971 0.01300237 0.007511002) (-0.005488367 0.01398825 0.007575357) (-0.004522696 0.01400862 0.007534372) (-0.004022958 0.01300366 0.007549691) (-0.004653525 0.01304084 0.00815974) (-0.005121265 0.01501747 0.007623803) (-0.005381705 0.01598008 0.007398201) (-0.004034228 0.0150037 0.007538302) (-0.004689679 0.01627859 0.007667142) (-0.004492701 0.01498545 0.008072384) (-0.00251526 0.0129998 0.008070118) (-0.003523309 0.01600317 0.007546377) (-0.003513453 0.01500147 0.008025616) (-0.002510126 0.0150022 0.008048918) (0.004021632 0.01300085 0.007551417) (0.003519986 0.01300317 0.008057104) (0.002514297 0.01500273 0.008055806) (0.00403565 0.01500233 0.007541608) (0.003526611 0.0160044 0.007549917) (0.003515641 0.0150016 0.008034474) (0.005529469 0.01400365 0.006539209) (0.005526805 0.01300158 0.007029766) (0.005042964 0.01500577 0.00656037) (0.004535068 0.01500498 0.007050479) (0.005659374 0.01528129 0.0071502) (0.006157377 0.01527446 0.006702822) (0.005540595 0.01600581 0.006550585) (0.005001691 0.01299987 0.007507009) (0.004514893 0.01400243 0.007531651) (0.005483251 0.01398666 0.007570484) (0.005893466 0.0129998 0.007386497) (0.00533771 0.01295449 0.007831723) (0.005120385 0.01502143 0.007617099) (0.004686862 0.01627934 0.007676124) (0.004491232 0.01498498 0.008072511) (0.005836905 0.01472122 0.007307909) (0.005379198 0.01598082 0.007393049) (0.006844323 0.01472198 0.006347425) (0.006358813 0.01472232 0.006829857) (-0.00634855 0.01796775 0.006366483) (-0.006001353 0.01900808 0.006415047) (-0.004538663 0.01700496 0.007082676) (-0.005019389 0.01900197 0.00653276) (-0.005405231 0.01901715 0.006899804) (-0.00450574 0.01900047 0.007010182) (-0.004520542 0.02000089 0.006538397) (-0.005025046 0.01701267 0.007446617) (-0.004592532 0.01798622 0.007604279) (-0.004021152 0.01700114 0.007539054) (-0.004397681 0.01701284 0.007897307) (-0.004861444 0.01896883 0.007359111) (-0.004145541 0.01925934 0.007642036) (-0.00448581 0.01998495 0.007403557) (-0.004322537 0.01871703 0.007811325) (-0.003519931 0.01900769 0.007052485) (-0.002515632 0.01900708 0.007066017) (-0.003016645 0.01700689 0.007556389) (-0.003510818 0.01800428 0.007538849) (-0.002514157 0.01800733 0.00756486) (-0.00250589 0.01700746 0.008042709) (-0.003015218 0.01900542 0.007554307) (-0.003655049 0.02027748 0.007676472) (-0.003513939 0.01900385 0.008021074) (-0.00200738 0.01900452 0.007554934) (-0.002502368 0.02000144 0.007548803) (-0.002503167 0.01899911 0.008013389) (-0.0005053628 0.01700327 0.008074218) (-0.001504921 0.02000569 0.007561355) (-0.001506883 0.01900394 0.008060773) (-0.0005024394 0.02000739 0.007578015) (-0.0005066853 0.01900732 0.008097279) (0.001506139 0.01700316 0.008051866) (0.0005065098 0.02000378 0.00758307) (0.0005034803 0.01899782 0.008108445) (0.002009862 0.01900239 0.007551954) (0.0015109 0.02000365 0.007558277) (0.001503184 0.01900404 0.00805868) (0.003535081 0.01700689 0.007070712) (0.002522041 0.01900222 0.007064774) (0.003525501 0.0190063 0.007054098) (0.003025354 0.01700244 0.007563219) (0.002524178 0.01799703 0.007563565) (0.003515744 0.01800207 0.007539486) (0.004023735 0.01700243 0.007531599) (0.003632362 0.01725412 0.008157978) (0.003012637 0.01900071 0.007556074) (0.002511635 0.02000536 0.007535246) (0.00249786 0.01899987 0.008010138) (0.004129073 0.01926122 0.007641126) (0.003662803 0.02027946 0.007654314) (0.003517064 0.01900622 0.008016518) (0.005680138 0.01827643 0.006666064) (0.005501869 0.01699276 0.00709365) (0.005026094 0.01900251 0.006533592) (0.00450475 0.01900274 0.007009134) (0.005407422 0.01901495 0.006909477) (0.005922906 0.01902576 0.006425783) (0.00557893 0.01997411 0.006579411) (0.005024867 0.01701738 0.007447764) (0.004588637 0.01798534 0.007604157) (0.004870148 0.01896532 0.007364973) (0.004485706 0.02000976 0.007407903) (0.00431646 0.01870438 0.007811771) (-0.004686989 0.02229557 0.006699337) (-0.004534807 0.0210263 0.007113425) (-0.005010659 0.02301539 0.006426668) (-0.004397022 0.02298136 0.00689402) (-0.004015946 0.02300431 0.006534048) (-0.004495399 0.02399098 0.006583855) (-0.004017703 0.02101372 0.007437282) (-0.003820845 0.02272233 0.007339612) (-0.00251398 0.02100477 0.007053294) (-0.003025648 0.02301103 0.006562065) (-0.003639173 0.02326615 0.007163559) (-0.002519138 0.0229988 0.007063781) (-0.002524789 0.02401387 0.006584918) (-0.00300384 0.02099899 0.007502191) (-0.003488774 0.02198719 0.007564899) (-0.002501709 0.02199947 0.007513202) (-0.002007654 0.02101123 0.007551244) (-0.002497232 0.02101229 0.008100113) (-0.002994798 0.02300135 0.007575993) (-0.003353249 0.02374239 0.007354168) (-0.002133474 0.02328515 0.007703458) (-0.002504308 0.02403103 0.007534025) (-0.002487684 0.02276886 0.007858077) (-0.0005032736 0.02100755 0.007073115) (-0.001519205 0.02300568 0.007089372) (-0.0005043917 0.02300782 0.007061168) (-0.001003546 0.02100814 0.007562245) (-0.001508397 0.02200403 0.007567189) (-0.0005036645 0.02201039 0.00757266) (2.356759e-06 0.02100459 0.007554444) (-0.0005002487 0.0210044 0.008017924) (-0.001005933 0.02300555 0.007547565) (-0.001629481 0.0242479 0.007687755) (-0.00149899 0.02299438 0.00801095) (-7.225612e-07 0.02300311 0.007529566) (-0.0005004879 0.02400309 0.007510098) (-0.0004995717 0.02302538 0.008120995) (0.001517424 0.02100529 0.007077404) (0.0005040043 0.02300635 0.007056344) (0.001506525 0.02300523 0.007049313) (0.001012982 0.02100492 0.007560992) (0.0005092366 0.02200604 0.007569849) (0.001512008 0.02200709 0.007551644) (0.002006449 0.0209999 0.007553787) (0.001654042 0.02129066 0.008193178) (0.001004879 0.02300432 0.007538377) (0.000499825 0.0240024 0.007513048) (0.0005018355 0.02302433 0.008116504) (0.001996679 0.02300014 0.007496932) (0.001629788 0.02429299 0.007681647) (0.00149724 0.02299806 0.008000331) (0.003525992 0.022005 0.006550593) (0.003514522 0.02100079 0.007025865) (0.003031487 0.02300846 0.00655667) (0.002512072 0.02300191 0.007030754) (0.00363562 0.02324868 0.007186117) (0.004015906 0.02300276 0.006523041) (0.003524239 0.02400963 0.006536516) (0.002999818 0.02099911 0.007500262) (0.00249709 0.0219993 0.007498487) (0.003492484 0.02198736 0.007565865) (0.003995104 0.02099907 0.007491727) (0.003378524 0.02096743 0.007849398) (0.003002548 0.02301414 0.007579487) (0.002491457 0.02399977 0.007571862) (0.002470704 0.02294143 0.007839762) (0.003861751 0.02273463 0.007341864) (0.00335791 0.02374393 0.007342934) (0.005383838 0.02199219 0.006382015) (0.005328734 0.02073595 0.006784855) (0.00500251 0.0230126 0.006418066) (0.004390346 0.02299206 0.006887379) (0.004317251 0.02171657 0.007293074) (-0.00436617 0.02574303 0.006341446) (-0.003876375 0.02673534 0.006368372) (-0.0025244 0.02601097 0.006553377) (-0.002631632 0.02526615 0.007193153) (-0.003018631 0.02702584 0.00662279) (-0.002494797 0.02698191 0.006924425) (-0.002010245 0.0270126 0.006546491) (-0.002518756 0.02802212 0.006614555) (-0.002869604 0.02474123 0.007351071) (-0.002365598 0.02571443 0.007325201) (-0.00200293 0.02497665 0.00750487) (-0.0005060793 0.02601517 0.006585732) (-0.000503547 0.02501327 0.007072206) (-0.001007288 0.02701678 0.006575985) (-0.001512776 0.02703742 0.007139583) (-0.0005002788 0.0272458 0.0071945) (-7.580508e-07 0.02701271 0.006612079) (-0.0005015112 0.02801495 0.00656342) (-0.0009936253 0.02520732 0.00763037) (-0.001504113 0.02598294 0.007425243) (-0.0004998717 0.02600387 0.007523628) (-1.287707e-07 0.02524973 0.007668804) (-0.0004992176 0.02474879 0.007863449) (-0.0009788898 0.02676001 0.007375959) (-3.369654e-07 0.0267712 0.007403946) (0.001507431 0.02600945 0.006552103) (0.001504138 0.02500685 0.00703648) (0.0010046 0.02700872 0.006575171) (0.0004992208 0.02724452 0.007194456) (0.001492323 0.02720782 0.007131086) (0.002012464 0.02701096 0.00653424) (0.001503173 0.02800379 0.006534168) (0.0009868928 0.02521531 0.007636331) (0.0005001446 0.02600264 0.007533161) (0.001490665 0.0259539 0.007467008) (0.001997893 0.0250233 0.007508617) (0.001369978 0.02469408 0.007813987) (0.0009998605 0.02676141 0.007379511) (0.001857702 0.02672503 0.007284392) (0.003516106 0.02602916 0.006623891) (0.003501622 0.02498614 0.006934561) (0.003028716 0.0270265 0.006623666) (0.002500503 0.02698494 0.006931642) (0.003862282 0.02674259 0.006365498) (0.003375843 0.02774661 0.006364133) (0.002869748 0.02473962 0.007355809) (0.002351958 0.02574154 0.007341092) (-0.002356073 0.02972509 0.00629744) (-0.0004984821 0.03001699 0.006535652) (-0.0004991678 0.02877153 0.006914892) (-0.0009813118 0.03072698 0.00632648) (2.798319e-06 0.0307656 0.006390777) (0.001504425 0.03000701 0.006432707) (0.001475878 0.02875402 0.006827683) (0.0009878575 0.03074119 0.006356939) (-0.001986437 -0.02076004 0.008357741) (-0.002481923 -0.01995569 0.008359156) (-0.000499435 -0.02197079 0.008369815) (-0.000989638 -0.02095688 0.008457478) (1.555255e-06 -0.02099989 0.008490573) (-0.0005050916 -0.0200497 0.008585462) (0.001356083 -0.02170671 0.008320505) (0.0009898946 -0.02095602 0.008457414) (0.00199163 -0.02076862 0.008350234) (0.001499044 -0.01998954 0.008493943) (-0.003844894 -0.01672712 0.008318211) (-0.00250269 -0.018015 0.008525802) (-0.002998192 -0.01700057 0.008501952) (-0.002358216 -0.01673479 0.008834166) (-0.002144038 -0.01725498 0.008676852) (-0.002633581 -0.01626238 0.008655706) (-0.000500018 -0.0179991 0.008516744) (-0.0004837826 -0.01872786 0.008854111) (-0.001001788 -0.01700052 0.008532484) (-0.001492851 -0.01694759 0.008943974) (-0.0005019085 -0.01700067 0.009024244) (-2.456993e-06 -0.01700558 0.008552389) (-0.0005035239 -0.0160085 0.008589057) (0.001513443 -0.01822951 0.008677956) (0.0009989256 -0.0170015 0.008526536) (0.0004980838 -0.01700049 0.009030262) (0.00148793 -0.01694875 0.008952498) (0.002125781 -0.01726107 0.008669308) (0.001502608 -0.01600095 0.008539287) (0.003366028 -0.01774574 0.008348364) (0.002998615 -0.01699931 0.00850146) (0.002361886 -0.01674654 0.008821909) (0.003839055 -0.01673255 0.008312435) (0.003481148 -0.01598227 0.008468067) (-0.004380364 -0.01396599 0.008337798) (-0.004001602 -0.01301475 0.008522001) (-0.004490683 -0.0119999 0.008408723) (-0.002510125 -0.0140041 0.008550802) (-0.00247086 -0.01497853 0.008946524) (-0.003003553 -0.01300165 0.008517621) (-0.003382099 -0.01297791 0.008871266) (-0.002520932 -0.01301811 0.009074789) (-0.002014031 -0.01300228 0.008592291) (-0.002505802 -0.01200171 0.00857631) (-0.001870545 -0.01275316 0.009337492) (-0.002365058 -0.01172756 0.009331491) (-0.0005058296 -0.01400839 0.008537031) (-0.000494102 -0.01522658 0.00916118) (-0.001008384 -0.01300627 0.008550066) (-0.001623212 -0.01324952 0.009180536) (-0.0005019575 -0.01300459 0.008979923) (3.951844e-07 -0.01300526 0.008524381) (-0.0005037675 -0.01200396 0.008542676) (-0.0008550258 -0.01469644 0.009326957) (-0.00136153 -0.01373367 0.009347464) (-0.0004863823 -0.0139267 0.00939852) (-1.395523e-06 -0.01474747 0.009345545) (-0.0009884146 -0.01297653 0.009434888) (-0.001494901 -0.01198064 0.009437449) (-1.217315e-06 -0.01299312 0.009438283) (-0.000500795 -0.01199932 0.009500792) (0.001511976 -0.01400574 0.008593342) (0.001524415 -0.01502678 0.009107583) (0.001011166 -0.01301217 0.008560459) (0.0005039755 -0.01300304 0.008985125) (0.001643666 -0.01327518 0.00918381) (0.002020234 -0.01300666 0.008582505) (0.001514437 -0.01200756 0.008581) (0.0008615766 -0.01469463 0.009333729) (0.0004882878 -0.01393168 0.009402263) (0.001367265 -0.01373722 0.009344467) (0.0009931559 -0.0129791 0.00944471) (0.0004985221 -0.01199853 0.009504995) (0.00186886 -0.01273578 0.009348109) (0.001479766 -0.01197705 0.009443115) (0.003516363 -0.01400558 0.008619834) (0.003003643 -0.01299908 0.008520949) (0.002527991 -0.01302485 0.009058917) (0.003380726 -0.01297949 0.008859441) (0.003994315 -0.01301754 0.008512978) (0.003649216 -0.01226655 0.008667625) (0.002352661 -0.01172552 0.009323545) (-0.004507092 -0.01001631 0.008534441) (-0.00489319 -0.009014987 0.008389119) (-0.00436284 -0.008721195 0.008807541) (-0.004162185 -0.009274732 0.008674295) (-0.004594379 -0.007984779 0.008597117) (-0.002529666 -0.009996198 0.00859586) (-0.002625066 -0.01102454 0.009175264) (-0.003015987 -0.009002583 0.008570271) (-0.003521447 -0.00901757 0.009053064) (-0.002503495 -0.008998103 0.009018759) (-0.002012324 -0.009000601 0.008572369) (-0.002510461 -0.008001381 0.008566248) (-0.00248165 -0.009998706 0.009376359) (-0.001974713 -0.01097898 0.009436243) (-0.002881033 -0.008977768 0.00931915) (-0.003349416 -0.007726939 0.0093092) (-0.002000371 -0.009000503 0.009513299) (-0.002491002 -0.007994959 0.009461827) (-0.0005037472 -0.01100362 0.009070881) (-0.001508828 -0.009002477 0.009095005) (-0.0005017803 -0.009004982 0.009114646) (-0.001003181 -0.01100302 0.009537854) (-0.001502522 -0.01000129 0.00954229) (-0.0005039232 -0.01001809 0.009653494) (-5.877172e-07 -0.01100776 0.009597034) (-0.001005293 -0.009024343 0.009676051) (1.910071e-06 -0.009172757 0.009667582) (-0.0003623361 -0.00868662 0.009823886) (0.001509258 -0.01000037 0.008584079) (0.001504901 -0.01100175 0.009025616) (0.0005043901 -0.009000431 0.009126449) (0.001510675 -0.009000712 0.009096024) (0.002013092 -0.008999661 0.008582203) (0.001000436 -0.01100153 0.009538984) (0.000504764 -0.0100139 0.009658049) (0.001500693 -0.01000131 0.009541131) (0.001972216 -0.01097956 0.009429807) (0.001007125 -0.009019909 0.009669542) (0.0003622604 -0.008694736 0.009819619) (0.001999463 -0.009002263 0.009511514) (0.003512016 -0.01000088 0.008538709) (0.003470716 -0.01098404 0.008959696) (0.003020191 -0.009002326 0.00858086) (0.002510528 -0.009000463 0.009020032) (0.003525033 -0.009003572 0.009037558) (0.004158969 -0.009278636 0.00866497) (0.003514369 -0.008002107 0.008560053) (0.002483676 -0.009997219 0.009383101) (0.002870988 -0.008964868 0.009354222) (0.002481582 -0.00799465 0.009463238) (0.004888978 -0.009012007 0.008390428) (0.004327716 -0.008718933 0.008828626) (0.005322919 -0.007720555 0.008326091) (-0.004656953 -0.006003024 0.008699336) (-0.004346743 -0.007000092 0.008809876) (-0.005026725 -0.00500038 0.008535877) (-0.004383441 -0.004999914 0.008880463) (-0.004031956 -0.005000503 0.00858154) (-0.004677248 -0.004008185 0.008745812) (-0.002502503 -0.0070005 0.009034032) (-0.003019682 -0.005000897 0.008562748) (-0.003660887 -0.004998912 0.009207891) (-0.002510935 -0.005002981 0.009075692) (-0.00297213 -0.006983022 0.009414065) (-0.003368708 -0.005996763 0.009278758) (-0.0025075 -0.00600192 0.009556195) (-0.002968457 -0.00499894 0.009456652) (-0.003378831 -0.004000767 0.009348908) (-0.002532991 -0.004002828 0.009607576) (0.003525459 -0.006001788 0.008573034) (0.00352324 -0.007005426 0.009142535) (0.003028281 -0.005001266 0.008569553) (0.002521212 -0.005000486 0.009069832) (0.003667013 -0.00500109 0.009204439) (0.004035452 -0.005001729 0.008575101) (0.003532995 -0.004001162 0.008591064) (0.002987938 -0.006997602 0.009395036) (0.002510733 -0.006002958 0.009549309) (0.003354833 -0.00596274 0.009342005) (0.002974375 -0.00499883 0.009455728) (0.002538011 -0.004004961 0.009603792) (0.00336834 -0.00400123 0.009329972) (0.005320426 -0.00600066 0.008265164) (0.004993983 -0.004999801 0.008502078) (0.004380673 -0.005000776 0.008891888) (0.005347257 -0.003997311 0.008296591) (-0.004644287 -0.002282997 0.008688603) (-0.004411849 -0.00301381 0.008909977) (-0.005081054 -0.0009858033 0.008588181) (-0.004476163 -0.0009872492 0.008950366) (-0.004015862 -0.001002918 0.008545048) (-0.004501714 3.758728e-07 0.008494787) (-0.003867789 -0.0007463429 0.009315563) (-0.002520975 -0.00300105 0.009087214) (-0.003033882 -0.00100441 0.008590101) (-0.003681307 -0.001281198 0.009184639) (-0.002524529 -0.001001884 0.009107084) (-0.002986099 -0.003000464 0.00950281) (-0.003387282 -0.002013861 0.009385652) (-0.00254362 -0.001997544 0.009647282) (-0.003003492 -0.0009988196 0.009511146) (-0.003472423 -1.825685e-06 0.009415254) (-0.002551357 -1.551298e-06 0.0096632) (0.003531094 -0.002004375 0.008615001) (0.003654084 -0.00300344 0.009227867) (0.003025862 -0.00100083 0.008581021) (0.002518883 -0.0009997958 0.009084694) (0.00365918 -0.001275886 0.009199648) (0.00401247 -0.00100083 0.00854081) (0.003516825 3.497937e-07 0.008551886) (0.002979311 -0.00300078 0.009483176) (0.002540655 -0.002000037 0.009646039) (0.003390948 -0.002011826 0.009379702) (0.003002098 -0.0009985716 0.009507409) (0.002546912 3.616686e-07 0.009658359) (0.00385462 -0.000740712 0.009324229) (0.003450406 1.863192e-06 0.009435618) (0.005368755 -0.002001374 0.00835866) (0.00507626 -0.0009877252 0.008585577) (0.004465431 -0.0009865413 0.0089656) (0.005398353 2.860294e-06 0.00840714) (-0.004655348 0.002276604 0.008692703) (-0.00448171 0.0009840819 0.008957611) (-0.00503504 0.0030176 0.0085623) (-0.004413053 0.003015337 0.008914215) (-0.004048619 0.003001162 0.008608112) (-0.004673161 0.004005193 0.008761055) (-0.003826464 0.000737933 0.009341057) (-0.002518052 0.001000074 0.009103443) (-0.003031522 0.003001222 0.008587698) (-0.00367063 0.003003261 0.009241994) (-0.002514296 0.003001303 0.009088199) (-0.003009971 0.0009989538 0.009522391) (-0.003402927 0.002014312 0.009376249) (-0.002541717 0.001999494 0.009644019) (-0.002983938 0.00300075 0.009501491) (-0.003377703 0.003999903 0.009346603) (-0.002529348 0.004003849 0.009596518) (0.003542938 0.002002798 0.008612186) (0.003646029 0.001273604 0.009195733) (0.003032111 0.003001712 0.008587372) (0.002533768 0.003002154 0.009092914) (0.003674455 0.003006359 0.009243649) (0.004042243 0.003001247 0.008602693) (0.003537586 0.00400182 0.00859771) (0.003003342 0.0009986815 0.009508947) (0.002521548 0.001998747 0.009644477) (0.003390763 0.002011963 0.009373562) (0.003856187 0.0007250658 0.009317558) (0.002984245 0.003001055 0.009495525) (0.002527621 0.004002084 0.009603522) (0.003361055 0.003996827 0.009349604) (0.005388048 0.00199967 0.008375367) (0.005022875 0.003002863 0.008556444) (0.004394202 0.003003193 0.008908115) (0.005362313 0.003999735 0.008342963) (-0.004623093 0.005999789 0.008716215) (-0.004389086 0.005001031 0.00888599) (-0.004987066 0.006984665 0.008473672) (-0.004359762 0.006997267 0.008822702) (-0.004008256 0.006999852 0.008523744) (-0.004598595 0.00798391 0.008596165) (-0.002514843 0.006002726 0.008561453) (-0.002515675 0.005002185 0.009064617) (-0.003019855 0.007007238 0.008587003) (-0.003520748 0.007002016 0.009117579) (-0.002508482 0.007004771 0.009049641) (-0.002510091 0.008001944 0.008558444) (-0.002978846 0.004998411 0.009461024) (-0.003363114 0.005962932 0.009345727) (-0.002503623 0.006001734 0.009516181) (-0.002982844 0.007000703 0.009372227) (-0.002480386 0.007993531 0.009437845) (0.003521181 0.006001775 0.008566165) (0.003635016 0.004998471 0.009221265) (0.003025186 0.007001901 0.008600226) (0.002516413 0.007001623 0.009073182) (0.003521827 0.007003143 0.009133765) (0.004013719 0.007001497 0.008535363) (0.003516362 0.008002782 0.00855766) (0.002973462 0.004999839 0.009456549) (0.002512662 0.006001596 0.009557337) (0.003347456 0.005962605 0.009338494) (0.002983609 0.006996678 0.009389938) (0.002485299 0.007997264 0.009463863) (0.005378167 0.005995861 0.008291166) (0.004997101 0.006985062 0.008484227) (0.004347583 0.006995393 0.008833039) (0.005333261 0.007724528 0.00833949) (-0.004509343 0.01001301 0.00852208) (-0.004323877 0.008725226 0.008821295) (-0.004858091 0.01096089 0.008344024) (-0.004102109 0.01098939 0.008622298) (-0.004489696 0.0119989 0.008402321) (-0.002507977 0.009999518 0.008582279) (-0.002503811 0.008999222 0.009009504) (-0.003011095 0.01100133 0.008554108) (-0.003469525 0.01098614 0.008953027) (-0.002617896 0.01102638 0.00917778) (-0.002008915 0.01100149 0.00856068) (-0.00251681 0.01200274 0.008563554) (-0.002862069 0.008962797 0.009326863) (-0.002486588 0.00999536 0.009387565) (-0.001997175 0.00900147 0.009513935) (-0.001963197 0.01098018 0.009441085) (-0.00236526 0.01172561 0.009333553) (-0.0005141714 0.009003804 0.009132098) (-0.001004198 0.01100259 0.008564229) (-0.001503121 0.01100165 0.00902105) (-0.0005002935 0.01100313 0.009071416) (-0.0005019361 0.0120018 0.008544229) (-0.00102329 0.009029722 0.009673913) (-0.001497725 0.01000209 0.009541649) (-0.000504088 0.01001787 0.009656381) (8.372592e-07 0.00919821 0.009646325) (-0.0003640018 0.008707772 0.009806042) (-0.0009998333 0.01100199 0.009538204) (-0.001489031 0.01197821 0.00943983) (3.079411e-06 0.01101166 0.009596534) (-0.0004981811 0.01200139 0.009500532) (0.001511962 0.01000442 0.008580316) (0.001511057 0.009004243 0.009095389) (0.001006862 0.01100421 0.008566617) (0.0005046357 0.01100365 0.009072182) (0.001505929 0.0110035 0.009022205) (0.002012116 0.01100547 0.008569743) (0.001508364 0.01200625 0.00856587) (0.001030229 0.009026001 0.009661569) (0.0005065807 0.01002116 0.009654581) (0.001505684 0.01000175 0.009540233) (0.002001422 0.009001756 0.009511078) (0.001005496 0.01100173 0.009538769) (0.0005029586 0.01200122 0.009504589) (0.001974015 0.01098055 0.009449223) (0.001488365 0.01197838 0.009432583) (0.003519117 0.01000131 0.00855315) (0.003523654 0.009004988 0.00904749) (0.003010358 0.01100186 0.008571268) (0.002619581 0.01102287 0.009154807) (0.003474582 0.0109853 0.008968291) (0.004111301 0.01098853 0.008623548) (0.003651243 0.01226077 0.008680036) (0.002862381 0.008966441 0.009366013) (0.002487054 0.009994945 0.00938857) (0.002355338 0.01172987 0.009333856) (0.004839085 0.0109648 0.008348391) (-0.004346864 0.01397228 0.008337195) (-0.00397417 0.01499377 0.008386887) (-0.002509514 0.01399679 0.008548159) (-0.002516329 0.01301945 0.009072436) (-0.003115789 0.01502308 0.008649971) (-0.002476363 0.01497931 0.008953366) (-0.002004375 0.01500135 0.00854161) (-0.002628634 0.01625493 0.008657523) (-0.001878791 0.0127438 0.009340614) (-0.000505378 0.01399799 0.008547951) (-0.0005004696 0.01299736 0.008983223) (-0.001007068 0.01500716 0.00858441) (-0.001511617 0.01501607 0.009113094) (-0.0004944356 0.01520565 0.009169442) (-7.461161e-07 0.01499802 0.00860818) (-0.000502185 0.01600327 0.008587558) (-0.0009877859 0.0129681 0.009438024) (-0.001367483 0.01373225 0.009338571) (-0.0004829773 0.01392853 0.009405406) (1.132749e-06 0.01299431 0.009438238) (-0.0008610773 0.0147132 0.009316644) (3.345349e-06 0.01474903 0.009360159) (0.001506402 0.0140066 0.00859767) (0.001643307 0.01326045 0.009168632) (0.001003516 0.01500206 0.008593319) (0.0004936497 0.01522824 0.009148115) (0.001508979 0.015022 0.00911775) (0.002004874 0.01500176 0.008542983) (0.00150231 0.01600195 0.008538399) (0.0009913558 0.01297584 0.009434758) (0.0004855815 0.0139397 0.009419178) (0.001368213 0.01373502 0.0093445) (0.001860348 0.01273761 0.009336851) (0.0008652395 0.01470912 0.009309214) (0.003516199 0.0140021 0.008626477) (0.003372828 0.01297594 0.008860063) (0.003128985 0.01502563 0.008642653) (0.002473995 0.01497848 0.008945868) (0.003976876 0.01499355 0.008383386) (0.003481363 0.01598158 0.008475006) (-0.002503833 0.01801556 0.008526284) (-0.002384785 0.01673239 0.008814334) (-0.00287038 0.01897572 0.008352747) (-0.002000133 0.01900904 0.008530116) (-0.002470629 0.01994746 0.008365504) (-0.000504243 0.01799635 0.008522528) (-0.0005010872 0.01700097 0.009023079) (-0.001001069 0.01902569 0.008655901) (-0.0004863091 0.01874569 0.008853645) (1.022189e-06 0.01922893 0.008672352) (-0.000503342 0.0200537 0.008594068) (0.001503198 0.01824351 0.008646266) (0.001484624 0.01695319 0.008949913) (0.001003983 0.01903217 0.008644947) (0.0004838875 0.01873818 0.008851833) (0.002000985 0.0190106 0.008527104) (0.001497692 0.01998967 0.008494834) (0.00336721 0.01773837 0.008337414) (0.002881367 0.01897361 0.008342884) (-0.0004977651 0.02196367 0.008357303) (-6.309762e-06 0.0227161 0.008311518) (0.001345929 0.02170759 0.008322066) (-0.001731792 -0.007481499 -0.0096856) (0.0002490942 -0.00750028 -0.00979992) (-0.001743582 -0.003501845 -0.009784094) (0.0002504088 0.004497426 -0.009692544) (0.0002504803 0.008499434 -0.009752537) (-0.001512287 -0.01900182 -0.007564725) (0.0005036335 -0.0190064 -0.007575489) (-0.003525086 -0.01500514 -0.007573242) (-0.001507564 -0.01500322 -0.007570109) (0.0005048806 -0.01500415 -0.007585303) (0.002520847 -0.0150071 -0.007571042) (-0.003532955 -0.01100293 -0.007564609) (-0.001504245 -0.01100143 -0.007557463) (0.0005045591 -0.01100103 -0.007545548) (0.00251851 -0.0110041 -0.007561562) (-0.0035333 -0.007002926 -0.007568946) (-0.001004705 -0.006000582 -0.007037358) (0.001007843 -0.006000864 -0.007047054) (0.00251929 -0.007001302 -0.007565832) (0.004541014 -0.007009795 -0.007576798) (-0.003527772 -0.002999474 -0.007578975) (-0.001006862 -0.001999976 -0.007037019) (0.001006937 -0.002000189 -0.007034306) (0.002520373 -0.003001123 -0.007564478) (0.004539955 -0.003002289 -0.007579594) (-0.003533442 0.001001257 -0.007589228) (-0.001007855 0.002000413 -0.007040224) (0.001006785 0.002000388 -0.007035211) (0.002521425 0.0009998013 -0.007567358) (0.004540483 0.0009999799 -0.007576668) (-0.003526204 0.005002471 -0.007565226) (-0.001006448 0.006001049 -0.007045829) (0.001006608 0.006001291 -0.007047329) (0.002518016 0.00500106 -0.00756334) (0.004542012 0.005001467 -0.007570112) (-0.003525526 0.009004713 -0.007577778) (-0.001507824 0.009001984 -0.007549454) (0.0005034215 0.009001367 -0.007540466) (0.002516235 0.009002192 -0.007555652) (0.004535726 0.009004095 -0.007569434) (-0.003530116 0.01300658 -0.007567852) (-0.001510961 0.01300228 -0.007569033) (0.0005015389 0.01300174 -0.007563126) (0.002516054 0.01300421 -0.00756614) (-0.001514752 0.01700326 -0.007572032) (0.0005016409 0.01700701 -0.007570343) (0.002514032 0.01700396 -0.007555958) (-0.00151294 -0.02701424 -0.005572716) (0.00050396 -0.02701608 -0.005573784) (0.002532357 -0.02701423 -0.005582306) (-0.003527621 -0.02300503 -0.005554414) (-0.001006516 -0.02200578 -0.005051414) (0.001008786 -0.02200742 -0.005054345) (0.002527886 -0.02301084 -0.00557154) (0.004539803 -0.02300611 -0.005554634) (-0.005550635 -0.01900537 -0.005552186) (-0.003023265 -0.01800346 -0.005045764) (-0.00100656 -0.0180029 -0.005044781) (0.001008385 -0.01800376 -0.005047104) (0.003026571 -0.01800415 -0.005051599) (0.004544141 -0.01900742 -0.005568438) (-0.005539771 -0.01500861 -0.005544329) (-0.003021679 -0.01400265 -0.005042107) (-0.001005715 -0.01400212 -0.005040154) (0.001008511 -0.01400269 -0.005041329) (0.003027005 -0.01400402 -0.00504804) (0.004551961 -0.01500626 -0.005568792) (-0.005044433 -0.01000236 -0.005041856) (-0.003023339 -0.01000167 -0.005038578) (-0.001006059 -0.0100013 -0.005034558) (0.001007832 -0.01000168 -0.005035503) (0.003023404 -0.01000273 -0.005040878) (0.005041621 -0.01000361 -0.005047163) (0.006571227 -0.01100915 -0.005580369) (-0.005042541 -0.006001256 -0.005040153) (-0.003023251 -0.006000878 -0.005037227) (0.00302162 -0.006001687 -0.005037195) (0.005039547 -0.006002383 -0.005041393) (0.006552961 -0.007002684 -0.005543087) (-0.005042278 -0.002000388 -0.005045022) (-0.00302307 -0.001999992 -0.005039647) (0.003020674 -0.00200077 -0.00503593) (0.005035399 -0.00200142 -0.005036157) (0.006565719 -0.00300312 -0.005547548) (-0.005045477 0.00200201 -0.005046225) (-0.003023954 0.00200098 -0.005041022) (0.003022102 0.002000287 -0.005037248) (0.005039566 0.002000704 -0.005038707) (0.006539151 0.00100084 -0.005525111) (-0.005040284 0.006002164 -0.005042527) (-0.003022102 0.006001743 -0.005039336) (0.003023691 0.006001245 -0.005038472) (0.005046182 0.006001666 -0.005045315) (0.006580852 0.005001743 -0.005565989) (-0.00503873 0.01000319 -0.005043758) (-0.003021849 0.01000253 -0.005041337) (-0.001006752 0.01000172 -0.005036155) (0.001007618 0.01000169 -0.005035797) (0.003024873 0.01000242 -0.005041843) (0.005047885 0.01000417 -0.005052072) (0.006559809 0.009004523 -0.005552795) (-0.005550886 0.01300485 -0.005554582) (-0.003024894 0.01400384 -0.005047551) (-0.001007837 0.0140026 -0.005042496) (0.001007557 0.01400259 -0.005041504) (0.003027004 0.01400336 -0.005046889) (0.006550921 0.01300492 -0.005538403) (-0.005557856 0.01700677 -0.00556088) (-0.003027913 0.01800426 -0.005049015) (-0.001009478 0.018004 -0.005047577) (0.001007638 0.01800416 -0.005046498) (0.003028651 0.01800568 -0.005048776) (0.004552838 0.01700698 -0.005563944) (-0.003538241 0.02100523 -0.005559627) (-0.001011009 0.02200718 -0.005055089) (0.001006694 0.02200657 -0.005052461) (0.004547996 0.02101151 -0.005556049) (-0.003543681 0.02501791 -0.005579173) (-0.001521685 0.02501733 -0.005584672) (0.0005013402 0.02501353 -0.005575498) (0.002522164 0.02501121 -0.005567531) (-0.001510841 0.02902071 -0.005582271) (0.0005032563 0.02901672 -0.00558593) (0.0005247713 -0.0350478 -0.003575862) (-0.003539567 -0.03101713 -0.003557387) (-0.001018007 -0.03002273 -0.003065404) (0.001015359 -0.03002238 -0.003059854) (0.002532933 -0.03102278 -0.003559246) (-0.00304099 -0.02601193 -0.003049209) (-0.001012726 -0.02601238 -0.003046721) (0.001013622 -0.02601211 -0.003045217) (0.003046765 -0.02601127 -0.00304737) (0.004581349 -0.02701377 -0.00355339) (-0.00555899 -0.02300982 -0.00353068) (-0.003030204 -0.02200624 -0.003031715) (0.003034566 -0.02200631 -0.003035559) (-0.005046484 -0.01800558 -0.003025268) (0.005049446 -0.01800404 -0.003027432) (0.006567352 -0.01900623 -0.003531683) (-0.007572699 -0.015006 -0.00352992) (-0.005044531 -0.01400349 -0.003023945) (0.005044924 -0.01400301 -0.003025371) (0.006567794 -0.01500469 -0.003530073) (-0.007580427 -0.01100532 -0.003539076) (-0.005042066 -0.01000227 -0.003022748) (0.005040591 -0.01000243 -0.003023235) (-0.007589201 -0.007001403 -0.003527545) (-0.005039312 -0.006001168 -0.00302157) (0.005036979 -0.006001757 -0.003020718) (-0.00756429 -0.0030008 -0.003528735) (-0.00503644 -0.002000199 -0.003023448) (0.005035776 -0.002000744 -0.003020497) (-0.00757588 0.001002042 -0.003534472) (-0.005035785 0.002000823 -0.003023639) (0.005035601 0.002000437 -0.003021284) (-0.007549171 0.005000924 -0.003522839) (-0.005036644 0.006001383 -0.003022782) (0.005039882 0.006001502 -0.00302329) (-0.007577075 0.009003601 -0.003531508) (-0.005041077 0.01000258 -0.003024229) (0.005048722 0.01000275 -0.003026705) (-0.007574525 0.01300608 -0.003537677) (-0.005044606 0.0140039 -0.003025783) (0.005056954 0.0140044 -0.003029773) (-0.005047878 0.01800558 -0.00302498) (0.005059848 0.01800596 -0.003030211) (0.006590831 0.01700964 -0.003543754) (-0.005563196 0.02100828 -0.003530992) (-0.003033062 0.02200668 -0.003030811) (0.00303457 0.02200743 -0.003032058) (0.006572067 0.02100724 -0.003524895) (-0.005562616 0.02500817 -0.003520525) (-0.003044197 0.02601286 -0.00304241) (-0.001014189 0.02601256 -0.003046095) (0.001012014 0.0260125 -0.0030471) (0.003042489 0.02601415 -0.0030476) (0.00456362 0.02501325 -0.003541478) (-0.003562067 0.02901947 -0.003556927) (-0.001015811 0.03001914 -0.00305837) (0.001015666 0.03001944 -0.003063616) (0.004573536 0.02902357 -0.003567171) (-0.001531807 0.03302833 -0.003583213) (0.0005120635 0.03302509 -0.003575057) (0.002532034 0.03302007 -0.003570561) (-0.001029153 -0.03403655 -0.001029984) (0.001028842 -0.03404247 -0.001028307) (0.002567424 -0.03504488 -0.001537095) (-0.003050057 -0.03001751 -0.001022837) (0.003045727 -0.03001263 -0.001013661) (0.004563247 -0.03100885 -0.001519948) (-0.005572128 -0.0270122 -0.001511948) (-0.003042033 -0.02601055 -0.001014702) (0.003044032 -0.02600957 -0.001013753) (-0.005060778 -0.02200992 -0.001008006) (0.005060568 -0.02200695 -0.001009953) (0.006576737 -0.0230092 -0.001514648) (-0.007562943 -0.01900492 -0.00150685) (-0.005050363 -0.01800582 -0.001008379) (0.005050094 -0.01800447 -0.001008702) (-0.007578247 -0.01500413 -0.001514327) (-0.005042431 -0.01400319 -0.00100807) (0.005040956 -0.01400253 -0.001007369) (-0.007567228 -0.01100498 -0.001510087) (-0.005039926 -0.01000216 -0.001007386) (0.005036381 -0.01000187 -0.001006566) (-0.007059859 -0.006001695 -0.001005883) (-0.005036549 -0.006001096 -0.001006933) (0.00503609 -0.006001529 -0.001006015) (0.007058424 -0.006002459 -0.00100412) (0.008563697 -0.007003386 -0.001503741) (-0.007031085 -0.0020003 -0.00100711) (0.00704209 -0.002000987 -0.001006063) (0.008580426 -0.003001887 -0.001508886) (-0.007027515 0.002000717 -0.001007969) (0.007030236 0.002000423 -0.001006336) (0.00853818 0.001000569 -0.001509431) (-0.007055614 0.006000824 -0.001006758) (-0.005034925 0.006000903 -0.001007322) (0.007050453 0.006000674 -0.001006209) (0.008576035 0.00500062 -0.001511284) (-0.007563951 0.009001715 -0.001509173) (-0.00503912 0.01000172 -0.001007867) (0.005044576 0.01000236 -0.001008125) (0.00859004 0.009003484 -0.001509997) (-0.007573401 0.01300476 -0.001515359) (-0.005041942 0.01400315 -0.001008533) (0.005050048 0.01400404 -0.001009269) (-0.007566441 0.01700369 -0.0015158) (-0.005050497 0.01800551 -0.001008457) (0.005055869 0.01800544 -0.001009297) (-0.005061782 0.02200822 -0.001007836) (0.005064457 0.02200776 -0.001009868) (0.006579211 0.02100723 -0.001513176) (-0.005583836 0.02501386 -0.001513644) (-0.003043526 0.02601179 -0.001011857) (0.003044579 0.02601189 -0.001014331) (0.006571121 0.02501106 -0.001512565) (-0.005559593 0.0290138 -0.00151242) (-0.003049841 0.03001704 -0.001013777) (0.003048567 0.03001582 -0.001019471) (0.004563436 0.02901398 -0.001520406) (-0.003572431 0.03302185 -0.001524178) (-0.001029285 0.03404191 -0.001026207) (0.001027974 0.03404342 -0.001028549) (-0.001550715 0.03706996 -0.001548733) (0.0005124898 0.0370705 -0.001555358) (-0.003554135 -0.0350158 0.0005072746) (-0.001029913 -0.03404054 0.00103173) (0.001026067 -0.03404094 0.001030738) (0.002552999 -0.0350396 0.0005172818) (-0.003051468 -0.03001374 0.001015359) (0.00305056 -0.03001445 0.001016459) (0.004576535 -0.03101051 0.0005150386) (-0.00559289 -0.02701422 0.000504565) (-0.003044957 -0.02601032 0.001013883) (0.003044287 -0.02601015 0.001015267) (-0.005063896 -0.02200981 0.001008519) (0.005062008 -0.02200818 0.00100976) (0.006580697 -0.02301022 0.0005046665) (-0.007589602 -0.01901495 0.0005041505) (-0.005049284 -0.01800537 0.001006852) (0.00505154 -0.01800495 0.001008935) (-0.007570666 -0.01500251 0.0005017608) (-0.005039952 -0.01400285 0.001005616) (0.005041308 -0.01400241 0.0010083) (-0.007559834 -0.01100353 0.0005018885) (-0.005037657 -0.010002 0.001006019) (0.005036343 -0.01000166 0.001007361) (-0.007054905 -0.006000591 0.001005307) (-0.005034791 -0.006000854 0.001006583) (0.005036258 -0.006001463 0.00100684) (0.007059442 -0.00600268 0.001006019) (0.008610346 -0.007004633 0.000503244) (-0.007028452 -0.001998848 0.00100718) (0.007039811 -0.002001361 0.001007) (0.008535124 -0.003002461 0.0005055088) (-0.007028158 0.002000556 0.001006322) (0.007030886 0.001999881 0.001005763) (0.008489281 0.0009999384 0.0005022023) (-0.00705564 0.006001013 0.001005802) (-0.005034909 0.006000741 0.001006928) (0.005036529 0.006000668 0.001007323) (0.007053708 0.006000074 0.001006826) (0.008519344 0.004998914 0.0005041732) (-0.007571767 0.009000909 0.0005019534) (-0.005038467 0.01000105 0.001006503) (0.005043071 0.01000185 0.001008365) (0.008629041 0.00900245 0.0005091039) (-0.007561578 0.01300258 0.0004981854) (-0.005040322 0.01400213 0.00100586) (0.005046916 0.01400348 0.001008459) (-0.0075618 0.0170046 0.0005014418) (-0.005049051 0.01800446 0.00100743) (0.005054891 0.01800497 0.001009098) (-0.005064499 0.02200797 0.001009736) (0.005066095 0.02200803 0.001008831) (0.006579437 0.02100663 0.0005035949) (-0.005583554 0.02501242 0.0005046289) (-0.003044426 0.02601149 0.00101483) (0.003046928 0.02601274 0.00101507) (0.00659561 0.02501495 0.0005045452) (-0.00558029 0.02902006 0.0005028743) (-0.003048797 0.03001775 0.001014399) (0.003054201 0.03001846 0.00101886) (0.004578802 0.02901506 0.000508458) (-0.003554597 0.03302038 0.0005112078) (0.001029093 0.03404464 0.001035843) (0.004540726 0.033007 0.0005126932) (-0.001568054 0.03706138 0.0005268685) (0.0005258015 0.03705693 0.0005302707) (-0.00154258 -0.03504772 0.002581162) (0.0005118927 -0.03504447 0.002570256) (0.002543622 -0.03502303 0.002545537) (-0.003560198 -0.03101644 0.002537418) (-0.001016325 -0.03001966 0.003060145) (0.001014974 -0.03001648 0.003057261) (0.004578935 -0.03101917 0.002531727) (-0.005586106 -0.0270157 0.002525014) (-0.003047099 -0.02601331 0.003049141) (-0.001013875 -0.02601323 0.003051454) (0.001014615 -0.02601224 0.003051502) (0.003046341 -0.02601174 0.003050707) (0.004572961 -0.02701237 0.002535382) (-0.005574207 -0.0230129 0.002528201) (-0.003035277 -0.02200819 0.003038035) (0.003036982 -0.02200776 0.003038598) (0.006579723 -0.02301257 0.002525122) (-0.005047049 -0.01800432 0.003024243) (0.005054506 -0.01800592 0.003031471) (0.006576019 -0.01901052 0.002524295) (-0.00755327 -0.01500208 0.002509586) (-0.005039019 -0.01400306 0.003021677) (0.005046178 -0.01400282 0.003027299) (0.006569556 -0.01500405 0.002525882) (-0.007561558 -0.01100568 0.002515325) (-0.005037946 -0.01000212 0.003022319) (0.005040129 -0.01000174 0.003023194) (-0.007556389 -0.007001444 0.002515124) (-0.005036671 -0.006000969 0.003022433) (0.005037803 -0.006001296 0.003020822) (-0.007551539 -0.002999306 0.002517664) (-0.005036024 -0.002000422 0.00302352) (0.005036553 -0.002000796 0.003021134) (0.008552819 -0.003002729 0.002512394) (-0.00755806 0.001000366 0.002520217) (-0.005035762 0.00200034 0.003023619) (0.005036832 0.001999992 0.003021717) (0.008581413 0.0009998443 0.002520612) (-0.007550296 0.005002606 0.002515937) (-0.00503718 0.006000929 0.003023344) (0.005039677 0.006000671 0.003023623) (0.008555284 0.004999826 0.002507202) (-0.007563628 0.009000948 0.002520666) (-0.005040612 0.01000103 0.003023601) (0.005044321 0.01000202 0.003026477) (-0.007573547 0.01299705 0.002516705) (-0.005041086 0.01400166 0.003022771) (0.005048501 0.01400415 0.003027601) (-0.007557957 0.01700527 0.002513453) (-0.005045283 0.01800342 0.003025276) (0.005057927 0.01800678 0.003031092) (0.006579392 0.01700653 0.002525051) (-0.003035977 0.02200776 0.003038386) (0.003037645 0.02200886 0.003035868) (0.006585225 0.02100948 0.002524518) (-0.005588607 0.02501489 0.002537721) (-0.00304667 0.02601199 0.003049853) (-0.001014072 0.02601266 0.003050473) (0.001015326 0.0260138 0.003051036) (0.003046763 0.02601576 0.003048415) (-0.001014237 0.03001989 0.003056629) (0.001018686 0.03002266 0.00306402) (0.004579055 0.02902257 0.002535131) (-0.003563652 0.03302964 0.002525662) (0.002554207 0.03303857 0.002572215) (-0.001521542 -0.03102573 0.004585759) (0.0005096103 -0.03102027 0.004579977) (0.002530377 -0.03101515 0.004564947) (-0.003551495 -0.02701773 0.004581766) (0.002542481 -0.02701821 0.004590202) (0.004551587 -0.02700501 0.004552234) (-0.00556581 -0.02301007 0.00454372) (-0.001008922 -0.02200967 0.005064606) (0.001009828 -0.02200844 0.005063287) (0.004553529 -0.02300873 0.004557719) (-0.005557377 -0.01900612 0.004545485) (-0.003024441 -0.01800425 0.005052518) (-0.001007149 -0.01800526 0.005052028) (0.00100858 -0.01800523 0.005051353) (0.003029366 -0.01800541 0.005053567) (0.0065486 -0.0190029 0.004536384) (-0.005548873 -0.01500573 0.004540453) (-0.003022459 -0.01400291 0.005045878) (-0.001006601 -0.01400319 0.005044394) (0.001007868 -0.01400311 0.005044622) (0.003025374 -0.01400242 0.005045317) (0.006566947 -0.01500421 0.004548314) (-0.005043116 -0.01000252 0.00504603) (-0.003022154 -0.01000188 0.005042484) (-0.001006511 -0.01000185 0.005040261) (0.001007338 -0.01000171 0.005040306) (0.003022543 -0.01000148 0.00504055) (0.00504286 -0.01000205 0.005043653) (0.00656139 -0.01100315 0.004546922) (-0.00757611 -0.007000429 0.004534236) (-0.005043902 -0.006001304 0.005044309) (-0.00302242 -0.006001062 0.005038624) (0.003022524 -0.006001011 0.005036697) (0.005040324 -0.00600121 0.005036118) (0.006558155 -0.007000782 0.004531461) (-0.007573813 -0.003001414 0.004546998) (-0.005042504 -0.002001295 0.005043583) (-0.003022922 -0.002000551 0.005037787) (0.003023618 -0.002000439 0.005036836) (0.005044993 -0.002000843 0.005040924) (0.006557592 -0.003001172 0.004535575) (-0.007584753 0.00100147 0.004548439) (-0.005042034 0.002000703 0.005045556) (-0.003023298 0.002000447 0.005038687) (0.003024587 0.002000489 0.00503928) (0.005043306 0.002000847 0.005042608) (0.006556404 0.0009995038 0.004531533) (-0.007547808 0.005000584 0.004528926) (-0.005044721 0.006001439 0.005045479) (-0.003023301 0.006001186 0.005039642) (0.003025675 0.006001158 0.005042793) (0.005048814 0.006001313 0.005048917) (0.006560645 0.005000462 0.00453926) (-0.007575623 0.009000429 0.004545497) (-0.005046051 0.01000266 0.00504455) (-0.003022965 0.01000183 0.005041585) (-0.001006498 0.01000166 0.005040415) (0.001008442 0.01000185 0.005041978) (0.003025747 0.01000222 0.00504551) (0.005047236 0.01000341 0.005049203) (0.006564586 0.009001973 0.004545136) (-0.003023571 0.0140027 0.005044681) (-0.001006519 0.01400244 0.005044338) (0.001008782 0.01400245 0.005045255) (0.003027469 0.01400322 0.005047045) (0.006566351 0.01300553 0.004545147) (-0.005553202 0.01700391 0.0045437) (-0.003025611 0.01800451 0.005050731) (-0.001007364 0.01800429 0.005051162) (0.001010081 0.01800358 0.005050844) (0.003030118 0.01800404 0.005049625) (0.006574851 0.01701622 0.004549424) (-0.005561477 0.02100533 0.004541443) (-0.001010589 0.0220082 0.005064139) (0.001011627 0.02200794 0.005061223) (0.004555671 0.02100927 0.004552422) (-0.003549577 0.0250154 0.004581313) (0.004553271 0.02501602 0.004550682) (-0.003553512 0.02901314 0.004568851) (-0.001523138 0.02901761 0.004580506) (0.0005091271 0.0290207 0.004593014) (0.002542179 0.02902165 0.004592226) (0.0005103176 0.03301784 0.004556254) (-0.001513963 -0.02301376 0.006588418) (0.0005011335 -0.0230069 0.0065708) (0.00251963 -0.02300602 0.006559153) (-0.003526678 -0.01900528 0.006574178) (-0.001509488 -0.01900684 0.00657563) (0.0005022593 -0.01900788 0.006572016) (0.002523272 -0.01900877 0.00657239) (0.004528812 -0.0190044 0.006544457) (-0.003531863 -0.01500259 0.006572531) (0.002520826 -0.01500318 0.006565405) (0.004540448 -0.01500224 0.006557674) (-0.005561706 -0.01100447 0.006583085) (0.004541776 -0.01100253 0.006564142) (-0.005554596 -0.007001423 0.006561467) (-0.001005785 -0.006002129 0.007047957) (0.001008355 -0.006000688 0.007050737) (0.004534325 -0.007002498 0.006545484) (-0.005564276 -0.003002461 0.006575611) (-0.001008231 -0.002000851 0.007031465) (0.001007007 -0.002000145 0.007031477) (0.004545809 -0.003001737 0.006561951) (-0.0055372 0.001002058 0.006556987) (-0.001008176 0.002000146 0.007031987) (0.001008008 0.002000092 0.007034951) (0.004542907 0.001001627 0.006563507) (0.006492327 0.0009999661 0.006491792) (-0.005573147 0.00500219 0.006582954) (-0.001008133 0.006001548 0.007048943) (0.001008821 0.006000927 0.007052775) (0.004548838 0.005001364 0.006571126) (-0.005543213 0.009004133 0.006549897) (0.004547712 0.009003746 0.006575156) (-0.005540548 0.01300411 0.00654922) (0.004539959 0.01300371 0.006561799) (-0.003532766 0.0170061 0.006571432) (0.002525977 0.01700189 0.006567695) (0.004548075 0.01700609 0.00657215) (-0.003531621 0.02100689 0.006578532) (-0.00151425 0.02100782 0.006579694) (0.0005067777 0.02100588 0.006572555) (0.002523334 0.02100486 0.006558251) (-0.001518525 0.02501308 0.006582813) (0.000504147 0.02500986 0.006582598) (0.0005032242 -0.01100338 0.008572825) (-0.001508218 -0.007002948 0.008596522) (0.0005032094 -0.007000099 0.008572016) (0.002531093 -0.007001635 0.008598807) (-0.001514372 -0.003002594 0.008537969) (0.0005024804 -0.002999724 0.0084966) (0.002520262 -0.003000297 0.008579818) (-0.001512912 0.001000383 0.008539413) (0.0005019586 0.0009998479 0.008501172) (0.002520935 0.001000726 0.008585893) (-0.001515886 0.004998795 0.008571984) (0.0005041235 0.004999298 0.008521076) (0.002520385 0.005000992 0.008583011) (-0.001507851 0.009002946 0.008590722) (0.0005040954 0.009005797 0.008612496) (-0.0002479931 -0.008500234 -0.009762526) (-0.0004974386 -0.01100031 -0.008530305) (-0.001503178 -0.009000811 -0.008536519) (-0.0004988684 -0.009000695 -0.00853597) (-0.0002514853 -0.007502007 -0.009815628) (-0.001733097 -0.004502806 -0.009733606) (-0.00150597 -0.007000816 -0.008541104) (-0.00050035 -0.007000629 -0.008541193) (-0.001506215 -0.005000682 -0.008547465) (-0.0005018803 -0.005000121 -0.008534589) (-0.001511062 -0.003000386 -0.008566746) (-0.0005024208 -0.00299946 -0.008519917) (-0.001516783 -0.001000569 -0.008570689) (-0.0005028145 -0.0009989643 -0.00851193) (0.001758602 -0.0004971205 -0.009804034) (0.0005031269 -0.002999731 -0.008513296) (0.001512952 -0.003002111 -0.008561353) (0.0005028207 -0.0009980515 -0.008506787) (0.001510555 -0.0009998478 -0.008546371) (-0.001513548 0.00100033 -0.00856419) (-0.0005028903 0.001000158 -0.008509594) (-0.001513837 0.00300083 -0.008575202) (-0.0005039548 0.002999539 -0.008521168) (-0.00151617 0.005001548 -0.008591374) (-0.0005033445 0.005000312 -0.008546121) (-0.001512225 0.007001223 -0.008580526) (-0.0005015446 0.007000714 -0.008546218) (-0.001504223 0.009001434 -0.008539435) (-0.0005004354 0.00899979 -0.008526203) (-0.0005009308 0.01099991 -0.008527936) (-0.0004999273 -0.007004068 0.008567392) (-0.001512928 -0.005011022 0.008577794) (-0.0005021946 -0.005003724 0.008515441) (-0.0005033045 -0.003001183 0.00849664) (-0.00151601 -0.001000486 0.008539895) (-0.0005042222 -0.001000141 0.008499397) (0.001511346 0.001000238 0.008541963) (0.000503437 0.002998944 0.008504417) (0.001515019 0.002998884 0.008554966) (0.001513144 0.004998964 0.008586153) (0.0005055413 0.007000887 0.008567115) (0.001517417 0.007001779 0.0086011) (0.0002397524 -0.008499065 -0.009771705) (0.0005032205 -0.01100008 -0.00853572) (0.0005061322 -0.009002575 -0.008579567) (0.001509486 -0.009001616 -0.008575684) (0.0002489826 -0.004497172 -0.00967715) (0.000506079 -0.007001629 -0.008579579) (0.00152012 -0.006999309 -0.00860821) (0.0005041509 -0.005000409 -0.008535842) (0.001513908 -0.00500201 -0.008581567) (0.00223454 -0.0004694569 -0.009743974) (0.002524031 -0.003000879 -0.008583314) (0.002522008 -0.001001605 -0.008582179) (0.001771562 0.0004719121 -0.009811981) (0.0005017807 0.00100066 -0.008505518) (0.001511212 0.00100035 -0.00854371) (0.0005017309 0.0029999 -0.008513931) (0.001510176 0.003000696 -0.008552664) (0.0002511286 0.00750126 -0.009793558) (0.000503953 0.005000815 -0.008547685) (0.001512131 0.005002949 -0.008593673) (0.0005058716 0.007002486 -0.00856314) (0.001516364 0.00700583 -0.008608919) (0.000503569 0.009001833 -0.008537721) (0.001509352 0.009002763 -0.008553799) (0.0005012375 0.01100093 -0.008527631) (0.001515064 -0.007001673 0.00860861) (0.0005053912 -0.005000146 0.008517316) (0.001520722 -0.005001192 0.008584407) (0.001511913 -0.00299952 0.008539215) (0.0005008453 -0.0009997554 0.008498566) (0.001507231 -0.0009996059 0.008536214) (-0.0005036099 0.0009999117 0.008499458) (-0.001511261 0.003000045 0.008537012) (-0.0005033774 0.002999468 0.008497797) (-0.0005057902 0.005000071 0.008514823) (-0.001516513 0.007004157 0.008603081) (-0.0005095344 0.007006478 0.008570474) (-0.0007487057 -0.009499833 -0.009263766) (-0.0002476376 -0.009462361 -0.009721952) (-0.0002482752 -0.008500666 -0.009282038) (-0.0007427662 -0.009461524 -0.009697909) (-0.0007492802 -0.008500403 -0.009262013) (-0.0007512646 -0.006501028 -0.009299793) (-0.0002548694 -0.006524641 -0.009854114) (-0.0002500694 -0.007501064 -0.00930625) (-0.0007503601 -0.007500703 -0.009283147) (-0.0002508323 -0.006501418 -0.009317235) (-0.0007534271 -0.005500734 -0.009307252) (-0.0002508134 -0.005499536 -0.009733546) (-0.0002515358 -0.004499101 -0.009259081) (-0.00025217 -0.005499666 -0.00928549) (-0.0007535073 -0.004500306 -0.009306958) (-0.0002505248 -0.003498746 -0.009237217) (-0.0007537071 -0.003499569 -0.009279124) (-0.000745136 -0.000499111 -0.009717825) (-0.0002485327 -0.0004978138 -0.009235105) (0.0002537102 -0.001492275 -0.009731203) (0.0002520427 -0.0004952803 -0.009234062) (0.0007492545 -0.001492192 -0.009713224) (0.0007535862 -0.0004945083 -0.009238084) (0.001253005 -0.001496488 -0.009260523) (0.001758642 -0.001469462 -0.009784511) (0.00176137 -0.0005001993 -0.00930535) (0.001242821 -0.001493831 -0.009717804) (0.001259828 -0.0004961058 -0.009275093) (-0.0007545825 0.00550006 -0.009319086) (-0.0007516102 0.004499226 -0.009744169) (-0.0002497168 0.004499024 -0.009255259) (-0.0007510717 0.005488122 -0.009846383) (-0.0007558556 0.004498544 -0.009288359) (-0.0002489948 0.005500768 -0.009299425) (-0.0007533141 0.006501294 -0.00931656) (-0.0007496121 0.007500786 -0.00977731) (-0.000249136 0.00750076 -0.009293147) (-0.0007512856 0.006502892 -0.009821486) (-0.0002493439 0.006501281 -0.009316013) (-0.0007515714 0.007500482 -0.009285942) (-0.0007499193 0.009496252 -0.009263323) (-0.0002468666 0.009491265 -0.009706376) (-0.0002491246 0.008499417 -0.009263063) (-0.0007501153 0.008498711 -0.009259581) (-0.0002500403 0.009498412 -0.009251176) (-0.002524639 -0.007002623 -0.008578532) (-0.002511541 -0.005001075 -0.008557147) (-0.001250937 -0.006500786 -0.0092816) (-0.001246448 -0.007500015 -0.009740171) (-0.001720884 -0.006498265 -0.009686317) (-0.001761237 -0.007496516 -0.009304466) (-0.001248653 -0.006500764 -0.009781201) (-0.001251096 -0.007500349 -0.009275644) (-0.001752103 -0.006501507 -0.009271702) (-0.002519823 -0.003000093 -0.008586427) (-0.002522571 -0.001000963 -0.008598478) (-0.001266201 -0.003504205 -0.00982675) (-0.001257138 -0.003500212 -0.009311386) (0.0007450452 0.0005025337 -0.009713141) (0.00252251 0.0009990703 -0.008590894) (0.002522015 0.003000405 -0.008579962) (0.0002628717 0.00562787 -0.009837779) (0.0002510069 0.004498435 -0.009244732) (0.00025255 0.005499492 -0.009305796) (-0.001253138 0.0094996 -0.009281075) (-0.001232545 0.008490653 -0.00969867) (-0.001752383 0.008500942 -0.009281652) (-0.001181104 0.009365829 -0.009655915) (-0.001253079 0.008500873 -0.009271253) (-0.001746193 0.009499074 -0.009244715) (0.0002489703 0.009494616 -0.009707784) (0.0002518811 0.008500584 -0.009271082) (0.0007348386 0.008499546 -0.009735965) (0.000755244 0.008502646 -0.009309612) (-0.00124013 -0.008491203 -0.00969632) (-0.001750649 -0.008500107 -0.009283015) (-0.001176015 -0.009371152 -0.009662144) (-0.001251462 -0.00850094 -0.009268712) (-0.001253153 -0.005500864 -0.009293193) (-0.001727775 -0.005499526 -0.009694756) (-0.001257398 -0.004501333 -0.009804455) (-0.001755453 -0.004500861 -0.009317104) (-0.00125209 -0.005500867 -0.009791196) (-0.001753767 -0.005501107 -0.00928898) (-0.001255923 -0.004500632 -0.009304979) (-0.000750823 0.01050085 -0.009298036) (-0.0002393301 0.01037102 -0.009661702) (0.0002950199 -0.005663085 -0.009829426) (0.001247237 0.0005026977 -0.009722254) (0.001760964 0.0005007724 -0.009299952) (0.001255452 0.0005034149 -0.009264538) (0.0002512209 0.0065052 -0.00983514) (0.0002532848 0.007501758 -0.009301988) (0.0002533659 0.0065019 -0.009322378) (0.0007594848 0.006504114 -0.009340197) (0.0007431285 0.007499719 -0.009794119) (0.0007543544 0.006501494 -0.00981924) (0.0007619611 0.007504563 -0.009342331) (0.0002369902 -0.006510561 -0.009822879) (0.002522905 -0.006999235 -0.008583815) (0.002516993 -0.005000943 -0.008565355) (-0.00252503 0.0009999253 -0.008607123) (-0.002523396 0.00300128 -0.008598258) (-0.00251697 0.005002089 -0.008579523) (-0.002517043 0.00700406 -0.008572247) (-0.001265968 0.005501548 -0.009361296) (-0.001259798 0.004501538 -0.009823406) (-0.001243653 0.005500996 -0.009804889) (0.002516346 0.005001248 -0.008575918) (-0.001504558 -0.02500726 -0.006556064) (-0.0005023126 -0.02501624 -0.006568537) (0.0005014555 -0.02501862 -0.006577079) (0.001507119 -0.02500921 -0.006549987) (-0.002510079 -0.02300237 -0.006535957) (-0.003531912 -0.02100846 -0.006555564) (-0.002517221 -0.02100334 -0.006550665) (-0.001504809 -0.0230062 -0.006554911) (-0.0005008364 -0.02300956 -0.00656855) (-0.001508936 -0.02100241 -0.006557908) (-0.0005015854 -0.02100455 -0.006565853) (0.0005022759 -0.02301048 -0.006568697) (0.001507548 -0.02300945 -0.00655726) (0.0005028396 -0.02100635 -0.006564929) (0.001507959 -0.02100643 -0.006563531) (0.00251833 -0.02300968 -0.006554672) (0.002516572 -0.02100531 -0.006559849) (0.003523736 -0.02100306 -0.006553149) (-0.004521035 -0.01900352 -0.006535158) (-0.004531166 -0.0170042 -0.006553781) (-0.002517238 -0.0170033 -0.00756519) (-0.003526987 -0.01900569 -0.00656041) (-0.002521339 -0.01900304 -0.006566803) (-0.003526967 -0.01700446 -0.006569548) (-0.002520951 -0.01700349 -0.006570099) (-0.0005019359 -0.01900774 -0.007577819) (-0.001509897 -0.01700195 -0.007565705) (-0.000502142 -0.01700359 -0.007569116) (-0.001511739 -0.01900214 -0.006563304) (-0.0005028152 -0.01900373 -0.006564509) (0.001507477 -0.0190043 -0.007567705) (0.0005041435 -0.01700549 -0.007569512) (0.001509088 -0.01700778 -0.007570326) (0.0005034379 -0.01900472 -0.006565023) (0.001510037 -0.01900447 -0.006568816) (0.002520664 -0.01700676 -0.007568993) (0.002520364 -0.01900343 -0.00657134) (0.003529483 -0.01900316 -0.006566101) (0.002523574 -0.01700528 -0.006570651) (0.003536645 -0.01700659 -0.006575329) (0.004526201 -0.01900451 -0.006544231) (0.004550564 -0.01700887 -0.006578488) (-0.004530482 -0.01500461 -0.006562029) (-0.005535691 -0.01300243 -0.006542718) (-0.004534144 -0.01300352 -0.006556441) (-0.002519565 -0.01500457 -0.007566287) (-0.003532011 -0.01300331 -0.007579998) (-0.002519543 -0.0130029 -0.007572992) (-0.003528182 -0.0150044 -0.006570062) (-0.003529986 -0.01300327 -0.006565201) (0.003527177 -0.01500717 -0.007573304) (0.00252345 -0.01300618 -0.007569213) (0.003537845 -0.01301036 -0.007573664) (0.002523479 -0.01500579 -0.006566491) (0.003537714 -0.01500704 -0.006577921) (0.003537781 -0.01300717 -0.006573582) (0.004553677 -0.01500645 -0.006584097) (0.004551068 -0.01300796 -0.006583604) (0.005546148 -0.01300565 -0.006561004) (-0.004555153 -0.009002766 -0.007567715) (-0.005560183 -0.0110029 -0.006581786) (-0.004542669 -0.011003 -0.006561857) (-0.005557635 -0.009002132 -0.006558694) (-0.004549366 -0.009002277 -0.006561993) (-0.002517087 -0.0110024 -0.007570813) (-0.003538909 -0.00900463 -0.007570096) (-0.002518659 -0.009002446 -0.007562093) (-0.0004988108 -0.01100097 -0.007544266) (-0.001506176 -0.009001116 -0.007545923) (-0.0004998154 -0.009000782 -0.007540632) (0.001509805 -0.01100146 -0.007551665) (0.0005049332 -0.009001152 -0.007551635) (0.001510272 -0.009001408 -0.007558624) (0.004531847 -0.009003766 -0.007561698) (0.004543302 -0.0110046 -0.006570242) (0.005550859 -0.01100425 -0.006578915) (0.00453573 -0.009003938 -0.006561715) (0.005533165 -0.009002977 -0.006551337) (-0.004555585 -0.007002252 -0.007583399) (-0.004539144 -0.00500119 -0.007572309) (-0.005555831 -0.007001948 -0.00655741) (-0.004546954 -0.007001728 -0.006561025) (-0.005562894 -0.005001964 -0.006570442) (-0.004542591 -0.005001149 -0.006561491) (-0.002519575 -0.007002035 -0.007559954) (-0.003526663 -0.00500103 -0.007566587) (-0.002516203 -0.00500089 -0.007556317) (0.004540905 -0.005003074 -0.007570656) (0.004537087 -0.007004523 -0.006560116) (0.005548004 -0.007003378 -0.006561626) (0.004539737 -0.005003074 -0.006562088) (0.005563091 -0.005003348 -0.006581491) (-0.006512652 -0.001001209 -0.00651586) (-0.004540672 -0.002999559 -0.007587904) (-0.00453613 -0.0009986166 -0.007575378) (-0.005556872 -0.003001941 -0.006575295) (-0.004541074 -0.00300046 -0.006567118) (-0.005552931 -0.001000658 -0.006573442) (-0.004541575 -0.0009992537 -0.006569057) (-0.00251776 -0.003000073 -0.007565496) (-0.003527309 -0.0009991108 -0.007578766) (-0.002519981 -0.0009999813 -0.007572366) (0.003530352 -0.003001649 -0.007572792) (0.002520192 -0.001000755 -0.007564737) (0.003527291 -0.001001084 -0.0075736) (0.0045254 -0.001001809 -0.007557196) (0.004535746 -0.003002297 -0.006560954) (0.005548777 -0.003003133 -0.006572601) (0.004526801 -0.00100165 -0.006550639) (0.005521018 -0.00100254 -0.006536662) (0.006480979 -0.001001549 -0.006478188) (-0.006519762 0.001002752 -0.006519156) (-0.004547714 0.001004059 -0.007595129) (-0.004550066 0.003002839 -0.0075855) (-0.005560629 0.001005079 -0.006575728) (-0.004546355 0.001002734 -0.006571991) (-0.005574675 0.00300476 -0.006584744) (-0.004548475 0.003002856 -0.006569418) (0.003533056 0.0009998659 -0.007581524) (0.002521084 0.003000458 -0.007566337) (0.003534763 0.003000452 -0.007580776) (0.004548343 0.003000939 -0.007587521) (0.004530719 0.0009996095 -0.006553053) (0.005524307 0.0009994846 -0.006535956) (0.004542812 0.003000867 -0.006563491) (0.005566972 0.003002361 -0.006573018) (0.006484054 0.001000584 -0.006483163) (-0.004535121 0.005002313 -0.007559059) (-0.004526723 0.007006349 -0.007553327) (-0.005564187 0.005002955 -0.00657457) (-0.004541176 0.005002807 -0.006559521) (-0.005544504 0.007003188 -0.006556159) (-0.004534146 0.007004368 -0.006557209) (0.004535026 0.007002416 -0.007552091) (0.004543455 0.005001507 -0.006561725) (0.005567166 0.005002298 -0.006581698) (0.004539187 0.007002294 -0.006555596) (0.005554197 0.007001995 -0.006560955) (-0.004542146 0.009007341 -0.007586841) (-0.005538192 0.00900365 -0.006562104) (-0.004535655 0.009004426 -0.006567123) (-0.005538092 0.0110025 -0.00657243) (-0.004535128 0.01100271 -0.006566083) (-0.002516464 0.009004132 -0.007566874) (-0.003527824 0.01100312 -0.007563033) (-0.002519962 0.01100461 -0.007572043) (-0.0005017589 0.009000826 -0.007537287) (-0.001509376 0.01100211 -0.007557397) (-0.0005023584 0.01100066 -0.007541005) (0.001509421 0.009002087 -0.00755017) (0.0005025561 0.01100126 -0.007541136) (0.001509721 0.0110026 -0.00755185) (0.004538503 0.00900374 -0.006564383) (0.005542743 0.009004475 -0.006563252) (0.004544618 0.01100509 -0.006578267) (0.005563258 0.01101229 -0.006602514) (-0.005536415 0.01300379 -0.006545764) (-0.004536983 0.01300601 -0.006566319) (-0.004544698 0.01500936 -0.006574041) (-0.002523783 0.01300619 -0.007576379) (-0.003528991 0.01500518 -0.007579073) (-0.002523227 0.01500547 -0.007579678) (-0.003530941 0.01300583 -0.006570154) (-0.003534095 0.01500703 -0.006579551) (-0.0005035556 0.01300077 -0.007563026) (-0.001511002 0.01500306 -0.007574664) (-0.0005047725 0.015003 -0.00758552) (0.003529411 0.01300542 -0.007565646) (0.002514208 0.01500277 -0.007561403) (0.003525459 0.01500268 -0.007566233) (0.003536437 0.01500421 -0.00657786) (0.004550101 0.01300447 -0.006588808) (0.005544307 0.0130049 -0.00657056) (0.00454525 0.01500474 -0.006577092) (-0.004539205 0.01700742 -0.00655758) (-0.004529557 0.0190029 -0.006531714) (-0.002521336 0.01700432 -0.007570327) (-0.003534422 0.01700685 -0.00657647) (-0.002524576 0.01700509 -0.006574575) (-0.003531616 0.01900767 -0.006564526) (-0.002523354 0.01900596 -0.006574908) (-0.0005090121 0.017005 -0.007574489) (-0.001512427 0.0190056 -0.007571201) (-0.0005062237 0.01900645 -0.007572378) (-0.001514914 0.01900552 -0.006569581) (-0.0005061995 0.01900472 -0.006564306) (0.001511216 0.01700554 -0.007564771) (0.0005032209 0.01900603 -0.007574204) (0.001510531 0.01900639 -0.007572674) (0.0005024328 0.01900491 -0.006564297) (0.001511207 0.01900534 -0.006568089) (0.002521562 0.0170047 -0.006568179) (0.003537665 0.01700594 -0.00657442) (0.002520825 0.01900641 -0.00657124) (0.003533531 0.01900917 -0.00656667) (0.004560714 0.0170081 -0.006575378) (-0.003526412 0.02100458 -0.006549484) (-0.002520922 0.02100419 -0.006558518) (-0.002524041 0.02300342 -0.006559428) (-0.001513087 0.02100506 -0.006562544) (-0.0005045459 0.02100478 -0.006560898) (-0.001512022 0.02300607 -0.006558186) (-0.0005037855 0.02300769 -0.006565411) (0.000501937 0.02100531 -0.006563195) (0.001508406 0.02100373 -0.006561048) (0.0005014466 0.02300779 -0.006567344) (0.001506172 0.02300385 -0.00655086) (0.002516969 0.02100393 -0.006552139) (0.003532861 0.02100866 -0.00655098) (0.002511593 0.02300113 -0.006534932) (-0.001514825 0.02501544 -0.006565959) (-0.0005043557 0.02501471 -0.00657528) (0.0005003405 0.02501577 -0.006577558) (0.001503455 0.02500571 -0.006549263) (-0.0005034349 -0.03300798 -0.004549243) (0.000510023 -0.03301794 -0.004563993) (-0.00253185 -0.03102239 -0.004584005) (-0.003545002 -0.0290162 -0.004577573) (-0.002538736 -0.0290236 -0.004590477) (-0.001511252 -0.02901425 -0.005573093) (-0.0005025218 -0.02901677 -0.005575483) (-0.001528536 -0.03102798 -0.004591697) (-0.0005053018 -0.03102781 -0.00459716) (-0.001523958 -0.02902333 -0.004592109) (-0.0005061707 -0.02902228 -0.004587323) (0.000504001 -0.0290214 -0.005578991) (0.001511097 -0.02901185 -0.005563415) (0.0005098105 -0.03103063 -0.004605719) (0.00151698 -0.03102552 -0.004587666) (0.0005067695 -0.02902267 -0.004587405) (0.001519266 -0.02901991 -0.004581164) (0.002522064 -0.03102115 -0.004565452) (0.002536111 -0.02902047 -0.004578766) (0.003559079 -0.02902114 -0.004578211) (-0.004538658 -0.02700911 -0.004554008) (-0.004546902 -0.02501227 -0.004560768) (-0.002527595 -0.02701209 -0.005573227) (-0.003533059 -0.02500756 -0.005567705) (-0.002525561 -0.02500842 -0.005570761) (-0.003546546 -0.02701415 -0.004576047) (-0.002535824 -0.02701593 -0.004580594) (-0.0035425 -0.02500997 -0.004570091) (0.002533083 -0.02501357 -0.005584031) (0.003542606 -0.02501185 -0.005581908) (0.00253762 -0.02701592 -0.004579296) (0.003553641 -0.02701617 -0.004578932) (0.003549186 -0.02501163 -0.004576525) (0.004552784 -0.02700939 -0.004554417) (0.004555966 -0.02500945 -0.004562174) (-0.004526579 -0.02300221 -0.005539173) (-0.004539525 -0.02100509 -0.005556253) (-0.005537432 -0.02300264 -0.004525569) (-0.004542536 -0.02300617 -0.004545796) (-0.005549888 -0.02100741 -0.004534513) (-0.004543508 -0.02100576 -0.004544667) (0.004541942 -0.02100688 -0.005570894) (0.004550265 -0.02300774 -0.004555725) (0.005544508 -0.02300626 -0.004536431) (0.004546637 -0.02100631 -0.004556621) (0.005553482 -0.02100601 -0.004549926) (-0.006536694 -0.01900505 -0.004523474) (-0.006545897 -0.01700459 -0.004529065) (0.006542303 -0.01900141 -0.004523913) (0.006555584 -0.01700334 -0.004531504) (-0.006552446 -0.01300299 -0.005533037) (-0.006554697 -0.01500557 -0.004530506) (-0.006567323 -0.01300481 -0.004540336) (0.006552285 -0.01300309 -0.005548112) (0.006563842 -0.01500424 -0.004541944) (0.006570097 -0.01300116 -0.00455113) (-0.006578686 -0.0110048 -0.005563244) (-0.006546852 -0.009002944 -0.005532344) (-0.006575809 -0.01100492 -0.004548505) (-0.007579003 -0.009003835 -0.004539258) (-0.006564725 -0.009003271 -0.004536706) (0.006543793 -0.009004223 -0.005537851) (0.00656468 -0.01100379 -0.0045491) (0.00655815 -0.009003945 -0.004536595) (0.007566945 -0.009002958 -0.004529783) (-0.006550621 -0.007001716 -0.005538997) (-0.006567182 -0.005002088 -0.005553264) (-0.007573087 -0.006999324 -0.00453087) (-0.006557663 -0.007001244 -0.004531654) (-0.007543498 -0.005000636 -0.004523301) (-0.006552841 -0.005001055 -0.004533995) (0.006572853 -0.005002594 -0.005562219) (0.006551892 -0.007003048 -0.004531874) (0.00755023 -0.007003492 -0.004522861) (0.006555372 -0.005002047 -0.004535334) (0.007561495 -0.005001418 -0.004527659) (-0.006573089 -0.003002813 -0.005564271) (-0.006559607 -0.001001651 -0.0055563) (-0.007565427 -0.003000747 -0.004539223) (-0.006557492 -0.003001099 -0.004541652) (-0.007578606 -0.001001533 -0.004554624) (-0.006560432 -0.00100039 -0.004544812) (0.006538013 -0.001001963 -0.005521095) (0.006559338 -0.003001806 -0.004535145) (0.007581321 -0.003001802 -0.004541776) (0.006555191 -0.00100088 -0.004530186) (0.007581532 -0.001000341 -0.004541303) (-0.0065663 0.001002327 -0.005552641) (-0.00658498 0.003005072 -0.005562442) (-0.00758543 0.001004024 -0.004548774) (-0.006563108 0.001001646 -0.004542637) (-0.007570762 0.003002104 -0.004533909) (-0.006560746 0.003002316 -0.004539712) (0.0065779 0.00300348 -0.005559702) (0.006554517 0.001000607 -0.004531714) (0.007580437 0.001000971 -0.004544933) (0.006558892 0.003001605 -0.004537466) (0.007568023 0.003002216 -0.004536445) (-0.006565179 0.00500282 -0.00556124) (-0.006547491 0.007001798 -0.005542934) (-0.007545104 0.005000944 -0.004525377) (-0.006551692 0.005001751 -0.004536587) (-0.007566904 0.007000437 -0.004535429) (-0.00655306 0.007001702 -0.004534934) (0.006570577 0.007001776 -0.005556608) (0.006559435 0.005001499 -0.004538275) (0.00755122 0.005001198 -0.004524901) (0.00656643 0.007001859 -0.00453975) (0.007585112 0.007000524 -0.004533226) (-0.006540028 0.009003223 -0.005531897) (-0.006562874 0.01100739 -0.005556395) (-0.00757016 0.009003489 -0.004536808) (-0.006557864 0.009003508 -0.004536449) (-0.006565783 0.01100545 -0.004544248) (0.006573036 0.01100678 -0.005569579) (0.006571271 0.00900302 -0.004544639) (0.00757792 0.009002306 -0.004536922) (0.00657717 0.01100301 -0.004548624) (-0.006552745 0.01300452 -0.005541357) (-0.006575161 0.01300625 -0.004550236) (-0.006567538 0.01500633 -0.004543035) (0.006573807 0.01300492 -0.004544137) (0.006579479 0.01500715 -0.004547869) (-0.006552675 0.0170056 -0.004538059) (-0.006541122 0.01900343 -0.004530119) (0.006587249 0.01700588 -0.004549156) (-0.004544696 0.02100518 -0.005555229) (-0.004536395 0.02300236 -0.005554468) (-0.005551176 0.02100738 -0.004534243) (-0.00454565 0.02100524 -0.004543119) (-0.005538836 0.02300492 -0.004521224) (-0.004543446 0.02300557 -0.004543093) (0.004527621 0.02300458 -0.005542798) (0.004554471 0.02100823 -0.00454719) (0.00556866 0.02100617 -0.004540434) (0.004548347 0.02300787 -0.004544986) (0.005544264 0.02300268 -0.004529802) (-0.00453979 0.02500711 -0.00453919) (-0.004539536 0.02700752 -0.00453236) (-0.002539715 0.02501835 -0.005595068) (-0.00253653 0.02701592 -0.00560238) (-0.003543849 0.02501242 -0.004564446) (-0.003552138 0.02701533 -0.00457179) (-0.002541782 0.0270172 -0.004585534) (0.003529416 0.02501222 -0.00556019) (0.002520643 0.02701299 -0.005572624) (0.002528891 0.02701616 -0.004577223) (0.003540736 0.02701563 -0.004569935) (0.004547991 0.02501147 -0.004547171) (0.004534346 0.02701072 -0.004549548) (-0.003560419 0.02902097 -0.004569288) (-0.002543051 0.02902174 -0.004585436) (-0.002530443 0.03101822 -0.004576903) (-0.0005042572 0.02901886 -0.005581572) (-0.001521902 0.02902131 -0.004589874) (-0.0005064594 0.02901986 -0.004591203) (-0.001521241 0.03102092 -0.004588884) (-0.0005046975 0.03102145 -0.004595249) (0.001507706 0.02901267 -0.005568654) (0.0005057328 0.02901899 -0.004593336) (0.0015171 0.02901857 -0.004589328) (0.0005082446 0.0310203 -0.004598478) (0.001517896 0.03101876 -0.004585857) (0.002531897 0.02902139 -0.004589575) (0.003542574 0.02901688 -0.004567045) (0.00252372 0.03102347 -0.004577135) (-0.0005038088 0.03301227 -0.00455106) (0.0005060516 0.03300916 -0.004559482) (-0.002552527 -0.03303352 -0.003595963) (-0.002550642 -0.03503633 -0.002566347) (-0.003576472 -0.03304433 -0.00258043) (-0.002562937 -0.03303943 -0.00258263) (-0.0005098541 -0.0350295 -0.003554786) (-0.001532499 -0.03303187 -0.003590613) (-0.0005088019 -0.03302617 -0.003570105) (-0.001553565 -0.03505128 -0.002580033) (-0.0005184732 -0.03504834 -0.002567746) (0.0005147618 -0.03303279 -0.003575891) (0.001531768 -0.03304076 -0.003588344) (0.0005181698 -0.03505995 -0.002581712) (0.001546609 -0.03505686 -0.002578284) (0.002531382 -0.03302742 -0.003561475) (0.002564275 -0.03502938 -0.002554966) (0.002552217 -0.03302734 -0.002550935) (0.003554167 -0.033016 -0.002529401) (-0.004559735 -0.02900861 -0.003549749) (-0.004557289 -0.03101988 -0.002543179) (-0.004559223 -0.02901331 -0.002537194) (0.004589195 -0.02901775 -0.003540112) (0.004557768 -0.03101139 -0.002525626) (0.004574094 -0.02901286 -0.002533328) (-0.004562626 -0.02701212 -0.00355491) (-0.005563637 -0.02500951 -0.003532926) (-0.00456095 -0.0250113 -0.003550899) (-0.005566518 -0.02700944 -0.002524552) (-0.004564567 -0.02701187 -0.002536558) (-0.005576138 -0.02501322 -0.002526191) (0.005572679 -0.02500938 -0.003536797) (0.004581676 -0.02701191 -0.002540144) (0.005589717 -0.02701165 -0.002538166) (0.005587326 -0.02501082 -0.002533557) (-0.006554 -0.02100984 -0.003531204) (-0.006563292 -0.02301436 -0.002516912) (-0.006562342 -0.02101073 -0.00251944) (0.00657044 -0.02100732 -0.003540399) (0.006561401 -0.02300823 -0.002517522) (0.006564316 -0.02100638 -0.002522121) (-0.00656301 -0.01900944 -0.003532559) (-0.006569521 -0.01700723 -0.003531797) (-0.006567288 -0.01900791 -0.002524977) (-0.007577314 -0.01700687 -0.002524321) (-0.006572278 -0.01700651 -0.002526029) (0.006568655 -0.01700619 -0.003528829) (0.006567404 -0.01900574 -0.002522093) (0.006569395 -0.01700514 -0.002520698) (0.007569085 -0.01700568 -0.002516918) (-0.006571688 -0.01500554 -0.003532186) (-0.007569466 -0.01300298 -0.003532113) (-0.006568123 -0.0130038 -0.003532972) (-0.007589571 -0.01500353 -0.002531362) (-0.006571019 -0.01500469 -0.00252564) (-0.007576542 -0.01300431 -0.002523095) (0.007556078 -0.01500445 -0.003520313) (0.006565858 -0.0130026 -0.003532192) (0.007570588 -0.0130026 -0.003525369) (0.006569844 -0.01500377 -0.002520434) (0.00759205 -0.01500286 -0.002522532) (0.00758546 -0.01300339 -0.002517827) (-0.008561253 -0.003001755 -0.002516912) (-0.008576417 -0.0009997212 -0.002524249) (0.008570288 -0.003001225 -0.002515024) (0.008588456 -0.001001437 -0.002522869) (-0.008575316 0.00100134 -0.002522713) (-0.008550812 0.003001048 -0.00251435) (0.00857926 0.0009998047 -0.002517888) (0.008561212 0.003001414 -0.00251374) (0.008547435 0.005001996 -0.002509923) (-0.006571286 0.01300589 -0.003537421) (-0.007566942 0.01500641 -0.003526725) (-0.006569171 0.01500652 -0.003533461) (-0.007573089 0.01300422 -0.002522394) (-0.007582188 0.01500237 -0.00252407) (-0.006564944 0.01500498 -0.002522056) (0.007594781 0.01300348 -0.003540233) (0.006596718 0.01500765 -0.003544171) (0.007595178 0.01500703 -0.003539204) (0.007605172 0.01300657 -0.002530487) (0.006588595 0.0150075 -0.002530558) (0.007607583 0.01501007 -0.002533079) (-0.006564735 0.01700757 -0.003529755) (-0.006569913 0.01901044 -0.003532554) (-0.007575284 0.01700743 -0.002517075) (-0.006568224 0.01700764 -0.002520958) (-0.006573424 0.01901001 -0.002522052) (0.006589484 0.01901212 -0.003544182) (0.00658261 0.01700858 -0.002528167) (0.00756939 0.01700664 -0.002519887) (0.006581583 0.01900993 -0.00252436) (-0.006569688 0.02101108 -0.003538527) (-0.006569449 0.02100762 -0.002522524) (-0.006569213 0.02300389 -0.002518562) (0.006572842 0.02100807 -0.002524675) (0.006577647 0.02300767 -0.002542599) (-0.004570162 0.0270169 -0.003543199) (-0.005579422 0.02501127 -0.002522779) (-0.005583809 0.02701888 -0.002529117) (-0.004576741 0.02701747 -0.002532864) (0.005572991 0.02501153 -0.003530141) (0.004569237 0.02701868 -0.003552345) (0.00558426 0.02501202 -0.002528892) (0.004573284 0.0270167 -0.002538007) (0.005582727 0.02701418 -0.002526923) (-0.004576171 0.02902183 -0.003555029) (-0.004577588 0.02902006 -0.002536308) (-0.004567238 0.03101614 -0.002529237) (0.004571028 0.02902038 -0.002544693) (0.004570187 0.03102453 -0.002547132) (-0.002539901 0.03302031 -0.003567616) (-0.003571154 0.03302139 -0.002529268) (-0.002554757 0.03303155 -0.002552687) (-0.002556244 0.03504442 -0.002560334) (-0.00050916 0.03302467 -0.003568106) (-0.0005083623 0.03502953 -0.003556479) (-0.001536973 0.03505051 -0.002568992) (-0.000512638 0.03504771 -0.002567333) (0.001527032 0.03302724 -0.003586341) (0.0005215683 0.03503704 -0.003583403) (0.0005182155 0.03505417 -0.00258206) (0.001539423 0.03504904 -0.002580735) (0.002559176 0.03303033 -0.002564257) (0.00357663 0.03302797 -0.002550889) (0.002553992 0.03503344 -0.002555515) (-0.001548012 -0.03705355 -0.001553421) (-0.0005119683 -0.03705353 -0.00155354) (-0.001563016 -0.03705308 -0.0005102921) (-0.0005155448 -0.03703448 -0.0005085185) (0.0005178893 -0.03705759 -0.001560419) (0.001555344 -0.03706644 -0.00155844) (0.0005279128 -0.03705506 -0.0005123913) (0.001571012 -0.03708955 -0.0005086889) (-0.004532308 -0.03300401 -0.0005034366) (-0.002566219 -0.03503868 -0.001543617) (-0.003572591 -0.03303002 -0.001544062) (-0.003554779 -0.0350205 -0.0005079062) (-0.002575593 -0.03503771 -0.0005173852) (-0.003556707 -0.03301859 -0.0005124938) (0.003554736 -0.03301914 -0.001523211) (0.002557299 -0.03504229 -0.0005077268) (0.00352193 -0.03501162 -0.0005009587) (0.003538935 -0.03301175 -0.0005038919) (0.004520059 -0.03299614 -0.0004982414) (-0.004568987 -0.03101718 -0.001525553) (-0.00554968 -0.02901059 -0.001508525) (-0.004566128 -0.02901497 -0.001521542) (-0.0045688 -0.03101124 -0.0005052025) (-0.005589583 -0.02901504 -0.0005015086) (-0.004574216 -0.02901286 -0.0005058935) (0.004568025 -0.02901061 -0.001520334) (0.005549505 -0.02900845 -0.001511804) (0.004570121 -0.03100465 -0.0005016044) (0.004570271 -0.0290105 -0.0005044982) (0.005569317 -0.02901477 -0.0005036202) (-0.006566453 -0.0250105 -0.001508532) (-0.006581188 -0.02500893 -0.0005021641) (0.006578111 -0.02500823 -0.001515307) (0.00658536 -0.02501265 -0.0005054604) (-0.00658449 -0.02301778 -0.001513071) (-0.006587142 -0.02101396 -0.001512547) (-0.006590925 -0.02301549 -0.0005044521) (-0.006595506 -0.02101576 -0.0005047637) (0.006580522 -0.02100752 -0.001513811) (0.006576955 -0.02300961 -0.0005054815) (0.006582534 -0.0210088 -0.0005059598) (-0.007561556 -0.01700365 -0.001508911) (-0.007586937 -0.01900617 -0.0005012329) (-0.007555105 -0.01700344 -0.0005016502) (0.007559776 -0.01900494 -0.001507997) (0.007561 -0.01700375 -0.001510707) (0.007579394 -0.01901003 -0.0005043124) (0.007554195 -0.0170042 -0.0005045073) (-0.008576066 -0.009006797 -0.00150718) (-0.008564365 -0.01100223 -0.0005013139) (-0.008608374 -0.009003741 -0.0005016601) (0.008557234 -0.009002312 -0.0004998398) (-0.008594248 -0.007003236 -0.001507101) (-0.008584668 -0.005002378 -0.001513657) (-0.008620447 -0.007001842 -0.0005029358) (-0.008550076 -0.004998857 -0.0005010184) (0.00859034 -0.005002721 -0.001506861) (0.0086127 -0.007004207 -0.0004998278) (0.008622048 -0.005006505 -0.0005004136) (-0.0085658 -0.003006129 -0.001510905) (-0.008533361 -0.001000536 -0.001510897) (-0.00849696 -0.002999595 -0.0005015915) (-0.008486083 -0.0009991693 -0.0005019304) (0.008555495 -0.001001309 -0.001511781) (0.008531239 -0.003002312 -0.0005005865) (0.008501308 -0.001000613 -0.0005018951) (-0.008529335 0.00100124 -0.001511685) (-0.008548857 0.003004557 -0.001518974) (-0.008483956 0.001000654 -0.0005034539) (-0.008491871 0.003001196 -0.0005069014) (0.008555854 0.003006046 -0.001507332) (0.008491315 0.001000071 -0.0005017554) (0.008491218 0.003000761 -0.0005016984) (-0.008578348 0.00500096 -0.001511045) (-0.008589343 0.007002177 -0.001507019) (-0.008551286 0.005000286 -0.0005047071) (-0.008622971 0.007000042 -0.0005031744) (0.008597359 0.007000208 -0.001510468) (0.008513718 0.004997778 -0.0005031379) (0.008577268 0.006998585 -0.0005015981) (-0.008565423 0.00900173 -0.001505306) (-0.008607149 0.009002419 -0.000501065) (-0.008562045 0.01100156 -0.0005037314) (0.008627434 0.00900223 -0.0005009538) (0.008571979 0.01100227 -0.0005018257) (-0.007570054 0.01900816 -0.001510937) (-0.0075593 0.01700599 -0.0005056161) (-0.007592144 0.01901359 -0.0005043841) (0.007575929 0.01700889 -0.001512057) (0.00658018 0.01900759 -0.001512983) (0.007580122 0.01900545 -0.001508438) (0.007570114 0.01700917 -0.000504352) (0.006574794 0.0190064 -0.0005045189) (0.007582977 0.01900607 -0.0005042276) (-0.006588161 0.02101141 -0.001514795) (-0.006585112 0.0230128 -0.001514577) (-0.0065935 0.02101166 -0.0005060542) (-0.006589422 0.02301208 -0.0005055492) (0.006580143 0.0230093 -0.001514246) (0.006579051 0.02100701 -0.0005039359) (0.006593323 0.02301043 -0.0005051298) (-0.006574586 0.02500995 -0.001508858) (-0.006576217 0.02501385 -0.0005032525) (0.006594938 0.02501398 -0.0005038527) (-0.004572945 0.02901778 -0.001518492) (-0.004567716 0.0310176 -0.001515625) (-0.005587165 0.02902169 -0.0005046581) (-0.004573085 0.02901752 -0.0005059109) (-0.004565754 0.0310157 -0.0005054916) (0.005543688 0.02900798 -0.001505853) (0.004559987 0.03101215 -0.001521204) (0.004566881 0.02901218 -0.0005034169) (0.0055632 0.0290121 -0.0004989403) (0.004562781 0.0310077 -0.0005016274) (-0.004531566 0.03300443 -0.0005032497) (-0.002566379 0.03504251 -0.001533067) (-0.003556364 0.0330184 -0.0005061469) (-0.003555076 0.03502002 -0.0005028069) (-0.002575806 0.03504319 -0.0005051386) (0.003560122 0.03301463 -0.001533877) (0.002559159 0.03502994 -0.001533593) (0.003540538 0.03300938 -0.0005077918) (0.002557821 0.03503746 -0.0005125945) (0.003523179 0.03500553 -0.000505627) (0.004517409 0.03299705 -0.0004995816) (-0.0005230492 0.03707188 -0.001566892) (-0.001568767 0.03706103 -0.0005109706) (-0.0005279799 0.03705863 -0.0005160379) (0.001554666 0.03707058 -0.001538219) (0.0005256775 0.03706567 -0.0005166887) (0.001577896 0.03709965 -0.0005184629) (-0.001557923 -0.0370665 0.0005184615) (-0.0005204365 -0.03705418 0.000535184) (-0.001551405 -0.03707424 0.001560104) (-0.0005233571 -0.03708269 0.0015755) (0.0005284249 -0.0370604 0.0005296066) (0.001576006 -0.03709766 0.0005343084) (0.0005137548 -0.03706944 0.001569161) (0.00155987 -0.03707015 0.001553044) (-0.004529475 -0.03300308 0.0005066357) (-0.002573865 -0.0350412 0.0005082726) (-0.003556475 -0.03301539 0.0005095458) (-0.002572679 -0.03504326 0.001532557) (-0.003574207 -0.03301933 0.001531537) (0.003519071 -0.03500754 0.0005094626) (0.003545985 -0.03301281 0.0005123711) (0.00255626 -0.03503132 0.001531839) (0.003564265 -0.03302046 0.00152253) (0.004540767 -0.03300262 0.000514865) (-0.004567363 -0.0310084 0.0005046682) (-0.005582568 -0.0290096 0.000503676) (-0.00457483 -0.02901042 0.0005048569) (-0.004572285 -0.03101063 0.001519371) (-0.005560148 -0.02900867 0.001507145) (-0.004575247 -0.02901099 0.001516794) (0.004576978 -0.02901319 0.0005093933) (0.005577549 -0.02901444 0.0005057272) (0.004582789 -0.03102153 0.001523043) (0.004579794 -0.02901528 0.001521527) (0.005570523 -0.02900877 0.00151492) (-0.006583602 -0.02501327 0.0005033534) (-0.006568294 -0.02501239 0.00150703) (0.006575245 -0.0250135 0.0005040462) (0.006558303 -0.02500835 0.001512627) (-0.006587817 -0.02301336 0.0005022034) (-0.006591522 -0.02101422 0.000501807) (-0.006567306 -0.02301141 0.001508001) (-0.006578259 -0.02101187 0.001507714) (0.006584895 -0.02100985 0.0005023353) (0.006589128 -0.02301069 0.001517098) (0.00658544 -0.02101064 0.001511133) (-0.00755598 -0.0170043 0.0005032125) (-0.007561823 -0.01900619 0.001506885) (-0.007557823 -0.0170014 0.001508826) (0.00758664 -0.01900439 0.0004983707) (0.007562043 -0.01700212 0.0005007237) (0.007569139 -0.01900482 0.001502949) (0.007570777 -0.01699922 0.001509833) (-0.008563086 -0.0110029 0.0005020739) (-0.008607227 -0.009003581 0.0005035683) (-0.008563128 -0.009004589 0.001506286) (0.008554046 -0.009001956 0.0005017509) (-0.008617863 -0.007003056 0.0005045122) (-0.008552474 -0.004998116 0.0005021672) (-0.008588517 -0.007001835 0.00150637) (-0.008582155 -0.004998459 0.001509112) (0.008623978 -0.005005917 0.000504277) (0.008567432 -0.007003779 0.001506213) (0.008596386 -0.005004375 0.00151062) (-0.008494099 -0.002995595 0.0005031619) (-0.0084842 -0.000997916 0.0005030596) (-0.008554237 -0.002991755 0.001510868) (-0.008529964 -0.0009978815 0.001514528) (0.008496955 -0.00100046 0.0005038403) (0.008574851 -0.003003377 0.001511556) (0.008545338 -0.001000986 0.001511942) (-0.008484292 0.001000169 0.0005015195) (-0.008492529 0.003000269 0.0005000287) (-0.008531727 0.001000185 0.001511475) (-0.008552887 0.003001539 0.001506778) (0.008491749 0.002999699 0.0005024502) (0.008538483 0.00100056 0.001508413) (0.008560967 0.003001618 0.001508507) (-0.008551061 0.00500089 0.0005008089) (-0.008626623 0.006999911 0.0005002331) (-0.008577488 0.005004404 0.001509822) (-0.008589189 0.007001918 0.001508664) (0.008597096 0.006999252 0.0005122362) (0.008586347 0.005000604 0.001508956) (0.008604991 0.006999291 0.001513809) (-0.008606538 0.009001709 0.0005018916) (-0.008560488 0.01100051 0.000500147) (-0.008565837 0.009000903 0.001507399) (0.008571602 0.01100127 0.0005060235) (0.00859542 0.00900087 0.001514189) (-0.007599143 0.01900828 0.0005020147) (-0.007559613 0.01700308 0.001509011) (-0.00756276 0.01900314 0.001508927) (0.007559477 0.01700531 0.0005011895) (0.007572195 0.01900541 0.0005024501) (0.00756704 0.01700521 0.001508852) (0.006578062 0.01900502 0.001513843) (0.007565873 0.01900385 0.001509991) (-0.006592045 0.02101009 0.0005019052) (-0.006588649 0.02300971 0.000501229) (-0.00658065 0.02100737 0.0015108) (-0.006574553 0.02300677 0.001509779) (0.006591963 0.02301086 0.0005027572) (0.006582304 0.0210064 0.001512051) (0.00657996 0.02300839 0.00150805) (-0.006580152 0.02500986 0.0005009393) (-0.006572765 0.02500735 0.001509475) (0.006581827 0.02501312 0.001510629) (-0.004571988 0.02901665 0.000504788) (-0.004563121 0.03101384 0.000505307) (-0.005560478 0.02901228 0.001509351) (-0.004572982 0.02901705 0.001516763) (-0.004570335 0.03101958 0.001515274) (0.005578523 0.02901302 0.0005063279) (0.004576779 0.03101539 0.0005123357) (0.004582627 0.02901974 0.001519931) (0.005569697 0.02901476 0.001510835) (0.004587224 0.03102431 0.001521478) (-0.004527677 0.0330051 0.0005059951) (-0.003551756 0.03502059 0.0005133938) (-0.002573743 0.03504389 0.0005177122) (-0.003570103 0.03303094 0.001526513) (-0.00256891 0.03504349 0.001537726) (0.003549098 0.0330142 0.0005139418) (0.002560005 0.03504181 0.0005175774) (0.003524159 0.03500858 0.0005112188) (0.003567682 0.03302367 0.001531958) (0.002573016 0.03504563 0.001549155) (-0.0005297473 0.03705289 0.0005399025) (-0.0005263 0.0370866 0.001580868) (0.001570541 0.03708436 0.0005204049) (0.0005135156 0.03707029 0.001572736) (0.001562802 0.03707144 0.001566293) (-0.002561518 -0.03504537 0.002553098) (-0.003560981 -0.03301716 0.002539602) (-0.002555116 -0.03303219 0.002555771) (-0.002539969 -0.03302517 0.00357303) (-0.0005130123 -0.03504662 0.002576432) (-0.0005065825 -0.03502942 0.003572637) (-0.001529578 -0.03303017 0.00359078) (-0.0005090226 -0.03302491 0.003572543) (0.00153202 -0.03503702 0.002563102) (0.0005087804 -0.03502726 0.003571119) (0.0005097684 -0.0330231 0.003570763) (0.001525604 -0.03302162 0.003575401) (0.002542793 -0.03302074 0.0025442) (0.003552102 -0.03301711 0.002522914) (0.002524541 -0.0330115 0.00355569) (-0.004564664 -0.03101659 0.002529108) (-0.004576453 -0.02901307 0.002531696) (-0.004567655 -0.02900841 0.003535978) (0.004575172 -0.02901531 0.002534089) (0.004574647 -0.02901359 0.003554332) (-0.004580373 -0.02701453 0.002532489) (-0.005588653 -0.02501652 0.002533072) (-0.004575213 -0.02701582 0.003547224) (-0.005587602 -0.02501772 0.003549259) (-0.004575686 -0.02501554 0.003553107) (0.005571797 -0.02701092 0.002525505) (0.005587863 -0.02501251 0.002528344) (0.004571623 -0.02701186 0.003554572) (0.004569636 -0.02501083 0.003550671) (0.005578195 -0.02501473 0.003537023) (-0.006555113 -0.02300974 0.002517289) (-0.006560392 -0.02100783 0.002514805) (-0.006554332 -0.02100598 0.003521683) (0.006575078 -0.02101264 0.002522389) (0.00658689 -0.02101321 0.003534631) (-0.006567632 -0.01900531 0.002517882) (-0.007564625 -0.01700256 0.002511234) (-0.006567137 -0.01700312 0.002516234) (-0.006565853 -0.01900528 0.00352777) (-0.006562663 -0.01700381 0.003524394) (0.006575976 -0.01700621 0.002525759) (0.00758077 -0.01700479 0.002521042) (0.006574302 -0.01901112 0.003540822) (0.006577575 -0.01700692 0.003540127) (-0.006555357 -0.01500267 0.002513851) (-0.007559561 -0.01300366 0.00251252) (-0.00754347 -0.01500401 0.003513629) (-0.006553895 -0.0150041 0.003523273) (-0.007549008 -0.01300387 0.003519975) (-0.006550538 -0.01300414 0.003524723) (0.007578552 -0.01500421 0.002525872) (0.007583631 -0.01300259 0.002524852) (0.006573288 -0.01500522 0.003539381) (0.007571141 -0.01500564 0.003538211) (0.006566819 -0.01300382 0.003536022) (0.007577994 -0.01300485 0.003533791) (-0.008545164 -0.004999358 0.002510799) (-0.008557772 -0.002998774 0.002514626) (-0.008579568 -0.001000122 0.00252346) (0.008577473 -0.001001548 0.002520652) (-0.008579449 0.0009997612 0.002521381) (-0.008556287 0.00300058 0.002513505) (0.008568516 0.003000527 0.002511296) (-0.007558894 0.0150004 0.002512155) (-0.007568881 0.01299857 0.003523425) (-0.007557949 0.01500197 0.00352653) (-0.006557967 0.01500249 0.00352747) (0.007587206 0.01300417 0.002527013) (0.006568938 0.0150046 0.00252227) (0.007574495 0.01500379 0.002519034) (0.00656691 0.01300416 0.003534842) (0.007576038 0.01300336 0.00353458) (0.006568735 0.01500604 0.003532514) (0.007556968 0.01500125 0.00351956) (-0.006557215 0.01700435 0.002518011) (-0.006563496 0.01900497 0.00252006) (-0.006554228 0.01700544 0.00352712) (-0.006557999 0.01900448 0.003530091) (0.007575607 0.01700456 0.002517098) (0.006587934 0.01900782 0.002527304) (0.006580693 0.01701065 0.003538343) (0.00658343 0.01901163 0.003540738) (-0.006561096 0.02100585 0.002519325) (-0.006560531 0.02300859 0.002521645) (-0.006552753 0.02100287 0.003525711) (0.006567551 0.02300761 0.002516996) (0.006578078 0.02101264 0.003529176) (-0.005588763 0.0270162 0.002538929) (-0.004577915 0.02701403 0.002538647) (-0.005580734 0.02501302 0.003547821) (-0.004573882 0.02701171 0.003554503) (0.005583964 0.0250141 0.002532397) (0.004573 0.02701721 0.002534026) (0.005573082 0.02701245 0.002526437) (0.004565264 0.02501629 0.003545893) (0.005570685 0.0250142 0.003541677) (0.004566168 0.02701848 0.003546831) (-0.004571848 0.02901628 0.002530212) (-0.004566544 0.03102085 0.002525557) (-0.004559993 0.02901054 0.003534147) (0.004589452 0.03102817 0.002536848) (0.004575654 0.02902619 0.003551791) (-0.002551671 0.0330323 0.002545453) (-0.002558001 0.03504374 0.002548054) (-0.002534067 0.03301904 0.003557375) (-0.001540839 0.03505225 0.002573403) (-0.0005199093 0.03505164 0.002577012) (-0.001523047 0.0330333 0.003579867) (-0.0005076094 0.03302868 0.003571647) (-0.0005182984 0.03503369 0.003579058) (0.0005125302 0.03505322 0.002577239) (0.001543964 0.03505716 0.002588453) (0.0005134674 0.03303025 0.003577036) (0.001534656 0.03303885 0.003597263) (0.0005121384 0.03503378 0.003573276) (0.003555094 0.03302718 0.002537719) (0.002558919 0.03504922 0.002587499) (0.002539006 0.03303707 0.003586477) (-0.0005036825 -0.03301217 0.004546294) (0.0005080414 -0.03301267 0.004552968) (-0.002538385 -0.0310241 0.004578914) (-0.003543536 -0.02901818 0.004586276) (-0.002541497 -0.0290229 0.004594355) (-0.0005072623 -0.03102438 0.00457935) (-0.001521942 -0.02902355 0.004592566) (-0.0005054518 -0.02902242 0.004588826) (-0.001509331 -0.02901782 0.005578946) (-0.000502683 -0.02902315 0.005597392) (0.001519611 -0.03101429 0.004573692) (0.0005097029 -0.02902026 0.00458857) (0.001524503 -0.02901747 0.004584854) (0.0005093457 -0.02902208 0.005605725) (0.001519826 -0.02901503 0.005579782) (0.002539053 -0.02901695 0.004582766) (0.003545951 -0.02901463 0.00458521) (-0.004549272 -0.0270095 0.004543229) (-0.00456293 -0.02501395 0.004563741) (-0.002540159 -0.02702067 0.004591601) (-0.002535027 -0.02702223 0.005594826) (-0.003549727 -0.02502078 0.005589264) (-0.002537105 -0.0250202 0.005598947) (0.003553268 -0.02701435 0.004581495) (0.003549516 -0.02501339 0.004577195) (0.002538396 -0.02702276 0.00559419) (0.002535845 -0.02501984 0.005593189) (0.003541673 -0.02501679 0.005580823) (0.004550876 -0.02500796 0.004558351) (-0.004561546 -0.02301038 0.004564164) (-0.005561531 -0.0210072 0.004544123) (-0.004552399 -0.02100641 0.004556811) (-0.004547581 -0.02300637 0.005570621) (-0.004544815 -0.02100422 0.005570379) (0.005559785 -0.02300817 0.004542925) (0.004556114 -0.02101012 0.004557324) (0.00556945 -0.02101363 0.004556183) (0.004534084 -0.02300561 0.0055555) (0.004548152 -0.021011 0.005559628) (-0.006537153 -0.01900392 0.004525834) (-0.006549557 -0.01700439 0.004531232) (0.006564918 -0.01700435 0.00454534) (-0.006552704 -0.01500539 0.004536551) (-0.006550634 -0.01300521 0.004536233) (-0.006547092 -0.01300357 0.005538743) (0.0065593 -0.01300372 0.004545599) (0.006541731 -0.01300372 0.005542063) (-0.006561557 -0.01100369 0.004544756) (-0.007581637 -0.009002128 0.004536741) (-0.006562899 -0.009001923 0.004540691) (-0.006578751 -0.01100453 0.005578436) (-0.006555497 -0.009001792 0.005546705) (0.006561786 -0.009000697 0.00453593) (0.007569179 -0.008999758 0.004528291) (0.006575877 -0.01100529 0.00557717) (0.006560849 -0.00899899 0.005539996) (-0.006559862 -0.007001008 0.004538105) (-0.00755001 -0.005000451 0.004530173) (-0.006556357 -0.005001273 0.004540315) (-0.006562062 -0.007001392 0.005550755) (-0.006573412 -0.005002385 0.005566496) (0.007579473 -0.00700112 0.004535935) (0.006554754 -0.005001016 0.004533186) (0.007553505 -0.00500091 0.004528842) (0.006548733 -0.00700081 0.00553269) (0.006562348 -0.005001412 0.005546348) (-0.006563183 -0.003002028 0.004545055) (-0.007597553 -0.001003327 0.004549842) (-0.006566574 -0.001002177 0.004544482) (-0.006581862 -0.003004573 0.005569871) (-0.006567216 -0.001004732 0.005554554) (0.007561089 -0.003001894 0.004534809) (0.006560595 -0.001001213 0.00453411) (0.007583367 -0.001002991 0.004541462) (0.006575845 -0.003000694 0.005556139) (0.006567821 -0.001000975 0.005541702) (-0.006563227 0.0009997317 0.004543165) (-0.007572003 0.003001105 0.004539355) (-0.006559844 0.003000801 0.004542222) (-0.006560695 0.000999642 0.005552327) (-0.006574799 0.003001366 0.005563975) (0.007565804 0.0009987205 0.004529147) (0.006560955 0.003000389 0.004536915) (0.007577918 0.003000236 0.004533345) (0.006546208 0.0009999339 0.005532396) (0.006570649 0.003001492 0.005555845) (-0.006555057 0.005001072 0.00453944) (-0.007576408 0.007001945 0.004534688) (-0.006560191 0.007001079 0.004539538) (-0.006573938 0.005001997 0.00556334) (-0.006561976 0.007001205 0.005552098) (0.007559504 0.004999703 0.004531027) (0.006560009 0.007000365 0.004540663) (0.00755779 0.006998695 0.00453227) (0.006586169 0.005001765 0.005567506) (0.006570478 0.007001832 0.005557601) (-0.006565136 0.009001045 0.004542729) (-0.006567779 0.01100142 0.004544337) (-0.006557903 0.009001441 0.005544591) (-0.006587005 0.01100453 0.005570895) (0.007568091 0.0090012 0.004543197) (0.006570108 0.01100451 0.004549896) (0.006555992 0.009003036 0.005546366) (0.00657215 0.01100886 0.005562958) (-0.006558553 0.01300099 0.00453472) (-0.006555065 0.01500251 0.004537039) (-0.006550769 0.01300184 0.005534049) (0.00656792 0.01500878 0.004546145) (0.006556068 0.01300514 0.005546884) (-0.006547918 0.01700515 0.004529268) (-0.00653791 0.01900285 0.004522172) (-0.004555504 0.02100774 0.004552191) (-0.005555886 0.02300944 0.004540426) (-0.004559399 0.02301268 0.004558951) (-0.004552321 0.02100862 0.005565748) (-0.004550709 0.02301351 0.005561856) (0.005563155 0.02100871 0.004551739) (0.004555478 0.02301291 0.004552436) (0.005556627 0.02300733 0.004539682) (0.004549587 0.02100833 0.005557188) (0.004540547 0.02301193 0.00554932) (-0.004555656 0.02501369 0.004568747) (-0.004547859 0.02700802 0.004551442) (-0.003555583 0.02701388 0.004582035) (-0.002543836 0.02701657 0.004589157) (-0.003540332 0.02501704 0.005592714) (-0.002535569 0.02501952 0.005605871) (-0.002538523 0.02702253 0.005601786) (0.002541644 0.02702015 0.004589989) (0.003553261 0.02701938 0.004580659) (0.00253755 0.02501911 0.005593357) (0.003541581 0.0250139 0.005582845) (0.002537483 0.02702124 0.005593918) (0.004544538 0.02701133 0.004545888) (-0.002544163 0.02901694 0.004581735) (-0.002526551 0.03101662 0.004570157) (-0.0005067312 0.02901942 0.004586733) (-0.001517889 0.0310202 0.00457261) (-0.0005064414 0.03102026 0.004577) (-0.001515392 0.02901021 0.00556883) (-0.0005068687 0.02902162 0.00559815) (0.001526633 0.02902244 0.004593636) (0.0005105589 0.03102115 0.004588543) (0.001527389 0.03102763 0.004590731) (0.0005060554 0.02902301 0.005607612) (0.00151844 0.0290167 0.005582026) (0.003553686 0.02902387 0.004581669) (0.002532763 0.03101781 0.004582921) (-0.0005019906 0.03301557 0.004544707) (-0.001515726 -0.02501659 0.006579669) (-0.0005050899 -0.02501407 0.006586352) (0.0005038178 -0.0250096 0.006587137) (0.001511254 -0.02501245 0.006565806) (-0.00251783 -0.02301241 0.006578447) (-0.003518489 -0.02100602 0.006562983) (-0.002514616 -0.02100768 0.006570636) (-0.0005049379 -0.02300996 0.006576625) (-0.001508759 -0.02100842 0.006583124) (-0.0005044146 -0.02100761 0.006575647) (0.001509041 -0.02300571 0.006562554) (0.0005003394 -0.02100715 0.006572309) (0.001510736 -0.0210073 0.00657249) (0.00252605 -0.0210095 0.006571814) (0.003538931 -0.02100935 0.006576476) (-0.004522783 -0.01900126 0.006541242) (-0.004545276 -0.01700336 0.006576984) (-0.002520787 -0.01900721 0.006578899) (-0.003533204 -0.01700405 0.006573951) (-0.002522725 -0.0170058 0.006573866) (-0.002519105 -0.01700573 0.007567039) (-0.0005034122 -0.01900782 0.006574008) (-0.001506488 -0.01900587 0.007577061) (-0.0005040933 -0.01901306 0.00759094) (-0.001509929 -0.01700643 0.007574872) (-0.0005037573 -0.01700903 0.007577189) (0.001510362 -0.01900701 0.006568904) (0.000501706 -0.01901366 0.007585579) (0.001506527 -0.01900575 0.007567707) (0.0005023201 -0.01700754 0.00757321) (0.001508221 -0.01700407 0.007568023) (0.003537379 -0.01901063 0.006578431) (0.002523782 -0.01700588 0.006570973) (0.003540137 -0.01700726 0.00657929) (0.002517068 -0.01700436 0.007562571) (0.004540143 -0.01700574 0.006574224) (-0.004538947 -0.01500448 0.006569833) (-0.005537793 -0.01300419 0.00654863) (-0.004538057 -0.01300662 0.006566906) (-0.002519635 -0.01500335 0.006566952) (-0.003521422 -0.01499956 0.007555487) (-0.002515845 -0.01500338 0.007567093) (-0.003522073 -0.0130025 0.00757027) (-0.00251776 -0.01300276 0.007578711) (0.003533584 -0.01500284 0.006566565) (0.002515567 -0.01500248 0.007565801) (0.003524225 -0.01500176 0.00755135) (0.002519092 -0.01300312 0.007579085) (0.00352291 -0.01300153 0.007565083) (0.004543761 -0.01300235 0.006559882) (0.005535229 -0.01300188 0.006534435) (-0.004541387 -0.01100446 0.006570149) (-0.005543437 -0.00900262 0.006552063) (-0.004538551 -0.009002255 0.006562994) (-0.004530306 -0.009001091 0.00756452) (0.005554733 -0.01100399 0.006569718) (0.004536927 -0.009003148 0.006554374) (0.005534649 -0.009003233 0.006543482) (0.004533188 -0.009003397 0.007553167) (-0.004537707 -0.007000944 0.006557734) (-0.005568854 -0.005001901 0.006578517) (-0.004542579 -0.005001161 0.006562332) (-0.004528754 -0.006999988 0.007558443) (-0.004538706 -0.005001064 0.007573147) (0.005539897 -0.007002057 0.006541836) (0.004539328 -0.005001844 0.006551372) (0.005558419 -0.005002135 0.006561862) (0.004528138 -0.007003453 0.00754312) (0.004536644 -0.00500206 0.007556507) (-0.006508661 -0.001002057 0.006504821) (-0.00454301 -0.00300116 0.006565426) (-0.005537696 -0.00100061 0.006550543) (-0.004536152 -0.001000336 0.006557966) (-0.004546927 -0.003001089 0.007588028) (-0.00453539 -0.001000946 0.007563657) (0.005576085 -0.003002812 0.006579403) (0.00454362 -0.001000767 0.00656216) (0.005561575 -0.00100148 0.006569686) (0.004544138 -0.003002008 0.00757999) (0.004536713 -0.001001542 0.007567616) (0.00652902 -0.001001979 0.006519635) (-0.006503651 0.001000422 0.006506743) (-0.004536883 0.001001213 0.006561371) (-0.005567887 0.003002907 0.006594944) (-0.0045459 0.003001896 0.006572398) (-0.004536303 0.001001421 0.007567147) (-0.004550844 0.003001732 0.007594274) (0.00554388 0.001003057 0.006553923) (0.004548382 0.003002293 0.006571539) (0.005565166 0.003003908 0.006582883) (0.004549816 0.001002076 0.007582583) (0.004552938 0.003002472 0.007590176) (0.006532166 0.003000877 0.006536894) (-0.004545755 0.005001749 0.006566133) (-0.005555761 0.007001901 0.006563475) (-0.004540006 0.007002258 0.006558645) (-0.004543153 0.005001368 0.007575295) (-0.004527862 0.0070022 0.007554253) (0.005578364 0.005001141 0.006592927) (0.004547275 0.007001786 0.006568772) (0.005563112 0.007001919 0.006573465) (0.004541048 0.005000697 0.007576651) (0.004541381 0.007001269 0.007569119) (-0.004540884 0.009003841 0.006560319) (-0.005561583 0.01100872 0.00657537) (-0.004541477 0.01100507 0.006565393) (-0.004533536 0.0090032 0.007555863) (0.005551181 0.009004797 0.006567067) (0.004543801 0.01100409 0.006572398) (0.005556964 0.01100572 0.006580169) (0.004546435 0.009002942 0.007579829) (-0.004538724 0.01300665 0.00656635) (-0.004545411 0.01500633 0.00657092) (-0.0035348 0.01500453 0.006567134) (-0.002520022 0.01500386 0.006563075) (-0.003521847 0.01300166 0.007556205) (-0.002517123 0.01300047 0.007571661) (-0.00352735 0.01500292 0.00754735) (-0.002516465 0.01500347 0.007564201) (0.003532206 0.01300349 0.006565418) (0.002523866 0.0150029 0.006565643) (0.003536957 0.01500454 0.006566922) (0.00252128 0.0130056 0.007581501) (0.003525708 0.01300308 0.007566218) (0.002521024 0.01500334 0.007572065) (0.00353094 0.01500341 0.007555335) (0.00554422 0.01300406 0.006551449) (0.004544647 0.01500592 0.006565324) (-0.004543775 0.01700579 0.006586034) (-0.004522244 0.01900231 0.006540292) (-0.002520349 0.01700683 0.006568421) (-0.003527521 0.01900824 0.006567416) (-0.002519543 0.01900785 0.006570994) (-0.002514186 0.01700901 0.007563419) (-0.001510486 0.01900617 0.00657138) (-0.0005030113 0.01900481 0.006573423) (-0.001510456 0.01700835 0.007574228) (-0.0005050055 0.0170039 0.007583396) (-0.001507726 0.01900552 0.007571516) (-0.0005045128 0.01900632 0.007594446) (0.0005055647 0.01900338 0.006574399) (0.001514418 0.01900291 0.006569988) (0.0005038278 0.01700219 0.007585261) (0.001510598 0.01700232 0.007570721) (0.0005049125 0.01900184 0.007600444) (0.001509219 0.01900373 0.007570722) (0.003538286 0.01700538 0.006570739) (0.002525901 0.01900286 0.006567212) (0.00353436 0.01900557 0.006564182) (0.002519736 0.01700077 0.007562717) (0.004526447 0.01900323 0.00653677) (-0.002521897 0.02100744 0.006570438) (-0.002527084 0.02300849 0.006583733) (-0.0005039929 0.02100705 0.006573775) (-0.001522015 0.02300977 0.006596899) (-0.0005061185 0.02300942 0.006575318) (0.001516292 0.02100543 0.006572068) (0.0005047686 0.02300792 0.006569198) (0.001513222 0.02300816 0.006566839) (0.003528139 0.0210047 0.006549022) (0.002526942 0.02300875 0.006559295) (-0.0005065318 0.02501484 0.006589385) (0.001511141 0.02501106 0.006563846) (-0.0005033874 -0.0110038 0.008570054) (-0.00150971 -0.009002387 0.008591697) (-0.0005020916 -0.009005688 0.008606415) (0.0005038302 -0.009002245 0.008611373) (0.001510907 -0.009000543 0.008595987) (-0.002508783 -0.007001301 0.008557744) (-0.002515127 -0.005002684 0.008573328) (0.002523932 -0.005000678 0.00857793) (-0.002522743 -0.003001447 0.008580385) (-0.002525868 -0.001001901 0.008588273) (0.002518998 -0.001000094 0.00857862) (-0.002521538 0.0009999812 0.008588452) (-0.002520676 0.003001067 0.00857997) (0.002527378 0.003001255 0.008587528) (-0.002518807 0.005002093 0.008569639) (0.002521297 0.007002176 0.008588889) (-0.0005082907 0.009005472 0.008615072) (-0.0005018145 0.01100307 0.008570702) (0.001513036 0.009003653 0.008595243) (0.0005039927 0.01100393 0.008571649) (-0.001249748 0.007499197 -0.009739513) (-0.001241225 0.00650404 -0.009779888) (-0.001256995 0.007500624 -0.009293017) (-0.001248876 0.01049982 -0.009258676) (0.002265209 -0.0005029769 -0.009313109) (-0.0005002518 -0.0150037 -0.007583905) (-0.00150473 -0.01300236 -0.007567215) (-0.0004987107 -0.01300232 -0.007563109) (0.001510282 -0.01500513 -0.007572257) (0.0005050379 -0.01300287 -0.007564082) (0.001511233 -0.01300307 -0.007564822) (0.003529035 -0.01100576 -0.007559327) (0.002517454 -0.009002402 -0.007562525) (0.003524897 -0.009004141 -0.007566746) (0.003527107 -0.00700336 -0.007565241) (0.002519165 -0.005001248 -0.007561697) (0.003528984 -0.005002119 -0.00756466) (-0.002522016 0.001000365 -0.007576395) (-0.003535025 0.003001852 -0.007582072) (-0.002521929 0.003001152 -0.00757323) (-0.002518282 0.005001991 -0.007566449) (-0.003521195 0.007004321 -0.007565997) (-0.002516343 0.007003222 -0.007565237) (0.003529744 0.005000961 -0.007566797) (0.002515096 0.007001448 -0.007559267) (0.003524491 0.007001533 -0.007555034) (0.003527154 0.009002767 -0.007563257) (0.002517116 0.01100385 -0.007562055) (0.00352318 0.01100457 -0.007558859) (0.001507541 0.01300349 -0.00756457) (0.000500874 0.01500356 -0.007583976) (0.001507121 0.01500347 -0.007567534) (-0.0005034581 -0.02701461 -0.005573251) (-0.001512238 -0.02501025 -0.005569454) (-0.0005032116 -0.02501253 -0.005569341) (0.001515993 -0.02701244 -0.005567933) (0.0005039867 -0.0250136 -0.005570131) (0.001515556 -0.02501214 -0.005570164) (-0.002520481 -0.02300517 -0.005558684) (-0.003532401 -0.02100606 -0.005557949) (0.0035399 -0.02300982 -0.005572897) (0.003535682 -0.02100639 -0.005567471) (-0.004545689 -0.01900573 -0.005561405) (-0.005551089 -0.01700799 -0.005553545) (-0.004541758 -0.01700597 -0.005556608) (-0.005556323 -0.01900726 -0.004543554) (-0.005554681 -0.01700683 -0.004543457) (0.005544667 -0.01900415 -0.005549934) (0.004550299 -0.01700778 -0.005568456) (0.005555478 -0.0170069 -0.005554598) (0.005556024 -0.01900443 -0.004546186) (0.005558277 -0.01700457 -0.004545057) (-0.004534302 -0.0150054 -0.005550529) (-0.005548396 -0.01300405 -0.005545167) (-0.005549129 -0.01500622 -0.004537256) (0.005567211 -0.01500615 -0.00557044) (0.005559305 -0.01300505 -0.005565997) (0.005557989 -0.01500427 -0.004547571) (-0.005559994 0.01500625 -0.00556628) (-0.004546447 0.01500654 -0.005563349) (-0.005555804 0.01500528 -0.004546655) (0.005557347 0.01300609 -0.005562439) (0.004547351 0.01500493 -0.005561246) (0.005556223 0.01500568 -0.005556681) (0.005566781 0.01500566 -0.004549721) (-0.00455104 0.01700654 -0.00556282) (-0.005548288 0.01900547 -0.005550472) (-0.00455311 0.01900454 -0.00555998) (-0.00555603 0.01700583 -0.004548142) (-0.005553862 0.01900629 -0.004543542) (0.0055509 0.01700409 -0.005550225) (0.004551701 0.01901174 -0.005565696) (0.005545153 0.01900595 -0.005544217) (0.005572807 0.01700589 -0.004553852) (0.005569935 0.01900654 -0.004550214) (-0.003539422 0.02300823 -0.005569222) (-0.002531933 0.0230092 -0.005573168) (0.003537731 0.02100984 -0.005558334) (0.002520904 0.02300708 -0.005555198) (0.003528874 0.02300845 -0.005552963) (-0.000507759 0.02501488 -0.005576998) (-0.001521632 0.02702167 -0.00559111) (-0.0005074421 0.02701818 -0.005582451) (0.001510399 0.02501146 -0.005569257) (0.0005025213 0.02701714 -0.005583191) (0.001510971 0.02701502 -0.005573934) (-0.002543545 -0.03102853 -0.003590341) (-0.003556883 -0.02901904 -0.003573209) (-0.003564735 -0.03102944 -0.002563449) (0.003528388 -0.03101034 -0.003526235) (0.003565007 -0.02901713 -0.003557325) (0.003553925 -0.03101514 -0.002530809) (-0.005556521 -0.02100954 -0.003533279) (-0.005567834 -0.02301245 -0.002523007) (0.005566652 -0.02300742 -0.003535821) (0.0055668 -0.02100657 -0.003541977) (0.00557308 -0.02300796 -0.002526373) (-0.006567444 -0.01100397 -0.0035342) (-0.007584428 -0.009003978 -0.003532184) (-0.007574196 -0.01100517 -0.002520886) (-0.007577252 -0.009006894 -0.002519507) (0.007589361 -0.01100291 -0.003530146) (0.007584277 -0.00900431 -0.003526841) (0.007584062 -0.01100308 -0.00251977) (0.007574061 -0.009003804 -0.002517066) (-0.007566919 -0.005000919 -0.003522651) (-0.00757408 -0.00700342 -0.00251567) (-0.007568206 -0.005001916 -0.002516409) (0.007571058 -0.007004004 -0.003522526) (0.007560993 -0.005001822 -0.00352195) (0.007562162 -0.007003115 -0.002513942) (0.007555334 -0.005001864 -0.002513661) (-0.007575489 -0.001000041 -0.00353671) (-0.007558095 -0.003001157 -0.002518608) (-0.007558172 -0.001000014 -0.002521758) (0.007571264 -0.003001063 -0.003529227) (0.007579254 -0.001000242 -0.003533836) (0.007561281 -0.003001077 -0.002516885) (0.007564946 -0.001000515 -0.002520029) (-0.007558938 0.003001413 -0.003525621) (-0.007556187 0.001000955 -0.002520989) (-0.007548299 0.003001066 -0.002517367) (0.007575182 0.00100064 -0.003531589) (0.007558536 0.003001512 -0.003525479) (0.007559288 0.001000284 -0.002518841) (0.00755079 0.003001201 -0.002515902) (-0.007571636 0.00700157 -0.003533665) (-0.007549731 0.005000948 -0.002516685) (-0.007560154 0.007001338 -0.002518716) (0.007550175 0.005002337 -0.003520923) (0.00757427 0.007004677 -0.003531019) (0.007550318 0.005002119 -0.002515045) (0.007565987 0.007004039 -0.002520972) (-0.007593804 0.0110092 -0.003535408) (-0.007568471 0.009002487 -0.002519783) (-0.00758155 0.01100487 -0.002523786) (0.007585162 0.009003337 -0.003532359) (0.007601157 0.01100214 -0.00353385) (0.007577786 0.009005074 -0.002522699) (0.00759201 0.01100554 -0.002523985) (-0.005560312 0.02300685 -0.003524135) (-0.005570664 0.02300722 -0.002520586) (0.005577285 0.02100702 -0.003536415) (0.005573145 0.02300799 -0.003534961) (0.005580287 0.02300936 -0.002532361) (-0.003533185 0.03101266 -0.003532868) (-0.002538152 0.03102009 -0.003563624) (-0.003561071 0.03101957 -0.002532929) (0.003565672 0.02902655 -0.003584117) (0.002541308 0.03102536 -0.003580985) (0.003562792 0.03103602 -0.003584612) (0.003574406 0.03103083 -0.002562469) (-0.005576756 -0.02501254 -0.001513335) (-0.005593333 -0.02701329 -0.0005017862) (-0.00558194 -0.02501164 -0.00050308) (0.005587721 -0.02701203 -0.001522473) (0.00558829 -0.02501059 -0.001521591) (0.005598455 -0.02701822 -0.0005068606) (0.00558885 -0.02501378 -0.0005075574) (-0.007578982 -0.01300718 -0.001512919) (-0.007574371 -0.01500457 -0.0005034821) (-0.007567775 -0.01300498 -0.0005036477) (0.007576254 -0.01500265 -0.001512403) (0.00757657 -0.0130027 -0.001510638) (0.007564709 -0.01500215 -0.0005050578) (0.007547511 -0.01300119 -0.0005042792) (-0.007569913 -0.009004815 -0.001508979) (-0.007562502 -0.01100363 -0.0005028937) (-0.007573897 -0.009003135 -0.0005024265) (0.007559144 -0.01100233 -0.001510323) (0.007552585 -0.00900273 -0.001507641) (0.007536144 -0.01100109 -0.0005026704) (0.007549171 -0.009002068 -0.0005015364) (-0.007564182 0.01100289 -0.001511834) (-0.007572037 0.009001363 -0.0005030133) (-0.007559762 0.01100218 -0.0005049859) (0.007573513 0.009003453 -0.001510727) (0.007576724 0.01100551 -0.001513332) (0.007578415 0.00900189 -0.0005017275) (0.007568481 0.01100344 -0.0005029462) (-0.007572734 0.01500424 -0.001515079) (-0.007563433 0.01300532 -0.0005084605) (-0.00757216 0.01500699 -0.0005067645) (0.007592996 0.01300822 -0.001518851) (0.007588857 0.01500879 -0.001516634) (0.007568115 0.01300617 -0.00050495) (0.007582169 0.01500893 -0.0005051303) (-0.00558482 0.02701903 -0.001514342) (-0.00558326 0.02501428 -0.0005043787) (-0.005593865 0.02702005 -0.0005045071) (0.005585907 0.02501337 -0.001516767) (0.005582928 0.02701576 -0.001514171) (0.005594157 0.02501525 -0.0005046999) (0.005596621 0.02701829 -0.0005024796) (-0.005585161 -0.02501297 0.0005046655) (-0.005581812 -0.02701211 0.001511777) (-0.005585621 -0.02501343 0.001515053) (0.005594645 -0.0270194 0.0005075618) (0.005582284 -0.02501439 0.0005056281) (0.005582541 -0.02701598 0.001521414) (0.005578963 -0.02501235 0.001517604) (-0.007564834 -0.01300407 0.0005014681) (-0.007561648 -0.01500173 0.00150627) (-0.0075665 -0.01300484 0.001506722) (0.007570812 -0.01500207 0.0005023785) (0.007548706 -0.01300001 0.0005027171) (0.007575175 -0.01500172 0.001511549) (0.007576673 -0.01300097 0.001511628) (-0.007571143 -0.00900292 0.0005022966) (-0.007557626 -0.01100481 0.001507569) (-0.007559899 -0.009003723 0.001507563) (0.007535905 -0.01100056 0.0005027053) (0.007548649 -0.009001832 0.000502752) (0.007557379 -0.01100125 0.001511244) (0.007551418 -0.009002085 0.001509028) (-0.007558809 0.01100092 0.0005005148) (-0.007562533 0.009000585 0.001508999) (-0.007561297 0.01099953 0.001508601) (0.007579595 0.009001321 0.0005062331) (0.007568057 0.01100245 0.0005063471) (0.007575595 0.009000681 0.001513279) (0.007574549 0.0110018 0.001516196) (-0.007572863 0.01500466 0.0004998252) (-0.007567874 0.0129997 0.001504726) (-0.007563885 0.01500166 0.001504382) (0.007565243 0.01300525 0.000507171) (0.00757405 0.01500643 0.0005042271) (0.007585256 0.01300523 0.001518381) (0.007575035 0.01500523 0.001511831) (-0.005591154 0.02701752 0.000504374) (-0.005586286 0.02501216 0.001518299) (-0.005583781 0.02701462 0.001517445) (0.005597331 0.02501558 0.0005061382) (0.005602127 0.0270181 0.0005077439) (0.005592066 0.02501472 0.001517643) (0.005593636 0.02701802 0.00151825) (-0.003530724 -0.03100816 0.003531529) (-0.00253816 -0.03102083 0.003567594) (-0.003557867 -0.0290146 0.003560177) (0.003563931 -0.03101847 0.002533665) (0.00253287 -0.03101427 0.003559968) (0.003528045 -0.03100521 0.003525744) (0.003558909 -0.02901533 0.003565633) (-0.005578401 -0.02301371 0.003541163) (-0.005567477 -0.02100823 0.003534515) (0.005581993 -0.02301205 0.002528637) (0.005580347 -0.02301325 0.003539978) (0.005579938 -0.02101307 0.003545728) (-0.007559645 -0.009004752 0.002517081) (-0.007557058 -0.01100451 0.003522083) (-0.007572554 -0.009003585 0.003532127) (0.00757555 -0.01100249 0.002522129) (0.007565734 -0.009002647 0.002517769) (0.007574754 -0.0110034 0.003530575) (0.007564173 -0.009002062 0.003522335) (-0.007550531 -0.004999774 0.002514667) (-0.007562777 -0.007001251 0.003525953) (-0.007550857 -0.005000162 0.003521907) (0.007563075 -0.00700325 0.00251686) (0.007558106 -0.005003178 0.002517604) (0.007577214 -0.007002975 0.003528904) (0.007562378 -0.005002622 0.00352752) (-0.00755854 -0.0009997778 0.002521539) (-0.007563298 -0.003000508 0.003530078) (-0.007581959 -0.001001105 0.003535303) (0.007553337 -0.00300226 0.002516484) (0.007557809 -0.001001423 0.002518709) (0.007556887 -0.003002147 0.00352545) (0.007571685 -0.001002072 0.003531038) (-0.00755077 0.003001022 0.002516546) (-0.007578687 0.001000662 0.003532814) (-0.007561472 0.003001094 0.003527022) (0.007558972 0.0009994198 0.002517269) (0.007555926 0.002999856 0.002513145) (0.007572026 0.0009989396 0.003526641) (0.007567144 0.00299974 0.003521062) (-0.007557247 0.00700256 0.002519307) (-0.007549157 0.005001898 0.003523275) (-0.007561808 0.007002117 0.00353021) (0.00755518 0.004999599 0.002511436) (0.007567134 0.006999261 0.002514799) (0.007555183 0.004999485 0.003518903) (0.007561814 0.006999341 0.003523557) (-0.007573172 0.0109993 0.002519996) (-0.007571764 0.009001461 0.003537069) (-0.007567688 0.01100048 0.003529766) (0.007576984 0.009000489 0.002523081) (0.007582651 0.01100151 0.002527308) (0.007576116 0.009001619 0.003538638) (0.007574076 0.01100221 0.003538903) (-0.005574395 0.02301063 0.002531451) (-0.005564199 0.02100606 0.003536413) (-0.005572785 0.02300998 0.003541705) (0.005578737 0.02301018 0.00252646) (0.005575474 0.02101055 0.003541464) (0.005573222 0.0230111 0.003538851) (-0.00355685 0.0310201 0.002529982) (-0.003557765 0.02901294 0.003553943) (-0.003528189 0.03100679 0.003527075) (-0.0025346 0.0310179 0.003559307) (0.0035715 0.03102743 0.002543348) (0.003564034 0.02902437 0.003564941) (0.002540034 0.03102516 0.003575238) (0.003541365 0.03101629 0.003540015) (-0.001517612 -0.02702066 0.005591613) (-0.0005037557 -0.0270215 0.005602873) (-0.001518506 -0.02501882 0.005591181) (-0.0005049482 -0.02501666 0.005590593) (0.0005104105 -0.02702176 0.005615401) (0.001526449 -0.02702233 0.00560377) (0.0005069242 -0.02501554 0.005593837) (0.001520255 -0.02501737 0.005590688) (-0.00354219 -0.02301325 0.005584761) (-0.002528949 -0.02301552 0.005586396) (-0.003535315 -0.02100733 0.005574703) (0.002530279 -0.02301165 0.005577453) (0.003539667 -0.02301082 0.005575493) (0.003541889 -0.02100951 0.005572348) (-0.0055571 -0.01700649 0.004545357) (-0.005546512 -0.0190041 0.005548719) (-0.004542238 -0.01900399 0.005561567) (-0.005553304 -0.01700784 0.005552727) (-0.004545736 -0.01700492 0.005563705) (0.005570803 -0.01900623 0.004559514) (0.005564805 -0.0170032 0.004553076) (0.004548804 -0.01900666 0.005560619) (0.005556052 -0.01900543 0.005550982) (0.004547984 -0.01700338 0.00556204) (0.005552557 -0.01700096 0.005550403) (-0.005544152 -0.01500743 0.005548888) (-0.00453926 -0.01500499 0.005556944) (-0.005547282 -0.01300485 0.005550688) (0.005557986 -0.01500267 0.004547282) (0.005555633 -0.01500214 0.005551216) (0.00555397 -0.01300308 0.005554539) (-0.005550749 0.01500297 0.004541894) (-0.005553201 0.01300368 0.005550687) (-0.005549108 0.01500432 0.005550999) (-0.004542349 0.01500435 0.005557565) (0.005561677 0.01500826 0.004551185) (0.005557235 0.01300588 0.005558382) (0.004548427 0.01500591 0.005561808) (0.005561772 0.01500864 0.005568594) (-0.005557084 0.01900341 0.004542065) (-0.005549845 0.01700361 0.005553113) (-0.004545046 0.01700404 0.005564321) (-0.005553328 0.01900075 0.005542678) (-0.004545316 0.01900413 0.005559014) (0.005567984 0.01701057 0.004554198) (0.005569574 0.01900841 0.004553272) (0.004550846 0.01700596 0.005564276) (0.00555545 0.01700739 0.005558207) (0.004548072 0.01900487 0.005556883) (0.00554969 0.01900336 0.005545648) (-0.003540467 0.02100907 0.005573312) (-0.00354304 0.02301377 0.005578288) (-0.002531697 0.02301339 0.005586954) (0.003542118 0.02100841 0.005562757) (0.002535097 0.02301257 0.005574058) (0.003544826 0.02301267 0.005569806) (-0.001522079 0.02501629 0.00559555) (-0.0005078927 0.02501449 0.005591835) (-0.00152141 0.02701807 0.00559168) (-0.0005076788 0.02701905 0.005604483) (0.0005050942 0.02501281 0.005588189) (0.001519824 0.02501481 0.0055848) (0.0005053379 0.02701679 0.005604974) (0.001519546 0.02701659 0.005588777) (-0.001511394 -0.01500572 0.00757571) (-0.0005045506 -0.01500766 0.007578208) (-0.001512224 -0.01300458 0.007579278) (-0.0005042594 -0.01300545 0.007562265) (0.000503831 -0.01500584 0.0075812) (0.001510296 -0.01500459 0.007578009) (0.0005048695 -0.01300581 0.007565994) (0.001512888 -0.01300692 0.007585089) (-0.003525372 -0.01100282 0.007572665) (-0.002519305 -0.011002 0.007580878) (-0.003530639 -0.009001915 0.007571401) (-0.002518348 -0.009001385 0.00757192) (-0.001510856 -0.01100244 0.007572739) (-0.0005031674 -0.01100338 0.007564752) (-0.001509482 -0.009002043 0.007571543) (-0.0005023112 -0.009002962 0.007571022) (0.0005037344 -0.01100344 0.007566821) (0.001511141 -0.01100281 0.007578653) (0.0005037363 -0.009002066 0.007573007) (0.001510608 -0.009000921 0.007576178) (0.003528777 -0.0110015 0.006562523) (0.002518353 -0.01100144 0.007588875) (0.003527855 -0.01100117 0.007576127) (0.002518983 -0.009000544 0.007580316) (0.003527796 -0.009001508 0.007572779) (-0.003523419 -0.007000829 0.0075582) (-0.002514896 -0.007001474 0.007561233) (-0.003527394 -0.005001028 0.007566804) (-0.00251696 -0.005001789 0.007559844) (0.002521968 -0.007001049 0.007574324) (0.003527369 -0.007002032 0.007565944) (0.002521194 -0.005000798 0.007564689) (0.003529875 -0.005001611 0.007566291) (-0.003532771 -0.00300144 0.007578636) (-0.002520752 -0.003001501 0.007562148) (-0.003531035 -0.001001871 0.007573778) (-0.002521985 -0.001001173 0.007562743) (0.002519846 -0.003000595 0.007561568) (0.003531064 -0.003001523 0.007575369) (0.002518963 -0.001000217 0.007560775) (0.003529064 -0.001000897 0.007572414) (-0.003530694 0.001000145 0.007575947) (-0.002521411 0.000999943 0.007563403) (-0.003535999 0.003001218 0.007582295) (-0.002521762 0.00300081 0.007563189) (0.002520605 0.001000523 0.007563929) (0.003532871 0.001001079 0.007577629) (0.002522696 0.003000762 0.007567744) (0.003536072 0.003001466 0.007580938) (-0.003530245 0.005001673 0.007571573) (-0.002519671 0.005001504 0.007562179) (-0.003524151 0.007001533 0.00756402) (-0.002516915 0.007002084 0.007565568) (0.002521099 0.005000879 0.007569641) (0.003530459 0.005001068 0.007574426) (0.002521038 0.007001704 0.007575732) (0.003528977 0.007001758 0.007573741) (-0.00352741 0.009001302 0.00756723) (-0.002515743 0.009001437 0.007566659) (-0.003521819 0.01100186 0.007561278) (-0.00251663 0.01100132 0.007572838) (-0.001509146 0.009002292 0.007570205) (-0.000503767 0.009003236 0.007572634) (-0.001508779 0.01100196 0.007568828) (-0.000502646 0.01100245 0.007565055) (0.0005039591 0.009002941 0.007573739) (0.001512335 0.009002742 0.007576792) (0.0005035098 0.01100308 0.00756657) (0.001511197 0.01100414 0.007575531) (0.002521588 0.009002702 0.007582575) (0.003529924 0.009002866 0.007580932) (0.002521274 0.011004 0.007585943) (0.003528054 0.01100231 0.007573246) (-0.001509471 0.01300271 0.007580149) (-0.0005034419 0.01300188 0.007565729) (-0.001509326 0.01500446 0.007577415) (-0.0005038786 0.01500257 0.007582574) (0.0005027115 0.01300279 0.007567455) (0.001510705 0.01300498 0.007584763) (0.0005025059 0.01500343 0.007585176) (0.001509999 0.01500303 0.007580566) (1.153829e-06 -0.008000839 -0.009793043) (-0.00194407 -0.004000598 -0.009738787) (0.0002488487 -0.003997707 -0.009926486) (0.002003744 4.333212e-07 -0.00976344) (0.0002489828 0.003996886 -0.009943072) (-0.002014721 -0.01600435 -0.0075652) (1.688875e-06 -0.01600437 -0.007579023) (0.002015837 -0.01600771 -0.007573207) (-0.002009548 -0.01200221 -0.007571396) (2.961391e-06 -0.0110007 -0.008040842) (3.051753e-06 -0.0120016 -0.007549939) (0.002015554 -0.012003 -0.0075617) (-0.004044376 -0.008003851 -0.007569497) (-0.001506076 -0.008001033 -0.008042815) (-0.00201308 -0.007001532 -0.008054397) (-0.002012403 -0.008001582 -0.007551379) (2.503193e-06 -0.008001251 -0.008558221) (2.897271e-06 -0.009001061 -0.008049213) (-0.0004998753 -0.008000758 -0.008040977) (2.286694e-06 -0.007000837 -0.008049516) (0.0005056914 -0.00800159 -0.008068134) (2.32951e-06 -0.008000892 -0.007545745) (0.001512336 -0.008001411 -0.008078488) (0.00201742 -0.007000629 -0.008077602) (0.002014441 -0.008001404 -0.007562816) (0.004029002 -0.008004651 -0.007562358) (-0.004031512 -0.004000372 -0.007578034) (-0.002011561 -0.004000682 -0.008573491) (-0.002011135 -0.005000864 -0.008054555) (-0.001508639 -0.004000401 -0.008050912) (-0.002014662 -0.003000305 -0.008070031) (-0.002515749 -0.004000506 -0.008066254) (-0.002012455 -0.00400044 -0.007553848) (6.826294e-07 -0.004000283 -0.007031749) (3.466276e-07 -0.003999754 -0.008516744) (1.180179e-06 -0.005000301 -0.008034342) (-0.0005022283 -0.004000043 -0.008030631) (0.0005039496 -0.004000572 -0.00803178) (3.852745e-07 -0.002999721 -0.008021007) (0.002014084 -0.004002573 -0.008582802) (0.001511863 -0.004002241 -0.008062531) (0.002017265 -0.003001304 -0.008070824) (0.002015941 -0.005001362 -0.008070266) (0.002519705 -0.004001323 -0.008069398) (0.002015304 -0.00400128 -0.007559745) (0.00403588 -0.004002102 -0.007572377) (-0.004033809 1.815514e-06 -0.007581538) (-0.002023357 -7.871299e-07 -0.008600401) (-0.00201959 -0.001000564 -0.008080471) (-0.001513919 -5.169937e-08 -0.008059559) (-0.002018796 0.001000196 -0.00808082) (-0.002522862 -4.240485e-07 -0.008088724) (-0.002016977 5.666315e-09 -0.007566022) (-3.188484e-07 3.066139e-07 -0.007026441) (-1.1199e-07 1.024681e-06 -0.008503139) (-8.033328e-08 -0.0009991592 -0.008015686) (-0.0005036739 4.564732e-07 -0.008021287) (0.0005028128 7.954651e-07 -0.008016867) (-5.440138e-07 0.00100037 -0.00801559) (0.002016586 -7.938262e-07 -0.0085667) (0.002016167 -0.001000703 -0.008063106) (0.00151097 1.539549e-07 -0.008043025) (0.002521816 -7.018364e-07 -0.008073399) (0.002016912 0.0009997797 -0.008063576) (0.00201563 -2.832938e-07 -0.007554498) (0.004030254 -7.900874e-07 -0.007570072) (-0.004037007 0.004002145 -0.007572668) (-0.002020595 0.00400133 -0.008598498) (-0.002018146 0.003001007 -0.008080279) (-0.001513367 0.004000955 -0.00806853) (-0.002016318 0.005001583 -0.00807777) (-0.002521717 0.004001691 -0.008079389) (-0.002016199 0.004001213 -0.00756598) (-3.233737e-07 0.004000593 -0.007036017) (-4.983787e-07 0.003999778 -0.008522422) (-7.201574e-07 0.003000102 -0.00802373) (-0.0005041544 0.004000234 -0.00803808) (1.025756e-07 0.005000649 -0.00804147) (0.0005029752 0.004000538 -0.008036112) (0.002014029 0.004002303 -0.008584005) (0.002016113 0.003000677 -0.008066423) (0.00151058 0.004001351 -0.008063754) (0.002013653 0.005001781 -0.00807511) (0.002520194 0.004000895 -0.008071986) (0.002014708 0.004000986 -0.007560582) (0.004040365 0.00400086 -0.007578388) (-0.004028007 0.00800747 -0.007585096) (-0.002014009 0.007002456 -0.008072414) (-0.001508365 0.008001708 -0.00805334) (-0.002012328 0.008002659 -0.007558653) (1.558057e-06 0.008000875 -0.008536998) (1.149629e-06 0.007001161 -0.008045992) (-0.0005014828 0.00800071 -0.008038606) (1.019999e-06 0.009000867 -0.008034589) (0.000504321 0.008001732 -0.008048083) (8.518208e-07 0.008001054 -0.007540024) (0.001510198 0.008002593 -0.008064904) (0.002012062 0.008001881 -0.007555597) (0.004031511 0.008003065 -0.007557876) (-0.002015279 0.01200366 -0.007570736) (8.122842e-08 0.0110005 -0.008035175) (-4.491192e-07 0.01200077 -0.007547564) (0.002013209 0.01200328 -0.007563973) (-0.002015974 0.01600372 -0.007571425) (-2.596375e-06 0.01600464 -0.007579216) (0.002012321 0.01600321 -0.007560002) (6.421645e-07 -0.0280174 -0.005576542) (-0.001508243 -0.02400885 -0.006066761) (-0.002011788 -0.02300515 -0.006054035) (-0.002016685 -0.0240074 -0.005565282) (3.309741e-07 -0.0240151 -0.006571497) (7.830321e-08 -0.02501569 -0.00607685) (-0.0005022406 -0.02401238 -0.006070499) (0.0005030337 -0.02401381 -0.006072299) (7.172246e-07 -0.02301046 -0.006068892) (5.137847e-07 -0.02401234 -0.005567786) (0.00151183 -0.0240121 -0.006068439) (0.00201772 -0.02301077 -0.006066318) (0.002022158 -0.02401186 -0.005571711) (-0.003532522 -0.02000705 -0.006063789) (-0.004034752 -0.01900602 -0.006060388) (-0.004039626 -0.02000641 -0.005562703) (-0.002015813 -0.02000282 -0.006562381) (-0.002013509 -0.02100321 -0.006053898) (-0.002520034 -0.02000369 -0.006058711) (-0.001510225 -0.02000248 -0.006056751) (-0.002015426 -0.01900248 -0.006058896) (8.450355e-07 -0.02000459 -0.005048507) (6.624889e-07 -0.02000481 -0.006563566) (7.608119e-07 -0.02100568 -0.006061899) (-0.0005024195 -0.02000368 -0.006058846) (0.0005032873 -0.02000493 -0.006060505) (5.61216e-07 -0.01900392 -0.006059176) (0.002013586 -0.02000461 -0.006570509) (0.002014374 -0.02100634 -0.006063575) (0.00150991 -0.020005 -0.006063808) (0.002520375 -0.02000452 -0.006067329) (0.002015811 -0.01900421 -0.006067581) (0.003532812 -0.02000456 -0.006070477) (0.004037443 -0.01900599 -0.006068521) (0.004039195 -0.02000631 -0.005569446) (-0.004031146 -0.01600467 -0.006569626) (-0.00403311 -0.01700494 -0.006060892) (-0.004536046 -0.01600632 -0.006060025) (-0.003526974 -0.01600428 -0.006063616) (-0.004030445 -0.01500447 -0.006059328) (-0.0040329 -0.0160049 -0.005552785) (-0.002013938 -0.01600258 -0.005043174) (-0.002016278 -0.01600313 -0.006563228) (-0.002016298 -0.01700265 -0.006059891) (-0.002518507 -0.01600309 -0.006059789) (1.180792e-06 -0.01600278 -0.005043132) (0.002017286 -0.01600367 -0.005046808) (0.002018754 -0.01600534 -0.006565365) (0.002018339 -0.01700443 -0.006062671) (0.002523029 -0.01600496 -0.006063396) (0.002018607 -0.01500456 -0.006058152) (0.004047973 -0.01600693 -0.006583861) (0.004044574 -0.01700731 -0.006074374) (0.003538038 -0.0160064 -0.006073385) (0.004555969 -0.01600826 -0.006080236) (0.004046212 -0.01500668 -0.00607612) (0.004045794 -0.01600643 -0.005567096) (-0.005557537 -0.01200309 -0.006059094) (-0.006067857 -0.0120035 -0.005553596) (-0.004035461 -0.01200348 -0.006561119) (-0.004031526 -0.01300324 -0.006056408) (-0.004539146 -0.0120031 -0.006055818) (-0.003528463 -0.01200274 -0.006055852) (-0.00403707 -0.01100263 -0.006055031) (-0.002013589 -0.01200179 -0.005038427) (1.268639e-06 -0.01200182 -0.005036774) (0.002016119 -0.01200273 -0.005040273) (0.004042764 -0.01200591 -0.006573006) (0.004043851 -0.0130064 -0.006074081) (0.003534655 -0.0120055 -0.006063978) (0.004548144 -0.01200554 -0.006073516) (0.004038419 -0.01100444 -0.00606332) (0.005561886 -0.01200565 -0.006076553) (0.006067818 -0.01200563 -0.005571546) (-0.005549547 -0.008001846 -0.00604861) (-0.006048103 -0.008001962 -0.00553925) (-0.004033239 -0.008001462 -0.005039111) (-0.004042696 -0.008002113 -0.00655891) (-0.004040156 -0.009002043 -0.00605392) (-0.004544011 -0.008001741 -0.006054033) (-0.004038931 -0.007001489 -0.006052853) (-0.002014427 -0.008001083 -0.005034688) (8.298098e-07 -0.006000699 -0.006035089) (7.004414e-07 -0.008001058 -0.005032322) (0.00201453 -0.00800167 -0.005035999) (0.004029959 -0.008002629 -0.005040404) (0.004032252 -0.00800396 -0.006557844) (0.004032339 -0.009003581 -0.006055309) (0.004534472 -0.008003616 -0.006054044) (0.004032028 -0.007003396 -0.006052565) (0.00554092 -0.008003085 -0.006049878) (0.006044677 -0.008003116 -0.005542451) (-0.005559341 -0.00400183 -0.006065431) (-0.006063682 -0.004002038 -0.00555869) (-0.004032506 -0.004000612 -0.005041289) (-0.004035936 -0.004000593 -0.006561802) (-0.004036642 -0.005000942 -0.00605427) (-0.004541 -0.004000869 -0.006058354) (-0.004035542 -0.003000285 -0.006058074) (-0.001006461 -0.004000344 -0.006035123) (-0.002014694 -0.004000391 -0.005034607) (0.001007164 -0.004000639 -0.006035954) (-3.237369e-09 -0.002000088 -0.006031046) (0.002014048 -0.004000894 -0.005033916) (0.004029481 -0.00400162 -0.005038753) (0.004033577 -0.004002301 -0.006558648) (0.004033192 -0.005002576 -0.006053386) (0.004537106 -0.004002406 -0.006056336) (0.004030368 -0.003001881 -0.006052012) (0.00555627 -0.004002814 -0.00606795) (0.006061877 -0.004002622 -0.005558416) (-0.00603827 1.687121e-06 -0.006549657) (-0.006049619 -0.001001002 -0.00605637) (-0.006539932 2.54512e-07 -0.006037973) (-0.00554956 1.556752e-06 -0.006059574) (-0.006056732 0.001003617 -0.006057326) (-0.006053172 8.467918e-07 -0.005550904) (-0.004032702 7.449201e-07 -0.005043696) (-0.004038201 1.56108e-06 -0.006568273) (-0.004035972 -0.0009992983 -0.006060236) (-0.004541273 1.48577e-06 -0.006062294) (-0.004038852 0.001001901 -0.006062041) (-0.001007646 2.323764e-07 -0.006036158) (-0.002015291 3.266836e-07 -0.005036476) (0.001006836 6.172443e-08 -0.006033366) (-3.125993e-07 0.002000412 -0.006032595) (0.002013974 -1.079232e-07 -0.005033447) (0.004027084 -3.851327e-07 -0.005036124) (0.004026956 -8.380609e-07 -0.006552636) (0.004025811 -0.001001216 -0.006047345) (0.004526188 -8.778007e-07 -0.006044591) (0.004028574 0.0009997608 -0.006049272) (0.005999203 -1.207985e-06 -0.006504881) (0.006021567 -0.001002143 -0.006020762) (0.005521526 -1.085333e-06 -0.006029473) (0.006506041 -6.567847e-07 -0.005999068) (0.00602581 0.001000394 -0.006023853) (0.006031121 -5.869816e-07 -0.005521678) (-0.005566688 0.004003594 -0.006070607) (-0.006069478 0.004003589 -0.005562586) (-0.00403324 0.004001761 -0.00504291) (-0.004038746 0.004002429 -0.00656174) (-0.004039982 0.003002304 -0.006060163) (-0.004544339 0.004002634 -0.006059886) (-0.004035495 0.005002529 -0.006054207) (-0.001007439 0.004000811 -0.006039174) (-0.002015119 0.004001035 -0.005037035) (0.00100706 0.004000713 -0.006037733) (1.502826e-07 0.006000987 -0.006037331) (0.002014991 0.004000702 -0.005035322) (0.004033161 0.004000972 -0.005041031) (0.004038274 0.004001024 -0.006561031) (0.004035701 0.003000706 -0.006054922) (0.004543021 0.004001254 -0.00605821) (0.00403711 0.005001311 -0.006054224) (0.005566107 0.004002237 -0.006069821) (0.006071665 0.004002314 -0.005562132) (-0.005539447 0.008003041 -0.006050691) (-0.006042159 0.008002442 -0.005541473) (-0.004029212 0.008002482 -0.005041299) (-0.004030576 0.008004562 -0.006561647) (-0.004030678 0.007003386 -0.006052797) (-0.004533167 0.008003856 -0.00605572) (-0.004030446 0.009003499 -0.006057459) (-0.002013922 0.008001745 -0.005037169) (3.66531e-07 0.008001271 -0.005033386) (0.002015264 0.008001513 -0.005036483) (0.004033854 0.008002183 -0.005042636) (0.004034249 0.008002711 -0.006556141) (0.004034828 0.007002017 -0.006051533) (0.004538263 0.008002825 -0.006055196) (0.004034679 0.009003128 -0.006057017) (0.005549915 0.008003143 -0.006057333) (0.006057798 0.008003043 -0.005553466) (-0.00554918 0.01200426 -0.006062484) (-0.006059022 0.01200495 -0.005557283) (-0.004033179 0.012004 -0.006566813) (-0.00403197 0.01100322 -0.006059991) (-0.004537768 0.01200414 -0.006064019) (-0.003528572 0.01200432 -0.00606105) (-0.004034958 0.01300561 -0.006066572) (-0.002014853 0.01200256 -0.005041277) (1.071903e-07 0.01200194 -0.005037608) (0.002016116 0.01200244 -0.005040686) (0.004042614 0.01200467 -0.006578668) (0.004038731 0.0110042 -0.006067168) (0.004546585 0.01200495 -0.006076045) (0.004043287 0.01300447 -0.006075101) (0.00556433 0.01200816 -0.006082931) (0.006068 0.01200725 -0.005566753) (-0.004040093 0.01600919 -0.006577334) (-0.004039513 0.01500734 -0.006069997) (-0.004548201 0.01600835 -0.006069584) (-0.003534545 0.0160064 -0.006071848) (-0.004041798 0.01700699 -0.006066366) (-0.004042518 0.01600636 -0.005561882) (-0.002017313 0.01600361 -0.005047542) (-0.002019922 0.01600424 -0.006569792) (-0.00252299 0.01600451 -0.006066436) (-0.002019956 0.0170044 -0.006065361) (-6.384451e-07 0.01600316 -0.005044196) (0.002017002 0.01600357 -0.005045417) (0.002016659 0.01600365 -0.006562978) (0.002521104 0.01600373 -0.006061037) (0.002017368 0.01700425 -0.006060594) (0.004047447 0.01600541 -0.006581751) (0.004042807 0.01500477 -0.006070958) (0.003536892 0.01600486 -0.006070638) (0.004551972 0.0160061 -0.006071078) (0.004048214 0.01700724 -0.006071414) (0.004045111 0.01600547 -0.005561656) (-0.004042755 0.01900534 -0.006059132) (-0.00353705 0.0200058 -0.006062643) (-0.004046168 0.02000441 -0.005559945) (-0.002018621 0.02000682 -0.006569656) (-0.002018818 0.0190052 -0.006065593) (-0.002523918 0.02000544 -0.006064627) (-0.001514014 0.02000512 -0.006061849) (-0.002018852 0.02100509 -0.006061521) (-1.319379e-06 0.02000503 -0.0050493) (-1.353099e-06 0.02000465 -0.006562155) (-1.727117e-06 0.01900437 -0.006059649) (-0.000505407 0.02000455 -0.00605902) (0.0005021752 0.02000454 -0.006058953) (-1.413149e-06 0.0210051 -0.006059907) (0.002015276 0.02000506 -0.006567982) (0.002015713 0.01900516 -0.006062773) (0.001510245 0.02000446 -0.006060368) (0.002521159 0.02000595 -0.006061158) (0.002013782 0.02100424 -0.006056331) (0.003537607 0.0200108 -0.006064321) (0.004046905 0.0200125 -0.005563989) (-0.002022844 0.02300798 -0.006068461) (-0.00151761 0.02401264 -0.006074939) (-0.002027782 0.02401339 -0.005580012) (-1.576213e-06 0.02401143 -0.006573875) (-1.699863e-06 0.02300848 -0.006068535) (-0.0005061324 0.02401215 -0.006074625) (0.000501175 0.02401125 -0.006073041) (-2.480635e-06 0.02501509 -0.006082959) (-2.813853e-06 0.02401226 -0.005572519) (0.002013342 0.02300498 -0.006053017) (0.001508767 0.02400788 -0.006063262) (0.002016373 0.02400888 -0.005561871) (-1.647925e-06 0.02801787 -0.005584675) (-0.002038706 -0.03103098 -0.004099327) (-0.00204265 -0.03203355 -0.003596553) (4.032737e-06 -0.03203095 -0.00459613) (3.709502e-06 -0.03302043 -0.004064539) (-0.000506767 -0.032025 -0.004082867) (0.0005116629 -0.03202962 -0.004089529) (1.900614e-06 -0.03102776 -0.004092051) (2.202842e-06 -0.03202836 -0.003575944) (0.002027268 -0.03102694 -0.004079431) (0.002031135 -0.03203064 -0.003572799) (-0.003553637 -0.02801764 -0.004078653) (-0.004055136 -0.02701393 -0.004069942) (-0.004061387 -0.0280154 -0.003565695) (-0.002030278 -0.0280203 -0.004586672) (-0.00203336 -0.02902355 -0.004088682) (-0.002538456 -0.02801949 -0.004081924) (-0.001522627 -0.02802015 -0.004080667) (-0.002030291 -0.02701587 -0.004074288) (-1.552639e-07 -0.028017 -0.003053976) (3.258999e-07 -0.02801997 -0.004580491) (3.33459e-07 -0.02902153 -0.00408072) (-0.0005065637 -0.02801918 -0.004075692) (0.000506503 -0.02801904 -0.004074443) (0.002028373 -0.0280173 -0.004577003) (0.002028806 -0.02901998 -0.004075408) (0.001520534 -0.02801794 -0.004072768) (0.002539513 -0.02801781 -0.00407461) (0.002030751 -0.0270147 -0.004069302) (0.00356468 -0.0280178 -0.004073444) (0.004068759 -0.02701441 -0.004067594) (0.004079597 -0.02801606 -0.003557743) (-0.004042086 -0.02400799 -0.004557593) (-0.004050549 -0.02501081 -0.004061918) (-0.004550297 -0.0240094 -0.004049395) (-0.00353996 -0.02400852 -0.0040581) (-0.004042061 -0.02300676 -0.004046464) (-0.004051127 -0.02400936 -0.003547287) (-0.00202232 -0.02400853 -0.003039135) (1.009052e-06 -0.02200656 -0.004043397) (7.409792e-07 -0.02400896 -0.003038708) (0.002025416 -0.02400874 -0.003040173) (0.004050002 -0.02400895 -0.004564884) (0.0040594 -0.0250104 -0.004064104) (0.003547449 -0.02400963 -0.004064201) (0.004558943 -0.02400864 -0.004052711) (0.004048965 -0.02300736 -0.004053808) (-0.005555467 -0.02000897 -0.004037559) (-0.006056831 -0.01900897 -0.004035467) (-0.006060124 -0.02000984 -0.003534122) (-0.004038769 -0.02000519 -0.004545047) (-0.004038343 -0.02100532 -0.004039938) (-0.004543132 -0.02000587 -0.004039786) (-0.0010073 -0.02000421 -0.004037875) (-0.002015088 -0.01800318 -0.004034906) (-0.002017388 -0.02000446 -0.003028277) (0.001009425 -0.02000483 -0.004039837) (1.006041e-06 -0.01800339 -0.00403552) (0.002017675 -0.01800381 -0.00403812) (0.00201996 -0.02000477 -0.00303073) (0.004041007 -0.02000555 -0.004554409) (0.004042543 -0.02100558 -0.004048998) (0.004546464 -0.02000538 -0.004048672) (0.005562 -0.02000566 -0.004045285) (0.006064548 -0.01900473 -0.004038581) (0.006071635 -0.0200068 -0.00354031) (-0.006051744 -0.0160069 -0.004535545) (-0.006057909 -0.01700661 -0.004034725) (-0.006560527 -0.01600589 -0.004030165) (-0.006058147 -0.01500543 -0.004032569) (-0.006063561 -0.01600604 -0.003531022) (-0.005551057 -0.01600592 -0.004035249) (-0.003022855 -0.01600306 -0.004033342) (-0.004033914 -0.01600369 -0.003024064) (-0.001006468 -0.01600253 -0.004032824) (-0.002013911 -0.01400216 -0.004031109) (0.001008734 -0.01600294 -0.004034204) (1.068447e-06 -0.01400221 -0.004031427) (0.003026688 -0.01600359 -0.004037678) (0.00201648 -0.01400279 -0.004033329) (0.004036423 -0.01600343 -0.00302686) (0.006064342 -0.01600474 -0.004543795) (0.006063009 -0.01700455 -0.004035839) (0.006568274 -0.01600557 -0.004034521) (0.006062175 -0.01500409 -0.004038087) (0.006064251 -0.0160048 -0.003530277) (0.005556679 -0.01600423 -0.00403986) (-0.006065591 -0.01200411 -0.004542589) (-0.006061763 -0.013004 -0.004034815) (-0.006572816 -0.01200442 -0.00404127) (-0.006063113 -0.01100371 -0.004037178) (-0.00606131 -0.01200355 -0.003531625) (-0.00302246 -0.01200199 -0.004030428) (-0.004032323 -0.01000188 -0.004030553) (-0.004032029 -0.0120023 -0.003022557) (-0.001006338 -0.0120017 -0.00402973) (-0.002014778 -0.01000138 -0.004028958) (0.001008182 -0.01200205 -0.004030483) (7.353685e-07 -0.01000142 -0.004029779) (0.003024241 -0.01200274 -0.004033295) (0.002015526 -0.01000196 -0.004030025) (0.004031575 -0.01000261 -0.004032857) (0.004032407 -0.01200252 -0.003024281) (0.006063711 -0.0120031 -0.004550776) (0.006062886 -0.01300258 -0.004040732) (0.006566345 -0.01200235 -0.004041568) (0.00605847 -0.01100314 -0.004040541) (0.006059059 -0.01200249 -0.003531852) (-0.007592425 -0.008002774 -0.004036117) (-0.005041801 -0.008001665 -0.00402986) (-0.006054364 -0.00800202 -0.004532854) (-0.006058103 -0.009002728 -0.004033037) (-0.006562818 -0.008002168 -0.004031385) (-0.006053211 -0.007001442 -0.004029477) (-0.003022934 -0.008001182 -0.004029034) (-0.004031295 -0.00600096 -0.004029944) (-0.004031243 -0.008001383 -0.003021788) (-0.00100691 -0.008001008 -0.004028793) (-0.002015225 -0.006000727 -0.004028013) (0.001007539 -0.008001289 -0.004029308) (0.00302196 -0.00800188 -0.00402965) (0.002014742 -0.006001197 -0.004027999) (0.005038696 -0.008002512 -0.00403054) (0.004029137 -0.006001764 -0.004029484) (0.004029621 -0.008001906 -0.003021814) (0.006049522 -0.008003258 -0.004533823) (0.006052904 -0.009003338 -0.004033011) (0.006556521 -0.008003587 -0.004030261) (0.006048545 -0.007002736 -0.004029351) (0.007582634 -0.008006412 -0.004031715) (-0.007557476 -0.004000877 -0.004026352) (-0.005039695 -0.004000743 -0.004031858) (-0.006052105 -0.004001118 -0.004538239) (-0.006049691 -0.005001003 -0.004030904) (-0.006552771 -0.004000901 -0.004032409) (-0.006050875 -0.003000774 -0.004035266) (-0.003022599 -0.004000448 -0.004029666) (-0.004030556 -0.00200009 -0.004031961) (-0.004029464 -0.00400055 -0.003022463) (-0.002015332 -0.002000071 -0.004028813) (0.003021152 -0.00400106 -0.004028194) (0.002014379 -0.002000464 -0.004027153) (0.005037653 -0.004001513 -0.00402947) (0.00402796 -0.002000809 -0.004028156) (0.004028218 -0.004001109 -0.003020932) (0.006052457 -0.004001892 -0.004535824) (0.00604924 -0.005001943 -0.004030422) (0.006555399 -0.004001676 -0.004030996) (0.006050994 -0.003001457 -0.004030207) (0.007568913 -0.004001463 -0.004029862) (-0.007580299 1.281431e-06 -0.004043801) (-0.00503976 5.588876e-07 -0.004033637) (-0.006054798 6.444202e-07 -0.004541219) (-0.006052902 -0.001000032 -0.004037579) (-0.006560289 6.890376e-07 -0.004039366) (-0.006054184 0.001001276 -0.004036647) (-0.003022593 3.673194e-07 -0.004031045) (-0.004030936 0.002000989 -0.004032699) (-0.004028506 3.066032e-07 -0.003023461) (-0.002015493 0.002000597 -0.004029708) (0.003020914 -1.660634e-07 -0.004027995) (0.002014977 0.002000302 -0.004027933) (0.005036034 -2.237464e-07 -0.004027277) (0.004029266 0.002000372 -0.004029378) (0.004027643 -1.629521e-07 -0.003020826) (0.006046726 -1.891951e-07 -0.004527826) (0.00604953 -0.001000665 -0.004027797) (0.00655633 5.85746e-09 -0.004030068) (0.006049198 0.001000439 -0.004028711) (0.007584535 6.860546e-07 -0.00404146) (-0.007553336 0.004001229 -0.004026623) (-0.005039394 0.004001537 -0.004032978) (-0.006053205 0.004002094 -0.004539229) (-0.006052014 0.0030018 -0.00403467) (-0.00655199 0.004001685 -0.004032714) (-0.006047794 0.005001626 -0.004032802) (-0.003022503 0.0040011 -0.00403101) (-0.004029765 0.006001617 -0.004031474) (-0.0040286 0.004001006 -0.003023219) (-0.002014956 0.006001224 -0.004029788) (0.003022882 0.004000745 -0.004029662) (0.002016048 0.006001054 -0.004029267) (0.005040418 0.0040011 -0.004031807) (0.004032574 0.006001362 -0.004031769) (0.004029608 0.004000804 -0.003022343) (0.006055783 0.004001529 -0.00453871) (0.00605108 0.003001229 -0.004032054) (0.006554206 0.004001484 -0.004032131) (0.006052815 0.005001508 -0.004033636) (0.007554434 0.004001705 -0.004025437) (-0.007580283 0.008002305 -0.004038507) (-0.005038728 0.008002195 -0.00403164) (-0.00604952 0.008002402 -0.004534815) (-0.006048755 0.007001825 -0.004031953) (-0.006557021 0.008002366 -0.004033405) (-0.006053108 0.009003114 -0.004033655) (-0.00302174 0.008001786 -0.004030866) (-0.004030709 0.01000251 -0.004032738) (-0.004029747 0.008001695 -0.003023023) (-0.001006975 0.008001377 -0.004030468) (-0.0020148 0.01000191 -0.004030847) (0.00100804 0.008001322 -0.004030282) (5.030918e-07 0.01000162 -0.004030806) (0.003024573 0.008001652 -0.004031184) (0.002016946 0.01000187 -0.004030945) (0.005045343 0.00800222 -0.00403468) (0.004036241 0.01000258 -0.004035212) (0.004033839 0.008001784 -0.003024073) (0.006061413 0.008002461 -0.004541392) (0.006057981 0.007001985 -0.004035409) (0.006567143 0.008002445 -0.004037073) (0.006064008 0.009002681 -0.004039311) (0.007586963 0.008003386 -0.004036606) (-0.006063768 0.01200526 -0.004546067) (-0.006059862 0.01100469 -0.004038976) (-0.00657179 0.01200596 -0.004042924) (-0.006065575 0.01300548 -0.004041173) (-0.006062666 0.01200496 -0.003534371) (-0.003023012 0.01200267 -0.004033155) (-0.004032113 0.01200273 -0.003024372) (-0.001007163 0.0120021 -0.004031307) (-0.002015634 0.01400281 -0.00403371) (0.001008417 0.01200211 -0.004031152) (2.845315e-07 0.01400248 -0.004032426) (0.003026844 0.01200268 -0.004034239) (0.002017496 0.01400281 -0.004033446) (0.004038861 0.01200295 -0.003026474) (0.006071025 0.01200446 -0.004548244) (0.006069968 0.01100315 -0.004042667) (0.006580295 0.01200334 -0.004043645) (0.006074437 0.01300458 -0.004043757) (-0.006062764 0.01600628 -0.004547794) (-0.006063046 0.01500593 -0.004039963) (-0.006568616 0.01600759 -0.004038992) (-0.006059451 0.01700643 -0.004038907) (-0.006061894 0.01600641 -0.003532025) (-0.005554452 0.01600545 -0.004040971) (-0.003025829 0.01600371 -0.004036492) (-0.004035337 0.01600395 -0.003025597) (-0.001008265 0.01600315 -0.004034709) (-0.002017892 0.01800403 -0.004037303) (0.001008604 0.01600322 -0.004034248) (-3.465513e-07 0.01800395 -0.00403629) (0.003029217 0.01600397 -0.004036921) (0.002018529 0.0180044 -0.004036791) (0.004043205 0.01600441 -0.003028214) (0.006078644 0.0160067 -0.004550858) (0.006081341 0.01500657 -0.004046575) (0.006595332 0.01600923 -0.004048178) (0.006084318 0.01700758 -0.00404991) (0.006087297 0.01600803 -0.003542849) (0.005571866 0.01600611 -0.00404739) (-0.006061131 0.01900757 -0.004037827) (-0.005558682 0.0200078 -0.00403558) (-0.006070487 0.02001069 -0.003533719) (-0.004042074 0.02000456 -0.004544093) (-0.0045454 0.02000525 -0.004037914) (-0.004040887 0.02100496 -0.0040383) (-0.001009952 0.02000515 -0.004039783) (-0.002019711 0.02000512 -0.003029234) (0.001008589 0.0200052 -0.004039042) (-1.330213e-06 0.02200708 -0.004044453) (0.002020663 0.02000546 -0.003029331) (0.004047421 0.02000824 -0.004546945) (0.004554579 0.02000718 -0.0040423) (0.004047772 0.0210073 -0.004041661) (0.005574481 0.02000685 -0.004042043) (0.006081988 0.02000791 -0.003536847) (-0.004041772 0.02400839 -0.004550951) (-0.004042555 0.02300642 -0.004041073) (-0.004547357 0.02400739 -0.004036657) (-0.003541175 0.02400986 -0.004052289) (-0.004047947 0.02501026 -0.004046052) (-0.002024907 0.02400951 -0.003038567) (-9.719075e-07 0.0240095 -0.003039517) (0.002023382 0.02400964 -0.00303859) (0.004045775 0.02401101 -0.004549305) (0.004047341 0.02300877 -0.004043136) (0.004554047 0.02401025 -0.004041808) (0.004052893 0.02501351 -0.004050001) (0.004054589 0.02401138 -0.003540423) (-0.004058812 0.0270151 -0.004054195) (-0.003560869 0.02801873 -0.004067355) (-0.004070922 0.02801905 -0.003554539) (-0.002032881 0.02801934 -0.004586577) (-0.00203349 0.02701612 -0.004073809) (-0.002542769 0.02801854 -0.004077743) (-0.001522736 0.02801839 -0.004078255) (-0.002032423 0.02902002 -0.004080355) (-5.91996e-07 0.02801578 -0.003054665) (-1.074642e-06 0.02801795 -0.004585865) (-0.0005073045 0.02801736 -0.004077886) (0.0005051081 0.02801671 -0.004079103) (-3.477197e-07 0.02901821 -0.004083528) (0.002023045 0.02801791 -0.004583764) (0.002024857 0.02701537 -0.004071171) (0.001517686 0.02801717 -0.004079622) (0.002533824 0.02801879 -0.004080592) (0.002027068 0.02902 -0.004086987) (0.00405437 0.02701735 -0.004064318) (0.003553285 0.02802021 -0.004078145) (0.004068629 0.0280225 -0.003570412) (-0.002032015 0.03102051 -0.004079673) (-0.002035802 0.03202288 -0.003573275) (2.402573e-06 0.03202188 -0.004591667) (1.253824e-06 0.03102074 -0.004088028) (-0.0005068861 0.03202142 -0.004080152) (0.0005091739 0.03202027 -0.00408474) (1.470969e-06 0.03301798 -0.004062519) (1.298586e-06 0.03202316 -0.003573637) (0.002027226 0.03102084 -0.004085304) (0.002030717 0.03202255 -0.003578998) (-0.002059994 -0.03504267 -0.002064903) (-9.988153e-08 -0.03505014 -0.00206655) (2.151908e-06 -0.03605242 -0.001552867) (0.002059266 -0.03504499 -0.002057528) (-0.003570848 -0.03203392 -0.002059643) (-0.004069026 -0.03102583 -0.002047731) (-0.002051456 -0.03203491 -0.002576783) (-0.002055382 -0.03303716 -0.002069156) (-0.002558429 -0.03203481 -0.002067781) (-8.765063e-07 -0.03002207 -0.002043113) (-9.511216e-07 -0.03202868 -0.001025881) (0.002042036 -0.03202781 -0.002552723) (0.002049272 -0.03303153 -0.002049853) (0.00254844 -0.03202422 -0.002041151) (0.003556273 -0.03201667 -0.002028134) (0.004062313 -0.03101369 -0.002026505) (-0.004059612 -0.0280136 -0.002541274) (-0.004061514 -0.02901596 -0.002034674) (-0.004563087 -0.02801341 -0.002028869) (-0.00405791 -0.02701178 -0.002031285) (-0.00406082 -0.02801344 -0.001522788) (-0.001015962 -0.02801619 -0.002038197) (-0.002027032 -0.02601157 -0.002031842) (-0.0020317 -0.02801455 -0.001019845) (0.00101504 -0.02801543 -0.002035059) (1.347908e-07 -0.02601179 -0.002031123) (0.002028624 -0.02601066 -0.002029644) (0.002030574 -0.02801295 -0.001015607) (0.004074429 -0.02801252 -0.002538259) (0.004067643 -0.02901173 -0.002028159) (0.004574144 -0.02801122 -0.00202997) (0.0040696 -0.02701055 -0.002032357) (0.004065526 -0.02801036 -0.001521134) (-0.005573419 -0.02401344 -0.002019074) (-0.006077229 -0.0230162 -0.002017501) (-0.006081107 -0.02401472 -0.001513786) (-0.003036501 -0.0240086 -0.002024833) (-0.001011551 -0.02400871 -0.002026984) (-0.002021448 -0.02200631 -0.002022194) (-0.002025754 -0.02400852 -0.001012738) (0.001012913 -0.02400863 -0.002026897) (0.003040579 -0.02400796 -0.002025939) (0.002023742 -0.02200623 -0.00202339) (0.002027067 -0.0240081 -0.001012576) (0.005580304 -0.02400918 -0.002023821) (0.006077145 -0.02300877 -0.002020128) (0.006082677 -0.02400965 -0.001517592) (-0.006064624 -0.02000945 -0.002523398) (-0.006072197 -0.02101223 -0.002016766) (-0.006571208 -0.02000984 -0.002017303) (-0.006064416 -0.01900785 -0.002019687) (-0.006074974 -0.02001117 -0.001512655) (-0.003029139 -0.02000519 -0.002018107) (-0.004036941 -0.01800472 -0.002016423) (-0.004042337 -0.0200064 -0.00100849) (0.003031571 -0.02000478 -0.002020079) (0.004038714 -0.01800395 -0.002018042) (0.004043354 -0.02000519 -0.001009546) (0.006067547 -0.0200061 -0.002524699) (0.006070979 -0.02100667 -0.002018795) (0.006570019 -0.02000626 -0.002017649) (0.006064377 -0.01900523 -0.00201878) (0.00607123 -0.02000645 -0.001513705) (-0.007578654 -0.01600424 -0.002021577) (-0.005046099 -0.01600424 -0.002016583) (-0.006064058 -0.01600517 -0.002523847) (-0.006062798 -0.01700558 -0.002020132) (-0.006568252 -0.01600494 -0.002021488) (-0.006061113 -0.01500415 -0.002019899) (-0.004032723 -0.01400283 -0.002015163) (-0.004034645 -0.01600362 -0.001007897) (0.005046044 -0.01600338 -0.002016345) (0.004033099 -0.01400266 -0.002015817) (0.00403514 -0.01600318 -0.001007902) (0.006061996 -0.01600403 -0.002519805) (0.006061623 -0.01700425 -0.002017191) (0.006566653 -0.0160039 -0.002017208) (0.006060259 -0.01500327 -0.002016642) (0.007574433 -0.01600335 -0.0020165) (-0.007575358 -0.01200523 -0.002015991) (-0.005041893 -0.01200271 -0.002015294) (-0.004031654 -0.01000183 -0.002014969) (-0.004031875 -0.01200228 -0.001007579) (0.005040368 -0.01200232 -0.002015003) (0.004030339 -0.01000198 -0.002014944) (0.004030798 -0.01200212 -0.001007134) (0.007580905 -0.01200277 -0.002015196) (-0.008079923 -0.008004768 -0.001507587) (-0.007570998 -0.008004893 -0.002012387) (-0.005039739 -0.008001752 -0.002014147) (-0.004029919 -0.006000966 -0.002014849) (-0.004032289 -0.008001413 -0.001007307) (0.005037012 -0.008001919 -0.00201347) (0.004028825 -0.006001398 -0.002014108) (0.004030818 -0.008001611 -0.001006628) (0.007557884 -0.008003166 -0.002010757) (-0.008061856 -0.003002403 -0.002014254) (-0.008062822 -0.004002316 -0.001511487) (-0.007559225 -0.004001727 -0.002013531) (-0.005035014 -0.004000684 -0.002014459) (-0.006038193 -0.004000686 -0.00100682) (-0.004027184 -0.00200017 -0.002015577) (-0.004028589 -0.004000548 -0.001007351) (0.005035103 -0.004001169 -0.002013104) (0.004027391 -0.002000606 -0.002014102) (0.004029437 -0.004001023 -0.001006509) (0.006042741 -0.004001461 -0.001005693) (0.008069524 -0.003001297 -0.002012095) (0.00807315 -0.004002251 -0.001508526) (0.007558963 -0.004001607 -0.002011239) (-0.008068551 7.125929e-07 -0.002523068) (-0.008054463 -0.0010003 -0.002016922) (-0.00856777 6.764393e-07 -0.002017406) (-0.008051508 0.001000894 -0.002016545) (-0.008033305 4.019198e-07 -0.001511755) (-0.007546682 3.694706e-07 -0.00201632) (-0.005031631 2.192458e-07 -0.002015336) (-0.006028932 2.242529e-07 -0.00100756) (-0.004026633 0.002000519 -0.002015823) (0.005032756 -1.790988e-07 -0.002013605) (0.004027279 0.002000273 -0.002014646) (0.006033017 -2.818153e-07 -0.00100656) (0.008073588 -4.288826e-07 -0.002520975) (0.008067885 -0.001000916 -0.002016037) (0.008577789 -1.460327e-06 -0.002016815) (0.008058182 0.001000223 -0.002014635) (0.00804438 -4.193237e-07 -0.001510754) (0.007553769 -2.452265e-07 -0.002014824) (-0.008049728 0.003001296 -0.00201496) (-0.008051505 0.004001906 -0.001513912) (-0.007547 0.004001153 -0.002014001) (-0.005032909 0.004000838 -0.002014938) (-0.006035268 0.004000714 -0.001007405) (-0.004028598 0.006001083 -0.002015528) (-0.004027658 0.004000651 -0.001007602) (0.005034201 0.004000804 -0.002014305) (0.004030818 0.006001162 -0.00201562) (0.006035248 0.004000603 -0.00100657) (0.008051481 0.004001618 -0.002513459) (0.008055934 0.003001685 -0.002012592) (0.008572077 0.004001555 -0.002011198) (0.00805971 0.005001603 -0.002011603) (0.008050947 0.004001622 -0.001508965) (0.00754824 0.004001365 -0.002011797) (-0.008071867 0.008001678 -0.001507479) (-0.007560957 0.008001571 -0.002013) (-0.005037677 0.008001526 -0.002014993) (-0.004030995 0.0100019 -0.002015861) (-0.00403147 0.008001227 -0.001007656) (0.005042032 0.008001918 -0.002015877) (0.004036112 0.01000223 -0.002016867) (0.004034657 0.008001541 -0.001007773) (0.00808277 0.008002232 -0.001510849) (0.007569261 0.008003491 -0.002015798) (-0.007573439 0.01200389 -0.002017641) (-0.005041321 0.01200275 -0.002016169) (-0.00403295 0.01400301 -0.002016049) (-0.00403179 0.01200217 -0.001008026) (0.005050404 0.0120034 -0.002018174) (0.004040109 0.0140035 -0.002017701) (0.004037405 0.01200274 -0.001008435) (0.007593812 0.01200723 -0.0020224) (-0.007576137 0.01600359 -0.002020296) (-0.005045538 0.01600439 -0.002016429) (-0.00605971 0.01600565 -0.002520654) (-0.006057551 0.01500448 -0.00201803) (-0.006564671 0.01600536 -0.002018583) (-0.006061071 0.01700634 -0.002017664) (-0.004038107 0.01800469 -0.002016468) (-0.004034991 0.01600359 -0.001008114) (0.005056036 0.01600514 -0.002019562) (0.004044377 0.01800504 -0.002018659) (0.004040864 0.01600407 -0.001008904) (0.006079572 0.01600737 -0.002528606) (0.006075121 0.01500638 -0.002023598) (0.006580677 0.01600774 -0.002024036) (0.006074709 0.01700736 -0.002022496) (0.007582669 0.01600907 -0.002021689) (-0.006070455 0.0200091 -0.002522839) (-0.006067795 0.01900844 -0.00201856) (-0.00657848 0.02001019 -0.002019085) (-0.006074977 0.02100905 -0.002018115) (-0.006078039 0.02000965 -0.001513995) (-0.003030868 0.02000531 -0.002017949) (-0.004043255 0.02000591 -0.001008167) (-0.002023265 0.02200684 -0.002021716) (0.003034108 0.02000568 -0.002019286) (0.002024172 0.0220071 -0.002022561) (0.004046937 0.02000592 -0.00100943) (0.006080527 0.02000856 -0.002526455) (0.006077628 0.01900798 -0.002019564) (0.00658106 0.02000833 -0.002018475) (0.006079192 0.02100783 -0.002021761) (0.006076954 0.02000718 -0.001513971) (-0.006078862 0.02300943 -0.002017993) (-0.005576775 0.02401014 -0.002017569) (-0.006083039 0.02401216 -0.001513303) (-0.003038734 0.02400919 -0.002022229) (-0.001012777 0.02400932 -0.002026433) (-0.002028539 0.02601192 -0.002028241) (-0.002026643 0.02400914 -0.001011408) (0.001012351 0.02400941 -0.002027033) (-3.461808e-07 0.02601212 -0.002031047) (0.003039852 0.02400968 -0.002024798) (0.002028007 0.02601233 -0.002031324) (0.002027721 0.02400939 -0.001012578) (0.006083374 0.02300932 -0.002026168) (0.005580634 0.02401082 -0.002023826) (0.006087553 0.02401217 -0.001516345) (-0.004072843 0.02801811 -0.0025361) (-0.004067038 0.02701552 -0.0020269) (-0.004575297 0.02801826 -0.002026353) (-0.004070743 0.02901805 -0.002027221) (-0.00406816 0.02801668 -0.001519122) (-0.001015697 0.02801552 -0.002034564) (-0.002031649 0.02801491 -0.001015051) (0.001015421 0.0280158 -0.002037285) (1.758086e-07 0.03002087 -0.002041819) (0.002031626 0.02801494 -0.0010182) (0.004069447 0.02801939 -0.002546113) (0.004064311 0.02701509 -0.00203258) (0.004568596 0.02801601 -0.002030382) (0.004067215 0.02901859 -0.002037047) (0.004062423 0.02801445 -0.001522685) (-0.004070166 0.03101926 -0.002025225) (-0.003568965 0.03202177 -0.002028301) (-0.002044206 0.03202799 -0.002553518) (-0.00255295 0.03202706 -0.002041607) (-0.002048941 0.03303279 -0.002048535) (-1.919271e-07 0.03202977 -0.001024121) (0.002046527 0.03202785 -0.002563855) (0.002556079 0.03202723 -0.002054659) (0.002050148 0.03303004 -0.002056849) (0.004073444 0.0310239 -0.002043727) (0.003571799 0.03202536 -0.002047856) (-0.002050338 0.03504752 -0.002051516) (1.27074e-06 0.03505092 -0.002065969) (-2.700826e-06 0.03606304 -0.001554847) (0.00204996 0.03503809 -0.00205215) (-0.001557465 -0.03605302 1.591182e-06) (-0.00206775 -0.0350418 -3.442868e-06) (-3.748071e-08 -0.03403789 2.826105e-06) (4.270164e-06 -0.0360431 -0.0005117809) (4.670448e-06 -0.03703813 1.154764e-05) (-0.0005176261 -0.03604345 8.689339e-06) (0.0005254134 -0.0360549 8.316433e-06) (1.944254e-06 -0.03605148 0.0005292918) (0.001562675 -0.03607502 1.022481e-05) (0.002055937 -0.03504786 5.911087e-06) (-0.004060748 -0.03201337 -0.0005087896) (-0.004046349 -0.03301157 8.255561e-07) (-0.004554976 -0.03200746 4.683313e-07) (-0.003557008 -0.03201532 -1.38671e-06) (-0.004064849 -0.03101097 -5.673463e-07) (-0.004061468 -0.03201076 0.0005078179) (-0.00102406 -0.03202679 -1.088037e-06) (-0.002036512 -0.03001779 -2.326223e-06) (0.001020521 -0.03202756 1.011085e-06) (-1.665507e-06 -0.03202762 0.001025624) (0.002032922 -0.03001657 1.13578e-06) (0.004054753 -0.03200607 -0.0005023731) (0.004034262 -0.03300528 6.199203e-06) (0.003548787 -0.03201136 4.709167e-06) (0.004558775 -0.03200233 9.05573e-06) (0.004064994 -0.03100843 5.77192e-06) (0.004064007 -0.03201116 0.0005148142) (-0.005597614 -0.02801519 1.727988e-06) (-0.003047648 -0.02801215 -1.393293e-06) (-0.004065239 -0.02801162 -0.0005067854) (-0.004067752 -0.02901095 -7.345774e-07) (-0.004575061 -0.02801161 -9.432858e-08) (-0.004067413 -0.02801017 0.0005051407) (-0.002029117 -0.0260106 -1.688432e-07) (-0.002032723 -0.02801338 0.00101667) (0.003046671 -0.02801137 1.258527e-06) (0.002028831 -0.02601005 9.040638e-07) (0.002031286 -0.02801274 0.001017522) (0.004064365 -0.02801023 -0.0005053577) (0.004066397 -0.02901062 2.643025e-06) (0.004573328 -0.02801271 1.796459e-06) (0.004068221 -0.02801206 0.0005086712) (0.00559048 -0.02802025 9.363237e-07) (-0.006085019 -0.0240128 -0.000503963) (-0.006088766 -0.02501372 1.11554e-06) (-0.006580593 -0.02401326 3.696299e-08) (-0.006087529 -0.02301394 -6.604031e-07) (-0.006084495 -0.02401336 0.0005036779) (-0.005581277 -0.02401226 4.647277e-07) (-0.003039595 -0.02400854 4.059639e-07) (-0.004048777 -0.02200803 3.806486e-07) (-0.002027228 -0.0240088 0.001014329) (0.003040293 -0.0240081 6.406254e-07) (0.002027298 -0.02400832 0.001014794) (0.004048995 -0.02200703 2.254242e-07) (0.006082199 -0.02401163 -0.0005064534) (0.006089924 -0.02501699 -6.553014e-07) (0.00657427 -0.02401262 -2.675929e-07) (0.006078184 -0.02301058 -6.830844e-07) (0.006078892 -0.02401211 0.0005051109) (0.005579108 -0.02401255 -6.506414e-07) (-0.00505832 -0.02000822 -4.1109e-07) (-0.006081294 -0.02001208 -0.0005045133) (-0.00608547 -0.02101324 -1.159459e-06) (-0.006589475 -0.02001296 -9.843968e-07) (-0.006078741 -0.02001148 0.0005020847) (-0.004038286 -0.01800487 -1.033682e-07) (-0.004043037 -0.02000637 0.001009056) (0.005056976 -0.02000632 -3.447465e-07) (0.004039163 -0.01800426 4.215198e-07) (0.004044549 -0.02000593 0.001010458) (0.006074326 -0.02000751 -0.0005055472) (0.006076323 -0.02100849 -1.484587e-06) (0.006581812 -0.02000864 -2.274043e-06) (0.006075397 -0.02000821 0.0005024697) (-0.007564111 -0.01600309 -1.154824e-07) (-0.005044299 -0.01600397 -9.037787e-07) (-0.004032116 -0.01400276 -5.49033e-07) (-0.004033793 -0.01600347 0.00100711) (0.005044434 -0.01600328 1.54646e-07) (0.004032222 -0.01400248 4.991805e-07) (0.004035853 -0.01600333 0.0010091) (0.007563613 -0.01600266 -1.667244e-06) (-0.008064326 -0.01100318 -2.77823e-08) (-0.007558905 -0.01200371 -7.013505e-07) (-0.005039232 -0.0120025 -9.270522e-07) (-0.004032408 -0.01000181 -4.896457e-07) (-0.004030447 -0.0120022 0.00100651) (0.005036543 -0.01200189 3.826205e-07) (0.004030985 -0.01000172 3.953258e-07) (0.004030971 -0.01200199 0.001008059) (0.007534602 -0.01200036 -4.008247e-07) (-0.008096202 -0.00800312 -0.0005022665) (-0.008090216 -0.009003214 4.469049e-07) (-0.008625969 -0.008004084 6.665319e-07) (-0.008094703 -0.007002192 4.82389e-07) (-0.008093672 -0.008002976 0.0005028082) (-0.007578005 -0.008002519 7.216901e-08) (-0.005037644 -0.008001509 -3.826328e-07) (-0.006043705 -0.006001005 -1.908808e-07) (-0.004029974 -0.0060009 -1.723813e-07) (-0.004030937 -0.008001309 0.001006766) (0.005035685 -0.008001633 4.274801e-07) (0.004030411 -0.006001305 3.411946e-07) (0.004030956 -0.008001457 0.001007297) (0.006045779 -0.006001919 6.360378e-07) (0.008070496 -0.008002933 -0.0005006394) (0.008054235 -0.009002043 8.099181e-07) (0.008592674 -0.008003527 1.357025e-06) (0.008091417 -0.007003878 1.378223e-06) (0.008069712 -0.008002802 0.000502727) (0.007561143 -0.008002541 8.633199e-07) (-0.007035856 -0.003999798 -1.378782e-08) (-0.008030167 -0.003999697 -0.0005025559) (-0.008048449 -0.004999222 2.408536e-07) (-0.008502904 -0.003997746 6.802092e-07) (-0.008004847 -0.002998171 5.105916e-07) (-0.008028954 -0.003997479 0.0005030367) (-0.0050309 -0.004000441 -1.020694e-07) (-0.006027708 -0.001999867 -4.76688e-08) (-0.006035857 -0.004000014 0.001006606) (-0.004027796 -0.004000462 0.00100719) (0.005034067 -0.004001201 3.656027e-07) (0.004029588 -0.004000998 0.001007046) (0.007054598 -0.004002339 1.010849e-06) (0.006034723 -0.002000992 3.632297e-07) (0.00604256 -0.004001613 0.001006734) (0.008070583 -0.00400346 -0.0005012027) (0.008095811 -0.005004995 1.996007e-06) (0.008571245 -0.004004613 3.006794e-06) (0.008040313 -0.003002467 1.983929e-06) (0.00807508 -0.004003448 0.0005048705) (-0.007016959 5.363908e-07 -2.276689e-07) (-0.007996638 6.533484e-07 -0.0005033091) (-0.007992399 -0.0009987274 2.857155e-07) (-0.008482221 8.090184e-07 -1.437467e-07) (-0.007991391 0.001000523 -9.563177e-07) (-0.007996048 9.519603e-07 0.0005031381) (-0.006026826 0.002000458 -4.227471e-07) (-0.006028571 3.571311e-07 0.001007301) (0.007024159 -4.670076e-07 2.017196e-07) (0.006028747 0.001999989 -2.26163e-08) (0.006032514 -5.38794e-07 0.001006612) (0.008007206 -3.136376e-07 -0.0005024913) (0.0080074 -0.001000718 9.261237e-07) (0.008490256 -2.588443e-07 4.994271e-07) (0.007997388 0.0009998932 2.437846e-07) (0.008005024 -3.244106e-07 0.0005032695) (-0.007034148 0.004000643 -1.181108e-06) (-0.008026689 0.004000803 -0.0005061955) (-0.008002489 0.003000515 -2.546456e-06) (-0.008502077 0.004000175 -3.075909e-06) (-0.008050707 0.005000493 -1.980898e-06) (-0.008027223 0.004000754 0.0005008408) (-0.005030152 0.004000577 -2.579439e-07) (-0.006043011 0.006000753 -4.365657e-07) (-0.006035533 0.004000678 0.00100652) (-0.004029558 0.006000784 -1.859858e-07) (-0.004027685 0.004000533 0.001007362) (0.00503101 0.004000405 4.654665e-08) (0.004031266 0.006000878 1.402214e-07) (0.004029166 0.004000388 0.00100742) (0.007029682 0.004000036 1.330744e-07) (0.006041693 0.006000637 3.500211e-07) (0.006036242 0.004000139 0.001006358) (0.008013823 0.003999759 -0.0005026457) (0.007999217 0.00299986 2.305678e-07) (0.008488404 0.003998917 2.968467e-07) (0.008023247 0.004998896 9.094006e-07) (0.008016165 0.003999506 0.0005030745) (-0.008094961 0.008001333 -0.0005025513) (-0.00809807 0.007000403 -1.226048e-06) (-0.008628018 0.008002128 -4.737564e-07) (-0.008089589 0.009001537 -3.262679e-07) (-0.008095359 0.008001113 0.0005019464) (-0.007578065 0.00800097 -5.03306e-07) (-0.005037325 0.008001013 -3.913045e-07) (-0.004032458 0.01000139 -4.946665e-07) (-0.004031333 0.008000927 0.001007174) (0.005039987 0.008001365 2.650455e-07) (0.004036582 0.01000197 1.207354e-07) (0.004034156 0.00800126 0.001008081) (0.008093582 0.008000834 -0.0005010514) (0.008074079 0.006999643 3.572925e-06) (0.008622765 0.008000724 5.649635e-06) (0.00810067 0.009001843 3.157437e-06) (0.008097483 0.008000977 0.0005084021) (0.007577038 0.008000859 2.517272e-06) (-0.008061983 0.01100152 -2.172285e-06) (-0.007556027 0.01200249 -3.624115e-06) (-0.005039191 0.01200192 -1.152383e-06) (-0.004032392 0.01400251 -6.228739e-07) (-0.004031153 0.01200161 0.001006851) (0.005045095 0.01200287 -1.299343e-08) (0.004037734 0.01400323 -5.607599e-08) (0.004035915 0.01200249 0.001008423) (0.008071519 0.01100246 2.037375e-06) (0.007561942 0.01200392 1.464799e-06) (-0.007566001 0.01600562 -2.278376e-06) (-0.0050443 0.01600374 -1.073893e-06) (-0.004038679 0.01800446 6.130684e-08) (-0.00403409 0.01600302 0.001007449) (0.005050296 0.0160044 -3.187853e-07) (0.004042943 0.01800475 8.470644e-08) (0.004039624 0.0160039 0.001008818) (0.007574831 0.01600754 -1.166198e-06) (-0.005058406 0.02000686 -2.319379e-07) (-0.006082405 0.02000984 -0.0005056005) (-0.006592567 0.02001095 -1.880106e-06) (-0.006083874 0.02100996 -1.678262e-06) (-0.006081128 0.02000852 0.0005024622) (-0.004049316 0.02200754 1.05203e-06) (-0.004043403 0.02000558 0.001009819) (0.005060117 0.02000617 -1.748474e-07) (0.004052285 0.02200776 2.017113e-07) (0.004047262 0.02000608 0.001009898) (0.006074924 0.02000639 -0.0005045188) (0.0060685 0.01900565 -1.724487e-06) (0.006574208 0.02000603 -4.835102e-07) (0.006080074 0.02100729 -4.773418e-07) (0.006073999 0.02000581 0.0005038157) (-0.006082336 0.02401262 -0.0005048025) (-0.006085568 0.02301101 -1.517483e-06) (-0.00658058 0.02401111 -1.515029e-06) (-0.006086636 0.02501393 -6.201661e-07) (-0.006083517 0.02401037 0.0005029834) (-0.005579963 0.02401192 -1.618632e-07) (-0.00303997 0.02400913 1.491685e-06) (-0.002028949 0.02601157 1.305906e-06) (-0.002027115 0.02400918 0.001014918) (0.003042416 0.02400959 6.074949e-07) (0.002030376 0.02601199 7.437215e-07) (0.002029069 0.02400999 0.001014448) (0.006103672 0.02401401 -0.0005056275) (0.006098366 0.02301185 -8.648927e-07) (0.006600896 0.02401301 -7.436586e-07) (0.006109866 0.02501751 5.652833e-07) (0.006104715 0.02401456 0.0005045547) (0.00559331 0.02401377 1.361805e-07) (-0.005600102 0.02802357 -1.078388e-06) (-0.003046585 0.02801428 6.719015e-07) (-0.00406571 0.02801566 -0.0005057903) (-0.004574152 0.0280172 -3.871471e-07) (-0.004064972 0.0290156 -2.712501e-07) (-0.004065466 0.02801511 0.0005055173) (-0.002035239 0.03001943 1.211628e-06) (-0.002031484 0.0280149 0.001016962) (0.003048262 0.02801388 6.894109e-07) (0.002035266 0.030019 1.021332e-06) (0.00203395 0.02801609 0.001018887) (0.004063067 0.02801245 -0.0005050675) (0.004573712 0.02801389 2.366036e-06) (0.004066498 0.02901285 2.320812e-06) (0.004070319 0.02801425 0.0005081467) (0.0055902 0.0280162 3.954824e-06) (-0.004058084 0.03201506 -0.0005060479) (-0.00406038 0.03101501 2.156746e-07) (-0.004551972 0.0320105 4.258821e-07) (-0.003554983 0.0320181 1.625098e-06) (-0.00404542 0.03301274 1.654345e-06) (-0.004055963 0.03201533 0.0005078558) (0.001022327 0.03202969 2.204361e-06) (0.004051888 0.0320077 -0.0005043833) (0.004063374 0.0310116 4.472993e-06) (0.003550689 0.03201279 3.612125e-06) (0.004557804 0.03200839 7.707551e-06) (0.004034796 0.03300624 4.873224e-06) (0.004065151 0.03201453 0.0005140113) (-0.002069333 0.0350453 6.359531e-06) (-0.001564255 0.03605537 7.936391e-06) (-1.72484e-06 0.03605532 -0.0005147354) (-0.0005250521 0.03605034 9.128303e-06) (0.0005232891 0.03605809 5.446056e-06) (-2.232438e-06 0.03704539 8.609544e-06) (-2.841035e-06 0.03605237 0.0005312898) (0.002058599 0.0350476 1.329827e-06) (0.001564276 0.03607436 -3.058929e-07) (-0.002059896 -0.03504679 0.002055542) (-2.616209e-06 -0.03606475 0.001564146) (-1.496912e-06 -0.03504837 0.002067773) (0.002041838 -0.0350318 0.002044149) (-0.003567075 -0.03201848 0.002035432) (-0.004072933 -0.03101533 0.002031053) (-0.002051294 -0.03303289 0.00205219) (-0.002553289 -0.03202631 0.002045558) (-0.002044864 -0.03202848 0.00255766) (-9.618936e-07 -0.03001921 0.002041068) (0.002040058 -0.0330232 0.00204256) (0.002545098 -0.03201994 0.002037022) (0.002035626 -0.03201952 0.002546959) (0.003564629 -0.03202036 0.00202758) (0.004076729 -0.03102119 0.002029119) (-0.004070074 -0.0280109 0.0015182) (-0.004074856 -0.02901267 0.002027452) (-0.004576957 -0.02801229 0.002023766) (-0.004070588 -0.02701225 0.002027556) (-0.004076545 -0.02801376 0.002535519) (-0.001016242 -0.02801495 0.002037109) (-0.002029683 -0.02601159 0.002032122) (0.001015164 -0.02801387 0.002036623) (-4.853247e-08 -0.0260116 0.00203403) (3.026542e-07 -0.0280156 0.003055914) (0.002029167 -0.02601067 0.002032472) (0.004071096 -0.02801375 0.001522226) (0.004073279 -0.02901564 0.002029428) (0.004574861 -0.02801395 0.002028375) (0.00406631 -0.02701191 0.002030517) (0.004071285 -0.028014 0.002538651) (-0.006078196 -0.02401336 0.001512583) (-0.005579808 -0.02401357 0.002023142) (-0.00606938 -0.02301173 0.002017329) (-0.003040882 -0.02400958 0.002027088) (-0.001012874 -0.02400944 0.0020308) (-0.002023734 -0.02200737 0.002026118) (-0.002025833 -0.02401069 0.003045266) (0.001013174 -0.02400898 0.002030925) (4.559023e-07 -0.02401006 0.003045646) (0.003040698 -0.02400872 0.002027767) (0.002024809 -0.02200692 0.002026501) (0.002026356 -0.02400959 0.003045101) (0.00608121 -0.02401068 0.001516983) (0.005581418 -0.02401132 0.002022879) (0.006087467 -0.02301204 0.002022872) (-0.006070294 -0.02000959 0.001508679) (-0.006066961 -0.02100924 0.0020129) (-0.006568303 -0.02000808 0.002011906) (-0.006062414 -0.01900567 0.00201402) (-0.006064323 -0.02000712 0.002517973) (-0.003030967 -0.02000577 0.002020959) (-0.00403708 -0.0180045 0.002016771) (-0.00201933 -0.02000594 0.003034201) (0.003033273 -0.02000574 0.0020224) (0.002021473 -0.02000583 0.003034612) (0.004040923 -0.01800486 0.002019789) (0.006076139 -0.02000951 0.001512064) (0.006078606 -0.02101116 0.002018769) (0.006577498 -0.02001109 0.00201642) (0.00607069 -0.01900874 0.002019772) (0.006076128 -0.02001192 0.002526014) (-0.007555376 -0.01600176 0.002008709) (-0.005042672 -0.01600338 0.002013493) (-0.006057912 -0.01700327 0.002012955) (-0.006558122 -0.01600255 0.002011759) (-0.006050383 -0.01500256 0.002011479) (-0.006054453 -0.01600283 0.002514738) (-0.004030525 -0.01400265 0.002014295) (-0.004033 -0.01600342 0.003024808) (0.005047836 -0.01600376 0.002018394) (0.004033711 -0.01400258 0.002017039) (0.004038089 -0.01600356 0.00302842) (0.006065831 -0.01700521 0.002020204) (0.006568677 -0.01600401 0.002020607) (0.006060306 -0.01500335 0.002020114) (0.006065252 -0.01600464 0.002524888) (0.007574585 -0.01600218 0.002017877) (-0.007562361 -0.01200511 0.002010783) (-0.005037514 -0.01200246 0.002013035) (-0.004029349 -0.01000174 0.00201454) (-0.004029403 -0.01200229 0.003022664) (0.005040401 -0.01200202 0.002016103) (0.004030441 -0.01000163 0.002015428) (0.004032396 -0.012002 0.003024461) (0.007577935 -0.01200172 0.002016825) (-0.008069544 -0.008003055 0.001506968) (-0.007556794 -0.008002828 0.002011055) (-0.005036248 -0.008001455 0.002013744) (-0.004028305 -0.006000868 0.002014912) (-0.004029149 -0.00800132 0.003022433) (0.005037105 -0.008001543 0.002013981) (0.004029286 -0.006001166 0.002014468) (0.004029971 -0.008001327 0.003021612) (0.007558912 -0.008002832 0.0020126) (-0.008055785 -0.003997095 0.001509237) (-0.008060339 -0.004999159 0.002010654) (-0.008570005 -0.003997326 0.002010435) (-0.008054107 -0.002997695 0.002013441) (-0.008051848 -0.003999018 0.002514158) (-0.007549426 -0.003998806 0.002012064) (-0.005033084 -0.00400043 0.002014526) (-0.004026568 -0.002000234 0.002015418) (-0.004028591 -0.004000642 0.003022761) (0.005035226 -0.00400116 0.00201366) (0.004027914 -0.00200062 0.002014528) (0.004029262 -0.004000868 0.003021149) (0.008073979 -0.004003147 0.00151059) (0.008062088 -0.003002582 0.002013105) (0.007557247 -0.004002676 0.002012965) (-0.008032693 7.571606e-07 0.001513093) (-0.00805313 -0.0009991193 0.002018594) (-0.00856812 -2.038378e-07 0.002024236) (-0.008053508 0.001000264 0.002016408) (-0.008070857 7.935203e-08 0.002523322) (-0.007546651 4.698693e-07 0.002016606) (-0.005031345 8.822015e-08 0.002015159) (-0.004026541 0.002000302 0.002015588) (-0.004028154 -4.371185e-08 0.003022956) (0.005032969 -4.407854e-07 0.002013814) (0.00402791 0.002000059 0.002015051) (0.00402904 -2.344735e-07 0.003021677) (0.008040661 -3.83334e-07 0.001510201) (0.008059606 -0.001001283 0.002015009) (0.008575133 -3.863333e-08 0.002014531) (0.008058118 0.0009999411 0.002013286) (0.0080703 -9.784703e-07 0.002520413) (0.007550451 -7.333491e-07 0.002013809) (-0.008053505 0.00400169 0.00150772) (-0.008053187 0.003000824 0.002011517) (-0.00754863 0.004001491 0.002011894) (-0.005033099 0.004000621 0.002014855) (-0.004028699 0.006000761 0.002015481) (-0.004028751 0.004000625 0.003023284) (0.005034871 0.004000258 0.002014295) (0.004030781 0.006000774 0.0020161) (0.004030465 0.004000479 0.003023294) (0.008056124 0.004000264 0.001507725) (0.00806036 0.003000355 0.00200987) (0.008577362 0.004000804 0.002009199) (0.008066368 0.004999972 0.002009234) (0.008058754 0.003999981 0.0025106) (0.007552983 0.003999959 0.002009682) (-0.00807166 0.00800129 0.001508804) (-0.00755911 0.008001312 0.002014032) (-0.005037358 0.008000864 0.002014733) (-0.004030537 0.01000112 0.00201523) (-0.004030206 0.008001041 0.003023166) (0.005040752 0.008001105 0.002015966) (0.004034246 0.01000182 0.002017147) (0.00403297 0.008001338 0.003024964) (0.008088739 0.008000198 0.001513004) (0.00757218 0.007999961 0.002014761) (-0.007569269 0.01199848 0.002014051) (-0.005039478 0.01200109 0.002014068) (-0.004031405 0.01400196 0.002014859) (-0.004031249 0.0120015 0.003023277) (0.005045296 0.01200263 0.002017341) (0.004037121 0.01400325 0.002017369) (0.004035573 0.0120027 0.00302623) (0.007585798 0.01200244 0.002022738) (-0.007557239 0.01600365 0.002009126) (-0.00504212 0.01600272 0.002014473) (-0.006553987 0.0160028 0.002013217) (-0.006053029 0.01700349 0.002014581) (-0.006051196 0.01600278 0.002516998) (-0.004037016 0.01800386 0.002017441) (-0.004033262 0.01600271 0.003025233) (0.005051732 0.01600456 0.002018279) (0.004043537 0.01800514 0.002019247) (0.004040489 0.01600459 0.003028468) (0.006062239 0.0150042 0.002018548) (0.006570385 0.01600484 0.002018886) (0.006070599 0.01700545 0.002020312) (0.006068241 0.01600547 0.002523393) (0.007573206 0.01600429 0.002014831) (-0.006071456 0.02000649 0.001511149) (-0.006060191 0.01900477 0.002016527) (-0.006568342 0.0200062 0.002015035) (-0.006069264 0.02100673 0.002016697) (-0.006064356 0.0200055 0.002522155) (-0.003031366 0.02000533 0.002021435) (-0.002023999 0.02200716 0.002026361) (-0.002019849 0.02000556 0.00303396) (0.003034861 0.02000619 0.002021054) (0.002026038 0.02200792 0.002025294) (0.002022465 0.02000605 0.003032834) (0.00607837 0.02000582 0.001513771) (0.006079407 0.01900619 0.002020445) (0.006583235 0.02000674 0.002019257) (0.006084116 0.02100787 0.002019341) (0.00608492 0.02000877 0.00252758) (-0.006082912 0.02400963 0.001514764) (-0.006075066 0.02300939 0.002021075) (-0.005580058 0.02401161 0.002026041) (-0.003040759 0.02400932 0.002028103) (-0.001012718 0.02400965 0.002030708) (-0.002028976 0.02601168 0.002031952) (-0.002026154 0.02400992 0.003045107) (0.001014207 0.02401027 0.00203048) (7.629645e-07 0.02601276 0.002034141) (5.092547e-07 0.0240102 0.003045025) (0.003042379 0.0240109 0.002026637) (0.00203095 0.02601357 0.002032685) (0.002027304 0.02401131 0.003043714) (0.006093772 0.02401249 0.001513463) (0.006084614 0.02300953 0.002017464) (0.005583342 0.02401162 0.002021943) (-0.004067718 0.02801531 0.001518889) (-0.004067987 0.02701313 0.002030701) (-0.004575059 0.02801567 0.002027229) (-0.004068488 0.02901672 0.002024944) (-0.004069964 0.02801436 0.002535317) (-0.001015035 0.02801583 0.002036336) (0.001017382 0.02801721 0.002038738) (1.168948e-06 0.03002233 0.002043109) (1.145845e-06 0.02801675 0.003056449) (0.004074303 0.02801779 0.001521372) (0.004068409 0.02701658 0.002029625) (0.004576765 0.02801847 0.002026686) (0.004077728 0.02902174 0.002030318) (0.004073529 0.0280204 0.002537979) (-0.004070403 0.03102328 0.0020245) (-0.003564941 0.03202698 0.002026979) (-0.002550051 0.03202903 0.002038104) (-0.002048065 0.03303454 0.002045639) (-0.002041154 0.0320287 0.002548707) (0.002553625 0.03203223 0.002055056) (0.002050954 0.03303895 0.002065267) (0.002045344 0.03203449 0.002568758) (0.004082918 0.03102784 0.002033266) (0.003569509 0.03202751 0.002037279) (-0.002055401 0.03504751 0.002053365) (-4.970613e-06 0.03606639 0.001569395) (-3.257123e-06 0.03505378 0.00207189) (0.002059805 0.03505397 0.002071414) (-0.0020343 -0.03202527 0.003578507) (-0.002032834 -0.03102487 0.004085158) (7.439796e-08 -0.03202235 0.003569422) (1.324129e-06 -0.03301898 0.00406424) (-0.0005080594 -0.03202236 0.004072999) (0.0005094651 -0.03201958 0.004073054) (8.071367e-07 -0.03102118 0.00407544) (1.704689e-06 -0.03201808 0.004564785) (0.002027806 -0.03201656 0.003566908) (0.002027628 -0.03101583 0.004071986) (-0.004068724 -0.02801441 0.003553267) (-0.003556448 -0.02801714 0.00407584) (-0.004062235 -0.02701526 0.004061964) (-0.002032887 -0.02902225 0.004087153) (-0.002541486 -0.02802022 0.004086164) (-0.001522651 -0.0280206 0.004083571) (-0.002032949 -0.02701859 0.004080968) (-0.002032421 -0.02802247 0.004594169) (1.516308e-06 -0.02901956 0.004079592) (-0.0005057322 -0.02801933 0.004079947) (0.0005092174 -0.02801771 0.004079492) (2.366457e-06 -0.02802042 0.0045886) (0.002031758 -0.02901643 0.004078803) (0.001524579 -0.02801655 0.004079658) (0.002541337 -0.02801665 0.004081933) (0.002034764 -0.02701596 0.004079466) (0.002033522 -0.02801784 0.004586023) (0.004073296 -0.02801558 0.003567795) (0.003558253 -0.0280158 0.004080816) (0.004063602 -0.02701266 0.004070987) (-0.004063444 -0.02401302 0.00355135) (-0.004062394 -0.02501448 0.004063685) (-0.00456721 -0.02401325 0.004058405) (-0.004056206 -0.02301036 0.004058984) (-0.004056203 -0.02401277 0.004569813) (5.020772e-07 -0.02200837 0.004052389) (0.004060107 -0.02400994 0.003550509) (0.004057219 -0.02501078 0.004063411) (0.003547453 -0.02401096 0.004065166) (0.004559455 -0.02400941 0.004053178) (0.004052079 -0.02300904 0.004055574) (0.004049723 -0.02401005 0.004564559) (-0.006064994 -0.02000691 0.003529932) (-0.005561907 -0.02000646 0.00403931) (-0.006060085 -0.01900546 0.004035341) (-0.00404655 -0.02100647 0.004050192) (-0.004548786 -0.02000571 0.00404631) (-0.004043284 -0.02000533 0.004554009) (-0.001008612 -0.02000639 0.004046083) (-0.00201629 -0.01800463 0.004040958) (0.001010204 -0.02000619 0.004045747) (7.220001e-07 -0.01800478 0.004040798) (2.146943e-07 -0.02000667 0.005056775) (0.002019046 -0.01800479 0.004041261) (0.004049705 -0.02100847 0.004051068) (0.004556845 -0.02000898 0.004052307) (0.004049024 -0.02000832 0.004555207) (0.006082619 -0.02001342 0.003545349) (0.005575452 -0.02001052 0.004054633) (0.006072904 -0.01900712 0.004051176) (-0.006054504 -0.01600383 0.003524878) (-0.006057865 -0.01700482 0.004034356) (-0.006553033 -0.01600407 0.004027447) (-0.006051428 -0.01500488 0.004032173) (-0.006054531 -0.01600613 0.004539375) (-0.005551166 -0.0160051 0.004036939) (-0.003023717 -0.01600344 0.004037031) (-0.00100698 -0.01600364 0.004037177) (-0.002014127 -0.01400273 0.004034415) (-0.002014819 -0.01600376 0.005048156) (0.001008749 -0.01600362 0.004037339) (7.131893e-07 -0.01400287 0.004034691) (5.326764e-07 -0.01600418 0.005047351) (0.003027402 -0.01600344 0.004038341) (0.002016265 -0.01400263 0.004034752) (0.002017079 -0.01600378 0.005048135) (0.006069733 -0.01600518 0.003538965) (0.006069113 -0.01700484 0.004046627) (0.006575928 -0.01600604 0.004046951) (0.006064804 -0.01500398 0.004043692) (0.006067511 -0.01600381 0.00455033) (0.005560174 -0.01600344 0.004045072) (-0.006048631 -0.0120037 0.003525899) (-0.006048706 -0.01300437 0.00403126) (-0.006555418 -0.01200445 0.004033786) (-0.006053463 -0.01100328 0.004036627) (-0.006054386 -0.01200424 0.004541423) (-0.003021618 -0.01200224 0.004033004) (-0.004030221 -0.01000194 0.004032368) (-0.001006565 -0.01200223 0.004033233) (-0.002014318 -0.01000167 0.004031908) (-0.002013907 -0.01200231 0.005043215) (0.001007849 -0.01200217 0.004033326) (4.652651e-07 -0.01000172 0.004033422) (4.911379e-07 -0.0120025 0.005041598) (0.003023657 -0.01200191 0.004033021) (0.002015312 -0.01000154 0.004031611) (0.00201506 -0.01200207 0.00504277) (0.004031406 -0.0100016 0.004031625) (0.006057977 -0.01200294 0.003533539) (0.006059304 -0.01300334 0.004040221) (0.006562659 -0.01200346 0.004041297) (0.006055597 -0.01100251 0.004039201) (0.00605775 -0.01200319 0.004546902) (-0.007579645 -0.00800207 0.00404166) (-0.005039905 -0.008001482 0.004032085) (-0.006054335 -0.009001923 0.004035323) (-0.006559384 -0.008001454 0.004035293) (-0.006052213 -0.007001126 0.004033776) (-0.006055068 -0.008001397 0.004538367) (-0.00302178 -0.008001295 0.004030858) (-0.004030381 -0.006001033 0.004031313) (-0.004031298 -0.008001448 0.005041596) (-0.001006778 -0.008001308 0.004031821) (-0.002014772 -0.006000961 0.004029325) (-0.002013921 -0.008001368 0.005038658) (0.001007524 -0.008001225 0.004031683) (4.268286e-07 -0.008001367 0.005036964) (0.003022257 -0.008001216 0.004029597) (0.00201529 -0.006000895 0.004028663) (0.002014549 -0.008001162 0.005038244) (0.005039605 -0.008001329 0.004028905) (0.004030248 -0.006001075 0.00402845) (0.004030483 -0.008001443 0.005037518) (0.006053675 -0.009001247 0.004032107) (0.006558585 -0.008001079 0.004029489) (0.006051934 -0.00700103 0.004028887) (0.006053119 -0.008000852 0.004531933) (0.007576544 -0.008002215 0.004027237) (-0.007556957 -0.004000498 0.004032146) (-0.005040101 -0.004001013 0.004033416) (-0.006050819 -0.005001115 0.004035192) (-0.006554897 -0.004001206 0.004036437) (-0.006054043 -0.003001457 0.00403764) (-0.006055764 -0.004001656 0.004542749) (-0.00302224 -0.004000718 0.004029791) (-0.004030306 -0.002000551 0.004031381) (-0.004032821 -0.004001003 0.005041755) (-0.002015141 -0.002000385 0.004027824) (-0.002014698 -0.004000822 0.005034657) (0.003022616 -0.004000714 0.004028325) (0.002015615 -0.002000341 0.004027374) (0.002015121 -0.00400062 0.005034128) (0.005039652 -0.004000998 0.004029316) (0.004030876 -0.002000556 0.004029386) (0.004032759 -0.004000967 0.005038065) (0.006050144 -0.005001088 0.004029836) (0.006552824 -0.004001238 0.004030454) (0.006050908 -0.003001103 0.004030897) (0.006052566 -0.00400106 0.004534548) (0.007554494 -0.004001853 0.00402817) (-0.007587455 -6.944306e-07 0.00404135) (-0.005039314 -3.037486e-07 0.004032766) (-0.006056167 -0.001001332 0.004037599) (-0.006563486 -9.158263e-07 0.004039037) (-0.006054492 0.000999801 0.004036908) (-0.006056155 -1.084696e-06 0.004540635) (-0.003022141 -5.633114e-08 0.004029566) (-0.004030292 0.002000386 0.004031988) (-0.004030832 -9.556784e-08 0.005040474) (-0.002015269 0.002000312 0.004028236) (-0.002015053 -8.696727e-08 0.005033506) (0.003022992 -5.698561e-08 0.004029029) (0.002016206 0.002000304 0.004028698) (0.002015526 1.987502e-08 0.005033723) (0.005039461 -3.12391e-07 0.004029444) (0.004031595 0.002000319 0.004031108) (0.004032758 1.989541e-08 0.005039717) (0.006052331 -0.001000971 0.004030116) (0.006557144 -9.956091e-07 0.004029685) (0.006051098 0.0009995955 0.004029) (0.00605224 -6.675562e-07 0.004531452) (0.007574423 -1.996437e-06 0.004031437) (-0.007555091 0.004000944 0.00402995) (-0.005039853 0.004000841 0.004034033) (-0.006051911 0.003000661 0.004036388) (-0.006552936 0.004000906 0.004034982) (-0.006049799 0.005000994 0.004035071) (-0.006054139 0.004001021 0.004541744) (-0.003022644 0.004000696 0.004030522) (-0.004031044 0.006001047 0.004032129) (-0.004033641 0.004001044 0.005043493) (-0.002015181 0.00600095 0.004029976) (-0.002015202 0.004000729 0.005035511) (0.003024255 0.004000659 0.004031507) (0.00201695 0.006000987 0.004031633) (0.002016527 0.004000686 0.005037386) (0.005042049 0.004000586 0.004033319) (0.004033542 0.006001027 0.004033913) (0.004035904 0.004000975 0.0050447) (0.006053047 0.003000195 0.004031924) (0.006557074 0.004000188 0.004032059) (0.006053384 0.005000367 0.004034121) (0.006057489 0.004000585 0.004539513) (0.007565237 0.003999832 0.004025926) (-0.007575479 0.008001324 0.004044685) (-0.005041458 0.008001261 0.004033016) (-0.006052636 0.007001032 0.00403522) (-0.006560045 0.008001027 0.004037602) (-0.006057125 0.009001041 0.004037168) (-0.006056608 0.008001134 0.004539971) (-0.003022572 0.008001255 0.004031243) (-0.004031991 0.01000159 0.004032453) (-0.004032594 0.008001741 0.005041738) (-0.001006843 0.008001276 0.004032486) (-0.002014805 0.01000151 0.004031952) (-0.002014435 0.008001385 0.005038892) (0.001008657 0.00800135 0.00403367) (9.624318e-07 0.01000165 0.004034313) (7.681558e-07 0.00800142 0.005038202) (0.003025073 0.008001476 0.00403382) (0.002017243 0.01000183 0.004034012) (0.002016662 0.008001516 0.005041957) (0.00504404 0.008001532 0.004035651) (0.004035039 0.01000228 0.004035821) (0.004035924 0.00800188 0.005046633) (0.00605407 0.007000607 0.004035957) (0.006560275 0.008000704 0.004038454) (0.006057882 0.009001847 0.00403965) (0.006057734 0.008001269 0.004542183) (0.007567931 0.007999663 0.004037072) (-0.006059718 0.01100117 0.004037625) (-0.006563598 0.01200105 0.004035741) (-0.00605689 0.01300131 0.004033628) (-0.006062262 0.01200162 0.004541873) (-0.003022722 0.01200186 0.004032719) (-0.001006579 0.01200192 0.004033353) (-0.002014595 0.01400236 0.004034068) (-0.002014222 0.01200197 0.005042302) (0.00100889 0.01200211 0.00403427) (1.159948e-06 0.01400242 0.004034927) (9.178563e-07 0.01200202 0.005042161) (0.003026026 0.01200256 0.004035168) (0.002017797 0.01400273 0.004035458) (0.002016754 0.01200239 0.005044487) (0.006061203 0.01200361 0.003534457) (0.006062002 0.01100358 0.004042795) (0.006568958 0.01200404 0.004043503) (0.006062711 0.01300494 0.004040097) (0.0060647 0.0120048 0.004547708) (-0.006051785 0.0160034 0.003527461) (-0.006053461 0.01500259 0.004033781) (-0.006551859 0.01600376 0.004030858) (-0.006052797 0.01700449 0.004034012) (-0.006052901 0.01600402 0.004540524) (-0.005550045 0.01600323 0.004037806) (-0.003024404 0.01600307 0.004036546) (-0.001007026 0.01600311 0.004036906) (-0.002016903 0.01800428 0.004040192) (-0.002015186 0.01600352 0.005047061) (0.001009719 0.01600309 0.004037184) (1.161506e-06 0.01800406 0.004040227) (1.085307e-06 0.01600293 0.005047625) (0.003029186 0.01600391 0.00403808) (0.002020202 0.01800427 0.004039695) (0.002018803 0.01600295 0.005047986) (0.006070068 0.01600831 0.003536225) (0.006065866 0.01500786 0.004042393) (0.006569352 0.01601004 0.004040129) (0.006075984 0.01701215 0.004048131) (0.006069735 0.01601151 0.004552451) (0.005563029 0.0160089 0.004046301) (-0.006061816 0.02000423 0.003532878) (-0.006055553 0.01900401 0.004034555) (-0.005559057 0.02000424 0.004038018) (-0.004550522 0.02000566 0.004044027) (-0.004048121 0.02100721 0.00404756) (-0.004046588 0.02000628 0.004551052) (-0.001009096 0.02000575 0.004045283) (0.001011177 0.02000568 0.00404416) (5.358382e-07 0.02200783 0.004051277) (9.840793e-07 0.02000544 0.00505562) (0.004554256 0.02000803 0.004046442) (0.004049125 0.02100868 0.004046028) (0.004048189 0.02000751 0.00454941) (0.006079366 0.02001129 0.003541616) (0.005570083 0.02000961 0.0040486) (-0.004054534 0.0230113 0.004056913) (-0.004562035 0.02401263 0.004059728) (-0.003548467 0.0240131 0.00406846) (-0.004058152 0.0250139 0.004070189) (-0.004052836 0.02401392 0.004569178) (0.004057476 0.02401419 0.003545234) (0.004052516 0.02301236 0.004050238) (0.004559238 0.02401471 0.004049176) (0.004056839 0.02501641 0.004056473) (0.004051211 0.02401446 0.004558651) (-0.004067975 0.02801214 0.003553511) (-0.004063462 0.02701194 0.004066876) (-0.003561021 0.02801295 0.004072133) (-0.00203519 0.02701483 0.004076965) (-0.002544544 0.02801545 0.004079572) (-0.001523925 0.02801636 0.004075977) (-0.002033339 0.02901704 0.004076544) (-0.002034758 0.02801671 0.00458377) (-0.0005067497 0.0280173 0.004078035) (0.0005087556 0.02801842 0.00408202) (1.355314e-06 0.02901893 0.004081397) (5.616773e-07 0.02801897 0.004589939) (0.002034605 0.02701838 0.00407949) (0.001525736 0.02802006 0.004084345) (0.002542894 0.02802116 0.004085281) (0.002035021 0.02902234 0.004087877) (0.002034553 0.0280209 0.004591637) (0.004070444 0.02802341 0.003559336) (0.004060923 0.02701988 0.004063104) (0.003560394 0.02802359 0.004076965) (-0.002029641 0.03202436 0.003567099) (-0.002028069 0.0310207 0.004073194) (2.690634e-06 0.03202595 0.003572091) (2.411244e-06 0.03102125 0.004079028) (-0.0005054551 0.03202299 0.004071648) (0.000512241 0.03202409 0.004080449) (3.352088e-06 0.03302172 0.00406729) (1.40177e-06 0.03201733 0.004569118) (0.002036865 0.0320329 0.003587178) (0.002034975 0.03102773 0.004089844) (3.223982e-06 -0.02802379 0.005608363) (-0.002024614 -0.02401731 0.005589045) (-0.001516053 -0.02401762 0.006090878) (-0.002020521 -0.02301482 0.006088094) (3.004874e-07 -0.02501488 0.006096687) (-0.0005051405 -0.02401366 0.006084949) (0.0005041358 -0.02401081 0.006082737) (-1.291325e-06 -0.02300927 0.006076097) (-6.641563e-07 -0.02400931 0.006578255) (3.412436e-07 -0.02401342 0.005584785) (0.002025224 -0.02401421 0.005581852) (0.001514351 -0.02401158 0.006077808) (0.002019787 -0.02300934 0.00607114) (-0.004037557 -0.02000466 0.005567616) (-0.003529553 -0.02000653 0.006074621) (-0.004033601 -0.01900349 0.006066333) (-0.002014214 -0.02100861 0.006075881) (-0.002518942 -0.02000745 0.006074046) (-0.00150965 -0.0200072 0.006072746) (-0.002014608 -0.01900642 0.00607081) (-0.002013093 -0.02000703 0.006576461) (-1.522065e-06 -0.0210072 0.006069629) (-0.0005037154 -0.02000721 0.006070759) (0.0005022599 -0.02000691 0.006068611) (-4.841415e-07 -0.0190069 0.006066735) (-1.432601e-06 -0.02000757 0.006573448) (0.002018729 -0.02100814 0.006069565) (0.001511415 -0.02000696 0.006066642) (0.002525625 -0.02000903 0.006071406) (0.002017131 -0.01900711 0.006066001) (0.002016658 -0.02000835 0.006569419) (0.004044675 -0.02000873 0.005565498) (0.003539495 -0.02000999 0.006075631) (0.004042139 -0.01900781 0.00606816) (-0.00403964 -0.01700366 0.006070396) (-0.004543392 -0.01600419 0.006068559) (-0.00353181 -0.01600313 0.006067542) (-0.004036985 -0.01500383 0.006067283) (-0.004040284 -0.01600165 0.006575762) (-0.004037822 -0.01600389 0.00555941) (-0.002016809 -0.01700494 0.006065167) (-0.002519937 -0.01600389 0.006063583) (-0.002015545 -0.01500338 0.006059571) (-0.002016769 -0.01600447 0.006567907) (0.002018331 -0.01700509 0.006063407) (0.002521683 -0.01600407 0.006062153) (0.00201692 -0.01500325 0.006059442) (0.002017385 -0.01600403 0.006566334) (0.004042906 -0.01700511 0.006070983) (0.003535159 -0.01600406 0.006067117) (0.004543436 -0.01600275 0.006063488) (0.004039218 -0.01500242 0.00606025) (0.004039307 -0.01600356 0.006572316) (0.004041273 -0.01600287 0.005557775) (-0.006063153 -0.01200446 0.005561317) (-0.005555496 -0.01200433 0.006066234) (-0.004034552 -0.01300473 0.006062797) (-0.004539796 -0.0120047 0.006063509) (-0.00403523 -0.01100357 0.006061557) (-0.004035615 -0.01200487 0.006569777) (0.004038738 -0.01300203 0.006057076) (0.003528515 -0.01200161 0.006056677) (0.00454218 -0.01200234 0.006058463) (0.004033995 -0.01100189 0.006056498) (0.004035734 -0.01200193 0.006562201) (0.006060896 -0.01200434 0.005564957) (0.005554365 -0.01200359 0.006062819) (-0.00605478 -0.008001572 0.005548147) (-0.005549385 -0.008001709 0.006052643) (-0.004033842 -0.009002005 0.006056279) (-0.004537237 -0.008001444 0.006054703) (-0.004033493 -0.007001076 0.006052561) (-0.00403339 -0.008001277 0.006558382) (5.810619e-07 -0.006001141 0.006039074) (0.004032472 -0.00900218 0.006049963) (0.004534638 -0.008002382 0.006045845) (0.004031377 -0.007001909 0.006044407) (0.004032197 -0.008002473 0.006550259) (0.006047077 -0.008000962 0.005536408) (0.005539859 -0.008002039 0.006040573) (-0.006069489 -0.004002892 0.005566118) (-0.005565078 -0.004002438 0.006070566) (-0.004036082 -0.005001059 0.006054687) (-0.004542663 -0.004001281 0.006058957) (-0.004036234 -0.003001003 0.006056214) (-0.004037355 -0.004001096 0.006561504) (-0.001007074 -0.004001062 0.006035455) (0.001007645 -0.004000571 0.006035792) (-1.034636e-07 -0.002000414 0.006028976) (3.690095e-07 -0.004000937 0.007029613) (0.004034559 -0.005001533 0.006047417) (0.00454227 -0.004001557 0.006052497) (0.004038019 -0.003001273 0.006053304) (0.004036909 -0.004001582 0.006555409) (0.006065116 -0.00400135 0.005553108) (0.005563365 -0.004001828 0.006061627) (-0.006049385 -1.388689e-06 0.005545741) (-0.006045123 -0.001002625 0.006045464) (-0.006538507 -2.167372e-06 0.006033973) (-0.005538423 -2.135219e-07 0.006046941) (-0.006041982 0.001000664 0.006047875) (-0.006019235 5.369896e-08 0.006526238) (-0.004032731 -0.001000361 0.006052886) (-0.004534373 2.381347e-07 0.006052695) (-0.004033382 0.001000743 0.006055056) (-0.004032721 1.947316e-07 0.006557372) (-0.001007839 -1.538568e-07 0.006031894) (0.001007548 3.064388e-09 0.006032386) (7.08903e-08 0.002000215 0.006030132) (-5.797988e-07 -1.148123e-07 0.007023115) (0.00403722 -0.001000456 0.006054338) (0.00454022 3.253499e-07 0.006055115) (0.004037313 0.001001023 0.006056386) (0.00403754 2.698191e-07 0.006560339) (0.006049343 -3.639469e-07 0.005537503) (0.006060465 -0.001001276 0.006051272) (0.00554634 1.532692e-07 0.006048738) (0.006532941 -7.387748e-07 0.006020086) (0.006037148 0.001001354 0.00603603) (0.006030845 -1.235732e-07 0.006533705) (-0.00606943 0.004001955 0.005565776) (-0.005567755 0.004002253 0.006076041) (-0.004038259 0.003001416 0.006060664) (-0.004545228 0.004001707 0.00606367) (-0.004038371 0.005001577 0.006057798) (-0.004040338 0.004001579 0.006566065) (-0.00100759 0.004000667 0.006036415) (0.00100838 0.004000547 0.006038718) (4.531708e-07 0.006001142 0.006040615) (1.077283e-07 0.00400037 0.007031876) (0.004040637 0.003001578 0.006061153) (0.004547733 0.004001618 0.006065662) (0.004041511 0.005001324 0.006061936) (0.004042347 0.004001488 0.00656771) (0.006073592 0.004001493 0.005565315) (0.006065202 0.003002357 0.006066696) (0.00557026 0.004001824 0.006077404) (-0.006055152 0.008001706 0.005549665) (-0.005549495 0.00800241 0.006053611) (-0.004035304 0.007001987 0.006053512) (-0.004539123 0.008002684 0.006054198) (-0.004035334 0.009002949 0.006054417) (-0.004035275 0.008002531 0.006558053) (0.004040604 0.007001729 0.006061565) (0.004545392 0.008002478 0.006064562) (0.004040087 0.00900288 0.006064456) (0.004041814 0.008002317 0.006568994) (0.006059041 0.008002343 0.005554141) (0.005555667 0.008002805 0.006061909) (-0.006070611 0.01200354 0.005560455) (-0.005561917 0.01200515 0.006064701) (-0.004035794 0.0110039 0.006058016) (-0.004541242 0.01200496 0.006061975) (-0.004036155 0.01300491 0.006060816) (-0.00403437 0.01200445 0.006565385) (0.004038319 0.01100336 0.006063059) (0.003530674 0.01200307 0.006059604) (0.004543049 0.01200392 0.006063103) (0.004036875 0.01300366 0.006060312) (0.004035567 0.01200303 0.006564693) (0.006068218 0.01200557 0.005561357) (0.005561148 0.01200535 0.006066427) (-0.004039577 0.01500481 0.006064882) (-0.004546208 0.01600526 0.006071496) (-0.003533282 0.01600471 0.006065536) (-0.004039909 0.01700485 0.006071102) (-0.004043755 0.01600518 0.006576077) (-0.004039293 0.01600399 0.005559538) (-0.002015725 0.01500354 0.006057589) (-0.002519716 0.01600461 0.006060143) (-0.002016286 0.01700558 0.006062357) (-0.002016469 0.01600562 0.006565743) (0.002019246 0.01500243 0.006059581) (0.002524036 0.01600246 0.006060858) (0.002020645 0.01700192 0.006061014) (0.002019776 0.01600196 0.00656469) (0.004042307 0.01500511 0.006064073) (0.003537583 0.01600464 0.006065664) (0.004550081 0.01600665 0.006070522) (0.00404465 0.01700551 0.006067246) (0.004046739 0.01600653 0.006573772) (0.004044603 0.01600539 0.005560829) (-0.004042306 0.0200067 0.005566686) (-0.004035183 0.01900523 0.006064877) (-0.003534546 0.02000858 0.006074092) (-0.002015345 0.01900638 0.006066085) (-0.002522509 0.02000792 0.00607064) (-0.001512188 0.02000651 0.006069388) (-0.002019551 0.02100795 0.00607509) (-0.002015692 0.02000745 0.006571571) (1.219125e-06 0.01900394 0.006066983) (-0.0005032809 0.02000542 0.006067729) (0.0005058807 0.02000444 0.006067222) (9.359156e-07 0.02100605 0.006068526) (1.430969e-06 0.020005 0.006572159) (0.002020988 0.01900297 0.006065965) (0.001515745 0.02000411 0.006067038) (0.002527186 0.02000456 0.006063506) (0.002021663 0.02100562 0.006066652) (0.002019649 0.02000379 0.006565549) (0.004043815 0.02000633 0.005557829) (0.004038979 0.01900494 0.006058073) (0.003539111 0.02000601 0.006062558) (-0.002027177 0.02401488 0.005593037) (-0.002027091 0.02301165 0.006093876) (-0.001521291 0.02401378 0.00609586) (-5.818056e-07 0.02300898 0.006074083) (-0.0005073353 0.02401222 0.006084918) (0.0005047713 0.0240104 0.006079848) (-1.485267e-06 0.02501357 0.00609375) (-1.060119e-06 0.02401058 0.006574932) (-1.110634e-06 0.02401183 0.005582377) (0.002028644 0.02401446 0.005580382) (0.002024806 0.02301066 0.006071599) (0.001517511 0.02401213 0.006078443) (-9.226984e-07 0.02802117 0.005610232) (-0.00201348 -0.01600451 0.007571498) (-7.729118e-07 -0.01600754 0.007582785) (0.002012074 -0.01600266 0.007568033) (-0.002014834 -0.01200244 0.007582472) (2.459337e-07 -0.01100381 0.008069026) (2.85085e-07 -0.01200435 0.007560277) (0.002016933 -0.01200334 0.007590455) (-0.004028666 -0.008000433 0.007561527) (-0.001508777 -0.008002546 0.008082647) (-0.002010734 -0.007002176 0.008073256) (-0.002012108 -0.008001662 0.007566828) (-0.0005020821 -0.008004202 0.008081806) (1.337554e-06 -0.007002179 0.00806004) (2.896021e-07 -0.008004168 0.00858835) (0.0005039371 -0.0080017 0.008084594) (7.689402e-07 -0.00900383 0.008087031) (9.445414e-07 -0.008002379 0.007567062) (0.001512654 -0.008000771 0.008089642) (0.00201893 -0.007000834 0.008087119) (0.002015827 -0.008000694 0.007575099) (0.004030617 -0.008002955 0.007557092) (-0.004037329 -0.004001311 0.007579221) (-0.002013917 -0.005003677 0.008068266) (-0.001511743 -0.004003813 0.008048549) (-0.002018 -0.003001854 0.008059553) (-0.002016165 -0.004003575 0.008575074) (-0.002519173 -0.00400195 0.008069371) (-0.002014854 -0.004002157 0.007554445) (1.23939e-06 -0.005001476 0.008021672) (-0.0005031199 -0.0040022 0.008015015) (-2.849771e-07 -0.003000547 0.00800451) (6.095023e-07 -0.004000771 0.008496506) (0.0005044224 -0.0040003 0.008015951) (0.002019525 -0.005000451 0.008073542) (0.001514114 -0.00400014 0.008051093) (0.002016236 -0.003000008 0.008060119) (0.002021033 -0.003999584 0.008578972) (0.002521949 -0.004000587 0.008070705) (0.002016515 -0.004000356 0.007556347) (0.004035764 -0.004001876 0.007572111) (-0.004030883 -3.205398e-07 0.007564573) (-0.002019807 -0.001000922 0.008060363) (-0.00151394 -2.598119e-07 0.008040616) (-0.002021341 -2.29884e-07 0.008575113) (-0.002017717 0.001000129 0.008060475) (-0.002522682 -8.901939e-07 0.008072958) (-0.002017317 -4.377465e-07 0.007552049) (-1.267687e-06 -0.001000072 0.008003834) (-0.0005045722 -1.376363e-07 0.008008262) (0.0005021194 3.428474e-08 0.008008441) (-7.855174e-07 0.000999853 0.008005106) (-1.224949e-06 4.189012e-09 0.008497556) (0.001510356 2.454212e-07 0.008040128) (0.002016356 0.001000455 0.008061926) (0.002015161 6.013151e-07 0.00857189) (0.002013757 -0.0009998775 0.008057375) (0.002519303 2.691341e-07 0.008069771) (0.002014841 1.911331e-07 0.007551706) (0.004034008 4.219088e-08 0.007569743) (-0.004041722 0.004001486 0.007583854) (-0.002016719 0.003000628 0.008058742) (-0.001513001 0.004000226 0.008046925) (-0.002017172 0.005001303 0.00806789) (-0.002017705 0.004000746 0.008568992) (-0.002521763 0.004001269 0.008069515) (-0.002016425 0.004000849 0.007554505) (-1.881105e-07 0.00299953 0.008007852) (0.0005043541 0.003999305 0.008022593) (-6.12933e-07 0.005000286 0.008023517) (-3.73004e-07 0.003999228 0.00850007) (-0.000504512 0.003999838 0.008015983) (0.002019326 0.003000299 0.008069737) (0.001514339 0.003999297 0.008062731) (0.002017668 0.005000489 0.008078027) (0.002020414 0.004000235 0.008593848) (0.00252316 0.004000823 0.008077879) (0.002017586 0.004000388 0.007563178) (0.004041189 0.004001286 0.00758033) (-0.004028853 0.008002047 0.007559907) (-0.001510971 0.008003205 0.008084399) (-0.002012623 0.008001999 0.007566141) (-1.116843e-06 0.00700307 0.008060753) (0.0005046297 0.008002308 0.008084869) (-2.112837e-06 0.008006448 0.008590712) (-0.0005063545 0.008005598 0.008085047) (-6.757671e-07 0.009004472 0.00808968) (-3.272547e-07 0.008003028 0.007568401) (0.002017758 0.007001839 0.008084782) (0.001513724 0.008002088 0.008088663) (0.002016805 0.008002151 0.007575915) (0.004037472 0.008002006 0.007574004) (-0.002013349 0.01200177 0.007575176) (4.79828e-07 0.01100321 0.008069505) (7.968705e-08 0.01200232 0.00756097) (0.002015039 0.01200545 0.007582278) (-0.002013404 0.01600856 0.007569931) (-5.200884e-07 0.01600328 0.007586771) (0.002013675 0.01600165 0.007567013) (-0.0009978591 -0.01000001 -0.009276772) (-0.000749186 -0.01000011 -0.009034682) (-0.001000332 -0.009501044 -0.00902994) (-0.001002774 -0.006000543 -0.008538565) (-0.001002558 -0.006000726 -0.009300822) (-0.001001668 -0.006500714 -0.009039837) (-0.0007520737 -0.006000749 -0.009047259) (-0.001003365 -0.005500643 -0.009047021) (-0.001252614 -0.006000754 -0.00903841) (-0.001007847 -0.001999677 -0.008538362) (0.001006228 -0.00199934 -0.008525789) (0.001001276 -0.001996461 -0.009242996) (0.001254877 -0.001997858 -0.009021504) (0.001003836 -0.001496826 -0.00900751) (-0.001007499 0.002000159 -0.008535252) (-0.001007539 0.006000943 -0.008566641) (-0.001008693 0.006001364 -0.009333146) (-0.001009491 0.005500887 -0.0090809) (-0.0007546493 0.006000853 -0.009067391) (-0.001006886 0.006500958 -0.009072837) (-0.001263352 0.006001557 -0.009102133) (-0.000999589 0.01000101 -0.009290354) (-0.001001777 0.009496909 -0.009030807) (-0.0007500546 0.01000022 -0.009037694) (-0.001249329 0.009999973 -0.009026536) (-0.001000142 0.01050006 -0.009026306) (-0.001004073 -0.006005136 0.008561118) (-0.001008252 -0.00200086 0.008509882) (0.00100712 0.001999493 0.008517128) (0.00101262 0.00599997 0.008565205) (-4.247446e-07 -0.009865935 -0.009690757) (-0.001925631 -0.006000303 -0.009649876) (-0.002000828 -0.008000307 -0.009281434) (-0.002001235 -0.008500488 -0.009023733) (-0.001754867 -0.008000575 -0.009039997) (-0.002008496 -0.007498474 -0.009048409) (-2.47714e-06 -0.005464954 -0.009919365) (-0.0002351293 -0.005866415 -0.009912476) (-3.739501e-06 -0.006108027 -0.009826443) (0.0001829951 -0.005854952 -0.009893425) (6.678674e-07 -0.00800112 -0.009312226) (2.301354e-06 -0.008501352 -0.009057986) (-0.0002490998 -0.008000911 -0.009046551) (7.205139e-07 -0.007501074 -0.00906403) (-0.002013045 -0.004001033 -0.009369724) (-0.002006983 -0.004500782 -0.009085025) (-0.001758575 -0.004000831 -0.009076205) (0.0002518642 -0.001995804 -0.009976006) (-7.210352e-07 -0.003998528 -0.009230659) (-8.350022e-07 -0.004498832 -0.009000118) (-0.0002514634 -0.003999121 -0.009004035) (-1.914435e-07 -0.003498645 -0.008986308) (0.001720241 -0.002149475 -0.009880907) (0.001935457 -0.002019561 -0.009752881) (-0.0007444791 1.200395e-07 -0.009967545) (-0.0009928581 -0.0004986305 -0.009946941) (-0.0009937501 4.695201e-07 -0.009700463) (0.0009969003 0.0005115235 -0.009940421) (-1.462913e-08 1.055493e-06 -0.009235262) (1.153359e-06 -0.0004973291 -0.00898675) (-0.0002497663 1.001189e-06 -0.008986803) (0.000250443 2.017279e-06 -0.008986171) (0.00201215 -2.897867e-07 -0.009303515) (0.00201562 -0.0005025943 -0.009071314) (0.001762047 1.472788e-07 -0.009053479) (0.002014316 0.0004994133 -0.009064917) (0.002266838 -1.766148e-06 -0.009071076) (-0.0007447054 0.004006824 -0.009926702) (-0.0009285639 0.004499926 -0.009920102) (-0.001009793 0.004017053 -0.009824779) (-1.637081e-08 0.003998484 -0.009234584) (-0.0002515808 0.003998665 -0.009003853) (3.924722e-07 0.004499129 -0.009009818) (0.0002502655 0.003998771 -0.008995736) (-0.002004126 0.007999526 -0.009278913) (-0.001757641 0.008001043 -0.009039635) (-0.002003329 0.008500851 -0.00902571) (-2.286153e-07 0.009968129 -0.009707415) (1.592785e-06 0.008000553 -0.009281522) (1.914857e-06 0.007501152 -0.00904563) (-0.0002492369 0.008000287 -0.009030288) (1.365037e-06 0.008500328 -0.009023477) (0.0002530222 0.00800136 -0.009040688) (-0.001000696 -0.01200156 -0.007554457) (-0.00201044 -0.0100017 -0.007559725) (2.984695e-06 -0.01000086 -0.008547415) (-0.0004986771 -0.01000071 -0.008040165) (0.0005046752 -0.01000118 -0.008051804) (2.661541e-06 -0.01000091 -0.007543729) (-0.001001332 -0.008000657 -0.008532581) (-0.001001609 -0.009000766 -0.008038485) (-0.001003149 -0.007000681 -0.008038735) (-0.001003244 -0.008000785 -0.00753938) (-0.002010469 -0.006001358 -0.008552701) (-0.001507137 -0.006000811 -0.00804381) (-0.002517104 -0.006001694 -0.00806022) (-0.00201222 -0.006001068 -0.007549255) (1.387905e-06 -0.006000339 -0.008544018) (-0.0005010457 -0.006000478 -0.008038598) (0.000505448 -0.006000788 -0.00805202) (-0.001004924 -0.004000149 -0.008541194) (-0.00100433 -0.005000397 -0.008039209) (-0.001006337 -0.002999997 -0.008039707) (-0.00202272 -0.002000611 -0.008597418) (-0.001512814 -0.002000214 -0.008059369) (-0.002520673 -0.001999908 -0.008081369) (-0.002015381 -0.00200012 -0.007562158) (0.001007435 -0.004002739 -0.008546233) (0.001007474 -0.003000765 -0.008038039) (0.00100885 -0.005001204 -0.008054317) (3.964878e-07 -0.001998617 -0.008505628) (-0.0005032504 -0.001999513 -0.008024189) (0.0005032788 -0.001999451 -0.008020449) (0.002016777 -0.002000296 -0.008585179) (0.001511523 -0.002000457 -0.008051242) (0.002521816 -0.002000919 -0.008074587) (0.002015612 -0.002000715 -0.00755753) (-0.001007646 2.81314e-07 -0.008529426) (-0.001008269 -0.0009997899 -0.008038404) (-0.001008002 0.001000254 -0.008037445) (-0.002020443 0.002000705 -0.008601692) (-0.00151328 0.00200051 -0.008062083) (-0.00252405 0.002000682 -0.008089202) (-0.002017234 0.0020006 -0.007567218) (0.001005768 1.378962e-06 -0.008519046) (0.001006653 -0.0009994556 -0.00802874) (0.001006492 0.001000508 -0.008027782) (-8.190926e-07 0.00199982 -0.008504868) (-0.0005039615 0.002000136 -0.008025) (0.0005025077 0.002000291 -0.008020252) (-0.001009074 0.004000131 -0.008555565) (-0.001008389 0.003000323 -0.008046121) (-0.001008165 0.005000801 -0.008057263) (-0.002014945 0.006001946 -0.008592852) (-0.001511528 0.006001466 -0.008070502) (-0.002515891 0.006002761 -0.008070291) (-0.002013693 0.00600194 -0.007563749) (1.028466e-06 0.006001008 -0.008550367) (-0.0005028999 0.006000818 -0.008048343) (0.0005042029 0.006001528 -0.008053978) (-0.001003427 0.008000457 -0.008537624) (-0.001005989 0.007001019 -0.008052647) (-0.001003562 0.009000798 -0.008038421) (-0.001005005 0.008001149 -0.00754378) (-0.002012527 0.0100036 -0.007563486) (3.4037e-07 0.01000078 -0.008528679) (-0.0005013262 0.01000043 -0.008033847) (0.0005030367 0.0100015 -0.008036587) (4.678428e-07 0.01000089 -0.007536715) (-0.001005989 0.01200099 -0.0075522) (-0.001004217 -0.007003401 0.008074643) (-0.001006709 -0.008005105 0.008608072) (-0.001005705 -0.009003356 0.008086066) (-0.00100518 -0.008002665 0.007568513) (-0.001508608 -0.006004163 0.008069595) (-0.002012093 -0.006003552 0.008587615) (-0.002514186 -0.006001892 0.008063394) (-0.00201196 -0.006002265 0.007559919) (-0.0005015588 -0.006002968 0.00804472) (1.522692e-06 -0.006001451 0.008524663) (0.0005050213 -0.00600071 0.008047592) (-0.001006652 -0.005004492 0.008043942) (-0.001008352 -0.003001947 0.008023214) (-0.001006887 -0.004004629 0.008520356) (-0.001514012 -0.002001202 0.008039657) (-0.002022071 -0.002000883 0.00857081) (-0.00252358 -0.00200149 0.008072941) (-0.002017283 -0.002001203 0.007551986) (-0.0005044298 -0.002000637 0.00800715) (-1.082177e-06 -0.002000006 0.008494005) (0.0005022206 -0.001999921 0.008006895) (-0.001009323 -0.001000503 0.008021451) (-0.001008253 -7.292805e-08 0.008513395) (-0.001008558 0.0009999783 0.008021519) (0.001007071 0.0009999878 0.008023906) (0.001004725 2.170006e-07 0.008512761) (0.001005676 -0.0009998108 0.008020612) (0.0005033465 0.001999616 0.008011469) (-4.905965e-07 0.001999585 0.008496389) (-0.0005039517 0.001999808 0.008008187) (0.001512869 0.002000004 0.008046485) (0.002018691 0.002000832 0.008578909) (0.002522766 0.00200088 0.008076466) (0.00201695 0.002000402 0.007556663) (0.00100902 0.002999343 0.00803296) (0.001009679 0.004999658 0.008051707) (0.001009808 0.003997951 0.008540645) (0.000504794 0.006000773 0.008047657) (-1.329003e-06 0.006001679 0.008524727) (-0.0005062154 0.006002143 0.008045826) (0.001515206 0.006000789 0.008076284) (0.002019524 0.00600144 0.00859396) (0.002520644 0.006001353 0.008078669) (0.002016947 0.006001038 0.007569459) (0.001010361 0.007000896 0.008078378) (0.001012344 0.007998669 0.00861131) (0.001009101 0.00900298 0.008090051) (0.001008606 0.008001833 0.007572702) (-0.0009246247 -0.009833212 -0.009641329) (0.0009951069 -0.001994905 -0.009699737) (0.0007508019 -0.002003402 -0.009954366) (0.001241744 -0.001995495 -0.009904885) (0.0009994706 -0.001500647 -0.009940028) (-0.001009483 0.006002253 -0.009829814) (-0.001000715 -0.008500842 -0.00902279) (-0.001000999 -0.007500658 -0.009031179) (-0.0009998964 -0.008000754 -0.009268314) (-0.0007500141 -0.008000675 -0.009028495) (-0.00125161 -0.00800101 -0.009030419) (-0.001001767 -0.01000091 -0.007543854) (-0.001754918 -0.006001258 -0.009038327) (-0.002010128 -0.006002033 -0.009303539) (-0.00200733 -0.006501765 -0.009043981) (-0.002007038 -0.005501468 -0.009058589) (-0.000250786 -0.006000418 -0.009049343) (4.494929e-07 -0.005999096 -0.0093039) (3.441483e-07 -0.006500368 -0.009057592) (-5.209853e-07 -0.005499065 -0.009030445) (-0.001004858 -0.004500314 -0.009050768) (-0.001005436 -0.003499833 -0.009046489) (-0.001008122 -0.003999801 -0.009310636) (-0.0007544261 -0.003999934 -0.009038765) (-0.001256463 -0.004000364 -0.009055101) (0.001005808 -0.0004964933 -0.009008988) (0.001004752 4.346795e-06 -0.009248347) (0.0007526709 3.349648e-06 -0.008992884) (0.001257675 2.768799e-06 -0.009022832) (0.001003877 0.0005026726 -0.009002774) (-0.001008007 0.004499514 -0.009057367) (-0.00100659 0.003998376 -0.009297869) (-0.00075684 0.003998306 -0.009035583) (-0.0002497728 0.006001096 -0.009057346) (2.713202e-06 0.006001961 -0.00931447) (1.427065e-06 0.005500592 -0.009048044) (1.945387e-06 0.006501363 -0.009060374) (0.0002531579 0.006001208 -0.009063423) (-0.001004603 0.007500534 -0.009044289) (-0.001002172 0.008499625 -0.00902512) (-0.001002885 0.008000414 -0.00927199) (-0.0007514935 0.007999969 -0.009028232) (-0.001256304 0.008001358 -0.009038686) (-0.001746893 0.01000053 -0.009003585) (-0.00198806 0.009998282 -0.009227442) (-0.001996383 0.009501248 -0.00900205) (-0.0002510396 0.01000045 -0.009027339) (-3.648937e-07 0.01000055 -0.009257257) (3.693997e-07 0.009500526 -0.009015959) (-0.001004632 0.01000116 -0.007542506) (0.001012046 -0.006001117 -0.008572516) (0.001005478 0.002000362 -0.008520123) (0.001008867 0.006003153 -0.008584771) (0.0007576207 0.006003055 -0.009087934) (0.001009049 0.006003444 -0.009341907) (0.001013322 0.006505709 -0.009105552) (0.001009742 -0.005999772 0.008568546) (0.001004303 -0.001999567 0.008509107) (-0.001006856 0.002000011 0.008510427) (-0.001013496 0.006001915 0.008561682) (-0.000247557 -0.008999481 -0.00950328) (-0.0004981296 -0.009499011 -0.009493409) (-0.0004982563 -0.009000136 -0.009262607) (-0.00025087 -0.007000843 -0.009578312) (-0.0005008119 -0.007000854 -0.009304861) (-0.0005023333 -0.004999949 -0.009291293) (-0.0005003301 -0.002998974 -0.009246653) (-0.0007486384 -0.0009980807 -0.009478011) (-0.0004989666 -0.000997893 -0.009235523) (0.0005018599 -0.001493086 -0.009475297) (0.0005028291 -0.0009938946 -0.009233703) (0.001763082 -0.001000563 -0.009552858) (0.001502049 -0.001497171 -0.009520682) (0.001507444 -0.0009983598 -0.00929108) (-0.0007549 0.004997776 -0.009555405) (-0.0005006766 0.005000053 -0.009294942) (-0.000751674 0.007001415 -0.009550881) (-0.0005006846 0.007001071 -0.009304072) (-0.0004997403 0.008997982 -0.009254323) (8.388423e-07 -0.008996871 -0.009742268) (7.691453e-08 -0.00700438 -0.009843748) (2.245986e-06 -0.008501116 -0.00953467) (-1.18653e-07 -0.007501231 -0.009566851) (-0.0002491669 -0.008001119 -0.009540632) (0.0002476532 -0.008000522 -0.009585136) (0.0002514511 -0.005007481 -0.009904491) (0.0002489478 -0.003997979 -0.009454003) (0.002011027 -0.001002577 -0.009734423) (0.001444126 0.0005266483 -0.00990041) (0.002009596 -0.0005000084 -0.009532742) (0.001756912 1.988173e-06 -0.009534219) (0.002006577 0.000500754 -0.009536164) (0.00225833 7.085053e-07 -0.009534354) (0.0002493255 0.004975242 -0.009932967) (0.000249586 0.003997826 -0.009463066) (0.0009394791 0.008005021 -0.009745361) (0.0002517772 0.008000548 -0.009528836) (0.001007038 -0.01200147 -0.007550937) (0.002013237 -0.0100021 -0.007557442) (0.001011062 -0.008003755 -0.008612811) (0.001008084 -0.009001741 -0.008069053) (0.001010412 -0.007001409 -0.008078341) (0.001008178 -0.008001298 -0.007560698) (0.002019366 -0.006000863 -0.008580554) (0.001514756 -0.006000953 -0.008074394) (0.002519367 -0.006000763 -0.008065888) (0.00201573 -0.006001047 -0.007562975) (0.003024339 -0.004001464 -0.007564608) (0.004030915 -0.002001546 -0.007573461) (0.003025413 -5.707004e-07 -0.007571673) (0.002018477 0.002000016 -0.008577401) (0.001511466 0.002000357 -0.008047317) (0.002522889 0.002000047 -0.008077831) (0.002016089 0.002000236 -0.007557387) (0.001006087 0.004000904 -0.008549672) (0.001006357 0.003000546 -0.008037272) (0.001007271 0.005001562 -0.008059362) (0.001510535 0.006002615 -0.008078203) (0.002012784 0.006001595 -0.00756254) (0.001009369 0.008003447 -0.008574928) (0.001008639 0.007002831 -0.008068159) (0.001006702 0.00900222 -0.008048841) (0.001006712 0.008001852 -0.007550448) (0.002013316 0.01000265 -0.007553533) (0.001005066 0.01200219 -0.007551989) (0.00100865 -0.007000451 0.008081244) (0.001008828 -0.008000981 0.008613217) (0.001007191 -0.009001428 0.008089939) (0.001007584 -0.008001068 0.007572444) (0.001515074 -0.006000716 0.008077437) (0.002021031 -0.006000517 0.008597038) (0.00252421 -0.006001055 0.008079324) (0.002017229 -0.006000658 0.007567432) (0.001010563 -0.005000356 0.008047915) (0.001007485 -0.002999886 0.008023688) (0.001009369 -0.003999845 0.008522328) (0.001510012 -0.00199983 0.008038705) (0.002013102 -0.001999712 0.008567766) (0.002519453 -0.002000563 0.008070718) (0.002014575 -0.002000154 0.007551047) (-0.001512384 0.002000272 0.00803956) (-0.002016621 0.002001036 0.008570118) (-0.002522504 0.002000577 0.008073743) (-0.002016727 0.00200035 0.007552233) (-0.001008223 0.002999949 0.008023378) (-0.001010165 0.005000502 0.008043246) (-0.001008355 0.003999317 0.008518964) (-0.001514192 0.006001859 0.008070011) (-0.002015052 0.006001727 0.007562125) (-0.001011287 0.00700366 0.008078024) (-0.001012879 0.008006435 0.008615166) (-0.001007743 0.009003739 0.00808778) (-0.001007745 0.008003045 0.00757013) (-0.0007429609 -0.01013604 -0.009584109) (-0.001064492 -0.009644372 -0.009573052) (-0.001254328 -0.01002897 -0.009543203) (-0.0005000714 -0.0100009 -0.009295484) (-0.0004985409 -0.009500678 -0.009030139) (-0.00100078 -0.009000672 -0.009262067) (-0.0007495107 -0.009000638 -0.009022051) (-0.001252839 -0.009001215 -0.009028673) (-0.001251213 -0.006000932 -0.009537184) (-0.001000831 -0.007000707 -0.009284402) (-0.0007508917 -0.007000723 -0.00904048) (-0.00125197 -0.007000564 -0.009032313) (-0.0005020755 -0.006001369 -0.009308085) (-0.0005010078 -0.006500894 -0.009050616) (-0.0005024254 -0.005500264 -0.009043348) (-0.001004693 -0.005000685 -0.009309256) (-0.0007530192 -0.005000323 -0.009046755) (-0.001254421 -0.005000694 -0.009047397) (-0.001004162 -0.002999928 -0.009291773) (-0.0007527615 -0.002999407 -0.009020862) (-0.001257288 -0.003000264 -0.009059514) (0.0007486564 -0.001995036 -0.009464155) (0.001249108 -0.001996392 -0.00948678) (0.0009996293 -0.001494132 -0.009477127) (0.001503539 -0.00199797 -0.009267842) (0.001506721 -0.001498239 -0.009035858) (0.001004151 -0.0009950693 -0.009249269) (0.0007535896 -0.0009954378 -0.00899469) (0.00125679 -0.0009974387 -0.00902459) (-0.001008036 0.005500793 -0.009581529) (-0.0007528086 0.006001045 -0.009576727) (-0.001005432 0.006501995 -0.009568824) (-0.001262979 0.006002879 -0.009594387) (-0.00101037 0.005000206 -0.009327908) (-0.0007558497 0.004999897 -0.009059022) (-0.00126745 0.005002061 -0.00910576) (-0.0005013731 0.006001108 -0.009317851) (-0.0005021656 0.005500487 -0.009056371) (-0.0005015208 0.006500998 -0.009058902) (-0.001005636 0.007000603 -0.00930851) (-0.0007531051 0.007000743 -0.009052784) (-0.001260343 0.007000253 -0.009079315) (-0.001250155 0.01001197 -0.009549796) (-0.001004195 0.01052788 -0.009543775) (-0.001001469 0.008996873 -0.009267089) (-0.0007506056 0.008998342 -0.009019172) (-0.001251347 0.009000158 -0.009032734) (-0.0005026028 0.009998845 -0.009290277) (-0.0005007454 0.009498694 -0.009021653) (-0.0005022304 0.01050079 -0.009040927) (-0.000496995 -0.009864779 -0.009671604) (2.747251e-06 -0.00950094 -0.009515914) (-0.0002480347 -0.01016305 -0.009601535) (-0.001247256 -0.00800101 -0.009507622) (1.234723e-07 -0.006500353 -0.009580137) (-1.103871e-06 -0.005496971 -0.009507922) (-0.0002501509 -0.006003207 -0.00956955) (0.0002513455 -0.005998138 -0.009535413) (3.249043e-06 -0.009001198 -0.009291919) (-0.0002478493 -0.009000837 -0.009036913) (-0.0004989834 -0.008500644 -0.009029279) (-0.0004995039 -0.008000663 -0.009282242) (-0.0005000998 -0.007500783 -0.009042648) (3.644075e-07 -0.007000947 -0.009318954) (-0.0002500801 -0.007000836 -0.009055674) (-0.001258157 -0.004000528 -0.009561169) (0.0005027406 -0.00149169 -0.009976949) (0.000499795 -0.001994885 -0.009716421) (0.0002515515 -0.001995698 -0.009474517) (-1.179746e-06 -0.004998162 -0.009252554) (-0.0002515214 -0.004999462 -0.009025207) (-0.0005025697 -0.004499792 -0.009031572) (-0.000503488 -0.003999665 -0.009269037) (-0.0005020601 -0.00349926 -0.00901116) (5.538495e-07 -0.002998129 -0.009226902) (-0.0002501395 -0.002998594 -0.00899146) (0.001441003 -0.001501516 -0.009881424) (0.001578864 -0.001826244 -0.009826269) (0.002108811 -0.001552551 -0.009664744) (0.001755486 -0.001998865 -0.009505592) (-0.0007436999 -0.0009995557 -0.009963576) (-0.0009971383 -0.0009986067 -0.009711224) (-0.0009983781 -0.0004987638 -0.009468914) (-0.000747143 5.065349e-07 -0.009472243) (0.0009997884 0.0005038717 -0.009479088) (-0.0002490326 -0.0009975164 -0.008987806) (2.263497e-06 -0.0009958815 -0.009234894) (0.0002520267 -0.0009958921 -0.00898616) (-0.000499894 -0.0004985443 -0.008988747) (-0.0004990835 6.666272e-07 -0.009233204) (0.0005005319 3.201199e-06 -0.009232276) (0.0005023261 -0.0004958727 -0.008988307) (0.002024415 -0.001008882 -0.009347162) (0.001763965 -0.001001921 -0.009067579) (0.002270441 -0.001006979 -0.009089917) (0.001508149 2.590017e-06 -0.009285079) (0.001509804 -0.00049871 -0.009042824) (0.001509257 0.0005015607 -0.009037457) (-0.0007431748 0.004983997 -0.009920907) (-0.001006137 0.005001225 -0.009845367) (-0.001004887 0.00449992 -0.009545834) (-0.0007635107 0.003995664 -0.009530327) (-0.001258451 0.004001632 -0.009575976) (0.0002523971 0.006001068 -0.009579969) (-0.0005044095 0.003997858 -0.00926056) (-0.0005030634 0.004499116 -0.009028984) (1.638733e-06 0.004999746 -0.009272341) (-0.0002502397 0.005000018 -0.009036113) (0.0002521489 0.004999512 -0.009030458) (-0.001001858 0.007002238 -0.009788386) (-0.001002061 0.007500407 -0.009523741) (-0.00125412 0.008002527 -0.009508729) (2.402493e-07 0.009498384 -0.009475249) (-0.0002491715 0.009998347 -0.009489001) (0.0002500828 0.009999264 -0.009489954) (3.140784e-07 0.01063595 -0.009562111) (1.869088e-06 0.007001502 -0.009310972) (-0.0002495418 0.007001038 -0.009051997) (0.0002538452 0.007002021 -0.009061281) (-0.0005005659 0.007500491 -0.009039511) (-0.0004996014 0.007999846 -0.009272795) (-0.000499998 0.008499353 -0.009019499) (7.664278e-07 0.008999509 -0.009254225) (-0.0002496541 0.008999404 -0.009015125) (0.0002517558 0.009001152 -0.00902135) (0.001003428 0.006003249 -0.00981772) (0.001006922 -0.01000115 -0.007550536) (0.0002539348 -0.009002042 -0.009551136) (-0.001249089 -0.007000582 -0.009516008) (0.0002520743 -0.007001004 -0.009557021) (0.0002483676 -0.004997462 -0.009469949) (-0.00125622 -0.003000487 -0.009563283) (0.003024807 -0.002001128 -0.007569775) (0.002286079 -0.001143348 -0.009617762) (0.001503178 0.0005036353 -0.009526918) (-0.001265995 0.005003012 -0.009592094) (0.0007584735 0.008003671 -0.009077113) (0.00101621 0.007506263 -0.009115071) (0.001007707 0.008503884 -0.009082835) (0.001012476 0.008006132 -0.009368677) (0.0002517761 0.004998119 -0.00949899) (0.0002527594 0.007002109 -0.009565814) (-0.00131717 0.009128473 -0.009572215) (0.001006123 0.01000187 -0.007543537) (0.0002503507 0.008999165 -0.009491042) (-0.001312769 -0.009130026 -0.009575592) (-0.0012547 -0.005001244 -0.009551074) (-0.00125924 0.006998627 -0.009560411) (-0.0004987262 0.01053114 -0.009561361) (-0.001749201 -0.007000168 -0.009500397) (-0.001498277 -0.007496943 -0.009503466) (-0.001498215 -0.006500868 -0.00950375) (-0.001501563 -0.007000291 -0.009271608) (-0.00149326 -0.006999118 -0.009729203) (-0.001761189 -0.003001646 -0.009597489) (-0.001509853 -0.003501013 -0.009562369) (-0.001508691 -0.003000864 -0.009321395) (-0.001506537 -0.003008025 -0.009832787) (0.0007465894 0.001001431 -0.009472486) (0.0005000757 0.004998636 -0.009732962) (0.0005003485 0.004497583 -0.009473789) (0.0005033375 0.005497357 -0.009568002) (0.0005027912 0.004998547 -0.009275741) (-0.001758955 0.009001882 -0.00952597) (-0.001564393 0.008511796 -0.00956898) (-0.001500775 0.00950743 -0.009543234) (-0.001499068 0.009001961 -0.009281275) (-0.001423669 0.008862846 -0.009650216) (0.0004975046 0.008997503 -0.009725255) (0.0005017997 0.008500591 -0.009515467) (0.0007510798 0.009000017 -0.009517218) (0.0005012723 0.009500812 -0.009488157) (0.0005023093 0.009001576 -0.009269019) (-0.001760898 -0.009004923 -0.0095272) (-0.001510149 -0.009529713 -0.00953989) (-0.001562838 -0.008511815 -0.009586624) (-0.001504178 -0.00899923 -0.009277317) (-0.001422263 -0.008864994 -0.009653428) (-0.001756288 -0.005001424 -0.009530105) (-0.001498924 -0.005500729 -0.009514622) (-0.00150466 -0.004500925 -0.009536709) (-0.001504498 -0.00500102 -0.009290882) (-0.001500495 -0.005001024 -0.009742625) (-0.0007458008 0.01102208 -0.009532521) (-0.0005009326 0.01100224 -0.00928625) (-0.0002513485 0.01104646 -0.009552182) (0.0004983625 -0.004998568 -0.009690264) (0.0004978063 -0.005499696 -0.009506314) (0.0004978215 -0.004498076 -0.00944924) (0.001578647 0.0008319863 -0.009827489) (0.001250105 0.001003023 -0.009491976) (0.001750451 0.001002046 -0.009513727) (0.001506854 0.001001576 -0.009278645) (0.000502811 0.007001956 -0.009812489) (0.0005043965 0.006502653 -0.009581443) (0.0005047173 0.007502439 -0.009555367) (0.0007614519 0.007006514 -0.009591079) (0.0005068409 0.007003478 -0.009325906) (-0.001492704 -0.007998797 -0.009677299) (-0.001925253 -0.006978654 -0.009677299) (-0.00200733 -0.008502641 -0.009510815) (-0.002006904 -0.007501069 -0.009564871) (-0.00177313 -0.008013859 -0.009573091) (-0.00193286 -0.005001324 -0.009696553) (-0.001503981 -0.004001621 -0.009780354) (-0.001942509 -0.003002856 -0.009777015) (-0.00207582 -0.004496743 -0.0097021) (-0.002130824 -0.00349638 -0.009727708) (-0.001761218 -0.00400113 -0.009568404) (0.000502381 -0.004504877 -0.009918744) (0.0004973028 -0.00399754 -0.009685418) (0.001729918 0.001158361 -0.009888403) (0.002002797 0.001020856 -0.009761424) (0.0004969985 0.004492911 -0.009921291) (0.0004962472 0.003997263 -0.009691685) (-0.001494514 0.007996865 -0.009682745) (-0.00200826 0.008500208 -0.009509062) (-0.001770198 0.008019765 -0.009578839) (0.0005003949 0.007999744 -0.009769344) (-0.003029777 -0.01200303 -0.007577678) (-0.003027718 -0.008003375 -0.007568501) (-0.004036398 -0.006001753 -0.007568076) (-0.003020964 -0.004000366 -0.007565534) (-0.004033771 -0.00199834 -0.007585122) (-0.003025339 2.012698e-07 -0.007579862) (0.004041245 0.002000397 -0.007586742) (0.003025851 0.004000635 -0.007568705) (-0.003020617 0.008004262 -0.007570681) (-0.003029106 0.01200567 -0.007570633) (-0.002017121 0.0140046 -0.007576509) (-1.194249e-06 0.01400187 -0.007582693) (-0.001009691 0.01600355 -0.007575492) (-0.001501652 -0.006000966 -0.009276031) (-0.001502889 -0.006500785 -0.009031897) (-0.00150376 -0.005500888 -0.009040265) (-0.001496753 0.009999491 -0.009254826) (-0.001498936 0.009500049 -0.009022212) (-0.00149841 0.01049971 -0.009005573) (-0.0009976254 0.01099954 -0.009256074) (-0.000749561 0.01100024 -0.009026531) (-0.001248457 0.01099954 -0.009005408) (-0.001496366 -0.006000552 -0.009745527) (-0.002083185 -0.00650357 -0.009607299) (-0.002085318 -0.005500876 -0.009658437) (-0.00174897 -0.006001322 -0.009499798) (-0.001997709 -0.009000509 -0.00923967) (-0.00175095 -0.00900033 -0.009018461) (-0.001500825 -0.008001802 -0.009289949) (-0.001504456 -0.007499963 -0.00903926) (-0.001502348 -0.008500677 -0.009034057) (-0.002003199 -0.007000323 -0.009280881) (-0.001756306 -0.007000215 -0.009038759) (0.00050021 -0.005527694 -0.009897684) (0.0004265591 -0.006030873 -0.009828271) (0.0005814992 -0.006452989 -0.009860214) (-0.002011941 -0.005002878 -0.009336785) (-0.001756261 -0.005001202 -0.009056077) (-0.001507653 -0.004000778 -0.009310148) (-0.001508335 -0.003500563 -0.00906536) (-0.00150585 -0.004500723 -0.009054722) (0.0007468055 0.001009678 -0.009964749) (0.001242632 0.001007433 -0.00991096) (0.0009936927 0.001002452 -0.009703906) (0.002016721 0.0009980565 -0.009329044) (0.001763036 0.0009997815 -0.009057051) (0.0004910688 0.005363383 -0.009915108) (0.000503148 0.006020341 -0.009852917) (0.0004997298 0.003998288 -0.009232507) (0.0005018538 0.004499017 -0.009012565) (-0.001998986 0.009496485 -0.009440727) (-0.00175341 0.009998034 -0.009459272) (-0.001511513 0.008005247 -0.00929124) (-0.001505773 0.008501411 -0.009037235) (-0.001510437 0.007500937 -0.009062595) (-0.001997258 0.008999777 -0.009238376) (-0.001749741 0.009000837 -0.009019414) (0.0004949762 0.009978961 -0.009686929) (0.0005046755 0.008002026 -0.009299172) (0.0005038117 0.008501942 -0.009040951) (0.0005063675 0.00750284 -0.009065053) (0.001001314 0.001002392 -0.009242039) (0.001256292 0.001001942 -0.009018168) (0.0005044545 0.006001102 -0.009327996) (0.0005037177 0.005500098 -0.009057459) (0.000505974 0.006502631 -0.009074831) (0.000754244 0.006001757 -0.009580345) (0.001012837 0.006504053 -0.009583931) (0.001023081 0.00701202 -0.009386505) (0.000762377 0.007005561 -0.009096827) (0.001004914 0.009002648 -0.009322885) (0.0007546367 0.009002958 -0.009046516) (0.001009193 0.007005272 -0.009780177) (0.0009322512 0.008997681 -0.009690744) (0.0007556532 0.008002844 -0.009560472) (0.001086531 0.008507183 -0.009697238) (0.001111958 0.007543214 -0.009738233) (-0.00302624 -0.01000265 -0.007565602) (-0.003023247 -0.006001763 -0.007562254) (0.0004994409 -0.006499577 -0.009522441) (-0.00302317 -0.00199945 -0.007575067) (0.00302783 0.002000139 -0.00757548) (-0.00302162 0.01000413 -0.007568123) (-0.001502298 0.007500324 -0.009515656) (-0.001494146 0.01051496 -0.009469145) (-0.001007291 0.01400135 -0.007577089) (-0.001244139 0.01101606 -0.009472604) (0.000499531 -0.00750069 -0.009562448) (0.0005040408 -0.006993468 -0.009812492) (-0.001513822 0.004504571 -0.009587822) (-0.001610949 0.005533001 -0.009751579) (-0.00153277 0.005006308 -0.00940659) (-0.001522183 0.005005281 -0.009796101) (-0.001003336 -0.02200467 -0.006564188) (0.001004772 -0.0220085 -0.006564206) (-0.003024374 -0.01800388 -0.006568761) (-0.001007377 -0.01800124 -0.007577285) (-0.001007458 -0.01900252 -0.007070297) (-0.001511834 -0.01800205 -0.007069549) (-0.0005029249 -0.01800409 -0.007070059) (-0.001006388 -0.01700245 -0.007068299) (-0.001007196 -0.01800253 -0.006564412) (0.001007636 -0.01800753 -0.007579612) (0.001006033 -0.01900533 -0.00707186) (0.0005040998 -0.01800548 -0.0070707) (0.001510584 -0.01800572 -0.007074395) (0.001007207 -0.01700572 -0.007070607) (0.001006997 -0.01800466 -0.006566088) (0.003028762 -0.01800419 -0.006573385) (-0.003028854 -0.01400417 -0.007575511) (-0.003025436 -0.01500475 -0.007074733) (-0.003531582 -0.01400403 -0.007077664) (-0.002520458 -0.01400346 -0.007068623) (-0.003027516 -0.01300321 -0.007073045) (-0.003025237 -0.01400347 -0.006566421) (0.00302997 -0.01400862 -0.007582568) (0.003029185 -0.01500755 -0.007076663) (0.002523604 -0.01400645 -0.007070587) (0.00353725 -0.01400935 -0.007083784) (0.003031263 -0.01300755 -0.00707219) (0.003030291 -0.01400662 -0.006570064) (-0.005050423 -0.01000228 -0.006565925) (-0.003026299 -0.01100264 -0.007065538) (-0.00353443 -0.01000295 -0.007063732) (-0.002518195 -0.01000207 -0.007059674) (-0.003027168 -0.009002798 -0.007061823) (-0.001002165 -0.0110012 -0.007047993) (-0.001506305 -0.01000122 -0.007048538) (-0.0004998572 -0.0100009 -0.007041544) (-0.001003162 -0.009000871 -0.007040772) (0.001007126 -0.01100142 -0.007047585) (0.0005045865 -0.01000107 -0.007044931) (0.001510051 -0.0100016 -0.007050782) (0.001007271 -0.009001199 -0.007049961) (0.005039549 -0.01000409 -0.006566878) (-0.004544893 -0.006001542 -0.007066255) (-0.005051332 -0.006001605 -0.006560999) (-0.003025486 -0.007002118 -0.007059907) (-0.003530028 -0.006001625 -0.007062157) (-0.002517576 -0.006001247 -0.007052793) (-0.0030218 -0.005000894 -0.007058167) (0.004539264 -0.006004698 -0.007065534) (0.005045992 -0.006003915 -0.006564934) (-0.00454163 -0.001999588 -0.007078449) (-0.005048064 -0.0020007 -0.00657129) (-0.00302206 -0.002999926 -0.00706494) (-0.003528052 -0.001999325 -0.007073069) (-0.002518448 -0.001999907 -0.007062375) (-0.003023454 -0.0009995569 -0.007069522) (0.003023479 -0.00300128 -0.007061352) (0.002519037 -0.002000845 -0.007057628) (0.003526822 -0.002001344 -0.007065383) (0.003022849 -0.001000814 -0.007062697) (0.004532716 -0.00200212 -0.007064712) (0.00503438 -0.00200266 -0.006557162) (-0.004551304 0.002003157 -0.007082605) (-0.00505838 0.002003801 -0.006575554) (0.00302498 0.0009998331 -0.007066046) (0.002520457 0.002000176 -0.007060378) (0.003531617 0.00200017 -0.007071951) (0.00302595 0.003000425 -0.007065884) (0.004540413 0.002000096 -0.007069808) (0.005041257 0.002000246 -0.00655733) (-0.00453389 0.006003709 -0.007056171) (-0.005043822 0.006003275 -0.006558235) (0.004539319 0.00600177 -0.007058806) (0.005049561 0.006001832 -0.006561775) (-0.005037596 0.0100025 -0.006566848) (-0.003020918 0.00900391 -0.007065949) (-0.003526562 0.01000348 -0.007067662) (-0.002517184 0.01000373 -0.00706292) (-0.003024244 0.01100404 -0.007066181) (-0.001004953 0.009001271 -0.007041931) (-0.001508658 0.01000205 -0.007050088) (-0.0005022493 0.01000094 -0.007039153) (-0.001005797 0.01100132 -0.007047303) (0.001006114 0.009001594 -0.00704351) (0.0005029845 0.01000127 -0.007039715) (0.001509274 0.01000208 -0.007047148) (0.001005784 0.01100184 -0.007046023) (0.005046744 0.01000575 -0.006580083) (-0.003034537 0.01401075 -0.007592013) (-0.003028787 0.01300637 -0.007074846) (-0.003532829 0.01400843 -0.00708408) (-0.002524611 0.01400603 -0.00707828) (-0.00303076 0.01500627 -0.00708672) (-0.003028248 0.01400604 -0.006573464) (-0.001007146 0.01300155 -0.007061206) (-0.001511967 0.01400281 -0.00707019) (-0.0005043311 0.01400183 -0.007070296) (-0.001008444 0.01500277 -0.007072729) (0.00302268 0.01400481 -0.007572081) (0.003025283 0.01300489 -0.007069772) (0.002518701 0.01400374 -0.007067515) (0.003537326 0.01400516 -0.007081053) (0.003025666 0.01500335 -0.007073338) (0.003028656 0.01400405 -0.006571797) (-0.003029817 0.01800645 -0.00657538) (-0.001018743 0.0180051 -0.007588503) (-0.001012435 0.01700419 -0.007074453) (-0.001516779 0.01800473 -0.007078862) (-0.0005083449 0.01800517 -0.007072032) (-0.001011593 0.01900552 -0.007072257) (-0.001011727 0.01800468 -0.006568612) (0.001007687 0.01801095 -0.007576429) (0.001006476 0.0170064 -0.007070147) (0.0005024697 0.01800635 -0.007069512) (0.001511469 0.01800675 -0.007072618) (0.001007304 0.0190061 -0.00707226) (0.001006784 0.01800558 -0.00656527) (0.003026969 0.01800635 -0.006567934) (-0.001007676 0.02200505 -0.006559866) (0.001004282 0.02200533 -0.006561287) (-0.001011162 -0.02901995 -0.005083324) (-0.001015938 -0.03002459 -0.004592344) (0.001010958 -0.02902104 -0.005085986) (0.001013649 -0.03002482 -0.004593068) (-0.002531649 -0.02601167 -0.005077332) (-0.003034927 -0.02500909 -0.00507304) (-0.003040402 -0.02601225 -0.004575865) (0.002535357 -0.02601422 -0.005084069) (0.003041277 -0.02501295 -0.005083373) (0.003044494 -0.02601412 -0.004579814) (-0.00453908 -0.02200489 -0.005047164) (-0.005045551 -0.02200586 -0.004539338) (0.004545364 -0.02200698 -0.005061266) (0.005051541 -0.02200707 -0.004552497) (-0.006569109 -0.01000474 -0.005045671) (0.006564143 -0.01000592 -0.005052054) (-0.006553882 -0.00600125 -0.005036622) (-0.007054576 -0.006000607 -0.004527845) (0.006555348 -0.00600254 -0.005041243) (0.007054339 -0.006002443 -0.004529437) (-0.006562398 -0.002001426 -0.005052499) (-0.007066607 -0.002001121 -0.004546945) (0.006557663 -0.00200234 -0.005034271) (0.007070463 -0.002001563 -0.004536357) (-0.006568555 0.002002821 -0.005048239) (-0.007071521 0.002002438 -0.004541) (0.006559046 0.002001648 -0.005039634) (0.007065616 0.002001336 -0.004537546) (-0.006550405 0.006001758 -0.005040863) (-0.00705043 0.006001161 -0.004531111) (0.006567301 0.006001277 -0.005048397) (0.007063784 0.006001349 -0.00453455) (-0.006559068 0.01000515 -0.005041635) (0.006570651 0.01000473 -0.005054415) (-0.004543394 0.02200501 -0.005050409) (-0.005047261 0.02200547 -0.004536708) (0.004545981 0.02200803 -0.005050379) (0.00505789 0.02200658 -0.004543069) (-0.003043653 0.02501597 -0.005083877) (-0.002541298 0.02601796 -0.005095449) (-0.003045024 0.02601507 -0.004576605) (0.003029812 0.02501267 -0.005067753) (0.002524972 0.02601397 -0.005074861) (0.003035507 0.02601548 -0.004572713) (-0.001010895 0.02902087 -0.005088728) (-0.001012807 0.03002119 -0.004589609) (0.001008746 0.0290173 -0.005087001) (0.001012518 0.03001908 -0.004591271) (-0.0005133253 -0.034037 -0.003067475) (-0.001024335 -0.03303282 -0.003077022) (-0.001032946 -0.03404428 -0.002571175) (0.0005182042 -0.03404609 -0.003076235) (0.001026131 -0.03304013 -0.003078867) (0.00103224 -0.03405228 -0.002575044) (-0.004565347 -0.02601166 -0.003045201) (-0.005070091 -0.02501159 -0.003037487) (-0.005072661 -0.02601208 -0.002531151) (0.004578938 -0.02601153 -0.003047045) (0.005080404 -0.02501047 -0.003041677) (0.00508887 -0.02601191 -0.002540228) (-0.006572424 -0.01800795 -0.003030918) (0.006571605 -0.01800579 -0.003025901) (-0.007080372 -0.01400377 -0.003534956) (-0.00708218 -0.015006 -0.003032569) (-0.007579235 -0.01400447 -0.003029478) (-0.006569242 -0.01400419 -0.003028663) (-0.007071922 -0.01300387 -0.003028994) (-0.007078803 -0.0140043 -0.002526358) (0.007065866 -0.01400365 -0.003527358) (0.007074218 -0.01500459 -0.003023126) (0.006566621 -0.01400349 -0.003024522) (0.007574724 -0.01400487 -0.003018333) (0.007073669 -0.01300318 -0.003023913) (0.007076649 -0.01400346 -0.002519412) (-0.007076967 0.01400666 -0.003538022) (-0.007073734 0.01300557 -0.003030663) (-0.007575363 0.01400589 -0.003027339) (-0.006566384 0.01400535 -0.00302869) (-0.00707326 0.01500613 -0.003027393) (-0.007071318 0.01400452 -0.002523199) (0.00710424 0.01400522 -0.003545262) (0.007099944 0.01300491 -0.003036268) (0.006592823 0.01400631 -0.003037004) (0.007618191 0.01400552 -0.003039404) (0.007104538 0.01500841 -0.003039351) (0.007102183 0.01400726 -0.002532264) (-0.006571958 0.01801034 -0.003025821) (0.006583897 0.01801022 -0.003035484) (-0.005070647 0.02501078 -0.003027356) (-0.004569891 0.02601427 -0.00303443) (-0.005080161 0.0260153 -0.002527607) (0.005076509 0.02501286 -0.003034531) (0.004570886 0.02601566 -0.003041178) (0.005080978 0.0260145 -0.002531669) (-0.001022082 0.03303025 -0.003071712) (-0.0005108844 0.03403503 -0.003066942) (-0.001025546 0.03404325 -0.00256551) (0.001023405 0.0330314 -0.003082504) (0.0005168554 0.03403856 -0.003079929) (0.001028602 0.03404492 -0.002578661) (-0.001032906 -0.03705234 -0.001029622) (0.001048404 -0.03707418 -0.001034185) (-0.00256561 -0.03403487 -0.001031638) (-0.003063477 -0.03302638 -0.00102969) (-0.003064341 -0.03402689 -0.0005151265) (0.002555693 -0.03403692 -0.001021668) (0.003048793 -0.03302019 -0.001016115) (0.003043373 -0.03402384 -0.0005059415) (-0.004569477 -0.03001484 -0.001014139) (-0.00507247 -0.02901471 -0.001009246) (0.004567068 -0.03000833 -0.001011902) (0.005068303 -0.02901035 -0.001011183) (-0.006593238 -0.0220177 -0.001008706) (0.006581232 -0.02200896 -0.001009643) (-0.007068837 -0.01800564 -0.001510451) (-0.007078294 -0.01900729 -0.001006068) (-0.007559417 -0.01800399 -0.001003842) (-0.00706228 -0.01700424 -0.001006312) (-0.007068355 -0.01800581 -0.0005022121) (0.007066608 -0.01800507 -0.001511033) (0.007073281 -0.01900758 -0.00100784) (0.007557402 -0.01800609 -0.001007032) (0.007060824 -0.01700433 -0.001008) (0.007064916 -0.0180061 -0.0005049176) (-0.008600858 -0.006001368 -0.001004868) (0.008608798 -0.006003876 -0.001002233) (-0.008509731 -0.002001206 -0.001005438) (0.008540579 -0.002000974 -0.00100515) (-0.008502504 0.002001878 -0.001009111) (0.008508917 0.002001926 -0.001004723) (-0.008600218 0.006001234 -0.001006092) (0.00857555 0.005995542 -0.001009241) (-0.007072917 0.01800729 -0.001513876) (-0.007064955 0.01700576 -0.001010116) (-0.00756547 0.01800704 -0.001009304) (-0.007083407 0.0190103 -0.00100921) (-0.007072432 0.01800852 -0.0005055043) (0.007084019 0.01800821 -0.001512536) (0.007076408 0.01700915 -0.001008621) (0.006575481 0.01800745 -0.001008468) (0.007586888 0.01801324 -0.001006745) (0.007083193 0.01900766 -0.001007619) (0.007075805 0.01800809 -0.0005045036) (-0.006592335 0.02201246 -0.001010329) (0.00658157 0.02200805 -0.001008366) (-0.005077176 0.02901803 -0.001010656) (-0.004570179 0.03001727 -0.001011825) (0.005061252 0.02901159 -0.001007403) (0.004560307 0.03001065 -0.001011583) (-0.003063012 0.03302374 -0.001016668) (-0.002564867 0.03403708 -0.001019212) (-0.003064937 0.03402885 -0.000505948) (0.003050629 0.0330154 -0.001022691) (0.00255342 0.03402827 -0.001024636) (0.003043564 0.03401803 -0.0005099638) (-0.001044458 0.03707176 -0.001041955) (0.001047132 0.03708826 -0.00103189) (-0.001040427 -0.03707751 0.001048141) (0.001048592 -0.03708287 0.001047222) (-0.003063981 -0.0340258 0.0005088733) (-0.002566916 -0.0340351 0.00102206) (-0.003064254 -0.0330211 0.001020466) (0.003043396 -0.03402158 0.0005132118) (0.002550532 -0.03403115 0.001024196) (0.00305405 -0.03301927 0.001019537) (-0.004572086 -0.03000977 0.001011317) (-0.005075711 -0.02901032 0.001008212) (0.004584355 -0.03001619 0.001016742) (0.005086015 -0.02901551 0.001013663) (-0.006583644 -0.02201307 0.001004762) (0.006588471 -0.02201088 0.001009056) (-0.00706985 -0.01800776 0.0005035699) (-0.00707652 -0.0190098 0.001005997) (-0.007559479 -0.018005 0.001006544) (-0.007059758 -0.01700362 0.001005733) (-0.007067087 -0.01800418 0.001508811) (0.007070593 -0.01800402 0.0005001977) (0.007078288 -0.01900612 0.00100239) (0.007569633 -0.01800181 0.001001824) (0.007066837 -0.01700198 0.00100521) (0.007075966 -0.01800353 0.001508067) (-0.008598957 -0.006001385 0.001003672) (0.008611581 -0.006005032 0.001004917) (-0.008503323 -0.001995409 0.001007137) (0.008531301 -0.002001576 0.001009532) (-0.008504769 0.00200035 0.00100392) (0.008509499 0.002000468 0.001004755) (-0.008600511 0.006001665 0.001006588) (0.008586858 0.006000158 0.001009324) (-0.007074731 0.01800636 0.0005020607) (-0.007061242 0.01700369 0.001005175) (-0.007562669 0.01800325 0.001006506) (-0.007078045 0.01900594 0.001006024) (-0.007066886 0.01800365 0.001510201) (0.007067491 0.01800541 0.0005023578) (0.007065948 0.01700495 0.001006192) (0.006570946 0.01800472 0.001009368) (0.007560057 0.01800474 0.001004425) (0.007073367 0.01900469 0.001007666) (0.007077335 0.01800519 0.001511669) (-0.006588437 0.02200931 0.001005717) (0.006583267 0.02200786 0.001005976) (-0.005073689 0.02901616 0.001008859) (-0.004569079 0.03001628 0.001010095) (0.005088366 0.02901652 0.001011082) (0.004586575 0.03001835 0.001014747) (-0.003063341 0.03403045 0.0005147618) (-0.003061255 0.03302758 0.001020855) (-0.002564466 0.03403875 0.001026378) (0.003047462 0.03402232 0.0005153593) (0.003058535 0.0330223 0.001025892) (0.002559444 0.03403642 0.001032686) (0.001046458 0.03707413 0.001045428) (-0.001026348 -0.03404177 0.002575761) (-0.0005110662 -0.03403366 0.0030755) (-0.0010213 -0.0330305 0.003078808) (0.00102182 -0.034036 0.00256383) (0.0005106576 -0.03403117 0.003069306) (0.00101878 -0.03302462 0.003068347) (-0.005086504 -0.02601591 0.002532259) (-0.004579003 -0.02601592 0.003043173) (-0.005085832 -0.02501703 0.003043565) (0.005078816 -0.02601214 0.002530907) (0.004571989 -0.02601153 0.003043316) (0.005079736 -0.0250123 0.003037454) (-0.006571665 -0.01800387 0.00302286) (0.00657998 -0.01800886 0.003033011) (-0.007057181 -0.01400285 0.002512915) (-0.007057135 -0.01500325 0.003016041) (-0.007558333 -0.01400244 0.003014512) (-0.006551755 -0.01400332 0.003018409) (-0.007054986 -0.01300377 0.003018262) (-0.007051281 -0.01400427 0.003521746) (0.007076705 -0.01400331 0.002526132) (0.007080168 -0.01500533 0.003034172) (0.006569344 -0.01400394 0.003031567) (0.007587813 -0.0140036 0.003034046) (0.007076322 -0.01300354 0.00303119) (0.007078028 -0.01400559 0.003537542) (-0.007064148 0.01399912 0.00251546) (-0.007068727 0.01299838 0.003021772) (-0.007574083 0.01399615 0.003018827) (-0.006558792 0.01400079 0.003021317) (-0.007060301 0.01500155 0.003020636) (-0.007072521 0.01400175 0.003527223) (0.007077198 0.01400466 0.002523807) (0.007074963 0.01300392 0.003030438) (0.006567324 0.01400455 0.00302782) (0.007577388 0.01400644 0.00302649) (0.007073174 0.01500459 0.003025071) (0.007069124 0.01400444 0.003530521) (-0.006560102 0.01800534 0.003024133) (0.006587085 0.01800965 0.003035198) (-0.00508699 0.02601484 0.002540267) (-0.005083883 0.025014 0.003046464) (-0.004578572 0.02601355 0.003050049) (0.005079226 0.02601582 0.002533323) (0.005074679 0.02501527 0.003039256) (0.004569616 0.02601712 0.003041352) (-0.001028613 0.03404557 0.002571819) (-0.001019988 0.03303344 0.003073094) (-0.0005146602 0.03403803 0.003075267) (0.001027502 0.03404907 0.002579241) (0.00102499 0.03303732 0.003084337) (0.0005129888 0.03403993 0.003077673) (-0.001013845 -0.03002375 0.004587352) (-0.001010207 -0.02902252 0.005092198) (0.001016398 -0.03001852 0.004583732) (0.001017149 -0.02901911 0.005094262) (-0.003047053 -0.02601863 0.004587265) (-0.00253885 -0.02602076 0.005097232) (-0.0030456 -0.02501903 0.005092783) (0.00304795 -0.02601662 0.004586885) (0.002540916 -0.02602076 0.005097139) (0.003044365 -0.0250177 0.005090368) (-0.005065175 -0.02200865 0.004554419) (-0.004555708 -0.02200726 0.005070622) (0.005061857 -0.02201112 0.00455543) (0.004550432 -0.02200909 0.005061503) (-0.006565107 -0.01000247 0.005051912) (0.006564279 -0.01000205 0.005049778) (-0.007057737 -0.006000744 0.004533953) (-0.006560265 -0.006001304 0.005046122) (0.007065105 -0.00600072 0.004534695) (0.006555449 -0.006000755 0.005035613) (-0.007076573 -0.002002263 0.004547484) (-0.006570174 -0.002003223 0.005052782) (0.007066814 -0.002001613 0.004537296) (0.00656606 -0.002001156 0.005042054) (-0.007070896 0.002000752 0.004543779) (-0.00656444 0.002000502 0.005050503) (0.007066225 0.001999843 0.004533704) (0.006558354 0.00200042 0.005040205) (-0.007056395 0.006001069 0.004534661) (-0.006559891 0.00600129 0.005046048) (0.007059136 0.005999886 0.004535458) (0.006566803 0.006000958 0.005048986) (-0.006572219 0.01000165 0.005050521) (0.006569163 0.01000459 0.005052964) (-0.005062827 0.02200984 0.004549206) (-0.004557971 0.02201134 0.005061333) (0.005059889 0.02201052 0.004550268) (0.004552988 0.02201161 0.005055793) (-0.003047817 0.02601596 0.004587455) (-0.00304284 0.02501761 0.005094876) (-0.002539965 0.0260189 0.005099097) (0.0030463 0.02601826 0.004582734) (0.003043979 0.02501716 0.005086672) (0.002539105 0.02601977 0.005094199) (-0.001013237 0.03001918 0.004578733) (-0.001013208 0.029018 0.005085067) (0.001018795 0.03002331 0.004592953) (0.001016105 0.02902106 0.005097637) (-0.001008149 -0.02200992 0.006583227) (0.001004437 -0.02200607 0.006571638) (-0.00302815 -0.01800701 0.006576095) (-0.001006464 -0.01800735 0.006573951) (-0.001005674 -0.01900795 0.007082477) (-0.001510103 -0.01800766 0.007079602) (-0.0005035614 -0.01800928 0.007078509) (-0.001006702 -0.01700766 0.007076204) (-0.001005286 -0.01801054 0.007587888) (0.001006474 -0.01800704 0.006569545) (0.001005363 -0.01900821 0.007075368) (0.0005025899 -0.01800882 0.007074716) (0.001509659 -0.01800638 0.007072577) (0.00100606 -0.01700613 0.007071201) (0.001006107 -0.01800849 0.007577463) (0.003033722 -0.01800914 0.006580242) (-0.003023785 -0.01400289 0.006567262) (-0.003023396 -0.01500257 0.007069339) (-0.003526246 -0.01400278 0.00706763) (-0.002518279 -0.01400313 0.007071211) (-0.00302172 -0.0130027 0.007073215) (-0.003020294 -0.01400296 0.007569567) (0.003025649 -0.01400254 0.006564118) (0.003024871 -0.01500293 0.007067055) (0.002519466 -0.0140029 0.007071501) (0.003528635 -0.01400228 0.007062612) (0.003022996 -0.01300209 0.007071206) (0.003022155 -0.01400201 0.007571685) (-0.005047988 -0.0100041 0.006568892) (0.005043287 -0.01000419 0.006561212) (-0.005049038 -0.006001281 0.006563002) (-0.004537648 -0.006000873 0.007062005) (0.005041 -0.006002109 0.006545948) (0.004534115 -0.006002364 0.007047101) (-0.005045909 -0.002000975 0.006564607) (-0.004541238 -0.002000995 0.007072393) (0.005058546 -0.002002012 0.006568697) (0.004545875 -0.002002019 0.007071712) (-0.005047481 0.002002553 0.006573862) (-0.004543815 0.002002119 0.007079081) (0.005052081 0.002003787 0.006569705) (0.004549595 0.002003074 0.007078538) (-0.005051911 0.006001937 0.006565112) (-0.004539125 0.006001705 0.007063651) (0.005057505 0.006001472 0.006574329) (0.00454504 0.006001252 0.007072056) (-0.005051086 0.01000656 0.006564789) (0.005054918 0.01000676 0.006584518) (-0.003025275 0.01400292 0.006562389) (-0.003021715 0.01300127 0.007064444) (-0.003529013 0.01400337 0.007060418) (-0.002518523 0.01400181 0.007066843) (-0.003025265 0.01500339 0.007063796) (-0.003021436 0.01399825 0.007562878) (0.003029033 0.01400376 0.006566579) (0.0030267 0.01300417 0.007072495) (0.002523382 0.0140043 0.007075215) (0.003533166 0.01400409 0.007067161) (0.003030456 0.01500405 0.007071334) (0.003030779 0.01400642 0.007582843) (-0.00302483 0.01800762 0.006570764) (-0.001006968 0.01800498 0.006572397) (-0.001007661 0.01700514 0.007077792) (-0.001510462 0.01800669 0.007076713) (-0.0005042048 0.01800427 0.007082519) (-0.001006893 0.01900563 0.007080345) (-0.001009827 0.01800395 0.007592459) (0.001009457 0.0180025 0.006572157) (0.001008094 0.01700212 0.007078176) (0.0005049148 0.0180024 0.007084471) (0.001513263 0.01800237 0.007076338) (0.001009361 0.01900319 0.007081333) (0.001008627 0.01800261 0.007593662) (0.003033443 0.01800234 0.006571359) (-0.001011252 0.02200885 0.006583058) (0.001011135 0.0220075 0.006571132) (-0.001589327 0.006465569 -0.009724575) (-0.001517502 0.006995995 -0.009365297) (-0.001507117 0.006996466 -0.009728093) (-0.001492045 0.0110006 -0.009215377) (0.0005900573 -0.008540839 -0.009730507) (0.0004385892 -0.009002396 -0.009732711) (0.002571181 -0.0004982759 -0.009611055) (0.00252379 -0.001003169 -0.009328805) (0.002418722 -0.0008204143 -0.009688244) (0.0005085339 -0.008005852 -0.009761976) (0.0024356 2.753166e-06 -0.009701147) (-0.001506038 0.00400045 -0.009831078) (1.303769e-06 -0.01800699 -0.007570118) (9.474005e-07 -0.01900632 -0.007071887) (-0.001004698 -0.01600271 -0.007570943) (-0.002012997 -0.01400328 -0.007568675) (-0.00201645 -0.01700309 -0.00707007) (-0.002520264 -0.01600468 -0.00707247) (-0.001509791 -0.01600284 -0.007066767) (-0.002014385 -0.01500339 -0.007065672) (0.001006929 -0.01600537 -0.007574886) (3.033286e-06 -0.01400448 -0.007584041) (1.102495e-06 -0.01700449 -0.007068688) (-0.0005015983 -0.01600331 -0.007070552) (0.0005043897 -0.0160044 -0.007071865) (2.085065e-06 -0.01500367 -0.007074402) (0.002016181 -0.01400532 -0.007569894) (0.002016392 -0.01700666 -0.007073424) (0.001511305 -0.01600587 -0.007070306) (0.002523797 -0.01600669 -0.00707381) (0.002017206 -0.01500586 -0.007068844) (-0.003533859 -0.01200356 -0.007070809) (-0.002012331 -0.0130025 -0.007065482) (-0.002519081 -0.0120025 -0.007068028) (-0.001505756 -0.01200176 -0.007058075) (-0.002011056 -0.01100181 -0.0070599) (-0.0004993572 -0.01200156 -0.007050951) (0.0005048404 -0.01200174 -0.007050449) (2.580699e-06 -0.01100115 -0.007044369) (2.78123e-06 -0.01300254 -0.007060834) (0.003029872 -0.01200838 -0.0075679) (0.002016679 -0.01300434 -0.007062821) (0.001511034 -0.01200242 -0.007054564) (0.002522108 -0.01200513 -0.007062882) (0.002014414 -0.01100275 -0.007054767) (0.003537637 -0.01200753 -0.007072165) (-0.004045732 -0.009003366 -0.007066461) (-0.004552351 -0.008002346 -0.00706948) (-0.003535373 -0.00800304 -0.007064517) (-0.004041922 -0.007002209 -0.007065978) (-0.002012153 -0.009001537 -0.007050919) (-0.002519002 -0.008001995 -0.00705529) (-0.001507512 -0.008001014 -0.007042667) (-0.002012857 -0.007001245 -0.007047666) (2.226808e-06 -0.009000886 -0.007042314) (-0.0005006867 -0.008000744 -0.007039083) (0.000504754 -0.008000972 -0.007047118) (0.003022125 -0.008002528 -0.007566262) (0.002013572 -0.009001845 -0.007055028) (0.00151067 -0.008001244 -0.007054827) (0.002517656 -0.00800196 -0.007058326) (0.002014579 -0.007001238 -0.007057263) (0.004033751 -0.006003906 -0.007563992) (0.00403107 -0.009004172 -0.00706479) (0.004535823 -0.008005148 -0.007064314) (0.004032774 -0.007004692 -0.007063019) (0.003526013 -0.00800358 -0.00706169) (-0.004034822 -0.005001021 -0.007065222) (-0.004540068 -0.004000778 -0.007071982) (-0.003527087 -0.004000365 -0.007066522) (-0.004034116 -0.002999827 -0.007073388) (-0.00201225 -0.005000666 -0.007047513) (-0.002516806 -0.004000413 -0.007055748) (-0.002013454 -0.00300018 -0.007052611) (0.002518834 -0.004001204 -0.007056806) (0.002014824 -0.003000885 -0.007052036) (0.00201466 -0.005001104 -0.007054113) (0.004034062 -0.005002809 -0.007063294) (0.003528496 -0.004001854 -0.007063283) (0.004540928 -0.004002581 -0.007069949) (0.004032398 -0.003001954 -0.007066269) (-0.004044146 0.002002504 -0.007592374) (-0.004034603 -0.0009988782 -0.00707432) (-0.004543615 2.136204e-06 -0.007077986) (-0.003530103 1.012518e-06 -0.007076071) (-0.004039941 0.001002326 -0.007080484) (-0.002015282 -0.0009999684 -0.00705719) (-0.00252025 2.784544e-07 -0.007066615) (-0.002016307 0.001000371 -0.007059513) (0.002014739 -0.001000423 -0.007049972) (0.002519455 -3.828445e-07 -0.007058306) (0.002015284 0.001000014 -0.00705102) (0.004027159 -0.001001348 -0.007060987) (0.003527036 -6.454969e-07 -0.007066442) (0.004527132 -1.16786e-06 -0.00705516) (0.004032642 0.0009997452 -0.007067319) (-0.003025763 0.004001887 -0.007570997) (-0.004025148 0.006003294 -0.007556907) (-0.004040794 0.003002363 -0.007074679) (-0.00454509 0.004002536 -0.007069154) (-0.004032577 0.00500263 -0.00706083) (-0.003530622 0.004002085 -0.007067547) (0.002015139 0.003000533 -0.00705345) (0.002519387 0.004000734 -0.007059236) (0.002013733 0.005001107 -0.007055516) (0.004031838 0.006001462 -0.007558607) (0.004038459 0.003000628 -0.007072194) (0.003531441 0.004000741 -0.007067374) (0.004545603 0.004001212 -0.007072065) (0.004035968 0.005001231 -0.007063323) (-0.004027697 0.007004769 -0.007061944) (-0.004535594 0.008007951 -0.007072557) (-0.003524191 0.008004683 -0.007069131) (-0.004031997 0.009004958 -0.007075016) (-0.00251595 0.008003164 -0.007059777) (-0.001508495 0.008001732 -0.007048494) (-0.002012133 0.009002747 -0.007055162) (-0.0020126 0.007002164 -0.007055876) (-0.0005022207 0.008001001 -0.007039677) (0.0005034481 0.008001287 -0.007041906) (5.566756e-07 0.00900102 -0.007037841) (0.003019272 0.008001796 -0.007557107) (0.001509216 0.00800172 -0.007049433) (0.002012573 0.009002031 -0.007050417) (0.002012462 0.00700155 -0.00705389) (0.002515762 0.008001739 -0.007052937) (0.004032211 0.007002071 -0.007055239) (0.004538172 0.008003701 -0.007061489) (0.004033692 0.009003283 -0.007065434) (0.003526034 0.008002248 -0.007056524) (-0.003531457 0.01200461 -0.007070357) (-0.002014117 0.01100313 -0.007061344) (-0.002521481 0.01200458 -0.007069015) (-0.001510381 0.01200224 -0.007058643) (-0.002016636 0.01300389 -0.007069286) (-3.025716e-08 0.01100096 -0.007041385) (-0.0005032375 0.01200099 -0.00704989) (0.0005022046 0.01200147 -0.007049216) (-9.542302e-07 0.0130014 -0.007060143) (0.003023236 0.01200623 -0.007568305) (0.002010723 0.01400324 -0.007565214) (0.00201323 0.01100288 -0.007054907) (0.00150886 0.01200262 -0.007054844) (0.002518193 0.01200406 -0.007063337) (0.002012615 0.01300331 -0.007062333) (0.003530854 0.01200557 -0.007071168) (-0.002018131 0.01500418 -0.007074001) (-0.002524535 0.0160045 -0.007080689) (-0.001513742 0.01600356 -0.007072645) (-0.002019658 0.01700472 -0.007076443) (0.001004706 0.01600526 -0.0075715) (-2.695836e-06 0.01800595 -0.00756945) (-1.878234e-06 0.01500303 -0.007074578) (-0.0005063653 0.01600375 -0.007073579) (0.0005013781 0.01600457 -0.007071219) (-2.944363e-06 0.01700509 -0.007070873) (0.002013296 0.01500322 -0.007064026) (0.001509578 0.01600421 -0.007065666) (0.002518852 0.01600364 -0.007068348) (0.002015724 0.01700468 -0.007067784) (-1.697504e-06 0.01900511 -0.00707044) (-0.001007297 -0.02801615 -0.005570768) (-0.002020809 -0.02601071 -0.005571854) (-0.001517971 -0.02801898 -0.00508356) (-0.002024963 -0.02701521 -0.005078812) (0.001008056 -0.02801583 -0.005568046) (1.690232e-07 -0.02601402 -0.005572955) (9.724989e-07 -0.02902209 -0.005088503) (-0.000504632 -0.02801832 -0.005079446) (0.0005052924 -0.028019 -0.005078865) (3.614501e-07 -0.02701568 -0.005073955) (0.002025722 -0.02601257 -0.005577945) (0.001517495 -0.02801594 -0.00507482) (0.002027078 -0.02701454 -0.005077923) (-0.00302741 -0.02400616 -0.005563365) (-0.004033614 -0.02200551 -0.005553875) (-0.003534523 -0.02400704 -0.005062749) (-0.004035155 -0.02300528 -0.005051624) (-0.001003679 -0.0240115 -0.006569987) (-0.001005728 -0.02501138 -0.006068847) (-0.001004176 -0.02300781 -0.00606376) (-0.001006651 -0.02401023 -0.0055666) (-0.002009768 -0.02200319 -0.006545241) (-0.002517372 -0.02200399 -0.006051097) (-0.00150778 -0.02200435 -0.006055542) (-0.002015748 -0.02200455 -0.005553904) (-0.00202015 -0.02500941 -0.005068053) (-0.002524017 -0.02400698 -0.005063704) (-0.00151249 -0.02400883 -0.005063847) (-0.002017303 -0.02300555 -0.005055519) (0.001004013 -0.02401254 -0.00656319) (0.001006469 -0.02501363 -0.006070139) (0.001006031 -0.02301052 -0.006066135) (0.001008627 -0.02401208 -0.005567322) (1.138532e-06 -0.02200808 -0.00657252) (-0.000501454 -0.02200657 -0.006063735) (0.0005031331 -0.02200822 -0.006065565) (0.003037802 -0.02401217 -0.005580866) (0.002011576 -0.02200741 -0.006554658) (0.001509774 -0.02200826 -0.00606265) (0.002522555 -0.02200888 -0.006065758) (0.002020231 -0.02200877 -0.0055629) (0.002024646 -0.02501217 -0.005073623) (0.002530545 -0.02401141 -0.005073901) (0.001515698 -0.02401103 -0.005065516) (0.002022658 -0.02300951 -0.005064181) (0.004042328 -0.0220069 -0.005567924) (0.003543382 -0.02401037 -0.005075227) (0.004044563 -0.02300799 -0.005065481) (-0.003025252 -0.02000547 -0.006561721) (-0.003025753 -0.02100542 -0.006056559) (-0.003025492 -0.01900442 -0.006061424) (-0.003028017 -0.02000498 -0.005557052) (-0.004026954 -0.0180044 -0.006552894) (-0.00454104 -0.01800546 -0.006058851) (-0.003528654 -0.01800466 -0.00606068) (-0.004036788 -0.01800509 -0.00555691) (-0.00403772 -0.0210055 -0.005052431) (-0.004546305 -0.02000587 -0.005055762) (-0.003531417 -0.02000489 -0.005052662) (-0.004037969 -0.01900509 -0.005054194) (-0.00100645 -0.02000261 -0.006562481) (-0.00100521 -0.0210036 -0.006058266) (-0.001006563 -0.01900251 -0.006057796) (-0.002016489 -0.01800249 -0.006565003) (-0.002519752 -0.01800297 -0.006061411) (-0.001510866 -0.01800214 -0.00605782) (0.001005703 -0.02000527 -0.006564667) (0.001005914 -0.02100647 -0.006062249) (0.001006773 -0.01900439 -0.006062192) (6.383232e-07 -0.01800419 -0.006562852) (-0.0005028105 -0.01800301 -0.006057402) (0.0005037551 -0.01800391 -0.006058563) (0.003023242 -0.02000259 -0.006567068) (0.003027142 -0.02100596 -0.006066313) (0.003027513 -0.01900392 -0.006068854) (0.003029224 -0.0200049 -0.005563395) (0.00201643 -0.01800445 -0.006569719) (0.001511022 -0.01800407 -0.006062379) (0.002522351 -0.01800412 -0.006067827) (0.00403623 -0.01800595 -0.006565867) (0.003535161 -0.01800544 -0.006071203) (0.00454685 -0.0180092 -0.006073086) (0.004041092 -0.01800647 -0.005566156) (0.004040866 -0.02100644 -0.005063717) (0.004543873 -0.02000664 -0.005064191) (0.00353348 -0.02000533 -0.005060798) (0.004038786 -0.01900574 -0.005061445) (-0.005043292 -0.01600846 -0.005553934) (-0.005550093 -0.01600901 -0.005046782) (-0.003024364 -0.01600448 -0.006571971) (-0.003023542 -0.01700373 -0.006063908) (-0.003022433 -0.01500338 -0.006060042) (-0.004031782 -0.01400381 -0.00656545) (-0.004532585 -0.01400421 -0.006054267) (-0.003526841 -0.01400336 -0.006059427) (-0.00403036 -0.01400393 -0.005548751) (0.003030485 -0.01600624 -0.00657248) (0.003029689 -0.01700526 -0.006069496) (0.003029542 -0.01500573 -0.00606614) (0.002018745 -0.01400494 -0.00656118) (0.002522722 -0.01400498 -0.006059587) (0.005059945 -0.01600777 -0.005569208) (0.00404477 -0.01400769 -0.006582475) (0.003537261 -0.01400644 -0.006071541) (0.004551664 -0.01400644 -0.006077215) (0.00404398 -0.01400558 -0.005564445) (0.005560671 -0.01600566 -0.005055423) (-0.005043985 -0.01200283 -0.006558902) (-0.005039163 -0.01300344 -0.006050233) (-0.005049663 -0.0110029 -0.006060561) (-0.005047597 -0.0120032 -0.005549692) (-0.005551114 -0.01000274 -0.006057466) (-0.006057526 -0.01000382 -0.005549252) (-0.006056956 -0.01300446 -0.005040335) (-0.006571794 -0.01200408 -0.005048032) (-0.006065926 -0.01100398 -0.005050584) (-0.005553793 -0.0120035 -0.005045993) (-0.003026781 -0.01200279 -0.006562193) (-0.00302478 -0.01300274 -0.006057278) (-0.004040735 -0.01000258 -0.006559287) (-0.004543044 -0.01000231 -0.006056317) (0.003031014 -0.01200608 -0.006564663) (0.003030503 -0.01300562 -0.006062677) (0.005050738 -0.01200615 -0.006574642) (0.005055969 -0.01300644 -0.006076221) (0.005049757 -0.0110049 -0.006071201) (0.005052723 -0.01200489 -0.005564915) (0.004034844 -0.01000396 -0.006562359) (0.004538522 -0.01000398 -0.006061996) (0.005545192 -0.01000445 -0.006063179) (0.006053975 -0.01000566 -0.005558274) (0.006064716 -0.01300331 -0.005058502) (0.006566237 -0.01200314 -0.005059186) (0.006061737 -0.01100509 -0.00506035) (0.005556295 -0.01200437 -0.005059811) (-0.005053379 -0.008001863 -0.00656019) (-0.005049197 -0.009002083 -0.006054529) (-0.005048245 -0.007001621 -0.006052688) (-0.005556263 -0.006001885 -0.006055873) (-0.006056767 -0.006001866 -0.005547717) (-0.0060537 -0.009002732 -0.005038731) (-0.006555562 -0.008002104 -0.005033851) (-0.006050845 -0.007001525 -0.005037147) (-0.004038862 -0.006001352 -0.006558181) (-0.00454246 -0.006001318 -0.006054466) (0.005038436 -0.008004045 -0.00655856) (0.00503814 -0.00900362 -0.006055195) (0.005041119 -0.007003483 -0.006054422) (0.0040337 -0.006003423 -0.006557222) (0.004537323 -0.006003229 -0.00605532) (0.005553977 -0.006003143 -0.0060625) (0.006057695 -0.006002826 -0.005554241) (0.006049183 -0.009003946 -0.005042484) (0.00655094 -0.00800371 -0.005036047) (0.006048131 -0.007002835 -0.005039703) (-0.005050027 -0.004001306 -0.006568016) (-0.00504934 -0.00500142 -0.006057381) (-0.005047613 -0.003001052 -0.006061567) (-0.005552073 -0.002001233 -0.006063093) (-0.006057487 -0.002001535 -0.005556628) (-0.006054137 -0.005001452 -0.005043515) (-0.006560269 -0.004001603 -0.005047372) (-0.006056357 -0.003001425 -0.00504927) (-0.004035977 -0.001999654 -0.006566128) (-0.004539901 -0.002000066 -0.006061115) (0.005048195 -0.004002837 -0.006570252) (0.00504639 -0.005002883 -0.006060241) (0.005039955 -0.003002449 -0.00605542) (0.004028735 -0.002001688 -0.00655544) (0.004529934 -0.002001869 -0.00604985) (0.00553639 -0.002002743 -0.00604631) (0.00604532 -0.002002626 -0.005536581) (0.006054574 -0.005002327 -0.005045679) (0.006563297 -0.004002244 -0.00504632) (0.006052384 -0.003002187 -0.005040177) (-0.005049361 2.012455e-06 -0.006571605) (-0.005045564 -0.0009997263 -0.006061462) (-0.005050128 0.001002751 -0.006063204) (-0.005562314 0.002004042 -0.00606711) (-0.006065965 0.002003601 -0.005556614) (-0.00605391 -0.001000382 -0.005048031) (-0.006561777 4.400454e-07 -0.005048581) (-0.006057287 0.001001851 -0.005047071) (-0.004041854 0.002002387 -0.006569413) (-0.004545679 0.00200262 -0.006063784) (0.005023728 -1.294541e-06 -0.006542034) (0.005026665 -0.001001786 -0.006041886) (0.005030364 0.0009997729 -0.006043015) (0.004034214 0.002000208 -0.006559652) (0.004535518 0.002000357 -0.006052318) (0.005545648 0.002001067 -0.006049341) (0.006052848 0.002001759 -0.005542905) (0.006043377 -0.001001287 -0.005027841) (0.006545965 -3.142916e-07 -0.005026469) (0.006044939 0.001000572 -0.005030326) (-0.005056658 0.004003082 -0.006570608) (-0.005055693 0.003003277 -0.006065352) (-0.005049462 0.005002813 -0.006059344) (-0.005552127 0.006002719 -0.00605926) (-0.006053526 0.006002319 -0.005552743) (-0.006061809 0.003002984 -0.005049558) (-0.006563377 0.004002797 -0.005048249) (-0.006054 0.005002319 -0.005047096) (-0.004032012 0.006003219 -0.006555309) (-0.004537124 0.006002998 -0.006053722) (0.005054884 0.004001725 -0.006570584) (0.005049071 0.003001355 -0.006057743) (0.005052423 0.005001726 -0.006061584) (0.004035789 0.006001619 -0.006555022) (0.004541319 0.006001721 -0.006054914) (0.005560888 0.006001742 -0.006064879) (0.00606729 0.00600153 -0.005560527) (0.006058567 0.003001852 -0.005045269) (0.006568378 0.004001928 -0.005048715) (0.006062021 0.005001632 -0.005049932) (-0.005037774 0.008005311 -0.006561725) (-0.005039468 0.007003273 -0.006052757) (-0.005036941 0.009003529 -0.006057008) (-0.005540491 0.01000334 -0.006058773) (-0.006046757 0.01000449 -0.005546769) (-0.006046971 0.007002048 -0.005040325) (-0.006550183 0.00800228 -0.005036284) (-0.006047203 0.009003344 -0.005039329) (-0.004031774 0.01000315 -0.006564051) (-0.004534315 0.01000318 -0.006060679) (0.00504297 0.008003351 -0.006559236) (0.00504687 0.007002248 -0.006055694) (0.00504438 0.00900423 -0.006061985) (0.004036417 0.01000377 -0.006566454) (0.00454098 0.01000443 -0.006066651) (0.005552911 0.01000723 -0.006074856) (0.006059868 0.01000635 -0.005563478) (0.006060748 0.007001965 -0.005047946) (0.006567565 0.008002746 -0.005047124) (0.00606116 0.009003915 -0.00505156) (-0.005038385 0.01200363 -0.00656167) (-0.005041172 0.01100353 -0.006063425) (-0.005043768 0.01300534 -0.006060903) (-0.005044412 0.01200417 -0.005554739) (-0.00605726 0.01100513 -0.005049859) (-0.006566149 0.01200514 -0.005051215) (-0.006061132 0.01300515 -0.005050456) (-0.005551104 0.01200449 -0.005051151) (-0.003026893 0.01200468 -0.006564793) (-0.003026453 0.01300481 -0.006062424) (-0.004036595 0.01400823 -0.006575638) (-0.004543439 0.01400727 -0.00606897) (-0.003531881 0.01400613 -0.006069293) (-0.004038292 0.01400583 -0.005559335) (0.005055163 0.01200577 -0.006587788) (0.005053503 0.01100692 -0.006079298) (0.005052688 0.0130053 -0.006076352) (0.005054969 0.01200593 -0.005567509) (0.004044391 0.01400494 -0.006582343) (0.003535284 0.01400416 -0.006070025) (0.004545909 0.01400461 -0.006071845) (0.004041638 0.01400428 -0.00556037) (0.006067573 0.01100565 -0.005059426) (0.006571129 0.01200499 -0.005051203) (0.006064078 0.01300576 -0.005050952) (0.005560436 0.01200586 -0.005060239) (-0.005056457 0.01600673 -0.005566366) (-0.005559039 0.01600581 -0.005057709) (-0.003029986 0.01600544 -0.006578619) (-0.003027485 0.0150053 -0.006068212) (-0.003029106 0.01700549 -0.006069555) (-0.004035848 0.01800655 -0.006557284) (-0.004552239 0.01800678 -0.006059743) (-0.003535953 0.01800614 -0.006065695) (-0.004044397 0.01800548 -0.00555935) (-0.002020035 0.01800524 -0.006573437) (-0.00252406 0.01800515 -0.006068252) (-0.001514741 0.01800456 -0.006064293) (-2.163226e-06 0.01800469 -0.006563206) (-0.0005061351 0.01800418 -0.00605946) (0.0005023966 0.01800448 -0.006059112) (0.00302818 0.01600392 -0.00657196) (0.003027474 0.01500367 -0.006064421) (0.003028691 0.01700519 -0.00606575) (0.002016103 0.01800544 -0.006567615) (0.001511059 0.01800481 -0.006060955) (0.002521453 0.01800542 -0.006063284) (0.005054375 0.01600555 -0.005559335) (0.003536826 0.01800763 -0.006065905) (0.004045992 0.01800843 -0.005563398) (0.005563688 0.01600531 -0.005054323) (-0.003027294 0.0200069 -0.006565794) (-0.003030023 0.01900577 -0.006065306) (-0.003030365 0.02100497 -0.006060759) (-0.003032615 0.02000494 -0.005558118) (-0.004042222 0.02200622 -0.005560939) (-0.004548953 0.0200045 -0.005053194) (-0.004042187 0.02100492 -0.005052779) (-0.004043205 0.0190045 -0.005054133) (-0.003536715 0.0200045 -0.005053655) (-0.001009649 0.020005 -0.00656282) (-0.001010009 0.01900449 -0.006060668) (-0.001009139 0.02100495 -0.006059208) (-0.002016888 0.02200397 -0.006555527) (-0.002526694 0.02200527 -0.006063669) (-0.001514103 0.02200578 -0.00606118) (-0.002024312 0.02200697 -0.005563627) (0.001006169 0.02000471 -0.00656388) (0.001006491 0.0190046 -0.006060344) (0.001005336 0.02100461 -0.006058992) (-8.402779e-07 0.02200642 -0.006568431) (-0.0005049241 0.02200627 -0.006062918) (0.0005016521 0.02200626 -0.006063079) (0.003026817 0.0200081 -0.006563391) (0.003029115 0.01900752 -0.00606389) (0.003027782 0.0210073 -0.006055301) (0.003031963 0.02000822 -0.005557382) (0.002009773 0.02200225 -0.006546702) (0.001508396 0.02200444 -0.006056139) (0.002518063 0.0220047 -0.006050405) (0.002016443 0.02200566 -0.005552321) (0.004037483 0.02200904 -0.005554619) (0.00455272 0.02001082 -0.005055972) (0.004045691 0.02100985 -0.005054637) (0.004044689 0.01900911 -0.005057071) (0.003538143 0.020009 -0.005055502) (-0.003041218 0.0240142 -0.0055836) (-0.00404087 0.02300651 -0.005057647) (-0.003541383 0.02401161 -0.005070074) (-0.001007886 0.02400996 -0.006561955) (-0.001009502 0.02300818 -0.006064513) (-0.001012032 0.02501606 -0.00607582) (-0.001013134 0.02401336 -0.005573667) (-0.00203137 0.02601968 -0.005598019) (-0.002534936 0.02401307 -0.005079291) (-0.002030334 0.02501634 -0.005086021) (-0.00202628 0.02300933 -0.005066548) (-0.001520359 0.02401344 -0.005073803) (0.001003557 0.02400771 -0.006561656) (0.001004605 0.02300679 -0.006062206) (0.001004305 0.02501195 -0.006072191) (0.001005607 0.02401047 -0.005567788) (-2.696101e-06 0.02601611 -0.005581104) (0.003026234 0.02400984 -0.005560027) (0.002015985 0.02601332 -0.005571289) (0.002522879 0.02400975 -0.005060632) (0.002017383 0.02501147 -0.005066693) (0.002017578 0.02300731 -0.00505374) (0.001511221 0.02400994 -0.005062981) (0.004038577 0.02300887 -0.005051108) (0.003533932 0.02401128 -0.005058102) (-0.001012094 0.02802047 -0.005580414) (-0.002032488 0.02701919 -0.005095448) (-0.001522079 0.02802202 -0.005094497) (0.001006657 0.02801577 -0.005577703) (-0.0005069218 0.02801886 -0.005086159) (0.0005036214 0.02801727 -0.005086654) (-3.134717e-07 0.02901943 -0.00509307) (-2.311957e-06 0.02701677 -0.00508198) (0.002018958 0.02701557 -0.005077311) (0.001513244 0.02801689 -0.005083008) (4.717572e-06 -0.03402916 -0.003561811) (2.410696e-06 -0.03504455 -0.003067174) (-0.001018786 -0.03102623 -0.004088975) (-0.001020937 -0.03202764 -0.003581547) (-0.002036554 -0.03002753 -0.004597546) (-0.002541297 -0.03002577 -0.004091336) (-0.001527809 -0.03002621 -0.00409118) (-0.002036808 -0.03002673 -0.003585692) (-0.002051233 -0.03303798 -0.003090868) (-0.002553549 -0.03203408 -0.003088202) (-0.001534099 -0.03203165 -0.003083847) (-0.002039937 -0.03102904 -0.003082809) (0.001016621 -0.03102848 -0.004090049) (0.00102074 -0.03203265 -0.003581688) (1.421547e-06 -0.03002668 -0.004596879) (-0.0005074641 -0.03002447 -0.004087565) (0.0005081738 -0.03002518 -0.004088499) (2.174929e-06 -0.03303249 -0.003069373) (-0.0005104744 -0.03202883 -0.003071649) (0.0005125638 -0.032032 -0.003072566) (0.002024163 -0.03002124 -0.004579329) (0.001521496 -0.03002417 -0.004082028) (0.002534939 -0.03002227 -0.004070047) (0.002029579 -0.03002302 -0.003566807) (0.00204172 -0.03303396 -0.00306972) (0.001529172 -0.03203256 -0.003072924) (0.002538676 -0.03202408 -0.003052487) (0.002031408 -0.03102462 -0.003061365) (-0.003042974 -0.02801842 -0.004582083) (-0.003047743 -0.02902148 -0.004083431) (-0.003043535 -0.02701549 -0.004076063) (-0.00305042 -0.02801869 -0.00357263) (-0.004049766 -0.02601266 -0.004576051) (-0.004559274 -0.02601386 -0.004064756) (-0.003547628 -0.02601261 -0.004071561) (-0.004058825 -0.02601227 -0.003558253) (-0.004060477 -0.02901563 -0.003055461) (-0.004560269 -0.02801171 -0.003044919) (-0.004060218 -0.02701262 -0.003049659) (-0.00355507 -0.02801687 -0.003062334) (-0.001013363 -0.02801997 -0.004582224) (-0.001015392 -0.02902173 -0.004082745) (-0.002027788 -0.02601322 -0.004572995) (-0.002533625 -0.02601317 -0.004070094) (0.001012363 -0.02801865 -0.004576852) (0.001013627 -0.02902103 -0.004079236) (0.003048405 -0.02801915 -0.004581674) (0.003050753 -0.02902 -0.004071878) (0.003048435 -0.02701568 -0.004074413) (0.003056489 -0.02801673 -0.003561844) (0.002029931 -0.02601358 -0.004573074) (0.002536639 -0.02601351 -0.004070019) (0.004056243 -0.02601195 -0.004577646) (0.003554629 -0.02601311 -0.004072771) (0.004570182 -0.02601144 -0.004061202) (0.004070227 -0.02601174 -0.003556427) (0.004075123 -0.02901508 -0.003043317) (0.004584733 -0.0280143 -0.003044661) (0.004076174 -0.02701269 -0.003048028) (0.003565897 -0.02801521 -0.003051937) (-0.005052085 -0.02300801 -0.004039451) (-0.00506105 -0.02401053 -0.00353928) (-0.005553445 -0.02200862 -0.004035551) (-0.005568566 -0.02401165 -0.003030002) (-0.003034527 -0.02400799 -0.004562234) (-0.003038159 -0.0250098 -0.004063226) (-0.004038832 -0.02200552 -0.004546101) (-0.004545035 -0.0220065 -0.004041932) (-0.004054551 -0.02501017 -0.003044386) (-0.004557956 -0.02401007 -0.003039499) (0.003041149 -0.0240105 -0.004570187) (0.003044171 -0.02501112 -0.00406766) (0.005058602 -0.02300762 -0.004045724) (0.005069401 -0.02400869 -0.003541503) (0.004044668 -0.02200672 -0.004556982) (0.004550204 -0.02200661 -0.004050709) (0.005562357 -0.02200734 -0.004046545) (0.005575861 -0.02400926 -0.003032751) (-0.00505091 -0.02000681 -0.004544316) (-0.005051263 -0.02100774 -0.004038798) (-0.005050627 -0.01900672 -0.004037516) (-0.005050956 -0.02000756 -0.003532134) (-0.006059303 -0.01800651 -0.004542132) (-0.006555279 -0.01800701 -0.004030429) (-0.006061651 -0.01800765 -0.003532678) (-0.005555415 -0.01800691 -0.004038153) (-0.006060762 -0.02101036 -0.003027863) (-0.006562826 -0.02000869 -0.003029551) (-0.006062302 -0.01900829 -0.003029608) (-0.005555418 -0.02000841 -0.003029269) (0.005050741 -0.02000575 -0.004553061) (0.005056593 -0.02100623 -0.004048749) (0.005054438 -0.01900477 -0.004043125) (0.005057431 -0.02000523 -0.00353879) (0.006062473 -0.0180031 -0.004539758) (0.006558512 -0.01800369 -0.004028965) (0.006065559 -0.018005 -0.003532271) (0.005558368 -0.01800432 -0.004039695) (0.006069127 -0.02100675 -0.003033423) (0.006568647 -0.02000718 -0.003031201) (0.006067136 -0.01900563 -0.003030041) (0.005562605 -0.02000559 -0.003033995) (-0.006055608 -0.01400512 -0.004535322) (-0.006568953 -0.01400419 -0.004035087) (-0.006062408 -0.01400418 -0.003530329) (-0.005550165 -0.01400467 -0.004033193) (-0.006065447 -0.0170065 -0.003028417) (-0.006574402 -0.01600652 -0.00303101) (-0.006063456 -0.01500475 -0.003027119) (0.006061497 -0.01400333 -0.004546169) (0.006564831 -0.01400321 -0.004037615) (0.006060559 -0.01400324 -0.003530857) (0.005554275 -0.01400346 -0.004040359) (0.006065259 -0.017005 -0.003025383) (0.006568851 -0.01600519 -0.003024347) (0.006061846 -0.01500383 -0.003024449) (-0.0070777 -0.01200457 -0.003538234) (-0.007574495 -0.0120045 -0.003029891) (-0.006062161 -0.01000359 -0.004540088) (-0.006568574 -0.01000397 -0.004037837) (-0.006058867 -0.01000326 -0.00353018) (-0.006059697 -0.01300351 -0.003027362) (-0.006565268 -0.0120037 -0.003029404) (-0.006057729 -0.01100325 -0.003026998) (0.00707506 -0.01200253 -0.003532548) (0.006056705 -0.01000397 -0.00454302) (0.006562283 -0.01000356 -0.004036853) (0.006058665 -0.01300271 -0.003026225) (0.006564826 -0.01200261 -0.00302662) (0.007582923 -0.01200306 -0.003024157) (-0.007070978 -0.008002331 -0.004533426) (-0.007077135 -0.00900367 -0.004036244) (-0.007072506 -0.007001093 -0.004029546) (-0.007077438 -0.008002789 -0.00352812) (-0.00756518 -0.006000315 -0.00402363) (-0.007581823 -0.008003909 -0.003022844) (-0.006051177 -0.006001208 -0.004533158) (-0.006555063 -0.006001009 -0.004028728) (0.00706228 -0.008004645 -0.004532261) (0.007070717 -0.009004026 -0.004031261) (0.007059882 -0.007003547 -0.004026223) (0.0070711 -0.00800419 -0.003525004) (0.006049505 -0.006002393 -0.004534362) (0.006551842 -0.00600242 -0.004028563) (0.007558455 -0.006002582 -0.004022063) (0.007578014 -0.008004294 -0.003021513) (-0.007055724 -0.004001036 -0.004535051) (-0.007055996 -0.005000816 -0.004026565) (-0.007059976 -0.0030008 -0.004034278) (-0.007058893 -0.004000896 -0.003524907) (-0.00757295 -0.002000909 -0.004041426) (-0.007563481 -0.004001262 -0.003021069) (-0.006053662 -0.002000711 -0.004541808) (-0.006557102 -0.002000586 -0.004038351) (0.007064981 -0.004001782 -0.004536285) (0.007057892 -0.005001889 -0.004027087) (0.007066509 -0.003001369 -0.004032421) (0.007060538 -0.004001445 -0.003524667) (0.006050329 -0.002001445 -0.004530922) (0.006558044 -0.002001128 -0.004030888) (0.007582634 -0.002000759 -0.004039035) (0.00755967 -0.004001372 -0.003019933) (-0.007070369 6.835368e-07 -0.004546768) (-0.007067849 -0.001000254 -0.004041339) (-0.007069809 0.001001929 -0.004038805) (-0.007067278 8.030892e-07 -0.003533699) (-0.007576638 0.002002575 -0.004035217) (-0.007568347 7.440959e-07 -0.003028498) (-0.006056769 0.002002014 -0.004540424) (-0.006559154 0.002001823 -0.004036068) (0.007065034 1.850034e-07 -0.004534746) (0.007069251 -0.001000434 -0.004033549) (0.007066609 0.001000687 -0.004033612) (0.007068398 1.703635e-07 -0.003529976) (0.006051428 0.002001081 -0.004533574) (0.006555523 0.002001013 -0.004031629) (0.007573636 0.002001249 -0.004035674) (0.0075705 6.512301e-09 -0.003026048) (-0.007056753 0.004001829 -0.004534946) (-0.007060259 0.003001809 -0.004031716) (-0.007050961 0.005001266 -0.004028606) (-0.007051017 0.004001197 -0.003524441) (-0.007552817 0.006000889 -0.00402746) (-0.007547814 0.004000982 -0.003019512) (-0.006048259 0.006001753 -0.004536048) (-0.006550285 0.006001482 -0.004031548) (0.007060701 0.004001619 -0.004535002) (0.007059124 0.003001508 -0.004030865) (0.007054751 0.005001803 -0.004027969) (0.007051884 0.004001663 -0.003523421) (0.006057992 0.006001608 -0.004539842) (0.006558247 0.006001827 -0.004033349) (0.007558366 0.00600279 -0.004025588) (0.007548855 0.004001708 -0.003018207) (-0.007064125 0.008002003 -0.004535821) (-0.007062993 0.007001552 -0.004033945) (-0.007069455 0.009003523 -0.004035152) (-0.007068622 0.008002432 -0.003530749) (-0.007569224 0.008002172 -0.003025299) (-0.006055664 0.01000421 -0.004539377) (-0.006562943 0.0100044 -0.004037092) (0.007077871 0.008002513 -0.004540051) (0.007071441 0.007002855 -0.004033816) (0.007079742 0.009002637 -0.00403792) (0.007074777 0.008003369 -0.003531083) (0.006066365 0.01000355 -0.004546734) (0.006572991 0.01000254 -0.004041034) (0.007577399 0.008004475 -0.003028749) (-0.00708121 0.01200678 -0.003538535) (-0.007583199 0.01200639 -0.003030475) (-0.006064022 0.01400553 -0.004545601) (-0.006573593 0.01400645 -0.004042728) (-0.00606424 0.01400553 -0.0035345) (-0.005554127 0.01400489 -0.004040095) (-0.006567765 0.01200519 -0.003031125) (-0.006060598 0.01300475 -0.003029515) (0.007095178 0.01200329 -0.003538928) (0.006072463 0.01400594 -0.004548166) (0.006588754 0.01400563 -0.004046756) (0.006083991 0.01400588 -0.003540781) (0.00556698 0.01400519 -0.004044655) (0.007602846 0.01200448 -0.003034744) (-0.006058558 0.01800613 -0.004547824) (-0.006557454 0.01800614 -0.00403508) (-0.00606218 0.01800776 -0.003532275) (-0.005555518 0.01800626 -0.004039553) (-0.006060625 0.0150054 -0.003026565) (-0.006566535 0.01600679 -0.003025726) (-0.006062056 0.01700719 -0.003025373) (0.006083361 0.01800903 -0.003543832) (0.005573205 0.01800677 -0.004047643) (0.00608577 0.01500692 -0.003036173) (0.006592357 0.01600895 -0.003037603) (0.006083948 0.01700857 -0.003036222) (-0.005050006 0.02000584 -0.004541626) (-0.00505285 0.02100662 -0.00403481) (-0.005052006 0.01900604 -0.004037132) (-0.00505437 0.02000676 -0.003530115) (-0.005557137 0.0220071 -0.004028645) (-0.006068381 0.01900947 -0.003027958) (-0.006574312 0.02001184 -0.003028679) (-0.006069226 0.02100841 -0.003028507) (-0.005561191 0.02000797 -0.003027802) (-0.004041954 0.02200541 -0.004545761) (-0.004545857 0.02200568 -0.004037357) (0.005062119 0.02000784 -0.004546802) (0.005065888 0.02100695 -0.004040931) (0.005065822 0.01900658 -0.004043372) (0.005067405 0.02000657 -0.003536191) (0.00404597 0.02200825 -0.004546591) (0.004554093 0.02200742 -0.004041889) (0.005573435 0.02200636 -0.004038242) (0.00608068 0.01900917 -0.003034044) (0.006576065 0.02000878 -0.003027409) (0.006080631 0.02100786 -0.003032208) (0.00557335 0.02000722 -0.003033216) (-0.005049982 0.0230062 -0.004030581) (-0.005058509 0.02400781 -0.003527022) (-0.005570197 0.02400724 -0.003023287) (-0.003039372 0.0240115 -0.004564498) (-0.003041247 0.02501202 -0.004060154) (-0.00404464 0.026011 -0.004553313) (-0.004551923 0.02601084 -0.004037709) (-0.003548854 0.02601355 -0.004060629) (-0.004059552 0.02601324 -0.003541809) (-0.002033558 0.02601635 -0.004580659) (-0.002538028 0.02601488 -0.004070819) (0.002022566 0.02601427 -0.004570989) (0.002529244 0.02601447 -0.004067153) (0.005059389 0.02300717 -0.004038416) (0.005067374 0.02401027 -0.003535595) (0.004047068 0.02601577 -0.004563089) (0.003545946 0.02601633 -0.004066479) (0.004556283 0.02601501 -0.004049943) (0.004060859 0.02601605 -0.003550585) (0.004563497 0.02401124 -0.003035774) (0.004058826 0.02501279 -0.003039349) (0.005579009 0.02401095 -0.003033754) (-0.003052649 0.0280186 -0.004582554) (-0.003048275 0.02701619 -0.004071289) (-0.003052569 0.02902091 -0.004071209) (-0.003055092 0.02801825 -0.003559705) (-0.004069615 0.02701654 -0.003040872) (-0.004579806 0.02802013 -0.003045263) (-0.004073743 0.02902002 -0.003047528) (-0.003562848 0.02801822 -0.003050394) (-0.001014215 0.02801929 -0.004584691) (-0.001014393 0.02901907 -0.004081528) (-0.002030472 0.03002207 -0.004587716) (-0.002540154 0.03002128 -0.00407554) (-0.001523319 0.03002084 -0.004082448) (-0.002032743 0.03002023 -0.003568683) (0.001010145 0.02801715 -0.004584013) (0.001012178 0.02901785 -0.004083997) (9.537943e-07 0.03002048 -0.004593928) (-0.000506588 0.03001979 -0.004085181) (0.0005072195 0.03001916 -0.004087415) (0.003037796 0.02801775 -0.004577757) (0.003039407 0.02701691 -0.004072768) (0.003048827 0.02902346 -0.004086313) (0.003053393 0.02802204 -0.003576131) (0.002024435 0.03002117 -0.004591344) (0.00152091 0.03001993 -0.004086658) (0.002537955 0.0300245 -0.004090007) (0.002032405 0.03002227 -0.003581063) (0.004067519 0.02701828 -0.003050191) (0.004575209 0.02802066 -0.003053476) (0.004074388 0.02902617 -0.00306799) (0.003562915 0.02802294 -0.003068789) (-0.001015952 0.03102142 -0.004083206) (-0.001019052 0.03202397 -0.003574465) (-0.002543749 0.03202415 -0.003056015) (-0.001529488 0.03202587 -0.003070136) (-0.002041745 0.03303059 -0.003070995) (-0.002034135 0.03102146 -0.003062223) (0.001015283 0.03102014 -0.004087855) (0.001018588 0.03202345 -0.003581439) (3.050327e-06 0.03402638 -0.003563386) (-0.0005093488 0.03202529 -0.003067784) (0.0005113027 0.03202565 -0.003072875) (1.892901e-06 0.03302854 -0.003069722) (0.00152863 0.03202604 -0.003079277) (0.002549698 0.03202753 -0.003071345) (0.002040305 0.03302931 -0.00307717) (0.002035888 0.03102383 -0.003075202) (4.695566e-06 0.03504095 -0.003069979) (-0.00103577 -0.03504754 -0.002063207) (-0.001034044 -0.03604889 -0.001550385) (-0.002058157 -0.0340426 -0.002580826) (-0.002562916 -0.03403956 -0.002066308) (-0.001547142 -0.03404269 -0.002064443) (-0.002057011 -0.03403881 -0.00154949) (-0.001552726 -0.03604641 -0.001032001) (-0.002062993 -0.03504015 -0.001032655) (0.001032908 -0.03505625 -0.002071483) (0.001036895 -0.0360601 -0.001554846) (6.962827e-07 -0.03404452 -0.002566667) (-0.0005167404 -0.0340433 -0.002061451) (0.0005156392 -0.03404791 -0.002064707) (5.267041e-06 -0.03704346 -0.001030757) (-0.0005153323 -0.03604461 -0.001031585) (0.0005224044 -0.03605367 -0.001034121) (0.0020534 -0.03403937 -0.002565207) (0.001544175 -0.03404665 -0.002063779) (0.002561479 -0.03403342 -0.002047513) (0.002057045 -0.03404078 -0.001539177) (0.001557747 -0.03606719 -0.001031073) (0.002060324 -0.03504841 -0.001024793) (-0.003065955 -0.03203642 -0.002576279) (-0.003069763 -0.03303849 -0.002067608) (-0.003064157 -0.03202826 -0.001544865) (-0.003060532 -0.0310275 -0.002054327) (-0.004062654 -0.03002021 -0.002550253) (-0.004565317 -0.03001802 -0.00203345) (-0.004065255 -0.03001818 -0.001529584) (-0.003560902 -0.03002286 -0.00204714) (-0.003563231 -0.03202133 -0.00102645) (-0.004066658 -0.03101693 -0.001020333) (0.003049414 -0.03201923 -0.002536674) (0.003057752 -0.03302286 -0.002035948) (0.003052521 -0.03201786 -0.001524173) (0.003051194 -0.03101569 -0.002029159) (0.004065575 -0.03001374 -0.002532046) (0.004566457 -0.03001172 -0.002026015) (0.004062882 -0.03001101 -0.001520624) (0.003556961 -0.03001367 -0.002028012) (0.003551207 -0.03201291 -0.001014066) (0.004061838 -0.03100872 -0.001012811) (-0.005068935 -0.02701224 -0.002023274) (-0.005067537 -0.02801339 -0.001515482) (-0.005575723 -0.02601355 -0.002020368) (-0.005575541 -0.02801423 -0.001005672) (-0.004058085 -0.02601113 -0.002536729) (-0.004563769 -0.02601151 -0.002028259) (-0.00406402 -0.02901357 -0.001015489) (-0.004569091 -0.02801326 -0.001012312) (0.005084422 -0.02701136 -0.002031751) (0.005075675 -0.02801112 -0.001520945) (0.004071044 -0.02601063 -0.002538677) (0.00457683 -0.02601058 -0.002033311) (0.004063538 -0.02900957 -0.001012612) (0.004569722 -0.02801072 -0.001013155) (0.005591371 -0.02601145 -0.00203076) (0.00557833 -0.0280127 -0.001012243) (-0.005067797 -0.02401166 -0.002526131) (-0.005071463 -0.02501217 -0.002020944) (-0.005064585 -0.02301136 -0.002018219) (-0.005068611 -0.02401144 -0.001513594) (-0.006066866 -0.02201287 -0.002520982) (-0.006575563 -0.02201602 -0.002014679) (-0.006079727 -0.02201489 -0.001512822) (-0.005566971 -0.02201238 -0.002017196) (-0.006080718 -0.02501145 -0.001007001) (-0.006577588 -0.02401255 -0.001008903) (-0.006083317 -0.0230147 -0.001009153) (-0.005575446 -0.024012 -0.001008616) (0.005077854 -0.02400889 -0.002531297) (0.005084695 -0.0250101 -0.002028811) (0.005069575 -0.02300751 -0.002022227) (0.005076125 -0.02400896 -0.001519104) (0.006069157 -0.02200726 -0.002524048) (0.006572311 -0.02200801 -0.002017581) (0.006075556 -0.02200793 -0.001514828) (0.005568955 -0.02200715 -0.002020385) (0.00609058 -0.02501174 -0.001014359) (0.006573679 -0.02400897 -0.00101055) (0.006077885 -0.02300909 -0.00101136) (0.005581302 -0.02401023 -0.001013508) (-0.006065609 -0.01800699 -0.002524563) (-0.006568243 -0.01800666 -0.002020519) (-0.006083454 -0.02101368 -0.001008602) (-0.006586061 -0.02001235 -0.001008217) (0.006065255 -0.01800497 -0.002521696) (0.006567045 -0.01800496 -0.002017578) (0.006075036 -0.02100748 -0.001009699) (0.006578517 -0.02000752 -0.001009377) (-0.007083782 -0.01600638 -0.002529934) (-0.007073076 -0.01700547 -0.002018966) (-0.00707731 -0.01500427 -0.002021859) (-0.007069017 -0.01600416 -0.001513248) (-0.007581725 -0.0140045 -0.002020496) (-0.007565834 -0.01600365 -0.001006558) (-0.006061522 -0.01400392 -0.00252274) (-0.006566421 -0.01400398 -0.002020574) (0.007075928 -0.01600472 -0.002520372) (0.007071494 -0.01700471 -0.002016089) (0.007075984 -0.01500319 -0.002016909) (0.007067414 -0.0160034 -0.001512087) (0.006059543 -0.01400311 -0.002519281) (0.006566274 -0.01400306 -0.002016676) (0.007584414 -0.01400309 -0.002015663) (0.007561994 -0.01600321 -0.001008144) (-0.00707064 -0.01200431 -0.002522353) (-0.007072371 -0.01300466 -0.002017819) (-0.007066395 -0.01100458 -0.002015216) (-0.007066168 -0.01200482 -0.001511353) (-0.007570663 -0.01000567 -0.002014696) (-0.00756611 -0.01200524 -0.001006873) (0.007075211 -0.0120028 -0.002519068) (0.007074615 -0.01300277 -0.002014737) (0.007065964 -0.0110026 -0.002014104) (0.00706068 -0.01200219 -0.001510215) (0.007566937 -0.01000311 -0.00201377) (0.007549363 -0.01200169 -0.001006633) (-0.008080454 -0.006002425 -0.00150882) (-0.007568621 -0.006002482 -0.00201177) (-0.008081771 -0.009004181 -0.001004728) (-0.008607901 -0.008003874 -0.001003997) (-0.008090805 -0.007002566 -0.001005137) (-0.007574593 -0.008003204 -0.0010051) (0.008070482 -0.006002912 -0.001505908) (0.007556636 -0.006002415 -0.002009439) (0.008076019 -0.007003401 -0.001002717) (0.007556496 -0.00800264 -0.001003659) (-0.008062997 -0.002000749 -0.002521548) (-0.008565184 -0.002001907 -0.002017419) (-0.008041421 -0.002001525 -0.001511272) (-0.007549837 -0.002000853 -0.002015463) (-0.008067327 -0.005001079 -0.001005772) (-0.008543999 -0.004001309 -0.001006539) (-0.008033754 -0.003001481 -0.001006742) (0.008073271 -0.002000777 -0.002518776) (0.008588189 -0.002000144 -0.002011976) (0.008062002 -0.002000982 -0.001509712) (0.007559683 -0.002000821 -0.00201369) (0.008085471 -0.005003338 -0.001004032) (0.008588008 -0.004003657 -0.001004992) (0.008056275 -0.003001904 -0.001005314) (-0.008057474 0.002001145 -0.002519041) (-0.008557364 0.002000726 -0.002014765) (-0.00803384 0.002001533 -0.001512736) (-0.007543899 0.002000976 -0.002015199) (-0.008015377 -0.001000028 -0.001006966) (-0.008502518 6.026079e-07 -0.001005842) (-0.008012373 0.001000872 -0.00100806) (0.008061708 0.002000767 -0.00251772) (0.008568716 0.002001298 -0.002016787) (0.008039846 0.002001545 -0.001509803) (0.007548147 0.002000813 -0.002013503) (0.008031909 -0.001000739 -0.001006507) (0.008514399 -4.569698e-07 -0.0010055) (0.008019908 0.00100036 -0.001006113) (-0.008072922 0.00600133 -0.001509612) (-0.007556777 0.006001093 -0.002013402) (-0.008025541 0.003001802 -0.001010776) (-0.008536657 0.004001734 -0.001012476) (-0.008061948 0.005000702 -0.001008131) (0.008069802 0.006000515 -0.001510499) (0.007557623 0.006002069 -0.002013387) (0.008025383 0.003001614 -0.001005662) (0.008529367 0.004000997 -0.001005892) (0.008045906 0.004999558 -0.001006843) (-0.007568097 0.0100027 -0.002015783) (-0.008087526 0.007001254 -0.001005639) (-0.008603977 0.008002162 -0.001003775) (-0.008077279 0.009001737 -0.001004836) (-0.007570747 0.008001282 -0.001005535) (0.007578345 0.01000569 -0.002016852) (0.008078767 0.006999744 -0.001006489) (0.008611934 0.007999287 -0.001005296) (0.008090531 0.009002466 -0.001005534) (0.007573115 0.008001479 -0.001005885) (-0.007072862 0.01200457 -0.002523448) (-0.007068527 0.01300397 -0.00201812) (-0.007066273 0.01100335 -0.002016704) (-0.007063298 0.01200348 -0.001513122) (-0.00757465 0.01400364 -0.002018564) (-0.007561375 0.01200377 -0.001009953) (-0.006057573 0.0140044 -0.002521442) (-0.006561741 0.01400415 -0.002018801) (0.007091912 0.01200526 -0.00252722) (0.007092105 0.01300684 -0.002023485) (0.007078984 0.01100513 -0.002018561) (0.007078186 0.01200587 -0.001515304) (0.006078699 0.01400595 -0.002528163) (0.006583376 0.01400667 -0.002025016) (0.007607411 0.01400905 -0.002026746) (0.007572814 0.01200573 -0.001009973) (-0.007074842 0.01600608 -0.002521722) (-0.007070794 0.01500414 -0.002019016) (-0.00707408 0.01700639 -0.002018706) (-0.007067951 0.01600463 -0.001514796) (-0.007564439 0.01600479 -0.001010377) (-0.00606501 0.01800809 -0.002521114) (-0.006569358 0.01800819 -0.002018309) (0.007092005 0.0160093 -0.002530451) (0.007090763 0.01500838 -0.002024485) (0.007081942 0.01700849 -0.002020015) (0.007080498 0.01600855 -0.001515518) (0.006079372 0.01800857 -0.002527343) (0.00657964 0.01800816 -0.002019632) (0.006072768 0.01800697 -0.001513655) (0.007577842 0.01600943 -0.001009) (-0.0060716 0.02200659 -0.002521459) (-0.006578237 0.02200937 -0.002017958) (-0.00608031 0.0220104 -0.001513783) (-0.005569458 0.02200804 -0.002016735) (-0.006590425 0.02001117 -0.001010503) (-0.006082052 0.02101027 -0.00100969) (0.006082702 0.02200824 -0.002533371) (0.006575287 0.02200753 -0.002022329) (0.00607996 0.02200831 -0.001516453) (0.00557466 0.02200816 -0.002023614) (0.006073506 0.0190066 -0.001008822) (0.006578594 0.02000665 -0.001008062) (0.006078867 0.0210072 -0.001009174) (-0.005069709 0.02400901 -0.00252135) (-0.005076616 0.02501252 -0.002018873) (-0.005066352 0.0230083 -0.00201632) (-0.005071692 0.02401074 -0.001512875) (-0.005586194 0.02601619 -0.002020265) (-0.006082134 0.0230116 -0.001009686) (-0.006577958 0.02401253 -0.001008657) (-0.006082909 0.02501396 -0.001008221) (-0.005577568 0.02401197 -0.001008986) (-0.004065331 0.02601428 -0.002530196) (-0.004571972 0.02601514 -0.002024823) (0.005075266 0.02401054 -0.00252887) (0.005078693 0.02501218 -0.002023257) (0.00507126 0.02300884 -0.002022696) (0.005075185 0.02401072 -0.001516516) (0.004064465 0.02601481 -0.002536345) (0.004570613 0.02601419 -0.002029029) (0.005588926 0.02601398 -0.002023196) (0.006088865 0.02301087 -0.00101086) (0.006599815 0.02401493 -0.001009026) (0.006095705 0.02501585 -0.001010401) (0.00558482 0.02401225 -0.001010856) (-0.00508179 0.02701857 -0.002023568) (-0.005079765 0.02801898 -0.001516566) (-0.005583855 0.02801919 -0.00100818) (-0.004071024 0.03001954 -0.002535228) (-0.004571952 0.03001814 -0.002023818) (-0.004067963 0.03001793 -0.001519536) (-0.003562409 0.03001871 -0.002028255) (-0.004573483 0.02801742 -0.001011672) (-0.004066463 0.02901633 -0.001012243) (0.005077471 0.02701497 -0.002024893) (0.005070502 0.02801422 -0.001515513) (0.004074629 0.03002706 -0.00255712) (0.004565455 0.0300176 -0.002032885) (0.004063095 0.03001603 -0.001527094) (0.003565449 0.03002284 -0.002046275) (0.004566195 0.02801331 -0.001011296) (0.004060862 0.02901264 -0.001013732) (0.005571868 0.02801489 -0.001005615) (-0.003056299 0.03202352 -0.002538583) (-0.003067675 0.03302735 -0.002036168) (-0.003062617 0.03202209 -0.001524387) (-0.003058315 0.03102015 -0.002029886) (-0.004065443 0.03101747 -0.001013238) (-0.003562143 0.03201925 -0.001015164) (-0.002047481 0.03404068 -0.002564115) (-0.002561642 0.03403725 -0.00204603) (-0.001538495 0.03404438 -0.002057717) (-0.002056683 0.03404069 -0.001535462) (2.320676e-06 0.03404203 -0.002566885) (-0.0005125361 0.03404363 -0.002058869) (0.0005150559 0.03404511 -0.002065053) (0.003067865 0.03202979 -0.002561221) (0.003067424 0.03302578 -0.002050114) (0.003059367 0.0320197 -0.001536048) (0.003062732 0.03102391 -0.002048402) (0.002048467 0.03403597 -0.002569774) (0.00153929 0.03404122 -0.002064505) (0.002559522 0.03403007 -0.002051313) (0.002052303 0.03403356 -0.0015392) (0.004058929 0.03101143 -0.001016487) (0.003553627 0.03201303 -0.001020769) (-0.001027357 0.03505149 -0.00206165) (-0.001034761 0.03606391 -0.001550701) (-0.002063846 0.03504661 -0.001020143) (-0.00155465 0.0360593 -0.001027701) (0.001028936 0.03505126 -0.00207057) (0.001033567 0.03606427 -0.001548236) (-0.0005228108 0.03606282 -0.001036014) (0.0005186309 0.0360643 -0.001034061) (-5.869484e-06 0.03706697 -0.001038169) (0.002058156 0.03504347 -0.001026028) (0.001558699 0.03607465 -0.001029505) (-0.003071726 -0.03503035 -3.175958e-06) (-0.00355401 -0.03401773 1.549964e-08) (-0.001037029 -0.03604449 -0.0005121886) (-0.001038568 -0.03704738 7.507509e-06) (-0.001037654 -0.03605495 0.0005239158) (-0.002060811 -0.03403517 -0.0005175338) (-0.002564412 -0.03403265 -3.464087e-06) (-0.002060394 -0.03403666 0.0005103606) (-0.001552791 -0.03606095 0.001036571) (-0.002065793 -0.03504445 0.001024709) (0.001044584 -0.0360668 -0.0005123091) (0.001054294 -0.03708184 9.808182e-06) (0.001045523 -0.03607048 0.0005271874) (-2.632235e-06 -0.03706502 0.001055049) (-0.0005200689 -0.03606312 0.001049016) (0.0005201196 -0.03606169 0.001045889) (0.003042268 -0.03502667 5.852111e-06) (0.002050137 -0.03403926 -0.0005093431) (0.002547198 -0.03403273 4.16356e-06) (0.002047325 -0.03403748 0.0005158877) (0.001556794 -0.03607432 0.001042788) (0.002052978 -0.03504533 0.001029662) (0.003529083 -0.03401207 4.961496e-06) (-0.003056951 -0.03202002 -0.0005146669) (-0.003057405 -0.03302014 -2.238644e-06) (-0.003057018 -0.03201726 0.0005087478) (-0.004066375 -0.03001273 -0.0005082863) (-0.004570723 -0.03001065 -3.196044e-07) (-0.004069099 -0.03001036 0.0005060051) (-0.003563975 -0.03201505 0.001019198) (-0.004069845 -0.03101125 0.001015886) (0.003045222 -0.03201467 -0.0005055536) (0.003042525 -0.03301636 3.829742e-06) (0.003049188 -0.03201555 0.0005118262) (0.004064871 -0.03000866 -0.000503953) (0.00457203 -0.03000993 4.735832e-06) (0.004071893 -0.03001221 0.0005113251) (0.003562646 -0.0320174 0.001019163) (0.004076179 -0.03101723 0.001019348) (-0.005084401 -0.02801379 -0.0005035867) (-0.005084994 -0.02901301 6.523317e-07) (-0.005084471 -0.02801195 0.0005045073) (-0.005086858 -0.02701291 1.061078e-06) (-0.005589083 -0.02601317 1.390163e-06) (-0.005577769 -0.02801143 0.001006442) (-0.004070479 -0.02901037 0.001012042) (-0.004574201 -0.02801056 0.00101017) (0.00508081 -0.02801424 -0.0005057846) (0.005078765 -0.02901465 2.561911e-06) (0.005084436 -0.02801613 0.0005081542) (0.005087943 -0.02701688 4.326071e-07) (0.00407257 -0.02901376 0.001015875) (0.004577597 -0.02801443 0.001015278) (0.005593819 -0.02601819 -3.7548e-07) (0.005585315 -0.02801751 0.001015537) (-0.006091483 -0.02201561 -0.000504909) (-0.00659958 -0.02201615 -1.200469e-06) (-0.006085119 -0.02201328 0.0005022469) (-0.006084359 -0.02501415 0.001007433) (-0.006570985 -0.02401292 0.001005061) (-0.006077717 -0.02301249 0.00100624) (-0.005581768 -0.02401295 0.001009304) (0.006077922 -0.02200894 -0.0005057771) (0.006584291 -0.02201011 -1.756273e-06) (0.006080306 -0.02200989 0.0005038951) (0.006077652 -0.02501321 0.001010799) (0.006572105 -0.02400925 0.00101023) (0.006080199 -0.0230104 0.001010907) (0.005575551 -0.02401122 0.001011415) (-0.007085981 -0.01900995 5.506122e-07) (-0.007561639 -0.0180061 1.267527e-06) (-0.006076847 -0.02101153 0.00100522) (-0.006580695 -0.0200119 0.001004969) (0.007079052 -0.01900738 -2.785432e-06) (0.006078505 -0.02100934 0.001007703) (0.006581594 -0.02000913 0.001005697) (0.007560424 -0.01800496 -2.507864e-06) (-0.007062909 -0.01600379 -0.0005033662) (-0.007060572 -0.01700459 2.834596e-07) (-0.007060923 -0.0160032 0.0005022813) (-0.007064328 -0.01500334 -8.574829e-07) (-0.007570794 -0.01400386 -7.792342e-07) (-0.007558448 -0.01600183 0.001004827) (0.007059936 -0.01600303 -0.0005047732) (0.007060572 -0.01700359 -1.916319e-06) (0.007063533 -0.01600214 0.0005020156) (0.007059653 -0.01500182 -1.181332e-06) (0.007555169 -0.01400088 -1.159091e-06) (0.00756655 -0.01600126 0.001005639) (-0.008076174 -0.01000328 -0.0005019672) (-0.008591295 -0.01000318 8.316301e-07) (-0.008073868 -0.01000347 0.0005025301) (-0.007566988 -0.0100031 -1.484428e-07) (-0.007558486 -0.01200439 0.001004139) (0.007539193 -0.01000128 3.376254e-07) (0.007550473 -0.01200031 0.001006356) (-0.008080587 -0.006000792 -0.0005027112) (-0.00858099 -0.006000189 -9.39726e-08) (-0.008079881 -0.00600061 0.000502622) (-0.008075315 -0.009003589 0.001004711) (-0.008602572 -0.008003395 0.001004293) (-0.008085585 -0.007002015 0.0010047) (-0.007568767 -0.008002458 0.001004631) (0.008097119 -0.006004021 -0.0005007688) (0.008636912 -0.006006415 2.432281e-06) (0.0080975 -0.006004425 0.0005035316) (0.008076944 -0.007003517 0.001005098) (0.007556779 -0.008002451 0.001005319) (-0.008002621 -0.001999503 -0.000502616) (-0.008480057 -0.001997812 6.985905e-07) (-0.008000147 -0.001997343 0.0005036172) (-0.008064229 -0.004998624 0.001005118) (-0.008542966 -0.003995449 0.001005719) (-0.008028042 -0.002996125 0.001006976) (0.008025941 -0.002001293 -0.0005018513) (0.008502524 -0.002001172 1.831079e-06) (0.008023891 -0.002001469 0.0005048092) (0.008089374 -0.005004017 0.001006631) (0.008597401 -0.004002556 0.001008783) (0.008055353 -0.003002331 0.001008259) (-0.007998836 0.00200087 -0.0005052672) (-0.008478344 0.00200018 -2.070519e-06) (-0.007999473 0.002000364 0.0005014042) (-0.008012629 -0.0009980862 0.001008017) (-0.008501592 8.765943e-07 0.001007158) (-0.00801301 0.001000509 0.001006619) (0.008002017 0.002000458 -0.0005023923) (0.008482365 0.001999864 2.540153e-07) (0.008002002 0.001999942 0.0005025958) (0.008026598 -0.001000851 0.001007627) (0.008509832 1.570553e-08 0.001005764) (0.008018704 0.0009999867 0.001005887) (-0.008082374 0.006000746 -0.0005038713) (-0.00860182 0.006000211 -1.908421e-06) (-0.008083527 0.006000385 0.0005012612) (-0.008026986 0.003000864 0.001004706) (-0.008538763 0.004001663 0.001003087) (-0.008061622 0.005002003 0.001005644) (0.008051897 0.005998652 -0.0005025556) (0.008534508 0.005998016 2.601467e-06) (0.008058029 0.005999477 0.0005058844) (0.008027815 0.003000179 0.001005526) (0.008533654 0.003999942 0.001005467) (0.008052344 0.004999839 0.001006612) (-0.008074015 0.01000166 -0.0005031536) (-0.008589833 0.01000148 -2.831885e-07) (-0.008073385 0.01000095 0.000501445) (-0.007565927 0.01000127 -1.184202e-06) (-0.008087863 0.007001228 0.001005173) (-0.008606165 0.008001949 0.001005352) (-0.008077404 0.009000961 0.001004946) (-0.007570568 0.008000938 0.001005287) (0.008086975 0.0100024 -0.0005017074) (0.008610269 0.01000153 2.290968e-06) (0.008087563 0.01000165 0.000506646) (0.007574821 0.0100021 1.979348e-06) (0.008086531 0.00700005 0.001010307) (0.008622306 0.008001458 0.001015895) (0.00809379 0.009001261 0.001011357) (0.007576659 0.008000583 0.001009298) (-0.007568686 0.0140057 -4.801477e-06) (-0.007558729 0.01200034 0.001002738) (0.007568808 0.01400693 5.990286e-07) (0.007570274 0.01200355 0.001012401) (-0.007063293 0.01600545 -0.0005061872) (-0.00706429 0.01700605 -2.177845e-06) (-0.007063035 0.01600427 0.0005006477) (-0.007064245 0.01500493 -3.306994e-06) (-0.00757045 0.0180092 -1.806201e-06) (-0.007560315 0.01600316 0.001003368) (0.007073443 0.0160079 -0.0005050284) (0.007067087 0.01700666 -1.308447e-06) (0.007067198 0.01600562 0.0005028243) (0.007070543 0.01500674 -4.719644e-07) (0.006067416 0.01800593 -0.0005044821) (0.00656915 0.01800606 -1.98331e-06) (0.007563879 0.01800663 -1.749334e-06) (0.007567199 0.01600499 0.001005933) (-0.007091417 0.01901134 -1.774005e-06) (-0.006086536 0.02201111 -0.0005056325) (-0.006597859 0.02201284 -2.210871e-06) (-0.006085571 0.02200964 0.0005022179) (-0.006582968 0.02000787 0.001006465) (-0.006078737 0.02100788 0.00100662) (0.007075352 0.01900606 -9.60065e-07) (0.006087763 0.02200916 -0.0005052074) (0.006585009 0.02200911 -5.90761e-07) (0.006087152 0.0220089 0.0005033892) (0.006070732 0.01900483 0.001009905) (0.006576785 0.0200052 0.001008281) (0.006080656 0.02100662 0.001008007) (-0.005590078 0.02601686 -1.111398e-07) (-0.006081632 0.02300867 0.00100711) (-0.006576542 0.02400701 0.001005566) (-0.006085936 0.02501077 0.001008658) (-0.00558004 0.0240104 0.001010315) (0.005605989 0.02601855 1.685974e-06) (0.006091451 0.02301077 0.001007679) (0.006601348 0.02401342 0.00100563) (0.00610188 0.02501601 0.001010511) (0.005589057 0.0240127 0.001010088) (-0.005085474 0.02801983 -0.0005053335) (-0.005083591 0.02902006 -9.153593e-07) (-0.005082399 0.02801801 0.0005045366) (-0.005087011 0.02701816 -1.223191e-07) (-0.005577009 0.02801577 0.001008524) (-0.004064913 0.03001618 -0.0005062561) (-0.004568365 0.03001629 -3.722678e-07) (-0.004063767 0.03001572 0.0005056574) (-0.004573104 0.028016 0.001011291) (-0.004065723 0.02901571 0.001011358) (0.005077683 0.02801471 -0.0005023909) (0.005077252 0.02901401 3.63006e-06) (0.005087776 0.02801598 0.0005077724) (0.005090833 0.02701634 2.393861e-06) (0.00406194 0.03001125 -0.0005049296) (0.004570106 0.03001246 3.944658e-06) (0.004073014 0.03001514 0.0005103285) (0.004580815 0.02801652 0.001013648) (0.004075604 0.02901686 0.001015152) (0.005591111 0.02801663 0.001011871) (-0.003055823 0.03202033 -0.0005067898) (-0.003056709 0.03302307 2.961942e-06) (-0.003054638 0.03202174 0.0005104833) (-0.003555175 0.03402196 3.693214e-06) (-0.004063631 0.03101792 0.00101309) (-0.003559755 0.03202207 0.001017051) (-0.002060526 0.034039 -0.0005070537) (-0.002564725 0.03403635 5.213306e-06) (-0.002059915 0.03403966 0.000516866) (0.003047138 0.03201421 -0.0005093365) (0.003044356 0.03301574 2.691776e-06) (0.003052567 0.03201774 0.0005138559) (0.002049967 0.03403609 -0.000511836) (0.002549133 0.03403128 2.425994e-06) (0.002052137 0.03403899 0.000517764) (0.003531369 0.03401067 3.068032e-06) (0.004078555 0.03101953 0.00101946) (0.003567071 0.03202024 0.001023077) (-0.003072956 0.03503676 6.414448e-06) (-0.001043757 0.03605525 -0.0005127997) (-0.00105132 0.0370504 8.838415e-06) (-0.001043458 0.03605502 0.0005301951) (-0.002063348 0.03504667 0.001029504) (0.00104537 0.03607292 -0.0005160068) (0.001056286 0.03707994 5.887758e-07) (0.001044879 0.03606689 0.0005245433) (-0.0005237989 0.03606347 0.001054732) (0.0005184089 0.03606061 0.001048192) (-8.397246e-06 0.0370615 0.001060196) (0.00304367 0.03502541 1.926087e-06) (0.002062982 0.03504915 0.001036124) (0.001558104 0.03606834 0.001041401) (-0.001035073 -0.03606651 0.00156127) (-0.001029142 -0.03504998 0.002071895) (-0.002061 -0.03404011 0.00153864) (-0.002565139 -0.03403799 0.002047405) (-0.001542555 -0.03404341 0.002065058) (-0.002052849 -0.03404189 0.002568327) (0.001034105 -0.03606238 0.001555885) (0.00102466 -0.0350444 0.002061931) (-0.0005143035 -0.03404203 0.002064666) (0.0005109115 -0.03403935 0.00205984) (-8.549558e-07 -0.03403816 0.002567073) (5.086991e-07 -0.03503631 0.003071402) (0.002047077 -0.03403209 0.001534493) (0.001532109 -0.03403365 0.002053141) (0.00255011 -0.03402531 0.00203893) (0.002036448 -0.03402641 0.002552867) (-0.00306356 -0.03201927 0.001529) (-0.003067059 -0.03302636 0.002041418) (-0.003055019 -0.03202193 0.002543432) (-0.003058398 -0.03101708 0.002034158) (-0.004072593 -0.03001222 0.001521591) (-0.004574427 -0.03001273 0.002025099) (-0.004073187 -0.03001498 0.002537271) (-0.003563879 -0.03001464 0.00203177) (-0.002043262 -0.03303338 0.003077002) (-0.002542059 -0.03202433 0.003059153) (-0.001529188 -0.03202734 0.003075612) (-0.002034724 -0.03102287 0.003067765) (-2.104243e-07 -0.03302616 0.003068571) (-0.0005099036 -0.03202487 0.003068777) (0.0005089191 -0.03202246 0.003065862) (0.003059583 -0.03201944 0.001525137) (0.003056125 -0.03302109 0.002031604) (0.003050544 -0.03201798 0.002534988) (0.003057373 -0.03101767 0.002030391) (0.002030846 -0.03302046 0.003060078) (0.00152434 -0.03201947 0.003064632) (0.002534711 -0.03201576 0.003049198) (0.002029635 -0.0310158 0.003058618) (0.004076218 -0.03001746 0.001523449) (0.004578738 -0.03001793 0.002027532) (0.004075717 -0.03001842 0.002536152) (0.003565726 -0.03001767 0.002030576) (-0.0050784 -0.02801115 0.001513193) (-0.005083202 -0.02701311 0.002021413) (-0.005587069 -0.02601332 0.002021265) (-0.004576055 -0.02601299 0.002026634) (-0.00407188 -0.02601348 0.0025347) (-0.004071168 -0.0290131 0.00304399) (-0.004578439 -0.0280144 0.003038251) (-0.004073425 -0.02701464 0.003043613) (-0.003561381 -0.02801447 0.00305269) (0.005081344 -0.02801502 0.001521267) (0.005076287 -0.02701306 0.002025475) (0.004570386 -0.02601163 0.002028669) (0.0040655 -0.02601118 0.00253623) (0.004072441 -0.02901588 0.00304908) (0.00457556 -0.02801346 0.003045719) (0.004069755 -0.02701274 0.003048811) (0.003562079 -0.02801486 0.003057889) (0.005580801 -0.02601308 0.002023183) (-0.00508145 -0.02501353 0.002023623) (-0.005078205 -0.02401404 0.002531767) (-0.005076909 -0.02401231 0.001515976) (-0.005068181 -0.02301131 0.002022801) (-0.006072749 -0.0220113 0.001509461) (-0.006562928 -0.02200944 0.002011089) (-0.006065645 -0.02201031 0.002520483) (-0.005567542 -0.02201077 0.002020004) (-0.005585299 -0.02401641 0.003041137) (-0.004066846 -0.02501365 0.003045505) (-0.004571689 -0.024014 0.003044553) (0.00507726 -0.02501156 0.002023468) (0.005078477 -0.0240114 0.002529196) (0.005072269 -0.02401049 0.001516855) (0.005072441 -0.02301014 0.002022167) (0.004062612 -0.02501028 0.003045259) (0.00456846 -0.02401059 0.003041625) (0.006082163 -0.02201055 0.001514954) (0.006586168 -0.02201219 0.002019488) (0.00608096 -0.02201274 0.002527042) (0.005576089 -0.02201066 0.002021735) (0.005586734 -0.02401379 0.003034142) (-0.006566293 -0.01800403 0.002013686) (-0.00606402 -0.01800415 0.002517627) (-0.006064344 -0.02100827 0.003024308) (-0.006566092 -0.0200073 0.003022835) (-0.006064143 -0.0190054 0.003024403) (-0.005561003 -0.02000665 0.003027814) (0.006573701 -0.01800674 0.002019038) (0.006070858 -0.01800756 0.0025253) (0.006081334 -0.0210136 0.003034956) (0.006580023 -0.02001623 0.003032809) (0.00607443 -0.01901042 0.00303487) (0.005571926 -0.02001097 0.003037894) (-0.007058935 -0.01600211 0.001507414) (-0.00706637 -0.01700266 0.002011716) (-0.007057608 -0.01500226 0.002009489) (-0.007061739 -0.01600261 0.002512403) (-0.007561962 -0.01400286 0.002008922) (-0.006553314 -0.0140026 0.002011104) (-0.00604875 -0.01400272 0.002514103) (-0.006059861 -0.01700347 0.003020809) (-0.006558902 -0.01600317 0.003018077) (-0.006050374 -0.01500313 0.003018581) (0.007069781 -0.01600182 0.001511747) (0.007078402 -0.01700348 0.002017767) (0.007072649 -0.01500293 0.002019192) (0.007080701 -0.01600533 0.002526339) (0.00656476 -0.01400286 0.002020358) (0.006060386 -0.01400323 0.002524) (0.006071408 -0.01700635 0.00303255) (0.006576643 -0.01600587 0.003033373) (0.00606577 -0.01500426 0.003031334) (0.007581817 -0.01400231 0.002018796) (-0.007058759 -0.01300369 0.002009845) (-0.007057539 -0.01200432 0.002514298) (-0.007057 -0.01200412 0.001507056) (-0.007055817 -0.01100448 0.002011013) (-0.007557686 -0.01000548 0.002011656) (-0.007559121 -0.01200511 0.003017501) (-0.006046645 -0.01300333 0.00302048) (-0.006552072 -0.01200388 0.003021358) (0.007072466 -0.01300195 0.002017758) (0.007072885 -0.01200242 0.002522833) (0.007059972 -0.01200115 0.001511286) (0.00706252 -0.01100179 0.00201583) (0.006059626 -0.01300309 0.003030161) (0.006564468 -0.01200302 0.003030241) (0.007560423 -0.01000209 0.002015069) (0.007581644 -0.01200314 0.003029333) (-0.008073178 -0.006000385 0.001506971) (-0.00755586 -0.006000418 0.002010878) (-0.00756324 -0.008002621 0.003023212) (0.008074451 -0.006003768 0.001508699) (0.007559933 -0.00600316 0.002012736) (0.007567834 -0.008002951 0.003020152) (-0.008035792 -0.001997058 0.001512154) (-0.008561485 -0.001997912 0.002019613) (-0.008061632 -0.001999406 0.002520727) (-0.007545968 -0.001998811 0.002015444) (-0.007550856 -0.003999859 0.00301995) (0.008052909 -0.002001969 0.001511583) (0.008571198 -0.002002473 0.002012994) (0.008060333 -0.002002016 0.002517565) (0.007552169 -0.002001734 0.002013631) (0.007553626 -0.004002675 0.003020659) (-0.008036393 0.002000567 0.001509401) (-0.008563004 0.001999992 0.002013444) (-0.008061127 0.002000504 0.00251812) (-0.00754587 0.002000561 0.002013793) (-0.007571399 -3.309312e-08 0.003027581) (0.008041677 0.002000393 0.001508467) (0.008571896 0.00200098 0.002011919) (0.008066145 0.001999987 0.002515535) (0.007550072 0.001999918 0.002011601) (0.00756632 -1.317648e-06 0.003024289) (-0.008072963 0.006002219 0.001508882) (-0.007556385 0.006002353 0.002012827) (-0.007549781 0.004001735 0.003020032) (0.008077077 0.005999877 0.001509623) (0.007562042 0.005999643 0.002010394) (0.007556027 0.003999695 0.003015023) (-0.00756411 0.009999974 0.002014367) (-0.007563041 0.00800199 0.003028194) (0.007576605 0.0100009 0.002019715) (0.007573154 0.007999849 0.003023748) (-0.00706424 0.01299903 0.002011146) (-0.007067343 0.01199862 0.002518581) (-0.007059385 0.0119996 0.001507384) (-0.007061515 0.01099938 0.00201352) (-0.007565945 0.01399915 0.002008301) (-0.007571649 0.01199801 0.003024747) (0.007077834 0.01300376 0.002020434) (0.007077577 0.01200263 0.002526413) (0.007071917 0.01200297 0.001515887) (0.007072518 0.01100167 0.002020075) (0.006566474 0.01400409 0.002019005) (0.006062017 0.01400417 0.002522159) (0.006566798 0.01200323 0.003031673) (0.006060407 0.01300375 0.00302931) (0.007585729 0.01400526 0.0020197) (0.007582735 0.01200265 0.003033774) (-0.00705898 0.01600282 0.001507207) (-0.007058726 0.01500142 0.002010332) (-0.007062351 0.01700431 0.002012973) (-0.007058039 0.01600366 0.002515471) (-0.006560509 0.0180044 0.002015395) (-0.0060574 0.01800435 0.002519592) (-0.006051484 0.01500192 0.003021368) (-0.00655388 0.01600355 0.003021608) (-0.006052936 0.01700408 0.00302296) (0.007070529 0.0160048 0.001511318) (0.007072823 0.01500442 0.002017101) (0.00707908 0.01700563 0.002017401) (0.007077564 0.01600491 0.002521409) (0.006071186 0.01800498 0.001513714) (0.006580298 0.01800586 0.002019929) (0.006080278 0.01800727 0.002527438) (0.006064602 0.01500537 0.003027722) (0.006573574 0.01600659 0.003028347) (0.006075492 0.0170081 0.00303211) (-0.006076583 0.02200781 0.001511927) (-0.006567358 0.0220069 0.002014543) (-0.006068629 0.02200838 0.002525597) (-0.005569232 0.02200854 0.002023488) (-0.006058948 0.01900441 0.003026763) (-0.006563075 0.02000432 0.003026667) (-0.006064882 0.02100607 0.003029567) (-0.005558207 0.02000479 0.003030232) (0.006083639 0.02200837 0.001512334) (0.00658215 0.02200814 0.002015527) (0.006086842 0.02200956 0.002525083) (0.005576714 0.02200889 0.00201915) (0.006082164 0.01900967 0.003036072) (0.006581801 0.02001063 0.003031691) (0.006085805 0.02101072 0.003033445) (0.005573866 0.02000941 0.00303639) (-0.005081974 0.02501274 0.00202829) (-0.005077152 0.02401194 0.002534757) (-0.005076263 0.02401073 0.001518435) (-0.005069211 0.02300949 0.00202595) (-0.005591204 0.02601483 0.002028661) (-0.005580498 0.02401307 0.003041254) (-0.00457562 0.02601327 0.002032254) (-0.004068639 0.02601239 0.002538368) (0.00508115 0.02501355 0.002024494) (0.005075289 0.02401195 0.002529142) (0.005078633 0.02401156 0.001515906) (0.005072656 0.02300975 0.002020362) (0.004572972 0.02601548 0.002028535) (0.004065988 0.02601605 0.002534753) (0.004564108 0.02401367 0.003039316) (0.004060211 0.0250149 0.003041668) (0.005590604 0.02601567 0.00202648) (0.005576816 0.02401225 0.003035295) (-0.005077223 0.02801576 0.001517245) (-0.005083275 0.02701515 0.002029181) (-0.004067248 0.03001876 0.001517921) (-0.004572702 0.03001962 0.002021078) (-0.004065723 0.03001842 0.00252987) (-0.003559468 0.03001943 0.002026031) (-0.004070545 0.02701263 0.003047013) (-0.004574407 0.02801356 0.003041577) (-0.004065566 0.02901426 0.00303933) (-0.003559871 0.02801311 0.003049407) (0.005086016 0.02801784 0.001517717) (0.005080796 0.02701604 0.002024637) (0.004079964 0.03002211 0.001524459) (0.004584381 0.03002536 0.002027647) (0.004083163 0.03002731 0.002542005) (0.00357158 0.03002463 0.002036131) (0.004067999 0.02701898 0.003044699) (0.004573565 0.0280204 0.003042206) (0.004077619 0.02902543 0.00305122) (0.003564577 0.02802262 0.003056695) (-0.003060285 0.03202616 0.001524674) (-0.003064866 0.03303388 0.002033307) (-0.003052136 0.03202467 0.002534357) (-0.003055087 0.03102171 0.00202797) (-0.002057646 0.03404213 0.001538946) (-0.002561787 0.03404053 0.00204246) (-0.001540135 0.03404613 0.002060503) (-0.00204825 0.03404129 0.002559168) (-0.002539102 0.03202273 0.003049712) (-0.001525452 0.03202795 0.003066636) (-0.002038161 0.03303176 0.003063738) (-0.002030887 0.03102125 0.003057984) (-0.000515893 0.03404675 0.002065378) (0.000512963 0.0340474 0.002067624) (-1.978998e-06 0.03404382 0.00257079) (-0.0005079114 0.03202793 0.003067607) (0.0005126482 0.03202959 0.00307315) (1.248495e-06 0.03303142 0.003071967) (0.003064826 0.03202524 0.001534097) (0.003064089 0.03303227 0.002049987) (0.003058219 0.03202929 0.002551239) (0.003063614 0.03102544 0.002039609) (0.002059193 0.03404423 0.001551302) (0.001542702 0.03405013 0.002074357) (0.002562736 0.03404274 0.00206449) (0.002050714 0.03404833 0.002586181) (0.001532009 0.03203328 0.003082543) (0.002544519 0.03203108 0.0030709) (0.002042895 0.03304044 0.003089745) (0.002036776 0.03102768 0.00307407) (-0.001030517 0.03505612 0.002070951) (0.001036825 0.03606595 0.001562723) (0.001029918 0.03505661 0.002074532) (-3.793021e-06 0.0350408 0.003074909) (6.152644e-07 -0.03402564 0.003571154) (-0.001018375 -0.03202503 0.003576297) (-0.001016309 -0.03102345 0.004080014) (-0.002542344 -0.03002254 0.004082968) (-0.001524257 -0.03002378 0.004084967) (-0.00203288 -0.03002649 0.004594624) (-0.002033584 -0.03002184 0.003573825) (0.001017679 -0.03202026 0.003571769) (0.001016501 -0.03101818 0.004076504) (-0.0005070593 -0.03002201 0.00408032) (0.0005090542 -0.03001938 0.004078945) (1.580171e-06 -0.03002269 0.004583842) (0.001523438 -0.03001678 0.004076827) (0.00253704 -0.03001622 0.004074681) (0.002028758 -0.03001595 0.004576603) (0.00203019 -0.03001564 0.003566542) (-0.003050201 -0.02901958 0.004082559) (-0.003047891 -0.02701811 0.004081002) (-0.003048691 -0.02802096 0.004593603) (-0.003053345 -0.02801636 0.003566778) (-0.004069653 -0.0260151 0.003553531) (-0.004572546 -0.02601543 0.004059071) (-0.003554349 -0.02601615 0.004073) (-0.004056651 -0.02601496 0.004569401) (-0.001014227 -0.02902114 0.00408229) (-0.001012976 -0.02802145 0.004589171) (-0.002538345 -0.02601746 0.004079156) (-0.002032649 -0.02601927 0.004587213) (-0.001518999 -0.02802184 0.005093184) (-0.002029588 -0.02702163 0.005094666) (0.001016549 -0.0290173 0.004079448) (0.001017766 -0.02801848 0.004588655) (2.819498e-06 -0.0290242 0.005097562) (-0.0005040079 -0.02802216 0.005097347) (0.0005107551 -0.02802135 0.005102122) (2.859865e-06 -0.02702127 0.005104439) (0.003047757 -0.02901625 0.004079477) (0.003050635 -0.02701616 0.00408416) (0.003047988 -0.02801715 0.004586889) (0.003053801 -0.02801535 0.003569474) (0.002539755 -0.02601541 0.004078779) (0.002034844 -0.0260175 0.004585944) (0.001526654 -0.02801995 0.005096564) (0.002034899 -0.02702095 0.005097671) (0.004066754 -0.02601173 0.003558023) (0.003554071 -0.02601345 0.004075303) (0.004563731 -0.02600939 0.004059589) (0.004056293 -0.0260118 0.004575442) (-0.005078567 -0.02401507 0.003548695) (-0.005072511 -0.02301185 0.004052571) (-0.005577336 -0.02200962 0.004042655) (-0.004558975 -0.02200867 0.004053816) (-0.00405148 -0.02200811 0.004562744) (-0.003548237 -0.02401527 0.005083727) (-0.004051894 -0.02301028 0.005077312) (-0.002027302 -0.02501838 0.005089721) (-0.002533508 -0.02401701 0.005087706) (-0.001517327 -0.02401532 0.00508076) (-0.002022732 -0.02301397 0.005079542) (0.00304547 -0.02501276 0.004071537) (0.003042572 -0.02401281 0.004573731) (0.002029408 -0.02501756 0.005089549) (0.002533881 -0.02401473 0.005083177) (0.001519199 -0.02401398 0.005080476) (0.002025508 -0.02301114 0.005072335) (0.005075253 -0.02401171 0.003542674) (0.005066696 -0.0230105 0.004048701) (0.004557739 -0.02200983 0.00405322) (0.004050097 -0.02200903 0.004559128) (0.003543378 -0.02401274 0.005076126) (0.004044916 -0.02300916 0.005066865) (0.005576733 -0.02201408 0.004050274) (-0.005061493 -0.02100738 0.004044951) (-0.005053292 -0.02000575 0.004548767) (-0.005056668 -0.0200062 0.003533427) (-0.005053704 -0.01900533 0.004039361) (-0.00606199 -0.01800451 0.003529493) (-0.006555943 -0.01800388 0.004031569) (-0.00606278 -0.01800718 0.004544827) (-0.005558534 -0.01800545 0.004039557) (-0.004044519 -0.02100618 0.005068423) (-0.004545422 -0.02000475 0.005060324) (-0.003533157 -0.02000555 0.00506406) (-0.004037904 -0.0190043 0.005059796) (0.00506805 -0.02101153 0.004052306) (0.005065894 -0.02000993 0.004559707) (0.005067618 -0.02000981 0.003543941) (0.005064566 -0.01900731 0.004050141) (0.004047428 -0.02100929 0.005063703) (0.004552207 -0.02000901 0.005059236) (0.003539215 -0.02000794 0.005062916) (0.004044293 -0.01900666 0.005059808) (0.006071857 -0.01800733 0.003541606) (0.006564985 -0.01800487 0.004043359) (0.00607113 -0.01800335 0.004555723) (0.005566682 -0.01800542 0.004049503) (-0.006048325 -0.0140039 0.003524376) (-0.00655066 -0.01400521 0.004030205) (-0.006049842 -0.01400562 0.004537592) (-0.00554506 -0.01400462 0.004033794) (-0.005553498 -0.01600774 0.005049484) (0.006063029 -0.01400378 0.003535839) (0.006568231 -0.01400459 0.004042518) (0.006059161 -0.01400318 0.00454605) (0.005554533 -0.01400282 0.004041252) (0.005558532 -0.01600225 0.005051504) (-0.007056611 -0.01200471 0.003524645) (-0.006559622 -0.01000272 0.00403686) (-0.00605675 -0.01000261 0.004542277) (-0.006050689 -0.01300498 0.005043645) (-0.006560451 -0.01200451 0.005048367) (-0.006061251 -0.0110038 0.0050557) (-0.005550715 -0.01200409 0.005050892) (0.007072956 -0.0120037 0.00353553) (0.006558016 -0.0100019 0.004035572) (0.00605616 -0.01000189 0.004540924) (0.006053966 -0.01300314 0.005049274) (0.006560019 -0.01200416 0.005055736) (0.006060516 -0.0110033 0.005056153) (0.005553547 -0.012003 0.005053929) (-0.007069754 -0.009002499 0.004036492) (-0.007062532 -0.007001026 0.004032313) (-0.007071182 -0.008001179 0.004540719) (-0.007064157 -0.008002072 0.003529263) (-0.007553181 -0.006000448 0.004024442) (-0.006553625 -0.006000923 0.004033136) (-0.006053692 -0.006001175 0.004539206) (-0.006055701 -0.009001987 0.00504597) (-0.006561686 -0.008001255 0.005043794) (-0.006055734 -0.007001289 0.005044975) (0.007064464 -0.009001269 0.0040294) (0.007069509 -0.007001682 0.004031014) (0.007067714 -0.008000655 0.004529356) (0.007065676 -0.008002105 0.00352446) (0.006557082 -0.006001157 0.004030553) (0.006051504 -0.006000937 0.004531961) (0.006055229 -0.009001016 0.005040917) (0.006557043 -0.008000161 0.005032121) (0.006049618 -0.007000868 0.005034214) (0.007585211 -0.006002113 0.004040788) (-0.007053113 -0.005000666 0.00403031) (-0.007063754 -0.003001206 0.00403748) (-0.007060752 -0.004001361 0.004541381) (-0.007053598 -0.004000424 0.003526565) (-0.00758281 -0.002001444 0.004042107) (-0.006562274 -0.002001609 0.004039368) (-0.006058013 -0.002001962 0.004542613) (-0.006058826 -0.005001767 0.005050913) (-0.006566245 -0.004002396 0.005054411) (-0.006061427 -0.003002553 0.005052246) (0.007059161 -0.005001561 0.00403035) (0.007057445 -0.003001633 0.00403046) (0.007055463 -0.004001253 0.004532308) (0.007054701 -0.004002002 0.003525067) (0.006556663 -0.002001295 0.004031675) (0.006054942 -0.002001051 0.004534866) (0.006053522 -0.005001098 0.005039471) (0.006559885 -0.004001067 0.005040807) (0.006059093 -0.003001082 0.005043663) (0.00757027 -0.00200214 0.004035829) (-0.007075533 -0.001001621 0.004040363) (-0.007071541 0.001000256 0.004038548) (-0.007076419 -1.43352e-06 0.004546098) (-0.007071162 -3.486962e-07 0.003532784) (-0.007577697 0.002001282 0.004036808) (-0.006559152 0.002000412 0.004037368) (-0.006055159 0.002000351 0.004541567) (-0.006056314 -0.001002239 0.005046216) (-0.006564414 -1.933109e-06 0.005048023) (-0.006053831 0.0009997712 0.005046021) (0.00706651 -0.001001772 0.004032331) (0.007063951 0.0009990911 0.004028419) (0.007065311 -1.45997e-06 0.004532066) (0.007064167 -1.375473e-06 0.003526564) (0.006557379 0.001999811 0.004030102) (0.006053082 0.002000181 0.004534185) (0.00605616 -0.001000877 0.005038683) (0.006557345 -8.318796e-07 0.005033487) (0.006050693 0.001000042 0.005035173) (0.007575733 0.001999595 0.004027688) (-0.00706105 0.003000896 0.004034048) (-0.007051444 0.005001121 0.004030168) (-0.007058266 0.004000945 0.004538458) (-0.007051987 0.004001227 0.003525726) (-0.007550785 0.006001441 0.004027037) (-0.006552865 0.006001079 0.004034001) (-0.006053325 0.006001123 0.004539665) (-0.006058734 0.003001066 0.005051666) (-0.006564218 0.004001395 0.005051177) (-0.006058492 0.005001432 0.005050526) (0.007064235 0.002999928 0.004028437) (0.007057144 0.004999828 0.00402823) (0.007066359 0.004000386 0.004536083) (0.007057476 0.003999738 0.003521346) (0.006555288 0.006000142 0.004033435) (0.006056998 0.006000659 0.004540777) (0.006058791 0.003001005 0.005046381) (0.006570591 0.004001052 0.005049923) (0.006064394 0.005001087 0.005052061) (0.007553425 0.005999291 0.004025187) (-0.007062217 0.007001318 0.004034746) (-0.007070358 0.00900107 0.00404072) (-0.007069667 0.008000974 0.004542509) (-0.007063735 0.008001417 0.003533176) (-0.00656448 0.01000103 0.004039258) (-0.006062583 0.01000152 0.004543133) (-0.006056223 0.007001327 0.005045995) (-0.006561959 0.008001135 0.005044976) (-0.006059229 0.009001823 0.005046204) (0.007059791 0.006999679 0.004032347) (0.007070526 0.009001555 0.004042757) (0.007069339 0.007999401 0.004543977) (0.007065821 0.008000187 0.003530712) (0.006565835 0.01000277 0.004043694) (0.006062096 0.01000337 0.004546207) (0.006059965 0.007001309 0.005049485) (0.006563663 0.008001019 0.005048195) (0.006058992 0.009002853 0.005049277) (-0.007069498 0.01199975 0.003529377) (-0.006055078 0.01400166 0.003526846) (-0.006563379 0.01400208 0.004032235) (-0.006054039 0.01400198 0.004536985) (-0.005548884 0.01400212 0.004034987) (-0.00606836 0.01100293 0.005053554) (-0.006566194 0.01200161 0.005047515) (-0.006055074 0.01300207 0.005041528) (-0.005555996 0.01200304 0.005049507) (0.00707603 0.01200315 0.003539452) (0.006062906 0.01400521 0.003533507) (0.006566836 0.01400587 0.00403885) (0.006064663 0.01400732 0.004547798) (0.005557397 0.01400642 0.00404263) (0.006065061 0.01100533 0.005054747) (0.006570236 0.01200505 0.005053862) (0.006062844 0.0130062 0.005052406) (0.005557711 0.01200513 0.005054382) (-0.006055405 0.01800465 0.00353037) (-0.006550988 0.01800569 0.004029458) (-0.006058116 0.01800544 0.004541153) (-0.005553442 0.01800387 0.004037553) (-0.005554323 0.0160043 0.005052163) (0.006080543 0.01801088 0.003543145) (0.005571008 0.01800996 0.00404889) (0.005563919 0.01600959 0.005060396) (-0.005059878 0.02100659 0.004042714) (-0.005056476 0.02000484 0.004545245) (-0.005055716 0.02000471 0.003534404) (-0.005052543 0.01900369 0.004038052) (-0.005566338 0.02200827 0.004040861) (-0.004557385 0.02200939 0.004050251) (-0.004052775 0.02201024 0.004558143) (-0.004550684 0.02000586 0.005055698) (-0.004048683 0.02100858 0.005063897) (-0.004040412 0.01900482 0.005057112) (-0.003536721 0.02000679 0.005061344) (0.005063757 0.0210096 0.00404714) (0.005060802 0.02000775 0.004551703) (0.005065966 0.02000881 0.003540356) (0.005064642 0.01900836 0.004046807) (0.004557071 0.02201089 0.004048672) (0.004050689 0.02201088 0.004552691) (0.004551092 0.02000671 0.005054049) (0.004047931 0.02100894 0.005057076) (0.004044147 0.01900542 0.005055116) (0.003539184 0.02000637 0.005055408) (0.005571005 0.02201075 0.004048106) (-0.005075164 0.02401181 0.003547815) (-0.005066263 0.02301086 0.004049042) (-0.003045252 0.02501345 0.004072925) (-0.003042862 0.02401433 0.00457756) (-0.004069602 0.026013 0.003560266) (-0.00456883 0.02601376 0.004068353) (-0.003554874 0.02601404 0.004076475) (-0.004054622 0.02601504 0.00457948) (-0.004051648 0.02301353 0.005069641) (-0.003544898 0.02401551 0.00508181) (-0.002540177 0.02601443 0.004077933) (-0.002034508 0.026016 0.004585182) (-0.002533381 0.0240153 0.005088783) (-0.002028893 0.0250164 0.005092908) (-0.002024852 0.02301166 0.005078876) (-0.001520228 0.02401304 0.00508334) (0.002539054 0.02601763 0.004076598) (0.002033726 0.02601794 0.004583633) (0.002536418 0.02401503 0.005079543) (0.002029585 0.02501645 0.005085822) (0.002028288 0.02301142 0.005068725) (0.001520068 0.02401309 0.005077306) (0.005068368 0.02401375 0.003541715) (0.005065415 0.02301249 0.0040468) (0.004063018 0.02601783 0.003550324) (0.003553009 0.02601801 0.004069365) (0.004563022 0.02601815 0.004050232) (0.00405288 0.0260167 0.004563733) (0.004049092 0.02301309 0.005060512) (0.003546969 0.02401462 0.005072699) (-0.003051158 0.02701423 0.004079389) (-0.003053085 0.02901494 0.004073199) (-0.003054988 0.02801536 0.004587383) (-0.003054615 0.0280134 0.00356171) (-0.00101454 0.0290179 0.004076748) (-0.00101493 0.02801754 0.004582901) (-0.002539689 0.03001734 0.004072474) (-0.001522305 0.03001965 0.004074703) (-0.002029986 0.03001863 0.004577258) (-0.002030671 0.03001893 0.003564301) (-0.002033191 0.02701836 0.005093677) (-0.001522793 0.0280169 0.005086073) (0.001017957 0.02902081 0.004085554) (0.001016755 0.02801971 0.004590777) (-0.0005061608 0.03001997 0.004078625) (0.0005105429 0.03002146 0.004085163) (1.57408e-06 0.03002073 0.004587439) (-0.0005074233 0.0280196 0.005097123) (0.0005073421 0.0280201 0.005103282) (3.357247e-07 0.02902182 0.005101768) (-8.236192e-07 0.02701756 0.00510056) (0.003049161 0.02702002 0.004079678) (0.003051284 0.02902262 0.00408068) (0.003050081 0.0280225 0.004591317) (0.003056156 0.02802226 0.003568237) (0.001528136 0.03002508 0.004088974) (0.002540863 0.03002248 0.004084843) (0.002034825 0.03002495 0.00459368) (0.002035854 0.03002512 0.003578949) (0.002032251 0.02701965 0.005093846) (0.001523715 0.0280196 0.00509479) (-0.001014846 0.03202666 0.003570863) (-0.001013171 0.03102202 0.004073965) (0.001022918 0.03203025 0.003582886) (0.001020907 0.03102576 0.004087437) (1.005772e-06 0.03402964 0.003574169) (-0.001008218 -0.02801991 0.005590744) (-0.002028247 -0.02602073 0.005596821) (0.00101884 -0.02802044 0.005605325) (1.746394e-06 -0.02601914 0.005603477) (0.002031125 -0.02602232 0.005598068) (-0.003042269 -0.0240191 0.005593583) (-0.004047817 -0.02200714 0.005581393) (-0.001010934 -0.02501825 0.006089759) (-0.001009895 -0.02301288 0.006082108) (-0.001009014 -0.0240153 0.00658101) (-0.001010924 -0.02401527 0.005583191) (-0.002521578 -0.02201184 0.006079728) (-0.001512757 -0.02201113 0.006081184) (-0.002014965 -0.02200955 0.006580606) (-0.002019532 -0.0220121 0.005577633) (0.001010894 -0.0250153 0.006089007) (0.001006917 -0.02300792 0.00607177) (0.001005984 -0.02400759 0.006568032) (0.001011471 -0.0240131 0.005582462) (-0.0005050195 -0.02200898 0.006075468) (0.0005015622 -0.0220074 0.006071274) (-2.921416e-06 -0.02200774 0.006573134) (0.003038421 -0.02401513 0.005583957) (0.001511929 -0.02200729 0.006069347) (0.002526718 -0.02200907 0.006072514) (0.002015811 -0.02200681 0.006564231) (0.002023394 -0.02200937 0.00557023) (0.004045832 -0.02200904 0.005571) (-0.003024286 -0.02100864 0.006074569) (-0.003025318 -0.01900611 0.006072507) (-0.003021709 -0.02000824 0.006577922) (-0.00302755 -0.02000648 0.005568272) (-0.004545802 -0.01800402 0.006069237) (-0.003531561 -0.01800454 0.006069714) (-0.004033348 -0.01800272 0.006566881) (-0.0040384 -0.01800409 0.005563214) (-0.001007099 -0.02100825 0.006075269) (-0.001006281 -0.01900668 0.006069106) (-0.001005926 -0.02000749 0.006577965) (-0.002521003 -0.01800589 0.00607039) (-0.00151021 -0.01800614 0.00606767) (-0.002016264 -0.01800656 0.00657396) (0.001006158 -0.0210067 0.006068442) (0.001006477 -0.01900647 0.006064714) (0.001005544 -0.02000699 0.006570812) (-0.0005032382 -0.01800662 0.006065651) (0.0005030216 -0.01800655 0.006064302) (-4.385388e-07 -0.01800776 0.006570052) (-1.127468e-06 -0.01901036 0.007081877) (0.003035724 -0.02101014 0.006076689) (0.00303249 -0.01900893 0.006072798) (0.003032558 -0.02001153 0.006579082) (0.003035334 -0.02000868 0.005568524) (0.001511374 -0.01800621 0.006064531) (0.002524231 -0.01800697 0.006068931) (0.002016961 -0.01800667 0.006570332) (0.003539792 -0.01800787 0.006074596) (0.004548522 -0.01800479 0.006068438) (0.00404527 -0.01800844 0.006578728) (0.004044314 -0.01800562 0.005564347) (-0.005046983 -0.01600663 0.005557735) (-0.003026381 -0.01700453 0.006067969) (-0.003024338 -0.01500298 0.006063253) (-0.003026291 -0.01600367 0.006569386) (-0.004538533 -0.014006 0.006062671) (-0.003529036 -0.01400329 0.006063647) (-0.00403526 -0.01400493 0.006569786) (-0.004034364 -0.0140042 0.005554856) (-0.002518243 -0.01400289 0.006059477) (-0.0020157 -0.0140033 0.006564708) (-0.002016186 -0.01700598 0.007074576) (-0.002519914 -0.01600455 0.007072042) (-0.00151074 -0.0160057 0.007072678) (-0.002014687 -0.01500416 0.007070318) (-6.231014e-07 -0.01700832 0.007076667) (-0.0005038283 -0.01600712 0.007074008) (0.0005029536 -0.01600608 0.007073413) (-1.745898e-07 -0.01500627 0.007073615) (0.003030555 -0.01700595 0.006069036) (0.003026474 -0.01500299 0.00606085) (0.003029157 -0.01600452 0.006569746) (0.002519829 -0.01400269 0.006058445) (0.002016869 -0.01400317 0.006565632) (0.002015104 -0.01700492 0.007070731) (0.001509967 -0.01600427 0.007070872) (0.002520315 -0.01600382 0.007069866) (0.00201476 -0.01500353 0.007070621) (0.00505036 -0.016002 0.00555492) (0.003532206 -0.01400233 0.006059259) (0.004544827 -0.01400234 0.006055404) (0.004038024 -0.01400235 0.006559558) (-0.005041369 -0.01300555 0.006056749) (-0.005049787 -0.01100419 0.006066551) (-0.005044456 -0.01200486 0.006564883) (-0.005046579 -0.01200417 0.005555) (-0.006058843 -0.01000305 0.005557737) (-0.005553136 -0.01000366 0.006062198) (-0.004539648 -0.01000312 0.006060938) (-0.004035971 -0.01000312 0.006565551) (-0.003526405 -0.01200322 0.007075523) (-0.002014441 -0.01300315 0.007073765) (-0.002518086 -0.0120023 0.007075196) (-0.001510692 -0.01200303 0.007069572) (-0.002014247 -0.01100202 0.007071007) (0.003024584 -0.01200155 0.006563446) (0.003023778 -0.0110014 0.006055225) (0.002015232 -0.01300372 0.00707608) (0.002519284 -0.01200227 0.007079218) (0.001511456 -0.01200384 0.007074672) (0.002014241 -0.01100187 0.007075506) (0.00504896 -0.01300261 0.006054941) (0.005048795 -0.01100322 0.006061749) (0.005044503 -0.01200248 0.006557761) (0.005050483 -0.01200286 0.005555949) (0.00453857 -0.01000267 0.006055582) (0.004033739 -0.01000218 0.006559665) (0.003527226 -0.01000152 0.006054401) (0.00352959 -0.01200178 0.007073324) (0.006057137 -0.0100026 0.005554938) (0.005548196 -0.01000347 0.006057057) (-0.005043787 -0.009002371 0.006056079) (-0.005045546 -0.007001306 0.006054865) (-0.005042195 -0.008001307 0.006558906) (-0.006062539 -0.00600178 0.005558171) (-0.00555935 -0.006001742 0.00606392) (-0.004540112 -0.006001126 0.006055426) (-0.004034331 -0.006000937 0.006556567) (-0.004034076 -0.00900197 0.007067696) (-0.00453434 -0.008000488 0.007064366) (-0.004030429 -0.007000739 0.007059411) (-0.003526081 -0.008001168 0.007061869) (0.005040074 -0.009002794 0.006048611) (0.005038757 -0.00700199 0.006041902) (0.005037936 -0.008003302 0.006546154) (0.004536257 -0.006001801 0.006044762) (0.004032461 -0.006001903 0.006547782) (0.004033006 -0.009002465 0.007061888) (0.004537571 -0.008004141 0.007052762) (0.0040302 -0.007002456 0.007052452) (0.003527502 -0.008001936 0.00706302) (0.006052284 -0.006001311 0.005541822) (0.005548761 -0.006001771 0.006046639) (-0.005051635 -0.005001546 0.006061352) (-0.00504995 -0.003001686 0.00606107) (-0.005054891 -0.004001652 0.006570544) (-0.006061495 -0.002003169 0.00555539) (-0.005551711 -0.002002002 0.006058543) (-0.004538538 -0.002000899 0.006056102) (-0.004035651 -0.002000851 0.006561282) (-0.00403406 -0.005001006 0.007064499) (-0.004544314 -0.00400128 0.007072648) (-0.004037228 -0.003001177 0.007071819) (-0.003529493 -0.004001176 0.007066512) (0.005046808 -0.005001695 0.006049758) (0.005054455 -0.003001657 0.006058555) (0.005053151 -0.004002024 0.006561679) (0.004544158 -0.00200117 0.006056505) (0.0040389 -0.002001235 0.006560801) (0.004033294 -0.005001807 0.007056911) (0.004541917 -0.004001963 0.007062818) (0.004037185 -0.003001668 0.007067821) (0.003529583 -0.004001408 0.00706331) (0.006066768 -0.002001349 0.00555203) (0.005565819 -0.0020019 0.006063388) (-0.005039597 -0.001000705 0.006051671) (-0.00503963 0.001001017 0.00605507) (-0.00503613 5.786376e-07 0.006554792) (-0.006057496 0.00200099 0.005557196) (-0.005551273 0.002001989 0.006066376) (-0.004539832 0.002001445 0.006061011) (-0.004037561 0.002001342 0.00656575) (-0.00403308 -0.001000766 0.007064734) (-0.004535042 4.541934e-07 0.007060946) (-0.00403407 0.001000799 0.007067367) (-0.003528686 -4.43669e-07 0.00706489) (0.005049325 -0.001000769 0.00605583) (0.00504421 0.001001704 0.00605567) (0.005045971 3.57064e-07 0.006560937) (0.004543137 0.002001924 0.006060386) (0.004040902 0.002001754 0.006565955) (0.004035696 -0.001000862 0.007066695) (0.004541804 1.896942e-07 0.007067425) (0.004039171 0.001001293 0.00707136) (0.003529889 1.340661e-07 0.007066269) (0.006052654 0.002001431 0.005546541) (0.005551179 0.002003058 0.006058176) (0.006540381 0.002000987 0.006039544) (0.006044267 0.002006366 0.006553147) (-0.005051724 0.003001918 0.006068307) (-0.005054188 0.005001861 0.006064694) (-0.005059244 0.004002194 0.006577855) (-0.006063179 0.006001729 0.005558375) (-0.005561324 0.006001955 0.006065418) (-0.004542258 0.006001821 0.006057511) (-0.004036484 0.006001725 0.006559264) (-0.004040514 0.003001511 0.007077062) (-0.004548805 0.004001818 0.007078202) (-0.004036957 0.005001537 0.007068262) (-0.003532741 0.004001378 0.007070454) (0.005053163 0.003002296 0.006065621) (0.005058461 0.005001479 0.006069841) (0.00506095 0.00400198 0.006580905) (0.004547127 0.006001489 0.006064326) (0.004040918 0.006001376 0.006565661) (0.004042278 0.003001814 0.007076269) (0.004549812 0.004001695 0.007079513) (0.004038766 0.00500116 0.007071656) (0.003533458 0.004001201 0.007071743) (0.006072017 0.006001659 0.005563842) (0.005568319 0.006001686 0.006073323) (-0.00504724 0.007002105 0.006055893) (-0.005045667 0.009003722 0.006054036) (-0.005044563 0.008003212 0.006558697) (-0.006065678 0.01000371 0.005555105) (-0.005556009 0.01000562 0.006058272) (-0.00454154 0.01000425 0.00605783) (-0.004036291 0.01000367 0.006561054) (-0.004031203 0.007001884 0.007060121) (-0.004537016 0.008003363 0.007060935) (-0.004033641 0.009002581 0.007063258) (-0.003526332 0.008001749 0.007062095) (0.005053618 0.007001948 0.006064475) (0.005050389 0.00900388 0.006065457) (0.005054342 0.008002859 0.006572263) (0.004544627 0.01000404 0.00606777) (0.004040838 0.01000356 0.00657231) (0.004038756 0.007001634 0.00707129) (0.004551135 0.00800219 0.007079055) (0.004040133 0.009003098 0.007078937) (0.003531908 0.008002113 0.007074261) (0.00606168 0.0100051 0.005556866) (0.005556096 0.01000565 0.006067683) (-0.00505259 0.01100557 0.006062789) (-0.005046214 0.01300554 0.00605904) (-0.00504636 0.01200592 0.006566116) (-0.00505104 0.01200406 0.005553707) (-0.004541059 0.01400591 0.006062006) (-0.003531215 0.01400401 0.00606034) (-0.004037806 0.01400596 0.006566512) (-0.004036486 0.01400399 0.005553688) (-0.003524879 0.01200244 0.007065635) (-0.00251882 0.01400285 0.006056485) (-0.002015565 0.01400284 0.006562152) (-0.002517202 0.01200129 0.007067868) (-0.002013249 0.01300177 0.007070417) (-0.002012449 0.0110015 0.007065814) (-0.001509118 0.01200189 0.007067106) (0.003027775 0.01300316 0.006059403) (0.003027268 0.01200325 0.006565361) (0.002522694 0.01400294 0.006060205) (0.002018934 0.01400305 0.006565707) (0.00252051 0.01200409 0.007075724) (0.002015725 0.01300444 0.00707636) (0.002015618 0.01100369 0.007074274) (0.00151075 0.01200389 0.007071869) (0.005051942 0.01100503 0.006068258) (0.005049749 0.01300498 0.006061253) (0.005049067 0.01200442 0.00656739) (0.005053111 0.0120049 0.005558523) (0.00353432 0.01400387 0.006062353) (0.004544916 0.01400511 0.006062543) (0.004039339 0.01400435 0.006564275) (0.004041154 0.01400464 0.005556325) (0.003529152 0.01200285 0.00706991) (-0.005048768 0.01600469 0.005559847) (-0.003025416 0.01500373 0.006059438) (-0.003025726 0.0170056 0.006064421) (-0.003026458 0.01600515 0.006565588) (-0.004542085 0.01800357 0.006068114) (-0.003531473 0.01800589 0.006066805) (-0.004031352 0.0180045 0.006565161) (-0.004038781 0.0180043 0.005561677) (-0.002520025 0.0180064 0.006065447) (-0.001510489 0.01800535 0.006064755) (-0.002014835 0.01800673 0.006568985) (-0.002014258 0.01500436 0.007068744) (-0.002519188 0.01600662 0.00706842) (-0.001510428 0.016006 0.007072748) (-0.002014541 0.01700832 0.007071927) (-0.0005028899 0.01800402 0.006065732) (0.0005052831 0.01800294 0.006066149) (8.985466e-07 0.01800337 0.006572756) (-0.0005038158 0.01600346 0.007078146) (0.0005035395 0.01600252 0.007079466) (-9.483051e-08 0.01700302 0.007082394) (-3.621223e-07 0.01500252 0.007076393) (0.003029148 0.01500338 0.006061102) (0.003031519 0.01700322 0.006064556) (0.003031537 0.0160036 0.006567989) (0.001514348 0.01800237 0.006064028) (0.002525991 0.01800231 0.00606381) (0.002020048 0.01800174 0.006567232) (0.002017347 0.01500278 0.007072953) (0.001511608 0.01600206 0.007072819) (0.002523345 0.01600222 0.007070445) (0.002018373 0.01700135 0.007069951) (0.005055706 0.01600731 0.005565584) (0.003537534 0.01800441 0.006064206) (0.004549432 0.01800485 0.006064209) (0.004037693 0.018005 0.006559342) (0.004043961 0.01800493 0.005559565) (-0.003026731 0.01900744 0.006067607) (-0.003031509 0.02100893 0.006074061) (-0.00302641 0.0200102 0.006571565) (-0.003031494 0.02000756 0.005565766) (-0.004050715 0.02201133 0.005573453) (-0.001006906 0.01900515 0.00606698) (-0.001009408 0.02100716 0.006073035) (-0.001007471 0.0200064 0.006573443) (-0.002528237 0.0220099 0.006080342) (-0.001517939 0.02200904 0.006082604) (-0.002023019 0.02200778 0.006585829) (-0.002023851 0.02201011 0.005578532) (0.001010062 0.01900321 0.006066915) (0.001011354 0.02100567 0.006069235) (0.001010863 0.02000428 0.006571557) (-0.000505493 0.0220081 0.006074151) (0.0005057206 0.02200714 0.006069703) (5.752475e-07 0.02200756 0.006573018) (9.792342e-07 0.01900405 0.007085534) (0.00303295 0.01900413 0.006064041) (0.00303379 0.02100677 0.006062381) (0.003034247 0.02000527 0.006564784) (0.003035638 0.02000587 0.00555941) (0.001516419 0.02200743 0.006069016) (0.002529832 0.0220086 0.006066428) (0.002018686 0.02200645 0.006562209) (0.002026837 0.0220095 0.005566759) (0.004048547 0.02201199 0.00556346) (-0.003039462 0.0240177 0.005595669) (-0.001013595 0.02301043 0.006083314) (-0.001014953 0.02501573 0.006095414) (-0.001013346 0.024012 0.006586312) (-0.001014222 0.02401267 0.005584831) (-0.002029949 0.02601939 0.005600283) (0.001010422 0.02300878 0.006071729) (0.001009659 0.02501231 0.006082553) (0.001007832 0.02400952 0.006570872) (0.001011807 0.02401186 0.00557914) (-1.343604e-06 0.02601538 0.005599426) (0.003044705 0.02401609 0.005583227) (0.002028648 0.02601882 0.005590918) (-0.001012244 0.02801746 0.005588065) (0.001012195 0.02801732 0.005594845) (-9.335209e-07 -0.01801145 0.007578747) (-0.001007243 -0.01600711 0.007577409) (-0.002014789 -0.01400425 0.007576959) (0.001005971 -0.0160048 0.007574669) (2.094388e-07 -0.01400639 0.007570554) (0.002014913 -0.01400444 0.007580009) (-0.003021405 -0.01200211 0.007580039) (-0.001007701 -0.01200387 0.007568032) (-0.002015131 -0.01000152 0.007574593) (0.001008486 -0.01200514 0.007573256) (-0.0005027599 -0.01000369 0.008081059) (0.0005036084 -0.01000279 0.00808336) (8.695623e-07 -0.0100045 0.00860159) (4.779323e-07 -0.01000298 0.00756932) (0.003023447 -0.01200195 0.007585825) (0.002014225 -0.01000065 0.007581914) (-0.003020291 -0.008001404 0.007565005) (-0.004029373 -0.006000784 0.007561791) (0.003025148 -0.008001529 0.007575627) (0.004030607 -0.006002265 0.007555673) (-0.003023936 -0.004001375 0.007566907) (-0.004037053 -0.002001832 0.007582572) (0.003025241 -0.004001077 0.007566427) (0.004035191 -0.002002238 0.007579702) (-0.003025651 -8.768878e-07 0.007568271) (-0.004040775 0.002001408 0.007587455) (0.003024224 1.421304e-07 0.007567108) (0.004044163 0.002002085 0.00758661) (-0.003027212 0.004001352 0.007569849) (-0.004028902 0.006001371 0.007565596) (0.003027403 0.004001041 0.007572643) (0.004033334 0.006001178 0.00757064) (-0.003020422 0.008001677 0.007566361) (-0.002011782 0.01000159 0.00756851) (-0.0005033949 0.0100035 0.008082552) (0.0005039507 0.01000396 0.008083542) (4.158182e-08 0.01000501 0.008603929) (2.387045e-07 0.01000305 0.00757018) (0.003025622 0.008002276 0.007578766) (0.002016918 0.01000358 0.007581284) (-0.003021087 0.0120012 0.007568364) (-0.001005908 0.0120022 0.007566687) (-0.002012938 0.01400217 0.007576616) (0.001006631 0.01200375 0.007570174) (-8.338482e-07 0.01400197 0.007572568) (0.003024662 0.01200394 0.007578011) (0.002016049 0.01400494 0.007583168) (-0.001007312 0.01600502 0.007578658) (0.001006596 0.01600259 0.007579533) (-3.377382e-07 0.0180025 0.007587256) (-0.001522811 0.006003402 -0.00939154) (-0.001520416 0.005501831 -0.009129107) (0.002515376 -7.093691e-07 -0.009319548) (0.002519564 -0.0005023415 -0.009080627) (-0.001441176 0.006003248 -0.009760137) (-0.001002666 -0.01400385 -0.007575661) (0.001007181 -0.01400373 -0.007575041) (0.003021554 -0.01000378 -0.007561569) (0.003023333 -0.006001622 -0.007562757) (-0.003028547 0.00200103 -0.007581548) (-0.003019375 0.00600303 -0.007563838) (0.003020734 0.006001129 -0.007560014) (0.003019852 0.01000317 -0.007557875) (0.001004013 0.01400281 -0.007574919) (-0.001007752 -0.02601253 -0.005570731) (0.001009095 -0.02601326 -0.005569957) (-0.003025052 -0.02200485 -0.005554562) (0.003032189 -0.02200862 -0.005568619) (-0.005057222 -0.01800629 -0.005564001) (-0.001004205 -0.01500298 -0.007069406) (0.001007572 -0.01500428 -0.007070935) (0.00505546 -0.018009 -0.00556841) (-0.005037563 -0.01400501 -0.005545624) (-0.001507584 -0.0140029 -0.007065956) (-0.001002433 -0.01300224 -0.007060206) (0.001511438 -0.01400418 -0.00706566) (0.001007722 -0.01300273 -0.007059369) (0.003025536 -0.0110051 -0.007061814) (0.005055642 -0.01400552 -0.005566819) (0.002517894 -0.01000307 -0.007057489) (0.003527682 -0.01000419 -0.007062272) (0.003527632 -0.006002748 -0.007060449) (0.003022949 -0.005001647 -0.007058409) (-0.003026253 0.001000823 -0.007073606) (-0.003534019 0.002001672 -0.007077964) (0.003023235 0.005000933 -0.007059833) (-0.003523907 0.006003149 -0.007060239) (-0.003019429 0.007003436 -0.007061776) (0.003527139 0.006001307 -0.007057363) (0.002516675 0.01000279 -0.007054855) (0.00100485 0.01300244 -0.007059841) (0.003526299 0.01000336 -0.007061086) (0.003022117 0.01100411 -0.007061446) (-0.005048516 0.01400579 -0.005559579) (0.0005014626 0.0140024 -0.007068916) (0.001508106 0.0140031 -0.007064272) (0.001004574 0.0150035 -0.007069399) (0.005050861 0.01400505 -0.005560185) (-0.00506144 0.01800707 -0.005563212) (0.005056633 0.0180074 -0.00556201) (-0.003034431 0.02200632 -0.005564471) (0.003026888 0.02200736 -0.005552926) (-0.001014363 0.02601842 -0.005581465) (0.001005937 0.02601448 -0.00557607) (-0.003048572 -0.03002322 -0.003579236) (-0.001009459 -0.02701514 -0.005073505) (0.001010397 -0.0270148 -0.005071334) (0.003044245 -0.03001838 -0.003553748) (-0.001515112 -0.02601243 -0.005071763) (-0.00302651 -0.02300541 -0.0050568) (0.001517592 -0.02601271 -0.005070962) (0.003034876 -0.02300971 -0.005070642) (-0.00353092 -0.02200517 -0.005053259) (-0.005053801 -0.01900622 -0.005054604) (-0.00505498 -0.02200885 -0.00353367) (0.003538038 -0.02200758 -0.005066142) (0.005049717 -0.0190062 -0.005058775) (0.005062233 -0.02200674 -0.003540718) (-0.005564631 -0.01800683 -0.005057879) (0.005561219 -0.01800524 -0.005053336) (-0.005545943 -0.01400558 -0.005039487) (0.005557524 -0.01400434 -0.005055884) (-0.007075177 -0.01000432 -0.003534381) (0.007076578 -0.01000338 -0.003528217) (-0.007067561 -0.006001185 -0.003523251) (0.007058868 -0.006002571 -0.003521429) (-0.007062905 -0.002000457 -0.003531906) (0.007067739 -0.002000748 -0.003528996) (-0.007061916 0.002001595 -0.00352915) (0.007060834 0.002000972 -0.003527365) (-0.007055848 0.006001225 -0.003526782) (0.007058243 0.006002807 -0.003525326) (-0.007076377 0.01000515 -0.003533013) (0.007083012 0.01000264 -0.003532454) (-0.005554163 0.01400512 -0.00505143) (0.005560426 0.01400564 -0.005053355) (-0.005560377 0.01800654 -0.005058847) (-0.005052479 0.0190054 -0.005052277) (0.005564058 0.01800553 -0.005056141) (0.005057391 0.01900855 -0.005054432) (-0.003538589 0.02200614 -0.005059861) (-0.005057002 0.02200669 -0.003528034) (-0.003036281 0.023009 -0.005068486) (0.003534475 0.02200863 -0.005052862) (0.003027566 0.02300863 -0.005054569) (0.005069728 0.02200718 -0.003536071) (-0.001523055 0.02601867 -0.005087866) (-0.001014344 0.02701894 -0.005083893) (0.001511805 0.02601361 -0.005072915) (0.001007289 0.02701563 -0.005078572) (-0.003046911 0.03001938 -0.003556844) (0.003056182 0.03002807 -0.003586355) (-0.003053901 -0.03102819 -0.003076158) (0.003041399 -0.0310172 -0.003040569) (-0.003556885 -0.03002158 -0.003064704) (0.003555741 -0.03001506 -0.003039514) (-0.005061212 -0.0230103 -0.003029798) (-0.005073627 -0.02601204 -0.001514552) (0.00506812 -0.02300753 -0.003033834) (0.005085445 -0.02601124 -0.001523052) (-0.00555984 -0.02201032 -0.003027557) (0.00556689 -0.02200694 -0.003032836) (-0.007071022 -0.01100435 -0.003028666) (-0.007072782 -0.01400474 -0.001513613) (0.007077161 -0.01100291 -0.003024318) (0.007069872 -0.01400264 -0.001511407) (-0.007577927 -0.01000495 -0.003027097) (0.00758557 -0.01000335 -0.003023678) (-0.007576171 -0.00600184 -0.00301907) (0.007560343 -0.006002534 -0.003017167) (-0.007563245 -0.002000457 -0.003026652) (0.007569007 -0.002000695 -0.003024689) (-0.007559446 0.002001313 -0.003023938) (0.007559961 0.002000843 -0.003022525) (-0.00755768 0.006000945 -0.003023308) (0.007556874 0.006003574 -0.003021568) (-0.007580864 0.01000498 -0.00302781) (-0.00707888 0.01100578 -0.003029424) (0.007588982 0.01000447 -0.003027607) (0.007090401 0.01100368 -0.003030035) (-0.007068139 0.0140045 -0.001514473) (0.007086614 0.01400773 -0.001517461) (-0.00556461 0.02200671 -0.003024796) (-0.005062142 0.02300695 -0.003023674) (0.005577942 0.02200775 -0.003034676) (0.005072031 0.02300878 -0.003033335) (-0.005081516 0.02601585 -0.001514971) (0.005081505 0.02601425 -0.001516919) (-0.003558736 0.0300187 -0.003043432) (-0.00304605 0.03101934 -0.003044213) (0.003571241 0.03003068 -0.003076621) (0.003061425 0.03103032 -0.003074261) (-0.005077836 -0.02701269 -0.001008098) (0.005084287 -0.02701302 -0.001014539) (-0.005581006 -0.02601196 -0.001007012) (0.0055943 -0.02601357 -0.001016134) (-0.007069372 -0.01500417 -0.001008217) (0.007063853 -0.01500258 -0.001008219) (-0.007580106 -0.01400573 -0.00100802) (0.007567749 -0.01400278 -0.001008778) (-0.007566646 -0.0100039 -0.001005555) (0.007544504 -0.01000194 -0.001005018) (-0.007563464 0.01000187 -0.001006635) (0.007573506 0.01000339 -0.001006576) (-0.007574221 0.01400707 -0.001012256) (-0.007066088 0.01500521 -0.001010537) (0.007587131 0.01400867 -0.001011471) (0.007078371 0.01500798 -0.001010382) (-0.005586616 0.02601658 -0.001009135) (-0.00508309 0.02701791 -0.00100986) (0.005592218 0.02601697 -0.001010379) (0.005080751 0.02701544 -0.001009264) (-0.005082369 -0.0270121 0.001008672) (0.005083632 -0.02701594 0.001014282) (-0.005586558 -0.02601345 0.001008521) (-0.005082562 -0.02601252 0.001515006) (0.005583891 -0.02601576 0.001013112) (0.005078052 -0.02601341 0.001519076) (-0.007061302 -0.01500245 0.001004148) (0.007066515 -0.0150015 0.001006844) (-0.007570581 -0.01400344 0.001003866) (-0.007060843 -0.01400296 0.001506491) (0.007572858 -0.01400058 0.00100715) (0.007069856 -0.01400157 0.00151231) (-0.007561028 -0.01000373 0.001004627) (0.007543324 -0.01000129 0.001005803) (-0.007562317 0.01000042 0.001004699) (0.00757395 0.01000147 0.001010266) (-0.007571305 0.01400229 0.001000832) (-0.007062575 0.01500267 0.001002532) (-0.007061675 0.01400069 0.001505193) (0.007577796 0.01400677 0.001011909) (0.007069169 0.0150052 0.001008179) (0.007074239 0.01400494 0.001514389) (-0.005587123 0.02601352 0.001010754) (-0.005081747 0.02701505 0.001011138) (-0.005083555 0.02601346 0.001519587) (0.005599672 0.02601765 0.001013071) (0.005091259 0.02701685 0.001012866) (0.005088008 0.02601581 0.001518888) (-0.003044829 -0.03101702 0.003047042) (0.003044124 -0.03101412 0.003042411) (-0.003556774 -0.03001385 0.00304504) (-0.003047166 -0.03001711 0.003562711) (0.003559465 -0.03001524 0.003044798) (0.003043632 -0.03001386 0.003559547) (-0.005072905 -0.02301263 0.00303632) (0.005077065 -0.02301185 0.003036072) (-0.005570348 -0.02201082 0.003031171) (-0.005068698 -0.02201004 0.003539675) (0.005578674 -0.02201279 0.003036129) (0.005074781 -0.02201237 0.003545138) (-0.007057432 -0.01100453 0.003019815) (0.007069503 -0.01100265 0.003025964) (-0.007562139 -0.01000523 0.003021336) (-0.00706193 -0.01000364 0.003527346) (0.007566436 -0.01000242 0.003021314) (0.007062736 -0.01000228 0.003526616) (-0.007555015 -0.006000459 0.003019494) (-0.007053742 -0.006000635 0.003524008) (0.007567485 -0.006003201 0.003024596) (0.007066233 -0.006002254 0.003528145) (-0.00756352 -0.00200026 0.003026075) (-0.007066096 -0.002000848 0.003532163) (0.007558289 -0.00200193 0.003022692) (0.007059462 -0.002001782 0.003527114) (-0.007562132 0.002000738 0.003023613) (-0.007063618 0.00200071 0.003529606) (0.007563909 0.001999573 0.003019228) (0.007063061 0.001999498 0.003523314) (-0.007554886 0.006003739 0.003022146) (-0.00705281 0.006001834 0.003526223) (0.007557176 0.00599918 0.003015047) (0.007055323 0.005999518 0.003522292) (-0.007569709 0.01000068 0.00302582) (-0.007066912 0.0109997 0.003024799) (-0.007068297 0.0100008 0.003532757) (0.007577908 0.01000127 0.003032082) (0.007074369 0.01100201 0.003032131) (0.007072385 0.0100019 0.003538188) (-0.005568561 0.02200864 0.003034483) (-0.005071406 0.02301037 0.003038399) (-0.005065978 0.02200852 0.003540397) (0.005577562 0.02201003 0.003033032) (0.005071646 0.02301099 0.003033917) (0.005069109 0.02201049 0.003540338) (-0.003552828 0.0300148 0.003038275) (-0.003042217 0.03101651 0.003040174) (-0.00304502 0.03001444 0.003554821) (0.003567663 0.03002522 0.003052367) (0.003052177 0.03102461 0.003055677) (0.003049577 0.03002213 0.003566381) (-0.001011101 -0.02702039 0.00509307) (0.001018703 -0.02702059 0.005104034) (-0.001519564 -0.02601966 0.005091119) (-0.003037627 -0.02301415 0.005083045) (-0.001011261 -0.02601976 0.005593279) (0.001524402 -0.02601951 0.005096752) (0.001015785 -0.02601973 0.005601106) (0.003036864 -0.02301147 0.005075215) (-0.003541129 -0.02200961 0.00507671) (-0.005050845 -0.01900528 0.005054904) (-0.003031908 -0.02201157 0.005579205) (0.003541548 -0.0220095 0.005069893) (0.003035899 -0.02200998 0.005574436) (0.005059707 -0.01900644 0.00505877) (-0.005564625 -0.01800881 0.00505569) (-0.005055882 -0.01800627 0.00556437) (0.005569731 -0.01800262 0.005061447) (0.005059891 -0.01800302 0.005563808) (-0.005545987 -0.01400569 0.005044185) (-0.005040617 -0.01400569 0.005551314) (0.005552306 -0.0140024 0.005047368) (0.005049018 -0.01400223 0.005550398) (-0.005549126 0.0140029 0.005044194) (-0.005044616 0.01400435 0.005551944) (0.005558965 0.01400715 0.005055483) (0.005051781 0.01400607 0.005559554) (-0.00555997 0.01800351 0.005051577) (-0.005053988 0.01900341 0.005050662) (-0.005052253 0.01800268 0.005560714) (0.005565802 0.01800825 0.005058817) (0.005057257 0.01900597 0.005054565) (0.005058049 0.01800579 0.005564463) (-0.003543486 0.02201106 0.005070937) (-0.0030378 0.02301334 0.005079183) (-0.003035867 0.02201106 0.005575723) (0.003543789 0.02201077 0.00506255) (0.003040486 0.02301263 0.005070144) (0.003038572 0.02201023 0.005566868) (-0.001522865 0.02601693 0.005092245) (-0.001014822 0.02701749 0.005092514) (-0.001015182 0.02601704 0.005595477) (0.001521473 0.02601639 0.005088352) (0.001013775 0.02701695 0.0050945) (0.001011673 0.02601448 0.005589576) (-0.001007579 -0.01500607 0.007071876) (0.001007125 -0.01500498 0.007073433) (-0.001511277 -0.01400471 0.007071748) (-0.003022706 -0.01100234 0.007073206) (-0.001009153 -0.01400663 0.007573898) (0.001511385 -0.01400473 0.007075227) (0.001009531 -0.01400631 0.007580292) (0.003023269 -0.0110014 0.007073556) (-0.003528402 -0.01000253 0.007070349) (-0.003023645 -0.01000217 0.007574543) (-0.00100627 -0.01000265 0.007570067) (0.001006811 -0.01000207 0.007573029) (0.003528661 -0.01000156 0.007069144) (0.003022535 -0.0100011 0.007581282) (-0.003525543 -0.006000926 0.007058628) (-0.003019469 -0.006001173 0.007558125) (0.003527545 -0.006001679 0.007058746) (0.003025664 -0.006001361 0.007568351) (-0.003530498 -0.002001303 0.007068905) (-0.003026956 -0.00200158 0.007571095) (0.003529826 -0.002001223 0.00706746) (0.003024434 -0.002001018 0.007569317) (-0.003532351 0.002000888 0.007072028) (-0.003027862 0.002000621 0.007573187) (0.003534018 0.002001329 0.00707262) (0.003028075 0.002001078 0.007573721) (-0.003527203 0.006001556 0.007062901) (-0.003021794 0.006001881 0.007564498) (0.003530724 0.00600127 0.00706954) (0.003024554 0.006001295 0.007572138) (-0.003526168 0.01000213 0.007064036) (-0.003020776 0.01100162 0.007065353) (-0.003020173 0.01000156 0.007568218) (-0.001005811 0.01000248 0.007569302) (0.001007644 0.01000321 0.007572972) (0.003531266 0.01000276 0.007076845) (0.003025135 0.01100307 0.00707571) (0.003025546 0.01000242 0.007583537) (-0.001509526 0.01400279 0.007072655) (-0.001006641 0.01500353 0.007073881) (-0.001006883 0.01400272 0.007578057) (0.00151104 0.01400358 0.007076513) (0.001006768 0.01500267 0.007076661) (0.001005782 0.01400368 0.007582134) (-0.0005000626 -0.01400295 -0.007069111) (0.0005049318 -0.01400348 -0.007069598) (0.003021817 -0.00900317 -0.007060561) (0.003022341 -0.007002229 -0.007060349) (0.002518413 -0.006001381 -0.007057255) (-0.002521435 0.002000821 -0.007067379) (-0.003026585 0.003001448 -0.007069879) (-0.003022115 0.005002204 -0.007061766) (-0.002516617 0.006002324 -0.007059332) (0.002516762 0.006001212 -0.007056081) (0.003020253 0.007001462 -0.007054808) (0.003021177 0.009002431 -0.007056575) (-0.0005039551 -0.02601319 -0.005069043) (-0.001007979 -0.02501077 -0.005064966) (0.0005047732 -0.02601373 -0.005068717) (0.001009824 -0.02501186 -0.005065357) (-0.002520419 -0.0220047 -0.00505276) (-0.003026864 -0.02100465 -0.005051037) (0.002526015 -0.02200843 -0.005063025) (0.003030802 -0.02100611 -0.005060555) (-0.004545396 -0.01800557 -0.005055078) (-0.005050075 -0.01700682 -0.005052076) (-0.005052815 -0.01800628 -0.004545667) (0.004547009 -0.01800663 -0.005061841) (0.005054496 -0.0170063 -0.005056964) (0.005054211 -0.01800503 -0.004548711) (-0.005041017 -0.01500621 -0.00504339) (-0.004533878 -0.01400437 -0.005043236) (-0.005043568 -0.0130039 -0.005042279) (-0.005042973 -0.01400479 -0.004535739) (0.005055541 -0.0150053 -0.005058706) (0.004546886 -0.01400497 -0.005058298) (0.00505303 -0.01300449 -0.005058825) (0.005052335 -0.014004 -0.004547551) (-0.005046691 0.01300458 -0.005050834) (-0.004542222 0.01400523 -0.005053848) (-0.005050747 0.0150055 -0.00505493) (-0.005048682 0.01400468 -0.004544161) (0.005053779 0.01300516 -0.005056877) (0.004545431 0.01400441 -0.005053979) (0.005054738 0.01500509 -0.005053715) (0.00505724 0.01400485 -0.004546795) (-0.005054181 0.01700597 -0.005056267) (-0.004550494 0.01800538 -0.005056705) (-0.005053183 0.01800569 -0.004547159) (0.005059374 0.01700587 -0.005056985) (0.004552093 0.01800776 -0.005058566) (0.005063642 0.01800633 -0.004550922) (-0.003032999 0.02100512 -0.005055173) (-0.002528645 0.02200717 -0.005061732) (0.003031428 0.02100794 -0.005052366) (0.002521512 0.02200682 -0.005051042) (-0.001014134 0.02501484 -0.005074658) (-0.0005082052 0.02601597 -0.005077326) (0.001006157 0.02501188 -0.00506815) (0.0005019981 0.02601454 -0.005075629) (-0.002544648 -0.03002579 -0.003077931) (-0.003050772 -0.02901983 -0.003067297) (-0.003056052 -0.03002475 -0.002561005) (0.002537752 -0.03001999 -0.003053419) (0.00305373 -0.0290159 -0.003050113) (0.003050616 -0.03001551 -0.002535776) (-0.005052225 -0.02100832 -0.003028522) (-0.00505902 -0.02201024 -0.002522444) (0.005059363 -0.02100572 -0.003034647) (0.005064375 -0.02200666 -0.002526616) (-0.006563117 -0.01000363 -0.003027599) (-0.007073378 -0.009004199 -0.0030245) (-0.007069461 -0.01000483 -0.002520077) (0.007072046 -0.009003499 -0.00302143) (0.007069916 -0.01000306 -0.00251768) (-0.007071931 -0.007002376 -0.003020628) (-0.007062832 -0.005001362 -0.003019624) (-0.007064778 -0.006002117 -0.002515402) (0.007062478 -0.007003144 -0.003018321) (0.007055467 -0.005001832 -0.003018088) (0.007054826 -0.006002318 -0.002513557) (-0.007057149 -0.003000782 -0.003022952) (-0.007059768 -0.0009999277 -0.003026759) (-0.007052637 -0.002000489 -0.002519764) (0.007059941 -0.003001035 -0.00302162) (0.007063551 -0.001000353 -0.003024248) (0.007057799 -0.002000723 -0.002517953) (-0.007058547 0.001001095 -0.003025639) (-0.007050457 0.003001138 -0.003021495) (-0.007048103 0.002000966 -0.002518846) (0.007059679 0.001000416 -0.003023277) (0.007051159 0.003001201 -0.003020289) (0.007050152 0.002000707 -0.00251721) (-0.007049049 0.005000983 -0.003020614) (-0.007060303 0.007001538 -0.003024193) (-0.007052481 0.00600106 -0.002517605) (0.007049769 0.005002141 -0.003019215) (0.007064254 0.007003592 -0.003024486) (0.007053896 0.00600257 -0.002517221) (-0.007068932 0.009003163 -0.003025551) (-0.007069743 0.0100035 -0.002521389) (0.007077225 0.009003744 -0.003027337) (0.007078777 0.01000457 -0.002522282) (-0.005056519 0.0210067 -0.003026006) (-0.005061903 0.02200683 -0.002519979) (0.005068232 0.02100675 -0.003032504) (0.005070925 0.0220079 -0.002528466) (-0.003053688 0.02901805 -0.003050445) (-0.002541183 0.03001971 -0.003056075) (-0.003054774 0.03001893 -0.002537337) (0.003058313 0.02902472 -0.003073817) (0.002546695 0.03002534 -0.003076573) (0.003063419 0.03002658 -0.002561941) (-0.005072926 -0.02501112 -0.001008303) (-0.005080039 -0.0260117 -0.0005032221) (0.005081116 -0.02501102 -0.001014275) (0.005085318 -0.02601405 -0.0005074029) (-0.00706678 -0.01300491 -0.001007874) (-0.00706707 -0.01400419 -0.0005040669) (0.007057052 -0.01300194 -0.001007293) (0.007055122 -0.01400168 -0.0005044639) (-0.007063452 -0.01000422 -0.001509765) (-0.007061076 -0.01100395 -0.00100645) (-0.007064808 -0.009003367 -0.001005614) (-0.00706194 -0.01000318 -0.0005029432) (0.007052493 -0.01000234 -0.001508858) (0.007045926 -0.01100172 -0.001005952) (0.007048244 -0.009002205 -0.001004579) (0.007041656 -0.01000159 -0.0005022669) (-0.007060563 0.01000218 -0.001510756) (-0.007061685 0.009001456 -0.001006211) (-0.007058388 0.01100245 -0.001008086) (-0.007060159 0.01000156 -0.0005039674) (0.007070026 0.01000401 -0.001511697) (0.007067547 0.009002445 -0.001006252) (0.007068177 0.01100412 -0.001007989) (0.007067331 0.01000261 -0.0005025206) (-0.007063075 0.01300445 -0.001010689) (-0.007064071 0.01400528 -0.0005074822) (0.007074879 0.01300639 -0.001010699) (0.007071533 0.01400678 -0.00050517) (-0.005076211 0.02501322 -0.00100883) (-0.005081297 0.02601566 -0.0005045041) (0.005081009 0.02501314 -0.001010426) (0.005087053 0.02601539 -0.000504088) (-0.0050821 -0.02601218 0.0005048522) (-0.005078351 -0.02501192 0.001009532) (0.005082025 -0.02601509 0.0005064808) (0.005074646 -0.02501233 0.001011745) (-0.007063829 -0.01400323 0.0005014207) (-0.007059713 -0.01300367 0.001003902) (0.00705752 -0.01400095 0.0005029011) (0.007057772 -0.01300067 0.001007061) (-0.007059362 -0.01000302 0.0005019746) (-0.007056239 -0.0110037 0.001004411) (-0.007059206 -0.009002844 0.001004621) (-0.007054954 -0.01000382 0.001507595) (0.007041303 -0.01000128 0.0005029327) (0.00704575 -0.01100097 0.00100652) (0.00704771 -0.009001814 0.001005741) (0.007050452 -0.01000161 0.001509976) (-0.007059508 0.01000082 0.0005015051) (-0.007060785 0.009000621 0.001005188) (-0.007056638 0.01100031 0.001004124) (-0.007057892 0.01000009 0.001508854) (0.007067328 0.01000181 0.0005056077) (0.007068554 0.009001024 0.001009013) (0.007066593 0.01100223 0.001010372) (0.007068477 0.01000124 0.001513903) (-0.007062926 0.01400324 0.0004989542) (-0.007059602 0.01300106 0.001002119) (0.007066939 0.01400555 0.0005052886) (0.007069018 0.01300452 0.001011126) (-0.005081307 0.02601414 0.00050542) (-0.005077934 0.02501158 0.001011445) (0.005091241 0.0260158 0.0005070614) (0.005085755 0.0250139 0.001011619) (-0.003055183 -0.03001602 0.002541592) (-0.002540998 -0.03001901 0.003060547) (-0.00305244 -0.02901502 0.003054887) (0.003055305 -0.03001614 0.002538738) (0.002538066 -0.03001473 0.003055413) (0.00305236 -0.02901443 0.003055809) (-0.005065185 -0.02201044 0.002525963) (-0.005060185 -0.02100791 0.003030686) (0.005071636 -0.02201062 0.002528377) (0.00506936 -0.02101084 0.003038026) (-0.007056641 -0.01000457 0.002515892) (-0.007060299 -0.009003449 0.003022748) (0.007062258 -0.0100022 0.002518642) (0.007062168 -0.009002245 0.003020692) (-0.007050625 -0.006000571 0.002515075) (-0.007055505 -0.007001324 0.003020473) (-0.00704928 -0.00500019 0.003019405) (0.007057226 -0.006002742 0.00251709) (0.007062999 -0.007002594 0.00302149) (0.007056678 -0.005002521 0.003021641) (-0.00705041 -0.001999676 0.002519495) (-0.007053369 -0.003000084 0.003023063) (-0.007061696 -0.001000276 0.00302627) (0.007051172 -0.002001642 0.002517192) (0.00705239 -0.003001973 0.003020756) (0.007057653 -0.001001486 0.003022539) (-0.00704985 0.002000606 0.002518286) (-0.007060646 0.001000335 0.00302507) (-0.007052229 0.003000981 0.003021779) (0.007052154 0.001999633 0.00251501) (0.007058821 0.00099921 0.003020659) (0.007055864 0.002999693 0.003017359) (-0.007051015 0.006002199 0.002517222) (-0.007048678 0.00500196 0.003020498) (-0.007055954 0.007002009 0.003024143) (0.007055711 0.005999575 0.00251359) (0.007052935 0.00499959 0.003016179) (0.007060811 0.006999564 0.003019942) (-0.007063266 0.01000011 0.002519612) (-0.007062523 0.009000975 0.003026629) (0.007072281 0.0100011 0.002524333) (0.007070114 0.009000809 0.003028442) (-0.005065281 0.02200856 0.002528884) (-0.005058631 0.02100622 0.003032573) (0.005070543 0.02200929 0.002526082) (0.005067625 0.02100914 0.003034765) (-0.003051136 0.03001784 0.002534491) (-0.003051062 0.02901372 0.003049043) (-0.00253823 0.03001729 0.003052568) (0.003061986 0.03002476 0.002547101) (0.003057205 0.02902255 0.00305894) (0.002544449 0.03002441 0.003066811) (-0.0005046478 -0.0260184 0.005091946) (-0.001011338 -0.02501668 0.005084507) (0.0005093025 -0.02601863 0.005099393) (0.001014075 -0.02501568 0.005087561) (-0.002526861 -0.02201193 0.005075207) (-0.003031074 -0.02100786 0.005068146) (0.002529095 -0.0220098 0.005069477) (0.003035877 -0.02100861 0.005065603) (-0.005054173 -0.01800587 0.004547279) (-0.004545915 -0.01800492 0.005058529) (-0.005052238 -0.01700641 0.005054526) (0.005063264 -0.01800449 0.004555519) (0.004551261 -0.01800451 0.005059267) (0.005056036 -0.01700268 0.005055901) (-0.00504196 -0.01400472 0.004538504) (-0.005043451 -0.01500568 0.005047642) (-0.004536542 -0.0140045 0.005048293) (-0.005042927 -0.01300451 0.005046921) (0.005049889 -0.01400225 0.004543277) (0.005050439 -0.01500205 0.005049176) (0.005049337 -0.0130024 0.005049815) (-0.005044637 0.01400252 0.004539171) (-0.005047136 0.01300321 0.005046706) (-0.004538825 0.01400341 0.005048067) (-0.005045751 0.01500351 0.005048642) (0.005053442 0.01400628 0.004547267) (0.005052389 0.01300537 0.005053527) (0.004545568 0.01400526 0.005053691) (0.005055045 0.01500707 0.005057178) (-0.005052177 0.01800339 0.004544825) (-0.005049818 0.01700361 0.005053457) (-0.00454566 0.01800356 0.005056103) (0.005063282 0.01800816 0.004553326) (0.005058604 0.01700772 0.005059249) (0.004551726 0.01800577 0.005058337) (-0.003034669 0.02100852 0.005065421) (-0.002529745 0.02201077 0.005074152) (0.003036989 0.02100795 0.005058118) (0.002531969 0.02201019 0.005064611) (-0.001014618 0.02501451 0.005087553) (-0.0005079118 0.02601581 0.005092443) (0.001012956 0.02501362 0.005084269) (0.0005057958 0.02601487 0.005092253) (-0.0005040317 -0.01400574 0.007066708) (-0.001007593 -0.01300453 0.007066418) (0.0005042042 -0.01400539 0.007069157) (0.001008055 -0.01300512 0.007070052) (-0.002518458 -0.01000167 0.007070225) (-0.003022799 -0.00900164 0.007066824) (-0.001006581 -0.01100283 0.007064106) (-0.001509817 -0.01000201 0.007065534) (-0.0005026522 -0.01000266 0.007062304) (-0.001005559 -0.009002247 0.007062963) (0.001007028 -0.01100296 0.007066751) (0.0005035257 -0.01000239 0.007063735) (0.001510128 -0.01000155 0.007069353) (0.001006826 -0.009001446 0.007065655) (0.003023748 -0.01000126 0.006560757) (0.002517902 -0.01000088 0.007074835) (0.00302282 -0.009001162 0.007069767) (-0.003019926 -0.00700114 0.007057719) (-0.002515925 -0.006001458 0.007055398) (-0.003021751 -0.005001218 0.007058377) (0.003023716 -0.007001344 0.007064139) (0.00251993 -0.006000886 0.007061261) (0.003024129 -0.005001125 0.007059961) (-0.003024854 -0.003001286 0.007062986) (-0.002520601 -0.002001167 0.007056522) (-0.003025069 -0.001001079 0.007062423) (0.003024254 -0.003000957 0.007061536) (0.002519011 -0.002000464 0.007055588) (0.003023785 -0.001000423 0.007061578) (-0.003025267 0.001000068 0.007063588) (-0.002521084 0.00200042 0.00705757) (-0.003026812 0.003000946 0.007065352) (0.003025683 0.001000635 0.007064462) (0.002521329 0.002000627 0.007059972) (0.003027568 0.003001006 0.007067432) (-0.003024221 0.005001448 0.007061891) (-0.002518087 0.006001579 0.00705845) (-0.003021223 0.007001708 0.007061432) (0.003025805 0.005001015 0.007067037) (0.002520647 0.006001137 0.007065928) (0.003025426 0.007001591 0.007070816) (-0.0030213 0.009001529 0.007063363) (-0.002516173 0.01000142 0.007064831) (-0.001006181 0.009002359 0.007063038) (-0.001508713 0.01000185 0.007063122) (-0.0005027668 0.01000244 0.007062637) (-0.00100565 0.01100203 0.007063165) (0.001007735 0.00900241 0.007066501) (0.000503706 0.01000271 0.007064179) (0.001511494 0.010003 0.007069612) (0.001007079 0.01100313 0.007066367) (0.00302592 0.009002396 0.007076292) (0.002520913 0.01000293 0.007077032) (-0.001006158 0.01300217 0.007067493) (-0.0005034903 0.01400221 0.007069961) (0.001006607 0.01300328 0.007070582) (0.0005028808 0.01400264 0.007071489) (-0.002016161 0.003000887 -0.007059639) (-0.002519784 0.004001474 -0.007063004) (-0.002014344 0.005001472 -0.007057984) (4.974206e-07 -0.02501204 -0.005064973) (-0.0005031893 -0.02401042 -0.005062138) (0.0005046928 -0.02401124 -0.005062699) (-0.004035445 -0.01700477 -0.005049463) (-0.004537761 -0.01600562 -0.005048254) (-0.004030871 -0.01500418 -0.005044618) (0.004042356 -0.01700587 -0.005059196) (0.004548555 -0.01600596 -0.005059941) (0.004042502 -0.01500515 -0.005057483) (-0.004038677 0.01500521 -0.005053427) (-0.004546061 0.01600564 -0.005056162) (-0.00404242 0.01700525 -0.005054281) (0.00404168 0.0150044 -0.00505332) (0.004548997 0.01600529 -0.005055628) (0.004045381 0.01700621 -0.005055903) (-0.0005078454 0.02401234 -0.005068882) (0.0005015819 0.02401105 -0.005065858) (-2.973498e-06 0.02501315 -0.005071117) (-0.005046256 -0.01600616 -0.004540114) (-0.005047898 -0.01700573 -0.004037015) (-0.005044382 -0.01500487 -0.004033296) (0.005053653 -0.0160047 -0.004547328) (0.005052049 -0.01700424 -0.00404084) (0.005050494 -0.0150038 -0.004040513) (-0.00505146 0.01600523 -0.004547022) (-0.005048869 0.0150047 -0.004039959) (-0.005049861 0.01700522 -0.004040364) (0.005061844 0.01600541 -0.00454969) (0.005060046 0.01500497 -0.004043449) (0.005064714 0.01700578 -0.004046389) (-0.007069106 -0.008003977 -0.00251706) (-0.007066323 -0.009004676 -0.002013555) (-0.007065143 -0.007002975 -0.002011905) (-0.007065331 -0.008003436 -0.001508594) (0.007061984 -0.008003209 -0.00251525) (0.007058213 -0.0090029 -0.002011934) (0.007054889 -0.007002627 -0.002010107) (0.007052957 -0.008002595 -0.001507164) (-0.007056694 -0.00400127 -0.002516863) (-0.007058798 -0.005001727 -0.002012532) (-0.007049274 -0.00300106 -0.002014063) (0.007054737 -0.004001413 -0.002515207) (0.007054371 -0.005001906 -0.002010384) (0.007054178 -0.003001138 -0.0020124) (-0.007052055 4.616821e-07 -0.002520828) (-0.007044069 -0.001000119 -0.002015639) (-0.007041722 0.001000654 -0.002015498) (0.007056133 -7.619933e-08 -0.002518878) (0.007051279 -0.001000483 -0.002014151) (0.007046025 0.00100026 -0.002013846) (-0.007045682 0.004000964 -0.00251679) (-0.007041672 0.003000953 -0.002014243) (-0.007048081 0.005000945 -0.002013402) (0.007046674 0.004001444 -0.002515354) (0.00704345 0.003001 -0.002012468) (0.007047773 0.005001502 -0.002012247) (-0.007060455 0.008001857 -0.002518767) (-0.007056018 0.007001224 -0.002013354) (-0.007060973 0.009002044 -0.002014283) (-0.007059711 0.008001354 -0.001509274) (0.007066782 0.00800364 -0.002520633) (0.007059141 0.007002524 -0.002014359) (0.007068988 0.009003824 -0.002015906) (0.007063983 0.008002361 -0.001510316) (-0.005072259 -0.02401083 -0.0005038021) (-0.005077047 -0.02501133 7.399395e-07) (-0.00507538 -0.02401141 0.00050483) (0.00507563 -0.02401092 -0.0005068853) (0.005078205 -0.02501304 -5.459299e-07) (0.005072255 -0.02401143 0.0005054705) (-0.007059921 -0.01200392 -0.0005037034) (-0.007061191 -0.01300375 -1.11663e-06) (-0.00705798 -0.01100324 -6.699738e-07) (-0.007057255 -0.01200354 0.0005015536) (0.007042167 -0.01200115 -0.0005033033) (0.00704638 -0.01300078 -5.816537e-07) (0.00703753 -0.01100096 5.015347e-08) (0.007042408 -0.01200055 0.0005029359) (-0.007067269 -0.008002474 -0.0005026062) (-0.007064776 -0.009002668 -2.288728e-07) (-0.007064613 -0.008002161 0.0005022395) (0.007053857 -0.008002345 -0.0005015455) (0.00704667 -0.009001841 5.421231e-07) (0.007053917 -0.00800225 0.0005030172) (-0.007065705 0.008001006 -0.0005031162) (-0.007064374 0.00900103 -7.097374e-07) (-0.007065583 0.008000792 0.0005022227) (0.007065372 0.008001214 -0.0005019892) (0.007068839 0.009001549 1.763288e-06) (0.007066803 0.008000778 0.0005052419) (-0.007057119 0.01200302 -0.0005062543) (-0.007056559 0.01100158 -2.148309e-06) (-0.007058809 0.01300342 -4.11126e-06) (-0.007055763 0.01200144 0.000499768) (0.007064911 0.01200446 -0.000504016) (0.007064013 0.01100288 1.363071e-06) (0.007063723 0.01300506 7.299777e-07) (0.007063193 0.01200352 0.0005060553) (-0.005072957 0.02401164 -0.0005041726) (-0.005078251 0.02501301 3.542757e-07) (-0.005073832 0.02401071 0.0005052787) (0.005081059 0.02401225 -0.0005049279) (0.005087067 0.0250141 8.480761e-07) (0.005083274 0.0240126 0.0005054912) (-0.007056544 -0.008002307 0.001507557) (-0.007054654 -0.009003561 0.002011559) (-0.007053324 -0.0070014 0.002011098) (-0.007054659 -0.008002497 0.002516049) (0.007053173 -0.008002334 0.001508802) (0.007055223 -0.009002182 0.002013185) (0.00705606 -0.007002677 0.00201239) (0.007059438 -0.008002571 0.002516477) (-0.007048345 -0.004999753 0.002011537) (-0.00704349 -0.002999031 0.002013596) (-0.007047329 -0.003999651 0.002516198) (0.007055393 -0.005002649 0.002012855) (0.007050107 -0.003001971 0.002013014) (0.007051973 -0.004002341 0.002516514) (-0.007042677 -0.00099938 0.002015676) (-0.007042614 0.001000444 0.002014935) (-0.00705303 2.230252e-07 0.002520492) (0.007046711 -0.001001157 0.002013588) (0.007045426 0.0009995386 0.002012537) (0.007052964 -9.573505e-07 0.002517432) (-0.007043218 0.003000863 0.002012862) (-0.007048378 0.005001655 0.002012402) (-0.007046847 0.004001415 0.00251627) (0.007046528 0.002999866 0.002010644) (0.007051684 0.004999804 0.002010185) (0.007051098 0.003999757 0.002512863) (-0.007058513 0.00800089 0.00150915) (-0.007054656 0.007001544 0.002013491) (-0.007057734 0.009000548 0.002013996) (-0.007056742 0.008001357 0.002519622) (0.007066069 0.008000353 0.001511272) (0.007061565 0.006999828 0.002012543) (0.007068226 0.009000572 0.00201688) (0.007065699 0.008000021 0.002518756) (1.219417e-06 -0.02501563 0.005088163) (-0.0005050744 -0.02401412 0.005079784) (0.0005064535 -0.0240131 0.005080396) (-0.005049385 -0.01700498 0.004038775) (-0.005042971 -0.01500446 0.004034898) (-0.005047397 -0.01600547 0.004542445) (-0.004038329 -0.01700408 0.005055244) (-0.004541124 -0.01600484 0.005053113) (-0.004034324 -0.0150039 0.005050045) (0.005057304 -0.01700374 0.004046116) (0.005050903 -0.0150026 0.004040768) (0.005055094 -0.0160026 0.004547815) (0.004042732 -0.01700362 0.005055523) (0.004545502 -0.01600239 0.005052648) (-0.005044178 0.01500242 0.004035666) (-0.005046795 0.01700312 0.004037756) (-0.005046987 0.01600315 0.004542804) (-0.004036059 0.01500333 0.005049704) (-0.004541795 0.01600356 0.005053199) (-0.004038677 0.01700354 0.005054555) (0.005054 0.01500661 0.004043163) (0.005060309 0.01700833 0.004046732) (0.005058361 0.01600797 0.004551226) (0.004041804 0.01500487 0.005053189) (0.004549253 0.01600609 0.005057853) (0.004044516 0.0170052 0.005055675) (-0.0005073518 0.02401218 0.005080003) (0.000505532 0.02401148 0.00507723) (-1.064506e-06 0.02501338 0.005086886) (2.377728e-07 -0.01300494 0.007062731) (-0.0005033984 -0.01200386 0.007060931) (0.0005039661 -0.01200413 0.007063089) (3.340832e-07 -0.01100319 0.00706068) (-0.002013196 -0.009001563 0.007064847) (-0.002516256 -0.008001372 0.007061265) (-0.001508579 -0.008001916 0.007060987) (-0.002011792 -0.0070017 0.007057584) (6.652409e-07 -0.009002279 0.007062374) (-0.0005020872 -0.008002243 0.007058956) (0.000503945 -0.008001499 0.00706058) (0.002014047 -0.009000773 0.007069596) (0.001510865 -0.008000831 0.007065326) (0.002519046 -0.008000896 0.007067792) (0.002015598 -0.007000727 0.007063977) (-0.002013228 -0.005001939 0.007051886) (-0.002518578 -0.004001476 0.007055799) (-0.002015588 -0.003001424 0.007048606) (0.002015974 -0.005000554 0.007055174) (0.002519726 -0.004000692 0.007056626) (0.00201507 -0.003000331 0.007048759) (-0.002016616 -0.001000768 0.007047755) (-0.002520595 -4.964296e-07 0.007056202) (-0.002016438 0.0009999831 0.00704803) (0.002014465 -0.001000056 0.007047171) (0.002519296 1.309687e-07 0.007056079) (0.002015653 0.001000291 0.007049717) (-0.002016268 0.003000577 0.007049125) (-0.002520554 0.004001047 0.007057567) (-0.002015424 0.005001173 0.007053234) (0.002017026 0.003000417 0.007054514) (0.002521618 0.004000749 0.007062701) (0.002016725 0.00500067 0.007059883) (-0.002013785 0.007001789 0.007059579) (-0.002516432 0.008001634 0.007061122) (-0.001509804 0.008002077 0.007061331) (-0.002012282 0.009001661 0.007062121) (-0.0005036603 0.008002574 0.007060114) (0.000504028 0.008002095 0.007061504) (2.073904e-07 0.009002629 0.00706335) (0.002016472 0.007001453 0.007066656) (0.001512109 0.008001876 0.007066906) (0.002520824 0.008001983 0.007071732) (0.002016252 0.009002486 0.007071879) (3.413167e-07 0.01100246 0.007061107) (-0.0005028295 0.01200207 0.007061749) (0.0005032748 0.01200271 0.007063172) (-1.557385e-07 0.01300215 0.007064097) (-0.001684751 -0.007874121 -0.009658593) (-0.001901888 -0.00734181 -0.009663927) (-0.00148739 -0.007488739 -0.009717573) (-0.001727604 -0.006989064 -0.009725886) (-0.001819683 -0.00762897 -0.009571963) (-7.074807e-07 -0.007501391 -0.009819303) (0.0002483368 -0.007999894 -0.009786185) (0.0002513731 -0.007003651 -0.009810372) (0.0002497816 -0.007500758 -0.009564636) (0.0004998812 -0.007500001 -0.009790831) (-0.001741848 -0.004001073 -0.009764119) (-0.001936045 -0.003501598 -0.009759685) (-0.001507839 -0.003502803 -0.009798995) (-0.001745286 -0.003002147 -0.009803328) (-0.00176808 -0.00350064 -0.009581372) (0.0002488259 -0.003997508 -0.009686148) (0.002234097 1.48332e-06 -0.009741806) (0.002004439 0.0004865139 -0.009780828) (-0.001508239 0.004496173 -0.009818319) (0.0002492519 0.003997366 -0.009696636) (0.000250039 0.004495241 -0.00992191) (0.0002509455 0.004998388 -0.009723245) (0.0002508329 0.004497812 -0.009471692) (0.0004988115 0.00449721 -0.009695661) (-0.001683892 0.007879137 -0.009667809) (-0.001431948 0.008486854 -0.009672291) (-0.001769512 0.008512234 -0.009555754) (0.000251116 0.008000124 -0.009773087) (0.0002495817 0.008997719 -0.009732037) (0.0002510626 0.008499837 -0.009509361) (0.0004985914 0.00850019 -0.009747097) (-0.001007051 -0.01900186 -0.007573432) (-0.001510206 -0.01800145 -0.007570671) (-0.001512818 -0.01900207 -0.0070684) (1.74063e-06 -0.0190103 -0.007579877) (0.001004939 -0.01900575 -0.007572059) (0.0005045162 -0.01800659 -0.007572173) (0.0005035577 -0.01900558 -0.007071568) (-0.003023686 -0.01500474 -0.007570171) (-0.003530668 -0.01400419 -0.007580554) (-0.003529162 -0.01500511 -0.007077987) (-0.001508846 -0.01600284 -0.007565841) (-0.002013391 -0.0150037 -0.007565561) (-0.001003582 -0.01500343 -0.007577321) (-0.001506749 -0.01400358 -0.007571561) (-0.00150855 -0.015003 -0.007067085) (0.0005043532 -0.01600464 -0.00757865) (2.441792e-06 -0.01500435 -0.007587482) (0.00100719 -0.01500438 -0.007578631) (0.0005051163 -0.01400425 -0.007581418) (0.0005047254 -0.01500393 -0.007074182) (0.002522627 -0.01600699 -0.007573097) (0.003023788 -0.01500807 -0.007574512) (0.002523221 -0.01400681 -0.007574273) (0.002523125 -0.0150067 -0.007071733) (0.002015467 -0.01500625 -0.00757) (-0.003537404 -0.01200375 -0.007577986) (-0.003026601 -0.01100266 -0.007569295) (-0.003535096 -0.01000297 -0.007564763) (-0.003533123 -0.01100309 -0.0070654) (-0.002009474 -0.01100201 -0.007568031) (-0.001001005 -0.0110011 -0.007548388) (-0.001505209 -0.01000121 -0.00755085) (-0.001505719 -0.01100143 -0.007053738) (-0.001503825 -0.01200172 -0.007562282) (0.0005041118 -0.01100065 -0.008042224) (2.848215e-06 -0.01100101 -0.00754421) (0.001006725 -0.01100107 -0.007547451) (0.0005046563 -0.01000105 -0.007547562) (0.000504649 -0.01100122 -0.007045674) (0.000504731 -0.01200156 -0.007549909) (0.002521796 -0.01200535 -0.007565162) (0.00201381 -0.01100246 -0.007557342) (0.00302402 -0.01100551 -0.007561493) (0.002517286 -0.01000309 -0.00756155) (0.002519505 -0.01100401 -0.007059135) (-0.00353632 -0.008004065 -0.007569755) (-0.004042456 -0.00700268 -0.007571697) (-0.00302698 -0.007002677 -0.007567876) (-0.003529034 -0.00600189 -0.007565792) (-0.003533146 -0.007002366 -0.007063831) (1.420273e-06 -0.006000592 -0.007037838) (-0.00100559 -0.004000263 -0.00703669) (-0.001005977 -0.006000659 -0.006035705) (-0.001507138 -0.007000952 -0.008043588) (-0.0005004666 -0.007000655 -0.008040831) (-0.00150745 -0.005000612 -0.008046238) (-0.0005016648 -0.005000267 -0.008034852) (-0.001507011 -0.008001046 -0.007543553) (-0.0005003097 -0.008000744 -0.007540197) (-0.002012859 -0.007001382 -0.007550504) (-0.002011848 -0.005000737 -0.007550381) (0.002015552 -0.007001056 -0.007565031) (0.001007312 -0.004000693 -0.007039827) (0.001007431 -0.006000928 -0.006038795) (0.0005059 -0.007001209 -0.008064053) (0.001514901 -0.007000683 -0.008082201) (0.0005046346 -0.005000638 -0.008040967) (0.00151289 -0.00500153 -0.008067619) (0.000505143 -0.008001134 -0.00755415) (0.001511262 -0.008001265 -0.007563258) (0.002015357 -0.005001192 -0.007560979) (0.00252125 -0.007000567 -0.008076256) (0.002518228 -0.008001815 -0.007564275) (0.003023466 -0.007001898 -0.007567438) (0.002519233 -0.006001188 -0.007562853) (0.002518222 -0.007001582 -0.007059115) (0.004535247 -0.008005796 -0.007564695) (0.004538624 -0.006005324 -0.007565751) (0.004538899 -0.007006478 -0.007068312) (0.00403286 -0.007005551 -0.007565993) (-0.003526214 -0.004000316 -0.007572407) (-0.004034053 -0.002999314 -0.007584124) (-0.003022214 -0.002999785 -0.007571588) (-0.003528219 -0.00199885 -0.007581722) (-0.003527593 -0.002999765 -0.00707092) (6.04184e-08 -0.001999894 -0.00702748) (-0.001007641 2.120062e-07 -0.00703769) (-0.001007162 -0.002000039 -0.006035405) (-0.001510547 -0.003000252 -0.008056117) (-0.0005027637 -0.002999768 -0.00802695) (-0.001514117 -0.001000231 -0.008060856) (-0.0005035549 -0.0009994218 -0.00802231) (-0.002013792 -0.003000216 -0.007558564) (-0.002016478 -0.001000132 -0.007564984) (0.002015787 -0.003001048 -0.007559268) (0.001006718 1.836572e-07 -0.007032273) (0.001006954 -0.002000279 -0.00603387) (0.0005035806 -0.003000059 -0.008024778) (0.00151218 -0.00300137 -0.008056239) (0.0005030578 -0.0009991135 -0.00801789) (0.001511067 -0.001000082 -0.008045778) (0.002015431 -0.001000512 -0.007555294) (0.00252202 -0.003001138 -0.008073658) (0.003025263 -0.003001327 -0.007568094) (0.002520368 -0.00200092 -0.007565076) (0.002519152 -0.003001053 -0.007057873) (0.002519555 -0.004001267 -0.007562673) (0.004542928 -0.004002262 -0.007576345) (0.004034347 -0.003001948 -0.007575524) (0.004533329 -0.002001684 -0.007572806) (0.004537953 -0.003002353 -0.007069925) (-0.003529827 6.449047e-07 -0.007583728) (-0.004040137 0.001002708 -0.007592876) (-0.00302729 0.001000591 -0.007582874) (-0.00353601 0.002001582 -0.007588209) (-0.003532599 0.001001421 -0.007079087) (-4.89733e-07 0.002000366 -0.007029395) (-0.00100749 0.004000702 -0.007044234) (-0.0010078 0.002000507 -0.00603758) (-0.001513361 0.001000252 -0.008059952) (-0.0005037741 0.001000274 -0.008021968) (-0.001513241 0.003000718 -0.008065126) (-0.0005041751 0.003000089 -0.00803073) (-0.002017179 0.001000288 -0.007567087) (-0.002016908 0.003000912 -0.007567026) (0.002016044 0.000999946 -0.007556165) (0.001006687 0.004000784 -0.0070421) (0.001007016 0.002000365 -0.006034991) (0.0005025971 0.001000507 -0.008017519) (0.001511361 0.001000217 -0.008044613) (0.0005025629 0.003000285 -0.008026272) (0.001510926 0.003000718 -0.008052853) (0.002015574 0.003000584 -0.007558665) (0.002522526 0.0009995981 -0.008077606) (0.00252067 -4.937639e-07 -0.007565116) (0.003027101 0.0009998077 -0.007575206) (0.002521642 0.002000135 -0.007567578) (0.002520179 0.0009998885 -0.007060178) (0.004527093 -1.121946e-06 -0.00755812) (0.004038191 0.0009999748 -0.007581829) (0.004546099 0.002000348 -0.007585603) (0.004533568 0.0009995767 -0.007062296) (-0.004030321 0.005002387 -0.007562129) (-0.003531836 0.004002127 -0.007573056) (-0.003021995 0.005002355 -0.007565861) (-0.003521986 0.006003171 -0.007561839) (-0.00352687 0.005002474 -0.00706243) (2.216132e-07 0.006000944 -0.007040908) (-0.00150843 0.008001772 -0.007551061) (-0.001006778 0.006001135 -0.006039949) (-0.001512927 0.00500126 -0.008071537) (-0.0005036134 0.005000565 -0.008045318) (-0.00151035 0.007001565 -0.008064967) (-0.000502138 0.007000868 -0.008045386) (-0.0005019483 0.00800091 -0.007539806) (-0.002014959 0.005001545 -0.007565202) (-0.002013002 0.007002342 -0.007562006) (0.00201371 0.005001322 -0.007562523) (0.0005037485 0.00800144 -0.007544317) (0.001007031 0.006001078 -0.006039679) (0.0005036566 0.005001 -0.008046866) (0.00151075 0.005001992 -0.008072444) (0.0005047217 0.007001882 -0.008054475) (0.001511478 0.00700317 -0.008077001) (0.001509475 0.008002019 -0.007554867) (0.002012221 0.007001775 -0.007560375) (0.002517609 0.005001185 -0.008070702) (0.002519785 0.004000784 -0.007564768) (0.00302335 0.005000903 -0.007564235) (0.002516208 0.006001276 -0.007561358) (0.002518077 0.005000987 -0.007058226) (0.004547775 0.00400108 -0.007581253) (0.004536074 0.006001681 -0.007557994) (0.004542678 0.005001497 -0.007066106) (0.004036143 0.005001196 -0.007568418) (-0.004032131 0.009005818 -0.007587148) (-0.003021265 0.009004379 -0.007571623) (-0.003525754 0.01000328 -0.007568357) (-0.003525792 0.009004358 -0.007071314) (-0.003523473 0.008005258 -0.007577209) (-0.00150669 0.009001923 -0.008047967) (-0.002011916 0.009003147 -0.00755902) (-0.00100449 0.009001145 -0.00754146) (-0.001508146 0.01000217 -0.007551992) (-0.001508238 0.009001911 -0.007048321) (0.0005036524 0.009001571 -0.008040469) (7.568243e-07 0.009000962 -0.007537094) (0.001006332 0.00900181 -0.007545671) (0.0005030381 0.01000132 -0.007538956) (0.0005032505 0.009001272 -0.007039987) (0.00201267 0.009002174 -0.007552994) (0.0025151 0.00800173 -0.007556145) (0.003020783 0.009002333 -0.007558579) (0.002516537 0.01000296 -0.007557328) (0.002516318 0.009002194 -0.007053605) (0.004538003 0.008004832 -0.007562573) (0.004537704 0.009003882 -0.007068609) (0.004034751 0.0090034 -0.007571287) (-0.003533821 0.01200484 -0.007568043) (-0.003030042 0.01300745 -0.007574908) (-0.003529294 0.01400964 -0.007581332) (-0.003531584 0.01300652 -0.007074363) (-0.001509967 0.0120021 -0.00756127) (-0.002016418 0.01300413 -0.007573897) (-0.001006854 0.01300103 -0.007563855) (-0.001511323 0.01400249 -0.007575165) (-0.001511279 0.01300248 -0.007065212) (0.0005019826 0.01200134 -0.007548334) (-8.862045e-07 0.01300107 -0.007563963) (0.001004429 0.01300271 -0.007563908) (0.0005012414 0.01400241 -0.007579783) (0.0005017699 0.01300183 -0.007059756) (0.003022476 0.01300526 -0.007566363) (0.002515294 0.01400382 -0.00756631) (0.002518166 0.01300405 -0.007065742) (0.002517618 0.01200457 -0.007567027) (0.002011423 0.01300342 -0.00756544) (-0.001512137 0.01600324 -0.007570956) (-0.002017482 0.01700459 -0.007571901) (-0.001013694 0.01700412 -0.007575998) (-0.001516722 0.01800282 -0.007581018) (-0.001515585 0.01700403 -0.00707491) (-3.282633e-06 0.01700567 -0.007571787) (0.001006365 0.01700795 -0.007569737) (0.0005028755 0.01800805 -0.007570009) (0.0005017891 0.01700591 -0.00707026) (0.0005010142 0.01600521 -0.007576731) (0.002514421 0.01600352 -0.007562186) (0.002015435 0.01700356 -0.007562088) (0.002519098 0.01700468 -0.007067785) (-0.001512683 -0.02801702 -0.005576693) (-0.002020133 -0.0270128 -0.005571723) (-0.00100749 -0.02701416 -0.005570816) (-0.001513284 -0.02601204 -0.005572799) (-0.001516218 -0.02701532 -0.005076328) (0.000503848 -0.02801821 -0.005573288) (2.689394e-07 -0.02701529 -0.005575877) (0.001008745 -0.02701427 -0.005570079) (0.0005039769 -0.0260144 -0.005571779) (0.0005048727 -0.0270158 -0.005073014) (0.002534522 -0.02601339 -0.005586822) (0.002535242 -0.02701582 -0.005083746) (0.002025119 -0.02701284 -0.005574899) (-0.003528963 -0.02400592 -0.005557743) (-0.004028352 -0.02300408 -0.005547416) (-0.003024547 -0.02300497 -0.005557042) (-0.003529862 -0.02200543 -0.005555386) (-0.003531053 -0.02300551 -0.005055803) (9.594287e-07 -0.0220069 -0.005053224) (-0.001006735 -0.02000381 -0.005047118) (-0.001007976 -0.02200607 -0.004042749) (-0.001507257 -0.02300642 -0.006058807) (-0.0005015168 -0.02300928 -0.006066523) (-0.001508965 -0.02100304 -0.006055749) (-0.0005019132 -0.02100472 -0.006061374) (-0.00151123 -0.02400919 -0.005568048) (-0.0005028928 -0.02401153 -0.005567215) (-0.002016083 -0.02300546 -0.005557649) (0.002021791 -0.02301035 -0.005567238) (0.001008431 -0.02000502 -0.005050289) (0.001010317 -0.02200685 -0.004044646) (0.0005029787 -0.02301075 -0.00606864) (0.001510606 -0.02301041 -0.006065268) (0.0005031421 -0.02100627 -0.006062693) (0.001509405 -0.02100645 -0.006063185) (0.0005041007 -0.02401259 -0.005567963) (0.001514603 -0.02401183 -0.005568735) (0.002525369 -0.02301153 -0.006070877) (0.002530238 -0.02401246 -0.005577726) (0.003034745 -0.02301079 -0.005574407) (0.00252576 -0.02200915 -0.005566785) (0.002528479 -0.02300999 -0.00506905) (0.004542289 -0.02200577 -0.005563759) (0.004545738 -0.02300757 -0.005058154) (0.004040728 -0.02300734 -0.005564902) (-0.005051816 -0.01900565 -0.00556006) (-0.005567487 -0.01800649 -0.005566849) (-0.00555686 -0.01900643 -0.005050007) (-0.002014821 -0.0180029 -0.005045667) (-0.003022234 -0.01600319 -0.005044631) (-0.003024271 -0.01800362 -0.004035203) (-0.003530278 -0.01900564 -0.006061671) (-0.002520226 -0.01900319 -0.006061078) (-0.003527766 -0.01700437 -0.006063605) (-0.002519682 -0.0170031 -0.006062863) (-0.003533007 -0.02000584 -0.005559655) (-0.004038188 -0.01900562 -0.00555973) (-0.004035485 -0.01700503 -0.005554961) (9.193778e-07 -0.01800338 -0.005045284) (-0.001006106 -0.01600248 -0.005042656) (-0.001006832 -0.01800315 -0.004034932) (-0.001510814 -0.01900219 -0.006057967) (-0.0005027282 -0.01900324 -0.006058773) (0.002017102 -0.01800398 -0.005049803) (0.001008606 -0.0160032 -0.005044403) (0.001008951 -0.01800362 -0.004036623) (0.0005035258 -0.0190043 -0.006061147) (0.001510644 -0.01900436 -0.006065413) (0.00403909 -0.01900619 -0.00556689) (0.003027761 -0.0160043 -0.005050701) (0.003027454 -0.018004 -0.004039729) (0.00252125 -0.0190039 -0.00606892) (0.003533063 -0.01900462 -0.006069513) (0.002523266 -0.01700471 -0.006066551) (0.003537284 -0.01700628 -0.006073587) (0.00353393 -0.02000534 -0.005566257) (0.004044341 -0.01700673 -0.005566721) (0.00453952 -0.01900732 -0.006066254) (0.004542503 -0.02000747 -0.005572208) (0.005046597 -0.01900741 -0.005564009) (0.004548248 -0.01800803 -0.005568985) (0.004544744 -0.01900654 -0.00506312) (-0.005546343 -0.01601154 -0.00555129) (-0.00503824 -0.01500691 -0.005549332) (-0.005539836 -0.01400558 -0.005540784) (-0.005546307 -0.01500756 -0.005041569) (-0.002013426 -0.01400221 -0.005040659) (-0.003022531 -0.01200211 -0.005040277) (-0.00302213 -0.0140025 -0.004031557) (-0.003526595 -0.0150039 -0.006061843) (-0.003527841 -0.01300297 -0.006057947) (-0.004031103 -0.01500447 -0.005550583) (1.339541e-06 -0.01400232 -0.005040431) (-0.001005754 -0.01200169 -0.00503702) (-0.001006237 -0.01400208 -0.004031115) (0.002016841 -0.01400327 -0.005043451) (0.00100826 -0.01200216 -0.005037823) (0.001008464 -0.01400246 -0.004032143) (0.004045539 -0.01500593 -0.005566219) (0.003025422 -0.01200342 -0.005044351) (0.003025407 -0.01400317 -0.004035435) (0.002523114 -0.01500511 -0.006061812) (0.003537499 -0.0150064 -0.00607259) (0.003536862 -0.0130062 -0.006069254) (0.004555391 -0.01500701 -0.006079881) (0.004552525 -0.01600717 -0.005569575) (0.005060414 -0.01500648 -0.005570623) (0.004549769 -0.01400569 -0.005566874) (0.004548603 -0.01500543 -0.005059933) (-0.004033531 -0.01000198 -0.005040497) (-0.005042013 -0.008001622 -0.005038505) (-0.005043754 -0.01000236 -0.004031788) (-0.005559739 -0.01100352 -0.00606791) (-0.004542055 -0.01100273 -0.006057484) (-0.005550371 -0.009002265 -0.006051363) (-0.004544991 -0.009002041 -0.006055756) (-0.006070073 -0.01100445 -0.005561406) (-0.006049227 -0.009002662 -0.005540581) (-0.006066219 -0.01100402 -0.00454377) (-0.006057842 -0.009002815 -0.004535816) (-0.005555977 -0.01200342 -0.005551898) (-0.002014054 -0.01000141 -0.005036266) (-0.003023512 -0.008001283 -0.005037361) (-0.003022894 -0.01000157 -0.004029626) (1.009772e-06 -0.01000139 -0.00503422) (-0.001006394 -0.008000986 -0.005032785) (-0.001006601 -0.01000133 -0.00402986) (0.002015164 -0.01000215 -0.005037664) (0.001007459 -0.00800129 -0.00503402) (0.001007884 -0.01000165 -0.004030504) (0.004032359 -0.01000317 -0.005044372) (0.003022031 -0.008002164 -0.005038397) (0.003022991 -0.0100023 -0.004031268) (0.006065765 -0.01100691 -0.005575283) (0.005037692 -0.008002874 -0.005040617) (0.005041616 -0.01000289 -0.004034115) (0.004543914 -0.01100463 -0.006068517) (0.005557739 -0.01100561 -0.006078361) (0.004535296 -0.009003691 -0.006056871) (0.005538937 -0.009003462 -0.006051688) (0.006044817 -0.009004004 -0.005545285) (0.006060994 -0.01100382 -0.004548975) (0.006052527 -0.009003653 -0.00453729) (0.00555912 -0.01200514 -0.005568047) (0.006568842 -0.01200543 -0.005567797) (0.006560217 -0.01000745 -0.00555623) (0.006566062 -0.0110056 -0.005061454) (-0.004032853 -0.006001033 -0.005039473) (-0.00504334 -0.004001004 -0.005043813) (-0.005040367 -0.006001133 -0.004030085) (-0.005552104 -0.007001844 -0.006051415) (-0.004543674 -0.007001531 -0.006054293) (-0.00555917 -0.005001868 -0.006061457) (-0.004542009 -0.005001117 -0.006056498) (-0.006051301 -0.007001804 -0.005542815) (-0.006061523 -0.005001932 -0.005553844) (-0.006052746 -0.007001441 -0.004532405) (-0.006051456 -0.005001147 -0.004535675) (-0.002014576 -0.006000745 -0.005034168) (-0.00302302 -0.004000451 -0.005038254) (-0.003022813 -0.006000817 -0.004029058) (0.002014261 -0.006001266 -0.005034846) (0.004029929 -0.006002139 -0.005039342) (0.003021266 -0.00400123 -0.005036538) (0.003021493 -0.006001473 -0.004028741) (0.006050413 -0.00700284 -0.005546984) (0.005039752 -0.004001972 -0.00504142) (0.005037794 -0.006002012 -0.004029761) (0.004535929 -0.007003627 -0.006054552) (0.005547219 -0.007003113 -0.006055185) (0.0045384 -0.005002805 -0.006056868) (0.005558048 -0.00500299 -0.006068133) (0.006062634 -0.005002683 -0.005559449) (0.006048739 -0.007002815 -0.004533367) (0.006051587 -0.00500209 -0.004535989) (0.006544253 -0.008002965 -0.005536125) (0.006564353 -0.006002868 -0.005554149) (0.006550886 -0.007002957 -0.00503672) (-0.004032198 -0.002000037 -0.005042803) (-0.005042448 8.753752e-07 -0.005044992) (-0.00503949 -0.002000221 -0.00403327) (-0.005556212 -0.003001772 -0.006065342) (-0.004540597 -0.003000545 -0.006060539) (-0.005549581 -0.001000233 -0.006061318) (-0.004540346 -0.0009993892 -0.006062044) (-0.006062382 -0.003002084 -0.005559495) (-0.006053639 -0.001000694 -0.005553533) (-0.006053447 -0.003001017 -0.004540838) (-0.006054379 -0.001000182 -0.004542201) (-0.002014965 -0.002000036 -0.005035579) (-0.003023517 5.088234e-07 -0.005040639) (-0.003022507 -0.002000055 -0.004030476) (0.002013855 -0.00200051 -0.005033356) (0.004027592 -0.002001081 -0.005036872) (0.003020768 -2.518519e-07 -0.005035954) (0.003020807 -0.002000629 -0.004027873) (0.006054399 -0.003002697 -0.005548097) (0.005033366 -4.516151e-07 -0.005033267) (0.005036584 -0.002000966 -0.004027958) (0.004534185 -0.00300216 -0.006054279) (0.005546869 -0.003002793 -0.006058565) (0.004526466 -0.001001471 -0.006046091) (0.005524747 -0.001002077 -0.006034096) (0.006034925 -0.001001747 -0.005524877) (0.006052398 -0.003001743 -0.004534022) (0.006048269 -0.001000889 -0.004528359) (0.00657378 -0.004002709 -0.00556216) (0.006556382 -0.002003435 -0.005534554) (0.006562003 -0.003002402 -0.005040731) (-0.004033861 0.002001419 -0.005044055) (-0.005045294 0.004002236 -0.005046029) (-0.005040212 0.002001251 -0.004033628) (-0.005555439 0.001003368 -0.006063019) (-0.004544019 0.001002302 -0.006063908) (-0.005568031 0.003004229 -0.006071335) (-0.004546506 0.003002717 -0.006063071) (-0.006058771 0.001002489 -0.005552937) (-0.006071959 0.003004182 -0.005561829) (-0.006056515 0.001001493 -0.00454108) (-0.006056307 0.003002236 -0.004540299) (-0.00201548 0.002000686 -0.005037058) (-0.003023427 0.004001362 -0.00504023) (-0.003022751 0.002000764 -0.00403128) (0.002014524 0.0020003 -0.005034365) (0.004030163 0.002000377 -0.005038641) (0.003023325 0.004000778 -0.005038241) (0.003021817 0.002000305 -0.004028812) (0.006037977 0.001000608 -0.00552816) (0.00504573 0.004001355 -0.005044665) (0.00503792 0.002000545 -0.004029371) (0.004529697 0.0009997253 -0.006047725) (0.005528908 0.0009999398 -0.006035484) (0.004540901 0.003000907 -0.006056791) (0.005560807 0.003002164 -0.006062315) (0.006066233 0.003002576 -0.005555643) (0.006048624 0.001000502 -0.004529917) (0.006054543 0.003001453 -0.004537057) (0.006517656 0.001000927 -0.00600948) (0.006531548 -5.299833e-07 -0.005517231) (0.006560837 0.002002379 -0.005543702) (0.00654975 0.00100069 -0.005030856) (-0.004030749 0.006002059 -0.005041079) (-0.005036862 0.008002519 -0.005040684) (-0.005038188 0.006001716 -0.004031803) (-0.005560131 0.005002984 -0.006066126) (-0.004541207 0.005002714 -0.00605671) (-0.005544755 0.007002796 -0.006053203) (-0.004534494 0.007003534 -0.006053707) (-0.006061732 0.005002827 -0.00555952) (-0.006047067 0.007002179 -0.005546225) (-0.006050526 0.005001889 -0.004538122) (-0.006048661 0.007001897 -0.004535176) (-0.002014383 0.006001388 -0.005036848) (-0.003021361 0.008002153 -0.005039757) (-0.003021999 0.006001424 -0.004030674) (-0.001006678 0.008001407 -0.005034783) (0.002015158 0.006001097 -0.005035896) (0.001007524 0.008001337 -0.00503451) (0.004033799 0.00600147 -0.005041392) (0.003023955 0.008001794 -0.005039331) (0.003023769 0.006001178 -0.004030319) (0.00607066 0.005001868 -0.005563542) (0.005045084 0.008002599 -0.00504582) (0.005042593 0.006001566 -0.004033135) (0.004543171 0.005001485 -0.006057615) (0.005564795 0.005002015 -0.006070216) (0.004539707 0.007002176 -0.006053868) (0.005555261 0.007002149 -0.006059315) (0.006062743 0.007002026 -0.005556084) (0.006056992 0.005001526 -0.004539762) (0.006060233 0.007001926 -0.004540416) (0.006584282 0.004002589 -0.005564812) (0.006575586 0.006000995 -0.005562843) (0.006567485 0.005001517 -0.005049073) (-0.004030053 0.01000284 -0.005043394) (-0.005550676 0.0120045 -0.005556409) (-0.005041118 0.01000297 -0.004033509) (-0.005538081 0.009003243 -0.006052948) (-0.004533618 0.00900364 -0.00605894) (-0.005545902 0.01100401 -0.006066231) (-0.004535988 0.01100329 -0.006062942) (-0.006041171 0.009003206 -0.005540517) (-0.006055943 0.01100565 -0.005558202) (-0.006052049 0.009003281 -0.004536326) (-0.006060121 0.01100493 -0.004543604) (-0.002014075 0.01000211 -0.005038642) (-0.003023145 0.01200312 -0.005044023) (-0.003022191 0.01000219 -0.00403175) (3.256734e-07 0.01000157 -0.005034914) (-0.001007192 0.01200209 -0.005038797) (-0.001006978 0.01000171 -0.004031404) (0.002015639 0.01000198 -0.005038098) (0.001007643 0.01200209 -0.005038233) (0.001008227 0.01000168 -0.00403128) (0.004035528 0.01000306 -0.005046673) (0.00302619 0.01200298 -0.005045079) (0.003025719 0.01000217 -0.004032666) (0.006057194 0.009004698 -0.005557057) (0.005049237 0.01000302 -0.004037839) (0.004538805 0.009003613 -0.006060305) (0.005548563 0.009004817 -0.006062601) (0.004544512 0.01100508 -0.006073018) (0.005563301 0.01100998 -0.006089071) (0.006068174 0.01100816 -0.005573841) (0.006064521 0.009003103 -0.004544635) (0.006070063 0.0110039 -0.004549032) (0.005561912 0.01200697 -0.00556988) (0.006562521 0.008002916 -0.005551301) (0.006562993 0.01000562 -0.005558674) (0.006568723 0.009003961 -0.005050806) (-0.005546968 0.01300474 -0.006055973) (-0.006054553 0.01300476 -0.005550059) (-0.005046258 0.01300489 -0.00555576) (-0.005552493 0.01400541 -0.005556974) (-0.005552807 0.01300481 -0.005051383) (-0.002015961 0.01400309 -0.005044563) (-0.003026923 0.01600423 -0.005050066) (-0.003024138 0.01400322 -0.004034923) (-0.003530499 0.01300532 -0.006066048) (-0.003533143 0.01500638 -0.006071182) (-0.004040608 0.01500621 -0.005561313) (-2.502647e-07 0.01400246 -0.005041449) (-0.001008719 0.01600324 -0.005045391) (-0.001007584 0.01400256 -0.004032898) (0.002016428 0.01400286 -0.005043025) (0.001007658 0.01600331 -0.005044157) (0.001008469 0.01400258 -0.004032566) (0.003028235 0.01600417 -0.005048627) (0.003027885 0.01400321 -0.004035476) (0.003535453 0.01500423 -0.006070147) (0.004043081 0.01500466 -0.005560865) (0.004547715 0.0130047 -0.006077915) (0.00505396 0.01300551 -0.005564983) (0.004545811 0.01400457 -0.005561206) (0.006569889 0.01200604 -0.005558332) (0.006562586 0.0130053 -0.005042551) (0.006057174 0.01300603 -0.005553119) (-0.005562032 0.01600621 -0.005567775) (-0.005056671 0.0170069 -0.00556249) (-0.005566704 0.01800776 -0.005565902) (-0.005557734 0.01700616 -0.005056649) (-0.002018356 0.01800419 -0.005049327) (-0.003538703 0.02000487 -0.005559671) (-0.003027551 0.01800417 -0.004037317) (-0.003535109 0.01700635 -0.006069828) (-0.002523822 0.01700482 -0.006068105) (-0.003536143 0.01900608 -0.006063454) (-0.002523785 0.01900542 -0.006067427) (-0.004044171 0.01700607 -0.005560895) (-0.004045308 0.0190048 -0.005559341) (-9.984486e-07 0.01800397 -0.005046207) (-0.001010099 0.02000506 -0.005049793) (-0.001009001 0.01800395 -0.004036787) (-0.001514341 0.01900487 -0.006063578) (-0.0005059503 0.01900442 -0.006060864) (0.002017356 0.01800462 -0.005047806) (0.001007431 0.02000502 -0.005048886) (0.001008605 0.01800407 -0.004036277) (0.0005023432 0.01900453 -0.006060653) (0.001510817 0.01900476 -0.006061811) (0.004047165 0.01700681 -0.005563007) (0.003030374 0.01800504 -0.004037996) (0.002521777 0.01700456 -0.006063194) (0.003537919 0.01700619 -0.006069761) (0.002521401 0.01900601 -0.006064215) (0.003537042 0.01900946 -0.006066243) (0.00404601 0.01901074 -0.005564927) (0.003538754 0.02001012 -0.005560755) (0.004556245 0.01700779 -0.006071471) (0.00455011 0.01600569 -0.005562173) (0.005056116 0.01700614 -0.005560459) (0.00455354 0.01800881 -0.005565908) (0.004551528 0.01700634 -0.005057811) (-0.003535446 0.02100537 -0.006059072) (-0.004043077 0.02100534 -0.005558134) (-0.003033518 0.02100517 -0.005559539) (-0.003539121 0.02200621 -0.005563672) (-0.003537594 0.02100501 -0.005055764) (-1.844172e-06 0.02200701 -0.005054263) (-0.001520099 0.02401398 -0.005577692) (-0.001011264 0.0220072 -0.004045139) (-0.001513728 0.02100507 -0.0060608) (-0.0005050484 0.02100502 -0.006059969) (-0.001515238 0.02300806 -0.006065528) (-0.0005051705 0.0230085 -0.006067577) (-0.002026402 0.02300924 -0.005570363) (-0.000507602 0.02401306 -0.005574369) (0.0005013357 0.02401162 -0.005570977) (0.001008587 0.02200699 -0.004043774) (0.0005018955 0.02100504 -0.006060185) (0.001509084 0.02100414 -0.006058196) (0.0005013986 0.02300804 -0.006066841) (0.001508258 0.02300549 -0.006057171) (0.002016695 0.02300665 -0.005555325) (0.001510445 0.02400966 -0.005565648) (0.002519612 0.02100516 -0.006054877) (0.003031297 0.02100818 -0.005555858) (0.002520706 0.02200621 -0.005552433) (0.004536168 0.02200718 -0.005548791) (0.004551827 0.02100993 -0.005053149) (0.004552089 0.0200145 -0.005564552) (0.004044599 0.02101135 -0.005559306) (-0.003046151 0.02501931 -0.005592113) (-0.003543841 0.02501449 -0.005074973) (-0.003540443 0.02401323 -0.005574676) (-0.001519375 0.0250177 -0.006081486) (-0.002030305 0.0250175 -0.005590603) (-0.00101377 0.02501591 -0.005577923) (-0.001522501 0.02602038 -0.00559042) (-0.001522382 0.02501646 -0.005083093) (0.000501082 0.02501452 -0.006079433) (-2.908298e-06 0.02501418 -0.005577163) (0.00100553 0.02501235 -0.005572054) (0.000501826 0.02601555 -0.005579753) (0.0005015205 0.02501266 -0.005070595) (0.003025969 0.02501171 -0.005566519) (0.002521124 0.02601242 -0.005573011) (0.00252371 0.02501187 -0.005067831) (0.002521847 0.02400906 -0.005561178) (0.002016367 0.02501117 -0.005566925) (-0.001006825 0.02901879 -0.005574215) (-0.00151919 0.02902346 -0.005097528) (-0.001520308 0.02802379 -0.005591231) (-9.457466e-07 0.02901913 -0.005588752) (0.001005233 0.02901462 -0.005575323) (0.0005046259 0.0290183 -0.005091971) (0.0005028576 0.02801662 -0.005583013) (6.92925e-06 -0.03503221 -0.003557689) (0.000518535 -0.03403764 -0.003572324) (0.0005211591 -0.03506003 -0.00308492) (-0.003044508 -0.03102429 -0.0035803) (-0.003551466 -0.03001905 -0.003569243) (-0.003557082 -0.03102621 -0.003066209) (-2.867276e-07 -0.03002288 -0.003062885) (-0.001015176 -0.02801717 -0.003056101) (-0.00101931 -0.03002213 -0.00204561) (-0.001529811 -0.03102886 -0.00409372) (-0.0005072142 -0.03102639 -0.004090009) (-0.001524736 -0.02902296 -0.004087018) (-0.000506926 -0.02902159 -0.004082098) (-0.001532204 -0.03203081 -0.003590028) (-0.0005089282 -0.03202707 -0.003576664) (-0.002039295 -0.03103004 -0.003591843) (0.002030041 -0.03102633 -0.003570334) (0.001014562 -0.02801652 -0.003052496) (0.001016829 -0.03002137 -0.002040593) (0.0005098053 -0.03102859 -0.004093956) (0.001521868 -0.03102823 -0.004085927) (0.0005069893 -0.02902167 -0.004081403) (0.001520961 -0.0290207 -0.004078906) (0.0005124829 -0.03203103 -0.003579607) (0.001526936 -0.03203347 -0.003581126) (0.00252875 -0.03102366 -0.004065867) (0.002530287 -0.03202499 -0.00355769) (0.003032903 -0.03101692 -0.003543776) (0.002536386 -0.03002137 -0.003561184) (0.00253651 -0.03102161 -0.003052946) (-0.002026497 -0.02601227 -0.003048406) (-0.003034815 -0.02400847 -0.003039095) (-0.003040823 -0.02601119 -0.002030561) (-0.003550251 -0.02701502 -0.004075343) (-0.002536175 -0.02701584 -0.004076155) (-0.003543783 -0.02501022 -0.004065022) (-0.004060629 -0.02701361 -0.00356124) (-0.00405514 -0.02501066 -0.003552972) (-0.004059698 -0.02701203 -0.002539011) (-0.003556764 -0.02801791 -0.003572104) (3.513317e-07 -0.02601241 -0.003045667) (-0.001010568 -0.02400876 -0.003038779) (-0.001013459 -0.02601178 -0.002031685) (0.002028546 -0.02601158 -0.003045733) (0.001012405 -0.02400893 -0.003039091) (0.001013964 -0.02601141 -0.002030369) (0.004075887 -0.02701386 -0.003557471) (0.003040424 -0.0240085 -0.003041416) (0.003045181 -0.02600999 -0.002029136) (0.002538384 -0.02701535 -0.004073194) (0.003558918 -0.02701557 -0.004074022) (0.003552692 -0.02501135 -0.00407154) (0.004074267 -0.02701147 -0.002539338) (0.003567696 -0.02801675 -0.003561802) (0.004570789 -0.02701277 -0.00405739) (0.004585387 -0.02801575 -0.00354952) (0.004576908 -0.02601189 -0.003554001) (0.004583793 -0.02701298 -0.003047297) (-0.005549462 -0.02300755 -0.004030472) (-0.005560422 -0.02401051 -0.003531284) (-0.005058105 -0.02300949 -0.003534969) (-0.005557563 -0.02200967 -0.00353239) (-0.005564143 -0.02301107 -0.003027748) (-0.002019386 -0.02200605 -0.003032405) (-0.003027165 -0.02000482 -0.003027746) (-0.00303234 -0.02200665 -0.002020726) (0.002022348 -0.02200642 -0.003034725) (0.003030424 -0.02000479 -0.003031359) (0.003035548 -0.02200615 -0.002022661) (0.004553461 -0.02300749 -0.00405145) (0.005065171 -0.02300753 -0.003539745) (-0.004035425 -0.01800454 -0.003025316) (-0.005046387 -0.01600456 -0.003024969) (-0.005049134 -0.01800571 -0.002016943) (-0.00606072 -0.01900894 -0.003533507) (-0.006063366 -0.01700677 -0.003531659) (-0.006065257 -0.0190081 -0.002524678) (-0.006065866 -0.01700608 -0.002524548) (-0.005555606 -0.0190079 -0.004037955) (-0.005553503 -0.01700636 -0.004037524) (-0.005556372 -0.02000889 -0.003533763) (0.004038657 -0.018004 -0.003028862) (0.00606804 -0.01900567 -0.003535618) (0.005047653 -0.01600364 -0.003026198) (0.005049802 -0.01800421 -0.002017526) (0.006065404 -0.01700511 -0.003530495) (0.006066451 -0.01900546 -0.002523385) (0.00606422 -0.01700461 -0.002520685) (0.005559879 -0.01900476 -0.004041865) (0.005557365 -0.01700428 -0.004039661) (0.005564104 -0.02000578 -0.003539775) (0.006558729 -0.01900437 -0.004030052) (0.006571971 -0.02000806 -0.003538335) (0.006567068 -0.01800543 -0.003528678) (0.006568818 -0.01900617 -0.003027924) (-0.007079903 -0.01500611 -0.003533886) (-0.007580273 -0.01400222 -0.003534384) (-0.007583129 -0.01500622 -0.003032252) (-0.004032557 -0.0140029 -0.003022945) (-0.005043255 -0.01200278 -0.003023575) (-0.005043526 -0.01400327 -0.002015844) (-0.006063429 -0.01500512 -0.003530387) (-0.006061685 -0.01300369 -0.003530947) (-0.006063311 -0.01500442 -0.002523523) (-0.005550775 -0.01500542 -0.004034206) (0.004034212 -0.01400291 -0.003025404) (0.006062822 -0.01500409 -0.003530495) (0.005042727 -0.01200259 -0.003024705) (0.00504301 -0.01400273 -0.002015528) (0.006061191 -0.01300266 -0.003532337) (0.00606186 -0.01500353 -0.002519744) (0.005555774 -0.01500388 -0.004040641) (0.006566974 -0.01500463 -0.004036594) (0.006568486 -0.01600572 -0.003529277) (0.007067537 -0.01500517 -0.003527178) (0.006565177 -0.01400346 -0.00353038) (0.00656943 -0.01500433 -0.003024718) (-0.007581089 -0.01200516 -0.003539955) (-0.007076482 -0.01100477 -0.003537604) (-0.007580903 -0.01000454 -0.003536259) (-0.007575497 -0.0110048 -0.003028628) (-0.004031755 -0.01000183 -0.003022197) (-0.005041017 -0.008001725 -0.003021727) (-0.005040834 -0.01000226 -0.002014687) (-0.006060684 -0.01100346 -0.003531552) (0.004030886 -0.01000222 -0.003023068) (0.005038472 -0.00800218 -0.003021484) (0.005038404 -0.01000212 -0.002014259) (0.006564325 -0.0110031 -0.004040765) (0.006565931 -0.01200246 -0.003532814) (0.007078109 -0.01100289 -0.003530557) (-0.007592497 -0.007000097 -0.004032317) (-0.007588611 -0.008003022 -0.003530164) (-0.007075652 -0.007001715 -0.00352569) (-0.007575433 -0.006000985 -0.003522844) (-0.007581559 -0.00700255 -0.003020913) (-0.004030405 -0.006000955 -0.003021906) (-0.005037517 -0.004000692 -0.003022416) (-0.005037762 -0.006001189 -0.002014011) (0.00402879 -0.006001531 -0.003021217) (0.005036326 -0.004001268 -0.003020633) (0.005036078 -0.006001596 -0.002013041) (0.006553217 -0.007003051 -0.004028714) (0.00706428 -0.007003495 -0.003522521) (-0.007564721 -0.003000742 -0.004033581) (-0.007562667 -0.004000969 -0.003524107) (-0.007060007 -0.003000727 -0.00352833) (-0.007569684 -0.002000543 -0.003533922) (-0.007561246 -0.003000913 -0.003023536) (-0.004028806 -0.002000132 -0.003023119) (-0.005035987 3.56224e-07 -0.003023856) (-0.005032778 -0.002000221 -0.002015059) (0.00402777 -0.002000658 -0.00302076) (0.0050353 -1.536247e-07 -0.00302055) (0.005033876 -0.002000687 -0.002013345) (0.006557756 -0.003001471 -0.004031592) (0.007064726 -0.003001116 -0.003527248) (-0.007582213 0.001003171 -0.004042241) (-0.007577726 9.827952e-07 -0.003536319) (-0.007066321 0.001001517 -0.003532167) (-0.007568755 0.002001807 -0.00352972) (-0.007565869 0.001001333 -0.003027043) (-0.004028523 0.002000699 -0.003023496) (-0.005035702 0.004001106 -0.003023126) (-0.00503167 0.002000577 -0.002015247) (0.004028291 0.002000334 -0.003021516) (0.00503699 0.00400097 -0.00302223) (0.005032652 0.002000324 -0.002013908) (0.006556182 0.00100055 -0.004030865) (0.007065789 0.001000573 -0.003529039) (-0.007548277 0.005000962 -0.004024852) (-0.007550737 0.004001069 -0.003522879) (-0.007050662 0.005001095 -0.003524471) (-0.007557129 0.006001025 -0.00352661) (-0.007549262 0.005000858 -0.003020137) (-0.004028978 0.006001307 -0.003022947) (-0.005038607 0.008001868 -0.003023073) (-0.005035295 0.006001112 -0.002014768) (0.004031517 0.006001273 -0.00302316) (0.005044006 0.008002093 -0.003024767) (0.005037661 0.006001317 -0.002014947) (0.006555166 0.005001599 -0.004032512) (0.007052208 0.005002124 -0.003523083) (-0.007577677 0.009003309 -0.004035885) (-0.007575497 0.008002439 -0.003532775) (-0.007072467 0.00900361 -0.003531332) (-0.007581706 0.01000574 -0.003533137) (-0.007573607 0.009003168 -0.00302553) (-0.004030897 0.01000219 -0.00302369) (-0.005043141 0.01200326 -0.003025367) (-0.00503977 0.0100021 -0.002015583) (0.004036429 0.01000235 -0.003025355) (0.005053347 0.01200349 -0.003028566) (0.005046439 0.01000262 -0.002016987) (0.006571236 0.00900262 -0.004039911) (0.007080683 0.009003109 -0.003532439) (-0.007078287 0.01300651 -0.003539554) (-0.007573641 0.01400646 -0.003537878) (-0.007573299 0.01300545 -0.003028957) (-0.007588282 0.01200777 -0.003538045) (-0.004033455 0.0140033 -0.003025002) (-0.005046143 0.01600469 -0.003025725) (-0.005042894 0.01400344 -0.002016356) (-0.006064946 0.01300532 -0.00353552) (-0.006063578 0.01500593 -0.003533206) (-0.006059192 0.01500488 -0.002521349) (-0.005554623 0.01500515 -0.004040903) (0.004041003 0.01400361 -0.003027311) (0.00505965 0.01600542 -0.003030779) (0.005053598 0.01400426 -0.002019067) (0.006086728 0.01500694 -0.003541986) (0.006081424 0.01500677 -0.002529304) (0.005569328 0.01500564 -0.004046019) (0.006581595 0.01300431 -0.004043954) (0.007096614 0.013004 -0.003540929) (0.006594639 0.01400603 -0.003543383) (-0.00403749 0.01800463 -0.003025889) (-0.005561365 0.02000827 -0.003531665) (-0.005049799 0.01800566 -0.002016432) (-0.00606146 0.01700698 -0.003531472) (-0.006066242 0.0190092 -0.003533221) (-0.006062433 0.0170069 -0.002520788) (-0.006068782 0.019009 -0.002522278) (-0.005554579 0.01700575 -0.004041053) (-0.00555687 0.01900694 -0.004037813) (-0.003029757 0.02000514 -0.003028012) (0.004044718 0.01800523 -0.00302876) (0.003032691 0.02000582 -0.00302923) (0.006085764 0.01700855 -0.003543466) (0.0050585 0.01800587 -0.002019512) (0.006084022 0.01900924 -0.003542433) (0.006079707 0.01700804 -0.00252839) (0.006080701 0.019009 -0.002526545) (0.005574378 0.01700644 -0.004049472) (0.005574302 0.01900695 -0.004046079) (0.005575375 0.0200071 -0.003537461) (0.006590765 0.01700853 -0.004049069) (0.006597289 0.01600959 -0.003544705) (0.00658768 0.01801096 -0.003545414) (0.006587183 0.01700929 -0.00303616) (-0.005560389 0.02100839 -0.004034051) (-0.006070629 0.02101013 -0.003534184) (-0.00505636 0.02100691 -0.003529592) (-0.005562072 0.02200726 -0.003527609) (-0.005562957 0.02100757 -0.00302736) (-0.002021997 0.02200689 -0.003032959) (-0.003037474 0.02400928 -0.003035546) (-0.003034335 0.02200685 -0.002019647) (-0.001012715 0.02400957 -0.003039402) (0.002021731 0.02200712 -0.00303269) (0.001010847 0.02400947 -0.003039294) (0.003037628 0.02401021 -0.003037852) (0.003036698 0.0220073 -0.002021393) (0.00455527 0.02100727 -0.00404234) (0.005069328 0.02100674 -0.003536079) (0.00657779 0.02000812 -0.003531588) (0.006572853 0.02100805 -0.003026233) (0.006082483 0.02100738 -0.003533958) (-0.005062179 0.02500971 -0.00352835) (-0.005574594 0.02500946 -0.003024011) (-0.005559229 0.0240071 -0.003521333) (-0.00202854 0.0260126 -0.003045176) (-0.003563557 0.02801892 -0.003558558) (-0.003043803 0.02601215 -0.002025656) (-0.003544316 0.02501146 -0.004056117) (-0.00355473 0.02701595 -0.004065348) (-0.002540695 0.02701639 -0.004075362) (-0.004066443 0.02701634 -0.003547556) (-0.004069934 0.02701623 -0.002533159) (-1.030022e-06 0.02601247 -0.003046693) (-0.00101526 0.02801579 -0.003053052) (-0.001014188 0.02601203 -0.002030031) (0.002026053 0.02601295 -0.003047248) (0.001013846 0.0280159 -0.003056047) (0.001013542 0.02601218 -0.00203143) (0.004057756 0.02501334 -0.00354415) (0.003043889 0.02601282 -0.002030499) (0.002530944 0.02701615 -0.004073373) (0.003547446 0.02701749 -0.004071035) (0.004064536 0.02701883 -0.003558459) (0.004067445 0.02701674 -0.002540535) (0.003561636 0.0280231 -0.003576846) (0.004556121 0.02501262 -0.004044977) (0.005070066 0.02501249 -0.003536431) (0.004566729 0.02601604 -0.003546098) (0.00456692 0.0250131 -0.003038076) (0.004560975 0.02401123 -0.003538903) (-0.003560069 0.02902025 -0.004064935) (-0.004071281 0.02901987 -0.003554986) (-0.003053982 0.02901921 -0.003559354) (-0.003552015 0.03001775 -0.003548348) (-0.003562798 0.02901888 -0.003049584) (2.049193e-07 0.03001965 -0.003061643) (-0.00152853 0.03202451 -0.003577497) (-0.001017616 0.03002046 -0.002039334) (-0.001522814 0.02901972 -0.004081888) (-0.0005069684 0.02901875 -0.004083928) (-0.001524508 0.03102159 -0.004083588) (-0.0005064638 0.03102093 -0.004086553) (-0.0005085836 0.03202352 -0.003573176) (-0.002033357 0.03102116 -0.003570648) (0.0005105305 0.03202341 -0.003577995) (0.00101798 0.03002077 -0.002043671) (0.0005059546 0.02901807 -0.004085557) (0.001519055 0.02901867 -0.004086122) (0.0005083213 0.03102014 -0.004089664) (0.001521199 0.03102032 -0.004086716) (0.001524929 0.03202343 -0.003582944) (0.002032097 0.03102274 -0.003581126) (0.002536652 0.02902189 -0.004087835) (0.003056859 0.02902516 -0.003582973) (0.002543445 0.03002528 -0.00358436) (0.004572321 0.02802089 -0.003560687) (0.004574811 0.02902341 -0.0030585) (0.004072139 0.02902631 -0.003578696) (-0.002038573 0.03302525 -0.003579953) (-0.00102092 0.03302647 -0.003574249) (-0.001532862 0.03303128 -0.003075661) (0.0005092472 0.03301785 -0.004069263) (1.824266e-06 0.0330241 -0.003568313) (0.001021078 0.03302679 -0.003583538) (0.0005154689 0.03402932 -0.003574089) (0.0005132831 0.03302988 -0.003076407) (0.002029524 0.03302365 -0.003578397) (0.002550579 0.03302827 -0.003070927) (0.002536422 0.03202259 -0.003572037) (4.099846e-07 -0.03403857 -0.001029216) (-0.001024124 -0.03202796 -0.001027632) (-0.001030093 -0.03403664 1.022433e-06) (-0.001550245 -0.03504658 -0.002066014) (-0.0005179614 -0.03504825 -0.002064319) (-0.001550409 -0.03604815 -0.001551385) (-0.000515379 -0.03605022 -0.001551014) (-0.001557738 -0.03604847 -0.0005138981) (-0.0005164736 -0.03604115 -0.0005112005) (-0.00206001 -0.03504125 -0.00154859) (-0.002068567 -0.03504025 -0.0005176237) (0.002061986 -0.03504721 -0.001541468) (0.001021041 -0.03202886 -0.001023871) (0.001028233 -0.03404176 3.059813e-06) (0.0005168067 -0.03505551 -0.00207271) (0.001547008 -0.03505248 -0.002067935) (0.0005189455 -0.03605672 -0.001556483) (0.001553419 -0.03606171 -0.001552836) (0.0005249497 -0.036054 -0.0005128175) (0.001561306 -0.0360722 -0.0005101214) (0.002058429 -0.03504835 -0.0005088949) (0.002565875 -0.035037 -0.00205043) (0.002561664 -0.03403761 -0.001535534) (0.002563558 -0.03504557 -0.001022433) (-0.002036509 -0.03001962 -0.001024515) (-0.003045857 -0.02801345 -0.001018444) (-0.003050774 -0.0300147 -2.382902e-06) (-0.003568637 -0.03202697 -0.001542244) (-0.003559132 -0.03201751 -0.0005126541) (-0.004068598 -0.0310209 -0.001533284) (-0.004062973 -0.02901508 -0.001524817) (-0.004065358 -0.03101293 -0.0005085318) (-0.004066698 -0.02901205 -0.0005072898) (-0.003565982 -0.03102771 -0.002052886) (0.002032719 -0.03001721 -0.001017259) (0.004061618 -0.03101147 -0.001520891) (0.003045884 -0.0280111 -0.001014176) (0.003047547 -0.03001293 2.177826e-06) (0.003556408 -0.03201581 -0.001522832) (0.003548295 -0.03201107 -0.0005042) (0.004064971 -0.02901045 -0.001520551) (0.004063438 -0.03100708 -0.0005029356) (0.004065153 -0.02900962 -0.0005046777) (0.003556684 -0.03101476 -0.002027627) (0.004564919 -0.03101206 -0.002025538) (0.004565729 -0.03001027 -0.001519953) (0.004567481 -0.03100491 -0.001011112) (-0.00556811 -0.02701182 -0.002018952) (-0.005560544 -0.02801189 -0.001510448) (-0.005072125 -0.02701253 -0.001514725) (-0.005577736 -0.02601252 -0.001512991) (-0.005581715 -0.02701294 -0.001005972) (-0.002028133 -0.02601097 -0.001015747) (-0.003038115 -0.02400853 -0.001011905) (-0.003043775 -0.02601018 -3.055718e-07) (0.002028723 -0.02601017 -0.001014161) (0.003040365 -0.02400788 -0.001012393) (0.003044026 -0.0260098 6.802773e-07) (0.004577386 -0.02701099 -0.002033293) (0.004570949 -0.02801073 -0.001521248) (0.005083419 -0.02701167 -0.001522804) (-0.004046971 -0.02200793 -0.001009171) (-0.005056337 -0.0200081 -0.00100834) (-0.005065155 -0.02201012 -5.338881e-08) (-0.006080949 -0.02301569 -0.00151352) (-0.006079478 -0.02101319 -0.001512585) (-0.006090479 -0.02301497 -0.000504757) (-0.006089385 -0.02101445 -0.0005049145) (-0.005570387 -0.02301322 -0.002017879) (-0.005574732 -0.02401286 -0.001513506) (-0.005578927 -0.02401177 -0.0005037779) (0.004048632 -0.02200654 -0.00101067) (0.006078031 -0.02300882 -0.001516032) (0.005055504 -0.02000568 -0.001009434) (0.005062471 -0.02200801 -3.505541e-07) (0.006074461 -0.02100709 -0.001514032) (0.006078181 -0.02300987 -0.000505906) (0.006076723 -0.02100814 -0.0005056676) (0.005573717 -0.023008 -0.002021407) (0.005580268 -0.02400933 -0.001518683) (0.005582378 -0.02401189 -0.0005071105) (0.006574426 -0.02300953 -0.00201827) (0.006575737 -0.02400912 -0.001514515) (0.006579389 -0.02200868 -0.001513874) (0.00657585 -0.02300893 -0.001009918) (-0.007072044 -0.01900682 -0.001510129) (-0.007563533 -0.01800478 -0.001507095) (-0.007575503 -0.0190051 -0.001004513) (-0.004038004 -0.01800484 -0.001008096) (-0.005045311 -0.01600413 -0.001008294) (-0.005050279 -0.01800577 -6.038089e-07) (0.004038832 -0.01800407 -0.001008597) (0.005044924 -0.01600332 -0.00100793) (0.005050211 -0.01800466 -1.201163e-07) (0.006566831 -0.01900546 -0.002017909) (0.0065761 -0.02000683 -0.001513299) (0.007068433 -0.01900587 -0.001510587) (-0.007584407 -0.0150034 -0.002023439) (-0.007569245 -0.0160036 -0.001512334) (-0.007073227 -0.01500422 -0.00151425) (-0.007580938 -0.01400581 -0.001514005) (-0.007576564 -0.01500456 -0.001007792) (-0.004032655 -0.01400281 -0.001007707) (-0.005040606 -0.01200263 -0.001007777) (-0.005041098 -0.01400303 -1.049566e-06) (0.004032434 -0.01400253 -0.001007432) (0.005037764 -0.01200207 -0.001006983) (0.005039994 -0.01400238 3.123649e-07) (0.006568994 -0.01500343 -0.002017678) (0.007070609 -0.01500282 -0.001512155) (-0.007571299 -0.01100522 -0.002015027) (-0.007571864 -0.01200589 -0.001511253) (-0.00706395 -0.01100445 -0.001510411) (-0.007567246 -0.0100048 -0.001509515) (-0.007564115 -0.0110043 -0.001006017) (-0.004033129 -0.01000186 -0.001007483) (-0.005038924 -0.00800165 -0.001007036) (-0.005038768 -0.01000203 -6.606786e-07) (0.004031307 -0.01000184 -0.001006883) (0.005036186 -0.008001745 -0.001006173) (0.005035462 -0.01000171 3.987094e-07) (0.007056098 -0.0110022 -0.001509754) (-0.006045741 -0.006001342 -0.0010065) (-0.007043863 -0.004000877 -0.001006533) (-0.007056771 -0.006001008 -8.795286e-08) (-0.008082683 -0.007003331 -0.001507762) (-0.008073109 -0.005002096 -0.001510686) (-0.00809512 -0.007002081 -0.0005024951) (-0.008055362 -0.004999896 -0.0005023017) (-0.007570581 -0.00700346 -0.002011538) (-0.007565197 -0.005002013 -0.002012864) (-0.00757162 -0.008004016 -0.001508272) (-0.007577811 -0.008002726 -0.0005024092) (-0.004031013 -0.006000965 -0.001007264) (-0.005032718 -0.004000595 -0.001007078) (-0.005035244 -0.006000947 -2.032668e-07) (0.004030667 -0.006001358 -0.001006486) (0.006045061 -0.006001871 -0.001005324) (0.005034595 -0.004001175 -0.001006132) (0.005036068 -0.0060015 4.339986e-07) (0.00806276 -0.007003096 -0.001505332) (0.007054877 -0.004001955 -0.001005157) (0.00706271 -0.006002755 9.782213e-07) (0.008074718 -0.005002595 -0.001506932) (0.008087159 -0.007003596 -0.0005005527) (0.008093057 -0.005004425 -0.0005009188) (0.00755696 -0.007002835 -0.002009656) (0.007557812 -0.005002003 -0.002010057) (0.007554762 -0.00800282 -0.001506707) (0.007559857 -0.008002578 -0.0005012145) (0.00857993 -0.006003214 -0.001505701) (0.008591974 -0.007004278 -0.001001647) (-0.006031808 -0.002000189 -0.001007264) (-0.007025726 2.987545e-07 -0.001007594) (-0.007021408 -0.0019994 6.323101e-08) (-0.008053176 -0.00300277 -0.001510899) (-0.008035459 -0.001000385 -0.00151154) (-0.008012727 -0.002999685 -0.0005025322) (-0.007997705 -0.0009993536 -0.0005028341) (-0.007554028 -0.003001475 -0.002014311) (-0.007547897 -0.001000194 -0.002016185) (0.006037356 -0.002000858 -0.001006202) (0.008067299 -0.003001617 -0.001508917) (0.007032919 -2.497055e-07 -0.001006561) (0.007034937 -0.002001245 6.807369e-07) (0.008051831 -0.001000846 -0.001510978) (0.008044119 -0.003002276 -0.0005013521) (0.008013766 -0.001000717 -0.0005023249) (0.007559902 -0.003001201 -0.002012407) (0.007557422 -0.001000597 -0.002014837) (0.008582438 -0.00300141 -0.002010519) (0.008589404 -0.004002685 -0.001510507) (0.008578537 -0.002000756 -0.001509312) (0.008554532 -0.003002002 -0.001004502) (-0.006029984 0.002000527 -0.00100762) (-0.00703848 0.004000834 -0.001007773) (-0.007019982 0.002000538 -8.98644e-07) (-0.00803201 0.001000958 -0.001512111) (-0.00804171 0.003002267 -0.001514281) (-0.007995671 0.001000696 -0.0005041416) (-0.00800799 0.003001025 -0.0005063356) (-0.007545281 0.001000762 -0.002015999) (-0.007544449 0.003001118 -0.002014542) (-0.005031152 0.004000668 -0.001007411) (0.006031935 0.002000228 -0.001006612) (0.008039749 0.001000442 -0.001510138) (0.007036005 0.004000613 -0.00100606) (0.00702204 0.001999972 -1.446898e-08) (0.008045065 0.003002488 -0.001508793) (0.008002576 0.001000094 -0.0005024469) (0.008005232 0.003000492 -0.0005023766) (0.007550476 0.001000274 -0.002014227) (0.007547412 0.003001229 -0.002012438) (0.008570185 0.001000034 -0.002014698) (0.008545023 -8.930451e-07 -0.001510642) (0.008540019 0.002002849 -0.001509817) (0.008508584 0.001000463 -0.001004836) (-0.006042979 0.00600089 -0.001007087) (-0.007564811 0.008001436 -0.001508693) (-0.007056809 0.006000647 -6.889057e-07) (-0.008063575 0.005001151 -0.001511135) (-0.008075455 0.007001526 -0.001508338) (-0.008054683 0.005000556 -0.000504956) (-0.008095337 0.007000693 -0.0005032393) (-0.007551809 0.005001058 -0.002013475) (-0.007559799 0.007001284 -0.002013103) (-0.00757626 0.008001099 -0.000502907) (-0.00403 0.006000906 -0.001007579) (-0.005037627 0.008001238 -0.001007434) (-0.005034657 0.006000771 -2.717153e-07) (0.006042706 0.006001012 -0.001006729) (0.005040873 0.008001636 -0.001007525) (0.005035687 0.006000816 1.646437e-07) (0.00805946 0.005000787 -0.001509765) (0.007048277 0.00600016 9.589594e-07) (0.008078678 0.007001185 -0.001510682) (0.008028672 0.004998858 -0.0005028369) (0.008073711 0.006999528 -0.0005016901) (0.007551776 0.005001581 -0.00201203) (0.007564577 0.007002812 -0.002015007) (0.007570941 0.0080024 -0.00151047) (0.00757553 0.008001055 -0.0005016044) (0.00857245 0.005001373 -0.002009992) (0.0085655 0.004002724 -0.001509027) (0.008588119 0.005999556 -0.001511873) (0.008545318 0.004998285 -0.001007957) (-0.008067166 0.009001735 -0.001507897) (-0.007563458 0.009001986 -0.002013848) (-0.007060696 0.009001702 -0.001509734) (-0.007563628 0.01000218 -0.001510459) (-0.007567806 0.009001537 -0.001005739) (-0.004032679 0.01000164 -0.001007893) (-0.005040045 0.01200236 -0.001008337) (-0.005038682 0.01000136 -7.365513e-07) (0.004037332 0.01000213 -0.001008152) (0.005047262 0.01200318 -0.001008797) (0.005043302 0.01000206 2.034658e-07) (0.007068056 0.009003183 -0.001510792) (0.008597459 0.008001532 -0.001511381) (0.00861205 0.009002444 -0.001004531) (0.008082038 0.009003731 -0.001510551) (-0.007573375 0.01300385 -0.002018198) (-0.007567318 0.01200377 -0.001513527) (-0.007067043 0.0130042 -0.001514285) (-0.00757487 0.01400505 -0.001515051) (-0.007568165 0.01300557 -0.001012014) (-0.004032781 0.01400279 -0.001008103) (-0.005045045 0.01600413 -0.001008517) (-0.005041031 0.01400272 -1.34026e-06) (0.004038881 0.01400338 -0.001008689) (0.005052738 0.01600481 -0.001009458) (0.00504742 0.0140037 -2.566753e-07) (0.007084677 0.01300699 -0.001517097) (-0.007579076 0.01700438 -0.002020919) (-0.007069406 0.01700548 -0.001514805) (-0.007569889 0.01800571 -0.001514015) (-0.007559634 0.01700476 -0.001010173) (-0.007567511 0.01600363 -0.001515363) (-0.004038638 0.01800464 -0.00100809) (-0.005057192 0.02000698 -0.001008377) (-0.005050347 0.01800517 -6.388926e-07) (0.004043526 0.01800486 -0.001009019) (0.005060003 0.02000625 -0.00100951) (0.005054225 0.01800507 -1.566695e-07) (0.006075925 0.01900718 -0.001513685) (0.006071866 0.01900611 -0.0005047169) (0.006579584 0.01700803 -0.002022514) (0.007079889 0.01700868 -0.00151377) (0.006578619 0.01800767 -0.001513316) (-0.004048113 0.02200746 -0.00100837) (-0.005578547 0.02401153 -0.001513244) (-0.005065123 0.0220086 2.014721e-07) (-0.006080053 0.02101003 -0.001513892) (-0.006081547 0.02301126 -0.001513946) (-0.006084752 0.02101042 -0.0005056624) (-0.006084945 0.02301162 -0.0005053971) (-0.005573017 0.02300877 -0.002016996) (-0.005579201 0.02401243 -0.0005045069) (-0.003039393 0.02400917 -0.001010266) (0.004051188 0.02200755 -0.001010224) (0.003041248 0.02400944 -0.001011973) (0.006078791 0.02100744 -0.001514837) (0.00506783 0.02200832 -2.414581e-07) (0.006083927 0.02300997 -0.001517148) (0.006080641 0.02100736 -0.0005047) (0.006097983 0.02301166 -0.0005057678) (0.005577578 0.02300921 -0.002024357) (0.005581634 0.0240114 -0.001516762) (0.005591085 0.02401335 -0.0005051516) (0.006576905 0.02100771 -0.002019409) (0.006580502 0.02000738 -0.001513069) (0.006577382 0.02200774 -0.001514043) (0.006580469 0.02100686 -0.001007845) (-0.005581925 0.02501269 -0.002018491) (-0.006084496 0.0250131 -0.001512307) (-0.005077622 0.02501314 -0.00151373) (-0.00558824 0.02601674 -0.001514328) (-0.005582412 0.02501413 -0.001008833) (-0.002028813 0.02601167 -0.001013146) (-0.003047108 0.02801454 -0.001013407) (-0.003043741 0.0260116 1.204676e-06) (0.002029321 0.02601189 -0.001015072) (0.003046762 0.02801405 -0.001017051) (0.003045949 0.02601191 6.281111e-07) (0.005080129 0.02501263 -0.001516736) (0.006581343 0.02401133 -0.00151253) (0.006585737 0.02501432 -0.001008385) (0.00608822 0.02501363 -0.001516082) (-0.005072974 0.02901732 -0.001516401) (-0.005574946 0.02901626 -0.001008083) (-0.005575644 0.02801888 -0.00151246) (-0.002035412 0.03001936 -0.001016732) (-0.003567321 0.0320208 -0.001522584) (-0.003049139 0.03001721 6.756254e-07) (-0.004068651 0.02901714 -0.001519193) (-0.004068248 0.03101873 -0.001519394) (-0.004066246 0.02901599 -0.0005060033) (-0.004062829 0.03101582 -0.0005061508) (-0.003557752 0.03201811 -0.0005065531) (-0.003565199 0.03102009 -0.002028002) (-0.001022638 0.03202914 -0.001022273) (0.00203481 0.03001891 -0.001021246) (0.001021805 0.03202909 -0.001024849) (0.004062865 0.02901497 -0.001524149) (0.003049878 0.03001565 1.266019e-06) (0.004063753 0.03101617 -0.001528444) (0.0040631 0.02901198 -0.0005048508) (0.004059636 0.03100966 -0.000504431) (0.003562486 0.03201788 -0.00153397) (0.003549348 0.03201123 -0.0005076508) (0.003569851 0.03102488 -0.002048125) (0.004566348 0.0290167 -0.002031454) (0.005058894 0.02901178 -0.001513994) (0.004561426 0.0300135 -0.001521041) (0.004563116 0.02901229 -0.001011169) (0.004566529 0.02801435 -0.0015199) (-0.003575919 0.03302273 -0.002029029) (-0.003068092 0.0330252 -0.001526671) (-0.003563107 0.03301972 -0.001015638) (-6.640908e-07 0.03404277 -0.001028396) (-0.001547496 0.03606199 -0.001544641) (-0.001539106 0.03505121 -0.002059445) (-0.0005138096 0.03505099 -0.002064662) (-0.002058506 0.03504683 -0.001535824) (-0.002069189 0.03504563 -0.0005063273) (-0.0005199206 0.03606374 -0.001555592) (-0.001562075 0.0360566 -0.0005096204) (-0.0005245203 0.03605571 -0.0005141554) (0.0005152587 0.03606467 -0.00155323) (0.001029332 0.03404363 3.243536e-06) (0.0005158065 0.03505312 -0.002071041) (0.001540435 0.03504637 -0.002064951) (0.002054844 0.03503832 -0.001537223) (0.002059395 0.03504662 -0.0005131534) (0.001549502 0.03606176 -0.001541246) (0.000522508 0.03606259 -0.0005152898) (0.001564082 0.03607776 -0.0005162551) (0.002559368 0.03302884 -0.00205564) (0.003060278 0.03301917 -0.001536301) (0.002557681 0.03402802 -0.001537349) (-0.001037491 0.03707424 -0.001556673) (-0.001558091 0.037064 -0.001031744) (-6.520661e-06 0.03706994 -0.001561202) (0.001034283 0.03706964 -0.001545918) (0.0005194675 0.03707046 -0.001034979) (-0.003558548 -0.0350172 1.368639e-06) (-0.003072349 -0.03503317 0.000507006) (-0.003554374 -0.03401626 0.0005093247) (-1.284935e-06 -0.0340405 0.001033464) (-0.001023977 -0.03202745 0.001024577) (-0.001545109 -0.03504926 0.002068468) (-0.001555782 -0.03605774 0.0005181509) (-0.0005190589 -0.03605285 0.000529259) (-0.00155101 -0.03606336 0.001554471) (-0.000519659 -0.03606763 0.001565363) (-0.002067619 -0.03504371 0.0005103516) (-0.002064828 -0.03504635 0.001539606) (-0.0005149524 -0.03504985 0.002071127) (0.002055108 -0.03504785 0.0005189826) (0.001019825 -0.03202664 0.001024021) (0.00051206 -0.03504731 0.002066678) (0.00052458 -0.03605913 0.0005280318) (0.001561949 -0.0360771 0.0005282604) (0.0005157903 -0.03606299 0.001561734) (0.001549422 -0.0360603 0.001549601) (0.002050089 -0.03503745 0.001536072) (0.001534576 -0.03503893 0.002055504) (0.002553957 -0.03504043 5.811752e-06) (0.003041507 -0.03502526 0.0005146563) (0.002548005 -0.03403209 0.0005149482) (0.002554814 -0.03503847 0.001027117) (-0.002036686 -0.0300175 0.001018341) (-0.003048708 -0.02801182 0.00101458) (-0.003565153 -0.03101616 0.002032785) (-0.003559357 -0.03201448 0.0005087998) (-0.003568872 -0.03201696 0.001528458) (-0.004067215 -0.03101027 0.0005067517) (-0.004069862 -0.02901022 0.0005053502) (-0.004073211 -0.03101315 0.001523984) (-0.00407312 -0.02901129 0.001519236) (-0.001018478 -0.03001959 0.002041222) (0.002033673 -0.03001649 0.001018739) (0.001016017 -0.0300177 0.002039365) (0.004071115 -0.03101179 0.0005134804) (0.00304829 -0.02801219 0.001016417) (0.003554644 -0.0320135 0.0005127209) (0.003566751 -0.03202016 0.00152383) (0.004070483 -0.02901208 0.0005095488) (0.004077792 -0.0310204 0.001524104) (0.004074171 -0.02901502 0.001522413) (0.003566734 -0.03101934 0.002029503) (0.004570063 -0.03100692 7.209324e-06) (0.004570682 -0.03200725 0.0005187821) (0.004578167 -0.03001238 0.0005115701) (0.004584482 -0.03101845 0.001019271) (-0.005589404 -0.02801252 0.0005041583) (-0.00559653 -0.02701453 1.782418e-06) (-0.005085871 -0.02701258 0.0005046602) (-0.005588837 -0.02601364 0.000504703) (-0.005584969 -0.02701319 0.001007573) (-0.002029618 -0.02601075 0.001015467) (-0.00304046 -0.02400883 0.001013014) (-0.003046126 -0.02601137 0.002029821) (-0.001014477 -0.0260118 0.002033617) (0.002028982 -0.0260102 0.001016236) (0.001014233 -0.02601112 0.002033649) (0.003040376 -0.02400834 0.001013754) (0.003044739 -0.02601056 0.002030883) (0.004576479 -0.02801369 0.0005086857) (0.005086555 -0.02701671 0.0005074233) (-0.00404904 -0.0220081 0.00101033) (-0.005056574 -0.02000773 0.001007524) (-0.005572093 -0.02301209 0.002022051) (-0.006084517 -0.02301323 0.0005027356) (-0.006083066 -0.02101268 0.0005020114) (-0.006072864 -0.02301204 0.001510698) (-0.0060728 -0.02101068 0.001508617) (-0.005582849 -0.02401273 0.0005046269) (-0.005582788 -0.02401348 0.001515536) (-0.003035606 -0.02200759 0.002024034) (0.004049373 -0.02200737 0.001011327) (0.00303686 -0.02200715 0.002024924) (0.006079329 -0.02301055 0.0005047459) (0.005057415 -0.0200068 0.001009273) (0.006078394 -0.02100904 0.0005029419) (0.006083996 -0.0230108 0.001516858) (0.00607967 -0.02101013 0.001512707) (0.005577388 -0.02401226 0.0005054071) (0.005577677 -0.02401093 0.001516992) (0.005579517 -0.02301101 0.002022389) (0.006578087 -0.02301058 -6.884667e-07) (0.006571996 -0.02401054 0.0005045907) (0.006587837 -0.02201086 0.0005035896) (0.006583452 -0.02301023 0.001010804) (-0.007590371 -0.01900956 1.388224e-06) (-0.007086047 -0.01901188 0.0005034936) (-0.007562641 -0.01800825 0.0005039039) (-0.007575076 -0.01901046 0.001006767) (-0.00403783 -0.01800472 0.001007967) (-0.005043301 -0.01600368 0.001006079) (-0.005048164 -0.01800472 0.002014863) (0.004039913 -0.01800451 0.001009692) (0.005045748 -0.0160034 0.001008679) (0.005053102 -0.01800558 0.002019349) (0.006582688 -0.02000891 0.0005016204) (0.007081431 -0.01900605 0.000499583) (-0.007562408 -0.01600268 0.0005023064) (-0.007571032 -0.01500332 -6.542772e-07) (-0.007063746 -0.01500285 0.0005017086) (-0.007572284 -0.01400348 0.0005014438) (-0.007567112 -0.0150021 0.001004155) (-0.004031367 -0.01400269 0.001006597) (-0.005038159 -0.01200243 0.00100574) (-0.005038896 -0.01400276 0.002012759) (0.004032817 -0.0140025 0.001008526) (0.005037863 -0.01200187 0.001007871) (0.00504361 -0.01400265 0.002017278) (0.007063185 -0.01500163 0.0005025032) (-0.008062459 -0.01100357 0.0005020814) (-0.007561061 -0.01100333 -4.199112e-07) (-0.007558924 -0.01200387 0.0005016387) (-0.007057247 -0.01100334 0.0005017545) (-0.007564907 -0.01000325 0.0005021466) (-0.007558712 -0.01100415 0.001004491) (-0.004031643 -0.01000177 0.001006571) (-0.005036844 -0.008001445 0.00100629) (-0.005036994 -0.01000205 0.002013445) (0.004031388 -0.01000166 0.00100762) (0.005036251 -0.008001578 0.001007001) (0.005038157 -0.0100017 0.002014922) (0.007039557 -0.01100082 0.0005029389) (-0.006042681 -0.006000797 0.001006064) (-0.007039704 -0.003999109 0.00100611) (-0.007557291 -0.007001489 0.002010667) (-0.008092634 -0.007002118 0.0005030102) (-0.008055185 -0.004998762 0.000502612) (-0.008074065 -0.007001709 0.001506876) (-0.00806602 -0.004998779 0.001508211) (-0.007575116 -0.008002441 0.0005023877) (-0.007561864 -0.008002623 0.001507335) (-0.007552831 -0.004999484 0.002011167) (-0.004029907 -0.006000858 0.001006984) (-0.005031442 -0.004000351 0.001006917) (-0.005034892 -0.006000873 0.002014011) (0.004030842 -0.006001263 0.001007123) (0.006045368 -0.006001892 0.001006568) (0.005034605 -0.004001203 0.001006813) (0.005036466 -0.006001399 0.002013691) (0.008086843 -0.007003751 0.0005031506) (0.00705491 -0.004002325 0.001006878) (0.008094793 -0.005004461 0.0005041735) (0.008065924 -0.00700344 0.001507751) (0.008078305 -0.005003711 0.001509838) (0.007559739 -0.008002477 0.000502906) (0.007555805 -0.008002576 0.001508495) (0.007559266 -0.007003087 0.002012231) (0.0075598 -0.005003068 0.00201301) (0.008620421 -0.007004956 1.774702e-06) (0.008583102 -0.008003027 0.0005024801) (0.008628625 -0.006005807 0.0005033152) (0.008591298 -0.007004075 0.001004435) (-0.006030483 -0.001999688 0.001007182) (-0.007025135 6.663265e-07 0.00100735) (-0.007547116 -0.002998532 0.002013586) (-0.008010183 -0.002996866 0.0005034158) (-0.007996134 -0.000998212 0.0005035742) (-0.00804517 -0.002995983 0.001510448) (-0.008032653 -0.0009983416 0.001513151) (-0.007546402 -0.0009992312 0.00201661) (-0.005031842 -0.002000146 0.002015015) (0.006036516 -0.002001073 0.001006785) (0.005033818 -0.002000823 0.002013767) (0.008045581 -0.00300244 0.0005050886) (0.007031375 -5.690682e-07 0.001006504) (0.008010922 -0.001000741 0.0005040499) (0.008062882 -0.003002637 0.001510936) (0.008044557 -0.001001078 0.001511193) (0.007554458 -0.003002226 0.002013103) (0.007551195 -0.001001223 0.002014129) (0.008525197 -0.003002506 2.551419e-06) (0.008586985 -0.004003736 0.0005056475) (0.00850864 -0.002001274 0.0005051209) (0.008555052 -0.003002242 0.001008748) (-0.006030187 0.002000464 0.001006902) (-0.007039104 0.004000891 0.001005638) (-0.007546436 0.001000417 0.002015428) (-0.007995912 0.001000473 0.0005022866) (-0.008008681 0.003000518 0.0005008291) (-0.008033276 0.00100044 0.001511349) (-0.008044237 0.003001073 0.001508035) (-0.007546594 0.003000915 0.002012423) (-0.005031249 0.004000571 0.001007018) (-0.00503173 0.002000354 0.002015072) (0.006032306 0.001999867 0.001006349) (0.005032545 0.004000291 0.001006946) (0.005033273 0.001999931 0.002013952) (0.008001464 0.0009998885 0.0005027712) (0.00703844 0.003999983 0.001005571) (0.008006269 0.002999821 0.0005027169) (0.008039129 0.001000067 0.001509202) (0.008048797 0.003000529 0.001507942) (0.007549921 0.0009996527 0.002012861) (0.007551211 0.00300001 0.002010319) (0.008485506 0.0009998555 3.060319e-07) (0.008493086 -1.567317e-07 0.0005027619) (0.008488019 0.001999892 0.0005021404) (0.008506815 0.001000263 0.00100479) (-0.00604294 0.006000819 0.001006448) (-0.007576322 0.008000885 0.0005021164) (-0.007552432 0.005002122 0.002012098) (-0.008055002 0.00500089 0.0005013496) (-0.008096234 0.007000565 0.0005014799) (-0.008063849 0.005002601 0.001508797) (-0.008075218 0.007001749 0.001508936) (-0.00756398 0.008001049 0.00150906) (-0.007558588 0.007001936 0.002013576) (-0.00403 0.00600073 0.001007301) (-0.005037362 0.008000872 0.00100679) (-0.005035352 0.006000809 0.002014728) (0.004031889 0.006000779 0.001007716) (0.006043635 0.006000442 0.001006962) (0.00504036 0.008001177 0.001007883) (0.005037653 0.006000609 0.00201497) (0.008032975 0.004999298 0.000504107) (0.008081541 0.006999887 0.0005080117) (0.008066649 0.005000106 0.001508327) (0.008085329 0.00699972 0.001511489) (0.007577685 0.008000765 0.0005062671) (0.007574587 0.008000255 0.00151183) (0.007556854 0.004999809 0.002009629) (0.007568239 0.006999603 0.002012217) (0.008503803 0.004998163 9.089962e-07) (0.008500217 0.003999167 0.0005027793) (0.008554643 0.005999099 0.000507229) (0.00855407 0.004999884 0.001006704) (-0.008086218 0.009001196 0.000501946) (-0.00757348 0.009001159 -6.014263e-07) (-0.007063808 0.009000802 0.0005019864) (-0.007564859 0.01000084 0.0005014427) (-0.007567195 0.009000711 0.001005077) (-0.004032298 0.01000118 0.001006982) (-0.005038926 0.01200142 0.001006091) (-0.005038767 0.0100009 0.002014509) (0.00403625 0.01000184 0.001008352) (0.005044723 0.01200265 0.001008542) (0.005043319 0.0100018 0.002016912) (0.0070695 0.009001275 0.0005054997) (0.008633477 0.009003042 3.779301e-06) (0.008625895 0.008001942 0.0005119037) (0.008604991 0.01000132 0.0005063754) (0.008616133 0.009001988 0.001013774) (0.008099218 0.009001605 0.0005075424) (-0.007560291 0.01300405 -4.870368e-06) (-0.007556587 0.01200144 0.0004992996) (-0.007059025 0.01300228 0.0004989178) (-0.00757141 0.01400405 0.0004983417) (-0.007564239 0.0130011 0.001001094) (-0.004031903 0.01400219 0.001006894) (-0.005043227 0.01600314 0.001006411) (-0.005039905 0.01400169 0.002013722) (0.004037248 0.01400316 0.001008508) (0.005050146 0.01600422 0.001008638) (0.005047525 0.01400355 0.002017438) (0.007064814 0.01300472 0.0005060743) (-0.007561222 0.01700616 -2.064612e-06) (-0.007065085 0.01700494 0.0005014557) (-0.007571501 0.01800578 0.0005019652) (-0.007556319 0.0170031 0.001005031) (-0.007566054 0.01600455 0.0005008277) (-0.004038032 0.01800413 0.001008459) (-0.005056644 0.02000609 0.001008486) (-0.00504688 0.01800392 0.002016) (0.004043036 0.0180048 0.00100933) (0.005060421 0.0200061 0.001009331) (0.005057521 0.0180056 0.002019643) (0.006075799 0.01900519 0.001514285) (0.007064876 0.01700548 0.0005021761) (-0.004049615 0.02200741 0.001011437) (-0.00557994 0.02401097 0.0005045442) (-0.006083427 0.02100906 0.0005022605) (-0.006084934 0.02300977 0.0005023395) (-0.006075 0.02100713 0.001511282) (-0.00607834 0.02300838 0.001512969) (-0.005581666 0.02401081 0.001517521) (-0.005573551 0.02300984 0.002025318) (-0.003040508 0.02400911 0.001014029) (-0.003035932 0.0220072 0.002024776) (0.004052304 0.02200798 0.001010564) (0.00304291 0.02401011 0.00101321) (0.003038304 0.02200819 0.002023336) (0.006080511 0.0210069 0.0005036902) (0.006096314 0.02301152 0.0005034976) (0.006082121 0.02100688 0.001512994) (0.006087253 0.02301 0.001512045) (0.005593236 0.0240137 0.0005052033) (0.005586327 0.02401212 0.001515355) (0.005579076 0.02300985 0.002019608) (0.006578115 0.02100712 -2.60419e-07) (0.006575707 0.02000566 0.0005037201) (0.006585173 0.02200861 0.0005029393) (0.006581507 0.02100616 0.001007497) (-0.006086509 0.02501194 0.0005032038) (-0.005584438 0.02501379 -8.496596e-08) (-0.005078105 0.02501214 0.0005053369) (-0.005587816 0.02601477 0.0005047536) (-0.005584005 0.02501172 0.001010592) (-0.002029055 0.0260116 0.001016014) (-0.003046889 0.02801425 0.001014725) (-0.003045121 0.02601148 0.0020303) (-0.001013979 0.02601222 0.002033318) (0.002031131 0.02601267 0.00101651) (0.001015648 0.02601318 0.002033971) (0.003050897 0.02801551 0.001016936) (0.003046754 0.02601403 0.002030428) (0.005088178 0.02501422 0.0005061876) (0.00659559 0.0250148 4.36241e-07) (0.006607046 0.02401449 0.0005040063) (0.006592477 0.02501364 0.001007319) (0.006106523 0.02501689 0.0005057994) (-0.00559451 0.02902287 -1.590819e-06) (-0.005077991 0.02901813 0.0005039658) (-0.005568332 0.02901485 0.001006462) (-0.005587227 0.02801947 0.0005036283) (-0.002034819 0.03001983 0.001018451) (-0.003556203 0.03201936 0.000509629) (-0.00406557 0.02901548 0.0005052925) (-0.004061121 0.03101542 0.0005064084) (-0.004067951 0.02901655 0.001517823) (-0.004068054 0.03102131 0.001518825) (-0.003564914 0.0320258 0.001523084) (-0.003562216 0.03102249 0.002026303) (-0.001016622 0.0300213 0.002040023) (0.002037361 0.03002083 0.001022224) (0.001023027 0.03203105 0.001028774) (0.001019497 0.030023 0.002044596) (0.004072337 0.02901459 0.0005088321) (0.004071563 0.03101517 0.0005122343) (0.004077709 0.02901955 0.001522158) (0.004081653 0.03102405 0.001526007) (0.003557922 0.03201586 0.0005139218) (0.003570874 0.03202431 0.001530676) (0.003572753 0.03102639 0.002036806) (0.004572506 0.02901336 2.932655e-06) (0.005083788 0.02901508 0.000507578) (0.004578996 0.03001529 0.0005098367) (0.004583172 0.02901721 0.001013707) (0.00457848 0.02801504 0.0005080402) (-0.003553898 0.03301904 2.512666e-06) (-0.004044551 0.0330136 0.0005090416) (-0.003057714 0.03302449 0.0005121269) (-0.00355406 0.03402135 0.0005130297) (-0.003560601 0.03302469 0.001019885) (0.000522177 0.03605822 0.0005281337) (0.002060754 0.03504847 0.0005181143) (0.00206527 0.03505115 0.001553291) (0.001561779 0.0360713 0.0005207797) (0.0005154695 0.03606514 0.001566237) (0.00155723 0.03606676 0.001560992) (0.0005131716 0.03505488 0.002073234) (0.00154641 0.03505684 0.002076939) (0.00304992 0.03301817 0.0005144248) (0.002553065 0.0340335 0.0005171008) (0.004525694 0.03300147 6.193565e-06) (0.004574416 0.03201527 0.0005158453) (0.004045109 0.03300992 0.0005131791) (-0.001574501 0.03706013 7.88373e-06) (-0.001049498 0.03705526 0.0005351321) (-0.001560506 0.03605737 0.0005254637) (0.0005271913 0.03705796 4.953285e-06) (-4.55576e-06 0.03704756 0.0005352808) (0.001054463 0.0370773 0.0005277289) (0.0005193207 0.03706215 0.001051848) (-0.002056482 -0.03504687 0.002568167) (-0.001026788 -0.03504807 0.002582581) (-0.001540554 -0.0340431 0.002577073) (-6.236902e-07 -0.03504503 0.002571543) (0.001024549 -0.03504468 0.002569887) (0.0005109704 -0.03403738 0.002565688) (0.0005115971 -0.03503737 0.003070667) (0.002550332 -0.03502551 0.002037111) (0.00203445 -0.03502759 0.002550331) (0.002544972 -0.0340238 0.002547448) (-0.003557632 -0.03201735 0.002536688) (-0.00406679 -0.03101635 0.00253481) (-0.003054932 -0.03101785 0.002541207) (-0.003562956 -0.03001532 0.002539258) (-0.003546012 -0.03101298 0.003035767) (-2.633282e-07 -0.03001894 0.003059283) (-0.001015235 -0.02801622 0.003056321) (-0.001524396 -0.03102497 0.004084351) (-0.001527012 -0.0320264 0.003581318) (-0.0005090947 -0.03202381 0.003572171) (-0.0005077382 -0.03102282 0.004077825) (-0.001523215 -0.02902214 0.004085918) (-0.0005061138 -0.02902067 0.00408158) (-0.002033603 -0.03102341 0.003575797) (0.001015555 -0.02801459 0.003055936) (0.0005090698 -0.03101975 0.004076715) (0.0005092727 -0.03202164 0.003571277) (0.001524076 -0.03201891 0.003572063) (0.001522518 -0.03101673 0.004075198) (0.0005091204 -0.02901859 0.004080568) (0.001524096 -0.02901668 0.004079446) (0.00202947 -0.03101622 0.003567843) (0.002541933 -0.03201872 0.002542467) (0.003054057 -0.03101689 0.002536055) (0.002535914 -0.03101484 0.003052799) (0.004579232 -0.03102101 0.002028348) (0.004577663 -0.03001706 0.002532218) (0.004075773 -0.03102041 0.002532783) (-0.005086313 -0.02701572 0.002529178) (-0.005589029 -0.0260162 0.002530523) (-0.005582993 -0.02701237 0.002017787) (-0.002029254 -0.02601333 0.003051003) (-0.003041111 -0.02401086 0.003043606) (-0.003555053 -0.02701692 0.004075045) (-0.004075331 -0.02701374 0.002534915) (-0.004070279 -0.02701516 0.00355258) (-0.004067258 -0.02501425 0.003553343) (-0.002539898 -0.0270188 0.004083298) (-0.003560523 -0.0280155 0.00356273) (4.592718e-07 -0.02601278 0.00305151) (-0.001012307 -0.02401044 0.003045591) (0.002029541 -0.0260119 0.003051245) (0.00101312 -0.02400975 0.003045568) (0.00406884 -0.02701226 0.002537734) (0.003041058 -0.02400954 0.003043996) (0.002542075 -0.02701649 0.004083613) (0.004070666 -0.02701332 0.003562223) (0.004063195 -0.0250106 0.003553928) (0.003556665 -0.02701456 0.004078904) (0.003550622 -0.0250121 0.004070235) (0.003564022 -0.02801612 0.003571636) (0.004575035 -0.02801374 0.002535849) (0.005074433 -0.02701205 0.002530607) (0.004572147 -0.02601163 0.00253467) (0.004573127 -0.02701234 0.003044292) (0.004572155 -0.02701247 0.002029279) (-0.005582364 -0.02401509 0.002532147) (-0.006069368 -0.02301233 0.002524266) (-0.005070955 -0.02301211 0.002528685) (-0.005568944 -0.02201106 0.002525049) (-0.005576993 -0.02301369 0.003035387) (-0.002022445 -0.0220081 0.003039392) (-0.003030134 -0.02000593 0.003032822) (-0.001010044 -0.02200886 0.004052991) (0.002023767 -0.0220075 0.003039288) (0.001011331 -0.02200822 0.004052572) (0.003033238 -0.02000617 0.003034151) (0.005076189 -0.02301109 0.002528744) (0.006593978 -0.02301317 0.002023326) (0.006574616 -0.02201259 0.002523324) (0.006085834 -0.02301284 0.002527916) (-0.004036589 -0.01800435 0.003027158) (-0.005042921 -0.01600354 0.00302274) (-0.005559756 -0.01900567 0.004039266) (-0.006063831 -0.01900541 0.00251804) (-0.006060193 -0.01700325 0.002516207) (-0.006063792 -0.01900548 0.003530076) (-0.006059172 -0.01700399 0.003526713) (-0.005562386 -0.02000661 0.003532816) (-0.005555578 -0.01700532 0.00403918) (-0.003025817 -0.01800437 0.004040492) (-0.001007567 -0.01800476 0.004040923) (0.001009345 -0.01800474 0.004040884) (0.004041808 -0.01800509 0.003031077) (0.003029903 -0.01800489 0.004042071) (0.006073181 -0.01900982 0.002525803) (0.00505049 -0.01600395 0.003029412) (0.006069108 -0.01700591 0.002525428) (0.006075397 -0.01900991 0.003543653) (0.006071505 -0.01700603 0.003539921) (0.005574969 -0.02001119 0.003545449) (0.005570815 -0.01900755 0.004052282) (0.005563418 -0.01700403 0.00404778) (0.006574294 -0.019009 0.002018065) (0.006577058 -0.02001338 0.002523623) (0.006577333 -0.01800801 0.002525026) (0.006577827 -0.01901191 0.003033048) (-0.007555566 -0.01600238 0.002508771) (-0.007057418 -0.01500257 0.002512311) (-0.00755863 -0.01400245 0.002511364) (-0.007553329 -0.0150026 0.00301198) (-0.007555804 -0.01500185 0.002008044) (-0.004030352 -0.01400279 0.003023123) (-0.005037915 -0.01200266 0.003021861) (-0.005548677 -0.01500503 0.004036078) (-0.006050914 -0.01500267 0.002514169) (-0.006051156 -0.0150039 0.003524351) (-0.006047656 -0.01300381 0.003524873) (-0.003022086 -0.01400277 0.004034288) (-0.001006618 -0.01400284 0.004034633) (0.001008223 -0.01400279 0.004034823) (0.004034717 -0.01400258 0.003026125) (0.003025178 -0.01400247 0.004035056) (0.006063595 -0.01500384 0.002524988) (0.005042612 -0.01200217 0.003025351) (0.006066711 -0.01500441 0.003537634) (0.006060499 -0.01300331 0.003534754) (0.005557236 -0.01500301 0.004043165) (0.006572544 -0.016005 0.002526012) (0.007077024 -0.01500425 0.00252654) (0.006567628 -0.0140034 0.002525348) (0.006572417 -0.01500477 0.003032679) (0.006567176 -0.01500339 0.002021091) (-0.00756135 -0.01200487 0.002513667) (-0.007559323 -0.01100542 0.002011378) (-0.007057403 -0.01100471 0.00251512) (-0.007561001 -0.01000612 0.002516305) (-0.007559596 -0.0110053 0.003018993) (-0.004029282 -0.0100018 0.003022619) (-0.00503753 -0.008001481 0.003022261) (-0.0050403 -0.01000224 0.004033129) (-0.003021702 -0.01000173 0.004031961) (-0.001006668 -0.01000172 0.004033573) (0.001007615 -0.01000164 0.004033515) (0.00403088 -0.01000161 0.003022935) (0.003022733 -0.01000151 0.004031242) (0.005038597 -0.008001466 0.003021321) (0.005041552 -0.01000175 0.004032608) (0.007068261 -0.01100227 0.002521026) (-0.007557545 -0.0080029 0.002516217) (-0.007053303 -0.007001401 0.002515301) (-0.007553937 -0.006000459 0.002515063) (-0.007559923 -0.00700133 0.003020449) (-0.004028904 -0.006000933 0.003022519) (-0.005036101 -0.004000658 0.003023068) (-0.00503973 -0.006001112 0.004032465) (-0.003022074 -0.006000973 0.004030122) (0.004029582 -0.006001104 0.003021094) (0.003022322 -0.006000965 0.004028611) (0.005036969 -0.004001087 0.003020945) (0.005039268 -0.006001147 0.004028308) (0.00705906 -0.007002746 0.002516627) (-0.008055596 -0.002998971 0.002516957) (-0.007549631 -0.003999379 0.002515571) (-0.007048623 -0.002999543 0.002517831) (-0.00755491 -0.001999541 0.002520043) (-0.007556335 -0.002999955 0.003023027) (-0.00402834 -0.00200037 0.003022902) (-0.00503586 -8.281693e-08 0.003023596) (-0.005039959 -0.002000832 0.004033193) (-0.003022223 -0.00200043 0.004029577) (0.004029077 -0.002000581 0.003021389) (0.003022841 -0.002000421 0.004028506) (0.005036365 -4.190808e-07 0.003021232) (0.005039934 -0.002000753 0.004029756) (0.007051012 -0.003002012 0.002516584) (0.008572756 -0.0030028 0.002012552) (0.00856413 -0.002002012 0.002515743) (0.008055429 -0.003002588 0.002515572) (-0.008067533 0.001000231 0.00252098) (-0.007559705 2.068042e-07 0.002521574) (-0.007052368 0.001000378 0.002519635) (-0.007554302 0.002000612 0.002518276) (-0.007568542 0.001000438 0.0030259) (-0.004028322 0.002000313 0.00302318) (-0.005036017 0.0040007 0.003023486) (-0.005039433 0.002000379 0.004033549) (-0.003022387 0.002000348 0.004030073) (0.004029533 0.002000136 0.003022398) (0.003023537 0.00200032 0.004030168) (0.00503797 0.004000327 0.003022607) (0.005040225 0.002000235 0.00403097) (0.007053133 0.0009993707 0.00251642) (0.008571364 0.001000461 0.002013142) (0.008586249 -8.524307e-07 0.002521284) (0.00857542 0.002000374 0.00251578) (0.008068889 0.0009995755 0.002518787) (-0.007548908 0.004001708 0.002515691) (-0.007048283 0.005001953 0.002516262) (-0.007554373 0.006003247 0.002517506) (-0.007549508 0.005002747 0.003019918) (-0.004029439 0.006000862 0.003023225) (-0.005038963 0.008000995 0.003023484) (-0.005040216 0.006001082 0.004033334) (-0.003022663 0.006000987 0.004030837) (0.004031672 0.006000851 0.00302417) (0.00302476 0.006001022 0.00403275) (0.00504201 0.008001217 0.003025058) (0.005042976 0.006000909 0.004034628) (0.007052512 0.004999651 0.002512599) (0.008580598 0.005000445 0.002009708) (0.00856056 0.004000309 0.002509122) (0.008057903 0.004999618 0.002509597) (-0.007560788 0.00900064 0.002014155) (-0.007559607 0.008001748 0.002520604) (-0.007060201 0.009000751 0.002519963) (-0.007570046 0.01000025 0.00252029) (-0.007566446 0.009001276 0.003028003) (-0.004030892 0.01000123 0.00302328) (-0.005041455 0.01200116 0.003023259) (-0.005043263 0.01000152 0.004033605) (-0.0030227 0.01000154 0.004031909) (-0.001006685 0.01000158 0.004033941) (0.001008749 0.01000173 0.004035092) (0.00403428 0.01000197 0.003025767) (0.003025502 0.010002 0.004034647) (0.005045999 0.01200296 0.003026978) (0.005045823 0.01000256 0.004037255) (0.007070029 0.009000555 0.002522099) (-0.007068667 0.01299826 0.002517062) (-0.007568819 0.01399686 0.002513711) (-0.007570023 0.01299652 0.003020171) (-0.007570756 0.0129986 0.002010979) (-0.007573174 0.01199804 0.0025196) (-0.004031647 0.01400197 0.003023566) (-0.005042287 0.01600264 0.003023932) (-0.006053384 0.01500232 0.003527146) (-0.005549161 0.01500257 0.004036448) (-0.003023045 0.01400234 0.00403395) (-0.001006635 0.01400239 0.00403459) (0.001009189 0.01400251 0.004035257) (0.004037486 0.01400357 0.003026946) (0.003027242 0.01400318 0.004036213) (0.005053221 0.01600558 0.003029295) (0.006064998 0.0150047 0.002522689) (0.006061986 0.01300424 0.003534003) (0.006065878 0.0150065 0.003534178) (0.005559882 0.01500755 0.004044596) (0.007078942 0.0130038 0.0025257) (0.006568377 0.01400436 0.002522906) (0.00656676 0.01300383 0.003030412) (-0.007564555 0.01700521 0.002011628) (-0.007556685 0.01600389 0.002512269) (-0.007060918 0.01700522 0.002516854) (-0.004036572 0.01800371 0.003027548) (-0.00555074 0.01700364 0.004037576) (-0.006054071 0.01700378 0.002518363) (-0.006061172 0.01900476 0.00252115) (-0.006052897 0.0170044 0.003528293) (-0.00605821 0.01900433 0.003531762) (-0.005561048 0.02000473 0.003535291) (-0.005555879 0.01900378 0.004037461) (-0.003030849 0.02000554 0.003032825) (-0.003026625 0.01800413 0.004039719) (-0.001007746 0.01800417 0.004040322) (0.001010338 0.01800405 0.004039998) (0.004043899 0.01800567 0.003030065) (0.003034184 0.02000649 0.00303178) (0.003031129 0.01800482 0.004039896) (0.006075104 0.01700652 0.002525707) (0.006083882 0.01900789 0.002528019) (0.00607665 0.01701017 0.003539826) (0.006081365 0.01901098 0.003543483) (0.005572767 0.02000985 0.003541801) (0.005567707 0.01701008 0.004048637) (0.005572434 0.01900963 0.00404902) (0.006575855 0.01700556 0.002019983) (0.006573155 0.0160054 0.002523052) (0.007083048 0.01700611 0.002522852) (0.006585814 0.01800737 0.002527251) (0.006580869 0.01700831 0.003031405) (-0.006065345 0.02100645 0.002522699) (-0.005569475 0.02200891 0.002528841) (-0.005562458 0.02100623 0.003032199) (-0.002023015 0.02200761 0.00303934) (-0.003041328 0.02401015 0.003044751) (-0.001012652 0.02401 0.00304528) (-0.001010893 0.022008 0.004052438) (0.002024682 0.02200834 0.003037419) (0.001013721 0.02401063 0.003044511) (0.001012136 0.02200811 0.004050694) (0.003041798 0.02401208 0.003041753) (0.006583331 0.02100758 0.0020181) (0.006584899 0.02000896 0.002525832) (0.006586077 0.02200942 0.002521811) (0.006584039 0.02101085 0.003029037) (0.006086869 0.02100938 0.002526423) (-0.005084145 0.02501374 0.002537974) (-0.005592341 0.02601621 0.002539732) (-0.00558708 0.02501499 0.003044882) (-0.005587179 0.02501336 0.002027732) (-0.005581068 0.0240129 0.002534523) (-0.002029487 0.02601217 0.003049932) (-0.003551216 0.02501387 0.004073669) (-0.004070531 0.02701307 0.002537717) (-0.004069626 0.02701219 0.003557119) (-0.003558042 0.02701329 0.004075823) (-0.002542857 0.02701487 0.004080291) (-0.003561477 0.02801287 0.003559087) (5.75958e-07 0.0260132 0.003051222) (-0.00101474 0.0280158 0.003054333) (0.002030454 0.02601469 0.003050648) (0.00101718 0.02801774 0.003057887) (0.004069442 0.02701774 0.002536043) (0.00406017 0.02501588 0.003547756) (0.004066085 0.02701997 0.003553557) (0.002541316 0.02701935 0.004081942) (0.003556203 0.02702045 0.004074535) (0.003564179 0.02802359 0.003566109) (0.005078793 0.0250141 0.002531934) (0.004572568 0.0260163 0.002534431) (0.004566791 0.02501537 0.003041138) (-0.004068501 0.02901607 0.002532121) (-0.003557723 0.03001812 0.002531927) (-0.003557845 0.02901369 0.003045656) (1.815772e-06 0.03002132 0.003061123) (-0.001523583 0.0290176 0.004076847) (-0.001522278 0.03202714 0.003572085) (-0.0005065871 0.03202626 0.003570934) (-0.0005065149 0.02901853 0.004079925) (-0.001520428 0.03102221 0.004074211) (-0.0005057662 0.03102137 0.004076271) (-0.002029598 0.03102105 0.00356548) (0.0005094721 0.02901982 0.004084822) (0.0005128183 0.03202778 0.003577414) (0.001531426 0.03203294 0.003588621) (0.001526724 0.02902203 0.004087823) (0.0005113889 0.03102276 0.00408442) (0.001529096 0.03102825 0.004090455) (0.00203596 0.03102794 0.003582315) (0.004579722 0.02902122 0.002026693) (0.004575112 0.02801914 0.002533926) (0.004584979 0.03002648 0.002536425) (0.004579101 0.02902457 0.003043932) (0.00407891 0.02902379 0.002539976) (-0.003571192 0.03303316 0.00202724) (-0.003058094 0.03303106 0.002535204) (-0.00355602 0.032023 0.002527431) (-0.002045245 0.03303383 0.002552929) (-0.001538558 0.03404565 0.002569099) (-0.001528638 0.03303454 0.003073221) (0.000512825 0.03404619 0.002574118) (0.0005132025 0.03303377 0.003076928) (0.002557706 0.03303714 0.002061464) (0.002048997 0.0330406 0.002577875) (0.003057131 0.03303273 0.002557451) (0.002557681 0.03404565 0.00258276) (0.002545986 0.03303767 0.003080763) (0.002551388 0.03203306 0.002563687) (-0.002030807 -0.03102755 0.004590134) (-0.001013952 -0.03102289 0.004580493) (-0.001522272 -0.03002559 0.004592486) (0.0005106215 -0.03201672 0.004572438) (1.304257e-06 -0.03102238 0.004577382) (0.001014948 -0.03101753 0.004579367) (0.0005095042 -0.03002086 0.004584825) (0.002023872 -0.0310136 0.00456823) (0.002535894 -0.03001656 0.004576064) (0.002531405 -0.03101473 0.004066965) (-0.003551012 -0.0280178 0.004585388) (-0.004052257 -0.02701398 0.004563916) (-0.003047326 -0.02701997 0.004590217) (-0.003552492 -0.02601735 0.004581578) (-0.001521963 -0.02802228 0.004591987) (-0.002033541 -0.02702081 0.004590972) (-0.001519466 -0.02702091 0.005092852) (0.0005100541 -0.02801952 0.004589576) (0.0005109446 -0.02702155 0.005109095) (0.002541192 -0.02801788 0.004587085) (0.003049548 -0.02701725 0.004590082) (0.002541197 -0.02601774 0.004588162) (0.002542227 -0.02702078 0.005097356) (0.002036004 -0.02701812 0.004588343) (0.0045626 -0.02700905 0.004058115) (0.0040557 -0.02701074 0.004569766) (0.004554511 -0.02600689 0.004563741) (-0.005067535 -0.02301081 0.004557233) (-0.005570779 -0.02200842 0.004542676) (-0.005574723 -0.02301176 0.004044806) (-0.004055247 -0.0230103 0.004566959) (-0.003544782 -0.02301258 0.005082097) (3.031602e-08 -0.02200877 0.00506379) (-0.001007816 -0.02000686 0.005057676) (-0.001514969 -0.02301428 0.006086368) (-0.0005052021 -0.02301088 0.006078806) (-0.001510252 -0.0210086 0.006077183) (-0.0005043036 -0.02100769 0.006072567) (-0.001517048 -0.02401646 0.005586099) (-0.0005051337 -0.02401452 0.005584367) (-0.002021839 -0.02301461 0.005583603) (0.00100905 -0.02000654 0.005056208) (0.0005024395 -0.02300829 0.006074359) (0.00151237 -0.02300826 0.006070518) (0.0005016738 -0.0210069 0.006069367) (0.001511662 -0.02100716 0.00606902) (0.0005058389 -0.024013 0.005584899) (0.001517932 -0.02401393 0.005582769) (0.002024496 -0.02301102 0.005574512) (0.002531618 -0.02301185 0.005076886) (0.004550382 -0.02400816 0.004554976) (0.005057754 -0.02300857 0.00455183) (0.004555467 -0.02200972 0.004558052) (0.004545502 -0.02300743 0.005059714) (0.004557966 -0.02300941 0.004053479) (0.004049868 -0.02300911 0.004561222) (-0.005555616 -0.02000619 0.004543517) (-0.00605345 -0.01900582 0.004538599) (-0.005053532 -0.01900557 0.004547162) (-0.005560853 -0.01800685 0.004547754) (-0.005554117 -0.01900604 0.00505001) (-0.002015592 -0.01800498 0.005052902) (-0.003023904 -0.01600349 0.005049091) (-0.003529781 -0.01900516 0.006071652) (-0.002520149 -0.01900662 0.006073825) (-0.003532554 -0.01700389 0.006069794) (-0.002521239 -0.01700494 0.006067874) (-0.003532246 -0.02000581 0.00556938) (-0.004036827 -0.0190041 0.005564246) (-0.004039665 -0.01700402 0.005562274) (4.452871e-07 -0.01800532 0.005051207) (-0.001006885 -0.01600409 0.00504768) (-0.001509848 -0.01900656 0.006070736) (-0.0005033228 -0.0190069 0.006068298) (0.002018474 -0.01800534 0.005052566) (0.001008262 -0.01600402 0.00504759) (0.0005026456 -0.01900686 0.006066862) (0.001511077 -0.01900659 0.006065184) (0.003027491 -0.01600356 0.005049459) (0.002524298 -0.01900812 0.00606976) (0.003538771 -0.01900909 0.006073793) (0.002523403 -0.01700549 0.006066093) (0.003538007 -0.01700602 0.006072523) (0.003540727 -0.02000893 0.005570139) (0.004044144 -0.01900721 0.005564535) (0.004043481 -0.01700404 0.00556206) (0.004556887 -0.02000937 0.00455777) (0.005065467 -0.01900683 0.004557629) (0.004551348 -0.0190066 0.00505936) (0.006563076 -0.01900549 0.004043298) (0.006561441 -0.01800272 0.004545714) (0.006067906 -0.0190043 0.004554778) (-0.006052542 -0.01500596 0.004539096) (-0.005552511 -0.01600617 0.004542599) (-0.005044143 -0.01500511 0.004540143) (-0.005546208 -0.01400526 0.00453871) (-0.005548903 -0.01500677 0.005046326) (-0.002013997 -0.01400291 0.005044811) (-0.00302215 -0.01200244 0.005044577) (-0.003530704 -0.01500306 0.006066682) (-0.002519077 -0.01500316 0.006061386) (-0.004036608 -0.01500413 0.005558048) (5.433189e-07 -0.01400328 0.005044126) (-0.001006543 -0.01200244 0.005042094) (0.002015802 -0.01400274 0.005044769) (0.001007565 -0.01200237 0.005042225) (0.003023615 -0.01200185 0.005042972) (0.0025207 -0.01500311 0.006060158) (0.003533306 -0.01500282 0.006062607) (0.005052312 -0.01500232 0.004545277) (0.006571561 -0.01500511 0.004045253) (0.006572711 -0.01600541 0.004549962) (0.006561923 -0.01400375 0.004546049) (0.006063852 -0.01500343 0.004548762) (-0.004031611 -0.0100022 0.005043939) (-0.0050419 -0.00800152 0.005042538) (-0.00556205 -0.01100456 0.006074893) (-0.006057205 -0.01100349 0.004544175) (-0.006056419 -0.009001916 0.004540165) (-0.006069068 -0.01100439 0.00557046) (-0.006054073 -0.009002169 0.005549891) (-0.004540912 -0.01100396 0.006064048) (-0.005548091 -0.009002518 0.006053824) (-0.004538168 -0.009002187 0.006057509) (-0.005553719 -0.0120043 0.005558139) (-0.002013903 -0.01000178 0.00504119) (-0.003022073 -0.00800137 0.005040114) (4.304913e-07 -0.01000185 0.005039815) (-0.001006504 -0.008001413 0.005037678) (0.002014588 -0.01000153 0.005040613) (0.001007322 -0.00800124 0.005037761) (0.004032087 -0.01000171 0.005041569) (0.003022195 -0.008001241 0.00503823) (0.003528021 -0.01100151 0.006056255) (0.006057841 -0.01100277 0.004545937) (0.005038982 -0.008001412 0.005036092) (0.004541016 -0.0110025 0.006059048) (0.006055736 -0.00900108 0.004536189) (0.006066174 -0.01100413 0.005570025) (0.006052815 -0.009001183 0.005543831) (0.005557648 -0.01100394 0.006069489) (0.004536204 -0.009002602 0.006050357) (0.005541603 -0.009002606 0.006045823) (0.005556435 -0.01200352 0.005560812) (0.006561133 -0.0120037 0.004548489) (0.006560592 -0.01000189 0.004541553) (0.00656674 -0.01100401 0.00505869) (0.006559876 -0.0110028 0.004039813) (-0.007579933 -0.008000937 0.00454368) (-0.007068001 -0.007000738 0.004537043) (-0.00755213 -0.006000371 0.00452501) (-0.007565735 -0.007001055 0.004031026) (-0.004032167 -0.006001119 0.005041174) (-0.005045406 -0.004001484 0.005046224) (-0.005553974 -0.007001534 0.006057255) (-0.006054716 -0.007001153 0.004538428) (-0.006054627 -0.00500138 0.004541416) (-0.006058309 -0.00700151 0.005552131) (-0.006067111 -0.005002216 0.005563674) (-0.004538407 -0.007001132 0.006054332) (-0.005563857 -0.005002003 0.00606898) (-0.004542284 -0.005001215 0.006057942) (-0.002014215 -0.006001084 0.005036315) (-0.003022953 -0.004000849 0.005038199) (-0.001006377 -0.006001394 0.006040831) (0.002014824 -0.006000884 0.005035889) (0.001007643 -0.006000865 0.006041702) (0.004030995 -0.006001195 0.005036449) (0.003023217 -0.004000763 0.005036491) (0.006052123 -0.007000855 0.004531204) (0.005044255 -0.004001109 0.005040076) (0.004534647 -0.00700208 0.006043744) (0.006051849 -0.005001012 0.004533461) (0.006047644 -0.007001133 0.005536966) (0.006058744 -0.005001412 0.005548023) (0.005542597 -0.007001789 0.006041271) (0.004539516 -0.005001663 0.006048589) (0.005556175 -0.005001791 0.006054636) (0.006559309 -0.008000653 0.004531276) (0.007067818 -0.007000836 0.004532637) (0.006556793 -0.006000863 0.00453268) (0.006555049 -0.007000553 0.005032718) (0.006558742 -0.007001126 0.004029925) (-0.007559411 -0.004000754 0.00453847) (-0.007069072 -0.003001863 0.004545842) (-0.007589556 -0.002001761 0.004549723) (-0.007569053 -0.003000997 0.004038636) (-0.004031835 -0.002000717 0.005040981) (-0.005039412 -3.941241e-07 0.005041531) (-0.005561048 -0.003002612 0.006066628) (-0.006057869 -0.003001931 0.004543682) (-0.006057887 -0.001001777 0.004541809) (-0.006068482 -0.003003416 0.0055631) (-0.006054247 -0.001002738 0.005548974) (-0.004541683 -0.003001197 0.006058903) (-0.005542547 -0.001001304 0.006049579) (-0.004535694 -0.001000407 0.006053452) (-0.002015001 -0.002000493 0.005033713) (-0.003022779 -7.896931e-08 0.005037651) (-0.001007655 -0.002000601 0.006032493) (0.002015312 -0.002000326 0.005033391) (0.001007431 -0.002000278 0.006032586) (0.004033351 -0.002000615 0.005039212) (0.003023826 2.728926e-08 0.005037499) (0.006054402 -0.003001068 0.00453557) (0.005041719 -1.046031e-07 0.005038981) (0.004544589 -0.003001466 0.006055979) (0.006054559 -0.001000944 0.004533405) (0.006068442 -0.003001245 0.005555535) (0.00605926 -0.001000959 0.005544543) (0.005567389 -0.0030019 0.006065375) (0.004542425 -0.00100057 0.006056042) (0.005556429 -0.001001063 0.006056457) (0.006554986 -0.004001111 0.004534156) (0.007060262 -0.003001438 0.004535109) (0.006560136 -0.002001238 0.004535671) (0.006563934 -0.003001025 0.005043256) (0.006554473 -0.003001272 0.004031384) (-0.007586654 -1.188675e-06 0.004546494) (-0.007073746 0.001000116 0.004545831) (-0.007582481 0.002001535 0.004543795) (-0.007583635 0.001001092 0.004040455) (-0.004032152 0.002000603 0.005042463) (-0.005045674 0.004001257 0.005048191) (-0.005541668 0.001001007 0.006053284) (-0.006055771 0.0009997154 0.00454117) (-0.006055304 0.003000773 0.004542347) (-0.006051148 0.001000016 0.005549481) (-0.006065616 0.003001532 0.005564377) (-0.004536234 0.001000938 0.006056252) (-0.005562092 0.003002168 0.006075974) (-0.00454379 0.003001677 0.006064613) (-0.002015235 0.002000341 0.005034277) (-0.003023691 0.004000858 0.005039426) (-0.001007771 0.00200025 0.006033124) (0.002016082 0.002000366 0.005035269) (0.001008033 0.002000255 0.006034579) (0.004033929 0.002000678 0.005042053) (0.003025413 0.004000812 0.005041213) (0.006051884 0.0009997307 0.004531693) (0.005048391 0.004001125 0.005048302) (0.004540944 0.001001333 0.006057415) (0.00605599 0.003000467 0.004537386) (0.006046375 0.001000509 0.005536993) (0.006063213 0.003001612 0.005556386) (0.005543978 0.00100192 0.006049748) (0.004546175 0.003001941 0.006064209) (0.005560595 0.003002614 0.006068569) (0.006557753 -9.510041e-07 0.004531623) (0.007062733 0.0009991415 0.004531233) (0.006558284 0.002000024 0.004534074) (0.006554353 0.0009997165 0.00503402) (0.006556752 0.0009993924 0.004029318) (-0.007556983 0.004000657 0.004535425) (-0.007054048 0.005000946 0.004535407) (-0.007549668 0.006001051 0.004526906) (-0.007548385 0.005001085 0.004026581) (-0.00403322 0.006001339 0.005042323) (-0.005043422 0.008001825 0.005042887) (-0.005566505 0.005002082 0.006071768) (-0.006053674 0.005001116 0.004541042) (-0.006055119 0.007001103 0.004539611) (-0.006067933 0.005001902 0.00556327) (-0.006058518 0.007001518 0.005553372) (-0.004544816 0.005001728 0.006061326) (-0.00555481 0.00700192 0.006058744) (-0.004540347 0.007002138 0.006055196) (-0.002014857 0.006001083 0.005037117) (-0.003022932 0.008001501 0.005040288) (-0.001006699 0.008001395 0.005038299) (-0.001007267 0.006001215 0.006041838) (0.002016685 0.00600106 0.005039726) (0.001008445 0.008001442 0.005039939) (0.001008467 0.006001034 0.006044247) (0.004036308 0.006001265 0.005045728) (0.003025708 0.008001658 0.005044352) (0.006057971 0.005000618 0.004540794) (0.005046622 0.008002076 0.005047725) (0.00454838 0.005001424 0.006065977) (0.006057025 0.007000804 0.004541371) (0.006075501 0.005001504 0.005566953) (0.006065345 0.007001859 0.005558755) (0.005572211 0.005001504 0.006078048) (0.004546407 0.007001841 0.006064007) (0.0055619 0.007002049 0.006066767) (0.006561831 0.004000503 0.004538651) (0.007061759 0.005000172 0.004535612) (0.006559294 0.00600038 0.004539375) (0.006569855 0.005001032 0.005050486) (0.006556039 0.005000168 0.004032846) (-0.007574812 0.008000915 0.004543829) (-0.00707185 0.009000769 0.00454431) (-0.0075791 0.009001401 0.004045775) (-0.004033259 0.01000228 0.005042858) (-0.005549162 0.009003642 0.006051951) (-0.006059821 0.009001274 0.004541609) (-0.006064263 0.01100171 0.004544232) (-0.006056932 0.009002408 0.005548905) (-0.006076725 0.01100501 0.005565985) (-0.004540035 0.009003459 0.006055369) (-0.005565506 0.01100682 0.00606887) (-0.004542574 0.01100476 0.006061104) (-0.005559561 0.01200399 0.005556455) (-0.002014235 0.01000165 0.005040634) (-0.003023089 0.01200219 0.00504319) (8.703818e-07 0.01000174 0.005040688) (-0.001006449 0.01200196 0.005042021) (0.002016634 0.010002 0.00504359) (0.001008498 0.01200218 0.005043245) (0.004035993 0.01000269 0.005047621) (0.003025951 0.01200271 0.005045681) (0.006059865 0.009002231 0.004544245) (0.004545217 0.009003372 0.006066842) (0.006064857 0.01100433 0.0045484) (0.006057102 0.009003393 0.005552493) (0.006066272 0.01100646 0.005561444) (0.005552942 0.009004036 0.006061581) (0.004543986 0.01100405 0.006066335) (0.005559 0.0110058 0.006069608) (0.005560103 0.01200539 0.005560452) (0.006562537 0.008000702 0.004542943) (0.00706991 0.009001488 0.004545966) (0.006567914 0.01000346 0.004548113) (0.006563515 0.009002543 0.005048325) (0.006563515 0.009001711 0.004041649) (-0.006056703 0.01300149 0.004537237) (-0.005549749 0.01400244 0.004539534) (-0.005552436 0.01300293 0.005046541) (-0.002014385 0.01400253 0.005043942) (-0.003024716 0.01600352 0.005047795) (-0.003532777 0.01500427 0.006063113) (-0.002519513 0.01500359 0.006058218) (-0.004038333 0.01500399 0.005556659) (9.778949e-07 0.01400237 0.005044574) (-0.001006871 0.01600325 0.005047395) (0.002017444 0.01400266 0.005045701) (0.001009423 0.01600281 0.005047821) (0.003029381 0.01600365 0.005049249) (0.00353188 0.01300336 0.006060479) (0.002523366 0.01500272 0.006060342) (0.003535764 0.01500424 0.006063253) (0.004043311 0.0150051 0.005559011) (0.006566989 0.01300476 0.004040517) (0.006570761 0.01200471 0.004549594) (0.006566853 0.01400715 0.004544059) (0.006562165 0.01300576 0.005046504) (0.00606399 0.01300575 0.004546544) (-0.006053747 0.01700488 0.004539549) (-0.005552825 0.01600371 0.004544556) (-0.005049195 0.01700331 0.004544136) (-0.005556839 0.01800395 0.004544477) (-0.00555436 0.01700405 0.005050798) (-0.002016233 0.01800473 0.005051157) (-0.003532655 0.01700535 0.006067728) (-0.002520135 0.01700571 0.006063466) (-0.003531657 0.01900709 0.006068164) (-0.002520698 0.01900716 0.006067995) (-0.004040005 0.01700404 0.0055622) (-0.004039377 0.01900512 0.005562342) (-0.003536577 0.02000746 0.005567706) (1.153964e-06 0.01800383 0.005050917) (-0.001008667 0.0200059 0.005056384) (-0.001510808 0.01900577 0.006066808) (-0.0005028943 0.01900455 0.0060674) (0.002020027 0.01800361 0.005050489) (0.001011011 0.02000529 0.005055143) (0.0005055498 0.01900347 0.006067809) (0.001515121 0.019003 0.006067015) (0.002525353 0.01700222 0.006062824) (0.003537931 0.01700462 0.00606635) (0.002526511 0.01900322 0.006064459) (0.003537229 0.019005 0.006062929) (0.004045392 0.01700531 0.005561465) (0.004042978 0.01900513 0.005557928) (0.003539962 0.02000626 0.005559854) (0.005061556 0.01700853 0.004552981) (0.004551018 0.0170061 0.005059072) (0.006578186 0.01701352 0.004045162) (0.006565117 0.0160116 0.004545609) (0.006074982 0.01701368 0.004554128) (-0.00506095 0.02100698 0.004547744) (-0.005561156 0.02200828 0.00454009) (-0.005562927 0.0210058 0.004039493) (-0.005557494 0.02000369 0.004540277) (-0.00404994 0.02100788 0.004554279) (-0.00354068 0.02100871 0.005066647) (3.552834e-07 0.02200781 0.005062191) (-0.001514533 0.02100757 0.006075395) (-0.0005042451 0.02100665 0.006070867) (-0.001520798 0.02301107 0.006090839) (-0.0005065824 0.02300973 0.006077833) (-0.002025651 0.02301206 0.005585739) (-0.001520769 0.02401362 0.005589511) (-0.0005075822 0.02401255 0.005584455) (0.0005061416 0.02100573 0.006068909) (0.001516585 0.0210056 0.006069871) (0.0005050218 0.02300852 0.006072516) (0.001516532 0.02300942 0.006071676) (0.002028487 0.02301164 0.0055722) (0.0005052169 0.02401149 0.005581043) (0.001519553 0.02401318 0.005580108) (0.005061021 0.02100908 0.004552052) (0.004555588 0.02201111 0.004552224) (0.004553373 0.02100895 0.005055959) (0.004555507 0.02100917 0.004047575) (0.004554167 0.02000775 0.004551048) (0.004050058 0.021009 0.004551478) (-0.004053338 0.02501501 0.004576125) (-0.003045307 0.02501534 0.004583183) (-0.003552611 0.02601558 0.004584744) (-0.003545696 0.025017 0.005089014) (-0.003547807 0.02401453 0.004576031) (-0.00152189 0.02501552 0.005090835) (0.0005056582 0.0250132 0.005086451) (0.002539976 0.02601874 0.004585921) (0.002537707 0.02501768 0.005088698) (0.004561494 0.02501688 0.004050292) (0.004552723 0.02401426 0.004551188) (0.004052236 0.02501593 0.004561915) (0.004552469 0.02601561 0.00454693) (-0.003557997 0.02801272 0.004578868) (-0.003052931 0.02901588 0.004580111) (-0.003557452 0.02901289 0.004065389) (-0.002033295 0.02901737 0.004580561) (-0.001014314 0.02901836 0.004582282) (-0.001521115 0.03001875 0.004577906) (-0.001520853 0.02901595 0.005079965) (-0.00152405 0.02801702 0.00458232) (1.010885e-06 0.02902012 0.004590727) (0.001017642 0.0290214 0.004592957) (0.000510045 0.0300216 0.004591604) (0.0005080811 0.02902181 0.005102501) (0.0005084898 0.02801953 0.004592353) (0.002542612 0.02802164 0.004593227) (0.002035034 0.02902254 0.004593657) (0.003048313 0.02902168 0.004587737) (0.002538211 0.0300202 0.004588246) (0.002542962 0.02902216 0.004086743) (0.0005129354 0.0330253 0.004072277) (0.0005110803 0.03201855 0.004580283) (2.477469e-06 0.03301268 0.004550469) (-0.001513294 -0.02401771 0.006590118) (-0.002018905 -0.02301284 0.006588516) (-0.001008997 -0.02301238 0.006582109) (-0.001511496 -0.02201045 0.006585185) (0.0005025756 -0.02400753 0.006574132) (-1.662677e-06 -0.0230081 0.006573105) (0.001004839 -0.02300588 0.006567043) (0.0004994962 -0.02200737 0.006573313) (0.002014179 -0.02300611 0.006558054) (0.002522073 -0.02200702 0.006563928) (0.002526952 -0.02301017 0.006074288) (-0.003524871 -0.02000818 0.006577675) (-0.004025583 -0.01900142 0.006560309) (-0.003024907 -0.01900703 0.006579002) (-0.003530681 -0.01800493 0.006572557) (-0.001508747 -0.02000732 0.006579013) (-0.002014524 -0.01900664 0.006574958) (-0.001006048 -0.01900727 0.006575323) (-0.001510432 -0.0180069 0.006574567) (-0.001508552 -0.01900688 0.007079436) (0.000501477 -0.02000749 0.006573317) (-7.796685e-07 -0.01900801 0.006572518) (0.00100595 -0.0190072 0.006569812) (0.0005027599 -0.0180076 0.006569896) (0.0005018787 -0.01900987 0.007078782) (0.002524394 -0.0200098 0.006572648) (0.002016099 -0.01900755 0.006568808) (0.003031402 -0.01901028 0.006578301) (0.002524392 -0.01800766 0.006574057) (0.004037705 -0.01900825 0.006567179) (0.004542977 -0.01800566 0.006567782) (0.004541417 -0.01900596 0.006057398) (-0.003532932 -0.01600264 0.006572138) (-0.004038721 -0.01500299 0.006575634) (-0.003025277 -0.01500297 0.006569349) (-0.00352964 -0.01400328 0.0065693) (-0.003528645 -0.01500115 0.007069151) (-0.002016204 -0.01500367 0.006565711) (-0.001511005 -0.01500522 0.007072094) (0.0005035521 -0.01500562 0.007073574) (0.002522023 -0.01600417 0.006567519) (0.003026917 -0.0150031 0.006566107) (0.002520327 -0.01400282 0.006565013) (0.002519254 -0.01500307 0.007068883) (0.00201725 -0.01500339 0.006566009) (0.004537957 -0.01600287 0.006567381) (0.004038202 -0.01500241 0.006563782) (0.004544562 -0.01400281 0.006556246) (0.004544383 -0.01500222 0.006058044) (-0.005553144 -0.01200375 0.006568899) (-0.005049682 -0.01100456 0.006573835) (-0.005550936 -0.01000423 0.006563666) (-0.004036358 -0.01100407 0.006568654) (-0.003527191 -0.011003 0.007073006) (-0.001510295 -0.01100239 0.007067792) (0.0005036258 -0.01100317 0.00706315) (0.003024319 -0.01100134 0.006562415) (0.002518249 -0.01100148 0.007077794) (0.004541697 -0.01200232 0.006561757) (0.005047554 -0.01100345 0.006564847) (0.004539354 -0.0100031 0.006560861) (0.004034946 -0.01100189 0.006562583) (-0.00554712 -0.008001554 0.006553444) (-0.005044659 -0.007001083 0.006558997) (-0.005562342 -0.00600179 0.006571533) (-0.004033341 -0.007000943 0.006556326) (-0.003525013 -0.007000922 0.007058811) (9.69053e-07 -0.006001362 0.007043431) (-0.001007052 -0.004001693 0.007036745) (-0.001508012 -0.007002943 0.008077765) (-0.0005012722 -0.00700329 0.008064871) (-0.001510692 -0.005005356 0.008060896) (-0.0005024128 -0.005002984 0.008027114) (-0.001508577 -0.00800217 0.007568832) (-0.0005020282 -0.008002841 0.00756731) (-0.002011409 -0.007001915 0.007563483) (-0.002013342 -0.005002504 0.007557389) (0.001007952 -0.004000426 0.007037821) (0.0005044134 -0.007000977 0.008068211) (0.001513877 -0.007000864 0.008087171) (0.000505291 -0.005000557 0.008029018) (0.001515882 -0.005000581 0.008066097) (0.0005040423 -0.00800161 0.007569464) (0.001511512 -0.008000777 0.007574546) (0.002016894 -0.007000739 0.007572825) (0.002017212 -0.005000519 0.007561834) (0.00251979 -0.00700094 0.007065485) (0.004535625 -0.008003048 0.006549129) (0.005037228 -0.00700251 0.006542933) (0.00453589 -0.006002069 0.006546478) (0.004532877 -0.007003077 0.007046374) (0.004031667 -0.007002225 0.006547551) (-0.00557079 -0.00400236 0.006580639) (-0.005052081 -0.003001526 0.006569541) (-0.005551524 -0.002001353 0.006566471) (-0.004037597 -0.003001048 0.006563052) (-0.003530817 -0.003001263 0.007069383) (-4.49398e-07 -0.002000432 0.00702364) (-0.001008481 -2.447893e-07 0.00703076) (-0.001513182 -0.003002206 0.008041476) (-0.0005038582 -0.003001284 0.008008406) (-0.001514483 -0.001000668 0.008040155) (-0.0005047259 -0.001000286 0.008007413) (-0.002016383 -0.003001641 0.007552684) (-0.002017667 -0.001000863 0.007552141) (0.001007068 3.648116e-08 0.007031352) (0.0005031954 -0.003000049 0.008008603) (0.001511863 -0.002999888 0.008042188) (0.0005018457 -0.0009998946 0.008007025) (0.001509435 -0.0009997889 0.008038423) (0.002015486 -0.003000238 0.007552906) (0.002014309 -0.000999999 0.007550819) (0.002519377 -0.003000601 0.007056285) (0.004542934 -0.004001774 0.006557228) (0.005058073 -0.003002164 0.006567497) (0.004545948 -0.002001508 0.006563385) (0.004545617 -0.003002007 0.007069697) (0.004039009 -0.003001496 0.006559611) (-0.005532554 5.259295e-07 0.006546897) (-0.00602428 0.001001738 0.006537778) (-0.005039217 0.001001688 0.006561435) (-0.005552551 0.002003499 0.006580577) (-0.004034541 0.001000867 0.00656099) (-0.003529924 0.001000297 0.007068239) (-1.720482e-07 0.002000054 0.007025307) (-0.001008045 0.004000555 0.007037412) (-0.001513043 0.001000095 0.008040066) (-0.0005042446 0.0009998851 0.008007873) (-0.001512289 0.003000235 0.008040845) (-0.0005039905 0.002999701 0.008009716) (-0.002016969 0.0009999976 0.007552369) (-0.00201659 0.003000589 0.007552758) (0.001008647 0.004000222 0.007042289) (0.0005026899 0.0009998689 0.008009385) (0.001511577 0.001000189 0.008042572) (0.0005039607 0.002999327 0.008015034) (0.001514063 0.002999597 0.008052863) (0.002015874 0.001000342 0.007554022) (0.002017736 0.003000367 0.00755994) (0.002520358 0.001000445 0.007058475) (0.004541555 3.358391e-07 0.006561068) (0.005046362 0.001002313 0.006561965) (0.004545903 0.002002464 0.00656794) (0.004545796 0.001001916 0.007072289) (0.004039229 0.001001214 0.006563293) (0.006524167 0.001000037 0.006018823) (0.006502087 -1.216783e-06 0.006498542) (0.006024721 0.001002668 0.006529271) (0.00650613 0.002000989 0.006509189) (-0.005576515 0.004002663 0.00659057) (-0.005056971 0.005001936 0.006571889) (-0.005565473 0.00600202 0.006573317) (-0.004039181 0.005001618 0.006563058) (-0.003530095 0.005001505 0.007066483) (2.384541e-08 0.00600136 0.007044801) (-0.001513978 0.005000524 0.008059249) (-0.0005054431 0.005000531 0.008027572) (-0.001513401 0.007003049 0.008081012) (-0.0005068637 0.00700413 0.008067206) (-0.002015977 0.005001237 0.007558338) (-0.002014034 0.007002096 0.00756611) (-0.001510199 0.008002483 0.00756955) (-0.0005045088 0.008003439 0.007569138) (0.00050444 0.004999827 0.00803236) (0.001513838 0.004999851 0.008069712) (0.0005048647 0.007001545 0.008066847) (0.001514698 0.007001471 0.008084242) (0.002017093 0.005000598 0.007566378) (0.002016915 0.007001573 0.007573599) (0.0005041941 0.008002287 0.007570095) (0.001512668 0.008001979 0.007574994) (0.002520987 0.005000865 0.007064339) (0.004549449 0.004001724 0.006572474) (0.005060629 0.005001367 0.006578972) (0.004547482 0.006001418 0.006568929) (0.004546856 0.005001154 0.007075608) (0.004041968 0.005001307 0.006567071) (-0.005546572 0.008002426 0.006555262) (-0.005045352 0.009004536 0.006558634) (-0.005552414 0.01000762 0.006560135) (-0.004036457 0.009003095 0.006560017) (-0.003527133 0.009001809 0.00706411) (-0.001509117 0.00900202 0.007063592) (0.0005038581 0.009002526 0.007064973) (0.002520942 0.009002455 0.007075427) (0.004548072 0.008002549 0.006571708) (0.005053076 0.009004726 0.006576313) (0.00454728 0.01000474 0.006577697) (0.004549096 0.009003784 0.007082535) (0.004041897 0.009003101 0.006571992) (-0.005557158 0.0120056 0.00656741) (-0.005039926 0.01300675 0.006560508) (-0.005551546 0.01300447 0.006053742) (-0.00403567 0.01300545 0.006565531) (-0.003532168 0.01400416 0.006564251) (-0.003525634 0.01300272 0.007061924) (-0.001509346 0.0130022 0.007071258) (0.0005030012 0.01300265 0.00706647) (0.003028434 0.01300356 0.006566049) (0.00252344 0.01400336 0.006566635) (0.002521431 0.01300451 0.00707586) (0.004541426 0.01200346 0.006566232) (0.004035842 0.0130034 0.00656317) (0.005043323 0.01300408 0.00655731) (0.004542295 0.01400488 0.006562555) (0.004542791 0.01300423 0.00606141) (-0.003534832 0.01600513 0.006569561) (-0.004039928 0.01700533 0.006576908) (-0.003025857 0.01700658 0.006568793) (-0.003528854 0.01800672 0.006568682) (-0.00201657 0.01700685 0.006568678) (-0.001510517 0.01800599 0.006571039) (-0.001510695 0.01700707 0.007074538) (0.0005052162 0.01800278 0.006573785) (0.0005041282 0.0170023 0.007082318) (0.002524593 0.01600239 0.006566043) (0.002020677 0.0170016 0.006565861) (0.003032687 0.0170032 0.006570438) (0.002526797 0.01800155 0.006568966) (0.002525103 0.01700131 0.007070917) (0.004550342 0.01600752 0.006575841) (0.004043943 0.017006 0.006569669) (0.004544225 0.01800413 0.006557301) (0.004550165 0.01700608 0.006069946) (-0.003530321 0.02001063 0.006574259) (-0.003026564 0.02100773 0.006567742) (-0.003537947 0.02100885 0.006079817) (-0.001511654 0.02000691 0.00657355) (-0.002018414 0.02100791 0.006576439) (-0.001009104 0.02100759 0.006577043) (-0.001518057 0.02200841 0.006588095) (0.0005062526 0.02000449 0.006573069) (1.302874e-06 0.0210062 0.006571345) (0.001011881 0.0210058 0.00657225) (0.0005062344 0.02200727 0.006571912) (0.002525979 0.02000431 0.006563582) (0.002019073 0.02100473 0.006565415) (0.003027735 0.02100504 0.006554339) (0.002523651 0.02200625 0.006556689) (0.002527304 0.02100602 0.006063199) (-0.001520035 0.02401203 0.006596381) (-0.001013102 0.02501419 0.006585469) (-0.001521715 0.02501629 0.006097119) (0.0005040884 0.02400886 0.006572322) (-1.503007e-06 0.02501372 0.006589398) (0.001005853 0.02501075 0.006571539) (0.0005045004 0.02501194 0.006089036) (6.236327e-08 -0.01100395 0.008573511) (0.0005034835 -0.01000271 0.008600238) (0.0005037598 -0.01100368 0.008071215) (-0.001002082 -0.007003742 0.008592953) (-0.00150821 -0.006006205 0.00858692) (-0.001509187 -0.008002658 0.008600605) (-0.002009216 -0.007002075 0.00858409) (1.25575e-06 -0.007002091 0.008554418) (0.001007764 -0.006999285 0.008602984) (0.0005044519 -0.006000017 0.008538129) (0.0005027964 -0.008001337 0.00860403) (0.002019241 -0.007000868 0.008601254) (0.002524591 -0.006001113 0.008582302) (0.002526321 -0.007001319 0.008088339) (-0.001512166 -0.004005958 0.008549506) (-0.001007693 -0.003002172 0.00851062) (-0.001515035 -0.002001029 0.008537378) (-0.002021206 -0.003001666 0.008568853) (-3.361701e-07 -0.003000275 0.008492746) (0.0005041461 -0.003999944 0.008502701) (0.001006446 -0.002999549 0.008510927) (0.0005012586 -0.001999688 0.00849671) (0.002017142 -0.002999419 0.008570863) (0.002522665 -0.004000411 0.008578151) (0.002518684 -0.00200059 0.008582314) (0.002520536 -0.003000528 0.008070303) (-0.001514761 -7.419977e-08 0.008541312) (-0.001007474 0.001000086 0.008511995) (-0.001511586 0.002000502 0.008537226) (-0.002018553 0.001000577 0.008573837) (0.001005862 0.0009999509 0.008514424) (0.0005026814 0.001999469 0.008501802) (0.0005012909 9.72178e-08 0.008500332) (-8.58314e-07 0.0009998444 0.008497192) (0.002017342 0.001000653 0.008574923) (0.002518698 3.967305e-07 0.008580461) (0.002522055 0.002001034 0.008588648) (0.002520954 0.00100066 0.008073597) (-0.00151288 0.003999477 0.008545592) (-0.001011069 0.004999401 0.008539738) (-0.001517284 0.006001864 0.008584921) (-0.002019088 0.005001336 0.008582688) (0.0005040595 0.003998675 0.008511986) (0.001009311 0.004998839 0.00855179) (0.0005052484 0.00600029 0.008536543) (-9.084993e-07 0.00499993 0.008508301) (0.002017588 0.005000314 0.008594425) (0.002524184 0.004000936 0.008587008) (0.002519169 0.006001427 0.008579334) (0.002521158 0.005000927 0.008077555) (-0.001511239 0.008003964 0.008604428) (-0.001009609 0.009004856 0.008609965) (-0.001509031 0.009002723 0.008080881) (0.000505262 0.0080012 0.008604259) (-1.61726e-06 0.009006579 0.008611851) (0.001010785 0.009003186 0.008609322) (0.0005041099 0.01000525 0.008599971) (0.0005041798 0.00900383 0.008090236) (-0.001433069 -0.008487431 -0.009661537) (-0.001769654 -0.008511072 -0.009557319) (-0.0002487882 -0.008001623 -0.009788909) (1.211748e-06 -0.008500939 -0.009767169) (-0.0002475981 -0.008994252 -0.009737932) (-0.0002481001 -0.00850037 -0.009519418) (-0.0004982847 -0.01000062 -0.008537107) (2.736797e-06 -0.01100017 -0.008535903) (-0.0004980225 -0.01100066 -0.008039286) (-0.001000643 -0.009000674 -0.00853159) (-0.001504508 -0.008000904 -0.008538708) (-0.00175191 -0.008500404 -0.009030769) (-0.001251849 -0.008500971 -0.009027717) (-0.001504859 -0.00900104 -0.008044018) (-0.0004995819 -0.00800071 -0.008538423) (3.135927e-06 -0.009001275 -0.008553197) (-0.0007492543 -0.009500571 -0.009026899) (-0.0002483752 -0.008500861 -0.009040294) (-0.0007497022 -0.008500652 -0.009023242) (-0.0004992843 -0.009000762 -0.008040122) (-0.0002512595 -0.007001597 -0.009842216) (-0.0002506594 -0.0075014 -0.009560915) (-0.001933779 -0.004501069 -0.009719809) (-0.00173494 -0.00499962 -0.009718882) (-0.001502036 -0.004500948 -0.009767316) (-0.001752636 -0.00450107 -0.009548594) (-0.001002033 -0.007000593 -0.008535862) (-0.001505661 -0.006000818 -0.008541969) (-0.0020129 -0.007001418 -0.008555956) (-0.001252031 -0.006500699 -0.00903459) (-0.00175831 -0.007498789 -0.009049124) (-0.001252098 -0.007500539 -0.009032223) (-0.001754783 -0.006501152 -0.009035103) (-0.0005011189 -0.006000417 -0.008539664) (1.992505e-06 -0.007000891 -0.008555235) (-0.0007513563 -0.006500795 -0.009044831) (-0.000249706 -0.007500914 -0.009052255) (-0.0007504627 -0.007500694 -0.009034974) (-0.0002504533 -0.006500771 -0.009055237) (-0.001003736 -0.005000383 -0.008540463) (-0.001508249 -0.004000478 -0.00855705) (-0.002009673 -0.005001067 -0.008559033) (-0.001253441 -0.005500746 -0.009042712) (-0.001756557 -0.00450087 -0.009068213) (-0.001755095 -0.005501181 -0.009046264) (-0.001255423 -0.004500532 -0.00905175) (-0.0005021922 -0.003999854 -0.008527144) (7.476677e-07 -0.004999988 -0.008529757) (-0.0007528119 -0.005500527 -0.009047508) (-0.0002515872 -0.004499259 -0.009014043) (-0.0002514653 -0.00549979 -0.009036862) (-0.0007536054 -0.004500136 -0.009044691) (-0.001006142 -0.002999902 -0.008540627) (-0.00151498 -0.002000483 -0.008570225) (-0.002015471 -0.003000461 -0.008589473) (-0.001256925 -0.003500238 -0.009057718) (-0.0005026807 -0.001999054 -0.008515016) (3.610322e-07 -0.002999244 -0.008509094) (-0.0002508526 -0.003498864 -0.008995517) (-0.000753694 -0.003499593 -0.009029561) (-0.001008481 -0.0009996173 -0.008534689) (-0.001515355 -2.261617e-07 -0.008564118) (-0.002026196 -0.00100166 -0.008607248) (3.184008e-07 -0.0009983695 -0.008504099) (-0.0005027829 6.273332e-07 -0.008509635) (-0.0002491839 -0.000498036 -0.008986807) (0.002003444 -0.0004907555 -0.009766588) (0.001759311 -1.166146e-06 -0.009786721) (0.001764772 -0.0009921793 -0.009782076) (0.001757807 -0.0004988726 -0.009545659) (0.001007098 -0.003000988 -0.008532268) (0.0005029238 -0.001998645 -0.008509103) (0.0005033089 -0.004000622 -0.008522456) (0.001511261 -0.002000177 -0.008555794) (0.001511514 -0.004004863 -0.008575672) (0.002020113 -0.003001582 -0.008587955) (0.001005974 -0.0009986102 -0.008521468) (0.0005023217 1.472695e-06 -0.008505579) (0.0002515981 -0.0004964409 -0.00898604) (0.0007535737 -0.0004957613 -0.008994201) (0.002016622 -0.00100125 -0.008573028) (0.001510433 4.820703e-07 -0.008541475) (0.001254974 -0.001497355 -0.00902021) (0.001762619 -0.0005007454 -0.009058939) (0.001258171 -0.0004972925 -0.009025639) (-0.001007039 0.001000231 -0.008529465) (-0.001513538 0.002000678 -0.008568248) (-0.002020334 0.001000253 -0.008600458) (-0.000503293 0.001999807 -0.008512969) (-5.697772e-07 0.001000289 -0.008503062) (-0.001008331 0.002999986 -0.008545049) (-0.001515213 0.004001068 -0.008582149) (-0.002019043 0.003001285 -0.008600121) (-0.0005042205 0.003999681 -0.008532879) (-9.212317e-07 0.002999596 -0.008510666) (-0.001494138 0.007499365 -0.009721204) (-0.00100916 0.005000712 -0.008565821) (-0.001513566 0.006001551 -0.008589862) (-0.002018999 0.005001375 -0.008596547) (-0.001265607 0.005501591 -0.009107346) (-0.0005024691 0.006000723 -0.008552016) (4.894005e-07 0.005000417 -0.008539792) (-0.0007552779 0.005500444 -0.009065797) (-0.0002507912 0.004499184 -0.009016424) (-0.0007560013 0.004499039 -0.009044013) (-0.0002500097 0.005500595 -0.009049348) (-0.001006021 0.007000795 -0.008557226) (-0.001508241 0.00800146 -0.008552809) (-0.002016069 0.007002217 -0.008589899) (-0.001257873 0.007500756 -0.009053606) (-0.0005007395 0.008000285 -0.008533611) (1.605289e-06 0.007001192 -0.00854826) (-0.0007538371 0.006500947 -0.009062754) (-0.0002493284 0.007500729 -0.009041694) (-0.0002496755 0.006501129 -0.009058183) (-0.0007522334 0.007500429 -0.009039852) (-0.001001906 0.008999908 -0.008530514) (-0.001251062 0.00949951 -0.00902974) (-0.001753804 0.00850107 -0.009031568) (-0.001253836 0.008500748 -0.009031972) (-0.001747441 0.009500439 -0.009007481) (-0.0005006894 0.009999945 -0.008528734) (1.080161e-06 0.009000619 -0.008527618) (-0.0007506215 0.009497951 -0.009024821) (-0.0002493318 0.008499765 -0.009020473) (-0.0007508616 0.008499218 -0.009020589) (-0.0002502263 0.009499481 -0.009016549) (-0.0005011934 0.009000503 -0.008033898) (-1.520944e-07 0.01100029 -0.008529745) (-0.0007506216 0.01050042 -0.009037214) (-0.0005017742 0.01100026 -0.008035868) (-0.0005007353 -0.006003431 0.008534613) (-0.0005023875 -0.00800699 0.008600781) (-0.001007048 -0.005007409 0.008542495) (-0.00201542 -0.005005571 0.008586015) (-0.0005026395 -0.004002443 0.008501975) (1.312809e-06 -0.005001289 0.008506738) (-0.0005038778 -0.002000446 0.008497163) (-0.001008761 -0.001000328 0.008512273) (-0.002023994 -0.001000794 0.008573939) (-1.418028e-06 -0.0009999322 0.008496004) (-0.0005040031 -5.707417e-08 0.008500484) (0.001513045 0.001999918 0.008546094) (0.001509641 4.016074e-07 0.008539633) (0.001008532 0.002998652 0.008524084) (-2.792538e-07 0.002999269 0.008496177) (0.001515843 0.003997586 0.008577092) (0.002022439 0.003000236 0.008583814) (0.001519482 0.006000989 0.008590629) (0.001012435 0.006999762 0.008594167) (-1.939911e-06 0.007004175 0.008554208) (0.002017645 0.007002204 0.008595208) (0.001514274 0.008002128 0.008604902) (0.0002372365 -0.008998047 -0.009746658) (0.0002521562 -0.008501222 -0.009570672) (0.0004363882 -0.008516543 -0.009752075) (0.0005047211 -0.01000183 -0.008559763) (0.001009347 -0.009002916 -0.00858961) (0.000505804 -0.008002457 -0.008591758) (0.0005053918 -0.009001573 -0.008061931) (0.001513172 -0.008001863 -0.008599924) (0.001510272 -0.009001461 -0.008067248) (0.0002524848 -0.004502021 -0.009905451) (0.000248162 -0.00499912 -0.0096937) (0.0004971088 -0.004497561 -0.009676189) (0.0002487061 -0.004497631 -0.009454723) (0.001012519 -0.007002284 -0.008607011) (0.0005054428 -0.006000656 -0.008554577) (0.001519171 -0.006000711 -0.00859127) (0.002019392 -0.006999813 -0.008590435) (0.001009221 -0.005001417 -0.008556483) (0.002015807 -0.0050016 -0.008580752) (0.002248362 -0.000848179 -0.009707625) (0.002257099 -0.0005002384 -0.00953034) (0.002424814 -0.0004676957 -0.009698581) (0.002523031 -0.002000658 -0.008583925) (0.002517934 -0.004001245 -0.008574351) (0.002522223 -1.069103e-06 -0.008580448) (0.002521279 -0.001000991 -0.008073436) (0.002267848 -0.00050352 -0.009076521) (0.001559673 0.0004860879 -0.009816487) (0.00175895 0.0005015356 -0.009543043) (0.001760815 0.0008615471 -0.009814222) (0.001005634 0.001000864 -0.008518998) (0.000501649 0.002000084 -0.008507364) (0.001511418 0.002000302 -0.00854449) (0.002017756 0.0009993935 -0.008573622) (0.001762159 0.0005003011 -0.009053439) (0.001256786 0.0005025191 -0.009020212) (0.001005227 0.003000355 -0.00852906) (0.0005025366 0.004000148 -0.008528486) (0.001510257 0.004001741 -0.008578434) (0.002016129 0.003000725 -0.008573711) (0.0002521966 0.007001958 -0.009813957) (0.0002522224 0.007501547 -0.009548228) (0.0005010036 0.007501951 -0.009790924) (0.001007859 0.005001825 -0.008567943) (0.0005048113 0.00600177 -0.008561498) (0.000251137 0.004498947 -0.009008113) (0.0002526088 0.005500146 -0.009051738) (0.001510903 0.006003939 -0.00860667) (0.00201305 0.005002508 -0.008593238) (0.001012234 0.007004776 -0.008591075) (0.0005048447 0.008002029 -0.008551127) (0.0002536048 0.007501785 -0.009052139) (0.0002535812 0.006501797 -0.009065523) (0.0007598603 0.006504262 -0.009091639) (0.0007613152 0.007504647 -0.0090904) (0.001511485 0.008003307 -0.008581088) (0.001006841 0.009002794 -0.008553108) (0.0005027632 0.010002 -0.008532477) (0.0002523336 0.008501053 -0.009029411) (0.000756005 0.008503043 -0.009062197) (0.001509659 0.00900242 -0.008052947) (0.0005022347 0.01100116 -0.008036189) (0.001517216 -0.006001147 0.008596064) (0.001513902 -0.008000827 0.008607128) (0.001012209 -0.00500023 0.008547664) (0.001515883 -0.003999998 0.00855212) (0.002022263 -0.005000183 0.008588874) (0.00150838 -0.001999572 0.008535719) (0.001003645 -0.0009996519 0.008510339) (0.002011499 -0.0009996451 0.008567742) (-0.0005032911 0.001999738 0.008497974) (-0.00100692 0.002999653 0.008510895) (-0.002015651 0.00300069 0.008566403) (-0.0005041997 0.003999403 0.008502498) (-0.0005076092 0.00600253 0.008535404) (-0.001015823 0.007005035 0.008599498) (-0.0005094528 0.008010947 0.008605838) (-0.0007481213 -0.009498432 -0.00949106) (-0.0004982876 -0.009500166 -0.009266075) (-0.0007489286 -0.009000156 -0.009257633) (-0.001000349 -0.009501229 -0.009279291) (-0.0007493562 -0.00999822 -0.009283939) (-0.0004974454 -0.00946265 -0.009708536) (-0.000247826 -0.00950006 -0.009502802) (-0.0002482063 -0.009849298 -0.009682033) (-1.251367e-06 -0.009465391 -0.009727733) (-0.0002476837 -0.00900042 -0.009273884) (-0.0004987263 -0.008500398 -0.00926988) (-0.0002492302 -0.008000934 -0.009294614) (2.156469e-06 -0.008501212 -0.009301306) (-0.0009909607 -0.009477061 -0.009669653) (-0.0007380647 -0.009841693 -0.009658232) (-0.0007497483 -0.008000565 -0.009272368) (-0.001000244 -0.008500694 -0.00926096) (-0.0007508791 -0.007000804 -0.009292118) (-0.0005011758 -0.006501501 -0.009310126) (-0.0007523132 -0.006001114 -0.009305145) (-0.001001266 -0.006500844 -0.009293125) (-0.0002518186 -0.006502994 -0.009583637) (-0.0002470378 -0.00610722 -0.009834779) (-7.594357e-07 -0.006520929 -0.009855041) (-0.0005003216 -0.007500883 -0.009294928) (-0.0002504204 -0.007000982 -0.009314934) (2.203033e-07 -0.007501105 -0.009316657) (-0.00100041 -0.007500606 -0.009276663) (-0.0002508045 -0.006001095 -0.00930941) (1.826776e-07 -0.006500339 -0.009316442) (-0.0005039671 -0.005500346 -0.009298621) (-0.0007526721 -0.005000509 -0.009308425) (-0.001004294 -0.005500821 -0.009305503) (-0.0002529007 -0.005499641 -0.009520383) (-0.0002322799 -0.0054657 -0.009917098) (-5.370014e-07 -0.005498355 -0.009725984) (-0.0002516788 -0.004999183 -0.009269355) (-0.0005025418 -0.004499844 -0.009286524) (-0.00025153 -0.003998979 -0.009245907) (-9.869322e-07 -0.004498413 -0.009238556) (-9.398145e-07 -0.00549807 -0.009276131) (-0.0007562317 -0.004000195 -0.009295875) (-0.00100581 -0.004500368 -0.009311523) (-0.0007519568 -0.002999478 -0.009267605) (-0.0005017139 -0.003499214 -0.009254197) (-0.0002495383 -0.002998485 -0.009233641) (-1.25681e-07 -0.003498411 -0.009226688) (-0.001005754 -0.003499592 -0.009303193) (-0.0007457022 -0.000998713 -0.009716773) (-0.000747464 -0.0004987671 -0.009474264) (-0.0007452303 2.555424e-07 -0.009717383) (-0.0007440727 -0.0004994286 -0.009967971) (-0.0009948913 -0.0004991335 -0.009702423) (-0.0002481642 -0.000997098 -0.009234949) (-0.000498777 -0.0004984524 -0.009234018) (1.63864e-06 -0.0004967149 -0.009235358) (-0.0002494604 7.780768e-07 -0.0092348) (0.0007503026 -0.001493186 -0.009470802) (0.0007533173 -0.0009940404 -0.009237905) (0.001002171 -0.00149568 -0.009246256) (0.0005021412 -0.001491582 -0.009724186) (0.0002528021 -0.001493765 -0.009479517) (0.0002517363 -0.001995499 -0.009724401) (0.0002541829 -0.001491603 -0.009983686) (0.00025263 -0.0009945255 -0.00923363) (0.0005025954 -0.0004943524 -0.009233802) (0.0002497435 1.728186e-06 -0.009233359) (0.0009967283 -0.001492758 -0.009706423) (0.0007473315 -0.001994793 -0.009706858) (0.0007512854 -0.00149738 -0.00996018) (0.001006236 -0.0004952933 -0.009252673) (0.0007520275 4.142764e-06 -0.009235428) (0.001249494 -0.00149537 -0.009495031) (0.001504394 -0.001497551 -0.00927664) (0.001255733 -0.0009963071 -0.009268551) (0.001252145 -0.00199702 -0.009255392) (0.001562039 -0.001473319 -0.009827994) (0.001758076 -0.001498505 -0.009539694) (0.001746429 -0.001858702 -0.009803638) (0.001941368 -0.001510165 -0.009735782) (0.001764745 -0.00100235 -0.009316952) (0.001508899 -0.000497637 -0.009292554) (0.001760201 9.600022e-07 -0.009297324) (0.002014533 -0.0005023789 -0.009310713) (0.001224738 -0.001503709 -0.009912997) (0.00124497 -0.001995473 -0.009709704) (0.001257989 4.18245e-06 -0.009269227) (-0.0008346436 0.003891905 -0.00983725) (-0.0002508565 0.003998489 -0.009242186) (-0.0007584292 0.003997268 -0.009282965) (-0.0007525314 0.005498625 -0.009567273) (-0.000755464 0.004999233 -0.009309836) (-0.0005011319 0.005500469 -0.00931016) (-0.0007541498 0.006000969 -0.009322669) (-0.001009481 0.005500815 -0.009334414) (-0.0008200735 0.005129246 -0.009840632) (-0.0007548235 0.004498125 -0.009520041) (-0.0007341463 0.004498582 -0.009937654) (-0.001047161 0.004502257 -0.00982406) (-0.0005021962 0.004498883 -0.009270332) (-0.0002488268 0.005000074 -0.009281083) (9.008758e-07 0.004498852 -0.009247576) (-0.0007510774 0.006000943 -0.009839481) (-0.0006966234 0.005343882 -0.009902614) (-0.001010216 0.005509514 -0.009843172) (-0.001007061 0.004499332 -0.009303989) (-0.0002488929 0.006001676 -0.009312629) (2.195104e-06 0.005500962 -0.009300424) (-0.0007522265 0.006501991 -0.009568843) (-0.0005010432 0.006501299 -0.009315404) (-0.0007526069 0.007000966 -0.009303026) (-0.00100651 0.006501259 -0.0093243) (-0.0007510845 0.007001861 -0.009798655) (-0.0007503608 0.00750059 -0.009530044) (-0.001000405 0.007500364 -0.009765151) (-0.0002494727 0.007001208 -0.009307473) (-0.0004999905 0.007500527 -0.009288507) (-0.0002490002 0.008000234 -0.009277386) (1.760971e-06 0.007501217 -0.009297324) (-0.001004154 0.006503345 -0.009811707) (2.212845e-06 0.006501377 -0.009318624) (-0.0007507752 0.007999825 -0.009270565) (-0.001003947 0.007500519 -0.009287093) (-0.0007500617 0.00899722 -0.009256563) (-0.0005005456 0.009497334 -0.009258925) (-0.001004146 0.009491417 -0.009281657) (-0.0007480894 0.01000194 -0.009294779) (-0.0002489721 0.00949663 -0.00947689) (5.475052e-08 0.009494333 -0.009712583) (-0.0002464642 0.009964986 -0.009702846) (-0.0004994411 0.008498935 -0.00926025) (-0.0002494549 0.008998695 -0.009253153) (1.234503e-06 0.008499911 -0.00926631) (-0.001001382 0.008499202 -0.009263527) (2.277454e-07 0.00949977 -0.009249226) (-0.0002509414 0.009999919 -0.00926353) (-0.002514423 -0.006001694 -0.008556808) (-0.002521729 -0.007002509 -0.008069486) (-0.002513853 -0.004000653 -0.00857181) (-0.002514889 -0.005001006 -0.008059117) (-0.001249496 -0.006500827 -0.0095286) (-0.001250795 -0.007000568 -0.009276297) (-0.001501002 -0.006500897 -0.009271489) (-0.001251932 -0.006000843 -0.009287691) (-0.001248248 -0.007000287 -0.009760449) (-0.001248885 -0.00750009 -0.009509728) (-0.001241393 -0.007997566 -0.009720424) (-0.001495351 -0.006500289 -0.009740707) (-0.001746934 -0.006501576 -0.009493138) (-0.001720775 -0.006001197 -0.009683922) (-0.00190959 -0.006498434 -0.009635327) (-0.001503642 -0.007498808 -0.009283134) (-0.001753087 -0.007000246 -0.009272344) (-0.001755538 -0.00800098 -0.009288191) (-0.002007747 -0.007496359 -0.009293065) (-0.001251158 -0.006001353 -0.009788776) (-0.001250215 -0.008001263 -0.009274164) (-0.001753381 -0.006001387 -0.009278001) (-0.002005206 -0.006503041 -0.009288443) (-0.002522725 -0.001999921 -0.008593704) (-0.002518517 -0.003000061 -0.008075292) (-0.002524736 -1.013917e-06 -0.008605289) (-0.002521486 -0.001000326 -0.008084768) (-0.001256709 -0.003000352 -0.009310682) (-0.001270578 -0.003024058 -0.009825821) (-0.001257087 -0.003500127 -0.009565689) (-0.00126009 -0.004002448 -0.009815425) (-0.001508477 -0.003500711 -0.009314127) (-0.001759532 -0.004000946 -0.009328751) (-0.001257407 -0.004000395 -0.009309619) (0.0007479227 0.000502778 -0.009473539) (0.0007440273 0.001001247 -0.00971537) (0.0009958449 0.0005035666 -0.009708067) (0.0007466606 0.000507696 -0.009962245) (0.00100258 0.0005033495 -0.009244649) (0.002523081 0.00199988 -0.008588861) (0.002520115 0.00400106 -0.008576051) (0.002522023 0.003000454 -0.008074346) (0.0002521646 0.00549794 -0.009559058) (0.0004974789 0.00560352 -0.00983044) (0.0002555594 0.006031332 -0.009851723) (0.0002495499 0.005389846 -0.009914761) (0.0002520251 0.004998852 -0.009270778) (0.0005011414 0.004498244 -0.009246388) (0.0002499078 0.003998312 -0.009231429) (0.0005035193 0.005499074 -0.009312058) (0.0002530571 0.00600113 -0.009321053) (0.0007567642 0.006002603 -0.009336032) (0.0007521602 0.006009909 -0.009837674) (-0.001264404 0.00951644 -0.009573745) (-0.001250512 0.009000206 -0.009284871) (-0.001497126 0.009499191 -0.009272567) (-0.001247897 0.0100001 -0.009279901) (-0.001228595 0.008980864 -0.00966494) (-0.001249622 0.00850091 -0.009492129) (-0.001245048 0.007996158 -0.009721117) (-0.001756291 0.009498271 -0.00949393) (-0.001508338 0.00850158 -0.009285869) (-0.001747442 0.009000284 -0.009265611) (-0.001756821 0.008000153 -0.009282694) (-0.00200065 0.00850027 -0.00926418) (-0.001256563 0.008002211 -0.009279324) (-0.001744384 0.009999105 -0.009224211) (-0.001993114 0.009499108 -0.009220249) (0.0002500305 0.009499983 -0.009478735) (0.0004955837 0.009486278 -0.009695728) (0.0002434011 0.009966099 -0.009704727) (0.0002512454 0.009000521 -0.009258547) (0.000503182 0.0085015 -0.009283039) (0.0002526408 0.00800109 -0.009286503) (0.0007534937 0.009002089 -0.009289454) (0.0007290178 0.008995406 -0.009714223) (0.0007538437 0.008501483 -0.009542921) (0.0007338955 0.008001068 -0.009760627) (0.0009316451 0.00850153 -0.009723361) (0.0007580168 0.008003647 -0.009326409) (0.001007089 0.008504282 -0.009350068) (-0.001258579 -0.009530633 -0.009560939) (-0.001254338 -0.009001856 -0.009276178) (-0.001238954 -0.008983134 -0.009678181) (-0.001251181 -0.008500863 -0.009496116) (-0.001749698 -0.009000373 -0.00926516) (-0.001502174 -0.008500436 -0.009286273) (-0.001999018 -0.008500435 -0.009265217) (-0.001252714 -0.00550094 -0.009542247) (-0.00150234 -0.005500914 -0.009282588) (-0.001254556 -0.005000887 -0.009299543) (-0.001491837 -0.005500536 -0.009744471) (-0.00175014 -0.00550051 -0.009513327) (-0.001918874 -0.005501233 -0.009675308) (-0.001254874 -0.005002182 -0.009807597) (-0.001256456 -0.004500736 -0.009554777) (-0.001756532 -0.005001463 -0.009302272) (-0.001505559 -0.004500827 -0.00930139) (-0.002003906 -0.004500119 -0.009354231) (-0.002006868 -0.005501502 -0.009318771) (-0.0007560111 0.01054187 -0.009568577) (-0.0005043899 0.01050094 -0.009298263) (-0.0007479624 0.01100046 -0.009279687) (-0.001000924 0.01050066 -0.009280989) (-0.0004319867 0.01035473 -0.009658329) (-0.0002473035 0.01062798 -0.009564544) (3.16817e-07 0.01037498 -0.009668625) (0.0002480036 -0.005495637 -0.00951554) (0.0004071915 -0.005694517 -0.009841301) (0.0002361087 -0.006019251 -0.009824969) (0.0002448007 -0.005498083 -0.009901177) (0.00125185 0.0005041822 -0.009499255) (0.001245822 0.001003608 -0.009716995) (0.001235446 0.0005220336 -0.009925151) (0.001507969 0.000502482 -0.009286832) (0.001761642 0.0009997438 -0.00930086) (0.002012184 0.0004997908 -0.009307298) (0.001254208 0.001002556 -0.009259911) (0.0002523995 0.006502105 -0.009578665) (0.0005035712 0.006505424 -0.009833815) (0.0002536157 0.007002141 -0.00931496) (0.0005062723 0.007502844 -0.009314581) (0.0005057086 0.006502678 -0.009329547) (0.0007574983 0.006502995 -0.009581988) (0.0007629815 0.00700638 -0.009349368) (0.001013948 0.006505823 -0.009351213) (0.0007495605 0.007001102 -0.009800543) (0.0007612475 0.007503422 -0.00958602) (0.0009475071 0.007514855 -0.009770266) (0.00100592 0.006493128 -0.009802994) (0.001020309 0.007506698 -0.009384511) (0.0002503176 -0.006499791 -0.0095522) (0.0004315969 -0.006487914 -0.009826573) (0.002517784 -0.006000374 -0.008560604) (0.002518946 -0.005001122 -0.0080656) (-0.002525062 0.002000689 -0.00860511) (-0.002523644 0.001000107 -0.008090522) (-0.002522346 0.004001817 -0.008589498) (-0.002523209 0.0030012 -0.00808499) (0.002263564 -8.360677e-07 -0.009308432) (-0.002513229 0.006002641 -0.008571161) (-0.002518246 0.005002116 -0.008073708) (-0.002516851 0.007003691 -0.008070851) (-0.001262838 0.005501034 -0.009599657) (-0.001269214 0.00500304 -0.009361219) (-0.001524137 0.005501299 -0.009403711) (-0.001264123 0.006002071 -0.009355085) (-0.001257586 0.005001209 -0.009805387) (-0.00125809 0.004501911 -0.009572172) (-0.00126163 0.004006836 -0.009844433) (-0.001453114 0.005515033 -0.009783375) (-0.001239913 0.006003038 -0.009800246) (-0.001003764 -0.02501032 -0.0065601) (-0.001504642 -0.02400933 -0.00656505) (-0.001509295 -0.02500967 -0.006067982) (2.11794e-07 -0.02501925 -0.006581054) (-0.0005015689 -0.02401366 -0.006568625) (-0.0005028067 -0.02501397 -0.006072254) (0.00100284 -0.02501384 -0.006563826) (0.0005017827 -0.02401444 -0.006568787) (0.0005028165 -0.02501573 -0.006075082) (0.001507885 -0.02401172 -0.006562805) (0.001512534 -0.0250117 -0.006066096) (-0.002513296 -0.02200284 -0.006539747) (-0.002007132 -0.0230042 -0.006541973) (-0.00251635 -0.02300422 -0.006052202) (-0.003023613 -0.02100511 -0.006550947) (-0.003530071 -0.02000782 -0.0065618) (-0.003532543 -0.02100746 -0.006060806) (-0.002013052 -0.02100287 -0.006554153) (-0.002519736 -0.02000347 -0.006561772) (-0.002518809 -0.02100388 -0.006053946) (-0.001002936 -0.02300797 -0.006565688) (-0.001506401 -0.02200363 -0.006554118) (-0.000500797 -0.02200665 -0.006571434) (7.793946e-07 -0.02301074 -0.006571256) (-0.001005006 -0.02100298 -0.006562146) (-0.001511039 -0.02000224 -0.006561416) (8.946347e-07 -0.02100582 -0.006565927) (-0.0005024 -0.02000384 -0.006564088) (0.001004324 -0.02300999 -0.006562475) (0.0005027633 -0.02200834 -0.006569702) (0.001507374 -0.02200771 -0.006558749) (0.002012502 -0.02300938 -0.00655291) (0.001005048 -0.02100666 -0.006563539) (0.0005030838 -0.02000517 -0.006563959) (0.00201207 -0.02100605 -0.006562265) (0.00150909 -0.02000502 -0.006567655) (0.002516348 -0.0220073 -0.006553277) (0.003020484 -0.02100403 -0.006556673) (0.00251855 -0.02000399 -0.006569135) (0.002520312 -0.0210062 -0.006064917) (0.003527731 -0.02000175 -0.006566644) (0.003533217 -0.02100576 -0.006067368) (-0.00452963 -0.01800439 -0.006545687) (-0.004026292 -0.01900539 -0.006551054) (-0.004537801 -0.01900516 -0.006056749) (-0.004029723 -0.01700428 -0.006562958) (-0.004532696 -0.01600514 -0.006563848) (-0.004538894 -0.01700579 -0.006059072) (-0.002520677 -0.01700367 -0.007073889) (-0.002015348 -0.01700335 -0.007565991) (-0.002519614 -0.01600618 -0.007571358) (-0.003024896 -0.01900432 -0.006565821) (-0.003525776 -0.01800447 -0.006561835) (-0.002520911 -0.01800304 -0.006567977) (-0.002016863 -0.01900248 -0.006565095) (-0.003025085 -0.0170043 -0.006573931) (-0.003527577 -0.01600484 -0.006572853) (-0.002017374 -0.01700294 -0.006566587) (-0.002519897 -0.01600371 -0.006566957) (-0.0005027439 -0.01800481 -0.007572288) (-0.0005026525 -0.01900491 -0.007071419) (-0.00100587 -0.01700184 -0.00756801) (-0.001510989 -0.01700235 -0.007068451) (-0.0005023588 -0.01700351 -0.00706909) (1.23413e-06 -0.01700499 -0.007568925) (-0.0005013095 -0.0160036 -0.007576007) (-0.001007061 -0.01900256 -0.006563943) (-0.001511579 -0.01800214 -0.006563832) (-0.0005030049 -0.01800345 -0.006563892) (6.15861e-07 -0.01900457 -0.006564113) (0.001509259 -0.01800696 -0.007575534) (0.001509301 -0.01900471 -0.0070731) (0.001006758 -0.01700654 -0.007570574) (0.0005041601 -0.01700506 -0.00706972) (0.00151082 -0.01700641 -0.00707176) (0.002013221 -0.01700904 -0.007573316) (0.001510131 -0.01600659 -0.007571876) (0.00100638 -0.01900471 -0.00656636) (0.0005037777 -0.01800451 -0.006564304) (0.001510883 -0.01800462 -0.006568352) (0.0020149 -0.01900404 -0.00657098) (0.002018371 -0.01700521 -0.006568185) (0.002523522 -0.01700623 -0.007074712) (0.003025555 -0.01900277 -0.006570308) (0.002522632 -0.01800419 -0.006572261) (0.003532752 -0.0180049 -0.006569906) (0.00403103 -0.01900433 -0.006557859) (0.003030116 -0.01700576 -0.00657342) (0.002523707 -0.01600569 -0.006568559) (0.004043691 -0.01700695 -0.006577322) (0.003538621 -0.01600681 -0.006577978) (0.004538939 -0.01800813 -0.006564978) (0.004555563 -0.01600738 -0.00658505) (0.004551716 -0.01700909 -0.006076226) (-0.004531068 -0.01400378 -0.006558079) (-0.004031159 -0.0150045 -0.006567678) (-0.004533112 -0.0150054 -0.00605761) (-0.005033644 -0.01300275 -0.006548961) (-0.005556423 -0.01200249 -0.006563017) (-0.005544248 -0.01300336 -0.00604686) (-0.004033005 -0.01300351 -0.006562511) (-0.004539429 -0.0120036 -0.006559508) (-0.004535055 -0.01300344 -0.006054131) (-0.002521128 -0.0140037 -0.00756965) (-0.00252013 -0.01500412 -0.007068978) (-0.003028149 -0.01300313 -0.007577519) (-0.003532422 -0.01300353 -0.007074537) (-0.002519797 -0.01300286 -0.007069416) (-0.002518366 -0.01200262 -0.0075749) (-0.00201131 -0.0130026 -0.00757032) (-0.00302458 -0.01500406 -0.006568875) (-0.003529015 -0.0140037 -0.006567732) (-0.003027039 -0.01300308 -0.006565595) (-0.003530936 -0.01200313 -0.00656299) (0.003533554 -0.01401165 -0.007583516) (0.003535568 -0.0150077 -0.007081377) (0.003031137 -0.01300842 -0.007572219) (0.002523443 -0.01300595 -0.007067198) (0.00201653 -0.01300421 -0.007566464) (0.003538884 -0.0130088 -0.007078222) (0.003538275 -0.01201029 -0.007570524) (0.003030035 -0.01500651 -0.006571562) (0.002523489 -0.01400572 -0.006564997) (0.002019087 -0.01500525 -0.006563576) (0.003537525 -0.01400745 -0.006576989) (0.004046178 -0.01500702 -0.006583402) (0.003031796 -0.01300659 -0.006568102) (0.004044862 -0.01300747 -0.006579528) (0.003536779 -0.01200642 -0.006569354) (0.004550015 -0.01400683 -0.006582769) (0.005051799 -0.01300847 -0.006579447) (0.004548679 -0.01200588 -0.006576751) (0.004551037 -0.01300661 -0.006078377) (0.005556756 -0.0120049 -0.006572891) (0.005558127 -0.01300579 -0.006070591) (-0.004554474 -0.009002613 -0.007068355) (-0.004049776 -0.009005325 -0.007571682) (-0.004551911 -0.008002572 -0.007574762) (-0.005049599 -0.01100268 -0.006568376) (-0.005549145 -0.01000207 -0.006565048) (-0.004545371 -0.01000248 -0.006561915) (-0.004038448 -0.01100301 -0.006559952) (-0.005056362 -0.009002139 -0.006563469) (-0.005553473 -0.008001774 -0.006553117) (-0.004043711 -0.009002465 -0.006559995) (-0.004548206 -0.00800198 -0.006560893) (-0.00251749 -0.01000218 -0.007565174) (-0.002518184 -0.01100223 -0.007064462) (-0.00302771 -0.009003471 -0.007567675) (-0.003536634 -0.009003411 -0.007065422) (-0.002518838 -0.009002134 -0.007057399) (-0.002011492 -0.009001662 -0.007554061) (-0.002519437 -0.008002411 -0.007560888) (-0.0004993061 -0.01000082 -0.007541711) (-0.000499452 -0.0110011 -0.007044934) (-0.0004985381 -0.01200143 -0.007550574) (-0.001002509 -0.009000834 -0.007540795) (-0.001506892 -0.009001108 -0.007045065) (-0.0005002326 -0.009000803 -0.00704009) (2.535815e-06 -0.009000923 -0.007545044) (0.001509722 -0.01000142 -0.007553611) (0.001510334 -0.01100187 -0.007051148) (0.001510667 -0.01200189 -0.007555905) (0.001007502 -0.009001303 -0.007556421) (0.0005046742 -0.009001027 -0.007046478) (0.001510192 -0.009001423 -0.007053212) (0.002013512 -0.009001763 -0.007559648) (0.004534385 -0.009004087 -0.007064258) (0.004028604 -0.009004634 -0.007569755) (0.005046754 -0.01100477 -0.006573165) (0.004537969 -0.01000401 -0.006565216) (0.004039164 -0.01100461 -0.006566956) (0.005535804 -0.01000373 -0.006561622) (0.005037131 -0.009003762 -0.006560482) (0.004535471 -0.008004228 -0.006559374) (0.004033127 -0.009003906 -0.006560599) (0.005539072 -0.008002964 -0.006552172) (-0.004542699 -0.006001515 -0.007569907) (-0.004551189 -0.007002046 -0.00707121) (-0.004541599 -0.005001171 -0.007067129) (-0.004033205 -0.005001074 -0.007570473) (-0.004536083 -0.004000707 -0.007581857) (-0.005052734 -0.007001775 -0.006561092) (-0.005560256 -0.006001997 -0.00656267) (-0.004544331 -0.006001424 -0.006560059) (-0.004041556 -0.007001749 -0.006558963) (-0.005050806 -0.005001467 -0.006564027) (-0.005562153 -0.004001842 -0.006575931) (-0.004037262 -0.005000984 -0.006559602) (-0.004541438 -0.004000848 -0.006564393) (-0.002517532 -0.006001446 -0.007556464) (-0.002518694 -0.007001705 -0.007054493) (-0.003021053 -0.005000979 -0.0075614) (-0.003527834 -0.005000966 -0.007063117) (-0.002516701 -0.005000805 -0.007053457) (-0.002516451 -0.004000439 -0.007560104) (0.004540627 -0.005003288 -0.007067388) (0.004035167 -0.005002687 -0.007567636) (0.00504231 -0.007004606 -0.006562052) (0.004538609 -0.006003822 -0.006560507) (0.004033105 -0.007004001 -0.006557573) (0.005557004 -0.006003487 -0.00657217) (0.005048834 -0.005003251 -0.00656884) (0.004538976 -0.004002562 -0.006562732) (0.004034425 -0.005002809 -0.006558384) (0.005562111 -0.004003055 -0.006584246) (-0.006045839 -0.001001567 -0.006560657) (-0.006508138 3.813832e-07 -0.006509969) (-0.006545685 -0.001002294 -0.006048596) (-0.004540786 -0.0019982 -0.007589655) (-0.004540838 -0.003000196 -0.007076295) (-0.004541674 -0.0009990653 -0.007076718) (-0.004031128 -0.0009984682 -0.007577312) (-0.004538713 2.393033e-06 -0.007577977) (-0.005048549 -0.003001098 -0.006570287) (-0.005554114 -0.0020017 -0.006573451) (-0.004541053 -0.001999954 -0.006568547) (-0.004036059 -0.003000145 -0.006564904) (-0.005048252 -0.000999793 -0.006571871) (-0.005551379 2.173229e-06 -0.006569336) (-0.004036978 -0.0009990993 -0.006567425) (-0.004543086 1.796812e-06 -0.006569853) (-0.002519084 -0.001999902 -0.007569577) (-0.002517517 -0.003000092 -0.007059742) (-0.003023542 -0.0009996335 -0.00757617) (-0.003528381 -0.0009991725 -0.007073781) (-0.002519272 -0.0009998366 -0.007065144) (-0.002521103 4.987009e-08 -0.007574832) (0.003528761 -0.002001383 -0.007574165) (0.00352812 -0.003001603 -0.007065302) (0.003529896 -0.004001836 -0.007568932) (0.003024322 -0.001000896 -0.00757054) (0.002519078 -0.001000637 -0.007058111) (0.003525928 -0.001001041 -0.007065311) (0.004027499 -0.00100133 -0.007567913) (0.003529355 -6.655344e-07 -0.007575385) (0.004031748 -0.003002001 -0.006558259) (0.004026675 -0.001001347 -0.006553002) (0.004527259 -0.001001825 -0.007056444) (0.005042153 -0.003002716 -0.006565854) (0.004531043 -0.00200205 -0.006556154) (0.00553637 -0.002003484 -0.00655715) (0.005025911 -0.001002112 -0.006546241) (0.004526377 -1.041768e-06 -0.006549075) (0.006006319 -0.001002432 -0.006513357) (0.005516001 -1.436922e-06 -0.006529307) (0.006474194 -6.687238e-07 -0.00647447) (0.006514787 -0.001002199 -0.006004607) (-0.006053138 0.001005815 -0.006563169) (-0.006555293 0.001002987 -0.006046616) (-0.004553384 0.002003164 -0.007595027) (-0.004548515 0.001003304 -0.007083118) (-0.004549823 0.003002858 -0.007077233) (-0.004543038 0.004002079 -0.007572299) (-0.004042109 0.003002403 -0.007584187) (-0.005054498 0.001003647 -0.006574329) (-0.005568094 0.002004946 -0.006579612) (-0.004548523 0.002002937 -0.006571865) (-0.004040836 0.0010022 -0.006570463) (-0.005059759 0.003003562 -0.006574855) (-0.005572573 0.004003663 -0.006582129) (-0.004545557 0.004002692 -0.00656466) (-0.004041655 0.003002445 -0.006566799) (0.003534748 0.002000233 -0.007583425) (0.003529721 0.0009998 -0.007070286) (0.003027523 0.003000388 -0.007573188) (0.002520294 0.003000456 -0.007060622) (0.003532357 0.003000476 -0.007071333) (0.004041685 0.003000689 -0.007585627) (0.003532963 0.004000653 -0.007574484) (0.004030306 0.0009996971 -0.00655617) (0.004037598 0.00300068 -0.006562056) (0.00454529 0.003000817 -0.007073432) (0.005029568 0.0009994984 -0.006546687) (0.004537268 0.002000223 -0.006559069) (0.005544778 0.002000312 -0.00655567) (0.00600934 0.0009997298 -0.006514684) (0.005051983 0.003001309 -0.00656618) (0.004544536 0.00400126 -0.00656434) (0.005571082 0.004002516 -0.006583518) (-0.004528418 0.006003456 -0.007550429) (-0.004539132 0.005002736 -0.007060899) (-0.004532127 0.007005681 -0.007059561) (-0.004535744 0.008011824 -0.007579138) (-0.004023836 0.007005105 -0.007562398) (-0.005050602 0.0050029 -0.006564177) (-0.005553839 0.006002837 -0.006564409) (-0.004536676 0.006003367 -0.006556083) (-0.004035517 0.005002679 -0.006557711) (-0.005038918 0.007004246 -0.006556642) (-0.005538072 0.008003652 -0.0065544) (-0.004534258 0.008005198 -0.006562751) (-0.004030507 0.007004056 -0.006557273) (0.004537623 0.007002476 -0.007055944) (0.004030432 0.007001953 -0.007553247) (0.005052963 0.00500182 -0.006568235) (0.00454116 0.006001762 -0.006557488) (0.004037697 0.005001314 -0.006558603) (0.005562147 0.006001668 -0.006570541) (0.005045617 0.007002355 -0.006557524) (0.004538209 0.008003093 -0.006558266) (0.00403478 0.007002103 -0.006554054) (0.005546364 0.008002923 -0.006557322) (-0.004539231 0.009005923 -0.007078859) (-0.005039422 0.009004478 -0.006568505) (-0.005533672 0.01000148 -0.00656052) (-0.004535124 0.01000299 -0.006566107) (-0.004031802 0.009004114 -0.006565024) (-0.005037323 0.01100261 -0.006567363) (-0.005544221 0.01200358 -0.006561768) (-0.004032433 0.01100298 -0.00656474) (-0.004536483 0.0120036 -0.006566464) (-0.002517023 0.01000469 -0.007570003) (-0.002516317 0.009003512 -0.00706166) (-0.002516472 0.008003572 -0.007565055) (-0.003024744 0.01100435 -0.007567289) (-0.003528378 0.01100343 -0.007066753) (-0.002519257 0.01100398 -0.007065886) (-0.002014575 0.01100349 -0.007569391) (-0.002522363 0.01200512 -0.007573655) (-0.003530057 0.0120046 -0.006566403) (-0.0005019021 0.01000076 -0.007537569) (-0.0005020831 0.009000969 -0.007038438) (-0.001005329 0.01100108 -0.007546584) (-0.001509551 0.01100212 -0.007054428) (-0.0005026504 0.0110009 -0.007042828) (4.036821e-08 0.01100078 -0.007539698) (-0.0005029698 0.01200062 -0.007548722) (0.001509559 0.01000228 -0.007548374) (0.001509187 0.009001869 -0.007047597) (0.001005795 0.01100196 -0.007545617) (0.0005026202 0.0110013 -0.007042619) (0.001509255 0.01100237 -0.007050308) (0.002014054 0.0110032 -0.007559172) (0.001508739 0.01200284 -0.007557312) (0.005042282 0.009004335 -0.006566869) (0.004541023 0.01000443 -0.006571995) (0.004035028 0.009003266 -0.006561363) (0.00554696 0.01000714 -0.006581092) (0.005053358 0.01100733 -0.00658853) (0.004547996 0.01200487 -0.006583771) (0.004039303 0.01100435 -0.006572615) (0.005565591 0.01200809 -0.006591042) (-0.005037305 0.01300535 -0.006557071) (-0.004540718 0.01400863 -0.006571427) (-0.004034083 0.01300607 -0.0065699) (-0.00454016 0.01300579 -0.006066544) (-0.004039091 0.01500877 -0.006578023) (-0.004544063 0.01601094 -0.006571829) (-0.004546695 0.0150079 -0.006070666) (-0.002526338 0.01400768 -0.00758351) (-0.00252311 0.01300543 -0.007073463) (-0.003029913 0.01500647 -0.007588021) (-0.0035341 0.01500703 -0.00708765) (-0.002524373 0.01500526 -0.007079645) (-0.002016102 0.01500413 -0.007573899) (-0.002521719 0.01600344 -0.007578312) (-0.003027943 0.01300551 -0.006568764) (-0.003532466 0.01400704 -0.006576081) (-0.003029056 0.01500582 -0.006576846) (-0.003535574 0.01600669 -0.006581391) (-0.002524167 0.0160047 -0.006573743) (-0.0005040367 0.01400152 -0.007581141) (-0.0005038173 0.01300122 -0.007060412) (-0.001007651 0.01500279 -0.007579706) (-0.001512488 0.0150032 -0.007072467) (-0.0005051012 0.0150028 -0.007075054) (-0.0005064 0.01600411 -0.007579243) (-1.925371e-06 0.01500333 -0.007587223) (0.003535819 0.01400512 -0.007575371) (0.003533324 0.01300529 -0.007074464) (0.003528802 0.0120074 -0.007569544) (0.00301967 0.01500232 -0.007565176) (0.002518492 0.01500328 -0.007067218) (0.00201056 0.01500288 -0.0075615) (0.00353373 0.0150037 -0.007079114) (0.003538216 0.01400477 -0.00658022) (0.00404576 0.01300482 -0.006584298) (0.003027911 0.01500367 -0.00657126) (0.00252108 0.01600374 -0.006566548) (0.004043495 0.01500479 -0.006580259) (0.003537601 0.01600446 -0.006579107) (0.005053968 0.01300427 -0.006589875) (0.004545439 0.01400439 -0.006580669) (0.005552543 0.01300603 -0.006068582) (0.004552237 0.0160057 -0.006578447) (0.004547648 0.01500511 -0.006070487) (-0.004540698 0.01800631 -0.00654596) (-0.004037581 0.01700756 -0.006568156) (-0.004548592 0.01700748 -0.006063681) (-0.004033059 0.01900577 -0.006551038) (-0.004548178 0.01900428 -0.006053551) (-0.002524607 0.01700509 -0.007079527) (-0.003029919 0.01700591 -0.006577417) (-0.003533129 0.01800693 -0.006569465) (-0.002524648 0.01800558 -0.006575826) (-0.002020583 0.01700467 -0.006571752) (-0.003028167 0.0190069 -0.006571165) (-0.003531819 0.02000781 -0.006562902) (-0.002019179 0.01900605 -0.006573216) (-0.002522301 0.02000622 -0.00656852) (-0.0005100425 0.01800579 -0.007574615) (-0.0005080059 0.01700462 -0.0070732) (-0.001011669 0.01900545 -0.007573331) (-0.001515056 0.01900624 -0.007075528) (-0.0005066142 0.01900543 -0.007070061) (-1.192342e-06 0.0190051 -0.007576632) (-0.00151587 0.01800495 -0.006571975) (-0.0005069666 0.01800461 -0.006565091) (-0.001010686 0.01900494 -0.006566125) (-0.001514202 0.02000598 -0.006566683) (-1.779216e-06 0.01900466 -0.006563716) (-0.0005053009 0.02000463 -0.006561747) (0.001510959 0.01800818 -0.007573108) (0.001511089 0.01700551 -0.007068233) (0.001508647 0.0160041 -0.007563657) (0.00100771 0.01900658 -0.007573622) (0.000502792 0.0190056 -0.007070554) (0.001511654 0.01900624 -0.007075049) (0.0005023745 0.01800516 -0.00656382) (0.001511271 0.01800558 -0.006566992) (0.002017388 0.01700451 -0.006566054) (0.001006721 0.01900516 -0.006565693) (0.0005022841 0.02000481 -0.006562964) (0.002015986 0.01900576 -0.006570669) (0.001510482 0.02000466 -0.006566257) (0.003028219 0.01700509 -0.006570814) (0.00252094 0.01800578 -0.006568676) (0.003533873 0.01800716 -0.006566419) (0.004050102 0.01700715 -0.006576488) (0.003026866 0.01900747 -0.006568424) (0.002520071 0.02000571 -0.006565485) (0.003534201 0.02001124 -0.006564057) (-0.003024725 0.02100419 -0.006554411) (-0.002521653 0.02200278 -0.006553511) (-0.002017383 0.02100509 -0.006561928) (-0.002524225 0.02100485 -0.006061659) (-0.002018007 0.02300518 -0.006557099) (-0.002530032 0.02300761 -0.006071972) (-0.001008617 0.02100465 -0.006560421) (-0.001512042 0.02200473 -0.00655797) (-0.0005040112 0.02200583 -0.006564087) (-1.063657e-06 0.02100512 -0.006562907) (-0.001007287 0.02300668 -0.00655948) (-0.001513457 0.02401011 -0.006566326) (-1.060771e-06 0.02300802 -0.006570192) (-0.000504041 0.0240108 -0.006567953) (0.001005038 0.02100459 -0.006562003) (0.0005017496 0.02200667 -0.006567223) (0.001506824 0.02200349 -0.006554071) (0.002012277 0.02100345 -0.006557776) (0.001003864 0.02300593 -0.006559507) (0.0005008155 0.02401107 -0.006569474) (0.002009035 0.02300201 -0.006541431) (0.001506266 0.02400545 -0.00655609) (0.003024187 0.02100586 -0.006549209) (0.002512717 0.02200203 -0.006539683) (0.003535637 0.02100969 -0.006057201) (0.002517864 0.02300506 -0.006050573) (-0.001008446 0.02501389 -0.006563194) (-1.906095e-06 0.02501566 -0.006586251) (-0.0005065707 0.02501525 -0.006079033) (0.001002119 0.0250094 -0.006563011) (0.00150802 0.02500999 -0.006065421) (3.581599e-06 -0.03301249 -0.004551157) (-0.0005037494 -0.03202509 -0.0045884) (-0.0005059731 -0.03301776 -0.004064263) (0.0005119762 -0.03203146 -0.004602235) (0.0005127322 -0.03302563 -0.004073574) (-0.002540175 -0.03002543 -0.004592215) (-0.002037702 -0.03102973 -0.004594926) (-0.002537852 -0.03102667 -0.004093364) (-0.003043071 -0.02902098 -0.004583013) (-0.003545513 -0.02801593 -0.004575719) (-0.003554066 -0.02901883 -0.004080702) (-0.002032937 -0.02902436 -0.004593755) (-0.002537107 -0.02801981 -0.004586096) (-0.00254038 -0.02902302 -0.00408758) (-0.001006199 -0.02901567 -0.005568397) (-0.001519338 -0.02902054 -0.005087907) (-0.0005045097 -0.0290207 -0.005085315) (1.179333e-06 -0.02901921 -0.005582806) (-0.0005030556 -0.0280161 -0.005572942) (-0.001016288 -0.03102541 -0.004590714) (-0.001526916 -0.03002617 -0.004596587) (-0.0005062302 -0.03002545 -0.004594082) (2.724461e-06 -0.03103068 -0.004603439) (-0.001014377 -0.0290222 -0.004587831) (-0.001521806 -0.02802077 -0.004586374) (6.571263e-07 -0.02902275 -0.004587881) (-0.000506049 -0.02801994 -0.004581395) (0.001007182 -0.02901792 -0.005571128) (0.0005058513 -0.02902252 -0.00508763) (0.001516131 -0.02901746 -0.005078882) (0.001514166 -0.02801259 -0.005563745) (0.001014331 -0.03102821 -0.004599095) (0.0005080386 -0.03002654 -0.004597456) (0.001518582 -0.03002253 -0.004586159) (0.002020072 -0.03102291 -0.004580191) (0.0010128 -0.02902152 -0.004584908) (0.0005062308 -0.02801994 -0.004580199) (0.002026814 -0.02901939 -0.004578793) (0.001519559 -0.0280178 -0.004576586) (0.002530873 -0.03002182 -0.004572541) (0.003046827 -0.02902151 -0.00457901) (0.002537765 -0.02801827 -0.004580173) (0.002538566 -0.02902024 -0.004074428) (0.003557648 -0.02801821 -0.004578635) (0.003563519 -0.02901915 -0.0040702) (-0.004551407 -0.02601559 -0.004572942) (-0.004045287 -0.02701219 -0.004567755) (-0.004553281 -0.02701155 -0.004058945) (-0.004046481 -0.02501047 -0.004567789) (-0.004542847 -0.02400841 -0.004550345) (-0.004555309 -0.02501197 -0.004057842) (-0.002528874 -0.02600963 -0.005573612) (-0.002532925 -0.02701489 -0.005080918) (-0.003032082 -0.02500811 -0.005571709) (-0.00353907 -0.02500897 -0.005072765) (-0.002527536 -0.02500907 -0.005070948) (-0.002018444 -0.02500899 -0.005568829) (-0.002522327 -0.02400649 -0.005564599) (-0.003042275 -0.0270152 -0.004579567) (-0.003546038 -0.02601219 -0.004576927) (-0.002533984 -0.02601311 -0.004575949) (-0.002029894 -0.0270162 -0.004579726) (-0.003037861 -0.02500968 -0.004569145) (-0.003538776 -0.02400817 -0.004562526) (0.003040852 -0.02501329 -0.005587343) (0.002533246 -0.02501289 -0.005080292) (0.002023984 -0.02501264 -0.005576124) (0.003545944 -0.02501209 -0.005082687) (0.003540828 -0.02401035 -0.005575675) (0.003046176 -0.02701662 -0.004581278) (0.00253676 -0.02601419 -0.004577792) (0.002030366 -0.02701507 -0.004575326) (0.003551353 -0.02601375 -0.004580785) (0.004057056 -0.02701338 -0.004570197) (0.003043683 -0.025012 -0.004575787) (0.004053915 -0.02501041 -0.004572212) (0.00354617 -0.02401011 -0.004570514) (0.004557908 -0.02600929 -0.004567203) (0.004551597 -0.02400832 -0.0045559) (0.00456511 -0.02501016 -0.004057543) (-0.004532925 -0.02200441 -0.005548137) (-0.004536204 -0.02300436 -0.005044847) (-0.004542864 -0.02100551 -0.005051033) (-0.004037789 -0.02100647 -0.005559227) (-0.004545445 -0.02000592 -0.005564415) (-0.0050429 -0.0230053 -0.00453752) (-0.005544893 -0.02200572 -0.004532241) (-0.004542624 -0.02200572 -0.004544313) (-0.004039857 -0.02300619 -0.004549606) (-0.004547266 -0.02300734 -0.004045163) (-0.005048554 -0.02100664 -0.004541463) (-0.005553101 -0.02000791 -0.004539129) (-0.005554525 -0.02100924 -0.004036615) (-0.004038817 -0.02100528 -0.004545125) (-0.004544694 -0.02000583 -0.004546064) (-0.004544216 -0.02100614 -0.004040791) (0.004544552 -0.02100688 -0.005064696) (0.00404031 -0.02100655 -0.005569286) (0.005050956 -0.02300775 -0.004547946) (0.004548321 -0.02200692 -0.004556109) (0.004047481 -0.02300769 -0.00455964) (0.005551801 -0.0220066 -0.004546577) (0.00555757 -0.0230069 -0.00403847) (0.005051527 -0.0210065 -0.004555165) (0.004042503 -0.02100598 -0.004555811) (0.004545573 -0.02000587 -0.004555606) (0.004548101 -0.02100588 -0.004050281) (0.005552969 -0.02000498 -0.004547066) (0.005564528 -0.02100675 -0.004048764) (-0.006550475 -0.01800432 -0.004532611) (-0.006553125 -0.01900984 -0.004029858) (-0.006051426 -0.01900697 -0.004536075) (-0.006546168 -0.01600537 -0.004527095) (-0.006557906 -0.0170062 -0.00403061) (-0.006054128 -0.01700647 -0.004538528) (0.006554678 -0.01800118 -0.00452864) (0.006055495 -0.01900303 -0.004537771) (0.006566582 -0.01600534 -0.004538637) (0.006562672 -0.0170048 -0.004031445) (0.006061003 -0.017004 -0.004539755) (-0.006563077 -0.01300494 -0.005039849) (-0.006574998 -0.01200286 -0.005552019) (-0.00605287 -0.0130038 -0.005540272) (-0.006561142 -0.01400485 -0.004535568) (-0.006565383 -0.01500536 -0.00403183) (-0.006052945 -0.01500628 -0.004534367) (-0.006573904 -0.01200471 -0.00454624) (-0.006569264 -0.01300413 -0.004037448) (-0.006060933 -0.01300443 -0.004538271) (0.006567377 -0.01300068 -0.005056481) (0.006061713 -0.01300457 -0.005562281) (0.00656377 -0.01400287 -0.004543549) (0.00606299 -0.0150042 -0.004545941) (0.006567661 -0.01200239 -0.004551536) (0.006567485 -0.01300203 -0.004041312) (0.006065612 -0.01300264 -0.004550254) (-0.006559839 -0.01000477 -0.00554322) (-0.006575774 -0.01100457 -0.005054297) (-0.006559424 -0.009003276 -0.005037001) (-0.006546226 -0.008001901 -0.005533063) (-0.006570715 -0.01000446 -0.004542822) (-0.006572093 -0.01100448 -0.004041272) (-0.007074436 -0.00900385 -0.00453843) (-0.00758148 -0.008002692 -0.004534501) (-0.00758828 -0.009003914 -0.004038551) (-0.006560728 -0.008002148 -0.004532908) (-0.006565845 -0.009003128 -0.004034647) (0.00655406 -0.009004313 -0.005039895) (0.006563225 -0.01000436 -0.004543642) (0.007065089 -0.009003993 -0.004534393) (0.006554677 -0.008003717 -0.004533116) (0.006559833 -0.009003667 -0.004033135) (0.007568435 -0.008006198 -0.004531839) (0.00758215 -0.009004373 -0.004030072) (-0.006558958 -0.00600193 -0.005544569) (-0.006554572 -0.00700124 -0.00503475) (-0.006556511 -0.005001412 -0.005041498) (-0.006572342 -0.004002438 -0.005561734) (-0.007065802 -0.00700063 -0.004530972) (-0.007546371 -0.006000065 -0.004520557) (-0.006553671 -0.006001022 -0.004531592) (-0.006559954 -0.007001344 -0.004029727) (-0.007051813 -0.005000845 -0.004529956) (-0.007553082 -0.004000972 -0.004528801) (-0.007555576 -0.005000671 -0.00402333) (-0.006554664 -0.004001122 -0.004537767) (-0.006552637 -0.005000925 -0.004029967) (0.006560602 -0.005002235 -0.005045698) (0.007054506 -0.007003412 -0.00452876) (0.006552477 -0.006002451 -0.004533065) (0.007552549 -0.006002204 -0.004522721) (0.007563541 -0.007004093 -0.00402421) (0.007059056 -0.00500186 -0.004532897) (0.006558089 -0.004001886 -0.004536378) (0.006553358 -0.005001961 -0.004029974) (0.007572477 -0.004001573 -0.004535044) (0.007561427 -0.005001708 -0.00402454) (-0.006565783 -0.00200219 -0.005560771) (-0.006563005 -0.003001703 -0.00505141) (-0.006561113 -0.001000871 -0.005051249) (-0.006557884 2.553409e-07 -0.005550084) (-0.007061942 -0.003001071 -0.004541506) (-0.007574738 -0.002001462 -0.00454981) (-0.006559252 -0.002000896 -0.004544126) (-0.006555107 -0.003000816 -0.004035916) (-0.007069084 -0.00100076 -0.004548927) (-0.007577392 1.101638e-06 -0.004548852) (-0.007578768 -0.001000619 -0.00404574) (-0.006561453 6.127491e-07 -0.004543625) (-0.006559566 -0.001000124 -0.004040091) (0.006549508 -0.001001389 -0.005028051) (0.007069404 -0.003001829 -0.004537257) (0.006558205 -0.002001534 -0.004532632) (0.007585955 -0.002001193 -0.004543311) (0.007576805 -0.003001315 -0.004036014) (0.007066728 -0.00100075 -0.004534421) (0.006553485 -9.172454e-08 -0.004529773) (0.006557531 -0.00100062 -0.004030249) (0.00758224 1.020808e-06 -0.004545344) (0.007583802 -0.001000191 -0.004039626) (-0.006575603 0.002003962 -0.005555348) (-0.006565339 0.001001864 -0.005048336) (-0.006569307 0.00300325 -0.005048976) (-0.0065784 0.00400397 -0.005564163) (-0.007072907 0.00100217 -0.00454514) (-0.007582664 0.002002976 -0.004539731) (-0.006563035 0.002002186 -0.004540997) (-0.006561243 0.001001493 -0.004038464) (-0.007065726 0.003002282 -0.004537568) (-0.007554914 0.004001333 -0.004530304) (-0.007565229 0.003001825 -0.004029949) (-0.006555812 0.004002063 -0.004538206) (-0.006556296 0.003001871 -0.004034436) (0.00656585 0.00300219 -0.005046515) (0.007064798 0.001000755 -0.004536048) (0.006557133 0.00200122 -0.004534977) (0.007577123 0.002001367 -0.004541705) (0.007580899 0.001000873 -0.004039568) (0.007063709 0.003001788 -0.004537362) (0.006559137 0.004001597 -0.004538072) (0.006555221 0.003001359 -0.004032392) (0.007558212 0.004001568 -0.004529154) (0.007563736 0.003001807 -0.004030603) (-0.006554316 0.006002092 -0.00555136) (-0.00655559 0.005002187 -0.005045615) (-0.006550503 0.007001721 -0.005038424) (-0.006541447 0.008002094 -0.005535813) (-0.007050834 0.005001436 -0.004532617) (-0.007544461 0.006000596 -0.004523472) (-0.006550193 0.006001558 -0.004534799) (-0.006549994 0.005001528 -0.004031987) (-0.007060002 0.007001254 -0.004534931) (-0.007574501 0.008001193 -0.004537592) (-0.007574751 0.007001278 -0.004039633) (-0.006555276 0.008002332 -0.004535067) (-0.006554158 0.007001741 -0.004032819) (0.006569295 0.007001691 -0.005047272) (0.00705907 0.00500141 -0.004533633) (0.006561827 0.00600153 -0.00453872) (0.007556302 0.006000815 -0.004525206) (0.007550564 0.005001944 -0.004023015) (0.007075891 0.007001614 -0.004537731) (0.006568347 0.008002464 -0.004541265) (0.006563821 0.007002173 -0.004035423) (0.007585983 0.008002552 -0.004537145) (0.007581268 0.007004485 -0.004034962) (-0.006550307 0.01000528 -0.005538862) (-0.006552056 0.009003637 -0.005036574) (-0.006563715 0.0110059 -0.005049085) (-0.006564393 0.01200469 -0.005554777) (-0.007065118 0.009003634 -0.00453656) (-0.006561811 0.01000468 -0.004539768) (-0.006559969 0.009003364 -0.004034869) (-0.006571377 0.01200589 -0.004548363) (-0.006567085 0.01100534 -0.004040351) (0.00657418 0.01100482 -0.005056733) (0.007078689 0.009002819 -0.004542967) (0.006572756 0.01000318 -0.004546725) (0.007584737 0.009002589 -0.004035431) (0.006577012 0.01200393 -0.004546935) (0.006578234 0.0110025 -0.004043298) (-0.006569097 0.01300549 -0.005051911) (-0.006571949 0.01400605 -0.004545033) (-0.006574146 0.01300629 -0.004044425) (-0.006065977 0.01300552 -0.004546755) (-0.006566131 0.01600756 -0.00454418) (-0.006571012 0.01500688 -0.004039825) (-0.006063134 0.01500581 -0.004546268) (0.006578024 0.01400639 -0.004546904) (0.006070722 0.0130051 -0.004546823) (0.006587045 0.01600813 -0.004547575) (0.006592247 0.01500734 -0.004047762) (0.006074715 0.01500645 -0.004549751) (-0.006553352 0.01800493 -0.00454077) (-0.00655993 0.01700659 -0.004035113) (-0.006057935 0.01700604 -0.004546219) (-0.00655855 0.01900643 -0.004035) (-0.00605205 0.01900589 -0.00453984) (0.006080674 0.01700613 -0.004552989) (-0.004540807 0.02200555 -0.005554728) (-0.004545503 0.02100508 -0.005050687) (-0.004552171 0.02000363 -0.005559991) (-0.004540587 0.02300445 -0.005050588) (-0.004038596 0.02300621 -0.005561947) (-0.005049257 0.02100617 -0.00453976) (-0.005547755 0.02200546 -0.004526681) (-0.005551019 0.02000664 -0.004537249) (-0.004544948 0.02200535 -0.00454299) (-0.004546898 0.020005 -0.004544341) (-0.004041923 0.02100483 -0.00454429) (-0.004545725 0.02100542 -0.004037654) (-0.00504328 0.02300485 -0.004534173) (-0.005549722 0.02300644 -0.004022857) (-0.004540448 0.02400628 -0.004540613) (-0.004041846 0.02300634 -0.004547931) (-0.004545888 0.02300616 -0.004037389) (0.004540154 0.02300697 -0.005047128) (0.00402967 0.0230073 -0.005548093) (0.005062474 0.0210076 -0.004545211) (0.004552135 0.02200777 -0.00454642) (0.004554324 0.02000846 -0.004547834) (0.004048948 0.02100853 -0.004548195) (0.005563406 0.02200494 -0.004536954) (0.00556784 0.02000651 -0.004543397) (0.005575752 0.02100681 -0.004040015) (0.005049408 0.02300561 -0.00453966) (0.004546526 0.02400927 -0.004542989) (0.004045059 0.02300899 -0.004547216) (0.004552816 0.0230082 -0.00404181) (0.005560399 0.02300568 -0.004033714) (-0.004535506 0.02600646 -0.00453192) (-0.004043082 0.02501016 -0.004553001) (-0.004549653 0.02500894 -0.004037429) (-0.004048504 0.02701207 -0.004555121) (-0.004556716 0.02701349 -0.004041511) (-0.002541517 0.02601918 -0.005602332) (-0.002538694 0.02501666 -0.005089346) (-0.002535682 0.02401377 -0.005584232) (-0.002541591 0.02701756 -0.005098551) (-0.002029271 0.02701905 -0.005597148) (-0.0030423 0.02501337 -0.004570063) (-0.003547359 0.02601381 -0.004568789) (-0.003541436 0.02401069 -0.004560703) (-0.002539973 0.02601625 -0.004582202) (-0.00304861 0.02701639 -0.004581242) (-0.003557574 0.02801762 -0.004573176) (-0.00254341 0.028019 -0.004587313) (-0.002034453 0.02701752 -0.004584354) (0.003535776 0.02501336 -0.005064363) (0.003528389 0.02401033 -0.005555109) (0.002524972 0.02701531 -0.005078044) (0.002015696 0.02701443 -0.005570839) (0.002528124 0.02601483 -0.004572971) (0.003542656 0.02601619 -0.004570496) (0.004047977 0.02501359 -0.004554993) (0.003035677 0.02701627 -0.004575362) (0.002530138 0.02801831 -0.004583101) (0.002023416 0.0270159 -0.004576987) (0.004040796 0.02701351 -0.004560463) (0.003541404 0.02801533 -0.004568993) (0.004544291 0.02601363 -0.004552581) (0.004554885 0.02701586 -0.00405391) (-0.00305292 0.02902237 -0.004578488) (-0.00253845 0.03002235 -0.004580972) (-0.002031966 0.02902135 -0.004588099) (-0.002542942 0.02902069 -0.004078473) (-0.0020293 0.03101943 -0.00458565) (-0.002535023 0.03101906 -0.004071768) (-0.0005052907 0.02901979 -0.005090333) (-0.0005062922 0.02801862 -0.005580901) (-0.001013644 0.02902073 -0.004590248) (-0.001520844 0.03002209 -0.004591553) (-0.001522594 0.02802002 -0.004586851) (-0.0005053911 0.0300205 -0.004592136) (-2.270717e-07 0.02901946 -0.00459275) (-0.00050725 0.02801869 -0.004585919) (-0.001013345 0.03102168 -0.004589194) (1.931361e-06 0.03102218 -0.004598158) (-0.0005038844 0.03202093 -0.004589307) (0.001513101 0.02901701 -0.00508514) (0.001510843 0.02801574 -0.005576275) (0.001011071 0.0290182 -0.004589197) (0.0005069709 0.03001965 -0.004594249) (0.0005047505 0.0280177 -0.004587184) (0.001518261 0.0300194 -0.004590497) (0.002024092 0.02901996 -0.004590947) (0.001516094 0.02801753 -0.004584669) (0.001013173 0.0310192 -0.004592373) (0.0005088801 0.03201803 -0.004595098) (0.002022625 0.03101837 -0.004582532) (0.003040588 0.02902072 -0.004579307) (0.002530794 0.03002425 -0.004591058) (0.003556687 0.0290233 -0.004084442) (0.002532789 0.03102371 -0.004083073) (1.417315e-06 0.03301161 -0.004550512) (-0.0005072269 0.03301902 -0.004063388) (-0.002560394 -0.0330375 -0.003092666) (-0.002045241 -0.03303484 -0.003596065) (-0.002545837 -0.0320313 -0.003595003) (-0.002561385 -0.03403974 -0.002580629) (-0.002063327 -0.035046 -0.002579763) (-0.002558383 -0.03503778 -0.002057341) (-0.003071278 -0.03304162 -0.002584185) (-0.003574129 -0.03303861 -0.002063716) (-0.003570565 -0.03203738 -0.002571963) (-0.002056217 -0.0330389 -0.002581067) (-0.002562686 -0.03303831 -0.002071274) (-0.002558975 -0.03203622 -0.002579032) (-0.000508815 -0.03402692 -0.003561275) (-0.0005165223 -0.03504218 -0.003063747) (-0.001020566 -0.03302759 -0.003578482) (-0.001537636 -0.03303593 -0.003086601) (-0.0005110632 -0.03303119 -0.003070822) (3.227446e-06 -0.033028 -0.003569305) (-0.00103784 -0.03505136 -0.002572757) (-0.001547822 -0.03404527 -0.0025782) (-0.0005162439 -0.03404317 -0.002566666) (2.361577e-07 -0.03505053 -0.002570931) (0.001024899 -0.03303834 -0.003584736) (0.0005149165 -0.0330365 -0.003074332) (0.001534773 -0.03303988 -0.003079718) (0.002034563 -0.03303465 -0.003577413) (0.001036453 -0.03506479 -0.002584277) (0.0005169902 -0.03404981 -0.002572623) (0.001544221 -0.03404913 -0.002574225) (0.00205666 -0.03504349 -0.002566472) (0.002048123 -0.03303234 -0.002558522) (0.002543719 -0.03302624 -0.003055615) (0.00256111 -0.03403029 -0.00255574) (0.00305494 -0.03302096 -0.002539515) (0.002554379 -0.03302787 -0.002044971) (0.002546374 -0.03202443 -0.002546878) (0.003556768 -0.03301796 -0.002028923) (0.003551153 -0.03201589 -0.002528797) (-0.004557311 -0.02901079 -0.003042776) (-0.004559118 -0.02801177 -0.003553252) (-0.004061745 -0.02901522 -0.003566189) (-0.004557876 -0.03001496 -0.00253861) (-0.004568041 -0.03102191 -0.002038447) (-0.004065127 -0.03102664 -0.002556544) (-0.004561278 -0.02801237 -0.002536482) (-0.004563439 -0.02901523 -0.002030286) (-0.004060815 -0.02901588 -0.002544405) (0.004580534 -0.02901515 -0.003037517) (0.004079109 -0.02901657 -0.003551385) (0.004565758 -0.03001215 -0.002529168) (0.004058358 -0.03101385 -0.002527943) (0.004579729 -0.02801248 -0.002537688) (0.004569945 -0.02901149 -0.002027399) (0.004071979 -0.02901327 -0.002535415) (-0.004564443 -0.02601239 -0.003555391) (-0.004565094 -0.02701182 -0.003046145) (-0.005065883 -0.02501136 -0.00354447) (-0.005573019 -0.02501169 -0.003031714) (-0.00456243 -0.02501094 -0.003043559) (-0.004556738 -0.02401009 -0.003545598) (-0.005068243 -0.02701103 -0.002530774) (-0.005576115 -0.02601267 -0.002527079) (-0.004565218 -0.02601156 -0.002535495) (-0.004563708 -0.02701206 -0.002029246) (-0.005072078 -0.02501214 -0.002528631) (-0.005572177 -0.02401291 -0.002524749) (-0.005576065 -0.0250136 -0.002019724) (0.005075371 -0.0250103 -0.003545257) (0.005580944 -0.0250107 -0.003037767) (0.005568697 -0.024008 -0.003534082) (0.005090366 -0.02701238 -0.002541168) (0.004580448 -0.02601127 -0.002540306) (0.005589897 -0.02601251 -0.002538608) (0.005586405 -0.02701093 -0.002030177) (0.005086063 -0.02501046 -0.00253623) (0.005579928 -0.02400935 -0.002528659) (0.005588244 -0.02501035 -0.002027425) (-0.006555917 -0.0210094 -0.003024639) (-0.006561885 -0.02000908 -0.003534262) (-0.006059106 -0.02101069 -0.003533434) (-0.006560748 -0.0220128 -0.002516923) (-0.006579189 -0.02301941 -0.002015208) (-0.006070447 -0.02301408 -0.002521296) (-0.006564956 -0.02000912 -0.002522932) (-0.006575538 -0.02101251 -0.00201568) (-0.006065246 -0.02101116 -0.002521768) (0.006563234 -0.02100649 -0.003029671) (0.006073427 -0.02100735 -0.003542866) (0.006560153 -0.02200696 -0.002519696) (0.006072831 -0.02300841 -0.002523135) (0.006567295 -0.02000649 -0.002523141) (0.006573045 -0.02100687 -0.002017787) (0.006068286 -0.02100653 -0.002524801) (-0.006565507 -0.01800799 -0.003531448) (-0.006567052 -0.01900839 -0.003030586) (-0.006574041 -0.0170072 -0.003030468) (-0.006572108 -0.0160068 -0.003533125) (-0.006571218 -0.01800729 -0.002525979) (-0.006567591 -0.01900775 -0.002019641) (-0.007079569 -0.01700697 -0.002526946) (-0.00759001 -0.01600657 -0.002532927) (-0.007571951 -0.01700441 -0.002015658) (-0.006572772 -0.01600571 -0.002526558) (-0.006568734 -0.01700575 -0.002021132) (0.006570836 -0.01700596 -0.003024888) (0.006569636 -0.01800536 -0.002521301) (0.007074165 -0.01700579 -0.002519901) (0.006568633 -0.01600443 -0.002520251) (0.0065672 -0.01700454 -0.0020175) (0.007578325 -0.01600402 -0.002519924) (0.007571583 -0.01700455 -0.002014719) (-0.006570811 -0.0140042 -0.003532473) (-0.006572179 -0.01500528 -0.003029598) (-0.007074249 -0.01300371 -0.003534688) (-0.007569216 -0.01300362 -0.003027083) (-0.006566033 -0.0130037 -0.003028979) (-0.006568815 -0.01200395 -0.003534662) (-0.007081724 -0.0150048 -0.002528493) (-0.007584339 -0.01400397 -0.002527059) (-0.006569535 -0.01400415 -0.002524802) (-0.006568708 -0.01500433 -0.002021761) (-0.007074259 -0.01300423 -0.002523883) (-0.007573918 -0.01200457 -0.002521638) (-0.007579013 -0.01300549 -0.002017687) (0.00755551 -0.0140034 -0.003519275) (0.007574609 -0.01500398 -0.003019517) (0.007071518 -0.01300255 -0.003530952) (0.006565348 -0.01300286 -0.003026186) (0.00757706 -0.01300374 -0.003020301) (0.007582871 -0.01200267 -0.003531565) (0.007079205 -0.01500373 -0.002520792) (0.00656778 -0.01400333 -0.002519832) (0.007584962 -0.01400373 -0.002518826) (0.007584878 -0.01500265 -0.002018013) (0.00707715 -0.01300311 -0.002518923) (0.007584729 -0.01200289 -0.002519073) (0.007586753 -0.01300307 -0.002014917) (-0.008566598 -0.002000691 -0.002522252) (-0.008573264 -0.003004352 -0.002012456) (-0.008062228 -0.003001518 -0.002518604) (-0.008583367 1.098217e-06 -0.002523888) (-0.008564909 -0.001000392 -0.002017734) (-0.008066593 -0.0009999633 -0.002523068) (0.008582751 -0.002000633 -0.002517007) (0.008067096 -0.003001128 -0.00251672) (0.008587438 -9.297614e-07 -0.002521469) (0.008583407 -0.001001702 -0.002018853) (0.008075424 -0.001000789 -0.002521445) (-0.008562912 0.002001125 -0.002517778) (-0.008562349 0.001000935 -0.002017071) (-0.008064562 0.001001144 -0.002521887) (-0.008558247 0.003000755 -0.002014511) (-0.008050693 0.003001128 -0.002516661) (0.008569851 0.002000563 -0.002517357) (0.008068175 0.001000144 -0.002519085) (0.008552852 0.004001364 -0.002510645) (0.008571659 0.003002248 -0.002013408) (0.008055781 0.003001343 -0.002515405) (0.008051321 0.005002268 -0.002513652) (-0.006570506 0.01400608 -0.003535905) (-0.006567467 0.01300529 -0.003031099) (-0.006571235 0.01200578 -0.003537031) (-0.007073728 0.01500703 -0.003532499) (-0.007573636 0.01500555 -0.003025869) (-0.006566544 0.01500582 -0.003027139) (-0.006567488 0.0160072 -0.003531844) (-0.007071352 0.01300452 -0.002523427) (-0.007574809 0.01400373 -0.002522241) (-0.007579365 0.01200471 -0.002523573) (-0.00656388 0.01400459 -0.00252254) (-0.007073778 0.01500464 -0.002523046) (-0.007582092 0.01600495 -0.002521355) (-0.007576931 0.01500277 -0.002019976) (-0.006566195 0.01600602 -0.002521345) (-0.00656333 0.01500451 -0.002018948) (0.00760434 0.01400363 -0.003544378) (0.007606418 0.01300466 -0.003037249) (0.007599612 0.01200349 -0.003540176) (0.007105477 0.01500804 -0.003545214) (0.006594223 0.01500763 -0.003037754) (0.007604514 0.01500827 -0.003036291) (0.007098751 0.01300609 -0.002530164) (0.006589613 0.01400668 -0.002530628) (0.007612983 0.01400791 -0.002533023) (0.007598222 0.01200588 -0.002527459) (0.00760284 0.01300809 -0.002025261) (0.007099154 0.01500868 -0.002532107) (0.006585927 0.01600824 -0.002529861) (0.0065831 0.01500727 -0.002025165) (0.007589517 0.01600972 -0.002529471) (0.007597033 0.01500942 -0.002024938) (-0.006565176 0.01800841 -0.003530453) (-0.006568304 0.01700837 -0.003024941) (-0.006575334 0.0190113 -0.003027411) (-0.006576451 0.02001388 -0.003533861) (-0.007074966 0.01700829 -0.002520133) (-0.006571059 0.01800937 -0.002521241) (-0.006567254 0.01700671 -0.002018576) (-0.006573536 0.02000997 -0.002522984) (-0.006572549 0.01900921 -0.00201873) (0.006583631 0.01901114 -0.00303326) (0.007082257 0.01700856 -0.002526039) (0.006581255 0.01800919 -0.002526378) (0.007577395 0.01700839 -0.002016913) (0.006577213 0.0200089 -0.002523065) (0.006581568 0.01900862 -0.002018382) (-0.006566281 0.0210079 -0.003029304) (-0.006567063 0.02200449 -0.002519754) (-0.006579247 0.02101001 -0.002018907) (-0.006070936 0.02100804 -0.002522748) (-0.006579944 0.02301046 -0.002018654) (-0.006074254 0.02300621 -0.002520894) (0.006572544 0.02200747 -0.00253122) (0.006080891 0.02100816 -0.002528508) (0.006582893 0.02300812 -0.002024654) (0.006084997 0.0230094 -0.002537925) (-0.004563876 0.02601339 -0.003537392) (-0.004576246 0.02701759 -0.003039415) (-0.004574081 0.02801984 -0.003550959) (-0.005075415 0.02501173 -0.002523627) (-0.005583532 0.02601483 -0.002526163) (-0.00557462 0.02400844 -0.002521285) (-0.004573266 0.02601526 -0.002529841) (-0.005082799 0.02701858 -0.002531135) (-0.005583442 0.02701984 -0.002021037) (-0.004578764 0.02801924 -0.002535658) (-0.004574527 0.02701695 -0.002026535) (0.005582361 0.0250122 -0.003031865) (0.005569887 0.02400978 -0.003532199) (0.004573993 0.0270183 -0.003046368) (0.005079124 0.02501239 -0.002529476) (0.004572343 0.0260151 -0.00253507) (0.005587299 0.02601331 -0.002529059) (0.005580476 0.02401079 -0.002530134) (0.005585182 0.02501236 -0.002023341) (0.00507956 0.02701594 -0.002533123) (0.004572653 0.02801835 -0.002541626) (0.004570775 0.02701526 -0.002030537) (0.005580699 0.02701442 -0.002020364) (-0.004579683 0.02902142 -0.003047256) (-0.004572977 0.0300193 -0.00253347) (-0.004574173 0.02901853 -0.002025934) (-0.004073885 0.02901932 -0.002537066) (-0.004570284 0.03101695 -0.002019903) (-0.00406693 0.03101866 -0.002530501) (0.004569439 0.03002262 -0.00254675) (0.004072005 0.02902275 -0.002551658) (0.004567058 0.03101767 -0.002033181) (0.004077519 0.03103064 -0.002558495) (-0.002546669 0.03302876 -0.003061003) (-0.002538221 0.03201996 -0.003562084) (-0.003061671 0.03302758 -0.002540986) (-0.003562261 0.03202052 -0.002530248) (-0.002558292 0.03403888 -0.002558309) (-0.002047364 0.03303285 -0.002558583) (-0.002557543 0.03303115 -0.00204478) (-0.002550788 0.03202694 -0.002548671) (-0.002044806 0.03504702 -0.002564683) (-0.002560548 0.03504206 -0.002046353) (-0.0005094068 0.03402686 -0.00356242) (-0.0005100393 0.03302883 -0.003068867) (-0.000511403 0.03504031 -0.003064258) (5.278026e-06 0.03502947 -0.003562366) (-0.001537397 0.03404377 -0.002567795) (-0.0005118678 0.03404186 -0.002564771) (-0.001026937 0.03505118 -0.002568547) (2.820504e-06 0.0350488 -0.002571142) (0.001531617 0.03303146 -0.003084528) (0.0005219745 0.03505123 -0.003091141) (0.0005162929 0.03404464 -0.002574454) (0.001538675 0.03404254 -0.002577829) (0.002048832 0.03303076 -0.002566788) (0.001031301 0.03505398 -0.002587262) (0.002047218 0.03503953 -0.002567971) (0.003070919 0.03302968 -0.002559119) (0.002560077 0.03403227 -0.002564232) (0.002556637 0.03202875 -0.002563566) (0.003569847 0.03302244 -0.002044746) (0.003576573 0.03203114 -0.002558962) (0.002555858 0.03503044 -0.002042638) (-0.001029152 -0.03705295 -0.001551441) (-0.001553202 -0.03705086 -0.001027773) (-0.0005131906 -0.03704372 -0.001030445) (3.29183e-06 -0.0370561 -0.001553757) (-0.001038101 -0.03704427 -0.0005090488) (-0.001561237 -0.03706144 2.226681e-06) (5.630041e-06 -0.03703592 -0.0005094956) (-0.0005176582 -0.03703809 1.20176e-05) (0.001037653 -0.03706133 -0.001556727) (0.0005251895 -0.03705454 -0.001034584) (0.001563708 -0.03708006 -0.001031986) (0.001051097 -0.03708303 -0.000513526) (0.0005290092 -0.03705542 9.45738e-06) (0.001576221 -0.03709518 1.478672e-05) (-0.004048372 -0.03301246 -0.0005084362) (-0.004562243 -0.03200859 -0.0005033076) (-0.004529969 -0.03300622 1.807274e-06) (-0.002565061 -0.03403766 -0.001548267) (-0.002572521 -0.03503847 -0.001029704) (-0.003068595 -0.0330322 -0.00154732) (-0.003563761 -0.03302301 -0.001026861) (-0.003075069 -0.03503081 -0.0005155146) (-0.003554711 -0.03401998 -0.0005110788) (-0.002565966 -0.03403306 -0.0005170268) (-0.002573761 -0.03503901 -4.300278e-06) (-0.003059434 -0.03302227 -0.00051488) (-0.003554531 -0.03301637 -8.347417e-07) (0.00305611 -0.03302275 -0.001526538) (0.003544883 -0.03301503 -0.001013694) (0.003045486 -0.03502932 -0.0005053568) (0.002550517 -0.03403462 -0.0005081261) (0.003529122 -0.03401246 -0.0005029675) (0.003524034 -0.03501388 6.429859e-06) (0.003043405 -0.03301728 -0.0005055989) (0.004030923 -0.03300418 -0.0005013959) (0.003539441 -0.0330114 4.777269e-06) (0.004564373 -0.03199969 -0.0005000564) (0.004525456 -0.03299846 7.31291e-06) (-0.004567876 -0.03001667 -0.001523887) (-0.004569578 -0.03101486 -0.001013591) (-0.005063268 -0.02901388 -0.001515522) (-0.005569659 -0.02901543 -0.001005272) (-0.004569729 -0.02901412 -0.001013019) (-0.004565601 -0.02801369 -0.001520156) (-0.004571668 -0.03001254 -0.0005061569) (-0.004565848 -0.03100911 -1.427916e-07) (-0.005082068 -0.029014 -0.0005037165) (-0.005595821 -0.02901532 1.953368e-06) (-0.005593029 -0.02801493 -0.0005017308) (-0.004574969 -0.02901151 -1.903272e-07) (-0.004574156 -0.02801256 -0.0005056007) (0.005065846 -0.02901046 -0.001518315) (0.004568312 -0.02900997 -0.001012392) (0.005557421 -0.02900952 -0.001007983) (0.005575629 -0.02801039 -0.001519237) (0.0045693 -0.0300082 -0.0005032106) (0.005073681 -0.02901235 -0.0005041764) (0.004573072 -0.02901188 2.799177e-06) (0.00457159 -0.02801154 -0.0005054335) (0.005578576 -0.0290192 1.860084e-06) (0.005585755 -0.02801702 -0.0005055565) (-0.006570857 -0.0250091 -0.001005868) (-0.006580264 -0.02401505 -0.001513914) (-0.00607841 -0.02501284 -0.001511896) (-0.006579838 -0.0240117 -0.0005037852) (-0.006583608 -0.0250145 1.351822e-06) (-0.006086342 -0.02501153 -0.0005026668) (0.006579471 -0.02500962 -0.001011709) (0.006090462 -0.02501027 -0.001520352) (0.006574585 -0.0240103 -0.0005051939) (0.006584688 -0.02501853 -3.18933e-07) (0.006091865 -0.02501436 -0.0005070875) (-0.006586144 -0.02201687 -0.001512295) (-0.006586834 -0.02301603 -0.001008936) (-0.006591753 -0.02101515 -0.001008663) (-0.006581141 -0.02001139 -0.001512466) (-0.00659956 -0.02201805 -0.0005048215) (-0.0065912 -0.02301459 -8.023953e-07) (-0.006589934 -0.02001313 -0.0005044041) (-0.006594907 -0.02101482 -1.234262e-06) (0.006581263 -0.02100808 -0.001009663) (0.006583182 -0.02200957 -0.0005059285) (0.006581915 -0.02000839 -0.0005059459) (0.006583001 -0.02100925 -2.120747e-06) (-0.007066944 -0.0170046 -0.001511493) (-0.007555362 -0.0170033 -0.001004593) (-0.007083991 -0.01900828 -0.0005024613) (-0.007560663 -0.01800433 -0.0005010003) (-0.007061221 -0.01700429 -0.000502562) (-0.007555495 -0.01700395 6.992194e-07) (-0.007566261 -0.0160037 -0.0005028738) (0.007561638 -0.01800435 -0.001509477) (0.00757176 -0.0190091 -0.001006659) (0.00706578 -0.01700424 -0.00151167) (0.007554633 -0.01700416 -0.001007399) (0.007566432 -0.01600304 -0.001511738) (0.007077045 -0.01900826 -0.0005051423) (0.007557503 -0.01800637 -0.000504321) (0.007582431 -0.01900776 -2.924815e-06) (0.007059642 -0.01700424 -0.0005048274) (0.007556562 -0.0170034 -1.981756e-06) (0.007561454 -0.01600309 -0.0005049029) (-0.008593356 -0.009004305 -0.001003788) (-0.00858533 -0.008004952 -0.00150569) (-0.008075551 -0.009005968 -0.001508555) (-0.008586907 -0.01000266 -0.0005010706) (-0.008566349 -0.01100238 3.416187e-07) (-0.008064975 -0.01100343 -0.0005022365) (-0.008622436 -0.008003727 -0.0005025841) (-0.008613453 -0.00900352 1.053494e-06) (-0.008088333 -0.009003434 -0.0005020351) (0.008585823 -0.008003304 -0.0004997924) (0.008562488 -0.009002192 1.177232e-06) (0.008052566 -0.009002188 -0.0005009283) (-0.008594324 -0.006002516 -0.001509518) (-0.008613255 -0.007002356 -0.001005543) (-0.008577513 -0.005000299 -0.001003411) (-0.008574011 -0.004003324 -0.001515025) (-0.008593448 -0.005999331 -0.00050332) (-0.00861841 -0.007002998 1.35655e-06) (-0.008514606 -0.003999187 -0.0005017348) (-0.008535807 -0.004998457 4.379542e-07) (0.008608387 -0.005003774 -0.001004167) (0.0086298 -0.006004555 -0.0005006468) (0.008572117 -0.004004186 -0.0005005533) (0.008625776 -0.005007867 3.211078e-06) (-0.008541155 -0.002002633 -0.00151095) (-0.008527912 -0.003002757 -0.001005602) (-0.008503547 -0.0009999987 -0.001005456) (-0.008532481 5.70227e-07 -0.001511047) (-0.008487787 -0.001999313 -0.0005017224) (-0.008485856 -0.002997475 8.39753e-07) (-0.008486607 7.126531e-07 -0.0005024218) (-0.008480403 -0.0009984534 4.058442e-07) (0.008522989 -0.001000846 -0.001005998) (0.008511873 -0.002001092 -0.0005012845) (0.008496472 -3.285466e-07 -0.0005019453) (0.00849328 -0.001000516 1.021864e-06) (-0.008531264 0.002002176 -0.001512976) (-0.008500022 0.001001063 -0.00100692) (-0.008517319 0.003003038 -0.001013049) (-0.008561955 0.004003184 -0.001518692) (-0.008483745 0.002000881 -0.0005050523) (-0.008479502 0.001000332 -1.006269e-06) (-0.008511741 0.004000679 -0.0005067438) (-0.008483563 0.003000234 -2.985401e-06) (0.008519353 0.003003327 -0.001004293) (0.008488704 0.002000576 -0.0005017006) (0.008498044 0.003999425 -0.0005024404) (0.008482466 0.00299966 3.283358e-07) (-0.008589966 0.006001915 -0.001509252) (-0.008572457 0.004999838 -0.001007628) (-0.008611417 0.007001746 -0.001005491) (-0.008578114 0.008002212 -0.001505097) (-0.008601396 0.006001181 -0.0005037059) (-0.008540834 0.005000247 -2.370438e-06) (-0.008622224 0.008001713 -0.0005019516) (-0.008626893 0.006999326 -2.501394e-06) (0.008595982 0.006998103 -0.001007511) (0.008544141 0.005996725 -0.0005032148) (0.008619559 0.008000943 -0.0005004533) (0.008576202 0.006998898 5.543539e-06) (-0.008588391 0.009002112 -0.001003314) (-0.008585724 0.01000155 -0.00050201) (-0.008612668 0.009002439 2.173409e-07) (-0.008086391 0.009001682 -0.0005023718) (-0.008564049 0.01100104 -1.582647e-06) (-0.008061804 0.01100212 -0.0005047187) (0.008604859 0.01000173 -0.0005012229) (0.008097535 0.00900193 -0.0005012418) (0.008574824 0.01100153 1.964131e-06) (0.008071576 0.01100317 -0.0005025599) (-0.007078173 0.01900923 -0.001513037) (-0.007583448 0.01901121 -0.001008082) (-0.006585711 0.02001078 -0.001514727) (-0.007064216 0.0170063 -0.0005058817) (-0.007566371 0.01800877 -0.0005049701) (-0.007565019 0.01600568 -0.0005059399) (-0.007088027 0.01901139 -0.0005053057) (-0.007601035 0.01901497 -1.7236e-06) (-0.006592821 0.02001134 -0.0005060568) (0.007584889 0.01800724 -0.001510232) (0.007574851 0.01701087 -0.001007519) (0.007578303 0.01600884 -0.00151449) (0.007084824 0.01900759 -0.001511539) (0.006577724 0.01900703 -0.001008291) (0.007582396 0.0190077 -0.001006688) (0.007071972 0.01700819 -0.0005046929) (0.006572175 0.01800675 -0.0005047105) (0.007574845 0.0180096 -0.0005041144) (0.007563752 0.01700694 -1.67299e-06) (0.007580013 0.01600915 -0.0005049519) (0.007079717 0.01900679 -0.0005042164) (0.006576209 0.02000629 -0.0005040626) (0.006572274 0.01900594 -1.82195e-06) (0.007575994 0.01900558 -1.50954e-06) (-0.006587334 0.02201204 -0.001514407) (-0.006591047 0.02101161 -0.001010377) (-0.00658614 0.02301255 -0.001009973) (-0.006583255 0.02401279 -0.001512632) (-0.006596916 0.02201244 -0.0005061012) (-0.00659386 0.02101164 -2.061665e-06) (-0.006578317 0.02401228 -0.0005045219) (-0.006590818 0.02301167 -1.94266e-06) (0.006587596 0.02301072 -0.00100878) (0.00658475 0.02200866 -0.0005043617) (0.006609509 0.02401283 -0.0005059922) (0.006591127 0.02301067 -9.687915e-07) (-0.00657213 0.02501213 -0.001006463) (-0.006581763 0.025013 -9.243551e-07) (-0.006084258 0.02501449 -0.0005041878) (0.006103727 0.02501651 -0.0005048035) (-0.004571195 0.03001778 -0.001517809) (-0.004572481 0.02901742 -0.001011784) (-0.00457471 0.02801795 -0.001518526) (-0.004567309 0.03101693 -0.001010874) (-0.005081694 0.02901976 -0.000505555) (-0.005593713 0.02802197 -0.0005045257) (-0.004569619 0.03001687 -0.000505927) (-0.004572894 0.02901727 -5.473588e-07) (-0.004574366 0.02801749 -0.0005057576) (-0.004558113 0.0320125 -0.0005052129) (-0.004562792 0.03101437 3.002629e-08) (0.005549713 0.02901026 -0.00100295) (0.005569387 0.02801397 -0.001510026) (0.00455851 0.03100785 -0.001011614) (0.005068707 0.02901246 -0.000501311) (0.004564121 0.03001032 -0.0005028857) (0.004569376 0.02801319 -0.000503918) (0.005575507 0.02901358 4.654795e-06) (0.005581276 0.02801581 -0.0005006232) (0.004557242 0.03200397 -0.000500014) (0.004567051 0.0310111 5.673875e-06) (-0.004047314 0.03301184 -0.0005050533) (-0.004531698 0.03300543 7.246978e-07) (-0.002564835 0.03403735 -0.001533083) (-0.00257141 0.03504501 -0.00101787) (-0.003059047 0.03302272 -0.0005065243) (-0.003556183 0.03401949 -0.0005050516) (-0.002566036 0.03403649 -0.0005063529) (-0.003075811 0.0350356 -0.0005044792) (-0.003557402 0.03502746 4.945704e-06) (-0.002575062 0.03504296 6.601469e-06) (0.003547748 0.03301024 -0.001020797) (0.002561574 0.03503489 -0.001025775) (0.003044609 0.03301428 -0.0005094533) (0.002550165 0.0340295 -0.0005112837) (0.003530515 0.03400733 -0.0005074852) (0.004030365 0.03300304 -0.0005043231) (0.003541607 0.03301135 3.485961e-06) (0.003045066 0.03502173 -0.0005106051) (0.002556684 0.03504013 1.323542e-06) (0.00352589 0.03501238 2.421525e-06) (-0.0005281594 0.03707845 -0.001041592) (-0.001048719 0.03705816 -0.0005162754) (-3.036016e-06 0.03705397 -0.0005156582) (-0.0005285155 0.03704691 1.06434e-05) (0.001570991 0.03710113 -0.001030211) (0.001054311 0.03709023 -0.0005192078) (0.00157921 0.03709178 -6.037196e-06) (-0.001039527 -0.03706028 0.000526354) (-0.001552645 -0.03706978 0.001040133) (-0.0005240685 -0.03707815 0.001060254) (2.008188e-06 -0.03704827 0.0005331865) (-0.001037446 -0.0370803 0.001566819) (-5.546701e-06 -0.03707626 0.001572598) (0.001055925 -0.0370858 0.0005293787) (0.0005218996 -0.03706572 0.001050229) (0.001570104 -0.03709915 0.001052753) (0.001036576 -0.03706945 0.001559735) (-0.004047589 -0.03300966 0.0005091452) (-0.004561012 -0.03200708 0.0005043697) (-0.002565851 -0.03403392 0.000509233) (-0.002573901 -0.03504142 0.001020882) (-0.00305941 -0.03301977 0.0005091271) (-0.003564418 -0.03301658 0.001020739) (-0.002568932 -0.03403732 0.001534822) (-0.002566811 -0.03504272 0.002043983) (-0.003069563 -0.03302352 0.001531379) (-0.003571857 -0.03302038 0.002038978) (-0.002558722 -0.0330311 0.002048208) (0.003531748 -0.03401076 0.0005110148) (0.003047051 -0.03301697 0.000512285) (0.003557179 -0.03301688 0.001018645) (0.004044852 -0.033008 0.0005133855) (0.002553542 -0.03402858 0.001531554) (0.003059872 -0.03302112 0.001525616) (0.002547117 -0.03302206 0.002038591) (0.003560733 -0.03302005 0.002024812) (-0.004571241 -0.03000965 0.0005049292) (-0.004569306 -0.03100859 0.001012277) (-0.005080979 -0.02901083 0.0005042226) (-0.005568781 -0.02900965 0.001005598) (-0.004574196 -0.02901028 0.00101045) (-0.004575275 -0.02801076 0.0005048162) (-0.004574677 -0.03001111 0.001517975) (-0.004571997 -0.03101334 0.002025048) (-0.005073584 -0.02901037 0.001512634) (-0.005572336 -0.02801009 0.001509155) (-0.004575895 -0.02901209 0.00202399) (-0.004575485 -0.02801106 0.001516265) (0.005082291 -0.02901461 0.0005083484) (0.004580199 -0.02901482 0.00101537) (0.005579683 -0.02901415 0.001010521) (0.005587369 -0.02801808 0.0005074074) (0.004583775 -0.03001753 0.001522226) (0.005081315 -0.02901363 0.001519008) (0.004575894 -0.02901536 0.002027309) (0.004577724 -0.02801457 0.001521821) (0.005580809 -0.02801566 0.00152322) (-0.006571808 -0.02501379 0.001004498) (-0.006579997 -0.02401271 0.0005027454) (-0.006088994 -0.02501413 0.0005041925) (-0.00656791 -0.02401299 0.00150862) (-0.006083835 -0.02501365 0.001512476) (0.006563956 -0.02501088 0.001008099) (0.006083845 -0.02501507 0.0005051974) (0.006578518 -0.02400846 0.001516218) (0.00607575 -0.02501167 0.001516372) (-0.00659498 -0.02201487 0.0005018243) (-0.006576456 -0.0230123 0.001004922) (-0.006583999 -0.02101305 0.001004766) (-0.00658738 -0.020013 0.0005020286) (-0.006573987 -0.02201147 0.00150772) (-0.006558463 -0.02300996 0.002012263) (-0.006575448 -0.02001058 0.001508004) (-0.006568366 -0.02100927 0.002010911) (0.006585217 -0.02101009 0.00100681) (0.006589008 -0.02201094 0.001513918) (0.006580944 -0.02000998 0.001510255) (0.006581257 -0.02101171 0.002016678) (-0.007061486 -0.01700469 0.0005030602) (-0.007553802 -0.01700264 0.001005834) (-0.007069786 -0.01900735 0.001508034) (-0.007564275 -0.01800183 0.001508708) (-0.006566126 -0.01900569 0.002013538) (-0.007062222 -0.01700268 0.0015086) (-0.007565014 -0.01700209 0.002011379) (-0.007555827 -0.01600136 0.001507063) (-0.006563931 -0.01700302 0.002013127) (0.007569348 -0.01800285 0.0004992323) (0.00757733 -0.01900592 0.0009998461) (0.007065287 -0.01700273 0.000501196) (0.007562782 -0.01700058 0.00100432) (0.00756703 -0.01600229 0.0005017241) (0.007075763 -0.01900632 0.001506328) (0.007577734 -0.0180009 0.001505439) (0.007072827 -0.01700185 0.001510569) (0.00657247 -0.01700503 0.002020352) (0.007580157 -0.01699995 0.002016657) (0.007569364 -0.01600082 0.001511001) (-0.008586047 -0.01000352 0.0005031939) (-0.008587053 -0.009003694 0.001004672) (-0.008620799 -0.008003914 0.0005036683) (-0.008085848 -0.009003278 0.0005027301) (-0.008576712 -0.008003378 0.001506254) (-0.008063761 -0.009004398 0.001507347) (0.008051252 -0.009001909 0.0005023992) (-0.008596409 -0.006000679 0.0005027935) (-0.008608553 -0.007003018 0.001004819) (-0.008578623 -0.004997861 0.00100395) (-0.008514813 -0.003996532 0.0005028324) (-0.008591209 -0.006000603 0.001505285) (-0.008570262 -0.003995338 0.001509986) (-0.00856904 -0.004998976 0.002009692) (0.008617193 -0.005005303 0.001006304) (0.008585361 -0.006004346 0.001508181) (0.008592838 -0.004003638 0.001511736) (-0.00848472 -0.00199652 0.0005032224) (-0.008520581 -0.002993394 0.001006551) (-0.008500095 -0.0009975786 0.001007416) (-0.008485922 8.25273e-07 0.0005025571) (-0.008533276 -0.001995287 0.001513017) (-0.00856502 -0.002996755 0.002012307) (-0.008531982 5.434382e-07 0.001514993) (-0.008564034 -0.0009992645 0.002022638) (0.008515175 -0.001000515 0.001007508) (0.008561569 -0.00200263 0.001513887) (0.00854128 5.446407e-08 0.001509805) (0.008572687 -0.001001293 0.002016138) (-0.008484515 0.00200004 0.0005005468) (-0.008501235 0.001000249 0.001005437) (-0.008519297 0.00300095 0.001003272) (-0.008512145 0.004000603 0.0005000348) (-0.008535794 0.00200051 0.001508379) (-0.008565519 0.000999916 0.002018191) (-0.008566277 0.004001963 0.001505875) (-0.008563857 0.003000088 0.002009467) (0.008521734 0.003000533 0.001005305) (0.008543052 0.0020011 0.001508155) (0.008571152 0.004000665 0.001507892) (0.008575653 0.00300083 0.002008823) (-0.008605606 0.005999026 0.0004993207) (-0.008570704 0.005003644 0.001006671) (-0.008613361 0.007001391 0.001004867) (-0.008623192 0.008001534 0.0005016689) (-0.008590083 0.006002461 0.001508793) (-0.008578429 0.008001443 0.001507946) (0.008608108 0.007000005 0.0010134) (0.008597413 0.006000052 0.001511183) (0.008605426 0.008000211 0.001514367) (-0.008584392 0.01000112 0.0005014845) (-0.008590084 0.009001391 0.001004659) (-0.008060817 0.0110008 0.000500336) (-0.008066672 0.009000742 0.001508674) (0.008071471 0.01100214 0.0005067512) (0.008086244 0.009000681 0.00151414) (-0.007091103 0.01900853 0.0005021841) (-0.007575593 0.01900492 0.00100551) (-0.006591439 0.02000965 0.0005022903) (-0.007061933 0.01700344 0.00150907) (-0.007566572 0.01800199 0.00151128) (-0.007557437 0.01600281 0.001506205) (-0.006557165 0.01700382 0.002014558) (-0.007070167 0.01900472 0.001509676) (-0.006576838 0.02000682 0.00151071) (-0.006563587 0.01900502 0.002015788) (0.007559206 0.01800521 0.0005011585) (0.007558922 0.01700478 0.001004472) (0.007571095 0.01600591 0.00050243) (0.007073346 0.01900533 0.0005030515) (0.006573935 0.01900474 0.001009592) (0.007563562 0.0190044 0.001006397) (0.007072143 0.01700514 0.001511055) (0.006575721 0.01800504 0.001513543) (0.007573531 0.01800541 0.001507861) (0.007576204 0.0170057 0.002014638) (0.007569189 0.01600473 0.001509929) (0.007078041 0.01900464 0.001512549) (0.006579897 0.02000549 0.001513202) (0.006583543 0.01900604 0.00202013) (-0.006595809 0.02201077 0.00050143) (-0.00658666 0.02100863 0.001006345) (-0.006582307 0.02300797 0.001005348) (-0.006579245 0.02400883 0.0005011175) (-0.006578614 0.02200762 0.001510044) (-0.0065705 0.02100676 0.002014853) (-0.006576632 0.02400654 0.001510323) (-0.00656491 0.02300738 0.002015422) (0.006587439 0.02300997 0.00100508) (0.006580964 0.02200758 0.001509936) (0.006584716 0.02401044 0.001508527) (0.006575776 0.0230076 0.002011743) (-0.006574476 0.02500792 0.00100563) (-0.006087591 0.02501112 0.001515369) (0.006096941 0.02501539 0.001516117) (-0.00456793 0.03001576 0.0005048773) (-0.004571632 0.02901636 0.001010446) (-0.004574009 0.02801665 0.0005050754) (-0.004565386 0.03101497 0.001010376) (-0.004555586 0.03201068 0.0005061194) (-0.005072029 0.02901599 0.001514057) (-0.005572016 0.02801444 0.001514469) (-0.004572338 0.03001851 0.001515362) (-0.004573421 0.02901727 0.002023817) (-0.004574697 0.02801613 0.001518478) (-0.004574592 0.03102301 0.002020495) (0.0055805 0.02901321 0.001007718) (0.00559104 0.0280159 0.0005076115) (0.004586188 0.03101878 0.00101647) (0.005082414 0.02901854 0.001515736) (0.0045864 0.03002249 0.00152083) (0.004580758 0.02801808 0.001519803) (0.00558775 0.0280177 0.001516533) (0.004587692 0.031029 0.002027453) (-0.002565009 0.03403741 0.00051618) (-0.003072796 0.0350373 0.0005172012) (-0.002570903 0.03504437 0.001027069) (-0.002068662 0.03504668 0.0005185656) (-0.003066221 0.0330315 0.001528113) (-0.002565525 0.03404041 0.001535987) (-0.002555853 0.03303426 0.002040844) (-0.002563191 0.03504312 0.002042697) (-0.002060485 0.03504757 0.001541612) (0.003535592 0.03401139 0.0005130674) (0.003561162 0.03301879 0.001023759) (0.003047397 0.03502653 0.0005158318) (0.002568562 0.03504499 0.001035657) (0.003065697 0.03302708 0.001537311) (0.002565508 0.03403983 0.001548299) (0.003563548 0.03302761 0.002037488) (0.002568242 0.03504894 0.002065818) (-0.0005307327 0.03707418 0.001067797) (-0.000525094 0.03605401 0.0005334537) (-9.307774e-06 0.03707456 0.00158008) (-0.0005216892 0.03607168 0.001570377) (0.001561337 0.03707928 0.001042031) (0.001038659 0.03706915 0.001565643) (-0.002561701 -0.03404101 0.002558543) (-0.003059787 -0.03302682 0.00254593) (-0.002546749 -0.03303103 0.003063529) (-0.002049371 -0.03303393 0.00256271) (-0.002550407 -0.03202676 0.002552645) (-0.002038964 -0.03302876 0.003587122) (-0.002535424 -0.03202132 0.003565464) (-0.0005132097 -0.03404011 0.002571767) (-0.0005099185 -0.03503904 0.003077799) (-0.0015325 -0.03303276 0.003083655) (-0.000510408 -0.03302803 0.003072897) (-0.0005086776 -0.03402697 0.00357387) (8.937173e-07 -0.03502734 0.003572511) (-0.00101914 -0.03302746 0.00358053) (3.915368e-07 -0.03302341 0.003569403) (-0.0005067185 -0.03301987 0.004065862) (0.001530474 -0.03403218 0.002560964) (0.0005096246 -0.03302533 0.003068094) (0.001526104 -0.03302308 0.003068217) (0.002037024 -0.03302212 0.002549868) (0.0005098888 -0.03402571 0.003571372) (0.001018903 -0.03302262 0.003572989) (0.0005092673 -0.03301908 0.004066794) (0.002026492 -0.03301735 0.003567309) (0.003049382 -0.03301921 0.002535067) (0.002533837 -0.03301747 0.003050405) (0.00355939 -0.03201849 0.002528735) (0.002527343 -0.03201235 0.003554473) (-0.004572202 -0.03001379 0.002532176) (-0.004574655 -0.0290117 0.003037075) (-0.004579644 -0.02801387 0.002531238) (-0.004076704 -0.02901386 0.002536446) (-0.004571439 -0.02801307 0.00354191) (-0.004064926 -0.0290117 0.003548669) (0.00457575 -0.02901456 0.003041877) (0.004074051 -0.02901607 0.002537905) (0.004574153 -0.02801258 0.003557253) (0.004068886 -0.02901555 0.00356186) (-0.004579124 -0.02601456 0.002533686) (-0.004580329 -0.02701601 0.003040588) (-0.004577523 -0.02701286 0.002025814) (-0.005084642 -0.02501553 0.002533137) (-0.005591013 -0.02501835 0.003042538) (-0.005585629 -0.02501407 0.002023226) (-0.004577155 -0.02501545 0.003046205) (-0.00457752 -0.0260163 0.003551884) (-0.004564585 -0.02701362 0.004049272) (-0.005084462 -0.02501715 0.003552505) (-0.005581403 -0.02401596 0.003545183) (-0.004571153 -0.02501501 0.004060558) (-0.00457146 -0.02401412 0.003551187) (0.005584224 -0.02601242 0.002527336) (0.00557551 -0.02701297 0.002022642) (0.005080545 -0.02501189 0.002529855) (0.004570841 -0.025011 0.003043237) (0.005588248 -0.02501446 0.003033368) (0.005582438 -0.02501199 0.002022953) (0.005586003 -0.02401231 0.002528788) (0.00457103 -0.02601121 0.003553189) (0.005074736 -0.02501171 0.003543782) (0.004561197 -0.02500949 0.004056122) (0.004567673 -0.02401051 0.003548214) (0.005580732 -0.02401356 0.003536618) (-0.006555144 -0.02200855 0.002514761) (-0.006557129 -0.02100711 0.003019347) (-0.006565882 -0.02000724 0.002516677) (-0.006064019 -0.0210085 0.002518007) (-0.006566077 -0.02000732 0.003527476) (-0.00606534 -0.02100785 0.003529029) (0.006576953 -0.02101366 0.003029048) (0.006078224 -0.02101244 0.002525885) (0.006583762 -0.02001781 0.003541098) (0.00608777 -0.02101427 0.003543632) (-0.006572396 -0.01800389 0.002518124) (-0.00656889 -0.01900531 0.00302376) (-0.007070319 -0.0170029 0.002514576) (-0.006566709 -0.0170034 0.003020057) (-0.006559987 -0.01600274 0.002514392) (-0.006564508 -0.01800402 0.003527348) (-0.006555159 -0.0190044 0.004029076) (-0.00655677 -0.01600373 0.003522447) (-0.006555459 -0.01700381 0.004028655) (0.007083566 -0.0170061 0.002524829) (0.006579681 -0.01700712 0.00303325) (0.007582353 -0.01600562 0.002524855) (0.006574161 -0.01800788 0.003539962) (0.006577814 -0.01600622 0.003540807) (0.006571362 -0.01700565 0.004044667) (-0.00655362 -0.0140028 0.00251401) (-0.006554452 -0.01500323 0.003017909) (-0.006555301 -0.01500247 0.002011407) (-0.007057228 -0.01300359 0.002513437) (-0.007555025 -0.0130035 0.003016109) (-0.007564218 -0.01300435 0.002009937) (-0.006550599 -0.01300361 0.003020161) (-0.007053555 -0.01500433 0.003520231) (-0.007543083 -0.01400321 0.003516265) (-0.006551036 -0.01400418 0.003523829) (-0.006553294 -0.01500494 0.004029966) (-0.007052414 -0.01300435 0.003523408) (-0.007558485 -0.01200566 0.00352145) (-0.006550658 -0.01300477 0.004030788) (-0.006553239 -0.01200423 0.003526286) (0.007584468 -0.0140029 0.002527083) (0.007579198 -0.01500512 0.00303318) (0.007575545 -0.01500264 0.002018129) (0.007076212 -0.01300272 0.002524579) (0.006567149 -0.01300342 0.003031575) (0.007582164 -0.01300336 0.003030789) (0.007582661 -0.01300188 0.002017778) (0.007581547 -0.01200247 0.002522973) (0.00707873 -0.01500609 0.00354068) (0.006570049 -0.01400452 0.003537266) (0.007578635 -0.0140064 0.003532729) (0.007074821 -0.0130045 0.003536347) (0.006564611 -0.01300399 0.00404129) (0.006564808 -0.01200334 0.00353526) (0.007581385 -0.01200412 0.0035357) (-0.008549873 -0.003998724 0.002510899) (-0.00805184 -0.004999523 0.002513674) (-0.008568159 -0.001999355 0.002520593) (-0.008586663 -2.52394e-07 0.002525453) (-0.008067909 -0.0009998572 0.002522926) (0.008066667 -0.001001532 0.002520118) (-0.008567772 0.002000173 0.002517235) (-0.008054604 0.003000985 0.002515604) (0.008062519 0.00300011 0.002512407) (-0.007060065 0.01500125 0.002515175) (-0.007557176 0.01500026 0.003016668) (-0.007559424 0.01500122 0.002007978) (-0.006555974 0.01500191 0.003021337) (-0.006554411 0.0160031 0.002516656) (-0.007070045 0.01299976 0.003526599) (-0.007578182 0.01400289 0.003524977) (-0.007571736 0.011999 0.003530461) (-0.006562433 0.0140017 0.003527147) (-0.006562477 0.01300118 0.004033117) (-0.007061947 0.01500252 0.003527771) (-0.006553525 0.0160039 0.003526776) (-0.006558344 0.01500269 0.004033285) (0.007584759 0.01400567 0.002524465) (0.007580025 0.0130043 0.003030599) (0.007588885 0.0130041 0.002022223) (0.007586285 0.01200245 0.002527811) (0.007074338 0.0150044 0.002521361) (0.006569379 0.01500524 0.00302717) (0.006567442 0.01500431 0.002018762) (0.007571332 0.01500342 0.003020619) (0.007574798 0.01600338 0.002518242) (0.007574923 0.01500428 0.002015661) (0.007072751 0.01300387 0.003535391) (0.006566939 0.01400501 0.003532929) (0.006568101 0.01200358 0.003536918) (0.00756383 0.01400392 0.003524224) (0.007582251 0.01200248 0.003541544) (0.007067532 0.01500429 0.003527839) (0.006572032 0.01600807 0.003533716) (0.006568075 0.01500723 0.004039143) (-0.006560998 0.01800487 0.002519151) (-0.00655619 0.01700505 0.003022715) (-0.006562553 0.01900454 0.003025911) (-0.006564726 0.02000571 0.002520209) (-0.006556146 0.01800561 0.003528343) (-0.006550981 0.01700502 0.004028793) (-0.006562309 0.02000337 0.003531174) (-0.006548121 0.01900398 0.004028415) (0.006585732 0.01901006 0.003034286) (0.006586563 0.01801192 0.003543146) (0.006576721 0.02001197 0.003536179) (-0.006558609 0.02200687 0.002519904) (-0.006556478 0.02100462 0.003024127) (-0.006073945 0.02301073 0.002528924) (-0.006065164 0.02100521 0.003533855) (0.006082155 0.02300947 0.002523957) (0.006083179 0.02101199 0.003539579) (-0.004578117 0.02601356 0.002540075) (-0.005084919 0.02701517 0.002539014) (-0.005585729 0.02701563 0.002027839) (-0.004577698 0.02701321 0.003047197) (-0.004575446 0.02801504 0.002534861) (-0.004576779 0.02701426 0.002031505) (-0.005080207 0.02501339 0.003553078) (-0.005574951 0.02401061 0.003543201) (-0.004577 0.02601354 0.003560208) (-0.004565043 0.02501366 0.004066152) (-0.00456999 0.02801086 0.003545932) (-0.004563348 0.02701 0.004057036) (0.005583629 0.02601571 0.002533751) (0.005579245 0.02501516 0.003039738) (0.005587598 0.02501382 0.002024757) (0.005580363 0.02401167 0.002528661) (0.005074955 0.02701546 0.002530286) (0.004570402 0.02701819 0.003041001) (0.004574384 0.02701661 0.002028291) (0.005582744 0.02701494 0.002022344) (0.005070066 0.02501606 0.003543574) (0.004567252 0.02601809 0.003547034) (0.004563026 0.02401451 0.003544202) (0.005569131 0.02401232 0.003538768) (0.004569456 0.02802085 0.003548785) (0.004558311 0.02701627 0.004048943) (-0.004569649 0.03001839 0.002526593) (-0.004568684 0.02901397 0.003033727) (-0.004063732 0.03102069 0.002527758) (-0.00406157 0.02901194 0.003544531) (0.00408388 0.03102902 0.002540387) (0.004073731 0.02902612 0.003560198) (-0.002557607 0.03403926 0.002548315) (-0.002543455 0.03302676 0.003051056) (-0.002546953 0.03202741 0.002543214) (-0.002051531 0.03504731 0.002562952) (-0.002032136 0.03302828 0.003572164) (-0.002531865 0.03201864 0.003555448) (-0.0005162729 0.03404465 0.002571685) (-0.0005099988 0.03303192 0.00307187) (-0.001033476 0.03505314 0.002579023) (-0.001541763 0.03505311 0.00206506) (-0.0005214595 0.03504284 0.003079966) (-3.885051e-06 0.0350507 0.002576252) (-0.0005181224 0.03505569 0.00207252) (-0.001015978 0.03303103 0.00357533) (-0.0005109137 0.03403178 0.003574466) (2.359241e-06 0.03302772 0.003572213) (-0.0005038714 0.03302349 0.004064721) (-1.463123e-06 0.03502998 0.003575788) (0.001541187 0.03405066 0.002586231) (0.001535594 0.03304052 0.003092796) (0.001028658 0.03505795 0.002582346) (0.0005118017 0.03504571 0.003076743) (0.002052811 0.03505346 0.0025888) (0.001024824 0.0330344 0.003586155) (0.0005135613 0.03403282 0.003576638) (0.002039366 0.03303955 0.003596999) (0.003565124 0.03202752 0.002540268) (0.002537819 0.03202904 0.003575685) (2.470804e-06 -0.03301207 0.004546745) (-0.000507745 -0.03202189 0.004568414) (-0.002542008 -0.03002447 0.00458896) (-0.00253789 -0.03102199 0.004076222) (-0.003047686 -0.02902155 0.004593905) (-0.003552197 -0.02901655 0.004074128) (-0.002032235 -0.02902397 0.004595103) (-0.002541053 -0.02802195 0.004594437) (-0.002542453 -0.02902158 0.004087255) (-0.0005063497 -0.03002387 0.004585493) (-0.001013084 -0.02902259 0.004589393) (-0.001517222 -0.02902283 0.005092665) (-0.0005041309 -0.02902374 0.005095077) (2.09559e-06 -0.02902166 0.004588082) (-0.0005051133 -0.02802128 0.004589705) (-0.001005902 -0.02901954 0.005586434) (-0.001514949 -0.02801917 0.005585243) (3.332907e-06 -0.02902616 0.005603993) (-0.0005030045 -0.02802207 0.005601151) (0.001522788 -0.03001669 0.00458068) (0.001017131 -0.02901856 0.004587232) (0.0005101305 -0.02902206 0.005098398) (0.001523615 -0.02901731 0.005086916) (0.002031496 -0.02901692 0.004582234) (0.001525623 -0.02801812 0.004587972) (0.001014887 -0.02901692 0.005594919) (0.0005104219 -0.02802192 0.005610293) (0.001527108 -0.02802129 0.0056001) (0.003044534 -0.02901632 0.004584067) (0.002539874 -0.02901661 0.004080108) (0.003551224 -0.02801438 0.004581845) (0.003553456 -0.0290157 0.004079386) (-0.004559897 -0.02601277 0.004556887) (-0.004057771 -0.02501454 0.004571222) (-0.004561023 -0.0240123 0.004563366) (-0.002539901 -0.02601966 0.004590282) (-0.002538587 -0.02702229 0.005097496) (-0.003550059 -0.02501771 0.005086279) (-0.002536784 -0.02501914 0.005093609) (-0.002538412 -0.02602089 0.005601598) (-0.002026795 -0.0270211 0.005592056) (-0.003046823 -0.02502111 0.005599721) (-0.003547054 -0.02401649 0.005587056) (-0.002027 -0.02501929 0.005594256) (-0.002533352 -0.0240185 0.005592887) (0.00355278 -0.0260146 0.004582287) (0.003046103 -0.02501476 0.004580917) (0.002537405 -0.02501835 0.005091652) (0.003546496 -0.02501522 0.005082655) (0.004052324 -0.02501112 0.004570077) (0.00354657 -0.02401193 0.00457176) (0.002538329 -0.02602373 0.00559868) (0.002032583 -0.02702302 0.005596794) (0.003041143 -0.02501994 0.005591395) (0.002027986 -0.02501846 0.0055909) (0.002532584 -0.02401509 0.005584503) (0.003539757 -0.02401318 0.00557541) (-0.004557983 -0.02200821 0.004561012) (-0.004557348 -0.02300911 0.005072045) (-0.004564153 -0.02301094 0.004057973) (-0.005058401 -0.02100685 0.004552121) (-0.005568333 -0.02100778 0.0040408) (-0.004550082 -0.02100568 0.005066177) (-0.004553402 -0.02100676 0.00404997) (-0.004047003 -0.02100631 0.004558071) (-0.004548294 -0.02000543 0.004553007) (-0.004551243 -0.02200503 0.005574449) (-0.004046029 -0.02300888 0.005578993) (-0.004042109 -0.0210056 0.005574458) (-0.004540192 -0.02000379 0.005562454) (0.005566892 -0.02201296 0.00455132) (0.00557019 -0.02301106 0.004042077) (0.005064047 -0.02101207 0.004557348) (0.004552866 -0.02101061 0.005060726) (0.004557245 -0.02100969 0.004052671) (0.004049937 -0.02100893 0.004556995) (0.005578008 -0.02101336 0.00405287) (0.005571358 -0.02000943 0.004561469) (0.004544903 -0.0220083 0.005561268) (0.004038895 -0.02300854 0.005566901) (0.004046621 -0.02100979 0.005568535) (0.004546679 -0.02000898 0.00555754) (-0.006553771 -0.01800533 0.004537947) (-0.006549071 -0.01600444 0.004531296) (-0.006057916 -0.01700631 0.004541039) (0.006067842 -0.01700356 0.004551537) (-0.006550605 -0.01400611 0.004536048) (-0.006548608 -0.01300489 0.005038347) (-0.006557691 -0.01200465 0.004540877) (-0.006050436 -0.01300489 0.004537885) (-0.006569873 -0.01200448 0.005559889) (-0.006050262 -0.01300449 0.005546708) (0.006550261 -0.01300332 0.005045191) (0.006057481 -0.01300325 0.004545595) (0.006563751 -0.01200566 0.005569297) (0.006049897 -0.0130034 0.005549489) (-0.006562519 -0.01000261 0.004543178) (-0.006567694 -0.01100388 0.005058258) (-0.006558092 -0.01100359 0.004036815) (-0.007072349 -0.009001982 0.004540157) (-0.007581223 -0.009003219 0.004039626) (-0.006562608 -0.009001844 0.005045654) (-0.006561538 -0.008001308 0.00453919) (-0.006560968 -0.009002066 0.00403659) (-0.006561617 -0.01000225 0.005556363) (-0.006557952 -0.008001314 0.005545489) (0.007068858 -0.009000081 0.0045338) (0.006564852 -0.008999844 0.005040218) (0.006559108 -0.009001182 0.004032151) (0.00757505 -0.008001399 0.004525732) (0.007565462 -0.009001334 0.004025487) (0.006561684 -0.01000238 0.005554251) (0.00654791 -0.007999977 0.005529615) (-0.006556523 -0.006001036 0.004538108) (-0.006562023 -0.007001065 0.005044043) (-0.006557111 -0.007001061 0.004034059) (-0.007055758 -0.005000966 0.004536509) (-0.007550396 -0.005000294 0.004026394) (-0.006562234 -0.005001756 0.00505044) (-0.006559069 -0.004001643 0.0045431) (-0.006553091 -0.005001001 0.004034523) (-0.006566545 -0.006001795 0.005558226) (-0.006578458 -0.00400348 0.005572066) (0.007574974 -0.006000125 0.004538754) (0.007585206 -0.00700275 0.004035329) (0.007056835 -0.005001036 0.004532045) (0.006556292 -0.005001019 0.005037857) (0.006554333 -0.005001196 0.004030516) (0.007551285 -0.004001407 0.004528973) (0.007561871 -0.005001825 0.004031103) (0.006554147 -0.00600118 0.005539472) (0.00657139 -0.004001193 0.005552334) (-0.006565892 -0.00200223 0.004545063) (-0.006570191 -0.003002997 0.005055389) (-0.00655911 -0.003001485 0.004038741) (-0.007079698 -0.001002645 0.004547684) (-0.007591192 -0.00100209 0.004042938) (-0.006567865 -0.001003247 0.00505054) (-0.006564728 -1.325818e-06 0.004543277) (-0.006564802 -0.001001555 0.004039961) (-0.00657463 -0.002004449 0.005559871) (-0.006559335 -2.487505e-06 0.005548443) (-0.006552587 -0.001005385 0.006045119) (0.007574601 -0.002002122 0.004541935) (0.007559494 -0.003001985 0.004030817) (0.007070063 -0.001001789 0.004536247) (0.006563985 -0.001001082 0.00503813) (0.006558602 -0.001001262 0.004031385) (0.007570012 -2.173522e-06 0.00453143) (0.007578475 -0.001002562 0.004036636) (0.006575243 -0.002001182 0.005550977) (0.006551973 -7.334963e-07 0.005531682) (0.006561847 -0.001000996 0.006038603) (-0.006561762 0.002000425 0.0045428) (-0.006563341 0.0009995837 0.005048917) (-0.006562226 0.0009998654 0.004038728) (-0.007065464 0.003000901 0.004541099) (-0.007567097 0.003001112 0.004033098) (-0.006565636 0.003001012 0.00505156) (-0.006556908 0.004001012 0.004540989) (-0.006556423 0.003000726 0.004036496) (-0.006566408 0.002000746 0.005558283) (-0.006544651 0.001000025 0.006043342) (-0.006577659 0.004002207 0.005566246) (0.007577714 0.001999734 0.004531861) (0.007571813 0.0009988037 0.004028646) (0.007068134 0.00300032 0.004535728) (0.006565402 0.003000927 0.005045989) (0.006558227 0.003000089 0.004031464) (0.0075704 0.004000184 0.0045325) (0.007572969 0.002999893 0.004026864) (0.006555481 0.002000825 0.005545019) (0.006585613 0.004001566 0.005566171) (0.006565529 0.003001659 0.006057802) (-0.006555833 0.006001088 0.00453853) (-0.006561473 0.005001377 0.005048777) (-0.006551707 0.005001015 0.004034181) (-0.007068159 0.007001235 0.004538471) (-0.007564743 0.007001563 0.004033476) (-0.006562448 0.007001187 0.0050451) (-0.006562149 0.008001022 0.004541035) (-0.006557284 0.007001079 0.004035886) (-0.006566729 0.00600174 0.005557733) (-0.006556821 0.008001186 0.005547505) (0.007553391 0.005999249 0.00452956) (0.007556915 0.004999545 0.004025145) (0.007062025 0.006999553 0.004538303) (0.00656408 0.007000843 0.005048074) (0.006557337 0.007000243 0.004035691) (0.00757368 0.007997206 0.004543629) (0.007558601 0.006999277 0.004028967) (0.006580594 0.006001877 0.005563172) (0.006560272 0.008002013 0.005551118) (-0.006567959 0.01000121 0.004544342) (-0.006564979 0.009001248 0.005045981) (-0.006563175 0.009000999 0.004039241) (-0.006574744 0.01100229 0.005055002) (-0.006564802 0.01200128 0.004540596) (-0.006564816 0.01100107 0.004038516) (-0.006570466 0.01000231 0.005552045) (-0.006574913 0.01200222 0.005560883) (0.007576685 0.00900234 0.004046943) (0.006572557 0.01100623 0.005056329) (0.006567859 0.0110036 0.004044914) (0.006563374 0.01000549 0.005552683) (0.006571615 0.0120045 0.005560272) (-0.00655753 0.01400148 0.004533908) (-0.006552771 0.01300109 0.005034258) (-0.006548425 0.01600377 0.004533545) (-0.00605339 0.01500287 0.004539579) (-0.006054718 0.01300276 0.005544443) (0.006067873 0.01500927 0.004551253) (0.006060852 0.01300612 0.005556318) (-0.006552351 0.01800729 0.004532148) (-0.006052983 0.01900333 0.00453545) (-0.004558468 0.02201036 0.004555341) (-0.004555804 0.02100837 0.005059538) (-0.004553949 0.02100717 0.004046731) (-0.00455197 0.02000592 0.004549475) (-0.005062404 0.02301206 0.004551368) (-0.005564464 0.02300882 0.00404158) (-0.004556903 0.0230139 0.005062391) (-0.004556003 0.02401302 0.004561593) (-0.004560434 0.02301146 0.004054952) (-0.004054271 0.02301246 0.004562867) (-0.004553593 0.0220113 0.005565279) (-0.004546626 0.0200058 0.005559334) (-0.004047448 0.02100891 0.005573509) (-0.004047896 0.02301306 0.005570974) (0.005559806 0.02200884 0.004548073) (0.005570436 0.02101051 0.004048419) (0.005564808 0.02000778 0.004552312) (0.005058888 0.0230117 0.004547861) (0.004550283 0.02301299 0.005054098) (0.004558936 0.02301292 0.00404999) (0.004051569 0.02301276 0.004554963) (0.005566368 0.02301056 0.004042086) (0.004548815 0.02201234 0.005557058) (0.00454642 0.02000565 0.005553877) (0.004046671 0.02100887 0.005560901) (0.004045313 0.02301248 0.005559932) (-0.004553729 0.02601398 0.004573689) (-0.004054318 0.02701134 0.004568998) (-0.002541263 0.0260164 0.004588438) (-0.002536252 0.02501762 0.005096638) (-0.003051631 0.02701568 0.004588885) (-0.002543008 0.02701911 0.005098248) (-0.002545629 0.02801653 0.004587327) (-0.002036049 0.02701645 0.004585973) (-0.003041077 0.02501953 0.005605475) (-0.003541296 0.02401561 0.005584076) (-0.002537934 0.02602138 0.005605786) (-0.002533439 0.02401671 0.005596701) (-0.002028694 0.02501764 0.005600043) (-0.002029673 0.02701988 0.005595191) (0.003551076 0.02601748 0.004576535) (0.003546842 0.02501545 0.005079224) (0.003048521 0.02702027 0.00458848) (0.002540698 0.02702096 0.005097387) (0.00203508 0.02701933 0.004587942) (0.004051978 0.0270174 0.004565846) (0.0035553 0.02802252 0.004584146) (0.003041849 0.0250179 0.005593154) (0.002536398 0.02602128 0.005596966) (0.002537881 0.02401605 0.005583662) (0.002028958 0.02501715 0.005587959) (0.003545955 0.02401438 0.00557524) (0.002029023 0.02701919 0.005590088) (-0.002538531 0.03001764 0.004575802) (-0.002543771 0.02901635 0.004077212) (-0.002025086 0.03101945 0.004573591) (-0.002532185 0.03101716 0.004068504) (-0.0005063038 0.03002005 0.004582932) (-0.0005069724 0.02902066 0.005094526) (-0.0005070668 0.02801849 0.004587132) (-0.001011211 0.03101992 0.00457272) (1.697356e-06 0.03102023 0.004581941) (-0.0005073027 0.03201948 0.004566642) (-0.001010335 0.02901598 0.005579686) (-0.001518928 0.02801462 0.005579786) (-4.647397e-07 0.02902348 0.005610374) (-0.0005071438 0.02802061 0.005601818) (0.001527607 0.03002535 0.004594582) (0.001524565 0.0290214 0.00509476) (0.001525602 0.02802052 0.00459162) (0.001018846 0.03102403 0.004590003) (0.002033417 0.03102762 0.004590712) (0.00101259 0.02901847 0.005592121) (0.0005055876 0.02801998 0.005607072) (0.001519151 0.02801672 0.00558697) (0.003558482 0.02902436 0.004074761) (0.00253653 0.03102246 0.004082261) (-0.001010366 -0.0250166 0.006578018) (-0.001517482 -0.02501935 0.006092202) (-9.551351e-08 -0.0250119 0.006593417) (-0.0005046455 -0.02401176 0.006578298) (-0.0005050869 -0.02501646 0.006092818) (0.001007772 -0.025012 0.006574771) (0.0005055466 -0.02501405 0.006094728) (0.001509247 -0.0240074 0.006565124) (0.001516731 -0.02501656 0.006086005) (-0.002515601 -0.02200947 0.006571408) (-0.002525458 -0.02301573 0.006087119) (-0.003016586 -0.02100751 0.00656639) (-0.00353022 -0.02100725 0.006075001) (-0.002012128 -0.02100766 0.0065773) (-0.002518412 -0.02000778 0.006578601) (-0.002518588 -0.02100881 0.006074758) (-0.0005053459 -0.02200853 0.006577865) (-0.001006396 -0.02100819 0.006580572) (-2.353169e-06 -0.0210073 0.006572118) (-0.0005037409 -0.02000761 0.006575583) (0.001510156 -0.02200628 0.006568271) (0.001005017 -0.02100663 0.006572269) (0.002017412 -0.02100845 0.006570512) (0.001510488 -0.02000732 0.006570063) (0.00303553 -0.02101104 0.006578229) (0.002526872 -0.02100924 0.006072679) (0.003536084 -0.02001136 0.006580012) (0.003541588 -0.02100992 0.006077212) (-0.004539874 -0.01800306 0.006565491) (-0.004535984 -0.01900283 0.006058017) (-0.004039201 -0.01700284 0.006574749) (-0.004543979 -0.01600144 0.006575102) (-0.004546504 -0.01700437 0.006072102) (-0.002523083 -0.01800718 0.006577193) (-0.003027941 -0.01700541 0.006573083) (-0.00252236 -0.01700641 0.007074195) (-0.002017629 -0.01700557 0.006571572) (-0.002521022 -0.01600431 0.006569922) (-0.002015174 -0.01700518 0.007574259) (-0.002516567 -0.01600439 0.007570292) (-0.0005033645 -0.01800772 0.006571973) (-0.0005036338 -0.01900968 0.007082448) (-0.001510663 -0.01700661 0.007075286) (-0.0005036756 -0.01700825 0.007075926) (-0.001005032 -0.0190078 0.007586935) (-0.001508542 -0.01800884 0.007583201) (-0.0005035676 -0.01801118 0.007581094) (-1.34637e-06 -0.01901437 0.007591553) (-0.001006214 -0.01700831 0.007577915) (-0.001510211 -0.01600563 0.0075735) (-9.64979e-07 -0.0170092 0.007579647) (-0.0005041381 -0.01600787 0.007579459) (0.001510881 -0.01800666 0.006569903) (0.001508882 -0.01900708 0.007071304) (0.0005026663 -0.0170073 0.007073066) (0.001509738 -0.01700505 0.007070453) (0.002018055 -0.01700526 0.006568695) (0.001004714 -0.01900917 0.007577965) (0.0005024317 -0.01801031 0.007575275) (0.001507839 -0.01800525 0.007572881) (0.001005476 -0.01700592 0.00757031) (0.0005026548 -0.01600606 0.007578848) (0.002012042 -0.01700374 0.007568587) (0.001508737 -0.01600362 0.007570693) (0.003542116 -0.01800994 0.006583509) (0.00303224 -0.01700687 0.006575475) (0.002522083 -0.0170057 0.007071488) (0.004042275 -0.01700623 0.006577444) (0.003536093 -0.01600438 0.006572494) (0.002516301 -0.01600235 0.007566334) (0.004545354 -0.01700418 0.006068958) (-0.004538776 -0.01400775 0.006567515) (-0.004539722 -0.01500509 0.006065106) (-0.005037438 -0.01300649 0.006555838) (-0.005544708 -0.01300471 0.006053143) (-0.004034979 -0.01300534 0.006569351) (-0.004540279 -0.01200549 0.006569702) (-0.004538566 -0.01300557 0.006062576) (-0.002518954 -0.01400303 0.006565971) (-0.002518544 -0.01500345 0.007069837) (-0.003525233 -0.01300323 0.007071782) (-0.002517992 -0.01300273 0.007074262) (-0.003018761 -0.01500206 0.007561991) (-0.003520019 -0.01400184 0.007556553) (-0.002517315 -0.01400342 0.007573248) (-0.002013558 -0.01500432 0.007571456) (-0.003020493 -0.01300254 0.007574289) (-0.003524289 -0.01200237 0.007580004) (-0.002015025 -0.01300332 0.00758167) (-0.002517887 -0.01200218 0.00758243) (0.003532141 -0.01400239 0.006563139) (0.00353085 -0.01500252 0.007064052) (0.002518998 -0.01300273 0.007074532) (0.003527343 -0.01300189 0.007066196) (0.004038324 -0.01300211 0.006560719) (0.003529341 -0.01200163 0.006563571) (0.003018932 -0.01500227 0.007560116) (0.002518429 -0.01400291 0.007575) (0.002012635 -0.01500339 0.007571594) (0.003521342 -0.01400207 0.007554328) (0.003021401 -0.01300191 0.007573242) (0.002016328 -0.0130047 0.007584707) (0.002519873 -0.01200262 0.007589601) (0.003527869 -0.01200158 0.007581895) (0.005045979 -0.01300217 0.006553619) (0.004544042 -0.01300229 0.006057349) (0.005545998 -0.01200255 0.006555096) (0.005547641 -0.01300291 0.006048917) (-0.004540918 -0.01000356 0.006567381) (-0.005043021 -0.009002536 0.006561299) (-0.004535865 -0.009001906 0.007066349) (-0.004537106 -0.008001241 0.006559696) (-0.004035059 -0.009002096 0.006562282) (-0.004528894 -0.00799892 0.007565986) (-0.00403665 -0.009001919 0.007572245) (0.005541535 -0.01000432 0.006555845) (0.005038924 -0.009003681 0.006551777) (0.00453733 -0.009003693 0.007057975) (0.004033329 -0.00900245 0.006554933) (0.005535407 -0.008002523 0.006540171) (0.004539101 -0.008005349 0.007551517) (0.004030995 -0.009001914 0.007565412) (-0.004539911 -0.006001022 0.006559025) (-0.004534954 -0.007000551 0.007060749) (-0.00505321 -0.005001462 0.006567774) (-0.004541356 -0.005001097 0.007067395) (-0.004543932 -0.004001263 0.006564918) (-0.004036406 -0.005001026 0.006559387) (-0.004533503 -0.006000817 0.007562784) (-0.004027509 -0.007000469 0.007558732) (-0.004544302 -0.0040015 0.007582461) (-0.004033245 -0.005000999 0.007570707) (0.005549063 -0.006002105 0.006549535) (0.005046829 -0.005001959 0.006553565) (0.00453784 -0.005001997 0.007054035) (0.004034863 -0.005001711 0.006551249) (0.005568775 -0.004002357 0.006572801) (0.004531994 -0.006002634 0.007545196) (0.00402801 -0.007002651 0.0075538) (0.004539965 -0.00400211 0.007570224) (0.004033763 -0.005001938 0.007562934) (-0.006026268 -0.001001236 0.006532223) (-0.00650212 -5.531372e-07 0.006500528) (-0.004539762 -0.002000858 0.006562639) (-0.004544475 -0.003001131 0.007075142) (-0.005038971 -0.001000342 0.006556594) (-0.004536809 -0.001000448 0.007063364) (-0.004534703 4.040411e-07 0.006556843) (-0.004033664 -0.001000422 0.006558408) (-0.004542224 -0.002001811 0.007585583) (-0.004039688 -0.003001352 0.007584044) (-0.004533503 2.854565e-07 0.007559011) (-0.004032652 -0.001001402 0.007569472) (0.005576142 -0.002003014 0.006578207) (0.005052566 -0.001001057 0.006565704) (0.004543054 -0.001001104 0.007068523) (0.00403823 -0.001000617 0.006560577) (0.006058488 -0.001001615 0.006559586) (0.005545697 2.486652e-07 0.006555725) (0.004541612 -0.002002953 0.007581012) (0.004037578 -0.003001848 0.00757923) (0.004538107 -1.572832e-07 0.00756765) (0.004032503 -0.001001236 0.007570375) (-0.004541638 0.002001792 0.006568718) (-0.004537625 0.001001443 0.007067122) (-0.005055253 0.003002437 0.006580553) (-0.004548117 0.003002015 0.007082588) (-0.0045474 0.004001823 0.006570434) (-0.004040274 0.003001553 0.006568275) (-0.004546307 0.002002136 0.007591959) (-0.00403369 0.001000732 0.007572147) (-0.004549574 0.004001638 0.007587028) (-0.004043528 0.003001416 0.007589189) (0.005555524 0.002005702 0.006568919) (0.005056909 0.003003119 0.006576922) (0.004550738 0.003002598 0.007081062) (0.004042538 0.003001784 0.00656824) (0.006060854 0.003003321 0.006575241) (0.005577653 0.00400199 0.006595043) (0.004553397 0.002003298 0.007591142) (0.004041092 0.001001442 0.007580587) (0.004548828 0.004001405 0.007583654) (0.004044054 0.003001797 0.007585481) (-0.004542364 0.006001847 0.00656142) (-0.004544912 0.005001627 0.007070668) (-0.005047036 0.007002295 0.006559993) (-0.004536065 0.007002295 0.00705908) (-0.004539623 0.008003004 0.00655896) (-0.004035309 0.007002052 0.006557693) (-0.004531822 0.006001325 0.007564738) (-0.004036399 0.005001455 0.007574379) (-0.004532205 0.00800409 0.007559204) (-0.004026548 0.007001612 0.007558989) (0.005571646 0.006001543 0.00658444) (0.005054869 0.007001875 0.006570834) (0.004546824 0.007001576 0.007072929) (0.004041393 0.007001723 0.006566686) (0.005555518 0.008002956 0.006566543) (0.004537937 0.006001046 0.007569693) (0.004035768 0.00500093 0.007575174) (0.004552183 0.008001154 0.007579638) (0.004034866 0.007001606 0.007570606) (-0.004543111 0.01000489 0.006563522) (-0.004538049 0.009003806 0.007060367) (-0.005051091 0.01100662 0.006568405) (-0.004539115 0.01200532 0.006567543) (-0.004035463 0.01100404 0.006563251) (-0.00403315 0.009001584 0.007567237) (0.005556714 0.01000786 0.006582289) (0.00505156 0.01100546 0.006578493) (0.004038195 0.01100328 0.006568433) (0.005559904 0.01200488 0.006568864) (0.004036577 0.009003318 0.007582221) (-0.004540682 0.01400815 0.006568386) (-0.004540977 0.01300567 0.006062549) (-0.004042614 0.01500544 0.006570924) (-0.004548114 0.01600553 0.006579001) (-0.004544598 0.01500555 0.00606628) (-0.002519447 0.01400271 0.006562045) (-0.002517517 0.01300119 0.007067918) (-0.003026546 0.01500389 0.006564061) (-0.003533262 0.01500412 0.007062162) (-0.002519035 0.01500389 0.007066082) (-0.002520377 0.0160055 0.006565603) (-0.002016293 0.01500404 0.006563781) (-0.003020085 0.01299992 0.007563502) (-0.00352238 0.01400143 0.007547562) (-0.003523077 0.01200205 0.007565579) (-0.002517304 0.01400016 0.007569341) (-0.002517505 0.01200117 0.00757312) (-0.002013403 0.01300188 0.007578476) (-0.003020775 0.01500182 0.007557378) (-0.002516291 0.01600801 0.007567271) (-0.002012694 0.01500462 0.007570739) (0.003534581 0.01400403 0.006565999) (0.003529756 0.01300336 0.007067482) (0.003531053 0.01200312 0.006565366) (0.003030205 0.01500367 0.006566428) (0.002523448 0.01500324 0.007071836) (0.002019709 0.01500253 0.006565826) (0.00353676 0.01500455 0.007066692) (0.004043007 0.0150053 0.006566994) (0.003539031 0.01600527 0.00657036) (0.003025728 0.013005 0.007576329) (0.002523781 0.0140056 0.007582377) (0.002520485 0.01200487 0.007582114) (0.002015261 0.01300578 0.007584827) (0.003527466 0.01400347 0.007561679) (0.003526813 0.01200238 0.007572314) (0.003027648 0.01500402 0.007570379) (0.002517875 0.01600168 0.007567119) (0.002015074 0.01500296 0.00757546) (0.00555344 0.01300538 0.006059351) (0.004547435 0.01500598 0.006066083) (-0.004533582 0.01800295 0.00656646) (-0.004545315 0.01700492 0.006075739) (-0.004026315 0.01900439 0.0065567) (-0.004537227 0.01900364 0.006056697) (-0.002519759 0.0180074 0.006570437) (-0.002518545 0.01700809 0.007069668) (-0.003024637 0.01900876 0.006570678) (-0.002014524 0.01900686 0.006569661) (-0.002520576 0.02000839 0.006571784) (-0.002013297 0.01701097 0.007571791) (-0.0005032301 0.01800419 0.006572857) (-0.0005042121 0.01700391 0.007080918) (-0.001006851 0.01900545 0.006572859) (-0.001509489 0.01900632 0.007074206) (-0.0005035006 0.0190054 0.007083727) (1.1762e-06 0.01900399 0.006573772) (-0.0005031524 0.0200058 0.006572702) (-0.001008358 0.01700511 0.007579972) (-0.001510135 0.01800716 0.007580804) (-0.001509975 0.0160069 0.007573578) (-0.000505832 0.01800391 0.007588372) (-5.370991e-07 0.01700306 0.007586129) (-0.0005041359 0.01600365 0.007583886) (-0.001006744 0.0190046 0.007586918) (6.650483e-07 0.01900346 0.007600213) (0.001514179 0.01800223 0.006569915) (0.001512432 0.01700192 0.007073449) (0.001009866 0.01900312 0.006572516) (0.000505505 0.01900315 0.007086427) (0.001513 0.01900315 0.007073914) (0.002019653 0.01900266 0.006567053) (0.001515309 0.02000401 0.006569793) (0.001007339 0.0170023 0.007579787) (0.0005044992 0.01800152 0.007591707) (0.0005032824 0.01600304 0.007585938) (0.001511064 0.01800351 0.007578998) (0.002015214 0.0170013 0.007565567) (0.001509771 0.0160022 0.007572056) (0.001007414 0.01900309 0.007587744) (0.00353591 0.01800459 0.006567012) (0.003032329 0.01900393 0.006568972) (0.004029079 0.01900536 0.006551467) (0.003539554 0.02000621 0.006563149) (0.004540972 0.01900392 0.006052197) (-0.002524059 0.0220071 0.006572894) (-0.002524954 0.02100841 0.006074336) (-0.002029542 0.02300908 0.006601057) (-0.00253087 0.0230128 0.006090383) (-0.000505315 0.02200853 0.006577701) (-0.00101341 0.02301005 0.006585777) (-4.721499e-07 0.0230085 0.006570494) (-0.0005063405 0.02401149 0.006578078) (0.00151516 0.02200713 0.006569092) (0.001009174 0.0230082 0.006568794) (0.002018658 0.02300827 0.006561542) (0.001512997 0.0240104 0.006572554) (0.00353797 0.02100731 0.006061063) (0.002533801 0.02301195 0.006072887) (-0.0005077468 0.02501501 0.006094691) (0.001516849 0.0250138 0.006079805) (-0.0005025824 -0.01000453 0.008597166) (-0.0005033657 -0.0110037 0.008068649) (-0.001005178 -0.009004301 0.008606126) (-0.001509905 -0.009002253 0.008082354) (9.47204e-07 -0.009005942 0.008606922) (-0.0005022975 -0.009004087 0.008086583) (0.001006877 -0.009001318 0.008609719) (0.000503815 -0.009002326 0.008089358) (0.001511033 -0.009000725 0.008087605) (-0.002511882 -0.006001948 0.00856428) (-0.002513086 -0.007001552 0.008063969) (-0.002518296 -0.00400196 0.008578035) (-0.002516598 -0.005002212 0.008066665) (0.002523144 -0.005000789 0.008073277) (-0.002524533 -0.002001212 0.008585294) (-0.002522087 -0.003001616 0.008071055) (-0.002523183 -1.047586e-06 0.008586782) (-0.002524072 -0.001001554 0.008073679) (0.002519176 -0.001000202 0.008069266) (-0.002521759 0.00200081 0.008585589) (-0.002522116 0.0009999162 0.008074352) (-0.002521004 0.004001319 0.008574847) (-0.002522274 0.00300092 0.00807148) (0.002524442 0.003000914 0.008077423) (-0.002519861 0.005001808 0.008067745) (0.002521716 0.007002001 0.00808471) (-0.0005039099 0.01000412 0.008600106) (-0.0005052143 0.009004381 0.008090269) (1.017684e-06 0.01100396 0.008574007) (-0.0005025175 0.01100279 0.008069132) (0.00151312 0.009003186 0.008087533) (0.000503686 0.01100356 0.008070494) (-0.001255982 0.006501621 -0.009581096) (-0.001260291 0.00699932 -0.009326651) (-0.001439043 0.006490834 -0.00975534) (-0.00125023 0.007002644 -0.00975944) (-0.001253691 0.007500163 -0.009519148) (-0.001509083 0.007500666 -0.009300392) (-0.001251014 0.01051838 -0.009511348) (-0.001495232 0.01049883 -0.009231538) (-0.001245925 0.01099922 -0.009236785) (-0.001249208 0.01049985 -0.009015385) (0.002270455 -0.001010925 -0.009338245) (0.002517144 -0.0005015361 -0.009325355) (-0.0004994058 -0.01400339 -0.007580255) (-0.0005007352 -0.01500325 -0.007073044) (-0.001001162 -0.01300248 -0.007563564) (-0.001506358 -0.01300229 -0.007062816) (-0.0004995041 -0.01300226 -0.007060183) (3.191282e-06 -0.01300296 -0.007565374) (0.001510482 -0.01400423 -0.007570282) (0.001511416 -0.01500502 -0.007069274) (0.001007412 -0.01300258 -0.00756266) (0.0005050408 -0.01300263 -0.0070606) (0.001511528 -0.01300331 -0.007061116) (0.003525341 -0.01000411 -0.007561048) (0.003531588 -0.01100541 -0.00706433) (0.003021623 -0.009003177 -0.007565344) (0.002517445 -0.009002456 -0.007058174) (0.003526229 -0.009003861 -0.007063286) (0.003524899 -0.008003626 -0.007564359) (0.003527932 -0.006002604 -0.007563006) (0.003527079 -0.007003341 -0.007061781) (0.003023617 -0.005001541 -0.007562146) (0.002518591 -0.005001289 -0.007056852) (0.003528224 -0.005002218 -0.007061366) (-0.002522448 0.002000759 -0.007575651) (-0.002521111 0.001000516 -0.007068326) (-0.003027946 0.003001448 -0.007577431) (-0.003533289 0.003001866 -0.007073938) (-0.002521056 0.003001138 -0.007066169) (-0.00252052 0.004001553 -0.007569525) (-0.002516597 0.006002565 -0.007564809) (-0.002518051 0.005001867 -0.007061073) (-0.003019394 0.00700396 -0.007567238) (-0.003523053 0.007004074 -0.007063343) (-0.002515941 0.007002835 -0.007059706) (0.00352642 0.006001239 -0.007559351) (0.003529373 0.005001015 -0.007062433) (0.003019119 0.007001336 -0.007558475) (0.00251581 0.007001442 -0.007054687) (0.003525838 0.007001686 -0.007055101) (0.00352482 0.008002176 -0.007556553) (0.0035241 0.01000325 -0.007559152) (0.003527061 0.009002812 -0.007061003) (0.003020399 0.01100458 -0.007561281) (0.002517326 0.01100352 -0.007059019) (0.003527094 0.01100435 -0.007064103) (0.001507197 0.01400342 -0.007568719) (0.001508218 0.01300296 -0.007060659) (0.001003736 0.0150037 -0.007577032) (0.0005012206 0.01500334 -0.007073207) (0.001508366 0.01500343 -0.00706568) (-0.0005035304 -0.02601331 -0.00557159) (-0.0005041764 -0.0270153 -0.005073594) (-0.001007181 -0.02501128 -0.005568511) (-0.001513489 -0.02501016 -0.005067062) (-0.0005034563 -0.02501159 -0.005065281) (3.091911e-07 -0.02501343 -0.005570567) (0.001516399 -0.02601214 -0.005570168) (0.001517813 -0.02701399 -0.005072585) (0.001008808 -0.02501282 -0.005569325) (0.0005046354 -0.0250123 -0.005065536) (0.001516565 -0.0250118 -0.005068615) (-0.002520046 -0.0220046 -0.005555122) (-0.002521607 -0.0230054 -0.005057335) (-0.003027327 -0.02100512 -0.005555166) (-0.003531565 -0.02100514 -0.00505295) (0.003538246 -0.02200805 -0.005569417) (0.003540707 -0.0230091 -0.005070781) (0.003030752 -0.02100633 -0.005565345) (0.003535569 -0.02100625 -0.005063348) (-0.004545895 -0.01800574 -0.00556023) (-0.004546185 -0.01900565 -0.005056424) (-0.005049222 -0.0170073 -0.005557377) (-0.005555719 -0.01700774 -0.005051462) (-0.00454196 -0.01700568 -0.00505203) (-0.004537551 -0.01600616 -0.005553763) (-0.005052738 -0.01900656 -0.004545111) (-0.005558832 -0.01800683 -0.004546298) (-0.005050306 -0.01700633 -0.004543761) (-0.005550683 -0.01600691 -0.004539831) (0.005562923 -0.01800774 -0.005562163) (0.005550709 -0.01900426 -0.005049319) (0.005055817 -0.01700836 -0.005565575) (0.004548132 -0.01700645 -0.005060732) (0.005558325 -0.01700544 -0.005051273) (0.005563645 -0.01600744 -0.005564483) (0.005052757 -0.01900519 -0.004550171) (0.005559243 -0.01800442 -0.004545974) (0.005054092 -0.0170049 -0.004547543) (0.005558831 -0.01600467 -0.004546497) (-0.004533268 -0.01400451 -0.005548041) (-0.004534933 -0.01500506 -0.005045312) (-0.005042877 -0.01300386 -0.005546435) (-0.005549863 -0.01300423 -0.005042325) (-0.005043909 -0.01500555 -0.004537298) (-0.005548847 -0.01400524 -0.004536067) (0.005558011 -0.01400504 -0.005562814) (0.005561194 -0.01500505 -0.005057934) (0.005055206 -0.01300526 -0.005566725) (0.005558305 -0.01300424 -0.005059702) (0.005054215 -0.0150044 -0.004548628) (0.005556371 -0.01400379 -0.004547186) (-0.004543395 0.01400609 -0.005560671) (-0.005053733 0.01500648 -0.00556524) (-0.005557271 0.01500556 -0.005055318) (-0.00454459 0.01500556 -0.005055965) (-0.004549053 0.01600681 -0.005564273) (-0.005554971 0.01400502 -0.004545169) (-0.005050298 0.01500496 -0.004545984) (-0.005556754 0.01600562 -0.004548242) (0.005554461 0.0140056 -0.005556037) (0.005559639 0.01300573 -0.005056906) (0.005052402 0.01500527 -0.005559696) (0.004547087 0.01500471 -0.005054779) (0.005561968 0.01500564 -0.005054018) (0.005555197 0.01600499 -0.005553329) (0.005564896 0.01400543 -0.004548528) (0.005059513 0.0150051 -0.004548317) (0.005569878 0.01600585 -0.004551341) (-0.004553765 0.01800599 -0.005561841) (-0.004548643 0.01700566 -0.005056849) (-0.005054424 0.01900509 -0.005556332) (-0.005550256 0.01900585 -0.005048739) (-0.004550193 0.01900474 -0.005055556) (-0.005052294 0.01700547 -0.004547377) (-0.005556912 0.01800615 -0.004548417) (-0.005052074 0.01900576 -0.004544379) (0.005556332 0.01800473 -0.005556619) (0.005565288 0.01700493 -0.005055956) (0.005051349 0.0190103 -0.005557947) (0.004551931 0.01900969 -0.005058424) (0.005559107 0.0190063 -0.005048764) (0.005065323 0.01700591 -0.004552472) (0.005570927 0.0180062 -0.004553085) (0.005063531 0.01900713 -0.004549201) (-0.002529202 0.02200678 -0.005565404) (-0.003037039 0.02300899 -0.005573163) (-0.003539686 0.02300817 -0.005065469) (-0.002531716 0.02300941 -0.005070049) (0.003532409 0.0220085 -0.00555389) (0.003538316 0.02100929 -0.005055783) (0.003025495 0.0230079 -0.005554801) (0.002521864 0.02300778 -0.005054538) (0.003533043 0.02300929 -0.005054258) (-0.0005079312 0.02601685 -0.005580221) (-0.0005080758 0.02501404 -0.00507288) (-0.001013682 0.02701982 -0.005582345) (-0.001523086 0.02702049 -0.005092328) (-0.0005077922 0.02701764 -0.005082049) (-2.201226e-06 0.02701766 -0.00558491) (0.001510355 0.0260136 -0.005573616) (0.001511286 0.02501155 -0.005067625) (0.001006601 0.02701612 -0.005578021) (0.0005025857 0.02701619 -0.005081144) (0.001512474 0.02701539 -0.005077374) (-0.002543451 -0.03002623 -0.003585973) (-0.002547322 -0.03102928 -0.003083309) (-0.003051072 -0.02902071 -0.003576053) (-0.003556335 -0.02901857 -0.003064603) (-0.003060397 -0.03102961 -0.002566838) (-0.003560827 -0.03002389 -0.002557896) (0.003550169 -0.03001521 -0.003544122) (0.003543564 -0.03101354 -0.003030103) (0.003054144 -0.02901769 -0.003559568) (0.003563926 -0.0290156 -0.003048329) (0.003049197 -0.03101652 -0.002534577) (0.003557635 -0.03001467 -0.002533615) (-0.005053097 -0.02100839 -0.003533265) (-0.00555668 -0.02100938 -0.003028988) (-0.005064196 -0.02301119 -0.002523941) (-0.005564012 -0.02201167 -0.002522137) (0.005566298 -0.02200714 -0.003540086) (0.005570658 -0.02300788 -0.003031273) (0.005060292 -0.02100598 -0.003540939) (0.005565086 -0.02100621 -0.003035233) (0.005070991 -0.02300757 -0.002528156) (0.00556852 -0.02200706 -0.002525951) (-0.006566033 -0.01000377 -0.003532513) (-0.006564046 -0.01100371 -0.00302895) (-0.00707709 -0.009003748 -0.00353091) (-0.00758046 -0.009004993 -0.003024944) (-0.007069545 -0.01100458 -0.002521164) (-0.007575945 -0.01000599 -0.00252065) (-0.007070331 -0.009004917 -0.002518672) (-0.007575357 -0.008005153 -0.00251722) (-0.007571788 -0.009006181 -0.002013904) (0.007585509 -0.01000346 -0.003527813) (0.007587573 -0.01100304 -0.003024933) (0.007074966 -0.009003883 -0.003526459) (0.007581926 -0.009003794 -0.00302212) (0.00758271 -0.008005346 -0.003526917) (0.007073919 -0.01100285 -0.002518837) (0.0075799 -0.01000349 -0.002518513) (0.00757573 -0.01100291 -0.002015545) (0.007066658 -0.009003277 -0.002516431) (0.007567668 -0.008003696 -0.002515783) (0.007561573 -0.009003304 -0.002012153) (-0.007061723 -0.005000995 -0.003523119) (-0.007571269 -0.005001578 -0.00302029) (-0.007068256 -0.007002937 -0.002515862) (-0.007571621 -0.006002385 -0.002515179) (-0.007061557 -0.005001649 -0.002515906) (-0.007561867 -0.00400153 -0.002517158) (0.007562676 -0.006002657 -0.003520484) (0.007570352 -0.007003533 -0.003018573) (0.007058079 -0.005001881 -0.0035224) (0.007557298 -0.005001827 -0.003017946) (0.007565047 -0.004001385 -0.00352509) (0.007058526 -0.007002861 -0.002514002) (0.00755646 -0.006002423 -0.002513075) (0.007054116 -0.005001834 -0.002513975) (0.007557604 -0.00400144 -0.002515123) (-0.007066236 -0.000999983 -0.003533957) (-0.007567112 -0.000999909 -0.003028506) (-0.007054069 -0.003000931 -0.002518235) (-0.00755719 -0.002000611 -0.002520534) (-0.007052884 -0.001000008 -0.002520796) (-0.007558383 5.480337e-07 -0.002521879) (0.007576715 -0.002000669 -0.003531925) (0.007564729 -0.003001021 -0.003022561) (0.007069261 -0.00100032 -0.003529996) (0.007571337 -0.00100038 -0.003026414) (0.007579493 2.861339e-07 -0.003533692) (0.007056966 -0.003001053 -0.002516668) (0.007564276 -0.002000753 -0.002518633) (0.007058244 -0.00100042 -0.002518931) (0.007562999 -1.643455e-07 -0.002519915) (-0.007056032 0.00300142 -0.003526239) (-0.007552464 0.003001155 -0.003021115) (-0.007050859 0.001000824 -0.002520181) (-0.007551911 0.002001063 -0.002519067) (-0.007046202 0.003000996 -0.002517526) (-0.007547025 0.004001027 -0.002516442) (0.007567362 0.002001048 -0.003528887) (0.007566577 0.00100041 -0.003024456) (0.00705575 0.00300136 -0.003525292) (0.007553437 0.003001298 -0.003020217) (0.007551543 0.00400177 -0.003522) (0.007053748 0.001000314 -0.002518269) (0.007554759 0.002000761 -0.002517532) (0.007047778 0.003001094 -0.002516061) (0.007548716 0.004001557 -0.002514736) (-0.007064461 0.007001679 -0.003530247) (-0.007565642 0.007001461 -0.003025751) (-0.007048269 0.005000946 -0.002516816) (-0.00755569 0.006001009 -0.00251813) (-0.007057125 0.007001359 -0.0025183) (-0.007563335 0.008001819 -0.002518711) (0.007558153 0.006003434 -0.003524202) (0.007549289 0.005002422 -0.003018198) (0.007068323 0.00700348 -0.003529052) (0.007570535 0.007004813 -0.00302711) (0.007581651 0.008003957 -0.003532885) (0.007048827 0.005001933 -0.002515574) (0.007556568 0.006003023 -0.002517509) (0.00706124 0.007003268 -0.002519329) (0.007571911 0.00800436 -0.002522278) (-0.007082043 0.01100682 -0.003535478) (-0.007589142 0.01100713 -0.003030647) (-0.007065251 0.009002574 -0.002519777) (-0.007577154 0.01000364 -0.002522403) (-0.00707395 0.01100444 -0.002523031) (-0.007571263 0.01100351 -0.002016912) (0.007584063 0.01000263 -0.003529789) (0.007583291 0.009004444 -0.003029101) (0.007092304 0.01100244 -0.003535552) (0.007600519 0.01100394 -0.003029797) (0.007073237 0.009004146 -0.002521551) (0.007584707 0.01000601 -0.002522249) (0.007573504 0.00900452 -0.00201622) (0.007086332 0.01100476 -0.002524364) (0.007584482 0.01100617 -0.002018874) (-0.005057452 0.02300682 -0.003526632) (-0.005567041 0.0230065 -0.003023401) (-0.005567712 0.02200693 -0.002520643) (-0.005065482 0.02300743 -0.002520066) (0.005578014 0.02200718 -0.003536099) (0.00557564 0.02100723 -0.003033618) (0.005068298 0.02300821 -0.00353574) (0.005579014 0.02300909 -0.003036471) (0.005577893 0.02200821 -0.002530948) (0.005073913 0.02300899 -0.002529195) (-0.002540471 0.03002029 -0.003564988) (-0.003037279 0.03101748 -0.003549025) (-0.003549264 0.03101716 -0.003035076) (-0.002540888 0.03102096 -0.003056182) (-0.003562409 0.03001918 -0.002535749) (-0.003055033 0.03102026 -0.002536549) (0.003566795 0.0300304 -0.003587319) (0.003567488 0.02902653 -0.003075158) (0.003052298 0.03102955 -0.003582139) (0.00254748 0.0310266 -0.003075987) (0.003572971 0.03103516 -0.003075405) (0.003571115 0.03002811 -0.002562062) (0.003066349 0.03102858 -0.002562226) (-0.005072236 -0.02501171 -0.001514013) (-0.005578288 -0.02501166 -0.001007747) (-0.005084768 -0.02701278 -0.0005030144) (-0.005587222 -0.02601212 -0.0005023896) (-0.005075943 -0.02501107 -0.0005034042) (-0.005584202 -0.02501248 9.240767e-07) (0.005593002 -0.02601181 -0.001523897) (0.005593095 -0.02701463 -0.001014861) (0.005083586 -0.02501027 -0.001521641) (0.00558924 -0.02501189 -0.001015006) (0.005087623 -0.02701529 -0.0005068432) (0.005595386 -0.02601622 -0.0005077319) (0.00559959 -0.02702116 2.93941e-07) (0.005081166 -0.02501241 -0.0005072472) (0.005585762 -0.02501499 -6.752777e-07) (-0.007070712 -0.01300523 -0.001512529) (-0.007573692 -0.01300635 -0.001007866) (-0.007067232 -0.01500395 -0.0005039212) (-0.007576436 -0.01400498 -0.0005034839) (-0.007063817 -0.01300429 -0.0005040484) (-0.007561772 -0.01200427 -0.0005033295) (-0.007563695 -0.01300407 -8.572959e-07) (0.007578303 -0.01400298 -0.001511493) (0.007569053 -0.0150027 -0.001008666) (0.007067849 -0.01300242 -0.001510766) (0.007560651 -0.0130022 -0.001007671) (0.007565998 -0.01200231 -0.001510467) (0.007060067 -0.01500218 -0.0005046873) (0.007557316 -0.01400169 -0.0005050882) (0.007566419 -0.01500182 -1.382484e-06) (0.007049072 -0.0130013 -0.0005039637) (0.00753812 -0.01200093 -0.0005033532) (0.007543503 -0.01300036 -8.167438e-07) (-0.007065268 -0.009004085 -0.001509178) (-0.007571509 -0.009003742 -0.001005273) (-0.00705984 -0.01100352 -0.0005032601) (-0.007567534 -0.01000332 -0.0005025781) (-0.007065858 -0.009002916 -0.0005026978) (-0.007573971 -0.009002891 1.643966e-08) (0.007553515 -0.0100025 -0.001508946) (0.007544457 -0.01100168 -0.001005952) (0.007052171 -0.009002537 -0.001507907) (0.007549246 -0.009002314 -0.001004178) (0.0070397 -0.01100126 -0.0005027633) (0.007540417 -0.01000154 -0.0005020446) (0.007533585 -0.0110007 -3.163779e-09) (0.007047178 -0.009001988 -0.0005018256) (0.007549327 -0.009001915 6.226447e-07) (-0.007061689 0.0110028 -0.001511906) (-0.007560595 0.01100255 -0.001008008) (-0.007064174 0.009001247 -0.0005033122) (-0.007565462 0.01000161 -0.0005037248) (-0.007057607 0.0110021 -0.000504994) (-0.007557998 0.01200338 -0.0005067179) (-0.007559196 0.01100161 -2.250398e-06) (0.007574381 0.01000455 -0.00151144) (0.007575719 0.009002485 -0.001005984) (0.007073582 0.01100488 -0.001513224) (0.007571271 0.01100439 -0.001007913) (0.007583669 0.01200689 -0.001516422) (0.007068759 0.009001904 -0.0005020856) (0.007574457 0.01000259 -0.0005021803) (0.007579757 0.009001573 2.33282e-06) (0.007065664 0.01100344 -0.0005031525) (0.007565243 0.01200463 -0.0005039922) (0.007567397 0.01100281 1.70636e-06) (-0.00706863 0.01500445 -0.001514673) (-0.007571966 0.01500622 -0.001011024) (-0.007060595 0.01300427 -0.0005073826) (-0.007572032 0.01400724 -0.0005087974) (-0.007065306 0.01500554 -0.0005067765) (-0.007571756 0.01500608 -3.09994e-06) (0.007597725 0.01400908 -0.001518821) (0.007579904 0.01300733 -0.001011692) (0.007084537 0.01500824 -0.001516825) (0.007584106 0.01500896 -0.001010091) (0.007067608 0.01300569 -0.0005047928) (0.007575722 0.01400776 -0.0005052856) (0.007562574 0.01300543 1.176369e-06) (0.007075264 0.01500769 -0.0005052078) (0.007576651 0.0150079 -3.412528e-07) (-0.005082677 0.02701826 -0.001516024) (-0.005588092 0.02701892 -0.001009021) (-0.005078315 0.02501354 -0.0005042833) (-0.005588308 0.02601691 -0.0005044464) (-0.005085885 0.02701829 -0.0005048122) (-0.005597282 0.02702089 -4.644275e-07) (0.005589673 0.02601547 -0.001516761) (0.005588988 0.02501449 -0.001010535) (0.005078567 0.02701493 -0.00151626) (0.005587407 0.02701754 -0.001008362) (0.00508514 0.02501383 -0.0005045792) (0.005599173 0.02601784 -0.0005040755) (0.005598197 0.02501581 7.835404e-07) (0.005086419 0.02701603 -0.000503096) (0.005603598 0.02701846 2.808461e-06) (-0.005078901 -0.02501175 0.000504816) (-0.005584555 -0.02501319 0.001009001) (-0.005081877 -0.02701207 0.001513944) (-0.005587733 -0.02601324 0.001513733) (-0.00508059 -0.02501256 0.001515675) (0.005589322 -0.02601723 0.0005064912) (0.005588998 -0.02701795 0.001014944) (0.005077022 -0.02501309 0.0005056816) (0.005579 -0.02501325 0.001011708) (0.005080488 -0.02701472 0.001520558) (0.005580714 -0.02601436 0.001519077) (0.005075547 -0.02501184 0.001517623) (-0.007061039 -0.01300361 0.0005014149) (-0.007564735 -0.01300447 0.001003865) (-0.007059656 -0.01500219 0.001506614) (-0.007567048 -0.01400329 0.001506455) (-0.007060131 -0.01300382 0.001506637) (-0.007560641 -0.01200497 0.001507257) (0.0075623 -0.01400064 0.0005028591) (0.0075742 -0.01500149 0.001006399) (0.007049607 -0.01300051 0.0005029414) (0.007562614 -0.01300014 0.001006821) (0.007538607 -0.01200011 0.0005026089) (0.007070166 -0.01500183 0.00151217) (0.00757997 -0.01400161 0.001512226) (0.007066895 -0.0130012 0.001511847) (0.007565913 -0.01200095 0.001511092) (-0.00706315 -0.009002677 0.000502121) (-0.007565441 -0.009003181 0.001004627) (-0.007055564 -0.01100414 0.001507388) (-0.007557637 -0.01000451 0.001507662) (-0.007056421 -0.009003223 0.001507617) (-0.007557241 -0.009004397 0.002011631) (0.007539774 -0.01000118 0.0005027164) (0.007544128 -0.01100075 0.001006281) (0.007046924 -0.009001778 0.0005029235) (0.007548491 -0.009001868 0.001005391) (0.007054523 -0.01100131 0.001510843) (0.007550781 -0.01000163 0.001510035) (0.007570617 -0.0110019 0.002017156) (0.007050937 -0.00900198 0.001509216) (0.007558187 -0.009002415 0.002013565) (-0.007056623 0.01100096 0.000500691) (-0.007558889 0.01100019 0.00100394) (-0.007058822 0.009000507 0.001509071) (-0.007561329 0.01000007 0.001508946) (-0.00705845 0.0109997 0.001508331) (-0.007563485 0.01199925 0.001507505) (-0.007566922 0.01099918 0.00201446) (0.007574797 0.01000176 0.0005061167) (0.007577713 0.009001038 0.00100982) (0.007064901 0.01100252 0.0005058557) (0.007570355 0.01100219 0.00101116) (0.007563921 0.01200364 0.0005068582) (0.007068688 0.009000744 0.001512682) (0.00757431 0.01000112 0.001514629) (0.00757487 0.009000443 0.002017519) (0.007069881 0.01100192 0.001515112) (0.007579398 0.01200317 0.001517877) (0.007579429 0.01100141 0.002021486) (-0.007064627 0.0150039 0.0004996841) (-0.007570405 0.01500298 0.001001904) (-0.00706192 0.01299992 0.001505879) (-0.007567804 0.01400051 0.001503405) (-0.00706078 0.01500177 0.001505764) (0.007570195 0.01400648 0.0005063877) (0.007574682 0.01300551 0.001013212) (0.007069315 0.01500587 0.0005039835) (0.007573508 0.01500574 0.001008371) (0.00707511 0.01300424 0.001515919) (0.007584572 0.01400641 0.00151608) (0.007071823 0.01500483 0.001512376) (-0.005084429 0.02701646 0.0005050142) (-0.005585355 0.02701518 0.001009993) (-0.005080872 0.02501198 0.001519149) (-0.005589956 0.02601373 0.001518427) (-0.005082059 0.02701478 0.001519035) (0.00560356 0.02601797 0.0005073007) (0.005594508 0.02501511 0.001011484) (0.005092642 0.02701657 0.0005075385) (0.005598374 0.02701816 0.001012982) (0.005084836 0.02501381 0.001517696) (0.005597896 0.02601752 0.001519442) (0.005088153 0.02701698 0.001518601) (-0.002540133 -0.03102071 0.003060001) (-0.003560375 -0.02901407 0.003051115) (-0.003037943 -0.03101591 0.003551923) (-0.003549566 -0.03001224 0.003550415) (-0.0025411 -0.03002036 0.00357051) (-0.003052268 -0.02901656 0.003566294) (0.00356527 -0.03001751 0.002537375) (0.003551865 -0.03101364 0.00303366) (0.003561851 -0.02901527 0.003054732) (0.003033241 -0.03101075 0.003545953) (0.002536923 -0.03001509 0.00356442) (0.003547273 -0.03001165 0.003549595) (0.003051228 -0.02901509 0.003566869) (-0.005565019 -0.02100837 0.003029382) (-0.005074627 -0.02301271 0.003544086) (-0.005574351 -0.02201063 0.003537234) (-0.005062276 -0.02100781 0.003536301) (0.005578146 -0.02201181 0.002528395) (0.005582475 -0.02301309 0.003034684) (0.005576304 -0.02101228 0.003038266) (0.005076531 -0.02301217 0.003543649) (0.005580743 -0.02201387 0.003544281) (0.005072409 -0.02101163 0.003545401) (-0.007056692 -0.009003764 0.002516513) (-0.007565047 -0.009004218 0.003024018) (-0.007058087 -0.01100422 0.00352504) (-0.007564873 -0.01000399 0.003526854) (-0.007066059 -0.009003045 0.003529805) (-0.007571239 -0.00800236 0.003532133) (0.007567446 -0.01000242 0.002519203) (0.007576323 -0.01100282 0.003026131) (0.007060469 -0.009002343 0.002517158) (0.007566004 -0.009002516 0.003019873) (0.007565785 -0.008003115 0.002516905) (0.007068835 -0.01100301 0.003531238) (0.007561024 -0.01000237 0.003523479) (0.007063705 -0.009001946 0.003524567) (0.007570767 -0.008002573 0.003523905) (-0.00704843 -0.004999966 0.002515157) (-0.007550121 -0.004999999 0.003018457) (-0.007059346 -0.00700122 0.003526253) (-0.007554602 -0.00600042 0.003521919) (-0.007051446 -0.00500039 0.003524184) (-0.007554398 -0.004000228 0.003525302) (0.007561076 -0.006003273 0.002517946) (0.007569551 -0.007003161 0.003022242) (0.007055116 -0.005002666 0.002516938) (0.007560593 -0.005003166 0.003022983) (0.007554195 -0.004002727 0.002516551) (0.007068175 -0.007002312 0.003526725) (0.007576577 -0.006002792 0.00353226) (0.007059389 -0.005002169 0.003526457) (0.007554788 -0.004002339 0.00352454) (-0.007052795 -0.0009997888 0.002520542) (-0.007569864 -0.001000372 0.003027734) (-0.007059509 -0.003000613 0.003529715) (-0.007573987 -0.002000945 0.00353381) (-0.007070966 -0.001000867 0.003533231) (-0.007582744 -3.014032e-07 0.003534701) (0.007555012 -0.00200182 0.002517561) (0.007553743 -0.003002261 0.003020666) (0.007052763 -0.001001321 0.002517765) (0.007563909 -0.001001695 0.003024571) (0.007559356 -9.966042e-07 0.002518624) (0.007055519 -0.003001882 0.003525553) (0.00756446 -0.002002055 0.003528948) (0.00706345 -0.001001697 0.003527783) (0.007573121 -1.68866e-06 0.00352953) (-0.007048028 0.003000955 0.002516985) (-0.007555122 0.003001101 0.0030214) (-0.007068726 0.001000327 0.003531586) (-0.007571165 0.00200095 0.003529983) (-0.007057559 0.003000963 0.003527438) (-0.007552655 0.004001369 0.003524675) (0.007557705 0.001999733 0.002515193) (0.007566001 0.0009991656 0.003022182) (0.007051736 0.002999755 0.002513616) (0.007560435 0.002999737 0.00301659) (0.007554422 0.003999802 0.002511897) (0.007063928 0.000999071 0.003524857) (0.00757121 0.001999508 0.003523541) (0.007061101 0.002999715 0.00352208) (0.007560551 0.003999702 0.003519582) (-0.007054317 0.007001916 0.00251853) (-0.007559907 0.007002806 0.003025482) (-0.007050108 0.00500158 0.003524924) (-0.007552983 0.006002508 0.003524906) (-0.0070592 0.007001714 0.003529756) (-0.007568587 0.008001724 0.003536655) (0.007559424 0.005999339 0.002512216) (0.007554054 0.004999469 0.003014274) (0.0070614 0.006999617 0.002515622) (0.007566805 0.006999093 0.003018479) (0.007572743 0.007999783 0.002518718) (0.007054905 0.004999615 0.003521136) (0.007554978 0.005999274 0.003519499) (0.007060175 0.006999615 0.003525608) (0.007569719 0.00800007 0.003530313) (-0.007066291 0.01099934 0.002519238) (-0.007570647 0.01099973 0.003024553) (-0.007067143 0.009001126 0.003534149) (-0.00757128 0.01000116 0.003533327) (-0.007068468 0.01100032 0.003530851) (0.007580407 0.010001 0.002525749) (0.007577552 0.00900085 0.003029868) (0.007075405 0.01100171 0.002525931) (0.007578909 0.01100178 0.003032781) (0.007070869 0.009001209 0.003535933) (0.007574948 0.01000191 0.003539762) (0.00707399 0.01100249 0.003539079) (-0.005071167 0.02301009 0.002531785) (-0.005574684 0.0230109 0.003037795) (-0.005060843 0.02100633 0.003537293) (-0.005569706 0.02200846 0.003539206) (-0.005071629 0.0230105 0.003544358) (0.005578148 0.0220095 0.002525912) (0.005576023 0.02100991 0.003035444) (0.00507314 0.02301027 0.002526951) (0.005577137 0.02301065 0.003033087) (0.005067802 0.02100961 0.003540502) (0.005576439 0.02201063 0.003540249) (0.005069761 0.02301182 0.003540604) (-0.003051405 0.03102019 0.002533509) (-0.003543563 0.03101385 0.003030278) (-0.002537209 0.03101912 0.003051794) (-0.003052529 0.02901379 0.003559223) (-0.003546952 0.03001177 0.003543305) (-0.002538268 0.03001712 0.003561477) (-0.003034363 0.03101292 0.003545545) (0.003572487 0.03002624 0.002544797) (0.003567029 0.02902421 0.003056808) (0.003061428 0.03102641 0.002547601) (0.002543674 0.03102656 0.00306839) (0.003562074 0.03102436 0.003045727) (0.003055574 0.02902282 0.003568435) (0.002542578 0.0300239 0.00357542) (0.003556627 0.03002178 0.003555728) (0.003041378 0.03102013 0.003559136) (-0.0005041216 -0.02702069 0.005097709) (-0.001518726 -0.02501771 0.005087009) (-0.0005048951 -0.0250161 0.005086136) (-0.001009973 -0.02702053 0.005594533) (-0.00151906 -0.02602076 0.005594735) (-0.0005045651 -0.02601931 0.005597311) (2.646773e-06 -0.0270224 0.005613363) (-0.001011211 -0.02501771 0.005588966) (9.145751e-07 -0.02501584 0.005593519) (0.001527009 -0.02702088 0.005101593) (0.0005076037 -0.02501565 0.005090022) (0.001521535 -0.02501679 0.005089146) (0.001018284 -0.02702172 0.005608865) (0.0005086926 -0.02601901 0.005605108) (0.001523359 -0.02602117 0.005599981) (0.001013179 -0.02501614 0.005591076) (-0.002530742 -0.02301495 0.005084686) (-0.003536969 -0.02100718 0.005070339) (-0.003035977 -0.02301551 0.005586548) (-0.003539538 -0.02200989 0.00558101) (-0.002525526 -0.02201255 0.005579669) (-0.003029547 -0.02100833 0.005572957) (0.003541476 -0.02301067 0.005072982) (0.003540973 -0.02100886 0.005066538) (0.00303615 -0.02301176 0.005578461) (0.002529064 -0.0220099 0.005573058) (0.003541765 -0.02200972 0.005574795) (0.00303684 -0.02100936 0.005571682) (-0.004544483 -0.01900453 0.005058861) (-0.005051619 -0.01700577 0.004545451) (-0.005558389 -0.01700799 0.005052118) (-0.004544551 -0.01700495 0.005056774) (-0.00504593 -0.01900417 0.005556863) (-0.005563246 -0.01800909 0.005558113) (-0.004546655 -0.01800477 0.005564504) (-0.005052148 -0.01700646 0.005561914) (-0.005549536 -0.01600865 0.005551775) (-0.004542394 -0.01600489 0.005560066) (0.005569639 -0.0180041 0.004557649) (0.00556483 -0.01900522 0.005057638) (0.005059299 -0.0170032 0.004551885) (0.004548412 -0.01700317 0.005056624) (0.005561236 -0.01700215 0.005054413) (0.005561463 -0.0160029 0.004549822) (0.005053086 -0.01900624 0.00555612) (0.004551026 -0.01800456 0.005564051) (0.005569424 -0.0180005 0.005563229) (0.005052538 -0.01700235 0.005558848) (0.004545592 -0.01600246 0.005557633) (0.005553392 -0.01600155 0.005550291) (-0.004538257 -0.01500467 0.005050328) (-0.005547454 -0.01300481 0.005046931) (-0.005042416 -0.01500631 0.005554479) (-0.005542218 -0.0140058 0.005546208) (-0.004538091 -0.01400513 0.005555253) (-0.005043233 -0.01300491 0.005551743) (0.005554868 -0.01400258 0.004545204) (0.005556431 -0.01500232 0.005049937) (0.00555338 -0.01300278 0.005051635) (0.00505067 -0.015002 0.005552669) (0.005550255 -0.01400239 0.005546917) (0.005051216 -0.01300264 0.005554141) (-0.005045947 0.01500282 0.004541271) (-0.005550813 0.01500352 0.005047682) (-0.004540413 0.01500351 0.005050756) (-0.005048115 0.01300413 0.005552128) (-0.005546906 0.01400364 0.005547076) (-0.004540238 0.01400436 0.005554177) (-0.005046909 0.01500462 0.005556128) (-0.005552334 0.016005 0.005555126) (-0.004544006 0.01600428 0.005561319) (0.005559012 0.01400705 0.004548633) (0.005557696 0.01300591 0.005054414) (0.005056075 0.01500717 0.004549753) (0.004547569 0.01500576 0.005056132) (0.005562917 0.01500868 0.005060175) (0.00556437 0.01600962 0.004552806) (0.005053064 0.01300542 0.005558535) (0.004546171 0.01400534 0.005558554) (0.005556124 0.01400694 0.005560099) (0.00505467 0.01500704 0.00556437) (0.004549932 0.01600622 0.005563883) (0.005560212 0.01600848 0.005565593) (-0.004543879 0.01700352 0.005055898) (-0.005054398 0.01900361 0.004544191) (-0.005557318 0.01900253 0.005044856) (-0.004547334 0.01900421 0.00505547) (-0.005049587 0.017004 0.005562509) (-0.005557209 0.0180014 0.005553474) (-0.004545566 0.01800363 0.005562626) (-0.005050483 0.01900277 0.005552875) (0.005570215 0.0180097 0.004554878) (0.005564559 0.01700984 0.005058914) (0.005063252 0.01900763 0.004552321) (0.004551151 0.01900566 0.005056412) (0.005559931 0.01900578 0.005051358) (0.005055764 0.01700681 0.005564792) (0.004551176 0.0180053 0.005562296) (0.005561126 0.0180065 0.005562812) (0.005051246 0.01900431 0.005553622) (-0.003544531 0.02301354 0.005076003) (-0.002531584 0.02301294 0.005081914) (-0.003034524 0.02100895 0.005570751) (-0.003543282 0.02201126 0.005575313) (-0.002529904 0.02201098 0.005579287) (-0.003037265 0.02301406 0.005583326) (0.003541908 0.02100846 0.005058834) (0.002534325 0.02301228 0.005071037) (0.00354535 0.02301281 0.005067186) (0.003037468 0.0210078 0.005562325) (0.002532561 0.02201014 0.005567958) (0.003543874 0.02201089 0.005566227) (0.003041441 0.02301292 0.005573815) (-0.0005078684 0.02501417 0.005088817) (-0.001523212 0.02701759 0.005091353) (-0.0005077594 0.02701789 0.005097715) (-0.001014939 0.02501528 0.005592774) (-0.001522804 0.02601797 0.005596704) (-0.0005080394 0.02601663 0.005598469) (-1.326244e-06 0.02501349 0.005590713) (-0.001013966 0.02701817 0.005595675) (-1.138707e-06 0.02701791 0.005609155) (0.001521604 0.02501527 0.005086739) (0.0005062834 0.02701726 0.005100289) (0.001522381 0.02701787 0.005092406) (0.001011722 0.0250132 0.005584845) (0.0005050606 0.02601449 0.005596099) (0.001519489 0.02601592 0.005587177) (0.001011889 0.02701592 0.005595113) (-0.0005039979 -0.01500653 0.007072188) (-0.001511104 -0.01300394 0.007071658) (-0.0005037887 -0.01300484 0.007062753) (-0.001008468 -0.01500703 0.007577772) (-0.001512469 -0.01400562 0.007578151) (-0.0005047479 -0.01400672 0.007568888) (-1.695036e-07 -0.01500704 0.007582173) (-0.001008592 -0.01300531 0.007570026) (-0.001511451 -0.01200323 0.007576347) (2.998003e-07 -0.0130055 0.007562115) (-0.0005036926 -0.0120042 0.00756169) (0.00151056 -0.01500435 0.007073482) (0.0005042464 -0.01300503 0.00706521) (0.001511626 -0.01300486 0.007075586) (0.001007593 -0.01500522 0.007580611) (0.0005050868 -0.01400606 0.007573338) (0.001512221 -0.01400583 0.007583922) (0.001009266 -0.0130067 0.007575805) (0.0005043002 -0.01200469 0.007564684) (0.001512792 -0.01200496 0.007584078) (-0.002518451 -0.011002 0.007073923) (-0.003528698 -0.009001833 0.007067978) (-0.002517658 -0.009001465 0.00706653) (-0.003022566 -0.01100235 0.007576983) (-0.003528638 -0.01000262 0.007572085) (-0.002520014 -0.01000148 0.007577816) (-0.002015144 -0.01100196 0.007578118) (-0.003023456 -0.009001758 0.007571672) (-0.003525006 -0.008001086 0.007561975) (-0.002013687 -0.009001508 0.007571031) (-0.002516012 -0.008001414 0.007565911) (-0.0005030101 -0.01100313 0.007061498) (-0.001509203 -0.009001908 0.007064714) (-0.0005023184 -0.009002442 0.007062669) (-0.001006927 -0.01100303 0.007568326) (-0.001510349 -0.01000203 0.007571537) (-0.0005027088 -0.01000302 0.007569184) (3.143555e-07 -0.01100348 0.007564309) (-0.001005624 -0.009002626 0.007571291) (7.078668e-07 -0.009002754 0.007571326) (0.001510582 -0.01100254 0.007072003) (0.0005036657 -0.009001893 0.007064185) (0.001510285 -0.009001045 0.007068425) (0.001007309 -0.01100331 0.00757161) (0.0005035715 -0.01000258 0.007570974) (0.001510372 -0.01000143 0.0075768) (0.002014944 -0.0110018 0.007585597) (0.001006992 -0.009001446 0.007574662) (0.002014573 -0.009000525 0.007577932) (0.00352818 -0.01000155 0.006560971) (0.003529354 -0.01100148 0.007071609) (0.00251824 -0.009000776 0.007071681) (0.00352802 -0.009001694 0.007067361) (0.003022424 -0.01100148 0.007583408) (0.002518216 -0.01000034 0.007586599) (0.003528134 -0.01000144 0.007574168) (0.003023423 -0.009001161 0.007578374) (0.002520761 -0.008000943 0.007576655) (0.003527596 -0.008002044 0.007568633) (-0.002515556 -0.007001382 0.00705791) (-0.003527456 -0.005001042 0.00706241) (-0.002517081 -0.005001543 0.007055559) (-0.003018844 -0.007001166 0.007559208) (-0.003524426 -0.006000885 0.007559737) (-0.002515349 -0.006001641 0.00755904) (-0.003021601 -0.005001276 0.0075622) (-0.003530237 -0.004001268 0.007574193) (-0.002518896 -0.004001688 0.007561083) (0.003527117 -0.007001875 0.00706033) (0.002519953 -0.00500079 0.007058754) (0.003528646 -0.005001509 0.00706034) (0.003026317 -0.007001548 0.007574086) (0.002521608 -0.006000945 0.00756887) (0.003528364 -0.00600181 0.007564486) (0.003025526 -0.005001195 0.00756603) (0.002520586 -0.00400067 0.007562293) (0.003530553 -0.0040015 0.00757074) (-0.002519913 -0.003001354 0.007056733) (-0.003529393 -0.001001106 0.007066393) (-0.002520826 -0.001000939 0.007056743) (-0.003026193 -0.003001447 0.007570336) (-0.003532487 -0.00200178 0.007578699) (-0.002521757 -0.002001348 0.007562693) (-0.003026754 -0.001001597 0.007569939) (-0.003529118 -8.781056e-07 0.007570021) (-0.002521439 -6.618775e-07 0.007562378) (0.003530182 -0.003001355 0.007066664) (0.002518906 -0.00100021 0.007055824) (0.003529319 -0.001000665 0.007066362) (0.003024983 -0.00300106 0.007568515) (0.002519197 -0.002000507 0.007561254) (0.003529989 -0.002001632 0.007576714) (0.003024094 -0.001000543 0.007567865) (0.002519301 1.752441e-07 0.007561267) (0.003529261 1.118793e-07 0.007570645) (-0.002520809 0.0009999889 0.007057381) (-0.003533571 0.003001187 0.007073053) (-0.002521153 0.003000757 0.007058066) (-0.003026246 0.0009999488 0.007571365) (-0.003534624 0.002000934 0.00758209) (-0.002521776 0.002000456 0.007563667) (-0.003028351 0.003001015 0.007572656) (-0.003534448 0.004001471 0.007578191) (-0.002521128 0.004001134 0.007562477) (0.003532146 0.001000912 0.007070064) (0.002521898 0.003000705 0.007061976) (0.003534565 0.003001362 0.007073421) (0.003026124 0.001000769 0.007571259) (0.002521943 0.002000715 0.007566205) (0.003535742 0.00200152 0.007581587) (0.003028651 0.003001122 0.007574086) (0.002522133 0.004000761 0.007568605) (0.003533935 0.004001222 0.007577642) (-0.0025194 0.005001336 0.00705794) (-0.003525935 0.007001651 0.007061817) (-0.00251707 0.007001733 0.00706058) (-0.003024514 0.00500168 0.007566437) (-0.003525618 0.00600158 0.007565896) (-0.002518002 0.006001851 0.007562905) (-0.003020745 0.007002078 0.00756686) (-0.003525229 0.008001521 0.007564007) (-0.002515957 0.008001777 0.007565496) (0.003531651 0.005001112 0.007070326) (0.002520699 0.007001538 0.007069581) (0.003531189 0.007001639 0.00707179) (0.003025442 0.005001042 0.007571792) (0.002520679 0.006001208 0.007571533) (0.003528732 0.006001311 0.007571996) (0.003025132 0.00700176 0.007576886) (0.002521332 0.008002247 0.007578142) (0.003529782 0.008002282 0.007575916) (-0.002516194 0.009001484 0.007063014) (-0.003524704 0.01100223 0.007064111) (-0.002516535 0.01100136 0.007067094) (-0.003021103 0.009001339 0.007567405) (-0.003524521 0.01000189 0.007564656) (-0.002515698 0.01000137 0.007570542) (-0.002011863 0.009001752 0.007566774) (-0.003020051 0.01100148 0.007568084) (-0.002012535 0.01100158 0.007571167) (-0.0005031826 0.009002625 0.007063512) (-0.001508803 0.01100178 0.007064867) (-0.000502632 0.01100224 0.007061708) (-0.00100665 0.009002853 0.00757184) (-0.001508519 0.01000203 0.007568311) (-0.000502973 0.01000284 0.007569849) (-8.508569e-08 0.009003239 0.007572727) (-0.001005623 0.01100224 0.007567071) (-0.001509303 0.01200221 0.007572843) (3.274062e-07 0.01100273 0.007564742) (-0.0005028914 0.01200212 0.007562785) (0.001511853 0.009002472 0.007069793) (0.0005034829 0.01100277 0.007063219) (0.001511064 0.01100353 0.007070728) (0.001008138 0.009002657 0.007575084) (0.0005037624 0.01000314 0.007571291) (0.001511902 0.01000344 0.007575929) (0.00201683 0.009002814 0.007578871) (0.001007124 0.01100356 0.007570442) (0.0005031785 0.01200293 0.007564329) (0.002016027 0.01100445 0.007581621) (0.001510623 0.0120048 0.007578056) (0.003531864 0.009002634 0.007077685) (0.002520533 0.01100352 0.00707745) (0.003529738 0.0110027 0.007073516) (0.003025654 0.009002483 0.00758287) (0.002522101 0.01000326 0.007587267) (0.00352981 0.01000256 0.007578525) (0.003024731 0.01100314 0.00758145) (-0.0005031869 0.01300201 0.007065017) (-0.001509897 0.01500421 0.007072842) (-0.0005036068 0.01500277 0.007075864) (-0.001006485 0.01300242 0.007572518) (-0.001509004 0.01400285 0.007581147) (-0.0005039802 0.01400191 0.007573779) (-4.15963e-07 0.013002 0.007563602) (-0.00100678 0.01500389 0.007580257) (-7.245763e-07 0.01500253 0.00758454) (0.001510777 0.013004 0.007075591) (0.0005029953 0.01500268 0.007077419) (0.001511258 0.01500273 0.007075983) (0.001006337 0.01300379 0.007576137) (0.0005022873 0.01400298 0.007575998) (0.0015104 0.01400449 0.007585186) (0.001006038 0.01500311 0.007584006) (0.0002492963 -0.003497972 -0.009699258) (0.002233631 0.0004712334 -0.009741766) (-0.001507625 -0.007000932 -0.007542905) (0.0005052616 -0.007000954 -0.007552569) (-0.001509956 -0.003000189 -0.007548841) (0.0005036586 -0.003000174 -0.007529508) (-0.001512505 0.001000273 -0.007553681) (0.0005029032 0.001000399 -0.007524398) (-0.001511359 0.005001171 -0.007559506) (0.0005033895 0.005000959 -0.007543979) (-0.003531527 -0.01900504 -0.005557628) (-0.00555846 -0.01100354 -0.005556822) (-0.005548644 -0.007001657 -0.005544493) (-0.001006684 -0.006000688 -0.005031886) (0.001007229 -0.006000951 -0.00503276) (-0.005553406 -0.003001447 -0.005555942) (-0.00100732 -0.00200008 -0.005031766) (0.001006875 -0.002000301 -0.005030695) (-0.005553007 0.001002376 -0.005554096) (-0.001007632 0.002000508 -0.00503314) (0.001007065 0.00200035 -0.005031639) (-0.005554467 0.005002699 -0.005555934) (-0.00100697 0.006001111 -0.005034416) (0.001007409 0.006001009 -0.005033948) (-0.005540206 0.009003185 -0.005546829) (-0.001530701 -0.03102839 -0.003587227) (-0.001008996 -0.02200619 -0.003033319) (0.001011149 -0.02200648 -0.003034399) (-0.005555599 -0.01900786 -0.003533149) (-0.003025118 -0.0180038 -0.003025413) (-0.001007369 -0.01800335 -0.003026856) (0.001009411 -0.01800358 -0.003027993) (0.003027881 -0.01800382 -0.003028439) (-0.003022914 -0.01400245 -0.003022854) (0.001008548 -0.01400237 -0.003024609) (0.003024812 -0.01400275 -0.003024877) (-0.003023304 -0.01000155 -0.003022285) (0.003023151 -0.01000203 -0.003023095) (-0.00302299 -0.006000813 -0.003022173) (0.003021932 -0.006001331 -0.003021674) (-0.003022249 -0.002000104 -0.003023069) (0.003021319 -0.002000551 -0.003021257) (-0.003022096 0.0020006 -0.003023584) (0.003021922 0.002000295 -0.003021988) (-0.00302218 0.00600121 -0.003023332) (0.003024098 0.006001122 -0.003023185) (-0.003022886 0.01000196 -0.003023786) (0.00302672 0.01000205 -0.003024646) (-0.003024112 0.01400291 -0.00302468) (0.003028772 0.01400311 -0.00302572) (-0.003027323 0.01800417 -0.003026453) (-0.001008856 0.01800396 -0.00302799) (0.001009579 0.01800407 -0.003027913) (0.003031209 0.01800469 -0.003027695) (-0.001011136 0.02200699 -0.003034216) (0.001010132 0.022007 -0.00303392) (-0.001548987 -0.03504328 -0.001550558) (-0.003564218 -0.03102324 -0.001538731) (-0.001019621 -0.03002058 -0.00102373) (0.001016959 -0.03002001 -0.001020287) (-0.001014302 -0.02601137 -0.00101611) (0.001014177 -0.02601101 -0.001015081) (-0.005572434 -0.02301304 -0.001513291) (-0.003034643 -0.02200688 -0.001009901) (0.003036493 -0.02200624 -0.001010766) (-0.003028375 -0.01800421 -0.001008062) (0.003029693 -0.01800388 -0.001008611) (-0.003024734 -0.01400257 -0.001007572) (0.003025276 -0.01400252 -0.001007561) (-0.007571867 -0.00700301 -0.00150811) (-0.0075474 -0.003001544 -0.001510839) (-0.005029504 -0.00200018 -0.001007358) (0.005032193 -0.002000727 -0.001006382) (-0.007533185 0.001000729 -0.00151214) (-0.005028561 0.002000444 -0.001007548) (0.005030056 0.002000183 -0.001006793) (-0.00755394 0.005001012 -0.001510779) (0.005036378 0.006001047 -0.001007129) (-0.003025153 0.01400262 -0.001008005) (0.003029785 0.01400304 -0.001008398) (-0.003029212 0.01800421 -0.001008157) (0.003033071 0.01800452 -0.001008853) (-0.003035797 0.02200699 -0.001009089) (0.003038228 0.02200727 -0.001010447) (-0.00101447 0.02601199 -0.001014381) (0.001014664 0.02601215 -0.001015476) (-0.001018444 0.0300208 -0.001019147) (0.001018261 0.0300208 -0.001021519) (-0.001019627 -0.03001931 0.001020461) (0.001016732 -0.03001844 0.001020467) (-0.00101502 -0.02601121 0.001016682) (0.001014351 -0.02601078 0.001017004) (-0.003036299 -0.02200723 0.001011719) (0.00303706 -0.02200675 0.001012403) (-0.003028589 -0.01800433 0.001009093) (0.003030454 -0.01800421 0.001010255) (-0.003024122 -0.01400259 0.001007543) (0.003025584 -0.01400253 0.00100886) (-0.007575266 -0.007001743 0.0005025033) (-0.005028781 -0.002000031 0.001007237) (0.005032039 -0.002000826 0.001006836) (-0.00502858 0.002000367 0.001007205) (0.005030327 0.001999954 0.001006816) (0.003029003 0.01400298 0.001008744) (-0.003028981 0.01800399 0.001009416) (0.003032998 0.01800461 0.001009734) (-0.00303666 0.02200703 0.001012477) (0.003039212 0.02200773 0.001011681) (-0.001014303 0.02601214 0.001017183) (0.001015946 0.02601275 0.001017489) (-0.001018048 0.03002134 0.00102139) (0.001019551 0.03002211 0.001023441) (-0.001010624 -0.02200792 0.003040274) (0.001011788 -0.02200751 0.003040222) (-0.003026401 -0.01800433 0.003028839) (-0.001008003 -0.01800445 0.003031498) (0.001009861 -0.01800443 0.003031792) (0.003029983 -0.01800465 0.003030824) (-0.003022249 -0.01400263 0.003024293) (-0.001006833 -0.01400268 0.003026625) (0.001008594 -0.01400267 0.003026954) (0.003025092 -0.01400253 0.00302585) (-0.003021878 -0.01000164 0.003023386) (0.00302316 -0.01000155 0.003023456) (-0.003022007 -0.006000897 0.003022766) (0.003022619 -0.006000979 0.003021787) (-0.003021832 -0.002000335 0.003022635) (0.003022524 -0.002000444 0.003021742) (-0.003021902 0.002000297 0.003022946) (0.003023072 0.002000211 0.003022774) (-0.003022462 0.006000845 0.003023367) (0.003024475 0.006000909 0.003024518) (-0.003022856 0.01000133 0.003023766) (0.003025876 0.01000186 0.003025778) (-0.003023002 0.01400215 0.003024468) (-0.001006873 0.01400239 0.003026666) (0.001009599 0.0140026 0.003027207) (0.003027453 0.01400309 0.003026457) (-0.003026861 0.01800392 0.003028799) (-0.001008089 0.0180041 0.003031156) (0.001010697 0.01800427 0.003031008) (0.003031521 0.01800493 0.00302935) (-0.001010925 0.02200755 0.003039886) (0.001012449 0.02200791 0.003038914) (-0.001006696 -0.006001094 0.005034633) (0.001007441 -0.006000893 0.005034688) (-0.00100736 -0.002000444 0.005030208) (0.001007555 -0.002000305 0.005030187) (-0.001007426 0.002000289 0.005030773) (0.001008007 0.002000299 0.005031526) (-0.001007013 0.006001048 0.005035561) (0.001008415 0.006001011 0.00503707) (-0.001739216 0.007505919 -0.009696885) (0.0002480738 0.003497582 -0.009704365) (-0.0002477484 -0.009500752 -0.009276677) (-0.0007457836 -0.002500935 -0.009727605) (-0.0007513016 -0.001497837 -0.009242362) (-0.000747141 -0.001498227 -0.009713399) (-0.0002482463 -0.00149712 -0.009233729) (-0.0007494386 -0.0004987064 -0.009233128) (0.0002521637 -0.001495182 -0.00923111) (-0.0007451666 0.0004998591 -0.009716242) (-0.0002500362 0.0004998205 -0.009233717) (-0.0007464013 0.001499364 -0.009709648) (-0.0007489383 0.0005001757 -0.009228889) (-0.0008337674 0.003634478 -0.009846078) (-0.001264053 -0.002611879 -0.009838066) (0.0007459685 -0.003497437 -0.009685778) (0.0002506038 -0.002496996 -0.009718491) (0.0002497311 -0.003498293 -0.009220741) (0.0002466296 0.001498494 -0.009732838) (0.0002485568 0.0005002173 -0.009233217) (0.0007502723 0.0005026682 -0.009234341) (0.0007438744 0.001500332 -0.009711907) (0.0007488077 0.004498923 -0.009706737) (0.0007515973 0.005518853 -0.009834237) (0.0002508387 0.009501601 -0.00925418) (0.0007534079 0.009502808 -0.00927385) (0.0007313421 0.009466718 -0.009704365) (-0.001253172 -0.009500839 -0.009277394) (-0.001748885 -0.009499651 -0.009245826) (-0.0002516967 0.01050408 -0.00929781) (0.0007446374 -0.00449739 -0.009664437) (0.0002490794 -0.004498195 -0.00922795) (0.0002491937 -0.005497539 -0.009271374) (0.0002499661 -0.007501059 -0.00932731) (0.0002505485 -0.00649997 -0.009306884) (-0.001243728 0.0005007352 -0.009679636) (-0.002519498 -0.01500345 -0.006564158) (-0.002523662 0.01500487 -0.006572427) (0.002520947 0.01500341 -0.00656611) (0.004570629 -0.02501012 -0.003550679) (-0.004558114 0.02501032 -0.003534056) (-0.006554977 0.01500158 0.002516206) (-0.003552112 -0.02501606 0.004578784) (0.003549379 0.02501604 0.004571557) (-0.001246301 -0.0004994703 -0.009691655) (-0.001328487 -0.001614856 -0.009832821) (-0.001259463 0.006501017 -0.009344635) (-0.001744328 0.01049957 -0.00921149) (-0.001250306 0.01049996 -0.00877294) (0.0002328203 -0.009460123 -0.009726067) (0.0002525198 -0.008501866 -0.009337174) (0.0002581327 -0.009503139 -0.009313966) (0.0002372894 0.0103672 -0.009666203) (0.0002463713 0.01050403 -0.009297166) (0.004544687 -0.01500204 0.0055537) (-0.0005007662 -0.00700065 -0.007539348) (-0.001508013 -0.005000556 -0.007543731) (-0.0005017315 -0.00500034 -0.007534812) (0.001512293 -0.00700098 -0.007564572) (0.0005045106 -0.005000627 -0.00754035) (0.001511844 -0.005001157 -0.007557053) (-0.0005028145 -0.002999948 -0.007530011) (-0.001512195 -0.001000041 -0.00755247) (-0.0005036464 -0.0009996643 -0.007527394) (0.001511434 -0.003000926 -0.007549693) (0.0005031728 -0.0009995866 -0.00752413) (0.001510906 -0.001000165 -0.007543306) (-0.001512376 0.003000685 -0.007556752) (0.001511111 0.001000181 -0.007543295) (0.001510843 0.003000635 -0.007549083) (-0.0005035461 0.005000691 -0.007543262) (-0.001509446 0.007001606 -0.007555801) (-0.0005024017 0.007000947 -0.007543348) (0.001510191 0.005001426 -0.007558868) (0.0005038991 0.007001464 -0.007547722) (0.001509851 0.00700206 -0.007560117) (0.003533412 -0.01900498 -0.005564476) (-0.005548502 -0.009002292 -0.005544969) (0.005555859 -0.01100529 -0.005567443) (0.005542257 -0.009003675 -0.005548658) (-0.005553832 -0.005001616 -0.005551861) (0.005545102 -0.007002892 -0.005547847) (0.005552148 -0.005002615 -0.005555111) (-0.005548918 -0.001000119 -0.005553394) (0.005545928 -0.003002435 -0.005548228) (-0.005560886 0.003003416 -0.005559141) (0.005555955 0.003001865 -0.005552883) (-0.005543627 0.007002477 -0.005547332) (0.005559898 0.005001791 -0.005558758) (0.005554436 0.007002158 -0.005553984) (-0.005548183 0.01100436 -0.005556682) (0.005551688 0.009004419 -0.005557702) (0.005561171 0.0110075 -0.005572851) (-0.00353764 0.01900498 -0.005558994) (0.003538146 0.01900906 -0.005561211) (0.001524429 -0.03102787 -0.003576027) (0.005561374 -0.01900498 -0.003536673) (-0.005558741 0.01900755 -0.003532176) (0.00557442 0.01900738 -0.003539724) (-0.001526155 0.03102171 -0.003573967) (0.001524447 0.03102174 -0.003581378) (0.003555856 -0.03101319 -0.001521763) (0.005573898 -0.02300815 -0.001516828) (-0.007563233 -0.00500184 -0.00150977) (-0.007577894 -0.007002068 -0.0005025102) (0.007558787 -0.007002783 -0.00150622) (0.007563533 -0.00500231 -0.001507034) (0.007569857 -0.007003004 -0.0005010633) (0.007574699 -0.00500332 -0.0005012925) (-0.007536001 -0.00100025 -0.001511762) (0.007557925 -0.003001406 -0.001509046) (0.007547761 -0.00100062 -0.001510699) (-0.007538718 0.00300134 -0.001512404) (0.007539347 0.001000324 -0.001510375) (0.007540417 0.003001315 -0.0015093) (-0.007564757 0.00700121 -0.001508989) (-0.007576735 0.007000794 -0.0005032199) (0.007550477 0.005000963 -0.001509382) (0.007565854 0.007001594 -0.001510168) (0.00756586 0.007000236 -0.0005019094) (-0.005574833 0.02301002 -0.001513224) (0.005577255 0.02300948 -0.001517177) (-0.003563935 0.03101917 -0.0015216) (0.003562048 0.03101837 -0.001533576) (-0.003565827 -0.03101461 0.001525768) (0.003567355 -0.03101856 0.001524337) (0.005576557 -0.02301026 0.001516701) (-0.007562897 -0.007001503 0.001507285) (-0.007555027 -0.004999234 0.001508347) (0.007570109 -0.007003065 0.0005031535) (0.007575746 -0.005003473 0.0005038949) (0.00756078 -0.007002971 0.001508431) (0.007565356 -0.005003083 0.001509465) (-0.007540876 -0.002997786 0.001510374) (-0.007533589 -0.000998761 0.001512308) (0.007554446 -0.003002206 0.00151045) (0.007542545 -0.001001081 0.001510734) (-0.007533804 0.001000529 0.001511275) (-0.007540382 0.003000903 0.001509034) (0.007538603 0.0009997711 0.001509463) (0.007543512 0.003000092 0.001508087) (-0.007576935 0.007000727 0.0005020395) (-0.007554295 0.005001774 0.001508875) (-0.007564278 0.007001432 0.001509012) (0.00756963 0.007000155 0.0005058614) (0.007555714 0.004999931 0.001508144) (0.007570468 0.006999908 0.001510307) (0.005580402 0.02300995 0.001513985) (-0.003561921 0.0310217 0.001521017) (0.003572025 0.0310234 0.001529189) (-0.001526075 -0.03102389 0.003577081) (0.001523717 -0.03101715 0.003570233) (-0.005559541 -0.01900542 0.00353203) (0.005569976 -0.01900875 0.003543838) (-0.005556595 0.01900407 0.003533498) (0.00557285 0.01900955 0.003542454) (-0.001522382 0.03102263 0.003568133) (0.001529735 0.03102819 0.003583405) (-0.001515779 -0.02301382 0.005580899) (-0.003531118 -0.01900474 0.005565384) (0.003539229 -0.01900777 0.005567236) (-0.005558228 -0.01100408 0.005563746) (-0.005549425 -0.009002243 0.005550682) (0.005557687 -0.01100355 0.005563107) (0.005546463 -0.009001943 0.005544779) (-0.00555181 -0.007001472 0.005551038) (-0.005558011 -0.005001878 0.005558574) (0.005543759 -0.007001385 0.005538449) (0.005552143 -0.00500141 0.005546389) (-0.005557011 -0.003002396 0.005557484) (-0.005546263 -0.001001578 0.005547537) (0.005559253 -0.003001357 0.005552826) (0.005552986 -0.001000826 0.005546873) (-0.005545074 0.001000344 0.005549383) (-0.005556491 0.003001557 0.005561582) (0.005556928 0.003001768 0.005557104) (-0.005559193 0.005001767 0.005560201) (-0.005552644 0.007001745 0.005552149) (0.005564544 0.005001441 0.005563791) (0.005558273 0.007001879 0.005558017) (-0.005551758 0.009002882 0.005549493) (-0.005562372 0.01100464 0.005558942) (0.005553411 0.009003475 0.005555392) (0.005558681 0.01100536 0.005560799) (-0.003533638 0.01900601 0.005562986) (0.00353835 0.01900496 0.005558767) (-0.001519811 0.02301117 0.00558309) (-0.001508149 -0.007002406 0.007564169) (-0.0005017551 -0.007002533 0.007558751) (-0.001510119 -0.00500315 0.007552155) (0.0005045062 -0.007001192 0.007561149) (0.001512406 -0.0070007 0.007570833) (0.001513563 -0.005000445 0.007556075) (-0.001512514 -0.003001794 0.007541707) (-0.001513615 -0.001000706 0.007539713) (0.001511742 -0.003000086 0.007542162) (0.001510519 -0.0009999145 0.007539004) (-0.001513044 0.000999988 0.007539776) (-0.001512612 0.003000359 0.007541502) (0.001511836 0.001000171 0.007542098) (0.001513479 0.002999989 0.007549508) (-0.001512761 0.005000954 0.007552141) (-0.00151146 0.007002309 0.007565945) (-0.0005050339 0.00700285 0.007560364) (0.001513452 0.005000281 0.007560102) (0.0005044142 0.007001696 0.007561368) (0.001513073 0.007001386 0.007570912) (-0.001251122 -0.009500688 -0.008780667) (-0.001251756 -0.008500809 -0.008780425) (-0.0007493072 -0.009500655 -0.008781317) (-0.0002484788 -0.008500855 -0.008791965) (-0.0002479441 -0.009500869 -0.008792256) (-0.0007498495 -0.008500675 -0.008779153) (-0.001252603 -0.006500625 -0.008785769) (-0.001252299 -0.007500602 -0.008783557) (-0.0007513838 -0.006500628 -0.008790792) (-0.0002494898 -0.007500809 -0.008797793) (-0.0007505569 -0.007500645 -0.008785382) (-0.0002502354 -0.00650056 -0.008797672) (-0.001253614 -0.005500628 -0.008791229) (-0.001255084 -0.004500456 -0.008797479) (-0.0007524681 -0.005500409 -0.008791576) (-0.000251029 -0.005499969 -0.00878641) (-0.0007534084 -0.004500125 -0.008789614) (0.001762548 -0.0005006604 -0.008806493) (0.001257966 -0.0004982295 -0.008778041) (-0.0007550168 0.005500545 -0.008810611) (-0.0002506713 0.005500576 -0.008798692) (-0.0007537094 0.006500777 -0.008807322) (-0.0002495078 0.007500705 -0.00879071) (-0.000249975 0.006500981 -0.008802819) (-0.0007522881 0.007500407 -0.008790658) (-0.001251048 0.009499838 -0.008779366) (-0.001253633 0.008500601 -0.008784251) (-0.0007506756 0.009499004 -0.008776552) (-0.0002494582 0.008500038 -0.008775402) (-0.0007511514 0.008499608 -0.008776174) (-0.0002500673 0.00949992 -0.008772767) (-0.0007505757 0.01050003 -0.008780543) (-0.0002509303 0.01050077 -0.008784427) (0.0002532556 0.007501601 -0.008799174) (0.0002532256 0.006501626 -0.008809131) (0.0002523391 0.008501149 -0.008782588) (0.0002514812 0.009501627 -0.008775842) (7.504167e-07 -0.004000217 -0.00753048) (-3.468938e-07 4.347387e-07 -0.007522274) (-3.989117e-07 0.004000498 -0.00753537) (-0.002014828 -0.01500262 -0.006055345) (1.535423e-07 -0.00400046 -0.005029945) (-2.190011e-07 1.297545e-07 -0.005029588) (6.880164e-10 0.004000696 -0.005031775) (-0.00201889 0.01500396 -0.006062864) (0.002016536 0.01500312 -0.006056988) (0.004059341 -0.02400867 -0.003549261) (9.71095e-07 -0.02000462 -0.003029656) (-0.002015116 -0.01600272 -0.003024203) (9.406006e-07 -0.01600271 -0.003025201) (0.002017307 -0.01600303 -0.003025986) (-0.00201512 -0.01200179 -0.003022475) (7.622206e-07 -0.01200191 -0.003022997) (0.002016262 -0.01200219 -0.003023473) (-0.002017409 -0.008001075 -0.003021544) (2.425973e-07 -0.006000784 -0.004027764) (0.002017127 -0.008001523 -0.003021728) (-0.001007343 -0.004000408 -0.004028064) (-0.002017276 -0.004000428 -0.003021763) (0.001007088 -0.004000631 -0.004027738) (-1.287719e-07 -0.002000188 -0.004027017) (0.002016607 -0.004000825 -0.003020894) (-0.00100761 1.892514e-07 -0.004028652) (-0.002017052 2.134564e-07 -0.003022479) (0.001007051 1.781105e-08 -0.00402755) (-1.226079e-07 0.002000397 -0.004027861) (0.00201657 -8.887004e-08 -0.003020968) (-0.001007421 0.004000777 -0.004029662) (-0.002017045 0.004000821 -0.003022697) (0.001007513 0.004000663 -0.004028971) (3.049454e-07 0.006000983 -0.004029243) (0.002017705 0.004000658 -0.003021887) (-0.002016991 0.00800145 -0.003022869) (0.002019217 0.008001438 -0.00302296) (-0.002015611 0.01200222 -0.003023989) (0.002018455 0.0120023 -0.003024346) (-0.002016674 0.01600324 -0.003025787) (5.011927e-07 0.01600313 -0.003025956) (0.002019121 0.01600343 -0.003026028) (-1.763029e-07 0.0200052 -0.003030097) (-0.004049879 0.02400882 -0.003535303) (-7.014598e-07 -0.02801517 -0.001018869) (8.344636e-07 -0.02200639 -0.002026299) (1.876324e-07 -0.02400925 -0.001013956) (-0.001008816 -0.02000466 -0.002022843) (-0.002017813 -0.01800366 -0.002017737) (-0.002023632 -0.02000509 -0.001009107) (0.001010747 -0.02000475 -0.002023651) (8.891758e-07 -0.01800356 -0.00202135) (0.002019698 -0.0180037 -0.002018975) (0.002025217 -0.02000486 -0.001009741) (-0.003024892 -0.01600314 -0.002015644) (-0.001007578 -0.01600274 -0.00201947) (-0.002016084 -0.01400229 -0.002016013) (-0.00202001 -0.01600306 -0.001007884) (0.001009277 -0.01600287 -0.002020088) (7.21432e-07 -0.01400224 -0.002018733) (0.003026368 -0.01600308 -0.002016892) (0.002017322 -0.01400246 -0.00201668) (0.002021258 -0.01600304 -0.001008147) (-0.003023448 -0.01200201 -0.002015272) (-0.002017769 -0.01000146 -0.002017134) (-0.002018564 -0.01200207 -0.001007625) (0.001008516 -0.01200206 -0.002018417) (0.003023697 -0.0120022 -0.00201577) (0.002017881 -0.01000179 -0.002017418) (0.002019122 -0.01200217 -0.001007686) (-0.003022945 -0.008001197 -0.002016833) (-0.002017351 -0.006000779 -0.002016813) (0.003022157 -0.008001574 -0.002016708) (0.002016869 -0.006001137 -0.002016436) (-0.003021799 -0.004000485 -0.002017253) (-0.002016751 -0.002000144 -0.002017319) (0.00302124 -0.004000888 -0.0020163) (0.002016434 -0.002000445 -0.002016267) (-0.003020925 1.856546e-07 -0.002017819) (-0.004025807 1.352055e-07 -0.001007666) (-0.002016574 0.00200046 -0.002017665) (0.003020859 -1.188329e-07 -0.002016482) (0.002016869 0.002000277 -0.002016744) (0.004027211 -2.256333e-07 -0.001006854) (-0.003021209 0.004000782 -0.002017849) (-0.002016862 0.006001041 -0.002017674) (0.003022238 0.00400067 -0.00201726) (0.002018502 0.006001018 -0.002017481) (0.004028948 0.004000586 -0.001007212) (-0.00302224 0.008001414 -0.002017755) (-0.002017614 0.01000174 -0.002018196) (0.003025166 0.008001516 -0.002018128) (0.002020675 0.01000186 -0.002018537) (-0.003023624 0.01200224 -0.002016256) (-0.002016736 0.0140026 -0.002016989) (-0.002018844 0.01200216 -0.001008123) (0.00302816 0.01200252 -0.002017039) (0.002020075 0.0140028 -0.002017324) (0.002022508 0.01200247 -0.001008367) (-0.003025863 0.01600338 -0.00201649) (-0.001008294 0.01600316 -0.002020352) (-0.002019125 0.01800403 -0.002018367) (-0.002020668 0.01600319 -0.001008276) (0.001010196 0.01600326 -0.002020473) (5.329674e-07 0.01800404 -0.002021791) (0.00303056 0.01600373 -0.002017441) (0.002021636 0.01800428 -0.002018841) (0.002024188 0.01600351 -0.001008602) (-0.001010112 0.02000522 -0.002023319) (-0.002024614 0.02000529 -0.001009003) (0.001010841 0.02000533 -0.002023458) (-1.291537e-07 0.022007 -0.002026444) (0.002027066 0.02000557 -0.00100963) (1.866098e-07 0.02401004 -0.001013646) (1.311066e-07 0.02801576 -0.001017925) (-1.227296e-06 -0.03001986 -2.720855e-07) (-0.001017034 -0.0280144 -6.303851e-07) (0.001015403 -0.02801391 5.631305e-07) (-3.174429e-07 -0.02601108 6.200598e-07) (-7.350203e-07 -0.0280144 0.001018966) (-0.001013843 -0.02400921 8.017483e-07) (-0.002027148 -0.02200674 9.086383e-07) (0.001013922 -0.02400895 1.130523e-06) (-2.987869e-09 -0.02400935 0.001016459) (0.002028132 -0.02200637 1.007797e-06) (-0.003031841 -0.0200056 6.309748e-07) (-0.00202213 -0.01800409 7.157897e-07) (-0.002024411 -0.02000545 0.001011399) (0.003032968 -0.02000515 7.514261e-07) (0.002023511 -0.01800395 9.411145e-07) (0.002025816 -0.02000523 0.001012016) (-0.003025894 -0.01600329 1.245671e-07) (-0.00201898 -0.01400249 2.565131e-07) (-0.002019982 -0.01600322 0.001008997) (0.003027025 -0.01600314 7.092736e-07) (0.002019964 -0.01400249 7.073933e-07) (0.002021637 -0.01600319 0.001009944) (-0.003023558 -0.01200219 -1.348175e-07) (-0.002018111 -0.01200214 0.001008168) (0.00302388 -0.01200213 5.601654e-07) (0.002019285 -0.01200214 0.001008938) (-0.004025661 -0.002000156 -7.601615e-08) (0.004027732 -0.002000663 2.02381e-07) (0.00756748 -0.004003173 1.492403e-06) (-0.005025949 1.743842e-07 -1.100771e-07) (-0.004025333 0.002000346 -1.321021e-07) (-0.004025592 9.194667e-08 0.001007455) (0.005028682 -3.50982e-07 1.112674e-07) (0.004026799 0.002000091 7.72422e-08) (0.004027399 -3.191059e-07 0.001007131) (-0.003023886 0.01200202 -2.279041e-07) (-0.002019333 0.01400244 1.356892e-07) (0.003028108 0.01200255 1.607766e-07) (0.002023018 0.01400285 3.175546e-07) (0.002022077 0.01200243 0.001009052) (-0.003026344 0.01600316 1.164263e-07) (-0.002022636 0.01800406 7.691799e-07) (-0.002020363 0.01600303 0.001009135) (0.003030576 0.01600364 2.353945e-07) (0.002025896 0.01800444 5.492411e-07) (0.002024037 0.01600355 0.001009533) (-0.00303241 0.02000542 9.922463e-07) (-0.002027629 0.02200694 1.490325e-06) (-0.002024762 0.0200053 0.001011696) (0.003035467 0.02000575 4.828902e-07) (0.002029818 0.02200737 7.663881e-07) (0.002027621 0.02000584 0.00101129) (-0.001013704 0.02400995 1.447566e-06) (0.001014902 0.02401022 1.109993e-06) (4.39747e-07 0.02601222 1.127919e-06) (6.878578e-07 0.02401036 0.001016598) (-0.001016167 0.02801555 1.157885e-06) (0.001016964 0.02801579 8.809433e-07) (8.729927e-08 0.03002158 1.437608e-06) (7.289743e-07 0.02801632 0.00102001) (4.616918e-07 -0.02200725 0.00203117) (-0.001009745 -0.02000565 0.002027351) (-0.002018492 -0.01800426 0.00202061) (0.001011213 -0.02000552 0.00202762) (8.0378e-07 -0.01800429 0.00202505) (6.950807e-07 -0.02000582 0.003035206) (0.002020586 -0.01800426 0.002021552) (-0.003024537 -0.01600327 0.002016765) (-0.001007726 -0.01600331 0.002022283) (-0.002015783 -0.01400255 0.002017363) (-0.002015466 -0.01600334 0.003027255) (0.001009515 -0.01600331 0.002022741) (7.964626e-07 -0.01400261 0.002021037) (8.414143e-07 -0.01600342 0.003028555) (0.00302731 -0.01600333 0.002018533) (0.002017624 -0.01400255 0.00201835) (0.002017917 -0.01600337 0.003028167) (-0.003022197 -0.01200207 0.00201557) (-0.001007174 -0.01200219 0.00201989) (-0.002016881 -0.01000158 0.002018029) (-0.002014582 -0.01200208 0.003024372) (0.001008629 -0.01200219 0.002020248) (7.118832e-07 -0.01200225 0.003025473) (0.003023923 -0.01200201 0.002016697) (0.002018067 -0.01000158 0.002018318) (0.002016275 -0.01200202 0.003024802) (-0.003021642 -0.008001209 0.002017234) (-0.002016659 -0.006000857 0.002017216) (-0.002016626 -0.008001211 0.003022748) (0.003022493 -0.008001272 0.002017115) (0.002017392 -0.006000949 0.002016843) (0.002017426 -0.008001208 0.003022406) (-0.003021074 -0.004000554 0.002017269) (-0.002016399 -0.002000285 0.002016998) (-0.002016829 -0.004000602 0.003021805) (0.003021908 -0.004000751 0.0020166) (0.002017165 -0.002000396 0.002016567) (0.002017416 -0.004000653 0.003021186) (-0.00302064 2.546222e-09 0.002017386) (-0.002016434 0.002000277 0.002017204) (-0.002016794 -1.985061e-08 0.003021618) (0.003021631 -1.623523e-07 0.002016912) (0.002017524 0.00200021 0.00201723) (0.002017581 -7.172836e-08 0.003021401) (-0.003021215 0.004000542 0.002017661) (-0.002016881 0.006000805 0.002017674) (-0.002017029 0.004000578 0.003022271) (0.003022717 0.004000492 0.002017948) (0.002018717 0.00600089 0.002018471) (0.002018419 0.00400057 0.003022932) (-0.003022232 0.008001005 0.00201776) (-0.002017389 0.01000136 0.002018415) (-0.002017083 0.008001112 0.003023192) (0.003024729 0.008001282 0.002019035) (0.002020236 0.01000175 0.002019671) (0.002019331 0.008001326 0.003024697) (-0.003023039 0.01200165 0.002015915) (-0.001007188 0.01200201 0.002020103) (-0.002016147 0.01400227 0.002017585) (-0.002015105 0.01200179 0.003024518) (0.001009844 0.01200225 0.002020664) (1.297721e-06 0.01400251 0.002021127) (1.212524e-06 0.0120021 0.003025817) (0.003026854 0.01200237 0.002017595) (0.002019666 0.01400279 0.002018442) (0.002018116 0.01200225 0.003025906) (-0.006049596 0.01500165 0.002013017) (-0.003025 0.01600287 0.002017045) (-0.001007728 0.0160031 0.002022227) (-0.002018806 0.01800398 0.002020664) (-0.002015843 0.01600299 0.003027151) (0.001010577 0.01600334 0.002022474) (1.214861e-06 0.01800422 0.002024641) (1.270169e-06 0.01600314 0.003028387) (0.003029687 0.01600376 0.002018295) (0.002022185 0.01800452 0.002020693) (0.002019357 0.01600347 0.003027846) (-0.00100978 0.0200055 0.002027107) (0.001012038 0.0200058 0.002026729) (8.363708e-07 0.02200753 0.002030639) (9.830329e-07 0.02000563 0.003034455) (-0.003550263 -0.02401348 0.004067114) (3.116009e-07 -0.00600094 0.004029458) (-0.001007171 -0.004000678 0.004028328) (0.001007616 -0.0040006 0.004028125) (1.841765e-07 -0.002000332 0.00402644) (2.334093e-07 -0.004000683 0.005030241) (-0.001007349 -4.132854e-08 0.004027161) (0.001007828 -1.066722e-08 0.004027273) (3.508978e-07 0.002000289 0.004027129) (9.890592e-08 -4.291205e-08 0.00502806) (-0.001007218 0.004000629 0.004029114) (0.001008321 0.004000619 0.004029882) (6.961258e-07 0.006000964 0.004030773) (4.83059e-07 0.00400062 0.005031617) (0.003547731 0.02401437 0.004059831) (-0.001249854 -0.01000024 -0.009027165) (-0.0009994676 -0.01000046 -0.00878159) (-0.001002499 -0.006000592 -0.008790159) (-0.001004148 -0.00199807 -0.009263189) (-0.0007526038 -0.001998625 -0.009007151) (-0.001005107 -0.001498402 -0.009012945) (-0.001006656 0.006000859 -0.008817711) (-0.001000549 0.009999684 -0.008779902) (0.0002516067 -0.008001871 -0.009092917) (1.514919e-06 -0.008001055 -0.00880418) (0.0007554771 -0.003997375 -0.009915544) (0.0009971623 -0.003497885 -0.009903243) (0.0009943406 -0.003997493 -0.009674848) (0.0009889072 -0.004503579 -0.009871886) (0.0002499915 -0.003999006 -0.008987096) (-0.0009931276 0.0005004442 -0.009945463) (-0.001243133 2.360406e-06 -0.009919292) (0.0002467276 0.001998627 -0.009982658) (-4.444119e-07 0.0005003811 -0.008985775) (0.002014541 -1.005372e-06 -0.008813104) (-0.0009903046 0.003387084 -0.009918475) (1.645044e-06 0.008000807 -0.008785635) (1.683971e-06 -0.006000576 -0.007540199) (-0.001005379 -0.004000231 -0.00753792) (0.00100765 -0.004000934 -0.007543242) (7.452509e-08 -0.001999706 -0.007524104) (-0.001007902 2.101016e-07 -0.00753812) (0.001006689 3.224883e-07 -0.00753072) (-5.860904e-07 0.002000305 -0.007525679) (-0.00100786 0.004000633 -0.007547776) (3.772649e-07 0.006000969 -0.007543592) (1.3373e-06 -0.006001635 0.007547127) (-0.001008481 -0.004002494 0.007537526) (-0.001010202 -2.784768e-07 0.007529798) (0.001008051 9.958912e-08 0.007530378) (0.001010482 0.00399983 0.007545956) (-3.793865e-07 0.006001689 0.007548103) (-0.001000522 -0.001999009 -0.009730389) (-0.001001323 -0.002504269 -0.009903005) (-0.0007425563 -0.001999575 -0.009915914) (-0.000990711 -0.001498981 -0.009932086) (-0.001243272 -0.0019826 -0.009925292) (-0.0009968663 0.002000012 -0.009706312) (-0.000995485 0.001498726 -0.009940508) (-0.0007464395 0.001998832 -0.009947673) (-0.001750482 -0.009999669 -0.009004221) (-0.001998168 -0.009999111 -0.009235378) (-0.002000252 -0.009500171 -0.009001655) (-0.0002484518 -0.01000135 -0.00905243) (1.920832e-06 -0.009999333 -0.009317867) (3.616142e-06 -0.009501274 -0.009052528) (0.0002550313 -0.01000185 -0.009071104) (2.579773e-06 -0.01000073 -0.008801808) (-0.001000976 -0.008000704 -0.00878012) (0.0002511985 -0.005999415 -0.009044017) (1.755849e-07 -0.00600006 -0.008793321) (-0.001004923 -0.004000164 -0.008794392) (-0.001004221 -0.006000572 -0.007538324) (-0.0002492849 -0.001997785 -0.008987968) (0.0002514929 -0.001996875 -0.008983681) (1.659764e-06 -0.001996921 -0.009230468) (1.520927e-06 -0.001496777 -0.008985538) (-0.00100319 -0.0004990301 -0.009000123) (-0.001001829 0.0005003037 -0.008994153) (-0.0009998396 6.604163e-07 -0.009231381) (-0.0007510648 6.544831e-07 -0.008991148) (-0.001007102 -0.00199993 -0.00753827) (0.001006216 2.232804e-06 -0.008766766) (0.001007051 -0.002000122 -0.007534427) (-0.001008055 0.002000361 -0.007541281) (1.314683e-06 0.006001062 -0.008803526) (-0.001003283 0.008000367 -0.008785084) (-0.001006657 0.006001028 -0.007550669) (-0.001998624 0.01049359 -0.009004504) (-1.185706e-06 0.01050165 -0.009043359) (0.0002505347 0.01000291 -0.009028901) (2.690303e-08 0.01000103 -0.008778208) (-0.001005533 -0.006002844 0.00755281) (-0.001009998 -0.002001059 0.007530271) (0.001009492 0.001999951 0.007535234) (0.001009419 0.006000767 0.007557971) (0.0007556405 0.01000566 -0.00903687) (0.001005354 0.01000479 -0.009286563) (0.001004204 0.009503762 -0.00904342) (-0.0007475476 0.0009997582 -0.009469179) (-0.0004995534 0.000999593 -0.009230733) (-0.000753632 0.002997612 -0.009489122) (0.0002499124 -0.002998127 -0.009965461) (0.0007488645 0.003993856 -0.009916912) (0.0009983186 0.004450632 -0.009908835) (0.0009931777 0.00399825 -0.009685932) (0.0002481846 0.002997745 -0.009964584) (0.001006699 0.004000877 -0.007545356) (0.001009791 -0.004000221 0.007539274) (-0.001009863 0.004000418 0.007537489) (-0.0004986008 -0.01000078 -0.008789211) (-0.001000679 -0.009000807 -0.008778678) (-0.001001606 -0.007000602 -0.008785379) (-0.0005013286 -0.006000478 -0.008792987) (-0.001003711 -0.005000422 -0.008793486) (-0.001000048 -0.002501308 -0.009528936) (-0.0007497855 -0.001998174 -0.009484767) (-0.001006725 -0.001495882 -0.00950296) (-0.001262561 -0.001995058 -0.009544362) (-0.0004994142 -0.001998132 -0.009238277) (-0.0005002767 -0.00149798 -0.00899233) (-0.001002678 -0.0009980931 -0.009244432) (-0.0007521914 -0.0009984784 -0.008998221) (0.0005011725 -0.001996007 -0.009227442) (0.000502097 -0.001495853 -0.00898559) (0.001006172 -0.0009977225 -0.008768487) (-0.0009977624 0.001500129 -0.009465939) (-0.000748579 0.001999207 -0.009470562) (-0.000999556 0.001000103 -0.009230055) (-0.0007509098 0.0009999565 -0.008989797) (-0.00100806 0.005000558 -0.008817138) (-0.0005022266 0.006000761 -0.008805785) (-0.001004845 0.007000647 -0.008804648) (-0.001001506 0.008999355 -0.008778263) (-0.0005009141 0.009999912 -0.008780802) (0.0002539638 -0.01013108 -0.009617637) (0.000255209 -0.009002842 -0.009080154) (2.649241e-06 -0.009001121 -0.008799293) (-0.0004995525 -0.008000711 -0.008787131) (0.0002516168 -0.00700107 -0.009072214) (7.753226e-07 -0.007000752 -0.008804265) (0.0004988443 -0.002497694 -0.009958238) (0.0002499879 -0.004998686 -0.009007969) (-4.323441e-07 -0.004999554 -0.008776365) (-0.0005028565 -0.003999843 -0.008779471) (0.0002507049 -0.002998289 -0.008981846) (-0.001240736 -0.0009823179 -0.009947046) (-0.0007455573 0.0009996773 -0.009961289) (-0.0009950297 0.001000148 -0.009696516) (-0.001249148 0.0009986714 -0.009907232) (-0.00099665 0.0005003647 -0.009461481) (-0.00124878 2.354665e-07 -0.009463252) (0.0002475121 0.001998832 -0.009475342) (-0.0005001312 0.0005001979 -0.008986205) (0.0005001567 0.000501619 -0.008986746) (-1.13782e-06 0.0009993235 -0.009233416) (-0.0002504735 0.0009997028 -0.008985008) (0.0002490546 0.001000106 -0.008984738) (0.002015879 -0.001002532 -0.008826098) (0.001509995 9.054066e-07 -0.008790274) (-0.0007486436 0.002991962 -0.009916003) (-0.001002347 0.002999871 -0.009740335) (-0.001005265 0.003497314 -0.009549197) (3.016238e-07 0.005000278 -0.008789426) (1.787516e-06 0.007001258 -0.008800855) (-0.000500483 0.008000128 -0.008781315) (1.015787e-06 0.009000481 -0.008773375) (0.0009921991 0.001512171 -0.009940805) (0.0007524261 0.002000558 -0.00995462) (0.0009928451 0.001999671 -0.009695046) (0.000906123 0.009818454 -0.009650234) (0.001008737 -0.006000938 -0.007554932) (0.0002499849 -0.002997729 -0.009464208) (0.0004993294 -0.00249668 -0.009463901) (-0.001247933 0.001000561 -0.009462716) (0.001006719 0.002000404 -0.007534276) (0.0002479358 0.002998187 -0.009465789) (0.001006939 0.006001629 -0.007554822) (0.001009057 -0.006000588 0.007556824) (0.001007999 -0.00199997 0.007530116) (-0.001009676 0.002000104 0.007530495) (-0.001009208 0.006001773 0.007553745) (-0.0004987867 -0.009000698 -0.008783047) (-0.0005004264 -0.007000679 -0.008793396) (-0.0005021139 -0.005000044 -0.008785633) (-0.001253138 -0.0009989215 -0.009499586) (0.001510028 -0.0009995689 -0.008794578) (-0.0005029 0.005000272 -0.008798979) (-0.0005013005 0.007000731 -0.008797908) (-0.0005002835 0.008999381 -0.008772611) (-0.001511034 -0.002501934 -0.009572901) (0.0007481256 -0.00299782 -0.009454171) (0.0005000647 -0.002997952 -0.009221551) (0.0004977943 -0.002997376 -0.00970218) (0.0004983567 -0.003498172 -0.009454063) (0.0004962992 0.001499576 -0.009474301) (0.0004983257 0.001000519 -0.009231667) (0.0007541759 0.004998859 -0.009526639) (0.0007483693 -0.004998011 -0.009448758) (0.0004992122 -0.004998571 -0.009240276) (0.000495411 0.002998025 -0.009705054) (0.0004971086 0.003497933 -0.009458672) (0.0004980377 -0.003498166 -0.009943104) (0.0004960546 0.003497475 -0.009945617) (-0.00199979 0.007501758 -0.00956567) (-0.001499211 -0.009999339 -0.009254483) (-0.00150178 -0.00950042 -0.00902215) (-0.001500566 -0.01000026 -0.00877937) (-0.001503769 -0.006000743 -0.008787775) (-0.001500348 0.01000044 -0.008775447) (-0.001000302 0.01099974 -0.008770825) (-0.001998082 -0.009512334 -0.009444953) (-0.001753769 -0.01000833 -0.009462513) (-0.001502994 -0.008000847 -0.008785907) (-0.001502712 -0.00200079 -0.009828661) (-0.001409145 -0.002366141 -0.009908675) (-0.001432177 -0.001360428 -0.00991229) (-0.001506666 -0.004000513 -0.008804302) (0.0009942629 -0.002996579 -0.00967957) (0.0007548597 -0.002997988 -0.009938748) (0.0009974748 -0.003500538 -0.009459003) (0.0007477747 -0.004000264 -0.009454045) (0.0009984458 -0.004500001 -0.009457199) (0.000756151 -0.004987641 -0.009880236) (0.0009953091 -0.00499673 -0.00966093) (0.0005006666 -0.00349907 -0.008983799) (0.0004993593 -0.003998762 -0.00922132) (0.0005004578 -0.004499197 -0.008994237) (0.0004950917 0.001500113 -0.009978832) (0.0004953608 0.0019991 -0.009719232) (-0.001989551 0.01048502 -0.009408108) (-0.001507022 0.008001528 -0.008793783) (0.0005041516 0.008001891 -0.008797642) (-0.0002512104 0.01100085 -0.009038684) (-1.791584e-06 0.01099866 -0.009298296) (0.0002484902 0.01100035 -0.009039959) (-8.163374e-07 0.01100042 -0.008784043) (0.0005002534 -0.005999491 -0.009281061) (0.0005011708 -0.005499239 -0.009025543) (0.0005021156 -0.006500543 -0.009060855) (0.0007509073 0.001001634 -0.008990735) (0.0005043177 0.006001687 -0.008814228) (0.0005049912 0.01000722 -0.00928659) (0.0005029213 0.009503233 -0.009028025) (0.0005000254 0.01050147 -0.009035371) (0.0005024642 0.01000304 -0.008782601) (0.0009956282 0.001500889 -0.009461441) (0.000745669 0.001999539 -0.009461056) (0.001005375 0.005500794 -0.009563997) (0.001065272 0.009502543 -0.009594467) (0.0007615545 0.01014133 -0.00957807) (0.0007511956 0.004979851 -0.009920156) (0.001010528 0.005133654 -0.009826579) (0.0007471168 0.003997926 -0.009462258) (0.001000783 0.00449894 -0.009480334) (-0.001503668 -0.007000559 -0.008785642) (-0.001509452 -0.001500886 -0.00954949) (0.002285339 0.001164217 -0.009615427) (-0.001502336 0.009000822 -0.008783337) (0.0004974615 0.01053129 -0.009563537) (0.0005028099 0.009001853 -0.008782352) (-0.001502303 -0.009000608 -0.008781369) (-0.001504977 -0.005000684 -0.008795708) (-0.0005007446 0.01100029 -0.008779447) (0.0002567584 0.01103475 -0.009561175) (0.0005051232 0.007002343 -0.008812397) (0.0005006625 -0.007000937 -0.009312603) (-0.001501057 0.0005001688 -0.009467664) (-0.00149725 0.000999915 -0.009686854) (0.002415499 0.0008222088 -0.009682027) (0.002582428 0.0005008988 -0.009600862) (-0.001501669 -0.0005013789 -0.009485826) (-0.00156945 -0.001156183 -0.009835515) (-0.001775014 0.006855927 -0.009597618) (-0.001731832 0.01100238 -0.009398905) (-0.001501304 0.01100006 -0.008773643) (-0.001503007 0.01050079 -0.008537378) (-0.001252788 0.01100023 -0.008533823) (0.0005919883 -0.00951328 -0.009651644) (0.0005057993 -0.009004967 -0.009376342) (0.0004984938 0.01100037 -0.00928265) (-0.001496119 -6.355697e-07 -0.009701471) (-0.001485204 0.0005002011 -0.00988544) (-0.001482143 -0.0004727826 -0.009922905) (-0.001905221 0.007150612 -0.009665079) (1.811424e-06 -0.007000717 -0.007040957) (-0.001508904 -0.004000334 -0.007043148) (0.001510909 -0.004000932 -0.007047344) (-0.001511711 1.550026e-07 -0.007048418) (0.001510651 9.792128e-09 -0.007040574) (0.001510364 0.004000866 -0.007049102) (4.96229e-07 0.007001045 -0.007041242) (-0.002015221 -0.0140028 -0.006559745) (-0.002517991 -0.01400274 -0.006056143) (-0.005045302 -0.008001697 -0.005544463) (-0.005546399 -0.008001789 -0.005039051) (0.005039036 -0.008003143 -0.00554652) (0.0055421 -0.008003092 -0.005041797) (-0.005048027 -0.004001239 -0.005552111) (-0.005550296 -0.004001312 -0.005047543) (0.005043765 -0.004002342 -0.00555045) (0.005547302 -0.004002206 -0.005045297) (-0.005045796 1.176342e-06 -0.005552588) (-0.005548423 8.961648e-07 -0.005047406) (-0.005051623 0.004002745 -0.005555044) (-0.005553375 0.004002628 -0.005050156) (0.005051403 0.00400159 -0.005553507) (0.005554646 0.004001652 -0.005049189) (-0.005037829 0.00800289 -0.005546554) (-0.005541155 0.008002577 -0.005041508) (0.005046704 0.00800293 -0.005552204) (0.005551941 0.008002819 -0.005049148) (-0.002018937 0.01400418 -0.006566669) (-0.002521724 0.01400443 -0.006063182) (0.002015953 0.01400313 -0.006560841) (0.002520519 0.01400319 -0.006058944) (0.004065838 -0.02500956 -0.00304657) (0.004566709 -0.02400871 -0.003041782) (-0.004557887 0.02400893 -0.003028956) (-0.004055885 0.02501067 -0.003033086) (-0.007549462 -0.004001288 -0.001007784) (0.007563842 -0.004002355 -0.001005031) (-0.007523662 3.233339e-07 -0.001008885) (0.00753285 -2.179094e-07 -0.001007737) (-0.007541923 0.004001108 -0.001009852) (0.007537596 0.004000768 -0.001007016) (-0.007571283 -0.00600116 -7.669758e-10) (0.007577793 -0.006003487 1.248102e-06) (-0.007543797 -0.003998149 0.001007075) (0.007564319 -0.004002728 0.001007223) (-0.007522749 8.677824e-07 0.001008847) (0.007530239 -5.195345e-07 0.001007675) (-0.00757306 0.006000574 -8.955194e-07) (-0.007542668 0.004001164 0.001006334) (0.007554816 0.005999725 1.618669e-06) (0.007541361 0.003999965 0.001006383) (-0.006554006 0.01400061 0.002012284) (-0.006051104 0.014001 0.002516276) (-0.003045851 -0.02501491 0.004071553) (-0.00304463 -0.02401516 0.004577418) (-0.005548506 -0.008001548 0.005044999) (0.005544261 -0.008001222 0.005036835) (-0.005553981 -0.004001931 0.005051623) (0.005551665 -0.004001157 0.005043262) (-0.005545372 -7.75135e-07 0.005043879) (0.005547183 -4.013829e-07 0.005038859) (-0.005553756 0.004001405 0.005052927) (0.005557028 0.004001226 0.005052536) (-0.005550016 0.008001797 0.005045572) (0.005552927 0.00800215 0.005050139) (0.003044994 0.0250155 0.004066717) (0.003043882 0.02401469 0.004569503) (0.004039066 -0.01400199 0.005551201) (-0.005044632 -0.008001606 0.005548459) (0.005040077 -0.008001759 0.00553986) (-0.005050943 -0.004001751 0.00555497) (0.005049794 -0.004001357 0.005547669) (-0.005039935 -2.90829e-07 0.005546166) (0.005044801 -1.845106e-07 0.005544926) (-0.005052046 0.004001618 0.005558384) (0.005054914 0.004001492 0.005558998) (-0.005046168 0.008002267 0.005548624) (0.005050455 0.00800246 0.005555468) (-0.001250484 -0.01000053 -0.008535582) (-0.0007489634 -0.01000053 -0.008534301) (-0.001000005 -0.0095006 -0.00853206) (-0.001513484 0.006500857 -0.009115179) (-0.001251536 0.01000043 -0.008531884) (-0.001001089 0.01049989 -0.008528171) (-0.001001228 0.009499621 -0.008529022) (-0.0007507261 0.009999755 -0.008528735) (0.0004099669 -0.009820897 -0.009682684) (0.0004943031 -0.008000556 -0.009397797) (0.0005016521 -0.007501867 -0.009096655) (0.0005044314 -0.008503168 -0.009119682) (-0.001756169 0.01099889 -0.00904601) (-0.002114222 0.01122652 -0.009248666) (0.0005055669 -0.01000693 -0.009330709) (0.0005099576 -0.009505688 -0.00908964) (-0.003025789 -0.0180039 -0.00555448) (0.003029119 -0.01800437 -0.005561095) (-0.005048204 -0.01000252 -0.005549868) (-0.001004182 -0.007000705 -0.007038389) (0.001007911 -0.007000968 -0.007051314) (0.005043722 -0.01000405 -0.005555644) (-0.005046834 -0.006001428 -0.005547011) (-0.001508127 -0.006000723 -0.007041378) (0.005043372 -0.00600275 -0.005549526) (-0.005045838 -0.002000546 -0.00555319) (-0.001510601 -0.00200005 -0.007046423) (0.001510716 -0.002000426 -0.007042668) (0.0050367 -0.002002058 -0.005542821) (-0.00505122 0.002002682 -0.005555193) (0.001510839 0.002000346 -0.00704334) (0.005043765 0.002001033 -0.005546059) (-0.005043804 0.006002512 -0.005549303) (-0.001005778 0.007001163 -0.007045264) (0.0010065 0.007001503 -0.007048198) (0.005050423 0.006001778 -0.005552892) (-0.005039676 0.01000335 -0.005551378) (0.005050014 0.01000522 -0.005562588) (-0.003031293 0.01800488 -0.005558029) (0.003031334 0.01800678 -0.00555751) (-0.001021634 -0.03002471 -0.00357935) (0.00101809 -0.03002464 -0.003573498) (-0.00555172 -0.01000285 -0.005044868) (0.0055481 -0.01000423 -0.005051477) (-0.005548011 -0.006001414 -0.00504197) (0.005545928 -0.00600253 -0.005044511) (-0.00554877 -0.002000721 -0.005048595) (0.005541644 -0.002001958 -0.005037658) (-0.005553495 0.002002474 -0.005049394) (0.005547646 0.002001273 -0.005041767) (-0.005545854 0.006002225 -0.00504521) (0.005554412 0.006001705 -0.005049683) (-0.00554479 0.01000375 -0.005046) (0.005555864 0.010005 -0.005057454) (-0.001018444 0.03001997 -0.003571115) (0.001017861 0.03001984 -0.003577212) (-0.001023429 -0.03102632 -0.003074852) (-0.001036323 -0.03403997 -0.001547341) (0.001020225 -0.03102715 -0.003068421) (-0.005555084 -0.01800679 -0.003028888) (0.005558204 -0.01800452 -0.003029711) (-0.005556149 0.01800698 -0.003027359) (0.005571193 0.01800733 -0.003034824) (-0.001020152 0.03102165 -0.003065181) (0.0010201 0.03102202 -0.003072776) (-0.001037513 -0.03504139 -0.001037049) (-0.001545122 -0.03403774 -0.001037272) (-0.00305655 -0.03102084 -0.001029731) (0.003048642 -0.03101349 -0.001016632) (-0.003558951 -0.03001794 -0.001025776) (0.003554209 -0.03001104 -0.001015688) (-0.005571784 -0.02201246 -0.001009645) (0.005569559 -0.02200762 -0.001012019) (-0.007569973 -0.006001794 -0.001005727) (0.007569123 -0.006002887 -0.00100365) (-0.007531062 -0.002000662 -0.001008324) (0.00754608 -0.002001044 -0.001007161) (-0.007525888 0.002001018 -0.001009768) (0.007529358 0.002000773 -0.00100728) (-0.007565706 0.006000875 -0.001006752) (0.007556154 0.006000141 -0.001006355) (-0.005572773 0.0220096 -0.001010012) (0.005574095 0.02200844 -0.001012076) (-0.003559582 0.03001736 -0.001015839) (-0.003055917 0.0310186 -0.00101691) (0.003556324 0.03001488 -0.001022442) (0.003052441 0.03101606 -0.001024779) (-0.003057454 -0.03101486 0.001019882) (0.003056235 -0.03101629 0.001019755) (-0.003561895 -0.03001243 0.00101792) (0.003564041 -0.03001559 0.001019312) (0.005572434 -0.0220094 0.001011662) (-0.00756501 -0.006000516 0.001005049) (0.00757073 -0.006003254 0.001005902) (-0.007526907 -0.001997972 0.001008631) (0.007542208 -0.002001542 0.001008569) (-0.007526892 0.002000589 0.001007222) (0.007530214 0.001999976 0.001006609) (-0.007565684 0.006001209 0.001005625) (0.007561171 0.005999939 0.001007292) (0.005576724 0.02200867 0.001009789) (-0.003557982 0.0300182 0.001015429) (-0.003054179 0.03102045 0.001017596) (0.003567912 0.03001955 0.001021461) (0.003060949 0.03102069 0.001024172) (-0.001020401 -0.0310227 0.003067945) (0.001018297 -0.0310177 0.003062528) (-0.001019045 -0.0300217 0.003572552) (0.001018379 -0.03001697 0.003568947) (-0.005556366 -0.0180045 0.003026085) (0.005564901 -0.01800738 0.003035626) (-0.00555214 0.01800388 0.003027586) (0.005570042 0.01800846 0.003035899) (-0.001017587 0.03102298 0.003062105) (-0.001016649 0.03002033 0.003566188) (0.001023419 0.03102681 0.003073315) (0.00102249 0.03002433 0.003577833) (-0.001010646 -0.02201098 0.005573918) (-0.003026814 -0.01800468 0.005562013) (0.003033143 -0.01800677 0.005563748) (-0.005551394 -0.01000279 0.005050763) (-0.005047141 -0.01000296 0.005554347) (0.005550694 -0.01000226 0.005048431) (0.005046217 -0.01000264 0.005551301) (-0.005551381 -0.006001451 0.005048294) (-0.005048518 -0.006001424 0.005551848) (0.005545882 -0.00600115 0.005037675) (0.005042852 -0.006001441 0.005540617) (-0.005550391 -0.002001924 0.00504753) (-0.005045446 -0.002001494 0.005550211) (0.00555289 -0.002000986 0.005043618) (0.005050917 -0.002001097 0.005549156) (-0.00554884 0.002000712 0.005049166) (-0.005045269 0.002001119 0.005554011) (0.005549806 0.002001158 0.005045303) (0.005047949 0.002001747 0.005552069) (-0.005551959 0.006001494 0.005049209) (-0.005049824 0.006001693 0.005553372) (0.005556999 0.006001353 0.00505288) (0.005054913 0.006001516 0.005558538) (-0.005555412 0.01000289 0.005048697) (-0.00505003 0.01000376 0.005551583) (0.005554677 0.010004 0.005052481) (0.005050833 0.01000422 0.005558153) (-0.003027769 0.01800547 0.005559218) (0.003033326 0.01800388 0.00555743) (-0.001013622 0.02200903 0.005573871) (-0.001501728 -0.009500649 -0.008535931) (-0.001502334 0.009500936 -0.008534819) (-0.000750912 0.01099986 -0.008527357) (0.004542368 -0.01400192 0.005047558) (-0.001511408 0.004000901 -0.00705255) (-0.007049694 -0.004001293 -0.001509881) (0.007055243 -0.004001726 -0.001508063) (-0.007033381 2.65195e-07 -0.001511564) (0.007040494 -1.775234e-07 -0.001510273) (-0.007041876 0.004000956 -0.00151093) (0.007040909 0.004000963 -0.00150904) (-0.007065416 -0.007001685 -7.738014e-08) (0.007061398 -0.007002663 9.049661e-07) (-0.007065629 0.007000708 -5.582358e-07) (0.007059107 0.007000416 1.546195e-06) (-0.007043186 -0.003998947 0.001509159) (0.00705455 -0.004002358 0.001509679) (-0.0070328 6.494324e-07 0.001511444) (0.007038172 -6.551456e-07 0.001509795) (-0.007042833 0.004001096 0.001508898) (0.007044348 0.003999938 0.001507878) (0.00403876 -0.01500212 0.005048624) (1.07054e-06 -0.007001645 0.007052294) (-0.001510803 -0.004001927 0.007043298) (0.001511876 -0.004000335 0.007044794) (-0.001512644 -3.21282e-07 0.007038434) (0.001510926 1.018061e-07 0.007039004) (-0.001512081 0.004000664 0.007043631) (0.001512898 0.004000252 0.007050313) (-5.022272e-08 0.00700197 0.007053421) (0.001511294 -0.006000975 -0.007053029) (-0.001511991 0.002000492 -0.007050498) (-0.001509873 0.006001361 -0.007052286) (0.001509669 0.006001423 -0.007052866) (-0.00302602 -0.01900397 -0.005049794) (0.003028255 -0.01900438 -0.005055959) (-0.003529608 -0.01800413 -0.005049948) (-0.005049044 -0.01800615 -0.003531111) (0.003532928 -0.01800482 -0.005057395) (0.005053072 -0.01800423 -0.003534368) (-0.005048068 -0.01100285 -0.005045864) (0.005047378 -0.01100417 -0.005054882) (-0.005042578 0.01100372 -0.005048329) (0.005052511 0.01100521 -0.005058638) (-0.003535432 0.01800454 -0.005052696) (-0.005050638 0.0180059 -0.003531118) (-0.003031042 0.01900441 -0.005052087) (0.003536491 0.01800709 -0.005053787) (0.003031467 0.01900706 -0.005052441) (0.005064738 0.01800632 -0.003537655) (-0.001528253 -0.0300249 -0.003074618) (-0.003054885 -0.03002067 -0.001536386) (0.00152344 -0.03002328 -0.003063091) (0.003049365 -0.03001305 -0.001521505) (-0.005049231 -0.01900661 -0.003027553) (-0.005062671 -0.02201075 -0.001512512) (0.005054325 -0.01900451 -0.003031311) (0.005064051 -0.02200691 -0.00151546) (-0.007061592 -0.006002047 -0.001508676) (0.007056557 -0.006002365 -0.001506771) (-0.007038485 -0.002000595 -0.001510955) (0.007048192 -0.002000884 -0.001509599) (-0.007033809 0.00200082 -0.001511514) (0.007036999 0.00200062 -0.001509681) (-0.007054477 0.006000943 -0.001509756) (0.007052478 0.006001237 -0.001509513) (-0.005052769 0.01900646 -0.003026879) (0.005064578 0.01900641 -0.003032462) (-0.005064582 0.02200826 -0.001512101) (0.005067616 0.02200794 -0.001515985) (-0.001524682 0.03001971 -0.003062235) (-0.003054864 0.03001775 -0.001521533) (0.001524875 0.03002081 -0.003071801) (0.0030549 0.03001825 -0.001532957) (-0.005066622 -0.02301104 -0.001009787) (0.005068481 -0.02300797 -0.00101312) (-0.007065545 -0.007002283 -0.001005379) (0.00705745 -0.007002561 -0.00100388) (-0.007061755 0.007000948 -0.001006103) (0.007058744 0.007001021 -0.001005964) (-0.005067389 0.02300948 -0.001009535) (0.005071488 0.0230093 -0.001012199) (-0.003056231 -0.03001407 0.00152441) (0.003056713 -0.03001585 0.001524023) (0.005067852 -0.02300938 0.001012261) (0.005067023 -0.02200902 0.001515605) (-0.007060211 -0.007001417 0.00100482) (0.007058245 -0.007002609 0.001005695) (-0.00705358 -0.006000464 0.001507887) (0.007058109 -0.006002736 0.001508964) (-0.007034934 -0.001998764 0.001510964) (0.007044313 -0.002001488 0.001510173) (-0.007034896 0.002000583 0.001510006) (0.007038087 0.001999844 0.001508596) (-0.007061558 0.007000931 0.001005489) (-0.007054277 0.006001377 0.001509009) (0.007061894 0.007000222 0.001007521) (0.007056241 0.005999927 0.001508838) (0.005074522 0.0230098 0.001010937) (0.005069779 0.0220085 0.001513927) (-0.003053064 0.03001892 0.001520996) (0.003060971 0.03002118 0.00152853) (-0.001525223 -0.03002084 0.003065732) (0.001522866 -0.03001576 0.003060423) (-0.005052255 -0.0190051 0.003026927) (0.005061122 -0.01900779 0.003035716) (-0.005051192 -0.01800465 0.003531142) (0.005059915 -0.01800629 0.0035402) (-0.005050129 0.01900386 0.003028214) (-0.005049123 0.01800349 0.003531751) (0.00506458 0.01900799 0.003035199) (0.005062965 0.01800802 0.003539353) (-0.001522728 0.03002001 0.003059235) (0.001527971 0.03002456 0.003070809) (-0.00101173 -0.0230124 0.005073517) (-0.001514518 -0.0220111 0.00507043) (-0.00302684 -0.01900486 0.005058609) (0.003033096 -0.01900675 0.00505948) (-0.003530777 -0.01800414 0.005056878) (0.003536977 -0.01800584 0.005058408) (-0.005046798 -0.01100331 0.005050856) (0.005047497 -0.0110025 0.005049919) (-0.005050309 0.01100323 0.005048372) (0.005050887 0.01100427 0.005052678) (-0.003532179 0.01800455 0.005054949) (-0.003029132 0.01900557 0.005056407) (0.003536869 0.0180045 0.005053099) (0.003033566 0.01900479 0.005053516) (-0.001517337 0.02200928 0.00507078) (-0.001014293 0.0230102 0.005073496) (-0.001005109 -0.007002168 0.007054951) (0.001007795 -0.007000846 0.0070583) (-0.001508839 -0.006002192 0.007052015) (0.001512063 -0.006000589 0.007056211) (-0.001512368 -0.00200103 0.007039003) (0.001510753 -0.002000101 0.007038806) (-0.001512312 0.002000211 0.007039255) (0.001512234 0.002000181 0.007043154) (-0.001511398 0.006001514 0.007053156) (-0.00100758 0.007002119 0.007056188) (0.001512681 0.006000896 0.0070588) (0.001008385 0.00700138 0.007059429) (-0.0005014512 -0.006000526 -0.007036477) (-0.001004953 -0.005000419 -0.007037167) (0.0005045993 -0.006000711 -0.007042645) (0.001007642 -0.005000797 -0.00704424) (-0.001006151 -0.003000096 -0.007037088) (-0.0005032707 -0.001999884 -0.00703018) (-0.001007367 -0.000999872 -0.007037592) (0.001007147 -0.003000468 -0.007037073) (0.000503389 -0.001999967 -0.007028554) (0.001006791 -0.0009999451 -0.007032713) (-0.001007818 0.001000298 -0.007038975) (-0.001007795 0.00300053 -0.007042826) (0.001006767 0.001000289 -0.007033182) (0.0005029857 0.002000387 -0.007029944) (0.001006713 0.003000557 -0.007038658) (-0.001007053 0.005000877 -0.00704663) (-0.0005030033 0.006000896 -0.007042447) (0.00100661 0.005001064 -0.007046396) (0.0005034137 0.006001116 -0.007043799) (-0.005044524 -0.009002002 -0.005041228) (0.005039924 -0.009003349 -0.005044823) (-0.005043709 -0.007001437 -0.005040332) (-0.005045432 -0.005001231 -0.00504426) (0.00503983 -0.007002708 -0.005042369) (0.005042549 -0.005002284 -0.005044681) (-0.005045326 -0.003000892 -0.00504731) (-0.005043947 -0.000999854 -0.005047179) (0.005039543 -0.003001914 -0.0050411) (-0.005046359 0.00100172 -0.005047814) (-0.005049349 0.003002467 -0.00504935) (0.005046149 0.003001266 -0.005044658) (-0.005045518 0.005002307 -0.005046933) (-0.005039488 0.007002354 -0.005042678) (0.005049435 0.005001558 -0.005048374) (0.005047703 0.007002089 -0.005047424) (-0.005038129 0.009002919 -0.005043256) (0.005047553 0.009003602 -0.005051054) (-0.007054778 -0.005001387 -0.001007088) (-0.007063448 -0.006001478 -0.0005027601) (0.007060109 -0.005002374 -0.001004367) (0.007063671 -0.006002743 -0.000501398) (-0.007038869 -0.003000846 -0.001007966) (-0.007028876 -0.001000075 -0.00100863) (0.007050215 -0.00300143 -0.0010066) (0.007038848 -0.001000584 -0.001007604) (-0.0070267 0.001000562 -0.001009072) (-0.007033069 0.003000921 -0.001009278) (0.007032023 0.001000177 -0.001007606) (0.007033401 0.003000745 -0.001007106) (-0.007048684 0.005000815 -0.001008251) (-0.007061948 0.006000703 -0.0005035019) (0.007043801 0.005000637 -0.001007065) (0.007052413 0.006000259 -0.0005024016) (-0.007061022 -0.006000993 0.0005024653) (-0.007049148 -0.004999581 0.001006402) (0.007064198 -0.006002862 0.0005033998) (0.00706106 -0.005002734 0.001006362) (-0.007034426 -0.002998514 0.001007764) (-0.007026917 -0.0009989496 0.001008753) (0.007048537 -0.003001917 0.001007996) (0.007035914 -0.001000973 0.001007952) (-0.007026937 0.001000563 0.001008147) (-0.007034078 0.003000741 0.001006898) (0.007031431 0.0009996891 0.001007106) (0.007035466 0.00299995 0.001006371) (-0.007062061 0.006000733 0.0005022977) (-0.007049029 0.005001162 0.001006633) (0.007054743 0.006000081 0.0005043749) (0.007047523 0.004999957 0.001006734) (-0.005044124 -0.009001993 0.005045715) (0.005042127 -0.009001722 0.00504073) (-0.005044997 -0.007001354 0.005045052) (-0.005047943 -0.005001497 0.005048496) (0.005040396 -0.007001287 0.005036149) (0.005044569 -0.005001199 0.005039866) (-0.005047253 -0.003001661 0.005048095) (-0.005042215 -0.001001063 0.005043681) (0.005048251 -0.003001068 0.005043485) (0.005045782 -0.001000579 0.005041554) (-0.005041692 0.00100021 0.005044952) (-0.005047012 0.003001151 0.005050687) (0.00504875 0.003001228 0.00504857) (-0.005048604 0.005001451 0.005050129) (-0.005046062 0.007001641 0.005045928) (0.005052571 0.005001252 0.005052418) (0.005050232 0.007001687 0.005050652) (-0.005046499 0.009002391 0.005045034) (0.005048539 0.009002919 0.005050357) (-0.0005021373 -0.006001952 0.007047526) (-0.001007442 -0.005002285 0.007043716) (0.000504574 -0.006001012 0.007049211) (0.00100965 -0.005000463 0.007046194) (-0.0010091 -0.003001429 0.007034702) (-0.001009944 -0.001000583 0.007032168) (0.001008706 -0.003000189 0.007035171) (0.001008056 -0.0009999939 0.007032157) (-0.001009775 0.0009999588 0.007032336) (-0.001009511 0.003000323 0.007035045) (0.001008816 0.001000089 0.007034325) (0.001009889 0.003000065 0.007040363) (-0.001009499 0.005000988 0.007044244) (-0.000504285 0.006001772 0.007048701) (0.001010124 0.00500042 0.007049716) (0.0005043674 0.006001251 0.00705048) (-0.001251612 -0.00900071 -0.008532285) (-0.001502886 -0.008500767 -0.008534786) (-0.0004985609 -0.009500659 -0.008536116) (-0.0007496157 -0.009000636 -0.0085317) (-0.0004991626 -0.00850071 -0.008536398) (-0.0002480226 -0.009000872 -0.008542539) (-0.001504107 -0.007500696 -0.008537544) (-0.001253171 -0.007000623 -0.008535974) (-0.001504434 -0.006500709 -0.008538268) (-0.0004999621 -0.007500676 -0.008539954) (-0.0007510518 -0.007000593 -0.008537553) (-0.0005007379 -0.006500545 -0.008541306) (-0.0002495044 -0.007000698 -0.008546809) (-0.001504886 -0.005500691 -0.008542324) (-0.001254619 -0.005000521 -0.008543342) (-0.001506236 -0.004500536 -0.008549626) (-0.0005015577 -0.00550024 -0.008537245) (-0.0007527832 -0.005000248 -0.008537877) (-0.0005024606 -0.00450001 -0.008532562) (-0.0002507696 -0.004999986 -0.008532293) (0.001257951 -0.0009988856 -0.008531114) (0.001763195 -0.00100075 -0.008559003) (0.001510205 -0.0004995849 -0.008542366) (-0.0007557201 0.005000471 -0.008556552) (-0.0005028531 0.005500534 -0.008550894) (-0.0002511668 0.005000389 -0.008543631) (-0.000501915 0.00650077 -0.008550939) (-0.0007533177 0.007000647 -0.008549486) (-0.0005009972 0.007500506 -0.008539763) (-0.0002498818 0.007000878 -0.00854623) (-0.001505178 0.008501134 -0.008541174) (-0.001252564 0.009000433 -0.008533344) (-0.0005004161 0.00849993 -0.008527786) (-0.0007509792 0.00899958 -0.008526816) (-0.0005004356 0.009499677 -0.008525838) (-0.0002496878 0.009000065 -0.008525191) (-0.0005007737 0.01050003 -0.008529304) (-0.0002506275 0.01100023 -0.008530143) (0.0002534111 0.007001693 -0.008553889) (0.0005045785 0.006501958 -0.008560942) (0.0005046131 0.007502036 -0.008554123) (0.000252086 0.009001218 -0.008530517) (0.0005034832 0.008501659 -0.008539988) (0.0005025649 0.009501893 -0.00853161) (-0.0002487639 -0.008000877 -0.008545803) (2.309595e-06 -0.008501109 -0.008551295) (1.509127e-06 -0.007500947 -0.008553158) (1.107785e-06 -0.005000434 -0.007034971) (-0.0005023458 -0.004000213 -0.007032722) (0.000503946 -0.004000443 -0.007034475) (3.736853e-07 -0.003000067 -0.007029007) (-1.683987e-07 -0.0009997314 -0.007026034) (-0.0005038242 2.790194e-07 -0.007029727) (0.0005031011 3.087087e-07 -0.007026807) (-4.54247e-07 0.001000336 -0.007026884) (0.002015049 -0.0005011103 -0.008565313) (0.001762892 -2.543601e-07 -0.008553624) (-0.0005038307 0.004000577 -0.00703879) (0.0005031273 0.004000674 -0.007037708) (-8.500099e-08 0.005000769 -0.00703967) (-0.0002495415 0.008000469 -0.008533869) (1.689113e-06 0.007501064 -0.008543116) (1.369814e-06 0.008500658 -0.008530566) (0.0002529405 0.008001373 -0.008541897) (0.007059334 -0.004002465 -0.0005018029) (0.007063769 -0.005002838 1.097295e-06) (0.007059947 -0.004002633 0.0005039022) (-0.001002216 -0.006500571 -0.008537124) (-0.001253648 -0.006000631 -0.008538815) (-0.0007518882 -0.006000481 -0.00853913) (-0.001003131 -0.005500474 -0.008539689) (-0.001007219 0.005500726 -0.008564273) (-0.0007546167 0.006000734 -0.008558021) (-0.001005669 0.006500801 -0.008559941) (-0.0002478254 -0.01000078 -0.008543283) (2.736238e-06 -0.009500949 -0.008547597) (-0.00100085 -0.008500669 -0.008530749) (-0.001252387 -0.008000718 -0.008533441) (-0.0007502995 -0.008000646 -0.008533713) (-0.001001531 -0.007500605 -0.008533819) (-0.0002501948 -0.006000328 -0.008541183) (9.074084e-07 -0.006500534 -0.008548179) (2.581753e-07 -0.005500012 -0.008535437) (-0.001004232 -0.00450027 -0.008541354) (-0.001255961 -0.004000348 -0.008547989) (-0.000753504 -0.004000032 -0.008535191) (0.001006433 -0.0004984004 -0.008521337) (0.001257918 1.242756e-06 -0.008528633) (-0.0002505607 0.006000812 -0.008550164) (2.849034e-07 0.005500648 -0.008545647) (1.437221e-06 0.006501171 -0.00855146) (0.0002529564 0.006001415 -0.008556353) (-0.001003834 0.007500516 -0.008544404) (-0.001255125 0.008000862 -0.008540988) (-0.0007518618 0.008000193 -0.008534148) (-0.001002463 0.008500111 -0.00853202) (-0.0002502924 0.01000025 -0.008527801) (7.268323e-07 0.009500668 -0.008525957) (-2.973835e-07 0.01050056 -0.008530837) (0.0002514698 0.01000158 -0.008529284) (0.0002491972 -0.003498152 -0.009947845) (0.0004975217 -0.003497851 -0.009694223) (0.0002498655 -0.002997797 -0.009711237) (0.0002494064 -0.003498051 -0.009458239) (-0.001495803 0.000500164 -0.009673639) (0.002255763 0.0005006131 -0.009518816) (0.002423022 0.000469583 -0.009695483) (0.002247264 0.0008582837 -0.009704931) (-0.001003769 -0.007000699 -0.007538872) (-0.001507769 -0.006000761 -0.007542687) (-0.001507916 -0.007000896 -0.007041908) (2.069149e-06 -0.007000755 -0.007544213) (0.001008748 -0.007001078 -0.007560392) (0.0005049963 -0.006000754 -0.007546849) (0.0005048064 -0.007000845 -0.00704628) (-0.00150877 -0.004000353 -0.00754599) (-0.001006209 -0.00300006 -0.007538141) (-0.001511291 -0.002000095 -0.00755106) (-0.00150969 -0.003000167 -0.007045094) (0.0005040259 -0.004000491 -0.007534373) (3.884451e-07 -0.00299996 -0.007526656) (0.00100736 -0.003000572 -0.007538301) (0.000503374 -0.001999818 -0.007526143) (0.0005036347 -0.003000212 -0.007031036) (-0.001512477 8.100975e-08 -0.007552797) (-0.001007976 0.001000278 -0.007539095) (-0.00151252 0.00200048 -0.007555069) (-0.001511941 0.001000308 -0.00704966) (0.0005030196 4.562979e-07 -0.007523534) (-5.01619e-07 0.001000357 -0.007523134) (0.001006724 0.001000352 -0.007531709) (0.0005028523 0.002000366 -0.007526995) (0.0005030149 0.001000345 -0.007027647) (-0.001512053 0.004000913 -0.007558324) (-0.001007429 0.005000852 -0.007550656) (-0.001510367 0.00600141 -0.007558655) (-0.001510698 0.005001133 -0.007053276) (0.0005030898 0.004000654 -0.007537847) (-4.200945e-08 0.00500074 -0.00754073) (0.001006823 0.005001251 -0.007551332) (0.0005036693 0.006001267 -0.007547628) (0.0005032615 0.005000903 -0.007041778) (-0.003027164 -0.01900437 -0.00555624) (-0.003530243 -0.01800447 -0.005555729) (-0.003530949 -0.01900449 -0.005052246) (0.003028994 -0.01900434 -0.005562241) (-0.005050356 -0.01100299 -0.005552833) (-0.005552835 -0.01000299 -0.005550866) (-0.005555438 -0.0110033 -0.005048512) (0.005049414 -0.01100462 -0.005562582) (-0.005547165 -0.008001824 -0.00554287) (-0.005045953 -0.007001525 -0.005545254) (-0.005551365 -0.006001625 -0.005547719) (-0.005546921 -0.007001522 -0.005039966) (4.28753e-07 -0.006000755 -0.005031204) (-0.001006975 -0.004000384 -0.005031512) (-0.001007131 -0.006000706 -0.004028456) (0.001007013 -0.004000633 -0.005031442) (0.001007292 -0.006000952 -0.004028665) (0.005041074 -0.007002962 -0.005547553) (-0.005554545 -0.00400158 -0.005554986) (-0.005047522 -0.003001031 -0.005553581) (-0.00555071 -0.002000951 -0.005554757) (-0.005550309 -0.003001158 -0.005049127) (-9.429283e-08 -0.002000158 -0.005029585) (-0.001007569 2.149845e-07 -0.005032275) (-0.001007499 -0.002000107 -0.004028461) (0.001006862 2.807622e-08 -0.005030666) (0.001006986 -0.002000306 -0.004027624) (0.005040497 -0.003002219 -0.005547133) (-0.005549255 1.126734e-06 -0.005552461) (-0.005048685 0.001002152 -0.005554075) (-0.005557614 0.00200313 -0.005556654) (-0.005551124 0.001001859 -0.005048388) (-2.022075e-07 0.00200041 -0.005030702) (-0.001007381 0.004000807 -0.005033868) (-0.001007617 0.002000484 -0.004029414) (0.001007258 0.004000679 -0.005032894) (0.001007238 0.002000342 -0.004028401) (-0.00555933 0.00400311 -0.005558739) (-0.005048459 0.00500258 -0.005552842) (-0.005548591 0.006002457 -0.005551358) (-0.00555014 0.005002398 -0.005048506) (2.186834e-07 0.006000989 -0.005032964) (-0.001007159 0.006001073 -0.004030284) (0.001007794 0.006000988 -0.004029917) (0.005052227 0.005001665 -0.005554637) (-0.005540282 0.008002732 -0.005545368) (-0.00503788 0.009003118 -0.005548498) (-0.00554378 0.0100038 -0.005551731) (-0.005542021 0.009003127 -0.005042962) (0.005047293 0.009004019 -0.005556463) (-0.003536758 0.01800513 -0.005558708) (-0.001022798 -0.03102648 -0.003582232) (-0.001528935 -0.03002604 -0.00358355) (-0.001531167 -0.03102793 -0.003080372) (0.001019776 -0.0310281 -0.003578032) (9.491901e-07 -0.02200638 -0.003033804) (-0.001007993 -0.02000445 -0.003029339) (-0.001009945 -0.02200631 -0.002025799) (0.00101012 -0.02000473 -0.003030596) (0.0010118 -0.02200637 -0.002026413) (0.004565161 -0.02400882 -0.003547123) (-0.005050101 -0.01900679 -0.003531674) (-0.005555344 -0.01800701 -0.003532739) (-0.005555446 -0.01900755 -0.003029523) (-0.002016046 -0.01800343 -0.003025807) (-0.00302366 -0.01600306 -0.003023918) (-0.003026657 -0.01800402 -0.0020166) (9.72444e-07 -0.01800345 -0.003027367) (-0.00100698 -0.01600263 -0.003025025) (-0.001008067 -0.01800351 -0.002021226) (0.002018394 -0.0180037 -0.003027953) (0.001008939 -0.01600286 -0.003025975) (0.001009927 -0.01800362 -0.002021984) (0.003026209 -0.01600322 -0.00302641) (0.003028585 -0.01800379 -0.002018212) (0.005056969 -0.01900473 -0.003537545) (-0.002014731 -0.0140022 -0.003023128) (-0.003022889 -0.01200196 -0.003022352) (-0.003023831 -0.01400249 -0.002015169) (8.673182e-07 -0.01400221 -0.003024142) (0.002016513 -0.01400255 -0.003024522) (0.001008348 -0.01200207 -0.003023692) (0.001008795 -0.01400235 -0.002019342) (0.003023749 -0.01200237 -0.003023818) (0.003024747 -0.01400257 -0.002016029) (-0.002017332 -0.01000142 -0.003022225) (-0.003023188 -0.008001173 -0.003022019) (-0.003023556 -0.01000158 -0.00201699) (0.00201763 -0.01000187 -0.003022882) (0.00302235 -0.00800169 -0.003022152) (0.003023132 -0.01000189 -0.002017263) (-0.002017759 -0.006000747 -0.003021851) (-0.003022493 -0.004000462 -0.003022492) (-0.003022785 -0.006000832 -0.002017307) (0.002017152 -0.006001186 -0.003021529) (0.003021482 -0.004000949 -0.003021312) (0.003021976 -0.006001251 -0.002016756) (-0.002017457 -0.002000105 -0.003022496) (-0.00302202 2.581452e-07 -0.003023373) (-0.003021572 -0.002000141 -0.002017938) (0.002016776 -0.002000466 -0.003021119) (0.003021277 -1.291175e-07 -0.003021378) (0.003021222 -0.002000515 -0.002016628) (-0.002017399 0.002000528 -0.003023039) (-0.003022034 0.004000904 -0.003023392) (-0.003021277 0.002000499 -0.002018261) (0.002017344 0.002000286 -0.003021715) (0.003022818 0.004000706 -0.00302252) (0.003021612 0.002000276 -0.00201716) (-0.002017335 0.006001127 -0.003023056) (-0.00302234 0.008001556 -0.003023325) (-0.003022015 0.006001082 -0.002018114) (0.002018824 0.006001039 -0.003022752) (0.003025349 0.008001567 -0.003023753) (0.003023944 0.006001081 -0.002018049) (-0.002017269 0.01000182 -0.003023645) (-0.003023231 0.01200241 -0.00302406) (-0.003023237 0.01000181 -0.002018009) (0.002020051 0.01000187 -0.003024001) (0.003027669 0.01200255 -0.003025081) (0.003027114 0.010002 -0.002018691) (-0.002015792 0.01400267 -0.003024756) (-0.003025506 0.01600349 -0.003025537) (-0.003024439 0.01400274 -0.002016164) (-0.00100812 0.01600313 -0.003026283) (0.002018584 0.01400278 -0.00302503) (0.001009461 0.01600322 -0.003026246) (0.003029956 0.01600381 -0.003026661) (0.003029237 0.01400306 -0.002017055) (-0.005556077 0.01800678 -0.003532198) (-0.002018006 0.01800401 -0.003027112) (-0.003028015 0.01800421 -0.002017026) (1.899606e-07 0.01800398 -0.003027945) (-0.001009844 0.02000516 -0.003030339) (-0.001009103 0.018004 -0.002021944) (0.002019852 0.01800429 -0.003027332) (0.001009757 0.02000526 -0.003030172) (0.001010488 0.01800412 -0.002022068) (0.003032124 0.01800456 -0.002018162) (-6.272613e-07 0.02200698 -0.003034298) (-0.00101137 0.02200695 -0.002025943) (0.001011423 0.02200704 -0.002026157) (-0.004053713 0.0250105 -0.003537761) (-0.001524783 0.03002025 -0.003571447) (-0.001038102 -0.0350439 -0.00154967) (-0.001546757 -0.03404008 -0.001549759) (-0.001549378 -0.03504132 -0.001037451) (-0.00305957 -0.03102396 -0.0015408) (-0.003560535 -0.03002036 -0.001535346) (-0.003561661 -0.03101978 -0.001027794) (-1.086919e-06 -0.03002081 -0.001022316) (-0.001016508 -0.02801516 -0.001019714) (-0.001019891 -0.03001945 -1.219284e-06) (0.001015189 -0.02801453 -0.001017437) (0.00101703 -0.03001905 4.050127e-07) (0.003050857 -0.03101435 -0.001522393) (-1.65633e-07 -0.02601142 -0.001015865) (-0.001012983 -0.02400921 -0.001013818) (-0.001015006 -0.02601109 2.216016e-07) (0.001013592 -0.02400899 -0.001013484) (0.001014424 -0.02601075 9.013004e-07) (-0.005066972 -0.0230115 -0.00151338) (-0.005570239 -0.02201264 -0.001512836) (-0.005573383 -0.02301252 -0.001009832) (-0.002026042 -0.02200657 -0.001010494) (-0.003031236 -0.02000545 -0.001008724) (-0.003035971 -0.02200702 6.876874e-07) (0.002027635 -0.02200624 -0.001010971) (0.003032758 -0.02000492 -0.001009561) (0.003036876 -0.02200647 7.023512e-07) (0.005070074 -0.02300776 -0.001517197) (-0.002021981 -0.01800393 -0.001008324) (-0.003026042 -0.01600324 -0.001007745) (-0.003028793 -0.01800432 3.89532e-07) (0.002023453 -0.01800382 -0.001008816) (0.00302706 -0.01600309 -0.001007978) (0.003030055 -0.01800403 7.46649e-07) (-0.002019326 -0.01400244 -0.001007678) (-0.003024143 -0.01200217 -0.001007568) (-0.003024554 -0.01400259 -7.400148e-08) (0.00202021 -0.01400249 -0.001007798) (0.003024221 -0.01200219 -0.001007424) (0.003025288 -0.01400251 6.278881e-07) (-0.007065103 -0.007002712 -0.001508337) (-0.007569064 -0.006002244 -0.001508665) (-0.00757486 -0.007002455 -0.00100521) (0.0070554 -0.007002563 -0.001506686) (-0.007555086 -0.004001676 -0.001510472) (-0.007044041 -0.00300106 -0.001510567) (-0.007540223 -0.002000916 -0.001511327) (-0.007539668 -0.003001178 -0.001008217) (-0.004026911 -0.002000181 -0.001007548) (-0.005027932 1.658307e-07 -0.00100753) (-0.005027574 -0.002000076 -6.966946e-08) (0.004028361 -0.002000641 -0.001006656) (0.005030204 -2.590696e-07 -0.001006633) (0.005031139 -0.002000787 2.41661e-07) (0.007052454 -0.003001288 -0.00150902) (-0.007533872 3.042785e-07 -0.001511953) (-0.007033075 0.001000594 -0.001511793) (-0.007534309 0.002001068 -0.001512188) (-0.007523497 0.001000695 -0.00100944) (-0.00402636 0.002000409 -0.001007691) (-0.005027057 0.002000383 -2.066016e-07) (0.004027593 0.00200018 -0.001007043) (0.005032146 0.004000594 -0.001006913) (0.00502873 0.002000042 2.464484e-08) (0.007038265 0.001000241 -0.001510228) (-0.00754539 0.004001248 -0.001511933) (-0.007048707 0.005000899 -0.001510449) (-0.007561179 0.006001048 -0.001509723) (-0.007554835 0.005000861 -0.001008686) (0.004031919 0.006001025 -0.001007443) (0.007046254 0.005001031 -0.001509277) (-0.003024374 0.01200219 -0.001008036) (0.003028881 0.01200262 -0.001008329) (-0.002019804 0.01400255 -0.001008149) (-0.003026662 0.0160033 -0.001008067) (-0.003024962 0.01400245 -1.480241e-07) (0.002023516 0.01400288 -0.001008429) (0.003031104 0.01600368 -0.001008582) (0.003029336 0.01400299 1.585966e-07) (-0.002022835 0.01800408 -0.00100853) (-0.003032261 0.02000541 -0.001008464) (-0.003029316 0.01800414 5.222032e-07) (0.002025918 0.01800438 -0.001009) (0.003035373 0.02000567 -0.001009393) (0.003033085 0.01800453 3.542598e-07) (-0.00557238 0.02200919 -0.001513032) (-0.002027068 0.02200689 -0.001009913) (-0.003036536 0.02200703 1.386885e-06) (-0.001013467 0.02400988 -0.001012841) (0.002028879 0.02200719 -0.001010809) (0.001013916 0.02401003 -0.001013521) (0.003039143 0.02200744 5.423813e-07) (1.143992e-07 0.02601217 -0.001015351) (-0.001016026 0.02801547 -0.001016629) (-0.001014583 0.02601202 1.289471e-06) (0.001016135 0.0280156 -0.00101836) (0.001015605 0.0260123 1.000495e-06) (-0.003561771 0.03001805 -0.001521183) (3.226022e-08 0.0300213 -0.001020807) (-0.001018714 0.03002096 1.505363e-06) (0.001018949 0.03002117 1.267302e-06) (-0.00356364 -0.03101336 0.00101947) (-1.239411e-06 -0.0300195 0.001021301) (-0.00101692 -0.02801433 0.001018156) (0.001015332 -0.02801372 0.001018475) (-3.062504e-07 -0.02601119 0.001017415) (-0.001013812 -0.02400941 0.001015795) (0.001013715 -0.02400907 0.001015982) (-0.002027268 -0.02200699 0.001012856) (-0.003032099 -0.02000568 0.001010352) (-0.0010112 -0.02200739 0.002030655) (0.002028104 -0.02200659 0.001013308) (0.001012155 -0.02200709 0.002030804) (0.003033581 -0.0200054 0.001011278) (-0.002022304 -0.01800418 0.001010072) (-0.003025772 -0.01600329 0.001008123) (-0.003027269 -0.01800431 0.002018531) (-0.001008557 -0.01800431 0.002024924) (0.002023994 -0.01800409 0.001010841) (0.001010312 -0.01800428 0.002025319) (0.003027586 -0.01600323 0.001009482) (0.003030098 -0.01800443 0.002020231) (-0.002019023 -0.01400254 0.001008374) (-0.003023373 -0.01200218 0.001007413) (-0.003022881 -0.01400257 0.002015702) (-0.001007241 -0.01400262 0.002021066) (0.002020451 -0.01400254 0.001009288) (0.001008989 -0.01400262 0.002021473) (0.003024407 -0.01200212 0.001008515) (0.003025223 -0.01400254 0.002017303) (-0.003022124 -0.01000161 0.002017368) (0.003023351 -0.01000158 0.002017835) (-0.007577375 -0.007001884 9.847127e-08) (-0.007064566 -0.007001562 0.0005023392) (-0.007570816 -0.006000963 0.0005025171) (-0.00756952 -0.007001589 0.001004732) (-0.003021725 -0.006000857 0.002017565) (0.003022518 -0.006001011 0.002017052) (0.007061025 -0.007002668 0.0005031702) (-0.007534139 -0.002997627 0.001008046) (-0.00402644 -0.002000154 0.001007391) (-0.005027671 1.724813e-07 0.001007323) (-0.003021101 -0.002000276 0.002017666) (0.00402849 -0.002000678 0.001007072) (0.003022003 -0.00200047 0.002016994) (0.005030187 -4.179838e-07 0.001006821) (-0.0075238 0.001000588 0.001008283) (-0.004026311 0.002000319 0.001007447) (-0.003021141 0.00200028 0.002017876) (0.00402785 0.002000033 0.001007238) (0.003022333 0.002000159 0.00201771) (-0.00757257 0.006000683 0.0005020239) (-0.007554866 0.005001472 0.001006555) (-0.003022086 0.006000777 0.002018083) (0.003024045 0.006000856 0.002018907) (-0.003022957 0.01000126 0.00201786) (0.003028065 0.01200251 0.001008697) (0.003026084 0.01000179 0.002019504) (-0.003026207 0.01600299 0.001008362) (-0.00302357 0.01400214 0.00201598) (-0.001007278 0.01400241 0.002021159) (0.002023164 0.01400286 0.001009145) (0.001010079 0.01400265 0.002021614) (0.003030591 0.01600367 0.001009096) (0.003027938 0.01400298 0.002017574) (-0.002022696 0.01800399 0.001010249) (-0.003032506 0.02000533 0.001010852) (-0.003027607 0.0180039 0.002018849) (-0.001008574 0.0180041 0.002024733) (0.002026093 0.01800451 0.001010294) (0.001011211 0.01800436 0.00202469) (0.003035806 0.02000592 0.001010538) (0.003032087 0.01800477 0.002019451) (-0.002027515 0.02200699 0.001013331) (-0.001013428 0.02401005 0.00101614) (-0.001011193 0.02200734 0.002030464) (0.002029845 0.02200763 0.001012613) (0.00101498 0.02401052 0.001015989) (0.001012983 0.02200776 0.002029917) (6.531527e-07 0.02601255 0.001017852) (-0.001015715 0.02801573 0.001018753) (0.001017438 0.02801643 0.001019817) (5.391536e-07 0.03002213 0.001023234) (-0.001526994 -0.03102335 0.0030706) (5.360949e-07 -0.02200767 0.003040378) (-0.001009175 -0.02000591 0.003035317) (0.001010765 -0.02000577 0.003035442) (-0.005559501 -0.0190054 0.003027521) (-0.002017064 -0.01800439 0.003030136) (-0.003023842 -0.01600332 0.003026073) (8.131497e-07 -0.01800445 0.003031764) (-0.001007263 -0.01600341 0.00302851) (0.002019529 -0.01800446 0.003031008) (0.00100915 -0.0160034 0.003028873) (0.003027252 -0.01600341 0.003027983) (-0.002014554 -0.01400261 0.003025396) (-0.003021662 -0.0120021 0.003023521) (8.001587e-07 -0.0140027 0.003026858) (-0.001006799 -0.01200224 0.003025581) (0.002016762 -0.01400258 0.003026113) (0.001008318 -0.01200222 0.003025834) (0.003023746 -0.01200197 0.003024378) (-0.002016538 -0.0100016 0.003023781) (-0.003021899 -0.008001233 0.003022928) (0.002017715 -0.01000155 0.003023812) (0.003022691 -0.008001238 0.003022343) (-0.002017108 -0.006000888 0.003022516) (-0.003021883 -0.004000614 0.003022567) (-0.001006948 -0.006000978 0.004030218) (0.00201772 -0.006000922 0.003021939) (0.001007548 -0.006000893 0.004030031) (0.003022463 -0.004000724 0.003021551) (-0.002017136 -0.002000321 0.003021959) (-0.00302169 -2.613571e-08 0.003022638) (-0.001007332 -0.00200037 0.004027544) (0.002017784 -0.002000375 0.003021434) (0.001007698 -0.002000311 0.004027433) (0.003022573 -1.256238e-07 0.003022015) (-0.002017224 0.002000287 0.00302224) (-0.003022099 0.004000591 0.003023101) (-0.001007345 0.002000295 0.00402803) (0.002018264 0.002000243 0.003022398) (0.001008089 0.002000298 0.004028458) (0.003023642 0.004000546 0.003023585) (-0.002017449 0.006000848 0.003023059) (-0.003022621 0.008001079 0.00302347) (-0.001007046 0.006000963 0.00403108) (0.002019267 0.006000924 0.003024224) (0.001008526 0.006000973 0.00403211) (0.003025124 0.008001344 0.003025168) (-0.002017132 0.01000139 0.003024069) (-0.003022676 0.01200167 0.00302379) (-0.001006837 0.012002 0.003025753) (0.002019777 0.01000178 0.003025741) (0.001009424 0.01200222 0.003026452) (0.003026325 0.01200243 0.003025827) (-0.002015038 0.01400228 0.003025394) (-0.003024349 0.01600287 0.003026151) (1.258865e-06 0.01400248 0.003026992) (-0.0010073 0.01600308 0.003028366) (0.002018344 0.01400277 0.003026572) (0.00101009 0.01600326 0.003028628) (0.003029206 0.01600388 0.003027712) (-0.002017464 0.01800405 0.003029906) (1.187289e-06 0.01800416 0.003031254) (-0.001009369 0.02000557 0.003034871) (0.002020758 0.0180045 0.003029869) (0.001011517 0.02000578 0.003034216) (7.138521e-07 0.02200763 0.003039585) (-0.003550419 -0.02401452 0.004575949) (-0.001516288 -0.02301333 0.005077101) (-0.003531481 -0.01900454 0.005060194) (0.004543874 -0.01500198 0.005049612) (-0.005553888 -0.01100362 0.005054491) (-0.005549983 -0.007001379 0.00504625) (3.795232e-07 -0.006001003 0.005033699) (-0.001007074 -0.004000789 0.005031805) (0.001007528 -0.004000598 0.005031745) (-0.005553513 -0.003002093 0.005050816) (9.52257e-08 -0.002000363 0.005028526) (-0.001007448 -7.740089e-08 0.005029831) (0.001007697 -3.291795e-09 0.005030098) (-0.005546336 0.001000049 0.005045966) (2.52782e-07 0.002000276 0.005029383) (-0.001007278 0.004000658 0.005032702) (0.001008266 0.004000621 0.005033938) (-0.005553883 0.005001495 0.005052044) (6.277795e-07 0.006001024 0.005035157) (-0.005552051 0.0090023 0.00504637) (0.003045417 0.02501626 0.004575745) (-0.001508312 -0.007002036 0.007057125) (0.0005043102 -0.007001192 0.00705529) (-0.001511938 -0.003001503 0.007040799) (-0.001512707 0.0009999679 0.007038987) (-0.001512076 0.005001037 0.00704849) (-0.0002484237 -0.008500868 -0.008543303) (-0.0002492592 -0.007500788 -0.008546234) (-0.001498583 -0.0005011195 -0.009714357) (0.001762656 -0.0005004903 -0.008554922) (-0.001903481 0.007381173 -0.009672613) (-0.00174092 0.007138426 -0.009684124) (-0.00182169 0.007637537 -0.009595357) (-0.0002496377 0.007500709 -0.008540348) (-0.0002495334 0.008500203 -0.008528117) (0.0002480772 0.003497391 -0.009954694) (0.0002477604 0.002997952 -0.009712457) (0.000248442 0.003497914 -0.009462607) (0.0004958121 0.003497621 -0.009697579) (0.0002531571 0.007501537 -0.008548046) (0.0002524136 0.008501184 -0.008534628) (-0.0002492321 -0.0100024 -0.009306771) (3.667134e-06 -0.00950094 -0.009291071) (-0.0002478105 -0.009500965 -0.009039988) (-0.0007487389 -0.002499951 -0.009497883) (-0.0007512957 -0.001998301 -0.009248059) (-0.000746466 -0.001998747 -0.009706058) (-0.001075198 -0.002655164 -0.009833147) (-0.0007434772 -0.002499671 -0.009943233) (-0.0002484837 -0.001997588 -0.009232475) (-0.00075029 -0.001497536 -0.009482308) (-0.0004992582 -0.001497762 -0.009236309) (-0.0007504417 -0.0009981498 -0.009237873) (-0.001004411 -0.001497376 -0.009253366) (-0.000752256 -0.00149824 -0.009000158) (-0.0007436572 -0.001499579 -0.009945273) (-0.001002901 -0.001496262 -0.009731528) (2.115342e-06 -0.001496158 -0.009232715) (-0.0002490289 -0.001497424 -0.008987149) (-0.0007491155 6.542601e-07 -0.009230953) (-0.001000528 -0.0004987512 -0.009234193) (-0.0007510787 -0.0004988144 -0.008991772) (0.000501994 -0.001494701 -0.00923009) (0.0002514664 -0.001996285 -0.009228258) (0.0002518552 -0.001496089 -0.008984109) (-0.0007479004 0.001499526 -0.009468575) (-0.0007492184 0.0009998543 -0.009228934) (-0.0007461436 0.0009996517 -0.00971265) (-0.0007471178 0.0005000307 -0.009470522) (-0.0007435443 0.0004997936 -0.009967557) (-0.0009939024 0.0005003734 -0.009698456) (-0.0004992972 0.0004999894 -0.009231594) (-0.0002502609 0.000999372 -0.009232322) (-9.108632e-07 0.0004997922 -0.009234489) (-0.0002501584 0.0005002034 -0.008985288) (-0.0007466242 0.001999117 -0.009703909) (-0.0007457422 0.001499139 -0.00995951) (-0.0009957298 0.001499941 -0.00969752) (-0.000999145 0.0005003255 -0.009227828) (-0.0007504929 0.0005002533 -0.008987545) (-0.0007501789 0.002999492 -0.00971057) (-0.0007582376 0.003494984 -0.009533639) (-0.0007527412 0.003502662 -0.009918184) (-0.001017497 0.00360929 -0.009830013) (-0.001256782 -0.00249985 -0.009561075) (-0.001496414 -0.002500439 -0.009826804) (-0.001334444 -0.00188519 -0.009839591) (-0.001239577 -0.002393479 -0.009923566) (0.000746157 -0.002997105 -0.009691985) (0.0007473982 -0.003498795 -0.009450136) (0.0007461061 -0.003997594 -0.009676759) (0.0009930998 -0.003497317 -0.009676922) (0.0007547146 -0.003497033 -0.00993216) (0.0004985775 -0.002496713 -0.00970935) (0.0002506571 -0.00249697 -0.009469433) (0.0002505428 -0.002497073 -0.009971367) (0.0004995278 -0.003498421 -0.009218979) (0.0002502779 -0.002997922 -0.009222622) (0.0002493522 -0.003998421 -0.009222347) (0.0002501505 -0.003498647 -0.008981305) (0.0002472787 0.001498891 -0.009479456) (0.000495125 0.001499427 -0.009725121) (0.0002469969 0.001998698 -0.009727787) (0.0002465753 0.001498391 -0.009987098) (0.0004990149 0.0005014767 -0.00923219) (0.0002482244 0.0009996367 -0.009232403) (0.0002495055 0.0005008422 -0.008985091) (0.0007493172 0.001001724 -0.009233447) (0.0007515166 0.0005024013 -0.008991049) (0.0007454536 0.001500359 -0.009465731) (0.0009925561 0.001500828 -0.009701186) (0.0007438587 0.001999546 -0.009706305) (0.0007487971 0.001506119 -0.009960437) (0.0007531934 0.005500782 -0.009554117) (0.0008234698 0.005140656 -0.009833964) (0.0007502096 0.004498401 -0.00947594) (0.000743949 0.003997627 -0.009683657) (0.001001389 0.004499213 -0.009709211) (0.0007518634 0.004483389 -0.009917468) (0.001004848 0.005534553 -0.009827975) (0.0006851251 0.005354115 -0.009905246) (0.0005027093 0.009503276 -0.009264886) (0.0002500306 0.01000296 -0.009264117) (0.0002512947 0.00950192 -0.009020219) (0.0007508875 0.009499358 -0.009501332) (0.00100225 0.009503479 -0.009291396) (0.000757245 0.01000704 -0.009285083) (0.0007543119 0.009503874 -0.009036173) (0.0009149685 0.009468687 -0.009671175) (0.0007406414 0.00984744 -0.009660602) (-0.001503266 -0.009500855 -0.009270883) (-0.001249291 -0.0100001 -0.009276223) (-0.00125194 -0.009500861 -0.009029047) (-0.001754457 -0.009511732 -0.009494585) (-0.001747988 -0.009998729 -0.009232481) (-0.001996746 -0.009499731 -0.00922369) (-0.00175021 -0.00949997 -0.009007229) (-0.0002513377 0.01100093 -0.009294127) (-1.152604e-06 0.01050178 -0.009302231) (-0.000251497 0.01050183 -0.009042191) (0.0007471108 -0.004498589 -0.009442024) (0.0007455045 -0.004997423 -0.009662886) (0.0009942017 -0.004497249 -0.009660522) (0.0007506543 -0.004501511 -0.009897657) (0.0002490129 -0.004997938 -0.009243521) (0.0004990346 -0.004498483 -0.009224727) (0.0002496969 -0.004498745 -0.008992733) (0.000499257 -0.005498984 -0.009265951) (0.0002506709 -0.005998708 -0.009294386) (0.0002501704 -0.005498697 -0.00902603) (0.0002346495 -0.009834979 -0.009688348) (0.000255354 -0.01000058 -0.009321938) (0.0002509831 -0.007000873 -0.009316096) (0.0004990206 -0.007501011 -0.00933837) (0.0002491631 -0.008001162 -0.009344971) (0.0002510743 -0.007501392 -0.009081344) (0.0005001672 -0.006500053 -0.009296745) (0.0002511651 -0.006500247 -0.009059273) (-0.001244411 0.001000508 -0.009679794) (-0.00124725 0.0005005185 -0.009454617) (-0.001242048 2.741549e-07 -0.00968305) (-0.001248572 0.0005013481 -0.009916692) (-0.002519505 -0.01400312 -0.006562707) (-0.002015745 -0.01500301 -0.006561107) (-0.002518243 -0.01500295 -0.006058126) (-0.002523235 0.01400507 -0.006570519) (-0.002019946 0.01500428 -0.006569942) (-0.002522566 0.01500451 -0.006065699) (0.002520748 0.01400345 -0.006565053) (0.002016421 0.01500324 -0.006562155) (0.002520998 0.01500332 -0.006060732) (0.004572618 -0.02500992 -0.003045185) (0.004064789 -0.02500994 -0.003553393) (-0.00456284 0.02501093 -0.003031231) (-0.004554384 0.02400852 -0.003532193) (-0.006556252 0.01400046 0.002516038) (-0.006553638 0.01500152 0.00201266) (-0.006051379 0.01500171 0.002516641) (-0.003046857 -0.0250168 0.004582096) (-0.003552807 -0.02501487 0.004070408) (0.00354789 0.02401479 0.004566571) (0.003551323 0.02501631 0.004065726) (-0.00125021 -0.01000042 -0.008780826) (-0.001264152 -0.001494705 -0.009535571) (-0.001512541 -0.001516246 -0.009833782) (-0.001246612 -0.001001016 -0.009733083) (-0.001249828 -0.0004994041 -0.009468652) (-0.001248646 -0.0004919537 -0.009916197) (-0.00125262 -0.001487147 -0.009927509) (-0.001511076 0.006500797 -0.00938146) (-0.001260788 0.006500924 -0.009094131) (-0.001745316 0.01050934 -0.009426951) (-0.001743386 0.01100084 -0.009220246) (-0.00174933 0.01049923 -0.009004435) (-0.001997211 0.01049748 -0.009215603) (-0.001500436 0.01050013 -0.008771626) (-0.001250458 0.01099986 -0.008770226) (-0.001251658 0.01050022 -0.008530547) (-0.001250415 0.01000005 -0.008777777) (-0.001000403 0.01049987 -0.008776094) (0.0002583356 -0.009502281 -0.009537135) (0.0004181263 -0.009470241 -0.009710892) (0.0002549903 -0.009002774 -0.009326237) (0.0005030254 -0.008502536 -0.009387872) (0.0002533488 -0.008502295 -0.009089992) (0.0005174183 -0.009509761 -0.009352409) (0.0002566325 -0.009503062 -0.009072163) (0.0002463079 0.01062172 -0.009562196) (0.0004047924 0.01034184 -0.009658188) (0.000248028 0.01099881 -0.009297318) (0.0004995313 0.01049938 -0.009282765) (0.0002484055 0.01050251 -0.00904257) (0.004543906 -0.01400203 0.005551393) (0.004040099 -0.01500218 0.005553792) (-0.0005012312 -0.006000509 -0.0075374) (-0.0005010301 -0.007000649 -0.0070382) (-0.001004692 -0.005000408 -0.007538001) (-0.001508317 -0.005000527 -0.007042005) (-0.000501851 -0.005000375 -0.007034638) (1.203859e-06 -0.005000402 -0.007535248) (-0.0005022715 -0.004000155 -0.007532181) (0.001512459 -0.006000989 -0.007561375) (0.001511183 -0.007001047 -0.007055516) (0.00100818 -0.005000947 -0.007548891) (0.000504307 -0.005000588 -0.007038653) (0.001511111 -0.005000974 -0.007050426) (0.001511424 -0.004001279 -0.007553227) (-0.0005033002 -0.001999765 -0.007528404) (-0.0005028234 -0.003000034 -0.007031238) (-0.001007704 -0.0009998498 -0.00753827) (-0.001511306 -0.0009999612 -0.007047862) (-0.0005036101 -0.000999772 -0.007029605) (-1.695035e-07 -0.0009995558 -0.007522582) (-0.0005038433 3.386119e-07 -0.00752715) (0.001511158 -0.002000468 -0.007546329) (0.00151087 -0.003000716 -0.007045092) (0.001006804 -0.000999811 -0.007531728) (0.0005032187 -0.0009997755 -0.007027042) (0.001510634 -0.001000182 -0.007041216) (0.001510878 4.29476e-08 -0.007542023) (-0.001008057 0.003000467 -0.007544496) (-0.00151185 0.003000685 -0.007051964) (-0.0005039693 0.004000478 -0.007539101) (0.001511133 0.002000355 -0.007545463) (0.00151082 0.001000171 -0.007041713) (0.001006655 0.003000572 -0.007538943) (0.001510684 0.00300058 -0.007046198) (0.001510466 0.004001027 -0.007554296) (-0.0005029831 0.006000871 -0.007544841) (-0.000503468 0.005000745 -0.007041628) (-0.001005827 0.007001123 -0.007548178) (-0.001509105 0.007001568 -0.007050927) (-0.0005025378 0.007000983 -0.007041801) (7.295184e-07 0.007001086 -0.007543178) (0.001509898 0.006001796 -0.007561219) (0.001509999 0.005001162 -0.007052049) (0.001007059 0.007001897 -0.007554793) (0.0005035213 0.007001263 -0.007044038) (0.001509393 0.007001628 -0.00705236) (0.003534303 -0.01800517 -0.005564123) (0.003532871 -0.0190049 -0.005059225) (-0.00504651 -0.00900205 -0.005546512) (-0.005548283 -0.009002272 -0.005041057) (0.005548059 -0.01000457 -0.005557595) (0.005553423 -0.01100459 -0.005058422) (0.005039885 -0.009003515 -0.00554952) (0.005543676 -0.009003616 -0.005045107) (0.005541737 -0.008003121 -0.0055456) (-0.005048177 -0.005001365 -0.005550045) (-0.005549824 -0.005001384 -0.005045256) (0.005549402 -0.006002767 -0.005551981) (0.005543646 -0.00700277 -0.005042558) (0.005045103 -0.005002546 -0.005551559) (0.005548024 -0.005002359 -0.005046513) (0.005551002 -0.004002488 -0.005554149) (-0.005045351 -0.0009998214 -0.005553048) (-0.005548168 -0.001000053 -0.005048177) (0.005540513 -0.00200236 -0.00554161) (0.005544843 -0.003002118 -0.005041824) (-0.005053273 0.003002904 -0.005556367) (-0.005555301 0.00300278 -0.005050922) (0.005548696 0.002001402 -0.005546092) (0.005048751 0.003001417 -0.005550541) (0.005552215 0.003001585 -0.005046314) (0.005559796 0.004001911 -0.00555761) (-0.005040251 0.007002659 -0.005547176) (-0.005542997 0.007002287 -0.005042875) (0.005557603 0.006001744 -0.005556533) (0.005555653 0.005001642 -0.005050725) (0.005048635 0.007002191 -0.005551877) (0.005553347 0.007002098 -0.005049052) (0.005551529 0.008003035 -0.00555342) (-0.005043025 0.0110038 -0.005554966) (-0.005548643 0.01100428 -0.005050105) (0.005555449 0.0100061 -0.005565525) (0.005553084 0.009003896 -0.005052758) (0.005054054 0.01100617 -0.005568147) (0.005559574 0.01100587 -0.005061817) (-0.003032215 0.0190049 -0.005558388) (-0.003536823 0.01900448 -0.005054169) (0.003537664 0.01800777 -0.005560307) (0.003031992 0.01900765 -0.00555821) (0.003537694 0.01900825 -0.005055807) (0.001523255 -0.03002445 -0.00357221) (0.001525525 -0.03102684 -0.003067838) (0.00555893 -0.01800449 -0.003534176) (0.005560361 -0.01900493 -0.003031903) (-0.005052795 0.01900638 -0.003530934) (-0.005560458 0.01900785 -0.003028689) (0.005573327 0.01800732 -0.003540687) (0.005066594 0.01900649 -0.003537397) (0.005572508 0.01900744 -0.003034423) (-0.001019597 0.03102151 -0.003573394) (-0.001526658 0.03102178 -0.003066149) (0.001523839 0.03002065 -0.003579548) (0.001018948 0.03102126 -0.003580146) (0.00152668 0.03102277 -0.003076269) (0.003555615 -0.03001213 -0.001521332) (0.003554423 -0.03101166 -0.001016003) (0.005569843 -0.02200739 -0.00151563) (0.005574873 -0.02300857 -0.00101336) (-0.007056883 -0.005001629 -0.001509411) (-0.007560903 -0.005001451 -0.001007079) (-0.007067156 -0.007001954 -0.0005026004) (-0.007573115 -0.006001429 -0.0005027239) (0.007562085 -0.006002595 -0.001506379) (0.007564319 -0.007002872 -0.001003437) (0.007057281 -0.005002107 -0.001507204) (0.007569387 -0.005002756 -0.00100418) (0.00756183 -0.004001923 -0.001508079) (0.007060673 -0.007002642 -0.0005013639) (0.007575705 -0.006003256 -0.0005011265) (0.007572047 -0.00700311 1.078266e-06) (0.007063678 -0.005002723 -0.0005015174) (0.007567096 -0.004002959 -0.0005015767) (0.007576377 -0.005003592 1.412994e-06) (-0.007035496 -0.001000155 -0.001511553) (-0.007526174 -0.001000137 -0.001008762) (0.007553531 -0.002000942 -0.001509905) (0.007554582 -0.003001613 -0.001006552) (0.007044607 -0.001000533 -0.001510346) (0.007538775 -0.00100063 -0.001007832) (0.007542601 -2.260829e-07 -0.001510689) (-0.007037128 0.003000978 -0.001511513) (-0.007532394 0.003001249 -0.001010382) (0.007538538 0.00200091 -0.001509902) (0.007529796 0.001000286 -0.00100769) (0.007038291 0.00300092 -0.001509364) (0.007532435 0.003001054 -0.001007137) (0.007544158 0.004001159 -0.001509099) (-0.007058681 0.007001099 -0.001509306) (-0.007571059 0.007001031 -0.001005909) (-0.007572377 0.006000702 -0.0005036263) (-0.00706569 0.007000794 -0.0005032208) (-0.007578334 0.007000656 -7.248048e-07) (0.007558299 0.006001042 -0.001509752) (0.007546212 0.005000364 -0.001007236) (0.007059287 0.007001715 -0.0015099) (0.00756595 0.007000643 -0.001006046) (0.007555529 0.005999738 -0.0005023321) (0.007059346 0.007000599 -0.0005021143) (0.007566499 0.007000136 2.282458e-06) (-0.005068649 0.02300925 -0.001512655) (-0.005574665 0.02301045 -0.001010098) (0.005573894 0.02200827 -0.001516868) (0.005071948 0.0230091 -0.001516774) (0.005578644 0.02300992 -0.001012351) (-0.003058548 0.03101926 -0.001522606) (-0.00356146 0.03101826 -0.001016341) (0.003560455 0.03001796 -0.001532428) (0.003057879 0.03101907 -0.001535146) (0.003556619 0.03101448 -0.001023278) (-0.003059639 -0.03101565 0.001526361) (-0.003563815 -0.0300133 0.00152402) (0.003565225 -0.03101682 0.001020142) (0.003059455 -0.03101749 0.001524719) (0.003565949 -0.03001685 0.001524135) (0.005574047 -0.02300999 0.001012367) (0.005071223 -0.02300977 0.001516629) (0.005574476 -0.02200986 0.001515909) (-0.00755577 -0.004999169 0.001006279) (-0.00705656 -0.007001384 0.001507548) (-0.007560623 -0.00600039 0.001507567) (-0.007049115 -0.004999568 0.001508497) (-0.007547597 -0.003998272 0.001509243) (0.007576322 -0.006003444 0.0005034789) (0.007565339 -0.007002971 0.001005485) (0.007064304 -0.005002881 0.0005036681) (0.007571121 -0.005003214 0.001006487) (0.007568719 -0.004003101 0.000504285) (0.007056609 -0.007002643 0.001508691) (0.007564567 -0.006003158 0.001508891) (0.007058253 -0.005002687 0.001509313) (0.007561443 -0.004002687 0.001509955) (-0.007523637 -0.0009985688 0.001009184) (-0.007038645 -0.002998586 0.001510216) (-0.007535718 -0.001998156 0.00151155) (-0.007033487 -0.0009990455 0.001511693) (-0.007533146 7.379614e-07 0.001512179) (0.00755286 -0.00300214 0.001008465) (0.007534727 -0.001000975 0.001008408) (0.007049689 -0.003001961 0.001510117) (0.00754763 -0.002001658 0.001510759) (0.00704083 -0.001001054 0.001510318) (0.007539574 -5.873834e-07 0.001510176) (-0.007533568 0.00300083 0.001006699) (-0.007033554 0.001000531 0.001511029) (-0.007535814 0.002000594 0.001509997) (-0.007038431 0.003000809 0.001509391) (-0.007546593 0.004001334 0.001508642) (0.007528921 0.0009997882 0.001007209) (0.007534906 0.003000029 0.001006464) (0.007037639 0.0009996418 0.001509364) (0.00753989 0.002000006 0.001508687) (0.007040863 0.002999934 0.001508166) (0.007548463 0.004000021 0.001507829) (-0.007065739 0.007000743 0.0005022512) (-0.007571047 0.007001053 0.001005351) (-0.007049099 0.005001387 0.001509014) (-0.007561038 0.006001717 0.001508909) (-0.007057966 0.007001204 0.001509067) (0.007559192 0.005999846 0.000505033) (0.007551188 0.004999912 0.001006926) (0.007061553 0.007000315 0.000504846) (0.007570735 0.007000126 0.00100837) (0.007050312 0.004999904 0.001508176) (0.007563427 0.005999859 0.001508946) (0.00706249 0.007000032 0.001509902) (0.005581884 0.02301024 0.0010102) (0.005576732 0.02200869 0.001513574) (0.005074913 0.0230098 0.001514867) (-0.003559352 0.0310199 0.001016554) (-0.003559962 0.03001929 0.001520064) (-0.003056355 0.03102153 0.001522181) (0.00357031 0.03102069 0.001023446) (0.003570379 0.03002198 0.001527684) (0.003064519 0.03102316 0.0015312) (-0.001019745 -0.0310232 0.003574623) (-0.001525465 -0.03002224 0.003574767) (0.001523495 -0.03101683 0.003062699) (0.001018742 -0.03101798 0.003570417) (0.001523745 -0.03001636 0.003569163) (-0.005053676 -0.01900516 0.003531987) (-0.005557514 -0.01800478 0.003531532) (0.005568166 -0.01900904 0.003037191) (0.005063774 -0.01900785 0.003542272) (0.005566323 -0.0180069 0.003541998) (-0.005555047 0.0190041 0.003028991) (-0.005553779 0.01800397 0.003532538) (-0.005052272 0.01900381 0.003532889) (0.005574043 0.01900914 0.003037819) (0.005571344 0.01800937 0.003541861) (0.005066132 0.0190085 0.003540907) (-0.001523684 0.03102281 0.003062492) (-0.001522736 0.03002008 0.003566304) (-0.00101658 0.0310228 0.003568105) (0.001529721 0.03102781 0.003076233) (0.001528676 0.03002528 0.003579944) (0.00102363 0.03102689 0.00358089) (-0.001011527 -0.02301295 0.005578163) (-0.001514368 -0.02201167 0.005576346) (-0.003026954 -0.01900525 0.005564823) (-0.003531501 -0.0180043 0.005563126) (0.003538226 -0.01900686 0.005060934) (0.003034564 -0.0190078 0.005566725) (0.003538526 -0.01800668 0.005565496) (-0.005549226 -0.009002039 0.005046898) (-0.005049521 -0.01100373 0.005558178) (-0.005553378 -0.01000316 0.005557064) (-0.005045141 -0.009002174 0.00555043) (-0.0055493 -0.00800164 0.005548753) (0.005553991 -0.01100291 0.005054349) (0.00554716 -0.009001557 0.00504161) (0.005050056 -0.01100295 0.005556617) (0.005552199 -0.01000285 0.005554691) (0.005042538 -0.009002144 0.005544735) (0.005543097 -0.008001506 0.005538958) (-0.00555355 -0.005001685 0.005051038) (-0.005046513 -0.007001388 0.005549685) (-0.005554965 -0.006001603 0.005555011) (-0.005050886 -0.005001596 0.00555456) (-0.00555893 -0.004002223 0.005559695) (0.005544228 -0.007001139 0.005036042) (0.005549083 -0.005001178 0.005040844) (0.005040582 -0.007001542 0.005538862) (0.005547264 -0.006001389 0.005541562) (0.005046715 -0.0050014 0.005544428) (0.005556692 -0.004001396 0.005550655) (-0.005547533 -0.001001536 0.005045053) (-0.005049523 -0.003001788 0.005553831) (-0.005551634 -0.002002108 0.005552354) (-0.00504193 -0.00100102 0.005547165) (-0.005543343 -6.579807e-07 0.005545893) (0.005553789 -0.003001109 0.005044877) (0.005550547 -0.001000725 0.005041307) (0.005052043 -0.003001291 0.005549938) (0.005558037 -0.002001259 0.005551232) (0.005048114 -0.001000681 0.005547188) (0.005547515 -2.994729e-07 0.005542779) (-0.005552423 0.003001169 0.005052619) (-0.005041572 0.001000487 0.005549263) (-0.005550282 0.002001132 0.005555976) (-0.005049985 0.003001477 0.005558206) (-0.005559645 0.004001768 0.005562398) (0.005553742 0.003001259 0.005049339) (0.005551119 0.002001856 0.005551299) (0.005051702 0.003001708 0.005556039) (0.005562818 0.004001525 0.005562464) (-0.005550815 0.007001563 0.005047169) (-0.005052254 0.005001667 0.005556897) (-0.005556037 0.006001716 0.00555617) (-0.005047789 0.007001862 0.005550663) (-0.005550374 0.008002095 0.00554936) (0.005558644 0.005001245 0.005054187) (0.005555097 0.007001636 0.005051589) (0.005056588 0.005001413 0.005560313) (0.005562287 0.006001567 0.005561439) (0.005052916 0.007001863 0.005556913) (0.005554449 0.008002481 0.005555297) (-0.005558379 0.0110033 0.005051431) (-0.005047407 0.009002977 0.005549209) (-0.00555707 0.01000398 0.005553695) (-0.005052884 0.01100425 0.00555474) (0.005553121 0.009003031 0.005050849) (0.005557131 0.01100479 0.005054534) (0.005050102 0.009003354 0.005556465) (0.005556045 0.01000468 0.005558648) (0.005052603 0.01100473 0.00555941) (-0.003534157 0.0190054 0.00505809) (-0.003532489 0.01800511 0.005560799) (-0.003029198 0.01900631 0.005561834) (0.003538417 0.01900513 0.005055079) (0.003537885 0.01800441 0.005558534) (0.003034358 0.01900456 0.005558284) (-0.001519225 0.02301099 0.005077812) (-0.001518303 0.02200955 0.005577292) (-0.001014853 0.02301052 0.005578992) (-0.0005019613 -0.007002069 0.007053495) (-0.001509926 -0.005002283 0.007047889) (-0.001004862 -0.007002661 0.007562019) (-0.001508709 -0.006002847 0.007558029) (-0.0005018884 -0.006002382 0.007549322) (1.242402e-06 -0.007001904 0.007557105) (-0.001007524 -0.005003094 0.007545544) (-0.001511315 -0.004002567 0.007545729) (0.001511549 -0.007000698 0.007062075) (0.001512444 -0.005000454 0.007050898) (0.001008226 -0.007000755 0.00756648) (0.0005048796 -0.006000982 0.007551556) (0.001513133 -0.006000589 0.007563754) (0.001010454 -0.005000393 0.007548797) (0.001512818 -0.004000243 0.007547686) (-0.001512909 -0.00100067 0.007038847) (-0.001009564 -0.003001733 0.007532636) (-0.001513219 -0.002001154 0.007539929) (-0.001010499 -0.001000613 0.007529977) (-0.00151337 -3.287106e-07 0.007539657) (0.001511454 -0.003000195 0.007041243) (0.001510769 -0.000999987 0.00703862) (0.001008973 -0.003000053 0.007533189) (0.001510779 -0.001999998 0.007539465) (0.00100788 -0.0009999098 0.007529691) (0.001510946 1.536972e-07 0.007539938) (-0.001512411 0.003000418 0.007041019) (-0.001010115 0.0009999533 0.007530064) (-0.001512686 0.002000214 0.007540015) (-0.001009839 0.003000214 0.007532748) (-0.001512675 0.004000553 0.007545388) (0.001511738 0.001000167 0.007041058) (0.001512978 0.003000171 0.007046938) (0.001008897 0.001000059 0.007532444) (0.001512721 0.002000112 0.007545149) (0.001010356 0.002999814 0.007540111) (0.001513596 0.003999972 0.007554897) (-0.001510648 0.007001939 0.007058425) (-0.0005040889 0.007002239 0.007054748) (-0.001010242 0.005000901 0.00754563) (-0.00151227 0.00600167 0.007559043) (-0.0005050572 0.006002032 0.007550486) (-0.001008714 0.007002642 0.007563758) (-4.510822e-07 0.007002387 0.007558093) (0.001513026 0.00500048 0.007054981) (0.0005041952 0.007001646 0.007056224) (0.001512391 0.007001364 0.007063743) (0.001010531 0.005000155 0.007552483) (0.0005045193 0.006001195 0.007552234) (0.00151338 0.006000831 0.007565123) (0.001008992 0.007001285 0.007566361) (-0.0007490944 -0.01000052 -0.008784545) (-0.0002480871 -0.01000093 -0.008796812) (-0.001501493 -0.009500516 -0.00877955) (-0.001251784 -0.009000841 -0.008780313) (-0.00125092 -0.009500615 -0.008533021) (-0.001000139 -0.009500751 -0.008780845) (-0.00150242 -0.00850074 -0.008783463) (-0.001251834 -0.008500713 -0.008531904) (-0.001000775 -0.008500751 -0.008778186) (-0.001251954 -0.008000791 -0.008782026) (-0.0004986079 -0.009500721 -0.00878507) (-0.0007496023 -0.009000684 -0.008778843) (-0.0007492456 -0.009500593 -0.008532697) (-0.0002480575 -0.009000858 -0.00879067) (-0.0004991149 -0.008500699 -0.00878397) (-0.0002489897 -0.008000855 -0.008795164) (2.059986e-06 -0.008501091 -0.00880087) (-0.0002479155 -0.009500799 -0.008542026) (-0.0007499252 -0.008500663 -0.008532182) (2.767721e-06 -0.009500981 -0.008799017) (-0.0007501722 -0.008000662 -0.008781803) (-0.001252481 -0.007000577 -0.008784335) (-0.001503379 -0.00650067 -0.008785352) (-0.001253145 -0.006500615 -0.008536722) (-0.001001947 -0.006500613 -0.008787852) (-0.00125306 -0.006000654 -0.008788321) (-0.001503563 -0.007500514 -0.008786729) (-0.001252643 -0.007500629 -0.008534485) (-0.001001278 -0.007500624 -0.008782866) (-0.0007509571 -0.007000636 -0.008788526) (-0.0005008525 -0.006500633 -0.008794412) (-0.000751428 -0.006500555 -0.008538798) (-0.0007519195 -0.006000556 -0.008791798) (-0.0005000092 -0.007500708 -0.00879073) (-0.0002498462 -0.007000715 -0.008799059) (9.709757e-07 -0.007500922 -0.008804715) (-0.0007506464 -0.007500617 -0.008535601) (-0.0002499676 -0.006500524 -0.008544595) (-0.0002505736 -0.006000298 -0.008793421) (3.66061e-07 -0.006500438 -0.008800219) (-0.001504122 -0.005500723 -0.008791055) (-0.001254356 -0.005000566 -0.008794503) (-0.001253921 -0.005500581 -0.008540675) (-0.001003101 -0.005500526 -0.008791974) (-0.001505697 -0.004500582 -0.008800161) (-0.001255163 -0.004500422 -0.008545566) (-0.001004352 -0.004500288 -0.008794546) (-0.001255784 -0.004000364 -0.008799698) (-0.0005018326 -0.005500229 -0.008789441) (-0.0007528929 -0.005000259 -0.008790726) (-0.0007523364 -0.005500365 -0.008538708) (-0.0002511918 -0.004999785 -0.008780664) (-0.0005026458 -0.004499953 -0.008783349) (-0.000250672 -0.005500097 -0.008536067) (-0.0007532411 -0.004500132 -0.008536942) (-3.268544e-07 -0.005499694 -0.008783898) (-0.0007538061 -0.004000012 -0.008787183) (0.001006426 -0.0004976794 -0.008767948) (0.001257691 -0.0009983477 -0.008778985) (0.001763173 -0.001001224 -0.008811717) (0.001510022 -0.0004993034 -0.008792223) (0.002014747 -0.0005017279 -0.008817205) (0.001762377 -1.852259e-07 -0.008803363) (0.001257979 -0.0004987617 -0.008529651) (0.001257891 1.824862e-06 -0.008776773) (-0.001007334 0.005500715 -0.008818337) (-0.000755521 0.005000326 -0.008808451) (-0.0005026169 0.005500521 -0.008803659) (-0.0007550442 0.005500589 -0.008557679) (-0.000754453 0.006000747 -0.008811032) (-0.0002509005 0.005000292 -0.008792955) (-0.0002509766 0.005500581 -0.008547379) (-0.000250289 0.006000881 -0.008802996) (5.69256e-07 0.005500625 -0.008796822) (-0.001005556 0.006500801 -0.008812575) (-0.001003756 0.007500478 -0.008793491) (-0.001255166 0.008000968 -0.008788561) (-0.0005017488 0.006500831 -0.008803848) (-0.0007530546 0.007000646 -0.008800167) (-0.0007538003 0.006500732 -0.008554738) (-0.0002497223 0.007000924 -0.008798222) (-0.0005008235 0.007500479 -0.008789632) (-0.0002494143 0.008000384 -0.008782434) (1.796049e-06 0.007501087 -0.008793913) (-0.0002501653 0.006500912 -0.008549952) (-0.0007524083 0.007500433 -0.008541221) (1.631999e-06 0.006501239 -0.008804628) (-0.0007517096 0.008000086 -0.008782074) (-0.001251936 0.009000196 -0.008781837) (-0.001500767 0.009500371 -0.008778421) (-0.001251621 0.009500203 -0.008531173) (-0.001001093 0.009498917 -0.008778861) (-0.001504864 0.008501124 -0.008788059) (-0.001253726 0.008500605 -0.008535992) (-0.001002311 0.008499913 -0.008779711) (-0.0007508094 0.008999142 -0.008774398) (-0.0005005271 0.009499375 -0.008774871) (-0.0007507672 0.009499476 -0.008527201) (-0.0007505196 0.009999762 -0.008780999) (-0.0005002606 0.0084997 -0.008774932) (-0.0002496796 0.008999839 -0.008771848) (1.372572e-06 0.008500547 -0.00877797) (-0.0007513105 0.008499846 -0.008528826) (-0.0002499417 0.009500072 -0.008524964) (-0.0002505807 0.01000036 -0.008778513) (5.738503e-07 0.009500682 -0.00877313) (-0.0005010997 0.01050032 -0.008783169) (-0.0007503236 0.01100002 -0.00877672) (-0.0007507444 0.01049987 -0.008528417) (-0.0002508884 0.01100051 -0.008783764) (-0.00025058 0.01050033 -0.008530235) (-7.008322e-07 0.01050095 -0.008785189) (0.0002529819 0.006001381 -0.008809166) (0.0002534364 0.007001754 -0.008805978) (0.0005047291 0.007502152 -0.008805665) (0.0002528729 0.008001345 -0.008790895) (0.0002531005 0.00650156 -0.008555987) (0.0005046648 0.00650206 -0.008814396) (0.0002518869 0.009001224 -0.00877711) (0.0005032993 0.008501688 -0.008788403) (0.0002516369 0.009501373 -0.008528143) (0.0005024535 0.009502393 -0.008779885) (0.000251173 0.01000214 -0.008779169) (-0.001006788 -0.01400214 -0.003023886) (-0.00100757 0.01400256 -0.003025167) (0.001009302 0.01400261 -0.003025183) (-0.003024652 0.01400227 0.001007758) (-0.0007509048 -0.002499285 -0.00925723) (-0.000248805 -0.002498101 -0.009232121) (-0.0007495501 0.001499573 -0.009229527) (-0.0002503132 0.001499125 -0.009230142) (-0.0002517357 0.003497958 -0.009235155) (-0.0007477189 0.002498394 -0.009698443) (-0.0007567713 0.003496648 -0.009276628) (0.0007463161 -0.002496489 -0.009699953) (0.0002508139 -0.00249722 -0.009224877) (0.0002481417 0.001499302 -0.009230167) (0.0002472985 0.002498557 -0.009720678) (0.0002489522 0.003498293 -0.009225154) (0.0007440955 0.003497795 -0.009687264) (-0.001244813 0.001500542 -0.00968645) (-0.001257671 0.003492855 -0.009833067) (-0.0005039716 0.001000305 -0.007528099) (8.014764e-07 0.01200217 -0.003023909) (-0.001007403 -0.0120019 -0.002018053) (-0.001007603 0.0120022 -0.002019015) (0.001009886 0.01200227 -0.002019154) (9.282919e-07 0.01400255 -0.002019485) (-0.002018535 0.01200194 0.001008233) (-0.001003895 -0.002499514 -0.009026624) (-0.001001183 0.001999666 -0.009242489) (-0.001002208 0.001499929 -0.008998051) (-0.00075204 0.001999373 -0.008996063) (-1.015316e-06 0.003498534 -0.008988321) (0.00099249 -0.002506986 -0.009929886) (-0.0009953612 0.002496332 -0.00992396) (-0.001241806 0.00198331 -0.009936995) (8.344698e-07 -0.002497831 -0.008983731) (-0.0002509135 0.00199906 -0.00898405) (-1.119864e-06 0.001998909 -0.009228927) (-9.569443e-07 0.001499399 -0.008983518) (0.0002488923 0.001999269 -0.008982397) (-0.001006958 0.003498303 -0.009040402) (-0.0005027489 0.002997833 -0.009240493) (0.001002061 0.003494637 -0.009902494) (-0.0005005733 -0.002498676 -0.008998427) (0.0009972739 -0.002496751 -0.00945698) (0.0005012787 -0.00249764 -0.008982918) (-0.001001199 0.002499687 -0.009504918) (-0.00125013 0.002001055 -0.009496014) (-0.0005000848 0.001998987 -0.009229918) (-0.0005005921 0.001499463 -0.008985739) (-0.001005216 0.002998289 -0.009271385) (-0.0007546856 0.002998344 -0.00901405) (-0.001189156 0.002978113 -0.00991575) (-1.250084e-06 0.002998356 -0.009226535) (-0.0002517889 0.002998442 -0.008989006) (0.0002490593 0.002998775 -0.008983022) (-0.000503872 0.003498036 -0.009008831) (-0.001259918 0.003000475 -0.009557286) (0.0004963306 0.002498683 -0.009465083) (0.0007454532 0.002998365 -0.009453791) (0.0004981672 0.002998592 -0.009223595) (0.0004955538 0.002498286 -0.009963851) (0.0004997516 0.003498807 -0.008988588) (0.0004978844 0.001999261 -0.009226868) (0.0004989613 0.001499893 -0.008983786) (0.0007520513 0.002997993 -0.009940576) (0.0009943323 0.002997831 -0.009679587) (0.0009961102 0.003498148 -0.009457095) (-0.001498699 0.001500353 -0.009475208) (-0.001514743 0.003501657 -0.009579874) (-0.001517795 0.003012147 -0.009831749) (-0.001567077 0.002151887 -0.009828908) (-0.001472517 0.001472822 -0.009888144) (-0.0005040383 0.002000357 -0.007032751) (-0.00100688 -0.01200184 -0.003023136) (-0.001007357 -0.01400221 -0.002018877) (-0.001007349 0.0120022 -0.003024375) (0.001009266 0.01200224 -0.003024439) (6.878195e-07 0.01400253 -0.003025017) (-0.001007794 0.01400256 -0.002019841) (0.001009991 0.01400265 -0.002019965) (-0.003023964 0.01200185 0.001007607) (-0.002019447 0.01400234 0.001008495) (-0.001514831 0.003503232 -0.009831855) (-0.0004995118 -0.002498688 -0.009241363) (-0.001002344 -0.002499839 -0.009275224) (-0.00075211 -0.002499115 -0.009012066) (1.169663e-06 -0.002497608 -0.009227942) (-0.0002495514 -0.002498191 -0.008988272) (-0.0004996882 0.001499307 -0.009229271) (-0.0007504153 0.001999218 -0.009234157) (-0.0009998548 0.001499893 -0.00923184) (-0.0007509757 0.001499656 -0.008989296) (-0.0002504562 0.001998874 -0.009228608) (-1.138443e-06 0.001499102 -0.009231014) (-0.0002506235 0.001499343 -0.0089834) (-0.0007503533 0.002498487 -0.009477099) (-0.0007543208 0.002997723 -0.009255302) (-0.0002515446 0.002998117 -0.009230129) (-0.0005041744 0.003497302 -0.009253143) (-9.578144e-07 0.003498228 -0.009228237) (-0.0002519773 0.003498309 -0.008994518) (-0.0007440124 0.002496529 -0.009917563) (-0.0009990079 0.002500079 -0.009730688) (-0.001006036 0.003497423 -0.009291548) (-0.0007559165 0.003497831 -0.00902559) (0.0007477889 -0.002496551 -0.009456982) (0.000500437 -0.002497068 -0.00922325) (0.0009937754 -0.002496105 -0.009691563) (0.0007511527 -0.002502665 -0.009947875) (0.0002510029 -0.00249756 -0.008980952) (0.0004978064 0.001499695 -0.009228881) (0.0002482167 0.001999041 -0.009227813) (0.0002487865 0.001499583 -0.008982664) (0.0002476596 0.002498574 -0.009470417) (0.0004952366 0.002498498 -0.009712502) (0.0002471868 0.002498774 -0.009974479) (0.0002484861 0.002998475 -0.009224182) (0.0004986332 0.003498347 -0.009224418) (0.0002493866 0.003498625 -0.008985568) (0.0007438102 0.00299806 -0.009693382) (0.0007458227 0.003498002 -0.009452811) (0.0009942237 0.003497568 -0.009676773) (0.0007516341 0.003497289 -0.009932571) (-0.001247854 0.001500744 -0.009466006) (-0.001493938 0.001500131 -0.009692793) (-0.00124711 0.002000231 -0.009727014) (-0.001245567 0.001493146 -0.009905096) (-0.001314866 0.003010932 -0.009840927) (-0.001260023 0.003501121 -0.009572685) (-0.001173819 0.003346369 -0.009911469) (-0.0005040705 0.002000292 -0.007530561) (-0.0005039699 0.001000311 -0.007030701) (-0.0007518732 0.00249858 -0.009241909) (-0.0002509459 0.002498508 -0.009228055) (0.0002482578 0.002498746 -0.00922514) (0.0007433999 0.002498677 -0.009700228) (-0.001326043 0.00263933 -0.009830427) (-0.0005041102 0.003000339 -0.007534518) (0.000502883 0.003000441 -0.007531568) (-0.001004334 0.002499232 -0.009015126) (-1.174988e-06 0.002498833 -0.008982365) (-0.0005019056 0.002498712 -0.008991608) (0.0009964932 0.002498919 -0.009929828) (0.0004990154 0.002499131 -0.008982423) (0.0009950664 0.002498989 -0.009452231) (-0.001506067 0.002501742 -0.009547507) (-0.001432776 0.002356101 -0.009908304) (-4.846382e-07 0.003000437 -0.007032314) (-0.0005011818 0.002498457 -0.009232827) (-0.001002638 0.002499061 -0.009255717) (-0.0007529005 0.002498829 -0.009001297) (-1.211658e-06 0.002498628 -0.009226653) (-0.0002513068 0.002498705 -0.008984566) (0.0004978229 0.002498867 -0.009223844) (0.0002487886 0.002498946 -0.008980676) (0.0007450231 0.002498837 -0.009455863) (0.0009919381 0.002498684 -0.009689563) (0.0007512613 0.002498712 -0.009948029) (-0.001252091 0.002501322 -0.009545823) (-0.001514023 0.002523567 -0.009822439) (-0.001245436 0.002492449 -0.009924393) (-0.0005040193 0.003000439 -0.007035712) (-5.753453e-07 0.003000341 -0.007529866) (0.0005030011 0.003000491 -0.007033448) (-0.001740187 0.004474004 -0.009778045) (-0.001746048 0.003502558 -0.00979437) (-0.001745267 -0.002500187 -0.009811384) (0.0007359086 -0.007494425 -0.00978016) (-0.001749689 -0.00152915 -0.00982564) (-0.001745106 0.002530291 -0.009813845) (0.001235498 0.00552457 -0.009807523) (0.001237236 0.006472486 -0.009785213) (-0.001942055 0.004000507 -0.009754281) (-0.001957132 -0.002000163 -0.009779839) (-0.001730987 0.001838482 -0.00988003) (-0.001941383 0.001983468 -0.009782394) (0.0009232187 -0.007828257 -0.009733156) (-0.002114503 -0.002501097 -0.009735332) (-0.001770374 -0.002001581 -0.009594136) (-0.002119453 -0.001487076 -0.009713264) (0.00125677 0.006002081 -0.009596066) (0.001231969 0.004826842 -0.009882759) (0.001259058 0.005001321 -0.009557059) (0.00129222 0.007160877 -0.009672695) (0.0007521184 -0.007002109 -0.009547238) (-0.00178448 0.00515104 -0.009674981) (-0.001758099 -0.001001291 -0.009537508) (-0.001763585 0.003002385 -0.009591943) (0.001621564 0.005491954 -0.009732039) (0.001442159 0.005002445 -0.009788956) (0.001601131 0.006501022 -0.009663083) (0.001419729 0.006823247 -0.009732939) (-0.001727738 -0.0008423103 -0.00988756) (-0.00194743 -0.0009827921 -0.009784726) (-0.001952172 0.003003174 -0.00977521) (-0.001923566 0.004822271 -0.009726581) (-0.002149358 0.003502672 -0.009712645) (-0.002089653 0.004498389 -0.009686076) (-0.001769439 0.004002208 -0.009590274) (-0.002105281 0.002487281 -0.009724029) (-0.00175592 0.002000452 -0.009548314) (0.001001398 -0.007119798 -0.009773451) (0.0007786124 -0.006825108 -0.009868812) (0.0007799438 -0.008162407 -0.009668589) (0.001090533 -0.007553644 -0.009696204) (0.001437299 0.005998917 -0.009768726) (-0.001743164 0.003999521 -0.009791283) (-0.001929838 0.004470256 -0.009740956) (-0.001755469 0.004849113 -0.009750728) (-0.00176229 0.004502645 -0.009579327) (-0.001747294 -0.001143295 -0.009821349) (-0.001945014 0.003501985 -0.009759635) (-0.001746978 0.003004853 -0.009802314) (-0.001774771 0.003502144 -0.009586684) (-0.001766705 -0.002501606 -0.009595834) (-0.001746836 -0.002004994 -0.009823784) (-0.001948514 -0.002501732 -0.009782549) (0.0007572994 -0.007128613 -0.009807553) (0.0007532509 -0.007504626 -0.009567073) (0.0007500811 -0.007855759 -0.009742735) (0.0009318522 -0.00751182 -0.009752039) (-0.001746275 0.002143207 -0.009822588) (-0.001768306 -0.00150191 -0.009582469) (-0.001937762 -0.001501828 -0.00978012) (-0.001760069 0.002502334 -0.009579127) (-0.001953225 0.002503386 -0.009777755) (0.001261192 0.005500784 -0.009583167) (0.001237661 0.005131456 -0.00981858) (0.001436331 0.005505117 -0.009782124) (0.001238812 0.006001413 -0.0097932) (0.001264322 0.006503949 -0.009576275) (0.001425822 0.006470064 -0.009745749) (0.001248708 0.00685044 -0.009751362) ) // ************************************************************************* //
7e432ab6cca77acb945d980beee69a470b9080f2
2351c922fbee24a3856d885fc70263dae58a9eb0
/src/princekin/thread/chart/dataworker.h
6a5722676ae2a20593e2e2f0da11c02129e46ada
[]
no_license
waitMonster/android
dc4298c9e4827389e24782a9dfa33c7dab84eae1
6f9b223ba330ff3bb22e048348df1309930c31b0
refs/heads/master
2021-08-16T15:42:39.163958
2017-11-17T10:47:20
2017-11-17T10:47:20
111,359,369
0
1
null
null
null
null
UTF-8
C++
false
false
2,724
h
dataworker.h
#ifndef DATAWORKER_H #define DATAWORKER_H #include "commonhead.h" #include "xlsxdocument.h" #include "xlsxformat.h" #include "xlsxcellrange.h" #include "xlsxworksheet.h" #include <QtXlsx> #include <QObject> using namespace QXlsx; QTXLSX_USE_NAMESPACE namespace DataWorker { class Worker : public QObject { Q_OBJECT public: Worker(); public: void startWorker(); void setXlsx(const QString &); void setMemWarningValue(const QString &); void setCpuWarningValue(const QString &); void setCpuTempWarningValue(const QString &); void setBatteryTempWarningValue(const QString &); void setWifiWarningValue(const QString &); void setMobileWarningValue(const QString &); void setMemTime_Vector(QVector<QString>); void setCpuTime_Vector(QVector<QString>); void setCpuTempTime_Vector(QVector<QString>); void setBatteryTempTime_Vector(QVector<QString>); void setWifiTime_Vector(QVector<QString>); void setMobileTime_Vector(QVector<QString>); void setMemory_Vector(QVector<double>); void setCpu_Vector(QVector<double>); void setCpuTemp_Vector(QVector<double>); void setBatteryTemp_Vector(QVector<double>); void setWifi_Vector(QVector<double>); void setMobile_Vector(QVector<double>); private: Format getNormalFormat(); void writeTime (Document &,Format,const QString &,const QString &,QVector<QString>,int,int); void writeWarning(Document &,Format,const QString &,const QString &,const QString &,QVector<QString>,int,int); void writeData (Document &,Format,const QString &,const QString &,QVector<double>,int,int); signals: void sendWorkerResult(const QString &); private: //********************************************* QString qXlsx; QString qMemWarningValue; QString qCpuWarningValue; QString qCpuTempWarningValue; QString qBatteryTempWarningValue; QString qWifiWarningValue; QString qMobileWarningValue; QVector<QString> qMemTime_vector; QVector<QString> qCpuTime_vector; QVector<QString> qCpuTempTime_vector; QVector<QString> qBatteryTempTime_vector; QVector<QString> qWifiTime_vector; QVector<QString> qMobileTime_vector; QVector<double> qMemValue_vector; QVector<double> qCpuValue_vector; QVector<double> qCpuTempValue_vector; QVector<double> qBatteryTempValue_vector; QVector<double> qWifiValue_vector; QVector<double> qMobileValue_vector; bool isTime; //********************************************* QByteArray qByte; QString qDataLine; QProcess *qProc; //QTextCodec *qTc=QTextCodec::codecForName("gb2312"); QTextCodec *qTc=QTextCodec::codecForName("UTF-8"); }; } #endif // DATAWORKER_H
68d11040d345975fed3e3766c8e79b82ddfb4d4d
e605cd0d724ed66e4e40e47cb039a647c5723658
/2019/day23/prog.cpp
31c5d794d4509f3ae7a2b4fcc3291e8aa260cba6
[]
no_license
ojasgarg/adventofcode
8c46ee006457c357da043702be135fb17eeea367
88739c6e85f47209fd1166577671fe7bb422c255
refs/heads/master
2023-02-08T16:53:07.066940
2020-12-25T06:05:30
2020-12-25T06:56:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,978
cpp
prog.cpp
// prog.cpp // Copyright (c) 2019, zhiayang // Licensed under the Apache License Version 2.0. #include "aoc.h" #include "assert.h" struct State { int64_t ip = 0; int64_t segment = 0; util::queue<int64_t> in; util::queue<int64_t> out; std::unordered_map<int64_t, int64_t> memory; }; static constexpr int HALT_STOPPED = 1; static constexpr int HALT_BLOCKED = 2; static int run_instr(State* st) { auto get = [&st](int64_t i) -> int64_t { return st->memory[i]; }; auto set_output = [&st, &get](int op, int argno, int64_t x) { int mode = 0; int64_t addr = get(st->ip + 1 + argno); if(argno == 0) mode = (op % 1000) / 100; if(argno == 1) mode = (op % 10000) / 1000; if(argno == 2) mode = (op % 100000) / 10000; if(mode == 0) st->memory[addr] = x; else if(mode == 2) st->memory[st->segment + addr] = x; }; auto get_operand = [&get, &st](int op, int argno) -> int64_t { int mode = 0; if(argno == 0) mode = (op % 1000) / 100; else if(argno == 1) mode = (op % 10000) / 1000; else if(argno == 2) mode = (op % 100000) / 10000; else abort(); if(mode == 0) return get(get(st->ip + 1 + argno)); else if(mode == 1) return get(st->ip + 1 + argno); else if(mode == 2) return get(st->segment + get(st->ip + 1 + argno)); else abort(); }; int len = 0; int opcode = st->memory[st->ip]; switch(opcode % 100) { case 1: { // add len = 4; int64_t a = get_operand(opcode, 0); int64_t b = get_operand(opcode, 1); set_output(opcode, 2, a + b); } break; case 2: { // mul len = 4; int64_t a = get_operand(opcode, 0); int64_t b = get_operand(opcode, 1); set_output(opcode, 2, a * b); } break; case 3: { // in len = 2; if(st->in.empty()) return HALT_BLOCKED; auto in = st->in.pop(); set_output(opcode, 0, in); } break; case 4: { // out len = 2; st->out.push(get_operand(opcode, 0)); } break; case 5: { // jmp-if-true len = 3; if(get_operand(opcode, 0) != 0) st->ip = get_operand(opcode, 1), len = 0; } break; case 6: { // jmp-if-false len = 3; if(get_operand(opcode, 0) == 0) st->ip = get_operand(opcode, 1), len = 0; } break; case 7: { // cmplt len = 4; int64_t a = get_operand(opcode, 0); int64_t b = get_operand(opcode, 1); set_output(opcode, 2, a < b ? 1 : 0); } break; case 8: { // cmpeq len = 4; int64_t a = get_operand(opcode, 0); int64_t b = get_operand(opcode, 1); set_output(opcode, 2, a == b ? 1 : 0); } break; case 9: { // set base len = 2; st->segment += get_operand(opcode, 0); } break; case 99: { return HALT_STOPPED; } } if(len > 0) st->ip += len; return 0; } static int run(State* st) { auto x = run_instr(st); while(x == 0) { if(st->out.size() >= 3) return x; x = run_instr(st); } return x; } int main() { auto ops = util::map(util::readFileLines("input.txt", ','), [](std::string_view s) -> int64_t { return std::stoll(std::string(s)); }); struct Nic { State st; int addr; bool passed = false; bool didPass = false; util::queue<std::pair<int64_t, int64_t>> packets; }; struct Nat { bool first = true; int64_t py; int64_t x; int64_t y; }; Nat nat; Nic nics[50]; for(size_t n = 0; n < 50; n++) { util::foreachIdx(ops, [&nics, &n](int64_t s, size_t i) { nics[n].st.memory[i] = s; }); nics[n].st.in.push(n); nics[n].addr = n; } bool didp1 = false; bool idles[50] = { false }; size_t n = 0; while(true) { auto nic = &nics[n]; auto r = run(&nic->st); if(r == HALT_BLOCKED) { // zpr::println("%d blocked (%s)", n, nic->passed); if(!nic->packets.empty()) { auto [ x, y ] = nic->packets.pop(); nic->st.in.push(x); nic->st.in.push(y); } else { if(nic->passed && !nic->didPass) { nic->st.in.push(-1); nic->passed = false; nic->didPass = true; } else if(nic->passed && nic->didPass) { idles[n] = true; } else { nic->passed = true; } } } else if(nic->st.out.size() >= 3) { auto addr = nic->st.out.pop(); auto x = nic->st.out.pop(); auto y = nic->st.out.pop(); // zpr::println("%d -> %d (%d, %d)", n, addr, x, y); if(addr < 50) { nics[addr].packets.push({ x, y }); } else if(addr == 255) { if(!didp1) { zpr::println("part 1: %d", y); didp1 = true; } nat.x = x; nat.y = y; } } ++n %= 50; { bool allidle = true; for(int k = 0; k < 50; k++) allidle = allidle && idles[k]; if(allidle) { nics[0].packets.push({ nat.x, nat.y }); if(didp1 && !nat.first && nat.y == nat.py) { zpr::println("part 2: %d", nat.py); break; } nat.first = false; nat.py = nat.y; for(int k = 0; k < 50; k++) { idles[k] = false; nics[k].passed = false; nics[k].didPass = false; } } } } }
efdeb70938183bd206f9b2c8e5610081c9a907c0
1874d76cd014a610174b5ebaf03c47922e99d002
/Her Yönüyle C/FonksiyonİşaretçileriÖrnek3/FonksiyonİşaretçileriÖrnek3/Source.cpp
f1f0bfc9fd487ebe5bbb6120187ccb1c0b2a0c95
[]
no_license
keremerolce/C-Programin-Samples
3a4b76c86147f5e795ef786c47965b28213984a3
cde25131ba3d794be39b428948b92eb146b9e0ce
refs/heads/master
2018-12-22T17:04:49.021427
2018-09-30T23:57:22
2018-09-30T23:57:22
111,516,557
0
0
null
null
null
null
ISO-8859-9
C++
false
false
907
cpp
Source.cpp
#include <stdio.h> #include <locale.h> int topla(int,int); int cikar(int,int); int carp(int,int); int modAl(int,int); int hesapla(int islemPtr(int, int),int ,int); int main(int argc,const char * argv[]) { setlocale(LC_ALL,"tr"); int sayi1; int sayi2; printf("Lütfen arada boşluk olacak şekilde 2 sayı giriniz:"); scanf("%d %d",&sayi1,&sayi2); printf("Toplam:%d\n",hesapla(topla,sayi1,sayi2)); printf("Fark:%d\n",hesapla(cikar,sayi1,sayi2)); printf("Çarpım:%d\n",hesapla(carp,sayi1,sayi2)); printf("Mod:%d\n",hesapla(modAl,sayi1,sayi2)); return 0; } int topla(int sayi1,int sayi2) { return sayi1+sayi2; } int cikar(int sayi1,int sayi2) { return sayi1-sayi2; } int carp(int sayi1,int sayi2) { return sayi1*sayi2; } int modAl(int sayi1,int sayi2) { return sayi1%sayi2; } int hesapla(int islemPtr(int, int),int sayi1,int sayi2) { int sonuc; sonuc = islemPtr(sayi1,sayi2); return sonuc; }
788c24eff0cb52abbc89e0fc8cf3a789142eacc4
b7b300d2ff67d45562528d5ebc66f8e3b722157e
/2015.cpp
e0793a0c54c41e5bf0b72ddbeba5070bcf7d084b
[]
no_license
junierr/hdoj
f09822ea1794e2901353e885116ca79e729267df
c9086f38ede263b3a4372bc1eef23094a2494aab
refs/heads/master
2022-03-08T17:13:45.385603
2019-11-16T15:29:08
2019-11-16T15:29:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
775
cpp
2015.cpp
#include<stdio.h> int main() { int m=0,n=0,i=0,w=0,j=0; int q=0,sum=0,dum=0,t=0; int a[1000]; while(~scanf("%d %d",&n,&m)) { q=n / m; w= n % m; for(i=1;i<=n;i++) { a[i]=2*i; } if(w!=0) { for(i=1;i<=q;i++) { for(j=1;j<=m;j++) { t=t+1; sum=sum+a[t]; } dum=sum/m; printf("%d ",dum); sum=0; } for(i=1;i<=w;i++) { sum=sum+a[m*q+i]; } dum=sum/w; printf("%d\n",dum); sum=0;t=0; } if (w==0) { for(i=1;i<=q;i++) { for(j=1;j<=m;j++) { t=t+1; sum=sum+a[t]; } dum=sum/m; if (i==q) { printf("%d\n",dum); } if (i!=q) { printf("%d ",dum); } sum=0; } t=0; } } return 0; }
a066a9c08e427b8a79e11f11506dfe7caf4161b0
60d3716b43cd198d3abb9a8743f05903921aa5a4
/Source/CoopGame/Public/SWeapon.h
ae9799a1ceca8ef85c06170f8171b9f8efbee81e
[]
no_license
shivivats/UE4_CoopGame
0d935e9dcef5330764054537da293f9b5b9f209d
b224f3bfaa03cdd692830a639aaa62168d038310
refs/heads/main
2023-06-02T02:51:21.550214
2021-06-16T09:01:15
2021-06-16T09:01:15
361,104,684
0
0
null
null
null
null
UTF-8
C++
false
false
3,230
h
SWeapon.h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/Actor.h" #include "SWeapon.generated.h" UCLASS() class COOPGAME_API ASWeapon : public AActor { GENERATED_BODY() public: // Sets default values for this actor's properties ASWeapon(); protected: virtual void PlayFireEffects(FVector TracerEnd); UPROPERTY(VisibleAnywhere, BlueprintReadWrite, Category="Weapon|Components") class USkeletalMeshComponent* MeshComp; UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category="Weapon|Shooting") TSubclassOf<class UDamageType> DamageType; UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category="Weapon|Shooting") class UParticleSystem* MuzzleEffect; UPROPERTY(VisibleDefaultsOnly, BlueprintReadOnly, Category="Weapon|Shooting") FName MuzzleSocketName; UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Shooting") class UParticleSystem* DefaultImpactEffect; UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Shooting") class UParticleSystem* FleshImpactEffect; UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Shooting") class UParticleSystem* TracerEffect; UPROPERTY(VisibleDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Shooting") FName TracerTargetName; UPROPERTY(EditDefaultsOnly, Category = "Weapon|Shooting") TSubclassOf<class UMatineeCameraShake> FireCamShake; UPROPERTY(EditDefaultsOnly, Category = "Weapon|Shooting") float BaseDamage; virtual void Fire(); UFUNCTION(Server, Reliable, WithValidation) void ServerFire(); /* Ammo stuffs */ UPROPERTY(Replicated, EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Ammo") int32 MaximumAmmo; UPROPERTY(Replicated, VisibleDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Ammo") int32 CurrentAmmo; UPROPERTY(Replicated, EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Ammo") int32 MagazineCapacity; UPROPERTY(Replicated, VisibleDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Ammo") int32 MagazineCount; UPROPERTY(Replicated, VisibleDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Ammo") bool bCanShoot; /* Vertical Recoil. This will be reversed since positive pitch value actually goes down. */ UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Recoil") float PitchRecoilRangeMax; /* Vertical Recoil. This will be reversed since positive pitch value actually goes down. */ UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Recoil") float PitchRecoilRangeMin; /* Horizontal Recoil */ UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Recoil") float YawRecoilRangeMax; /* Horizontal Recoil */ UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Weapon|Recoil") float YawRecoilRangeMin; public: virtual void StartFire(); virtual void StopFire(); virtual void ReduceAmmo(); UFUNCTION(Server, Reliable, WithValidation) virtual void ServerReduceAmmo(); UFUNCTION(BlueprintCallable, Category="Weapon|Ammo") virtual void AddAmmo(); UFUNCTION(Server, Reliable, WithValidation) virtual void ServerAddAmmo(); virtual void Reload(); virtual void AddRecoilEffects(); };
2e81839cfb4491bb9e8b3b0dce96c2b87370ae91
f8efece6b69ca26d56bb38b691da20c166a4c590
/YASS/Menu.cpp
ff2f07bd4122f311e7a68176c2f404922f5bcfb3
[ "MIT" ]
permissive
Marrow16180/YASS
06099bb1e93faa93f3590460bbd82f5b4cb2b223
8a27bc7f07f0b65b847b0be0a2683e650895a33a
refs/heads/master
2020-03-09T07:27:18.026657
2018-04-18T01:16:33
2018-04-18T01:16:33
128,664,986
0
0
null
null
null
null
UTF-8
C++
false
false
6,995
cpp
Menu.cpp
#include "Menu.hpp" const sf::Time Menu::TimePerFrame = sf::seconds(1.f / 60.f); Menu::Menu() : mResources{} , mMusic{} , mClock{} , mDelta{sf::Time::Zero} , mWindow{sf::VideoMode(800u, 640u), "YASS"} , mStarfield{nullptr} , mVolumeSlider{nullptr} , mNewGameButton{nullptr} , mContinueButton{nullptr} , mOptionsButton{nullptr} , mExitButton{nullptr} , mButtonPanel{{220.0, 180.f}} , mParticleEmitter{nullptr} , mRocket{mResources.rocket} , mMenuTitle{"Yet Another Space Shooter", mResources.font, 40u } { mWindow.setKeyRepeatEnabled(false); startMusic(); // Starfield config mStarfield = std::make_unique<Starfield>(sf::Vector2f(mWindow.getSize())); // Volume Slider config SliderDefinition sliderDef; sliderDef.position = { 400.f, 600.f }; sliderDef.barSize = { 300.f, 10.f }; sliderDef.arrowSize = { 15.f, 20.f }; sliderDef.arrowOffset = { -7.5f, -5.f }; sliderDef.barTexture = &mResources.bar; sliderDef.arrowTexture = &mResources.arrow; sliderDef.callback = [this](float volume) { mMusic.setVolume(volume); }; mVolumeSlider = std::make_unique<Slider>(mWindow, sliderDef); centerOrigin(*mVolumeSlider); mVolumeSlider->setPosition(400.f, 600.f); mVolumeSlider->setValue(50.f); // Buttons config ButtonDefinition buttonDef; buttonDef.size = { 200.f, 40.f }; buttonDef.standardColor = { 255, 255, 255 }; buttonDef.hoverColor = { 100, 100, 100 }; buttonDef.texture = &mResources.button; buttonDef.font = &mResources.font; buttonDef.characterSize = 20; buttonDef.textOffset = { 10.f, 0.f }; buttonDef.hoverSoundBuffer = &mResources.hoverButton; buttonDef.clickSoundBuffer = &mResources.clickButton; buttonDef.hoverSoundVolume = 100.f; buttonDef.clickSoundVolume = 100.f; buttonDef.hoverSoundPitch = 1.f; buttonDef.clickSoundPitch = 1.f; // New game button buttonDef.position = { 100.f, 140.f }; buttonDef.text = "New Game"; buttonDef.callback = [] { std::cout << "New Game Callback!\n"; }; mNewGameButton = std::make_unique<Button>(mWindow, buttonDef); // Continue button buttonDef.position = { 100.f, 180.f }; buttonDef.text = "Continue"; buttonDef.callback = [] { std::cout << "Continue Callback!\n"; }; mContinueButton = std::make_unique<Button>(mWindow, buttonDef); // Options button buttonDef.position = { 100.f, 220.f }; buttonDef.text = "Options"; buttonDef.callback = [] { std::cout << "Options Callback!\n"; }; mOptionsButton = std::make_unique<Button>(mWindow, buttonDef); // Exit button buttonDef.position = { 100.f, 260.f }; buttonDef.text = "Exit"; buttonDef.callback = [] { std::cout << "Exit Callback!\n"; }; mExitButton = std::make_unique<Button>(mWindow, buttonDef); // Panel mButtonPanel.setPosition(90.f, 130.f); mButtonPanel.setFillColor(sf::Color(150, 150, 150)); mButtonPanel.setOutlineColor(sf::Color::White); mButtonPanel.setOutlineThickness(1.f); // Particle Emitter config ParticleEmitterDefinition emitterDef; emitterDef.texture = &mResources.fire; emitterDef.particlesMaxCount = 2000; emitterDef.particlesPerSecond = 1000; emitterDef.initialPosition = { 400.f, 350.f }; emitterDef.initialScale = { 0.1f, 0.1f }; emitterDef.initialColor = sf::Color(255, 200, 200, 155); emitterDef.minLifetime = sf::seconds(0.9f); emitterDef.maxLifetime = sf::seconds(0.95f); emitterDef.direction = { 0.f, 1.f }; emitterDef.minAngleOffset = -33.f; emitterDef.maxAngleOffset = 33.f; emitterDef.minLinearVelocity = 260.f; emitterDef.maxLinearVelocity = 265.f; emitterDef.minAngularVelocity = 260.f; emitterDef.maxAngularVelocity = 300.f; mParticleEmitter = std::make_unique<ParticleEmitter>(emitterDef); mParticleEmitter->setActive(true); mParticleEmitter->setEffector([](Particle& p, sf::Time dt) { float ratio = p.lifetime.asSeconds() / p.initialLifetime.asSeconds(); auto opacity = sf::Uint8(255.f * ratio / p.linearVelocity * 100.f); auto color = p.sprite.getColor(); color.a = opacity; p.sprite.setColor(color); }); centerOrigin(mRocket); mRocket.setPosition(400.f, 320.f); centerOrigin(mMenuTitle); mMenuTitle.setPosition(400.f, 30.f); } void Menu::run() { while (mWindow.isOpen()) { handleEvent(); update(); render(); } } void Menu::startMusic() { const char* musicPath = "Resources/Menu/Theme.ogg"; if (!mMusic.openFromFile(musicPath)) throw std::runtime_error("Cannot open: " + std::string(musicPath)); mMusic.setVolume(50.f); mMusic.setLoop(true); mMusic.play(); } void Menu::handleEvent() { sf::Event event; while (mWindow.pollEvent(event)) { if (event.type == sf::Event::Closed) mWindow.close(); else if (event.type == sf::Event::Resized) { auto view = mWindow.getView(); view.setSize(float(event.size.width), float(event.size.height)); mWindow.setView(view); } else { mNewGameButton->handleEvent(event); mContinueButton->handleEvent(event); mOptionsButton->handleEvent(event); mExitButton->handleEvent(event); mVolumeSlider->handleEvent(event); } } } void Menu::render() { mWindow.clear(); mWindow.draw(*mStarfield); mWindow.draw(*mParticleEmitter); mWindow.draw(mRocket); mWindow.draw(mMenuTitle); mWindow.draw(mButtonPanel); mWindow.draw(*mNewGameButton); mWindow.draw(*mContinueButton); mWindow.draw(*mOptionsButton); mWindow.draw(*mExitButton); mWindow.draw(*mVolumeSlider); mWindow.display(); } void Menu::update() { mDelta += mClock.restart(); while (mDelta >= TimePerFrame) { mParticleEmitter->update(TimePerFrame); mStarfield->update(TimePerFrame); mDelta -= TimePerFrame; } } MenuResources::MenuResources() : hoverButton{} , clickButton{} , fire{} , rocket{} , button{} , bar{} , arrow{} , font{} { const char* hoverButtonPath = "Resources/Menu/Hover.ogg"; const char* clickButtonPath = "Resources/Menu/Click.ogg"; const char* firePath = "Resources/Menu/Fire.png"; const char* rocketPath = "Resources/Menu/Rocket.png"; const char* buttonPath = "Resources/Menu/Button.png"; const char* barPath = "Resources/Menu/Bar.png"; const char* arrowPath = "Resources/Menu/Arrow.png"; const char* fontPath = "Resources/Menu/KenneyFuture.ttf"; if (!hoverButton.loadFromFile(hoverButtonPath)) throw std::runtime_error("Cannot open: " + std::string(hoverButtonPath)); if (!clickButton.loadFromFile(clickButtonPath)) throw std::runtime_error("Cannot open: " + std::string(clickButtonPath)); if (!fire.loadFromFile(firePath)) throw std::runtime_error("Cannot open: " + std::string(firePath)); if (!rocket.loadFromFile(rocketPath)) throw std::runtime_error("Cannot open: " + std::string(rocketPath)); if (!button.loadFromFile(buttonPath)) throw std::runtime_error("Cannot open: " + std::string(buttonPath)); if (!bar.loadFromFile(barPath)) throw std::runtime_error("Cannot open: " + std::string(barPath)); if (!arrow.loadFromFile(arrowPath)) throw std::runtime_error("Cannot open: " + std::string(arrowPath)); if (!font.loadFromFile(fontPath)) throw std::runtime_error("Cannot open: " + std::string(fontPath)); }
d4864a7805901ba6f57a3e846cdcfa440a9c1380
c24fa74d053702d59f686aa8c780a1a201c2a966
/mEngine/UI/MessageBox.hpp
2cbeb994363ff77e12116234179fd0885e2f2ad0
[]
no_license
m1lka/DuckHunter_cpp
3a9e0dd951b5a17d068d5b1fe9ac4759adb69fe7
3a80846df09a54f75476a82338cc02c6a08c8b94
refs/heads/master
2020-05-06T20:07:32.517205
2019-10-22T21:30:56
2019-10-22T21:30:56
180,222,904
0
0
null
null
null
null
UTF-8
C++
false
false
1,788
hpp
MessageBox.hpp
#ifndef _MESSAGEBOX_HPP_ #define _MESSAGEBOX_HPP_ #include <SDL2/SDL.h> #include <string> using std::string; enum DialogResult { No = 0, Yes = 1 }; class MessageBox { public: static void ShowInfo(string title, string message) { SDL_MessageBoxButtonData buttons[1]; buttons[0].buttonid = 0; buttons[0].flags = SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT; buttons[0].text = "I see\0"; SDL_MessageBoxColorScheme colorScheme = { { {255, 0, 0}, {0, 255, 0}, {255, 255, 0}, {0, 0, 255}, {255, 0, 255} } }; SDL_MessageBoxData msgboxData; msgboxData.flags = SDL_MESSAGEBOX_INFORMATION; msgboxData.window = nullptr; msgboxData.title = title.c_str(); msgboxData.message = message.c_str(); msgboxData.numbuttons = 1; msgboxData.buttons = buttons; msgboxData.colorScheme = &colorScheme; int buttonid = 0; SDL_ShowMessageBox(&msgboxData, &buttonid); } static DialogResult ShowDialog(string title, string message) { SDL_MessageBoxButtonData buttons[2] = { {SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT, DialogResult::No, "No"}, {SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT, DialogResult::Yes, "Yes"} }; SDL_MessageBoxColorScheme colorScheme = { { {255, 0, 0}, {0, 255, 0}, {255, 255, 0}, {0, 0, 255}, {255, 0, 255} } }; SDL_MessageBoxData msgboxData; msgboxData.flags = SDL_MESSAGEBOX_INFORMATION; msgboxData.window = nullptr; msgboxData.title = title.c_str(); msgboxData.message = message.c_str(); msgboxData.numbuttons = 2; msgboxData.buttons = buttons; msgboxData.colorScheme = &colorScheme; DialogResult buttonid; SDL_ShowMessageBox(&msgboxData, reinterpret_cast<int*>(&buttonid)); return buttonid; } }; #endif // _MESSAGEBOX_HPP_
be53580387493c4dafe5b99878fffe023990eec6
921f4e66c465f53d2abd256a2845d4c922fa8f26
/pretraitement.hpp
f0976cca2adb1aeb6fece069bf5d8f545d0d063e
[]
no_license
Arturgo/hashcode21
f25f32bc165e9badd3e84115291e2eb95d636019
0ae05418fcb7197609df032d618df638eb0ca3ad
refs/heads/master
2023-03-10T21:21:29.457469
2021-02-25T21:20:47
2021-02-25T21:20:47
342,316,823
1
0
null
null
null
null
UTF-8
C++
false
false
5,697
hpp
pretraitement.hpp
#pragma once #include <bits/stdc++.h> using namespace std; struct Arc { string identifiant; int id; int iDepart, iFin; int longueur; int nbPassent; }; struct Voiture { vector<int> chemin; int longueurChemin; }; struct Probleme { int dureeSimulation; int nbIntersections; int nbRues; int nbVoitures; int bonus; string fichierEntree; vector<Voiture> voitures; vector<Arc> arcs; map<string, int> nomToId; Probleme() {} Probleme(string fichierEntree) : fichierEntree(fichierEntree) { ifstream entree(fichierEntree, ios::in); entree >> dureeSimulation >> nbIntersections >> nbRues >> nbVoitures >> bonus; for (int i(0); i < nbRues; ++i) { Arc arc; arc.nbPassent = 0; entree >> arc.iDepart >> arc.iFin >> arc.identifiant >> arc.longueur; arcs.push_back(arc); nomToId[arc.identifiant] = i; } vector<int> nbPassages(nbIntersections, 0); for (int i(0); i < nbVoitures; ++i) { Voiture curVoiture; int nbRues; entree >> nbRues; curVoiture.chemin.resize(nbRues); curVoiture.longueurChemin = 0; for (int j(0); j < nbRues; ++j) { string nom; entree >> nom; int id = nomToId[nom]; curVoiture.chemin[j] = id; curVoiture.longueurChemin += arcs[id].longueur; arcs[id].nbPassent++; nbPassages[arcs[id].iFin]++; } voitures.push_back(curVoiture); } int nbArcsInutiles(0); for(int iArc = 0;iArc < (int)arcs.size();iArc++) if(arcs[iArc].nbPassent == 0) nbArcsInutiles++; vector<int> nouvelId(nbRues,-1); vector<Arc> nouveauxArcs; int curId(0); for (int i(0); i < nbRues; ++i) if (arcs[i].nbPassent != 0) { nouvelId[i] = curId++; nouveauxArcs.push_back(arcs[i]); nouveauxArcs.back().id = nouvelId[i]; } arcs = move(nouveauxArcs); nbRues = (int)arcs.size(); for (int i(0); i < (int)voitures.size(); ++i) for (auto &id : voitures[i].chemin) { assert(nouvelId[id] != -1); id = nouvelId[id]; } vector<int> degreEntrant(nbIntersections), degreSortant(nbIntersections); for (auto arc : arcs) { degreEntrant[arc.iFin]++; degreSortant[arc.iDepart]++; } int degEntrantMax(0), degSortantMax(0); for (auto d : degreEntrant) degEntrantMax = max(degEntrantMax, d); for (auto d : degreSortant) degSortantMax = max(degSortantMax, d); cerr << "Deg sortant max : " << degSortantMax << endl; cerr << "Deg entrant max : " << degEntrantMax << endl; ofstream sortieVoitures(fichierEntree + ".infoVoitures", ios::out); cerr << "Nombre d'arcs inutiles : " << nbArcsInutiles << endl; sortieVoitures << voitures.size() << endl; for (auto voiture : voitures) sortieVoitures << voiture.longueurChemin << endl; ofstream sortieSommets(fichierEntree + ".infoSommets", ios::out); sortieSommets << nbIntersections << endl; for (int iInter = 0;iInter < nbIntersections;iInter++) sortieSommets << nbPassages[iInter] << endl; } }; Probleme probleme; struct Solution { vector< vector< pair<int, int > > > solution; void afficheSolution(); }; int idRueOuverte(const vector<pair<int, int>> cycle, int temps) { int curPos(0); while (curPos < (int)cycle.size() and cycle[curPos].second <= temps) temps -= cycle[curPos++].second; assert(curPos < (int)cycle.size()); return cycle[curPos].first; } int scoreSolution(const Solution &sol) { int scoreTot(0); vector<queue<int>> queues(probleme.nbRues); vector<pair<int, int>> curPos(probleme.nbVoitures); vector<int> dureeCycle(probleme.nbIntersections); for (int i(0); i < probleme.nbIntersections; ++i) for (auto v : sol.solution[i]) dureeCycle[i] += v.second; const auto &arcs = probleme.arcs; const auto &voitures = probleme.voitures; for (int idVoiture(0); idVoiture < probleme.nbVoitures; ++idVoiture) { curPos[idVoiture] = make_pair(0, 0); queues[voitures[idVoiture].chemin[0]].push(idVoiture); } for (int t(0); t < probleme.dureeSimulation; ++t) { vector<int> toPop; for (int idVoiture(0); idVoiture < probleme.nbVoitures; ++idVoiture) { auto &[idChemin , lenRestante] = curPos[idVoiture]; if (idChemin == (int)voitures[idVoiture].chemin.size()) continue; int idArc = voitures[idVoiture].chemin[idChemin]; if (lenRestante == 1) queues[idArc].push(idVoiture); if (lenRestante > 0) lenRestante--; if (!lenRestante) { Arc curArc = arcs[ voitures[idVoiture].chemin[idChemin]]; if (queues[ idArc].front() != idVoiture) continue; //assert( dureeCycle[curArc.iFin]); if (!dureeCycle[curArc.iFin] or idRueOuverte(sol.solution[curArc.iFin], t % dureeCycle[curArc.iFin]) != idArc) continue; toPop.push_back(idArc); idChemin++; if (idChemin == (int)voitures[idVoiture].chemin.size()) scoreTot += probleme.bonus + probleme.dureeSimulation - t; else { Arc nxtArc = arcs[voitures[idVoiture].chemin[idChemin]]; lenRestante = nxtArc.longueur; } } } for (auto v : toPop) queues[v].pop(); } return scoreTot; } void Solution::afficheSolution() { ofstream sortieSolution(probleme.fichierEntree + ".meilleureSolution", ios::out); int nbNonNuls(0); for (auto v : solution) nbNonNuls += !v.empty(); sortieSolution << nbNonNuls << endl; cerr << "valeur de la solution : " << scoreSolution(*this); for (int id(0); id < probleme.nbIntersections; ++id) { if (solution[id].empty()) continue; sortieSolution << id << endl; sortieSolution << solution[id].size() << endl; for (auto [idChemin, duree] : solution[id]) { //assert(idChemin < probleme.arcs.size()); assert(0 <= idChemin); sortieSolution << probleme.arcs[idChemin].identifiant << ' ' << duree << endl; } } }
2365bfef2a80a8c258b191384f45fbfc19c535a4
059c4d102fe0ee42522cd75ed04749d28949bf7f
/vendor/rocksdb-5.9.2/db/snapshot_checker.h
8a8738a5a8830c6016f03b23774c9b0e151def45
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "GPL-2.0-only", "BSD-3-Clause" ]
permissive
shuoranliu/chubaofs
5a2b310146e35fe5cf612a8a6f67baffaad03201
9c0bf89959f50673d0910cf07dd0a55ce775b3fd
refs/heads/master
2022-05-21T00:44:24.212401
2022-05-13T03:43:55
2022-05-13T03:43:55
185,146,838
2
1
Apache-2.0
2022-03-01T06:30:45
2019-05-06T07:36:45
Go
UTF-8
C++
false
false
1,652
h
snapshot_checker.h
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved. // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). #pragma once #include "rocksdb/types.h" namespace rocksdb { // Callback class that control GC of duplicate keys in flush/compaction class SnapshotChecker { public: virtual ~SnapshotChecker() {} virtual bool IsInSnapshot(SequenceNumber sequence, SequenceNumber snapshot_sequence) const = 0; }; class DisableGCSnapshotChecker : public SnapshotChecker { public: virtual ~DisableGCSnapshotChecker() {} virtual bool IsInSnapshot(SequenceNumber sequence, SequenceNumber snapshot_sequence) const { // By returning false, we prevent all the values from being GCed return false; } static DisableGCSnapshotChecker* Instance() { return &instance_; } protected: static DisableGCSnapshotChecker instance_; explicit DisableGCSnapshotChecker() {} }; class WritePreparedTxnDB; // Callback class created by WritePreparedTxnDB to check if a key // is visible by a snapshot. class WritePreparedSnapshotChecker : public SnapshotChecker { public: explicit WritePreparedSnapshotChecker(WritePreparedTxnDB* txn_db); virtual ~WritePreparedSnapshotChecker() {} virtual bool IsInSnapshot(SequenceNumber sequence, SequenceNumber snapshot_sequence) const override; private: #ifndef ROCKSDB_LITE const WritePreparedTxnDB* const txn_db_; #endif // !ROCKSDB_LITE }; } // namespace rocksdb
4921e9b593862f75f672c379bb280fb1bfc5f6f4
4497624912a7af7dbdb800e9c0b152af1cca2655
/670B.cpp
b51e78a4e2efb89adf355dd1d028631930d76ec1
[]
no_license
singhaditya8499/Codeforces
0a978ea628660e18188856671e742a4cfec7cb28
b73e9654b319580648c016659a915174615a6ed5
refs/heads/master
2021-05-18T12:22:21.857546
2020-04-22T19:14:30
2020-04-22T19:14:30
251,241,430
1
0
null
null
null
null
UTF-8
C++
false
false
856
cpp
670B.cpp
#include<bits/stdc++.h> #include<unordered_set> #define mod 1000000007 #define PI 3.14159265358979323846264338327950 #define eps 1e-9 typedef long long ll; using namespace std; bool cmp(pair<int,pair<int,int> > a,pair<int,pair<int,int> > b) { if(a.second.second!=b.second.second) return a.second.second<b.second.second; else { if(a.first!=b.first) return a.first<b.first; else { return a.second.first>b.second.first; } } } int main() { ll n,k; cin>>n>>k; map<ll,int> m; int cur=1; for(int i=0;i<n;i++) { ll x; cin>>x; m[cur++]=x; } ll tmp; for(ll i=sqrt(k)-2;;i++) { if(((i*(i+1))/2)>=k) { tmp=i-1; break; } } k=k-(tmp*(tmp+1))/2; cout<<m[k]<<"\n"; }