blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f637963a479b9c5b7d7a4c5ac772d07b5d33bbaf | 5945d6e644a25dcc1b1552205b6f96fffe159f5f | /src/lib/users/usersreportspam.h | 5981f7d1e12cd526827af22b0a40ac24a1b00633 | [
"BSD-3-Clause"
] | permissive | yuntan/twitter4qml | 5cba11e7f10eb53b547484ce680b115f3511d9c9 | 67a7ea7c5467293f6b288435e73bc9db18639985 | refs/heads/master | 2016-09-08T01:20:37.275268 | 2014-02-18T09:03:39 | 2014-02-18T09:03:39 | 16,941,630 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,964 | h | /* Copyright (c) 2012-2013 Twitter4QML Project.
* 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 the Twitter4QML 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 TWITTER4QML BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef USERSREPORTSPAM_H
#define USERSREPORTSPAM_H
#include "abstractblocksaction.h"
class UsersReportSpam : public AbstractBlocksAction
{
Q_OBJECT
Q_DISABLE_COPY(UsersReportSpam)
public:
explicit UsersReportSpam(QObject *parent = 0);
protected:
QUrl api() const { return QUrl("https://api.twitter.com/1.1/users/report_spam.json"); }
};
#endif // UESRSREPORTSPAM_H
| [
"stasuku@gmail.com"
] | stasuku@gmail.com |
472702ac85ea9dea2b76fb6ed114a13953774659 | a3634de7800ae5fe8e68532d7c3a7570b9c61c5b | /spoj/NDIV.cpp | 2babf1a4762b4244b41e78c699fa49e3abb923ab | [] | no_license | MayankChaturvedi/competitive-coding | a737a2a36b8aa7aea1193f2db4b32b081f78e2ba | 9e9bd21de669c7b7bd29a262b29965ecc80ad621 | refs/heads/master | 2020-03-18T01:39:29.447631 | 2018-02-19T15:04:32 | 2018-02-19T15:04:32 | 134,152,930 | 0 | 1 | null | 2018-05-20T13:27:35 | 2018-05-20T13:27:34 | null | UTF-8 | C++ | false | false | 2,317 | cpp | #include <iostream>
#include <cassert>
#include <algorithm>
using namespace std;
int main()
{
const int PRIME_MAX = 1e5 + 5;
bool isPrime[PRIME_MAX];
int numFact[PRIME_MAX]={0};
for(int i=1; i<PRIME_MAX; i++)
{ isPrime[i]= true;
numFact[i]= 2; //1 and i always divide i.
}
numFact[1]=1;
for(int i=2; i<PRIME_MAX; ++i)
{ for(int j=2*i; j<PRIME_MAX; j+=i)
{ numFact[j]++;
isPrime[j]= false;
}
}
int primes[PRIME_MAX];
long long primeSquares[PRIME_MAX];
int primeCount = 0;
for(int i=2; i<PRIME_MAX; ++i)
{ if(isPrime[i])
{ primes[primeCount] = i;
long long ill = i;
primeSquares[primeCount] = (ill*ill);
primeCount++;
}
}
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
int a, b, n, count=0;
cin >> a >> b >> n;
for(int i=a; i<=b; ++i)
{
int factI=0, x=1, y=1;
for(int iter=0; iter<primeCount; ++iter)
{ int j = primes[iter];
long long jll= j;
if(jll*jll*jll > i)
break;
int icopy = i;
while(icopy%j == 0)
{ icopy/=j;
x*=j;
}
}
y= i/x;
//now, x contains only the prime factors upto N^1/3, and y contains the rest.
//So, we already know number of factors of x.
int factX, factY=2;
if(x < PRIME_MAX)
factX= numFact[x];
else
{ int j;
factX=0;
for(j=1; j*j < x; ++j)
{ if(x%j==0)
factX+=2;
}
if(j*j == x)
factX++;
}
if(factX > n)
continue;
if(y==1)
{ factY = 1;
}
else if(y<PRIME_MAX && isPrime[y]) //y is a small prime.
factY = 2;
else if(binary_search(primeSquares, primeSquares + primeCount, y))//y = p.p
{
factY = 3;
}
else
{ bool f1=0, f2=0, h=0;
for(int iter=0; iter<primeCount; ++iter)
{ int j = primes[iter];
long long jll= j;
if(jll*jll > y)
break;
if(y%j == 0)
{ if(!f1)
{ f1=true;
if(y% (jll*jll) ==0)
h=true;
}
else if(!f2)
f2=false;
else
assert(0);
}
}
if(!f1 && !f2) //y is a big prime.
factY = 2;
else if(f1 && !f2 && !h)//y is a small prime* big prime.
{ factY= 4;
}
else if(f1 && !f2 && h) //y is square of a small prime.
factY = 3;
else if(f1 && f2) //y = p.q where p and q are small primes.
factY = 4;
else
assert(0);
}
//assert(__gcd(x, y) == 1);
factI = factX*factY;
if(factI==n)
++count;
}
cout << count;
}
| [
"f20160006@goa.bits-pilani.ac.in"
] | f20160006@goa.bits-pilani.ac.in |
9c7b8e9d4e184bba1efc26fe035d896f97304e2e | 9d53c73cdb19d94e4512a7a18d280f7a6eeb872f | /lockstep/lockstep/include/math/crandom.h | 159899a0cbdb6018d511c944df30866c1cfbc5e0 | [] | no_license | shiliupingGitHub/MyLockstep | 18ccef7981fe131c57734e37cc41be1b8977b934 | ec0f66722dc5b14611c4ae1e5b07adfcd8a8a4c0 | refs/heads/master | 2020-05-17T00:13:52.244003 | 2019-04-25T09:18:47 | 2019-04-25T09:18:47 | 183,389,765 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 282 | h | #ifndef LOCKSTEP_CRANDOM_H
#define LOCKSTEP_CRANDOM_H
#include <vector>
namespace lockstep
{
class CRandom
{
public:
CRandom();
~CRandom();
public:
float GetRand();
void SetSeed(unsigned int seed);
private:
std::vector<int> mRandom;
int mCur;
};
}
#endif //
| [
"582441842@qq.com"
] | 582441842@qq.com |
bbe601b28b918384999ae635d5c8298db1708371 | 5de343da9cbf6ef759e0cb3317039571364cc8db | /FMIBook/Main.cpp | 31c47834f39848b3175a090bada64338dda3fe1b | [] | no_license | kneychev/FMIBook | 3c0645b0c45ad0619904c9b00114720bed0dd1d0 | a6691db2988abccac9dc6f89bee747c076c84d3d | refs/heads/master | 2022-11-20T04:35:27.556245 | 2020-07-17T19:14:10 | 2020-07-17T19:14:10 | 273,052,471 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 94 | cpp | #include <iostream>
#include "FMIBook.h"
int main()
{
FMIBook f;
f.Execute();
return 0;
} | [
"knneychev@gmail.com"
] | knneychev@gmail.com |
b29d2ebe1a7a2029432a1ba3f1e21831081c43c9 | 21dd18e6665a3eb7c859912ccf91ad650535235a | /Arduino/Updated_Bluetooth_Code.ino | ebedf01faa0a7f5cd490fec7b0e6d885cd99906f | [] | no_license | shaykhok/athApp | 7c1d43790a42fe03fc455427168912068cba22c1 | 1d3f389d59a54596db4fa2726ed01a47f8182fce | refs/heads/master | 2020-03-16T16:04:13.049406 | 2018-05-09T14:58:55 | 2018-05-09T14:58:55 | 132,770,815 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,172 | ino | #include <Arduino.h>
#include <SPI.h>
#if not defined (_VARIANT_ARDUINO_DUE_X_) && not defined (_VARIANT_ARDUINO_ZERO_)
#include <SoftwareSerial.h>
#endif
#include "Adafruit_BLE.h"
#include "Adafruit_BluefruitLE_SPI.h"
#include "Adafruit_BluefruitLE_UART.h"
#include "BluefruitConfig.h"
#include <Adafruit_NeoPixel.h>
//change FACTORYRESET_ENABLE TO 1 to reset
#define FACTORYRESET_ENABLE 0
#define MINIMUM_FIRMWARE_VERSION "0.6.6"
#define MODE_LED_BEHAVIOUR "MODE"
//hardware serial bluetooth coomunication with Flora
Adafruit_BluefruitLE_UART ble(Serial1, BLUEFRUIT_UART_MODE_PIN);
// A small helper
void error(const __FlashStringHelper*err) {
Serial.println(err);
while (1);
}
int assignedReps; //total reps in assigned workout
int workout[100]; //max number of reps in a workout is 100 --- this array needs to be reset at the end of a workout
int currentRep = 0;
int repsRemaining = assignedReps; //define this in the loop right after the workout is assigned
int setOfFives = 0; //breaking down the overall workout into sets of 5 reps, the set the user is on (Ex. 0 -> set consisting of reps 0 - 4)
int startPos;
int targetPos;
int currentPos;
int kneeNeoPixelPin = 8; //on board NeoPixel pin
int flexPin = 10; //flex sensor pin
float squatPercentage; //percentage of the squat
float completedPercentage = 1;
float attemptedPercentage = 0.85;
float failedPercentage = 0.6; //percentage at which we know the user has failed the squat and they are coming back up
float restartingPercentage = 0.35;
boolean workoutAssigned = false;
boolean startSet = false;
boolean targetSet = false;
boolean resetFromTarget = false; //athlete needs to reset from target to starting position before workout begins
boolean workoutCompleted = false;
int squatState = 0; //0 if unattempted, 1 if failed, 2 if completed successfully, 3 if in progress
Adafruit_NeoPixel kneeNeoPixel = Adafruit_NeoPixel(1, kneeNeoPixelPin, NEO_GRB + NEO_KHZ800); // neoPixel on knee sleeve
// colors for NeoPixel
uint32_t red = kneeNeoPixel.Color(255, 0, 0);
uint32_t green = kneeNeoPixel.Color(0, 255, 0);
uint32_t yellow = kneeNeoPixel.Color(255, 255, 0);
uint32_t white = kneeNeoPixel.Color(255, 255, 255);
void setup() {
pinMode(flexPin, INPUT);
//Serial.begin(115200); //figure out how to do this without the serial...
kneeNeoPixel.begin();
kneeNeoPixel.show(); // Initialize pixel to 'off'
kneeNeoPixel.setBrightness(100);
//bluetooth code below
//while (!Serial); // required for Flora & Micro (can be commented out so we can work without having to have the serial monitor open)
delay(500);
Serial.begin(115200); //figure out how to do this without the serial...
Serial.println(F("Adafruit Bluefruit Command Mode Example"));
Serial.println(F("---------------------------------------"));
/* Initialise the module */
Serial.print(F("Initialising the Bluefruit LE module: "));
if ( !ble.begin(VERBOSE_MODE) )
{
error(F("Couldn't find Bluefruit, make sure it's in CoMmanD mode & check wiring?"));
}
Serial.println( F("OK!") );
if ( FACTORYRESET_ENABLE )
{
/* Perform a factory reset to make sure everything is in a known state */
Serial.println(F("Performing a factory reset: "));
if ( ! ble.factoryReset() ){
error(F("Couldn't factory reset"));
}
}
/* Disable command echo from Bluefruit */
ble.echo(false);
Serial.println("Requesting Bluefruit info:");
/* Print Bluefruit information */
ble.info();
Serial.println(F("Please use Adafruit Bluefruit LE app to connect in UART mode"));
Serial.println(F("Then Enter characters to send to Bluefruit"));
Serial.println();
ble.verbose(false); // debug info is a little annoying after this point!
/* Wait for connection */
while (! ble.isConnected()) {
delay(500);
}
// LED Activity command is only supported from 0.6.6
if ( ble.isVersionAtLeast(MINIMUM_FIRMWARE_VERSION) )
{
// Change Mode LED Activity
Serial.println(F("******************************"));
Serial.println(F("Change LED activity to " MODE_LED_BEHAVIOUR));
ble.sendCommandCheckOK("AT+HWModeLED=" MODE_LED_BEHAVIOUR);
Serial.println(F("******************************"));
}
}
void loop() {
//wait for workout assignment
while(!workoutAssigned){
readAppInput();
}
//wait for start to be set
while(!startSet){
readAppInput();
}
//wait for target to be set
while(!targetSet){
readAppInput();
}
//wait for athlete to reset to starting position
while(!resetFromTarget){
readAppInput();
if(!startSet){ //if the positions have been reset
squatState = 0;
updateKneeNeoPixel();
break;
}
currentPos = analogRead(flexPin);
squatPercentage = (float)((float)startPos - (float)currentPos)/(float)((float)startPos - (float)targetPos);
//show white light until athlete resets to starting position
kneeNeoPixel.setPixelColor(0, white);
kneeNeoPixel.show();
if(squatPercentage <= restartingPercentage){
//quick flash to let user know they are ready to start workout
neoPixelQuickFlash();
resetFromTarget = true;
}
}
while(!workoutCompleted && startSet && targetSet){
//read from app in case the user wants to start a different workout/reset start and target positions
readAppInput();
if(!startSet){ //if the positions have been reset
if(workout[currentRep] == 3){ //if the squat was in progress when positions were reset, just don't count the squat towards the workout
workout[currentRep] = 0;
}
squatState = 0;
updateKneeNeoPixel();
break;
//does reading a 3 here reset the reset from target
}
//read squat position and determine squat percentage
currentPos = analogRead(flexPin);
squatPercentage = (float)((float)startPos - (float)currentPos)/(float)((float)startPos - (float)targetPos);
//update squatState and workout array according to percentage
if((squatState == 0) && (squatPercentage > attemptedPercentage)){ //uanttempted to in progress
squatState = 3;
workout[currentRep] = squatState;
workoutStatus();
sendUpdate();
} else if((squatState == 3) && (squatPercentage >= completedPercentage)){ //in progress to completed
squatState = 2;
workout[currentRep] = squatState;
workoutStatus();
sendUpdate();
} else if((squatState == 3) && (squatPercentage <= failedPercentage)){ //in progress to failed
squatState = 1;
workout[currentRep] = squatState;
workoutStatus();
sendUpdate();
} else if((squatState == 2) && (squatPercentage <= restartingPercentage)){ //completed to unattempted
squatState = 0;
currentRep++;
repsRemaining--;
if(currentRep % 5 == 0){ //update the set of 5 to when current reps starts with 0 or 5
setOfFives++; //now working on new set of 5
}
workoutStatus();
sendUpdate();
} else if((squatState == 1) && (squatPercentage <= restartingPercentage)){ //failed to unattempted
squatState = 0;
currentRep++;
repsRemaining--;
if(currentRep % 5 == 0){ //update the set of 5 to when current reps starts with 0 or 5
setOfFives++; //now working on new set of 5
}
workoutStatus();
sendUpdate();
}
updateKneeNeoPixel(); //update NeoPixel on knee sleeve based on squat state
//when all reps have been completed then end the workout
if(repsRemaining == 0){
workoutCompleted = true;
workoutAssigned = false; //after the workout is finished then it's not assigned
}
}
//reset variables to initial states and wait for next workout assignment
while(workoutCompleted){
readAppInput();
}
}
//flash neoPixel on knee sleeve green
void neoPixelQuickFlash(){
int i = 0;
//5 flashes
for(i = 0; i != 5; ++i){
kneeNeoPixel.setPixelColor(0, green);
kneeNeoPixel.show();
delay(80);
kneeNeoPixel.setPixelColor(0, 0);
kneeNeoPixel.show();
delay(80);
}
}
//flash neoPixel on knee sleeve green
void neoPixelFlash(){
kneeNeoPixel.setPixelColor(0, green);
kneeNeoPixel.show();
delay(1000);
kneeNeoPixel.setPixelColor(0, 0);
kneeNeoPixel.show();
delay(1000);
kneeNeoPixel.setPixelColor(0, green);
kneeNeoPixel.show();
delay(1000);
kneeNeoPixel.setPixelColor(0, 0);
kneeNeoPixel.show();
}
//flash neoPixel on knee sleeve red
void neoPixelResetFlash(){
int i = 0;
//5 flashes
for(i = 0; i != 5; ++i){
kneeNeoPixel.setPixelColor(0, red);
kneeNeoPixel.show();
delay(80);
kneeNeoPixel.setPixelColor(0, 0);
kneeNeoPixel.show();
delay(80);
}
}
//glow neoPixel on knee sleeve green
void neoPixelGlow(){
int timesToGlow = 0;
for(timesToGlow = 0; timesToGlow != 3; ++timesToGlow){
int i = 0;
kneeNeoPixel.setPixelColor(0, green);
for(i = 0; i != 100; ++i){
kneeNeoPixel.setPixelColor(0, green);
kneeNeoPixel.setBrightness(i);
kneeNeoPixel.show();
delay(5);
}
for(i = 100; i != -1; --i){
kneeNeoPixel.setPixelColor(0, green);
kneeNeoPixel.setBrightness(i);
kneeNeoPixel.show();
delay(5);
}
}
//turn off NeoPixel, but return to brightness 100 for future NeoPixel actions
kneeNeoPixel.setPixelColor(0, 0);
kneeNeoPixel.show();
kneeNeoPixel.setBrightness(100);
}
//update color of NeoPixel based on state of squat
void updateKneeNeoPixel(){
if(squatState == 0){
kneeNeoPixel.setPixelColor(0, 0);
kneeNeoPixel.show();
} else if(squatState == 1){
kneeNeoPixel.setPixelColor(0, red);
kneeNeoPixel.show();
} else if(squatState == 2){
kneeNeoPixel.setPixelColor(0, green);
kneeNeoPixel.show();
} else if(squatState == 3){
kneeNeoPixel.setPixelColor(0, yellow);
kneeNeoPixel.show();
}
}
/**sends string representing the state of the system:
char 1:
0 if start and target are not set
1 if start set and target not set
2 if both start and target set
char 2:
squat mode state (0 - unattempted, 1 - failed, 2 - completed or 3 - in progress)
chars 3-5:
reps remaining - example: 051 means 51 reps remaining
chars 6 and 7: set of five the user is currently on
char 6: tens place (0 or 1)
char 7: ones place (0-9)
chars 8-12:
values of the 5 reps in the set**/
void sendUpdate(){
Serial.println("Sending update with data");
String workoutUpdateToSend = "";
//add char one to the string
if((startSet == false) && (targetSet == false)){
workoutUpdateToSend += "0";
} else if ((startSet == true) && (targetSet == false)){
workoutUpdateToSend += "1";
} else {
workoutUpdateToSend += "2";
}
//add char 2 to the string
workoutUpdateToSend += squatState;
//add chars 3-5 to the string
String repsLeft = "000" + String(repsRemaining);
//trim string to the last 3 chars
int repsLeftLength = repsLeft.length();
//get last 3 characters of string
repsLeft = repsLeft.substring(repsLeftLength - 3);
Serial.print("Reps remaining");
Serial.println(repsLeft);
workoutUpdateToSend += repsLeft;
//add chars 6 and 7 to the string
String currSetOfFive = "";
//add in tens place
if(setOfFives > 9){
currSetOfFive += "1";
} else currSetOfFive += "0";
//add in ones place
int onesPlace = setOfFives % 10;
currSetOfFive += String(onesPlace);
workoutUpdateToSend += currSetOfFive;
//add in 5 reps
int repStartingCurrSetOfFive = (setOfFives * 5);
int firstRep = workout[repStartingCurrSetOfFive];
int secondRep = workout[repStartingCurrSetOfFive+1];
int thirdRep = workout[repStartingCurrSetOfFive+2];
int fourthRep = workout[repStartingCurrSetOfFive+3];
int fifthRep = workout[repStartingCurrSetOfFive+4];
String fiveReps = "";
fiveReps = String(firstRep) + String(secondRep) + String(thirdRep) + String(fourthRep) + String(fifthRep);
workoutUpdateToSend += fiveReps;
Serial.print("Workout update string: ");
Serial.println(workoutUpdateToSend);
//send via Bluetooth (include code)
Serial.print("[Send] ");
ble.print("AT+BLEUARTTX=");
ble.println(workoutUpdateToSend);
Serial.println(workoutUpdateToSend);
delay(200); // smallest possible delay without the app reading it all as one string
// check response status
if (! ble.waitForOK() ) {
Serial.println(F("Failed to send?"));
}
}
void workoutStatus(){
Serial.print("Current: ");
Serial.print(currentPos);
Serial.print(" Squat %: ");
Serial.print(squatPercentage);
Serial.print(" Squat State ");
Serial.print(squatState);
Serial.print(" Start: ");
Serial.print(startPos);
Serial.print(" Target: ");
Serial.println(targetPos);
Serial.print("Current rep: ");
Serial.print(currentRep);
Serial.print(" Current set of fives: ");
Serial.print(setOfFives);
Serial.print(" Reps remaining: ");
Serial.print(repsRemaining);
Serial.print(" Assigned workout :");
Serial.println(assignedReps);
Serial.println("");
}
void readAppInput(){
ble.println("AT+BLEUARTRX"); // reads what the app has sent to the Arduino
ble.readline();
if (strcmp(ble.buffer, "OK") == 0) { // if nothing was sent then return and read what was sent again
// no data
return;
} else {
//message received from app
//1st char = actionToTake: 0 = assign new workout, 1 = set a target position, 2 = set a start positon, 3 = reset both start and target position
//chars 2-4: reps assigned for the workout
String bufferInfo = (char*)ble.buffer;
Serial.print("Buffer Info: ");
Serial.println(bufferInfo);
//if there's a buffer error (reps Assigned equals 0 which it should not ever) -- there has been an error where the buffer will contain OOK in it for some reason
if(atoi(ble.buffer)%1000 == 0){
return;
}else{
int actionToTake = (atoi(ble.buffer)/1000); //floor of this answer
Serial.print("Buffer: ");
Serial.println(ble.buffer);
Serial.print("Action: ");
Serial.println(actionToTake);
if(actionToTake == 0){ //new workout is sent to Arduino, requires reset of starting and target positions
assignedReps = atoi(ble.buffer) % 1000;
Serial.print("Assigned reps in Workout: ");
Serial.println(assignedReps);
repsRemaining = assignedReps;
currentRep = 0;
setOfFives = 0;
workoutCompleted = false;
startSet = false;
targetSet = false;
resetFromTarget = false;
for(int i = 0; i != 100; ++i){
workout[i] = 0;
}
workoutAssigned = true;
neoPixelGlow(); //glow to indicated the workout has been received by the knee sleeve
sendUpdate();
} else if(actionToTake == 1){ //start position is being set
Serial.println("Setting start pos");
startPos = analogRead(flexPin);
Serial.print("Start pos: ");
Serial.println(startPos);
startSet = true;
sendUpdate();
neoPixelFlash();
} else if(actionToTake == 2){ //target position is being set
Serial.println("Setting target pos");
targetPos = analogRead(flexPin);
Serial.print("Target pos: ");
Serial.println(targetPos);
targetSet = true;
sendUpdate();
neoPixelFlash();
resetFromTarget = false;
} else if(actionToTake == 3){ //start and target positions are being reset
Serial.println("Resetting squat start and target pos");
startSet = false;
targetSet = false;
resetFromTarget = false;
//need to prevent from allowing them to continue reps after these have been reset, exit the loop
sendUpdate();
neoPixelResetFlash();
}
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
898cdca4c9239c4b1e9d3ff8300570719cb48ff8 | d37294afac67bdeef3956e7da6f276a9c8ee23de | /lqneditor/lqneditor/entry.cpp | aeaffe7f60670654b79fbe0d1405915c58fd182a | [] | no_license | layeredqueuing/V5 | 62c1eef57ba1f15ebd2a15f29abff6beea4f56f6 | 93dac0b75fd4da2dfa8d3cd64eb0b76dda3cf249 | refs/heads/master | 2023-08-31T15:38:49.476637 | 2023-08-22T11:42:01 | 2023-08-22T11:42:01 | 35,963,769 | 15 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 5,633 | cpp | //
// entry.cpp
// lqneditor
//
// Created by Greg Franks on 2012-11-07.
// Copyright (c) 2012 Real Time and Distrubuted Systems Group. All rights reserved.
//
#include <cassert>
#include "model.h"
#include "task.h"
#include "entry.h"
#include "phase.h"
#include "arc.h"
#include <lqio/dom_task.h>
#include <lqio/dom_entry.h>
#include <lqio/dom_phase.h>
Entry::Entry( const LQIO::DOM::Entry& entry, const Task& task, const Model& model )
: Node(model), _phases(), _task(task), _entry(entry)
{
for ( std::map<unsigned, LQIO::DOM::Phase*>::const_iterator next_phase = entry.getPhaseList().begin(); next_phase != entry.getPhaseList().end(); ++next_phase ) {
_phases[next_phase->first] = new Phase( next_phase->first, *(next_phase->second), *this, model );
}
_extent.x = Model::DEFAULT_ENTRY_WIDTH;
_extent.y = Model::DEFAULT_ENTRY_HEIGHT;
}
Entry::~Entry()
{
}
void Entry::connectCalls()
{
for ( std::map<unsigned, Phase*>::const_iterator next_phase = _phases.begin(); next_phase != _phases.end(); ++next_phase ) {
Phase * phase = next_phase->second;
phase->connectCalls( _src_arcs );
}
}
void Entry::addAsDestination( ArcForEntry * arc )
{
_dst_arcs.push_back( arc );
}
void Entry::addAsSource( ArcForEntry * arc )
{
_src_arcs.push_back( arc );
}
const std::string& Entry::getName() const
{
return _entry.getName();
}
void Entry::findChildren( std::set<const Task *>& call_chain ) const throw( std::runtime_error )
{
std::set<const Task *>::const_iterator item = call_chain.find( &_task );
if ( item != call_chain.end() ) throw std::runtime_error( getName().c_str() );
call_chain.insert( &_task );
const_cast<Task&>(_task).setLayer( call_chain.size() );
/* For all phases, do findChildren... */
for ( std::map<unsigned, Phase*>::const_iterator next_phase = _phases.begin(); next_phase != _phases.end(); ++next_phase ) {
next_phase->second->findChildren( call_chain );
}
call_chain.erase( &_task );
}
double Entry::utilization() const
{
const LQIO::DOM::ExternalVariable * copies = _task.getDOM().getCopies();
double value;
if ( copies->wasSet() && copies->getValue(value) ) {
return _entry.getResultUtilization() / value;
} else {
return 0.;
}
}
Node& Entry::moveTo( const wxPoint& origin )
{
Node::moveTo( origin );
wxPoint point( origin.x, origin.y + _extent.y );
double offset = static_cast<double>(_extent.x) / (_src_arcs.size() + 1.0);
/* Move the sources of the arcs */
for ( std::vector<ArcForEntry *>::const_iterator next_arc = _src_arcs.begin(); next_arc != _src_arcs.end(); ++next_arc ) {
point.x += offset;
wxPoint& src = (*next_arc)->src();
src = point;
}
/* Move the destinations of the arcs */
point.x = origin.x;
point.y = origin.y;
offset = static_cast<double>(_extent.x) / (_dst_arcs.size() + 1.0);
for ( std::vector<ArcForEntry *>::const_iterator next_arc = _dst_arcs.begin(); next_arc != _dst_arcs.end(); ++next_arc ) {
point.x += offset;
wxPoint& dst = (*next_arc)->dst();
dst = point;
}
return *this;
}
/*
* change the order of the points to minimize arc intersection
*/
Node& Entry::reorder()
{
unsigned int n = _src_arcs.size();
if ( n > 1 ) {
for ( unsigned i = 0; i < n - 1; ++i ) {
for ( unsigned j = i + 1; j < n; ++j ) {
try {
wxPoint intersect = Arc::intersection( _src_arcs[i]->src(), _src_arcs[i]->dst(), _src_arcs[j]->src(), _src_arcs[j]->dst() );
wxPoint p1 = _src_arcs[i]->src();
wxPoint p2 = _src_arcs[j]->src();
ArcForEntry * temp = _src_arcs[i]; /* Swap arcs, but not their points. */
_src_arcs[i] = _src_arcs[j];
_src_arcs[j] = temp;
_src_arcs[i]->src() = p1;
_src_arcs[j]->src() = p2;
}
catch ( std::out_of_range& e )
{
}
}
}
}
n = _dst_arcs.size();
if ( n > 1 ) {
for ( unsigned i = 0; i < n - 1; ++i ) {
for ( unsigned j = i + 1; j < n; ++j ) {
try {
wxPoint intersect = Arc::intersection( _dst_arcs[i]->src(), _dst_arcs[i]->dst(), _dst_arcs[j]->src(), _dst_arcs[j]->dst() );
wxPoint p1 = _dst_arcs[i]->dst();
wxPoint p2 = _dst_arcs[j]->dst();
ArcForEntry * temp = _dst_arcs[i]; /* Swap arcs, but not their points. */
_dst_arcs[i] = _dst_arcs[j];
_dst_arcs[j] = temp;
_dst_arcs[i]->dst() = p1;
_dst_arcs[j]->dst() = p2;
}
catch ( std::out_of_range& e )
{
}
}
}
}
return *this;
}
void Entry::render( wxDC& dc, bool draw_left, bool draw_right ) const
{
dc.SetBrush(*wxWHITE_BRUSH); // white filling
dc.SetPen( wxPen( getColour(), Model::TWIPS ) ); // 1-pixel-thick outline
wxPoint points[4];
unsigned int i = 0;
if ( draw_right ) {
points[i].x = _extent.x; /* top right */
points[i++].y = 0;
}
points[i].x = _extent.x - 3*__dx; /* Bottom right */
points[i++].y = _extent.y;
points[i].x = 0; /* bottom left */
points[i++].y = _extent.y;
if ( draw_left ) {
points[i].x = 3*__dx; /* top left */
points[i++].y = 0;
}
dc.DrawLines( i, points, _origin.x, _origin.y );
wxString s( getName().c_str(), wxConvLibc );
wxFont font( Model::DEFAULT_FONT_SIZE, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL, false );
dc.SetFont(font);
wxSize size = dc.GetTextExtent(s);
dc.DrawText( s, _origin.x+(_extent.x-size.GetWidth())/2, _origin.y+(_extent.y-size.GetHeight())/2 );
for ( std::vector<ArcForEntry *>::const_iterator next_arc = _src_arcs.begin(); next_arc != _src_arcs.end(); ++next_arc ) {
(*next_arc)->render( dc );
}
}
| [
"greg@09d6bd69-5bf4-0310-bf4a-b005c7351135"
] | greg@09d6bd69-5bf4-0310-bf4a-b005c7351135 |
08165977605e3aec753c55541b5a2b55a8dda7b9 | f9998e43df417328593fd3f802542d4a3a6c34d1 | /Sorting/Preps/arrays.h | be8330ae0d00a299bd0f7afdf744922fc8ad12f8 | [] | no_license | viktorkuznietsov1986/algorithms | 75bf0978a6611c5e225c542fe6faafb004f7f444 | f5dd5550dc670eace055f974fc0a1e63d9c0e560 | refs/heads/master | 2021-01-20T18:52:48.993024 | 2018-08-15T19:48:39 | 2018-08-15T19:48:39 | 63,510,463 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 936 | h | #pragma once
#include <vector>
bool isStringWithUniqueCharacters(const char* str);
bool isPermutation(const char* str1, const char* str2);
int magicIndex(const std::vector<int>& arr, int startIndex, int endIndex);
void mergeTwoSortedArrays(std::vector<int>& a, int elementsCount, std::vector<int>& b);
void zeroMatrix(int** a, int m, int n);
int sumOfMostCommonIntRuntime(const std::vector<int>& a);
int sumOfMostCommonIntSpace(std::vector<int>& a);
// finds the integer which occurs more than 60%
int findMostCommonPositiveInteger(const std::vector<int>& a);
int maxProfitMultipleTrades(const std::vector<int>& a);
int maxProfitSingleTrade(const std::vector<int>& a);
int maxProfitTwoTrades(const std::vector<int>& a);
// encodes the input string by adding numbers for the symbols occurrences
// example: AABBBCCCC will be as 2A3B4C
char* encode(const char* str);
char* decode(const char* str);
| [
"victor.kuzn@gmail.com"
] | victor.kuzn@gmail.com |
865e28b5e95390f0ed0d5646b1b9f4a0299d5205 | 8c0ff57279cb239619b233a59b922e8256f9d8e3 | /xerces-c-src_2_6_0/xercesc/util/Transcoders/Uniconv390/XMLIBM1047Transcoder390.cpp | 9e6be8e0ef7a595a95e94f81a6485969b472d309 | [] | no_license | syoutetu/ColladaViewer_VC8 | 2ae5e8b2348ab863211acec42e8495e27fa9d62c | ed12d14a72773f03ce6cf989bf5029680011476a | refs/heads/master | 2020-12-24T15:57:49.055276 | 2012-02-19T18:57:40 | 2012-02-19T18:57:40 | 3,487,317 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,061 | cpp | /*
* Copyright 2004,2004 The Apache Software Foundation.
*
* 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.
*/
/*
* $Log: XMLIBM1047Transcoder390.cpp,v $
* Revision 1.3 2004/09/08 13:56:46 peiyongz
* Apache License Version 2.0
*
* Revision 1.2 2004/06/15 17:26:25 neilg
* make sure tables are properly aligned; thanks to Steve Dulin
*
* Revision 1.1 2004/02/06 15:02:11 cargilld
* Intrinsic transcoding support for 390.
*
*/
// ---------------------------------------------------------------------------
// Includes
// ---------------------------------------------------------------------------
#include <xercesc/util/Transcoders/Uniconv390/XMLIBM1047Transcoder390.hpp>
XERCES_CPP_NAMESPACE_BEGIN
// ---------------------------------------------------------------------------
// Local const data
//
// gFromTable
// This is the translation table for IBM1047 to Unicode. This
// table contains 255 entries. The entry for 1047 byte x is the
// Unicode translation of that byte.
//
// gToTable
// gToTableSz
// This is the translation table for Unicode to IBM1047. This one
// contains a list of records, sorted by the Unicode code point. We do
// a binary search to find the Unicode point, and that record's other
// field is the IBM1047 code point to translate to.
// ---------------------------------------------------------------------------
//Add a long double in front of the table, the compiler will set the
//table starting address on a double word boundary
struct temp{
long double pad;
XMLCh gFromTable[256];
};
static struct temp padding_temp={
0,
0x0000, 0x0001, 0x0002, 0x0003, 0x009C, 0x0009, 0x0086, 0x007F
, 0x0097, 0x008D, 0x008E, 0x000B, 0x000C, 0x000D, 0x000E, 0x000F
, 0x0010, 0x0011, 0x0012, 0x0013, 0x009D, 0x000A, 0x0008, 0x0087
, 0x0018, 0x0019, 0x0092, 0x008F, 0x001C, 0x001D, 0x001E, 0x001F
, 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x000A, 0x0017, 0x001B
, 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x0005, 0x0006, 0x0007
, 0x0090, 0x0091, 0x0016, 0x0093, 0x0094, 0x0095, 0x0096, 0x0004
, 0x0098, 0x0099, 0x009A, 0x009B, 0x0014, 0x0015, 0x009E, 0x001A
, 0x0020, 0x00A0, 0x00E2, 0x00E4, 0x00E0, 0x00E1, 0x00E3, 0x00E5
, 0x00E7, 0x00F1, 0x00A2, 0x002E, 0x003C, 0x0028, 0x002B, 0x007C
, 0x0026, 0x00E9, 0x00EA, 0x00EB, 0x00E8, 0x00ED, 0x00EE, 0x00EF
, 0x00EC, 0x00DF, 0x0021, 0x0024, 0x002A, 0x0029, 0x003B, 0x005E
, 0x002D, 0x002F, 0x00C2, 0x00C4, 0x00C0, 0x00C1, 0x00C3, 0x00C5
, 0x00C7, 0x00D1, 0x00A6, 0x002C, 0x0025, 0x005F, 0x003E, 0x003F
, 0x00F8, 0x00C9, 0x00CA, 0x00CB, 0x00C8, 0x00CD, 0x00CE, 0x00CF
, 0x00CC, 0x0060, 0x003A, 0x0023, 0x0040, 0x0027, 0x003D, 0x0022
, 0x00D8, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067
, 0x0068, 0x0069, 0x00AB, 0x00BB, 0x00F0, 0x00FD, 0x00FE, 0x00B1
, 0x00B0, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F, 0x0070
, 0x0071, 0x0072, 0x00AA, 0x00BA, 0x00E6, 0x00B8, 0x00C6, 0x00A4
, 0x00B5, 0x007E, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 0x0078
, 0x0079, 0x007A, 0x00A1, 0x00BF, 0x00D0, 0x005B, 0x00DE, 0x00AE
, 0x00AC, 0x00A3, 0x00A5, 0x00B7, 0x00A9, 0x00A7, 0x00B6, 0x00BC
, 0x00BD, 0x00BE, 0x00DD, 0x00A8, 0x00AF, 0x005D, 0x00B4, 0x00D7
, 0x007B, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047
, 0x0048, 0x0049, 0x00AD, 0x00F4, 0x00F6, 0x00F2, 0x00F3, 0x00F5
, 0x007D, 0x004A, 0x004B, 0x004C, 0x004D, 0x004E, 0x004F, 0x0050
, 0x0051, 0x0052, 0x00B9, 0x00FB, 0x00FC, 0x00F9, 0x00FA, 0x00FF
, 0x005C, 0x00F7, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057, 0x0058
, 0x0059, 0x005A, 0x00B2, 0x00D4, 0x00D6, 0x00D2, 0x00D3, 0x00D5
, 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037
, 0x0038, 0x0039, 0x00B3, 0x00DB, 0x00DC, 0x00D9, 0x00DA, 0x009F
};
static const XMLTransService::TransRec gToTable[] =
{
{ 0x0000, 0x00 }, { 0x0001, 0x01 }, { 0x0002, 0x02 }, { 0x0003, 0x03 }
, { 0x0004, 0x37 }, { 0x0005, 0x2D }, { 0x0006, 0x2E }, { 0x0007, 0x2F }
, { 0x0008, 0x16 }, { 0x0009, 0x05 }, { 0x000A, 0x25 }, { 0x000B, 0x0B }
, { 0x000C, 0x0C }, { 0x000D, 0x0D }, { 0x000E, 0x0E }, { 0x000F, 0x0F }
, { 0x0010, 0x10 }, { 0x0011, 0x11 }, { 0x0012, 0x12 }, { 0x0013, 0x13 }
, { 0x0014, 0x3C }, { 0x0015, 0x3D }, { 0x0016, 0x32 }, { 0x0017, 0x26 }
, { 0x0018, 0x18 }, { 0x0019, 0x19 }, { 0x001A, 0x3F }, { 0x001B, 0x27 }
, { 0x001C, 0x1C }, { 0x001D, 0x1D }, { 0x001E, 0x1E }, { 0x001F, 0x1F }
, { 0x0020, 0x40 }, { 0x0021, 0x5A }, { 0x0022, 0x7F }, { 0x0023, 0x7B }
, { 0x0024, 0x5B }, { 0x0025, 0x6C }, { 0x0026, 0x50 }, { 0x0027, 0x7D }
, { 0x0028, 0x4D }, { 0x0029, 0x5D }, { 0x002A, 0x5C }, { 0x002B, 0x4E }
, { 0x002C, 0x6B }, { 0x002D, 0x60 }, { 0x002E, 0x4B }, { 0x002F, 0x61 }
, { 0x0030, 0xF0 }, { 0x0031, 0xF1 }, { 0x0032, 0xF2 }, { 0x0033, 0xF3 }
, { 0x0034, 0xF4 }, { 0x0035, 0xF5 }, { 0x0036, 0xF6 }, { 0x0037, 0xF7 }
, { 0x0038, 0xF8 }, { 0x0039, 0xF9 }, { 0x003A, 0x7A }, { 0x003B, 0x5E }
, { 0x003C, 0x4C }, { 0x003D, 0x7E }, { 0x003E, 0x6E }, { 0x003F, 0x6F }
, { 0x0040, 0x7C }, { 0x0041, 0xC1 }, { 0x0042, 0xC2 }, { 0x0043, 0xC3 }
, { 0x0044, 0xC4 }, { 0x0045, 0xC5 }, { 0x0046, 0xC6 }, { 0x0047, 0xC7 }
, { 0x0048, 0xC8 }, { 0x0049, 0xC9 }, { 0x004A, 0xD1 }, { 0x004B, 0xD2 }
, { 0x004C, 0xD3 }, { 0x004D, 0xD4 }, { 0x004E, 0xD5 }, { 0x004F, 0xD6 }
, { 0x0050, 0xD7 }, { 0x0051, 0xD8 }, { 0x0052, 0xD9 }, { 0x0053, 0xE2 }
, { 0x0054, 0xE3 }, { 0x0055, 0xE4 }, { 0x0056, 0xE5 }, { 0x0057, 0xE6 }
, { 0x0058, 0xE7 }, { 0x0059, 0xE8 }, { 0x005A, 0xE9 }, { 0x005B, 0xAD }
, { 0x005C, 0xE0 }, { 0x005D, 0xBD }, { 0x005E, 0x5F }, { 0x005F, 0x6D }
, { 0x0060, 0x79 }, { 0x0061, 0x81 }, { 0x0062, 0x82 }, { 0x0063, 0x83 }
, { 0x0064, 0x84 }, { 0x0065, 0x85 }, { 0x0066, 0x86 }, { 0x0067, 0x87 }
, { 0x0068, 0x88 }, { 0x0069, 0x89 }, { 0x006A, 0x91 }, { 0x006B, 0x92 }
, { 0x006C, 0x93 }, { 0x006D, 0x94 }, { 0x006E, 0x95 }, { 0x006F, 0x96 }
, { 0x0070, 0x97 }, { 0x0071, 0x98 }, { 0x0072, 0x99 }, { 0x0073, 0xA2 }
, { 0x0074, 0xA3 }, { 0x0075, 0xA4 }, { 0x0076, 0xA5 }, { 0x0077, 0xA6 }
, { 0x0078, 0xA7 }, { 0x0079, 0xA8 }, { 0x007A, 0xA9 }, { 0x007B, 0xC0 }
, { 0x007C, 0x4F }, { 0x007D, 0xD0 }, { 0x007E, 0xA1 }, { 0x007F, 0x07 }
, { 0x0080, 0x20 }, { 0x0081, 0x21 }, { 0x0082, 0x22 }, { 0x0083, 0x23 }
, { 0x0084, 0x24 }, { 0x0085, 0x15 }, { 0x0086, 0x06 }, { 0x0087, 0x17 }
, { 0x0088, 0x28 }, { 0x0089, 0x29 }, { 0x008A, 0x2A }, { 0x008B, 0x2B }
, { 0x008C, 0x2C }, { 0x008D, 0x09 }, { 0x008E, 0x0A }, { 0x008F, 0x1B }
, { 0x0090, 0x30 }, { 0x0091, 0x31 }, { 0x0092, 0x1A }, { 0x0093, 0x33 }
, { 0x0094, 0x34 }, { 0x0095, 0x35 }, { 0x0096, 0x36 }, { 0x0097, 0x08 }
, { 0x0098, 0x38 }, { 0x0099, 0x39 }, { 0x009A, 0x3A }, { 0x009B, 0x3B }
, { 0x009C, 0x04 }, { 0x009D, 0x14 }, { 0x009E, 0x3E }, { 0x009F, 0xFF }
, { 0x00A0, 0x41 }, { 0x00A1, 0xAA }, { 0x00A2, 0x4A }, { 0x00A3, 0xB1 }
, { 0x00A4, 0x9F }, { 0x00A5, 0xB2 }, { 0x00A6, 0x6A }, { 0x00A7, 0xB5 }
, { 0x00A8, 0xBB }, { 0x00A9, 0xB4 }, { 0x00AA, 0x9A }, { 0x00AB, 0x8A }
, { 0x00AC, 0xB0 }, { 0x00AD, 0xCA }, { 0x00AE, 0xAF }, { 0x00AF, 0xBC }
, { 0x00B0, 0x90 }, { 0x00B1, 0x8F }, { 0x00B2, 0xEA }, { 0x00B3, 0xFA }
, { 0x00B4, 0xBE }, { 0x00B5, 0xA0 }, { 0x00B6, 0xB6 }, { 0x00B7, 0xB3 }
, { 0x00B8, 0x9D }, { 0x00B9, 0xDA }, { 0x00BA, 0x9B }, { 0x00BB, 0x8B }
, { 0x00BC, 0xB7 }, { 0x00BD, 0xB8 }, { 0x00BE, 0xB9 }, { 0x00BF, 0xAB }
, { 0x00C0, 0x64 }, { 0x00C1, 0x65 }, { 0x00C2, 0x62 }, { 0x00C3, 0x66 }
, { 0x00C4, 0x63 }, { 0x00C5, 0x67 }, { 0x00C6, 0x9E }, { 0x00C7, 0x68 }
, { 0x00C8, 0x74 }, { 0x00C9, 0x71 }, { 0x00CA, 0x72 }, { 0x00CB, 0x73 }
, { 0x00CC, 0x78 }, { 0x00CD, 0x75 }, { 0x00CE, 0x76 }, { 0x00CF, 0x77 }
, { 0x00D0, 0xAC }, { 0x00D1, 0x69 }, { 0x00D2, 0xED }, { 0x00D3, 0xEE }
, { 0x00D4, 0xEB }, { 0x00D5, 0xEF }, { 0x00D6, 0xEC }, { 0x00D7, 0xBF }
, { 0x00D8, 0x80 }, { 0x00D9, 0xFD }, { 0x00DA, 0xFE }, { 0x00DB, 0xFB }
, { 0x00DC, 0xFC }, { 0x00DD, 0xBA }, { 0x00DE, 0xAE }, { 0x00DF, 0x59 }
, { 0x00E0, 0x44 }, { 0x00E1, 0x45 }, { 0x00E2, 0x42 }, { 0x00E3, 0x46 }
, { 0x00E4, 0x43 }, { 0x00E5, 0x47 }, { 0x00E6, 0x9C }, { 0x00E7, 0x48 }
, { 0x00E8, 0x54 }, { 0x00E9, 0x51 }, { 0x00EA, 0x52 }, { 0x00EB, 0x53 }
, { 0x00EC, 0x58 }, { 0x00ED, 0x55 }, { 0x00EE, 0x56 }, { 0x00EF, 0x57 }
, { 0x00F0, 0x8C }, { 0x00F1, 0x49 }, { 0x00F2, 0xCD }, { 0x00F3, 0xCE }
, { 0x00F4, 0xCB }, { 0x00F5, 0xCF }, { 0x00F6, 0xCC }, { 0x00F7, 0xE1 }
, { 0x00F8, 0x70 }, { 0x00F9, 0xDD }, { 0x00FA, 0xDE }, { 0x00FB, 0xDB }
, { 0x00FC, 0xDC }, { 0x00FD, 0x8D }, { 0x00FE, 0x8E }, { 0x00FF, 0xDF }
, { 0x0110, 0xAC }, { 0x203E, 0xBC }, { 0xFF01, 0x5A }, { 0xFF02, 0x7F }
, { 0xFF03, 0x7B }, { 0xFF04, 0x5B }, { 0xFF05, 0x6C }, { 0xFF06, 0x50 }
, { 0xFF07, 0x7D }, { 0xFF08, 0x4D }, { 0xFF09, 0x5D }, { 0xFF0A, 0x5C }
, { 0xFF0B, 0x4E }, { 0xFF0C, 0x6B }, { 0xFF0D, 0x60 }, { 0xFF0E, 0x4B }
, { 0xFF0F, 0x61 }, { 0xFF10, 0xF0 }, { 0xFF11, 0xF1 }, { 0xFF12, 0xF2 }
, { 0xFF13, 0xF3 }, { 0xFF14, 0xF4 }, { 0xFF15, 0xF5 }, { 0xFF16, 0xF6 }
, { 0xFF17, 0xF7 }, { 0xFF18, 0xF8 }, { 0xFF19, 0xF9 }, { 0xFF1A, 0x7A }
, { 0xFF1B, 0x5E }, { 0xFF1C, 0x4C }, { 0xFF1D, 0x7E }, { 0xFF1E, 0x6E }
, { 0xFF1F, 0x6F }, { 0xFF20, 0x7C }, { 0xFF21, 0xC1 }, { 0xFF22, 0xC2 }
, { 0xFF23, 0xC3 }, { 0xFF24, 0xC4 }, { 0xFF25, 0xC5 }, { 0xFF26, 0xC6 }
, { 0xFF27, 0xC7 }, { 0xFF28, 0xC8 }, { 0xFF29, 0xC9 }, { 0xFF2A, 0xD1 }
, { 0xFF2B, 0xD2 }, { 0xFF2C, 0xD3 }, { 0xFF2D, 0xD4 }, { 0xFF2E, 0xD5 }
, { 0xFF2F, 0xD6 }, { 0xFF30, 0xD7 }, { 0xFF31, 0xD8 }, { 0xFF32, 0xD9 }
, { 0xFF33, 0xE2 }, { 0xFF34, 0xE3 }, { 0xFF35, 0xE4 }, { 0xFF36, 0xE5 }
, { 0xFF37, 0xE6 }, { 0xFF38, 0xE7 }, { 0xFF39, 0xE8 }, { 0xFF3A, 0xE9 }
, { 0xFF3B, 0xAD }, { 0xFF3C, 0xE0 }, { 0xFF3D, 0xBD }, { 0xFF3E, 0x5F }
, { 0xFF3F, 0x6D }, { 0xFF40, 0x79 }, { 0xFF41, 0x81 }, { 0xFF42, 0x82 }
, { 0xFF43, 0x83 }, { 0xFF44, 0x84 }, { 0xFF45, 0x85 }, { 0xFF46, 0x86 }
, { 0xFF47, 0x87 }, { 0xFF48, 0x88 }, { 0xFF49, 0x89 }, { 0xFF4A, 0x91 }
, { 0xFF4B, 0x92 }, { 0xFF4C, 0x93 }, { 0xFF4D, 0x94 }, { 0xFF4E, 0x95 }
, { 0xFF4F, 0x96 }, { 0xFF50, 0x97 }, { 0xFF51, 0x98 }, { 0xFF52, 0x99 }
, { 0xFF53, 0xA2 }, { 0xFF54, 0xA3 }, { 0xFF55, 0xA4 }, { 0xFF56, 0xA5 }
, { 0xFF57, 0xA6 }, { 0xFF58, 0xA7 }, { 0xFF59, 0xA8 }, { 0xFF5A, 0xA9 }
, { 0xFF5B, 0xC0 }, { 0xFF5C, 0x4F }, { 0xFF5D, 0xD0 }, { 0xFF5E, 0xA1 }
};
static const unsigned int gToTableSz = sizeof(gToTable)/sizeof(gToTable[0]);
// ---------------------------------------------------------------------------
// XMLIBM1047Transcoder390: Public, static methods
// ---------------------------------------------------------------------------
XMLCh XMLIBM1047Transcoder390::xlatThisOne(const XMLByte toXlat)
{
return padding_temp.gFromTable[toXlat];
}
// ---------------------------------------------------------------------------
// XMLIBM1047Transcoder390: Constructors and Destructor
// ---------------------------------------------------------------------------
XMLIBM1047Transcoder390::XMLIBM1047Transcoder390(const XMLCh* const encodingName
, const unsigned int blockSize
, MemoryManager* const manager) :
XML256TableTranscoder390
(
encodingName
, blockSize
, padding_temp.gFromTable
, gToTable
, gToTableSz
, manager
)
{
}
XMLIBM1047Transcoder390::~XMLIBM1047Transcoder390()
{
}
XERCES_CPP_NAMESPACE_END
| [
"syoutetu@gmail.com"
] | syoutetu@gmail.com |
9e30e114cece2f3bfc073c7cc15e0309ba5c8be4 | a5630c8ee9fbc43204bb7a4cda181d2c9414a259 | /src/client.cpp | 40201017617deadff19c7553640c9b36d5d5d28e | [
"BSD-2-Clause"
] | permissive | Slamtec/rplidar_ros | 503db3fbc691df86944f1afa3db9a1d04d7f2c05 | 2f10ad5be867a6192fb28306cfc1307213a19850 | refs/heads/master | 2023-08-18T11:24:26.411953 | 2023-08-11T08:42:27 | 2023-08-11T08:53:00 | 139,397,921 | 415 | 436 | BSD-2-Clause | 2023-09-13T04:54:57 | 2018-07-02T06:05:05 | C++ | UTF-8 | C++ | false | false | 2,341 | cpp | /*
* Copyright (c) 2014, RoboPeak
* 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.
*
*/
/*
* RoboPeak LIDAR System
* RPlidar ROS Node client test app
*
* Copyright 2009 - 2014 RoboPeak Team
* http://www.robopeak.com
*
*/
#include "ros/ros.h"
#include "sensor_msgs/LaserScan.h"
#define RAD2DEG(x) ((x)*180./M_PI)
void scanCallback(const sensor_msgs::LaserScan::ConstPtr& scan)
{
int count = scan->scan_time / scan->time_increment;
ROS_INFO("I heard a laser scan %s[%d]:", scan->header.frame_id.c_str(), count);
ROS_INFO("angle_range, %f, %f", RAD2DEG(scan->angle_min), RAD2DEG(scan->angle_max));
for(int i = 0; i < count; i++) {
float degree = RAD2DEG(scan->angle_min + scan->angle_increment * i);
ROS_INFO(": [%f, %f]", degree, scan->ranges[i]);
}
}
int main(int argc, char **argv)
{
ros::init(argc, argv, "rplidar_node_client");
ros::NodeHandle n;
ros::Subscriber sub = n.subscribe<sensor_msgs::LaserScan>("/scan", 1000, scanCallback);
ros::spin();
return 0;
}
| [
"mickey.leen@gmail.com"
] | mickey.leen@gmail.com |
01eec33211ff35218805b10d2b2be53ed63a5d9c | f8aba042d4d38ee8ec6ad0dbee99803b0769eda5 | /corr_naive.cpp | 53f62a17eae925e279312edc1268f9e0e5005eee | [] | no_license | kig/correlate_opencl | 7262a33a4ca27288e7d46e0aa7d030e20129321b | 878a9c5e589be5221940d7960336a4e11061be25 | refs/heads/master | 2020-04-04T16:20:28.199897 | 2011-02-06T00:17:35 | 2011-02-06T00:42:43 | 742,195 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,625 | cpp | /*
g++ -O3 -msse3 -mfpmath=sse -fopenmp -lOpenCL -lm -o corr_naive corr_naive.cpp
*/
#include <omp.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/time.h>
#include <math.h>
#include <malloc.h>
#include <string.h>
#include <iostream>
#include <fstream>
#include <sys/stat.h>
#include <CL/cl.h>
#include "sse.h"
using namespace std;
double dtime() {
struct timeval t;
gettimeofday(&t, NULL);
return (double)t.tv_sec + (((double)t.tv_usec) / 1000000.0);
}
int align(int idx, int n) {
return (n - idx%n) % n;
}
void correlate_scalar
(
float *correlation, int corr_size,
const float *base, const float *mask,
int sample_size)
{
for (int offset_y=0; offset_y < corr_size; offset_y++) {
for (int offset_x=0; offset_x < corr_size; offset_x++) {
int correlation_index = offset_y*corr_size + offset_x;
float sum = 0.0f;
for (int rows=0; rows < sample_size-offset_y; rows++) {
for (int columns=0; columns < sample_size-offset_x; columns++) {
int mi = 4*(rows * sample_size + columns);
int bi = 4*((offset_y + rows) * sample_size + columns + offset_x);
sum +=
base[bi] * mask[mi] +
base[bi+1] * mask[mi+1] +
base[bi+2] * mask[mi+2] +
base[bi+3] * mask[mi+3];
;
}
}
correlation[correlation_index] = sum;
}
}
}
void correlate
(
float *correlation, int corr_size,
const float *basef, const float *maskf,
int sample_size)
{
const float4* base = (float4*) basef;
const float4* mask = (float4*) maskf;
#pragma omp parallel for
for (int offset_y=0; offset_y < corr_size; offset_y++) {
for (int offset_x=0; offset_x < corr_size; offset_x++) {
float4 sum = float4(0.0);
for (int rows=0; rows < sample_size-offset_y; rows++) {
int mask_index = rows * sample_size;
int base_index = (offset_y+rows) * sample_size + offset_x;
for (int columns=0; columns < sample_size-offset_x; columns++) {
sum += base[base_index+columns] * mask[mask_index+columns];
}
}
correlation[offset_y*corr_size + offset_x] = sum.sum();
}
}
}
unsigned char *readFile (const char *filename, size_t *read_bytes)
{
ifstream file;
file.open(filename, ios::binary|ios::in|ios::ate);
size_t sz = file.tellg();
char *data = (char*)memalign(16, sz+1);
data[sz] = 0;
file.seekg(0, ios::beg);
file.read(data, sz);
file.close();
*read_bytes = sz;
return (unsigned char*)data;
}
const unsigned char *programBinary = NULL;
size_t programBinaryLength = 0;
const char *programSource = NULL;
void save_program_binary(cl_program program, const char *filename)
{
size_t binsize;
clGetProgramInfo(program, CL_PROGRAM_BINARY_SIZES, sizeof(&binsize), (void*)&binsize, NULL);
const unsigned char *bin = (unsigned char*)malloc(binsize);
const unsigned char **bins = &bin;
clGetProgramInfo(program, CL_PROGRAM_BINARIES, sizeof(bins), bins, NULL);
ofstream binfile;
binfile.open(filename, ios::binary|ios::out|ios::trunc);
binfile.write((char*)bin, binsize);
binfile.close();
}
void print_error(int err) {
const char* name;
switch(err) {
case CL_INVALID_CONTEXT: name = "CL_INVALID_CONTEXT"; break;
case CL_INVALID_VALUE: name = "CL_INVALID_VALUE"; break;
case CL_INVALID_IMAGE_FORMAT_DESCRIPTOR: name = "CL_INVALID_IMAGE_FORMAT_DESCRIPTOR"; break;
case CL_INVALID_IMAGE_SIZE: name = "CL_INVALID_IMAGE_SIZE"; break;
case CL_INVALID_HOST_PTR: name = "CL_INVALID_HOST_PTR"; break;
case CL_IMAGE_FORMAT_NOT_SUPPORTED: name = "CL_IMAGE_FORMAT_NOT_SUPPORTED"; break;
case CL_MEM_OBJECT_ALLOCATION_FAILURE: name = "CL_MEM_OBJECT_ALLOCATION_FAILURE"; break;
case CL_INVALID_OPERATION: name = "CL_INVALID_OPERATION"; break;
case CL_OUT_OF_RESOURCES: name = "CL_OUT_OF_RESOURCES"; break;
case CL_OUT_OF_HOST_MEMORY: name = "CL_OUT_OF_HOST_MEMORY"; break;
case CL_INVALID_PROGRAM_EXECUTABLE: name="CL_INVALID_PROGRAM_EXECUTABLE"; break;
case CL_INVALID_COMMAND_QUEUE: name = "CL_INVALID_COMMAND_QUEUE"; break;
case CL_INVALID_KERNEL: name = "CL_INVALID_KERNEL"; break;
case CL_INVALID_KERNEL_ARGS: name = "CL_INVALID_KERNEL_ARGS"; break;
case CL_INVALID_WORK_DIMENSION: name = "CL_INVALID_WORK_DIMENSION"; break;
case CL_INVALID_GLOBAL_WORK_SIZE: name = "CL_INVALID_GLOBAL_WORK_SIZE"; break;
case CL_INVALID_GLOBAL_OFFSET: name = "CL_INVALID_GLOBAL_OFFSET"; break;
case CL_INVALID_WORK_GROUP_SIZE: name = "CL_INVALID_WORK_GROUP_SIZE"; break;
case CL_INVALID_WORK_ITEM_SIZE: name = "CL_INVALID_WORK_ITEM_SIZE"; break;
case CL_INVALID_EVENT_WAIT_LIST: name = "CL_INVALID_EVENT_WAIT_LIST"; break;
default: name = "unknown";
}
printf("\nError: %s\n", name);
exit(1);
}
struct build_t { double buildTime; double initTime; double kernelTime; double argTime; double releaseTime; double readTime; };
struct build_t correlate_openCL
(
float *correlation, int corr_size,
const float *base, const float *mask,
int sample_size)
{
double t0 = dtime();
cl_platform_id platform;
clGetPlatformIDs( 1, &platform, NULL );
cl_device_id device;
clGetDeviceIDs( platform, CL_DEVICE_TYPE_GPU, 1, &device, NULL );
cl_context context = clCreateContext( NULL, 1, &device, NULL, NULL, NULL );
cl_command_queue queue = clCreateCommandQueue( context, device, 0, NULL );
double initTime = dtime() - t0;
t0 = dtime();
const char *program_source_filename = "correlate_naive.cl";
int err = 0;
cl_program program;
size_t len;
const char* programSource = (char*)readFile(program_source_filename, &len);
program = clCreateProgramWithSource( context, 1, &programSource, NULL, NULL );
err = clBuildProgram( program, 1, &device, NULL, NULL, NULL );
free((void*) programSource);
if (err != CL_SUCCESS) {
char log[2048];
clGetProgramBuildInfo( program, device, CL_PROGRAM_BUILD_LOG, sizeof(log), log, &len);
printf("Kernel build log: %s\n", log);
print_error(err);
}
cl_kernel kernel = clCreateKernel( program, "correlate", NULL );
double buildTime = dtime()-t0;
t0 = dtime();
cl_image_format fmt;
fmt.image_channel_order = CL_RGBA;
fmt.image_channel_data_type = CL_FLOAT;
cl_mem base_buf = clCreateBuffer(
context,
CL_MEM_READ_ONLY|CL_MEM_COPY_HOST_PTR,
sample_size*sample_size*sizeof(cl_float4),
(void*)base, &err );
if (err != CL_SUCCESS) {
printf("\nbase_buf error: %d\n", err);
print_error(err);
}
err = CL_SUCCESS;
cl_mem mask_buf = clCreateBuffer(
context,
CL_MEM_READ_ONLY|CL_MEM_COPY_HOST_PTR,
sample_size*sample_size*sizeof(cl_float4),
(void*)mask, &err );
if (err != CL_SUCCESS) {
printf("\nmask_buf error: %d\n", err);
print_error(err);
}
err = CL_SUCCESS;
cl_mem corr_buf = clCreateBuffer(
context,
CL_MEM_WRITE_ONLY,
(corr_size*corr_size)*sizeof(float),
NULL, &err );
if (err != CL_SUCCESS)
printf("\ncorr_buf error: %d\n", err);
err = CL_SUCCESS;
err = clSetKernelArg(kernel, 0, sizeof(corr_buf), (void*) &corr_buf);
if (err != CL_SUCCESS) printf("\narg 0 error: %d\n", err);
err = CL_SUCCESS;
clSetKernelArg(kernel, 1, sizeof(corr_size), (void*) &corr_size);
if (err != CL_SUCCESS) printf("\narg 1 error: %d\n", err);
err = CL_SUCCESS;
clSetKernelArg(kernel, 2, sizeof(base_buf), (void*) &base_buf);
if (err != CL_SUCCESS) printf("\narg 2 error: %d\n", err);
err = CL_SUCCESS;
clSetKernelArg(kernel, 3, sizeof(mask_buf), (void*) &mask_buf);
if (err != CL_SUCCESS) printf("\narg 3 error: %d\n", err);
err = CL_SUCCESS;
clSetKernelArg(kernel, 4, sizeof(sample_size), (void*) &sample_size);
if (err != CL_SUCCESS) printf("\narg 4 error: %d\n", err);
err = CL_SUCCESS;
double argTime = dtime() - t0;
t0 = dtime();
size_t gpu_sz[1] = { corr_size*corr_size };
err = clEnqueueNDRangeKernel( queue, kernel, 1, NULL, gpu_sz, NULL, 0, NULL, NULL);
if (err != CL_SUCCESS) {
printf("\nError running kernel\n");
print_error(err);
}
clFinish(queue);
double kernelTime = dtime() - t0;
t0 = dtime();
clEnqueueReadBuffer(queue, corr_buf, CL_TRUE, 0, corr_size*corr_size*sizeof(cl_float), (void*)correlation, NULL, NULL, NULL);
double readTime = dtime () - t0;
t0 = dtime();
clReleaseMemObject( base_buf );
clReleaseMemObject( mask_buf );
clReleaseMemObject( corr_buf );
clReleaseCommandQueue( queue );
clReleaseKernel( kernel );
clReleaseProgram( program );
clReleaseContext( context );
double releaseTime = dtime () - t0;
build_t t;
t.initTime = initTime;
t.buildTime = buildTime;
t.kernelTime = kernelTime;
t.readTime = readTime;
t.argTime = argTime;
t.releaseTime = releaseTime;
return t;
}
float* makeImage(int ssz, bool initialize)
{
float *img = (float*)memalign(16, ssz*ssz*4*sizeof(float));
if (initialize)
for (int i=0; i<ssz*ssz*4; i++)
img[i] = 0.00625*(i/(ssz*4)) + 0.00625*(i%(ssz*4));
return img;
}
int main () {
double t0, t1;
int ssz = 500;
int csz = ssz/2;
float *base = makeImage(ssz, true);
float *mask = makeImage(ssz, true);
// reverse mask
float tmp;
int len = ssz*ssz*4;
for (int i=0; i<len/2; i++) {
tmp = mask[len-1-i];
mask[len-1-i] = mask[i];
mask[i] = tmp;
}
float *corr = (float*)memalign(16, csz*csz*sizeof(float));
float *corr1 = (float*)memalign(16, csz*csz*sizeof(float));
float *corr3 = (float*)memalign(16, csz*csz*sizeof(float));
memset((void*)corr, 0, csz*csz*sizeof(float));
memset((void*)corr1, 0, csz*csz*sizeof(float));
memset((void*)corr3, 0, csz*csz*sizeof(float));
fprintf(stderr, "in_sz = input image size in bytes\nout_sz = output size in bytes\nbw_used = memory reads in GB\n");
fprintf(stderr, "GFLOPs = gigaFLOPs used\ncl_gpu = OpenCL on GPU (GBps)\ncl_t = OpenCL on GPU (seconds)\nkbw_gpu = OpenCL kernel bandwidth\ninit_t = time to init OpenCL\ngbld_t = kernel build time\nargt = OpenCL arg creation & set time\nreadt = time to read result from GPU\nrelt = time to release OpenCL resources\nsse = OpenMP SSE (GBps)\nsse_t = OpenMP SSE (seconds)\nscalar = plain C (GBps)\nscal_t = plain C (seconds)\n");
printf("in_sz\tout_sz\tbw_used\tGFLOPs\tcl_gpu\tcl_t\tkbw_gpu\tinit_t\tgbld_t\targt\treadt\trelt\tsse\tsse_t\tscalar\tscal_t\n");
for (int isz=ssz*ssz; isz<=ssz*ssz; isz+=20000) {
int sz = sqrt(isz);
double gb = 1e-9 * (2*sz*0.75*sz*0.75*4*4 * sz*0.5 * sz*0.5 + sz*0.5*sz*0.5);
printf("%d\t%d\t%.2f\t%.2f", 2*(sz*sz)*16, (sz/2)*(sz/2)*4, gb, gb / 4.0);
fflush(stdout);
double elapsed = 0.0;
build_t bt;
t0 = dtime();
bt = correlate_openCL(corr3, sz/2, base, mask, sz);
elapsed = dtime()-bt.buildTime-bt.initTime-t0;
printf("\t%.2f\t%.2f\t%.2f\t%.2f\t%.2f\t%.4f\t%.4f\t%.4f", gb/elapsed, elapsed, gb/bt.kernelTime, bt.initTime, bt.buildTime, bt.argTime, bt.readTime, bt.releaseTime);
fflush(stdout);
t0 = dtime();
correlate(corr, sz/2, base, mask, sz);
t1 = dtime();
printf("\t%.2f\t%.2f", gb/(t1-t0), t1-t0);
fflush(stdout);
t0 = dtime();
correlate_scalar(corr1, sz/2, base, mask, sz);
t1 = dtime();
printf("\t%.2f\t%.2f", gb/(t1-t0), t1-t0);
fflush(stdout);
printf("\n");
for (int i=0; i<(sz/2)*(sz/2); i++) {
// less than one tenth-thousandth error
if (
fabs(corr[i]-corr3[i]) > fabs(corr[i]*0.0001) ||
fabs(corr[i]-corr1[i]) > fabs(corr[i]*0.0001)
) {
fprintf(stderr, "%d: discrepancy scalar %f sse %f cl_gpu %f\n", i, corr1[i], corr[i], corr3[i]);
break;
}
}
}
return 0;
}
| [
"ilmari.heikkinen@gmail.com"
] | ilmari.heikkinen@gmail.com |
814a7480cb29abec427858c523ef9d7e3f6241d1 | 7f92683ba382a8242597277afb72aa97c40818b3 | /Temp/il2cppOutput/il2cppOutput/AssemblyU2DCSharp_LoadBars3542034350.h | f0c6d1964ed2c1b06f5494f4dbd38a0966f99aec | [] | no_license | pramit46/game-off-2016 | 5833734908123bbfcc1ee41c16a7f33fdc9640cc | e9a98c27e6848d3f2109a952a921643a6a9300c8 | refs/heads/master | 2021-01-11T08:38:36.810368 | 2016-11-28T19:42:15 | 2016-11-28T19:42:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,678 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// UnityEngine.GameObject
struct GameObject_t1756533147;
// BezierCurve
struct BezierCurve_t4194209710;
#include "UnityEngine_UnityEngine_MonoBehaviour1158329972.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// LoadBars
struct LoadBars_t3542034350 : public MonoBehaviour_t1158329972
{
public:
// UnityEngine.GameObject LoadBars::lightBar
GameObject_t1756533147 * ___lightBar_2;
// UnityEngine.GameObject LoadBars::darkBar
GameObject_t1756533147 * ___darkBar_3;
// System.Int32 LoadBars::totalExpectedNodes
int32_t ___totalExpectedNodes_4;
// BezierCurve LoadBars::bezier
BezierCurve_t4194209710 * ___bezier_5;
public:
inline static int32_t get_offset_of_lightBar_2() { return static_cast<int32_t>(offsetof(LoadBars_t3542034350, ___lightBar_2)); }
inline GameObject_t1756533147 * get_lightBar_2() const { return ___lightBar_2; }
inline GameObject_t1756533147 ** get_address_of_lightBar_2() { return &___lightBar_2; }
inline void set_lightBar_2(GameObject_t1756533147 * value)
{
___lightBar_2 = value;
Il2CppCodeGenWriteBarrier(&___lightBar_2, value);
}
inline static int32_t get_offset_of_darkBar_3() { return static_cast<int32_t>(offsetof(LoadBars_t3542034350, ___darkBar_3)); }
inline GameObject_t1756533147 * get_darkBar_3() const { return ___darkBar_3; }
inline GameObject_t1756533147 ** get_address_of_darkBar_3() { return &___darkBar_3; }
inline void set_darkBar_3(GameObject_t1756533147 * value)
{
___darkBar_3 = value;
Il2CppCodeGenWriteBarrier(&___darkBar_3, value);
}
inline static int32_t get_offset_of_totalExpectedNodes_4() { return static_cast<int32_t>(offsetof(LoadBars_t3542034350, ___totalExpectedNodes_4)); }
inline int32_t get_totalExpectedNodes_4() const { return ___totalExpectedNodes_4; }
inline int32_t* get_address_of_totalExpectedNodes_4() { return &___totalExpectedNodes_4; }
inline void set_totalExpectedNodes_4(int32_t value)
{
___totalExpectedNodes_4 = value;
}
inline static int32_t get_offset_of_bezier_5() { return static_cast<int32_t>(offsetof(LoadBars_t3542034350, ___bezier_5)); }
inline BezierCurve_t4194209710 * get_bezier_5() const { return ___bezier_5; }
inline BezierCurve_t4194209710 ** get_address_of_bezier_5() { return &___bezier_5; }
inline void set_bezier_5(BezierCurve_t4194209710 * value)
{
___bezier_5 = value;
Il2CppCodeGenWriteBarrier(&___bezier_5, value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"adamstox@gmail.com"
] | adamstox@gmail.com |
1069a0e919907d7cc77067e1f9409c92b873e9e8 | 6dc7e81916130f90c5cd8fe04e604124ff851820 | /src/ptolemyapi/stars/SDFInputArgumentFix.h | 402ed18b97224dd7b2e1bf5fc4fc3d7cbdbeccda | [] | no_license | mpCopy/test3 | b94fb903cacd38f1bb0d336eaa4e5f906f401394 | 55926e7e555d891c1faac2ba9845d448a4eddd87 | refs/heads/master | 2023-02-27T12:18:57.663079 | 2021-02-07T13:10:15 | 2021-02-07T13:10:15 | 336,775,716 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 831 | h | /* @(#) $Source: /cvs/wlv/src/hptolemyaddons/src/ptolemyapi/stars/SDFInputArgumentFix.pl,v $ $Revision: 1.6 $ $Date: 2011/08/25 01:59:19 $ */
#ifndef _SDFInputArgumentFix_h
#define _SDFInputArgumentFix_h 1
// header file generated from S:/hped/builds/sr/devXXX/rgcandidate/build/cmake/projects/ptolemy/ptolemyapi/stars/SDFInputArgumentFix.pl by ptlang
#ifdef __GNUG__
#pragma interface
#endif
/*
Copyright 2001 - 2014 Keysight Technologies, Inc
*/
#include "SDFArgument.h"
#include "StringState.h"
#include "dfapistarsDll.h"
class SDFInputArgumentFix:public SDFArgument
{
public:
SDFInputArgumentFix();
/* virtual */ Block* makeNew() const;
/* virtual */ const char* className() const;
/* virtual */ int isA(const char*) const;
const char* type ();
protected:
/* virtual */ void go();
StringState Precision;
};
#endif
| [
"55695695+a2weingarten@users.noreply.github.com"
] | 55695695+a2weingarten@users.noreply.github.com |
cc0fbecf4457ab819400405a34f2efbb4450eabd | 391b179ee31222971629624a9a51e8a98c87db41 | /src/si_base/gpu/gfx_raytracing_geometry.h | f6163ff2ad860ed5be018c03d142ee0fa3880011 | [
"MIT"
] | permissive | acuvue1102/si_graphics | 0e697d910852a3ba2e9564ce09dd6ffe49a3da80 | f285a5358fdb8f5b831fba0d7cae423ee79b36c5 | refs/heads/master | 2021-06-03T01:19:30.678522 | 2020-02-07T15:27:53 | 2020-02-07T15:27:53 | 18,243,761 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,201 | h | #pragma once
#include <vector>
#include "si_base/gpu/gfx_config.h"
#include "si_base/gpu/gfx_enum.h"
#include "si_base/gpu/gfx_declare.h"
#include "si_base/gpu/gfx_buffer.h"
namespace SI
{
class BaseRaytracingScene;
struct GfxRaytracingGeometryTriangleDesc
{
GpuAddress m_transform3x4 = 0;
GpuAddress m_indexBuffer = 0;
GpuAddress m_vertexBuffer = 0;
uint64_t m_vertexStride = sizeof(float)*3;
GfxFormat m_indexFormat = GfxFormat::R16_Uint;
GfxFormat m_vertexFormat = GfxFormat::R32G32B32_Float;
uint32_t m_indexCount = 0;
uint32_t m_vertexCount = 0;
};
struct GfxRaytracingGeometryProdeduralDesc
{
uint64_t m_aabbCount = 0;
GpuAddress m_startAddress = 0;
uint64_t m_strideInBytes = 0;
};
struct GfxRaytracingGeometryDesc
{
GfxRaytracingGeometryType m_type = GfxRaytracingGeometryType::Triangles;
GfxRaytracingGeometryFlag m_flags = GfxRaytracingGeometryFlag::Opaque;
//union
//{
GfxRaytracingGeometryTriangleDesc m_triangle;
GfxRaytracingGeometryProdeduralDesc m_aabbs;
//};
};
struct GfxRaytracingASInputs
{
GfxRaytracingASType m_type = GfxRaytracingASType::TopLevel;
GfxRaytracingASBuildFlags m_flags = GfxRaytracingASBuildFlag::PreferFastBuild;
uint32_t m_descCount = 0;
GfxElementsLayout m_descsLayout = GfxElementsLayout::Array;
GpuAddress m_instanceDescs = 0;
const GfxRaytracingGeometryDesc* m_geometryDescs = nullptr;
const GfxRaytracingGeometryDesc*const * m_geometryDescPointers = nullptr;
};
class GfxRaytracingScene
{
public:
GfxRaytracingScene()
: m_base(nullptr)
{
}
GfxRaytracingScene(BaseRaytracingScene* base)
: m_base(base)
{
}
GfxBuffer GetTopASBuffer();
GfxBuffer GetBottomASBuffer();
BaseRaytracingScene* GetBase() { return m_base; }
const BaseRaytracingScene* GetBase() const{ return m_base; }
private:
BaseRaytracingScene* m_base = nullptr;
};
} // namespace SI
| [
"mktaxi.kg11.02@gmail.com"
] | mktaxi.kg11.02@gmail.com |
b6b02200d28f7192a50ecbf92ebaf29b0016f692 | d1cee40adee73afdbce5b3582bbe4761b595c4e1 | /back/RtmpLivePushSDK/boost/boost/random/detail/integer_log2.hpp | 6d0a61b46bfb3a23c618ae7ed65e415a7b8e8d69 | [
"BSL-1.0"
] | permissive | RickyJun/live_plugin | de6fb4fa8ef9f76fffd51e2e51262fb63cea44cb | e4472570eac0d9f388ccac6ee513935488d9577e | refs/heads/master | 2023-05-08T01:49:52.951207 | 2021-05-30T14:09:38 | 2021-05-30T14:09:38 | 345,919,594 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,186 | hpp | /* boost random/detail/integer_log2.hpp header file
*
* Copyright Steven Watanabe 2011
* Distributed under the Boost Software License, Version 1.0. (See
* accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*
* See http://www.boost.org for most recent version including documentation.
*
* $Id: integer_log2.hpp 76145 2011-12-24 19:05:17Z danieljames $
*
*/
#ifndef BOOST_RANDOM_DETAIL_INTEGER_LOG2_HPP
#define BOOST_RANDOM_DETAIL_INTEGER_LOG2_HPP
#include "config.hpp"
#include "limits.hpp"
#include "integer_log2.hpp"
namespace boost {
namespace random {
namespace detail {
#if !defined(BOOST_NO_CONSTEXPR)
#define BOOST_RANDOM_DETAIL_CONSTEXPR constexpr
#elif defined(BOOST_MSVC)
#define BOOST_RANDOM_DETAIL_CONSTEXPR __forceinline
#elif defined(__GNUC__) && __GNUC__ >= 4
#define BOOST_RANDOM_DETAIL_CONSTEXPR __attribute__((const)) __attribute__((always_inline))
#else
#define BOOST_RANDOM_DETAIL_CONSTEXPR inline
#endif
template<int Shift>
struct integer_log2_impl
{
#if defined(BOOST_NO_CONSTEXPR)
template<class T>
BOOST_RANDOM_DETAIL_CONSTEXPR static int apply(T t, int accum)
{
int update = ((t >> Shift) != 0) * Shift;
return integer_log2_impl<Shift / 2>::apply(t >> update, accum + update);
}
#else
template<class T>
BOOST_RANDOM_DETAIL_CONSTEXPR static int apply2(T t, int accum, int update)
{
return integer_log2_impl<Shift / 2>::apply(t >> update, accum + update);
}
template<class T>
BOOST_RANDOM_DETAIL_CONSTEXPR static int apply(T t, int accum)
{
return apply2(t, accum, ((t >> Shift) != 0) * Shift);
}
#endif
};
template<>
struct integer_log2_impl<1>
{
template<class T>
BOOST_RANDOM_DETAIL_CONSTEXPR static int apply(T t, int accum)
{
return int(t >> 1) + accum;
}
};
template<class T>
BOOST_RANDOM_DETAIL_CONSTEXPR int integer_log2(T t)
{
return integer_log2_impl<
::boost::detail::max_pow2_less<
::std::numeric_limits<T>::digits, 4
>::value
>::apply(t, 0);
}
} // namespace detail
} // namespace random
} // namespace boost
#endif // BOOST_RANDOM_DETAIL_INTEGER_LOG2_HPP
| [
"wenwenjun@weeget.cn"
] | wenwenjun@weeget.cn |
289185bb67cb4131353856a715ed29f050d7601d | 9ce94e0df21fd4221d0deeb3671b147fe4911429 | /ejercicios/ejercicios/AA funciones/boletin 1 funciones/ejer 5 funciones/main.cpp | e62c8c8c99d80ff48259ead5862ad00b5b09b3e8 | [] | no_license | pepesoriagarcia99/C--_2017-2018 | 06c57b318d6374522801b4db6ddee906fa5e873a | d6d1d48670be0b80fe56fa17213b4605da7aaefb | refs/heads/master | 2022-04-30T22:52:04.720200 | 2022-04-09T12:29:36 | 2022-04-09T12:29:36 | 193,679,861 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 947 | cpp | #include <iostream>
using namespace std;
int divisores(int num)
{
int suma=0;
int multiplicacion=0;
for(int i=1;i<num;i++)
{
multiplicacion=num%i;
if(multiplicacion==0)
{
suma=suma+i;
}
}
return suma;
}
bool hermano (int num1, int num2, int res_div_num1, int res_div_num2)
{
bool hermano;
if(num1==res_div_num2 && num2==res_div_num1)
{hermano=true;}
else
{hermano=false;}
return hermano;
}
int main()
{
int num1;
int num2;
bool res;
int res_div_num1;
int res_div_num2;
cout<<"Introduce numero 1: ";
cin>>num1;
cout<<"Introduce numero 2: ";
cin>>num2;
res_div_num1=divisores(num1);
res_div_num2=divisores(num2);
res=hermano(num1,num2,res_div_num1,res_div_num2);
if(res==true)
{cout<<"Los numeros son amigos"<<endl;}
else
{cout<<"Los numeros no son amigos"<<endl;}
return 0;
}
| [
"pepesoriagarcia99@gmail.com"
] | pepesoriagarcia99@gmail.com |
67062ba1751d483b9afc8c8e6825f929a3939934 | 857cb11d619be07df5b7949fd2f9ade979c3469d | /GTests/tests.cpp | e4ea6d9621b4dfde4d0a7b03a3ce49c0d1385a48 | [] | no_license | LokeshBonta/AMDRPP-Scripts | 8c069b67a1071692d8d0772a4de3bed2ac3b5b20 | b7b35f84084dda4b9da2dcb0273829768ff5d90d | refs/heads/master | 2020-09-18T01:03:15.153132 | 2020-05-13T18:33:38 | 2020-05-13T18:34:11 | 224,126,602 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 920 | cpp | // tests.cpp
#include "functions.cpp"
#include <gtest/gtest.h>
// All the RPP stuff
// Input buffer will only be one
// GPU output from RPP will be stored in output2 buffer
// CPU output from RPP will be stored in output1 buffer
// Compare Both the Tensors
TEST(SquareRootTest, PositiveNos) {
ASSERT_EQ(6, squareRoot(36.0));
ASSERT_EQ(18.0, squareRoot(324.0));
ASSERT_EQ(25.4, squareRoot(645.16));
ASSERT_EQ(0, squareRoot(0.0));
}
TEST(SquareRootTest, NegativeNos) {
ASSERT_EQ(-1.0, squareRoot(-15.0));
ASSERT_EQ(-1.0, squareRoot(-0.2));
}
TEST(min, IntValues)
{
ASSERT_EQ(my_min( 1, 2), min( 1, 2));
ASSERT_EQ(my_min(7, 5), min(7, 5));
}
TEST(min, FloatValues)
{
ASSERT_EQ(my_min(1.0, 6.2), min(1.0, 6.2));
ASSERT_EQ(my_min(7.5, 5.0), min(7.5, 5.0));
}
int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| [
"lokeshpsn93@gmail.com"
] | lokeshpsn93@gmail.com |
dac3399dd0d53b8df904e61eddc49dca11efb732 | 60705ca1df6865f829095d501f17a4a7c97e7e20 | /src/net.cpp | daad6cf1dbd72b0f8bc0789be121f3d710e89412 | [
"MIT"
] | permissive | caskbackcoin/cashbackcoin | 7344b48cac5a399317264240bb320656859c3685 | 81e6ffb34901f87d9ac55300399ae0363c984f36 | refs/heads/master | 2023-03-29T07:20:48.905014 | 2021-04-15T15:03:40 | 2021-04-15T15:03:40 | 357,584,149 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 74,457 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2018 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "config/cashback-config.h"
#endif
#include "net.h"
#include "addrman.h"
#include "chainparams.h"
#include "clientversion.h"
#include "miner.h"
#include "obfuscation.h"
#include "primitives/transaction.h"
#include "scheduler.h"
#include "ui_interface.h"
#include "wallet.h"
#ifdef WIN32
#include <string.h>
#else
#include <fcntl.h>
#endif
#ifdef USE_UPNP
#include <miniupnpc/miniupnpc.h>
#include <miniupnpc/miniwget.h>
#include <miniupnpc/upnpcommands.h>
#include <miniupnpc/upnperrors.h>
#endif
#include <boost/filesystem.hpp>
#include <boost/thread.hpp>
// Dump addresses to peers.dat every 15 minutes (900s)
#define DUMP_ADDRESSES_INTERVAL 900
#if !defined(HAVE_MSG_NOSIGNAL) && !defined(MSG_NOSIGNAL)
#define MSG_NOSIGNAL 0
#endif
// Fix for ancient MinGW versions, that don't have defined these in ws2tcpip.h.
// Todo: Can be removed when our pull-tester is upgraded to a modern MinGW version.
#ifdef WIN32
#ifndef PROTECTION_LEVEL_UNRESTRICTED
#define PROTECTION_LEVEL_UNRESTRICTED 10
#endif
#ifndef IPV6_PROTECTION_LEVEL
#define IPV6_PROTECTION_LEVEL 23
#endif
#endif
using namespace boost;
using namespace std;
namespace
{
const int MAX_OUTBOUND_CONNECTIONS = 16;
struct ListenSocket {
SOCKET socket;
bool whitelisted;
ListenSocket(SOCKET socket, bool whitelisted) : socket(socket), whitelisted(whitelisted) {}
};
}
//
// Global state variables
//
bool fDiscover = true;
bool fListen = true;
uint64_t nLocalServices = NODE_NETWORK;
CCriticalSection cs_mapLocalHost;
map<CNetAddr, LocalServiceInfo> mapLocalHost;
static bool vfLimited[NET_MAX] = {};
static CNode* pnodeLocalHost = NULL;
uint64_t nLocalHostNonce = 0;
static std::vector<ListenSocket> vhListenSocket;
CAddrMan addrman;
int nMaxConnections = 125;
bool fAddressesInitialized = false;
vector<CNode*> vNodes;
CCriticalSection cs_vNodes;
map<CInv, CDataStream> mapRelay;
deque<pair<int64_t, CInv> > vRelayExpiration;
CCriticalSection cs_mapRelay;
limitedmap<CInv, int64_t> mapAlreadyAskedFor(MAX_INV_SZ);
static deque<string> vOneShots;
CCriticalSection cs_vOneShots;
set<CNetAddr> setservAddNodeAddresses;
CCriticalSection cs_setservAddNodeAddresses;
vector<std::string> vAddedNodes;
CCriticalSection cs_vAddedNodes;
NodeId nLastNodeId = 0;
CCriticalSection cs_nLastNodeId;
static CSemaphore* semOutbound = NULL;
boost::condition_variable messageHandlerCondition;
// Signals for message handling
static CNodeSignals g_signals;
CNodeSignals& GetNodeSignals() { return g_signals; }
void AddOneShot(string strDest)
{
LOCK(cs_vOneShots);
vOneShots.push_back(strDest);
}
unsigned short GetListenPort()
{
return (unsigned short)(GetArg("-port", Params().GetDefaultPort()));
}
// find 'best' local address for a particular peer
bool GetLocal(CService& addr, const CNetAddr* paddrPeer)
{
if (!fListen)
return false;
int nBestScore = -1;
int nBestReachability = -1;
{
LOCK(cs_mapLocalHost);
for (map<CNetAddr, LocalServiceInfo>::iterator it = mapLocalHost.begin(); it != mapLocalHost.end(); it++) {
int nScore = (*it).second.nScore;
int nReachability = (*it).first.GetReachabilityFrom(paddrPeer);
if (nReachability > nBestReachability || (nReachability == nBestReachability && nScore > nBestScore)) {
addr = CService((*it).first, (*it).second.nPort);
nBestReachability = nReachability;
nBestScore = nScore;
}
}
}
return nBestScore >= 0;
}
// get best local address for a particular peer as a CAddress
// Otherwise, return the unroutable 0.0.0.0 but filled in with
// the normal parameters, since the IP may be changed to a useful
// one by discovery.
CAddress GetLocalAddress(const CNetAddr* paddrPeer)
{
CAddress ret(CService("0.0.0.0", GetListenPort()), 0);
CService addr;
if (GetLocal(addr, paddrPeer)) {
ret = CAddress(addr);
}
ret.nServices = nLocalServices;
ret.nTime = GetAdjustedTime();
return ret;
}
bool RecvLine(SOCKET hSocket, string& strLine)
{
strLine = "";
while (true) {
char c;
int nBytes = recv(hSocket, &c, 1, 0);
if (nBytes > 0) {
if (c == '\n')
continue;
if (c == '\r')
return true;
strLine += c;
if (strLine.size() >= 9000)
return true;
} else if (nBytes <= 0) {
boost::this_thread::interruption_point();
if (nBytes < 0) {
int nErr = WSAGetLastError();
if (nErr == WSAEMSGSIZE)
continue;
if (nErr == WSAEWOULDBLOCK || nErr == WSAEINTR || nErr == WSAEINPROGRESS) {
MilliSleep(10);
continue;
}
}
if (!strLine.empty())
return true;
if (nBytes == 0) {
// socket closed
LogPrint("net", "socket closed\n");
return false;
} else {
// socket error
int nErr = WSAGetLastError();
LogPrint("net", "recv failed: %s\n", NetworkErrorString(nErr));
return false;
}
}
}
}
int GetnScore(const CService& addr)
{
LOCK(cs_mapLocalHost);
if (mapLocalHost.count(addr) == LOCAL_NONE)
return 0;
return mapLocalHost[addr].nScore;
}
// Is our peer's addrLocal potentially useful as an external IP source?
bool IsPeerAddrLocalGood(CNode* pnode)
{
return fDiscover && pnode->addr.IsRoutable() && pnode->addrLocal.IsRoutable() &&
!IsLimited(pnode->addrLocal.GetNetwork());
}
// pushes our own address to a peer
void AdvertizeLocal(CNode* pnode)
{
if (fListen && pnode->fSuccessfullyConnected) {
CAddress addrLocal = GetLocalAddress(&pnode->addr);
// If discovery is enabled, sometimes give our peer the address it
// tells us that it sees us as in case it has a better idea of our
// address than we do.
if (IsPeerAddrLocalGood(pnode) && (!addrLocal.IsRoutable() ||
GetRand((GetnScore(addrLocal) > LOCAL_MANUAL) ? 8 : 2) == 0)) {
addrLocal.SetIP(pnode->addrLocal);
}
if (addrLocal.IsRoutable()) {
LogPrintf("AdvertizeLocal: advertizing address %s\n", addrLocal.ToString());
pnode->PushAddress(addrLocal);
}
}
}
// learn a new local address
bool AddLocal(const CService& addr, int nScore)
{
if (!addr.IsRoutable())
return false;
if (!fDiscover && nScore < LOCAL_MANUAL)
return false;
if (IsLimited(addr))
return false;
LogPrintf("AddLocal(%s,%i)\n", addr.ToString(), nScore);
{
LOCK(cs_mapLocalHost);
bool fAlready = mapLocalHost.count(addr) > 0;
LocalServiceInfo& info = mapLocalHost[addr];
if (!fAlready || nScore >= info.nScore) {
info.nScore = nScore + (fAlready ? 1 : 0);
info.nPort = addr.GetPort();
}
}
return true;
}
bool AddLocal(const CNetAddr& addr, int nScore)
{
return AddLocal(CService(addr, GetListenPort()), nScore);
}
bool RemoveLocal(const CService& addr)
{
LOCK(cs_mapLocalHost);
LogPrintf("RemoveLocal(%s)\n", addr.ToString());
mapLocalHost.erase(addr);
return true;
}
/** Make a particular network entirely off-limits (no automatic connects to it) */
void SetLimited(enum Network net, bool fLimited)
{
if (net == NET_UNROUTABLE)
return;
LOCK(cs_mapLocalHost);
vfLimited[net] = fLimited;
}
bool IsLimited(enum Network net)
{
LOCK(cs_mapLocalHost);
return vfLimited[net];
}
bool IsLimited(const CNetAddr& addr)
{
return IsLimited(addr.GetNetwork());
}
/** vote for a local address */
bool SeenLocal(const CService& addr)
{
{
LOCK(cs_mapLocalHost);
if (mapLocalHost.count(addr) == 0)
return false;
mapLocalHost[addr].nScore++;
}
return true;
}
/** check whether a given address is potentially local */
bool IsLocal(const CService& addr)
{
LOCK(cs_mapLocalHost);
return mapLocalHost.count(addr) > 0;
}
/** check whether a given network is one we can probably connect to */
bool IsReachable(enum Network net)
{
LOCK(cs_mapLocalHost);
return !vfLimited[net];
}
/** check whether a given address is in a network we can probably connect to */
bool IsReachable(const CNetAddr& addr)
{
enum Network net = addr.GetNetwork();
return IsReachable(net);
}
void AddressCurrentlyConnected(const CService& addr)
{
addrman.Connected(addr);
}
uint64_t CNode::nTotalBytesRecv = 0;
uint64_t CNode::nTotalBytesSent = 0;
CCriticalSection CNode::cs_totalBytesRecv;
CCriticalSection CNode::cs_totalBytesSent;
CNode* FindNode(const CNetAddr& ip)
{
LOCK(cs_vNodes);
for (CNode* pnode : vNodes)
if ((CNetAddr)pnode->addr == ip)
return (pnode);
return NULL;
}
CNode* FindNode(const CSubNet& subNet)
{
LOCK(cs_vNodes);
for (CNode* pnode : vNodes)
if (subNet.Match((CNetAddr)pnode->addr))
return (pnode);
return NULL;
}
CNode* FindNode(const std::string& addrName)
{
LOCK(cs_vNodes);
for (CNode* pnode : vNodes)
if (pnode->addrName == addrName)
return (pnode);
return NULL;
}
CNode* FindNode(const CService& addr)
{
LOCK(cs_vNodes);
for (CNode* pnode : vNodes) {
if (Params().NetworkID() == CBaseChainParams::REGTEST) {
//if using regtest, just check the IP
if ((CNetAddr)pnode->addr == (CNetAddr)addr)
return (pnode);
} else {
if (pnode->addr == addr)
return (pnode);
}
}
return NULL;
}
CNode* ConnectNode(CAddress addrConnect, const char* pszDest, bool obfuScationMaster)
{
if (pszDest == NULL) {
// we clean masternode connections in CMasternodeMan::ProcessMasternodeConnections()
// so should be safe to skip this and connect to local Hot MN on CActiveMasternode::ManageStatus()
if (IsLocal(addrConnect) && !obfuScationMaster)
return NULL;
// Look for an existing connection
CNode* pnode = FindNode((CService)addrConnect);
if (pnode) {
pnode->fObfuScationMaster = obfuScationMaster;
pnode->AddRef();
return pnode;
}
}
/// debug print
LogPrint("net", "trying connection %s lastseen=%.1fhrs\n",
pszDest ? pszDest : addrConnect.ToString(),
pszDest ? 0.0 : (double)(GetAdjustedTime() - addrConnect.nTime) / 3600.0);
// Connect
SOCKET hSocket;
bool proxyConnectionFailed = false;
if (pszDest ? ConnectSocketByName(addrConnect, hSocket, pszDest, Params().GetDefaultPort(), nConnectTimeout, &proxyConnectionFailed) :
ConnectSocket(addrConnect, hSocket, nConnectTimeout, &proxyConnectionFailed)) {
if (!IsSelectableSocket(hSocket)) {
LogPrintf("Cannot create connection: non-selectable socket created (fd >= FD_SETSIZE ?)\n");
CloseSocket(hSocket);
return NULL;
}
addrman.Attempt(addrConnect);
// Add node
CNode* pnode = new CNode(hSocket, addrConnect, pszDest ? pszDest : "", false);
pnode->AddRef();
{
LOCK(cs_vNodes);
vNodes.push_back(pnode);
}
pnode->nTimeConnected = GetTime();
if (obfuScationMaster) pnode->fObfuScationMaster = true;
return pnode;
} else if (!proxyConnectionFailed) {
// If connecting to the node failed, and failure is not caused by a problem connecting to
// the proxy, mark this as an attempt.
addrman.Attempt(addrConnect);
}
return NULL;
}
void CNode::CloseSocketDisconnect()
{
fDisconnect = true;
if (hSocket != INVALID_SOCKET) {
LogPrint("net", "disconnecting peer=%d\n", id);
CloseSocket(hSocket);
}
// in case this fails, we'll empty the recv buffer when the CNode is deleted
TRY_LOCK(cs_vRecvMsg, lockRecv);
if (lockRecv)
vRecvMsg.clear();
}
bool CNode::DisconnectOldProtocol(int nVersionRequired, string strLastCommand)
{
fDisconnect = false;
if (nVersion < nVersionRequired) {
LogPrintf("%s : peer=%d using obsolete version %i; disconnecting\n", __func__, id, nVersion);
PushMessage("reject", strLastCommand, REJECT_OBSOLETE, strprintf("Version must be %d or greater", ActiveProtocol()));
fDisconnect = true;
}
return fDisconnect;
}
void CNode::PushVersion()
{
int nBestHeight = g_signals.GetHeight().get_value_or(0);
/// when NTP implemented, change to just nTime = GetAdjustedTime()
int64_t nTime = (fInbound ? GetAdjustedTime() : GetTime());
CAddress addrYou = (addr.IsRoutable() && !IsProxy(addr) ? addr : CAddress(CService("0.0.0.0", 0)));
CAddress addrMe = GetLocalAddress(&addr);
GetRandBytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce));
if (fLogIPs)
LogPrint("net", "send version message: version %d, blocks=%d, us=%s, them=%s, peer=%d\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString(), addrYou.ToString(), id);
else
LogPrint("net", "send version message: version %d, blocks=%d, us=%s, peer=%d\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString(), id);
PushMessage("version", PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe,
nLocalHostNonce, FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<string>()), nBestHeight, true);
}
banmap_t CNode::setBanned;
CCriticalSection CNode::cs_setBanned;
bool CNode::setBannedIsDirty;
void CNode::ClearBanned()
{
{
LOCK(cs_setBanned);
setBanned.clear();
setBannedIsDirty = true;
}
DumpBanlist(); // store banlist to Disk
uiInterface.BannedListChanged();
}
bool CNode::IsBanned(CNetAddr ip)
{
bool fResult = false;
{
LOCK(cs_setBanned);
for (banmap_t::iterator it = setBanned.begin(); it != setBanned.end(); it++)
{
CSubNet subNet = (*it).first;
CBanEntry banEntry = (*it).second;
if(subNet.Match(ip) && GetTime() < banEntry.nBanUntil)
fResult = true;
}
}
return fResult;
}
bool CNode::IsBanned(CSubNet subnet)
{
bool fResult = false;
{
LOCK(cs_setBanned);
banmap_t::iterator i = setBanned.find(subnet);
if (i != setBanned.end()) {
CBanEntry banEntry = (*i).second;
if (GetTime() < banEntry.nBanUntil)
fResult = true;
}
}
return fResult;
}
void CNode::Ban(const CNetAddr& addr, const BanReason &banReason, int64_t bantimeoffset, bool sinceUnixEpoch)
{
CSubNet subNet(addr);
Ban(subNet, banReason, bantimeoffset, sinceUnixEpoch);
}
void CNode::Ban(const CSubNet& subNet, const BanReason &banReason, int64_t bantimeoffset, bool sinceUnixEpoch)
{
CBanEntry banEntry(GetTime());
banEntry.banReason = banReason;
if (bantimeoffset <= 0)
{
bantimeoffset = GetArg("-bantime", 60*60*24); // Default 24-hour ban
sinceUnixEpoch = false;
}
banEntry.nBanUntil = (sinceUnixEpoch ? 0 : GetTime() )+bantimeoffset;
{
LOCK(cs_setBanned);
if (setBanned[subNet].nBanUntil < banEntry.nBanUntil) {
setBanned[subNet] = banEntry;
setBannedIsDirty = true;
}
else
return;
}
uiInterface.BannedListChanged();
{
LOCK(cs_vNodes);
BOOST_FOREACH(CNode* pnode, vNodes) {
if (subNet.Match((CNetAddr)pnode->addr))
pnode->fDisconnect = true;
}
}
if(banReason == BanReasonManuallyAdded)
DumpBanlist(); //store banlist to disk immediately if user requested ban
}
bool CNode::Unban(const CNetAddr &addr)
{
CSubNet subNet(addr);
return Unban(subNet);
}
bool CNode::Unban(const CSubNet &subNet)
{
{
LOCK(cs_setBanned);
if (!setBanned.erase(subNet))
return false;
setBannedIsDirty = true;
}
uiInterface.BannedListChanged();
DumpBanlist(); //store banlist to disk immediately
return true;
}
void CNode::GetBanned(banmap_t &banMap)
{
LOCK(cs_setBanned);
banMap = setBanned; //create a thread safe copy
}
void CNode::SetBanned(const banmap_t &banMap)
{
LOCK(cs_setBanned);
setBanned = banMap;
setBannedIsDirty = true;
}
void CNode::SweepBanned()
{
int64_t now = GetTime();
bool notifyUI = false;
{
LOCK(cs_setBanned);
banmap_t::iterator it = setBanned.begin();
while(it != setBanned.end())
{
CSubNet subNet = (*it).first;
CBanEntry banEntry = (*it).second;
if(now > banEntry.nBanUntil)
{
setBanned.erase(it++);
setBannedIsDirty = true;
notifyUI = true;
LogPrint("net", "%s: Removed banned node ip/subnet from banlist.dat: %s\n", __func__, subNet.ToString());
}
else
++it;
}
}
// update UI
if(notifyUI) {
uiInterface.BannedListChanged();
}
}
bool CNode::BannedSetIsDirty()
{
LOCK(cs_setBanned);
return setBannedIsDirty;
}
void CNode::SetBannedSetDirty(bool dirty)
{
LOCK(cs_setBanned); //reuse setBanned lock for the isDirty flag
setBannedIsDirty = dirty;
}
std::vector<CSubNet> CNode::vWhitelistedRange;
CCriticalSection CNode::cs_vWhitelistedRange;
bool CNode::IsWhitelistedRange(const CNetAddr& addr)
{
LOCK(cs_vWhitelistedRange);
BOOST_FOREACH (const CSubNet& subnet, vWhitelistedRange) {
if (subnet.Match(addr))
return true;
}
return false;
}
void CNode::AddWhitelistedRange(const CSubNet& subnet)
{
LOCK(cs_vWhitelistedRange);
vWhitelistedRange.push_back(subnet);
}
#undef X
#define X(name) stats.name = name
void CNode::copyStats(CNodeStats& stats)
{
stats.nodeid = this->GetId();
X(nServices);
X(nLastSend);
X(nLastRecv);
X(nTimeConnected);
X(nTimeOffset);
X(addrName);
X(nVersion);
X(cleanSubVer);
X(fInbound);
X(nStartingHeight);
X(nSendBytes);
X(nRecvBytes);
X(fWhitelisted);
// It is common for nodes with good ping times to suddenly become lagged,
// due to a new block arriving or other large transfer.
// Merely reporting pingtime might fool the caller into thinking the node was still responsive,
// since pingtime does not update until the ping is complete, which might take a while.
// So, if a ping is taking an unusually long time in flight,
// the caller can immediately detect that this is happening.
int64_t nPingUsecWait = 0;
if ((0 != nPingNonceSent) && (0 != nPingUsecStart)) {
nPingUsecWait = GetTimeMicros() - nPingUsecStart;
}
// Raw ping time is in microseconds, but show it to user as whole seconds (Caskback users should be cash used to small numbers with many decimal places by now :)
stats.dPingTime = (((double)nPingUsecTime) / 1e6);
stats.dPingWait = (((double)nPingUsecWait) / 1e6);
// Leave string empty if addrLocal invalid (not filled in yet)
stats.addrLocal = addrLocal.IsValid() ? addrLocal.ToString() : "";
}
#undef X
// requires LOCK(cs_vRecvMsg)
bool CNode::ReceiveMsgBytes(const char* pch, unsigned int nBytes)
{
while (nBytes > 0) {
// get current incomplete message, or create a new one
if (vRecvMsg.empty() ||
vRecvMsg.back().complete())
vRecvMsg.push_back(CNetMessage(SER_NETWORK, nRecvVersion));
CNetMessage& msg = vRecvMsg.back();
// absorb network data
int handled;
if (!msg.in_data)
handled = msg.readHeader(pch, nBytes);
else
handled = msg.readData(pch, nBytes);
if (handled < 0)
return false;
if (msg.in_data && msg.hdr.nMessageSize > MAX_PROTOCOL_MESSAGE_LENGTH) {
LogPrint("net", "Oversized message from peer=%i, disconnecting", GetId());
return false;
}
pch += handled;
nBytes -= handled;
if (msg.complete()) {
msg.nTime = GetTimeMicros();
messageHandlerCondition.notify_one();
}
}
return true;
}
int CNetMessage::readHeader(const char* pch, unsigned int nBytes)
{
// copy data to temporary parsing buffer
unsigned int nRemaining = 24 - nHdrPos;
unsigned int nCopy = std::min(nRemaining, nBytes);
memcpy(&hdrbuf[nHdrPos], pch, nCopy);
nHdrPos += nCopy;
// if header incomplete, exit
if (nHdrPos < 24)
return nCopy;
// deserialize to CMessageHeader
try {
hdrbuf >> hdr;
} catch (const std::exception&) {
return -1;
}
// reject messages larger than MAX_SIZE
if (hdr.nMessageSize > MAX_SIZE)
return -1;
// switch state to reading message data
in_data = true;
return nCopy;
}
int CNetMessage::readData(const char* pch, unsigned int nBytes)
{
unsigned int nRemaining = hdr.nMessageSize - nDataPos;
unsigned int nCopy = std::min(nRemaining, nBytes);
if (vRecv.size() < nDataPos + nCopy) {
// Allocate up to 256 KiB ahead, but never more than the total message size.
vRecv.resize(std::min(hdr.nMessageSize, nDataPos + nCopy + 256 * 1024));
}
memcpy(&vRecv[nDataPos], pch, nCopy);
nDataPos += nCopy;
return nCopy;
}
// requires LOCK(cs_vSend)
void SocketSendData(CNode* pnode)
{
std::deque<CSerializeData>::iterator it = pnode->vSendMsg.begin();
while (it != pnode->vSendMsg.end()) {
const CSerializeData& data = *it;
assert(data.size() > pnode->nSendOffset);
int nBytes = send(pnode->hSocket, &data[pnode->nSendOffset], data.size() - pnode->nSendOffset, MSG_NOSIGNAL | MSG_DONTWAIT);
if (nBytes > 0) {
pnode->nLastSend = GetTime();
pnode->nSendBytes += nBytes;
pnode->nSendOffset += nBytes;
pnode->RecordBytesSent(nBytes);
if (pnode->nSendOffset == data.size()) {
pnode->nSendOffset = 0;
pnode->nSendSize -= data.size();
it++;
} else {
// could not send full message; stop sending more
break;
}
} else {
if (nBytes < 0) {
// error
int nErr = WSAGetLastError();
if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS) {
LogPrintf("socket send error %s\n", NetworkErrorString(nErr));
pnode->CloseSocketDisconnect();
}
}
// couldn't send anything at all
break;
}
}
if (it == pnode->vSendMsg.end()) {
assert(pnode->nSendOffset == 0);
assert(pnode->nSendSize == 0);
}
pnode->vSendMsg.erase(pnode->vSendMsg.begin(), it);
}
static list<CNode*> vNodesDisconnected;
void ThreadSocketHandler()
{
unsigned int nPrevNodeCount = 0;
while (true) {
//
// Disconnect nodes
//
{
LOCK(cs_vNodes);
// Disconnect unused nodes
vector<CNode*> vNodesCopy = vNodes;
BOOST_FOREACH (CNode* pnode, vNodesCopy) {
if (pnode->fDisconnect ||
(pnode->GetRefCount() <= 0 && pnode->vRecvMsg.empty() && pnode->nSendSize == 0 && pnode->ssSend.empty())) {
// remove from vNodes
vNodes.erase(remove(vNodes.begin(), vNodes.end(), pnode), vNodes.end());
// release outbound grant (if any)
pnode->grantOutbound.Release();
// close socket and cleanup
pnode->CloseSocketDisconnect();
// hold in disconnected pool until all refs are released
if (pnode->fNetworkNode || pnode->fInbound)
pnode->Release();
vNodesDisconnected.push_back(pnode);
}
}
}
{
// Delete disconnected nodes
list<CNode*> vNodesDisconnectedCopy = vNodesDisconnected;
BOOST_FOREACH (CNode* pnode, vNodesDisconnectedCopy) {
// wait until threads are done using it
if (pnode->GetRefCount() <= 0) {
bool fDelete = false;
{
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend) {
TRY_LOCK(pnode->cs_vRecvMsg, lockRecv);
if (lockRecv) {
TRY_LOCK(pnode->cs_inventory, lockInv);
if (lockInv)
fDelete = true;
}
}
}
if (fDelete) {
vNodesDisconnected.remove(pnode);
delete pnode;
}
}
}
}
size_t vNodesSize;
{
LOCK(cs_vNodes);
vNodesSize = vNodes.size();
}
if(vNodesSize != nPrevNodeCount) {
nPrevNodeCount = vNodesSize;
uiInterface.NotifyNumConnectionsChanged(nPrevNodeCount);
}
//
// Find which sockets have data to receive
//
struct timeval timeout;
timeout.tv_sec = 0;
timeout.tv_usec = 50000; // frequency to poll pnode->vSend
fd_set fdsetRecv;
fd_set fdsetSend;
fd_set fdsetError;
FD_ZERO(&fdsetRecv);
FD_ZERO(&fdsetSend);
FD_ZERO(&fdsetError);
SOCKET hSocketMax = 0;
bool have_fds = false;
BOOST_FOREACH (const ListenSocket& hListenSocket, vhListenSocket) {
FD_SET(hListenSocket.socket, &fdsetRecv);
hSocketMax = max(hSocketMax, hListenSocket.socket);
have_fds = true;
}
{
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodes) {
if (pnode->hSocket == INVALID_SOCKET)
continue;
FD_SET(pnode->hSocket, &fdsetError);
hSocketMax = max(hSocketMax, pnode->hSocket);
have_fds = true;
// Implement the following logic:
// * If there is data to send, select() for sending data. As this only
// happens when optimistic write failed, we choose to first drain the
// write buffer in this case before receiving more. This avoids
// needlessly queueing received data, if the remote peer is not themselves
// receiving data. This means properly utilizing TCP flow control signalling.
// * Otherwise, if there is no (complete) message in the receive buffer,
// or there is space left in the buffer, select() for receiving data.
// * (if neither of the above applies, there is certainly one message
// in the receiver buffer ready to be processed).
// Together, that means that at least one of the following is always possible,
// so we don't deadlock:
// * We send some data.
// * We wait for data to be received (and disconnect after timeout).
// * We process a message in the buffer (message handler thread).
{
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend && !pnode->vSendMsg.empty()) {
FD_SET(pnode->hSocket, &fdsetSend);
continue;
}
}
{
TRY_LOCK(pnode->cs_vRecvMsg, lockRecv);
if (lockRecv && (pnode->vRecvMsg.empty() || !pnode->vRecvMsg.front().complete() ||
pnode->GetTotalRecvSize() <= ReceiveFloodSize()))
FD_SET(pnode->hSocket, &fdsetRecv);
}
}
}
int nSelect = select(have_fds ? hSocketMax + 1 : 0,
&fdsetRecv, &fdsetSend, &fdsetError, &timeout);
boost::this_thread::interruption_point();
if (nSelect == SOCKET_ERROR) {
if (have_fds) {
int nErr = WSAGetLastError();
LogPrintf("socket select error %s\n", NetworkErrorString(nErr));
for (unsigned int i = 0; i <= hSocketMax; i++)
FD_SET(i, &fdsetRecv);
}
FD_ZERO(&fdsetSend);
FD_ZERO(&fdsetError);
MilliSleep(timeout.tv_usec / 1000);
}
//
// Accept new connections
//
BOOST_FOREACH (const ListenSocket& hListenSocket, vhListenSocket) {
if (hListenSocket.socket != INVALID_SOCKET && FD_ISSET(hListenSocket.socket, &fdsetRecv)) {
struct sockaddr_storage sockaddr;
socklen_t len = sizeof(sockaddr);
SOCKET hSocket = accept(hListenSocket.socket, (struct sockaddr*)&sockaddr, &len);
CAddress addr;
int nInbound = 0;
if (hSocket != INVALID_SOCKET)
if (!addr.SetSockAddr((const struct sockaddr*)&sockaddr))
LogPrintf("Warning: Unknown socket family\n");
bool whitelisted = hListenSocket.whitelisted || CNode::IsWhitelistedRange(addr);
{
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodes)
if (pnode->fInbound)
nInbound++;
}
if (hSocket == INVALID_SOCKET) {
int nErr = WSAGetLastError();
if (nErr != WSAEWOULDBLOCK)
LogPrintf("socket error accept failed: %s\n", NetworkErrorString(nErr));
} else if (!IsSelectableSocket(hSocket)) {
LogPrintf("connection from %s dropped: non-selectable socket\n", addr.ToString());
CloseSocket(hSocket);
} else if (nInbound >= nMaxConnections - MAX_OUTBOUND_CONNECTIONS) {
LogPrint("net", "connection from %s dropped (full)\n", addr.ToString());
CloseSocket(hSocket);
} else if (CNode::IsBanned(addr) && !whitelisted) {
LogPrintf("connection from %s dropped (banned)\n", addr.ToString());
CloseSocket(hSocket);
} else {
CNode* pnode = new CNode(hSocket, addr, "", true);
pnode->AddRef();
pnode->fWhitelisted = whitelisted;
{
LOCK(cs_vNodes);
vNodes.push_back(pnode);
}
}
}
}
//
// Service each socket
//
vector<CNode*> vNodesCopy;
{
LOCK(cs_vNodes);
vNodesCopy = vNodes;
BOOST_FOREACH (CNode* pnode, vNodesCopy)
pnode->AddRef();
}
BOOST_FOREACH (CNode* pnode, vNodesCopy) {
boost::this_thread::interruption_point();
//
// Receive
//
if (pnode->hSocket == INVALID_SOCKET)
continue;
if (FD_ISSET(pnode->hSocket, &fdsetRecv) || FD_ISSET(pnode->hSocket, &fdsetError)) {
TRY_LOCK(pnode->cs_vRecvMsg, lockRecv);
if (lockRecv) {
{
// typical socket buffer is 8K-64K
char pchBuf[0x10000];
int nBytes = recv(pnode->hSocket, pchBuf, sizeof(pchBuf), MSG_DONTWAIT);
if (nBytes > 0) {
if (!pnode->ReceiveMsgBytes(pchBuf, nBytes))
pnode->CloseSocketDisconnect();
pnode->nLastRecv = GetTime();
pnode->nRecvBytes += nBytes;
pnode->RecordBytesRecv(nBytes);
} else if (nBytes == 0) {
// socket closed gracefully
if (!pnode->fDisconnect)
LogPrint("net", "socket closed\n");
pnode->CloseSocketDisconnect();
} else if (nBytes < 0) {
// error
int nErr = WSAGetLastError();
if (nErr != WSAEWOULDBLOCK && nErr != WSAEMSGSIZE && nErr != WSAEINTR && nErr != WSAEINPROGRESS) {
if (!pnode->fDisconnect)
LogPrintf("socket recv error %s\n", NetworkErrorString(nErr));
pnode->CloseSocketDisconnect();
}
}
}
}
}
//
// Send
//
if (pnode->hSocket == INVALID_SOCKET)
continue;
if (FD_ISSET(pnode->hSocket, &fdsetSend)) {
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend)
SocketSendData(pnode);
}
//
// Inactivity checking
//
int64_t nTime = GetTime();
if (nTime - pnode->nTimeConnected > 60) {
if (pnode->nLastRecv == 0 || pnode->nLastSend == 0) {
LogPrint("net", "socket no message in first 60 seconds, %d %d from %d\n", pnode->nLastRecv != 0, pnode->nLastSend != 0, pnode->id);
pnode->fDisconnect = true;
} else if (nTime - pnode->nLastSend > TIMEOUT_INTERVAL) {
LogPrintf("socket sending timeout: %is\n", nTime - pnode->nLastSend);
pnode->fDisconnect = true;
} else if (nTime - pnode->nLastRecv > (pnode->nVersion > BIP0031_VERSION ? TIMEOUT_INTERVAL : 90 * 60)) {
LogPrintf("socket receive timeout: %is\n", nTime - pnode->nLastRecv);
pnode->fDisconnect = true;
} else if (pnode->nPingNonceSent && pnode->nPingUsecStart + TIMEOUT_INTERVAL * 1000000 < GetTimeMicros()) {
LogPrintf("ping timeout: %fs\n", 0.000001 * (GetTimeMicros() - pnode->nPingUsecStart));
pnode->fDisconnect = true;
}
}
}
{
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodesCopy)
pnode->Release();
}
}
}
#ifdef USE_UPNP
void ThreadMapPort()
{
std::string port = strprintf("%u", GetListenPort());
const char* multicastif = 0;
const char* minissdpdpath = 0;
struct UPNPDev* devlist = 0;
char lanaddr[64];
#ifndef UPNPDISCOVER_SUCCESS
/* miniupnpc 1.5 */
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0);
#elif MINIUPNPC_API_VERSION < 14
/* miniupnpc 1.6 */
int error = 0;
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, &error);
#else
/* miniupnpc 1.9.20150730 */
int error = 0;
devlist = upnpDiscover(2000, multicastif, minissdpdpath, 0, 0, 2, &error);
#endif
struct UPNPUrls urls;
struct IGDdatas data;
int r;
r = UPNP_GetValidIGD(devlist, &urls, &data, lanaddr, sizeof(lanaddr));
if (r == 1) {
if (fDiscover) {
char externalIPAddress[40];
r = UPNP_GetExternalIPAddress(urls.controlURL, data.first.servicetype, externalIPAddress);
if (r != UPNPCOMMAND_SUCCESS)
LogPrintf("UPnP: GetExternalIPAddress() returned %d\n", r);
else {
if (externalIPAddress[0]) {
LogPrintf("UPnP: ExternalIPAddress = %s\n", externalIPAddress);
AddLocal(CNetAddr(externalIPAddress), LOCAL_UPNP);
} else
LogPrintf("UPnP: GetExternalIPAddress failed.\n");
}
}
string strDesc = "Caskback " + FormatFullVersion();
try {
while (true) {
#ifndef UPNPDISCOVER_SUCCESS
/* miniupnpc 1.5 */
r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
port.c_str(), port.c_str(), lanaddr, strDesc.c_str(), "TCP", 0);
#else
/* miniupnpc 1.6 */
r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype,
port.c_str(), port.c_str(), lanaddr, strDesc.c_str(), "TCP", 0, "0");
#endif
if (r != UPNPCOMMAND_SUCCESS)
LogPrintf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n",
port, port, lanaddr, r, strupnperror(r));
else
LogPrintf("UPnP Port Mapping successful.\n");
;
MilliSleep(20 * 60 * 1000); // Refresh every 20 minutes
}
} catch (boost::thread_interrupted) {
r = UPNP_DeletePortMapping(urls.controlURL, data.first.servicetype, port.c_str(), "TCP", 0);
LogPrintf("UPNP_DeletePortMapping() returned : %d\n", r);
freeUPNPDevlist(devlist);
devlist = 0;
FreeUPNPUrls(&urls);
throw;
}
} else {
LogPrintf("No valid UPnP IGDs found\n");
freeUPNPDevlist(devlist);
devlist = 0;
if (r != 0)
FreeUPNPUrls(&urls);
}
}
void MapPort(bool fUseUPnP)
{
static boost::thread* upnp_thread = NULL;
if (fUseUPnP) {
if (upnp_thread) {
upnp_thread->interrupt();
upnp_thread->join();
delete upnp_thread;
}
upnp_thread = new boost::thread(boost::bind(&TraceThread<void (*)()>, "upnp", &ThreadMapPort));
} else if (upnp_thread) {
upnp_thread->interrupt();
upnp_thread->join();
delete upnp_thread;
upnp_thread = NULL;
}
}
#else
void MapPort(bool)
{
// Intentionally left blank.
}
#endif
void ThreadDNSAddressSeed()
{
// goal: only query DNS seeds if address need is acute
if ((addrman.size() > 0) &&
(!GetBoolArg("-forcednsseed", false))) {
MilliSleep(11 * 1000);
LOCK(cs_vNodes);
if (vNodes.size() >= 2) {
LogPrintf("P2P peers available. Skipped DNS seeding.\n");
return;
}
}
const vector<CDNSSeedData>& vSeeds = Params().DNSSeeds();
int found = 0;
LogPrintf("Loading addresses from DNS seeds (could take a while)\n");
BOOST_FOREACH (const CDNSSeedData& seed, vSeeds) {
if (HaveNameProxy()) {
AddOneShot(seed.host);
} else {
vector<CNetAddr> vIPs;
vector<CAddress> vAdd;
if (LookupHost(seed.host.c_str(), vIPs)) {
BOOST_FOREACH (CNetAddr& ip, vIPs) {
int nOneDay = 24 * 3600;
CAddress addr = CAddress(CService(ip, Params().GetDefaultPort()));
addr.nTime = GetTime() - 3 * nOneDay - GetRand(4 * nOneDay); // use a random age between 3 and 7 days old
vAdd.push_back(addr);
found++;
}
}
addrman.Add(vAdd, CNetAddr(seed.name, true));
}
}
LogPrintf("%d addresses found from DNS seeds\n", found);
}
void DumpAddresses()
{
int64_t nStart = GetTimeMillis();
CAddrDB adb;
adb.Write(addrman);
LogPrint("net", "Flushed %d addresses to peers.dat %dms\n",
addrman.size(), GetTimeMillis() - nStart);
}
void DumpData()
{
DumpAddresses();
DumpBanlist();
}
void static ProcessOneShot()
{
string strDest;
{
LOCK(cs_vOneShots);
if (vOneShots.empty())
return;
strDest = vOneShots.front();
vOneShots.pop_front();
}
CAddress addr;
CSemaphoreGrant grant(*semOutbound, true);
if (grant) {
if (!OpenNetworkConnection(addr, &grant, strDest.c_str(), true))
AddOneShot(strDest);
}
}
void ThreadOpenConnections()
{
// Connect to specific addresses
if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) {
for (int64_t nLoop = 0;; nLoop++) {
ProcessOneShot();
BOOST_FOREACH (string strAddr, mapMultiArgs["-connect"]) {
CAddress addr;
OpenNetworkConnection(addr, NULL, strAddr.c_str());
for (int i = 0; i < 10 && i < nLoop; i++) {
MilliSleep(500);
}
}
MilliSleep(500);
}
}
// Initiate network connections
int64_t nStart = GetTime();
while (true) {
ProcessOneShot();
MilliSleep(500);
CSemaphoreGrant grant(*semOutbound);
boost::this_thread::interruption_point();
// Add seed nodes if DNS seeds are all down (an infrastructure attack?).
if (addrman.size() == 0 && (GetTime() - nStart > 60)) {
static bool done = false;
if (!done) {
LogPrintf("Adding fixed seed nodes as DNS doesn't seem to be available.\n");
addrman.Add(Params().FixedSeeds(), CNetAddr("127.0.0.1"));
done = true;
}
}
//
// Choose an address to connect to based on most recently seen
//
CAddress addrConnect;
// Only connect out to one peer per network group (/16 for IPv4).
// Do this here so we don't have to critsect vNodes inside mapAddresses critsect.
int nOutbound = 0;
set<vector<unsigned char> > setConnected;
{
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodes) {
if (!pnode->fInbound) {
setConnected.insert(pnode->addr.GetGroup());
nOutbound++;
}
}
}
int64_t nANow = GetAdjustedTime();
int nTries = 0;
while (true) {
CAddress addr = addrman.Select();
// if we selected an invalid address, restart
if (!addr.IsValid() || setConnected.count(addr.GetGroup()) || IsLocal(addr))
break;
// If we didn't find an appropriate destination after trying 100 addresses fetched from addrman,
// stop this loop, and let the outer loop run again (which sleeps, adds seed nodes, recalculates
// already-connected network ranges, ...) before trying new addrman addresses.
nTries++;
if (nTries > 100)
break;
if (IsLimited(addr))
continue;
// only consider very recently tried nodes after 30 failed attempts
if (nANow - addr.nLastTry < 600 && nTries < 30)
continue;
// do not allow non-default ports, unless after 50 invalid addresses selected already
if (addr.GetPort() != Params().GetDefaultPort() && nTries < 50)
continue;
addrConnect = addr;
break;
}
if (addrConnect.IsValid())
OpenNetworkConnection(addrConnect, &grant);
}
}
void ThreadOpenAddedConnections()
{
{
LOCK(cs_vAddedNodes);
vAddedNodes = mapMultiArgs["-addnode"];
}
if (HaveNameProxy()) {
while (true) {
list<string> lAddresses(0);
{
LOCK(cs_vAddedNodes);
BOOST_FOREACH (string& strAddNode, vAddedNodes)
lAddresses.push_back(strAddNode);
}
BOOST_FOREACH (string& strAddNode, lAddresses) {
CAddress addr;
CSemaphoreGrant grant(*semOutbound);
OpenNetworkConnection(addr, &grant, strAddNode.c_str());
MilliSleep(500);
}
MilliSleep(120000); // Retry every 2 minutes
}
}
for (unsigned int i = 0; true; i++) {
list<string> lAddresses(0);
{
LOCK(cs_vAddedNodes);
BOOST_FOREACH (string& strAddNode, vAddedNodes)
lAddresses.push_back(strAddNode);
}
list<vector<CService> > lservAddressesToAdd(0);
BOOST_FOREACH (string& strAddNode, lAddresses) {
vector<CService> vservNode(0);
if (Lookup(strAddNode.c_str(), vservNode, Params().GetDefaultPort(), fNameLookup, 0)) {
lservAddressesToAdd.push_back(vservNode);
{
LOCK(cs_setservAddNodeAddresses);
BOOST_FOREACH (CService& serv, vservNode)
setservAddNodeAddresses.insert(serv);
}
}
}
// Attempt to connect to each IP for each addnode entry until at least one is successful per addnode entry
// (keeping in mind that addnode entries can have many IPs if fNameLookup)
{
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodes)
for (list<vector<CService> >::iterator it = lservAddressesToAdd.begin(); it != lservAddressesToAdd.end(); it++)
BOOST_FOREACH (CService& addrNode, *(it))
if (pnode->addr == addrNode) {
it = lservAddressesToAdd.erase(it);
it--;
break;
}
}
BOOST_FOREACH (vector<CService>& vserv, lservAddressesToAdd) {
CSemaphoreGrant grant(*semOutbound);
OpenNetworkConnection(CAddress(vserv[i % vserv.size()]), &grant);
MilliSleep(500);
}
MilliSleep(120000); // Retry every 2 minutes
}
}
// if successful, this moves the passed grant to the constructed node
bool OpenNetworkConnection(const CAddress& addrConnect, CSemaphoreGrant* grantOutbound, const char* pszDest, bool fOneShot)
{
//
// Initiate outbound network connection
//
boost::this_thread::interruption_point();
if (!pszDest) {
if (IsLocal(addrConnect) ||
FindNode((CNetAddr)addrConnect) || CNode::IsBanned(addrConnect) ||
FindNode(addrConnect.ToStringIPPort()))
return false;
} else if (FindNode(pszDest))
return false;
CNode* pnode = ConnectNode(addrConnect, pszDest);
boost::this_thread::interruption_point();
if (!pnode)
return false;
if (grantOutbound)
grantOutbound->MoveTo(pnode->grantOutbound);
pnode->fNetworkNode = true;
if (fOneShot)
pnode->fOneShot = true;
return true;
}
void ThreadMessageHandler()
{
boost::mutex condition_mutex;
boost::unique_lock<boost::mutex> lock(condition_mutex);
SetThreadPriority(THREAD_PRIORITY_BELOW_NORMAL);
while (true) {
vector<CNode*> vNodesCopy;
{
LOCK(cs_vNodes);
vNodesCopy = vNodes;
BOOST_FOREACH (CNode* pnode, vNodesCopy) {
pnode->AddRef();
}
}
// Poll the connected nodes for messages
CNode* pnodeTrickle = NULL;
if (!vNodesCopy.empty())
pnodeTrickle = vNodesCopy[GetRand(vNodesCopy.size())];
bool fSleep = true;
BOOST_FOREACH (CNode* pnode, vNodesCopy) {
if (pnode->fDisconnect)
continue;
// Receive messages
{
TRY_LOCK(pnode->cs_vRecvMsg, lockRecv);
if (lockRecv) {
if (!g_signals.ProcessMessages(pnode))
pnode->CloseSocketDisconnect();
if (pnode->nSendSize < SendBufferSize()) {
if (!pnode->vRecvGetData.empty() || (!pnode->vRecvMsg.empty() && pnode->vRecvMsg[0].complete())) {
fSleep = false;
}
}
}
}
boost::this_thread::interruption_point();
// Send messages
{
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend)
g_signals.SendMessages(pnode, pnode == pnodeTrickle || pnode->fWhitelisted);
}
boost::this_thread::interruption_point();
}
{
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodesCopy)
pnode->Release();
}
if (fSleep)
messageHandlerCondition.timed_wait(lock, boost::posix_time::microsec_clock::universal_time() + boost::posix_time::milliseconds(100));
}
}
// ppcoin: stake minter thread
void static ThreadStakeMinter()
{
boost::this_thread::interruption_point();
LogPrintf("ThreadStakeMinter started\n");
CWallet* pwallet = pwalletMain;
try {
BitcoinMiner(pwallet, true);
boost::this_thread::interruption_point();
} catch (std::exception& e) {
LogPrintf("ThreadStakeMinter() exception \n");
} catch (...) {
LogPrintf("ThreadStakeMinter() error \n");
}
LogPrintf("ThreadStakeMinter exiting,\n");
}
bool BindListenPort(const CService& addrBind, string& strError, bool fWhitelisted)
{
strError = "";
int nOne = 1;
// Create socket for listening for incoming connections
struct sockaddr_storage sockaddr;
socklen_t len = sizeof(sockaddr);
if (!addrBind.GetSockAddr((struct sockaddr*)&sockaddr, &len)) {
strError = strprintf("Error: Bind address family for %s not supported", addrBind.ToString());
LogPrintf("%s\n", strError);
return false;
}
SOCKET hListenSocket = socket(((struct sockaddr*)&sockaddr)->sa_family, SOCK_STREAM, IPPROTO_TCP);
if (hListenSocket == INVALID_SOCKET) {
strError = strprintf("Error: Couldn't open socket for incoming connections (socket returned error %s)", NetworkErrorString(WSAGetLastError()));
LogPrintf("%s\n", strError);
return false;
}
if (!IsSelectableSocket(hListenSocket)) {
strError = "Error: Couldn't create a listenable socket for incoming connections";
LogPrintf("%s\n", strError);
return false;
}
#ifndef WIN32
#ifdef SO_NOSIGPIPE
// Different way of disabling SIGPIPE on BSD
setsockopt(hListenSocket, SOL_SOCKET, SO_NOSIGPIPE, (void*)&nOne, sizeof(int));
#endif
// Allow binding if the port is still in TIME_WAIT state after
// the program was closed and restarted. Not an issue on windows!
setsockopt(hListenSocket, SOL_SOCKET, SO_REUSEADDR, (void*)&nOne, sizeof(int));
#endif
// Set to non-blocking, incoming connections will also inherit this
if (!SetSocketNonBlocking(hListenSocket, true)) {
strError = strprintf("BindListenPort: Setting listening socket to non-blocking failed, error %s\n", NetworkErrorString(WSAGetLastError()));
LogPrintf("%s\n", strError);
return false;
}
// some systems don't have IPV6_V6ONLY but are always v6only; others do have the option
// and enable it by default or not. Try to enable it, if possible.
if (addrBind.IsIPv6()) {
#ifdef IPV6_V6ONLY
#ifdef WIN32
setsockopt(hListenSocket, IPPROTO_IPV6, IPV6_V6ONLY, (const char*)&nOne, sizeof(int));
#else
setsockopt(hListenSocket, IPPROTO_IPV6, IPV6_V6ONLY, (void*)&nOne, sizeof(int));
#endif
#endif
#ifdef WIN32
int nProtLevel = PROTECTION_LEVEL_UNRESTRICTED;
setsockopt(hListenSocket, IPPROTO_IPV6, IPV6_PROTECTION_LEVEL, (const char*)&nProtLevel, sizeof(int));
#endif
}
if (::bind(hListenSocket, (struct sockaddr*)&sockaddr, len) == SOCKET_ERROR) {
int nErr = WSAGetLastError();
if (nErr == WSAEADDRINUSE)
strError = strprintf(_("Unable to bind to %s on this computer. Caskback is probably already running."), addrBind.ToString());
else
strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %s)"), addrBind.ToString(), NetworkErrorString(nErr));
LogPrintf("%s\n", strError);
CloseSocket(hListenSocket);
return false;
}
LogPrintf("Bound to %s\n", addrBind.ToString());
// Listen for incoming connections
if (listen(hListenSocket, SOMAXCONN) == SOCKET_ERROR) {
strError = strprintf(_("Error: Listening for incoming connections failed (listen returned error %s)"), NetworkErrorString(WSAGetLastError()));
LogPrintf("%s\n", strError);
CloseSocket(hListenSocket);
return false;
}
vhListenSocket.push_back(ListenSocket(hListenSocket, fWhitelisted));
if (addrBind.IsRoutable() && fDiscover && !fWhitelisted)
AddLocal(addrBind, LOCAL_BIND);
return true;
}
void static Discover(boost::thread_group& threadGroup)
{
if (!fDiscover)
return;
#ifdef WIN32
// Get local host IP
char pszHostName[256] = "";
if (gethostname(pszHostName, sizeof(pszHostName)) != SOCKET_ERROR) {
vector<CNetAddr> vaddr;
if (LookupHost(pszHostName, vaddr)) {
BOOST_FOREACH (const CNetAddr& addr, vaddr) {
if (AddLocal(addr, LOCAL_IF))
LogPrintf("%s: %s - %s\n", __func__, pszHostName, addr.ToString());
}
}
}
#else
// Get local host ip
struct ifaddrs* myaddrs;
if (getifaddrs(&myaddrs) == 0) {
for (struct ifaddrs* ifa = myaddrs; ifa != NULL; ifa = ifa->ifa_next) {
if (ifa->ifa_addr == NULL) continue;
if ((ifa->ifa_flags & IFF_UP) == 0) continue;
if (strcmp(ifa->ifa_name, "lo") == 0) continue;
if (strcmp(ifa->ifa_name, "lo0") == 0) continue;
if (ifa->ifa_addr->sa_family == AF_INET) {
struct sockaddr_in* s4 = (struct sockaddr_in*)(ifa->ifa_addr);
CNetAddr addr(s4->sin_addr);
if (AddLocal(addr, LOCAL_IF))
LogPrintf("%s: IPv4 %s: %s\n", __func__, ifa->ifa_name, addr.ToString());
} else if (ifa->ifa_addr->sa_family == AF_INET6) {
struct sockaddr_in6* s6 = (struct sockaddr_in6*)(ifa->ifa_addr);
CNetAddr addr(s6->sin6_addr);
if (AddLocal(addr, LOCAL_IF))
LogPrintf("%s: IPv6 %s: %s\n", __func__, ifa->ifa_name, addr.ToString());
}
}
freeifaddrs(myaddrs);
}
#endif
}
void StartNode(boost::thread_group& threadGroup, CScheduler& scheduler)
{
uiInterface.InitMessage(_("Loading addresses..."));
// Load addresses for peers.dat
int64_t nStart = GetTimeMillis();
{
CAddrDB adb;
if (!adb.Read(addrman))
LogPrintf("Invalid or missing peers.dat; recreating\n");
}
//try to read stored banlist
CBanDB bandb;
banmap_t banmap;
if (!bandb.Read(banmap))
LogPrintf("Invalid or missing banlist.dat; recreating\n");
CNode::SetBanned(banmap); //thread save setter
CNode::SetBannedSetDirty(false); //no need to write down just read or nonexistent data
CNode::SweepBanned(); //sweap out unused entries
// Initialize random numbers. Even when rand() is only usable for trivial use-cases most nodes should have a different
// seed after all the file-IO done at this point. Should be good enough even when nodes are started via scripts.
srand(time(NULL));
LogPrintf("Loaded %i addresses from peers.dat %dms\n",
addrman.size(), GetTimeMillis() - nStart);
fAddressesInitialized = true;
if (semOutbound == NULL) {
// initialize semaphore
int nMaxOutbound = min(MAX_OUTBOUND_CONNECTIONS, nMaxConnections);
semOutbound = new CSemaphore(nMaxOutbound);
}
if (pnodeLocalHost == NULL)
pnodeLocalHost = new CNode(INVALID_SOCKET, CAddress(CService("127.0.0.1", 0), nLocalServices));
Discover(threadGroup);
//
// Start threads
//
if (!GetBoolArg("-dnsseed", true))
LogPrintf("DNS seeding disabled\n");
else
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "dnsseed", &ThreadDNSAddressSeed));
// Map ports with UPnP
MapPort(GetBoolArg("-upnp", DEFAULT_UPNP));
// Send and receive from sockets, accept connections
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "net", &ThreadSocketHandler));
// Initiate outbound connections from -addnode
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "addcon", &ThreadOpenAddedConnections));
// Initiate outbound connections
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "opencon", &ThreadOpenConnections));
// Process messages
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "msghand", &ThreadMessageHandler));
// Dump network addresses
scheduler.scheduleEvery(&DumpData, DUMP_ADDRESSES_INTERVAL);
// ppcoin:mint proof-of-stake blocks in the background
if (GetBoolArg("-staking", false))
threadGroup.create_thread(boost::bind(&TraceThread<void (*)()>, "stakemint", &ThreadStakeMinter));
}
bool StopNode()
{
LogPrintf("StopNode()\n");
MapPort(false);
if (semOutbound)
for (int i = 0; i < MAX_OUTBOUND_CONNECTIONS; i++)
semOutbound->post();
if (fAddressesInitialized) {
DumpData();
fAddressesInitialized = false;
}
return true;
}
class CNetCleanup
{
public:
CNetCleanup() {}
~CNetCleanup()
{
// Close sockets
BOOST_FOREACH (CNode* pnode, vNodes)
if (pnode->hSocket != INVALID_SOCKET)
CloseSocket(pnode->hSocket);
BOOST_FOREACH (ListenSocket& hListenSocket, vhListenSocket)
if (hListenSocket.socket != INVALID_SOCKET)
if (!CloseSocket(hListenSocket.socket))
LogPrintf("CloseSocket(hListenSocket) failed with error %s\n", NetworkErrorString(WSAGetLastError()));
// clean up some globals (to help leak detection)
BOOST_FOREACH (CNode* pnode, vNodes)
delete pnode;
BOOST_FOREACH (CNode* pnode, vNodesDisconnected)
delete pnode;
vNodes.clear();
vNodesDisconnected.clear();
vhListenSocket.clear();
delete semOutbound;
semOutbound = NULL;
delete pnodeLocalHost;
pnodeLocalHost = NULL;
#ifdef WIN32
// Shutdown Windows Sockets
WSACleanup();
#endif
}
} instance_of_cnetcleanup;
void CExplicitNetCleanup::callCleanup()
{
// Explicit call to destructor of CNetCleanup because it's not implicitly called
// when the wallet is restarted from within the wallet itself.
CNetCleanup* tmp = new CNetCleanup();
delete tmp; // Stroustrup's gonna kill me for that
}
void RelayTransaction(const CTransaction& tx)
{
CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
ss.reserve(10000);
ss << tx;
RelayTransaction(tx, ss);
}
void RelayTransaction(const CTransaction& tx, const CDataStream& ss)
{
CInv inv(MSG_TX, tx.GetHash());
{
LOCK(cs_mapRelay);
// Expire old relay messages
while (!vRelayExpiration.empty() && vRelayExpiration.front().first < GetTime()) {
mapRelay.erase(vRelayExpiration.front().second);
vRelayExpiration.pop_front();
}
// Save original serialized message so newer versions are preserved
mapRelay.insert(std::make_pair(inv, ss));
vRelayExpiration.push_back(std::make_pair(GetTime() + 15 * 60, inv));
}
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodes) {
if (!pnode->fRelayTxes)
continue;
LOCK(pnode->cs_filter);
if (pnode->pfilter) {
if (pnode->pfilter->IsRelevantAndUpdate(tx))
pnode->PushInventory(inv);
} else
pnode->PushInventory(inv);
}
}
void RelayTransactionLockReq(const CTransaction& tx, bool relayToAll)
{
CInv inv(MSG_TXLOCK_REQUEST, tx.GetHash());
//broadcast the new lock
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodes) {
if (!relayToAll && !pnode->fRelayTxes)
continue;
pnode->PushMessage("ix", tx);
}
}
void RelayInv(CInv& inv)
{
LOCK(cs_vNodes);
BOOST_FOREACH (CNode* pnode, vNodes){
if((pnode->nServices==NODE_BLOOM_WITHOUT_MN) && inv.IsMasterNodeType())continue;
if (pnode->nVersion >= ActiveProtocol())
pnode->PushInventory(inv);
}
}
void CNode::RecordBytesRecv(uint64_t bytes)
{
LOCK(cs_totalBytesRecv);
nTotalBytesRecv += bytes;
}
void CNode::RecordBytesSent(uint64_t bytes)
{
LOCK(cs_totalBytesSent);
nTotalBytesSent += bytes;
}
uint64_t CNode::GetTotalBytesRecv()
{
LOCK(cs_totalBytesRecv);
return nTotalBytesRecv;
}
uint64_t CNode::GetTotalBytesSent()
{
LOCK(cs_totalBytesSent);
return nTotalBytesSent;
}
void CNode::Fuzz(int nChance)
{
if (!fSuccessfullyConnected) return; // Don't fuzz initial handshake
if (GetRand(nChance) != 0) return; // Fuzz 1 of every nChance messages
switch (GetRand(3)) {
case 0:
// xor a random byte with a random value:
if (!ssSend.empty()) {
CDataStream::size_type pos = GetRand(ssSend.size());
ssSend[pos] ^= (unsigned char)(GetRand(256));
}
break;
case 1:
// delete a random byte:
if (!ssSend.empty()) {
CDataStream::size_type pos = GetRand(ssSend.size());
ssSend.erase(ssSend.begin() + pos);
}
break;
case 2:
// insert a random byte at a random position
{
CDataStream::size_type pos = GetRand(ssSend.size());
char ch = (char)GetRand(256);
ssSend.insert(ssSend.begin() + pos, ch);
}
break;
}
// Chance of more than one change half the time:
// (more changes exponentially less likely):
Fuzz(2);
}
//
// CAddrDB
//
CAddrDB::CAddrDB()
{
pathAddr = GetDataDir() / "peers.dat";
}
bool CAddrDB::Write(const CAddrMan& addr)
{
// Generate random temporary filename
unsigned short randv = 0;
GetRandBytes((unsigned char*)&randv, sizeof(randv));
std::string tmpfn = strprintf("peers.dat.%04x", randv);
// serialize addresses, checksum data up to that point, then append csum
CDataStream ssPeers(SER_DISK, CLIENT_VERSION);
ssPeers << FLATDATA(Params().MessageStart());
ssPeers << addr;
uint256 hash = Hash(ssPeers.begin(), ssPeers.end());
ssPeers << hash;
// open output file, and associate with CAutoFile
boost::filesystem::path pathAddr = GetDataDir() / "peers.dat";
FILE* file = fopen(pathAddr.string().c_str(), "wb");
CAutoFile fileout(file, SER_DISK, CLIENT_VERSION);
if (fileout.IsNull())
return error("%s : Failed to open file %s", __func__, pathAddr.string());
// Write and commit header, data
try {
fileout << ssPeers;
} catch (std::exception& e) {
return error("%s : Serialize or I/O error - %s", __func__, e.what());
}
FileCommit(fileout.Get());
fileout.fclose();
return true;
}
bool CAddrDB::Read(CAddrMan& addr)
{
// open input file, and associate with CAutoFile
FILE* file = fopen(pathAddr.string().c_str(), "rb");
CAutoFile filein(file, SER_DISK, CLIENT_VERSION);
if (filein.IsNull())
return error("%s : Failed to open file %s", __func__, pathAddr.string());
// use file size to size memory buffer
uint64_t fileSize = boost::filesystem::file_size(pathAddr);
uint64_t dataSize = fileSize - sizeof(uint256);
// Don't try to resize to a negative number if file is small
if (fileSize >= sizeof(uint256))
dataSize = fileSize - sizeof(uint256);
vector<unsigned char> vchData;
vchData.resize(dataSize);
uint256 hashIn;
// read data and checksum from file
try {
filein.read((char*)&vchData[0], dataSize);
filein >> hashIn;
} catch (std::exception& e) {
return error("%s : Deserialize or I/O error - %s", __func__, e.what());
}
filein.fclose();
CDataStream ssPeers(vchData, SER_DISK, CLIENT_VERSION);
// verify stored checksum matches input data
uint256 hashTmp = Hash(ssPeers.begin(), ssPeers.end());
if (hashIn != hashTmp)
return error("%s : Checksum mismatch, data corrupted", __func__);
unsigned char pchMsgTmp[4];
try {
// de-serialize file header (network specific magic number) and ..
ssPeers >> FLATDATA(pchMsgTmp);
// ... verify the network matches ours
if (memcmp(pchMsgTmp, Params().MessageStart(), sizeof(pchMsgTmp)))
return error("%s : Invalid network magic number", __func__);
// de-serialize address data into one CAddrMan object
ssPeers >> addr;
} catch (std::exception& e) {
return error("%s : Deserialize or I/O error - %s", __func__, e.what());
}
return true;
}
unsigned int ReceiveFloodSize() { return 1000 * GetArg("-maxreceivebuffer", 5 * 1000); }
unsigned int SendBufferSize() { return 1000 * GetArg("-maxsendbuffer", 1 * 1000); }
CNode::CNode(SOCKET hSocketIn, CAddress addrIn, std::string addrNameIn, bool fInboundIn) : ssSend(SER_NETWORK, INIT_PROTO_VERSION), setAddrKnown(5000)
{
nServices = 0;
hSocket = hSocketIn;
nRecvVersion = INIT_PROTO_VERSION;
nLastSend = 0;
nLastRecv = 0;
nSendBytes = 0;
nRecvBytes = 0;
nTimeConnected = GetTime();
nTimeOffset = 0;
addr = addrIn;
addrName = addrNameIn == "" ? addr.ToStringIPPort() : addrNameIn;
nVersion = 0;
strSubVer = "";
fWhitelisted = false;
fOneShot = false;
fClient = false; // set by version message
fInbound = fInboundIn;
fNetworkNode = false;
fSuccessfullyConnected = false;
fDisconnect = false;
nRefCount = 0;
nSendSize = 0;
nSendOffset = 0;
hashContinue = 0;
nStartingHeight = -1;
fGetAddr = false;
fRelayTxes = false;
setInventoryKnown.max_size(SendBufferSize() / 1000);
pfilter = new CBloomFilter();
nPingNonceSent = 0;
nPingUsecStart = 0;
nPingUsecTime = 0;
fPingQueued = false;
fObfuScationMaster = false;
{
LOCK(cs_nLastNodeId);
id = nLastNodeId++;
}
if (fLogIPs)
LogPrint("net", "Added connection to %s peer=%d\n", addrName, id);
else
LogPrint("net", "Added connection peer=%d\n", id);
// Be shy and don't send version until we hear
if (hSocket != INVALID_SOCKET && !fInbound)
PushVersion();
GetNodeSignals().InitializeNode(GetId(), this);
}
CNode::~CNode()
{
CloseSocket(hSocket);
if (pfilter)
delete pfilter;
GetNodeSignals().FinalizeNode(GetId());
}
void CNode::AskFor(const CInv& inv)
{
if (mapAskFor.size() > MAPASKFOR_MAX_SZ)
return;
// We're using mapAskFor as a priority queue,
// the key is the earliest time the request can be sent
int64_t nRequestTime;
limitedmap<CInv, int64_t>::const_iterator it = mapAlreadyAskedFor.find(inv);
if (it != mapAlreadyAskedFor.end())
nRequestTime = it->second;
else
nRequestTime = 0;
LogPrint("net", "askfor %s %d (%s) peer=%d\n", inv.ToString(), nRequestTime, DateTimeStrFormat("%H:%M:%S", nRequestTime / 1000000), id);
// Make sure not to reuse time indexes to keep things in the same order
int64_t nNow = GetTimeMicros() - 1000000;
static int64_t nLastTime;
++nLastTime;
nNow = std::max(nNow, nLastTime);
nLastTime = nNow;
// Each retry is 2 minutes after the last
nRequestTime = std::max(nRequestTime + 2 * 60 * 1000000, nNow);
if (it != mapAlreadyAskedFor.end())
mapAlreadyAskedFor.update(it, nRequestTime);
else
mapAlreadyAskedFor.insert(std::make_pair(inv, nRequestTime));
mapAskFor.insert(std::make_pair(nRequestTime, inv));
}
void CNode::BeginMessage(const char* pszCommand) EXCLUSIVE_LOCK_FUNCTION(cs_vSend)
{
ENTER_CRITICAL_SECTION(cs_vSend);
assert(ssSend.size() == 0);
ssSend << CMessageHeader(pszCommand, 0);
LogPrint("net", "sending: %s ", SanitizeString(pszCommand));
}
void CNode::AbortMessage() UNLOCK_FUNCTION(cs_vSend)
{
ssSend.clear();
LEAVE_CRITICAL_SECTION(cs_vSend);
LogPrint("net", "(aborted)\n");
}
void CNode::EndMessage() UNLOCK_FUNCTION(cs_vSend)
{
// The -*messagestest options are intentionally not documented in the help message,
// since they are only used during development to debug the networking code and are
// not intended for end-users.
if (mapArgs.count("-dropmessagestest") && GetRand(GetArg("-dropmessagestest", 2)) == 0) {
LogPrint("net", "dropmessages DROPPING SEND MESSAGE\n");
AbortMessage();
return;
}
if (mapArgs.count("-fuzzmessagestest"))
Fuzz(GetArg("-fuzzmessagestest", 10));
if (ssSend.size() == 0) {
LEAVE_CRITICAL_SECTION(cs_vSend);
return;
}
// Set the size
unsigned int nSize = ssSend.size() - CMessageHeader::HEADER_SIZE;
memcpy((char*)&ssSend[CMessageHeader::MESSAGE_SIZE_OFFSET], &nSize, sizeof(nSize));
// Set the checksum
uint256 hash = Hash(ssSend.begin() + CMessageHeader::HEADER_SIZE, ssSend.end());
unsigned int nChecksum = 0;
memcpy(&nChecksum, &hash, sizeof(nChecksum));
assert(ssSend.size() >= CMessageHeader::CHECKSUM_OFFSET + sizeof(nChecksum));
memcpy((char*)&ssSend[CMessageHeader::CHECKSUM_OFFSET], &nChecksum, sizeof(nChecksum));
LogPrint("net", "(%d bytes) peer=%d\n", nSize, id);
std::deque<CSerializeData>::iterator it = vSendMsg.insert(vSendMsg.end(), CSerializeData());
ssSend.GetAndClear(*it);
nSendSize += (*it).size();
// If write queue empty, attempt "optimistic write"
if (it == vSendMsg.begin())
SocketSendData(this);
LEAVE_CRITICAL_SECTION(cs_vSend);
}
//
// CBanDB
//
CBanDB::CBanDB()
{
pathBanlist = GetDataDir() / "banlist.dat";
}
bool CBanDB::Write(const banmap_t& banSet)
{
// Generate random temporary filename
unsigned short randv = 0;
GetRandBytes((unsigned char*)&randv, sizeof(randv));
std::string tmpfn = strprintf("banlist.dat.%04x", randv);
// serialize banlist, checksum data up to that point, then append csum
CDataStream ssBanlist(SER_DISK, CLIENT_VERSION);
ssBanlist << FLATDATA(Params().MessageStart());
ssBanlist << banSet;
uint256 hash = Hash(ssBanlist.begin(), ssBanlist.end());
ssBanlist << hash;
// open temp output file, and associate with CAutoFile
boost::filesystem::path pathTmp = GetDataDir() / tmpfn;
FILE *file = fopen(pathTmp.string().c_str(), "wb");
CAutoFile fileout(file, SER_DISK, CLIENT_VERSION);
if (fileout.IsNull())
return error("%s: Failed to open file %s", __func__, pathTmp.string());
// Write and commit header, data
try {
fileout << ssBanlist;
}
catch (const std::exception& e) {
return error("%s: Serialize or I/O error - %s", __func__, e.what());
}
FileCommit(fileout.Get());
fileout.fclose();
// replace existing banlist.dat, if any, with new banlist.dat.XXXX
if (!RenameOver(pathTmp, pathBanlist))
return error("%s: Rename-into-place failed", __func__);
return true;
}
bool CBanDB::Read(banmap_t& banSet)
{
// open input file, and associate with CAutoFile
FILE *file = fopen(pathBanlist.string().c_str(), "rb");
CAutoFile filein(file, SER_DISK, CLIENT_VERSION);
if (filein.IsNull())
return error("%s: Failed to open file %s", __func__, pathBanlist.string());
// use file size to size memory buffer
uint64_t fileSize = boost::filesystem::file_size(pathBanlist);
uint64_t dataSize = 0;
// Don't try to resize to a negative number if file is small
if (fileSize >= sizeof(uint256))
dataSize = fileSize - sizeof(uint256);
vector<unsigned char> vchData;
vchData.resize(dataSize);
uint256 hashIn;
// read data and checksum from file
try {
filein.read((char *)&vchData[0], dataSize);
filein >> hashIn;
}
catch (const std::exception& e) {
return error("%s: Deserialize or I/O error - %s", __func__, e.what());
}
filein.fclose();
CDataStream ssBanlist(vchData, SER_DISK, CLIENT_VERSION);
// verify stored checksum matches input data
uint256 hashTmp = Hash(ssBanlist.begin(), ssBanlist.end());
if (hashIn != hashTmp)
return error("%s: Checksum mismatch, data corrupted", __func__);
unsigned char pchMsgTmp[4];
try {
// de-serialize file header (network specific magic number) and ..
ssBanlist >> FLATDATA(pchMsgTmp);
// ... verify the network matches ours
if (memcmp(pchMsgTmp, Params().MessageStart(), sizeof(pchMsgTmp)))
return error("%s: Invalid network magic number", __func__);
// de-serialize address data into one CAddrMan object
ssBanlist >> banSet;
}
catch (const std::exception& e) {
return error("%s: Deserialize or I/O error - %s", __func__, e.what());
}
return true;
}
void DumpBanlist()
{
CNode::SweepBanned(); // clean unused entries (if bantime has expired)
if (!CNode::BannedSetIsDirty())
return;
int64_t nStart = GetTimeMillis();
CBanDB bandb;
banmap_t banmap;
CNode::GetBanned(banmap);
if (bandb.Write(banmap)) {
CNode::SetBannedSetDirty(false);
}
LogPrint("net", "Flushed %d banned node ips/subnets to banlist.dat %dms\n",
banmap.size(), GetTimeMillis() - nStart);
}
| [
"support@newcashbackcoin.com"
] | support@newcashbackcoin.com |
dbdbeaf8b9f4a10f00cd0c9ecc46aad6b870a86e | 67563a4436b914654dd441eb2e1915bbd41aa8ca | /Engine/sdk/include/MPEffectAsmMath.h | b246d73650a3afd43786bb017e8c0a5d0968a292 | [
"Apache-2.0"
] | permissive | PKO-Community-Sources/ClientSide-Sources | 1cab923af538ffe9d9cb9154b14dd3e0a903ca14 | ddbcd293d6ef3f58ff02290c02382cbb7e0939a2 | refs/heads/main | 2023-05-13T00:15:04.162386 | 2021-06-02T15:35:36 | 2021-06-02T15:35:36 | 372,753,278 | 3 | 0 | Apache-2.0 | 2021-06-02T15:26:17 | 2021-06-01T08:17:07 | C++ | GB18030 | C++ | false | false | 804 | h | #ifndef MPEffectAsmMath_H
#define MPEffectAsmMath_H
#include <stdlib.h>
/* rand()能返回的最大值. */
#define RAND_MAX 0x7fff
// 返回一个随机数
__forceinline float asm_rand()
{
#if 0
#if _MSC_VER >= 1300
static unsigned __int64 q = time( NULL );
_asm {
movq mm0, q
// do the magic MMX thing
pshufw mm1, mm0, 0x1E
paddd mm0, mm1
// move to integer memory location and free MMX
movq q, mm0
emms
}
return float( q );
#endif
#else
// VC6 不支持 pshufw
return float( rand() );
#endif
}
// 返回最大的随机数
__forceinline float asm_rand_max()
{
#if 0
#if _MSC_VER >= 1300
return std::numeric_limits< unsigned __int64 >::max();
return 9223372036854775807.0f;
#endif
#else
// VC6 不支持 unsigned __int64
return float( RAND_MAX );
#endif
}
#endif | [
"businessyagura2k@gmail.com"
] | businessyagura2k@gmail.com |
6d0b25995efe64c0aa0a434ed15f751876313faf | 9a767d11789cdba4452014d8f8019e6d781aef8d | /SourceCode/SourceCode_New/Compiler_Project_1/Disassemble.h | 9926d75d27e4382c88200ec0040c7404b404cdec | [] | no_license | hadialaeiyan/AIFAZZY | c3381ea4ed947f46cf47477e5b5716561ebcebdb | 906b04ebcbc386d64c592e7db94aeabf38f50410 | refs/heads/master | 2021-01-02T08:14:06.613449 | 2013-10-14T06:08:24 | 2013-10-14T06:08:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,286 | h | #include <string>
#define BEA_ENGINE_STATIC
#define BEA_USE_STDCALL
#include ".\HEADERS\BeaEngine.h"
class Instruction
{
public:
DISASM DisAsm;
char Original_opcode[100];
Instruction* next;
Instruction(DISASM DisAsm_arg,char* opcode_arg)
{
DisAsm=DisAsm_arg;
int counter=0;
while(opcode_arg[counter]!=NULL)
{
Original_opcode[counter]=opcode_arg[counter];
counter++;
}
Original_opcode[counter]=NULL;
next=NULL;
}
};
class DisAssemble
{
Instruction* first;
public:
DisAssemble()
{
first=NULL;
}
bool IsEmpty()
{
return first==NULL?true:false;
}
void Insert_Instruction(DISASM DisAsm_arg,char* opcode_arg)
{
Instruction* new_instruction=new Instruction(DisAsm_arg,opcode_arg);
if(first==NULL)
first=new_instruction;
else
{
Instruction* q=first;
while(q->next!=NULL)
q=q->next;
q->next=new_instruction;
}
}
Instruction get(int Instruction_Number)
{
int counter=1;
Instruction* getted_instruction=first;
while(counter<Instruction_Number && getted_instruction!=NULL)
{
getted_instruction=getted_instruction->next;
counter++;
}
return *getted_instruction;
}
int Count_Instructions()
{
Instruction* q=first;
int counter=0;
while(q!=NULL)
{
counter++;
q=q->next;
}
return counter;
}
}; | [
"hadi.alaeiyan@gmail.com"
] | hadi.alaeiyan@gmail.com |
de377a790efed544b99a2d2a4ad8aba9595d06b1 | fb009de98338da600fc8eec9ab86a6dffcbd134f | /atom/browser/api/atom_api_extension.cc | 4406589d11fad771da1c5b3cc82fb291f5debcdd | [
"MIT"
] | permissive | ayumi/electron | 55ce7aa88b6f3c7644a39772ef2e2dd5418493b1 | b2a393aba0ab4218879bd26e10235e8834653301 | refs/heads/master | 2021-01-14T14:32:19.062695 | 2016-08-13T02:46:58 | 2016-08-13T02:46:58 | 65,602,215 | 0 | 0 | null | 2016-08-13T06:06:12 | 2016-08-13T06:06:12 | null | UTF-8 | C++ | false | false | 9,674 | cc | // Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#include "atom/browser/api/atom_api_extension.h"
#include <string>
#include <vector>
#include "atom/browser/api/atom_api_web_contents.h"
#include "atom/browser/extensions/atom_notification_types.h"
#include "atom/browser/extensions/tab_helper.h"
#include "atom/common/native_mate_converters/file_path_converter.h"
#include "atom/common/native_mate_converters/string16_converter.h"
#include "atom/common/native_mate_converters/value_converter.h"
#include "atom/common/node_includes.h"
#include "base/files/file_path.h"
#include "components/prefs/pref_service.h"
#include "base/strings/string_util.h"
#include "components/user_prefs/user_prefs.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/url_constants.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/notification_types.h"
#include "extensions/common/extension.h"
#include "extensions/common/file_util.h"
#include "extensions/common/manifest_handlers/background_info.h"
#include "extensions/common/one_shot_event.h"
#include "native_mate/converter.h"
#include "native_mate/dictionary.h"
namespace mate {
template<>
struct Converter<extensions::Manifest::Location> {
static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val,
extensions::Manifest::Location* out) {
std::string type;
if (!ConvertFromV8(isolate, val, &type))
return false;
if (type == "internal")
*out = extensions::Manifest::Location::INTERNAL;
else if (type == "external_pref")
*out = extensions::Manifest::Location::EXTERNAL_PREF;
else if (type == "external_registry")
*out = extensions::Manifest::Location::EXTERNAL_REGISTRY;
else if (type == "unpacked")
*out = extensions::Manifest::Location::UNPACKED;
else if (type == "component")
*out = extensions::Manifest::Location::COMPONENT;
else if (type == "external_pref_download")
*out = extensions::Manifest::Location::EXTERNAL_PREF_DOWNLOAD;
else if (type == "external_policy_download")
*out = extensions::Manifest::Location::EXTERNAL_POLICY_DOWNLOAD;
else if (type == "command_line")
*out = extensions::Manifest::Location::COMMAND_LINE;
else if (type == "external_policy")
*out = extensions::Manifest::Location::EXTERNAL_POLICY;
else if (type == "external_component")
*out = extensions::Manifest::Location::EXTERNAL_COMPONENT;
else
*out = extensions::Manifest::Location::INVALID_LOCATION;
return true;
}
};
} // namespace mate
namespace {
scoped_refptr<extensions::Extension> LoadExtension(const base::FilePath& path,
const base::DictionaryValue& manifest,
const extensions::Manifest::Location& manifest_location,
int flags,
std::string* error) {
scoped_refptr<extensions::Extension> extension(extensions::Extension::Create(
path, manifest_location, manifest, flags, error));
if (!extension.get())
return NULL;
std::vector<extensions::InstallWarning> warnings;
if (!extensions::file_util::ValidateExtension(extension.get(),
error,
&warnings))
return NULL;
extension->AddInstallWarnings(warnings);
return extension;
}
} // namespace
namespace atom {
namespace api {
Extension::Extension() {
registrar_.Add(this,
extensions::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
content::NotificationService::AllBrowserContextsAndSources());
}
Extension::~Extension() {}
void Extension::Observe(
int type, const content::NotificationSource& source,
const content::NotificationDetails& details) {
switch (type) {
case extensions::NOTIFICATION_EXTENSION_LOADED_DEPRECATED: {
extensions::Extension* extension =
content::Details<extensions::Extension>(details).ptr();
extensions_.Insert(extension);
}
}
}
// static
Extension* Extension::GetInstance() {
return base::Singleton<Extension>::get();
}
// static
mate::Dictionary Extension::Load(
v8::Isolate* isolate,
const base::FilePath& path,
const base::DictionaryValue& manifest,
const extensions::Manifest::Location& manifest_location,
int flags) {
std::string error;
scoped_refptr<extensions::Extension> extension;
if (manifest.empty()) {
extension = extensions::file_util::LoadExtension(path,
manifest_location,
flags,
&error);
} else {
extension = LoadExtension(path,
manifest,
manifest_location,
flags,
&error);
}
mate::Dictionary install_info = mate::Dictionary::CreateEmpty(isolate);
if (error.empty()) {
Install(extension);
install_info.Set("name", extension->non_localized_name());
install_info.Set("id", extension->id());
install_info.Set("url", extension->url().spec());
install_info.Set("path", extension->path());
install_info.Set("version", extension->VersionString());
install_info.Set("description", extension->description());
} else {
install_info.Set("error", error);
}
return install_info;
}
// static
void Extension::Install(
const scoped_refptr<const extensions::Extension>& extension) {
if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI))
content::BrowserThread::PostTask(
content::BrowserThread::UI, FROM_HERE,
base::Bind(Install, extension));
content::NotificationService::current()->Notify(
extensions::NOTIFICATION_CRX_INSTALLER_DONE,
content::Source<Extension>(GetInstance()),
content::Details<const extensions::Extension>(extension.get()));
}
// static
void Extension::Disable(const std::string& extension_id) {
if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI))
content::BrowserThread::PostTask(
content::BrowserThread::UI, FROM_HERE,
base::Bind(Disable, extension_id));
const extensions::Extension* extension =
GetInstance()->extensions_.GetByID(extension_id);
if (!extension)
return;
content::NotificationService::current()->Notify(
atom::NOTIFICATION_DISABLE_USER_EXTENSION_REQUEST,
content::Source<Extension>(GetInstance()),
content::Details<const extensions::Extension>(extension));
}
// static
void Extension::Enable(const std::string& extension_id) {
if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::UI))
content::BrowserThread::PostTask(
content::BrowserThread::UI, FROM_HERE,
base::Bind(Enable, extension_id));
const extensions::Extension* extension =
GetInstance()->extensions_.GetByID(extension_id);
if (!extension)
return;
content::NotificationService::current()->Notify(
atom::NOTIFICATION_ENABLE_USER_EXTENSION_REQUEST,
content::Source<Extension>(GetInstance()),
content::Details<const extensions::Extension>(extension));
}
// static
bool Extension::IsBackgroundPageUrl(GURL url,
content::BrowserContext* browser_context) {
if (url.scheme() != "chrome-extension")
return false;
if (extensions::ExtensionSystem::Get(browser_context)
->ready().is_signaled()) {
const extensions::Extension* extension =
extensions::ExtensionRegistry::Get(browser_context)->
enabled_extensions().GetExtensionOrAppByURL(url);
if (extension &&
url == extensions::BackgroundInfo::GetBackgroundURL(extension))
return true;
}
return false;
}
// static
bool Extension::IsBackgroundPageWebContents(
content::WebContents* web_contents) {
auto browser_context = web_contents->GetBrowserContext();
auto url = web_contents->GetURL();
return IsBackgroundPageUrl(url, browser_context);
}
// static
bool Extension::IsBackgroundPage(const WebContents* web_contents) {
return IsBackgroundPageWebContents(web_contents->web_contents());
}
// static
v8::Local<v8::Value> Extension::TabValue(v8::Isolate* isolate,
WebContents* web_contents) {
std::unique_ptr<base::DictionaryValue> value(
extensions::TabHelper::CreateTabValue(web_contents->web_contents()));
return mate::ConvertToV8(isolate, *value);
}
// static
bool Extension::HandleURLOverride(GURL* url,
content::BrowserContext* browser_context) {
return false;
}
bool Extension::HandleURLOverrideReverse(GURL* url,
content::BrowserContext* browser_context) {
return false;
}
} // namespace api
} // namespace atom
namespace {
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
v8::Local<v8::Context> context, void* priv) {
v8::Isolate* isolate = context->GetIsolate();
mate::Dictionary dict(isolate, exports);
dict.SetMethod("load", &atom::api::Extension::Load);
dict.SetMethod("disable", &atom::api::Extension::Disable);
dict.SetMethod("enable", &atom::api::Extension::Enable);
dict.SetMethod("tabValue", &atom::api::Extension::TabValue);
dict.SetMethod("isBackgroundPage", &atom::api::Extension::IsBackgroundPage);
}
} // namespace
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_extension, Initialize)
| [
"github@brianjohnson.cc"
] | github@brianjohnson.cc |
289b4814afcd682dad76fd2cefc06a00f3a7a9aa | a0875906796263930a5769eaa68ca4cc3530a663 | /include/hive/ws13.hpp | 6e2784c801464cc083ecf960df70f241ca97539b | [
"MIT"
] | permissive | albedium/devicehive-cpp | 4663bbec2b42a68f1bfa63d2b267e24ce20ad95f | 4ee2a1ab1a5ebd38d8cd4e209e3ae14fce554459 | refs/heads/master | 2021-01-20T23:47:40.078818 | 2014-04-14T09:01:50 | 2014-04-14T09:01:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 41,180 | hpp | /** @file
@brief The WebSocket classes.
@author Sergey Polichnoy <sergey.polichnoy@dataart.com>
The protocol version is 13.
@see @ref page_hive_http
@see @ref page_hive_ws13
@see [RFC6455](http://tools.ietf.org/html/rfc6455)
*/
#ifndef __HIVE_WS13_HPP_
#define __HIVE_WS13_HPP_
#include "http.hpp"
#include "bin.hpp"
//#include <boost/random/mersenne_twister.hpp>
#include <boost/uuid/sha1.hpp>
namespace hive
{
/// @brief The WebSocket module.
/**
This namespace contains classes and functions
related to WebSocket communication.
*/
namespace ws13
{
/// @brief The UUID used to indicate WebSocket protocol.
const char KEY_UUID[] = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
/// @brief The protocol version.
const char VERSION[] = "13";
/// @brief The upgrade name.
const char NAME[] = "websocket";
/// @brief The WebSocket headers.
/**
This namespace contains definition of common WebSocket headers.
*/
namespace header
{
const char Accept[] = "Sec-WebSocket-Accept"; ///< @hideinitializer @brief The "Sec-WebSocket-Accept" header name.
const char Extensions[] = "Sec-WebSocket-Extensions"; ///< @hideinitializer @brief The "Sec-WebSocket-Extensions" header name.
const char Protocol[] = "Sec-WebSocket-Protocol"; ///< @hideinitializer @brief The "Sec-WebSocket-Protocol" header name.
const char Version[] = "Sec-WebSocket-Version"; ///< @hideinitializer @brief The "Sec-WebSocket-Version" header name.
const char Key[] = "Sec-WebSocket-Key"; ///< @hideinitializer @brief The "Sec-WebSocket-Key" header name.
} // header namespace
/// @brief The octet string.
/**
Elements of this string should be interpreted as octets not as characters.
*/
typedef String OctetString;
/// @brief The custom message.
/**
The message could be fragmented into multiple frames.
*/
class Message
{
protected:
/// @brief The main constructor.
/**
@param[in] data The message payload data.
@param[in] isText The "text" indicator.
*/
explicit Message(OctetString const& data, bool isText)
: m_data(data) , m_isText(isText)
{}
public:
/// @brief The shared pointer type.
typedef boost::shared_ptr<Message> SharedPtr;
/// @brief The factory method.
/**
@param[in] data The message payload data.
@param[in] isText The "text" indicator.
`true` for text data, `false` for binary data.
@return The new message instance.
*/
static SharedPtr create(OctetString const& data, bool isText = true)
{
return SharedPtr(new Message(data, isText));
}
public:
/// @brief Append data to the end of message.
/**
@param[in] data The data to append.
@return Self reference.
*/
Message& appendData(OctetString const& data)
{
m_data.append(data);
return *this;
}
public:
/// @brief Get the data.
/**
@return The text or binary octet string.
*/
OctetString const& getData() const
{
return m_data;
}
/// @brief Get the "text" indicator.
/**
@return `true` for text data, `false` for binary.
*/
bool isText() const
{
return m_isText;
}
private:
OctetString m_data; ///< @brief The data payload.
bool m_isText; ///< @brief The "text" indicator.
};
/// @brief The WebSocket frame.
/**
This class contains full formated frame:
| field | size in bytes |
|-----------|---------------|
| control | 1 |
| length | 1 or 3 or 9 |
| mask | 0 or 4 |
| payload | N |
The empty frame doesn't contain any data.
The following non-control payloads may be used:
- Continue
- Text
- Binary
as well as control payloads:
- Close
- Ping
- Pong
*/
class Frame:
public bin::FrameContent
{
public:
/// @brief The frame opcodes.
enum Opcode
{
// non-control frames
FRAME_CONTINUE = 0x00, ///< @brief The *CONTINUE* frame opcode.
FRAME_TEXT = 0x01, ///< @brief The *TEXT* frame opcode.
FRAME_BINARY = 0x02, ///< @brief The *BINARY* frame opcode.
// control frames
FRAME_CLOSE = 0x08, ///< @brief The *CLOSE* frame opcode.
FRAME_PING = 0x09, ///< @brief The *PING* frame opcode.
FRAME_PONG = 0x0A ///< @brief The *PONG* frame opcode.
};
public: // payloads
class Payload;
class Continue;
class Text;
class Binary;
class Close;
class Ping;
class Pong;
protected:
/// @brief The default constructor.
/**
Constructs the empty frame.
*/
Frame()
{}
public:
/// @brief The shared pointer type.
typedef boost::shared_ptr<Frame> SharedPtr;
/// @brief Construct the frame from the payload.
/**
@param[in] payload The data payload.
Should be valid payload with `format()` method.
@param[in] masking The masking flag.
@param[in] mask The masking key. Ignored if @a masking is `false`.
@param[in] FIN The last frame indicator. `true` for the last frame.
@param[in] flags The 3 reserved bits.
@return The new frame instance.
*/
template<typename PayloadT>
static SharedPtr create(PayloadT const& payload, bool masking,
UInt32 mask = 0, bool FIN = true, int flags = 0)
{
OStringStream oss;
bin::OStream bs(oss);
payload.format(bs);
SharedPtr pthis(new Frame());
pthis->init(oss.str(), PayloadT::OPCODE,
masking, mask, FIN, flags);
return pthis;
}
public:
/// @brief Parse the payload from the frame.
/**
The provided argument should support the `parse()` method.
@param[out] payload The frame data payload to parse.
@return `true` if data payload successfully parsed.
*/
template<typename PayloadT>
bool getPayload(PayloadT & payload) const
{
if (2 <= m_content.size())
{
OctetString frame(m_content.begin(), m_content.end());
IStringStream iss(frame);
bin::IStream bs(iss);
const int f_ctl = bs.getUInt8();
const int f_len = bs.getUInt8();
const bool masking = (f_len&0x80) != 0;
const int opcode = f_ctl&0x0F;
(void)opcode; // mark as used
assert(opcode == PayloadT::OPCODE
&& "invalid payload opcode");
size_t len = f_len&0x7F;
if (127 == len) // UInt64
len = (size_t)bs.getUInt64BE();
else if (126 == len) // UInt16
len = bs.getUInt16BE();
if (masking)
{
const UInt32 mask = bs.getUInt32BE();
const size_t offset = (size_t)iss.tellg();
for (size_t i = 0; i < len; ++i)
{
const size_t k = (3 - (i%4));
const UInt8 M = mask >> (k*8);
frame[offset+i] ^= M;
}
// re-init input stream
IStringStream iss(frame);
bin::IStream bs(iss);
iss.seekg(offset);
return payload.parse(bs);
}
else
return payload.parse(bs);
}
return false; // empty
}
public:
/// @brief Get the frame opcode.
/**
@return The frame opcode or `-1` if it's unknown.
*/
int getOpcode() const
{
if (1 <= m_content.size())
{
const int f_ctl = UInt8(m_content[0]);
return f_ctl&0x0F;
}
return -1; // unknown
}
/// @brief Get the frame FIN flag.
/**
@return The frame FIN flag.
`-1` for empty frame.
*/
int getFIN() const
{
if (1 <= m_content.size())
{
const int f_ctl = UInt8(m_content[0]);
return (f_ctl>>7) != 0;
}
return -1; // unknown
}
/// @brief Get the frame flags.
/**
@return The frame flags. 3 bits.
`-1` for empty frame.
*/
int getFlags() const
{
if (1 <= m_content.size())
{
const int f_ctl = UInt8(m_content[0]);
return (f_ctl>>4)&0x07;
}
return -1; // unknown
}
public:
///@brief The frame parse result.
enum ParseResult
{
RESULT_SUCCESS, ///< @brief Frame succcessfully parsed.
RESULT_INCOMPLETE ///< @brief Need more data.
};
/// @brief Assign the frame content.
/**
This method assigns the frame content.
@param[in] first The begin of input data.
@param[in] last The end of input data.
@param[out] n_skip The number of bytes processed.
@param[out] result The parse result. May be NULL.
@return Parsed frame or NULL.
*/
template<typename In>
static SharedPtr parseFrame(In first, In last, size_t &n_skip, ParseResult *result)
{
ParseResult res = RESULT_INCOMPLETE;
SharedPtr frame; // no frame
const size_t buf_len = std::distance(first, last);
if (2 <= buf_len) // can parse header
{
const In s_first = first;
const int f_ctl = UInt8(*first++);
const int f_len = UInt8(*first++);
const bool masking = (f_len&0x80) != 0;
size_t h_len = 2 + (masking?4:0); // header length
size_t len = f_len&0x7F; // payload length
(void)f_ctl; // mark as used
if (127 == len) // UInt64 length
{
if (2+8 <= buf_len)
{
UInt64 len_ex = UInt8(*first++); // MSB-first
len_ex = (len_ex<<8) | UInt8(*first++);
len_ex = (len_ex<<8) | UInt8(*first++);
len_ex = (len_ex<<8) | UInt8(*first++);
len_ex = (len_ex<<8) | UInt8(*first++);
len_ex = (len_ex<<8) | UInt8(*first++);
len_ex = (len_ex<<8) | UInt8(*first++);
len_ex = (len_ex<<8) | UInt8(*first++);
len = size_t(len_ex);
if (UInt64(len) != len_ex) // TODO: limit the frame size
throw std::runtime_error("frame too big");
h_len += 8;
}
else
len = buf_len; // mark as incomplete
}
else if (126 == len) // UInt16 length
{
if (2+2 <= buf_len)
{
UInt16 len_ex = UInt8(*first++); // MSB-first
len_ex = (len_ex<<8) | UInt8(*first++);
len = len_ex;
h_len += 2;
}
else
len = buf_len; // mark as incomplete
}
if (h_len+len <= buf_len) // can parse whole frame
{
// assign the frame content
frame.reset(new Frame());
frame->m_content.assign(s_first,
s_first + (h_len+len));
n_skip += (h_len+len);
res = RESULT_SUCCESS;
}
//else incomplete
}
// else incomplete
if (result)
*result = res;
return frame;
}
/// @brief Assign the frame content from stream buffer.
/**
This method searches frame signature, veryfies the checksum
and assigns the frame content.
@param[in,out] sb The input data buffer.
@param[out] result The parse result. May be NULL.
@return Parsed frame or NULL.
*/
static SharedPtr parseFrame(boost::asio::streambuf & sb, ParseResult *result)
{
size_t n_skip = 0; // number of bytes to skip
const boost::asio::streambuf::const_buffers_type bufs = sb.data();
SharedPtr frame = parseFrame(boost::asio::buffers_begin(bufs),
boost::asio::buffers_end(bufs), n_skip, result);
sb.consume(n_skip);
return frame;
}
protected:
/// @brief Initialize frame content from payload data.
/**
@param[in] payload The frame payload data.
@param[in] opcode The frame opcode.
@param[in] masking The masking flag.
@param[in] mask The masking key.
@param[in] FIN The FIN flag.
@param[in] flags The reserved flags (3 bits).
*/
void init(OctetString const& payload, int opcode,
bool masking, UInt32 mask, bool FIN, int flags)
{
boost::asio::streambuf sbuf;
OStream os(&sbuf);
bin::OStream bs(os);
const size_t len = payload.size();
// frame control field
bs.putUInt8(((FIN?1:0)<<7) | ((flags&0x07)<<4) | (opcode&0x0F));
// frame length field
if (len < 126) // simple length
{
bs.putUInt8(((masking?1:0)<<7) | len);
}
else if (len < 64*1024) // 2 extended bytes
{
bs.putUInt8(((masking?1:0)<<7) | 126);
bs.putUInt16BE(len);
}
else // 8 extended bytes
{
bs.putUInt8(((masking?1:0)<<7) | 127);
bs.putUInt64BE(len);
}
if (masking)
{
bs.putUInt32BE(mask);
// mask the payload
for (size_t i = 0; i < len; ++i)
{
const size_t k = (3 - (i%4));
const UInt8 M = mask >> (k*8);
bs.putUInt8(payload[i] ^ M);
}
}
else
{
// do not mask the payload, just copy
bs.putBuffer(payload.data(), payload.size());
}
boost::asio::streambuf::const_buffers_type buf = sbuf.data();
m_content.assign(boost::asio::buffers_begin(buf),
boost::asio::buffers_end(buf));
}
};
/// @brief The empty payload.
/**
This is base class for all frame payloads.
*/
class Frame::Payload
{
public:
/// @brief The default constructor.
Payload()
{}
public:
/// @brief Format the payload.
/**
@param[in,out] bs The output binary stream.
*/
void format(bin::OStream & bs) const
{}
/// @brief Parse the payload.
/**
@param[in,out] bs The input binary stream.
@return `true` if successfully parsed.
*/
bool parse(bin::IStream & bs)
{
return true;
}
protected:
/// @brief Get all remaining data.
/**
This method reads the data till the end of stream.
@param[in,out] bs The input binary stream.
@return The parsed data.
*/
static OctetString getAll(bin::IStream & bs)
{
OStringStream oss;
oss << bs.getStream().rdbuf();
return oss.str();
}
};
/// @brief The Continue frame payload.
/**
This payload is used as *CONTINUE* i.e. *non-first* frame
for fragmented messages (both *TEXT* and *BINARY*).
*/
class Frame::Continue:
public Frame::Payload
{
public:
enum
{
/// @brief The opcode identifier.
OPCODE = Frame::FRAME_CONTINUE
};
public:
OctetString data; ///< @brief The custom data.
public:
/// @brief The main/default constructor.
/**
@param[in] data_ The custom data.
*/
explicit Continue(OctetString data_ = OctetString())
: data(data_)
{}
public:
/// @copydoc Frame::Payload::format()
void format(bin::OStream & bs) const
{
bs.putBuffer(data.data(),
data.size());
}
/// @copydoc Frame::Payload::parse()
bool parse(bin::IStream & bs)
{
data = getAll(bs);
return true;
}
};
/// @brief The *TEXT* frame payload.
/**
This payload is used for *TEXT* frames.
*/
class Frame::Text:
public Frame::Payload
{
public:
enum
{
/// @brief The opcode identifier.
OPCODE = Frame::FRAME_TEXT
};
public:
String text; ///< @brief The text (UTF-8).
public:
/// @brief The main/default constructor.
/**
@param[in] text_ The text.
*/
explicit Text(String text_ = String())
: text(text_)
{}
public:
/// @copydoc Frame::Payload::format()
void format(bin::OStream & bs) const
{
bs.putBuffer(text.data(),
text.size());
}
/// @copydoc Frame::Payload::parse()
bool parse(bin::IStream & bs)
{
text = getAll(bs);
return true;
}
};
/// @brief The *BINARY* frame payload.
/**
This payload is used for *BINARY* frames.
*/
class Frame::Binary:
public Frame::Payload
{
public:
enum
{
/// @brief The opcode identifier.
OPCODE = Frame::FRAME_BINARY
};
public:
OctetString data; ///< @brief The custom data.
public:
/// @brief The main/default constructor.
/**
@param[in] data_ The custom data.
*/
explicit Binary(OctetString data_ = OctetString())
: data(data_)
{}
public:
/// @copydoc Frame::Payload::format()
void format(bin::OStream & bs) const
{
bs.putBuffer(data.data(),
data.size());
}
/// @copydoc Frame::Payload::parse()
bool parse(bin::IStream & bs)
{
data = getAll(bs);
return true;
}
};
/// @brief The *CLOSE* frame payload.
/**
This payload is used to indicate connection closure.
*/
class Frame::Close:
public Frame::Payload
{
public:
enum
{
/// @brief The opcode identifier.
OPCODE = Frame::FRAME_CLOSE
};
/// @brief The status codes.
enum StatusCode
{
/// @brief Indicates a normal closure.
STATUS_NORMAL = 1000,
/// @brief Indicates that an endpoint is "going away".
STATUS_GOING_AWAY = 1001,
/// @brief Indicates that an endpoint is terminating the connection
/// due to a protocol error.
STATUS_PROTOCOL_ERROR = 1002,
/// @brief Indicates that an endpoint is terminating the connection
/// because it has received a type of data it cannot accept.
STATUS_UNEXPECTED_DATA = 1003,
/// @brief Indicates that an endpoint is terminating the connection
/// because it has received data within a message that was
/// not consistent with the type of the message.
STATUS_INVALID_DATA = 1007,
/// @brief Indicates that an endpoint is terminating the connection
/// because it has received a message that is too big for it to process.
STATUS_MESSAGE_TOO_BIG = 1009,
/// @brief Indicates that an endpoint (client) is terminating the
/// connection because it has expected the server to negotiate one
/// or more extension.
STATUS_NO_EXTENSION = 1010,
/// @brief Indicates that a server is terminating the connection because
/// it encountered an unexpected condition that prevented it from
/// fulfilling the request.
STATUS_UNEXPECTED_COND = 1011
};
public:
UInt16 statusCode; ///< @brief The optional status code.
String reason; ///< @brief The optional reason phrase.
public:
/// @brief The main/default constructor.
/**
@param[in] statusCode_ The status code.
@param[in] reason_ The reason phrase.
*/
explicit Close(UInt16 statusCode_ = STATUS_NORMAL, String reason_ = String())
: statusCode(statusCode_), reason(reason_)
{}
public:
/// @copydoc Frame::Payload::format()
void format(bin::OStream & bs) const
{
bs.putUInt16BE(statusCode);
bs.putBuffer(reason.data(),
reason.size());
}
/// @copydoc Frame::Payload::parse()
bool parse(bin::IStream & bs)
{
statusCode = bs.getUInt16BE(); // optional
reason = getAll(bs); // up to end
return true;
}
};
/// @brief The *PING* frame payload.
/**
This payload is used to theck if peer is alive.
*/
class Frame::Ping:
public Frame::Payload
{
public:
enum
{
/// @brief The opcode identifier.
OPCODE = Frame::FRAME_PING
};
public:
OctetString data; ///< @brief The application data.
public:
/// @brief The main/default constructor.
/**
@param[in] data_ The application data.
*/
explicit Ping(OctetString data_ = OctetString())
: data(data_)
{}
public:
/// @copydoc Frame::Payload::format()
void format(bin::OStream & bs) const
{
bs.putBuffer(data.data(),
data.size());
}
/// @copydoc Frame::Payload::parse()
bool parse(bin::IStream & bs)
{
data = getAll(bs); // up to end
return true;
}
};
/// @brief The *PONG* frame payload.
/**
This payload could be used as a response to the *PING* request
or as a standalone *heartbeat* message.
*/
class Frame::Pong:
public Frame::Payload
{
public:
enum
{
/// @brief The opcode identifier.
OPCODE = Frame::FRAME_PONG
};
public:
OctetString data; ///< @brief The application data.
public:
/// @brief The main/default constructor.
/**
@param[in] data_ The application data.
*/
explicit Pong(OctetString data_ = OctetString())
: data(data_)
{}
public:
/// @copydoc Frame::Payload::format()
void format(bin::OStream & bs) const
{
bs.putBuffer(data.data(),
data.size());
}
/// @copydoc Frame::Payload::parse()
bool parse(bin::IStream & bs)
{
data = getAll(bs); // up to end
return true;
}
};
// implementation
namespace impl
{
/// @brief Get the SHA-1 digest.
/**
@param[in] data The custom binary data.
@return The SHA-1 hash.
*/
inline OctetString sha1(OctetString const& data)
{
boost::uuids::detail::sha1 h;
h.process_bytes(data.data(),
data.size());
const size_t N = 5;
unsigned int hash[N];
h.get_digest(hash);
OStringStream oss;
bin::OStream bs(oss);
for (size_t i = 0; i < N; ++i)
{
//oss << dump::hex(hash[i]);
bs.putUInt32BE(hash[i]);
}
return oss.str();
}
} // implementation
/// @brief The %WebSocket connection.
/**
Client socket connection. Sends masked frames.
It's possible to work with websocket messages (high level)
and websocket frames (low level).
*/
class WebSocket:
public boost::enable_shared_from_this<WebSocket>
{
typedef bin::Transceiver<http::Connection, Frame> TRX; ///< @brief The transceiver type.
typedef WebSocket This; ///< @brief The this type alias.
protected:
/// @brief The main constructor.
/**
@param[in] name The optional websocket name.
*/
explicit WebSocket(String const& name)
: m_log("/hive/websocket/" + name)
{
HIVELOG_TRACE_STR(m_log, "created");
}
public:
/// @brief The trivial destructor.
~WebSocket()
{
HIVELOG_TRACE_STR(m_log, "deleted");
}
public:
/// @brief The shared pointer type.
typedef boost::shared_ptr<WebSocket> SharedPtr;
/// @brief The factory method.
/**
@param[in] name The optional websocket name.
@return The new websocket instance.
*/
static SharedPtr create(String const& name = String())
{
return SharedPtr(new WebSocket(name));
}
public:
/// @brief Prepare websocket handshake request.
/**
This HTTP request might be used for manual connection.
@param[in] url The URL to request.
@param[in] key The random key (base64 encoded).
Empty string for automatic key.
@return The WebSocket handshake request.
*/
static http::RequestPtr getHandshakeRequest(http::Url const& url, String const& key = String())
{
http::RequestPtr req = http::Request::GET(url);
req->setVersion(1, 1); // at least HTTP 1.1 required
req->addHeader(http::header::Connection, "Upgrade");
req->addHeader(http::header::Upgrade, NAME);
req->addHeader(ws13::header::Version, VERSION);
req->addHeader(ws13::header::Key, key.empty() ? generateNewKey() : key);
return req;
}
/// @brief Generate new handshake key.
/**
@return The new key, base64 encoded.
*/
static String generateNewKey()
{
// TODO: boost::random::mt19937 rgen;
const size_t N = 16;
std::vector<UInt8> key(N);
for (size_t i = 0; i < N; ++i)
key[i] = rand()&0xFF;
return misc::base64_encode(key);
}
/// @brief Build handshake accept key.
/**
@param[in] key The websocket key.
@return The handshake accept key.
*/
static String buildAcceptKey(String const& key)
{
const OctetString check = impl::sha1(key + KEY_UUID);
return misc::base64_encode(check.begin(), check.end());
}
/// @brief Generate new masking key.
/**
@return The new masking key.
*/
static UInt32 generateNewMask()
{
// TODO: boost::random::mt19937 rgen;
return (rand()<<16) | rand();
}
public:
/// @brief The "connect" callback type.
typedef boost::function2<void, boost::system::error_code, SharedPtr> ConnectCallback;
/// @brief Connect to the server.
/**
@param[in] url The URL to connect to.
@param[in] httpClient The corresponding HTTP client.
@param[in] callback The "connect" callback will be called after creation.
@param[in] timeout_ms Connection timeout in milliseconds.
@param[in] key The websocket key, base64 encoded.
Empty string for random key.
*/
void asyncConnect(http::Url const& url, http::Client::SharedPtr httpClient,
ConnectCallback callback, size_t timeout_ms, String const& key = String())
{
HIVELOG_TRACE_BLOCK(m_log, "asyncConnect()");
HIVELOG_DEBUG(m_log, "try to connect to " << url.toStr());
if (http::Client::TaskPtr task = httpClient->send(getHandshakeRequest(url, key), timeout_ms))
task->callWhenDone(boost::bind(&This::onConnect, shared_from_this(), task, httpClient, callback));
}
/// @brief Is the websocket opened?
/**
@return `true` if it's opened.
*/
bool isOpen() const
{
return m_trx && m_conn;
}
/// @brief Close the socket.
/**
If *force* flag is `false`, sends **CLOSE** frame.
Otherwise just closes the socket.
@param[in] force The *force* flag.
*/
void close(bool force)
{
if (isOpen())
{
if (!force)
{
const UInt32 mask = generateNewMask();
HIVELOG_TRACE(m_log, "sending CLOSE frame");
Frame::SharedPtr frame = Frame::create(Frame::Close(Frame::Close::STATUS_NORMAL), true, mask);
asyncSendFrame(frame, boost::bind(&This::onSendFrame,
shared_from_this(), _1, _2, SendFrameCallback()));
}
else
{
m_trx->recv(TRX::RecvFrameCallback());
m_trx.reset();
m_conn->close();
m_conn.reset();
}
}
}
private:
/// @brief The connect operation completed.
/**
@param[in] task The HTTP task.
@param[in] httpClient The HTTP client.
@param[in] callback The callback.
*/
void onConnect(http::Client::TaskPtr task, http::ClientPtr httpClient, ConnectCallback callback)
{
HIVELOG_TRACE_BLOCK(m_log, "onConnect()");
boost::system::error_code err = task->errorCode;
if (!err && task->request && task->response && task->getConnection())
{
// TODO: check for "101 Switching Protocols" status code
// check the accept key
const String akey = task->response->getHeader(header::Accept);
const String rkey = task->request->getHeader(header::Key);
if (akey == buildAcceptKey(rkey))
{
m_conn = task->takeConnection();
m_trx = TRX::create(m_log.getName(), *m_conn);
HIVELOG_INFO(m_log, "connection created");
// start listening ASAP
m_trx->recv(boost::bind(&This::onRecvFrame,
shared_from_this(), _1, _2));
}
else
{
err = boost::asio::error::connection_refused; // TODO: use appropriate error code
HIVELOG_ERROR(m_log, "bad key: " << rkey
<< " doesn't match to " << akey);
}
}
httpClient->getIoService().post(
boost::bind(callback, err, shared_from_this()));
}
public:
/// @brief The "send message" callback type.
typedef boost::function2<void, boost::system::error_code, Message::SharedPtr> SendMessageCallbackType;
/// @brief The "receive message" callback type.
typedef boost::function2<void, boost::system::error_code, Message::SharedPtr> RecvMessageCallbackType;
/// @brief Send the message.
/**
@param[in] msg The message to send.
@param[in] callback The callback.
@param[in] fragmentSize The maximum fragment size.
Zero to disable fragmentation.
*/
void asyncSendMessage(Message::SharedPtr msg, SendMessageCallbackType callback, size_t fragmentSize = 0)
{
HIVELOG_TRACE_BLOCK(m_log, "asyncSendMessage()");
size_t msg_size = msg->getData().size();
if (fragmentSize && fragmentSize < msg_size) // fragmentation enabled
{
OctetString::const_iterator first = msg->getData().begin();
bool isFirstFrame = true;
// send full-frames
while (2*fragmentSize < msg_size)
{
const OctetString data(first, first + fragmentSize);
const UInt32 mask = generateNewMask();
HIVELOG_DEBUG(m_log, "send "
<< (isFirstFrame?"first ":"")
<< "fragment (" << fragmentSize << " bytes): "
<< dump::hex(data));
// "client-to-server" frames are always masked
Frame::SharedPtr frame = isFirstFrame ? (msg->isText()
? Frame::create(Frame::Text(data), true, mask, false)
: Frame::create(Frame::Binary(data), true, mask, false))
: Frame::create(Frame::Continue(data), true, mask, false);
asyncSendFrame(frame, boost::bind(&This::onSendMessage,
shared_from_this(), _1, _2, msg, callback));
isFirstFrame = false;
msg_size -= fragmentSize;
first += fragmentSize;
}
// split the rest into the two fragments
const size_t F1 = (msg_size+1)/2; // ceil
const size_t F2 = msg_size - F1;
{ // send the first fragment
const OctetString data(first, first + F1);
const UInt32 mask = generateNewMask();
HIVELOG_DEBUG(m_log, "send "
<< (isFirstFrame?"first ":"")
<< "fragment (" << F1 << " bytes): "
<< dump::hex(data));
// "client-to-server" frames are always masked
Frame::SharedPtr frame = isFirstFrame ? (msg->isText()
? Frame::create(Frame::Text(data), true, mask, false)
: Frame::create(Frame::Binary(data), true, mask, false))
: Frame::create(Frame::Continue(data), true, mask, false);
asyncSendFrame(frame, boost::bind(&This::onSendMessage,
shared_from_this(), _1, _2, msg, callback));
isFirstFrame = false;
msg_size -= F1;
first += F1;
}
{ // send the second fragment (and the last one)
const OctetString data(first, first + F2);
const UInt32 mask = generateNewMask();
HIVELOG_DEBUG(m_log, "send " << (isFirstFrame?"first ":"")
<< "fragment (" << F2 << " bytes): "
<< dump::hex(data));
// "client-to-server" frames are always masked
Frame::SharedPtr frame =
Frame::create(Frame::Continue(data), true, mask, true);
asyncSendFrame(frame, boost::bind(&This::onSendMessage,
shared_from_this(), _1, _2, msg, callback));
msg_size -= F2;
first += F2;
}
assert(0 == msg_size && "fragmentation doesn't work");
}
else // single frame
{
const OctetString &data = msg->getData();
const UInt32 mask = generateNewMask();
HIVELOG_DEBUG(m_log, "send single frame: " << msg_size << " bytes");
// "client-to-server" frames are always masked
Frame::SharedPtr frame = msg->isText()
? Frame::create(Frame::Text(data), true, mask)
: Frame::create(Frame::Binary(data), true, mask);
asyncSendFrame(frame, boost::bind(&This::onSendMessage,
shared_from_this(), _1, _2, msg, callback));
}
}
/// @brief Listen for the messages.
/**
@param[in] callback The callback functor which will be called
each time new message received. Pass NULL to stop listening.
*/
void asyncListenForMessages(RecvMessageCallbackType callback)
{
m_recvMsgCallback = callback;
}
private:
RecvMessageCallbackType m_recvMsgCallback; ///< @brief The "receive message" callback.
Message::SharedPtr m_recvMsg; ///< @brief The assembling message or NULL.
/// @brief The "send frame" callback for messages.
/**
@param[in] err The error code.
@param[in] frame The sent frame.
@param[in] msg The corresponding message.
@param[in] callback The users callback.
*/
void onSendMessage(boost::system::error_code err, Frame::SharedPtr frame,
Message::SharedPtr msg, SendMessageCallbackType callback)
{
HIVELOG_TRACE_BLOCK(m_log, "onSendMessage(frame)");
if (err || frame->getFIN() == 1)
{
HIVELOG_DEBUG(m_log, "final frame confirmed, report to user");
if (callback)
{
m_trx->getStream().get_io_service().post(
boost::bind(callback, err, msg));
}
}
else
{
// TODO: report error in any case
HIVELOG_DEBUG(m_log, "just wait for the final frame");
}
}
/// @brief Report the new message to the user.
/**
@param[in] err The error code.
@param[in] msg The corresponding message.
*/
void doRecvMessage(boost::system::error_code err, Message::SharedPtr msg)
{
HIVELOG_TRACE_BLOCK(m_log, "doRecvMessage(msg)");
if (m_recvMsgCallback)
{
HIVELOG_DEBUG(m_log, "report message to user");
m_trx->getStream().get_io_service().post(
boost::bind(m_recvMsgCallback, err, msg));
}
else
HIVELOG_WARN(m_log, "no callback, message ignored");
}
public:
/// @brief The "send frame" callback type.
typedef TRX::SendFrameCallback SendFrameCallback;
/// @brief The "receive frame" callback type.
typedef TRX::RecvFrameCallback RecvFrameCallback;
/// @brief Send the frame asynchronously.
/**
@param[in] frame The frame to send.
@param[in] callback The callback.
*/
void asyncSendFrame(Frame::SharedPtr frame, SendFrameCallback callback)
{
HIVELOG_TRACE_BLOCK(m_log, "asyncSendFrame()");
assert(isOpen() && "not connected");
m_trx->send(frame,
boost::bind(&This::onSendFrame,
shared_from_this(), _1, _2, callback));
}
/// @brief Listen for received frames.
/**
@param[in] callback The callback functor or NULL to stop listening.
*/
void asyncListenForFrames(RecvFrameCallback callback)
{
m_recvFrameCallback = callback;
}
private:
RecvFrameCallback m_recvFrameCallback; ///< @brief The "receive frame" callback.
/// @brief The "send frame" callback.
/**
@param[in] err The error code.
@param[in] frame The sent frame.
@param[in] callback The user's callback.
*/
void onSendFrame(boost::system::error_code err, Frame::SharedPtr frame, SendFrameCallback callback)
{
HIVELOG_TRACE_BLOCK(m_log, "onSendFrame()");
if (callback)
{
m_trx->getStream().get_io_service().post(
boost::bind(callback, err, frame));
}
}
/// @brief The "receive frame" callback.
/**
Assembles messages.
@param[in] err The error code.
@param[in] frame The received frame.
*/
void onRecvFrame(boost::system::error_code err, Frame::SharedPtr frame)
{
HIVELOG_TRACE_BLOCK(m_log, "onRecvFrame()");
if (!err)
{
const int opcode = frame->getOpcode();
bool frame_processed = false;
if (m_recvFrameCallback)
{
m_trx->getStream().get_io_service().post(
boost::bind(m_recvFrameCallback, err, frame));
frame_processed = true;
}
// handle control frames here
switch (opcode)
{
case Frame::FRAME_CLOSE:
{
HIVELOG_DEBUG(m_log, "got CLOSE frame");
close(true);
} break;
case Frame::FRAME_PING:
{
Frame::Ping ping;
frame->getPayload(ping);
HIVELOG_DEBUG(m_log, "got PING frame");
const UInt32 mask = generateNewMask();
HIVELOG_TRACE(m_log, "sending PONG frame");
Frame::SharedPtr frame = Frame::create(Frame::Pong(ping.data), true, mask);
asyncSendFrame(frame, boost::bind(&This::onSendFrame,
shared_from_this(), _1, _2, SendFrameCallback()));
} break;
default:
break;
}
if (m_recvMsgCallback) // try to assemble message from frames
{
if (!m_recvMsg)
{
if (opcode == Frame::FRAME_BINARY)
{
Frame::Binary info;
frame->getPayload(info);
m_recvMsg = Message::create(info.data, false);
frame_processed = true;
}
else if (opcode == Frame::FRAME_TEXT)
{
Frame::Text info;
frame->getPayload(info);
m_recvMsg = Message::create(info.text, true);
frame_processed = true;
}
else
{
HIVELOG_WARN(m_log, "unexpected frame, ignored");
}
}
else
{
if (opcode == Frame::FRAME_CONTINUE)
{
Frame::Continue info;
frame->getPayload(info);
m_recvMsg->appendData(info.data);
frame_processed = true;
}
else
{
HIVELOG_WARN(m_log, "previous message is broken, ignored");
m_recvMsg.reset();
}
}
if (m_recvMsg && frame->getFIN()==1)
{
doRecvMessage(boost::system::error_code(), m_recvMsg);
m_recvMsg.reset();
}
}
if (!frame_processed)
HIVELOG_WARN(m_log, "no callback, frame ignored");
}
else
{
HIVELOG_ERROR(m_log, "RECV error: [" << err << "] - " << err.message());
if (m_recvFrameCallback)
{
m_trx->getStream().get_io_service().post(
boost::bind(m_recvFrameCallback, err, Frame::SharedPtr()));
}
doRecvMessage(err, Message::SharedPtr());
}
}
private:
http::ConnectionPtr m_conn; ///< @brief The corresponding HTTP connection.
TRX::SharedPtr m_trx; ///< @brief The tranceiver.
hive::log::Logger m_log; ///< @brief The logger.
};
/// @brief The WebSocket shared pointer type.
typedef WebSocket::SharedPtr WebSocketPtr;
} // ws13 namespace
} // hive namespace
#endif // __HIVE_WS13_HPP_
///////////////////////////////////////////////////////////////////////////////
/** @page page_hive_ws13 WebSocket module
This is page is under construction!
===================================
*/
| [
"sergey.polichnoy@dataart.com"
] | sergey.polichnoy@dataart.com |
f0cc978dc28639f5efa5f72499904530309d7f6b | d6d3f1cdb9a9fb06f84734b4a5b871c1a0acf9e5 | /src/Game.cpp | 57fe604e3c075f2edccbe2d70ce8108ec92e40b5 | [] | no_license | rezid/framework-square | 90a09655c15d300fc33a5242c254b6b7818eb7c8 | 7a981e4dff6d4505b3d647430e040eb5d07cbf4b | refs/heads/master | 2021-05-01T02:47:44.808384 | 2017-01-03T11:20:35 | 2017-01-03T11:20:35 | 74,726,921 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 671 | cpp | #include "Game.hpp"
#include "Element.hpp"
#include "Cmd.hpp"
using namespace z;
using namespace std;
/* Lire les commentaires dans Game.hpp pour toute information sur
ses fonctions */
Game::Game(int mm, int nn, ElementPtr e0)
{
default_element = move(e0);
m = mm;
n = nn;
grid.resize(m);
for (auto &v : grid)
{
v.resize(n);
for (auto &e : v)
e = default_element->make_copy();
}
}
bool Game::start()
{
start_grid();
int status = 2;
while (status == 2)
{
display_grid();
command_press();
logic_flow();
status = if_win_or_lose();
}
return status;
}
| [
"zidane.rezzak@gmail.com"
] | zidane.rezzak@gmail.com |
8e4f96c9227d696da475f34a91d074400e545cdd | 53714632b593d561da618bcb1b83c5be455fb30a | /pulseconnector.cpp | 66b5dbd7fea70b9a6818804c80d019148b99d28d | [] | no_license | tasgon/Pulsar | 07f82113f3531019f7dfbbd99aa156b6094013ff | 37ef6fe09b6f1bb46c5278da19005182bb185a96 | refs/heads/master | 2022-12-06T23:03:04.942457 | 2020-08-31T07:52:26 | 2020-08-31T07:52:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,073 | cpp | #include "pulseconnector.h"
#include <iostream>
#include <glib.h>
#include <cstdlib>
#include <QJsonObject>
bool check_event(pa_proplist *proplist)
{
const char *t = pa_proplist_gets(proplist, "module-stream-restore.id");
return (t && strcmp(t, "sink-input-by-media-role:event") == 0);
}
void sink_update(pa_context *ctx, const pa_sink_info *info, int idx, void *data)
{
PulseConnector *conn = (PulseConnector *) data;
if (info != NULL)
{
emit conn->updateSink(QString(info->name), info->index);
}
}
void sink_input_update(pa_context *ctx, const pa_sink_input_info *info, int idx, void *data)
{
PulseConnector* conn = (PulseConnector *) data;
if (info != NULL && !check_event(info->proplist))
{
emit conn->updateSinkInput(QString(info->name), info->index);
}
}
void on_event(pa_context *ctx, pa_subscription_event_type_t type, unsigned int index, void *data)
{
std::cout << "Event received with " << index << " -- ";
PulseConnector* conn = (PulseConnector*)data;
switch (type & PA_SUBSCRIPTION_EVENT_FACILITY_MASK)
{
case PA_SUBSCRIPTION_EVENT_SINK:
std::cout << "sink event" << std::endl;
if ((type & PA_SUBSCRIPTION_EVENT_TYPE_MASK) == PA_SUBSCRIPTION_EVENT_REMOVE)
{
emit conn->removeSink(index);
} else {
auto ret = pa_context_get_sink_info_by_index(ctx, index, &sink_update, data);
pa_operation_unref(ret);
}
break;
case PA_SUBSCRIPTION_EVENT_SINK_INPUT:
std::cout << "sink input event" << std::endl;
if ((type & PA_SUBSCRIPTION_EVENT_TYPE_MASK) == PA_SUBSCRIPTION_EVENT_REMOVE)
{
emit conn->removeSinkInput(index);
} else {
auto ret = pa_context_get_sink_input_info(ctx, index, &sink_input_update, data);
pa_operation_unref(ret);
}
break;
case PA_SUBSCRIPTION_EVENT_SOURCE:
std::cout << "source event" << std::endl;
break;
default:
std::cout << "unmapped event" << std::endl;
break;
}
}
void on_connect(pa_context *ctx, void *data)
{
printf("In callback\n");
pa_context_state_t state = pa_context_get_state(ctx);
pa_operation *ret;
switch (state) {
case PA_CONTEXT_READY: {
printf("Connection ready\n");
pa_context_set_subscribe_callback(ctx, &on_event, data);
if (!(ret = pa_context_subscribe(ctx, (pa_subscription_mask_t)
(PA_SUBSCRIPTION_MASK_SINK|
PA_SUBSCRIPTION_MASK_SOURCE|
PA_SUBSCRIPTION_MASK_SINK_INPUT|
PA_SUBSCRIPTION_MASK_SOURCE_OUTPUT|
PA_SUBSCRIPTION_MASK_CLIENT|
PA_SUBSCRIPTION_MASK_SERVER|
PA_SUBSCRIPTION_MASK_CARD), NULL, NULL))) {
std::cerr << "Unable to subscribe to pulse events" << std::endl;
return;
}
ret = pa_context_get_sink_input_info_list(ctx, &sink_input_update, data);
pa_operation_unref(ret);
ret = pa_context_get_sink_info_list(ctx, &sink_update, data);
pa_operation_unref(ret);
break;
}
case PA_CONTEXT_FAILED: {
printf("Connection failed!");
break;
}
default:
break;
}
}
PulseConnector::PulseConnector(QObject *parent) : QObject(parent)
{
std::cout << "Creating connector" << std::endl;
return;
}
Q_INVOKABLE void PulseConnector::init()
{
void *data = this;
this->loop = pa_glib_mainloop_new(g_main_context_default());
this->api = pa_glib_mainloop_get_api(this->loop);
this->ctx = pa_context_new(this->api, "Pulsar");
pa_context_connect(this->ctx, NULL, PA_CONTEXT_NOFLAGS, NULL);
pa_context_set_state_callback(this->ctx, &on_connect, data);
}
PulseConnector::~PulseConnector()
{
pa_context_disconnect(this->ctx);
pa_glib_mainloop_free(this->loop);
}
| [
"10052313+telastrus@users.noreply.github.com"
] | 10052313+telastrus@users.noreply.github.com |
ebd2c841908cce03ac98fbd080a9d45bef34c6ee | b2f80cfef340f2898d69c61fd43345194ac771f0 | /LCS/lcs.cpp | 475a2c00f1b984f9da2e14d8de253186981c1bc7 | [] | no_license | terz99/course-algorithms-data-structures | 396e81df26fec5cf08ee380ad7554a6b731117a9 | e561ac8c020ae68d37a9a0ad7c75edd0f17fb068 | refs/heads/master | 2020-03-19T12:44:34.218778 | 2018-06-07T22:17:02 | 2018-06-07T22:17:02 | 136,537,267 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 845 | cpp | #include <bits/stdc++.h>
using namespace std;
int dp[1005][1005];
int lcs(const string& x, const int& i, const string& y, const int& j){
if(dp[i][j] == -1){
if(i == 0 || j == 0){
dp[i][j] = 0;
} else if(x[i-1] == y[j-1]){
dp[i][j] = 1 + lcs(x, i-1, y, j-1);
} else {
dp[i][j] = max(lcs(x, i-1, y, j), lcs(x, i, y, j-1));
}
}
return dp[i][j];
}
int main(){
memset(dp, -1, sizeof(dp));
string x = "AGGTAB";
string y = "GXTXAYB";
lcs(x, x.length(), y, y.length());
string seq = "";
int i = x.length();
int j = y.length();
while(i > 0 && j > 0){
if(x[i-1] == y[j-1]){
seq = x[i-1] + seq;
i--;
j--;
} else {
j--;
}
}
cout << seq << endl;
return 0;
} | [
"dusanterzic87@gmail.com"
] | dusanterzic87@gmail.com |
7b6ef8e45b8e64632e4bf5adab8539b1ae2ffe41 | 1a5cfa330726f2eb10b27544b9aa658a55d4d301 | /STL/Generic Algorithms/random_suffle.cpp | 2c31e10d8f104fbfbe758815e2e6df04e6bbe605 | [] | no_license | praveenreddychalamalla/CPP | 33e6311981a50e8fb224354fcc1b4f30b22e3da6 | f1c459e63d994445ebe9e17992dfa59cc418b1df | refs/heads/main | 2023-07-02T13:39:39.172102 | 2021-08-01T10:51:34 | 2021-08-01T10:51:34 | 368,180,099 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 955 | cpp | /**
DOCUMENTATION
Author: Praveen Reddy Chalamalla
Created on 17-05-2021
This code demonstrates the usage of random function.
*/
#include<iostream>
#include<algorithm>
#include<vector>
#include<ctime>
using namespace std;
/*
class<RandomAccessIterator>
void random_suffle(RandomAccessIterator first, RandomAccessIterator last);
Internally implements rand() function
You can also shuffle the elements of a container by passing user implemented generator function (Use other syntax of random_shuffle())
*/
int main(){
srand(unsigned(time(0))); //Setting the seed.
// If seed is not set, everytime same random numbers will be generated and shuffle happens to be same.
vector<int>v;
for(int i=0;i<10;i++)v.push_back(i+1);
for(int i=0;i<v.size();i++)cout<<v[i]<<" ";
cout<<endl;
random_shuffle(v.begin(),v.end());
for(int i=0;i<v.size();i++)cout<<v[i]<<" ";
cout<<endl;
return 0;
} | [
"praveenreddychalamalla@gmail.com"
] | praveenreddychalamalla@gmail.com |
ef938d27944b2ebd4ec25fbceb62d2252fb21c5c | 61218d87e4344b75e1707838b8ee2a58eddda288 | /sources/settingdialog.h | 6abcb21ebaa946b724acdf11862783bc46ddc841 | [] | no_license | tre3k/PlotGrabber | 23a689557c74547424f80a13cac1bf4055557ae5 | c0cf24c26e5b40c7fdcd5a3f6ab0a094763accfa | refs/heads/master | 2021-04-18T11:50:34.055441 | 2020-03-31T15:16:47 | 2020-03-31T15:16:47 | 249,541,055 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 755 | h | /*
* settingdialog.h
* Under license GNU GPLv3
* Autor: Kirill Pshenichnyi (c) 2020
*
*/
#include <QDialog>
#include "interface.h"
#include "basewidget.h"
#include "elementwidgets.h"
namespace Dialogs {
class Settings : public QDialog{
Q_OBJECT
private:
If::Interface *_iface;
Widgets::ToggleButton *toggle_night_mode;
public:
Settings(If::Interface *iface = nullptr,QWidget *parent = nullptr);
public slots:
void Accept(void);
void SwitchNightMode(bool mode);
void ChangeColor(int second_style){
_iface->getStyle()->setSecondStyle((Styles::SecondStyle)second_style);
emit Accepted();
}
signals:
void Accepted(void);
};
}
| [
"pshcyrill@mail.ru"
] | pshcyrill@mail.ru |
c925b2d326036614098c4d5607f9569ababa0546 | 90c09bbe3fb26a406ad694c2dd9d794f7cdd0de6 | /Vector3d.cpp | 4097d5c2dba33e50751a794f3c79168e95976df4 | [] | no_license | davsarkissian/ray_tracer | 5bcd8ce12f1af1422270a95e270ea9fc154b6e81 | e1a33e2ca43a827419642cf74fe73c069d5a9cef | refs/heads/master | 2022-04-11T19:32:49.343641 | 2020-03-11T13:08:35 | 2020-03-11T13:08:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,840 | cpp | #include "Vector3d.h"
Vector3d::Vector3d(float x_p, float y_p, float z_p){
x = x_p;
y = y_p;
z = z_p;
}
Vector3d::Vector3d(const Vector3d &v){
x = v.x;
y = v.y;
z = v.z;
}
std::ostream &operator << (std::ostream &out, const Vector3d v){
out << "(" << v.x << ", " << v.y << ", " << v.z << ")";
return out;
}
std::istream &operator >> (std::istream &in, Vector3d &v){
in >> v.x >> v.y >> v.z;
return in;
}
Vector3d Vector3d::operator + (const Vector3d &v2){
return Vector3d(x + v2.x, y + v2.y, z + v2.z);
}
Vector3d Vector3d::operator - (const Vector3d &v2){
return Vector3d(x - v2.x, y - v2.y, z - v2.z);
}
Vector3d Vector3d::operator = (const Vector3d &v2){
x = v2.x;
y = v2.y;
z = v2.z;
return *this;
}
Vector3d Vector3d::operator += (const Vector3d &v2){
x += v2.x;
y += v2.y;
z += v2.z;
return *this;
}
Vector3d Vector3d::operator -= (const Vector3d &v2){
x -= v2.x;
y -= v2.y;
z -= v2.z;
return *this;
}
Vector3d Vector3d::operator * (const float k){
x *= k;
y *= k;
z *= k;
return *this;
}
bool Vector3d::operator == (const Vector3d &v2){
if(x == v2.x && y == v2.y && z == v2.z){
return true;
}
return false;
}
bool Vector3d::operator != (const Vector3d &v2){
if(x == v2.x || y == v2.y || z == v2.z){
return false;
}
return true;
}
float Vector3d::dot(const Vector3d v){
return (x * v.x) + (y * v.y) + (z * v.z);
}
Vector3d Vector3d::cross(const Vector3d v){
return Vector3d(y*v.z - z*v.y, z*v.x - x*v.z, x*v.y - y*v.x);
}
float Vector3d::getNorm(){
return sqrt(pow(x, 2) + pow(y, 2) + pow(z, 2));
}
Vector3d Vector3d::normalize(){
float norm = this->getNorm();
x = x / norm;
y = y / norm;
z = z / norm;
return *this;
}
| [
"alexandre.lacour3@hotmail.fr"
] | alexandre.lacour3@hotmail.fr |
5ffe3bba7b5fc3fa876c94af902d0cf9a205e289 | 868e8628acaa0bf276134f9cc3ced379679eab10 | /firstCrude2D/we123/h10/0.149/U | 221a830dc8c8b5160483bbfd73a175bac7781215 | [] | no_license | stigmn/droplet | 921af6851f88c0acf8b1cd84f5e2903f1d0cb87a | 1649ceb0a9ce5abb243fb77569211558c2f0dc96 | refs/heads/master | 2020-04-04T20:08:37.912624 | 2015-11-25T11:20:32 | 2015-11-25T11:20:32 | 45,102,907 | 0 | 0 | null | 2015-10-28T09:46:30 | 2015-10-28T09:46:29 | null | UTF-8 | C++ | false | false | 1,580,566 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.149";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
60000
(
(-1.12812e-07 5.00718e-08 0)
(-4.12436e-07 4.77432e-08 0)
(-7.48869e-07 5.34911e-08 0)
(-1.08911e-06 4.97523e-08 0)
(-1.41481e-06 4.68846e-08 0)
(-1.72079e-06 4.29362e-08 0)
(-2.0046e-06 3.8745e-08 0)
(-2.2639e-06 3.42324e-08 0)
(-2.49672e-06 2.93752e-08 0)
(-2.70149e-06 2.44589e-08 0)
(-2.87773e-06 1.96927e-08 0)
(-3.02578e-06 1.52696e-08 0)
(-3.14658e-06 1.12741e-08 0)
(-3.24154e-06 7.80082e-09 0)
(-3.31248e-06 4.86854e-09 0)
(-3.36154e-06 2.55188e-09 0)
(-3.39103e-06 9.37117e-10 0)
(-3.40363e-06 2.14634e-11 0)
(-3.40235e-06 -2.07679e-10 0)
(-3.39033e-06 3.18482e-10 0)
(-3.37074e-06 1.54209e-09 0)
(-3.3467e-06 3.42789e-09 0)
(-3.32134e-06 5.97614e-09 0)
(-3.2977e-06 9.06402e-09 0)
(-3.2786e-06 1.27269e-08 0)
(-3.26688e-06 1.6907e-08 0)
(-3.2649e-06 2.18152e-08 0)
(-3.27502e-06 2.67036e-08 0)
(-3.2998e-06 3.14831e-08 0)
(-3.34091e-06 3.64444e-08 0)
(-3.39969e-06 4.1172e-08 0)
(-3.47779e-06 4.56657e-08 0)
(-3.57597e-06 5.02558e-08 0)
(-3.69449e-06 5.46447e-08 0)
(-3.83305e-06 5.88115e-08 0)
(-3.99139e-06 6.27216e-08 0)
(-4.1695e-06 6.61038e-08 0)
(-4.36529e-06 6.94267e-08 0)
(-4.57775e-06 7.19602e-08 0)
(-4.80665e-06 7.39182e-08 0)
(-5.04994e-06 7.58868e-08 0)
(-5.30584e-06 7.74829e-08 0)
(-5.57349e-06 7.86897e-08 0)
(-5.85175e-06 7.96384e-08 0)
(-6.13942e-06 8.03773e-08 0)
(-6.4363e-06 8.11936e-08 0)
(-6.74166e-06 8.16939e-08 0)
(-7.05468e-06 8.21405e-08 0)
(-7.37561e-06 8.26932e-08 0)
(-7.70493e-06 8.32833e-08 0)
(-8.04291e-06 8.39581e-08 0)
(-8.39027e-06 8.49346e-08 0)
(-8.74781e-06 8.60294e-08 0)
(-9.11594e-06 8.71445e-08 0)
(-9.49546e-06 8.85372e-08 0)
(-9.8865e-06 8.97438e-08 0)
(-1.02894e-05 9.08278e-08 0)
(-1.07048e-05 9.20524e-08 0)
(-1.11322e-05 9.30986e-08 0)
(-1.15715e-05 9.38661e-08 0)
(-1.20221e-05 9.43937e-08 0)
(-1.24831e-05 9.45243e-08 0)
(-1.29531e-05 9.42532e-08 0)
(-1.34303e-05 9.34442e-08 0)
(-1.39127e-05 9.20874e-08 0)
(-1.43978e-05 9.00885e-08 0)
(-1.48829e-05 8.75183e-08 0)
(-1.53653e-05 8.4275e-08 0)
(-1.58418e-05 8.03063e-08 0)
(-1.63089e-05 7.56632e-08 0)
(-1.67636e-05 7.0406e-08 0)
(-1.72028e-05 6.46192e-08 0)
(-1.76239e-05 5.82461e-08 0)
(-1.80235e-05 5.12191e-08 0)
(-1.83987e-05 4.36584e-08 0)
(-1.87472e-05 3.58239e-08 0)
(-1.90669e-05 2.75492e-08 0)
(-1.93553e-05 1.90174e-08 0)
(-1.96109e-05 1.02723e-08 0)
(-1.98323e-05 1.80277e-09 0)
(-2.00184e-05 -7.08193e-09 0)
(-2.01682e-05 -1.59538e-08 0)
(-2.02813e-05 -2.47904e-08 0)
(-2.03577e-05 -3.35812e-08 0)
(-2.03971e-05 -4.26575e-08 0)
(-2.04002e-05 -5.20852e-08 0)
(-2.03674e-05 -5.97834e-08 0)
(-2.02994e-05 -6.69412e-08 0)
(-2.01985e-05 -7.37331e-08 0)
(-2.00658e-05 -8.02358e-08 0)
(-1.99027e-05 -8.63528e-08 0)
(-1.97111e-05 -9.20338e-08 0)
(-1.94902e-05 -9.79583e-08 0)
(-1.92442e-05 -1.02589e-07 0)
(-1.89647e-05 -1.08986e-07 0)
(-1.86687e-05 -1.11921e-07 0)
(-1.83309e-05 -1.17627e-07 0)
(-1.79917e-05 -1.169e-07 0)
(-1.75863e-05 -1.26338e-07 0)
(-1.71266e-05 -1.13778e-07 0)
(-1.56073e-07 2.21209e-07 0)
(-6.7166e-07 2.83581e-07 0)
(-1.27225e-06 3.04225e-07 0)
(-1.87022e-06 2.96171e-07 0)
(-2.45425e-06 2.82011e-07 0)
(-3.00889e-06 2.63906e-07 0)
(-3.53172e-06 2.43788e-07 0)
(-4.01816e-06 2.21781e-07 0)
(-4.46537e-06 1.98056e-07 0)
(-4.87077e-06 1.73391e-07 0)
(-5.23266e-06 1.48483e-07 0)
(-5.55e-06 1.23908e-07 0)
(-5.82234e-06 1.00049e-07 0)
(-6.0499e-06 7.73522e-08 0)
(-6.23372e-06 5.6135e-08 0)
(-6.37534e-06 3.66686e-08 0)
(-6.47681e-06 1.9367e-08 0)
(-6.5408e-06 4.23729e-09 0)
(-6.57033e-06 -8.7917e-09 0)
(-6.56873e-06 -1.9233e-08 0)
(-6.53948e-06 -2.6989e-08 0)
(-6.48613e-06 -3.21353e-08 0)
(-6.41245e-06 -3.46093e-08 0)
(-6.32226e-06 -3.46329e-08 0)
(-6.21929e-06 -3.21656e-08 0)
(-6.10743e-06 -2.72114e-08 0)
(-5.99069e-06 -1.97752e-08 0)
(-5.87285e-06 -1.04862e-08 0)
(-5.75764e-06 4.17948e-10 0)
(-5.64859e-06 1.30199e-08 0)
(-5.54925e-06 2.65955e-08 0)
(-5.46312e-06 4.08144e-08 0)
(-5.39287e-06 5.61087e-08 0)
(-5.34054e-06 7.20511e-08 0)
(-5.30698e-06 8.85075e-08 0)
(-5.29367e-06 1.04307e-07 0)
(-5.30199e-06 1.19651e-07 0)
(-5.33067e-06 1.34929e-07 0)
(-5.3802e-06 1.49098e-07 0)
(-5.45124e-06 1.61971e-07 0)
(-5.54264e-06 1.74625e-07 0)
(-5.65356e-06 1.86079e-07 0)
(-5.78347e-06 1.96685e-07 0)
(-5.93179e-06 2.06224e-07 0)
(-6.09713e-06 2.14971e-07 0)
(-6.2791e-06 2.23861e-07 0)
(-6.4777e-06 2.3164e-07 0)
(-6.69266e-06 2.39425e-07 0)
(-6.925e-06 2.47812e-07 0)
(-7.17608e-06 2.56428e-07 0)
(-7.4465e-06 2.65397e-07 0)
(-7.73667e-06 2.75015e-07 0)
(-8.04719e-06 2.84968e-07 0)
(-8.37862e-06 2.95508e-07 0)
(-8.73292e-06 3.06481e-07 0)
(-9.11091e-06 3.17791e-07 0)
(-9.51334e-06 3.29332e-07 0)
(-9.94184e-06 3.41346e-07 0)
(-1.0397e-05 3.53288e-07 0)
(-1.08792e-05 3.64842e-07 0)
(-1.13888e-05 3.76128e-07 0)
(-1.19258e-05 3.86423e-07 0)
(-1.24893e-05 3.95726e-07 0)
(-1.30781e-05 4.03483e-07 0)
(-1.36904e-05 4.09441e-07 0)
(-1.43237e-05 4.13326e-07 0)
(-1.49755e-05 4.15111e-07 0)
(-1.56428e-05 4.14424e-07 0)
(-1.63218e-05 4.10969e-07 0)
(-1.70088e-05 4.04796e-07 0)
(-1.76999e-05 3.96058e-07 0)
(-1.83915e-05 3.84948e-07 0)
(-1.90801e-05 3.71279e-07 0)
(-1.9762e-05 3.54783e-07 0)
(-2.04337e-05 3.36176e-07 0)
(-2.1092e-05 3.15704e-07 0)
(-2.1734e-05 2.93066e-07 0)
(-2.23564e-05 2.68541e-07 0)
(-2.29558e-05 2.42415e-07 0)
(-2.35297e-05 2.15651e-07 0)
(-2.40755e-05 1.87158e-07 0)
(-2.4591e-05 1.58259e-07 0)
(-2.50756e-05 1.28859e-07 0)
(-2.55289e-05 9.93193e-08 0)
(-2.59514e-05 6.93317e-08 0)
(-2.63427e-05 3.91434e-08 0)
(-2.67032e-05 1.10481e-08 0)
(-2.70348e-05 -1.54792e-08 0)
(-2.73385e-05 -4.09769e-08 0)
(-2.7615e-05 -6.54887e-08 0)
(-2.7865e-05 -8.88621e-08 0)
(-2.80901e-05 -1.11053e-07 0)
(-2.82865e-05 -1.32898e-07 0)
(-2.84617e-05 -1.54669e-07 0)
(-2.85946e-05 -1.8042e-07 0)
(-2.87229e-05 -1.99105e-07 0)
(-2.87712e-05 -2.2788e-07 0)
(-2.88291e-05 -2.5169e-07 0)
(-2.87012e-05 -3.29899e-07 0)
(-2.83478e-05 -4.34302e-07 0)
(-1.72679e-07 4.43434e-07 0)
(-7.81161e-07 6.05955e-07 0)
(-1.49572e-06 6.38463e-07 0)
(-2.20702e-06 6.30551e-07 0)
(-2.90657e-06 6.04451e-07 0)
(-3.57622e-06 5.70947e-07 0)
(-4.21201e-06 5.32844e-07 0)
(-4.80856e-06 4.91028e-07 0)
(-5.36298e-06 4.46096e-07 0)
(-5.87242e-06 3.99057e-07 0)
(-6.33484e-06 3.50921e-07 0)
(-6.74882e-06 3.02536e-07 0)
(-7.11365e-06 2.5459e-07 0)
(-7.42916e-06 2.07874e-07 0)
(-7.69582e-06 1.63142e-07 0)
(-7.91474e-06 1.20837e-07 0)
(-8.08752e-06 8.16472e-08 0)
(-8.21634e-06 4.58551e-08 0)
(-8.30366e-06 1.35256e-08 0)
(-8.35227e-06 -1.46716e-08 0)
(-8.36542e-06 -3.85615e-08 0)
(-8.3465e-06 -5.81396e-08 0)
(-8.29895e-06 -7.33068e-08 0)
(-8.22632e-06 -8.42284e-08 0)
(-8.13225e-06 -9.0905e-08 0)
(-8.02056e-06 -9.3177e-08 0)
(-7.89517e-06 -9.15234e-08 0)
(-7.75998e-06 -8.56577e-08 0)
(-7.61895e-06 -7.58477e-08 0)
(-7.47589e-06 -6.25128e-08 0)
(-7.33467e-06 -4.61312e-08 0)
(-7.19889e-06 -2.73502e-08 0)
(-7.07134e-06 -6.18398e-09 0)
(-6.9545e-06 1.66815e-08 0)
(-6.85003e-06 4.09533e-08 0)
(-6.75961e-06 6.46478e-08 0)
(-6.6847e-06 8.87008e-08 0)
(-6.62493e-06 1.12917e-07 0)
(-6.58137e-06 1.36066e-07 0)
(-6.55486e-06 1.58203e-07 0)
(-6.54477e-06 1.80052e-07 0)
(-6.55078e-06 2.00256e-07 0)
(-6.57286e-06 2.19868e-07 0)
(-6.61079e-06 2.38027e-07 0)
(-6.66359e-06 2.5484e-07 0)
(-6.73133e-06 2.72175e-07 0)
(-6.8148e-06 2.88533e-07 0)
(-6.9147e-06 3.05209e-07 0)
(-7.03206e-06 3.23384e-07 0)
(-7.16799e-06 3.42214e-07 0)
(-7.32332e-06 3.61765e-07 0)
(-7.49888e-06 3.82362e-07 0)
(-7.69596e-06 4.03595e-07 0)
(-7.91586e-06 4.26367e-07 0)
(-8.16064e-06 4.50058e-07 0)
(-8.43182e-06 4.74964e-07 0)
(-8.73074e-06 5.00931e-07 0)
(-9.05931e-06 5.27902e-07 0)
(-9.41874e-06 5.55279e-07 0)
(-9.80974e-06 5.82534e-07 0)
(-1.02333e-05 6.09976e-07 0)
(-1.069e-05 6.36228e-07 0)
(-1.11791e-05 6.61281e-07 0)
(-1.17003e-05 6.84259e-07 0)
(-1.22522e-05 7.04476e-07 0)
(-1.28331e-05 7.21621e-07 0)
(-1.34408e-05 7.35386e-07 0)
(-1.40727e-05 7.45236e-07 0)
(-1.47258e-05 7.50534e-07 0)
(-1.53968e-05 7.51405e-07 0)
(-1.60823e-05 7.47993e-07 0)
(-1.67793e-05 7.40545e-07 0)
(-1.74845e-05 7.28984e-07 0)
(-1.81952e-05 7.12963e-07 0)
(-1.89086e-05 6.9353e-07 0)
(-1.96216e-05 6.70516e-07 0)
(-2.03311e-05 6.43961e-07 0)
(-2.10347e-05 6.13941e-07 0)
(-2.17297e-05 5.8088e-07 0)
(-2.24143e-05 5.45553e-07 0)
(-2.30861e-05 5.08181e-07 0)
(-2.37437e-05 4.69426e-07 0)
(-2.43869e-05 4.30168e-07 0)
(-2.50152e-05 3.90461e-07 0)
(-2.56297e-05 3.5113e-07 0)
(-2.62318e-05 3.1219e-07 0)
(-2.68218e-05 2.74799e-07 0)
(-2.74014e-05 2.39036e-07 0)
(-2.79719e-05 2.04688e-07 0)
(-2.85335e-05 1.71688e-07 0)
(-2.90864e-05 1.39895e-07 0)
(-2.96317e-05 1.09048e-07 0)
(-3.01656e-05 7.80789e-08 0)
(-3.06968e-05 4.6548e-08 0)
(-3.11964e-05 8.69589e-09 0)
(-3.17144e-05 -2.36337e-08 0)
(-3.21418e-05 -7.80923e-08 0)
(-3.26024e-05 -1.48644e-07 0)
(-3.27953e-05 -3.50455e-07 0)
(-3.2707e-05 -7.13558e-07 0)
(-1.97482e-07 6.91719e-07 0)
(-8.51213e-07 9.5731e-07 0)
(-1.60339e-06 1.01113e-06 0)
(-2.3693e-06 1.00239e-06 0)
(-3.12151e-06 9.65269e-07 0)
(-3.84416e-06 9.15896e-07 0)
(-4.53275e-06 8.59131e-07 0)
(-5.18148e-06 7.96677e-07 0)
(-5.78725e-06 7.29583e-07 0)
(-6.34699e-06 6.5912e-07 0)
(-6.85853e-06 5.8663e-07 0)
(-7.32044e-06 5.13364e-07 0)
(-7.7321e-06 4.40319e-07 0)
(-8.09336e-06 3.68504e-07 0)
(-8.40459e-06 2.99009e-07 0)
(-8.66681e-06 2.32532e-07 0)
(-8.88158e-06 1.69919e-07 0)
(-9.05085e-06 1.11953e-07 0)
(-9.17691e-06 5.91144e-08 0)
(-9.26241e-06 1.17336e-08 0)
(-9.3104e-06 -2.98207e-08 0)
(-9.32405e-06 -6.54245e-08 0)
(-9.30658e-06 -9.49772e-08 0)
(-9.26143e-06 -1.18515e-07 0)
(-9.19225e-06 -1.35988e-07 0)
(-9.10273e-06 -1.47179e-07 0)
(-8.99686e-06 -1.52434e-07 0)
(-8.87864e-06 -1.51549e-07 0)
(-8.75189e-06 -1.44769e-07 0)
(-8.62044e-06 -1.32558e-07 0)
(-8.48788e-06 -1.15385e-07 0)
(-8.3576e-06 -9.39479e-08 0)
(-8.2324e-06 -6.87662e-08 0)
(-8.11467e-06 -4.10159e-08 0)
(-8.00622e-06 -1.14012e-08 0)
(-7.90868e-06 1.87192e-08 0)
(-7.82335e-06 4.94647e-08 0)
(-7.75059e-06 8.0532e-08 0)
(-7.69087e-06 1.1049e-07 0)
(-7.6446e-06 1.39846e-07 0)
(-7.61151e-06 1.68423e-07 0)
(-7.59096e-06 1.9522e-07 0)
(-7.58345e-06 2.21797e-07 0)
(-7.58835e-06 2.4652e-07 0)
(-7.60516e-06 2.69943e-07 0)
(-7.63435e-06 2.94036e-07 0)
(-7.67633e-06 3.17763e-07 0)
(-7.73253e-06 3.42154e-07 0)
(-7.80314e-06 3.6843e-07 0)
(-7.88861e-06 3.95814e-07 0)
(-7.99084e-06 4.24572e-07 0)
(-8.11132e-06 4.551e-07 0)
(-8.25165e-06 4.87111e-07 0)
(-8.4135e-06 5.21481e-07 0)
(-8.5991e-06 5.57949e-07 0)
(-8.81029e-06 5.96225e-07 0)
(-9.04877e-06 6.3663e-07 0)
(-9.31653e-06 6.78857e-07 0)
(-9.61522e-06 7.22099e-07 0)
(-9.94561e-06 7.65854e-07 0)
(-1.0309e-05 8.09647e-07 0)
(-1.07061e-05 8.52969e-07 0)
(-1.11364e-05 8.94708e-07 0)
(-1.15996e-05 9.34073e-07 0)
(-1.2095e-05 9.69978e-07 0)
(-1.26213e-05 1.00199e-06 0)
(-1.31766e-05 1.02956e-06 0)
(-1.37586e-05 1.05191e-06 0)
(-1.43648e-05 1.06821e-06 0)
(-1.49925e-05 1.07863e-06 0)
(-1.56388e-05 1.08328e-06 0)
(-1.6301e-05 1.08242e-06 0)
(-1.69763e-05 1.07602e-06 0)
(-1.7662e-05 1.06413e-06 0)
(-1.83556e-05 1.04727e-06 0)
(-1.90548e-05 1.02542e-06 0)
(-1.97569e-05 9.9898e-07 0)
(-2.04603e-05 9.68044e-07 0)
(-2.11632e-05 9.33029e-07 0)
(-2.18642e-05 8.94754e-07 0)
(-2.25623e-05 8.54449e-07 0)
(-2.32567e-05 8.11913e-07 0)
(-2.39479e-05 7.69264e-07 0)
(-2.46358e-05 7.25967e-07 0)
(-2.53219e-05 6.83945e-07 0)
(-2.6008e-05 6.42799e-07 0)
(-2.66954e-05 6.04504e-07 0)
(-2.73864e-05 5.6801e-07 0)
(-2.80828e-05 5.33452e-07 0)
(-2.87852e-05 5.00401e-07 0)
(-2.94937e-05 4.68508e-07 0)
(-3.02103e-05 4.36981e-07 0)
(-3.09295e-05 4.04016e-07 0)
(-3.16614e-05 3.70929e-07 0)
(-3.23725e-05 3.2922e-07 0)
(-3.31179e-05 2.87912e-07 0)
(-3.37698e-05 2.12545e-07 0)
(-3.44754e-05 8.98124e-08 0)
(-3.48726e-05 -2.536e-07 0)
(-3.5014e-05 -9.02888e-07 0)
(-2.04536e-07 9.56368e-07 0)
(-8.84053e-07 1.32016e-06 0)
(-1.66177e-06 1.40091e-06 0)
(-2.45267e-06 1.39061e-06 0)
(-3.22969e-06 1.34286e-06 0)
(-3.97754e-06 1.27764e-06 0)
(-4.69116e-06 1.2021e-06 0)
(-5.36445e-06 1.11874e-06 0)
(-5.99415e-06 1.02911e-06 0)
(-6.57712e-06 9.34822e-07 0)
(-7.1112e-06 8.37573e-07 0)
(-7.5949e-06 7.39039e-07 0)
(-8.02757e-06 6.4058e-07 0)
(-8.40921e-06 5.43422e-07 0)
(-8.7402e-06 4.48914e-07 0)
(-9.02156e-06 3.58127e-07 0)
(-9.25501e-06 2.72079e-07 0)
(-9.4425e-06 1.91765e-07 0)
(-9.58635e-06 1.17889e-07 0)
(-9.68917e-06 5.08187e-08 0)
(-9.75382e-06 -8.95355e-09 0)
(-9.78352e-06 -6.11207e-08 0)
(-9.78156e-06 -1.05613e-07 0)
(-9.75135e-06 -1.42271e-07 0)
(-9.69663e-06 -1.70992e-07 0)
(-9.6212e-06 -1.91573e-07 0)
(-9.52905e-06 -2.04099e-07 0)
(-9.42426e-06 -2.08599e-07 0)
(-9.31062e-06 -2.05297e-07 0)
(-9.19198e-06 -1.94685e-07 0)
(-9.07177e-06 -1.77505e-07 0)
(-8.95329e-06 -1.54397e-07 0)
(-8.83931e-06 -1.26445e-07 0)
(-8.73212e-06 -9.4698e-08 0)
(-8.63361e-06 -6.04497e-08 0)
(-8.54538e-06 -2.4729e-08 0)
(-8.46862e-06 1.18117e-08 0)
(-8.4038e-06 4.88938e-08 0)
(-8.3512e-06 8.51637e-08 0)
(-8.31085e-06 1.20983e-07 0)
(-8.2824e-06 1.55317e-07 0)
(-8.26463e-06 1.87571e-07 0)
(-8.2585e-06 2.19971e-07 0)
(-8.26333e-06 2.49868e-07 0)
(-8.27808e-06 2.78889e-07 0)
(-8.30337e-06 3.08613e-07 0)
(-8.33907e-06 3.38283e-07 0)
(-8.3868e-06 3.69299e-07 0)
(-8.44681e-06 4.02124e-07 0)
(-8.51936e-06 4.36631e-07 0)
(-8.60661e-06 4.73536e-07 0)
(-8.71021e-06 5.12945e-07 0)
(-8.83209e-06 5.55014e-07 0)
(-8.97418e-06 6.00397e-07 0)
(-9.13887e-06 6.48821e-07 0)
(-9.32815e-06 7.00028e-07 0)
(-9.54392e-06 7.54513e-07 0)
(-9.78834e-06 8.11653e-07 0)
(-1.00631e-05 8.70463e-07 0)
(-1.03691e-05 9.30551e-07 0)
(-1.07075e-05 9.90579e-07 0)
(-1.10792e-05 1.05061e-06 0)
(-1.14838e-05 1.10892e-06 0)
(-1.19206e-05 1.16458e-06 0)
(-1.23895e-05 1.2163e-06 0)
(-1.28894e-05 1.26344e-06 0)
(-1.34184e-05 1.30518e-06 0)
(-1.39746e-05 1.34043e-06 0)
(-1.45556e-05 1.36853e-06 0)
(-1.51591e-05 1.38947e-06 0)
(-1.57827e-05 1.40331e-06 0)
(-1.64237e-05 1.41021e-06 0)
(-1.70793e-05 1.41018e-06 0)
(-1.77469e-05 1.40364e-06 0)
(-1.84243e-05 1.39084e-06 0)
(-1.91089e-05 1.37177e-06 0)
(-1.97989e-05 1.34739e-06 0)
(-2.0493e-05 1.31766e-06 0)
(-2.11898e-05 1.28345e-06 0)
(-2.18885e-05 1.24509e-06 0)
(-2.25887e-05 1.20496e-06 0)
(-2.32904e-05 1.16288e-06 0)
(-2.39947e-05 1.12039e-06 0)
(-2.47016e-05 1.07774e-06 0)
(-2.54129e-05 1.03717e-06 0)
(-2.61307e-05 9.99006e-07 0)
(-2.68566e-05 9.64246e-07 0)
(-2.75935e-05 9.32393e-07 0)
(-2.83434e-05 9.03353e-07 0)
(-2.9108e-05 8.76388e-07 0)
(-2.98883e-05 8.50807e-07 0)
(-3.06867e-05 8.25531e-07 0)
(-3.14974e-05 7.98242e-07 0)
(-3.23311e-05 7.68586e-07 0)
(-3.31503e-05 7.27624e-07 0)
(-3.40134e-05 6.80557e-07 0)
(-3.47807e-05 5.86079e-07 0)
(-3.56101e-05 4.0595e-07 0)
(-3.60948e-05 -8.74078e-08 0)
(-3.63072e-05 -1.05515e-06 0)
(-2.08888e-07 1.2284e-06 0)
(-9.05414e-07 1.69343e-06 0)
(-1.70013e-06 1.7991e-06 0)
(-2.50511e-06 1.78682e-06 0)
(-3.29539e-06 1.72854e-06 0)
(-4.05659e-06 1.64745e-06 0)
(-4.78323e-06 1.55298e-06 0)
(-5.46898e-06 1.44846e-06 0)
(-6.11039e-06 1.33593e-06 0)
(-6.70421e-06 1.21746e-06 0)
(-7.24831e-06 1.09512e-06 0)
(-7.74124e-06 9.7096e-07 0)
(-8.18235e-06 8.46745e-07 0)
(-8.57169e-06 7.23978e-07 0)
(-8.90976e-06 6.04208e-07 0)
(-9.19763e-06 4.88893e-07 0)
(-9.43712e-06 3.79292e-07 0)
(-9.63027e-06 2.76467e-07 0)
(-9.77939e-06 1.81315e-07 0)
(-9.8872e-06 9.44971e-08 0)
(-9.95649e-06 1.65175e-08 0)
(-9.99052e-06 -5.2493e-08 0)
(-9.99278e-06 -1.12027e-07 0)
(-9.96664e-06 -1.61892e-07 0)
(-9.91598e-06 -2.01831e-07 0)
(-9.84476e-06 -2.31745e-07 0)
(-9.75696e-06 -2.51497e-07 0)
(-9.65677e-06 -2.61233e-07 0)
(-9.54806e-06 -2.61337e-07 0)
(-9.43463e-06 -2.52179e-07 0)
(-9.32006e-06 -2.34927e-07 0)
(-9.20749e-06 -2.10097e-07 0)
(-9.09975e-06 -1.79305e-07 0)
(-8.9991e-06 -1.43554e-07 0)
(-8.90747e-06 -1.04552e-07 0)
(-8.82641e-06 -6.32571e-08 0)
(-8.7572e-06 -2.08258e-08 0)
(-8.70018e-06 2.23457e-08 0)
(-8.6555e-06 6.46788e-08 0)
(-8.62311e-06 1.06509e-07 0)
(-8.60228e-06 1.46483e-07 0)
(-8.59137e-06 1.84021e-07 0)
(-8.59162e-06 2.21321e-07 0)
(-8.60233e-06 2.55919e-07 0)
(-8.62166e-06 2.89902e-07 0)
(-8.65048e-06 3.24438e-07 0)
(-8.68821e-06 3.59218e-07 0)
(-8.73632e-06 3.95916e-07 0)
(-8.79549e-06 4.34478e-07 0)
(-8.86597e-06 4.75383e-07 0)
(-8.94994e-06 5.19664e-07 0)
(-9.0491e-06 5.67355e-07 0)
(-9.16565e-06 6.18825e-07 0)
(-9.30164e-06 6.74734e-07 0)
(-9.45966e-06 7.3472e-07 0)
(-9.64192e-06 7.98629e-07 0)
(-9.85036e-06 8.66815e-07 0)
(-1.00873e-05 9.38733e-07 0)
(-1.03543e-05 1.01286e-06 0)
(-1.06526e-05 1.08887e-06 0)
(-1.0983e-05 1.16547e-06 0)
(-1.13464e-05 1.24152e-06 0)
(-1.17426e-05 1.31623e-06 0)
(-1.21708e-05 1.38795e-06 0)
(-1.26308e-05 1.45537e-06 0)
(-1.31218e-05 1.51756e-06 0)
(-1.3642e-05 1.57343e-06 0)
(-1.41895e-05 1.62168e-06 0)
(-1.47621e-05 1.66177e-06 0)
(-1.53577e-05 1.69354e-06 0)
(-1.59739e-05 1.71689e-06 0)
(-1.66078e-05 1.73188e-06 0)
(-1.72566e-05 1.73866e-06 0)
(-1.7918e-05 1.73763e-06 0)
(-1.85895e-05 1.72933e-06 0)
(-1.92688e-05 1.71351e-06 0)
(-1.99538e-05 1.69182e-06 0)
(-2.06437e-05 1.66399e-06 0)
(-2.13375e-05 1.63156e-06 0)
(-2.20344e-05 1.59434e-06 0)
(-2.27345e-05 1.55579e-06 0)
(-2.34382e-05 1.51571e-06 0)
(-2.41467e-05 1.47507e-06 0)
(-2.48601e-05 1.43538e-06 0)
(-2.55806e-05 1.39819e-06 0)
(-2.6311e-05 1.3651e-06 0)
(-2.70528e-05 1.33617e-06 0)
(-2.78089e-05 1.31131e-06 0)
(-2.85816e-05 1.29054e-06 0)
(-2.93734e-05 1.27285e-06 0)
(-3.01859e-05 1.25709e-06 0)
(-3.10219e-05 1.24172e-06 0)
(-3.18755e-05 1.22358e-06 0)
(-3.27582e-05 1.20063e-06 0)
(-3.36301e-05 1.16319e-06 0)
(-3.45526e-05 1.11207e-06 0)
(-3.53782e-05 9.9872e-07 0)
(-3.62705e-05 7.56322e-07 0)
(-3.67963e-05 1.01113e-07 0)
(-3.70346e-05 -1.21737e-06 0)
(-2.13503e-07 1.50584e-06 0)
(-9.2414e-07 2.07459e-06 0)
(-1.73235e-06 2.20345e-06 0)
(-2.54851e-06 2.18844e-06 0)
(-3.34891e-06 2.11942e-06 0)
(-4.11978e-06 2.02227e-06 0)
(-4.85535e-06 1.90855e-06 0)
(-5.54912e-06 1.78249e-06 0)
(-6.19755e-06 1.64661e-06 0)
(-6.79731e-06 1.50348e-06 0)
(-7.34633e-06 1.3556e-06 0)
(-7.84321e-06 1.20539e-06 0)
(-8.28731e-06 1.05499e-06 0)
(-8.67869e-06 9.06227e-07 0)
(-9.01796e-06 7.60862e-07 0)
(-9.30633e-06 6.20731e-07 0)
(-9.54577e-06 4.87358e-07 0)
(-9.73844e-06 3.61824e-07 0)
(-9.88662e-06 2.45242e-07 0)
(-9.99308e-06 1.38478e-07 0)
(-1.00609e-05 4.201e-08 0)
(-1.00931e-05 -4.38189e-08 0)
(-1.00933e-05 -1.18382e-07 0)
(-1.00651e-05 -1.81482e-07 0)
(-1.00124e-05 -2.32579e-07 0)
(-9.93927e-06 -2.71688e-07 0)
(-9.84981e-06 -2.98588e-07 0)
(-9.74816e-06 -3.13367e-07 0)
(-9.63844e-06 -3.16654e-07 0)
(-9.52439e-06 -3.08774e-07 0)
(-9.40974e-06 -2.91093e-07 0)
(-9.2977e-06 -2.64383e-07 0)
(-9.19102e-06 -2.30392e-07 0)
(-9.09205e-06 -1.9045e-07 0)
(-9.00282e-06 -1.46293e-07 0)
(-8.92478e-06 -9.92974e-08 0)
(-8.85921e-06 -5.0544e-08 0)
(-8.80648e-06 -1.23785e-09 0)
(-8.76644e-06 4.73348e-08 0)
(-8.73903e-06 9.52416e-08 0)
(-8.72337e-06 1.40745e-07 0)
(-8.71727e-06 1.83694e-07 0)
(-8.7221e-06 2.25601e-07 0)
(-8.73738e-06 2.64468e-07 0)
(-8.76041e-06 3.03137e-07 0)
(-8.7922e-06 3.41841e-07 0)
(-8.83184e-06 3.81106e-07 0)
(-8.8803e-06 4.22728e-07 0)
(-8.93892e-06 4.66645e-07 0)
(-9.00818e-06 5.13597e-07 0)
(-9.09027e-06 5.64799e-07 0)
(-9.18702e-06 6.2043e-07 0)
(-9.30065e-06 6.81024e-07 0)
(-9.43335e-06 7.4723e-07 0)
(-9.58794e-06 8.1869e-07 0)
(-9.7667e-06 8.95298e-07 0)
(-9.9715e-06 9.77149e-07 0)
(-1.0205e-05 1.06375e-06 0)
(-1.04689e-05 1.15325e-06 0)
(-1.07641e-05 1.24523e-06 0)
(-1.10916e-05 1.33827e-06 0)
(-1.14524e-05 1.4306e-06 0)
(-1.18461e-05 1.52166e-06 0)
(-1.22723e-05 1.60945e-06 0)
(-1.27307e-05 1.69265e-06 0)
(-1.32204e-05 1.76997e-06 0)
(-1.37398e-05 1.84011e-06 0)
(-1.4287e-05 1.90156e-06 0)
(-1.48596e-05 1.9537e-06 0)
(-1.54551e-05 1.99634e-06 0)
(-1.60712e-05 2.02926e-06 0)
(-1.6705e-05 2.05241e-06 0)
(-1.7354e-05 2.06611e-06 0)
(-1.80155e-05 2.07068e-06 0)
(-1.86874e-05 2.06666e-06 0)
(-1.93667e-05 2.05461e-06 0)
(-2.00517e-05 2.03547e-06 0)
(-2.07415e-05 2.00963e-06 0)
(-2.14353e-05 1.97886e-06 0)
(-2.21323e-05 1.94387e-06 0)
(-2.28326e-05 1.90697e-06 0)
(-2.35372e-05 1.86882e-06 0)
(-2.42464e-05 1.83096e-06 0)
(-2.49615e-05 1.79513e-06 0)
(-2.56849e-05 1.76239e-06 0)
(-2.64196e-05 1.73502e-06 0)
(-2.71676e-05 1.71318e-06 0)
(-2.79314e-05 1.6965e-06 0)
(-2.87136e-05 1.68524e-06 0)
(-2.95167e-05 1.67819e-06 0)
(-3.03425e-05 1.67402e-06 0)
(-3.11948e-05 1.67048e-06 0)
(-3.20677e-05 1.66348e-06 0)
(-3.29746e-05 1.64951e-06 0)
(-3.38736e-05 1.61765e-06 0)
(-3.48294e-05 1.5641e-06 0)
(-3.5689e-05 1.43241e-06 0)
(-3.66209e-05 1.12572e-06 0)
(-3.71774e-05 3.02524e-07 0)
(-3.7443e-05 -1.37667e-06 0)
(-2.18869e-07 1.78897e-06 0)
(-9.43365e-07 2.46264e-06 0)
(-1.76444e-06 2.6137e-06 0)
(-2.592e-06 2.59526e-06 0)
(-3.40275e-06 2.51505e-06 0)
(-4.18309e-06 2.40143e-06 0)
(-4.92702e-06 2.26797e-06 0)
(-5.62787e-06 2.11978e-06 0)
(-6.28204e-06 1.95994e-06 0)
(-6.8862e-06 1.79156e-06 0)
(-7.4383e-06 1.61758e-06 0)
(-7.93704e-06 1.44077e-06 0)
(-8.3818e-06 1.26365e-06 0)
(-8.7727e-06 1.0884e-06 0)
(-9.1106e-06 9.17052e-07 0)
(-9.39687e-06 7.5176e-07 0)
(-9.63354e-06 5.94348e-07 0)
(-9.82293e-06 4.45885e-07 0)
(-9.96732e-06 3.07617e-07 0)
(-1.00695e-05 1.80732e-07 0)
(-1.01326e-05 6.55099e-08 0)
(-1.01599e-05 -3.71908e-08 0)
(-1.01549e-05 -1.26821e-07 0)
(-1.01215e-05 -2.03117e-07 0)
(-1.00636e-05 -2.65395e-07 0)
(-9.9853e-06 -3.136e-07 0)
(-9.89089e-06 -3.47536e-07 0)
(-9.78445e-06 -3.67286e-07 0)
(-9.6703e-06 -3.73438e-07 0)
(-9.55232e-06 -3.66698e-07 0)
(-9.43423e-06 -3.48194e-07 0)
(-9.31941e-06 -3.19347e-07 0)
(-9.21065e-06 -2.81762e-07 0)
(-9.11038e-06 -2.37303e-07 0)
(-9.02067e-06 -1.8754e-07 0)
(-8.94305e-06 -1.34523e-07 0)
(-8.87864e-06 -7.90792e-08 0)
(-8.82775e-06 -2.33465e-08 0)
(-8.79012e-06 3.17493e-08 0)
(-8.76527e-06 8.57449e-08 0)
(-8.75253e-06 1.36809e-07 0)
(-8.74922e-06 1.85168e-07 0)
(-8.75666e-06 2.31564e-07 0)
(-8.77448e-06 2.74676e-07 0)
(-8.79922e-06 3.17372e-07 0)
(-8.83226e-06 3.59994e-07 0)
(-8.8727e-06 4.03389e-07 0)
(-8.9212e-06 4.49329e-07 0)
(-8.97894e-06 4.98223e-07 0)
(-9.0463e-06 5.5093e-07 0)
(-9.12578e-06 6.08709e-07 0)
(-9.21957e-06 6.72112e-07 0)
(-9.33001e-06 7.41716e-07 0)
(-9.45938e-06 8.18176e-07 0)
(-9.6106e-06 9.01051e-07 0)
(-9.78606e-06 9.9045e-07 0)
(-9.98763e-06 1.08619e-06 0)
(-1.02183e-05 1.18726e-06 0)
(-1.04799e-05 1.29245e-06 0)
(-1.0773e-05 1.4007e-06 0)
(-1.10992e-05 1.51006e-06 0)
(-1.14592e-05 1.61924e-06 0)
(-1.18527e-05 1.72686e-06 0)
(-1.22794e-05 1.83106e-06 0)
(-1.27391e-05 1.9302e-06 0)
(-1.32306e-05 2.02295e-06 0)
(-1.37523e-05 2.10761e-06 0)
(-1.4302e-05 2.18237e-06 0)
(-1.48771e-05 2.24661e-06 0)
(-1.54754e-05 2.30016e-06 0)
(-1.60946e-05 2.34269e-06 0)
(-1.67316e-05 2.37404e-06 0)
(-1.73839e-05 2.39467e-06 0)
(-1.80485e-05 2.4048e-06 0)
(-1.87231e-05 2.40497e-06 0)
(-1.94049e-05 2.39655e-06 0)
(-2.00922e-05 2.3798e-06 0)
(-2.07837e-05 2.3558e-06 0)
(-2.14785e-05 2.32656e-06 0)
(-2.21762e-05 2.29367e-06 0)
(-2.28772e-05 2.25835e-06 0)
(-2.35815e-05 2.22197e-06 0)
(-2.42899e-05 2.18696e-06 0)
(-2.50044e-05 2.1548e-06 0)
(-2.57274e-05 2.12711e-06 0)
(-2.64616e-05 2.10581e-06 0)
(-2.72096e-05 2.0914e-06 0)
(-2.79742e-05 2.08387e-06 0)
(-2.87582e-05 2.08268e-06 0)
(-2.9565e-05 2.08703e-06 0)
(-3.0396e-05 2.09533e-06 0)
(-3.12553e-05 2.10479e-06 0)
(-3.21375e-05 2.11042e-06 0)
(-3.30578e-05 2.10736e-06 0)
(-3.39727e-05 2.08308e-06 0)
(-3.4951e-05 2.02924e-06 0)
(-3.58363e-05 1.88115e-06 0)
(-3.68021e-05 1.51111e-06 0)
(-3.73921e-05 5.17289e-07 0)
(-3.76888e-05 -1.52785e-06 0)
(-2.25186e-07 2.07849e-06 0)
(-9.64418e-07 2.8576e-06 0)
(-1.79895e-06 3.03023e-06 0)
(-2.63927e-06 3.0079e-06 0)
(-3.46176e-06 2.91589e-06 0)
(-4.25245e-06 2.7852e-06 0)
(-5.00531e-06 2.63129e-06 0)
(-5.71352e-06 2.46026e-06 0)
(-6.37347e-06 2.27572e-06 0)
(-6.98179e-06 2.08133e-06 0)
(-7.53647e-06 1.88055e-06 0)
(-8.03639e-06 1.67651e-06 0)
(-8.481e-06 1.47202e-06 0)
(-8.87046e-06 1.26974e-06 0)
(-9.20591e-06 1.072e-06 0)
(-9.489e-06 8.81188e-07 0)
(-9.72169e-06 6.99362e-07 0)
(-9.90632e-06 5.27703e-07 0)
(-1.00454e-05 3.67494e-07 0)
(-1.01418e-05 2.20178e-07 0)
(-1.01985e-05 8.62015e-08 0)
(-1.02192e-05 -3.35885e-08 0)
(-1.02073e-05 -1.38448e-07 0)
(-1.01669e-05 -2.2791e-07 0)
(-1.01019e-05 -3.0139e-07 0)
(-1.00166e-05 -3.58697e-07 0)
(-9.91519e-06 -3.99505e-07 0)
(-9.80211e-06 -4.24159e-07 0)
(-9.68158e-06 -4.32934e-07 0)
(-9.55776e-06 -4.27068e-07 0)
(-9.43436e-06 -4.0749e-07 0)
(-9.31487e-06 -3.76095e-07 0)
(-9.20222e-06 -3.34567e-07 0)
(-9.09907e-06 -2.85056e-07 0)
(-9.00745e-06 -2.2933e-07 0)
(-8.92892e-06 -1.69703e-07 0)
(-8.86462e-06 -1.07301e-07 0)
(-8.81447e-06 -4.47425e-08 0)
(-8.77823e-06 1.71483e-08 0)
(-8.75508e-06 7.72163e-08 0)
(-8.74423e-06 1.34058e-07 0)
(-8.74277e-06 1.87664e-07 0)
(-8.75194e-06 2.38253e-07 0)
(-8.77134e-06 2.85607e-07 0)
(-8.79716e-06 3.32054e-07 0)
(-8.83071e-06 3.78319e-07 0)
(-8.87113e-06 4.25652e-07 0)
(-8.91883e-06 4.75457e-07 0)
(-8.97489e-06 5.28868e-07 0)
(-9.03982e-06 5.86952e-07 0)
(-9.11616e-06 6.51033e-07 0)
(-9.20631e-06 7.22033e-07 0)
(-9.31291e-06 8.00576e-07 0)
(-9.43832e-06 8.87296e-07 0)
(-9.58558e-06 9.81597e-07 0)
(-9.75732e-06 1.08387e-06 0)
(-9.95565e-06 1.19359e-06 0)
(-1.01835e-05 1.30956e-06 0)
(-1.04426e-05 1.43067e-06 0)
(-1.07343e-05 1.55548e-06 0)
(-1.10596e-05 1.68156e-06 0)
(-1.14195e-05 1.80785e-06 0)
(-1.18138e-05 1.93248e-06 0)
(-1.22422e-05 2.05348e-06 0)
(-1.27044e-05 2.16896e-06 0)
(-1.31992e-05 2.2774e-06 0)
(-1.37242e-05 2.37662e-06 0)
(-1.42772e-05 2.46475e-06 0)
(-1.48562e-05 2.54131e-06 0)
(-1.54589e-05 2.60595e-06 0)
(-1.60827e-05 2.6582e-06 0)
(-1.67247e-05 2.69782e-06 0)
(-1.73818e-05 2.72525e-06 0)
(-1.80509e-05 2.74089e-06 0)
(-1.87294e-05 2.74526e-06 0)
(-1.9415e-05 2.73984e-06 0)
(-2.01059e-05 2.72516e-06 0)
(-2.07999e-05 2.70318e-06 0)
(-2.14962e-05 2.67521e-06 0)
(-2.2195e-05 2.64345e-06 0)
(-2.28963e-05 2.60955e-06 0)
(-2.35998e-05 2.57509e-06 0)
(-2.43066e-05 2.54235e-06 0)
(-2.50194e-05 2.51357e-06 0)
(-2.574e-05 2.49081e-06 0)
(-2.64714e-05 2.47568e-06 0)
(-2.72164e-05 2.46874e-06 0)
(-2.79779e-05 2.47063e-06 0)
(-2.87594e-05 2.48007e-06 0)
(-2.95649e-05 2.49663e-06 0)
(-3.03966e-05 2.51825e-06 0)
(-3.12589e-05 2.54183e-06 0)
(-3.21467e-05 2.56153e-06 0)
(-3.3077e-05 2.57131e-06 0)
(-3.40054e-05 2.55697e-06 0)
(-3.50047e-05 2.50568e-06 0)
(-3.59158e-05 2.3442e-06 0)
(-3.69166e-05 1.91359e-06 0)
(-3.75447e-05 7.47523e-07 0)
(-3.78672e-05 -1.67231e-06 0)
(-2.32502e-07 2.37527e-06 0)
(-9.87916e-07 3.25995e-06 0)
(-1.83709e-06 3.45371e-06 0)
(-2.69198e-06 3.42728e-06 0)
(-3.52804e-06 3.32263e-06 0)
(-4.33045e-06 3.17411e-06 0)
(-5.09331e-06 2.9989e-06 0)
(-5.80959e-06 2.80414e-06 0)
(-6.47576e-06 2.59405e-06 0)
(-7.08849e-06 2.37278e-06 0)
(-7.64581e-06 2.14438e-06 0)
(-8.1467e-06 1.91238e-06 0)
(-8.59082e-06 1.67986e-06 0)
(-8.97846e-06 1.44991e-06 0)
(-9.31092e-06 1.22532e-06 0)
(-9.59013e-06 1.00861e-06 0)
(-9.81812e-06 8.01926e-07 0)
(-9.99712e-06 6.06677e-07 0)
(-1.01299e-05 4.24306e-07 0)
(-1.02194e-05 2.56287e-07 0)
(-1.02688e-05 1.03235e-07 0)
(-1.02816e-05 -3.37064e-08 0)
(-1.02616e-05 -1.53947e-07 0)
(-1.02128e-05 -2.56646e-07 0)
(-1.01394e-05 -3.41307e-07 0)
(-1.00456e-05 -4.07714e-07 0)
(-9.93588e-06 -4.5531e-07 0)
(-9.8148e-06 -4.84628e-07 0)
(-9.68664e-06 -4.95937e-07 0)
(-9.55562e-06 -4.90558e-07 0)
(-9.42565e-06 -4.69703e-07 0)
(-9.3003e-06 -4.35285e-07 0)
(-9.1827e-06 -3.89427e-07 0)
(-9.07572e-06 -3.34208e-07 0)
(-8.98151e-06 -2.72081e-07 0)
(-8.90152e-06 -2.05227e-07 0)
(-8.8367e-06 -1.35521e-07 0)
(-8.78684e-06 -6.5756e-08 0)
(-8.75156e-06 3.0659e-09 0)
(-8.72962e-06 6.93665e-08 0)
(-8.72007e-06 1.32115e-07 0)
(-8.72029e-06 1.90943e-07 0)
(-8.73152e-06 2.45863e-07 0)
(-8.75275e-06 2.97245e-07 0)
(-8.77973e-06 3.47157e-07 0)
(-8.81356e-06 3.96598e-07 0)
(-8.85349e-06 4.47453e-07 0)
(-8.89972e-06 5.00764e-07 0)
(-8.95335e-06 5.58274e-07 0)
(-9.01532e-06 6.21363e-07 0)
(-9.08799e-06 6.91553e-07 0)
(-9.17395e-06 7.69906e-07 0)
(-9.2762e-06 8.57289e-07 0)
(-9.39717e-06 9.54303e-07 0)
(-9.53996e-06 1.06008e-06 0)
(-9.70758e-06 1.17537e-06 0)
(-9.90233e-06 1.2992e-06 0)
(-1.0127e-05 1.43069e-06 0)
(-1.03838e-05 1.56794e-06 0)
(-1.06739e-05 1.70962e-06 0)
(-1.09989e-05 1.8531e-06 0)
(-1.13591e-05 1.99678e-06 0)
(-1.17548e-05 2.13888e-06 0)
(-1.21857e-05 2.27719e-06 0)
(-1.26516e-05 2.40959e-06 0)
(-1.31506e-05 2.53381e-06 0)
(-1.36799e-05 2.64754e-06 0)
(-1.42374e-05 2.74923e-06 0)
(-1.48216e-05 2.83842e-06 0)
(-1.54298e-05 2.9143e-06 0)
(-1.60592e-05 2.97633e-06 0)
(-1.67068e-05 3.02427e-06 0)
(-1.73694e-05 3.0584e-06 0)
(-1.80438e-05 3.07936e-06 0)
(-1.87273e-05 3.08777e-06 0)
(-1.94175e-05 3.08514e-06 0)
(-2.01121e-05 3.07211e-06 0)
(-2.08091e-05 3.05176e-06 0)
(-2.15076e-05 3.02461e-06 0)
(-2.22074e-05 2.99353e-06 0)
(-2.29086e-05 2.96047e-06 0)
(-2.36108e-05 2.92752e-06 0)
(-2.43157e-05 2.89676e-06 0)
(-2.50258e-05 2.87108e-06 0)
(-2.57429e-05 2.85281e-06 0)
(-2.64702e-05 2.84373e-06 0)
(-2.72106e-05 2.84419e-06 0)
(-2.79673e-05 2.85528e-06 0)
(-2.87446e-05 2.8759e-06 0)
(-2.9547e-05 2.90543e-06 0)
(-3.03775e-05 2.9415e-06 0)
(-3.12413e-05 2.98053e-06 0)
(-3.21336e-05 3.01611e-06 0)
(-3.30733e-05 3.04102e-06 0)
(-3.40157e-05 3.03951e-06 0)
(-3.50379e-05 2.99438e-06 0)
(-3.59784e-05 2.82339e-06 0)
(-3.70202e-05 2.33608e-06 0)
(-3.76952e-05 9.95945e-07 0)
(-3.80502e-05 -1.81164e-06 0)
(-2.40784e-07 2.68023e-06 0)
(-1.01424e-06 3.67047e-06 0)
(-1.87972e-06 3.88497e-06 0)
(-2.75112e-06 3.8544e-06 0)
(-3.60271e-06 3.73613e-06 0)
(-4.41831e-06 3.56882e-06 0)
(-5.19235e-06 3.37131e-06 0)
(-5.91765e-06 3.15177e-06 0)
(-6.59065e-06 2.91513e-06 0)
(-7.2082e-06 2.66606e-06 0)
(-7.76843e-06 2.40911e-06 0)
(-8.27029e-06 2.14828e-06 0)
(-8.71365e-06 1.88701e-06 0)
(-9.09919e-06 1.62876e-06 0)
(-9.42833e-06 1.37673e-06 0)
(-9.70305e-06 1.13368e-06 0)
(-9.92565e-06 9.01709e-07 0)
(-1.00984e-05 6.82396e-07 0)
(-1.0224e-05 4.77542e-07 0)
(-1.03058e-05 2.88542e-07 0)
(-1.03469e-05 1.16164e-07 0)
(-1.03508e-05 -3.81413e-08 0)
(-1.03216e-05 -1.73852e-07 0)
(-1.02634e-05 -2.89929e-07 0)
(-1.01802e-05 -3.85823e-07 0)
(-1.00768e-05 -4.61202e-07 0)
(-9.95758e-06 -5.15599e-07 0)
(-9.82722e-06 -5.49286e-07 0)
(-9.69025e-06 -5.62992e-07 0)
(-9.55088e-06 -5.57781e-07 0)
(-9.41324e-06 -5.35303e-07 0)
(-9.28106e-06 -4.97425e-07 0)
(-9.15772e-06 -4.46677e-07 0)
(-9.04626e-06 -3.85143e-07 0)
(-8.94885e-06 -3.15982e-07 0)
(-8.86688e-06 -2.4139e-07 0)
(-8.80112e-06 -1.63904e-07 0)
(-8.75127e-06 -8.65558e-08 0)
(-8.71665e-06 -1.05567e-08 0)
(-8.69607e-06 6.21958e-08 0)
(-8.68854e-06 1.30946e-07 0)
(-8.69108e-06 1.95202e-07 0)
(-8.7044e-06 2.54462e-07 0)
(-8.72729e-06 3.09642e-07 0)
(-8.75537e-06 3.62573e-07 0)
(-8.78932e-06 4.14767e-07 0)
(-8.82852e-06 4.68609e-07 0)
(-8.87297e-06 5.24995e-07 0)
(-8.92379e-06 5.86191e-07 0)
(-8.98236e-06 6.53926e-07 0)
(-9.05099e-06 7.30026e-07 0)
(-9.13245e-06 8.15576e-07 0)
(-9.22987e-06 9.11621e-07 0)
(-9.34591e-06 1.01889e-06 0)
(-9.48376e-06 1.13637e-06 0)
(-9.64678e-06 1.26476e-06 0)
(-9.83748e-06 1.4031e-06 0)
(-1.00588e-05 1.55039e-06 0)
(-1.03131e-05 1.70424e-06 0)
(-1.06017e-05 1.86328e-06 0)
(-1.09263e-05 2.02471e-06 0)
(-1.12873e-05 2.18636e-06 0)
(-1.16852e-05 2.34655e-06 0)
(-1.21196e-05 2.50275e-06 0)
(-1.25895e-05 2.65233e-06 0)
(-1.30927e-05 2.79242e-06 0)
(-1.3627e-05 2.92087e-06 0)
(-1.41903e-05 3.03648e-06 0)
(-1.47808e-05 3.1385e-06 0)
(-1.53958e-05 3.22571e-06 0)
(-1.60318e-05 3.2975e-06 0)
(-1.66859e-05 3.35372e-06 0)
(-1.73549e-05 3.39449e-06 0)
(-1.80354e-05 3.42057e-06 0)
(-1.87245e-05 3.43278e-06 0)
(-1.942e-05 3.43277e-06 0)
(-2.01187e-05 3.42111e-06 0)
(-2.0819e-05 3.40148e-06 0)
(-2.15199e-05 3.37476e-06 0)
(-2.22208e-05 3.34392e-06 0)
(-2.29216e-05 3.31099e-06 0)
(-2.36223e-05 3.27888e-06 0)
(-2.43246e-05 3.24973e-06 0)
(-2.50309e-05 3.22687e-06 0)
(-2.57434e-05 3.21263e-06 0)
(-2.64654e-05 3.20932e-06 0)
(-2.71997e-05 3.21692e-06 0)
(-2.79505e-05 3.23733e-06 0)
(-2.87226e-05 3.2696e-06 0)
(-2.95209e-05 3.31288e-06 0)
(-3.03494e-05 3.36453e-06 0)
(-3.12138e-05 3.42059e-06 0)
(-3.21104e-05 3.4741e-06 0)
(-3.30597e-05 3.51679e-06 0)
(-3.40174e-05 3.53165e-06 0)
(-3.50647e-05 3.497e-06 0)
(-3.60388e-05 3.32153e-06 0)
(-3.71275e-05 2.78251e-06 0)
(-3.78576e-05 1.26685e-06 0)
(-3.82539e-05 -1.94266e-06 0)
(-2.50026e-07 2.99438e-06 0)
(-1.04373e-06 4.0902e-06 0)
(-1.92761e-06 4.32492e-06 0)
(-2.81742e-06 4.2903e-06 0)
(-3.68646e-06 4.15724e-06 0)
(-4.51679e-06 3.97e-06 0)
(-5.30326e-06 3.74906e-06 0)
(-6.03861e-06 3.50358e-06 0)
(-6.71923e-06 3.23925e-06 0)
(-7.34207e-06 2.96134e-06 0)
(-7.90541e-06 2.67482e-06 0)
(-8.40827e-06 2.38416e-06 0)
(-8.85071e-06 2.09332e-06 0)
(-9.23379e-06 1.80612e-06 0)
(-9.55926e-06 1.52604e-06 0)
(-9.82902e-06 1.25605e-06 0)
(-1.00455e-05 9.98344e-07 0)
(-1.02112e-05 7.54546e-07 0)
(-1.0329e-05 5.26764e-07 0)
(-1.04022e-05 3.16454e-07 0)
(-1.04341e-05 1.24566e-07 0)
(-1.04282e-05 -4.73928e-08 0)
(-1.03888e-05 -1.98705e-07 0)
(-1.032e-05 -3.28274e-07 0)
(-1.0226e-05 -4.35538e-07 0)
(-1.01117e-05 -5.19789e-07 0)
(-9.98175e-06 -5.80906e-07 0)
(-9.84084e-06 -6.18825e-07 0)
(-9.69375e-06 -6.34612e-07 0)
(-9.54484e-06 -6.29332e-07 0)
(-9.39844e-06 -6.04739e-07 0)
(-9.25852e-06 -5.62949e-07 0)
(-9.12867e-06 -5.06617e-07 0)
(-9.01218e-06 -4.38122e-07 0)
(-8.91125e-06 -3.61193e-07 0)
(-8.82721e-06 -2.78312e-07 0)
(-8.76066e-06 -1.92436e-07 0)
(-8.71141e-06 -1.06964e-07 0)
(-8.67859e-06 -2.34281e-08 0)
(-8.66039e-06 5.61235e-08 0)
(-8.65522e-06 1.30886e-07 0)
(-8.65981e-06 2.00388e-07 0)
(-8.67489e-06 2.63787e-07 0)
(-8.69927e-06 3.22387e-07 0)
(-8.72831e-06 3.78129e-07 0)
(-8.76203e-06 4.32695e-07 0)
(-8.79998e-06 4.88969e-07 0)
(-8.84221e-06 5.4796e-07 0)
(-8.88987e-06 6.12438e-07 0)
(-8.94467e-06 6.84455e-07 0)
(-9.00878e-06 7.66146e-07 0)
(-9.08508e-06 8.58764e-07 0)
(-9.17693e-06 9.63353e-07 0)
(-9.2874e-06 1.08075e-06 0)
(-9.41978e-06 1.2102e-06 0)
(-9.57753e-06 1.35185e-06 0)
(-9.7635e-06 1.50532e-06 0)
(-9.98104e-06 1.66828e-06 0)
(-1.02324e-05 1.83937e-06 0)
(-1.0519e-05 2.01641e-06 0)
(-1.08427e-05 2.19634e-06 0)
(-1.12041e-05 2.37655e-06 0)
(-1.16034e-05 2.55552e-06 0)
(-1.20399e-05 2.72971e-06 0)
(-1.25122e-05 2.89677e-06 0)
(-1.30194e-05 3.05344e-06 0)
(-1.35599e-05 3.19735e-06 0)
(-1.41309e-05 3.32729e-06 0)
(-1.47295e-05 3.44229e-06 0)
(-1.53527e-05 3.54093e-06 0)
(-1.59971e-05 3.62242e-06 0)
(-1.66594e-05 3.68679e-06 0)
(-1.73361e-05 3.73402e-06 0)
(-1.80239e-05 3.765e-06 0)
(-1.87198e-05 3.78069e-06 0)
(-1.94213e-05 3.78267e-06 0)
(-2.01249e-05 3.77235e-06 0)
(-2.08289e-05 3.75278e-06 0)
(-2.15325e-05 3.72584e-06 0)
(-2.22345e-05 3.69445e-06 0)
(-2.29349e-05 3.66098e-06 0)
(-2.36337e-05 3.62906e-06 0)
(-2.43328e-05 3.60093e-06 0)
(-2.50345e-05 3.58039e-06 0)
(-2.57415e-05 3.56948e-06 0)
(-2.64574e-05 3.57199e-06 0)
(-2.71847e-05 3.58647e-06 0)
(-2.79284e-05 3.6164e-06 0)
(-2.86943e-05 3.66067e-06 0)
(-2.94876e-05 3.71856e-06 0)
(-3.03129e-05 3.78688e-06 0)
(-3.1177e-05 3.86181e-06 0)
(-3.20774e-05 3.93553e-06 0)
(-3.30366e-05 3.99905e-06 0)
(-3.40106e-05 4.03423e-06 0)
(-3.50849e-05 4.01486e-06 0)
(-3.6095e-05 3.84069e-06 0)
(-3.72332e-05 3.25514e-06 0)
(-3.80208e-05 1.56275e-06 0)
(-3.84568e-05 -2.06494e-06 0)
(-2.60251e-07 3.31876e-06 0)
(-1.07668e-06 4.52041e-06 0)
(-1.98141e-06 4.77453e-06 0)
(-2.89159e-06 4.73591e-06 0)
(-3.77986e-06 4.58681e-06 0)
(-4.62656e-06 4.37836e-06 0)
(-5.42681e-06 4.13275e-06 0)
(-6.17328e-06 3.86006e-06 0)
(-6.86237e-06 3.56674e-06 0)
(-7.49098e-06 3.25875e-06 0)
(-8.05755e-06 2.94152e-06 0)
(-8.56138e-06 2.61999e-06 0)
(-9.00278e-06 2.29865e-06 0)
(-9.38308e-06 1.98178e-06 0)
(-9.70434e-06 1.67301e-06 0)
(-9.96858e-06 1.37542e-06 0)
(-1.01782e-05 1.09142e-06 0)
(-1.03362e-05 8.22765e-07 0)
(-1.04455e-05 5.71642e-07 0)
(-1.05092e-05 3.39663e-07 0)
(-1.05309e-05 1.27943e-07 0)
(-1.05144e-05 -6.19342e-08 0)
(-1.04637e-05 -2.29083e-07 0)
(-1.03831e-05 -3.72288e-07 0)
(-1.02772e-05 -4.90988e-07 0)
(-1.01507e-05 -5.84168e-07 0)
(-1.00087e-05 -6.51805e-07 0)
(-9.85598e-06 -6.93891e-07 0)
(-9.69744e-06 -7.1142e-07 0)
(-9.53775e-06 -7.05759e-07 0)
(-9.38143e-06 -6.78544e-07 0)
(-9.23283e-06 -6.32224e-07 0)
(-9.0959e-06 -5.69541e-07 0)
(-8.97391e-06 -4.93346e-07 0)
(-8.86909e-06 -4.07807e-07 0)
(-8.78321e-06 -3.15781e-07 0)
(-8.7165e-06 -2.20872e-07 0)
(-8.66837e-06 -1.26584e-07 0)
(-8.63787e-06 -3.50177e-08 0)
(-8.62294e-06 5.16411e-08 0)
(-8.6214e-06 1.3234e-07 0)
(-8.62924e-06 2.06931e-07 0)
(-8.64689e-06 2.74073e-07 0)
(-8.67298e-06 3.35645e-07 0)
(-8.70284e-06 3.93823e-07 0)
(-8.73617e-06 4.50173e-07 0)
(-8.77251e-06 5.08229e-07 0)
(-8.81183e-06 5.69358e-07 0)
(-8.85543e-06 6.3667e-07 0)
(-8.90546e-06 7.12592e-07 0)
(-8.96413e-06 7.99528e-07 0)
(-9.03436e-06 8.98976e-07 0)
(-9.11954e-06 1.01205e-06 0)
(-9.22313e-06 1.13949e-06 0)
(-9.34883e-06 1.281e-06 0)
(-9.50003e-06 1.43636e-06 0)
(-9.68026e-06 1.60489e-06 0)
(-9.89279e-06 1.78415e-06 0)
(-1.01397e-05 1.97288e-06 0)
(-1.04232e-05 2.16856e-06 0)
(-1.07452e-05 2.3676e-06 0)
(-1.11057e-05 2.56729e-06 0)
(-1.15058e-05 2.76501e-06 0)
(-1.19453e-05 2.95801e-06 0)
(-1.24219e-05 3.14328e-06 0)
(-1.29347e-05 3.31735e-06 0)
(-1.34823e-05 3.47744e-06 0)
(-1.40614e-05 3.62224e-06 0)
(-1.46688e-05 3.75045e-06 0)
(-1.53013e-05 3.86061e-06 0)
(-1.59551e-05 3.95182e-06 0)
(-1.66267e-05 4.02417e-06 0)
(-1.73123e-05 4.07761e-06 0)
(-1.80084e-05 4.1132e-06 0)
(-1.87121e-05 4.13198e-06 0)
(-1.94204e-05 4.13554e-06 0)
(-2.01297e-05 4.12589e-06 0)
(-2.0838e-05 4.1058e-06 0)
(-2.15444e-05 4.07783e-06 0)
(-2.22475e-05 4.04506e-06 0)
(-2.29472e-05 4.01038e-06 0)
(-2.36438e-05 3.97775e-06 0)
(-2.43389e-05 3.95008e-06 0)
(-2.50355e-05 3.93117e-06 0)
(-2.57364e-05 3.92324e-06 0)
(-2.64455e-05 3.93106e-06 0)
(-2.71655e-05 3.9526e-06 0)
(-2.79014e-05 3.99203e-06 0)
(-2.86599e-05 4.04859e-06 0)
(-2.9447e-05 4.12179e-06 0)
(-3.02677e-05 4.20813e-06 0)
(-3.11305e-05 4.30391e-06 0)
(-3.20343e-05 4.40033e-06 0)
(-3.30034e-05 4.48816e-06 0)
(-3.39945e-05 4.54789e-06 0)
(-3.50972e-05 4.54899e-06 0)
(-3.61457e-05 4.38195e-06 0)
(-3.73352e-05 3.75441e-06 0)
(-3.81803e-05 1.88356e-06 0)
(-3.86561e-05 -2.1802e-06 0)
(-2.7148e-07 3.65449e-06 0)
(-1.11306e-06 4.9624e-06 0)
(-2.04147e-06 5.23501e-06 0)
(-2.97423e-06 5.19211e-06 0)
(-3.88345e-06 5.02572e-06 0)
(-4.74826e-06 4.79468e-06 0)
(-5.56375e-06 4.52298e-06 0)
(-6.32243e-06 4.22165e-06 0)
(-7.02072e-06 3.89793e-06 0)
(-7.65557e-06 3.55845e-06 0)
(-8.22552e-06 3.20923e-06 0)
(-8.73023e-06 2.85572e-06 0)
(-9.17039e-06 2.50291e-06 0)
(-9.54756e-06 2.15551e-06 0)
(-9.86397e-06 1.81732e-06 0)
(-1.01219e-05 1.49149e-06 0)
(-1.03241e-05 1.18059e-06 0)
(-1.04735e-05 8.86635e-07 0)
(-1.05734e-05 6.11796e-07 0)
(-1.06269e-05 3.57752e-07 0)
(-1.06376e-05 1.2593e-07 0)
(-1.06092e-05 -8.22683e-08 0)
(-1.05462e-05 -2.65516e-07 0)
(-1.04527e-05 -4.22603e-07 0)
(-1.03335e-05 -5.52759e-07 0)
(-1.01936e-05 -6.54938e-07 0)
(-1.00382e-05 -7.28969e-07 0)
(-9.87237e-06 -7.75089e-07 0)
(-9.70097e-06 -7.94129e-07 0)
(-9.52907e-06 -7.87661e-07 0)
(-9.36171e-06 -7.57247e-07 0)
(-9.20347e-06 -7.05667e-07 0)
(-9.05864e-06 -6.35719e-07 0)
(-8.93072e-06 -5.5098e-07 0)
(-8.8218e-06 -4.55942e-07 0)
(-8.7335e-06 -3.5384e-07 0)
(-8.66611e-06 -2.49099e-07 0)
(-8.61905e-06 -1.45286e-07 0)
(-8.59094e-06 -4.51332e-08 0)
(-8.57934e-06 4.89986e-08 0)
(-8.58156e-06 1.35734e-07 0)
(-8.59346e-06 2.15337e-07 0)
(-8.61479e-06 2.85728e-07 0)
(-8.64337e-06 3.49836e-07 0)
(-8.67477e-06 4.09729e-07 0)
(-8.70834e-06 4.6732e-07 0)
(-8.74346e-06 5.26351e-07 0)
(-8.78014e-06 5.89025e-07 0)
(-8.81963e-06 6.58554e-07 0)
(-8.86441e-06 7.37891e-07 0)
(-8.9168e-06 8.29772e-07 0)
(-8.97999e-06 9.35685e-07 0)
(-9.0575e-06 1.05706e-06 0)
(-9.15309e-06 1.19455e-06 0)
(-9.27092e-06 1.34816e-06 0)
(-9.41479e-06 1.51752e-06 0)
(-9.58832e-06 1.70121e-06 0)
(-9.79503e-06 1.89786e-06 0)
(-1.00373e-05 2.10479e-06 0)
(-1.03178e-05 2.31931e-06 0)
(-1.06383e-05 2.53814e-06 0)
(-1.09989e-05 2.75817e-06 0)
(-1.14005e-05 2.9756e-06 0)
(-1.18432e-05 3.18826e-06 0)
(-1.2325e-05 3.39251e-06 0)
(-1.28442e-05 3.58458e-06 0)
(-1.33992e-05 3.76145e-06 0)
(-1.39868e-05 3.92157e-06 0)
(-1.46036e-05 4.06331e-06 0)
(-1.5246e-05 4.1852e-06 0)
(-1.59101e-05 4.28616e-06 0)
(-1.6592e-05 4.36628e-06 0)
(-1.72876e-05 4.42593e-06 0)
(-1.79932e-05 4.46572e-06 0)
(-1.87054e-05 4.48712e-06 0)
(-1.94214e-05 4.49172e-06 0)
(-2.0137e-05 4.48203e-06 0)
(-2.085e-05 4.46065e-06 0)
(-2.15595e-05 4.43075e-06 0)
(-2.22637e-05 4.39574e-06 0)
(-2.29624e-05 4.35898e-06 0)
(-2.36565e-05 4.32482e-06 0)
(-2.43475e-05 4.29673e-06 0)
(-2.50386e-05 4.27879e-06 0)
(-2.57327e-05 4.2741e-06 0)
(-2.64341e-05 4.28599e-06 0)
(-2.71455e-05 4.31473e-06 0)
(-2.78719e-05 4.36347e-06 0)
(-2.86213e-05 4.4326e-06 0)
(-2.94001e-05 4.52184e-06 0)
(-3.02146e-05 4.62766e-06 0)
(-3.10746e-05 4.74623e-06 0)
(-3.19808e-05 4.86825e-06 0)
(-3.29589e-05 4.9841e-06 0)
(-3.39669e-05 5.07297e-06 0)
(-3.50987e-05 5.1003e-06 0)
(-3.6188e-05 4.9468e-06 0)
(-3.74343e-05 4.28222e-06 0)
(-3.83439e-05 2.23122e-06 0)
(-3.8872e-05 -2.28702e-06 0)
(-2.83785e-07 4.00265e-06 0)
(-1.15277e-06 5.41744e-06 0)
(-2.10782e-06 5.70788e-06 0)
(-3.0658e-06 5.6598e-06 0)
(-3.99773e-06 5.47488e-06 0)
(-4.88239e-06 5.21977e-06 0)
(-5.71454e-06 4.92038e-06 0)
(-6.48649e-06 4.58881e-06 0)
(-7.19467e-06 4.23308e-06 0)
(-7.83612e-06 3.86058e-06 0)
(-8.4096e-06 3.47796e-06 0)
(-8.91511e-06 3.09126e-06 0)
(-9.35367e-06 2.70591e-06 0)
(-9.72712e-06 2.32702e-06 0)
(-1.0038e-05 1.95857e-06 0)
(-1.02888e-05 1.60385e-06 0)
(-1.04827e-05 1.26547e-06 0)
(-1.06226e-05 9.45713e-07 0)
(-1.0712e-05 6.46734e-07 0)
(-1.07541e-05 3.70187e-07 0)
(-1.07526e-05 1.17824e-07 0)
(-1.07115e-05 -1.0891e-07 0)
(-1.0635e-05 -3.08521e-07 0)
(-1.05276e-05 -4.79721e-07 0)
(-1.03941e-05 -6.21435e-07 0)
(-1.02397e-05 -7.32699e-07 0)
(-1.00695e-05 -8.13135e-07 0)
(-9.88883e-06 -8.63159e-07 0)
(-9.70305e-06 -8.83455e-07 0)
(-9.51759e-06 -8.75694e-07 0)
(-9.33812e-06 -8.41292e-07 0)
(-9.16964e-06 -7.83619e-07 0)
(-9.01639e-06 -7.05478e-07 0)
(-8.88191e-06 -6.11204e-07 0)
(-8.76864e-06 -5.05645e-07 0)
(-8.67806e-06 -3.92637e-07 0)
(-8.61019e-06 -2.77119e-07 0)
(-8.56435e-06 -1.6305e-07 0)
(-8.53865e-06 -5.37986e-08 0)
(-8.5301e-06 4.80465e-08 0)
(-8.53552e-06 1.40973e-07 0)
(-8.55129e-06 2.25507e-07 0)
(-8.57665e-06 2.99023e-07 0)
(-8.60852e-06 3.65344e-07 0)
(-8.64219e-06 4.26134e-07 0)
(-8.67647e-06 4.84454e-07 0)
(-8.71094e-06 5.43614e-07 0)
(-8.74542e-06 6.07061e-07 0)
(-8.78105e-06 6.78014e-07 0)
(-8.82034e-06 7.60258e-07 0)
(-8.86588e-06 8.5649e-07 0)
(-8.92129e-06 9.68422e-07 0)
(-8.9903e-06 1.09781e-06 0)
(-9.07697e-06 1.24541e-06 0)
(-9.18603e-06 1.41124e-06 0)
(-9.32185e-06 1.59484e-06 0)
(-9.48812e-06 1.79449e-06 0)
(-9.6886e-06 2.00886e-06 0)
(-9.92621e-06 2.23479e-06 0)
(-1.02036e-05 2.46899e-06 0)
(-1.05227e-05 2.70836e-06 0)
(-1.08838e-05 2.9493e-06 0)
(-1.12878e-05 3.18799e-06 0)
(-1.17347e-05 3.42097e-06 0)
(-1.22227e-05 3.64487e-06 0)
(-1.27494e-05 3.85555e-06 0)
(-1.33128e-05 4.04981e-06 0)
(-1.39098e-05 4.22565e-06 0)
(-1.4537e-05 4.38125e-06 0)
(-1.519e-05 4.51501e-06 0)
(-1.58649e-05 4.62577e-06 0)
(-1.65575e-05 4.71361e-06 0)
(-1.72636e-05 4.77925e-06 0)
(-1.79793e-05 4.82292e-06 0)
(-1.87009e-05 4.84636e-06 0)
(-1.94251e-05 4.85161e-06 0)
(-2.01474e-05 4.8411e-06 0)
(-2.0866e-05 4.81767e-06 0)
(-2.15795e-05 4.78493e-06 0)
(-2.22858e-05 4.74671e-06 0)
(-2.29851e-05 4.70717e-06 0)
(-2.36781e-05 4.67052e-06 0)
(-2.43657e-05 4.64095e-06 0)
(-2.50512e-05 4.62324e-06 0)
(-2.57373e-05 4.62099e-06 0)
(-2.64288e-05 4.63625e-06 0)
(-2.71292e-05 4.67164e-06 0)
(-2.7844e-05 4.7296e-06 0)
(-2.85816e-05 4.81156e-06 0)
(-2.93498e-05 4.91769e-06 0)
(-3.01554e-05 5.04434e-06 0)
(-3.10102e-05 5.18772e-06 0)
(-3.19162e-05 5.3385e-06 0)
(-3.29016e-05 5.48628e-06 0)
(-3.39253e-05 5.60939e-06 0)
(-3.50862e-05 5.66945e-06 0)
(-3.62183e-05 5.53714e-06 0)
(-3.75257e-05 4.84173e-06 0)
(-3.85035e-05 2.60885e-06 0)
(-3.90927e-05 -2.37995e-06 0)
(-2.97378e-07 4.36444e-06 0)
(-1.1962e-06 5.88667e-06 0)
(-2.18076e-06 6.19479e-06 0)
(-3.16671e-06 6.13994e-06 0)
(-4.12322e-06 5.93519e-06 0)
(-5.02949e-06 5.6544e-06 0)
(-5.87966e-06 5.32556e-06 0)
(-6.66581e-06 4.96194e-06 0)
(-7.38449e-06 4.57245e-06 0)
(-8.03283e-06 4.16525e-06 0)
(-8.6098e-06 3.74768e-06 0)
(-9.11579e-06 3.32644e-06 0)
(-9.55221e-06 2.90737e-06 0)
(-9.92121e-06 2.49594e-06 0)
(-1.02256e-05 2.09637e-06 0)
(-1.04684e-05 1.71206e-06 0)
(-1.0653e-05 1.3456e-06 0)
(-1.07825e-05 9.9949e-07 0)
(-1.08603e-05 6.7594e-07 0)
(-1.08903e-05 3.76485e-07 0)
(-1.08757e-05 1.03086e-07 0)
(-1.08207e-05 -1.42315e-07 0)
(-1.073e-05 -3.5864e-07 0)
(-1.06077e-05 -5.4419e-07 0)
(-1.04586e-05 -6.97623e-07 0)
(-1.02882e-05 -8.18156e-07 0)
(-1.01017e-05 -9.05087e-07 0)
(-9.90474e-06 -9.58862e-07 0)
(-9.70331e-06 -9.80017e-07 0)
(-9.50344e-06 -9.70322e-07 0)
(-9.31107e-06 -9.31123e-07 0)
(-9.1315e-06 -8.66329e-07 0)
(-8.9694e-06 -7.79013e-07 0)
(-8.82818e-06 -6.74186e-07 0)
(-8.7103e-06 -5.56958e-07 0)
(-8.61753e-06 -4.31961e-07 0)
(-8.54971e-06 -3.04732e-07 0)
(-8.5057e-06 -1.79655e-07 0)
(-8.48324e-06 -6.0784e-08 0)
(-8.47903e-06 4.90507e-08 0)
(-8.48918e-06 1.48359e-07 0)
(-8.51025e-06 2.37832e-07 0)
(-8.54054e-06 3.1438e-07 0)
(-8.57582e-06 3.82312e-07 0)
(-8.61162e-06 4.43283e-07 0)
(-8.64653e-06 5.01478e-07 0)
(-8.67984e-06 5.59969e-07 0)
(-8.71125e-06 6.23333e-07 0)
(-8.74203e-06 6.9492e-07 0)
(-8.77471e-06 7.7932e-07 0)
(-8.81227e-06 8.79203e-07 0)
(-8.85868e-06 9.96713e-07 0)
(-8.91802e-06 1.13384e-06 0)
(-8.9948e-06 1.29155e-06 0)
(-9.09411e-06 1.46983e-06 0)
(-9.22085e-06 1.668e-06 0)
(-9.37894e-06 1.8842e-06 0)
(-9.57251e-06 2.11693e-06 0)
(-9.8048e-06 2.36253e-06 0)
(-1.00785e-05 2.61763e-06 0)
(-1.03957e-05 2.87837e-06 0)
(-1.07571e-05 3.14122e-06 0)
(-1.11636e-05 3.40218e-06 0)
(-1.16151e-05 3.65637e-06 0)
(-1.21095e-05 3.90083e-06 0)
(-1.26442e-05 4.13075e-06 0)
(-1.32169e-05 4.34292e-06 0)
(-1.38245e-05 4.53498e-06 0)
(-1.4463e-05 4.70475e-06 0)
(-1.51279e-05 4.85048e-06 0)
(-1.58148e-05 4.97107e-06 0)
(-1.65194e-05 5.06666e-06 0)
(-1.72372e-05 5.13786e-06 0)
(-1.7964e-05 5.18515e-06 0)
(-1.86957e-05 5.21015e-06 0)
(-1.94287e-05 5.2153e-06 0)
(-2.01586e-05 5.20343e-06 0)
(-2.0883e-05 5.1771e-06 0)
(-2.16003e-05 5.14054e-06 0)
(-2.23086e-05 5.09831e-06 0)
(-2.30083e-05 5.05482e-06 0)
(-2.36998e-05 5.01494e-06 0)
(-2.43832e-05 4.98322e-06 0)
(-2.50621e-05 4.96437e-06 0)
(-2.57394e-05 4.96283e-06 0)
(-2.64203e-05 4.98088e-06 0)
(-2.71085e-05 5.02246e-06 0)
(-2.78104e-05 5.08957e-06 0)
(-2.85352e-05 5.18461e-06 0)
(-2.92914e-05 5.30831e-06 0)
(-3.00869e-05 5.45718e-06 0)
(-3.09347e-05 5.62738e-06 0)
(-3.18385e-05 5.80996e-06 0)
(-3.28291e-05 5.99388e-06 0)
(-3.38672e-05 6.15668e-06 0)
(-3.50561e-05 6.25648e-06 0)
(-3.62301e-05 6.15332e-06 0)
(-3.75963e-05 5.43303e-06 0)
(-3.86363e-05 3.01457e-06 0)
(-3.92684e-05 -2.46181e-06 0)
(-3.12412e-07 4.74121e-06 0)
(-1.24399e-06 6.3714e-06 0)
(-2.26101e-06 6.69725e-06 0)
(-3.27754e-06 6.63363e-06 0)
(-4.26082e-06 6.40766e-06 0)
(-5.19061e-06 6.09938e-06 0)
(-6.06032e-06 5.7391e-06 0)
(-6.86169e-06 5.34143e-06 0)
(-7.59143e-06 4.91625e-06 0)
(-8.24688e-06 4.4725e-06 0)
(-8.8273e-06 4.01829e-06 0)
(-9.33337e-06 3.561e-06 0)
(-9.76701e-06 3.10696e-06 0)
(-1.01309e-05 2.66188e-06 0)
(-1.04281e-05 2.23024e-06 0)
(-1.06619e-05 1.81563e-06 0)
(-1.08363e-05 1.42053e-06 0)
(-1.09544e-05 1.04748e-06 0)
(-1.10198e-05 6.98897e-07 0)
(-1.10365e-05 3.76318e-07 0)
(-1.1008e-05 8.16738e-08 0)
(-1.09383e-05 -1.83025e-07 0)
(-1.08321e-05 -4.16327e-07 0)
(-1.06937e-05 -6.16599e-07 0)
(-1.05278e-05 -7.82056e-07 0)
(-1.03399e-05 -9.11999e-07 0)
(-1.01357e-05 -1.00553e-06 0)
(-9.92133e-06 -1.0628e-06 0)
(-9.70311e-06 -1.08439e-06 0)
(-9.48771e-06 -1.07193e-06 0)
(-9.28164e-06 -1.0271e-06 0)
(-9.09023e-06 -9.54166e-07 0)
(-8.91851e-06 -8.56516e-07 0)
(-8.77012e-06 -7.40005e-07 0)
(-8.64748e-06 -6.09997e-07 0)
(-8.55225e-06 -4.71776e-07 0)
(-8.48437e-06 -3.31764e-07 0)
(-8.44257e-06 -1.9475e-07 0)
(-8.42412e-06 -6.55576e-08 0)
(-8.42555e-06 5.28306e-08 0)
(-8.44174e-06 1.58678e-07 0)
(-8.46905e-06 2.5289e-07 0)
(-8.50502e-06 3.31941e-07 0)
(-8.54414e-06 4.00745e-07 0)
(-8.58215e-06 4.61206e-07 0)
(-8.61752e-06 5.18117e-07 0)
(-8.64907e-06 5.75145e-07 0)
(-8.67666e-06 6.37312e-07 0)
(-8.70196e-06 7.08861e-07 0)
(-8.72725e-06 7.94393e-07 0)
(-8.75581e-06 8.97311e-07 0)
(-8.79195e-06 1.02005e-06 0)
(-8.8404e-06 1.16483e-06 0)
(-8.90635e-06 1.3325e-06 0)
(-8.9951e-06 1.52346e-06 0)
(-9.11162e-06 1.73648e-06 0)
(-9.26035e-06 1.97028e-06 0)
(-9.44625e-06 2.22146e-06 0)
(-9.6727e-06 2.48787e-06 0)
(-9.94208e-06 2.7648e-06 0)
(-1.02569e-05 3.04798e-06 0)
(-1.06183e-05 3.33442e-06 0)
(-1.10276e-05 3.61775e-06 0)
(-1.14839e-05 3.89451e-06 0)
(-1.19845e-05 4.16036e-06 0)
(-1.25275e-05 4.41041e-06 0)
(-1.31101e-05 4.64124e-06 0)
(-1.37289e-05 4.85006e-06 0)
(-1.43798e-05 5.0344e-06 0)
(-1.5058e-05 5.19232e-06 0)
(-1.57586e-05 5.32285e-06 0)
(-1.64767e-05 5.42603e-06 0)
(-1.72076e-05 5.50246e-06 0)
(-1.79465e-05 5.55289e-06 0)
(-1.86889e-05 5.57889e-06 0)
(-1.9431e-05 5.58304e-06 0)
(-2.01687e-05 5.5691e-06 0)
(-2.08996e-05 5.539e-06 0)
(-2.16214e-05 5.49784e-06 0)
(-2.23324e-05 5.45068e-06 0)
(-2.30325e-05 5.40197e-06 0)
(-2.37214e-05 5.35768e-06 0)
(-2.44001e-05 5.32269e-06 0)
(-2.50715e-05 5.30135e-06 0)
(-2.57389e-05 5.29932e-06 0)
(-2.64077e-05 5.31923e-06 0)
(-2.70826e-05 5.36661e-06 0)
(-2.77705e-05 5.44282e-06 0)
(-2.84807e-05 5.55125e-06 0)
(-2.92231e-05 5.69285e-06 0)
(-3.00065e-05 5.86536e-06 0)
(-3.08452e-05 6.0642e-06 0)
(-3.17446e-05 6.28164e-06 0)
(-3.27379e-05 6.50588e-06 0)
(-3.37882e-05 6.71397e-06 0)
(-3.50027e-05 6.86049e-06 0)
(-3.62157e-05 6.79395e-06 0)
(-3.76366e-05 6.05345e-06 0)
(-3.87354e-05 3.44453e-06 0)
(-3.94018e-05 -2.54131e-06 0)
(-3.28797e-07 5.13443e-06 0)
(-1.29637e-06 6.87322e-06 0)
(-2.34916e-06 7.21669e-06 0)
(-3.39902e-06 7.14213e-06 0)
(-4.41155e-06 6.89333e-06 0)
(-5.36683e-06 6.55558e-06 0)
(-6.25758e-06 6.16166e-06 0)
(-7.07525e-06 5.72767e-06 0)
(-7.81661e-06 5.26462e-06 0)
(-8.47928e-06 4.78234e-06 0)
(-9.06299e-06 4.28968e-06 0)
(-9.5688e-06 3.79469e-06 0)
(-9.99899e-06 3.30433e-06 0)
(-1.03569e-05 2.82449e-06 0)
(-1.06461e-05 2.35982e-06 0)
(-1.08702e-05 1.91408e-06 0)
(-1.10332e-05 1.48978e-06 0)
(-1.11391e-05 1.08931e-06 0)
(-1.11913e-05 7.15149e-07 0)
(-1.11937e-05 3.69082e-07 0)
(-1.11503e-05 5.32906e-08 0)
(-1.10651e-05 -2.31539e-07 0)
(-1.09423e-05 -4.82169e-07 0)
(-1.07865e-05 -6.97467e-07 0)
(-1.06026e-05 -8.75396e-07 0)
(-1.0396e-05 -1.01491e-06 0)
(-1.01728e-05 -1.11508e-06 0)
(-9.93964e-06 -1.17557e-06 0)
(-9.70328e-06 -1.19721e-06 0)
(-9.47088e-06 -1.18119e-06 0)
(-9.24941e-06 -1.1298e-06 0)
(-9.04473e-06 -1.04764e-06 0)
(-8.86229e-06 -9.38402e-07 0)
(-8.70581e-06 -8.08898e-07 0)
(-8.5781e-06 -6.6478e-07 0)
(-8.4806e-06 -5.12116e-07 0)
(-8.41301e-06 -3.58055e-07 0)
(-8.37403e-06 -2.08006e-07 0)
(-8.36038e-06 -6.76473e-08 0)
(-8.36825e-06 5.99309e-08 0)
(-8.39117e-06 1.72516e-07 0)
(-8.4256e-06 2.7104e-07 0)
(-8.46821e-06 3.51917e-07 0)
(-8.51181e-06 4.20772e-07 0)
(-8.55259e-06 4.79955e-07 0)
(-8.58876e-06 5.34459e-07 0)
(-8.61882e-06 5.89014e-07 0)
(-8.64255e-06 6.48778e-07 0)
(-8.66178e-06 7.19312e-07 0)
(-8.67883e-06 8.05038e-07 0)
(-8.69738e-06 9.10358e-07 0)
(-8.72212e-06 1.03774e-06 0)
(-8.75846e-06 1.1899e-06 0)
(-8.81229e-06 1.36772e-06 0)
(-8.88921e-06 1.57164e-06 0)
(-8.99426e-06 1.80023e-06 0)
(-9.13294e-06 2.05163e-06 0)
(-9.31036e-06 2.3224e-06 0)
(-9.52986e-06 2.6105e-06 0)
(-9.79467e-06 2.91032e-06 0)
(-1.01068e-05 3.21762e-06 0)
(-1.04686e-05 3.52788e-06 0)
(-1.0881e-05 3.83504e-06 0)
(-1.13419e-05 4.13565e-06 0)
(-1.18494e-05 4.42373e-06 0)
(-1.24012e-05 4.6948e-06 0)
(-1.29945e-05 4.94507e-06 0)
(-1.36256e-05 5.17128e-06 0)
(-1.42897e-05 5.37068e-06 0)
(-1.4982e-05 5.54117e-06 0)
(-1.56972e-05 5.68172e-06 0)
(-1.64299e-05 5.79239e-06 0)
(-1.7175e-05 5.87364e-06 0)
(-1.79271e-05 5.92657e-06 0)
(-1.86814e-05 5.95299e-06 0)
(-1.94339e-05 5.95563e-06 0)
(-2.01806e-05 5.93824e-06 0)
(-2.09187e-05 5.90376e-06 0)
(-2.16455e-05 5.85703e-06 0)
(-2.23592e-05 5.80357e-06 0)
(-2.30591e-05 5.74897e-06 0)
(-2.37449e-05 5.69835e-06 0)
(-2.44181e-05 5.65841e-06 0)
(-2.50811e-05 5.63353e-06 0)
(-2.57374e-05 5.63003e-06 0)
(-2.63929e-05 5.65109e-06 0)
(-2.7053e-05 5.70333e-06 0)
(-2.77252e-05 5.7884e-06 0)
(-2.84189e-05 5.91043e-06 0)
(-2.91448e-05 6.07024e-06 0)
(-2.99137e-05 6.26763e-06 0)
(-3.07408e-05 6.49701e-06 0)
(-3.16331e-05 6.75237e-06 0)
(-3.26264e-05 7.02102e-06 0)
(-3.36864e-05 7.28018e-06 0)
(-3.49241e-05 7.48032e-06 0)
(-3.61751e-05 7.45843e-06 0)
(-3.7653e-05 6.70298e-06 0)
(-3.88187e-05 3.90093e-06 0)
(-3.95365e-05 -2.61617e-06 0)
(-3.4645e-07 5.54553e-06 0)
(-1.35346e-06 7.39402e-06 0)
(-2.44574e-06 7.75457e-06 0)
(-3.53198e-06 7.66691e-06 0)
(-4.57664e-06 7.39339e-06 0)
(-5.55954e-06 7.02387e-06 0)
(-6.4728e-06 6.59385e-06 0)
(-7.30773e-06 6.12106e-06 0)
(-8.06126e-06 5.61774e-06 0)
(-8.73119e-06 5.09471e-06 0)
(-9.31779e-06 4.56166e-06 0)
(-9.82281e-06 4.02725e-06 0)
(-1.02489e-05 3.49906e-06 0)
(-1.05999e-05 2.98329e-06 0)
(-1.08801e-05 2.4847e-06 0)
(-1.10936e-05 2.007e-06 0)
(-1.12445e-05 1.55282e-06 0)
(-1.1337e-05 1.12452e-06 0)
(-1.13751e-05 7.24375e-07 0)
(-1.13624e-05 3.54214e-07 0)
(-1.13033e-05 1.63462e-08 0)
(-1.12017e-05 -2.88347e-07 0)
(-1.10614e-05 -5.56793e-07 0)
(-1.08871e-05 -7.87427e-07 0)
(-1.06838e-05 -9.78241e-07 0)
(-1.0457e-05 -1.12765e-06 0)
(-1.02132e-05 -1.23449e-06 0)
(-9.95955e-06 -1.29799e-06 0)
(-9.70311e-06 -1.31932e-06 0)
(-9.45191e-06 -1.29894e-06 0)
(-9.21314e-06 -1.24018e-06 0)
(-8.99352e-06 -1.14736e-06 0)
(-8.7992e-06 -1.02519e-06 0)
(-8.63393e-06 -8.81115e-07 0)
(-8.50116e-06 -7.21183e-07 0)
(-8.40179e-06 -5.52764e-07 0)
(-8.33517e-06 -3.83277e-07 0)
(-8.2996e-06 -2.19124e-07 0)
(-8.29145e-06 -6.66285e-08 0)
(-8.30664e-06 7.0714e-08 0)
(-8.33704e-06 1.90433e-07 0)
(-8.37973e-06 2.92602e-07 0)
(-8.43048e-06 3.75073e-07 0)
(-8.48009e-06 4.42944e-07 0)
(-8.52502e-06 4.99606e-07 0)
(-8.56269e-06 5.50765e-07 0)
(-8.59149e-06 6.01445e-07 0)
(-8.61132e-06 6.57785e-07 0)
(-8.6239e-06 7.25613e-07 0)
(-8.63154e-06 8.10943e-07 0)
(-8.63874e-06 9.17706e-07 0)
(-8.65077e-06 1.04906e-06 0)
(-8.67331e-06 1.20834e-06 0)
(-8.71317e-06 1.3965e-06 0)
(-8.77652e-06 1.61358e-06 0)
(-8.86898e-06 1.85823e-06 0)
(-8.99633e-06 2.12771e-06 0)
(-9.16399e-06 2.41961e-06 0)
(-9.37599e-06 2.73013e-06 0)
(-9.63567e-06 3.05401e-06 0)
(-9.94544e-06 3.38662e-06 0)
(-1.03073e-05 3.72153e-06 0)
(-1.07217e-05 4.05472e-06 0)
(-1.11872e-05 4.37962e-06 0)
(-1.17017e-05 4.69116e-06 0)
(-1.22632e-05 4.98438e-06 0)
(-1.28685e-05 5.255e-06 0)
(-1.35133e-05 5.4993e-06 0)
(-1.41922e-05 5.7142e-06 0)
(-1.49e-05 5.89753e-06 0)
(-1.56308e-05 6.04813e-06 0)
(-1.63791e-05 6.16621e-06 0)
(-1.71393e-05 6.25193e-06 0)
(-1.79056e-05 6.30682e-06 0)
(-1.86731e-05 6.33309e-06 0)
(-1.94374e-05 6.33334e-06 0)
(-2.01939e-05 6.3116e-06 0)
(-2.09396e-05 6.2717e-06 0)
(-2.16715e-05 6.21801e-06 0)
(-2.23874e-05 6.15702e-06 0)
(-2.3087e-05 6.09505e-06 0)
(-2.37694e-05 6.03677e-06 0)
(-2.44365e-05 5.9904e-06 0)
(-2.50906e-05 5.96057e-06 0)
(-2.57351e-05 5.95451e-06 0)
(-2.63762e-05 5.97594e-06 0)
(-2.70199e-05 6.03191e-06 0)
(-2.76744e-05 6.12509e-06 0)
(-2.83493e-05 6.26088e-06 0)
(-2.90562e-05 6.43943e-06 0)
(-2.98076e-05 6.66249e-06 0)
(-3.06203e-05 6.92474e-06 0)
(-3.15026e-05 7.22064e-06 0)
(-3.24927e-05 7.53794e-06 0)
(-3.3559e-05 7.85389e-06 0)
(-3.48165e-05 8.11509e-06 0)
(-3.61041e-05 8.1471e-06 0)
(-3.76405e-05 7.38449e-06 0)
(-3.88799e-05 4.38951e-06 0)
(-3.96641e-05 -2.67814e-06 0)
(-3.65671e-07 5.97606e-06 0)
(-1.41578e-06 7.93581e-06 0)
(-2.55132e-06 8.31247e-06 0)
(-3.67738e-06 8.20964e-06 0)
(-4.75754e-06 7.90917e-06 0)
(-5.77051e-06 7.50522e-06 0)
(-6.70802e-06 7.0363e-06 0)
(-7.56122e-06 6.52196e-06 0)
(-8.32735e-06 5.97571e-06 0)
(-9.00449e-06 5.40945e-06 0)
(-9.59344e-06 4.8339e-06 0)
(-1.00967e-05 4.25829e-06 0)
(-1.05177e-05 3.69072e-06 0)
(-1.08609e-05 3.1378e-06 0)
(-1.11311e-05 2.60434e-06 0)
(-1.13328e-05 2.09394e-06 0)
(-1.14707e-05 1.60922e-06 0)
(-1.15489e-05 1.15257e-06 0)
(-1.15719e-05 7.26176e-07 0)
(-1.15436e-05 3.31748e-07 0)
(-1.14679e-05 -2.91332e-08 0)
(-1.13487e-05 -3.53912e-07 0)
(-1.11898e-05 -6.40683e-07 0)
(-1.09957e-05 -8.87227e-07 0)
(-1.07715e-05 -1.09133e-06 0)
(-1.0523e-05 -1.25102e-06 0)
(-1.0257e-05 -1.36455e-06 0)
(-9.98126e-06 -1.43098e-06 0)
(-9.70327e-06 -1.45154e-06 0)
(-9.43171e-06 -1.42604e-06 0)
(-9.1741e-06 -1.35907e-06 0)
(-8.9381e-06 -1.25407e-06 0)
(-8.73025e-06 -1.11751e-06 0)
(-8.55503e-06 -9.5697e-07 0)
(-8.41619e-06 -7.79384e-07 0)
(-8.31455e-06 -5.9353e-07 0)
(-8.24933e-06 -4.07109e-07 0)
(-8.21813e-06 -2.27659e-07 0)
(-8.2168e-06 -6.19781e-08 0)
(-8.24054e-06 8.56941e-08 0)
(-8.28018e-06 2.12774e-07 0)
(-8.33254e-06 3.18154e-07 0)
(-8.39215e-06 4.02039e-07 0)
(-8.44861e-06 4.67973e-07 0)
(-8.49799e-06 5.20771e-07 0)
(-8.53712e-06 5.67075e-07 0)
(-8.56418e-06 6.12285e-07 0)
(-8.57947e-06 6.63716e-07 0)
(-8.58451e-06 7.2791e-07 0)
(-8.58194e-06 8.11463e-07 0)
(-8.57729e-06 9.18416e-07 0)
(-8.57567e-06 1.05363e-06 0)
(-8.58342e-06 1.21974e-06 0)
(-8.60819e-06 1.41807e-06 0)
(-8.65663e-06 1.64851e-06 0)
(-8.735e-06 1.90958e-06 0)
(-8.84967e-06 2.19849e-06 0)
(-9.00645e-06 2.51222e-06 0)
(-9.2099e-06 2.84634e-06 0)
(-9.46383e-06 3.19566e-06 0)
(-9.77099e-06 3.55453e-06 0)
(-1.0133e-05 3.91657e-06 0)
(-1.05503e-05 4.27624e-06 0)
(-1.10216e-05 4.62698e-06 0)
(-1.15449e-05 4.96316e-06 0)
(-1.21177e-05 5.27971e-06 0)
(-1.27361e-05 5.57165e-06 0)
(-1.33955e-05 5.83473e-06 0)
(-1.40902e-05 6.06557e-06 0)
(-1.48145e-05 6.26196e-06 0)
(-1.55622e-05 6.42266e-06 0)
(-1.63273e-05 6.54802e-06 0)
(-1.71039e-05 6.63784e-06 0)
(-1.78855e-05 6.69418e-06 0)
(-1.8667e-05 6.71937e-06 0)
(-1.94436e-05 6.71667e-06 0)
(-2.02102e-05 6.68934e-06 0)
(-2.09635e-05 6.64265e-06 0)
(-2.17003e-05 6.58088e-06 0)
(-2.2418e-05 6.51098e-06 0)
(-2.31167e-05 6.43941e-06 0)
(-2.37955e-05 6.37315e-06 0)
(-2.4456e-05 6.31864e-06 0)
(-2.51007e-05 6.28227e-06 0)
(-2.57324e-05 6.27222e-06 0)
(-2.63578e-05 6.29282e-06 0)
(-2.6983e-05 6.35125e-06 0)
(-2.76169e-05 6.45203e-06 0)
(-2.82701e-05 6.60115e-06 0)
(-2.89547e-05 6.79884e-06 0)
(-2.96845e-05 7.04822e-06 0)
(-3.04778e-05 7.34533e-06 0)
(-3.13443e-05 7.68415e-06 0)
(-3.23244e-05 8.05392e-06 0)
(-3.33894e-05 8.43225e-06 0)
(-3.46592e-05 8.76237e-06 0)
(-3.59768e-05 8.85829e-06 0)
(-3.75669e-05 8.09834e-06 0)
(-3.88776e-05 4.91187e-06 0)
(-3.97194e-05 -2.72652e-06 0)
(-3.8699e-07 6.42787e-06 0)
(-1.48414e-06 8.50055e-06 0)
(-2.66661e-06 8.89215e-06 0)
(-3.83628e-06 8.77223e-06 0)
(-4.9555e-06 8.44217e-06 0)
(-6.00115e-06 8.00073e-06 0)
(-6.96486e-06 7.48976e-06 0)
(-7.83755e-06 6.93076e-06 0)
(-8.61678e-06 6.33862e-06 0)
(-9.30108e-06 5.72644e-06 0)
(-9.89192e-06 5.10602e-06 0)
(-1.03926e-05 4.48727e-06 0)
(-1.08073e-05 3.87877e-06 0)
(-1.11415e-05 3.28748e-06 0)
(-1.14005e-05 2.71821e-06 0)
(-1.15894e-05 2.17438e-06 0)
(-1.17132e-05 1.65854e-06 0)
(-1.17763e-05 1.17302e-06 0)
(-1.17833e-05 7.19984e-07 0)
(-1.17382e-05 3.00879e-07 0)
(-1.16449e-05 -8.29075e-08 0)
(-1.15068e-05 -4.28749e-07 0)
(-1.13279e-05 -7.34434e-07 0)
(-1.11125e-05 -9.97581e-07 0)
(-1.08661e-05 -1.2154e-06 0)
(-1.05942e-05 -1.38585e-06 0)
(-1.03047e-05 -1.50594e-06 0)
(-1.00051e-05 -1.57547e-06 0)
(-9.70373e-06 -1.59458e-06 0)
(-9.40972e-06 -1.56356e-06 0)
(-9.13123e-06 -1.48717e-06 0)
(-8.87706e-06 -1.36869e-06 0)
(-8.65421e-06 -1.21598e-06 0)
(-8.46827e-06 -1.03688e-06 0)
(-8.32281e-06 -8.39744e-07 0)
(-8.21885e-06 -6.3432e-07 0)
(-8.15556e-06 -4.29249e-07 0)
(-8.12963e-06 -2.33064e-07 0)
(-8.13626e-06 -5.31381e-08 0)
(-8.16974e-06 1.05309e-07 0)
(-8.22025e-06 2.40187e-07 0)
(-8.28346e-06 3.48579e-07 0)
(-8.35252e-06 4.32948e-07 0)
(-8.41637e-06 4.95908e-07 0)
(-8.47053e-06 5.43631e-07 0)
(-8.5113e-06 5.83141e-07 0)
(-8.53631e-06 6.21213e-07 0)
(-8.54579e-06 6.66198e-07 0)
(-8.54219e-06 7.2576e-07 0)
(-8.52909e-06 8.05904e-07 0)
(-8.51191e-06 9.12711e-07 0)
(-8.49613e-06 1.05103e-06 0)
(-8.4886e-06 1.22342e-06 0)
(-8.49735e-06 1.43181e-06 0)
(-8.52984e-06 1.67594e-06 0)
(-8.59299e-06 1.95395e-06 0)
(-8.69359e-06 2.26294e-06 0)
(-8.83801e-06 2.59963e-06 0)
(-9.03155e-06 2.95882e-06 0)
(-9.27874e-06 3.33502e-06 0)
(-9.58305e-06 3.72208e-06 0)
(-9.94602e-06 4.1127e-06 0)
(-1.03676e-05 4.50033e-06 0)
(-1.08463e-05 4.87851e-06 0)
(-1.13797e-05 5.24064e-06 0)
(-1.19647e-05 5.58148e-06 0)
(-1.25973e-05 5.89553e-06 0)
(-1.32722e-05 6.17801e-06 0)
(-1.39837e-05 6.42534e-06 0)
(-1.47258e-05 6.63511e-06 0)
(-1.5492e-05 6.80604e-06 0)
(-1.62758e-05 6.93834e-06 0)
(-1.70706e-05 7.03227e-06 0)
(-1.78693e-05 7.08944e-06 0)
(-1.86665e-05 7.11264e-06 0)
(-1.94571e-05 7.1055e-06 0)
(-2.02348e-05 7.07205e-06 0)
(-2.0996e-05 7.01676e-06 0)
(-2.17376e-05 6.94539e-06 0)
(-2.24572e-05 6.86496e-06 0)
(-2.31546e-05 6.78247e-06 0)
(-2.38291e-05 6.70662e-06 0)
(-2.44825e-05 6.64259e-06 0)
(-2.51158e-05 6.59812e-06 0)
(-2.57326e-05 6.58218e-06 0)
(-2.63398e-05 6.60046e-06 0)
(-2.69433e-05 6.65995e-06 0)
(-2.75521e-05 6.76731e-06 0)
(-2.8178e-05 6.92864e-06 0)
(-2.88338e-05 7.14538e-06 0)
(-2.9534e-05 7.42177e-06 0)
(-3.02996e-05 7.75487e-06 0)
(-3.11421e-05 8.13934e-06 0)
(-3.21048e-05 8.56536e-06 0)
(-3.31633e-05 9.0122e-06 0)
(-3.44417e-05 9.41947e-06 0)
(-3.57863e-05 9.5895e-06 0)
(-3.7425e-05 8.84172e-06 0)
(-3.88001e-05 5.46493e-06 0)
(-3.96855e-05 -2.76878e-06 0)
(-4.10734e-07 6.90318e-06 0)
(-1.55921e-06 9.09019e-06 0)
(-2.79255e-06 9.49552e-06 0)
(-4.00995e-06 9.35668e-06 0)
(-5.17193e-06 8.99392e-06 0)
(-6.25288e-06 8.51156e-06 0)
(-7.24455e-06 7.95497e-06 0)
(-8.13763e-06 7.34779e-06 0)
(-8.93016e-06 6.70651e-06 0)
(-9.62132e-06 6.04548e-06 0)
(-1.02134e-05 5.37766e-06 0)
(-1.07104e-05 4.71364e-06 0)
(-1.11178e-05 4.06261e-06 0)
(-1.14417e-05 3.43171e-06 0)
(-1.16883e-05 2.82569e-06 0)
(-1.18631e-05 2.24773e-06 0)
(-1.19717e-05 1.70024e-06 0)
(-1.20187e-05 1.18544e-06 0)
(-1.20086e-05 7.05262e-07 0)
(-1.19458e-05 2.60789e-07 0)
(-1.18337e-05 -1.4626e-07 0)
(-1.16756e-05 -5.13488e-07 0)
(-1.14755e-05 -8.38815e-07 0)
(-1.12377e-05 -1.11921e-06 0)
(-1.09674e-05 -1.35127e-06 0)
(-1.06707e-05 -1.53288e-06 0)
(-1.03555e-05 -1.65969e-06 0)
(-1.00296e-05 -1.73246e-06 0)
(-9.70235e-06 -1.74958e-06 0)
(-9.38319e-06 -1.71269e-06 0)
(-9.08164e-06 -1.62542e-06 0)
(-8.80738e-06 -1.49211e-06 0)
(-8.56791e-06 -1.32122e-06 0)
(-8.36978e-06 -1.12135e-06 0)
(-8.2168e-06 -9.02491e-07 0)
(-8.11027e-06 -6.75111e-07 0)
(-8.04928e-06 -4.4932e-07 0)
(-8.03011e-06 -2.346e-07 0)
(-8.04723e-06 -3.90941e-08 0)
(-8.09317e-06 1.31006e-07 0)
(-8.15764e-06 2.74091e-07 0)
(-8.23495e-06 3.85157e-07 0)
(-8.31616e-06 4.68457e-07 0)
(-8.38959e-06 5.27146e-07 0)
(-8.45016e-06 5.68125e-07 0)
(-8.49409e-06 5.9936e-07 0)
(-8.51845e-06 6.28427e-07 0)
(-8.52336e-06 6.65502e-07 0)
(-8.51149e-06 7.18245e-07 0)
(-8.48609e-06 7.93959e-07 0)
(-8.45322e-06 9.00056e-07 0)
(-8.41979e-06 1.04e-06 0)
(-8.39353e-06 1.21844e-06 0)
(-8.38326e-06 1.43695e-06 0)
(-8.39732e-06 1.69513e-06 0)
(-8.4434e-06 1.99067e-06 0)
(-8.52884e-06 2.32098e-06 0)
(-8.66051e-06 2.68117e-06 0)
(-8.84389e-06 3.06704e-06 0)
(-9.08346e-06 3.47179e-06 0)
(-9.38327e-06 3.88866e-06 0)
(-9.74517e-06 4.30947e-06 0)
(-1.01692e-05 4.72727e-06 0)
(-1.0654e-05 5.13412e-06 0)
(-1.1197e-05 5.5238e-06 0)
(-1.17945e-05 5.89012e-06 0)
(-1.24419e-05 6.22717e-06 0)
(-1.31339e-05 6.52988e-06 0)
(-1.38642e-05 6.79435e-06 0)
(-1.46263e-05 7.01794e-06 0)
(-1.54132e-05 7.1993e-06 0)
(-1.62175e-05 7.33834e-06 0)
(-1.70321e-05 7.43598e-06 0)
(-1.78495e-05 7.49333e-06 0)
(-1.86639e-05 7.5138e-06 0)
(-1.94694e-05 7.50078e-06 0)
(-2.02598e-05 7.45992e-06 0)
(-2.10308e-05 7.39462e-06 0)
(-2.17786e-05 7.31157e-06 0)
(-2.25008e-05 7.21884e-06 0)
(-2.31967e-05 7.12483e-06 0)
(-2.38664e-05 7.03612e-06 0)
(-2.45117e-05 6.96144e-06 0)
(-2.51323e-05 6.90744e-06 0)
(-2.57323e-05 6.88334e-06 0)
(-2.63193e-05 6.89751e-06 0)
(-2.68989e-05 6.95669e-06 0)
(-2.74804e-05 7.0688e-06 0)
(-2.80769e-05 7.24123e-06 0)
(-2.8701e-05 7.47647e-06 0)
(-2.93684e-05 7.78029e-06 0)
(-3.01029e-05 8.15039e-06 0)
(-3.09176e-05 8.5831e-06 0)
(-3.18585e-05 9.06968e-06 0)
(-3.29052e-05 9.59116e-06 0)
(-3.41856e-05 1.00842e-05 0)
(-3.5552e-05 1.03388e-05 0)
(-3.72357e-05 9.61262e-06 0)
(-3.86738e-05 6.04673e-06 0)
(-3.96084e-05 -2.80687e-06 0)
(-4.37078e-07 7.40441e-06 0)
(-1.64166e-06 9.7069e-06 0)
(-2.93044e-06 1.01248e-05 0)
(-4.20007e-06 9.96506e-06 0)
(-5.40857e-06 9.56602e-06 0)
(-6.52745e-06 9.03877e-06 0)
(-7.54871e-06 8.43253e-06 0)
(-8.46289e-06 7.77327e-06 0)
(-9.26873e-06 7.07926e-06 0)
(-9.96622e-06 6.36626e-06 0)
(-1.05585e-05 5.6483e-06 0)
(-1.10508e-05 4.93681e-06 0)
(-1.14493e-05 4.24157e-06 0)
(-1.17616e-05 3.56982e-06 0)
(-1.19944e-05 2.92609e-06 0)
(-1.21537e-05 2.31333e-06 0)
(-1.22457e-05 1.73373e-06 0)
(-1.22754e-05 1.18932e-06 0)
(-1.22475e-05 6.81583e-07 0)
(-1.2166e-05 2.11476e-07 0)
(-1.20341e-05 -2.19441e-07 0)
(-1.18554e-05 -6.08903e-07 0)
(-1.16329e-05 -9.54572e-07 0)
(-1.13712e-05 -1.2527e-06 0)
(-1.10753e-05 -1.49998e-06 0)
(-1.07517e-05 -1.69294e-06 0)
(-1.04081e-05 -1.82732e-06 0)
(-1.0053e-05 -1.90314e-06 0)
(-9.69677e-06 -1.91824e-06 0)
(-9.34942e-06 -1.87461e-06 0)
(-9.02215e-06 -1.77511e-06 0)
(-8.72508e-06 -1.6254e-06 0)
(-8.46686e-06 -1.43413e-06 0)
(-8.2548e-06 -1.21113e-06 0)
(-8.09361e-06 -9.67723e-07 0)
(-7.98519e-06 -7.15625e-07 0)
(-7.92827e-06 -4.66463e-07 0)
(-7.91849e-06 -2.30958e-07 0)
(-7.94914e-06 -1.82328e-08 0)
(-8.01065e-06 1.64666e-07 0)
(-8.09251e-06 3.15918e-07 0)
(-8.18747e-06 4.29357e-07 0)
(-8.28397e-06 5.10332e-07 0)
(-8.37003e-06 5.63245e-07 0)
(-8.43931e-06 5.95359e-07 0)
(-8.48739e-06 6.15973e-07 0)
(-8.51083e-06 6.34486e-07 0)
(-8.50994e-06 6.61128e-07 0)
(-8.48779e-06 7.04911e-07 0)
(-8.44735e-06 7.74529e-07 0)
(-8.39641e-06 8.78206e-07 0)
(-8.34296e-06 1.01908e-06 0)
(-8.29554e-06 1.20376e-06 0)
(-8.26432e-06 1.43234e-06 0)
(-8.25807e-06 1.70487e-06 0)
(-8.28496e-06 2.01892e-06 0)
(-8.35362e-06 2.37159e-06 0)
(-8.47099e-06 2.75674e-06 0)
(-8.64262e-06 3.17031e-06 0)
(-8.87396e-06 3.60551e-06 0)
(-9.169e-06 4.05365e-06 0)
(-9.5293e-06 4.50641e-06 0)
(-9.95529e-06 4.95649e-06 0)
(-1.0446e-05 5.39344e-06 0)
(-1.09985e-05 5.81255e-06 0)
(-1.16093e-05 6.20595e-06 0)
(-1.22733e-05 6.56732e-06 0)
(-1.29843e-05 6.89133e-06 0)
(-1.37355e-05 7.17367e-06 0)
(-1.45198e-05 7.41151e-06 0)
(-1.53289e-05 7.60333e-06 0)
(-1.61551e-05 7.74906e-06 0)
(-1.6991e-05 7.8496e-06 0)
(-1.78285e-05 7.90636e-06 0)
(-1.86611e-05 7.92322e-06 0)
(-1.94825e-05 7.90373e-06 0)
(-2.02862e-05 7.85319e-06 0)
(-2.10681e-05 7.77623e-06 0)
(-2.1824e-05 7.68028e-06 0)
(-2.25498e-05 7.57387e-06 0)
(-2.32451e-05 7.46587e-06 0)
(-2.39094e-05 7.36191e-06 0)
(-2.45447e-05 7.27416e-06 0)
(-2.51515e-05 7.2093e-06 0)
(-2.57331e-05 7.17497e-06 0)
(-2.62978e-05 7.18305e-06 0)
(-2.68519e-05 7.24019e-06 0)
(-2.7404e-05 7.35556e-06 0)
(-2.79686e-05 7.53776e-06 0)
(-2.85583e-05 7.79104e-06 0)
(-2.919e-05 8.12225e-06 0)
(-2.989e-05 8.53043e-06 0)
(-3.06732e-05 9.01363e-06 0)
(-3.15881e-05 9.56478e-06 0)
(-3.26184e-05 1.01665e-05 0)
(-3.38952e-05 1.07537e-05 0)
(-3.5277e-05 1.11034e-05 0)
(-3.69989e-05 1.04095e-05 0)
(-3.84933e-05 6.65619e-06 0)
(-3.94791e-05 -2.8369e-06 0)
(-4.66356e-07 7.93434e-06 0)
(-1.73262e-06 1.03531e-05 0)
(-3.08192e-06 1.07823e-05 0)
(-4.40859e-06 1.05995e-05 0)
(-5.66753e-06 1.01601e-05 0)
(-6.82691e-06 9.58342e-06 0)
(-7.87929e-06 8.92302e-06 0)
(-8.81523e-06 8.20733e-06 0)
(-9.63425e-06 7.45669e-06 0)
(-1.03372e-05 6.6883e-06 0)
(-1.09285e-05 5.91731e-06 0)
(-1.14144e-05 5.15606e-06 0)
(-1.18026e-05 4.41488e-06 0)
(-1.21016e-05 3.70102e-06 0)
(-1.23188e-05 3.01865e-06 0)
(-1.24611e-05 2.37047e-06 0)
(-1.25352e-05 1.75838e-06 0)
(-1.25466e-05 1.18413e-06 0)
(-1.24999e-05 6.48558e-07 0)
(-1.23989e-05 1.52401e-07 0)
(-1.22466e-05 -3.0299e-07 0)
(-1.2046e-05 -7.15409e-07 0)
(-1.18e-05 -1.08215e-06 0)
(-1.15131e-05 -1.39877e-06 0)
(-1.119e-05 -1.66235e-06 0)
(-1.08377e-05 -1.86713e-06 0)
(-1.04636e-05 -2.01007e-06 0)
(-1.00772e-05 -2.08878e-06 0)
(-9.68968e-06 -2.10191e-06 0)
(-9.31227e-06 -2.05036e-06 0)
(-8.95745e-06 -1.93739e-06 0)
(-8.63632e-06 -1.7693e-06 0)
(-8.35878e-06 -1.5553e-06 0)
(-8.13272e-06 -1.30649e-06 0)
(-7.96355e-06 -1.03539e-06 0)
(-7.85333e-06 -7.55548e-07 0)
(-7.80062e-06 -4.80036e-07 0)
(-7.80073e-06 -2.21226e-07 0)
(-7.84589e-06 1.05061e-08 0)
(-7.92435e-06 2.07218e-07 0)
(-8.02529e-06 3.6662e-07 0)
(-8.13958e-06 4.81932e-07 0)
(-8.25265e-06 5.59765e-07 0)
(-8.35221e-06 6.04919e-07 0)
(-8.43099e-06 6.2603e-07 0)
(-8.48337e-06 6.3342e-07 0)
(-8.50589e-06 6.38776e-07 0)
(-8.49896e-06 6.52222e-07 0)
(-8.46542e-06 6.84398e-07 0)
(-8.40879e-06 7.47211e-07 0)
(-8.33856e-06 8.4559e-07 0)
(-8.26327e-06 9.88e-07 0)
(-8.19268e-06 1.17783e-06 0)
(-8.13852e-06 1.41668e-06 0)
(-8.10957e-06 1.70408e-06 0)
(-8.11506e-06 2.03752e-06 0)
(-8.16488e-06 2.41373e-06 0)
(-8.2664e-06 2.82573e-06 0)
(-8.42494e-06 3.26825e-06 0)
(-8.64722e-06 3.73579e-06 0)
(-8.93771e-06 4.21731e-06 0)
(-9.29695e-06 4.70383e-06 0)
(-9.72632e-06 5.18796e-06 0)
(-1.02245e-05 5.65715e-06 0)
(-1.0788e-05 6.10727e-06 0)
(-1.14138e-05 6.52966e-06 0)
(-1.20956e-05 6.91685e-06 0)
(-1.28272e-05 7.26316e-06 0)
(-1.36008e-05 7.56416e-06 0)
(-1.44085e-05 7.81661e-06 0)
(-1.52413e-05 8.01882e-06 0)
(-1.6091e-05 8.17088e-06 0)
(-1.69498e-05 8.27383e-06 0)
(-1.78087e-05 8.32942e-06 0)
(-1.86606e-05 8.34149e-06 0)
(-1.94991e-05 8.3142e-06 0)
(-2.03169e-05 8.25271e-06 0)
(-2.11093e-05 8.16235e-06 0)
(-2.18725e-05 8.05201e-06 0)
(-2.26025e-05 7.93024e-06 0)
(-2.32985e-05 7.80522e-06 0)
(-2.39584e-05 7.68453e-06 0)
(-2.45838e-05 7.58058e-06 0)
(-2.5177e-05 7.50271e-06 0)
(-2.57396e-05 7.45634e-06 0)
(-2.62799e-05 7.45598e-06 0)
(-2.68053e-05 7.50904e-06 0)
(-2.73241e-05 7.62593e-06 0)
(-2.7852e-05 7.81635e-06 0)
(-2.84022e-05 8.08706e-06 0)
(-2.89924e-05 8.4452e-06 0)
(-2.96509e-05 8.89219e-06 0)
(-3.03945e-05 9.42794e-06 0)
(-3.12743e-05 1.00471e-05 0)
(-3.22784e-05 1.07344e-05 0)
(-3.35406e-05 1.14235e-05 0)
(-3.49246e-05 1.18782e-05 0)
(-3.66674e-05 1.12261e-05 0)
(-3.81994e-05 7.2871e-06 0)
(-3.92134e-05 -2.86157e-06 0)
(-4.99008e-07 8.49613e-06 0)
(-1.83347e-06 1.10318e-05 0)
(-3.249e-06 1.14709e-05 0)
(-4.63778e-06 1.12624e-05 0)
(-5.95116e-06 1.07777e-05 0)
(-7.15372e-06 1.01465e-05 0)
(-8.23868e-06 9.42693e-06 0)
(-9.19683e-06 8.65006e-06 0)
(-1.00287e-05 7.83848e-06 0)
(-1.07361e-05 7.01098e-06 0)
(-1.13248e-05 6.18391e-06 0)
(-1.18026e-05 5.37055e-06 0)
(-1.21786e-05 4.58166e-06 0)
(-1.24622e-05 3.82434e-06 0)
(-1.26618e-05 3.10245e-06 0)
(-1.27854e-05 2.41842e-06 0)
(-1.28405e-05 1.77364e-06 0)
(-1.28325e-05 1.16932e-06 0)
(-1.2766e-05 6.05709e-07 0)
(-1.26446e-05 8.3237e-08 0)
(-1.24712e-05 -3.97304e-07 0)
(-1.22477e-05 -8.33443e-07 0)
(-1.19777e-05 -1.22205e-06 0)
(-1.16645e-05 -1.55842e-06 0)
(-1.13131e-05 -1.83881e-06 0)
(-1.09302e-05 -2.05669e-06 0)
(-1.05234e-05 -2.20882e-06 0)
(-1.01033e-05 -2.29071e-06 0)
(-9.68173e-06 -2.30164e-06 0)
(-9.27151e-06 -2.24117e-06 0)
(-8.88642e-06 -2.1132e-06 0)
(-8.53912e-06 -1.92438e-06 0)
(-8.24094e-06 -1.68491e-06 0)
(-8.00062e-06 -1.40721e-06 0)
(-7.82404e-06 -1.10515e-06 0)
(-7.71343e-06 -7.94384e-07 0)
(-7.66674e-06 -4.8962e-07 0)
(-7.67819e-06 -2.05014e-07 0)
(-7.73904e-06 4.74901e-08 0)
(-7.83544e-06 2.58896e-07 0)
(-7.95666e-06 4.26642e-07 0)
(-8.09165e-06 5.4344e-07 0)
(-8.22292e-06 6.17151e-07 0)
(-8.33781e-06 6.52327e-07 0)
(-8.42743e-06 6.60548e-07 0)
(-8.48505e-06 6.52076e-07 0)
(-8.50683e-06 6.40606e-07 0)
(-8.49333e-06 6.38131e-07 0)
(-8.44642e-06 6.57205e-07 0)
(-8.3723e-06 7.09927e-07 0)
(-8.28097e-06 8.0227e-07 0)
(-8.18124e-06 9.4519e-07 0)
(-8.0851e-06 1.13924e-06 0)
(-8.00458e-06 1.38869e-06 0)
(-7.95022e-06 1.69177e-06 0)
(-7.93189e-06 2.04597e-06 0)
(-7.96097e-06 2.44645e-06 0)
(-8.04542e-06 2.88712e-06 0)
(-8.18983e-06 3.36181e-06 0)
(-8.40242e-06 3.86155e-06 0)
(-8.68832e-06 4.37981e-06 0)
(-9.04676e-06 4.90307e-06 0)
(-9.48043e-06 5.4214e-06 0)
(-9.98763e-06 5.92614e-06 0)
(-1.05637e-05 6.4089e-06 0)
(-1.12061e-05 6.8621e-06 0)
(-1.19081e-05 7.27654e-06 0)
(-1.2662e-05 7.64615e-06 0)
(-1.34596e-05 7.96651e-06 0)
(-1.42919e-05 8.2338e-06 0)
(-1.51497e-05 8.44645e-06 0)
(-1.60244e-05 8.60467e-06 0)
(-1.69079e-05 8.70966e-06 0)
(-1.77904e-05 8.76315e-06 0)
(-1.86637e-05 8.76929e-06 0)
(-1.95206e-05 8.7325e-06 0)
(-2.03534e-05 8.65848e-06 0)
(-2.1157e-05 8.55364e-06 0)
(-2.19278e-05 8.42677e-06 0)
(-2.26623e-05 8.28722e-06 0)
(-2.33592e-05 8.14299e-06 0)
(-2.40153e-05 8.00466e-06 0)
(-2.46311e-05 7.88153e-06 0)
(-2.52102e-05 7.7871e-06 0)
(-2.5753e-05 7.72663e-06 0)
(-2.62666e-05 7.71452e-06 0)
(-2.67598e-05 7.7618e-06 0)
(-2.72416e-05 7.8778e-06 0)
(-2.77284e-05 8.07457e-06 0)
(-2.82341e-05 8.36168e-06 0)
(-2.87775e-05 8.74578e-06 0)
(-2.93874e-05 9.23181e-06 0)
(-3.00828e-05 9.8214e-06 0)
(-3.09178e-05 1.05113e-05 0)
(-3.18844e-05 1.12891e-05 0)
(-3.31182e-05 1.20867e-05 0)
(-3.44885e-05 1.26547e-05 0)
(-3.62328e-05 1.20519e-05 0)
(-3.7781e-05 7.92868e-06 0)
(-3.87933e-05 -2.89195e-06 0)
(-5.35292e-07 9.09337e-06 0)
(-1.94546e-06 1.1746e-05 0)
(-3.43391e-06 1.21933e-05 0)
(-4.89035e-06 1.1956e-05 0)
(-6.26218e-06 1.14207e-05 0)
(-7.51063e-06 1.07292e-05 0)
(-8.62954e-06 9.94468e-06 0)
(-9.61015e-06 9.1014e-06 0)
(-1.04542e-05 8.2242e-06 0)
(-1.11647e-05 7.33359e-06 0)
(-1.1749e-05 6.44718e-06 0)
(-1.22166e-05 5.57923e-06 0)
(-1.25779e-05 4.74079e-06 0)
(-1.28439e-05 3.93872e-06 0)
(-1.30241e-05 3.17659e-06 0)
(-1.31274e-05 2.4564e-06 0)
(-1.31619e-05 1.77889e-06 0)
(-1.31333e-05 1.14438e-06 0)
(-1.3046e-05 5.52523e-07 0)
(-1.29037e-05 3.11627e-09 0)
(-1.27086e-05 -5.02594e-07 0)
(-1.24619e-05 -9.63532e-07 0)
(-1.21667e-05 -1.3747e-06 0)
(-1.18258e-05 -1.73239e-06 0)
(-1.14433e-05 -2.03056e-06 0)
(-1.10259e-05 -2.26328e-06 0)
(-1.05819e-05 -2.42528e-06 0)
(-1.01233e-05 -2.51084e-06 0)
(-9.66349e-06 -2.51903e-06 0)
(-9.21666e-06 -2.44875e-06 0)
(-8.79767e-06 -2.30399e-06 0)
(-8.42073e-06 -2.09198e-06 0)
(-8.09865e-06 -1.82389e-06 0)
(-7.84176e-06 -1.51365e-06 0)
(-7.65666e-06 -1.17688e-06 0)
(-7.54584e-06 -8.31404e-07 0)
(-7.50691e-06 -4.94108e-07 0)
(-7.53301e-06 -1.80975e-07 0)
(-7.6142e-06 9.43347e-08 0)
(-7.7342e-06 3.22491e-07 0)
(-7.88175e-06 4.97925e-07 0)
(-8.04286e-06 6.15996e-07 0)
(-8.19688e-06 6.83818e-07 0)
(-8.32998e-06 7.06759e-07 0)
(-8.43183e-06 6.98949e-07 0)
(-8.49516e-06 6.7154e-07 0)
(-8.5155e-06 6.40103e-07 0)
(-8.49368e-06 6.18866e-07 0)
(-8.43234e-06 6.22293e-07 0)
(-8.33885e-06 6.615e-07 0)
(-8.22369e-06 7.47142e-07 0)
(-8.09776e-06 8.88471e-07 0)
(-7.97375e-06 1.0871e-06 0)
(-7.86454e-06 1.34722e-06 0)
(-7.78258e-06 1.66663e-06 0)
(-7.73889e-06 2.04284e-06 0)
(-7.7453e-06 2.46924e-06 0)
(-7.81008e-06 2.94079e-06 0)
(-7.94012e-06 3.44995e-06 0)
(-8.14179e-06 3.98339e-06 0)
(-8.42084e-06 4.541e-06 0)
(-8.77936e-06 5.10312e-06 0)
(-9.21732e-06 5.65802e-06 0)
(-9.73327e-06 6.20064e-06 0)
(-1.03228e-05 6.71872e-06 0)
(-1.09827e-05 7.20386e-06 0)
(-1.17062e-05 7.64702e-06 0)
(-1.24844e-05 8.04128e-06 0)
(-1.3308e-05 8.38162e-06 0)
(-1.41677e-05 8.66414e-06 0)
(-1.50538e-05 8.88748e-06 0)
(-1.5957e-05 9.0518e-06 0)
(-1.68683e-05 9.15847e-06 0)
(-1.7777e-05 9.20856e-06 0)
(-1.86742e-05 9.20767e-06 0)
(-1.95523e-05 9.15992e-06 0)
(-2.04029e-05 9.07126e-06 0)
(-2.12205e-05 8.95004e-06 0)
(-2.20008e-05 8.80488e-06 0)
(-2.27404e-05 8.64511e-06 0)
(-2.34369e-05 8.47995e-06 0)
(-2.40875e-05 8.32118e-06 0)
(-2.46922e-05 8.17636e-06 0)
(-2.52547e-05 8.06175e-06 0)
(-2.5776e-05 7.98508e-06 0)
(-2.62612e-05 7.95811e-06 0)
(-2.67205e-05 7.99672e-06 0)
(-2.71635e-05 8.10949e-06 0)
(-2.76055e-05 8.31053e-06 0)
(-2.80626e-05 8.61223e-06 0)
(-2.8554e-05 9.02094e-06 0)
(-2.91095e-05 9.5457e-06 0)
(-2.97499e-05 1.01897e-05 0)
(-3.05314e-05 1.09528e-05 0)
(-3.14502e-05 1.18247e-05 0)
(-3.2643e-05 1.27364e-05 0)
(-3.39867e-05 1.34248e-05 0)
(-3.57199e-05 1.28795e-05 0)
(-3.72755e-05 8.57426e-06 0)
(-3.82893e-05 -2.93323e-06 0)
(-5.75477e-07 9.73001e-06 0)
(-2.07001e-06 1.24999e-05 0)
(-3.63926e-06 1.2953e-05 0)
(-5.16942e-06 1.26827e-05 0)
(-6.60367e-06 1.20907e-05 0)
(-7.90059e-06 1.13323e-05 0)
(-9.0547e-06 1.04767e-05 0)
(-1.00579e-05 9.56119e-06 0)
(-1.09132e-05 8.61325e-06 0)
(-1.16251e-05 7.6552e-06 0)
(-1.22028e-05 6.70601e-06 0)
(-1.26575e-05 5.78085e-06 0)
(-1.30015e-05 4.89102e-06 0)
(-1.32473e-05 4.04303e-06 0)
(-1.34057e-05 3.24014e-06 0)
(-1.34871e-05 2.48365e-06 0)
(-1.34997e-05 1.77346e-06 0)
(-1.34495e-05 1.10885e-06 0)
(-1.33407e-05 4.88693e-07 0)
(-1.31769e-05 -8.79179e-08 0)
(-1.29591e-05 -6.19485e-07 0)
(-1.2688e-05 -1.10584e-06 0)
(-1.23658e-05 -1.54113e-06 0)
(-1.19943e-05 -1.92172e-06 0)
(-1.15778e-05 -2.23967e-06 0)
(-1.11229e-05 -2.48858e-06 0)
(-1.06397e-05 -2.66114e-06 0)
(-1.01405e-05 -2.75089e-06 0)
(-9.63952e-06 -2.75587e-06 0)
(-9.15281e-06 -2.67478e-06 0)
(-8.69656e-06 -2.51151e-06 0)
(-8.28664e-06 -2.27377e-06 0)
(-7.93795e-06 -1.97356e-06 0)
(-7.66252e-06 -1.62667e-06 0)
(-7.46787e-06 -1.25084e-06 0)
(-7.35695e-06 -8.66222e-07 0)
(-7.32717e-06 -4.92319e-07 0)
(-7.37065e-06 -1.47193e-07 0)
(-7.47558e-06 1.53405e-07 0)
(-7.62401e-06 4.00453e-07 0)
(-7.80263e-06 5.82868e-07 0)
(-7.99362e-06 7.00638e-07 0)
(-8.17418e-06 7.61508e-07 0)
(-8.32838e-06 7.69717e-07 0)
(-8.44422e-06 7.41998e-07 0)
(-8.51398e-06 6.92041e-07 0)
(-8.53269e-06 6.37034e-07 0)
(-8.5017e-06 5.93801e-07 0)
(-8.4244e-06 5.77606e-07 0)
(-8.3093e-06 6.02077e-07 0)
(-8.16778e-06 6.78614e-07 0)
(-8.01295e-06 8.17167e-07 0)
(-7.85879e-06 1.02065e-06 0)
(-7.71881e-06 1.29124e-06 0)
(-7.60676e-06 1.62771e-06 0)
(-7.5346e-06 2.02599e-06 0)
(-7.51515e-06 2.48127e-06 0)
(-7.55796e-06 2.98519e-06 0)
(-7.67257e-06 3.53073e-06 0)
(-7.86234e-06 4.10267e-06 0)
(-8.13402e-06 4.70004e-06 0)
(-8.49272e-06 5.30259e-06 0)
(-8.93529e-06 5.89882e-06 0)
(-9.4607e-06 6.48094e-06 0)
(-1.00651e-05 7.03685e-06 0)
(-1.07442e-05 7.55582e-06 0)
(-1.14906e-05 8.02933e-06 0)
(-1.22948e-05 8.44956e-06 0)
(-1.31467e-05 8.81066e-06 0)
(-1.40362e-05 9.1091e-06 0)
(-1.49534e-05 9.34353e-06 0)
(-1.58879e-05 9.51367e-06 0)
(-1.68296e-05 9.62093e-06 0)
(-1.77669e-05 9.66764e-06 0)
(-1.86903e-05 9.6581e-06 0)
(-1.95916e-05 9.59752e-06 0)
(-2.04619e-05 9.49263e-06 0)
(-2.12955e-05 9.35267e-06 0)
(-2.20871e-05 9.18663e-06 0)
(-2.28321e-05 9.00427e-06 0)
(-2.35283e-05 8.81608e-06 0)
(-2.41732e-05 8.63231e-06 0)
(-2.47658e-05 8.46414e-06 0)
(-2.53099e-05 8.32611e-06 0)
(-2.5808e-05 8.2302e-06 0)
(-2.62634e-05 8.18659e-06 0)
(-2.66867e-05 8.21229e-06 0)
(-2.70886e-05 8.31978e-06 0)
(-2.74826e-05 8.52278e-06 0)
(-2.78868e-05 8.83607e-06 0)
(-2.83206e-05 9.26788e-06 0)
(-2.8814e-05 9.8301e-06 0)
(-2.93903e-05 1.05286e-05 0)
(-3.01069e-05 1.13659e-05 0)
(-3.09644e-05 1.23348e-05 0)
(-3.21005e-05 1.33655e-05 0)
(-3.34011e-05 1.41815e-05 0)
(-3.51061e-05 1.37027e-05 0)
(-3.66518e-05 9.21981e-06 0)
(-3.76719e-05 -2.97788e-06 0)
(-6.2021e-07 1.04105e-05 0)
(-2.20928e-06 1.32979e-05 0)
(-3.86805e-06 1.37537e-05 0)
(-5.47831e-06 1.3445e-05 0)
(-6.97905e-06 1.27894e-05 0)
(-8.32693e-06 1.19568e-05 0)
(-9.51721e-06 1.10231e-05 0)
(-1.05427e-05 1.00291e-05 0)
(-1.14079e-05 9.00486e-06 0)
(-1.21191e-05 7.97469e-06 0)
(-1.26874e-05 6.95901e-06 0)
(-1.31261e-05 5.97394e-06 0)
(-1.34496e-05 5.03091e-06 0)
(-1.36724e-05 4.13603e-06 0)
(-1.38068e-05 3.29206e-06 0)
(-1.38641e-05 2.49935e-06 0)
(-1.38532e-05 1.75671e-06 0)
(-1.37802e-05 1.06231e-06 0)
(-1.36491e-05 4.1382e-07 0)
(-1.34626e-05 -1.89855e-07 0)
(-1.32214e-05 -7.4836e-07 0)
(-1.29258e-05 -1.26055e-06 0)
(-1.25768e-05 -1.7219e-06 0)
(-1.21757e-05 -2.12675e-06 0)
(-1.17262e-05 -2.46661e-06 0)
(-1.12341e-05 -2.73318e-06 0)
(-1.07101e-05 -2.91747e-06 0)
(-1.01673e-05 -3.01218e-06 0)
(-9.62138e-06 -3.01399e-06 0)
(-9.09053e-06 -2.92112e-06 0)
(-8.59313e-06 -2.73744e-06 0)
(-8.14738e-06 -2.47101e-06 0)
(-7.7701e-06 -2.13488e-06 0)
(-7.475e-06 -1.74678e-06 0)
(-7.27088e-06 -1.32698e-06 0)
(-7.16101e-06 -8.98238e-07 0)
(-7.14247e-06 -4.83097e-07 0)
(-7.20624e-06 -1.02114e-07 0)
(-7.33765e-06 2.27113e-07 0)
(-7.51798e-06 4.93549e-07 0)
(-7.73123e-06 6.8423e-07 0)
(-7.95366e-06 8.01163e-07 0)
(-8.16258e-06 8.5122e-07 0)
(-8.34012e-06 8.41837e-07 0)
(-8.47125e-06 7.90474e-07 0)
(-8.54817e-06 7.14325e-07 0)
(-8.56484e-06 6.30908e-07 0)
(-8.52328e-06 5.62451e-07 0)
(-8.42797e-06 5.22578e-07 0)
(-8.28822e-06 5.29401e-07 0)
(-8.11628e-06 5.95359e-07 0)
(-7.92725e-06 7.29955e-07 0)
(-7.73765e-06 9.37702e-07 0)
(-7.56242e-06 1.2191e-06 0)
(-7.41705e-06 1.57354e-06 0)
(-7.314e-06 1.99605e-06 0)
(-7.26699e-06 2.48014e-06 0)
(-7.28636e-06 3.01939e-06 0)
(-7.38335e-06 3.60422e-06 0)
(-7.56032e-06 4.21809e-06 0)
(-7.82423e-06 4.85691e-06 0)
(-8.18256e-06 5.50238e-06 0)
(-8.6301e-06 6.14329e-06 0)
(-9.1659e-06 6.7676e-06 0)
(-9.78634e-06 7.36343e-06 0)
(-1.04864e-05 7.91908e-06 0)
(-1.12582e-05 8.42488e-06 0)
(-1.20916e-05 8.87242e-06 0)
(-1.29756e-05 9.25527e-06 0)
(-1.38989e-05 9.57021e-06 0)
(-1.48501e-05 9.81585e-06 0)
(-1.58179e-05 9.99142e-06 0)
(-1.67913e-05 1.00985e-05 0)
(-1.77588e-05 1.01409e-05 0)
(-1.87102e-05 1.01212e-05 0)
(-1.96362e-05 1.00462e-05 0)
(-2.05281e-05 9.92338e-06 0)
(-2.13797e-05 9.76271e-06 0)
(-2.21837e-05 9.57271e-06 0)
(-2.29352e-05 9.36517e-06 0)
(-2.36322e-05 9.15045e-06 0)
(-2.42715e-05 8.93838e-06 0)
(-2.48517e-05 8.74458e-06 0)
(-2.53767e-05 8.5799e-06 0)
(-2.58495e-05 8.4609e-06 0)
(-2.62735e-05 8.39769e-06 0)
(-2.66579e-05 8.40819e-06 0)
(-2.70145e-05 8.50694e-06 0)
(-2.73565e-05 8.70879e-06 0)
(-2.77022e-05 9.03012e-06 0)
(-2.80709e-05 9.48321e-06 0)
(-2.84929e-05 1.00805e-05 0)
(-2.89932e-05 1.08322e-05 0)
(-2.96305e-05 1.17437e-05 0)
(-3.04099e-05 1.28111e-05 0)
(-3.14716e-05 1.39649e-05 0)
(-3.27097e-05 1.49148e-05 0)
(-3.43619e-05 1.45106e-05 0)
(-3.58708e-05 9.85494e-06 0)
(-3.68554e-05 -3.03085e-06 0)
(-6.70194e-07 1.114e-05 0)
(-2.36563e-06 1.41453e-05 0)
(-4.12362e-06 1.45996e-05 0)
(-5.82083e-06 1.42457e-05 0)
(-7.39224e-06 1.35185e-05 0)
(-8.79351e-06 1.26036e-05 0)
(-1.00205e-05 1.15841e-05 0)
(-1.10674e-05 1.05045e-05 0)
(-1.19406e-05 9.39793e-06 0)
(-1.26483e-05 8.29063e-06 0)
(-1.32037e-05 7.20453e-06 0)
(-1.36227e-05 6.15672e-06 0)
(-1.39218e-05 5.15873e-06 0)
(-1.41178e-05 4.21618e-06 0)
(-1.4225e-05 3.3311e-06 0)
(-1.42559e-05 2.50251e-06 0)
(-1.42196e-05 1.72782e-06 0)
(-1.41222e-05 1.0041e-06 0)
(-1.39679e-05 3.27657e-07 0)
(-1.37592e-05 -3.03169e-07 0)
(-1.34952e-05 -8.89068e-07 0)
(-1.3176e-05 -1.42789e-06 0)
(-1.2801e-05 -1.91668e-06 0)
(-1.23701e-05 -2.34733e-06 0)
(-1.18866e-05 -2.7112e-06 0)
(-1.13558e-05 -2.99764e-06 0)
(-1.07882e-05 -3.19578e-06 0)
(-1.01979e-05 -3.29677e-06 0)
(-9.60249e-06 -3.29569e-06 0)
(-9.02253e-06 -3.1901e-06 0)
(-8.47915e-06 -2.98376e-06 0)
(-7.99336e-06 -2.68526e-06 0)
(-7.58418e-06 -2.3089e-06 0)
(-7.26705e-06 -1.87452e-06 0)
(-7.05243e-06 -1.40514e-06 0)
(-6.94416e-06 -9.26694e-07 0)
(-6.93882e-06 -4.65164e-07 0)
(-7.02586e-06 -4.42238e-08 0)
(-7.18805e-06 3.15146e-07 0)
(-7.40525e-06 6.0332e-07 0)
(-7.65768e-06 8.03758e-07 0)
(-7.91738e-06 9.19308e-07 0)
(-8.15938e-06 9.5471e-07 0)
(-8.36315e-06 9.2447e-07 0)
(-8.51174e-06 8.4496e-07 0)
(-8.59706e-06 7.37632e-07 0)
(-8.61132e-06 6.21413e-07 0)
(-8.55794e-06 5.22613e-07 0)
(-8.44273e-06 4.56155e-07 0)
(-8.27457e-06 4.41905e-07 0)
(-8.06857e-06 4.95142e-07 0)
(-7.84165e-06 6.24603e-07 0)
(-7.61255e-06 8.35518e-07 0)
(-7.39806e-06 1.12853e-06 0)
(-7.21523e-06 1.50217e-06 0)
(-7.07861e-06 1.95144e-06 0)
(-7.00099e-06 2.46619e-06 0)
(-6.99375e-06 3.04361e-06 0)
(-7.0718e-06 3.66934e-06 0)
(-7.23507e-06 4.32834e-06 0)
(-7.49068e-06 5.01169e-06 0)
(-7.84776e-06 5.70285e-06 0)
(-8.30042e-06 6.39183e-06 0)
(-8.84785e-06 7.06123e-06 0)
(-9.48589e-06 7.69977e-06 0)
(-1.02093e-05 8.29463e-06 0)
(-1.10092e-05 8.83498e-06 0)
(-1.1875e-05 9.31161e-06 0)
(-1.27944e-05 9.71739e-06 0)
(-1.37547e-05 1.00492e-05 0)
(-1.4743e-05 1.03057e-05 0)
(-1.57469e-05 1.04862e-05 0)
(-1.67548e-05 1.05927e-05 0)
(-1.77548e-05 1.06287e-05 0)
(-1.87361e-05 1.05978e-05 0)
(-1.96892e-05 1.05072e-05 0)
(-2.06046e-05 1.03643e-05 0)
(-2.14752e-05 1.01798e-05 0)
(-2.22928e-05 9.9645e-06 0)
(-2.30517e-05 9.72815e-06 0)
(-2.37505e-05 9.48279e-06 0)
(-2.43842e-05 9.24086e-06 0)
(-2.49521e-05 9.01704e-06 0)
(-2.54576e-05 8.82264e-06 0)
(-2.59039e-05 8.67693e-06 0)
(-2.62942e-05 8.58992e-06 0)
(-2.66371e-05 8.58262e-06 0)
(-2.69451e-05 8.66872e-06 0)
(-2.72303e-05 8.86561e-06 0)
(-2.75109e-05 9.19141e-06 0)
(-2.78067e-05 9.66218e-06 0)
(-2.81474e-05 1.02914e-05 0)
(-2.8559e-05 1.10933e-05 0)
(-2.91029e-05 1.20785e-05 0)
(-2.97898e-05 1.32455e-05 0)
(-3.07622e-05 1.45261e-05 0)
(-3.19217e-05 1.56146e-05 0)
(-3.34996e-05 1.52897e-05 0)
(-3.49445e-05 1.04649e-05 0)
(-3.58593e-05 -3.11278e-06 0)
(-7.25945e-07 1.19244e-05 0)
(-2.5414e-06 1.50478e-05 0)
(-4.40986e-06 1.54954e-05 0)
(-6.20144e-06 1.50874e-05 0)
(-7.84761e-06 1.42796e-05 0)
(-9.30457e-06 1.32732e-05 0)
(-1.05685e-05 1.21594e-05 0)
(-1.16357e-05 1.09867e-05 0)
(-1.25143e-05 9.79111e-06 0)
(-1.32151e-05 8.60125e-06 0)
(-1.37537e-05 7.44056e-06 0)
(-1.41485e-05 6.32714e-06 0)
(-1.44191e-05 5.27253e-06 0)
(-1.45848e-05 4.28174e-06 0)
(-1.46614e-05 3.35568e-06 0)
(-1.4663e-05 2.49198e-06 0)
(-1.45995e-05 1.68608e-06 0)
(-1.44773e-05 9.33836e-07 0)
(-1.42991e-05 2.29775e-07 0)
(-1.40673e-05 -4.27502e-07 0)
(-1.37805e-05 -1.04174e-06 0)
(-1.34362e-05 -1.60826e-06 0)
(-1.30329e-05 -2.12606e-06 0)
(-1.25695e-05 -2.58459e-06 0)
(-1.20484e-05 -2.97484e-06 0)
(-1.14749e-05 -3.28346e-06 0)
(-1.08597e-05 -3.49789e-06 0)
(-1.02179e-05 -3.6066e-06 0)
(-9.56915e-06 -3.6031e-06 0)
(-8.9359e-06 -3.48395e-06 0)
(-8.34214e-06 -3.2527e-06 0)
(-7.81197e-06 -2.91841e-06 0)
(-7.36733e-06 -2.49698e-06 0)
(-7.02608e-06 -2.01058e-06 0)
(-6.80017e-06 -1.48536e-06 0)
(-6.69402e-06 -9.50942e-07 0)
(-6.70407e-06 -4.37128e-07 0)
(-6.81901e-06 2.88766e-08 0)
(-7.01661e-06 4.24013e-07 0)
(-7.27586e-06 7.33086e-07 0)
(-7.57475e-06 9.41454e-07 0)
(-7.879e-06 1.05327e-06 0)
(-8.16058e-06 1.07437e-06 0)
(-8.39596e-06 1.02001e-06 0)
(-8.56611e-06 9.06755e-07 0)
(-8.6616e-06 7.61136e-07 0)
(-8.67385e-06 6.08821e-07 0)
(-8.60705e-06 4.73247e-07 0)
(-8.46912e-06 3.7639e-07 0)
(-8.26912e-06 3.38176e-07 0)
(-8.02474e-06 3.76709e-07 0)
(-7.75604e-06 4.98853e-07 0)
(-7.48359e-06 7.12707e-07 0)
(-7.226e-06 1.0177e-06 0)
(-7.00202e-06 1.41202e-06 0)
(-6.82828e-06 1.88936e-06 0)
(-6.71712e-06 2.43974e-06 0)
(-6.68148e-06 3.05584e-06 0)
(-6.73868e-06 3.72488e-06 0)
(-6.88738e-06 4.43326e-06 0)
(-7.13484e-06 5.16348e-06 0)
(-7.48971e-06 5.90442e-06 0)
(-7.94771e-06 6.64493e-06 0)
(-8.50843e-06 7.36257e-06 0)
(-9.16591e-06 8.04695e-06 0)
(-9.91474e-06 8.68366e-06 0)
(-1.07448e-05 9.26075e-06 0)
(-1.16443e-05 9.76826e-06 0)
(-1.26009e-05 1.01983e-05 0)
(-1.36008e-05 1.05476e-05 0)
(-1.46294e-05 1.08148e-05 0)
(-1.56731e-05 1.09996e-05 0)
(-1.67194e-05 1.11044e-05 0)
(-1.77555e-05 1.1133e-05 0)
(-1.87695e-05 1.10892e-05 0)
(-1.97521e-05 1.09805e-05 0)
(-2.0693e-05 1.08169e-05 0)
(-2.15829e-05 1.06052e-05 0)
(-2.24151e-05 1.03619e-05 0)
(-2.31835e-05 1.00937e-05 0)
(-2.38845e-05 9.81441e-06 0)
(-2.45136e-05 9.5394e-06 0)
(-2.50703e-05 9.281e-06 0)
(-2.55561e-05 9.0542e-06 0)
(-2.59753e-05 8.87765e-06 0)
(-2.63303e-05 8.76295e-06 0)
(-2.6629e-05 8.73332e-06 0)
(-2.68851e-05 8.80279e-06 0)
(-2.71091e-05 8.99096e-06 0)
(-2.73187e-05 9.31698e-06 0)
(-2.75344e-05 9.80028e-06 0)
(-2.77854e-05 1.04574e-05 0)
(-2.80996e-05 1.13068e-05 0)
(-2.85408e-05 1.23638e-05 0)
(-2.91239e-05 1.36316e-05 0)
(-2.99926e-05 1.50412e-05 0)
(-3.10562e-05 1.62722e-05 0)
(-3.25421e-05 1.60296e-05 0)
(-3.39065e-05 1.10394e-05 0)
(-3.47525e-05 -3.2278e-06 0)
(-7.8839e-07 1.27706e-05 0)
(-2.73991e-06 1.60122e-05 0)
(-4.73141e-06 1.64459e-05 0)
(-6.62512e-06 1.59734e-05 0)
(-8.35012e-06 1.50743e-05 0)
(-9.86483e-06 1.39661e-05 0)
(-1.11656e-05 1.27487e-05 0)
(-1.22513e-05 1.14743e-05 0)
(-1.31324e-05 1.01827e-05 0)
(-1.38223e-05 8.90451e-06 0)
(-1.43396e-05 7.66486e-06 0)
(-1.47055e-05 6.48292e-06 0)
(-1.49428e-05 5.37017e-06 0)
(-1.50738e-05 4.33092e-06 0)
(-1.51168e-05 3.36439e-06 0)
(-1.50869e-05 2.46668e-06 0)
(-1.49945e-05 1.63078e-06 0)
(-1.4846e-05 8.51296e-07 0)
(-1.46442e-05 1.20125e-07 0)
(-1.43893e-05 -5.63384e-07 0)
(-1.40802e-05 -1.20587e-06 0)
(-1.37116e-05 -1.80181e-06 0)
(-1.32803e-05 -2.35037e-06 0)
(-1.27842e-05 -2.83974e-06 0)
(-1.22236e-05 -3.25922e-06 0)
(-1.16044e-05 -3.59293e-06 0)
(-1.09373e-05 -3.82593e-06 0)
(-1.02393e-05 -3.94391e-06 0)
(-9.53203e-06 -3.93851e-06 0)
(-8.83992e-06 -3.8051e-06 0)
(-8.19011e-06 -3.54667e-06 0)
(-7.6102e-06 -3.17261e-06 0)
(-7.12558e-06 -2.70073e-06 0)
(-6.75718e-06 -2.15578e-06 0)
(-6.51884e-06 -1.56768e-06 0)
(-6.41579e-06 -9.70145e-07 0)
(-6.44414e-06 -3.97332e-07 0)
(-6.59039e-06 1.19403e-07 0)
(-6.8311e-06 5.56744e-07 0)
(-7.14181e-06 8.87184e-07 0)
(-7.49314e-06 1.1052e-06 0)
(-7.84712e-06 1.21141e-06 0)
(-8.17332e-06 1.21311e-06 0)
(-8.44543e-06 1.1285e-06 0)
(-8.64059e-06 9.76387e-07 0)
(-8.74611e-06 7.87483e-07 0)
(-8.75561e-06 5.91998e-07 0)
(-8.67434e-06 4.13332e-07 0)
(-8.51004e-06 2.81425e-07 0)
(-8.27356e-06 2.18713e-07 0)
(-7.98676e-06 2.36621e-07 0)
(-7.67184e-06 3.50275e-07 0)
(-7.35114e-06 5.66631e-07 0)
(-7.04616e-06 8.84997e-07 0)
(-6.77697e-06 1.30127e-06 0)
(-6.56231e-06 1.80914e-06 0)
(-6.41556e-06 2.39774e-06 0)
(-6.34977e-06 3.05595e-06 0)
(-6.38281e-06 3.77034e-06 0)
(-6.5161e-06 4.53142e-06 0)
(-6.75515e-06 5.31293e-06 0)
(-7.10644e-06 6.10854e-06 0)
(-7.5703e-06 6.90217e-06 0)
(-8.14566e-06 7.6723e-06 0)
(-8.82434e-06 8.4061e-06 0)
(-9.60121e-06 9.08736e-06 0)
(-1.04642e-05 9.70328e-06 0)
(-1.14006e-05 1.02433e-05 0)
(-1.2397e-05 1.06991e-05 0)
(-1.34388e-05 1.10667e-05 0)
(-1.45105e-05 1.13447e-05 0)
(-1.55973e-05 1.15334e-05 0)
(-1.66854e-05 1.16356e-05 0)
(-1.77607e-05 1.16553e-05 0)
(-1.88103e-05 1.15967e-05 0)
(-1.98238e-05 1.14678e-05 0)
(-2.07921e-05 1.12803e-05 0)
(-2.17039e-05 1.10411e-05 0)
(-2.25519e-05 1.07653e-05 0)
(-2.33313e-05 1.04624e-05 0)
(-2.40357e-05 1.01464e-05 0)
(-2.46609e-05 9.83332e-06 0)
(-2.5206e-05 9.53702e-06 0)
(-2.56718e-05 9.2741e-06 0)
(-2.60631e-05 9.06189e-06 0)
(-2.63809e-05 8.91611e-06 0)
(-2.66328e-05 8.85923e-06 0)
(-2.68329e-05 8.90716e-06 0)
(-2.69908e-05 9.0818e-06 0)
(-2.71232e-05 9.40345e-06 0)
(-2.7251e-05 9.89396e-06 0)
(-2.74039e-05 1.05744e-05 0)
(-2.76103e-05 1.14673e-05 0)
(-2.79356e-05 1.25939e-05 0)
(-2.84e-05 1.39623e-05 0)
(-2.9148e-05 1.55017e-05 0)
(-3.00969e-05 1.68782e-05 0)
(-3.14701e-05 1.67215e-05 0)
(-3.27315e-05 1.15693e-05 0)
(-3.34904e-05 -3.37264e-06 0)
(-8.59022e-07 1.36866e-05 0)
(-2.9654e-06 1.70463e-05 0)
(-5.09327e-06 1.74563e-05 0)
(-7.09733e-06 1.69069e-05 0)
(-8.90533e-06 1.59043e-05 0)
(-1.04794e-05 1.46827e-05 0)
(-1.18165e-05 1.33512e-05 0)
(-1.29185e-05 1.1966e-05 0)
(-1.37983e-05 1.05707e-05 0)
(-1.44727e-05 9.19801e-06 0)
(-1.49633e-05 7.8749e-06 0)
(-1.52948e-05 6.62152e-06 0)
(-1.54936e-05 5.44926e-06 0)
(-1.55852e-05 4.36163e-06 0)
(-1.55907e-05 3.35583e-06 0)
(-1.55266e-05 2.42551e-06 0)
(-1.54041e-05 1.56152e-06 0)
(-1.52288e-05 7.55888e-07 0)
(-1.5003e-05 1.06998e-09 0)
(-1.47266e-05 -7.10569e-07 0)
(-1.43964e-05 -1.38075e-06 0)
(-1.40055e-05 -2.00825e-06 0)
(-1.35479e-05 -2.58916e-06 0)
(-1.30199e-05 -3.11277e-06 0)
(-1.24196e-05 -3.56503e-06 0)
(-1.17525e-05 -3.92774e-06 0)
(-1.103e-05 -4.1821e-06 0)
(-1.02705e-05 -4.31154e-06 0)
(-9.49777e-06 -4.30511e-06 0)
(-8.73938e-06 -4.15681e-06 0)
(-8.02632e-06 -3.86875e-06 0)
(-7.39012e-06 -3.45067e-06 0)
(-6.86015e-06 -2.92223e-06 0)
(-6.46094e-06 -2.31128e-06 0)
(-6.20893e-06 -1.65208e-06 0)
(-6.1105e-06 -9.83096e-07 0)
(-6.16095e-06 -3.43724e-07 0)
(-6.34352e-06 2.30769e-07 0)
(-6.6342e-06 7.09178e-07 0)
(-7.00316e-06 1.06846e-06 0)
(-7.41415e-06 1.29895e-06 0)
(-7.82657e-06 1.39673e-06 0)
(-8.20347e-06 1.37391e-06 0)
(-8.51531e-06 1.25249e-06 0)
(-8.7372e-06 1.05517e-06 0)
(-8.85428e-06 8.16437e-07 0)
(-8.86126e-06 5.69332e-07 0)
(-8.76228e-06 3.42213e-07 0)
(-8.56596e-06 1.69526e-07 0)
(-8.29062e-06 7.42986e-08 0)
(-7.95772e-06 7.0817e-08 0)
(-7.58984e-06 1.76449e-07 0)
(-7.21534e-06 3.95159e-07 0)
(-6.85805e-06 7.2809e-07 0)
(-6.5396e-06 1.16808e-06 0)
(-6.28022e-06 1.70913e-06 0)
(-6.09475e-06 2.33769e-06 0)
(-5.99736e-06 3.04343e-06 0)
(-6.00424e-06 3.80533e-06 0)
(-6.1199e-06 4.62179e-06 0)
(-6.34978e-06 5.4603e-06 0)
(-6.69779e-06 6.31536e-06 0)
(-7.1676e-06 7.16354e-06 0)
(-7.75764e-06 7.9912e-06 0)
(-8.45995e-06 8.77855e-06 0)
(-9.26871e-06 9.50762e-06 0)
(-1.01698e-05 1.01648e-05 0)
(-1.11487e-05 1.07391e-05 0)
(-1.21901e-05 1.12215e-05 0)
(-1.32781e-05 1.16079e-05 0)
(-1.43964e-05 1.1897e-05 0)
(-1.55289e-05 1.20891e-05 0)
(-1.66607e-05 1.21877e-05 0)
(-1.77774e-05 1.21966e-05 0)
(-1.88648e-05 1.21213e-05 0)
(-1.99113e-05 1.19706e-05 0)
(-2.09074e-05 1.17556e-05 0)
(-2.18419e-05 1.14864e-05 0)
(-2.27069e-05 1.11748e-05 0)
(-2.34966e-05 1.08341e-05 0)
(-2.42033e-05 1.04779e-05 0)
(-2.48226e-05 1.01236e-05 0)
(-2.53536e-05 9.785e-06 0)
(-2.57969e-05 9.48088e-06 0)
(-2.61573e-05 9.22837e-06 0)
(-2.64347e-05 9.04802e-06 0)
(-2.66367e-05 8.95802e-06 0)
(-2.67767e-05 8.97973e-06 0)
(-2.68624e-05 9.13489e-06 0)
(-2.69109e-05 9.4474e-06 0)
(-2.69431e-05 9.93918e-06 0)
(-2.69901e-05 1.06379e-05 0)
(-2.70809e-05 1.15699e-05 0)
(-2.72806e-05 1.2763e-05 0)
(-2.7613e-05 1.42293e-05 0)
(-2.82218e-05 1.58985e-05 0)
(-2.90339e-05 1.74214e-05 0)
(-3.02684e-05 1.73533e-05 0)
(-3.14053e-05 1.20433e-05 0)
(-3.20458e-05 -3.56041e-06 0)
(-9.39257e-07 1.4682e-05 0)
(-3.22206e-06 1.81588e-05 0)
(-5.50078e-06 1.85322e-05 0)
(-7.62394e-06 1.78908e-05 0)
(-9.51937e-06 1.67713e-05 0)
(-1.11539e-05 1.54232e-05 0)
(-1.25261e-05 1.39658e-05 0)
(-1.36416e-05 1.24601e-05 0)
(-1.45157e-05 1.09528e-05 0)
(-1.51694e-05 9.47899e-06 0)
(-1.56271e-05 8.06764e-06 0)
(-1.59175e-05 6.73991e-06 0)
(-1.60714e-05 5.50716e-06 0)
(-1.61185e-05 4.37161e-06 0)
(-1.60826e-05 3.32833e-06 0)
(-1.59815e-05 2.36735e-06 0)
(-1.58264e-05 1.47757e-06 0)
(-1.56233e-05 6.47567e-07 0)
(-1.5375e-05 -1.30467e-07 0)
(-1.50784e-05 -8.68264e-07 0)
(-1.47279e-05 -1.56621e-06 0)
(-1.43158e-05 -2.22613e-06 0)
(-1.38332e-05 -2.84212e-06 0)
(-1.32732e-05 -3.40364e-06 0)
(-1.26324e-05 -3.89292e-06 0)
(-1.19144e-05 -4.28924e-06 0)
(-1.11318e-05 -4.56888e-06 0)
(-1.03046e-05 -4.7126e-06 0)
(-9.45917e-06 -4.70661e-06 0)
(-8.62667e-06 -4.543e-06 0)
(-7.84234e-06 -4.22263e-06 0)
(-7.14243e-06 -3.75577e-06 0)
(-6.5611e-06 -3.16383e-06 0)
(-6.12706e-06 -2.47836e-06 0)
(-5.85976e-06 -1.73854e-06 0)
(-5.76705e-06 -9.88504e-07 0)
(-5.84303e-06 -2.73968e-07 0)
(-6.0698e-06 3.64344e-07 0)
(-6.41797e-06 8.91227e-07 0)
(-6.8524e-06 1.28148e-06 0)
(-7.33404e-06 1.52026e-06 0)
(-7.81401e-06 1.60925e-06 0)
(-8.24887e-06 1.55935e-06 0)
(-8.60704e-06 1.39423e-06 0)
(-8.85987e-06 1.14509e-06 0)
(-8.98976e-06 8.46583e-07 0)
(-8.99311e-06 5.4032e-07 0)
(-8.87436e-06 2.58777e-07 0)
(-8.64396e-06 3.7454e-08 0)
(-8.32277e-06 -9.67265e-08 0)
(-7.93547e-06 -1.22082e-07 0)
(-7.50962e-06 -2.53683e-08 0)
(-7.07567e-06 1.961e-07 0)
(-6.66052e-06 5.44484e-07 0)
(-6.28778e-06 1.01133e-06 0)
(-5.97948e-06 1.58668e-06 0)
(-5.75118e-06 2.25886e-06 0)
(-5.61959e-06 3.0148e-06 0)
(-5.59804e-06 3.83096e-06 0)
(-5.69332e-06 4.70275e-06 0)
(-5.91262e-06 5.6042e-06 0)
(-6.25814e-06 6.52262e-06 0)
(-6.73465e-06 7.43119e-06 0)
(-7.33972e-06 8.32038e-06 0)
(-8.06804e-06 9.16553e-06 0)
(-8.91128e-06 9.94617e-06 0)
(-9.85318e-06 1.06474e-05 0)
(-1.08781e-05 1.12579e-05 0)
(-1.1969e-05 1.17679e-05 0)
(-1.31078e-05 1.21733e-05 0)
(-1.4277e-05 1.24734e-05 0)
(-1.54594e-05 1.26682e-05 0)
(-1.66388e-05 1.27618e-05 0)
(-1.78e-05 1.27583e-05 0)
(-1.89284e-05 1.26647e-05 0)
(-2.00113e-05 1.24893e-05 0)
(-2.10385e-05 1.22448e-05 0)
(-2.19981e-05 1.19412e-05 0)
(-2.28813e-05 1.1591e-05 0)
(-2.36818e-05 1.12088e-05 0)
(-2.43908e-05 1.08083e-05 0)
(-2.50045e-05 1.0409e-05 0)
(-2.55218e-05 1.00236e-05 0)
(-2.59424e-05 9.67372e-06 0)
(-2.62706e-05 9.37729e-06 0)
(-2.65065e-05 9.15658e-06 0)
(-2.66569e-05 9.02823e-06 0)
(-2.67336e-05 9.01837e-06 0)
(-2.67433e-05 9.14783e-06 0)
(-2.67032e-05 9.44463e-06 0)
(-2.66335e-05 9.93218e-06 0)
(-2.65658e-05 1.06433e-05 0)
(-2.65305e-05 1.161e-05 0)
(-2.65902e-05 1.28643e-05 0)
(-2.67725e-05 1.44238e-05 0)
(-2.72209e-05 1.62211e-05 0)
(-2.7875e-05 1.78907e-05 0)
(-2.8954e-05 1.79153e-05 0)
(-2.99584e-05 1.24553e-05 0)
(-3.04827e-05 -3.79955e-06 0)
(-1.0305e-06 1.57679e-05 0)
(-3.51427e-06 1.93594e-05 0)
(-5.95988e-06 1.96798e-05 0)
(-8.21128e-06 1.89284e-05 0)
(-1.01987e-05 1.76765e-05 0)
(-1.18951e-05 1.61878e-05 0)
(-1.33003e-05 1.45913e-05 0)
(-1.44252e-05 1.29543e-05 0)
(-1.52885e-05 1.13261e-05 0)
(-1.59151e-05 9.74427e-06 0)
(-1.63329e-05 8.23963e-06 0)
(-1.65748e-05 6.83456e-06 0)
(-1.66765e-05 5.5406e-06 0)
(-1.66728e-05 4.35847e-06 0)
(-1.65905e-05 3.27976e-06 0)
(-1.64493e-05 2.29135e-06 0)
(-1.62604e-05 1.37789e-06 0)
(-1.60292e-05 5.26544e-07 0)
(-1.57577e-05 -2.75001e-07 0)
(-1.54415e-05 -1.03586e-06 0)
(-1.50729e-05 -1.76182e-06 0)
(-1.46418e-05 -2.4548e-06 0)
(-1.41358e-05 -3.1089e-06 0)
(-1.35445e-05 -3.71267e-06 0)
(-1.28619e-05 -4.24444e-06 0)
(-1.20903e-05 -4.67933e-06 0)
(-1.12425e-05 -4.98913e-06 0)
(-1.03408e-05 -5.15072e-06 0)
(-9.41459e-06 -5.147e-06 0)
(-8.49884e-06 -4.96799e-06 0)
(-7.63366e-06 -4.61262e-06 0)
(-6.86111e-06 -4.09154e-06 0)
(-6.2213e-06 -3.42822e-06 0)
(-5.74782e-06 -2.65845e-06 0)
(-5.46342e-06 -1.82713e-06 0)
(-5.37771e-06 -9.85036e-07 0)
(-5.48438e-06 -1.84608e-07 0)
(-5.76138e-06 5.27524e-07 0)
(-6.17665e-06 1.10914e-06 0)
(-6.68993e-06 1.53248e-06 0)
(-7.25158e-06 1.78088e-06 0)
(-7.80824e-06 1.85783e-06 0)
(-8.31198e-06 1.77328e-06 0)
(-8.72308e-06 1.55707e-06 0)
(-9.0112e-06 1.24685e-06 0)
(-9.15657e-06 8.79214e-07 0)
(-9.15518e-06 5.03292e-07 0)
(-9.01416e-06 1.59945e-07 0)
(-8.74457e-06 -1.15349e-07 0)
(-8.37132e-06 -2.92259e-07 0)
(-7.92267e-06 -3.43694e-07 0)
(-7.43096e-06 -2.59083e-07 0)
(-6.93032e-06 -3.35351e-08 0)
(-6.45013e-06 3.32151e-07 0)
(-6.01793e-06 8.27815e-07 0)
(-5.65553e-06 1.44081e-06 0)
(-5.37923e-06 2.16073e-06 0)
(-5.20904e-06 2.96699e-06 0)
(-5.15707e-06 3.84477e-06 0)
(-5.22943e-06 4.77556e-06 0)
(-5.43589e-06 5.74452e-06 0)
(-5.78071e-06 6.73044e-06 0)
(-6.26575e-06 7.70626e-06 0)
(-6.88808e-06 8.66279e-06 0)
(-7.64508e-06 9.56639e-06 0)
(-8.52582e-06 1.04042e-05 0)
(-9.51153e-06 1.11526e-05 0)
(-1.0586e-05 1.18019e-05 0)
(-1.17311e-05 1.23408e-05 0)
(-1.29261e-05 1.27658e-05 0)
(-1.41515e-05 1.30762e-05 0)
(-1.53881e-05 1.32724e-05 0)
(-1.66187e-05 1.33593e-05 0)
(-1.78273e-05 1.33424e-05 0)
(-1.89998e-05 1.32278e-05 0)
(-2.01223e-05 1.30257e-05 0)
(-2.11834e-05 1.27489e-05 0)
(-2.21714e-05 1.24073e-05 0)
(-2.30756e-05 1.20151e-05 0)
(-2.38893e-05 1.15872e-05 0)
(-2.46025e-05 1.11386e-05 0)
(-2.52119e-05 1.06885e-05 0)
(-2.57162e-05 1.02535e-05 0)
(-2.6114e-05 9.85328e-06 0)
(-2.64095e-05 9.50868e-06 0)
(-2.66034e-05 9.24077e-06 0)
(-2.67006e-05 9.06945e-06 0)
(-2.67121e-05 9.02115e-06 0)
(-2.66438e-05 9.11933e-06 0)
(-2.65112e-05 9.39203e-06 0)
(-2.63338e-05 9.86927e-06 0)
(-2.61417e-05 1.05854e-05 0)
(-2.59666e-05 1.15803e-05 0)
(-2.58685e-05 1.28884e-05 0)
(-2.58803e-05 1.45361e-05 0)
(-2.61467e-05 1.64591e-05 0)
(-2.66225e-05 1.82773e-05 0)
(-2.75333e-05 1.84028e-05 0)
(-2.84048e-05 1.28062e-05 0)
(-2.8827e-05 -4.08572e-06 0)
(-1.13456e-06 1.69567e-05 0)
(-3.84697e-06 2.06589e-05 0)
(-6.477e-06 2.09058e-05 0)
(-8.86647e-06 2.00231e-05 0)
(-1.09505e-05 1.86211e-05 0)
(-1.27096e-05 1.69764e-05 0)
(-1.41453e-05 1.52265e-05 0)
(-1.52746e-05 1.34457e-05 0)
(-1.61209e-05 1.16874e-05 0)
(-1.67131e-05 9.99009e-06 0)
(-1.70826e-05 8.38682e-06 0)
(-1.72672e-05 6.90154e-06 0)
(-1.73085e-05 5.54581e-06 0)
(-1.7247e-05 4.31939e-06 0)
(-1.71136e-05 3.20804e-06 0)
(-1.69285e-05 2.19599e-06 0)
(-1.67042e-05 1.26252e-06 0)
(-1.64453e-05 3.92767e-07 0)
(-1.61514e-05 -4.28493e-07 0)
(-1.58178e-05 -1.21213e-06 0)
(-1.54339e-05 -1.96591e-06 0)
(-1.49865e-05 -2.6936e-06 0)
(-1.44598e-05 -3.38918e-06 0)
(-1.38387e-05 -4.03974e-06 0)
(-1.31136e-05 -4.62036e-06 0)
(-1.2285e-05 -5.09986e-06 0)
(-1.13666e-05 -5.44571e-06 0)
(-1.0383e-05 -5.62976e-06 0)
(-9.3673e-06 -5.63101e-06 0)
(-8.35873e-06 -5.43663e-06 0)
(-7.40275e-06 -5.04345e-06 0)
(-6.54814e-06 -4.46208e-06 0)
(-5.84199e-06 -3.71839e-06 0)
(-5.32376e-06 -2.85314e-06 0)
(-5.02015e-06 -1.91796e-06 0)
(-4.94265e-06 -9.71008e-07 0)
(-5.08367e-06 -7.21737e-08 0)
(-5.42039e-06 7.22728e-07 0)
(-5.91362e-06 1.36382e-06 0)
(-6.51507e-06 1.82567e-06 0)
(-7.17007e-06 2.08581e-06 0)
(-7.81671e-06 2.14613e-06 0)
(-8.39846e-06 2.01981e-06 0)
(-8.8697e-06 1.7448e-06 0)
(-9.1982e-06 1.36097e-06 0)
(-9.36095e-06 9.15359e-07 0)
(-9.35263e-06 4.58901e-07 0)
(-9.18436e-06 4.42358e-08 0)
(-8.87137e-06 -2.93956e-07 0)
(-8.43833e-06 -5.17885e-07 0)
(-7.91981e-06 -5.99071e-07 0)
(-7.35472e-06 -5.2792e-07 0)
(-6.77948e-06 -2.97888e-07 0)
(-6.22849e-06 8.64891e-08 0)
(-5.73119e-06 6.13857e-07 0)
(-5.30975e-06 1.27014e-06 0)
(-4.98362e-06 2.03984e-06 0)
(-4.77157e-06 2.90122e-06 0)
(-4.68614e-06 3.84387e-06 0)
(-4.73488e-06 4.84271e-06 0)
(-4.9269e-06 5.88201e-06 0)
(-5.27015e-06 6.93843e-06 0)
(-5.76265e-06 7.99012e-06 0)
(-6.40484e-06 9.01573e-06 0)
(-7.19297e-06 9.98505e-06 0)
(-8.11343e-06 1.08825e-05 0)
(-9.14881e-06 1.16827e-05 0)
(-1.02784e-05 1.23732e-05 0)
(-1.14832e-05 1.29428e-05 0)
(-1.27388e-05 1.33876e-05 0)
(-1.40245e-05 1.37077e-05 0)
(-1.53196e-05 1.39035e-05 0)
(-1.66048e-05 1.39827e-05 0)
(-1.78649e-05 1.39493e-05 0)
(-1.90854e-05 1.38136e-05 0)
(-2.02502e-05 1.35809e-05 0)
(-2.13481e-05 1.32694e-05 0)
(-2.23665e-05 1.28861e-05 0)
(-2.32931e-05 1.2448e-05 0)
(-2.4121e-05 1.19701e-05 0)
(-2.48397e-05 1.1469e-05 0)
(-2.54448e-05 1.09635e-05 0)
(-2.59358e-05 1.04743e-05 0)
(-2.63104e-05 1.00191e-05 0)
(-2.65723e-05 9.62101e-06 0)
(-2.67221e-05 9.3002e-06 0)
(-2.67635e-05 9.08063e-06 0)
(-2.67066e-05 8.98704e-06 0)
(-2.65569e-05 9.04719e-06 0)
(-2.63282e-05 9.28811e-06 0)
(-2.60374e-05 9.74647e-06 0)
(-2.57123e-05 1.04589e-05 0)
(-2.53834e-05 1.14721e-05 0)
(-2.51098e-05 1.28255e-05 0)
(-2.49285e-05 1.45549e-05 0)
(-2.49871e-05 1.66011e-05 0)
(-2.52606e-05 1.8572e-05 0)
(-2.59853e-05 1.88117e-05 0)
(-2.67164e-05 1.30964e-05 0)
(-2.70282e-05 -4.42104e-06 0)
(-1.25332e-06 1.8263e-05 0)
(-4.22522e-06 2.20697e-05 0)
(-7.05912e-06 2.22174e-05 0)
(-9.59756e-06 2.11787e-05 0)
(-1.17829e-05 1.96061e-05 0)
(-1.36051e-05 1.77879e-05 0)
(-1.5068e-05 1.58697e-05 0)
(-1.61953e-05 1.39311e-05 0)
(-1.7017e-05 1.20327e-05 0)
(-1.75665e-05 1.02121e-05 0)
(-1.78783e-05 8.50455e-06 0)
(-1.79957e-05 6.93628e-06 0)
(-1.79676e-05 5.51896e-06 0)
(-1.78405e-05 4.25089e-06 0)
(-1.76511e-05 3.11186e-06 0)
(-1.74212e-05 2.08015e-06 0)
(-1.71608e-05 1.13144e-06 0)
(-1.6874e-05 2.46489e-07 0)
(-1.65588e-05 -5.91385e-07 0)
(-1.62093e-05 -1.39608e-06 0)
(-1.5813e-05 -2.17712e-06 0)
(-1.53526e-05 -2.9406e-06 0)
(-1.48079e-05 -3.68124e-06 0)
(-1.41585e-05 -4.38443e-06 0)
(-1.33903e-05 -5.02092e-06 0)
(-1.25016e-05 -5.5535e-06 0)
(-1.15066e-05 -5.94222e-06 0)
(-1.04329e-05 -6.15393e-06 0)
(-9.31774e-06 -6.16352e-06 0)
(-8.20526e-06 -5.9541e-06 0)
(-7.14702e-06 -5.52017e-06 0)
(-6.19941e-06 -4.87189e-06 0)
(-5.4179e-06 -4.03763e-06 0)
(-4.84892e-06 -3.06419e-06 0)
(-4.52367e-06 -2.01082e-06 0)
(-4.45584e-06 -9.442e-07 0)
(-4.63798e-06 6.41873e-08 0)
(-5.04332e-06 9.50271e-07 0)
(-5.62487e-06 1.66195e-06 0)
(-6.32859e-06 2.16697e-06 0)
(-7.09094e-06 2.43796e-06 0)
(-7.84085e-06 2.47775e-06 0)
(-8.51247e-06 2.30559e-06 0)
(-9.05261e-06 1.95837e-06 0)
(-9.42624e-06 1.48966e-06 0)
(-9.60807e-06 9.53874e-07 0)
(-9.5914e-06 4.06452e-07 0)
(-9.39142e-06 -9.30872e-08 0)
(-9.02651e-06 -5.02124e-07 0)
(-8.52466e-06 -7.77214e-07 0)
(-7.92826e-06 -8.93535e-07 0)
(-7.28071e-06 -8.35762e-07 0)
(-6.62321e-06 -6.00762e-07 0)
(-5.99396e-06 -1.95241e-07 0)
(-5.42526e-06 3.69653e-07 0)
(-4.94113e-06 1.07083e-06 0)
(-4.56178e-06 1.89399e-06 0)
(-4.30457e-06 2.81898e-06 0)
(-4.18327e-06 3.82779e-06 0)
(-4.20693e-06 4.90057e-06 0)
(-4.38457e-06 6.01513e-06 0)
(-4.72319e-06 7.14803e-06 0)
(-5.2234e-06 8.27994e-06 0)
(-5.88671e-06 9.37994e-06 0)
(-6.70784e-06 1.04246e-05 0)
(-7.67325e-06 1.13846e-05 0)
(-8.76246e-06 1.22407e-05 0)
(-9.95262e-06 1.29743e-05 0)
(-1.12218e-05 1.35761e-05 0)
(-1.2543e-05 1.40408e-05 0)
(-1.38946e-05 1.43691e-05 0)
(-1.52528e-05 1.45652e-05 0)
(-1.65978e-05 1.46342e-05 0)
(-1.79133e-05 1.45817e-05 0)
(-1.91856e-05 1.44217e-05 0)
(-2.03962e-05 1.41575e-05 0)
(-2.15329e-05 1.38074e-05 0)
(-2.25845e-05 1.33789e-05 0)
(-2.35357e-05 1.28909e-05 0)
(-2.43796e-05 1.23575e-05 0)
(-2.5105e-05 1.17991e-05 0)
(-2.57064e-05 1.12345e-05 0)
(-2.6184e-05 1.06853e-05 0)
(-2.65347e-05 1.01707e-05 0)
(-2.67623e-05 9.71294e-06 0)
(-2.68665e-05 9.33466e-06 0)
(-2.68501e-05 9.06061e-06 0)
(-2.67221e-05 8.91529e-06 0)
(-2.64877e-05 8.92892e-06 0)
(-2.61583e-05 9.13043e-06 0)
(-2.57476e-05 9.55961e-06 0)
(-2.52808e-05 1.02585e-05 0)
(-2.47845e-05 1.12768e-05 0)
(-2.43166e-05 1.26657e-05 0)
(-2.39185e-05 1.44677e-05 0)
(-2.37427e-05 1.66344e-05 0)
(-2.37867e-05 1.87638e-05 0)
(-2.43031e-05 1.91353e-05 0)
(-2.48829e-05 1.33215e-05 0)
(-2.50723e-05 -4.81451e-06 0)
(-1.38902e-06 1.97033e-05 0)
(-4.65474e-06 2.36052e-05 0)
(-7.71408e-06 2.3623e-05 0)
(-1.04135e-05 2.23993e-05 0)
(-1.27048e-05 2.06327e-05 0)
(-1.45897e-05 1.86211e-05 0)
(-1.60756e-05 1.65178e-05 0)
(-1.71935e-05 1.44075e-05 0)
(-1.79811e-05 1.23571e-05 0)
(-1.84783e-05 1.04054e-05 0)
(-1.8722e-05 8.58787e-06 0)
(-1.87615e-05 6.93361e-06 0)
(-1.86536e-05 5.45584e-06 0)
(-1.84533e-05 4.14966e-06 0)
(-1.82019e-05 2.98915e-06 0)
(-1.79228e-05 1.94327e-06 0)
(-1.76247e-05 9.84058e-07 0)
(-1.73101e-05 8.83353e-08 0)
(-1.69753e-05 -7.6337e-07 0)
(-1.66126e-05 -1.58743e-06 0)
(-1.62077e-05 -2.39404e-06 0)
(-1.57392e-05 -3.19391e-06 0)
(-1.51815e-05 -3.9834e-06 0)
(-1.45074e-05 -4.74624e-06 0)
(-1.36966e-05 -5.44766e-06 0)
(-1.27443e-05 -6.04286e-06 0)
(-1.16657e-05 -6.48257e-06 0)
(-1.04928e-05 -6.72801e-06 0)
(-9.26684e-06 -6.74981e-06 0)
(-8.03722e-06 -6.52647e-06 0)
(-6.86242e-06 -6.04896e-06 0)
(-5.80803e-06 -5.32639e-06 0)
(-4.93976e-06 -4.38989e-06 0)
(-4.3124e-06 -3.29349e-06 0)
(-3.96238e-06 -2.10472e-06 0)
(-3.9073e-06 -9.0368e-07 0)
(-4.13814e-06 2.26756e-07 0)
(-4.62256e-06 1.2196e-06 0)
(-5.30592e-06 2.0131e-06 0)
(-6.12759e-06 2.56489e-06 0)
(-7.01514e-06 2.84491e-06 0)
(-7.88329e-06 2.86095e-06 0)
(-8.65854e-06 2.6327e-06 0)
(-9.27807e-06 2.20463e-06 0)
(-9.70091e-06 1.63551e-06 0)
(-9.90309e-06 9.92985e-07 0)
(-9.87659e-06 3.43099e-07 0)
(-9.63885e-06 -2.54084e-07 0)
(-9.21332e-06 -7.42385e-07 0)
(-8.63372e-06 -1.07739e-06 0)
(-7.94866e-06 -1.23061e-06 0)
(-7.20789e-06 -1.18725e-06 0)
(-6.45876e-06 -9.45429e-07 0)
(-5.74271e-06 -5.14759e-07 0)
(-5.09732e-06 8.92853e-08 0)
(-4.54655e-06 8.40438e-07 0)
(-4.10855e-06 1.72289e-06 0)
(-3.80385e-06 2.71711e-06 0)
(-3.64468e-06 3.79624e-06 0)
(-3.64061e-06 4.94592e-06 0)
(-3.80236e-06 6.14259e-06 0)
(-4.13622e-06 7.36055e-06 0)
(-4.64422e-06 8.57397e-06 0)
(-5.32948e-06 9.76025e-06 0)
(-6.18767e-06 1.08843e-05 0)
(-7.20261e-06 1.1914e-05 0)
(-8.35094e-06 1.28289e-05 0)
(-9.60723e-06 1.36083e-05 0)
(-1.09464e-05 1.42437e-05 0)
(-1.23396e-05 1.47276e-05 0)
(-1.37615e-05 1.50647e-05 0)
(-1.51882e-05 1.52595e-05 0)
(-1.65988e-05 1.53153e-05 0)
(-1.7974e-05 1.52423e-05 0)
(-1.93006e-05 1.50541e-05 0)
(-2.05601e-05 1.47559e-05 0)
(-2.174e-05 1.43629e-05 0)
(-2.28275e-05 1.38878e-05 0)
(-2.3806e-05 1.33447e-05 0)
(-2.46679e-05 1.2751e-05 0)
(-2.54008e-05 1.21301e-05 0)
(-2.59995e-05 1.15012e-05 0)
(-2.64638e-05 1.08869e-05 0)
(-2.67912e-05 1.03076e-05 0)
(-2.69841e-05 9.78433e-06 0)
(-2.70414e-05 9.34279e-06 0)
(-2.6966e-05 9.00784e-06 0)
(-2.67652e-05 8.80427e-06 0)
(-2.64431e-05 8.76306e-06 0)
(-2.60089e-05 8.91648e-06 0)
(-2.54718e-05 9.3052e-06 0)
(-2.48542e-05 9.9781e-06 0)
(-2.41776e-05 1.0987e-05 0)
(-2.34976e-05 1.23981e-05 0)
(-2.28598e-05 1.4262e-05 0)
(-2.24219e-05 1.65454e-05 0)
(-2.22054e-05 1.88397e-05 0)
(-2.24849e-05 1.93651e-05 0)
(-2.28995e-05 1.3477e-05 0)
(-2.29707e-05 -5.27409e-06 0)
(-1.54501e-06 2.12971e-05 0)
(-5.14234e-06 2.52809e-05 0)
(-8.45078e-06 2.51313e-05 0)
(-1.13245e-05 2.3689e-05 0)
(-1.37266e-05 2.17019e-05 0)
(-1.56728e-05 1.94743e-05 0)
(-1.71759e-05 1.71671e-05 0)
(-1.82756e-05 1.48709e-05 0)
(-1.90181e-05 1.26551e-05 0)
(-1.94513e-05 1.05641e-05 0)
(-1.96149e-05 8.63088e-06 0)
(-1.95634e-05 6.88772e-06 0)
(-1.93622e-05 5.35078e-06 0)
(-1.90775e-05 4.01226e-06 0)
(-1.87578e-05 2.83707e-06 0)
(-1.84263e-05 1.78419e-06 0)
(-1.80901e-05 8.20337e-07 0)
(-1.77488e-05 -8.05752e-08 0)
(-1.73971e-05 -9.42817e-07 0)
(-1.70242e-05 -1.7824e-06 0)
(-1.66153e-05 -2.61288e-06 0)
(-1.61458e-05 -3.4496e-06 0)
(-1.55822e-05 -4.29302e-06 0)
(-1.48886e-05 -5.12364e-06 0)
(-1.40366e-05 -5.90111e-06 0)
(-1.30173e-05 -6.56995e-06 0)
(-1.18477e-05 -7.07043e-06 0)
(-1.05655e-05 -7.35738e-06 0)
(-9.21635e-06 -7.39643e-06 0)
(-7.85463e-06 -7.16152e-06 0)
(-6.54674e-06 -6.63783e-06 0)
(-5.36945e-06 -5.8327e-06 0)
(-4.40094e-06 -4.78014e-06 0)
(-3.70583e-06 -3.5425e-06 0)
(-3.32818e-06 -2.19942e-06 0)
(-3.28947e-06 -8.50841e-07 0)
(-3.57587e-06 4.19902e-07 0)
(-4.14996e-06 1.53835e-06 0)
(-4.95242e-06 2.42362e-06 0)
(-5.91329e-06 3.02963e-06 0)
(-6.94381e-06 3.31804e-06 0)
(-7.9479e-06 3.30453e-06 0)
(-8.84121e-06 3.00526e-06 0)
(-9.551e-06 2.48581e-06 0)
(-1.0031e-05 1.80055e-06 0)
(-1.02528e-05 1.03384e-06 0)
(-1.02135e-05 2.64833e-07 0)
(-9.93281e-06 -4.42041e-07 0)
(-9.43675e-06 -1.02142e-06 0)
(-8.76712e-06 -1.42398e-06 0)
(-7.98117e-06 -1.61701e-06 0)
(-7.13575e-06 -1.58786e-06 0)
(-6.28438e-06 -1.33629e-06 0)
(-5.4739e-06 -8.76669e-07 0)
(-4.74483e-06 -2.29274e-07 0)
(-4.12145e-06 5.77773e-07 0)
(-3.62079e-06 1.52784e-06 0)
(-3.26575e-06 2.59e-06 0)
(-3.06735e-06 3.74816e-06 0)
(-3.03279e-06 4.98406e-06 0)
(-3.17642e-06 6.26359e-06 0)
(-3.50635e-06 7.57056e-06 0)
(-4.02225e-06 8.87572e-06 0)
(-4.73061e-06 1.01564e-05 0)
(-5.63051e-06 1.13666e-05 0)
(-6.7008e-06 1.24728e-05 0)
(-7.91522e-06 1.34503e-05 0)
(-9.245e-06 1.42787e-05 0)
(-1.06618e-05 1.49477e-05 0)
(-1.21326e-05 1.54523e-05 0)
(-1.36293e-05 1.57971e-05 0)
(-1.51283e-05 1.59864e-05 0)
(-1.66073e-05 1.6029e-05 0)
(-1.80453e-05 1.5932e-05 0)
(-1.94307e-05 1.57133e-05 0)
(-2.07437e-05 1.53784e-05 0)
(-2.1969e-05 1.49388e-05 0)
(-2.30958e-05 1.44135e-05 0)
(-2.41057e-05 1.38105e-05 0)
(-2.49876e-05 1.31523e-05 0)
(-2.57294e-05 1.24626e-05 0)
(-2.63266e-05 1.17639e-05 0)
(-2.67786e-05 1.10791e-05 0)
(-2.70835e-05 1.04291e-05 0)
(-2.72419e-05 9.83479e-06 0)
(-2.72517e-05 9.32441e-06 0)
(-2.71159e-05 8.92121e-06 0)
(-2.6841e-05 8.65283e-06 0)
(-2.64287e-05 8.54818e-06 0)
(-2.58856e-05 8.64352e-06 0)
(-2.52166e-05 8.97986e-06 0)
(-2.44403e-05 9.6117e-06 0)
(-2.35725e-05 1.05963e-05 0)
(-2.26653e-05 1.20125e-05 0)
(-2.17638e-05 1.39241e-05 0)
(-2.10291e-05 1.63176e-05 0)
(-2.05062e-05 1.8782e-05 0)
(-2.05005e-05 1.94875e-05 0)
(-2.07177e-05 1.35578e-05 0)
(-2.06643e-05 -5.8018e-06 0)
(-1.72502e-06 2.30636e-05 0)
(-5.69584e-06 2.71128e-05 0)
(-9.27961e-06 2.67521e-05 0)
(-1.23422e-05 2.50526e-05 0)
(-1.48597e-05 2.28144e-05 0)
(-1.6865e-05 2.03451e-05 0)
(-1.83775e-05 1.78129e-05 0)
(-1.94488e-05 1.5316e-05 0)
(-2.01336e-05 1.29211e-05 0)
(-2.04891e-05 1.06814e-05 0)
(-2.05594e-05 8.62667e-06 0)
(-2.04016e-05 6.7915e-06 0)
(-2.00919e-05 5.19731e-06 0)
(-1.97115e-05 3.83439e-06 0)
(-1.93174e-05 2.65354e-06 0)
(-1.89317e-05 1.60232e-06 0)
(-1.85576e-05 6.40697e-07 0)
(-1.81916e-05 -2.59878e-07 0)
(-1.78256e-05 -1.1281e-06 0)
(-1.74465e-05 -1.97927e-06 0)
(-1.70395e-05 -2.83159e-06 0)
(-1.65772e-05 -3.7055e-06 0)
(-1.60162e-05 -4.60673e-06 0)
(-1.53091e-05 -5.51433e-06 0)
(-1.44175e-05 -6.38095e-06 0)
(-1.3327e-05 -7.13746e-06 0)
(-1.20578e-05 -7.71032e-06 0)
(-1.06547e-05 -8.04819e-06 0)
(-9.16841e-06 -8.11128e-06 0)
(-7.65759e-06 -7.86787e-06 0)
(-6.19743e-06 -7.29551e-06 0)
(-4.87834e-06 -6.39858e-06 0)
(-3.7936e-06 -5.21345e-06 0)
(-3.02076e-06 -3.81166e-06 0)
(-2.61473e-06 -2.3021e-06 0)
(-2.5953e-06 -7.81948e-07 0)
(-2.94139e-06 6.54099e-07 0)
(-3.61921e-06 1.90677e-06 0)
(-4.55954e-06 2.90199e-06 0)
(-5.68031e-06 3.56898e-06 0)
(-6.87813e-06 3.87173e-06 0)
(-8.04038e-06 3.81554e-06 0)
(-9.06838e-06 3.43676e-06 0)
(-9.88016e-06 2.80571e-06 0)
(-1.04258e-05 1.98772e-06 0)
(-1.06694e-05 1.07766e-06 0)
(-1.06131e-05 1.69691e-07 0)
(-1.02808e-05 -6.63623e-07 0)
(-9.70317e-06 -1.34501e-06 0)
(-8.93e-06 -1.8228e-06 0)
(-8.02836e-06 -2.06009e-06 0)
(-7.06459e-06 -2.04424e-06 0)
(-6.09984e-06 -1.77752e-06 0)
(-5.18584e-06 -1.2837e-06 0)
(-4.36691e-06 -5.86039e-07 0)
(-3.66508e-06 2.83417e-07 0)
(-3.09995e-06 1.30174e-06 0)
(-2.69178e-06 2.44005e-06 0)
(-2.4463e-06 3.68387e-06 0)
(-2.38181e-06 5.008e-06 0)
(-2.5079e-06 6.37804e-06 0)
(-2.82878e-06 7.78075e-06 0)
(-3.35052e-06 9.189e-06 0)
(-4.08444e-06 1.05669e-05 0)
(-5.03074e-06 1.18736e-05 0)
(-6.16253e-06 1.30638e-05 0)
(-7.45045e-06 1.41091e-05 0)
(-8.86186e-06 1.49887e-05 0)
(-1.03636e-05 1.56926e-05 0)
(-1.19196e-05 1.62176e-05 0)
(-1.34986e-05 1.65669e-05 0)
(-1.50741e-05 1.67491e-05 0)
(-1.66255e-05 1.67746e-05 0)
(-1.81308e-05 1.66544e-05 0)
(-1.95766e-05 1.64013e-05 0)
(-2.09471e-05 1.60269e-05 0)
(-2.2223e-05 1.55381e-05 0)
(-2.33925e-05 1.4956e-05 0)
(-2.44371e-05 1.42892e-05 0)
(-2.53418e-05 1.35614e-05 0)
(-2.60944e-05 1.2797e-05 0)
(-2.66907e-05 1.20227e-05 0)
(-2.71308e-05 1.12623e-05 0)
(-2.74133e-05 1.05363e-05 0)
(-2.75364e-05 9.8657e-06 0)
(-2.74983e-05 9.27875e-06 0)
(-2.73019e-05 8.80096e-06 0)
(-2.69521e-05 8.45983e-06 0)
(-2.64485e-05 8.2833e-06 0)
(-2.57935e-05 8.3085e-06 0)
(-2.49879e-05 8.58025e-06 0)
(-2.40458e-05 9.155e-06 0)
(-2.29761e-05 1.00981e-05 0)
(-2.1825e-05 1.14992e-05 0)
(-2.06317e-05 1.34375e-05 0)
(-1.95573e-05 1.59281e-05 0)
(-1.86636e-05 1.8562e-05 0)
(-1.82948e-05 1.9477e-05 0)
(-1.82444e-05 1.35452e-05 0)
(-1.80137e-05 -6.40812e-06 0)
(-1.93131e-06 2.50262e-05 0)
(-6.3227e-06 2.91196e-05 0)
(-1.02125e-05 2.84969e-05 0)
(-1.34802e-05 2.64948e-05 0)
(-1.61177e-05 2.39703e-05 0)
(-1.81787e-05 2.12306e-05 0)
(-1.96901e-05 1.84498e-05 0)
(-2.07205e-05 1.57357e-05 0)
(-2.13339e-05 1.31495e-05 0)
(-2.15961e-05 1.07492e-05 0)
(-2.15582e-05 8.56777e-06 0)
(-2.12774e-05 6.63647e-06 0)
(-2.08405e-05 4.98841e-06 0)
(-2.03507e-05 3.61147e-06 0)
(-1.98761e-05 2.43693e-06 0)
(-1.94353e-05 1.39753e-06 0)
(-1.90244e-05 4.45985e-07 0)
(-1.86366e-05 -4.47012e-07 0)
(-1.82603e-05 -1.31775e-06 0)
(-1.78797e-05 -2.17758e-06 0)
(-1.74821e-05 -3.04625e-06 0)
(-1.70371e-05 -3.95675e-06 0)
(-1.64899e-05 -4.91957e-06 0)
(-1.57784e-05 -5.91529e-06 0)
(-1.48502e-05 -6.88788e-06 0)
(-1.36835e-05 -7.75009e-06 0)
(-1.23041e-05 -8.40879e-06 0)
(-1.07665e-05 -8.80742e-06 0)
(-9.12659e-06 -8.90281e-06 0)
(-7.44679e-06 -8.65504e-06 0)
(-5.81182e-06 -8.03167e-06 0)
(-4.32803e-06 -7.03278e-06 0)
(-3.107e-06 -5.69411e-06 0)
(-2.24944e-06 -4.11019e-06 0)
(-1.81201e-06 -2.41389e-06 0)
(-1.80956e-06 -6.90842e-07 0)
(-2.22978e-06 9.34568e-07 0)
(-3.02454e-06 2.34444e-06 0)
(-4.11998e-06 3.46299e-06 0)
(-5.4272e-06 4.19618e-06 0)
(-6.81955e-06 4.51076e-06 0)
(-8.16491e-06 4.40901e-06 0)
(-9.34646e-06 3.93431e-06 0)
(-1.02767e-05 3.17128e-06 0)
(-1.0897e-05 2.19841e-06 0)
(-1.11644e-05 1.12262e-06 0)
(-1.10873e-05 5.41123e-08 0)
(-1.06939e-05 -9.22516e-07 0)
(-1.00207e-05 -1.71987e-06 0)
(-9.12938e-06 -2.28268e-06 0)
(-8.09646e-06 -2.56565e-06 0)
(-6.99861e-06 -2.56175e-06 0)
(-5.90791e-06 -2.27495e-06 0)
(-4.88185e-06 -1.74017e-06 0)
(-3.96505e-06 -9.85897e-07 0)
(-3.18146e-06 -4.72952e-08 0)
(-2.54634e-06 1.04417e-06 0)
(-2.07825e-06 2.26496e-06 0)
(-1.78621e-06 3.59948e-06 0)
(-1.68715e-06 5.01632e-06 0)
(-1.7899e-06 6.48496e-06 0)
(-2.09993e-06 7.99447e-06 0)
(-2.62879e-06 9.50956e-06 0)
(-3.389e-06 1.09959e-05 0)
(-4.38323e-06 1.24083e-05 0)
(-5.58438e-06 1.36904e-05 0)
(-6.9546e-06 1.48091e-05 0)
(-8.45613e-06 1.57434e-05 0)
(-1.00517e-05 1.64828e-05 0)
(-1.17012e-05 1.70254e-05 0)
(-1.33695e-05 1.73775e-05 0)
(-1.50287e-05 1.75511e-05 0)
(-1.66567e-05 1.7555e-05 0)
(-1.8233e-05 1.74096e-05 0)
(-1.97449e-05 1.71192e-05 0)
(-2.11761e-05 1.67015e-05 0)
(-2.25062e-05 1.61629e-05 0)
(-2.37226e-05 1.55192e-05 0)
(-2.48055e-05 1.47827e-05 0)
(-2.57358e-05 1.39788e-05 0)
(-2.65001e-05 1.31335e-05 0)
(-2.70945e-05 1.2278e-05 0)
(-2.75215e-05 1.14369e-05 0)
(-2.77814e-05 1.06296e-05 0)
(-2.78707e-05 9.87694e-06 0)
(-2.77849e-05 9.20473e-06 0)
(-2.75271e-05 8.64593e-06 0)
(-2.71023e-05 8.22484e-06 0)
(-2.65067e-05 7.96828e-06 0)
(-2.57382e-05 7.91041e-06 0)
(-2.47926e-05 8.10359e-06 0)
(-2.36796e-05 8.60457e-06 0)
(-2.23982e-05 9.48467e-06 0)
(-2.09858e-05 1.0847e-05 0)
(-1.94691e-05 1.27826e-05 0)
(-1.80019e-05 1.53478e-05 0)
(-1.66488e-05 1.81351e-05 0)
(-1.57905e-05 1.92849e-05 0)
(-1.53387e-05 1.33962e-05 0)
(-1.48084e-05 -7.12918e-06 0)
(-2.16841e-06 2.72148e-05 0)
(-7.03352e-06 3.13228e-05 0)
(-1.12645e-05 3.03784e-05 0)
(-1.47549e-05 2.80203e-05 0)
(-1.75162e-05 2.51698e-05 0)
(-1.96275e-05 2.21265e-05 0)
(-2.11247e-05 1.90711e-05 0)
(-2.20981e-05 1.61214e-05 0)
(-2.2625e-05 1.33337e-05 0)
(-2.27778e-05 1.07588e-05 0)
(-2.26146e-05 8.44539e-06 0)
(-2.21914e-05 6.41285e-06 0)
(-2.16044e-05 4.71507e-06 0)
(-2.09881e-05 3.33847e-06 0)
(-2.04263e-05 2.18544e-06 0)
(-1.99292e-05 1.16986e-06 0)
(-1.94821e-05 2.36845e-07 0)
(-1.90759e-05 -6.43057e-07 0)
(-1.86938e-05 -1.51025e-06 0)
(-1.83142e-05 -2.37456e-06 0)
(-1.79331e-05 -3.25311e-06 0)
(-1.75185e-05 -4.19602e-06 0)
(-1.70002e-05 -5.22617e-06 0)
(-1.62976e-05 -6.32395e-06 0)
(-1.53387e-05 -7.42269e-06 0)
(-1.40906e-05 -8.41224e-06 0)
(-1.25888e-05 -9.1717e-06 0)
(-1.09032e-05 -9.64194e-06 0)
(-9.09323e-06 -9.77968e-06 0)
(-7.22261e-06 -9.53425e-06 0)
(-5.38672e-06 -8.8586e-06 0)
(-3.71009e-06 -7.7461e-06 0)
(-2.33292e-06 -6.22885e-06 0)
(-1.38113e-06 -4.44923e-06 0)
(-9.05241e-07 -2.52793e-06 0)
(-9.21098e-07 -5.77867e-07 0)
(-1.42377e-06 1.26468e-06 0)
(-2.35487e-06 2.86397e-06 0)
(-3.63323e-06 4.11616e-06 0)
(-5.15572e-06 4.9285e-06 0)
(-6.77102e-06 5.25149e-06 0)
(-8.32846e-06 5.09507e-06 0)
(-9.68831e-06 4.50889e-06 0)
(-1.07507e-05 3.58794e-06 0)
(-1.14542e-05 2.43454e-06 0)
(-1.17467e-05 1.17123e-06 0)
(-1.16418e-05 -8.5601e-08 0)
(-1.11749e-05 -1.22352e-06 0)
(-1.03914e-05 -2.15633e-06 0)
(-9.36203e-06 -2.81268e-06 0)
(-8.17765e-06 -3.14287e-06 0)
(-6.92924e-06 -3.14754e-06 0)
(-5.69914e-06 -2.83389e-06 0)
(-4.55138e-06 -2.24976e-06 0)
(-3.53039e-06 -1.43097e-06 0)
(-2.6596e-06 -4.16592e-07 0)
(-1.9526e-06 7.54078e-07 0)
(-1.42171e-06 2.06134e-06 0)
(-1.07658e-06 3.49523e-06 0)
(-9.43001e-07 5.00915e-06 0)
(-1.02094e-06 6.58606e-06 0)
(-1.31817e-06 8.20226e-06 0)
(-1.8524e-06 9.83445e-06 0)
(-2.63854e-06 1.14474e-05 0)
(-3.6873e-06 1.29754e-05 0)
(-4.96617e-06 1.43582e-05 0)
(-6.42863e-06 1.55552e-05 0)
(-8.03088e-06 1.65476e-05 0)
(-9.73024e-06 1.73232e-05 0)
(-1.14816e-05 1.7881e-05 0)
(-1.3246e-05 1.82335e-05 0)
(-1.49953e-05 1.83941e-05 0)
(-1.67056e-05 1.83748e-05 0)
(-1.8357e-05 1.81985e-05 0)
(-1.99381e-05 1.78691e-05 0)
(-2.14326e-05 1.7406e-05 0)
(-2.2822e-05 1.68142e-05 0)
(-2.40907e-05 1.61053e-05 0)
(-2.52153e-05 1.52931e-05 0)
(-2.61735e-05 1.44054e-05 0)
(-2.69501e-05 1.34724e-05 0)
(-2.75424e-05 1.253e-05 0)
(-2.7957e-05 1.16031e-05 0)
(-2.81951e-05 1.07087e-05 0)
(-2.82509e-05 9.86642e-06 0)
(-2.81164e-05 9.1033e-06 0)
(-2.77947e-05 8.45606e-06 0)
(-2.72933e-05 7.94789e-06 0)
(-2.66065e-05 7.60198e-06 0)
(-2.57242e-05 7.44899e-06 0)
(-2.46365e-05 7.54775e-06 0)
(-2.33493e-05 7.95688e-06 0)
(-2.18481e-05 8.74961e-06 0)
(-2.01584e-05 1.00433e-05 0)
(-1.82844e-05 1.1937e-05 0)
(-1.63653e-05 1.45382e-05 0)
(-1.44371e-05 1.74377e-05 0)
(-1.2904e-05 1.88298e-05 0)
(-1.18259e-05 1.3031e-05 0)
(-1.07908e-05 -8.02078e-06 0)
(-2.44369e-06 2.96623e-05 0)
(-7.84298e-06 3.37469e-05 0)
(-1.24546e-05 3.24108e-05 0)
(-1.6186e-05 2.96336e-05 0)
(-1.9073e-05 2.64119e-05 0)
(-2.12272e-05 2.30275e-05 0)
(-2.26927e-05 1.96676e-05 0)
(-2.35891e-05 1.64644e-05 0)
(-2.40144e-05 1.34653e-05 0)
(-2.40409e-05 1.0703e-05 0)
(-2.37331e-05 8.24888e-06 0)
(-2.31447e-05 6.10882e-06 0)
(-2.23793e-05 4.36602e-06 0)
(-2.16169e-05 3.00993e-06 0)
(-2.09622e-05 1.89761e-06 0)
(-2.04105e-05 9.20319e-07 0)
(-1.99311e-05 1.50206e-08 0)
(-1.95101e-05 -8.45385e-07 0)
(-1.91261e-05 -1.70362e-06 0)
(-1.87513e-05 -2.56529e-06 0)
(-1.83929e-05 -3.44638e-06 0)
(-1.8024e-05 -4.41584e-06 0)
(-1.75543e-05 -5.51935e-06 0)
(-1.68769e-05 -6.73505e-06 0)
(-1.58946e-05 -7.98487e-06 0)
(-1.45581e-05 -9.12782e-06 0)
(-1.29192e-05 -1.00045e-05 0)
(-1.10712e-05 -1.0559e-05 0)
(-9.07387e-06 -1.0752e-05 0)
(-6.98786e-06 -1.05189e-05 0)
(-4.92002e-06 -9.79146e-06 0)
(-3.01635e-06 -8.54991e-06 0)
(-1.46255e-06 -6.8322e-06 0)
(-4.03293e-07 -4.82992e-06 0)
(1.19313e-07 -2.64851e-06 0)
(8.23977e-08 -4.3864e-07 0)
(-5.13099e-07 1.64785e-06 0)
(-1.60277e-06 3.45927e-06 0)
(-3.09147e-06 4.87221e-06 0)
(-4.86318e-06 5.77691e-06 0)
(-6.73992e-06 6.10837e-06 0)
(-8.54014e-06 5.88587e-06 0)
(-1.01045e-05 5.16655e-06 0)
(-1.1319e-05 4.05505e-06 0)
(-1.2111e-05 2.69108e-06 0)
(-1.24307e-05 1.20687e-06 0)
(-1.22914e-05 -2.54257e-07 0)
(-1.17365e-05 -1.57944e-06 0)
(-1.08231e-05 -2.66411e-06 0)
(-9.6311e-06 -3.42303e-06 0)
(-8.27313e-06 -3.8033e-06 0)
(-6.85423e-06 -3.81062e-06 0)
(-5.4698e-06 -3.45988e-06 0)
(-4.19138e-06 -2.81459e-06 0)
(-3.05924e-06 -1.92433e-06 0)
(-2.09931e-06 -8.24637e-07 0)
(-1.31733e-06 4.26369e-07 0)
(-7.17332e-07 1.83385e-06 0)
(-3.21854e-07 3.36475e-06 0)
(-1.51168e-07 4.98503e-06 0)
(-2.0271e-07 6.67853e-06 0)
(-4.85782e-07 8.4079e-06 0)
(-1.01765e-06 1.01686e-05 0)
(-1.83126e-06 1.19177e-05 0)
(-2.94161e-06 1.35802e-05 0)
(-4.30932e-06 1.50721e-05 0)
(-5.87604e-06 1.63517e-05 0)
(-7.58998e-06 1.74058e-05 0)
(-9.40503e-06 1.82187e-05 0)
(-1.12684e-05 1.87892e-05 0)
(-1.3137e-05 1.91381e-05 0)
(-1.49833e-05 1.92819e-05 0)
(-1.67807e-05 1.92353e-05 0)
(-1.85115e-05 1.90248e-05 0)
(-2.01658e-05 1.86548e-05 0)
(-2.17278e-05 1.8143e-05 0)
(-2.31803e-05 1.74927e-05 0)
(-2.45061e-05 1.67164e-05 0)
(-2.56772e-05 1.58217e-05 0)
(-2.66656e-05 1.48428e-05 0)
(-2.74543e-05 1.38133e-05 0)
(-2.80432e-05 1.27778e-05 0)
(-2.84451e-05 1.17606e-05 0)
(-2.86619e-05 1.0774e-05 0)
(-2.86842e-05 9.83462e-06 0)
(-2.84984e-05 8.97344e-06 0)
(-2.81099e-05 8.23168e-06 0)
(-2.753e-05 7.62764e-06 0)
(-2.67516e-05 7.18451e-06 0)
(-2.57543e-05 6.92297e-06 0)
(-2.45221e-05 6.912e-06 0)
(-2.30565e-05 7.20911e-06 0)
(-2.13272e-05 7.88748e-06 0)
(-1.9346e-05 9.07565e-06 0)
(-1.70782e-05 1.0875e-05 0)
(-1.46418e-05 1.34512e-05 0)
(-1.19938e-05 1.63834e-05 0)
(-9.52181e-06 1.79873e-05 0)
(-7.46125e-06 1.2314e-05 0)
(-5.58587e-06 -9.16388e-06 0)
(-2.7665e-06 3.24056e-05 0)
(-8.7722e-06 3.64195e-05 0)
(-1.38089e-05 3.46088e-05 0)
(-1.77981e-05 3.13385e-05 0)
(-2.08092e-05 2.76949e-05 0)
(-2.2996e-05 2.39263e-05 0)
(-2.44074e-05 2.02284e-05 0)
(-2.52017e-05 1.67547e-05 0)
(-2.55086e-05 1.35347e-05 0)
(-2.53906e-05 1.0574e-05 0)
(-2.4917e-05 7.96645e-06 0)
(-2.41373e-05 5.70996e-06 0)
(-2.31584e-05 3.92792e-06 0)
(-2.22269e-05 2.61928e-06 0)
(-2.14757e-05 1.57295e-06 0)
(-2.08744e-05 6.51835e-07 0)
(-2.03683e-05 -2.17238e-07 0)
(-1.99387e-05 -1.04844e-06 0)
(-1.95574e-05 -1.89631e-06 0)
(-1.91892e-05 -2.75155e-06 0)
(-1.88617e-05 -3.62982e-06 0)
(-1.85585e-05 -4.6082e-06 0)
(-1.81636e-05 -5.78772e-06 0)
(-1.75344e-05 -7.13968e-06 0)
(-1.65401e-05 -8.5735e-06 0)
(-1.51064e-05 -9.90397e-06 0)
(-1.33114e-05 -1.09154e-05 0)
(-1.12852e-05 -1.15676e-05 0)
(-9.08218e-06 -1.1832e-05 0)
(-6.75199e-06 -1.16252e-05 0)
(-4.41244e-06 -1.08484e-05 0)
(-2.24115e-06 -9.45574e-06 0)
(-4.83899e-07 -7.52236e-06 0)
(6.9959e-07 -5.25482e-06 0)
(1.27872e-06 -2.77854e-06 0)
(1.21438e-06 -2.66584e-07 0)
(5.11468e-07 2.10921e-06 0)
(-7.57155e-07 4.16281e-06 0)
(-2.48956e-06 5.7591e-06 0)
(-4.55355e-06 6.76454e-06 0)
(-6.73323e-06 7.1073e-06 0)
(-8.81683e-06 6.80475e-06 0)
(-1.06219e-05 5.92878e-06 0)
(-1.20074e-05 4.6147e-06 0)
(-1.28981e-05 3.02269e-06 0)
(-1.32406e-05 1.30334e-06 0)
(-1.30575e-05 -4.36114e-07 0)
(-1.24036e-05 -1.99512e-06 0)
(-1.1338e-05 -3.25272e-06 0)
(-9.9574e-06 -4.12476e-06 0)
(-8.39867e-06 -4.55535e-06 0)
(-6.78661e-06 -4.55878e-06 0)
(-5.23171e-06 -4.15861e-06 0)
(-3.81488e-06 -3.43707e-06 0)
(-2.56696e-06 -2.46534e-06 0)
(-1.51629e-06 -1.27669e-06 0)
(-6.56355e-07 6.5476e-08 0)
(1.32041e-08 1.57262e-06 0)
(4.63172e-07 3.20857e-06 0)
(6.76501e-07 4.94966e-06 0)
(6.51788e-07 6.75794e-06 0)
(3.86612e-07 8.61304e-06 0)
(-1.39817e-07 1.05107e-05 0)
(-9.77339e-07 1.24114e-05 0)
(-2.15686e-06 1.42272e-05 0)
(-3.62928e-06 1.58382e-05 0)
(-5.31295e-06 1.72078e-05 0)
(-7.1512e-06 1.83246e-05 0)
(-9.09558e-06 1.91724e-05 0)
(-1.10824e-05 1.97572e-05 0)
(-1.30632e-05 2.00944e-05 0)
(-1.50129e-05 2.0216e-05 0)
(-1.69021e-05 2.01402e-05 0)
(-1.87153e-05 1.98891e-05 0)
(-2.04462e-05 1.94768e-05 0)
(-2.20801e-05 1.89143e-05 0)
(-2.36005e-05 1.82037e-05 0)
(-2.49897e-05 1.73565e-05 0)
(-2.62133e-05 1.63706e-05 0)
(-2.72353e-05 1.52911e-05 0)
(-2.8036e-05 1.41555e-05 0)
(-2.8618e-05 1.30204e-05 0)
(-2.90043e-05 1.19093e-05 0)
(-2.91985e-05 1.08255e-05 0)
(-2.91848e-05 9.78146e-06 0)
(-2.8942e-05 8.81247e-06 0)
(-2.84802e-05 7.97028e-06 0)
(-2.78153e-05 7.26382e-06 0)
(-2.69411e-05 6.71599e-06 0)
(-2.58239e-05 6.32955e-06 0)
(-2.4437e-05 6.19343e-06 0)
(-2.27817e-05 6.35834e-06 0)
(-2.08085e-05 6.89071e-06 0)
(-1.85132e-05 7.9308e-06 0)
(-1.58124e-05 9.56907e-06 0)
(-1.27915e-05 1.20335e-05 0)
(-9.24914e-06 1.48538e-05 0)
(-5.47727e-06 1.65714e-05 0)
(-1.91319e-06 1.10303e-05 0)
(1.30517e-06 -1.0683e-05 0)
(-3.1489e-06 3.54943e-05 0)
(-9.85222e-06 3.937e-05 0)
(-1.53637e-05 3.69887e-05 0)
(-1.96228e-05 3.31393e-05 0)
(-2.27506e-05 2.90153e-05 0)
(-2.49563e-05 2.48146e-05 0)
(-2.62841e-05 2.07409e-05 0)
(-2.69436e-05 1.69819e-05 0)
(-2.71137e-05 1.35342e-05 0)
(-2.68354e-05 1.0365e-05 0)
(-2.61755e-05 7.58665e-06 0)
(-2.51744e-05 5.20197e-06 0)
(-2.39369e-05 3.38744e-06 0)
(-2.28081e-05 2.1627e-06 0)
(-2.19595e-05 1.21401e-06 0)
(-2.13189e-05 3.74692e-07 0)
(-2.0795e-05 -4.52689e-07 0)
(-2.03646e-05 -1.2495e-06 0)
(-1.99936e-05 -2.085e-06 0)
(-1.96346e-05 -2.92476e-06 0)
(-1.93385e-05 -3.75431e-06 0)
(-1.91217e-05 -4.74972e-06 0)
(-1.88404e-05 -6.0122e-06 0)
(-1.82922e-05 -7.52363e-06 0)
(-1.73021e-05 -9.18576e-06 0)
(-1.57572e-05 -1.07513e-05 0)
(-1.37816e-05 -1.19126e-05 0)
(-1.15621e-05 -1.26733e-05 0)
(-9.13664e-06 -1.30294e-05 0)
(-6.53109e-06 -1.28705e-05 0)
(-3.87097e-06 -1.20503e-05 0)
(-1.38909e-06 -1.04848e-05 0)
(6.02236e-07 -8.30658e-06 0)
(1.93232e-06 -5.73037e-06 0)
(2.575e-06 -2.91504e-06 0)
(2.4845e-06 -6.35886e-08 0)
(1.65633e-06 2.60154e-06 0)
(1.73815e-07 4.94809e-06 0)
(-1.84178e-06 6.75846e-06 0)
(-4.24305e-06 7.88484e-06 0)
(-6.77661e-06 8.24311e-06 0)
(-9.18902e-06 7.82689e-06 0)
(-1.12618e-05 6.74626e-06 0)
(-1.28371e-05 5.15146e-06 0)
(-1.38349e-05 3.26908e-06 0)
(-1.42319e-05 1.20523e-06 0)
(-1.40159e-05 -7.54363e-07 0)
(-1.32227e-05 -2.53588e-06 0)
(-1.19676e-05 -3.95786e-06 0)
(-1.03643e-05 -4.9322e-06 0)
(-8.57585e-06 -5.41e-06 0)
(-6.74734e-06 -5.40103e-06 0)
(-5.00626e-06 -4.93716e-06 0)
(-3.44632e-06 -4.12159e-06 0)
(-2.08413e-06 -3.05629e-06 0)
(-9.43041e-07 -1.77424e-06 0)
(-6.38216e-09 -3.38149e-07 0)
(7.36355e-07 1.27432e-06 0)
(1.24542e-06 3.0318e-06 0)
(1.49939e-06 4.89635e-06 0)
(1.50187e-06 6.82281e-06 0)
(1.25938e-06 8.80522e-06 0)
(7.44507e-07 1.08535e-05 0)
(-1.1608e-07 1.29346e-05 0)
(-1.37589e-06 1.49139e-05 0)
(-2.97068e-06 1.6662e-05 0)
(-4.78928e-06 1.81282e-05 0)
(-6.76941e-06 1.93086e-05 0)
(-8.85572e-06 2.01909e-05 0)
(-1.09793e-05 2.07824e-05 0)
(-1.30835e-05 2.11059e-05 0)
(-1.51387e-05 2.11971e-05 0)
(-1.71232e-05 2.10861e-05 0)
(-1.90225e-05 2.07915e-05 0)
(-2.08328e-05 2.03343e-05 0)
(-2.25441e-05 1.97175e-05 0)
(-2.4138e-05 1.89497e-05 0)
(-2.55985e-05 1.80273e-05 0)
(-2.68803e-05 1.69407e-05 0)
(-2.79364e-05 1.57479e-05 0)
(-2.8744e-05 1.44978e-05 0)
(-2.93097e-05 1.32552e-05 0)
(-2.96717e-05 1.20465e-05 0)
(-2.98371e-05 1.08602e-05 0)
(-2.97796e-05 9.705e-06 0)
(-2.94657e-05 8.61585e-06 0)
(-2.89133e-05 7.66766e-06 0)
(-2.81471e-05 6.85448e-06 0)
(-2.7162e-05 6.19283e-06 0)
(-2.59051e-05 5.66319e-06 0)
(-2.43352e-05 5.38513e-06 0)
(-2.2462e-05 5.39637e-06 0)
(-2.02134e-05 5.75006e-06 0)
(-1.7571e-05 6.59574e-06 0)
(-1.43906e-05 7.99203e-06 0)
(-1.07178e-05 1.0227e-05 0)
(-6.08245e-06 1.26993e-05 0)
(-5.58275e-07 1.43301e-05 0)
(5.18273e-06 8.87535e-06 0)
(1.03689e-05 -1.27242e-05 0)
(-3.61209e-06 3.89976e-05 0)
(-1.11318e-05 4.26323e-05 0)
(-1.71698e-05 3.95614e-05 0)
(-2.17035e-05 3.50399e-05 0)
(-2.49318e-05 3.03657e-05 0)
(-2.71382e-05 2.56795e-05 0)
(-2.83448e-05 2.11886e-05 0)
(-2.88302e-05 1.71338e-05 0)
(-2.88446e-05 1.34555e-05 0)
(-2.83937e-05 1.00681e-05 0)
(-2.75275e-05 7.09159e-06 0)
(-2.62689e-05 4.56608e-06 0)
(-2.47178e-05 2.71167e-06 0)
(-2.3359e-05 1.58304e-06 0)
(-2.24151e-05 7.36713e-07 0)
(-2.17529e-05 -7.09503e-08 0)
(-2.12286e-05 -7.4368e-07 0)
(-2.08078e-05 -1.44507e-06 0)
(-2.04522e-05 -2.27675e-06 0)
(-2.00845e-05 -3.14584e-06 0)
(-1.98385e-05 -3.92654e-06 0)
(-1.97559e-05 -4.88061e-06 0)
(-1.96237e-05 -6.18831e-06 0)
(-1.91995e-05 -7.87422e-06 0)
(-1.82379e-05 -9.82006e-06 0)
(-1.65597e-05 -1.16892e-05 0)
(-1.43682e-05 -1.30112e-05 0)
(-1.19444e-05 -1.38839e-05 0)
(-9.28605e-06 -1.43563e-05 0)
(-6.3725e-06 -1.42778e-05 0)
(-3.3348e-06 -1.34244e-05 0)
(-4.89515e-07 -1.1664e-05 0)
(1.76827e-06 -9.19442e-06 0)
(3.26484e-06 -6.26699e-06 0)
(3.9747e-06 -3.05716e-06 0)
(3.82758e-06 2.78433e-07 0)
(2.86478e-06 3.36909e-06 0)
(1.16179e-06 6.01617e-06 0)
(-1.18759e-06 8.04079e-06 0)
(-3.98475e-06 9.2884e-06 0)
(-6.94327e-06 9.66495e-06 0)
(-9.75428e-06 9.15827e-06 0)
(-1.21568e-05 7.88303e-06 0)
(-1.39517e-05 6.02716e-06 0)
(-1.50856e-05 3.83938e-06 0)
(-1.5475e-05 1.49701e-06 0)
(-1.51572e-05 -8.41384e-07 0)
(-1.42385e-05 -2.94353e-06 0)
(-1.27723e-05 -4.63783e-06 0)
(-1.09248e-05 -5.80488e-06 0)
(-8.88593e-06 -6.36148e-06 0)
(-6.82201e-06 -6.33994e-06 0)
(-4.88371e-06 -5.79942e-06 0)
(-3.18066e-06 -4.87191e-06 0)
(-1.71062e-06 -3.69679e-06 0)
(-4.86338e-07 -2.32286e-06 0)
(5.26403e-07 -7.87563e-07 0)
(1.34645e-06 9.42119e-07 0)
(1.91568e-06 2.82612e-06 0)
(2.20893e-06 4.82403e-06 0)
(2.23751e-06 6.87018e-06 0)
(2.02224e-06 8.98027e-06 0)
(1.52764e-06 1.11907e-05 0)
(6.38144e-07 1.34808e-05 0)
(-7.18718e-07 1.56545e-05 0)
(-2.4556e-06 1.75486e-05 0)
(-4.43375e-06 1.91169e-05 0)
(-6.57539e-06 2.03634e-05 0)
(-8.82382e-06 2.128e-05 0)
(-1.10975e-05 2.18688e-05 0)
(-1.33337e-05 2.21718e-05 0)
(-1.55041e-05 2.22277e-05 0)
(-1.75882e-05 2.20715e-05 0)
(-1.95764e-05 2.17328e-05 0)
(-2.14703e-05 2.12263e-05 0)
(-2.32591e-05 2.05599e-05 0)
(-2.49275e-05 1.97313e-05 0)
(-2.64646e-05 1.87289e-05 0)
(-2.78051e-05 1.75355e-05 0)
(-2.88853e-05 1.6214e-05 0)
(-2.96831e-05 1.48355e-05 0)
(-3.02111e-05 1.34771e-05 0)
(-3.05266e-05 1.21688e-05 0)
(-3.06423e-05 1.08763e-05 0)
(-3.05186e-05 9.59767e-06 0)
(-3.01015e-05 8.37491e-06 0)
(-2.94168e-05 7.31343e-06 0)
(-2.85061e-05 6.38848e-06 0)
(-2.73667e-05 5.60263e-06 0)
(-2.59149e-05 4.90623e-06 0)
(-2.4095e-05 4.46519e-06 0)
(-2.19347e-05 4.30008e-06 0)
(-1.93373e-05 4.44114e-06 0)
(-1.62737e-05 5.0449e-06 0)
(-1.25344e-05 6.10801e-06 0)
(-8.13238e-06 7.96035e-06 0)
(-2.20017e-06 9.73952e-06 0)
(5.57194e-06 1.09512e-05 0)
(1.42202e-05 5.48814e-06 0)
(2.19583e-05 -1.54151e-05 0)
(-4.20889e-06 4.30166e-05 0)
(-1.26825e-05 4.62927e-05 0)
(-1.92931e-05 4.23716e-05 0)
(-2.40953e-05 3.70248e-05 0)
(-2.74029e-05 3.17213e-05 0)
(-2.95919e-05 2.64906e-05 0)
(-3.06372e-05 2.15319e-05 0)
(-3.09013e-05 1.71814e-05 0)
(-3.07373e-05 1.32858e-05 0)
(-3.01028e-05 9.67208e-06 0)
(-2.90061e-05 6.46715e-06 0)
(-2.74568e-05 3.88059e-06 0)
(-2.55583e-05 2.29436e-06 0)
(-2.39521e-05 1.5524e-06 0)
(-2.29425e-05 9.60714e-07 0)
(-2.22119e-05 1.58879e-07 0)
(-2.16445e-05 -6.99354e-07 0)
(-2.13108e-05 -1.54009e-06 0)
(-2.10402e-05 -2.41307e-06 0)
(-2.06699e-05 -3.21666e-06 0)
(-2.04285e-05 -3.84527e-06 0)
(-2.0487e-05 -4.76654e-06 0)
(-2.0585e-05 -6.21657e-06 0)
(-2.03699e-05 -8.14609e-06 0)
(-1.94859e-05 -1.04503e-05 0)
(-1.76472e-05 -1.26935e-05 0)
(-1.51917e-05 -1.4193e-05 0)
(-1.25611e-05 -1.51875e-05 0)
(-9.67154e-06 -1.58136e-05 0)
(-6.41731e-06 -1.58652e-05 0)
(-2.93526e-06 -1.49945e-05 0)
(3.34839e-07 -1.30133e-05 0)
(2.89242e-06 -1.01987e-05 0)
(4.57586e-06 -6.87356e-06 0)
(5.40378e-06 -3.23412e-06 0)
(5.23408e-06 1.49434e-07 0)
(4.04321e-06 3.63864e-06 0)
(2.00973e-06 6.7188e-06 0)
(-7.23975e-07 9.07171e-06 0)
(-3.96833e-06 1.04897e-05 0)
(-7.39919e-06 1.08826e-05 0)
(-1.06591e-05 1.02462e-05 0)
(-1.34292e-05 8.66234e-06 0)
(-1.54842e-05 6.44188e-06 0)
(-1.67482e-05 3.8691e-06 0)
(-1.72404e-05 1.11027e-06 0)
(-1.69185e-05 -1.57669e-06 0)
(-1.58114e-05 -3.96088e-06 0)
(-1.40954e-05 -5.85103e-06 0)
(-1.1936e-05 -7.07126e-06 0)
(-9.58407e-06 -7.61117e-06 0)
(-7.2607e-06 -7.49756e-06 0)
(-5.12328e-06 -6.80737e-06 0)
(-3.28531e-06 -5.71654e-06 0)
(-1.72745e-06 -4.39314e-06 0)
(-4.335e-07 -2.92441e-06 0)
(6.54098e-07 -1.27807e-06 0)
(1.5521e-06 5.71463e-07 0)
(2.18707e-06 2.58688e-06 0)
(2.52045e-06 4.71918e-06 0)
(2.57343e-06 6.85273e-06 0)
(2.38961e-06 9.05842e-06 0)
(1.91982e-06 1.14475e-05 0)
(9.96336e-07 1.39971e-05 0)
(-4.83169e-07 1.64132e-05 0)
(-2.39198e-06 1.84661e-05 0)
(-4.55437e-06 2.0142e-05 0)
(-6.88218e-06 2.14656e-05 0)
(-9.31304e-06 2.2421e-05 0)
(-1.17542e-05 2.30053e-05 0)
(-1.4132e-05 2.32743e-05 0)
(-1.64221e-05 2.32953e-05 0)
(-1.86072e-05 2.30907e-05 0)
(-2.06831e-05 2.2705e-05 0)
(-2.26558e-05 2.21499e-05 0)
(-2.45186e-05 2.14406e-05 0)
(-2.62583e-05 2.05451e-05 0)
(-2.78618e-05 1.9459e-05 0)
(-2.92474e-05 1.81506e-05 0)
(-3.03286e-05 1.668e-05 0)
(-3.10799e-05 1.51525e-05 0)
(-3.15247e-05 1.36698e-05 0)
(-3.17447e-05 1.22625e-05 0)
(-3.17617e-05 1.08627e-05 0)
(-3.15133e-05 9.44011e-06 0)
(-3.09168e-05 8.06621e-06 0)
(-3.00101e-05 6.87991e-06 0)
(-2.88579e-05 5.83944e-06 0)
(-2.74593e-05 4.9167e-06 0)
(-2.56854e-05 4.01708e-06 0)
(-2.34647e-05 3.40467e-06 0)
(-2.08547e-05 3.07401e-06 0)
(-1.77444e-05 3.00269e-06 0)
(-1.40903e-05 3.33123e-06 0)
(-9.63502e-06 3.96354e-06 0)
(-4.38316e-06 5.21556e-06 0)
(3.02946e-06 5.86789e-06 0)
(1.34632e-05 6.18525e-06 0)
(2.55453e-05 6.69027e-07 0)
(3.6047e-05 -1.87458e-05 0)
(-4.93625e-06 4.74601e-05 0)
(-1.45501e-05 5.0129e-05 0)
(-2.18076e-05 4.51723e-05 0)
(-2.68756e-05 3.89339e-05 0)
(-3.02395e-05 3.30596e-05 0)
(-3.24287e-05 2.72358e-05 0)
(-3.33065e-05 2.17109e-05 0)
(-3.32995e-05 1.7038e-05 0)
(-3.29098e-05 1.29575e-05 0)
(-3.20514e-05 9.10968e-06 0)
(-3.06245e-05 5.46403e-06 0)
(-2.861e-05 2.10141e-06 0)
(-2.63143e-05 2.01977e-10 0)
(-2.45845e-05 -6.74014e-07 0)
(-2.36631e-05 -9.4897e-07 0)
(-2.31094e-05 -1.2874e-06 0)
(-2.26322e-05 -1.7254e-06 0)
(-2.22793e-05 -2.14762e-06 0)
(-2.19661e-05 -2.78293e-06 0)
(-2.15307e-05 -3.57474e-06 0)
(-2.13828e-05 -3.9765e-06 0)
(-2.17391e-05 -4.81786e-06 0)
(-2.21421e-05 -6.41939e-06 0)
(-2.21782e-05 -8.54508e-06 0)
(-2.14133e-05 -1.1238e-05 0)
(-1.94032e-05 -1.39374e-05 0)
(-1.66596e-05 -1.55784e-05 0)
(-1.38328e-05 -1.66589e-05 0)
(-1.07202e-05 -1.74587e-05 0)
(-7.09245e-06 -1.76954e-05 0)
(-3.10083e-06 -1.68208e-05 0)
(6.51443e-07 -1.45724e-05 0)
(3.53518e-06 -1.13273e-05 0)
(5.40444e-06 -7.53089e-06 0)
(6.09389e-06 -3.26706e-06 0)
(5.81724e-06 1.56015e-06 0)
(4.65267e-06 5.62001e-06 0)
(2.33358e-06 9.10609e-06 0)
(-8.96094e-07 1.17415e-05 0)
(-4.72345e-06 1.32528e-05 0)
(-8.76103e-06 1.36084e-05 0)
(-1.2615e-05 1.2738e-05 0)
(-1.58663e-05 1.07605e-05 0)
(-1.8213e-05 8.05514e-06 0)
(-1.96692e-05 5.0102e-06 0)
(-2.01586e-05 1.738e-06 0)
(-1.96818e-05 -1.40566e-06 0)
(-1.83797e-05 -4.23135e-06 0)
(-1.63443e-05 -6.45036e-06 0)
(-1.38496e-05 -7.92645e-06 0)
(-1.12163e-05 -8.55258e-06 0)
(-8.67344e-06 -8.39666e-06 0)
(-6.39276e-06 -7.60972e-06 0)
(-4.47054e-06 -6.39349e-06 0)
(-2.87452e-06 -4.94168e-06 0)
(-1.54504e-06 -3.39841e-06 0)
(-3.91601e-07 -1.68392e-06 0)
(5.87407e-07 2.77954e-07 0)
(1.30435e-06 2.55211e-06 0)
(1.68295e-06 4.95809e-06 0)
(1.76306e-06 7.29638e-06 0)
(1.63589e-06 9.67102e-06 0)
(1.20709e-06 1.2255e-05 0)
(2.25583e-07 1.50303e-05 0)
(-1.41474e-06 1.76624e-05 0)
(-3.52524e-06 1.98689e-05 0)
(-5.89832e-06 2.16196e-05 0)
(-8.43535e-06 2.29707e-05 0)
(-1.10714e-05 2.39233e-05 0)
(-1.36965e-05 2.44475e-05 0)
(-1.62163e-05 2.4635e-05 0)
(-1.86224e-05 2.45839e-05 0)
(-2.09049e-05 2.42909e-05 0)
(-2.30591e-05 2.3821e-05 0)
(-2.50989e-05 2.32067e-05 0)
(-2.7022e-05 2.24211e-05 0)
(-2.881e-05 2.1436e-05 0)
(-3.04419e-05 2.02482e-05 0)
(-3.18261e-05 1.87861e-05 0)
(-3.28483e-05 1.71308e-05 0)
(-3.34798e-05 1.54219e-05 0)
(-3.37575e-05 1.379e-05 0)
(-3.378e-05 1.22752e-05 0)
(-3.35857e-05 1.07583e-05 0)
(-3.30823e-05 9.16675e-06 0)
(-3.21553e-05 7.60971e-06 0)
(-3.0855e-05 6.2721e-06 0)
(-2.92679e-05 5.06741e-06 0)
(-2.73956e-05 3.90264e-06 0)
(-2.5029e-05 2.53502e-06 0)
(-2.20855e-05 1.40714e-06 0)
(-1.86815e-05 6.4948e-07 0)
(-1.47342e-05 1.15419e-07 0)
(-1.01562e-05 6.67811e-08 0)
(-4.69704e-06 2.42733e-07 0)
(1.67216e-06 8.60297e-07 0)
(1.06982e-05 8.65553e-08 0)
(2.38474e-05 -7.65708e-07 0)
(3.91448e-05 -6.15967e-06 0)
(5.17124e-05 -2.2554e-05 0)
(-5.74422e-06 5.21039e-05 0)
(-1.66163e-05 5.40833e-05 0)
(-2.44745e-05 4.77891e-05 0)
(-2.98769e-05 4.05437e-05 0)
(-3.35319e-05 3.40921e-05 0)
(-3.60241e-05 2.77704e-05 0)
(-3.69612e-05 2.17106e-05 0)
(-3.66874e-05 1.67172e-05 0)
(-3.58957e-05 1.25959e-05 0)
(-3.46981e-05 9.04584e-06 0)
(-3.31136e-05 5.88687e-06 0)
(-3.09974e-05 3.15745e-06 0)
(-2.84779e-05 1.31134e-06 0)
(-2.64692e-05 1.01183e-06 0)
(-2.5257e-05 9.19113e-07 0)
(-2.44964e-05 4.28944e-07 0)
(-2.40479e-05 -1.84201e-07 0)
(-2.40033e-05 -9.35591e-07 0)
(-2.41265e-05 -2.16005e-06 0)
(-2.38737e-05 -3.49148e-06 0)
(-2.38084e-05 -3.81681e-06 0)
(-2.44998e-05 -4.51156e-06 0)
(-2.52587e-05 -5.93706e-06 0)
(-2.5612e-05 -8.0943e-06 0)
(-2.51065e-05 -1.14162e-05 0)
(-2.30659e-05 -1.47978e-05 0)
(-2.01366e-05 -1.652e-05 0)
(-1.7162e-05 -1.7627e-05 0)
(-1.38248e-05 -1.86867e-05 0)
(-9.8048e-06 -1.93057e-05 0)
(-5.30432e-06 -1.85834e-05 0)
(-1.08107e-06 -1.61099e-05 0)
(2.12159e-06 -1.24223e-05 0)
(4.21934e-06 -8.20247e-06 0)
(5.42113e-06 -4.16735e-06 0)
(4.98529e-06 -2.14953e-07 0)
(2.97974e-06 4.12493e-06 0)
(1.0224e-07 8.10727e-06 0)
(-3.7517e-06 1.11141e-05 0)
(-8.26683e-06 1.28854e-05 0)
(-1.3018e-05 1.3495e-05 0)
(-1.75763e-05 1.27139e-05 0)
(-2.13997e-05 1.06181e-05 0)
(-2.41242e-05 7.73777e-06 0)
(-2.57839e-05 4.49312e-06 0)
(-2.64007e-05 1.05848e-06 0)
(-2.58948e-05 -2.47895e-06 0)
(-2.43428e-05 -5.66483e-06 0)
(-2.19759e-05 -8.14061e-06 0)
(-1.9081e-05 -9.78153e-06 0)
(-1.60697e-05 -1.0356e-05 0)
(-1.33518e-05 -9.9771e-06 0)
(-1.10295e-05 -8.90357e-06 0)
(-9.0881e-06 -7.40176e-06 0)
(-7.50739e-06 -5.70499e-06 0)
(-6.18989e-06 -4.03669e-06 0)
(-4.97391e-06 -2.32688e-06 0)
(-3.81522e-06 -6.39747e-07 0)
(-2.89129e-06 1.15937e-06 0)
(-2.40206e-06 3.5955e-06 0)
(-2.27267e-06 5.93973e-06 0)
(-2.39277e-06 8.38241e-06 0)
(-2.90667e-06 1.11915e-05 0)
(-4.04913e-06 1.4359e-05 0)
(-5.85947e-06 1.73527e-05 0)
(-8.16963e-06 1.98488e-05 0)
(-1.07955e-05 2.17941e-05 0)
(-1.35692e-05 2.32779e-05 0)
(-1.64158e-05 2.43525e-05 0)
(-1.92228e-05 2.49063e-05 0)
(-2.18618e-05 2.50952e-05 0)
(-2.43645e-05 2.50725e-05 0)
(-2.67293e-05 2.47853e-05 0)
(-2.89311e-05 2.43089e-05 0)
(-3.10155e-05 2.37502e-05 0)
(-3.29693e-05 2.2961e-05 0)
(-3.47331e-05 2.19456e-05 0)
(-3.62918e-05 2.07114e-05 0)
(-3.75475e-05 1.90982e-05 0)
(-3.83682e-05 1.72688e-05 0)
(-3.87473e-05 1.53786e-05 0)
(-3.87184e-05 1.36045e-05 0)
(-3.83507e-05 1.20353e-05 0)
(-3.77078e-05 1.04954e-05 0)
(-3.66837e-05 8.86012e-06 0)
(-3.51563e-05 7.29783e-06 0)
(-3.31817e-05 6.05652e-06 0)
(-3.08462e-05 5.03857e-06 0)
(-2.81698e-05 4.15832e-06 0)
(-2.4823e-05 2.98543e-06 0)
(-2.06036e-05 1.84923e-06 0)
(-1.57178e-05 8.42116e-07 0)
(-1.02242e-05 -5.56146e-08 0)
(-3.90542e-06 -4.98274e-07 0)
(3.25142e-06 -8.63658e-07 0)
(1.14196e-05 -1.16904e-06 0)
(2.21423e-05 -4.36587e-06 0)
(3.7097e-05 -7.2984e-06 0)
(5.39719e-05 -1.29428e-05 0)
(6.65322e-05 -2.54865e-05 0)
(-7.40002e-06 6.48118e-05 0)
(-1.79544e-05 6.51573e-05 0)
(-2.63519e-05 5.69016e-05 0)
(-3.30276e-05 4.76443e-05 0)
(-3.82742e-05 3.91649e-05 0)
(-4.20049e-05 3.08476e-05 0)
(-4.39356e-05 2.30573e-05 0)
(-4.37352e-05 1.64236e-05 0)
(-4.18697e-05 1.06449e-05 0)
(-3.92592e-05 5.57194e-06 0)
(-3.65555e-05 1.29383e-06 0)
(-3.45123e-05 -1.85708e-06 0)
(-3.32069e-05 -3.17231e-06 0)
(-3.21241e-05 -2.905e-06 0)
(-3.11893e-05 -2.71048e-06 0)
(-3.05643e-05 -2.94726e-06 0)
(-3.04033e-05 -3.1811e-06 0)
(-3.08232e-05 -3.48615e-06 0)
(-3.14374e-05 -4.0957e-06 0)
(-3.17425e-05 -4.9581e-06 0)
(-3.21376e-05 -4.21842e-06 0)
(-3.2967e-05 -4.32733e-06 0)
(-3.38153e-05 -5.64203e-06 0)
(-3.45248e-05 -8.48181e-06 0)
(-3.45635e-05 -1.28112e-05 0)
(-3.33337e-05 -1.73817e-05 0)
(-3.10977e-05 -1.959e-05 0)
(-2.81777e-05 -2.12033e-05 0)
(-2.4557e-05 -2.26597e-05 0)
(-2.02424e-05 -2.34528e-05 0)
(-1.5598e-05 -2.23724e-05 0)
(-1.12736e-05 -1.88819e-05 0)
(-7.96072e-06 -1.36955e-05 0)
(-6.21021e-06 -7.62159e-06 0)
(-6.12499e-06 -1.08411e-06 0)
(-6.79499e-06 4.69021e-06 0)
(-8.39846e-06 1.01539e-05 0)
(-1.17669e-05 1.5172e-05 0)
(-1.646e-05 1.9064e-05 0)
(-2.18151e-05 2.10545e-05 0)
(-2.74369e-05 2.14492e-05 0)
(-3.29553e-05 1.98327e-05 0)
(-3.76265e-05 1.62752e-05 0)
(-4.09591e-05 1.17563e-05 0)
(-4.29628e-05 6.89052e-06 0)
(-4.36782e-05 1.76229e-06 0)
(-4.30588e-05 -3.0974e-06 0)
(-4.12013e-05 -7.28693e-06 0)
(-3.84657e-05 -1.02924e-05 0)
(-3.52558e-05 -1.20566e-05 0)
(-3.20269e-05 -1.23198e-05 0)
(-2.93435e-05 -1.14735e-05 0)
(-2.72772e-05 -1.02101e-05 0)
(-2.56268e-05 -8.45338e-06 0)
(-2.4346e-05 -6.18851e-06 0)
(-2.32773e-05 -3.99261e-06 0)
(-2.22946e-05 -1.68109e-06 0)
(-2.13223e-05 9.00818e-07 0)
(-2.00822e-05 3.68295e-06 0)
(-1.91355e-05 6.58215e-06 0)
(-1.88238e-05 9.13255e-06 0)
(-1.88475e-05 1.18635e-05 0)
(-1.94833e-05 1.532e-05 0)
(-2.09223e-05 1.90228e-05 0)
(-2.29494e-05 2.23476e-05 0)
(-2.5435e-05 2.51483e-05 0)
(-2.83649e-05 2.71156e-05 0)
(-3.14012e-05 2.84118e-05 0)
(-3.44514e-05 2.92896e-05 0)
(-3.74382e-05 2.94957e-05 0)
(-4.01577e-05 2.92758e-05 0)
(-4.27254e-05 2.89312e-05 0)
(-4.51689e-05 2.82749e-05 0)
(-4.73903e-05 2.74096e-05 0)
(-4.94945e-05 2.6547e-05 0)
(-5.14305e-05 2.53669e-05 0)
(-5.30214e-05 2.3967e-05 0)
(-5.4279e-05 2.23991e-05 0)
(-5.51152e-05 2.02772e-05 0)
(-5.54328e-05 1.78466e-05 0)
(-5.53041e-05 1.53193e-05 0)
(-5.46974e-05 1.28532e-05 0)
(-5.3513e-05 1.06297e-05 0)
(-5.18625e-05 8.45543e-06 0)
(-4.97e-05 6.07298e-06 0)
(-4.69973e-05 3.72561e-06 0)
(-4.37328e-05 1.73842e-06 0)
(-3.98446e-05 -1.04974e-07 0)
(-3.53513e-05 -1.81393e-06 0)
(-3.00438e-05 -3.52536e-06 0)
(-2.37344e-05 -5.02557e-06 0)
(-1.63539e-05 -6.2405e-06 0)
(-8.3129e-06 -7.40501e-06 0)
(9.09902e-07 -8.22219e-06 0)
(1.0733e-05 -9.22532e-06 0)
(2.1941e-05 -9.8795e-06 0)
(3.43454e-05 -1.48141e-05 0)
(4.84971e-05 -1.86175e-05 0)
(6.27479e-05 -2.3373e-05 0)
(7.18622e-05 -2.9856e-05 0)
(-9.8369e-06 5.01278e-05 0)
(-1.6471e-05 4.97628e-05 0)
(-2.65583e-05 4.33224e-05 0)
(-3.99735e-05 3.68986e-05 0)
(-5.21957e-05 3.17672e-05 0)
(-5.963e-05 2.67088e-05 0)
(-6.4218e-05 2.18199e-05 0)
(-6.53898e-05 1.77084e-05 0)
(-6.26425e-05 1.39293e-05 0)
(-5.81121e-05 9.89504e-06 0)
(-5.38814e-05 5.90898e-06 0)
(-5.16813e-05 2.44617e-06 0)
(-5.18048e-05 9.72288e-07 0)
(-5.18904e-05 1.0119e-06 0)
(-5.07179e-05 1.1776e-06 0)
(-4.96284e-05 1.28943e-06 0)
(-4.95703e-05 1.47296e-06 0)
(-5.03858e-05 1.44344e-06 0)
(-5.23361e-05 5.57755e-07 0)
(-5.73515e-05 -9.61361e-07 0)
(-6.24503e-05 -7.97432e-07 0)
(-6.43934e-05 -1.54623e-06 0)
(-6.54723e-05 -4.0634e-06 0)
(-6.62241e-05 -8.2914e-06 0)
(-6.72387e-05 -1.36045e-05 0)
(-7.09483e-05 -1.89057e-05 0)
(-7.35953e-05 -2.15518e-05 0)
(-7.1329e-05 -2.34189e-05 0)
(-6.67558e-05 -2.53511e-05 0)
(-6.24469e-05 -2.67108e-05 0)
(-5.92578e-05 -2.63014e-05 0)
(-5.63918e-05 -2.36576e-05 0)
(-5.35714e-05 -1.9594e-05 0)
(-5.19153e-05 -1.47783e-05 0)
(-5.25575e-05 -8.56009e-06 0)
(-5.55748e-05 -1.69608e-06 0)
(-5.97804e-05 3.39543e-06 0)
(-6.47216e-05 7.71397e-06 0)
(-7.08888e-05 1.12057e-05 0)
(-7.76967e-05 1.31014e-05 0)
(-8.47426e-05 1.36822e-05 0)
(-9.19682e-05 1.2718e-05 0)
(-9.87244e-05 1.03369e-05 0)
(-0.000104155 7.33846e-06 0)
(-0.000107296 4.11463e-06 0)
(-0.000108085 5.99481e-07 0)
(-0.000106949 -2.91069e-06 0)
(-0.000104358 -5.95557e-06 0)
(-0.000101368 -8.3474e-06 0)
(-9.89209e-05 -9.98527e-06 0)
(-9.68184e-05 -1.06493e-05 0)
(-9.52856e-05 -1.06637e-05 0)
(-9.45204e-05 -1.0691e-05 0)
(-9.40621e-05 -1.03888e-05 0)
(-9.39113e-05 -9.49763e-06 0)
(-9.36635e-05 -8.47456e-06 0)
(-9.30563e-05 -7.14962e-06 0)
(-9.22029e-05 -5.12625e-06 0)
(-9.11815e-05 -2.52369e-06 0)
(-9.04824e-05 -1.03908e-07 0)
(-9.02441e-05 2.16019e-06 0)
(-9.05142e-05 4.60733e-06 0)
(-9.20243e-05 7.67094e-06 0)
(-9.45174e-05 1.09014e-05 0)
(-9.69061e-05 1.38833e-05 0)
(-9.97119e-05 1.6525e-05 0)
(-0.000103464 1.86071e-05 0)
(-0.000107107 2.02668e-05 0)
(-0.000110495 2.16826e-05 0)
(-0.000113799 2.26452e-05 0)
(-0.000116646 2.32983e-05 0)
(-0.000119298 2.38397e-05 0)
(-0.000121853 2.41126e-05 0)
(-0.000124047 2.41692e-05 0)
(-0.000126087 2.4152e-05 0)
(-0.000127777 2.3849e-05 0)
(-0.000128697 2.33409e-05 0)
(-0.000128973 2.26644e-05 0)
(-0.00012861 2.14792e-05 0)
(-0.000127623 1.99129e-05 0)
(-0.000126294 1.81776e-05 0)
(-0.000124445 1.63992e-05 0)
(-0.000121426 1.4678e-05 0)
(-0.000117456 1.28504e-05 0)
(-0.000112766 1.06637e-05 0)
(-0.000107639 8.33686e-06 0)
(-0.000101892 6.19361e-06 0)
(-9.50405e-05 4.0526e-06 0)
(-8.673e-05 1.88242e-06 0)
(-7.70439e-05 -2.59511e-07 0)
(-6.60631e-05 -2.13638e-06 0)
(-5.33594e-05 -3.62664e-06 0)
(-4.04245e-05 -5.07148e-06 0)
(-2.55983e-05 -6.22515e-06 0)
(-1.05167e-05 -7.41764e-06 0)
(8.06187e-06 -8.19353e-06 0)
(2.39029e-05 -1.27234e-05 0)
(3.25302e-05 -1.61624e-05 0)
(3.7109e-05 -1.89242e-05 0)
(3.87759e-05 -2.04065e-05 0)
(-2.50705e-05 6.84507e-05 0)
(-1.98054e-05 6.42666e-05 0)
(-5.39878e-05 5.74407e-05 0)
(-8.52438e-05 4.92099e-05 0)
(-0.000111835 3.95668e-05 0)
(-0.000132301 2.99142e-05 0)
(-0.000148775 2.06105e-05 0)
(-0.000160505 1.26563e-05 0)
(-0.000167085 6.36905e-06 0)
(-0.000171051 1.20975e-06 0)
(-0.000175429 -2.30204e-06 0)
(-0.000182896 -3.79066e-06 0)
(-0.000192043 -4.65726e-06 0)
(-0.000198264 -4.91379e-06 0)
(-0.000202908 -5.17961e-06 0)
(-0.000208122 -5.18518e-06 0)
(-0.000213106 -4.45334e-06 0)
(-0.000215381 -4.34176e-06 0)
(-0.000217641 -3.76541e-06 0)
(-0.000237076 -2.86974e-06 0)
(-0.000264593 -3.65019e-06 0)
(-0.000278008 -6.51438e-06 0)
(-0.000288448 -8.13185e-06 0)
(-0.000297997 -1.13155e-05 0)
(-0.000307706 -1.44208e-05 0)
(-0.000335021 -1.74947e-05 0)
(-0.000362763 -2.18114e-05 0)
(-0.000372922 -2.50122e-05 0)
(-0.000377421 -2.67078e-05 0)
(-0.000385981 -2.72913e-05 0)
(-0.000400191 -2.61519e-05 0)
(-0.000414291 -2.3164e-05 0)
(-0.000424776 -1.81215e-05 0)
(-0.000435019 -1.1437e-05 0)
(-0.000448759 -1.95789e-06 0)
(-0.00046931 4.49705e-06 0)
(-0.000491823 8.72785e-06 0)
(-0.000508838 1.34874e-05 0)
(-0.000521718 1.77037e-05 0)
(-0.000533261 1.95625e-05 0)
(-0.000545098 2.05548e-05 0)
(-0.000558512 1.92134e-05 0)
(-0.000575769 1.58583e-05 0)
(-0.00059471 1.08181e-05 0)
(-0.000608837 5.11037e-06 0)
(-0.00062028 9.68682e-08 0)
(-0.000629383 -7.03579e-06 0)
(-0.000633615 -1.13484e-05 0)
(-0.000638721 -1.38774e-05 0)
(-0.000649455 -1.52018e-05 0)
(-0.000661307 -1.57299e-05 0)
(-0.00066957 -1.46533e-05 0)
(-0.000677937 -1.3166e-05 0)
(-0.000687899 -1.10571e-05 0)
(-0.000698099 -8.41988e-06 0)
(-0.000707398 -6.42207e-06 0)
(-0.0007162 -4.107e-06 0)
(-0.000724641 -1.40022e-06 0)
(-0.000732531 1.16765e-06 0)
(-0.00074063 4.46911e-06 0)
(-0.000750489 6.70594e-06 0)
(-0.000762518 9.59339e-06 0)
(-0.000775318 1.36995e-05 0)
(-0.000786839 1.73127e-05 0)
(-0.000796218 2.04429e-05 0)
(-0.000805736 2.40712e-05 0)
(-0.000816565 2.62979e-05 0)
(-0.00082653 2.74815e-05 0)
(-0.000835137 2.87072e-05 0)
(-0.000842869 2.88553e-05 0)
(-0.000849333 2.85424e-05 0)
(-0.000854639 2.85351e-05 0)
(-0.000858757 2.79708e-05 0)
(-0.000861517 2.71824e-05 0)
(-0.00086314 2.6714e-05 0)
(-0.000863155 2.54591e-05 0)
(-0.000861058 2.41376e-05 0)
(-0.000856955 2.27933e-05 0)
(-0.000851001 2.05983e-05 0)
(-0.000843874 1.82925e-05 0)
(-0.000836115 1.59058e-05 0)
(-0.000827288 1.30823e-05 0)
(-0.000815637 1.03118e-05 0)
(-0.00080131 7.56128e-06 0)
(-0.000785334 4.1258e-06 0)
(-0.000768796 6.47087e-07 0)
(-0.000751182 -2.149e-06 0)
(-0.000731613 -4.44943e-06 0)
(-0.000709087 -5.74115e-06 0)
(-0.00068407 -8.00375e-06 0)
(-0.000657171 -1.01758e-05 0)
(-0.000626222 -1.16567e-05 0)
(-0.000594878 -1.2743e-05 0)
(-0.000559343 -1.45134e-05 0)
(-0.000524182 -1.57126e-05 0)
(-0.000478444 -1.76081e-05 0)
(-0.000441998 -1.71032e-05 0)
(-0.000431333 -1.80504e-05 0)
(-0.000431591 -1.8684e-05 0)
(-0.000426388 -2.1872e-05 0)
(-2.30209e-05 9.9423e-05 0)
(-0.000153605 0.000110321 0)
(-0.000393093 0.000116272 0)
(-0.00065661 0.000104906 0)
(-0.000924939 8.82519e-05 0)
(-0.0011895 7.17115e-05 0)
(-0.0014504 5.54449e-05 0)
(-0.00170747 4.0304e-05 0)
(-0.00196061 2.7818e-05 0)
(-0.0022112 2.05997e-05 0)
(-0.00246091 1.80497e-05 0)
(-0.00271113 1.9591e-05 0)
(-0.00296228 1.73412e-05 0)
(-0.00321391 1.45821e-05 0)
(-0.00346631 1.5448e-05 0)
(-0.00372071 1.52415e-05 0)
(-0.00397836 1.55393e-05 0)
(-0.00424033 1.25149e-05 0)
(-0.00450966 1.87233e-05 0)
(-0.00478885 4.38794e-05 0)
(-0.00506692 3.41316e-05 0)
(-0.00533893 1.68823e-05 0)
(-0.00560985 2.17741e-05 0)
(-0.00588031 1.15891e-05 0)
(-0.00615574 1.89788e-05 0)
(-0.00643422 3.15861e-05 0)
(-0.00670591 1.44831e-05 0)
(-0.0069717 1.97737e-06 0)
(-0.00723519 5.25979e-07 0)
(-0.00749936 4.89706e-06 0)
(-0.00776353 8.94215e-06 0)
(-0.00802469 8.83617e-06 0)
(-0.00828251 1.08722e-05 0)
(-0.00853761 1.57025e-05 0)
(-0.00879005 2.58949e-05 0)
(-0.00903926 4.32882e-05 0)
(-0.00928329 4.71447e-05 0)
(-0.00952316 4.83529e-05 0)
(-0.00975957 5.21501e-05 0)
(-0.00999417 5.41791e-05 0)
(-0.0102281 5.65005e-05 0)
(-0.0104613 5.64777e-05 0)
(-0.0106935 5.64884e-05 0)
(-0.010921 4.71943e-05 0)
(-0.011143 3.28918e-05 0)
(-0.0113609 2.55976e-05 0)
(-0.0115751 1.22633e-05 0)
(-0.0117909 7.60139e-06 0)
(-0.0120078 8.199e-06 0)
(-0.0122234 1.16303e-05 0)
(-0.0124322 8.1349e-06 0)
(-0.0126353 8.14893e-06 0)
(-0.0128325 1.0351e-05 0)
(-0.013023 1.23732e-05 0)
(-0.0132053 1.3451e-05 0)
(-0.0133792 1.37893e-05 0)
(-0.0135449 1.48874e-05 0)
(-0.0137018 1.54485e-05 0)
(-0.0138498 1.66012e-05 0)
(-0.0139882 2.18725e-05 0)
(-0.0141173 2.78596e-05 0)
(-0.0142361 3.26395e-05 0)
(-0.014342 3.66521e-05 0)
(-0.0144338 3.82815e-05 0)
(-0.0145124 3.94941e-05 0)
(-0.014578 4.3683e-05 0)
(-0.0146294 4.48021e-05 0)
(-0.0146666 4.2921e-05 0)
(-0.0146898 4.15166e-05 0)
(-0.014699 3.87087e-05 0)
(-0.0146949 3.50273e-05 0)
(-0.0146775 3.19423e-05 0)
(-0.014647 2.81088e-05 0)
(-0.0146042 2.39678e-05 0)
(-0.0145492 2.10998e-05 0)
(-0.014481 1.74514e-05 0)
(-0.0144006 1.33027e-05 0)
(-0.0143083 9.07476e-06 0)
(-0.0142049 4.53871e-06 0)
(-0.0140908 8.58013e-07 0)
(-0.0139654 -2.56934e-06 0)
(-0.0138283 -6.69585e-06 0)
(-0.0136791 -1.07885e-05 0)
(-0.0135182 -1.48134e-05 0)
(-0.0133455 -1.92099e-05 0)
(-0.0131613 -2.22892e-05 0)
(-0.0129637 -2.89331e-05 0)
(-0.0127528 -3.43692e-05 0)
(-0.0125276 -4.24919e-05 0)
(-0.0122895 -4.84391e-05 0)
(-0.0120379 -5.64055e-05 0)
(-0.0117721 -6.29004e-05 0)
(-0.0114928 -6.55159e-05 0)
(-0.0111965 -7.58757e-05 0)
(-0.0108879 -7.52796e-05 0)
(-0.0105595 -9.51844e-05 0)
(-0.0102273 -6.41214e-05 0)
(-0.00987407 -5.80566e-05 0)
(-0.00949978 -4.71505e-05 0)
(-0.00909635 -6.91461e-05 0)
(-3.84206e-05 0.000148971 0)
(-0.000283313 0.000244794 0)
(-0.000668703 0.000288163 0)
(-0.00109822 0.000292586 0)
(-0.00154673 0.0002815 0)
(-0.00199892 0.000267192 0)
(-0.00245074 0.000252906 0)
(-0.00290115 0.000239578 0)
(-0.00334986 0.000228938 0)
(-0.003797 0.000222465 0)
(-0.0042428 0.00022 0)
(-0.00468729 0.00022001 0)
(-0.0051312 0.000219026 0)
(-0.00557545 0.00021787 0)
(-0.0060197 0.000218967 0)
(-0.0064642 0.000220654 0)
(-0.00690985 0.000223192 0)
(-0.00735839 0.000225504 0)
(-0.00781027 0.000234143 0)
(-0.00825986 0.000247341 0)
(-0.00870487 0.000240213 0)
(-0.00914992 0.000229525 0)
(-0.00959254 0.000229188 0)
(-0.010034 0.000224653 0)
(-0.0104769 0.000228596 0)
(-0.0109149 0.000231122 0)
(-0.0113493 0.000215815 0)
(-0.0117842 0.000203469 0)
(-0.012217 0.000200507 0)
(-0.0126467 0.0002026 0)
(-0.013073 0.000204284 0)
(-0.0134962 0.000203717 0)
(-0.0139164 0.000205232 0)
(-0.0143324 0.000209897 0)
(-0.0147433 0.000216344 0)
(-0.0151475 0.000223375 0)
(-0.0155461 0.000224808 0)
(-0.015941 0.000224134 0)
(-0.0163311 0.000224927 0)
(-0.0167155 0.000225176 0)
(-0.0170941 0.00022502 0)
(-0.0174669 0.00022313 0)
(-0.0178334 0.000219317 0)
(-0.0181933 0.000209345 0)
(-0.0185481 0.000196913 0)
(-0.0188973 0.000188111 0)
(-0.0192415 0.000178797 0)
(-0.0195824 0.000173528 0)
(-0.0199177 0.00017118 0)
(-0.0202448 0.000168896 0)
(-0.0205631 0.000162158 0)
(-0.020873 0.000157394 0)
(-0.0211724 0.000154195 0)
(-0.0214601 0.000150484 0)
(-0.021736 0.000145431 0)
(-0.022 0.000139879 0)
(-0.0222518 0.000134522 0)
(-0.0224911 0.000128981 0)
(-0.0227175 0.000123736 0)
(-0.0229304 0.000119598 0)
(-0.0231289 0.000115798 0)
(-0.0233126 0.000111034 0)
(-0.0234805 0.000104828 0)
(-0.0236317 9.71689e-05 0)
(-0.0237657 8.93081e-05 0)
(-0.0238813 8.22956e-05 0)
(-0.0239776 7.32965e-05 0)
(-0.024055 6.23847e-05 0)
(-0.0241134 5.13557e-05 0)
(-0.024152 3.969e-05 0)
(-0.0241711 2.75324e-05 0)
(-0.02417 1.53466e-05 0)
(-0.0241482 2.54265e-06 0)
(-0.0241056 -1.05772e-05 0)
(-0.0240416 -2.26237e-05 0)
(-0.0239563 -3.45766e-05 0)
(-0.0238496 -4.70483e-05 0)
(-0.0237211 -5.97344e-05 0)
(-0.0235709 -7.25188e-05 0)
(-0.0233987 -8.52782e-05 0)
(-0.0232039 -9.84054e-05 0)
(-0.0229863 -0.000112576 0)
(-0.0227456 -0.000127342 0)
(-0.0224816 -0.000141299 0)
(-0.0221937 -0.000155234 0)
(-0.0218816 -0.000168747 0)
(-0.0215446 -0.000184055 0)
(-0.0211825 -0.000199459 0)
(-0.020795 -0.000215929 0)
(-0.0203823 -0.000231459 0)
(-0.019944 -0.000248325 0)
(-0.01948 -0.000264453 0)
(-0.0189896 -0.000279399 0)
(-0.0184722 -0.000297593 0)
(-0.0179289 -0.000311745 0)
(-0.017361 -0.000332002 0)
(-0.0167692 -0.000328236 0)
(-0.016146 -0.000339388 0)
(-0.0154951 -0.000354684 0)
(-0.0148229 -0.00038229 0)
(-5.37348e-05 0.000237854 0)
(-0.00038061 0.000433728 0)
(-0.000862112 0.000520769 0)
(-0.00139841 0.000545566 0)
(-0.00196173 0.000542883 0)
(-0.00253482 0.0005313 0)
(-0.00311085 0.000517829 0)
(-0.0036876 0.000504652 0)
(-0.00426422 0.000493812 0)
(-0.00484015 0.000486709 0)
(-0.00541486 0.000483422 0)
(-0.00598781 0.000482395 0)
(-0.00655939 0.000481259 0)
(-0.00713044 0.00048017 0)
(-0.00770056 0.000480839 0)
(-0.00826949 0.00048256 0)
(-0.00883759 0.000485366 0)
(-0.009406 0.000488856 0)
(-0.0099737 0.000496655 0)
(-0.0105343 0.000504804 0)
(-0.0110897 0.000497851 0)
(-0.0116468 0.000488171 0)
(-0.0122017 0.000485326 0)
(-0.0127547 0.000481677 0)
(-0.0133061 0.000483327 0)
(-0.0138505 0.000481937 0)
(-0.0143924 0.000467805 0)
(-0.0149362 0.000455477 0)
(-0.0154777 0.000450696 0)
(-0.0160142 0.000450376 0)
(-0.0165454 0.000449867 0)
(-0.0170724 0.000447804 0)
(-0.0175952 0.000447273 0)
(-0.0181125 0.00044923 0)
(-0.0186227 0.000452307 0)
(-0.0191248 0.000454883 0)
(-0.0196196 0.00045386 0)
(-0.020109 0.000450831 0)
(-0.0205922 0.000448189 0)
(-0.0210677 0.000444985 0)
(-0.0215352 0.000441033 0)
(-0.0219945 0.00043542 0)
(-0.0224452 0.000427391 0)
(-0.0228881 0.000414634 0)
(-0.0233252 0.000399961 0)
(-0.0237552 0.000387537 0)
(-0.024178 0.000375825 0)
(-0.0245933 0.000366911 0)
(-0.0249987 0.000359768 0)
(-0.0253922 0.000351916 0)
(-0.0257746 0.000340636 0)
(-0.0261461 0.000330197 0)
(-0.0265044 0.000320521 0)
(-0.0268484 0.000310083 0)
(-0.0271782 0.000298337 0)
(-0.0274937 0.000286001 0)
(-0.0277942 0.000273538 0)
(-0.0280795 0.000260806 0)
(-0.0283489 0.000248109 0)
(-0.0286017 0.000235841 0)
(-0.0288367 0.000223395 0)
(-0.0290534 0.000209642 0)
(-0.0292514 0.000194018 0)
(-0.0294301 0.000176897 0)
(-0.0295889 0.000159252 0)
(-0.0297262 0.000141549 0)
(-0.0298414 0.000122134 0)
(-0.0299346 0.000101002 0)
(-0.0300055 7.9316e-05 0)
(-0.0300532 5.69429e-05 0)
(-0.0300772 3.3966e-05 0)
(-0.0300769 1.07085e-05 0)
(-0.0300517 -1.31586e-05 0)
(-0.0300007 -3.74728e-05 0)
(-0.0299233 -6.21649e-05 0)
(-0.0298194 -8.76237e-05 0)
(-0.0296886 -0.000113306 0)
(-0.0295304 -0.000139078 0)
(-0.0293443 -0.000164908 0)
(-0.0291298 -0.000190966 0)
(-0.0288862 -0.000217628 0)
(-0.0286133 -0.000245375 0)
(-0.0283109 -0.000273816 0)
(-0.0279785 -0.000301869 0)
(-0.0276154 -0.000330017 0)
(-0.0272209 -0.000358313 0)
(-0.0267949 -0.000388025 0)
(-0.0263372 -0.000418185 0)
(-0.0258477 -0.000449023 0)
(-0.025326 -0.000479451 0)
(-0.024772 -0.000510766 0)
(-0.0241857 -0.000541729 0)
(-0.0235663 -0.000572415 0)
(-0.0229142 -0.000604622 0)
(-0.0222297 -0.000634838 0)
(-0.0215155 -0.000665834 0)
(-0.0207681 -0.000683603 0)
(-0.0199833 -0.00071066 0)
(-0.0191666 -0.000742407 0)
(-0.0183285 -0.000779638 0)
(-6.55556e-05 0.00035214 0)
(-0.000449387 0.000659798 0)
(-0.000996246 0.000795141 0)
(-0.00160353 0.000842533 0)
(-0.00224104 0.000850122 0)
(-0.00289196 0.000842655 0)
(-0.00354827 0.000830689 0)
(-0.00420686 0.000818039 0)
(-0.00486641 0.000807218 0)
(-0.00552592 0.000799694 0)
(-0.00618442 0.000795632 0)
(-0.00684109 0.000793629 0)
(-0.00749595 0.000791872 0)
(-0.00814951 0.000790258 0)
(-0.00880136 0.000790022 0)
(-0.00945095 0.000790911 0)
(-0.0100982 0.000792903 0)
(-0.0107437 0.000795752 0)
(-0.0113857 0.000801182 0)
(-0.0120194 0.000805224 0)
(-0.0126485 0.000797952 0)
(-0.013279 0.000788545 0)
(-0.0139074 0.000783782 0)
(-0.0145331 0.000779545 0)
(-0.0151554 0.000778491 0)
(-0.0157703 0.000774155 0)
(-0.0163829 0.000760626 0)
(-0.0169967 0.000748102 0)
(-0.0176076 0.000741213 0)
(-0.0182127 0.000737936 0)
(-0.0188113 0.000734672 0)
(-0.0194046 0.000730331 0)
(-0.0199925 0.000726993 0)
(-0.0205735 0.000725368 0)
(-0.0211465 0.000724405 0)
(-0.0217104 0.00072272 0)
(-0.0222659 0.000718372 0)
(-0.0228144 0.000712136 0)
(-0.0233552 0.000705537 0)
(-0.0238872 0.000698113 0)
(-0.0244102 0.000689655 0)
(-0.0249236 0.000679494 0)
(-0.0254273 0.000666877 0)
(-0.0259222 0.000650444 0)
(-0.0264098 0.000632314 0)
(-0.0268892 0.0006155 0)
(-0.0273591 0.000599508 0)
(-0.0278187 0.000585347 0)
(-0.0282659 0.000572056 0)
(-0.0286993 0.000557725 0)
(-0.0291197 0.00054068 0)
(-0.0295273 0.000523626 0)
(-0.0299201 0.000506582 0)
(-0.0302972 0.000488541 0)
(-0.0306584 0.00046918 0)
(-0.0310036 0.000449033 0)
(-0.031332 0.000428423 0)
(-0.031643 0.000407314 0)
(-0.0319362 0.000385909 0)
(-0.0322105 0.000364419 0)
(-0.0324648 0.000342326 0)
(-0.0326985 0.000318689 0)
(-0.0329112 0.000292968 0)
(-0.0331027 0.000265486 0)
(-0.0332722 0.000236992 0)
(-0.0334185 0.000207755 0)
(-0.0335407 0.000176761 0)
(-0.033639 0.000143996 0)
(-0.0337127 0.000110215 0)
(-0.0337609 7.54296e-05 0)
(-0.0337831 3.96939e-05 0)
(-0.0337783 3.18116e-06 0)
(-0.033746 -3.41027e-05 0)
(-0.0336851 -7.2151e-05 0)
(-0.0335951 -0.000111066 0)
(-0.0334754 -0.000150946 0)
(-0.0333256 -0.000191357 0)
(-0.0331451 -0.000232128 0)
(-0.0329331 -0.000273214 0)
(-0.0326889 -0.000314832 0)
(-0.0324121 -0.000357298 0)
(-0.0321021 -0.000400921 0)
(-0.0317589 -0.000445362 0)
(-0.0313818 -0.000489881 0)
(-0.03097 -0.000534741 0)
(-0.030523 -0.000580128 0)
(-0.0300407 -0.000626821 0)
(-0.0295229 -0.000674176 0)
(-0.0289696 -0.000722159 0)
(-0.0283803 -0.000770066 0)
(-0.0277548 -0.000818656 0)
(-0.0270934 -0.000867135 0)
(-0.0263951 -0.000915592 0)
(-0.0256609 -0.000964797 0)
(-0.0248907 -0.00101245 0)
(-0.0240868 -0.00105912 0)
(-0.0232449 -0.00109734 0)
(-0.0223626 -0.00114164 0)
(-0.0214454 -0.00118962 0)
(-0.0205042 -0.00123972 0)
(-7.37905e-05 0.000483455 0)
(-0.000496244 0.000910944 0)
(-0.0010879 0.00109758 0)
(-0.00174329 0.00116851 0)
(-0.00242954 0.00118728 0)
(-0.00313074 0.00118491 0)
(-0.00383875 0.00117516 0)
(-0.00455 0.0011635 0)
(-0.00526284 0.001153 0)
(-0.00597599 0.00114524 0)
(-0.00668826 0.00114046 0)
(-0.0073987 0.00113747 0)
(-0.0081071 0.00113483 0)
(-0.00881365 0.00113232 0)
(-0.00951796 0.00113085 0)
(-0.0102194 0.00113038 0)
(-0.0109176 0.00113087 0)
(-0.0116126 0.00113206 0)
(-0.0123029 0.00113455 0)
(-0.0129853 0.00113506 0)
(-0.0136635 0.00112719 0)
(-0.0143423 0.00111761 0)
(-0.0150188 0.00111111 0)
(-0.0156918 0.0011054 0)
(-0.0163602 0.00110143 0)
(-0.0170217 0.00109444 0)
(-0.0176805 0.00108076 0)
(-0.018339 0.00106752 0)
(-0.0189939 0.00105827 0)
(-0.0196427 0.00105174 0)
(-0.0202844 0.0010453 0)
(-0.0209199 0.00103807 0)
(-0.021549 0.0010314 0)
(-0.0221705 0.00102577 0)
(-0.0227832 0.00102036 0)
(-0.0233864 0.00101413 0)
(-0.0239806 0.0010058 0)
(-0.0245664 0.00099566 0)
(-0.0251436 0.00098467 0)
(-0.0257114 0.000972573 0)
(-0.0262692 0.000959185 0)
(-0.0268167 0.00094401 0)
(-0.0273538 0.000926454 0)
(-0.0278813 0.000905701 0)
(-0.0284 0.000883308 0)
(-0.0289091 0.000861465 0)
(-0.0294073 0.000840119 0)
(-0.0298934 0.000819739 0)
(-0.0303656 0.000799531 0)
(-0.0308231 0.000778104 0)
(-0.0312665 0.000754375 0)
(-0.0316955 0.000730009 0)
(-0.0321087 0.000705028 0)
(-0.0325053 0.0006788 0)
(-0.0328849 0.000651139 0)
(-0.0332473 0.000622432 0)
(-0.0335917 0.00059291 0)
(-0.0339173 0.00056258 0)
(-0.0342236 0.000531571 0)
(-0.0345096 0.000499971 0)
(-0.0347742 0.000467365 0)
(-0.0350167 0.00043299 0)
(-0.0352368 0.00039637 0)
(-0.0354342 0.000357723 0)
(-0.0356083 0.000317588 0)
(-0.0357579 0.000276151 0)
(-0.0358822 0.000232786 0)
(-0.0359811 0.00018748 0)
(-0.036054 0.000140726 0)
(-0.0360999 9.25867e-05 0)
(-0.0361182 4.3115e-05 0)
(-0.0361081 -7.5671e-06 0)
(-0.0360686 -5.93937e-05 0)
(-0.0359991 -0.000112383 0)
(-0.0358988 -0.000166553 0)
(-0.035767 -0.0002219 0)
(-0.0356032 -0.000278144 0)
(-0.0354066 -0.000335115 0)
(-0.0351765 -0.000392761 0)
(-0.0349122 -0.000451269 0)
(-0.034613 -0.00051088 0)
(-0.0342786 -0.00057178 0)
(-0.0339087 -0.00063368 0)
(-0.0335026 -0.000696056 0)
(-0.0330597 -0.000759049 0)
(-0.0325794 -0.000822833 0)
(-0.0320616 -0.000887888 0)
(-0.0315063 -0.000953754 0)
(-0.0309132 -0.00102029 0)
(-0.030282 -0.001087 0)
(-0.0296125 -0.0011543 0)
(-0.0289048 -0.00122166 0)
(-0.0281585 -0.00128907 0)
(-0.027374 -0.00135677 0)
(-0.0265515 -0.00142305 0)
(-0.0256921 -0.00148783 0)
(-0.0247923 -0.00154684 0)
(-0.0238505 -0.00160976 0)
(-0.0228716 -0.00167501 0)
(-0.0218657 -0.00174032 0)
(-7.91904e-05 0.000625556 0)
(-0.000527301 0.00117873 0)
(-0.00114957 0.00141871 0)
(-0.00183775 0.00151367 0)
(-0.00255645 0.00154394 0)
(-0.00329037 0.00154717 0)
(-0.00403165 0.00154012 0)
(-0.00477664 0.0015298 0)
(-0.00552349 0.00151984 0)
(-0.00627077 0.00151197 0)
(-0.00701718 0.00150652 0)
(-0.00776176 0.00150251 0)
(-0.00850416 0.00149883 0)
(-0.0092444 0.00149523 0)
(-0.00998209 0.00149235 0)
(-0.0107166 0.00149025 0)
(-0.0114475 0.00148888 0)
(-0.0121745 0.00148794 0)
(-0.0128963 0.00148741 0)
(-0.0136112 0.00148478 0)
(-0.0143222 0.00147607 0)
(-0.0150326 0.00146595 0)
(-0.0157402 0.00145766 0)
(-0.0164439 0.00144999 0)
(-0.0171424 0.00144304 0)
(-0.0178345 0.00143341 0)
(-0.0185232 0.00141893 0)
(-0.0192102 0.00140448 0)
(-0.0198931 0.00139265 0)
(-0.0205695 0.00138271 0)
(-0.0212387 0.00137281 0)
(-0.021901 0.00136226 0)
(-0.0225563 0.0013519 0)
(-0.0232034 0.00134201 0)
(-0.0238414 0.00133197 0)
(-0.0244699 0.00132096 0)
(-0.0250888 0.00130814 0)
(-0.0256986 0.00129359 0)
(-0.026299 0.00127784 0)
(-0.0268895 0.00126075 0)
(-0.0274695 0.00124214 0)
(-0.0280387 0.00122165 0)
(-0.028597 0.00119883 0)
(-0.0291448 0.00117325 0)
(-0.0296827 0.00114601 0)
(-0.03021 0.00111864 0)
(-0.0307252 0.00109129 0)
(-0.0312272 0.00106415 0)
(-0.0317147 0.0010366 0)
(-0.032187 0.00100767 0)
(-0.0326442 0.000976623 0)
(-0.0330861 0.000944447 0)
(-0.0335115 0.000911143 0)
(-0.0339197 0.000876321 0)
(-0.0343102 0.000839883 0)
(-0.0346827 0.000802101 0)
(-0.0350363 0.000763139 0)
(-0.0353703 0.00072302 0)
(-0.0356839 0.000681816 0)
(-0.0359763 0.000639526 0)
(-0.0362465 0.0005958 0)
(-0.0364938 0.000550052 0)
(-0.0367177 0.000501887 0)
(-0.036918 0.000451439 0)
(-0.0370939 0.000399083 0)
(-0.0372446 0.000344942 0)
(-0.0373691 0.000288644 0)
(-0.0374673 0.000230183 0)
(-0.0375384 0.000169872 0)
(-0.0375816 0.00010779 0)
(-0.0375962 4.39901e-05 0)
(-0.0375813 -2.14359e-05 0)
(-0.0375362 -8.84295e-05 0)
(-0.0374599 -0.000156974 0)
(-0.0373519 -0.000227035 0)
(-0.0372114 -0.000298562 0)
(-0.0370376 -0.000371351 0)
(-0.03683 -0.00044525 0)
(-0.0365876 -0.00052021 0)
(-0.0363098 -0.000596373 0)
(-0.035996 -0.000673904 0)
(-0.0356456 -0.000752893 0)
(-0.0352584 -0.000833099 0)
(-0.0348338 -0.000914134 0)
(-0.0343711 -0.000996051 0)
(-0.0338698 -0.00107897 0)
(-0.0333299 -0.00116316 0)
(-0.0327511 -0.00124827 0)
(-0.0321333 -0.00133412 0)
(-0.0314762 -0.00142034 0)
(-0.0307797 -0.00150713 0)
(-0.0300437 -0.00159411 0)
(-0.0292679 -0.00168116 0)
(-0.0284526 -0.00176824 0)
(-0.0275979 -0.00185404 0)
(-0.026704 -0.00193827 0)
(-0.0257684 -0.00201859 0)
(-0.0247898 -0.00210125 0)
(-0.0237724 -0.00218498 0)
(-0.0227255 -0.00226713 0)
(-8.25646e-05 0.000774761 0)
(-0.000547456 0.00145787 0)
(-0.00119052 0.00175272 0)
(-0.00190108 0.00187189 0)
(-0.00264161 0.00191357 0)
(-0.00339698 0.00192246 0)
(-0.00415974 0.00191823 0)
(-0.00492631 0.00190936 0)
(-0.00569477 0.00189998 0)
(-0.00646362 0.00189201 0)
(-0.00723158 0.00188586 0)
(-0.00799768 0.00188083 0)
(-0.00876154 0.00187602 0)
(-0.00952306 0.00187122 0)
(-0.0102819 0.00186685 0)
(-0.0110375 0.00186301 0)
(-0.0117893 0.00185964 0)
(-0.012537 0.00185641 0)
(-0.0132795 0.00185303 0)
(-0.0140159 0.00184763 0)
(-0.0147486 0.00183781 0)
(-0.0154797 0.00182672 0)
(-0.0162076 0.00181652 0)
(-0.0169311 0.00180659 0)
(-0.0176493 0.00179668 0)
(-0.0183613 0.00178444 0)
(-0.0190693 0.0017686 0)
(-0.0197745 0.00175246 0)
(-0.0204751 0.00173789 0)
(-0.021169 0.00172447 0)
(-0.0218557 0.00171095 0)
(-0.0225351 0.00169682 0)
(-0.023207 0.00168254 0)
(-0.0238705 0.00166825 0)
(-0.0245248 0.00165349 0)
(-0.0251694 0.00163763 0)
(-0.0258043 0.00162007 0)
(-0.0264296 0.00160078 0)
(-0.0270451 0.00158004 0)
(-0.0276502 0.00155773 0)
(-0.0282444 0.0015337 0)
(-0.0288276 0.00150767 0)
(-0.0293994 0.00147934 0)
(-0.0299602 0.00144848 0)
(-0.0305102 0.00141586 0)
(-0.0310485 0.00138257 0)
(-0.0315742 0.00134877 0)
(-0.0320861 0.00131455 0)
(-0.0325831 0.00127944 0)
(-0.0330645 0.00124275 0)
(-0.0335303 0.00120397 0)
(-0.0339801 0.00116366 0)
(-0.0344129 0.00112178 0)
(-0.0348282 0.0010781 0)
(-0.0352253 0.00103258 0)
(-0.0356038 0.000985389 0)
(-0.0359628 0.000936647 0)
(-0.0363018 0.000886376 0)
(-0.0366197 0.000834607 0)
(-0.0369159 0.000781284 0)
(-0.0371893 0.00072611 0)
(-0.0374393 0.000668628 0)
(-0.0376655 0.000608527 0)
(-0.0378673 0.000545877 0)
(-0.0380441 0.000480932 0)
(-0.038195 0.000413774 0)
(-0.0383194 0.000344185 0)
(-0.0384167 0.000272163 0)
(-0.0384863 0.000197909 0)
(-0.0385273 0.000121497 0)
(-0.0385391 4.298e-05 0)
(-0.0385207 -3.757e-05 0)
(-0.0384715 -0.000120096 0)
(-0.0383905 -0.00020456 0)
(-0.0382772 -0.000290906 0)
(-0.0381307 -0.000379049 0)
(-0.0379503 -0.000468821 0)
(-0.0377353 -0.000560092 0)
(-0.0374848 -0.000652813 0)
(-0.0371983 -0.000747074 0)
(-0.0368749 -0.000842973 0)
(-0.0365144 -0.000940528 0)
(-0.0361163 -0.00103953 0)
(-0.0356799 -0.00113967 0)
(-0.0352048 -0.00124095 0)
(-0.0346905 -0.00134343 0)
(-0.0341368 -0.0014472 0)
(-0.0335435 -0.001552 0)
(-0.0329105 -0.00165763 0)
(-0.0322376 -0.00176378 0)
(-0.0315244 -0.00187053 0)
(-0.030771 -0.00197756 0)
(-0.0299771 -0.00208472 0)
(-0.0291428 -0.00219177 0)
(-0.028268 -0.00229773 0)
(-0.0273525 -0.00240228 0)
(-0.0263944 -0.00250418 0)
(-0.0253928 -0.00260731 0)
(-0.024351 -0.00271042 0)
(-0.0232778 -0.00281059 0)
(-8.46118e-05 0.000928508 0)
(-0.000560343 0.0017446 0)
(-0.00121746 0.00209553 0)
(-0.00194331 0.00223901 0)
(-0.00269862 0.00229187 0)
(-0.00346821 0.00230623 0)
(-0.00424492 0.00230477 0)
(-0.00502532 0.00229732 0)
(-0.00580749 0.00228849 0)
(-0.00658996 0.00228038 0)
(-0.00737148 0.00227353 0)
(-0.00815114 0.00226745 0)
(-0.00892853 0.00226149 0)
(-0.00970351 0.00225542 0)
(-0.0104758 0.00224954 0)
(-0.0112448 0.00224395 0)
(-0.0120101 0.00223857 0)
(-0.0127711 0.00223306 0)
(-0.0135273 0.00222702 0)
(-0.0142781 0.00221914 0)
(-0.0150251 0.00220794 0)
(-0.0157696 0.00219552 0)
(-0.0165106 0.00218329 0)
(-0.017247 0.00217094 0)
(-0.0179779 0.00215813 0)
(-0.0187029 0.00214326 0)
(-0.0194236 0.00212562 0)
(-0.0201404 0.00210741 0)
(-0.0208522 0.00208995 0)
(-0.0215573 0.00207304 0)
(-0.0222552 0.00205584 0)
(-0.0229455 0.00203794 0)
(-0.0236281 0.00201961 0)
(-0.0243022 0.00200088 0)
(-0.024967 0.00198139 0)
(-0.0256221 0.00196064 0)
(-0.0262675 0.00193821 0)
(-0.0269029 0.00191398 0)
(-0.0275282 0.00188808 0)
(-0.0281429 0.00186041 0)
(-0.0287465 0.00183082 0)
(-0.0293388 0.00179912 0)
(-0.0299195 0.00176507 0)
(-0.0304887 0.00172858 0)
(-0.0310464 0.0016902 0)
(-0.0315919 0.00165066 0)
(-0.0321242 0.00161014 0)
(-0.0326424 0.00156865 0)
(-0.0331454 0.00152586 0)
(-0.0336327 0.00148125 0)
(-0.034104 0.00143448 0)
(-0.0345589 0.0013858 0)
(-0.0349965 0.00133519 0)
(-0.0354162 0.0012825 0)
(-0.0358176 0.00122768 0)
(-0.0361998 0.00117087 0)
(-0.0365623 0.00111213 0)
(-0.0369044 0.00105148 0)
(-0.0372251 0.000988915 0)
(-0.0375236 0.000924358 0)
(-0.0377992 0.000857551 0)
(-0.0380511 0.000788137 0)
(-0.0382787 0.000715866 0)
(-0.0384816 0.000640767 0)
(-0.038659 0.000563002 0)
(-0.0388103 0.000482627 0)
(-0.0389347 0.000399512 0)
(-0.0390315 0.00031366 0)
(-0.0391002 0.0002252 0)
(-0.0391399 0.000134196 0)
(-0.0391499 4.07022e-05 0)
(-0.0391293 -5.52224e-05 0)
(-0.0390775 -0.000153518 0)
(-0.0389936 -0.000254132 0)
(-0.0388768 -0.000356999 0)
(-0.0387265 -0.000462015 0)
(-0.0385419 -0.000569036 0)
(-0.0383223 -0.000677945 0)
(-0.0380668 -0.000788687 0)
(-0.0377748 -0.000901304 0)
(-0.0374456 -0.00101583 0)
(-0.0370788 -0.00113223 0)
(-0.0366739 -0.00125031 0)
(-0.0362304 -0.00136982 0)
(-0.0357477 -0.00149071 0)
(-0.0352254 -0.00161297 0)
(-0.0346633 -0.0017366 0)
(-0.0340612 -0.00186136 0)
(-0.033419 -0.00198704 0)
(-0.0327363 -0.0021134 0)
(-0.032013 -0.00224041 0)
(-0.0312489 -0.00236779 0)
(-0.0304439 -0.00249535 0)
(-0.0295977 -0.0026228 0)
(-0.0287102 -0.0027494 0)
(-0.0277809 -0.00287486 0)
(-0.0268084 -0.00299852 0)
(-0.0257922 -0.00312261 0)
(-0.0247345 -0.00324578 0)
(-0.0236441 -0.00336482 0)
(-8.58314e-05 0.00108511 0)
(-0.000568522 0.00203636 0)
(-0.00123514 0.00244433 0)
(-0.00197145 0.0026122 0)
(-0.00273686 0.00267601 0)
(-0.00351597 0.0026956 0)
(-0.00430184 0.00269678 0)
(-0.00509115 0.00269066 0)
(-0.00588206 0.00268231 0)
(-0.00667316 0.00267401 0)
(-0.00746325 0.00266645 0)
(-0.0082515 0.00265934 0)
(-0.00903748 0.00265219 0)
(-0.00982104 0.00264484 0)
(-0.0106019 0.00263747 0)
(-0.0113795 0.00263015 0)
(-0.0121535 0.00262278 0)
(-0.0129233 0.00261505 0)
(-0.0136885 0.00260657 0)
(-0.0144488 0.00259638 0)
(-0.0152052 0.00258358 0)
(-0.0159586 0.00256954 0)
(-0.0167081 0.00255518 0)
(-0.0174528 0.00254034 0)
(-0.0181922 0.00252469 0)
(-0.0189258 0.00250718 0)
(-0.0196547 0.00248741 0)
(-0.0203791 0.00246683 0)
(-0.0210981 0.00244639 0)
(-0.0218104 0.00242598 0)
(-0.0225155 0.00240505 0)
(-0.023213 0.00238331 0)
(-0.0239025 0.00236086 0)
(-0.0245835 0.00233768 0)
(-0.0252552 0.00231346 0)
(-0.0259173 0.00228783 0)
(-0.0265696 0.00226044 0)
(-0.0272118 0.00223116 0)
(-0.0278437 0.00220001 0)
(-0.0284648 0.00216688 0)
(-0.0290748 0.00213166 0)
(-0.0296733 0.00209417 0)
(-0.03026 0.00205427 0)
(-0.0308349 0.00201191 0)
(-0.0313978 0.00196748 0)
(-0.031948 0.00192147 0)
(-0.0324848 0.00187404 0)
(-0.0330071 0.00182518 0)
(-0.0335143 0.00177463 0)
(-0.0340056 0.00172202 0)
(-0.0344807 0.00166707 0)
(-0.034939 0.00160991 0)
(-0.0353799 0.00155046 0)
(-0.0358028 0.00148863 0)
(-0.036207 0.00142439 0)
(-0.0365919 0.00135781 0)
(-0.0369569 0.00128893 0)
(-0.0373011 0.00121775 0)
(-0.0376238 0.00114426 0)
(-0.0379242 0.00106836 0)
(-0.0382015 0.000989818 0)
(-0.0384548 0.000908361 0)
(-0.0386837 0.000823783 0)
(-0.0388877 0.000736079 0)
(-0.039066 0.000645349 0)
(-0.0392178 0.000551626 0)
(-0.0393425 0.000454832 0)
(-0.0394394 0.000354971 0)
(-0.0395079 0.00025213 0)
(-0.0395471 0.000146364 0)
(-0.0395563 3.77231e-05 0)
(-0.0395347 -7.37372e-05 0)
(-0.0394815 -0.000187955 0)
(-0.039396 -0.000304871 0)
(-0.0392775 -0.000424407 0)
(-0.0391251 -0.000546458 0)
(-0.0389381 -0.000670893 0)
(-0.0387159 -0.000797604 0)
(-0.0384575 -0.000926522 0)
(-0.0381624 -0.00105764 0)
(-0.0378299 -0.00119094 0)
(-0.0374594 -0.00132635 0)
(-0.0370506 -0.00146369 0)
(-0.0366029 -0.00160273 0)
(-0.0361157 -0.00174337 0)
(-0.0355888 -0.00188556 0)
(-0.0350218 -0.00202921 0)
(-0.0344145 -0.00217411 0)
(-0.0337667 -0.00232004 0)
(-0.0330782 -0.00246679 0)
(-0.0323487 -0.00261424 0)
(-0.0315781 -0.00276218 0)
(-0.030766 -0.00291038 0)
(-0.0299123 -0.00305857 0)
(-0.0290166 -0.00320619 0)
(-0.0280784 -0.00335298 0)
(-0.0270965 -0.00349852 0)
(-0.0260705 -0.00364395 0)
(-0.0250024 -0.00378768 0)
(-0.0239006 -0.00392616 0)
(-8.65526e-05 0.0012435 0)
(-0.000573723 0.00233144 0)
(-0.00124679 0.0027972 0)
(-0.00199031 0.00298956 0)
(-0.00276269 0.00306412 0)
(-0.0035483 0.00308873 0)
(-0.00434027 0.00309238 0)
(-0.00513541 0.00308746 0)
(-0.00593195 0.00307952 0)
(-0.00672855 0.003071 0)
(-0.00752412 0.00306272 0)
(-0.00831787 0.00305458 0)
(-0.0091094 0.00304627 0)
(-0.0098985 0.00303762 0)
(-0.0106849 0.00302878 0)
(-0.0114681 0.00301975 0)
(-0.0122478 0.00301046 0)
(-0.0130234 0.00300061 0)
(-0.0137947 0.00298983 0)
(-0.0145613 0.00297744 0)
(-0.015324 0.00296287 0)
(-0.0160832 0.00294701 0)
(-0.0168383 0.00293043 0)
(-0.0175887 0.00291307 0)
(-0.0183336 0.00289465 0)
(-0.019073 0.00287448 0)
(-0.0198073 0.00285233 0)
(-0.0205368 0.00282917 0)
(-0.0212605 0.00280566 0)
(-0.0219776 0.00278177 0)
(-0.0226874 0.00275711 0)
(-0.0233897 0.00273148 0)
(-0.0240839 0.00270487 0)
(-0.0247695 0.00267724 0)
(-0.0254459 0.00264833 0)
(-0.0261128 0.00261783 0)
(-0.0267698 0.00258545 0)
(-0.0274167 0.00255105 0)
(-0.0280532 0.00251459 0)
(-0.0286789 0.00247597 0)
(-0.0292933 0.00243506 0)
(-0.0298961 0.00239173 0)
(-0.0304871 0.00234587 0)
(-0.031066 0.00229747 0)
(-0.0316326 0.00224679 0)
(-0.0321863 0.00219416 0)
(-0.0327262 0.00213971 0)
(-0.0332517 0.00208342 0)
(-0.0337619 0.00202508 0)
(-0.0342561 0.00196441 0)
(-0.034734 0.00190119 0)
(-0.035195 0.00183544 0)
(-0.0356384 0.00176709 0)
(-0.0360637 0.00169604 0)
(-0.0364701 0.00162228 0)
(-0.0368572 0.00154584 0)
(-0.0372241 0.00146674 0)
(-0.0375702 0.00138496 0)
(-0.0378947 0.00130046 0)
(-0.0381967 0.00121315 0)
(-0.0384755 0.00112283 0)
(-0.0387303 0.00102927 0)
(-0.0389606 0.000932303 0)
(-0.0391658 0.000831898 0)
(-0.0393451 0.000728109 0)
(-0.0394979 0.000620952 0)
(-0.0396234 0.000510379 0)
(-0.0397209 0.000396394 0)
(-0.0397898 0.000279059 0)
(-0.0398292 0.000158421 0)
(-0.0398384 3.4527e-05 0)
(-0.0398167 -9.25723e-05 0)
(-0.0397633 -0.000222813 0)
(-0.0396773 -0.000356128 0)
(-0.0395581 -0.000492435 0)
(-0.0394049 -0.000631629 0)
(-0.0392169 -0.000773589 0)
(-0.0389935 -0.000918203 0)
(-0.0387338 -0.00106539 0)
(-0.0384372 -0.0012151 0)
(-0.038103 -0.00136727 0)
(-0.0377308 -0.0015218 0)
(-0.03732 -0.00167851 0)
(-0.0368701 -0.00183718 0)
(-0.0363806 -0.00199768 0)
(-0.0358511 -0.00215989 0)
(-0.0352814 -0.00232369 0)
(-0.0346711 -0.00248886 0)
(-0.0340202 -0.00265517 0)
(-0.0333282 -0.00282243 0)
(-0.032595 -0.00299048 0)
(-0.0318203 -0.00315915 0)
(-0.0310038 -0.00332821 0)
(-0.0301452 -0.00349743 0)
(-0.029244 -0.00366637 0)
(-0.0282997 -0.00383479 0)
(-0.0273116 -0.00400233 0)
(-0.026279 -0.00416935 0)
(-0.0252036 -0.00433401 0)
(-0.024094 -0.0044923 0)
(-8.6982e-05 0.00140301 0)
(-0.00057708 0.00262875 0)
(-0.00125458 0.00315288 0)
(-0.00200313 0.00336983 0)
(-0.00278041 0.00345499 0)
(-0.00357054 0.00348442 0)
(-0.00436668 0.00349038 0)
(-0.00516572 0.00348655 0)
(-0.00596594 0.00347893 0)
(-0.00676612 0.00347015 0)
(-0.00756526 0.00346116 0)
(-0.00836263 0.00345202 0)
(-0.00915782 0.00344254 0)
(-0.00995059 0.00343261 0)
(-0.0107407 0.00342231 0)
(-0.0115276 0.00341162 0)
(-0.0123111 0.00340046 0)
(-0.0130907 0.00338855 0)
(-0.0138661 0.00337559 0)
(-0.014637 0.00336106 0)
(-0.015404 0.00334461 0)
(-0.0161672 0.00332678 0)
(-0.0169261 0.00330794 0)
(-0.0176802 0.00328805 0)
(-0.0184291 0.00326691 0)
(-0.0191724 0.00324405 0)
(-0.0199105 0.00321936 0)
(-0.0206434 0.00319347 0)
(-0.0213704 0.00316685 0)
(-0.0220907 0.00313947 0)
(-0.0228038 0.00311109 0)
(-0.0235093 0.00308155 0)
(-0.0242067 0.00305079 0)
(-0.0248956 0.00301873 0)
(-0.0255754 0.00298516 0)
(-0.0262456 0.0029498 0)
(-0.0269061 0.00291242 0)
(-0.0275564 0.00287288 0)
(-0.0281963 0.00283108 0)
(-0.0288252 0.00278693 0)
(-0.029443 0.00274031 0)
(-0.0300491 0.0026911 0)
(-0.0306433 0.00263923 0)
(-0.0312253 0.00258467 0)
(-0.0317947 0.00252761 0)
(-0.032351 0.00246827 0)
(-0.0328935 0.00240674 0)
(-0.0334214 0.00234298 0)
(-0.0339339 0.00227684 0)
(-0.0344306 0.00220809 0)
(-0.0349108 0.00213653 0)
(-0.035374 0.00206214 0)
(-0.0358196 0.00198483 0)
(-0.0362469 0.00190453 0)
(-0.0366554 0.00182119 0)
(-0.0370444 0.00173483 0)
(-0.0374132 0.00164545 0)
(-0.037761 0.00155301 0)
(-0.0380872 0.00145748 0)
(-0.0383908 0.00135874 0)
(-0.0386712 0.00125662 0)
(-0.0389276 0.00115093 0)
(-0.0391595 0.00104152 0)
(-0.0393661 0.00092835 0)
(-0.0395468 0.000811441 0)
(-0.0397009 0.000690795 0)
(-0.0398275 0.00056638 0)
(-0.0399262 0.000438202 0)
(-0.039996 0.000306304 0)
(-0.0400363 0.000170725 0)
(-0.0400463 3.15086e-05 0)
(-0.0400251 -0.000111298 0)
(-0.0399722 -0.000257629 0)
(-0.0398866 -0.000407413 0)
(-0.0397676 -0.000560564 0)
(-0.0396145 -0.000716977 0)
(-0.0394266 -0.000876534 0)
(-0.039203 -0.00103912 0)
(-0.0389431 -0.00120463 0)
(-0.0386462 -0.00137299 0)
(-0.0383116 -0.0015441 0)
(-0.0379388 -0.00171783 0)
(-0.0375272 -0.00189399 0)
(-0.0370765 -0.00207238 0)
(-0.036586 -0.00225281 0)
(-0.0360554 -0.00243512 0)
(-0.0354844 -0.00261917 0)
(-0.0348727 -0.0028047 0)
(-0.03422 -0.00299151 0)
(-0.0335261 -0.00317939 0)
(-0.0327907 -0.0033682 0)
(-0.0320134 -0.00355775 0)
(-0.031194 -0.00374789 0)
(-0.030332 -0.00393838 0)
(-0.029427 -0.00412888 0)
(-0.0284785 -0.00431915 0)
(-0.0274858 -0.00450879 0)
(-0.0264485 -0.0046976 0)
(-0.025368 -0.00488343 0)
(-0.0242529 -0.00506177 0)
(-8.72445e-05 0.00156325 0)
(-0.000579315 0.00292758 0)
(-0.00125993 0.00351052 0)
(-0.00201206 0.00375215 0)
(-0.00279288 0.00384782 0)
(-0.00358624 0.00388191 0)
(-0.00438533 0.00389002 0)
(-0.00518705 0.00388716 0)
(-0.00598978 0.00387979 0)
(-0.00679236 0.00387073 0)
(-0.00759389 0.00386103 0)
(-0.00839369 0.00385091 0)
(-0.00919137 0.00384029 0)
(-0.00998666 0.00382909 0)
(-0.0107793 0.00381734 0)
(-0.0115688 0.00380502 0)
(-0.012355 0.00379204 0)
(-0.0131373 0.00377815 0)
(-0.0139156 0.00376308 0)
(-0.0146896 0.00374646 0)
(-0.0154596 0.00372803 0)
(-0.0162256 0.00370814 0)
(-0.0169872 0.003687 0)
(-0.017744 0.0036646 0)
(-0.0184956 0.00364077 0)
(-0.0192418 0.00361521 0)
(-0.0199826 0.00358786 0)
(-0.0207179 0.00355915 0)
(-0.0214473 0.00352936 0)
(-0.0221699 0.00349851 0)
(-0.0228854 0.00346643 0)
(-0.0235933 0.00343297 0)
(-0.0242931 0.00339807 0)
(-0.0249844 0.00336161 0)
(-0.0256667 0.0033234 0)
(-0.0263395 0.00328322 0)
(-0.0270026 0.00324086 0)
(-0.0276555 0.00319616 0)
(-0.028298 0.00314902 0)
(-0.0289296 0.00309933 0)
(-0.02955 0.00304699 0)
(-0.0301587 0.00299189 0)
(-0.0307555 0.00293396 0)
(-0.03134 0.00287317 0)
(-0.0319118 0.00280965 0)
(-0.0324703 0.00274355 0)
(-0.0330149 0.0026749 0)
(-0.0335449 0.00260367 0)
(-0.0340596 0.00252972 0)
(-0.0345584 0.00245287 0)
(-0.0350407 0.00237295 0)
(-0.0355059 0.00228988 0)
(-0.0359535 0.00220359 0)
(-0.0363829 0.00211399 0)
(-0.0367933 0.00202104 0)
(-0.0371842 0.00192474 0)
(-0.0375548 0.00182505 0)
(-0.0379045 0.00172195 0)
(-0.0382324 0.00161536 0)
(-0.0385378 0.00150519 0)
(-0.03882 0.00139126 0)
(-0.0390782 0.00127342 0)
(-0.0393118 0.00115155 0)
(-0.0395201 0.00102557 0)
(-0.0397025 0.000895507 0)
(-0.0398582 0.000761339 0)
(-0.0399864 0.000623046 0)
(-0.0400866 0.000480632 0)
(-0.0401578 0.000334128 0)
(-0.0401994 0.000183564 0)
(-0.0402107 2.89777e-05 0)
(-0.0401907 -0.000129583 0)
(-0.0401388 -0.000292052 0)
(-0.0400542 -0.000458355 0)
(-0.0399362 -0.000628404 0)
(-0.039784 -0.000802091 0)
(-0.0395968 -0.000979295 0)
(-0.0393739 -0.00115989 0)
(-0.0391145 -0.00134377 0)
(-0.0388181 -0.00153082 0)
(-0.0384839 -0.00172092 0)
(-0.0381114 -0.00191392 0)
(-0.0377 -0.00210962 0)
(-0.0372493 -0.00230778 0)
(-0.0367588 -0.00250821 0)
(-0.036228 -0.0027107 0)
(-0.0356566 -0.00291507 0)
(-0.0350444 -0.00312107 0)
(-0.0343909 -0.00332849 0)
(-0.0336959 -0.00353712 0)
(-0.0329591 -0.00374682 0)
(-0.0321802 -0.00395745 0)
(-0.0313587 -0.00416885 0)
(-0.0304944 -0.00438083 0)
(-0.0295866 -0.00459309 0)
(-0.0286349 -0.00480537 0)
(-0.0276388 -0.0050172 0)
(-0.0265979 -0.00522795 0)
(-0.0255136 -0.00543511 0)
(-0.0243943 -0.00563367 0)
(-8.74127e-05 0.00172399 0)
(-0.000580873 0.00322748 0)
(-0.00126375 0.00386957 0)
(-0.00201852 0.00413598 0)
(-0.00280196 0.00424209 0)
(-0.00359773 0.0042807 0)
(-0.00439898 0.00429085 0)
(-0.00520265 0.00428884 0)
(-0.00600714 0.00428165 0)
(-0.00681141 0.00427227 0)
(-0.00761462 0.00426188 0)
(-0.00841615 0.00425081 0)
(-0.0092156 0.00423906 0)
(-0.0100127 0.0042266 0)
(-0.0108071 0.00421342 0)
(-0.0115986 0.00419951 0)
(-0.0123866 0.00418474 0)
(-0.013171 0.00416892 0)
(-0.0139514 0.00415181 0)
(-0.0147277 0.00413312 0)
(-0.0154999 0.00411267 0)
(-0.016268 0.00409065 0)
(-0.0170317 0.00406719 0)
(-0.0177905 0.00404229 0)
(-0.0185442 0.0040158 0)
(-0.0192925 0.00398754 0)
(-0.0200354 0.00395746 0)
(-0.0207726 0.00392583 0)
(-0.0215037 0.00389287 0)
(-0.0222282 0.00385856 0)
(-0.0229455 0.00382279 0)
(-0.0236553 0.00378543 0)
(-0.024357 0.0037464 0)
(-0.0250502 0.00370557 0)
(-0.0257345 0.00366276 0)
(-0.0264094 0.00361779 0)
(-0.0270746 0.00357045 0)
(-0.0277298 0.0035206 0)
(-0.0283744 0.00346813 0)
(-0.0290083 0.00341292 0)
(-0.0296309 0.00335486 0)
(-0.0302419 0.00329386 0)
(-0.0308409 0.00322985 0)
(-0.0314276 0.0031628 0)
(-0.0320014 0.00309277 0)
(-0.032562 0.00301986 0)
(-0.0331086 0.00294408 0)
(-0.0336406 0.00286538 0)
(-0.0341573 0.00278363 0)
(-0.0346581 0.00269869 0)
(-0.0351424 0.00261038 0)
(-0.0356096 0.00251862 0)
(-0.0360592 0.00242333 0)
(-0.0364906 0.00232443 0)
(-0.036903 0.00222186 0)
(-0.0372958 0.0021156 0)
(-0.0376684 0.0020056 0)
(-0.03802 0.00189183 0)
(-0.0383499 0.00177419 0)
(-0.0386572 0.00165258 0)
(-0.0389414 0.00152685 0)
(-0.0392016 0.00139686 0)
(-0.0394372 0.0012625 0)
(-0.0396475 0.00112371 0)
(-0.0398318 0.000980462 0)
(-0.0399894 0.000832755 0)
(-0.0401195 0.000680564 0)
(-0.0402215 0.000523889 0)
(-0.0402945 0.000362748 0)
(-0.0403379 0.000197168 0)
(-0.0403508 2.71779e-05 0)
(-0.0403325 -0.000147172 0)
(-0.0402822 -0.000325815 0)
(-0.0401991 -0.000508675 0)
(-0.0400825 -0.00069566 0)
(-0.0399316 -0.00088666 0)
(-0.0397457 -0.00108155 0)
(-0.039524 -0.0012802 0)
(-0.0392658 -0.00148248 0)
(-0.0389705 -0.00168827 0)
(-0.0386373 -0.00189741 0)
(-0.0382657 -0.00210974 0)
(-0.0378551 -0.00232502 0)
(-0.0374051 -0.00254302 0)
(-0.0369151 -0.00276351 0)
(-0.0363847 -0.00298626 0)
(-0.0358136 -0.00321104 0)
(-0.0352013 -0.00343761 0)
(-0.0345476 -0.00366575 0)
(-0.0338521 -0.00389527 0)
(-0.0331145 -0.00412603 0)
(-0.0323345 -0.0043579 0)
(-0.0315115 -0.00459076 0)
(-0.0306453 -0.00482441 0)
(-0.0297354 -0.0050586 0)
(-0.0287811 -0.00529302 0)
(-0.0277823 -0.00552713 0)
(-0.0267385 -0.00575993 0)
(-0.025651 -0.00598855 0)
(-0.0245284 -0.00620745 0)
(-8.75276e-05 0.00188507 0)
(-0.000582027 0.00352817 0)
(-0.00126663 0.00422967 0)
(-0.00202342 0.00452094 0)
(-0.00280888 0.00463744 0)
(-0.00360653 0.00468048 0)
(-0.00440945 0.00469254 0)
(-0.0052146 0.0046913 0)
(-0.00602043 0.00468422 0)
(-0.00682595 0.0046745 0)
(-0.00763041 0.00466343 0)
(-0.00843323 0.00465143 0)
(-0.00923402 0.00463858 0)
(-0.0100325 0.00462487 0)
(-0.0108283 0.00461029 0)
(-0.0116212 0.0045948 0)
(-0.0124107 0.00457829 0)
(-0.0131967 0.00456058 0)
(-0.0139788 0.00454147 0)
(-0.0147568 0.00452073 0)
(-0.0155308 0.00449822 0)
(-0.0163006 0.00447405 0)
(-0.0170659 0.00444827 0)
(-0.0178264 0.00442087 0)
(-0.0185818 0.00439175 0)
(-0.0193318 0.00436078 0)
(-0.0200763 0.00432791 0)
(-0.0208151 0.00429334 0)
(-0.0215478 0.00425718 0)
(-0.0222738 0.00421942 0)
(-0.0229926 0.00417998 0)
(-0.0237039 0.00413873 0)
(-0.0244073 0.00409559 0)
(-0.0251022 0.00405042 0)
(-0.0257882 0.00400305 0)
(-0.0264649 0.00395332 0)
(-0.027132 0.00390103 0)
(-0.0277891 0.00384606 0)
(-0.0284357 0.00378827 0)
(-0.0290715 0.00372755 0)
(-0.0296962 0.00366379 0)
(-0.0303092 0.0035969 0)
(-0.0309103 0.0035268 0)
(-0.031499 0.00345345 0)
(-0.0320749 0.00337689 0)
(-0.0326374 0.00329716 0)
(-0.0331859 0.00321424 0)
(-0.0337198 0.00312807 0)
(-0.0342385 0.00303854 0)
(-0.0347413 0.0029455 0)
(-0.0352276 0.00284881 0)
(-0.0356969 0.00274837 0)
(-0.0361486 0.00264408 0)
(-0.036582 0.00253588 0)
(-0.0369965 0.00242369 0)
(-0.0373914 0.00230747 0)
(-0.0377661 0.00218717 0)
(-0.0381197 0.00206272 0)
(-0.0384517 0.00193403 0)
(-0.0387612 0.00180099 0)
(-0.0390475 0.00166347 0)
(-0.0393099 0.00152134 0)
(-0.0395477 0.0013745 0)
(-0.0397603 0.00122288 0)
(-0.0399468 0.00106645 0)
(-0.0401066 0.000905198 0)
(-0.0402389 0.000739097 0)
(-0.040343 0.000568142 0)
(-0.0404182 0.000392343 0)
(-0.0404636 0.00021172 0)
(-0.0404785 2.63032e-05 0)
(-0.0404622 -0.000163861 0)
(-0.0404138 -0.000358705 0)
(-0.0403326 -0.00055815 0)
(-0.0402179 -0.000762103 0)
(-0.0400688 -0.00097045 0)
(-0.0398846 -0.00118306 0)
(-0.0396645 -0.0013998 0)
(-0.0394079 -0.00162052 0)
(-0.0391141 -0.00184508 0)
(-0.0387823 -0.00207331 0)
(-0.038412 -0.00230501 0)
(-0.0380027 -0.00253994 0)
(-0.0375538 -0.00277783 0)
(-0.0370647 -0.00301845 0)
(-0.0365351 -0.00326153 0)
(-0.0359646 -0.00350683 0)
(-0.0353527 -0.00375408 0)
(-0.0346991 -0.00400308 0)
(-0.0340034 -0.00425364 0)
(-0.0332654 -0.00450563 0)
(-0.0324845 -0.00475892 0)
(-0.0316604 -0.0050134 0)
(-0.0307927 -0.00526889 0)
(-0.0298808 -0.00552517 0)
(-0.0289245 -0.00578187 0)
(-0.0279233 -0.00603835 0)
(-0.026877 -0.00629328 0)
(-0.0257869 -0.00654346 0)
(-0.0246615 -0.00678278 0)
(-8.76115e-05 0.00204642 0)
(-0.000582938 0.00382949 0)
(-0.00126892 0.0045906 0)
(-0.00202732 0.00490679 0)
(-0.00281442 0.00503365 0)
(-0.0036136 0.00508103 0)
(-0.00441789 0.00509492 0)
(-0.00522424 0.00509436 0)
(-0.00603116 0.00508735 0)
(-0.00683769 0.00507727 0)
(-0.00764315 0.00506552 0)
(-0.00844701 0.00505261 0)
(-0.00924888 0.00503868 0)
(-0.0100484 0.00502373 0)
(-0.0108454 0.00500777 0)
(-0.0116395 0.00499073 0)
(-0.0124303 0.00497251 0)
(-0.0132175 0.00495296 0)
(-0.014001 0.00493189 0)
(-0.0147805 0.00490912 0)
(-0.015556 0.00488454 0)
(-0.0163272 0.00485819 0)
(-0.0170939 0.00483009 0)
(-0.0178558 0.00480022 0)
(-0.0186127 0.00476848 0)
(-0.0193642 0.00473479 0)
(-0.0201102 0.00469911 0)
(-0.0208503 0.00466155 0)
(-0.0215843 0.00462219 0)
(-0.0223117 0.004581 0)
(-0.023032 0.0045379 0)
(-0.0237447 0.00449278 0)
(-0.0244495 0.00444555 0)
(-0.025146 0.00439606 0)
(-0.0258336 0.00434418 0)
(-0.0265121 0.00428971 0)
(-0.0271809 0.00423252 0)
(-0.0278397 0.00417244 0)
(-0.0284882 0.00410935 0)
(-0.0291259 0.00404315 0)
(-0.0297525 0.00397371 0)
(-0.0303675 0.00390093 0)
(-0.0309706 0.00382475 0)
(-0.0315613 0.00374511 0)
(-0.0321391 0.003662 0)
(-0.0327035 0.00357542 0)
(-0.033254 0.00348536 0)
(-0.0337899 0.00339174 0)
(-0.0343106 0.00329443 0)
(-0.0348154 0.00319332 0)
(-0.0353039 0.00308826 0)
(-0.0357753 0.00297915 0)
(-0.0362291 0.00286589 0)
(-0.0366647 0.00274839 0)
(-0.0370814 0.0026266 0)
(-0.0374785 0.00250043 0)
(-0.0378554 0.00236983 0)
(-0.0382113 0.00223471 0)
(-0.0385456 0.00209498 0)
(-0.0388574 0.00195053 0)
(-0.0391461 0.00180123 0)
(-0.0394109 0.00164698 0)
(-0.0396512 0.00148766 0)
(-0.0398661 0.00132322 0)
(-0.0400551 0.00115361 0)
(-0.0402173 0.000978808 0)
(-0.040352 0.000798787 0)
(-0.0404586 0.000613536 0)
(-0.0405361 0.000423061 0)
(-0.0405839 0.000227378 0)
(-0.0406012 2.65155e-05 0)
(-0.0405872 -0.000179481 0)
(-0.040541 -0.000390547 0)
(-0.0404621 -0.000606603 0)
(-0.0403495 -0.000827553 0)
(-0.0402025 -0.00105328 0)
(-0.0400203 -0.00128364 0)
(-0.0398023 -0.0015185 0)
(-0.0395476 -0.0017577 0)
(-0.0392555 -0.00200107 0)
(-0.0389255 -0.00224843 0)
(-0.0385569 -0.00249955 0)
(-0.0381491 -0.00275417 0)
(-0.0377015 -0.00301204 0)
(-0.0372137 -0.00327286 0)
(-0.0366852 -0.00353637 0)
(-0.0361155 -0.00380229 0)
(-0.0355042 -0.00407036 0)
(-0.0348509 -0.00434037 0)
(-0.0341553 -0.00461212 0)
(-0.0334169 -0.00488549 0)
(-0.0326354 -0.00516037 0)
(-0.0318104 -0.00543664 0)
(-0.0309413 -0.00571415 0)
(-0.0300278 -0.00599267 0)
(-0.0290695 -0.00627178 0)
(-0.0280663 -0.00655069 0)
(-0.0270177 -0.00682784 0)
(-0.0259252 -0.00709965 0)
(-0.0247973 -0.00735949 0)
(-8.76768e-05 0.00220799 0)
(-0.000583703 0.00413131 0)
(-0.00127085 0.00495221 0)
(-0.00203061 0.00529338 0)
(-0.0028191 0.00543057 0)
(-0.00361958 0.00548223 0)
(-0.00442505 0.00549787 0)
(-0.00523246 0.00549794 0)
(-0.00604031 0.00549095 0)
(-0.00684773 0.00548049 0)
(-0.00765406 0.00546807 0)
(-0.00845882 0.00545427 0)
(-0.00926162 0.00543927 0)
(-0.0100622 0.00542311 0)
(-0.0108601 0.00540578 0)
(-0.0116552 0.00538721 0)
(-0.0124471 0.00536731 0)
(-0.0132355 0.00534595 0)
(-0.0140203 0.00532296 0)
(-0.0148011 0.00529819 0)
(-0.0155778 0.00527154 0)
(-0.0163503 0.005243 0)
(-0.0171183 0.00521258 0)
(-0.0178816 0.00518024 0)
(-0.0186398 0.00514591 0)
(-0.0193926 0.0051095 0)
(-0.0201399 0.00507099 0)
(-0.0208814 0.00503043 0)
(-0.0216167 0.00498786 0)
(-0.0223454 0.00494324 0)
(-0.023067 0.0048965 0)
(-0.0237811 0.00484753 0)
(-0.0244874 0.00479623 0)
(-0.0251853 0.00474247 0)
(-0.0258745 0.00468609 0)
(-0.0265546 0.00462694 0)
(-0.0272251 0.00456486 0)
(-0.0278857 0.00449971 0)
(-0.028536 0.00443137 0)
(-0.0291756 0.0043597 0)
(-0.0298041 0.0042846 0)
(-0.030421 0.00420596 0)
(-0.0310261 0.0041237 0)
(-0.0316187 0.00403775 0)
(-0.0321986 0.00394808 0)
(-0.032765 0.00385467 0)
(-0.0333175 0.00375747 0)
(-0.0338554 0.0036564 0)
(-0.0343782 0.00355135 0)
(-0.0348852 0.00344218 0)
(-0.0353758 0.00332877 0)
(-0.0358495 0.00321102 0)
(-0.0363056 0.0030888 0)
(-0.0367435 0.00296204 0)
(-0.0371625 0.00283064 0)
(-0.037562 0.00269454 0)
(-0.0379413 0.00255364 0)
(-0.0382996 0.00240786 0)
(-0.0386364 0.00225711 0)
(-0.0389507 0.00210127 0)
(-0.0392419 0.00194023 0)
(-0.0395093 0.00177387 0)
(-0.0397522 0.0016021 0)
(-0.0399698 0.00142484 0)
(-0.0401614 0.00124206 0)
(-0.0403263 0.0010537 0)
(-0.0404637 0.000859755 0)
(-0.0405729 0.000660198 0)
(-0.0406531 0.000455035 0)
(-0.0407035 0.00024428 0)
(-0.0407234 2.79591e-05 0)
(-0.0407119 -0.000193887 0)
(-0.0406683 -0.000421196 0)
(-0.0405918 -0.000653887 0)
(-0.0404816 -0.000891861 0)
(-0.040337 -0.00113499 0)
(-0.0401572 -0.00138314 0)
(-0.0399414 -0.00163615 0)
(-0.0396888 -0.00189386 0)
(-0.0393989 -0.00215608 0)
(-0.0390709 -0.00242261 0)
(-0.0387042 -0.0026932 0)
(-0.0382981 -0.00296759 0)
(-0.0378522 -0.0032455 0)
(-0.0373658 -0.00352662 0)
(-0.0368385 -0.00381065 0)
(-0.0362698 -0.00409732 0)
(-0.0356593 -0.00438634 0)
(-0.0350065 -0.0046775 0)
(-0.034311 -0.00497061 0)
(-0.0335725 -0.00526553 0)
(-0.0327905 -0.00556216 0)
(-0.0319645 -0.00586041 0)
(-0.0310942 -0.00616012 0)
(-0.0301792 -0.00646103 0)
(-0.0292191 -0.00676265 0)
(-0.0282139 -0.00706409 0)
(-0.0271632 -0.00736351 0)
(-0.0260684 -0.00765702 0)
(-0.0249382 -0.00793747 0)
(-8.77304e-05 0.00236975 0)
(-0.00058438 0.00443358 0)
(-0.00127256 0.0053144 0)
(-0.00203352 0.0056806 0)
(-0.00282324 0.00582811 0)
(-0.00362489 0.00588401 0)
(-0.00443143 0.00590134 0)
(-0.0052398 0.00590198 0)
(-0.00604853 0.00589497 0)
(-0.00685676 0.00588412 0)
(-0.00766391 0.00587104 0)
(-0.00846949 0.00585637 0)
(-0.00927316 0.00584032 0)
(-0.0100746 0.00582296 0)
(-0.0108735 0.00580427 0)
(-0.0116695 0.0057842 0)
(-0.0124625 0.00576266 0)
(-0.013252 0.00573951 0)
(-0.0140378 0.00571463 0)
(-0.0148198 0.00568787 0)
(-0.0155978 0.00565915 0)
(-0.0163716 0.00562844 0)
(-0.0171408 0.00559571 0)
(-0.0179053 0.00556092 0)
(-0.0186648 0.005524 0)
(-0.0194189 0.00548488 0)
(-0.0201676 0.00544352 0)
(-0.0209103 0.00539995 0)
(-0.0216469 0.00535417 0)
(-0.0223769 0.00530614 0)
(-0.0230998 0.00525577 0)
(-0.0238153 0.00520297 0)
(-0.024523 0.00514763 0)
(-0.0252225 0.00508962 0)
(-0.0259132 0.00502879 0)
(-0.0265949 0.00496499 0)
(-0.0272672 0.00489807 0)
(-0.0279296 0.00482789 0)
(-0.0285817 0.00475431 0)
(-0.0292232 0.00467721 0)
(-0.0298536 0.00459647 0)
(-0.0304725 0.00451198 0)
(-0.0310796 0.00442364 0)
(-0.0316743 0.00433139 0)
(-0.0322561 0.00423516 0)
(-0.0328247 0.00413492 0)
(-0.0333793 0.00403059 0)
(-0.0339193 0.0039221 0)
(-0.0344443 0.00380932 0)
(-0.0349536 0.00369214 0)
(-0.0354465 0.00357042 0)
(-0.0359225 0.00344404 0)
(-0.036381 0.00331289 0)
(-0.0368213 0.00317688 0)
(-0.0372428 0.0030359 0)
(-0.0376448 0.00288987 0)
(-0.0380266 0.00273869 0)
(-0.0383876 0.00258227 0)
(-0.038727 0.00242052 0)
(-0.039044 0.00225332 0)
(-0.039338 0.00208055 0)
(-0.0396082 0.00190212 0)
(-0.0398539 0.00171791 0)
(-0.0400743 0.00152785 0)
(-0.0402688 0.0013319 0)
(-0.0404366 0.00112999 0)
(-0.0405769 0.000922115 0)
(-0.0406889 0.000708247 0)
(-0.040772 0.000488389 0)
(-0.0408253 0.000262554 0)
(-0.040848 3.07617e-05 0)
(-0.0408393 -0.000206952 0)
(-0.0407985 -0.000450526 0)
(-0.0407247 -0.000699878 0)
(-0.0406172 -0.000954901 0)
(-0.0404752 -0.00121547 0)
(-0.0402979 -0.00148143 0)
(-0.0400846 -0.00175263 0)
(-0.0398344 -0.00202888 0)
(-0.0395468 -0.00230999 0)
(-0.039221 -0.00259574 0)
(-0.0388564 -0.00288587 0)
(-0.0384523 -0.0031801 0)
(-0.0380081 -0.00347813 0)
(-0.0375233 -0.00377964 0)
(-0.0369974 -0.00408432 0)
(-0.0364299 -0.00439185 0)
(-0.0358202 -0.00470196 0)
(-0.035168 -0.00501442 0)
(-0.0344728 -0.00532905 0)
(-0.0337342 -0.0056457 0)
(-0.0329517 -0.00596428 0)
(-0.032125 -0.00628469 0)
(-0.0312535 -0.00660677 0)
(-0.030337 -0.0069302 0)
(-0.0293752 -0.00725445 0)
(-0.0283681 -0.00757847 0)
(-0.0273153 -0.00790025 0)
(-0.0262183 -0.00821553 0)
(-0.0250858 -0.00851666 0)
(-8.77763e-05 0.00253167 0)
(-0.000585005 0.00473625 0)
(-0.00127414 0.00567711 0)
(-0.00203619 0.00606839 0)
(-0.00282705 0.00622622 0)
(-0.00362979 0.00628632 0)
(-0.00443735 0.00630531 0)
(-0.00524664 0.00630647 0)
(-0.00605621 0.00629941 0)
(-0.00686525 0.00628816 0)
(-0.00767319 0.00627442 0)
(-0.00847959 0.00625888 0)
(-0.0092841 0.0062418 0)
(-0.0100864 0.00622325 0)
(-0.0108862 0.00620323 0)
(-0.0116832 0.00618168 0)
(-0.0124771 0.00615852 0)
(-0.0132677 0.00613363 0)
(-0.0140547 0.00610688 0)
(-0.0148378 0.00607816 0)
(-0.015617 0.00604738 0)
(-0.0163919 0.00601449 0)
(-0.0171624 0.00597946 0)
(-0.0179282 0.00594222 0)
(-0.0186889 0.00590273 0)
(-0.0194444 0.0058609 0)
(-0.0201943 0.0058167 0)
(-0.0209383 0.00577012 0)
(-0.0216762 0.00572114 0)
(-0.0224075 0.0056697 0)
(-0.0231318 0.00561573 0)
(-0.0238488 0.00555912 0)
(-0.0245579 0.00549977 0)
(-0.0252589 0.00543753 0)
(-0.0259513 0.00537229 0)
(-0.0266347 0.00530388 0)
(-0.0273087 0.00523216 0)
(-0.0279729 0.00515698 0)
(-0.0286269 0.0050782 0)
(-0.0292703 0.0049957 0)
(-0.0299027 0.00490934 0)
(-0.0305237 0.00481901 0)
(-0.0311328 0.00472461 0)
(-0.0317296 0.00462606 0)
(-0.0323136 0.00452328 0)
(-0.0328843 0.00441622 0)
(-0.0334411 0.00430479 0)
(-0.0339835 0.0041889 0)
(-0.0345107 0.00406843 0)
(-0.0350224 0.00394326 0)
(-0.0355177 0.00381325 0)
(-0.0359962 0.00367828 0)
(-0.0364572 0.00353823 0)
(-0.0369001 0.00339298 0)
(-0.0373243 0.00324244 0)
(-0.037729 0.0030865 0)
(-0.0381135 0.00292507 0)
(-0.0384773 0.00275804 0)
(-0.0388195 0.00258531 0)
(-0.0391394 0.00240677 0)
(-0.0394363 0.00222232 0)
(-0.0397095 0.00203182 0)
(-0.0399582 0.0018352 0)
(-0.0401817 0.00163235 0)
(-0.0403792 0.00142323 0)
(-0.04055 0.00120778 0)
(-0.0406934 0.000985973 0)
(-0.0408086 0.000757795 0)
(-0.0408947 0.000523239 0)
(-0.0409511 0.000282315 0)
(-0.0409768 3.50354e-05 0)
(-0.0409712 -0.000218567 0)
(-0.0409333 -0.000478428 0)
(-0.0408625 -0.000744462 0)
(-0.0407579 -0.00101656 0)
(-0.0406187 -0.00129459 0)
(-0.0404442 -0.0015784 0)
(-0.0402336 -0.00186781 0)
(-0.039986 -0.00216265 0)
(-0.0397009 -0.0024627 0)
(-0.0393775 -0.00276773 0)
(-0.0390151 -0.00307747 0)
(-0.0386131 -0.00339163 0)
(-0.0381709 -0.00370987 0)
(-0.0376879 -0.00403187 0)
(-0.0371635 -0.00435729 0)
(-0.0365972 -0.00468582 0)
(-0.0359885 -0.00501717 0)
(-0.035337 -0.0053511 0)
(-0.0346421 -0.00568742 0)
(-0.0339034 -0.00602599 0)
(-0.0331206 -0.00636671 0)
(-0.0322931 -0.00670946 0)
(-0.0314205 -0.00705407 0)
(-0.0305026 -0.00740016 0)
(-0.0295392 -0.00774714 0)
(-0.0285301 -0.00809384 0)
(-0.0274753 -0.00843805 0)
(-0.026376 -0.00877519 0)
(-0.0252413 -0.00909707 0)
(-8.78169e-05 0.00269375 0)
(-0.000585597 0.00503929 0)
(-0.00127564 0.00604031 0)
(-0.00203873 0.00645671 0)
(-0.00283066 0.00662486 0)
(-0.00363445 0.00668915 0)
(-0.00444299 0.00670975 0)
(-0.0052532 0.0067114 0)
(-0.00606363 0.00670427 0)
(-0.00687349 0.00669262 0)
(-0.00768224 0.00667822 0)
(-0.00848947 0.00666182 0)
(-0.00929482 0.00664372 0)
(-0.010098 0.00662401 0)
(-0.0108987 0.00660267 0)
(-0.0116966 0.00657966 0)
(-0.0124916 0.00655491 0)
(-0.0132832 0.00652829 0)
(-0.0140713 0.0064997 0)
(-0.0148556 0.00646904 0)
(-0.0156359 0.00643621 0)
(-0.0164121 0.00640115 0)
(-0.0171838 0.00636382 0)
(-0.0179508 0.00632416 0)
(-0.0187128 0.0062821 0)
(-0.0194696 0.00623758 0)
(-0.0202209 0.00619054 0)
(-0.0209663 0.00614095 0)
(-0.0217055 0.00608877 0)
(-0.0224382 0.00603395 0)
(-0.0231639 0.00597639 0)
(-0.0238823 0.005916 0)
(-0.024593 0.00585266 0)
(-0.0252956 0.00578625 0)
(-0.0259897 0.00571663 0)
(-0.0266748 0.00564365 0)
(-0.0273506 0.00556715 0)
(-0.0280167 0.00548701 0)
(-0.0286726 0.00540306 0)
(-0.0293181 0.00531518 0)
(-0.0299525 0.00522323 0)
(-0.0305756 0.00512708 0)
(-0.0311869 0.00502664 0)
(-0.031786 0.00492181 0)
(-0.0323722 0.0048125 0)
(-0.0329452 0.00469864 0)
(-0.0335043 0.00458013 0)
(-0.034049 0.00445688 0)
(-0.0345788 0.00432875 0)
(-0.0350929 0.00419562 0)
(-0.0355908 0.00405735 0)
(-0.0360719 0.00391381 0)
(-0.0365356 0.00376487 0)
(-0.0369813 0.00361042 0)
(-0.0374082 0.00345034 0)
(-0.0378157 0.00328452 0)
(-0.0382032 0.00311286 0)
(-0.0385699 0.00293524 0)
(-0.0389151 0.00275157 0)
(-0.0392381 0.00256173 0)
(-0.0395381 0.00236561 0)
(-0.0398144 0.00216308 0)
(-0.0400663 0.00195405 0)
(-0.040293 0.00173842 0)
(-0.0404938 0.00151614 0)
(-0.0406679 0.00128716 0)
(-0.0408146 0.00105143 0)
(-0.0409331 0.000808946 0)
(-0.0410225 0.000559689 0)
(-0.0410821 0.000303664 0)
(-0.0411111 4.08799e-05 0)
(-0.0411087 -0.000228629 0)
(-0.0410741 -0.000504797 0)
(-0.0410064 -0.000787534 0)
(-0.0409049 -0.00107673 0)
(-0.0407688 -0.00137224 0)
(-0.0405972 -0.00167393 0)
(-0.0403895 -0.00198161 0)
(-0.0401447 -0.00229509 0)
(-0.0398623 -0.00261414 0)
(-0.0395414 -0.00293852 0)
(-0.0391815 -0.00326795 0)
(-0.0387818 -0.00360211 0)
(-0.0383416 -0.00394066 0)
(-0.0378604 -0.00428325 0)
(-0.0373377 -0.00462954 0)
(-0.0367728 -0.0049792 0)
(-0.0361652 -0.00533194 0)
(-0.0355144 -0.00568751 0)
(-0.0348199 -0.0060457 0)
(-0.0340813 -0.00640638 0)
(-0.0332981 -0.00676943 0)
(-0.0324698 -0.0071347 0)
(-0.0315962 -0.00750198 0)
(-0.030677 -0.00787088 0)
(-0.0297119 -0.00824071 0)
(-0.0287009 -0.0086102 0)
(-0.027644 -0.00897694 0)
(-0.0265426 -0.00933602 0)
(-0.0254055 -0.00967872 0)
(-8.78537e-05 0.00285598 0)
(-0.00058617 0.0053427 0)
(-0.00127709 0.00640399 0)
(-0.00204119 0.00684556 0)
(-0.00283417 0.00702404 0)
(-0.00363899 0.00709248 0)
(-0.00444852 0.00711468 0)
(-0.00525965 0.00711679 0)
(-0.00607096 0.00710957 0)
(-0.00688168 0.00709749 0)
(-0.00769127 0.00708244 0)
(-0.00849934 0.0070652 0)
(-0.00930557 0.0070461 0)
(-0.0101096 0.00702522 0)
(-0.0109113 0.00700259 0)
(-0.0117102 0.00697815 0)
(-0.0125061 0.00695182 0)
(-0.0132988 0.0069235 0)
(-0.0140881 0.0068931 0)
(-0.0148735 0.00686051 0)
(-0.0156551 0.00682563 0)
(-0.0164325 0.00678842 0)
(-0.0172055 0.00674881 0)
(-0.0179738 0.00670674 0)
(-0.0187371 0.00666213 0)
(-0.0194952 0.00661492 0)
(-0.0202478 0.00656505 0)
(-0.0209946 0.00651246 0)
(-0.0217353 0.0064571 0)
(-0.0224694 0.00639891 0)
(-0.0231967 0.00633779 0)
(-0.0239166 0.00627365 0)
(-0.024629 0.00620636 0)
(-0.0253332 0.00613581 0)
(-0.026029 0.00606185 0)
(-0.0267159 0.00598433 0)
(-0.0273936 0.0059031 0)
(-0.0280617 0.00581802 0)
(-0.0287196 0.00572893 0)
(-0.0293672 0.00563569 0)
(-0.0300038 0.00553817 0)
(-0.0306291 0.00543623 0)
(-0.0312427 0.00532977 0)
(-0.031844 0.00521869 0)
(-0.0324326 0.00510287 0)
(-0.033008 0.00498224 0)
(-0.0335696 0.00485669 0)
(-0.0341168 0.0047261 0)
(-0.0346491 0.00459034 0)
(-0.0351659 0.00444928 0)
(-0.0356665 0.00430278 0)
(-0.0361504 0.0041507 0)
(-0.0366169 0.00399291 0)
(-0.0370654 0.00382927 0)
(-0.0374953 0.00365968 0)
(-0.0379059 0.00348401 0)
(-0.0382964 0.00330215 0)
(-0.0386662 0.00311399 0)
(-0.0390146 0.00291941 0)
(-0.0393408 0.00271829 0)
(-0.0396441 0.00251052 0)
(-0.0399238 0.00229597 0)
(-0.0401791 0.00207455 0)
(-0.0404092 0.00184616 0)
(-0.0406135 0.00161074 0)
(-0.0407911 0.00136823 0)
(-0.0409412 0.00111859 0)
(-0.0410632 0.000861797 0)
(-0.0411561 0.000597833 0)
(-0.0412192 0.000326696 0)
(-0.0412517 4.83938e-05 0)
(-0.0412527 -0.000237037 0)
(-0.0412215 -0.000529529 0)
(-0.0411572 -0.00082899 0)
(-0.041059 -0.00113531 0)
(-0.0409261 -0.00144834 0)
(-0.0407577 -0.00176795 0)
(-0.040553 -0.00209394 0)
(-0.0403113 -0.00242611 0)
(-0.0400317 -0.00276424 0)
(-0.0397136 -0.00310804 0)
(-0.0393562 -0.00345724 0)
(-0.0389589 -0.00381148 0)
(-0.038521 -0.00417043 0)
(-0.0380418 -0.00453373 0)
(-0.0375207 -0.00490102 0)
(-0.0369573 -0.00527197 0)
(-0.0363509 -0.00564626 0)
(-0.0357009 -0.00602363 0)
(-0.0350069 -0.00640389 0)
(-0.0342684 -0.00678686 0)
(-0.0334849 -0.00717241 0)
(-0.0326561 -0.00756037 0)
(-0.0317815 -0.00795049 0)
(-0.0308609 -0.00834234 0)
(-0.0298941 -0.00873516 0)
(-0.0288813 -0.00912757 0)
(-0.0278223 -0.00951694 0)
(-0.0267186 -0.00989804 0)
(-0.025579 -0.0102617 0)
(-8.78872e-05 0.00301835 0)
(-0.000586732 0.00564646 0)
(-0.00127853 0.00676813 0)
(-0.00204362 0.00723491 0)
(-0.00283764 0.00742372 0)
(-0.00364349 0.00749632 0)
(-0.00445401 0.00752008 0)
(-0.0052661 0.00752264 0)
(-0.00607832 0.00751532 0)
(-0.00688993 0.00750281 0)
(-0.0077004 0.0074871 0)
(-0.00850938 0.00746903 0)
(-0.00931651 0.00744893 0)
(-0.0101215 0.00742692 0)
(-0.0109241 0.007403 0)
(-0.0117241 0.00737714 0)
(-0.0125211 0.00734926 0)
(-0.0133149 0.00731927 0)
(-0.0141052 0.00728707 0)
(-0.0148919 0.00725257 0)
(-0.0156747 0.00721568 0)
(-0.0164534 0.00717633 0)
(-0.0172277 0.00713445 0)
(-0.0179973 0.00708998 0)
(-0.018762 0.00704284 0)
(-0.0195215 0.00699295 0)
(-0.0202755 0.00694025 0)
(-0.0210238 0.00688467 0)
(-0.0217659 0.00682615 0)
(-0.0225016 0.00676462 0)
(-0.0232304 0.00669997 0)
(-0.023952 0.00663211 0)
(-0.024666 0.00656091 0)
(-0.025372 0.00648626 0)
(-0.0260697 0.00640799 0)
(-0.0267585 0.00632597 0)
(-0.0274382 0.00624004 0)
(-0.0281082 0.00615004 0)
(-0.0287683 0.00605584 0)
(-0.029418 0.00595727 0)
(-0.0300569 0.00585421 0)
(-0.0306846 0.00574652 0)
(-0.0313005 0.00563407 0)
(-0.0319043 0.00551676 0)
(-0.0324954 0.00539448 0)
(-0.0330732 0.00526711 0)
(-0.0336374 0.00513453 0)
(-0.0341873 0.00499664 0)
(-0.0347223 0.00485328 0)
(-0.0352418 0.00470432 0)
(-0.0357453 0.00454962 0)
(-0.0362321 0.00438902 0)
(-0.0367016 0.0042224 0)
(-0.0371532 0.00404963 0)
(-0.0375862 0.00387056 0)
(-0.0379999 0.00368507 0)
(-0.0383937 0.00349305 0)
(-0.0387668 0.00329436 0)
(-0.0391185 0.0030889 0)
(-0.0394482 0.00287652 0)
(-0.0397549 0.00265713 0)
(-0.0400381 0.00243059 0)
(-0.040297 0.0021968 0)
(-0.0405308 0.00195567 0)
(-0.0407387 0.00170712 0)
(-0.0409199 0.00145109 0)
(-0.0410738 0.00118754 0)
(-0.0411994 0.000916439 0)
(-0.0412961 0.000637763 0)
(-0.0413629 0.000351507 0)
(-0.041399 5.76783e-05 0)
(-0.0414037 -0.000243688 0)
(-0.0413761 -0.00055252 0)
(-0.0413153 -0.000868726 0)
(-0.0412206 -0.0011922 0)
(-0.0410912 -0.0015228 0)
(-0.0409262 -0.00186037 0)
(-0.0407247 -0.00220472 0)
(-0.0404862 -0.00255566 0)
(-0.0402096 -0.00291291 0)
(-0.0398944 -0.00327622 0)
(-0.0395398 -0.00364525 0)
(-0.039145 -0.00401968 0)
(-0.0387094 -0.00439914 0)
(-0.0382324 -0.00478327 0)
(-0.0377132 -0.0051717 0)
(-0.0371513 -0.00556407 0)
(-0.0365462 -0.00596008 0)
(-0.0358971 -0.00635944 0)
(-0.0352037 -0.00676193 0)
(-0.0344654 -0.00716737 0)
(-0.0336817 -0.0075756 0)
(-0.0328523 -0.00798643 0)
(-0.0319767 -0.00839957 0)
(-0.0310549 -0.00881455 0)
(-0.0300865 -0.00923052 0)
(-0.0290719 -0.00964596 0)
(-0.0280107 -0.0100581 0)
(-0.0269045 -0.0104613 0)
(-0.0257625 -0.010846 0)
(-8.79183e-05 0.00318086 0)
(-0.000587289 0.00595058 0)
(-0.00127996 0.00713273 0)
(-0.00204604 0.00762477 0)
(-0.0028411 0.00782393 0)
(-0.003648 0.00790067 0)
(-0.00445953 0.00792599 0)
(-0.0052726 0.00792897 0)
(-0.00608579 0.00792152 0)
(-0.00689833 0.00790858 0)
(-0.00770974 0.00789222 0)
(-0.00851966 0.00787332 0)
(-0.00932776 0.00785224 0)
(-0.0101338 0.0078291 0)
(-0.0109374 0.00780391 0)
(-0.0117384 0.00777666 0)
(-0.0125365 0.00774725 0)
(-0.0133314 0.00771561 0)
(-0.014123 0.00768164 0)
(-0.0149109 0.00764525 0)
(-0.015695 0.00760635 0)
(-0.016475 0.00756488 0)
(-0.0172506 0.00752075 0)
(-0.0180216 0.00747389 0)
(-0.0187877 0.00742423 0)
(-0.0195487 0.00737168 0)
(-0.0203042 0.00731617 0)
(-0.021054 0.00725762 0)
(-0.0217977 0.00719597 0)
(-0.022535 0.00713112 0)
(-0.0232654 0.00706298 0)
(-0.0239887 0.00699143 0)
(-0.0247045 0.00691636 0)
(-0.0254124 0.00683763 0)
(-0.0261119 0.0067551 0)
(-0.0268027 0.0066686 0)
(-0.0274845 0.006578 0)
(-0.0281567 0.00648313 0)
(-0.028819 0.00638384 0)
(-0.029471 0.00627998 0)
(-0.0301122 0.00617141 0)
(-0.0307423 0.006058 0)
(-0.0313607 0.0059396 0)
(-0.031967 0.0058161 0)
(-0.0325607 0.00568737 0)
(-0.0331412 0.00555329 0)
(-0.0337081 0.00541373 0)
(-0.0342608 0.00526856 0)
(-0.0347986 0.00511764 0)
(-0.0353211 0.00496081 0)
(-0.0358276 0.00479793 0)
(-0.0363174 0.00462886 0)
(-0.0367901 0.00445345 0)
(-0.0372449 0.00427156 0)
(-0.0376812 0.00408305 0)
(-0.0380982 0.00388778 0)
(-0.0384954 0.00368562 0)
(-0.038872 0.00347644 0)
(-0.0392273 0.00326012 0)
(-0.0395605 0.00303652 0)
(-0.0398709 0.00280553 0)
(-0.0401578 0.00256702 0)
(-0.0404205 0.00232088 0)
(-0.040658 0.00206703 0)
(-0.0408698 0.00180536 0)
(-0.0410549 0.00153583 0)
(-0.0412127 0.00125838 0)
(-0.0413422 0.000972967 0)
(-0.0414427 0.000679578 0)
(-0.0415134 0.000378199 0)
(-0.0415535 6.88381e-05 0)
(-0.041562 -0.000248474 0)
(-0.0415382 -0.000573665 0)
(-0.0414812 -0.000906647 0)
(-0.0413902 -0.00124731 0)
(-0.0412644 -0.00159551 0)
(-0.0411029 -0.0019511 0)
(-0.040905 -0.00231388 0)
(-0.0406698 -0.00268362 0)
(-0.0403965 -0.00306008 0)
(-0.0400843 -0.00344294 0)
(-0.0397326 -0.00383191 0)
(-0.0393405 -0.00422661 0)
(-0.0389075 -0.0046267 0)
(-0.0384327 -0.00503179 0)
(-0.0379155 -0.0054415 0)
(-0.0373553 -0.00585547 0)
(-0.0367515 -0.00627335 0)
(-0.0361035 -0.00669486 0)
(-0.0354108 -0.00711976 0)
(-0.0346727 -0.00754786 0)
(-0.0338889 -0.00797895 0)
(-0.033059 -0.00841284 0)
(-0.0321826 -0.0088492 0)
(-0.0312595 -0.00928748 0)
(-0.0302896 -0.00972675 0)
(-0.029273 -0.0101654 0)
(-0.0282097 -0.0106003 0)
(-0.027101 -0.0110258 0)
(-0.0259562 -0.0114317 0)
(-8.79473e-05 0.00334351 0)
(-0.000587845 0.00625504 0)
(-0.00128139 0.00749778 0)
(-0.00204848 0.00801513 0)
(-0.0028446 0.00822465 0)
(-0.00365255 0.00830553 0)
(-0.00446513 0.00833239 0)
(-0.00527922 0.00833579 0)
(-0.00609341 0.00832821 0)
(-0.00690694 0.00831483 0)
(-0.00771934 0.00829782 0)
(-0.00853025 0.00827809 0)
(-0.00933936 0.00825603 0)
(-0.0101464 0.00823178 0)
(-0.0109511 0.00820535 0)
(-0.0117532 0.00817671 0)
(-0.0125525 0.0081458 0)
(-0.0133486 0.00811253 0)
(-0.0141414 0.00807681 0)
(-0.0149306 0.00803856 0)
(-0.015716 0.00799768 0)
(-0.0164973 0.0079541 0)
(-0.0172743 0.00790774 0)
(-0.0180468 0.00785852 0)
(-0.0188144 0.00780635 0)
(-0.0195769 0.00775116 0)
(-0.020334 0.00769285 0)
(-0.0210854 0.00763136 0)
(-0.0218307 0.00756659 0)
(-0.0225696 0.00749846 0)
(-0.0233018 0.00742685 0)
(-0.024027 0.00735166 0)
(-0.0247446 0.00727274 0)
(-0.0254544 0.00718998 0)
(-0.0261559 0.00710321 0)
(-0.0268488 0.00701228 0)
(-0.0275327 0.00691703 0)
(-0.0282072 0.00681732 0)
(-0.0288718 0.00671299 0)
(-0.0295261 0.00660388 0)
(-0.0301699 0.00648984 0)
(-0.0308024 0.00637073 0)
(-0.0314234 0.00624642 0)
(-0.0320324 0.00611676 0)
(-0.0326288 0.00598162 0)
(-0.0332121 0.00584086 0)
(-0.0337819 0.00569435 0)
(-0.0343374 0.00554193 0)
(-0.0348783 0.00538348 0)
(-0.0354038 0.00521882 0)
(-0.0359135 0.00504781 0)
(-0.0364066 0.0048703 0)
(-0.0368825 0.00468613 0)
(-0.0373407 0.00449516 0)
(-0.0377804 0.00429724 0)
(-0.038201 0.00409221 0)
(-0.0386018 0.00387995 0)
(-0.038982 0.00366032 0)
(-0.039341 0.00343317 0)
(-0.039678 0.00319838 0)
(-0.0399923 0.00295582 0)
(-0.0402831 0.00270537 0)
(-0.0405496 0.00244691 0)
(-0.0407912 0.00218034 0)
(-0.041007 0.00190557 0)
(-0.0411962 0.00162254 0)
(-0.0413581 0.00133119 0)
(-0.0414917 0.00103148 0)
(-0.0415963 0.000723386 0)
(-0.0416711 0.000406884 0)
(-0.0417152 8.19829e-05 0)
(-0.0417278 -0.00025129 0)
(-0.041708 -0.000592864 0)
(-0.0416551 -0.000942653 0)
(-0.041568 -0.00130054 0)
(-0.041446 -0.00166639 0)
(-0.0412883 -0.00204004 0)
(-0.041094 -0.00242129 0)
(-0.0408624 -0.0028099 0)
(-0.0405925 -0.00320562 0)
(-0.0402836 -0.00360813 0)
(-0.0399349 -0.00401711 0)
(-0.0395457 -0.00443222 0)
(-0.0391153 -0.00485306 0)
(-0.0386429 -0.00527924 0)
(-0.0381279 -0.00571037 0)
(-0.0375695 -0.00614607 0)
(-0.0369672 -0.00658598 0)
(-0.0363204 -0.00702982 0)
(-0.0356284 -0.00747732 0)
(-0.0348908 -0.00792826 0)
(-0.034107 -0.00838243 0)
(-0.0332766 -0.00883959 0)
(-0.0323994 -0.00929936 0)
(-0.0314751 -0.00976112 0)
(-0.0305036 -0.0102238 0)
(-0.0294851 -0.0106858 0)
(-0.0284195 -0.0111437 0)
(-0.0273083 -0.0115916 0)
(-0.0261608 -0.012019 0)
(-8.7975e-05 0.00350631 0)
(-0.000588402 0.00655986 0)
(-0.00128284 0.00786331 0)
(-0.00205094 0.00840601 0)
(-0.00284814 0.00862591 0)
(-0.00365718 0.00871093 0)
(-0.00447084 0.00873933 0)
(-0.00528599 0.00874312 0)
(-0.00610122 0.0087354 0)
(-0.00691579 0.00872158 0)
(-0.00772923 0.00870391 0)
(-0.0085412 0.00868337 0)
(-0.00935138 0.00866035 0)
(-0.0101595 0.00863499 0)
(-0.0109653 0.00860733 0)
(-0.0117686 0.00857733 0)
(-0.0125691 0.00854494 0)
(-0.0133664 0.00851007 0)
(-0.0141605 0.00847263 0)
(-0.0149511 0.00843253 0)
(-0.0157378 0.0083897 0)
(-0.0165206 0.00834403 0)
(-0.017299 0.00829546 0)
(-0.018073 0.00824389 0)
(-0.0188421 0.00818924 0)
(-0.0196062 0.00813142 0)
(-0.0203649 0.00807034 0)
(-0.021118 0.00800592 0)
(-0.021865 0.00793807 0)
(-0.0226057 0.00786668 0)
(-0.0233398 0.00779164 0)
(-0.0240667 0.00771282 0)
(-0.0247863 0.0076301 0)
(-0.0254981 0.00754333 0)
(-0.0262018 0.00745236 0)
(-0.0268969 0.00735703 0)
(-0.027583 0.00725719 0)
(-0.0282598 0.00715268 0)
(-0.0289268 0.00704334 0)
(-0.0295837 0.00692901 0)
(-0.0302299 0.00680954 0)
(-0.0308652 0.00668477 0)
(-0.0314889 0.00655457 0)
(-0.0321006 0.00641879 0)
(-0.0326998 0.00627727 0)
(-0.0332861 0.00612987 0)
(-0.0338588 0.00597643 0)
(-0.0344175 0.00581682 0)
(-0.0349615 0.00565087 0)
(-0.0354902 0.00547842 0)
(-0.0360032 0.00529932 0)
(-0.0364997 0.00511341 0)
(-0.0369791 0.00492052 0)
(-0.0374408 0.00472051 0)
(-0.0378841 0.0045132 0)
(-0.0383084 0.00429846 0)
(-0.0387129 0.00407613 0)
(-0.0390969 0.00384607 0)
(-0.0394598 0.00360814 0)
(-0.0398008 0.00336219 0)
(-0.0401191 0.00310809 0)
(-0.040414 0.00284572 0)
(-0.0406847 0.00257496 0)
(-0.0409305 0.0022957 0)
(-0.0411505 0.00200785 0)
(-0.041344 0.00171134 0)
(-0.0415101 0.0014061 0)
(-0.0416481 0.0010921 0)
(-0.041757 0.000769299 0)
(-0.0418361 0.000437671 0)
(-0.0418846 9.72199e-05 0)
(-0.0419014 -0.000252031 0)
(-0.0418859 -0.000610012 0)
(-0.0418371 -0.000976636 0)
(-0.0417541 -0.00135178 0)
(-0.0416362 -0.00173532 0)
(-0.0414825 -0.00212707 0)
(-0.041292 -0.00252684 0)
(-0.0410641 -0.00293439 0)
(-0.0407978 -0.00334943 0)
(-0.0404923 -0.00377168 0)
(-0.0401469 -0.00420079 0)
(-0.0397608 -0.0046364 0)
(-0.0393332 -0.00507811 0)
(-0.0388634 -0.00552552 0)
(-0.0383506 -0.00597821 0)
(-0.0377942 -0.00643579 0)
(-0.0371936 -0.00689792 0)
(-0.036548 -0.00736426 0)
(-0.0358569 -0.00783454 0)
(-0.0351198 -0.00830853 0)
(-0.0343361 -0.00878599 0)
(-0.0335054 -0.00926662 0)
(-0.0326275 -0.00974999 0)
(-0.031702 -0.0102354 0)
(-0.030729 -0.0107218 0)
(-0.0297086 -0.0112072 0)
(-0.0286407 -0.0116884 0)
(-0.0275268 -0.0121589 0)
(-0.0263764 -0.0126078 0)
(-8.80017e-05 0.00366924 0)
(-0.000588962 0.00686503 0)
(-0.0012843 0.0082293 0)
(-0.00205344 0.00879742 0)
(-0.00285173 0.00902772 0)
(-0.0036619 0.00911688 0)
(-0.00447667 0.0091468 0)
(-0.00529293 0.00915099 0)
(-0.00610925 0.00914312 0)
(-0.00692492 0.00912885 0)
(-0.00773945 0.00911053 0)
(-0.00855252 0.00908918 0)
(-0.00936383 0.00906521 0)
(-0.0101731 0.00903877 0)
(-0.0109801 0.00900989 0)
(-0.0117846 0.00897856 0)
(-0.0125863 0.0089447 0)
(-0.013385 0.00890825 0)
(-0.0141804 0.00886912 0)
(-0.0149723 0.0088272 0)
(-0.0157605 0.00878243 0)
(-0.0165448 0.0087347 0)
(-0.0173247 0.00868394 0)
(-0.0181002 0.00863004 0)
(-0.018871 0.00857293 0)
(-0.0196367 0.00851251 0)
(-0.0203971 0.00844868 0)
(-0.0211519 0.00838136 0)
(-0.0219007 0.00831044 0)
(-0.0226433 0.00823582 0)
(-0.0233792 0.00815737 0)
(-0.0241082 0.00807497 0)
(-0.0248298 0.00798847 0)
(-0.0255437 0.00789773 0)
(-0.0262496 0.00780259 0)
(-0.0269469 0.00770291 0)
(-0.0276354 0.00759852 0)
(-0.0283146 0.00748925 0)
(-0.0289842 0.00737494 0)
(-0.0296436 0.00725543 0)
(-0.0302926 0.00713056 0)
(-0.0309305 0.00700018 0)
(-0.031557 0.00686413 0)
(-0.0321717 0.00672225 0)
(-0.0327739 0.00657438 0)
(-0.0333632 0.00642038 0)
(-0.0339391 0.00626007 0)
(-0.0345009 0.00609329 0)
(-0.0350482 0.00591989 0)
(-0.0355803 0.0057397 0)
(-0.0360967 0.00555255 0)
(-0.0365967 0.00535827 0)
(-0.0370798 0.0051567 0)
(-0.0375452 0.00494767 0)
(-0.0379923 0.00473103 0)
(-0.0384204 0.0045066 0)
(-0.0388289 0.00427425 0)
(-0.0392169 0.0040338 0)
(-0.0395839 0.00378512 0)
(-0.039929 0.00352804 0)
(-0.0402515 0.00326244 0)
(-0.0405507 0.00298819 0)
(-0.0408258 0.00270515 0)
(-0.041076 0.00241322 0)
(-0.0413004 0.0021123 0)
(-0.0414984 0.00180233 0)
(-0.041669 0.00148323 0)
(-0.0418115 0.00115494 0)
(-0.0419249 0.000817426 0)
(-0.0420086 0.000470665 0)
(-0.0420615 0.00011465 0)
(-0.0420828 -0.000250591 0)
(-0.0420717 -0.000624999 0)
(-0.0420273 -0.00100848 0)
(-0.0419487 -0.00140092 0)
(-0.0418351 -0.00180218 0)
(-0.0416855 -0.00221208 0)
(-0.0414992 -0.00263043 0)
(-0.0412752 -0.00305697 0)
(-0.0410127 -0.00349143 0)
(-0.0407108 -0.0039335 0)
(-0.0403689 -0.00438284 0)
(-0.039986 -0.00483906 0)
(-0.0395613 -0.00530177 0)
(-0.0390942 -0.00577052 0)
(-0.0385839 -0.00624492 0)
(-0.0380297 -0.00672456 0)
(-0.0374308 -0.00720907 0)
(-0.0367867 -0.00769811 0)
(-0.0360966 -0.00819138 0)
(-0.0353601 -0.00868863 0)
(-0.0345766 -0.00918958 0)
(-0.0337457 -0.00969389 0)
(-0.0328671 -0.0102011 0)
(-0.0319406 -0.0107103 0)
(-0.030966 -0.0112205 0)
(-0.0299437 -0.0117297 0)
(-0.0288735 -0.0122343 0)
(-0.0277568 -0.0127276 0)
(-0.0266033 -0.0131983 0)
(-8.80272e-05 0.00383231 0)
(-0.000589525 0.00717057 0)
(-0.00128578 0.00859579 0)
(-0.00205598 0.00918937 0)
(-0.0028554 0.00943009 0)
(-0.00366671 0.0095234 0)
(-0.00448264 0.00955485 0)
(-0.00530005 0.00955942 0)
(-0.00611752 0.0095514 0)
(-0.00693433 0.00953668 0)
(-0.00775001 0.00951772 0)
(-0.00856424 0.00949556 0)
(-0.00937674 0.00947065 0)
(-0.0101872 0.00944314 0)
(-0.0109955 0.00941307 0)
(-0.0118012 0.00938042 0)
(-0.0126042 0.00934513 0)
(-0.0134043 0.00930712 0)
(-0.0142011 0.0092663 0)
(-0.0149945 0.0092226 0)
(-0.0157841 0.00917591 0)
(-0.0165699 0.00912614 0)
(-0.0173514 0.0090732 0)
(-0.0181286 0.00901701 0)
(-0.018901 0.00895746 0)
(-0.0196684 0.00889446 0)
(-0.0204306 0.00882791 0)
(-0.0211872 0.00875771 0)
(-0.0219379 0.00868376 0)
(-0.0226824 0.00860593 0)
(-0.0234203 0.0085241 0)
(-0.0241513 0.00843813 0)
(-0.0248751 0.00834789 0)
(-0.0255912 0.00825321 0)
(-0.0262993 0.00815396 0)
(-0.026999 0.00804996 0)
(-0.02769 0.00794106 0)
(-0.0283717 0.00782707 0)
(-0.0290439 0.00770784 0)
(-0.029706 0.0075832 0)
(-0.0303577 0.00745297 0)
(-0.0309986 0.00731701 0)
(-0.031628 0.00717514 0)
(-0.0322457 0.0070272 0)
(-0.032851 0.00687303 0)
(-0.0334435 0.00671246 0)
(-0.0340226 0.00654531 0)
(-0.0345878 0.00637142 0)
(-0.0351385 0.00619061 0)
(-0.0356742 0.00600272 0)
(-0.0361942 0.00580756 0)
(-0.0366979 0.00560496 0)
(-0.0371847 0.00539475 0)
(-0.037654 0.00517675 0)
(-0.038105 0.00495081 0)
(-0.0385372 0.00471674 0)
(-0.0389497 0.00447439 0)
(-0.039342 0.0042236 0)
(-0.0397132 0.0039642 0)
(-0.0400627 0.00369604 0)
(-0.0403896 0.00341897 0)
(-0.0406933 0.00313286 0)
(-0.0409729 0.00283757 0)
(-0.0412277 0.002533 0)
(-0.0414568 0.00221905 0)
(-0.0416594 0.00189563 0)
(-0.0418347 0.00156267 0)
(-0.0419819 0.00122009 0)
(-0.0421001 0.000867871 0)
(-0.0421885 0.000505972 0)
(-0.0422461 0.000134388 0)
(-0.0422722 -0.000246859 0)
(-0.0422658 -0.000637708 0)
(-0.042226 -0.00103807 0)
(-0.0421519 -0.00144783 0)
(-0.0420428 -0.00186686 0)
(-0.0418976 -0.00229497 0)
(-0.0417155 -0.00273196 0)
(-0.0414957 -0.00317757 0)
(-0.0412372 -0.00363152 0)
(-0.0409392 -0.00409351 0)
(-0.0406008 -0.00456317 0)
(-0.0402214 -0.00504012 0)
(-0.0397999 -0.00552393 0)
(-0.0393357 -0.00601418 0)
(-0.038828 -0.00651045 0)
(-0.0382761 -0.00701231 0)
(-0.0376791 -0.00751938 0)
(-0.0370366 -0.00803131 0)
(-0.0363477 -0.00854778 0)
(-0.035612 -0.00906849 0)
(-0.0348288 -0.00959314 0)
(-0.0339978 -0.0101213 0)
(-0.0331186 -0.0106525 0)
(-0.032191 -0.0111859 0)
(-0.031215 -0.0117202 0)
(-0.0301907 -0.0122533 0)
(-0.029118 -0.0127815 0)
(-0.0279985 -0.0132978 0)
(-0.0268417 -0.0137906 0)
(-8.80508e-05 0.00399552 0)
(-0.00059009 0.00747649 0)
(-0.00128728 0.00896278 0)
(-0.00205857 0.00958189 0)
(-0.00285914 0.00983306 0)
(-0.00367164 0.00993052 0)
(-0.00448877 0.00996349 0)
(-0.00530737 0.00996845 0)
(-0.00612603 0.00996027 0)
(-0.00694403 0.0099451 0)
(-0.00776092 0.0099255 0)
(-0.00857637 0.00990255 0)
(-0.0093901 0.00987671 0)
(-0.0102019 0.00984814 0)
(-0.0110114 0.0098169 0)
(-0.0118185 0.00978295 0)
(-0.0126228 0.00974624 0)
(-0.0134243 0.00970669 0)
(-0.0142225 0.00966422 0)
(-0.0150174 0.00961874 0)
(-0.0158086 0.00957016 0)
(-0.016596 0.00951837 0)
(-0.0173792 0.00946329 0)
(-0.018158 0.00940482 0)
(-0.0189321 0.00934286 0)
(-0.0197013 0.00927731 0)
(-0.0204653 0.00920807 0)
(-0.0212238 0.00913502 0)
(-0.0219765 0.00905805 0)
(-0.022723 0.00897704 0)
(-0.023463 0.00889185 0)
(-0.0241961 0.00880235 0)
(-0.0249221 0.0087084 0)
(-0.0256405 0.00860984 0)
(-0.026351 0.00850651 0)
(-0.0270532 0.00839824 0)
(-0.0277467 0.00828486 0)
(-0.0284311 0.00816621 0)
(-0.029106 0.00804209 0)
(-0.0297709 0.00791235 0)
(-0.0304255 0.00777682 0)
(-0.0310693 0.00763531 0)
(-0.0317018 0.00748767 0)
(-0.0323226 0.00733372 0)
(-0.0329311 0.00717329 0)
(-0.0335269 0.00700618 0)
(-0.0341095 0.00683224 0)
(-0.0346782 0.00665127 0)
(-0.0352325 0.0064631 0)
(-0.0357718 0.00626755 0)
(-0.0362955 0.00606443 0)
(-0.0368031 0.00585355 0)
(-0.0372939 0.00563475 0)
(-0.0377672 0.00540783 0)
(-0.0382223 0.00517263 0)
(-0.0386587 0.00492896 0)
(-0.0390755 0.00467667 0)
(-0.0394722 0.00441556 0)
(-0.0398479 0.00414548 0)
(-0.0402019 0.00386627 0)
(-0.0405334 0.00357777 0)
(-0.0408418 0.00327984 0)
(-0.0411261 0.00297234 0)
(-0.0413856 0.00265517 0)
(-0.0416196 0.0023282 0)
(-0.0418271 0.00199134 0)
(-0.0420073 0.00164452 0)
(-0.0421595 0.00128767 0)
(-0.0422826 0.000920737 0)
(-0.042376 0.000543698 0)
(-0.0424386 0.000156542 0)
(-0.0424695 -0.000240721 0)
(-0.042468 -0.000648028 0)
(-0.0424331 -0.0010653 0)
(-0.0423638 -0.00149242 0)
(-0.0422594 -0.00192926 0)
(-0.0421188 -0.00237564 0)
(-0.0419412 -0.00283133 0)
(-0.0417257 -0.00329608 0)
(-0.0414714 -0.00376961 0)
(-0.0411775 -0.0042516 0)
(-0.040843 -0.00474169 0)
(-0.0404671 -0.00523947 0)
(-0.040049 -0.00574453 0)
(-0.0395879 -0.00625642 0)
(-0.039083 -0.00677471 0)
(-0.0385336 -0.00729897 0)
(-0.0379387 -0.00782879 0)
(-0.0372979 -0.0083638 0)
(-0.0366104 -0.00890366 0)
(-0.0358755 -0.00944805 0)
(-0.0350929 -0.00999662 0)
(-0.0342618 -0.0105489 0)
(-0.0333822 -0.0111044 0)
(-0.0324536 -0.0116621 0)
(-0.0314761 -0.0122207 0)
(-0.0304498 -0.012778 0)
(-0.0293746 -0.0133301 0)
(-0.0282521 -0.0138697 0)
(-0.027092 -0.0143846 0)
(-8.80715e-05 0.00415889 0)
(-0.000590657 0.00778279 0)
(-0.00128879 0.00933029 0)
(-0.0020612 0.009975 0)
(-0.00286297 0.0102366 0)
(-0.00367669 0.0103383 0)
(-0.00449505 0.0103727 0)
(-0.00531489 0.0103781 0)
(-0.0061348 0.0103698 0)
(-0.00695405 0.0103541 0)
(-0.00777219 0.0103339 0)
(-0.00858891 0.0103102 0)
(-0.00940392 0.0102834 0)
(-0.010217 0.0102538 0)
(-0.0110279 0.0102214 0)
(-0.0118363 0.0101862 0)
(-0.0126421 0.0101481 0)
(-0.013445 0.010107 0)
(-0.0142448 0.0100629 0)
(-0.0150412 0.0100157 0)
(-0.0158341 0.00996521 0)
(-0.016623 0.00991143 0)
(-0.0174079 0.00985424 0)
(-0.0181885 0.00979352 0)
(-0.0189644 0.00972917 0)
(-0.0197355 0.0096611 0)
(-0.0205014 0.00958918 0)
(-0.0212619 0.0095133 0)
(-0.0220165 0.00943335 0)
(-0.0227651 0.00934918 0)
(-0.0235073 0.00926068 0)
(-0.0242427 0.00916769 0)
(-0.024971 0.00907007 0)
(-0.0256918 0.00896765 0)
(-0.0264047 0.00886028 0)
(-0.0271095 0.00874779 0)
(-0.0278056 0.00862999 0)
(-0.0284927 0.0085067 0)
(-0.0291704 0.00837775 0)
(-0.0298383 0.00824296 0)
(-0.0304959 0.00810216 0)
(-0.0311427 0.00795517 0)
(-0.0317784 0.0078018 0)
(-0.0324025 0.00764188 0)
(-0.0330144 0.00747521 0)
(-0.0336136 0.00730162 0)
(-0.0341997 0.00712092 0)
(-0.034772 0.00693292 0)
(-0.03533 0.00673744 0)
(-0.0358732 0.00653427 0)
(-0.0364009 0.00632324 0)
(-0.0369124 0.00610414 0)
(-0.0374073 0.00587679 0)
(-0.0378848 0.005641 0)
(-0.0383442 0.00539658 0)
(-0.038785 0.00514336 0)
(-0.0392063 0.00488115 0)
(-0.0396075 0.00460978 0)
(-0.0399878 0.00432906 0)
(-0.0403465 0.00403884 0)
(-0.0406829 0.00373895 0)
(-0.0409961 0.00342923 0)
(-0.0412854 0.00310956 0)
(-0.0415499 0.00277979 0)
(-0.0417889 0.00243983 0)
(-0.0420015 0.00208956 0)
(-0.0421869 0.00172889 0)
(-0.0423442 0.00135777 0)
(-0.0424725 0.000976131 0)
(-0.042571 0.000583953 0)
(-0.0426388 0.000181219 0)
(-0.0426749 -0.000232069 0)
(-0.0426785 -0.000655856 0)
(-0.0426487 -0.00109007 0)
(-0.0425844 -0.0015346 0)
(-0.0424849 -0.0019893 0)
(-0.0423492 -0.00245399 0)
(-0.0421763 -0.00292844 0)
(-0.0419654 -0.0034124 0)
(-0.0417156 -0.00390559 0)
(-0.0414259 -0.00440768 0)
(-0.0410954 -0.00491829 0)
(-0.0407234 -0.00543703 0)
(-0.0403089 -0.00596347 0)
(-0.0398511 -0.00649715 0)
(-0.0393491 -0.00703762 0)
(-0.0388023 -0.00758444 0)
(-0.0382098 -0.00813719 0)
(-0.0375709 -0.00869548 0)
(-0.0368848 -0.00925895 0)
(-0.0361511 -0.00982724 0)
(-0.035369 -0.0104 0)
(-0.0345381 -0.0109766 0)
(-0.033658 -0.0115566 0)
(-0.0327285 -0.0121389 0)
(-0.0317495 -0.0127221 0)
(-0.0307212 -0.0133038 0)
(-0.0296435 -0.01388 0)
(-0.0285178 -0.0144432 0)
(-0.0273541 -0.0149805 0)
(-8.80884e-05 0.0043224 0)
(-0.000591224 0.0080895 0)
(-0.00129033 0.00969834 0)
(-0.00206388 0.0103687 0)
(-0.00286687 0.0106408 0)
(-0.00368186 0.0107466 0)
(-0.0045015 0.0107826 0)
(-0.00532263 0.0107884 0)
(-0.00614382 0.0107799 0)
(-0.00696436 0.0107638 0)
(-0.00778381 0.010743 0)
(-0.00860185 0.0107184 0)
(-0.00941821 0.0106908 0)
(-0.0102327 0.0106602 0)
(-0.0110449 0.0106266 0)
(-0.0118548 0.0105901 0)
(-0.0126621 0.0105506 0)
(-0.0134665 0.0105081 0)
(-0.0142679 0.0104624 0)
(-0.0150659 0.0104134 0)
(-0.0158604 0.0103611 0)
(-0.0166511 0.0103054 0)
(-0.0174377 0.0102461 0)
(-0.0182201 0.0101831 0)
(-0.0189979 0.0101164 0)
(-0.0197709 0.0100458 0)
(-0.0205388 0.00997127 0)
(-0.0213013 0.0098926 0)
(-0.022058 0.0098097 0)
(-0.0228088 0.00972242 0)
(-0.0235532 0.00963063 0)
(-0.0242909 0.00953419 0)
(-0.0250216 0.00943294 0)
(-0.0257449 0.00932671 0)
(-0.0264604 0.00921534 0)
(-0.0271678 0.00909866 0)
(-0.0278667 0.00897647 0)
(-0.0285566 0.0088486 0)
(-0.0292372 0.00871487 0)
(-0.0299081 0.00857508 0)
(-0.0305688 0.00842906 0)
(-0.0312189 0.00827662 0)
(-0.0318579 0.00811758 0)
(-0.0324853 0.00795173 0)
(-0.0331007 0.00777888 0)
(-0.0337035 0.00759885 0)
(-0.0342932 0.00741144 0)
(-0.0348693 0.00721645 0)
(-0.0354312 0.0070137 0)
(-0.0359783 0.00680297 0)
(-0.0365101 0.00658407 0)
(-0.0370258 0.0063568 0)
(-0.0375249 0.00612094 0)
(-0.0380068 0.00587632 0)
(-0.0384707 0.00562274 0)
(-0.038916 0.00536001 0)
(-0.039342 0.00508794 0)
(-0.0397479 0.00480634 0)
(-0.040133 0.00451503 0)
(-0.0404967 0.00421384 0)
(-0.040838 0.00390259 0)
(-0.0411563 0.00358112 0)
(-0.0414508 0.0032493 0)
(-0.0417205 0.00290698 0)
(-0.0419648 0.00255404 0)
(-0.0421827 0.00219037 0)
(-0.0423734 0.00181588 0)
(-0.0425361 0.00143049 0)
(-0.0426698 0.00103416 0)
(-0.0427737 0.000626851 0)
(-0.0428469 0.00020853 0)
(-0.0428884 -0.000220799 0)
(-0.0428974 -0.000661093 0)
(-0.0428728 -0.00111228 0)
(-0.0428139 -0.00157425 0)
(-0.0427195 -0.00204686 0)
(-0.0425889 -0.00252991 0)
(-0.042421 -0.00302318 0)
(-0.0422149 -0.00352643 0)
(-0.0419697 -0.00403936 0)
(-0.0416844 -0.00456164 0)
(-0.0413583 -0.00509289 0)
(-0.0409903 -0.00563271 0)
(-0.0405795 -0.00618065 0)
(-0.0401252 -0.00673627 0)
(-0.0396265 -0.00729908 0)
(-0.0390825 -0.00786863 0)
(-0.0384925 -0.0084445 0)
(-0.0378556 -0.00902628 0)
(-0.0371713 -0.00961357 0)
(-0.0364387 -0.010206 0)
(-0.0356573 -0.0108031 0)
(-0.0348267 -0.0114044 0)
(-0.0339463 -0.0120092 0)
(-0.0330159 -0.0126163 0)
(-0.0320355 -0.0132244 0)
(-0.0310052 -0.0138308 0)
(-0.0299247 -0.0144315 0)
(-0.0287958 -0.0150184 0)
(-0.0276284 -0.0155785 0)
(-8.81011e-05 0.00448607 0)
(-0.000591791 0.00839662 0)
(-0.00129189 0.0100669 0)
(-0.00206661 0.010763 0)
(-0.00287087 0.0110457 0)
(-0.00368716 0.0111556 0)
(-0.00450811 0.0111932 0)
(-0.00533057 0.0111993 0)
(-0.0061531 0.0111907 0)
(-0.00697498 0.0111742 0)
(-0.00779579 0.0111527 0)
(-0.0086152 0.0111274 0)
(-0.00943296 0.0110989 0)
(-0.0102488 0.0110672 0)
(-0.0110626 0.0110325 0)
(-0.011874 0.0109948 0)
(-0.0126828 0.010954 0)
(-0.0134888 0.0109099 0)
(-0.0142917 0.0108626 0)
(-0.0150914 0.010812 0)
(-0.0158876 0.0107578 0)
(-0.0166801 0.0107002 0)
(-0.0174685 0.0106388 0)
(-0.0182528 0.0105737 0)
(-0.0190325 0.0105046 0)
(-0.0198075 0.0104316 0)
(-0.0205774 0.0103544 0)
(-0.021342 0.010273 0)
(-0.022101 0.0101871 0)
(-0.022854 0.0100968 0)
(-0.0236007 0.0100018 0)
(-0.0243409 0.0099019 0)
(-0.025074 0.00979706 0)
(-0.0257999 0.00968706 0)
(-0.0265181 0.00957174 0)
(-0.0272282 0.0094509 0)
(-0.0279299 0.00932438 0)
(-0.0286228 0.00919197 0)
(-0.0293064 0.0090535 0)
(-0.0299804 0.00890877 0)
(-0.0306443 0.00875758 0)
(-0.0312977 0.00859975 0)
(-0.0319401 0.00843506 0)
(-0.032571 0.00826333 0)
(-0.03319 0.00808434 0)
(-0.0337966 0.00789792 0)
(-0.0343901 0.00770384 0)
(-0.0349701 0.00750192 0)
(-0.035536 0.00729195 0)
(-0.0360872 0.00707371 0)
(-0.0366232 0.00684699 0)
(-0.0371433 0.00661159 0)
(-0.0376468 0.00636729 0)
(-0.0381332 0.00611389 0)
(-0.0386017 0.00585119 0)
(-0.0390518 0.005579 0)
(-0.0394826 0.00529711 0)
(-0.0398934 0.00500534 0)
(-0.0402836 0.00470348 0)
(-0.0406523 0.00439136 0)
(-0.0409989 0.00406879 0)
(-0.0413225 0.00373561 0)
(-0.0416223 0.00339167 0)
(-0.0418974 0.00303682 0)
(-0.0421472 0.00267093 0)
(-0.0423706 0.00229388 0)
(-0.0425669 0.00190559 0)
(-0.0427352 0.00150597 0)
(-0.0428745 0.00109495 0)
(-0.0429841 0.000672503 0)
(-0.0430629 0.000238587 0)
(-0.04311 -0.000206805 0)
(-0.0431246 -0.000663631 0)
(-0.0431056 -0.00113182 0)
(-0.0430521 -0.00161127 0)
(-0.0429632 -0.00210181 0)
(-0.0428378 -0.00260327 0)
(-0.0426751 -0.00311543 0)
(-0.0424741 -0.00363803 0)
(-0.0422338 -0.00417079 0)
(-0.0419533 -0.00471336 0)
(-0.0416316 -0.00526537 0)
(-0.0412679 -0.00582638 0)
(-0.0408612 -0.00639597 0)
(-0.0404106 -0.00697365 0)
(-0.0399152 -0.00755896 0)
(-0.0393743 -0.00815143 0)
(-0.0387869 -0.00875062 0)
(-0.0381523 -0.00935609 0)
(-0.0374698 -0.00996743 0)
(-0.0367386 -0.0105842 0)
(-0.0359581 -0.011206 0)
(-0.0351278 -0.0118322 0)
(-0.0342472 -0.012462 0)
(-0.0333161 -0.0130943 0)
(-0.0323342 -0.0137276 0)
(-0.0313018 -0.0143591 0)
(-0.0302186 -0.0149844 0)
(-0.0290862 -0.0155954 0)
(-0.027915 -0.0161785 0)
(-8.81098e-05 0.00464988 0)
(-0.000592359 0.00870413 0)
(-0.00129348 0.0104361 0)
(-0.00206939 0.0111579 0)
(-0.00287495 0.0114511 0)
(-0.00369258 0.0115653 0)
(-0.0045149 0.0116044 0)
(-0.00533872 0.0116109 0)
(-0.00616263 0.0116021 0)
(-0.0069859 0.0115852 0)
(-0.00780812 0.0115631 0)
(-0.00862896 0.0115371 0)
(-0.00944817 0.0115076 0)
(-0.0102655 0.011475 0)
(-0.0110808 0.0114392 0)
(-0.0118937 0.0114003 0)
(-0.0127041 0.0113581 0)
(-0.0135117 0.0113126 0)
(-0.0143163 0.0112637 0)
(-0.0151178 0.0112114 0)
(-0.0159157 0.0111555 0)
(-0.01671 0.0110959 0)
(-0.0175004 0.0110325 0)
(-0.0182866 0.0109652 0)
(-0.0190683 0.0108938 0)
(-0.0198453 0.0108183 0)
(-0.0206174 0.0107386 0)
(-0.0213842 0.0106544 0)
(-0.0221454 0.0105657 0)
(-0.0229007 0.0104723 0)
(-0.0236499 0.0103741 0)
(-0.0243925 0.0102709 0)
(-0.0251282 0.0101625 0)
(-0.0258567 0.0100487 0)
(-0.0265776 0.00992951 0)
(-0.0272906 0.00980458 0)
(-0.0279952 0.00967376 0)
(-0.0286912 0.00953687 0)
(-0.0293779 0.0093937 0)
(-0.0300551 0.00924407 0)
(-0.0307224 0.00908776 0)
(-0.0313792 0.00892457 0)
(-0.0320251 0.0087543 0)
(-0.0326597 0.00857673 0)
(-0.0332824 0.00839166 0)
(-0.0338928 0.00819889 0)
(-0.0344903 0.00799821 0)
(-0.0350743 0.00778941 0)
(-0.0356444 0.00757227 0)
(-0.0361999 0.00734656 0)
(-0.0367402 0.00711208 0)
(-0.0372648 0.00686859 0)
(-0.0377729 0.00661589 0)
(-0.038264 0.00635377 0)
(-0.0387373 0.00608202 0)
(-0.0391923 0.00580042 0)
(-0.0396281 0.00550877 0)
(-0.0400441 0.00520686 0)
(-0.0404394 0.0048945 0)
(-0.0408135 0.00457149 0)
(-0.0411654 0.00423764 0)
(-0.0414945 0.00389278 0)
(-0.0417998 0.00353676 0)
(-0.0420806 0.00316941 0)
(-0.0423361 0.00279061 0)
(-0.0425653 0.00240023 0)
(-0.0427674 0.00199816 0)
(-0.0429415 0.00158431 0)
(-0.0430867 0.00115862 0)
(-0.0432021 0.000721026 0)
(-0.0432868 0.000271505 0)
(-0.0433398 -0.000189964 0)
(-0.0433602 -0.000663341 0)
(-0.043347 -0.00114856 0)
(-0.0432993 -0.0016455 0)
(-0.043216 -0.00215402 0)
(-0.0430962 -0.00267394 0)
(-0.0429389 -0.00320505 0)
(-0.0427432 -0.0037471 0)
(-0.042508 -0.00429977 0)
(-0.0422325 -0.00486273 0)
(-0.0419155 -0.00543559 0)
(-0.0415563 -0.00601792 0)
(-0.0411538 -0.00660928 0)
(-0.0407072 -0.00720918 0)
(-0.0402154 -0.00781716 0)
(-0.0396778 -0.00843274 0)
(-0.0390933 -0.00905545 0)
(-0.0384612 -0.00968483 0)
(-0.0377807 -0.0103204 0)
(-0.037051 -0.0109618 0)
(-0.0362716 -0.0116085 0)
(-0.0354417 -0.0122599 0)
(-0.034561 -0.0129151 0)
(-0.0336291 -0.0135729 0)
(-0.0326458 -0.0142316 0)
(-0.0316113 -0.0148885 0)
(-0.0305252 -0.0155389 0)
(-0.0293893 -0.0161743 0)
(-0.028214 -0.0167806 0)
(-8.81154e-05 0.00481384 0)
(-0.00059293 0.00901205 0)
(-0.00129508 0.0108058 0)
(-0.00207223 0.0115535 0)
(-0.00287911 0.0118573 0)
(-0.00369812 0.0119757 0)
(-0.00452184 0.0120163 0)
(-0.00534708 0.0120232 0)
(-0.00617242 0.0120143 0)
(-0.00699713 0.0119969 0)
(-0.0078208 0.0119742 0)
(-0.00864312 0.0119475 0)
(-0.00946384 0.0119172 0)
(-0.0102827 0.0118835 0)
(-0.0110995 0.0118467 0)
(-0.0119141 0.0118065 0)
(-0.0127261 0.011763 0)
(-0.0135354 0.0117161 0)
(-0.0143418 0.0116657 0)
(-0.015145 0.0116117 0)
(-0.0159448 0.011554 0)
(-0.0167409 0.0114925 0)
(-0.0175332 0.0114271 0)
(-0.0183214 0.0113577 0)
(-0.0191052 0.011284 0)
(-0.0198844 0.0112062 0)
(-0.0206586 0.0111238 0)
(-0.0214277 0.011037 0)
(-0.0221912 0.0109455 0)
(-0.022949 0.0108491 0)
(-0.0237006 0.0107477 0)
(-0.0244458 0.0106411 0)
(-0.0251841 0.0105292 0)
(-0.0259154 0.0104118 0)
(-0.0266392 0.0102887 0)
(-0.0273551 0.0101597 0)
(-0.0280627 0.0100247 0)
(-0.0287618 0.00988333 0)
(-0.0294518 0.00973552 0)
(-0.0301323 0.00958103 0)
(-0.030803 0.00941965 0)
(-0.0314633 0.00925115 0)
(-0.0321129 0.00907534 0)
(-0.0327512 0.00889199 0)
(-0.0333778 0.0087009 0)
(-0.0339922 0.00850184 0)
(-0.0345937 0.00829461 0)
(-0.035182 0.00807898 0)
(-0.0357563 0.00785472 0)
(-0.0363163 0.0076216 0)
(-0.0368611 0.0073794 0)
(-0.0373903 0.00712789 0)
(-0.0379032 0.00686685 0)
(-0.0383992 0.00659606 0)
(-0.0388775 0.00631531 0)
(-0.0393375 0.00602436 0)
(-0.0397785 0.005723 0)
(-0.0401998 0.00541101 0)
(-0.0406006 0.00508819 0)
(-0.0409801 0.00475433 0)
(-0.0413377 0.00440924 0)
(-0.0416724 0.00405275 0)
(-0.0419835 0.00368469 0)
(-0.0422702 0.00330489 0)
(-0.0425315 0.00291321 0)
(-0.0427667 0.00250952 0)
(-0.0429748 0.0020937 0)
(-0.043155 0.00166564 0)
(-0.0433063 0.00122527 0)
(-0.0434278 0.000772543 0)
(-0.0435187 0.000307411 0)
(-0.0435778 -0.00017014 0)
(-0.0436043 -0.000660078 0)
(-0.0435971 -0.00116234 0)
(-0.0435553 -0.00167681 0)
(-0.043478 -0.00220335 0)
(-0.043364 -0.00274179 0)
(-0.0432124 -0.00329193 0)
(-0.0430222 -0.00385348 0)
(-0.0427925 -0.00442616 0)
(-0.0425221 -0.0050096 0)
(-0.0422102 -0.00560342 0)
(-0.0418557 -0.0062072 0)
(-0.0414577 -0.00682046 0)
(-0.0410152 -0.00744275 0)
(-0.0405273 -0.00807358 0)
(-0.0399931 -0.00871245 0)
(-0.0394117 -0.00935888 0)
(-0.0387823 -0.0100124 0)
(-0.038104 -0.0106725 0)
(-0.0373761 -0.0113388 0)
(-0.0365978 -0.0120106 0)
(-0.0357686 -0.0126874 0)
(-0.0348879 -0.0133683 0)
(-0.0339553 -0.014052 0)
(-0.0329706 -0.0147366 0)
(-0.0319338 -0.0154192 0)
(-0.0308448 -0.0160951 0)
(-0.0297052 -0.0167552 0)
(-0.0285256 -0.017385 0)
(-8.8119e-05 0.00497794 0)
(-0.000593505 0.00932038 0)
(-0.00129672 0.011176 0)
(-0.00207512 0.0119496 0)
(-0.00288336 0.0122641 0)
(-0.00370379 0.0123867 0)
(-0.00452895 0.0124289 0)
(-0.00535565 0.0124362 0)
(-0.00618246 0.0124272 0)
(-0.00700866 0.0124094 0)
(-0.00783384 0.0123861 0)
(-0.00865769 0.0123586 0)
(-0.00947995 0.0123274 0)
(-0.0103004 0.0122929 0)
(-0.0111188 0.0122549 0)
(-0.011935 0.0122136 0)
(-0.0127487 0.0121688 0)
(-0.0135598 0.0121205 0)
(-0.0143679 0.0120686 0)
(-0.015173 0.012013 0)
(-0.0159747 0.0119535 0)
(-0.0167728 0.0118902 0)
(-0.0175671 0.0118228 0)
(-0.0183573 0.0117512 0)
(-0.0191432 0.0116753 0)
(-0.0199246 0.0115951 0)
(-0.0207011 0.0115103 0)
(-0.0214725 0.0114207 0)
(-0.0222384 0.0113264 0)
(-0.0229987 0.0112271 0)
(-0.0237529 0.0111225 0)
(-0.0245007 0.0110127 0)
(-0.0252418 0.0108973 0)
(-0.0259759 0.0107763 0)
(-0.0267026 0.0106494 0)
(-0.0274215 0.0105164 0)
(-0.0281323 0.0103771 0)
(-0.0288346 0.0102314 0)
(-0.0295279 0.010079 0)
(-0.0302119 0.00991969 0)
(-0.0308861 0.00975328 0)
(-0.0315501 0.00957953 0)
(-0.0322034 0.00939824 0)
(-0.0328456 0.00920917 0)
(-0.0334762 0.0090121 0)
(-0.0340947 0.00880682 0)
(-0.0347004 0.0085931 0)
(-0.035293 0.00837069 0)
(-0.0358718 0.00813937 0)
(-0.0364363 0.00789889 0)
(-0.0369858 0.00764904 0)
(-0.0375198 0.00738957 0)
(-0.0380377 0.00712025 0)
(-0.0385386 0.00684086 0)
(-0.0390221 0.00655116 0)
(-0.0394874 0.00625091 0)
(-0.0399338 0.00593989 0)
(-0.0403605 0.00561787 0)
(-0.0407669 0.00528464 0)
(-0.0411522 0.00493999 0)
(-0.0415155 0.00458372 0)
(-0.0418562 0.00421565 0)
(-0.0421733 0.00383559 0)
(-0.042466 0.00344338 0)
(-0.0427335 0.00303886 0)
(-0.0429749 0.00262188 0)
(-0.0431892 0.00219232 0)
(-0.0433757 0.00175007 0)
(-0.0435334 0.00129504 0)
(-0.0436613 0.000827186 0)
(-0.0437585 0.00034645 0)
(-0.0438239 -0.000147186 0)
(-0.0438568 -0.000653697 0)
(-0.0438559 -0.00117302 0)
(-0.0438204 -0.00170505 0)
(-0.0437492 -0.00224967 0)
(-0.0436413 -0.00280669 0)
(-0.0434957 -0.00337591 0)
(-0.0433113 -0.00395705 0)
(-0.0430872 -0.00454982 0)
(-0.0428223 -0.00515385 0)
(-0.0425156 -0.00576875 0)
(-0.0421661 -0.00639409 0)
(-0.0417728 -0.00702942 0)
(-0.0413347 -0.00767426 0)
(-0.0408509 -0.00832811 0)
(-0.0403205 -0.00899046 0)
(-0.0397424 -0.0096608 0)
(-0.0391159 -0.0103386 0)
(-0.03844 -0.0110235 0)
(-0.037714 -0.0117149 0)
(-0.0369371 -0.0124123 0)
(-0.0361086 -0.0131149 0)
(-0.0352279 -0.0138218 0)
(-0.0342947 -0.0145316 0)
(-0.0333086 -0.0152425 0)
(-0.0322697 -0.0159513 0)
(-0.0311775 -0.0166529 0)
(-0.030034 -0.0173382 0)
(-0.02885 -0.0179918 0)
(-8.81213e-05 0.00514217 0)
(-0.000594083 0.00962911 0)
(-0.00129837 0.0115468 0)
(-0.00207805 0.0123465 0)
(-0.0028877 0.0126716 0)
(-0.00370957 0.0127985 0)
(-0.00453622 0.0128422 0)
(-0.00536443 0.01285 0)
(-0.00619275 0.0128408 0)
(-0.00702049 0.0128226 0)
(-0.00784722 0.0127987 0)
(-0.00867264 0.0127705 0)
(-0.00949651 0.0127385 0)
(-0.0103186 0.012703 0)
(-0.0111387 0.012664 0)
(-0.0119566 0.0126215 0)
(-0.012772 0.0125754 0)
(-0.0135849 0.0125258 0)
(-0.0143949 0.0124724 0)
(-0.0152018 0.0124151 0)
(-0.0160054 0.012354 0)
(-0.0168055 0.0122888 0)
(-0.0176019 0.0122194 0)
(-0.0183943 0.0121458 0)
(-0.0191824 0.0120677 0)
(-0.019966 0.0119851 0)
(-0.0207448 0.0118978 0)
(-0.0215186 0.0118057 0)
(-0.022287 0.0117086 0)
(-0.0230498 0.0116063 0)
(-0.0238067 0.0114987 0)
(-0.0245572 0.0113856 0)
(-0.0253012 0.0112669 0)
(-0.0260382 0.0111422 0)
(-0.0267679 0.0110116 0)
(-0.0274899 0.0108746 0)
(-0.0282039 0.0107312 0)
(-0.0289095 0.0105811 0)
(-0.0296063 0.0104242 0)
(-0.0302938 0.0102601 0)
(-0.0309717 0.0100887 0)
(-0.0316395 0.00990978 0)
(-0.0322967 0.00972305 0)
(-0.0329429 0.00952832 0)
(-0.0335776 0.00932535 0)
(-0.0342002 0.00911391 0)
(-0.0348104 0.00889374 0)
(-0.0354074 0.00866462 0)
(-0.0359908 0.0084263 0)
(-0.03656 0.00817854 0)
(-0.0371144 0.00792109 0)
(-0.0376533 0.00765373 0)
(-0.0381762 0.0073762 0)
(-0.0386824 0.00708826 0)
(-0.0391712 0.00678966 0)
(-0.0396419 0.00648017 0)
(-0.0400939 0.00615954 0)
(-0.0405263 0.00582755 0)
(-0.0409385 0.00548397 0)
(-0.0413297 0.00512858 0)
(-0.0416991 0.00476119 0)
(-0.0420458 0.00438159 0)
(-0.0423691 0.00398959 0)
(-0.0426681 0.003585 0)
(-0.0429419 0.00316767 0)
(-0.0431898 0.00273743 0)
(-0.0434106 0.00229415 0)
(-0.0436037 0.00183772 0)
(-0.0437679 0.00136806 0)
(-0.0439024 0.000885091 0)
(-0.0440062 0.000388759 0)
(-0.0440783 -0.00012097 0)
(-0.0441177 -0.000644068 0)
(-0.0441235 -0.00118048 0)
(-0.0440944 -0.00173012 0)
(-0.0440297 -0.00229285 0)
(-0.0439281 -0.00286851 0)
(-0.0437887 -0.00345687 0)
(-0.0436104 -0.00405768 0)
(-0.0433922 -0.00467062 0)
(-0.0431331 -0.00529534 0)
(-0.0428319 -0.00593144 0)
(-0.0424876 -0.0065785 0)
(-0.0420993 -0.00723605 0)
(-0.0416659 -0.00790361 0)
(-0.0411865 -0.00858065 0)
(-0.04066 -0.00926666 0)
(-0.0400855 -0.00996113 0)
(-0.039462 -0.0106635 0)
(-0.0387888 -0.0113734 0)
(-0.0380648 -0.0120902 0)
(-0.0372895 -0.0128133 0)
(-0.0364619 -0.0135421 0)
(-0.0355814 -0.0142753 0)
(-0.0346476 -0.0150118 0)
(-0.0336602 -0.0157492 0)
(-0.032619 -0.0164846 0)
(-0.0315236 -0.0172126 0)
(-0.030376 -0.0179233 0)
(-0.0291872 -0.018601 0)
(-8.81223e-05 0.00530653 0)
(-0.000594664 0.00993825 0)
(-0.00130004 0.0119182 0)
(-0.00208103 0.012744 0)
(-0.00289211 0.0130798 0)
(-0.00371548 0.013211 0)
(-0.00454365 0.0132563 0)
(-0.0053734 0.0132645 0)
(-0.0062033 0.0132552 0)
(-0.00703262 0.0132367 0)
(-0.00786095 0.0132122 0)
(-0.00868799 0.0131832 0)
(-0.0095135 0.0131504 0)
(-0.0103373 0.013114 0)
(-0.0111591 0.0130739 0)
(-0.0119787 0.0130303 0)
(-0.012796 0.012983 0)
(-0.0136106 0.0129319 0)
(-0.0144225 0.0128771 0)
(-0.0152314 0.0128183 0)
(-0.016037 0.0127554 0)
(-0.0168392 0.0126884 0)
(-0.0176377 0.0126172 0)
(-0.0184323 0.0125415 0)
(-0.0192226 0.0124612 0)
(-0.0200086 0.0123763 0)
(-0.0207898 0.0122866 0)
(-0.021566 0.0121919 0)
(-0.022337 0.012092 0)
(-0.0231024 0.0119869 0)
(-0.023862 0.0118762 0)
(-0.0246154 0.01176 0)
(-0.0253622 0.0116378 0)
(-0.0261023 0.0115097 0)
(-0.0268351 0.0113753 0)
(-0.0275603 0.0112344 0)
(-0.0282776 0.0110869 0)
(-0.0289866 0.0109326 0)
(-0.0296869 0.0107711 0)
(-0.0303781 0.0106023 0)
(-0.0310597 0.010426 0)
(-0.0317314 0.0102419 0)
(-0.0323926 0.0100499 0)
(-0.0330429 0.00984953 0)
(-0.0336819 0.00964071 0)
(-0.0343089 0.00942316 0)
(-0.0349235 0.00919662 0)
(-0.0355251 0.00896086 0)
(-0.0361133 0.0087156 0)
(-0.0366873 0.00846062 0)
(-0.0372467 0.00819565 0)
(-0.0377908 0.00792046 0)
(-0.0383189 0.00763477 0)
(-0.0388305 0.00733834 0)
(-0.0393248 0.00703091 0)
(-0.0398011 0.00671223 0)
(-0.0402588 0.00638206 0)
(-0.0406972 0.00604015 0)
(-0.0411153 0.00568629 0)
(-0.0415126 0.00532023 0)
(-0.0418882 0.00494177 0)
(-0.0422412 0.00455068 0)
(-0.0425709 0.00414677 0)
(-0.0428765 0.00372985 0)
(-0.0431569 0.00329973 0)
(-0.0434114 0.00285626 0)
(-0.043639 0.0023993 0)
(-0.0438388 0.00192873 0)
(-0.0440099 0.00144445 0)
(-0.0441513 0.000946381 0)
(-0.044262 0.000434453 0)
(-0.0443409 -9.13694e-05 0)
(-0.0443872 -0.000631071 0)
(-0.0443998 -0.0011846 0)
(-0.0443776 -0.00175188 0)
(-0.0443195 -0.00233277 0)
(-0.0442246 -0.00292711 0)
(-0.0440917 -0.00353469 0)
(-0.0439198 -0.00415524 0)
(-0.0437077 -0.00478845 0)
(-0.0434545 -0.00543397 0)
(-0.0431591 -0.00609139 0)
(-0.0428204 -0.0067603 0)
(-0.0424374 -0.00744022 0)
(-0.0420089 -0.00813066 0)
(-0.0415341 -0.00883107 0)
(-0.0410118 -0.00954094 0)
(-0.0404411 -0.0102597 0)
(-0.0398209 -0.010987 0)
(-0.0391505 -0.0117221 0)
(-0.0384289 -0.0124646 0)
(-0.0376552 -0.0132138 0)
(-0.0368287 -0.013969 0)
(-0.0359485 -0.014729 0)
(-0.0350143 -0.0154923 0)
(-0.0340255 -0.0162569 0)
(-0.0329819 -0.0170194 0)
(-0.0318833 -0.0177742 0)
(-0.0307314 -0.0185109 0)
(-0.0295376 -0.0192127 0)
(-8.81212e-05 0.00547102 0)
(-0.000595245 0.0102478 0)
(-0.00130172 0.0122902 0)
(-0.00208405 0.0131422 0)
(-0.00289659 0.0134888 0)
(-0.00372149 0.0136243 0)
(-0.00455123 0.0136712 0)
(-0.00538258 0.0136798 0)
(-0.00621409 0.0136704 0)
(-0.00704504 0.0136515 0)
(-0.00787502 0.0136265 0)
(-0.00870373 0.0135968 0)
(-0.00953093 0.0135632 0)
(-0.0103564 0.0135258 0)
(-0.01118 0.0134847 0)
(-0.0120014 0.0134399 0)
(-0.0128205 0.0133914 0)
(-0.0136371 0.013339 0)
(-0.0144509 0.0132827 0)
(-0.0152618 0.0132224 0)
(-0.0160695 0.0131579 0)
(-0.0168738 0.0130891 0)
(-0.0176745 0.013016 0)
(-0.0184713 0.0129383 0)
(-0.019264 0.0128559 0)
(-0.0200523 0.0127687 0)
(-0.020836 0.0126765 0)
(-0.0216147 0.0125793 0)
(-0.0223884 0.0124767 0)
(-0.0231565 0.0123688 0)
(-0.0239188 0.0122551 0)
(-0.0246751 0.0121357 0)
(-0.025425 0.0120103 0)
(-0.0261681 0.0118786 0)
(-0.0269041 0.0117406 0)
(-0.0276326 0.0115959 0)
(-0.0283534 0.0114443 0)
(-0.0290659 0.0112857 0)
(-0.0297698 0.0111198 0)
(-0.0304647 0.0109464 0)
(-0.0311502 0.0107653 0)
(-0.0318259 0.0105761 0)
(-0.0324912 0.0103787 0)
(-0.0331458 0.0101729 0)
(-0.033789 0.00995825 0)
(-0.0344206 0.00973466 0)
(-0.0350398 0.00950182 0)
(-0.0356462 0.00925947 0)
(-0.0362392 0.00900736 0)
(-0.0368183 0.00874523 0)
(-0.0373828 0.00847281 0)
(-0.0379321 0.00818984 0)
(-0.0384657 0.00789605 0)
(-0.0389828 0.00759119 0)
(-0.0394828 0.00727498 0)
(-0.0399649 0.00694718 0)
(-0.0404286 0.00660753 0)
(-0.040873 0.00625579 0)
(-0.0412973 0.0058917 0)
(-0.0417009 0.00551503 0)
(-0.0420829 0.00512555 0)
(-0.0424425 0.00472302 0)
(-0.0427789 0.00430724 0)
(-0.0430911 0.00387802 0)
(-0.0433784 0.00343516 0)
(-0.0436398 0.0029785 0)
(-0.0438744 0.00250789 0)
(-0.0440813 0.00202321 0)
(-0.0442594 0.00152433 0)
(-0.0444079 0.00101117 0)
(-0.0445257 0.000483654 0)
(-0.0446119 -5.82678e-05 0)
(-0.0446653 -0.000614585 0)
(-0.0446849 -0.00118525 0)
(-0.0446698 -0.0017702 0)
(-0.0446187 -0.00236929 0)
(-0.0445307 -0.00298237 0)
(-0.0444046 -0.00360923 0)
(-0.0442393 -0.0042496 0)
(-0.0440337 -0.00490318 0)
(-0.0437868 -0.0055696 0)
(-0.0434975 -0.00624848 0)
(-0.0431646 -0.00693937 0)
(-0.0427871 -0.00764181 0)
(-0.0423638 -0.00835527 0)
(-0.0418938 -0.00907923 0)
(-0.041376 -0.00981316 0)
(-0.0408093 -0.0105565 0)
(-0.0401928 -0.0113088 0)
(-0.0395254 -0.0120694 0)
(-0.0388063 -0.0128379 0)
(-0.0380345 -0.0136135 0)
(-0.0372092 -0.0143954 0)
(-0.0363295 -0.0151826 0)
(-0.0353948 -0.0159733 0)
(-0.0344047 -0.0167655 0)
(-0.0333589 -0.0175556 0)
(-0.0322567 -0.0183377 0)
(-0.0311003 -0.0191008 0)
(-0.0299012 -0.019827 0)
(-8.81168e-05 0.00563566 0)
(-0.00059582 0.0105578 0)
(-0.00130341 0.0126628 0)
(-0.0020871 0.0135411 0)
(-0.00290114 0.0138985 0)
(-0.00372761 0.0140383 0)
(-0.00455897 0.0140869 0)
(-0.00539195 0.014096 0)
(-0.00622512 0.0140865 0)
(-0.00705775 0.0140672 0)
(-0.00788942 0.0140416 0)
(-0.00871984 0.0140112 0)
(-0.00954879 0.0139768 0)
(-0.010376 0.0139385 0)
(-0.0112014 0.0138964 0)
(-0.0120247 0.0138505 0)
(-0.0128457 0.0138008 0)
(-0.0136642 0.0137471 0)
(-0.0144801 0.0136894 0)
(-0.015293 0.0136275 0)
(-0.0161028 0.0135614 0)
(-0.0169093 0.0134909 0)
(-0.0177122 0.0134159 0)
(-0.0185113 0.0133362 0)
(-0.0193064 0.0132517 0)
(-0.0200971 0.0131623 0)
(-0.0208833 0.0130678 0)
(-0.0216647 0.012968 0)
(-0.022441 0.0128628 0)
(-0.0232119 0.0127521 0)
(-0.0239772 0.0126355 0)
(-0.0247364 0.0125129 0)
(-0.0254893 0.0123842 0)
(-0.0262356 0.0122491 0)
(-0.0269749 0.0121075 0)
(-0.0277069 0.011959 0)
(-0.0284311 0.0118035 0)
(-0.0291472 0.0116407 0)
(-0.0298549 0.0114705 0)
(-0.0305537 0.0112925 0)
(-0.0312431 0.0111065 0)
(-0.0319229 0.0109124 0)
(-0.0325924 0.0107097 0)
(-0.0332513 0.0104984 0)
(-0.0338991 0.010278 0)
(-0.0345352 0.0100485 0)
(-0.0351592 0.00980941 0)
(-0.0357705 0.00956055 0)
(-0.0363686 0.00930165 0)
(-0.0369528 0.00903243 0)
(-0.0375226 0.00875261 0)
(-0.0380774 0.00846194 0)
(-0.0386165 0.00816012 0)
(-0.0391394 0.00784689 0)
(-0.0396452 0.00752198 0)
(-0.0401334 0.00718513 0)
(-0.0406031 0.00683607 0)
(-0.0410538 0.00647455 0)
(-0.0414845 0.0061003 0)
(-0.0418946 0.00571307 0)
(-0.0422832 0.00531261 0)
(-0.0426496 0.0048987 0)
(-0.0429928 0.0044711 0)
(-0.043312 0.00402962 0)
(-0.0436064 0.00357407 0)
(-0.0438749 0.00310427 0)
(-0.0441168 0.00262005 0)
(-0.0443309 0.00212128 0)
(-0.0445164 0.00160783 0)
(-0.0446723 0.00107959 0)
(-0.0447975 0.000536483 0)
(-0.0448911 -2.15357e-05 0)
(-0.0449519 -0.000594474 0)
(-0.044979 -0.0011823 0)
(-0.0449712 -0.00178494 0)
(-0.0449274 -0.00240227 0)
(-0.0448465 -0.00303415 0)
(-0.0447275 -0.00368035 0)
(-0.0445691 -0.00434062 0)
(-0.0443704 -0.00501465 0)
(-0.04413 -0.00570209 0)
(-0.043847 -0.00640253 0)
(-0.0435202 -0.00711554 0)
(-0.0431485 -0.00784064 0)
(-0.0427308 -0.0085773 0)
(-0.0422659 -0.009325 0)
(-0.0417528 -0.0100832 0)
(-0.0411904 -0.0108513 0)
(-0.0405777 -0.0116289 0)
(-0.0399136 -0.0124153 0)
(-0.0391973 -0.01321 0)
(-0.0384275 -0.0140124 0)
(-0.0376036 -0.0148214 0)
(-0.0367245 -0.0156361 0)
(-0.0357896 -0.0164548 0)
(-0.0347982 -0.0172751 0)
(-0.03375 -0.0180933 0)
(-0.0326443 -0.0189033 0)
(-0.031483 -0.0196933 0)
(-0.0302784 -0.0204441 0)
(-8.81077e-05 0.00580043 0)
(-0.000596385 0.0108683 0)
(-0.0013051 0.013036 0)
(-0.00209018 0.0139407 0)
(-0.00290575 0.014309 0)
(-0.00373384 0.0144532 0)
(-0.00456686 0.0145034 0)
(-0.00540153 0.0145129 0)
(-0.0062364 0.0145034 0)
(-0.00707075 0.0144837 0)
(-0.00790416 0.0144575 0)
(-0.00873634 0.0144265 0)
(-0.00956708 0.0143913 0)
(-0.0103962 0.0143521 0)
(-0.0112234 0.014309 0)
(-0.0120486 0.0142621 0)
(-0.0128715 0.0142111 0)
(-0.013692 0.0141562 0)
(-0.0145099 0.0140971 0)
(-0.0153249 0.0140337 0)
(-0.0161369 0.013966 0)
(-0.0169456 0.0138938 0)
(-0.0177508 0.0138169 0)
(-0.0185523 0.0137353 0)
(-0.0193498 0.0136488 0)
(-0.0201431 0.0135572 0)
(-0.0209319 0.0134603 0)
(-0.021716 0.0133581 0)
(-0.022495 0.0132503 0)
(-0.0232688 0.0131368 0)
(-0.024037 0.0130173 0)
(-0.0247993 0.0128917 0)
(-0.0255554 0.0127598 0)
(-0.0263049 0.0126213 0)
(-0.0270475 0.0124761 0)
(-0.027783 0.0123239 0)
(-0.0285108 0.0121645 0)
(-0.0292307 0.0119976 0)
(-0.0299421 0.011823 0)
(-0.0306449 0.0116405 0)
(-0.0313384 0.0114499 0)
(-0.0320224 0.0112507 0)
(-0.0326963 0.0110429 0)
(-0.0333597 0.0108262 0)
(-0.034012 0.0106002 0)
(-0.0346529 0.0103647 0)
(-0.0352818 0.0101195 0)
(-0.0358981 0.00986415 0)
(-0.0365013 0.00959852 0)
(-0.0370909 0.00932228 0)
(-0.0376662 0.00903514 0)
(-0.0382265 0.00873682 0)
(-0.0387714 0.00842704 0)
(-0.0393001 0.00810553 0)
(-0.039812 0.00777199 0)
(-0.0403063 0.00742616 0)
(-0.0407824 0.00706776 0)
(-0.0412395 0.00669651 0)
(-0.0416769 0.00631216 0)
(-0.0420937 0.00591442 0)
(-0.0424892 0.00550305 0)
(-0.0428625 0.00507781 0)
(-0.0432128 0.00463846 0)
(-0.0435392 0.00418479 0)
(-0.0438409 0.0037166 0)
(-0.0441168 0.00323369 0)
(-0.0443661 0.0027359 0)
(-0.0445878 0.00222306 0)
(-0.0447809 0.00169505 0)
(-0.0449445 0.00115175 0)
(-0.0450774 0.00059308 0)
(-0.0451787 1.89709e-05 0)
(-0.0452472 -0.000570592 0)
(-0.0452819 -0.00117559 0)
(-0.0452818 -0.00179595 0)
(-0.0452455 -0.00243157 0)
(-0.0451722 -0.0030823 0)
(-0.0450605 -0.00374791 0)
(-0.0449094 -0.00442815 0)
(-0.0447177 -0.00512272 0)
(-0.0444842 -0.00583126 0)
(-0.0442079 -0.00655339 0)
(-0.0438875 -0.00728866 0)
(-0.0435219 -0.00803657 0)
(-0.0431099 -0.0087966 0)
(-0.0426504 -0.00956822 0)
(-0.0421423 -0.0103509 0)
(-0.0415845 -0.011144 0)
(-0.0409759 -0.0119471 0)
(-0.0403154 -0.0127596 0)
(-0.0396019 -0.0135809 0)
(-0.0388345 -0.0144103 0)
(-0.0380121 -0.0152469 0)
(-0.0371338 -0.0160895 0)
(-0.0361987 -0.0169365 0)
(-0.0352062 -0.0177855 0)
(-0.0341556 -0.0186325 0)
(-0.0330462 -0.019471 0)
(-0.0318799 -0.0202885 0)
(-0.0306693 -0.0210642 0)
(-8.80921e-05 0.00596533 0)
(-0.000596933 0.0111791 0)
(-0.00130679 0.0134099 0)
(-0.00209328 0.0143411 0)
(-0.00291043 0.0147203 0)
(-0.00374018 0.0148689 0)
(-0.0045749 0.0149208 0)
(-0.0054113 0.0149308 0)
(-0.00624792 0.0149211 0)
(-0.00708404 0.0149011 0)
(-0.00791924 0.0148744 0)
(-0.00875323 0.0148427 0)
(-0.0095858 0.0148067 0)
(-0.0104168 0.0147667 0)
(-0.0112459 0.0147226 0)
(-0.012073 0.0146746 0)
(-0.012898 0.0146225 0)
(-0.0137205 0.0145663 0)
(-0.0145405 0.0145058 0)
(-0.0153577 0.014441 0)
(-0.0161719 0.0143717 0)
(-0.0169829 0.0142978 0)
(-0.0177904 0.0142191 0)
(-0.0185943 0.0141356 0)
(-0.0193943 0.0140471 0)
(-0.0201902 0.0139533 0)
(-0.0209816 0.0138542 0)
(-0.0217685 0.0137496 0)
(-0.0225504 0.0136392 0)
(-0.0233271 0.013523 0)
(-0.0240983 0.0134007 0)
(-0.0248637 0.0132721 0)
(-0.025623 0.013137 0)
(-0.0263759 0.0129952 0)
(-0.027122 0.0128464 0)
(-0.027861 0.0126906 0)
(-0.0285925 0.0125273 0)
(-0.0293162 0.0123564 0)
(-0.0300316 0.0121776 0)
(-0.0307384 0.0119906 0)
(-0.0314361 0.0117953 0)
(-0.0321244 0.0115913 0)
(-0.0328028 0.0113784 0)
(-0.0334707 0.0111563 0)
(-0.0341279 0.0109247 0)
(-0.0347736 0.0106834 0)
(-0.0354075 0.010432 0)
(-0.036029 0.0101703 0)
(-0.0366375 0.00989804 0)
(-0.0372325 0.00961485 0)
(-0.0378134 0.00932045 0)
(-0.0383796 0.00901458 0)
(-0.0389304 0.00869692 0)
(-0.0394652 0.00836719 0)
(-0.0399832 0.0080251 0)
(-0.0404839 0.00767036 0)
(-0.0409665 0.00730268 0)
(-0.0414303 0.00692178 0)
(-0.0418744 0.00652738 0)
(-0.0422982 0.0061192 0)
(-0.0427008 0.00569699 0)
(-0.0430813 0.00526048 0)
(-0.0434389 0.00480944 0)
(-0.0437728 0.00434364 0)
(-0.044082 0.00386286 0)
(-0.0443655 0.0033669 0)
(-0.0446226 0.00285556 0)
(-0.0448521 0.0023287 0)
(-0.0450531 0.00178615 0)
(-0.0452245 0.00122782 0)
(-0.0453654 0.000653594 0)
(-0.0454747 6.34018e-05 0)
(-0.0455512 -0.000542793 0)
(-0.0455939 -0.00116498 0)
(-0.0456017 -0.0018031 0)
(-0.0455733 -0.00245705 0)
(-0.0455078 -0.00312666 0)
(-0.0454038 -0.00381174 0)
(-0.0452602 -0.00451202 0)
(-0.0450759 -0.00522721 0)
(-0.0448496 -0.00595697 0)
(-0.0445802 -0.00670091 0)
(-0.0442665 -0.00745856 0)
(-0.0439073 -0.00822944 0)
(-0.0435014 -0.00901302 0)
(-0.0430476 -0.00980875 0)
(-0.0425448 -0.0106161 0)
(-0.0419919 -0.0114345 0)
(-0.0413876 -0.0122634 0)
(-0.0407309 -0.0131023 0)
(-0.0400206 -0.0139505 0)
(-0.0392557 -0.0148072 0)
(-0.0384351 -0.0156717 0)
(-0.0375577 -0.0165428 0)
(-0.0366227 -0.0174186 0)
(-0.035629 -0.0182967 0)
(-0.0345762 -0.0191732 0)
(-0.033463 -0.020041 0)
(-0.0322914 -0.0208867 0)
(-0.0310745 -0.0216873 0)
(-8.80684e-05 0.00613037 0)
(-0.000597458 0.0114904 0)
(-0.00130845 0.0137844 0)
(-0.0020964 0.0147423 0)
(-0.00291517 0.0151325 0)
(-0.00374663 0.0152855 0)
(-0.00458311 0.015339 0)
(-0.00542129 0.0153495 0)
(-0.00625971 0.0153398 0)
(-0.00709763 0.0153193 0)
(-0.00793466 0.0152922 0)
(-0.00877051 0.0152598 0)
(-0.00960496 0.0152231 0)
(-0.0104378 0.0151822 0)
(-0.0112689 0.0151372 0)
(-0.0120981 0.0150881 0)
(-0.012925 0.0150349 0)
(-0.0137497 0.0149774 0)
(-0.0145718 0.0149156 0)
(-0.0153912 0.0148494 0)
(-0.0162077 0.0147785 0)
(-0.017021 0.014703 0)
(-0.017831 0.0146226 0)
(-0.0186373 0.0145372 0)
(-0.0194399 0.0144467 0)
(-0.0202384 0.0143508 0)
(-0.0210326 0.0142495 0)
(-0.0218222 0.0141425 0)
(-0.0226071 0.0140296 0)
(-0.0233868 0.0139107 0)
(-0.0241611 0.0137856 0)
(-0.0249297 0.013654 0)
(-0.0256923 0.0135158 0)
(-0.0264486 0.0133708 0)
(-0.0271983 0.0132186 0)
(-0.0279409 0.0130591 0)
(-0.0286762 0.012892 0)
(-0.0294038 0.0127171 0)
(-0.0301232 0.0125341 0)
(-0.0308342 0.0123428 0)
(-0.0315363 0.0121429 0)
(-0.032229 0.0119341 0)
(-0.0329119 0.0117161 0)
(-0.0335846 0.0114888 0)
(-0.0342466 0.0112517 0)
(-0.0348973 0.0110046 0)
(-0.0355364 0.0107472 0)
(-0.0361632 0.0104792 0)
(-0.0367772 0.0102003 0)
(-0.0373778 0.00991021 0)
(-0.0379645 0.00960864 0)
(-0.0385365 0.00929528 0)
(-0.0390934 0.00896982 0)
(-0.0396344 0.00863196 0)
(-0.0401589 0.00828139 0)
(-0.0406662 0.00791781 0)
(-0.0411555 0.00754093 0)
(-0.0416261 0.00715044 0)
(-0.0420772 0.00674607 0)
(-0.0425081 0.00632753 0)
(-0.042918 0.00589454 0)
(-0.0433059 0.00544685 0)
(-0.0436711 0.00498419 0)
(-0.0440127 0.00450631 0)
(-0.0443296 0.00401299 0)
(-0.0446211 0.00350401 0)
(-0.0448861 0.00297918 0)
(-0.0451237 0.00243832 0)
(-0.0453329 0.00188128 0)
(-0.0455125 0.00130793 0)
(-0.0456617 0.000718174 0)
(-0.0457792 0.000111901 0)
(-0.045864 -0.000510933 0)
(-0.045915 -0.00115033 0)
(-0.045931 -0.00180623 0)
(-0.0459109 -0.00247853 0)
(-0.0458534 -0.00316708 0)
(-0.0457574 -0.00387168 0)
(-0.0456217 -0.00459207 0)
(-0.0454451 -0.00532798 0)
(-0.0452263 -0.00607907 0)
(-0.0449642 -0.00684493 0)
(-0.0446575 -0.00762511 0)
(-0.044305 -0.00841911 0)
(-0.0439055 -0.00922641 0)
(-0.0434577 -0.0100465 0)
(-0.0429605 -0.0108787 0)
(-0.0424127 -0.0117226 0)
(-0.041813 -0.0125776 0)
(-0.0411604 -0.0134431 0)
(-0.0404535 -0.0143185 0)
(-0.0396914 -0.0152031 0)
(-0.0388727 -0.0160959 0)
(-0.0379965 -0.0169957 0)
(-0.0370616 -0.0179009 0)
(-0.0360671 -0.0188088 0)
(-0.035012 -0.0197154 0)
(-0.033895 -0.0206133 0)
(-0.0327179 -0.0214879 0)
(-0.0314943 -0.0223138 0)
(-8.8035e-05 0.00629552 0)
(-0.000597952 0.0118022 0)
(-0.0013101 0.0141596 0)
(-0.00209953 0.0151442 0)
(-0.00291998 0.0155454 0)
(-0.0037532 0.0157029 0)
(-0.00459149 0.0157581 0)
(-0.0054315 0.0157691 0)
(-0.00627176 0.0157593 0)
(-0.00711154 0.0157385 0)
(-0.00795044 0.0157108 0)
(-0.00878819 0.0156779 0)
(-0.00962457 0.0156404 0)
(-0.0104594 0.0155987 0)
(-0.0112925 0.0155528 0)
(-0.0121237 0.0155027 0)
(-0.0129528 0.0154483 0)
(-0.0137795 0.0153897 0)
(-0.0146039 0.0153266 0)
(-0.0154255 0.0152589 0)
(-0.0162443 0.0151866 0)
(-0.01706 0.0151094 0)
(-0.0178725 0.0150273 0)
(-0.0186814 0.0149401 0)
(-0.0194866 0.0148476 0)
(-0.0202878 0.0147497 0)
(-0.0210848 0.0146462 0)
(-0.0218773 0.0145368 0)
(-0.0226651 0.0144215 0)
(-0.0234479 0.0143 0)
(-0.0242254 0.0141722 0)
(-0.0249973 0.0140377 0)
(-0.0257633 0.0138964 0)
(-0.0265231 0.0137481 0)
(-0.0272764 0.0135926 0)
(-0.0280228 0.0134295 0)
(-0.028762 0.0132587 0)
(-0.0294935 0.0130799 0)
(-0.0302171 0.0128928 0)
(-0.0309324 0.0126972 0)
(-0.0316388 0.0124927 0)
(-0.0323361 0.0122792 0)
(-0.0330237 0.0120562 0)
(-0.0337013 0.0118237 0)
(-0.0343682 0.0115811 0)
(-0.0350241 0.0113283 0)
(-0.0356685 0.0110649 0)
(-0.0363007 0.0107907 0)
(-0.0369203 0.0105053 0)
(-0.0375267 0.0102085 0)
(-0.0381193 0.0098998 0)
(-0.0386975 0.00957904 0)
(-0.0392606 0.00924586 0)
(-0.0398081 0.00889994 0)
(-0.0403391 0.00854097 0)
(-0.0408531 0.00816863 0)
(-0.0413493 0.00778261 0)
(-0.041827 0.00738263 0)
(-0.0422854 0.00696837 0)
(-0.0427236 0.00653954 0)
(-0.043141 0.00609585 0)
(-0.0435366 0.00563704 0)
(-0.0439096 0.00516281 0)
(-0.044259 0.00467291 0)
(-0.044584 0.00416711 0)
(-0.0448837 0.00364516 0)
(-0.045157 0.00310688 0)
(-0.0454029 0.00255206 0)
(-0.0456205 0.00198056 0)
(-0.0458086 0.00139224 0)
(-0.0459663 0.000786957 0)
(-0.0460924 0.000164608 0)
(-0.0461858 -0.000474869 0)
(-0.0462454 -0.00113148 0)
(-0.04627 -0.00180519 0)
(-0.0462583 -0.00249588 0)
(-0.0462093 -0.00320341 0)
(-0.0461216 -0.00392758 0)
(-0.0459941 -0.00466817 0)
(-0.0458255 -0.00542489 0)
(-0.0456145 -0.00619741 0)
(-0.04536 -0.00698531 0)
(-0.0450607 -0.00778815 0)
(-0.0447152 -0.00860543 0)
(-0.0443224 -0.00943663 0)
(-0.0438809 -0.0102812 0)
(-0.0433897 -0.0111386 0)
(-0.0428473 -0.0120083 0)
(-0.0422525 -0.0128896 0)
(-0.0416042 -0.0137821 0)
(-0.040901 -0.014685 0)
(-0.0401419 -0.0155977 0)
(-0.0393254 -0.0165192 0)
(-0.0384506 -0.0174484 0)
(-0.0375161 -0.0183834 0)
(-0.0365208 -0.0193217 0)
(-0.0354636 -0.0202591 0)
(-0.0343428 -0.0211879 0)
(-0.0331602 -0.0220923 0)
(-0.0319295 -0.0229438 0)
(-8.79908e-05 0.00646079 0)
(-0.000598407 0.0121144 0)
(-0.00131171 0.0145354 0)
(-0.00210268 0.0155469 0)
(-0.00292486 0.0159593 0)
(-0.00375991 0.0161212 0)
(-0.00460006 0.0161782 0)
(-0.00544195 0.0161896 0)
(-0.0062841 0.0161798 0)
(-0.00712579 0.0161587 0)
(-0.00796661 0.0161305 0)
(-0.00880631 0.0160969 0)
(-0.00964467 0.0160587 0)
(-0.0104815 0.0160162 0)
(-0.0113167 0.0159694 0)
(-0.0121499 0.0159183 0)
(-0.0129812 0.0158629 0)
(-0.0138102 0.015803 0)
(-0.0146367 0.0157387 0)
(-0.0154607 0.0156696 0)
(-0.0162819 0.0155958 0)
(-0.0171001 0.0155171 0)
(-0.017915 0.0154333 0)
(-0.0187266 0.0153443 0)
(-0.0195344 0.0152499 0)
(-0.0203384 0.01515 0)
(-0.0211383 0.0150443 0)
(-0.0219338 0.0149327 0)
(-0.0227246 0.0148149 0)
(-0.0235106 0.0146909 0)
(-0.0242913 0.0145603 0)
(-0.0250666 0.014423 0)
(-0.0258361 0.0142788 0)
(-0.0265995 0.0141273 0)
(-0.0273565 0.0139684 0)
(-0.0281067 0.0138019 0)
(-0.0288499 0.0136274 0)
(-0.0295855 0.0134447 0)
(-0.0303134 0.0132536 0)
(-0.031033 0.0130537 0)
(-0.031744 0.0128448 0)
(-0.0324459 0.0126266 0)
(-0.0331384 0.0123988 0)
(-0.0338209 0.0121611 0)
(-0.034493 0.0119131 0)
(-0.0351542 0.0116547 0)
(-0.0358039 0.0113855 0)
(-0.0364418 0.0111051 0)
(-0.0370672 0.0108133 0)
(-0.0376795 0.0105097 0)
(-0.0382782 0.010194 0)
(-0.0388626 0.00986594 0)
(-0.0394322 0.00952511 0)
(-0.0399862 0.00917121 0)
(-0.040524 0.00880391 0)
(-0.0410449 0.0084229 0)
(-0.0415483 0.00802785 0)
(-0.0420332 0.00761844 0)
(-0.042499 0.00719437 0)
(-0.0429448 0.00675534 0)
(-0.0433699 0.00630103 0)
(-0.0437734 0.00583115 0)
(-0.0441544 0.00534542 0)
(-0.0445121 0.00484356 0)
(-0.0448454 0.00432533 0)
(-0.0451535 0.00379048 0)
(-0.0454353 0.0032388 0)
(-0.0456898 0.00267007 0)
(-0.0459161 0.00208415 0)
(-0.046113 0.00148086 0)
(-0.0462796 0.000860079 0)
(-0.0464146 0.000221666 0)
(-0.0465169 -0.00043445 0)
(-0.0465854 -0.00110829 0)
(-0.0466188 -0.00179982 0)
(-0.046616 -0.00250893 0)
(-0.0465757 -0.00323548 0)
(-0.0464967 -0.0039793 0)
(-0.0463777 -0.00474015 0)
(-0.0462174 -0.00551778 0)
(-0.0460147 -0.00631182 0)
(-0.0457681 -0.00712189 0)
(-0.0454764 -0.00794752 0)
(-0.0451383 -0.00878824 0)
(-0.0447525 -0.00964353 0)
(-0.0443177 -0.0105129 0)
(-0.0438327 -0.0113956 0)
(-0.043296 -0.0122913 0)
(-0.0427064 -0.0131993 0)
(-0.0420627 -0.0141189 0)
(-0.0413635 -0.0150497 0)
(-0.0406076 -0.0159909 0)
(-0.0397937 -0.0169416 0)
(-0.0389204 -0.0179005 0)
(-0.0379865 -0.0188659 0)
(-0.0369907 -0.0198352 0)
(-0.0359316 -0.0208042 0)
(-0.0348072 -0.0217648 0)
(-0.033619 -0.0226999 0)
(-0.0323809 -0.0235774 0)
(-8.79352e-05 0.00662616 0)
(-0.000598819 0.0124269 0)
(-0.00131329 0.014912 0)
(-0.00210585 0.0159505 0)
(-0.00292983 0.016374 0)
(-0.00376678 0.0165405 0)
(-0.00460885 0.0165992 0)
(-0.00545268 0.0166111 0)
(-0.00629678 0.0166012 0)
(-0.00714042 0.0165798 0)
(-0.00798322 0.0165511 0)
(-0.00882491 0.016517 0)
(-0.00966531 0.0164781 0)
(-0.0105042 0.0164348 0)
(-0.0113415 0.0163871 0)
(-0.0121769 0.016335 0)
(-0.0130104 0.0162785 0)
(-0.0138416 0.0162175 0)
(-0.0146705 0.0161519 0)
(-0.0154969 0.0160816 0)
(-0.0163205 0.0160063 0)
(-0.0171412 0.0159261 0)
(-0.0179587 0.0158406 0)
(-0.0187729 0.0157499 0)
(-0.0195836 0.0156536 0)
(-0.0203904 0.0155517 0)
(-0.0211932 0.0154439 0)
(-0.0219917 0.01533 0)
(-0.0227857 0.0152099 0)
(-0.0235749 0.0150834 0)
(-0.024359 0.0149502 0)
(-0.0251377 0.0148101 0)
(-0.0259108 0.0146629 0)
(-0.0266779 0.0145084 0)
(-0.0274387 0.0143462 0)
(-0.0281929 0.0141762 0)
(-0.0289401 0.0139981 0)
(-0.02968 0.0138117 0)
(-0.0304122 0.0136165 0)
(-0.0311363 0.0134125 0)
(-0.0318519 0.0131992 0)
(-0.0325587 0.0129764 0)
(-0.0332561 0.0127438 0)
(-0.0339437 0.012501 0)
(-0.034621 0.0122478 0)
(-0.0352876 0.0119838 0)
(-0.035943 0.0117088 0)
(-0.0365866 0.0114223 0)
(-0.0372179 0.0111242 0)
(-0.0378363 0.010814 0)
(-0.0384412 0.0104914 0)
(-0.0390321 0.0101561 0)
(-0.0396083 0.00980766 0)
(-0.0401691 0.00944586 0)
(-0.0407139 0.00907033 0)
(-0.0412419 0.00868073 0)
(-0.0417525 0.00827673 0)
(-0.042245 0.007858 0)
(-0.0427184 0.0074242 0)
(-0.0431721 0.00697503 0)
(-0.0436052 0.00651016 0)
(-0.0440168 0.0060293 0)
(-0.0444061 0.00553213 0)
(-0.0447721 0.00501839 0)
(-0.045114 0.00448779 0)
(-0.0454308 0.0039401 0)
(-0.0457214 0.00337506 0)
(-0.0459849 0.00279247 0)
(-0.0462202 0.00219216 0)
(-0.0464262 0.00157395 0)
(-0.0466019 0.000937689 0)
(-0.0467461 0.000283233 0)
(-0.0468577 -0.000389514 0)
(-0.0469354 -0.00108059 0)
(-0.0469781 -0.00178995 0)
(-0.0469844 -0.00251752 0)
(-0.0469532 -0.00326314 0)
(-0.0468831 -0.00402666 0)
(-0.046773 -0.00480786 0)
(-0.0466214 -0.00560646 0)
(-0.0464272 -0.00642214 0)
(-0.0461889 -0.00725448 0)
(-0.0459052 -0.00810306 0)
(-0.0455749 -0.00896738 0)
(-0.0451965 -0.00984695 0)
(-0.0447687 -0.0107412 0)
(-0.0442901 -0.0116496 0)
(-0.0437595 -0.0125715 0)
(-0.0431754 -0.0135064 0)
(-0.0425366 -0.0144536 0)
(-0.0418417 -0.0154126 0)
(-0.0410893 -0.0163826 0)
(-0.040278 -0.0173628 0)
(-0.0394066 -0.018352 0)
(-0.0384736 -0.0193482 0)
(-0.0374775 -0.0203491 0)
(-0.0364168 -0.0213504 0)
(-0.0352891 -0.0223438 0)
(-0.0340954 -0.0233108 0)
(-0.0328498 -0.0242149 0)
(-8.787e-05 0.00679161 0)
(-0.000599189 0.0127399 0)
(-0.00131484 0.0152892 0)
(-0.00210907 0.0163549 0)
(-0.00293494 0.0167897 0)
(-0.00377385 0.0169608 0)
(-0.00461792 0.0170211 0)
(-0.00546375 0.0170336 0)
(-0.00630985 0.0170237 0)
(-0.00715551 0.0170019 0)
(-0.00800034 0.0169728 0)
(-0.0088441 0.016938 0)
(-0.00968659 0.0168985 0)
(-0.0105276 0.0168543 0)
(-0.0113671 0.0168058 0)
(-0.0122047 0.0167528 0)
(-0.0130404 0.0166953 0)
(-0.013874 0.0166332 0)
(-0.0147053 0.0165664 0)
(-0.0155341 0.0164947 0)
(-0.0163602 0.0164181 0)
(-0.0171835 0.0163363 0)
(-0.0180038 0.0162492 0)
(-0.0188207 0.0161568 0)
(-0.0196342 0.0160587 0)
(-0.020444 0.0159548 0)
(-0.0212498 0.0158449 0)
(-0.0220514 0.0157289 0)
(-0.0228486 0.0156065 0)
(-0.0236411 0.0154775 0)
(-0.0244287 0.0153418 0)
(-0.025211 0.0151989 0)
(-0.0259877 0.0150489 0)
(-0.0267586 0.0148913 0)
(-0.0275233 0.014726 0)
(-0.0282815 0.0145526 0)
(-0.029033 0.014371 0)
(-0.0297772 0.0141808 0)
(-0.0305138 0.0139817 0)
(-0.0312426 0.0137736 0)
(-0.031963 0.013556 0)
(-0.0326746 0.0133287 0)
(-0.0333771 0.0130913 0)
(-0.0340699 0.0128436 0)
(-0.0347527 0.0125852 0)
(-0.0354249 0.0123157 0)
(-0.036086 0.012035 0)
(-0.0367355 0.0117426 0)
(-0.0373729 0.0114382 0)
(-0.0379975 0.0111214 0)
(-0.0386089 0.010792 0)
(-0.0392064 0.0104495 0)
(-0.0397894 0.0100936 0)
(-0.0403572 0.009724 0)
(-0.0409091 0.00934032 0)
(-0.0414446 0.00894223 0)
(-0.0419627 0.00852937 0)
(-0.0424628 0.00810139 0)
(-0.0429441 0.00765795 0)
(-0.0434059 0.00719872 0)
(-0.0438472 0.00672337 0)
(-0.0442672 0.00623159 0)
(-0.044665 0.00572307 0)
(-0.0450398 0.00519751 0)
(-0.0453905 0.00465462 0)
(-0.0457163 0.00409414 0)
(-0.046016 0.00351581 0)
(-0.0462887 0.00291941 0)
(-0.0465333 0.00230474 0)
(-0.0467487 0.00167165 0)
(-0.0469339 0.00101995 0)
(-0.0470877 0.000349475 0)
(-0.0472088 -0.000339895 0)
(-0.0472961 -0.00104821 0)
(-0.0473483 -0.00177543 0)
(-0.0473642 -0.00252148 0)
(-0.0473424 -0.00328622 0)
(-0.0472817 -0.0040695 0)
(-0.0471807 -0.00487111 0)
(-0.0470383 -0.00569078 0)
(-0.0468529 -0.00652818 0)
(-0.0466232 -0.00738293 0)
(-0.046348 -0.0082546 0)
(-0.0460257 -0.0091427 0)
(-0.045655 -0.0100467 0)
(-0.0452345 -0.0109661 0)
(-0.0447629 -0.0119003 0)
(-0.0442386 -0.0128487 0)
(-0.0436603 -0.0138108 0)
(-0.0430267 -0.0147859 0)
(-0.0423363 -0.0157735 0)
(-0.0415877 -0.0167728 0)
(-0.0407795 -0.0177829 0)
(-0.0399101 -0.0188027 0)
(-0.0389783 -0.0198304 0)
(-0.0379822 -0.0208635 0)
(-0.0369203 -0.0218978 0)
(-0.0357897 -0.0229249 0)
(-0.0345908 -0.023925 0)
(-0.0333376 -0.0248566 0)
(-8.78029e-05 0.00695712 0)
(-0.000599533 0.0130533 0)
(-0.00131638 0.0156671 0)
(-0.00211238 0.0167602 0)
(-0.00294024 0.0172064 0)
(-0.00378121 0.017382 0)
(-0.00462735 0.0174441 0)
(-0.00547526 0.0174571 0)
(-0.00632343 0.0174471 0)
(-0.00717118 0.0174251 0)
(-0.00801812 0.0173955 0)
(-0.00886401 0.0173602 0)
(-0.00970867 0.0173199 0)
(-0.0105519 0.017275 0)
(-0.0113936 0.0172256 0)
(-0.0122335 0.0171717 0)
(-0.0130716 0.0171132 0)
(-0.0139076 0.01705 0)
(-0.0147413 0.016982 0)
(-0.0155727 0.0169091 0)
(-0.0164014 0.0168311 0)
(-0.0172274 0.0167479 0)
(-0.0180504 0.0166593 0)
(-0.0188702 0.0165651 0)
(-0.0196866 0.0164652 0)
(-0.0204994 0.0163594 0)
(-0.0213083 0.0162476 0)
(-0.0221132 0.0161294 0)
(-0.0229137 0.0160048 0)
(-0.0237097 0.0158734 0)
(-0.0245008 0.0157351 0)
(-0.0252867 0.0155897 0)
(-0.0260672 0.0154368 0)
(-0.026842 0.0152762 0)
(-0.0276108 0.0151078 0)
(-0.0283732 0.0149311 0)
(-0.0291289 0.014746 0)
(-0.0298776 0.0145522 0)
(-0.0306189 0.0143493 0)
(-0.0313524 0.0141371 0)
(-0.0320777 0.0139153 0)
(-0.0327944 0.0136835 0)
(-0.0335021 0.0134415 0)
(-0.0342003 0.0131889 0)
(-0.0348887 0.0129253 0)
(-0.0355666 0.0126506 0)
(-0.0362336 0.0123642 0)
(-0.0368892 0.0120659 0)
(-0.0375328 0.0117553 0)
(-0.0381639 0.0114321 0)
(-0.038782 0.0110959 0)
(-0.0393863 0.0107463 0)
(-0.0399763 0.010383 0)
(-0.0405513 0.0100057 0)
(-0.0411106 0.00961401 0)
(-0.0416536 0.00920751 0)
(-0.0421795 0.00878587 0)
(-0.0426876 0.00834873 0)
(-0.043177 0.00789574 0)
(-0.0436471 0.00742654 0)
(-0.0440968 0.0069408 0)
(-0.0445255 0.0064382 0)
(-0.0449322 0.0059184 0)
(-0.0453159 0.00538109 0)
(-0.0456758 0.00482597 0)
(-0.0460108 0.00425277 0)
(-0.04632 0.0036612 0)
(-0.0466022 0.00305104 0)
(-0.0468564 0.00242208 0)
(-0.0470816 0.00177415 0)
(-0.0472766 0.00110704 0)
(-0.0474403 0.000420567 0)
(-0.0475714 -0.000285419 0)
(-0.0476687 -0.00101098 0)
(-0.0477308 -0.00175609 0)
(-0.0477565 -0.00252065 0)
(-0.0477445 -0.00330456 0)
(-0.0476935 -0.00410766 0)
(-0.0476022 -0.00492975 0)
(-0.0474692 -0.00577059 0)
(-0.0472931 -0.00662984 0)
(-0.0470725 -0.00750713 0)
(-0.0468059 -0.00840203 0)
(-0.0464921 -0.00931409 0)
(-0.0461295 -0.0102428 0)
(-0.0457167 -0.0111876 0)
(-0.0452523 -0.0121478 0)
(-0.0447347 -0.013123 0)
(-0.0441626 -0.0141126 0)
(-0.0435344 -0.0151159 0)
(-0.0428488 -0.0161325 0)
(-0.0421043 -0.0171614 0)
(-0.0412993 -0.0182019 0)
(-0.0404323 -0.0192528 0)
(-0.0395018 -0.0203124 0)
(-0.0385062 -0.0213783 0)
(-0.0374434 -0.0224464 0)
(-0.0363103 -0.0235082 0)
(-0.035107 -0.0245426 0)
(-0.0338466 -0.0255029 0)
(-8.77489e-05 0.00712268 0)
(-0.000599902 0.013367 0)
(-0.00131796 0.0160458 0)
(-0.00211587 0.0171665 0)
(-0.00294583 0.0176241 0)
(-0.00378897 0.0178043 0)
(-0.00463729 0.0178681 0)
(-0.00548736 0.0178816 0)
(-0.0063377 0.0178716 0)
(-0.00718763 0.0178493 0)
(-0.00803677 0.0178192 0)
(-0.00888489 0.0177833 0)
(-0.00973181 0.0177424 0)
(-0.0105774 0.0176968 0)
(-0.0114214 0.0176466 0)
(-0.0122637 0.0175918 0)
(-0.0131042 0.0175323 0)
(-0.0139427 0.017468 0)
(-0.0147791 0.0173989 0)
(-0.0156131 0.0173247 0)
(-0.0164445 0.0172454 0)
(-0.0172733 0.0171608 0)
(-0.0180992 0.0170706 0)
(-0.0189219 0.0169748 0)
(-0.0197414 0.0168732 0)
(-0.0205573 0.0167656 0)
(-0.0213695 0.0166518 0)
(-0.0221777 0.0165315 0)
(-0.0229817 0.0164047 0)
(-0.0237812 0.016271 0)
(-0.0245759 0.0161303 0)
(-0.0253657 0.0159822 0)
(-0.0261501 0.0158266 0)
(-0.026929 0.0156632 0)
(-0.0277019 0.0154917 0)
(-0.0284687 0.0153118 0)
(-0.0292288 0.0151233 0)
(-0.0299821 0.0149258 0)
(-0.0307282 0.0147192 0)
(-0.0314666 0.014503 0)
(-0.032197 0.014277 0)
(-0.0329189 0.0140409 0)
(-0.0336321 0.0137943 0)
(-0.0343359 0.0135369 0)
(-0.03503 0.0132683 0)
(-0.0357138 0.0129883 0)
(-0.0363869 0.0126964 0)
(-0.0370488 0.0123923 0)
(-0.0376989 0.0120756 0)
(-0.0383367 0.011746 0)
(-0.0389616 0.0114031 0)
(-0.039573 0.0110466 0)
(-0.0401702 0.0106761 0)
(-0.0407526 0.0102911 0)
(-0.0413196 0.00989146 0)
(-0.0418704 0.00947665 0)
(-0.0424043 0.00904632 0)
(-0.0429206 0.00860012 0)
(-0.0434185 0.00813766 0)
(-0.0438971 0.00765859 0)
(-0.0443557 0.00716256 0)
(-0.0447933 0.00664922 0)
(-0.0452091 0.00611823 0)
(-0.0456022 0.00556926 0)
(-0.0459715 0.005002 0)
(-0.0463161 0.00441614 0)
(-0.046635 0.00381141 0)
(-0.0469271 0.00318756 0)
(-0.0471914 0.00254436 0)
(-0.0474267 0.00188163 0)
(-0.0476319 0.00119917 0)
(-0.0478059 0.000496742 0)
(-0.0479474 -0.000225837 0)
(-0.048055 -0.000968643 0)
(-0.0481275 -0.00173164 0)
(-0.0481635 -0.00251475 0)
(-0.0481617 -0.00331785 0)
(-0.0481208 -0.00414082 0)
(-0.0480395 -0.00498346 0)
(-0.0479164 -0.00584554 0)
(-0.0477499 -0.00672673 0)
(-0.0475387 -0.00762668 0)
(-0.0472814 -0.00854497 0)
(-0.0469764 -0.00948114 0)
(-0.0466223 -0.0104347 0)
(-0.0462176 -0.011405 0)
(-0.0457607 -0.0123916 0)
(-0.0452501 -0.0133939 0)
(-0.0446845 -0.0144113 0)
(-0.0440621 -0.0154431 0)
(-0.0433816 -0.0164889 0)
(-0.0426414 -0.0175479 0)
(-0.0418398 -0.0186193 0)
(-0.0409754 -0.0197017 0)
(-0.0400465 -0.0207937 0)
(-0.0390515 -0.0218928 0)
(-0.0379882 -0.0229953 0)
(-0.0368534 -0.0240926 0)
(-0.0356466 -0.0251627 0)
(-0.0343797 -0.0261532 0)
(-8.77713e-05 0.00728833 0)
(-0.000600452 0.013681 0)
(-0.00131972 0.0164251 0)
(-0.00211969 0.0175736 0)
(-0.00295192 0.0180428 0)
(-0.00379736 0.0182276 0)
(-0.00464798 0.0182932 0)
(-0.00550034 0.0183072 0)
(-0.00635298 0.0182972 0)
(-0.00720522 0.0182745 0)
(-0.00805669 0.018244 0)
(-0.00890717 0.0182075 0)
(-0.00975649 0.0181659 0)
(-0.0106045 0.0181196 0)
(-0.011451 0.0180686 0)
(-0.0122959 0.0180129 0)
(-0.0131389 0.0179525 0)
(-0.0139801 0.0178872 0)
(-0.0148192 0.017817 0)
(-0.0156559 0.0177416 0)
(-0.0164903 0.017661 0)
(-0.017322 0.017575 0)
(-0.0181509 0.0174834 0)
(-0.0189768 0.017386 0)
(-0.0197994 0.0172827 0)
(-0.0206186 0.0171733 0)
(-0.0214342 0.0170576 0)
(-0.0222459 0.0169353 0)
(-0.0230535 0.0168063 0)
(-0.0238568 0.0166704 0)
(-0.0246554 0.0165272 0)
(-0.0254491 0.0163766 0)
(-0.0262377 0.0162183 0)
(-0.0270208 0.0160521 0)
(-0.0277981 0.0158776 0)
(-0.0285694 0.0156945 0)
(-0.0293342 0.0155027 0)
(-0.0300923 0.0153017 0)
(-0.0308434 0.0150914 0)
(-0.0315869 0.0148714 0)
(-0.0323226 0.0146413 0)
(-0.03305 0.0144009 0)
(-0.0337687 0.0141498 0)
(-0.0344784 0.0138877 0)
(-0.0351785 0.0136141 0)
(-0.0358685 0.0133289 0)
(-0.036548 0.0130315 0)
(-0.0372164 0.0127217 0)
(-0.0378733 0.0123991 0)
(-0.038518 0.0120632 0)
(-0.03915 0.0117138 0)
(-0.0397687 0.0113504 0)
(-0.0403734 0.0109726 0)
(-0.0409636 0.0105802 0)
(-0.0415385 0.0101727 0)
(-0.0420974 0.00974965 0)
(-0.0426397 0.00931075 0)
(-0.0431645 0.00885558 0)
(-0.0436711 0.00838377 0)
(-0.0441587 0.00789493 0)
(-0.0446263 0.00738871 0)
(-0.0450733 0.00686474 0)
(-0.0454986 0.00632266 0)
(-0.0459013 0.00576213 0)
(-0.0462805 0.00518282 0)
(-0.0466351 0.0045844 0)
(-0.0469642 0.0039666 0)
(-0.0472666 0.00332913 0)
(-0.0475412 0.00267177 0)
(-0.0477871 0.00199433 0)
(-0.0480029 0.00129658 0)
(-0.0481877 0.000578282 0)
(-0.04834 -0.000160823 0)
(-0.0484585 -0.000920838 0)
(-0.0485418 -0.00170171 0)
(-0.0485886 -0.00250333 0)
(-0.0485975 -0.00332561 0)
(-0.0485672 -0.00416843 0)
(-0.0484964 -0.00503161 0)
(-0.0483836 -0.00591493 0)
(-0.0482273 -0.00681808 0)
(-0.048026 -0.00774071 0)
(-0.0477783 -0.00868243 0)
(-0.0474826 -0.00964278 0)
(-0.0471374 -0.0106212 0)
(-0.0467411 -0.0116173 0)
(-0.0462922 -0.0126303 0)
(-0.045789 -0.0136597 0)
(-0.0452301 -0.014705 0)
(-0.0446139 -0.0157656 0)
(-0.0439387 -0.0168409 0)
(-0.0432029 -0.0179301 0)
(-0.042405 -0.0190324 0)
(-0.0415432 -0.0201467 0)
(-0.0406161 -0.0212713 0)
(-0.0396217 -0.0224041 0)
(-0.0385581 -0.0235412 0)
(-0.0374219 -0.0246742 0)
(-0.0362128 -0.0257808 0)
(-0.0349413 -0.0268031 0)
(-8.80596e-05 0.00745422 0)
(-0.000601534 0.0139954 0)
(-0.00132191 0.0168053 0)
(-0.0021241 0.0179819 0)
(-0.00295876 0.0184625 0)
(-0.00380666 0.018652 0)
(-0.00465971 0.0187193 0)
(-0.00551453 0.0187338 0)
(-0.00636962 0.0187238 0)
(-0.00722434 0.0187008 0)
(-0.00807831 0.0186698 0)
(-0.00893133 0.0186328 0)
(-0.00978321 0.0185906 0)
(-0.0106338 0.0185436 0)
(-0.011483 0.0184919 0)
(-0.0123306 0.0184353 0)
(-0.0131765 0.018374 0)
(-0.0140205 0.0183077 0)
(-0.0148624 0.0182364 0)
(-0.0157022 0.0181599 0)
(-0.0165396 0.018078 0)
(-0.0173745 0.0179906 0)
(-0.0182066 0.0178976 0)
(-0.0190358 0.0177987 0)
(-0.0198619 0.0176938 0)
(-0.0206846 0.0175826 0)
(-0.0215038 0.017465 0)
(-0.0223193 0.0173408 0)
(-0.0231307 0.0172097 0)
(-0.0239379 0.0170715 0)
(-0.0247406 0.016926 0)
(-0.0255386 0.0167729 0)
(-0.0263315 0.016612 0)
(-0.0271191 0.0164429 0)
(-0.027901 0.0162655 0)
(-0.0286771 0.0160794 0)
(-0.0294469 0.0158843 0)
(-0.0302101 0.0156799 0)
(-0.0309663 0.015466 0)
(-0.0317152 0.0152421 0)
(-0.0324565 0.0150081 0)
(-0.0331897 0.0147634 0)
(-0.0339143 0.0145079 0)
(-0.0346301 0.0142411 0)
(-0.0353364 0.0139628 0)
(-0.0360329 0.0136724 0)
(-0.0367191 0.0133697 0)
(-0.0373944 0.0130543 0)
(-0.0380583 0.0127258 0)
(-0.0387102 0.0123838 0)
(-0.0393497 0.0120279 0)
(-0.0399761 0.0116578 0)
(-0.0405887 0.011273 0)
(-0.0411869 0.0108732 0)
(-0.0417701 0.0104579 0)
(-0.0423375 0.0100268 0)
(-0.0428885 0.00957946 0)
(-0.0434222 0.00911548 0)
(-0.043938 0.00863448 0)
(-0.0444348 0.00813605 0)
(-0.0449121 0.00761981 0)
(-0.0453687 0.00708539 0)
(-0.0458039 0.00653241 0)
(-0.0462167 0.00596051 0)
(-0.0466062 0.00536935 0)
(-0.0469713 0.00475859 0)
(-0.0473109 0.00412793 0)
(-0.0476241 0.00347708 0)
(-0.0479097 0.00280581 0)
(-0.0481665 0.0021139 0)
(-0.0483936 0.00140116 0)
(-0.0485897 0.000667281 0)
(-0.0487534 -8.80284e-05 0)
(-0.0488833 -0.000864981 0)
(-0.048978 -0.00166344 0)
(-0.049036 -0.00248327 0)
(-0.0490562 -0.0033244 0)
(-0.0490371 -0.00418672 0)
(-0.0489773 -0.00507009 0)
(-0.0488754 -0.00597427 0)
(-0.0487297 -0.00689901 0)
(-0.0485389 -0.00784396 0)
(-0.0483012 -0.00880873 0)
(-0.0480153 -0.00979286 0)
(-0.0476795 -0.0107958 0)
(-0.0472921 -0.0118171 0)
(-0.0468515 -0.0128562 0)
(-0.046356 -0.0139124 0)
(-0.0458042 -0.0149854 0)
(-0.0451942 -0.0160743 0)
(-0.0445245 -0.0171788 0)
(-0.0437934 -0.018298 0)
(-0.042999 -0.0194311 0)
(-0.0421399 -0.0205769 0)
(-0.0412143 -0.021734 0)
(-0.0402205 -0.0229001 0)
(-0.0391563 -0.0240716 0)
(-0.0380187 -0.0252399 0)
(-0.0368081 -0.0263822 0)
(-0.0355343 -0.0274356 0)
(-8.90128e-05 0.00762101 0)
(-0.000603724 0.0143119 0)
(-0.00132493 0.0171878 0)
(-0.00212943 0.0183926 0)
(-0.00296668 0.0188849 0)
(-0.00381716 0.019079 0)
(-0.00467282 0.0191481 0)
(-0.00553024 0.0191631 0)
(-0.00638798 0.019153 0)
(-0.00724536 0.0191298 0)
(-0.00810203 0.0190984 0)
(-0.00895779 0.0190609 0)
(-0.00981246 0.0190181 0)
(-0.0106659 0.0189705 0)
(-0.011518 0.018918 0)
(-0.0123685 0.0188606 0)
(-0.0132174 0.0187984 0)
(-0.0140645 0.0187312 0)
(-0.0149096 0.0186588 0)
(-0.0157526 0.0185812 0)
(-0.0165933 0.0184981 0)
(-0.0174315 0.0184095 0)
(-0.0182671 0.0183151 0)
(-0.0190999 0.0182147 0)
(-0.0199297 0.0181082 0)
(-0.0207562 0.0179954 0)
(-0.0215793 0.017876 0)
(-0.0223987 0.0177499 0)
(-0.0232143 0.0176168 0)
(-0.0240257 0.0174765 0)
(-0.0248327 0.0173287 0)
(-0.0256352 0.0171732 0)
(-0.0264327 0.0170097 0)
(-0.0272251 0.016838 0)
(-0.028012 0.0166577 0)
(-0.0287931 0.0164686 0)
(-0.0295681 0.0162703 0)
(-0.0303366 0.0160626 0)
(-0.0310984 0.0158452 0)
(-0.0318531 0.0156176 0)
(-0.0326002 0.0153797 0)
(-0.0333394 0.015131 0)
(-0.0340704 0.0148711 0)
(-0.0347925 0.0145998 0)
(-0.0355055 0.0143167 0)
(-0.0362088 0.0140213 0)
(-0.036902 0.0137134 0)
(-0.0375845 0.0133925 0)
(-0.0382558 0.0130582 0)
(-0.0389154 0.0127101 0)
(-0.0395627 0.0123479 0)
(-0.0401971 0.0119711 0)
(-0.040818 0.0115793 0)
(-0.0414247 0.0111722 0)
(-0.0420166 0.0107492 0)
(-0.042593 0.0103101 0)
(-0.0431531 0.00985433 0)
(-0.0436962 0.00938155 0)
(-0.0442215 0.00889133 0)
(-0.0447282 0.00838327 0)
(-0.0452154 0.00785695 0)
(-0.0456823 0.00731198 0)
(-0.0461279 0.00674798 0)
(-0.0465514 0.00616455 0)
(-0.0469517 0.00556135 0)
(-0.0473277 0.00493801 0)
(-0.0476786 0.00429421 0)
(-0.0480031 0.00362966 0)
(-0.0483003 0.00294409 0)
(-0.0485688 0.00223729 0)
(-0.0488077 0.00150903 0)
(-0.0490158 0.000758989 0)
(-0.0491918 -1.32054e-05 0)
(-0.0493338 -0.000807902 0)
(-0.0494405 -0.00162487 0)
(-0.0495105 -0.0024639 0)
(-0.0495426 -0.00332496 0)
(-0.0495354 -0.00420797 0)
(-0.0494873 -0.0051128 0)
(-0.0493969 -0.00603925 0)
(-0.0492626 -0.00698708 0)
(-0.0490828 -0.00795596 0)
(-0.0488559 -0.00894551 0)
(-0.0485803 -0.00995527 0)
(-0.0482544 -0.0109847 0)
(-0.0478764 -0.0120334 0)
(-0.0474446 -0.0131007 0)
(-0.0469574 -0.0141861 0)
(-0.0464129 -0.0152891 0)
(-0.0458096 -0.016409 0)
(-0.0451456 -0.0175452 0)
(-0.0444191 -0.0186971 0)
(-0.0436284 -0.0198639 0)
(-0.0427716 -0.0210442 0)
(-0.0418471 -0.0222366 0)
(-0.0408528 -0.0234391 0)
(-0.0397864 -0.0246481 0)
(-0.038645 -0.0258549 0)
(-0.0374299 -0.0270364 0)
(-0.0361525 -0.0281218 0)
(-1.6631e-05 -1.69603e-07 0)
(-1.62173e-05 -1.69989e-07 0)
(-1.57472e-05 -1.90206e-07 0)
(-1.52438e-05 -1.83203e-07 0)
(-1.47287e-05 -1.80887e-07 0)
(-1.4206e-05 -1.81251e-07 0)
(-1.36767e-05 -1.81857e-07 0)
(-1.31423e-05 -1.82793e-07 0)
(-1.26034e-05 -1.84185e-07 0)
(-1.20609e-05 -1.85318e-07 0)
(-1.15165e-05 -1.85116e-07 0)
(-1.09708e-05 -1.86734e-07 0)
(-1.04238e-05 -1.87493e-07 0)
(-9.87833e-06 -1.85248e-07 0)
(-9.33535e-06 -1.85584e-07 0)
(-8.79323e-06 -1.86375e-07 0)
(-8.25259e-06 -1.85434e-07 0)
(-7.71446e-06 -1.85102e-07 0)
(-7.17776e-06 -1.85703e-07 0)
(-6.64151e-06 -1.85581e-07 0)
(-6.10614e-06 -1.84683e-07 0)
(-5.57197e-06 -1.83975e-07 0)
(-5.03864e-06 -1.83384e-07 0)
(-4.50676e-06 -1.81747e-07 0)
(-3.97737e-06 -1.79666e-07 0)
(-3.44849e-06 -1.81169e-07 0)
(-2.91797e-06 -1.83541e-07 0)
(-2.38798e-06 -1.82576e-07 0)
(-1.86103e-06 -1.81901e-07 0)
(-1.33745e-06 -1.81282e-07 0)
(-8.1659e-07 -1.80734e-07 0)
(-2.97172e-07 -1.80794e-07 0)
(2.218e-07 -1.81295e-07 0)
(7.40446e-07 -1.81714e-07 0)
(1.25823e-06 -1.81582e-07 0)
(1.77499e-06 -1.81632e-07 0)
(2.29046e-06 -1.81284e-07 0)
(2.80438e-06 -1.80325e-07 0)
(3.3183e-06 -1.80577e-07 0)
(3.83432e-06 -1.8164e-07 0)
(4.35212e-06 -1.81361e-07 0)
(4.87082e-06 -1.81622e-07 0)
(5.39166e-06 -1.82895e-07 0)
(5.91589e-06 -1.83951e-07 0)
(6.44294e-06 -1.84889e-07 0)
(6.9694e-06 -1.83618e-07 0)
(7.49082e-06 -1.81447e-07 0)
(8.00674e-06 -1.80402e-07 0)
(8.51837e-06 -1.78632e-07 0)
(9.02559e-06 -1.76548e-07 0)
(9.52893e-06 -1.7484e-07 0)
(1.00288e-05 -1.73e-07 0)
(1.05252e-05 -1.71655e-07 0)
(1.10178e-05 -1.70461e-07 0)
(1.15066e-05 -1.68996e-07 0)
(1.19913e-05 -1.67591e-07 0)
(1.24726e-05 -1.66525e-07 0)
(1.29523e-05 -1.66692e-07 0)
(1.34356e-05 -1.69752e-07 0)
(1.39295e-05 -1.7542e-07 0)
(1.4438e-05 -1.81861e-07 0)
(1.49584e-05 -1.85349e-07 0)
(1.54782e-05 -1.78422e-07 0)
(1.59867e-05 -1.71429e-07 0)
(1.64857e-05 -1.69797e-07 0)
(1.69787e-05 -1.69254e-07 0)
(1.74671e-05 -1.67325e-07 0)
(1.79516e-05 -1.64848e-07 0)
(1.84336e-05 -1.64353e-07 0)
(1.89134e-05 -1.64115e-07 0)
(1.93885e-05 -1.61437e-07 0)
(1.98576e-05 -1.58098e-07 0)
(2.0324e-05 -1.57769e-07 0)
(2.07917e-05 -1.59668e-07 0)
(2.12608e-05 -1.59444e-07 0)
(2.17317e-05 -1.59809e-07 0)
(2.22084e-05 -1.62261e-07 0)
(2.26927e-05 -1.65031e-07 0)
(2.31834e-05 -1.67089e-07 0)
(2.36759e-05 -1.65254e-07 0)
(2.41648e-05 -1.61607e-07 0)
(2.46496e-05 -1.61266e-07 0)
(2.51304e-05 -1.59446e-07 0)
(2.56045e-05 -1.55558e-07 0)
(2.60737e-05 -1.54715e-07 0)
(2.65426e-05 -1.55391e-07 0)
(2.70106e-05 -1.54069e-07 0)
(2.74766e-05 -1.53385e-07 0)
(2.79467e-05 -1.57734e-07 0)
(2.84244e-05 -1.60549e-07 0)
(2.89002e-05 -1.52777e-07 0)
(2.93706e-05 -1.51899e-07 0)
(2.98387e-05 -1.51174e-07 0)
(3.02972e-05 -1.42766e-07 0)
(3.07436e-05 -1.40006e-07 0)
(3.11889e-05 -1.54832e-07 0)
(3.16282e-05 -1.52033e-07 0)
(3.20406e-05 -1.47304e-07 0)
(3.23966e-05 -1.109e-07 0)
(3.26911e-05 -1.11491e-07 0)
(-2.77437e-05 -6.19304e-07 0)
(-2.72376e-05 -7.25736e-07 0)
(-2.66104e-05 -8.15708e-07 0)
(-2.58983e-05 -8.59043e-07 0)
(-2.5115e-05 -8.86302e-07 0)
(-2.42927e-05 -9.04159e-07 0)
(-2.34493e-05 -9.16196e-07 0)
(-2.25935e-05 -9.25624e-07 0)
(-2.17306e-05 -9.32851e-07 0)
(-2.08638e-05 -9.38597e-07 0)
(-1.99947e-05 -9.39929e-07 0)
(-1.91264e-05 -9.42173e-07 0)
(-1.82604e-05 -9.42891e-07 0)
(-1.73961e-05 -9.37475e-07 0)
(-1.65352e-05 -9.3469e-07 0)
(-1.56796e-05 -9.32917e-07 0)
(-1.48292e-05 -9.27922e-07 0)
(-1.39845e-05 -9.23243e-07 0)
(-1.31456e-05 -9.21455e-07 0)
(-1.23105e-05 -9.2047e-07 0)
(-1.14765e-05 -9.18955e-07 0)
(-1.06426e-05 -9.18084e-07 0)
(-9.80819e-06 -9.18026e-07 0)
(-8.97262e-06 -9.15885e-07 0)
(-8.1362e-06 -9.12503e-07 0)
(-7.30141e-06 -9.13679e-07 0)
(-6.47221e-06 -9.14142e-07 0)
(-5.64955e-06 -9.08867e-07 0)
(-4.83342e-06 -9.02879e-07 0)
(-4.02506e-06 -8.96605e-07 0)
(-3.22326e-06 -8.92738e-07 0)
(-2.42595e-06 -8.90779e-07 0)
(-1.6327e-06 -8.89883e-07 0)
(-8.44004e-07 -8.88158e-07 0)
(-5.98724e-08 -8.85737e-07 0)
(7.20362e-07 -8.83808e-07 0)
(1.4966e-06 -8.81117e-07 0)
(2.27053e-06 -8.79321e-07 0)
(3.04522e-06 -8.81639e-07 0)
(3.82196e-06 -8.86344e-07 0)
(4.60088e-06 -8.88081e-07 0)
(5.38138e-06 -8.90075e-07 0)
(6.1635e-06 -8.95375e-07 0)
(6.94856e-06 -9.00779e-07 0)
(7.73608e-06 -9.03915e-07 0)
(8.52241e-06 -8.98618e-07 0)
(9.30228e-06 -8.87389e-07 0)
(1.00738e-05 -8.79615e-07 0)
(1.08397e-05 -8.72678e-07 0)
(1.16027e-05 -8.65878e-07 0)
(1.23644e-05 -8.61603e-07 0)
(1.31251e-05 -8.56388e-07 0)
(1.38831e-05 -8.50668e-07 0)
(1.46366e-05 -8.44346e-07 0)
(1.5385e-05 -8.37326e-07 0)
(1.61286e-05 -8.30815e-07 0)
(1.68677e-05 -8.25814e-07 0)
(1.76035e-05 -8.25411e-07 0)
(1.83398e-05 -8.36338e-07 0)
(1.90829e-05 -8.57187e-07 0)
(1.98355e-05 -8.79694e-07 0)
(2.0597e-05 -8.93119e-07 0)
(2.13663e-05 -8.83321e-07 0)
(2.21398e-05 -8.67187e-07 0)
(2.29094e-05 -8.55444e-07 0)
(2.36691e-05 -8.44488e-07 0)
(2.44223e-05 -8.37286e-07 0)
(2.51752e-05 -8.32243e-07 0)
(2.59275e-05 -8.29441e-07 0)
(2.66748e-05 -8.24362e-07 0)
(2.74159e-05 -8.15064e-07 0)
(2.81554e-05 -8.07904e-07 0)
(2.88973e-05 -8.07865e-07 0)
(2.96404e-05 -8.10839e-07 0)
(3.03831e-05 -8.11373e-07 0)
(3.11296e-05 -8.17786e-07 0)
(3.18852e-05 -8.30727e-07 0)
(3.26499e-05 -8.42372e-07 0)
(3.34212e-05 -8.51589e-07 0)
(3.41977e-05 -8.51038e-07 0)
(3.49761e-05 -8.4244e-07 0)
(3.57517e-05 -8.36675e-07 0)
(3.65235e-05 -8.28852e-07 0)
(3.72927e-05 -8.17597e-07 0)
(3.80622e-05 -8.15797e-07 0)
(3.88327e-05 -8.15721e-07 0)
(3.96006e-05 -8.10789e-07 0)
(4.03641e-05 -8.08461e-07 0)
(4.11273e-05 -8.20832e-07 0)
(4.18961e-05 -8.31281e-07 0)
(4.26754e-05 -8.23124e-07 0)
(4.34614e-05 -8.19208e-07 0)
(4.42448e-05 -8.11486e-07 0)
(4.50233e-05 -7.90054e-07 0)
(4.57922e-05 -7.7481e-07 0)
(4.65227e-05 -7.67717e-07 0)
(4.71869e-05 -7.18705e-07 0)
(4.77809e-05 -6.59938e-07 0)
(4.83071e-05 -5.3951e-07 0)
(4.87328e-05 -4.49624e-07 0)
(-3.21108e-05 -1.03115e-06 0)
(-3.15711e-05 -1.31108e-06 0)
(-3.08685e-05 -1.51701e-06 0)
(-3.00382e-05 -1.66815e-06 0)
(-2.91216e-05 -1.76367e-06 0)
(-2.81521e-05 -1.81957e-06 0)
(-2.71541e-05 -1.85178e-06 0)
(-2.61431e-05 -1.87147e-06 0)
(-2.51275e-05 -1.8826e-06 0)
(-2.4112e-05 -1.88938e-06 0)
(-2.30986e-05 -1.89085e-06 0)
(-2.20878e-05 -1.88944e-06 0)
(-2.10821e-05 -1.88648e-06 0)
(-2.00813e-05 -1.87935e-06 0)
(-1.90845e-05 -1.87139e-06 0)
(-1.80931e-05 -1.86323e-06 0)
(-1.71077e-05 -1.85288e-06 0)
(-1.61284e-05 -1.84154e-06 0)
(-1.51568e-05 -1.83238e-06 0)
(-1.4194e-05 -1.82686e-06 0)
(-1.32378e-05 -1.82377e-06 0)
(-1.22859e-05 -1.82239e-06 0)
(-1.1338e-05 -1.82231e-06 0)
(-1.03941e-05 -1.82099e-06 0)
(-9.45419e-06 -1.81748e-06 0)
(-8.51999e-06 -1.8133e-06 0)
(-7.59271e-06 -1.80525e-06 0)
(-6.67252e-06 -1.79309e-06 0)
(-5.76027e-06 -1.77854e-06 0)
(-4.85679e-06 -1.76315e-06 0)
(-3.9628e-06 -1.75149e-06 0)
(-3.0786e-06 -1.74245e-06 0)
(-2.20384e-06 -1.73446e-06 0)
(-1.33806e-06 -1.72561e-06 0)
(-4.79038e-07 -1.71843e-06 0)
(3.74682e-07 -1.71179e-06 0)
(1.22256e-06 -1.70431e-06 0)
(2.06691e-06 -1.70243e-06 0)
(2.91058e-06 -1.7057e-06 0)
(3.75076e-06 -1.70918e-06 0)
(4.58811e-06 -1.71298e-06 0)
(5.42668e-06 -1.71651e-06 0)
(6.26396e-06 -1.72121e-06 0)
(7.09711e-06 -1.72627e-06 0)
(7.92498e-06 -1.72692e-06 0)
(8.74892e-06 -1.71924e-06 0)
(9.57432e-06 -1.70498e-06 0)
(1.04005e-05 -1.69199e-06 0)
(1.12243e-05 -1.68288e-06 0)
(1.20488e-05 -1.67718e-06 0)
(1.28732e-05 -1.67212e-06 0)
(1.36941e-05 -1.66483e-06 0)
(1.45116e-05 -1.65564e-06 0)
(1.53256e-05 -1.64451e-06 0)
(1.61364e-05 -1.63307e-06 0)
(1.69452e-05 -1.6233e-06 0)
(1.77535e-05 -1.6156e-06 0)
(1.85623e-05 -1.61324e-06 0)
(1.93705e-05 -1.62367e-06 0)
(2.01753e-05 -1.64536e-06 0)
(2.09749e-05 -1.66856e-06 0)
(2.17716e-05 -1.68555e-06 0)
(2.25734e-05 -1.68771e-06 0)
(2.33869e-05 -1.68111e-06 0)
(2.42133e-05 -1.67162e-06 0)
(2.50499e-05 -1.6582e-06 0)
(2.58903e-05 -1.65034e-06 0)
(2.67291e-05 -1.64483e-06 0)
(2.75637e-05 -1.63705e-06 0)
(2.83928e-05 -1.62393e-06 0)
(2.92196e-05 -1.61223e-06 0)
(3.00518e-05 -1.61115e-06 0)
(3.08934e-05 -1.61721e-06 0)
(3.17415e-05 -1.62037e-06 0)
(3.25934e-05 -1.62245e-06 0)
(3.34507e-05 -1.63574e-06 0)
(3.43126e-05 -1.655e-06 0)
(3.51776e-05 -1.67105e-06 0)
(3.60451e-05 -1.68341e-06 0)
(3.69151e-05 -1.68791e-06 0)
(3.77907e-05 -1.68398e-06 0)
(3.86736e-05 -1.67873e-06 0)
(3.95643e-05 -1.6728e-06 0)
(4.04663e-05 -1.66733e-06 0)
(4.13797e-05 -1.67071e-06 0)
(4.2298e-05 -1.6702e-06 0)
(4.32157e-05 -1.66123e-06 0)
(4.41294e-05 -1.65351e-06 0)
(4.50369e-05 -1.66274e-06 0)
(4.59439e-05 -1.67991e-06 0)
(4.68615e-05 -1.68884e-06 0)
(4.77912e-05 -1.69166e-06 0)
(4.87273e-05 -1.68353e-06 0)
(4.9664e-05 -1.65944e-06 0)
(5.05877e-05 -1.61911e-06 0)
(5.1461e-05 -1.53096e-06 0)
(5.22561e-05 -1.39734e-06 0)
(5.29629e-05 -1.24864e-06 0)
(5.35754e-05 -1.05719e-06 0)
(5.40664e-05 -8.23374e-07 0)
(-3.44075e-05 -1.52335e-06 0)
(-3.37882e-05 -1.97283e-06 0)
(-3.30066e-05 -2.33105e-06 0)
(-3.20951e-05 -2.59192e-06 0)
(-3.10881e-05 -2.76209e-06 0)
(-3.00213e-05 -2.86241e-06 0)
(-2.89218e-05 -2.91724e-06 0)
(-2.7807e-05 -2.94591e-06 0)
(-2.66873e-05 -2.95906e-06 0)
(-2.55685e-05 -2.96296e-06 0)
(-2.44535e-05 -2.96131e-06 0)
(-2.33431e-05 -2.95525e-06 0)
(-2.22391e-05 -2.94545e-06 0)
(-2.1142e-05 -2.93321e-06 0)
(-2.00512e-05 -2.91995e-06 0)
(-1.8968e-05 -2.90472e-06 0)
(-1.78934e-05 -2.88722e-06 0)
(-1.68282e-05 -2.86783e-06 0)
(-1.57738e-05 -2.84827e-06 0)
(-1.47317e-05 -2.83185e-06 0)
(-1.37028e-05 -2.81933e-06 0)
(-1.2687e-05 -2.80944e-06 0)
(-1.16842e-05 -2.80069e-06 0)
(-1.06941e-05 -2.79118e-06 0)
(-9.71684e-06 -2.77883e-06 0)
(-8.75218e-06 -2.76507e-06 0)
(-7.79857e-06 -2.7487e-06 0)
(-6.8535e-06 -2.72913e-06 0)
(-5.91561e-06 -2.70673e-06 0)
(-4.98455e-06 -2.68341e-06 0)
(-4.06116e-06 -2.66212e-06 0)
(-3.1469e-06 -2.64331e-06 0)
(-2.24248e-06 -2.6255e-06 0)
(-1.3472e-06 -2.60821e-06 0)
(-4.60775e-07 -2.59377e-06 0)
(4.1662e-07 -2.58025e-06 0)
(1.2874e-06 -2.5674e-06 0)
(2.15191e-06 -2.56106e-06 0)
(3.00821e-06 -2.55971e-06 0)
(3.85795e-06 -2.55768e-06 0)
(4.70206e-06 -2.55816e-06 0)
(5.54018e-06 -2.55946e-06 0)
(6.37322e-06 -2.55942e-06 0)
(7.20127e-06 -2.55945e-06 0)
(8.02516e-06 -2.55541e-06 0)
(8.84636e-06 -2.54641e-06 0)
(9.66722e-06 -2.53527e-06 0)
(1.04897e-05 -2.52244e-06 0)
(1.13119e-05 -2.51206e-06 0)
(1.21306e-05 -2.50595e-06 0)
(1.29457e-05 -2.49811e-06 0)
(1.37588e-05 -2.48788e-06 0)
(1.45701e-05 -2.47594e-06 0)
(1.53803e-05 -2.46249e-06 0)
(1.61906e-05 -2.44999e-06 0)
(1.70022e-05 -2.44072e-06 0)
(1.78167e-05 -2.4352e-06 0)
(1.86363e-05 -2.43603e-06 0)
(1.94598e-05 -2.44539e-06 0)
(2.02803e-05 -2.45967e-06 0)
(2.10935e-05 -2.47551e-06 0)
(2.19015e-05 -2.49033e-06 0)
(2.27099e-05 -2.49977e-06 0)
(2.35249e-05 -2.50506e-06 0)
(2.43493e-05 -2.50845e-06 0)
(2.51833e-05 -2.50518e-06 0)
(2.60249e-05 -2.50058e-06 0)
(2.68712e-05 -2.49491e-06 0)
(2.77216e-05 -2.48619e-06 0)
(2.85788e-05 -2.47459e-06 0)
(2.94466e-05 -2.46932e-06 0)
(3.03241e-05 -2.47703e-06 0)
(3.12076e-05 -2.49044e-06 0)
(3.20982e-05 -2.50058e-06 0)
(3.30005e-05 -2.51165e-06 0)
(3.39122e-05 -2.53044e-06 0)
(3.48275e-05 -2.55155e-06 0)
(3.57476e-05 -2.57193e-06 0)
(3.66737e-05 -2.58691e-06 0)
(3.76037e-05 -2.59474e-06 0)
(3.85389e-05 -2.59852e-06 0)
(3.94856e-05 -2.60536e-06 0)
(4.04512e-05 -2.61561e-06 0)
(4.14357e-05 -2.6262e-06 0)
(4.24312e-05 -2.63825e-06 0)
(4.34321e-05 -2.64123e-06 0)
(4.44387e-05 -2.63439e-06 0)
(4.54532e-05 -2.62768e-06 0)
(4.64731e-05 -2.63374e-06 0)
(4.74911e-05 -2.65077e-06 0)
(4.85069e-05 -2.66749e-06 0)
(4.95262e-05 -2.67791e-06 0)
(5.05498e-05 -2.67314e-06 0)
(5.15714e-05 -2.64314e-06 0)
(5.25736e-05 -2.57274e-06 0)
(5.35274e-05 -2.41303e-06 0)
(5.44204e-05 -2.20613e-06 0)
(5.52508e-05 -1.97165e-06 0)
(5.59772e-05 -1.66636e-06 0)
(5.65177e-05 -1.24981e-06 0)
(-3.56902e-05 -2.05547e-06 0)
(-3.50542e-05 -2.69967e-06 0)
(-3.42276e-05 -3.20733e-06 0)
(-3.32604e-05 -3.5875e-06 0)
(-3.21902e-05 -3.83878e-06 0)
(-3.10559e-05 -3.98743e-06 0)
(-2.98866e-05 -4.06754e-06 0)
(-2.87011e-05 -4.10651e-06 0)
(-2.75109e-05 -4.1215e-06 0)
(-2.63217e-05 -4.1225e-06 0)
(-2.51365e-05 -4.11628e-06 0)
(-2.39573e-05 -4.10376e-06 0)
(-2.27861e-05 -4.08603e-06 0)
(-2.1623e-05 -4.0663e-06 0)
(-2.04694e-05 -4.0443e-06 0)
(-1.93276e-05 -4.01876e-06 0)
(-1.81984e-05 -3.9904e-06 0)
(-1.7082e-05 -3.95944e-06 0)
(-1.59785e-05 -3.9276e-06 0)
(-1.48882e-05 -3.8975e-06 0)
(-1.38125e-05 -3.87022e-06 0)
(-1.2753e-05 -3.84478e-06 0)
(-1.17111e-05 -3.81969e-06 0)
(-1.06877e-05 -3.79395e-06 0)
(-9.68144e-06 -3.76634e-06 0)
(-8.69045e-06 -3.73889e-06 0)
(-7.71275e-06 -3.71147e-06 0)
(-6.74654e-06 -3.68279e-06 0)
(-5.79016e-06 -3.65273e-06 0)
(-4.84232e-06 -3.62199e-06 0)
(-3.90333e-06 -3.59198e-06 0)
(-2.97468e-06 -3.56281e-06 0)
(-2.05792e-06 -3.534e-06 0)
(-1.15297e-06 -3.50676e-06 0)
(-2.5913e-07 -3.48183e-06 0)
(6.23552e-07 -3.45821e-06 0)
(1.49536e-06 -3.43726e-06 0)
(2.35686e-06 -3.42133e-06 0)
(3.20749e-06 -3.40989e-06 0)
(4.04781e-06 -3.40052e-06 0)
(4.8796e-06 -3.39321e-06 0)
(5.70386e-06 -3.38776e-06 0)
(6.5214e-06 -3.38194e-06 0)
(7.33264e-06 -3.37639e-06 0)
(8.1381e-06 -3.36838e-06 0)
(8.93936e-06 -3.35696e-06 0)
(9.73928e-06 -3.34642e-06 0)
(1.05397e-05 -3.33471e-06 0)
(1.13388e-05 -3.32167e-06 0)
(1.21332e-05 -3.31018e-06 0)
(1.2923e-05 -3.29949e-06 0)
(1.37116e-05 -3.28883e-06 0)
(1.45022e-05 -3.27776e-06 0)
(1.52967e-05 -3.26669e-06 0)
(1.60957e-05 -3.25738e-06 0)
(1.6899e-05 -3.25156e-06 0)
(1.77068e-05 -3.25079e-06 0)
(1.8519e-05 -3.25646e-06 0)
(1.9333e-05 -3.26633e-06 0)
(2.01456e-05 -3.27571e-06 0)
(2.09552e-05 -3.28633e-06 0)
(2.17617e-05 -3.29808e-06 0)
(2.25676e-05 -3.30964e-06 0)
(2.33778e-05 -3.32178e-06 0)
(2.4195e-05 -3.33352e-06 0)
(2.50204e-05 -3.33924e-06 0)
(2.58552e-05 -3.34248e-06 0)
(2.67006e-05 -3.34515e-06 0)
(2.75588e-05 -3.34677e-06 0)
(2.84316e-05 -3.3485e-06 0)
(2.9319e-05 -3.35681e-06 0)
(3.02174e-05 -3.37305e-06 0)
(3.11237e-05 -3.39311e-06 0)
(3.20405e-05 -3.41459e-06 0)
(3.29688e-05 -3.43747e-06 0)
(3.39057e-05 -3.46254e-06 0)
(3.48507e-05 -3.48937e-06 0)
(3.58044e-05 -3.51715e-06 0)
(3.67665e-05 -3.53895e-06 0)
(3.77379e-05 -3.55385e-06 0)
(3.87217e-05 -3.56862e-06 0)
(3.97213e-05 -3.59197e-06 0)
(4.07393e-05 -3.62329e-06 0)
(4.17759e-05 -3.65046e-06 0)
(4.28239e-05 -3.66961e-06 0)
(4.38769e-05 -3.67812e-06 0)
(4.49376e-05 -3.68054e-06 0)
(4.60094e-05 -3.68375e-06 0)
(4.70894e-05 -3.69348e-06 0)
(4.81733e-05 -3.7084e-06 0)
(4.92599e-05 -3.72603e-06 0)
(5.03487e-05 -3.73769e-06 0)
(5.14354e-05 -3.73066e-06 0)
(5.25106e-05 -3.68653e-06 0)
(5.35578e-05 -3.58164e-06 0)
(5.45746e-05 -3.37901e-06 0)
(5.55584e-05 -3.11906e-06 0)
(5.6462e-05 -2.79069e-06 0)
(5.71955e-05 -2.3043e-06 0)
(5.76964e-05 -1.64989e-06 0)
(-3.64059e-05 -2.57201e-06 0)
(-3.57633e-05 -3.44445e-06 0)
(-3.49126e-05 -4.12195e-06 0)
(-3.39052e-05 -4.63123e-06 0)
(-3.27903e-05 -4.9681e-06 0)
(-3.16103e-05 -5.16697e-06 0)
(-3.03952e-05 -5.27288e-06 0)
(-2.91644e-05 -5.32226e-06 0)
(-2.79289e-05 -5.339e-06 0)
(-2.66942e-05 -5.33769e-06 0)
(-2.54636e-05 -5.3262e-06 0)
(-2.42401e-05 -5.30611e-06 0)
(-2.30245e-05 -5.28014e-06 0)
(-2.18184e-05 -5.25067e-06 0)
(-2.06248e-05 -5.21626e-06 0)
(-1.94453e-05 -5.17708e-06 0)
(-1.82804e-05 -5.13487e-06 0)
(-1.71304e-05 -5.09003e-06 0)
(-1.5995e-05 -5.04452e-06 0)
(-1.48752e-05 -4.99921e-06 0)
(-1.37734e-05 -4.95453e-06 0)
(-1.26916e-05 -4.91012e-06 0)
(-1.16304e-05 -4.86504e-06 0)
(-1.05894e-05 -4.81997e-06 0)
(-9.56678e-06 -4.77517e-06 0)
(-8.5614e-06 -4.7318e-06 0)
(-7.57237e-06 -4.69051e-06 0)
(-6.59779e-06 -4.64965e-06 0)
(-5.6358e-06 -4.60924e-06 0)
(-4.68517e-06 -4.56871e-06 0)
(-3.74579e-06 -4.52819e-06 0)
(-2.81806e-06 -4.48735e-06 0)
(-1.90246e-06 -4.446e-06 0)
(-9.99337e-07 -4.40641e-06 0)
(-1.08083e-07 -4.36986e-06 0)
(7.72179e-07 -4.33479e-06 0)
(1.64139e-06 -4.30225e-06 0)
(2.49911e-06 -4.27501e-06 0)
(3.34509e-06 -4.25181e-06 0)
(4.17991e-06 -4.23234e-06 0)
(5.00488e-06 -4.21623e-06 0)
(5.82078e-06 -4.20256e-06 0)
(6.62835e-06 -4.18962e-06 0)
(7.42819e-06 -4.17739e-06 0)
(8.22139e-06 -4.16415e-06 0)
(9.0101e-06 -4.14953e-06 0)
(9.79608e-06 -4.13777e-06 0)
(1.05805e-05 -4.12539e-06 0)
(1.13629e-05 -4.10895e-06 0)
(1.21414e-05 -4.09221e-06 0)
(1.29165e-05 -4.07878e-06 0)
(1.36912e-05 -4.0694e-06 0)
(1.44687e-05 -4.06233e-06 0)
(1.52507e-05 -4.05648e-06 0)
(1.60374e-05 -4.05226e-06 0)
(1.68276e-05 -4.05036e-06 0)
(1.76208e-05 -4.05323e-06 0)
(1.84166e-05 -4.06172e-06 0)
(1.92145e-05 -4.07218e-06 0)
(2.00136e-05 -4.08124e-06 0)
(2.08125e-05 -4.09038e-06 0)
(2.16115e-05 -4.1015e-06 0)
(2.24137e-05 -4.1161e-06 0)
(2.32224e-05 -4.13431e-06 0)
(2.40384e-05 -4.15291e-06 0)
(2.48631e-05 -4.168e-06 0)
(2.56993e-05 -4.1827e-06 0)
(2.65485e-05 -4.19931e-06 0)
(2.74132e-05 -4.21759e-06 0)
(2.82938e-05 -4.23529e-06 0)
(2.91867e-05 -4.25562e-06 0)
(3.0088e-05 -4.27998e-06 0)
(3.0999e-05 -4.31016e-06 0)
(3.19231e-05 -4.34457e-06 0)
(3.28606e-05 -4.37843e-06 0)
(3.38097e-05 -4.41246e-06 0)
(3.4769e-05 -4.44872e-06 0)
(3.57378e-05 -4.48564e-06 0)
(3.67172e-05 -4.51869e-06 0)
(3.77122e-05 -4.54867e-06 0)
(3.87266e-05 -4.58074e-06 0)
(3.97595e-05 -4.62083e-06 0)
(4.08092e-05 -4.67e-06 0)
(4.18751e-05 -4.71355e-06 0)
(4.29521e-05 -4.73923e-06 0)
(4.40353e-05 -4.75347e-06 0)
(4.51274e-05 -4.76692e-06 0)
(4.62317e-05 -4.78169e-06 0)
(4.73482e-05 -4.8005e-06 0)
(4.84768e-05 -4.82256e-06 0)
(4.96145e-05 -4.84437e-06 0)
(5.0757e-05 -4.85549e-06 0)
(5.18958e-05 -4.84087e-06 0)
(5.30199e-05 -4.77769e-06 0)
(5.41196e-05 -4.64027e-06 0)
(5.51921e-05 -4.41017e-06 0)
(5.62173e-05 -4.08669e-06 0)
(5.71282e-05 -3.61475e-06 0)
(5.78467e-05 -2.90754e-06 0)
(5.83369e-05 -2.01559e-06 0)
(-3.68055e-05 -3.09744e-06 0)
(-3.61519e-05 -4.19839e-06 0)
(-3.52811e-05 -5.06724e-06 0)
(-3.42403e-05 -5.71115e-06 0)
(-3.30913e-05 -6.1345e-06 0)
(-3.18782e-05 -6.3831e-06 0)
(-3.06314e-05 -6.51389e-06 0)
(-2.937e-05 -6.57298e-06 0)
(-2.81043e-05 -6.59138e-06 0)
(-2.68401e-05 -6.58755e-06 0)
(-2.55809e-05 -6.57e-06 0)
(-2.43293e-05 -6.54223e-06 0)
(-2.30866e-05 -6.50732e-06 0)
(-2.18552e-05 -6.46611e-06 0)
(-2.06372e-05 -6.41791e-06 0)
(-1.94337e-05 -6.36402e-06 0)
(-1.82461e-05 -6.30621e-06 0)
(-1.70751e-05 -6.24559e-06 0)
(-1.59219e-05 -6.18331e-06 0)
(-1.47884e-05 -6.11915e-06 0)
(-1.36758e-05 -6.05419e-06 0)
(-1.25839e-05 -5.98896e-06 0)
(-1.15128e-05 -5.92285e-06 0)
(-1.0462e-05 -5.8579e-06 0)
(-9.43019e-06 -5.79522e-06 0)
(-8.41633e-06 -5.73397e-06 0)
(-7.42073e-06 -5.67561e-06 0)
(-6.44242e-06 -5.61968e-06 0)
(-5.47966e-06 -5.56563e-06 0)
(-4.53146e-06 -5.51227e-06 0)
(-3.59737e-06 -5.4588e-06 0)
(-2.67709e-06 -5.40518e-06 0)
(-1.77014e-06 -5.35119e-06 0)
(-8.75088e-07 -5.29984e-06 0)
(9.22998e-09 -5.25218e-06 0)
(8.83088e-07 -5.20669e-06 0)
(1.7475e-06 -5.16391e-06 0)
(2.60205e-06 -5.12546e-06 0)
(3.44569e-06 -5.0911e-06 0)
(4.27808e-06 -5.06058e-06 0)
(5.0991e-06 -5.03421e-06 0)
(5.91008e-06 -5.01134e-06 0)
(6.71212e-06 -4.98987e-06 0)
(7.50472e-06 -4.96904e-06 0)
(8.28853e-06 -4.9492e-06 0)
(9.0665e-06 -4.9306e-06 0)
(9.8404e-06 -4.9154e-06 0)
(1.06108e-05 -4.90053e-06 0)
(1.13786e-05 -4.88143e-06 0)
(1.21449e-05 -4.86211e-06 0)
(1.29111e-05 -4.84855e-06 0)
(1.36791e-05 -4.84148e-06 0)
(1.44499e-05 -4.83828e-06 0)
(1.52241e-05 -4.83675e-06 0)
(1.60003e-05 -4.83509e-06 0)
(1.67772e-05 -4.83482e-06 0)
(1.75567e-05 -4.84074e-06 0)
(1.83408e-05 -4.85208e-06 0)
(1.91275e-05 -4.86375e-06 0)
(1.9914e-05 -4.87282e-06 0)
(2.06998e-05 -4.88226e-06 0)
(2.14884e-05 -4.8968e-06 0)
(2.22846e-05 -4.9189e-06 0)
(2.30913e-05 -4.94633e-06 0)
(2.39089e-05 -4.97409e-06 0)
(2.47376e-05 -5.0006e-06 0)
(2.5578e-05 -5.02799e-06 0)
(2.64294e-05 -5.05758e-06 0)
(2.72915e-05 -5.08991e-06 0)
(2.81631e-05 -5.119e-06 0)
(2.90428e-05 -5.14754e-06 0)
(2.99327e-05 -5.18171e-06 0)
(3.08393e-05 -5.22828e-06 0)
(3.17663e-05 -5.2795e-06 0)
(3.27104e-05 -5.32666e-06 0)
(3.36682e-05 -5.37258e-06 0)
(3.46392e-05 -5.42036e-06 0)
(3.56219e-05 -5.46776e-06 0)
(3.66157e-05 -5.51412e-06 0)
(3.76258e-05 -5.5635e-06 0)
(3.86578e-05 -5.617e-06 0)
(3.97113e-05 -5.67457e-06 0)
(4.07801e-05 -5.738e-06 0)
(4.18588e-05 -5.79339e-06 0)
(4.29464e-05 -5.82762e-06 0)
(4.40458e-05 -5.85176e-06 0)
(4.51579e-05 -5.87685e-06 0)
(4.62843e-05 -5.90613e-06 0)
(4.74292e-05 -5.94185e-06 0)
(4.85922e-05 -5.97771e-06 0)
(4.97673e-05 -6.00686e-06 0)
(5.0948e-05 -6.01905e-06 0)
(5.21246e-05 -5.99467e-06 0)
(5.32812e-05 -5.90695e-06 0)
(5.44062e-05 -5.73648e-06 0)
(5.54954e-05 -5.46874e-06 0)
(5.65358e-05 -5.07066e-06 0)
(5.74731e-05 -4.44324e-06 0)
(5.82229e-05 -3.52097e-06 0)
(5.87543e-05 -2.41412e-06 0)
(-3.70462e-05 -3.63912e-06 0)
(-3.63766e-05 -4.96576e-06 0)
(-3.54847e-05 -6.03911e-06 0)
(-3.44173e-05 -6.8208e-06 0)
(-3.32398e-05 -7.33027e-06 0)
(-3.1999e-05 -7.62717e-06 0)
(-3.0726e-05 -7.7814e-06 0)
(-2.94392e-05 -7.84954e-06 0)
(-2.81489e-05 -7.86885e-06 0)
(-2.68611e-05 -7.86139e-06 0)
(-2.55797e-05 -7.83685e-06 0)
(-2.43076e-05 -7.80007e-06 0)
(-2.3047e-05 -7.75423e-06 0)
(-2.17997e-05 -7.69977e-06 0)
(-2.05676e-05 -7.63689e-06 0)
(-1.93519e-05 -7.56711e-06 0)
(-1.81538e-05 -7.49211e-06 0)
(-1.69744e-05 -7.41337e-06 0)
(-1.5815e-05 -7.33123e-06 0)
(-1.46762e-05 -7.24611e-06 0)
(-1.35585e-05 -7.16e-06 0)
(-1.24617e-05 -7.07408e-06 0)
(-1.13852e-05 -6.98756e-06 0)
(-1.03286e-05 -6.90251e-06 0)
(-9.29187e-06 -6.82118e-06 0)
(-8.27364e-06 -6.74176e-06 0)
(-7.27358e-06 -6.66493e-06 0)
(-6.29121e-06 -6.59206e-06 0)
(-5.32545e-06 -6.52207e-06 0)
(-4.37636e-06 -6.45289e-06 0)
(-3.44326e-06 -6.38466e-06 0)
(-2.52479e-06 -6.31694e-06 0)
(-1.621e-06 -6.24909e-06 0)
(-7.30592e-07 -6.18662e-06 0)
(1.49097e-07 -6.12888e-06 0)
(1.01816e-06 -6.0728e-06 0)
(1.87616e-06 -6.02032e-06 0)
(2.72316e-06 -5.97087e-06 0)
(3.55811e-06 -5.92484e-06 0)
(4.38057e-06 -5.88247e-06 0)
(5.19131e-06 -5.84495e-06 0)
(5.99187e-06 -5.81273e-06 0)
(6.78343e-06 -5.78224e-06 0)
(7.56634e-06 -5.75239e-06 0)
(8.34191e-06 -5.72549e-06 0)
(9.11195e-06 -5.70212e-06 0)
(9.87782e-06 -5.68287e-06 0)
(1.06408e-05 -5.66517e-06 0)
(1.14018e-05 -5.64434e-06 0)
(1.21613e-05 -5.62395e-06 0)
(1.29191e-05 -5.61054e-06 0)
(1.36759e-05 -5.60465e-06 0)
(1.44329e-05 -5.60335e-06 0)
(1.51901e-05 -5.60321e-06 0)
(1.59472e-05 -5.60156e-06 0)
(1.6706e-05 -5.60303e-06 0)
(1.74705e-05 -5.61465e-06 0)
(1.82427e-05 -5.6319e-06 0)
(1.90204e-05 -5.64589e-06 0)
(1.98001e-05 -5.65513e-06 0)
(2.05822e-05 -5.6668e-06 0)
(2.13704e-05 -5.68846e-06 0)
(2.21689e-05 -5.72148e-06 0)
(2.29784e-05 -5.76014e-06 0)
(2.3797e-05 -5.79767e-06 0)
(2.46233e-05 -5.83398e-06 0)
(2.54575e-05 -5.87168e-06 0)
(2.63006e-05 -5.91113e-06 0)
(2.71519e-05 -5.95196e-06 0)
(2.8012e-05 -5.98962e-06 0)
(2.88846e-05 -6.02884e-06 0)
(2.97749e-05 -6.07967e-06 0)
(3.06853e-05 -6.14656e-06 0)
(3.16128e-05 -6.21562e-06 0)
(3.25563e-05 -6.27862e-06 0)
(3.35181e-05 -6.34116e-06 0)
(3.44971e-05 -6.40366e-06 0)
(3.54892e-05 -6.46275e-06 0)
(3.64946e-05 -6.52296e-06 0)
(3.75174e-05 -6.59112e-06 0)
(3.85597e-05 -6.66508e-06 0)
(3.96212e-05 -6.741e-06 0)
(4.0697e-05 -6.81604e-06 0)
(4.17826e-05 -6.88072e-06 0)
(4.28807e-05 -6.92759e-06 0)
(4.39928e-05 -6.96502e-06 0)
(4.51206e-05 -7.00533e-06 0)
(4.62686e-05 -7.05432e-06 0)
(4.74369e-05 -7.10959e-06 0)
(4.86204e-05 -7.15869e-06 0)
(4.9813e-05 -7.19458e-06 0)
(5.10109e-05 -7.20873e-06 0)
(5.22043e-05 -7.17272e-06 0)
(5.33782e-05 -7.05852e-06 0)
(5.45309e-05 -6.85761e-06 0)
(5.56434e-05 -6.53415e-06 0)
(5.67084e-05 -6.08162e-06 0)
(5.7692e-05 -5.31689e-06 0)
(5.84888e-05 -4.1698e-06 0)
(5.9035e-05 -2.83323e-06 0)
(-3.72223e-05 -4.18956e-06 0)
(-3.65398e-05 -5.75283e-06 0)
(-3.56265e-05 -7.03194e-06 0)
(-3.4537e-05 -7.95546e-06 0)
(-3.33336e-05 -8.55224e-06 0)
(-3.20663e-05 -8.89664e-06 0)
(-3.07674e-05 -9.0734e-06 0)
(-2.94557e-05 -9.14981e-06 0)
(-2.81415e-05 -9.16918e-06 0)
(-2.68313e-05 -9.15659e-06 0)
(-2.55298e-05 -9.12315e-06 0)
(-2.42399e-05 -9.07484e-06 0)
(-2.29643e-05 -9.01529e-06 0)
(-2.17052e-05 -8.9451e-06 0)
(-2.0464e-05 -8.86528e-06 0)
(-1.92414e-05 -8.77765e-06 0)
(-1.8038e-05 -8.68379e-06 0)
(-1.6855e-05 -8.5849e-06 0)
(-1.56929e-05 -8.48187e-06 0)
(-1.45518e-05 -8.37595e-06 0)
(-1.34316e-05 -8.26869e-06 0)
(-1.23329e-05 -8.16166e-06 0)
(-1.12548e-05 -8.05543e-06 0)
(-1.0196e-05 -7.95086e-06 0)
(-9.15661e-06 -7.84988e-06 0)
(-8.13683e-06 -7.75206e-06 0)
(-7.13535e-06 -7.65722e-06 0)
(-6.15145e-06 -7.56699e-06 0)
(-5.18531e-06 -7.47972e-06 0)
(-4.23736e-06 -7.39287e-06 0)
(-3.30688e-06 -7.30859e-06 0)
(-2.39216e-06 -7.22609e-06 0)
(-1.49168e-06 -7.14402e-06 0)
(-6.04858e-07 -7.06879e-06 0)
(2.68429e-07 -6.99965e-06 0)
(1.12956e-06 -6.93228e-06 0)
(1.97955e-06 -6.86868e-06 0)
(2.81834e-06 -6.80792e-06 0)
(3.64593e-06 -6.74983e-06 0)
(4.46163e-06 -6.69515e-06 0)
(5.26546e-06 -6.64642e-06 0)
(6.05904e-06 -6.60481e-06 0)
(6.84356e-06 -6.56552e-06 0)
(7.61973e-06 -6.52778e-06 0)
(8.3889e-06 -6.49474e-06 0)
(9.15266e-06 -6.4666e-06 0)
(9.91217e-06 -6.44365e-06 0)
(1.06678e-05 -6.42288e-06 0)
(1.142e-05 -6.39991e-06 0)
(1.21704e-05 -6.37794e-06 0)
(1.29195e-05 -6.36292e-06 0)
(1.36674e-05 -6.35596e-06 0)
(1.44143e-05 -6.35415e-06 0)
(1.51605e-05 -6.35338e-06 0)
(1.59078e-05 -6.35301e-06 0)
(1.66601e-05 -6.35969e-06 0)
(1.74196e-05 -6.37879e-06 0)
(1.81844e-05 -6.40234e-06 0)
(1.8952e-05 -6.41974e-06 0)
(1.97231e-05 -6.4326e-06 0)
(2.0502e-05 -6.45133e-06 0)
(2.12919e-05 -6.48337e-06 0)
(2.2092e-05 -6.52674e-06 0)
(2.28985e-05 -6.57288e-06 0)
(2.37092e-05 -6.61659e-06 0)
(2.45266e-05 -6.66041e-06 0)
(2.53531e-05 -6.70681e-06 0)
(2.61883e-05 -6.75466e-06 0)
(2.70315e-05 -6.8027e-06 0)
(2.78852e-05 -6.85165e-06 0)
(2.87564e-05 -6.9091e-06 0)
(2.96501e-05 -6.982e-06 0)
(3.05626e-05 -7.06659e-06 0)
(3.14898e-05 -7.15052e-06 0)
(3.24336e-05 -7.23178e-06 0)
(3.33952e-05 -7.31266e-06 0)
(3.43708e-05 -7.38923e-06 0)
(3.53596e-05 -7.46191e-06 0)
(3.63666e-05 -7.53995e-06 0)
(3.73954e-05 -7.62767e-06 0)
(3.84457e-05 -7.72105e-06 0)
(3.95163e-05 -7.81578e-06 0)
(4.06004e-05 -7.90082e-06 0)
(4.1693e-05 -7.97551e-06 0)
(4.27979e-05 -8.03775e-06 0)
(4.39207e-05 -8.09158e-06 0)
(4.50653e-05 -8.15318e-06 0)
(4.62301e-05 -8.221e-06 0)
(4.74102e-05 -8.29162e-06 0)
(4.86048e-05 -8.35235e-06 0)
(4.98126e-05 -8.39687e-06 0)
(5.10301e-05 -8.41615e-06 0)
(5.22449e-05 -8.36762e-06 0)
(5.34327e-05 -8.22349e-06 0)
(5.46068e-05 -8.01543e-06 0)
(5.57784e-05 -7.6464e-06 0)
(5.69015e-05 -7.13031e-06 0)
(5.78959e-05 -6.21158e-06 0)
(5.87028e-05 -4.85248e-06 0)
(5.92823e-05 -3.26069e-06 0)
(-3.74035e-05 -4.74247e-06 0)
(-3.6709e-05 -6.5598e-06 0)
(-3.57742e-05 -8.045e-06 0)
(-3.46592e-05 -9.11484e-06 0)
(-3.34276e-05 -9.80095e-06 0)
(-3.2131e-05 -1.01932e-05 0)
(-3.08027e-05 -1.03921e-05 0)
(-2.94627e-05 -1.04755e-05 0)
(-2.81226e-05 -1.04932e-05 0)
(-2.67894e-05 -1.0473e-05 0)
(-2.54677e-05 -1.04281e-05 0)
(-2.41605e-05 -1.03654e-05 0)
(-2.28709e-05 -1.02888e-05 0)
(-2.16008e-05 -1.01999e-05 0)
(-2.0351e-05 -1.01007e-05 0)
(-1.9122e-05 -9.99319e-06 0)
(-1.79144e-05 -9.87865e-06 0)
(-1.67284e-05 -9.75852e-06 0)
(-1.5564e-05 -9.6342e-06 0)
(-1.44214e-05 -9.50709e-06 0)
(-1.33002e-05 -9.37878e-06 0)
(-1.22e-05 -9.25052e-06 0)
(-1.11207e-05 -9.12414e-06 0)
(-1.00613e-05 -9.00062e-06 0)
(-9.02135e-06 -8.8799e-06 0)
(-8.00109e-06 -8.76276e-06 0)
(-6.99992e-06 -8.6499e-06 0)
(-6.01705e-06 -8.54178e-06 0)
(-5.05319e-06 -8.43562e-06 0)
(-4.10874e-06 -8.33033e-06 0)
(-3.18175e-06 -8.22947e-06 0)
(-2.27085e-06 -8.13134e-06 0)
(-1.37523e-06 -8.0352e-06 0)
(-4.93843e-07 -7.94588e-06 0)
(3.7301e-07 -7.86267e-06 0)
(1.22671e-06 -7.78387e-06 0)
(2.06918e-06 -7.70893e-06 0)
(2.90038e-06 -7.63698e-06 0)
(3.72065e-06 -7.56803e-06 0)
(4.53022e-06 -7.50176e-06 0)
(5.32913e-06 -7.44225e-06 0)
(6.1179e-06 -7.39098e-06 0)
(6.89711e-06 -7.34268e-06 0)
(7.66813e-06 -7.29745e-06 0)
(8.43228e-06 -7.25807e-06 0)
(9.19025e-06 -7.22474e-06 0)
(9.94292e-06 -7.19751e-06 0)
(1.0691e-05 -7.17266e-06 0)
(1.14356e-05 -7.14697e-06 0)
(1.21787e-05 -7.12366e-06 0)
(1.2921e-05 -7.10746e-06 0)
(1.36627e-05 -7.09931e-06 0)
(1.44038e-05 -7.0966e-06 0)
(1.51453e-05 -7.0965e-06 0)
(1.58906e-05 -7.10069e-06 0)
(1.66427e-05 -7.11487e-06 0)
(1.74e-05 -7.13915e-06 0)
(1.81579e-05 -7.16433e-06 0)
(1.8916e-05 -7.18431e-06 0)
(1.968e-05 -7.20475e-06 0)
(2.04558e-05 -7.23516e-06 0)
(2.12433e-05 -7.27783e-06 0)
(2.20366e-05 -7.3268e-06 0)
(2.28319e-05 -7.37585e-06 0)
(2.36319e-05 -7.42537e-06 0)
(2.44413e-05 -7.47839e-06 0)
(2.52604e-05 -7.53369e-06 0)
(2.60875e-05 -7.58941e-06 0)
(2.69248e-05 -7.6479e-06 0)
(2.77798e-05 -7.71426e-06 0)
(2.86576e-05 -7.79461e-06 0)
(2.95552e-05 -7.88742e-06 0)
(3.04663e-05 -7.98575e-06 0)
(3.13908e-05 -8.08468e-06 0)
(3.23315e-05 -8.18351e-06 0)
(3.32863e-05 -8.27878e-06 0)
(3.42539e-05 -8.36837e-06 0)
(3.52394e-05 -8.4596e-06 0)
(3.6249e-05 -8.56054e-06 0)
(3.72826e-05 -8.67017e-06 0)
(3.83385e-05 -8.78505e-06 0)
(3.9414e-05 -8.89823e-06 0)
(4.05037e-05 -8.99351e-06 0)
(4.16024e-05 -9.07638e-06 0)
(4.27124e-05 -9.15403e-06 0)
(4.3841e-05 -9.22834e-06 0)
(4.49913e-05 -9.31252e-06 0)
(4.61638e-05 -9.399e-06 0)
(4.73598e-05 -9.48735e-06 0)
(4.85785e-05 -9.56467e-06 0)
(4.98132e-05 -9.6208e-06 0)
(5.10527e-05 -9.64427e-06 0)
(5.22902e-05 -9.58832e-06 0)
(5.35131e-05 -9.41373e-06 0)
(5.4719e-05 -9.20372e-06 0)
(5.59128e-05 -8.8092e-06 0)
(5.70454e-05 -8.19366e-06 0)
(5.80631e-05 -7.12731e-06 0)
(5.89045e-05 -5.56589e-06 0)
(5.94881e-05 -3.71247e-06 0)
(-3.7604e-05 -5.30227e-06 0)
(-3.68978e-05 -7.38311e-06 0)
(-3.59411e-05 -9.08279e-06 0)
(-3.4796e-05 -1.03027e-05 0)
(-3.35318e-05 -1.10801e-05 0)
(-3.2201e-05 -1.15214e-05 0)
(-3.08387e-05 -1.17418e-05 0)
(-2.94667e-05 -1.18302e-05 0)
(-2.80977e-05 -1.18431e-05 0)
(-2.67394e-05 -1.18118e-05 0)
(-2.53962e-05 -1.17523e-05 0)
(-2.4071e-05 -1.16721e-05 0)
(-2.27667e-05 -1.15751e-05 0)
(-2.14847e-05 -1.14649e-05 0)
(-2.02253e-05 -1.13439e-05 0)
(-1.89893e-05 -1.1214e-05 0)
(-1.7777e-05 -1.10768e-05 0)
(-1.6588e-05 -1.09345e-05 0)
(-1.54213e-05 -1.07884e-05 0)
(-1.4277e-05 -1.06392e-05 0)
(-1.31553e-05 -1.04895e-05 0)
(-1.20546e-05 -1.03409e-05 0)
(-1.09742e-05 -1.01939e-05 0)
(-9.91472e-06 -1.00502e-05 0)
(-8.87595e-06 -9.90985e-06 0)
(-7.85686e-06 -9.77312e-06 0)
(-6.85737e-06 -9.64107e-06 0)
(-5.87761e-06 -9.51403e-06 0)
(-4.91792e-06 -9.38788e-06 0)
(-3.9785e-06 -9.26336e-06 0)
(-3.05698e-06 -9.14641e-06 0)
(-2.15105e-06 -9.03236e-06 0)
(-1.26036e-06 -8.92116e-06 0)
(-3.84349e-07 -8.81735e-06 0)
(4.77068e-07 -8.71918e-06 0)
(1.32477e-06 -8.6282e-06 0)
(2.16068e-06 -8.54209e-06 0)
(2.98525e-06 -8.45873e-06 0)
(3.79842e-06 -8.379e-06 0)
(4.60136e-06 -8.30268e-06 0)
(5.39485e-06 -8.23333e-06 0)
(6.17832e-06 -8.17209e-06 0)
(6.95225e-06 -8.11489e-06 0)
(7.71832e-06 -8.06238e-06 0)
(8.4774e-06 -8.01619e-06 0)
(9.22979e-06 -7.97672e-06 0)
(9.97601e-06 -7.94416e-06 0)
(1.0717e-05 -7.91495e-06 0)
(1.14548e-05 -7.88695e-06 0)
(1.21916e-05 -7.86298e-06 0)
(1.29289e-05 -7.8466e-06 0)
(1.36668e-05 -7.83848e-06 0)
(1.44056e-05 -7.83643e-06 0)
(1.51466e-05 -7.83912e-06 0)
(1.58918e-05 -7.84907e-06 0)
(1.66411e-05 -7.86852e-06 0)
(1.7391e-05 -7.89336e-06 0)
(1.81392e-05 -7.91714e-06 0)
(1.88886e-05 -7.94047e-06 0)
(1.96463e-05 -7.97127e-06 0)
(2.0416e-05 -8.01405e-06 0)
(2.11945e-05 -8.06395e-06 0)
(2.1976e-05 -8.11484e-06 0)
(2.27608e-05 -8.16739e-06 0)
(2.35535e-05 -8.22585e-06 0)
(2.4357e-05 -8.28934e-06 0)
(2.51698e-05 -8.35333e-06 0)
(2.59925e-05 -8.41921e-06 0)
(2.68319e-05 -8.49539e-06 0)
(2.76942e-05 -8.58492e-06 0)
(2.85759e-05 -8.68455e-06 0)
(2.9469e-05 -8.7899e-06 0)
(3.03717e-05 -8.89946e-06 0)
(3.12881e-05 -9.01374e-06 0)
(3.22198e-05 -9.12758e-06 0)
(3.3165e-05 -9.23555e-06 0)
(3.41267e-05 -9.34217e-06 0)
(3.51111e-05 -9.45736e-06 0)
(3.61206e-05 -9.58286e-06 0)
(3.71535e-05 -9.71522e-06 0)
(3.82085e-05 -9.8519e-06 0)
(3.92819e-05 -9.98172e-06 0)
(4.037e-05 -1.009e-05 0)
(4.1472e-05 -1.0183e-05 0)
(4.25884e-05 -1.0276e-05 0)
(4.37243e-05 -1.0372e-05 0)
(4.48834e-05 -1.0478e-05 0)
(4.60697e-05 -1.0591e-05 0)
(4.72875e-05 -1.07073e-05 0)
(4.8532e-05 -1.08062e-05 0)
(4.97944e-05 -1.08753e-05 0)
(5.10614e-05 -1.08971e-05 0)
(5.23196e-05 -1.08326e-05 0)
(5.35649e-05 -1.06369e-05 0)
(5.47894e-05 -1.04036e-05 0)
(5.59999e-05 -9.9897e-06 0)
(5.71838e-05 -9.29293e-06 0)
(5.82363e-05 -8.0667e-06 0)
(5.90478e-05 -6.25931e-06 0)
(5.95697e-05 -4.11425e-06 0)
(-3.78055e-05 -5.8677e-06 0)
(-3.70889e-05 -8.22253e-06 0)
(-3.61065e-05 -1.01497e-05 0)
(-3.49261e-05 -1.15248e-05 0)
(-3.36225e-05 -1.23961e-05 0)
(-3.22519e-05 -1.28865e-05 0)
(-3.08521e-05 -1.31262e-05 0)
(-2.94465e-05 -1.32161e-05 0)
(-2.80483e-05 -1.32202e-05 0)
(-2.66648e-05 -1.31741e-05 0)
(-2.53001e-05 -1.30965e-05 0)
(-2.39569e-05 -1.29953e-05 0)
(-2.26374e-05 -1.28751e-05 0)
(-2.13425e-05 -1.27412e-05 0)
(-2.00727e-05 -1.2596e-05 0)
(-1.88286e-05 -1.24413e-05 0)
(-1.76102e-05 -1.22795e-05 0)
(-1.6417e-05 -1.21135e-05 0)
(-1.5248e-05 -1.19446e-05 0)
(-1.41022e-05 -1.17727e-05 0)
(-1.29795e-05 -1.16003e-05 0)
(-1.18799e-05 -1.14307e-05 0)
(-1.08012e-05 -1.12637e-05 0)
(-9.74332e-06 -1.10984e-05 0)
(-8.70774e-06 -1.09368e-05 0)
(-7.69325e-06 -1.07806e-05 0)
(-6.69821e-06 -1.06288e-05 0)
(-5.72412e-06 -1.04808e-05 0)
(-4.77145e-06 -1.03344e-05 0)
(-3.8389e-06 -1.01901e-05 0)
(-2.92497e-06 -1.00565e-05 0)
(-2.02696e-06 -9.92746e-06 0)
(-1.14275e-06 -9.80184e-06 0)
(-2.72191e-07 -9.68354e-06 0)
(5.8529e-07 -9.57169e-06 0)
(1.42946e-06 -9.46696e-06 0)
(2.25967e-06 -9.36866e-06 0)
(3.07778e-06 -9.27405e-06 0)
(3.88539e-06 -9.18379e-06 0)
(4.68345e-06 -9.09829e-06 0)
(5.47163e-06 -9.01903e-06 0)
(6.24895e-06 -8.94747e-06 0)
(7.01653e-06 -8.88163e-06 0)
(7.77618e-06 -8.82169e-06 0)
(8.52868e-06 -8.76838e-06 0)
(9.27447e-06 -8.72238e-06 0)
(1.00139e-05 -8.6839e-06 0)
(1.07484e-05 -8.65051e-06 0)
(1.14803e-05 -8.62093e-06 0)
(1.2212e-05 -8.59709e-06 0)
(1.29443e-05 -8.5814e-06 0)
(1.36774e-05 -8.57418e-06 0)
(1.44112e-05 -8.5737e-06 0)
(1.51463e-05 -8.57924e-06 0)
(1.58834e-05 -8.59264e-06 0)
(1.66215e-05 -8.61341e-06 0)
(1.73594e-05 -8.6369e-06 0)
(1.80978e-05 -8.66082e-06 0)
(1.88408e-05 -8.68984e-06 0)
(1.95927e-05 -8.73138e-06 0)
(2.03543e-05 -8.78413e-06 0)
(2.11223e-05 -8.83891e-06 0)
(2.1895e-05 -8.89317e-06 0)
(2.26748e-05 -8.95293e-06 0)
(2.34647e-05 -9.02185e-06 0)
(2.42643e-05 -9.09506e-06 0)
(2.50733e-05 -9.16859e-06 0)
(2.58959e-05 -9.24979e-06 0)
(2.67385e-05 -9.34821e-06 0)
(2.75994e-05 -9.45694e-06 0)
(2.84717e-05 -9.56796e-06 0)
(2.93529e-05 -9.68211e-06 0)
(3.0246e-05 -9.80417e-06 0)
(3.11538e-05 -9.93355e-06 0)
(3.2076e-05 -1.00615e-05 0)
(3.3014e-05 -1.01854e-05 0)
(3.39728e-05 -1.0314e-05 0)
(3.49554e-05 -1.04539e-05 0)
(3.5961e-05 -1.06027e-05 0)
(3.69898e-05 -1.07585e-05 0)
(3.80407e-05 -1.09161e-05 0)
(3.91085e-05 -1.10607e-05 0)
(4.0191e-05 -1.11838e-05 0)
(4.12913e-05 -1.12933e-05 0)
(4.24116e-05 -1.14037e-05 0)
(4.35562e-05 -1.15247e-05 0)
(4.47334e-05 -1.16601e-05 0)
(4.59454e-05 -1.18051e-05 0)
(4.71835e-05 -1.19476e-05 0)
(4.84387e-05 -1.20661e-05 0)
(4.97087e-05 -1.21488e-05 0)
(5.09766e-05 -1.21601e-05 0)
(5.22296e-05 -1.20819e-05 0)
(5.3489e-05 -1.18859e-05 0)
(5.47632e-05 -1.16372e-05 0)
(5.60505e-05 -1.12246e-05 0)
(5.72721e-05 -1.04257e-05 0)
(5.82997e-05 -8.97864e-06 0)
(5.90848e-05 -6.9075e-06 0)
(5.96166e-05 -4.48294e-06 0)
(-3.80025e-05 -6.43301e-06 0)
(-3.72713e-05 -9.08417e-06 0)
(-3.62582e-05 -1.12483e-05 0)
(-3.50406e-05 -1.2786e-05 0)
(-3.36946e-05 -1.37538e-05 0)
(-3.2282e-05 -1.42917e-05 0)
(-3.08435e-05 -1.45471e-05 0)
(-2.94035e-05 -1.46341e-05 0)
(-2.79754e-05 -1.46249e-05 0)
(-2.65663e-05 -1.456e-05 0)
(-2.518e-05 -1.44605e-05 0)
(-2.38183e-05 -1.43355e-05 0)
(-2.24827e-05 -1.41898e-05 0)
(-2.11744e-05 -1.40297e-05 0)
(-1.98937e-05 -1.3858e-05 0)
(-1.86406e-05 -1.36766e-05 0)
(-1.74152e-05 -1.34882e-05 0)
(-1.6217e-05 -1.32961e-05 0)
(-1.50453e-05 -1.31024e-05 0)
(-1.38986e-05 -1.29072e-05 0)
(-1.27755e-05 -1.27113e-05 0)
(-1.16764e-05 -1.25183e-05 0)
(-1.06015e-05 -1.23296e-05 0)
(-9.54887e-06 -1.21429e-05 0)
(-8.51742e-06 -1.19593e-05 0)
(-7.50811e-06 -1.17818e-05 0)
(-6.52101e-06 -1.16094e-05 0)
(-5.5555e-06 -1.14395e-05 0)
(-4.61142e-06 -1.12723e-05 0)
(-3.68714e-06 -1.11089e-05 0)
(-2.78102e-06 -1.09577e-05 0)
(-1.89178e-06 -1.08135e-05 0)
(-1.01615e-06 -1.06756e-05 0)
(-1.52066e-07 -1.05446e-05 0)
(7.00475e-07 -1.04211e-05 0)
(1.54106e-06 -1.0303e-05 0)
(2.36868e-06 -1.01915e-05 0)
(3.18347e-06 -1.00852e-05 0)
(3.98713e-06 -9.98472e-06 0)
(4.7801e-06 -9.88878e-06 0)
(5.5613e-06 -9.79804e-06 0)
(6.33032e-06 -9.71509e-06 0)
(7.08867e-06 -9.64018e-06 0)
(7.83923e-06 -9.57307e-06 0)
(8.58395e-06 -9.51354e-06 0)
(9.32325e-06 -9.46159e-06 0)
(1.00569e-05 -9.41747e-06 0)
(1.07859e-05 -9.38029e-06 0)
(1.15124e-05 -9.34936e-06 0)
(1.22381e-05 -9.3255e-06 0)
(1.29634e-05 -9.30994e-06 0)
(1.36879e-05 -9.30271e-06 0)
(1.44117e-05 -9.30263e-06 0)
(1.51354e-05 -9.30926e-06 0)
(1.58594e-05 -9.32351e-06 0)
(1.65837e-05 -9.34448e-06 0)
(1.73096e-05 -9.36914e-06 0)
(1.80398e-05 -9.39736e-06 0)
(1.87777e-05 -9.43437e-06 0)
(1.95237e-05 -9.48472e-06 0)
(2.02756e-05 -9.5439e-06 0)
(2.10327e-05 -9.60417e-06 0)
(2.1798e-05 -9.66621e-06 0)
(2.25743e-05 -9.73613e-06 0)
(2.33615e-05 -9.81528e-06 0)
(2.41592e-05 -9.89864e-06 0)
(2.49695e-05 -9.98475e-06 0)
(2.57948e-05 -1.00828e-05 0)
(2.66337e-05 -1.01978e-05 0)
(2.74826e-05 -1.03176e-05 0)
(2.83429e-05 -1.04395e-05 0)
(2.92163e-05 -1.05646e-05 0)
(3.01031e-05 -1.07008e-05 0)
(3.10031e-05 -1.08441e-05 0)
(3.19168e-05 -1.0987e-05 0)
(3.28492e-05 -1.1131e-05 0)
(3.38041e-05 -1.12832e-05 0)
(3.47816e-05 -1.14459e-05 0)
(3.57812e-05 -1.16171e-05 0)
(3.68026e-05 -1.17954e-05 0)
(3.78426e-05 -1.1971e-05 0)
(3.88981e-05 -1.21297e-05 0)
(3.99705e-05 -1.22696e-05 0)
(4.10662e-05 -1.24024e-05 0)
(4.21935e-05 -1.2541e-05 0)
(4.33607e-05 -1.26981e-05 0)
(4.45688e-05 -1.28711e-05 0)
(4.58075e-05 -1.30443e-05 0)
(4.70649e-05 -1.32037e-05 0)
(4.83302e-05 -1.33307e-05 0)
(4.95951e-05 -1.3417e-05 0)
(5.08569e-05 -1.3419e-05 0)
(5.21236e-05 -1.33416e-05 0)
(5.34307e-05 -1.31841e-05 0)
(5.47924e-05 -1.29559e-05 0)
(5.61319e-05 -1.25027e-05 0)
(5.73349e-05 -1.15348e-05 0)
(5.83593e-05 -9.88312e-06 0)
(5.92088e-05 -7.59867e-06 0)
(5.98437e-05 -4.93269e-06 0)
(-3.8206e-05 -7.00811e-06 0)
(-3.74503e-05 -9.97218e-06 0)
(-3.6405e-05 -1.23812e-05 0)
(-3.51472e-05 -1.40884e-05 0)
(-3.37583e-05 -1.51543e-05 0)
(-3.23039e-05 -1.57374e-05 0)
(-3.08271e-05 -1.60047e-05 0)
(-2.9353e-05 -1.60842e-05 0)
(-2.78957e-05 -1.6057e-05 0)
(-2.64621e-05 -1.59689e-05 0)
(-2.5055e-05 -1.58441e-05 0)
(-2.36765e-05 -1.56915e-05 0)
(-2.23287e-05 -1.55171e-05 0)
(-2.10109e-05 -1.53285e-05 0)
(-1.97226e-05 -1.51284e-05 0)
(-1.84641e-05 -1.49181e-05 0)
(-1.72347e-05 -1.47019e-05 0)
(-1.60323e-05 -1.44832e-05 0)
(-1.48558e-05 -1.42635e-05 0)
(-1.37057e-05 -1.4043e-05 0)
(-1.25811e-05 -1.38231e-05 0)
(-1.14807e-05 -1.36059e-05 0)
(-1.04049e-05 -1.33927e-05 0)
(-9.35374e-06 -1.31835e-05 0)
(-8.32565e-06 -1.29781e-05 0)
(-7.31997e-06 -1.27777e-05 0)
(-6.33719e-06 -1.25829e-05 0)
(-5.37685e-06 -1.23914e-05 0)
(-4.43739e-06 -1.22037e-05 0)
(-3.51685e-06 -1.2022e-05 0)
(-2.614e-06 -1.18532e-05 0)
(-1.72766e-06 -1.16934e-05 0)
(-8.56997e-07 -1.15418e-05 0)
(-8.52253e-10 -1.13985e-05 0)
(8.42145e-07 -1.12629e-05 0)
(1.67183e-06 -1.1132e-05 0)
(2.488e-06 -1.10074e-05 0)
(3.29205e-06 -1.08896e-05 0)
(4.08585e-06 -1.07789e-05 0)
(4.86948e-06 -1.06718e-05 0)
(5.64236e-06 -1.05693e-05 0)
(6.40455e-06 -1.04751e-05 0)
(7.15718e-06 -1.0391e-05 0)
(7.90223e-06 -1.03172e-05 0)
(8.64112e-06 -1.02521e-05 0)
(9.374e-06 -1.01945e-05 0)
(1.01012e-05 -1.01452e-05 0)
(1.08242e-05 -1.01046e-05 0)
(1.15447e-05 -1.0072e-05 0)
(1.22637e-05 -1.00473e-05 0)
(1.29812e-05 -1.00306e-05 0)
(1.3697e-05 -1.00221e-05 0)
(1.44113e-05 -1.00213e-05 0)
(1.51252e-05 -1.00277e-05 0)
(1.58392e-05 -1.0042e-05 0)
(1.65541e-05 -1.00639e-05 0)
(1.72711e-05 -1.00916e-05 0)
(1.79923e-05 -1.01256e-05 0)
(1.87194e-05 -1.01702e-05 0)
(1.9453e-05 -1.02277e-05 0)
(2.01936e-05 -1.02931e-05 0)
(2.09423e-05 -1.03613e-05 0)
(2.17017e-05 -1.04345e-05 0)
(2.24734e-05 -1.05162e-05 0)
(2.32568e-05 -1.06063e-05 0)
(2.40519e-05 -1.07019e-05 0)
(2.48603e-05 -1.08026e-05 0)
(2.56815e-05 -1.09131e-05 0)
(2.65115e-05 -1.10367e-05 0)
(2.73513e-05 -1.11669e-05 0)
(2.82046e-05 -1.1303e-05 0)
(2.9072e-05 -1.14412e-05 0)
(2.99521e-05 -1.15905e-05 0)
(3.08445e-05 -1.17469e-05 0)
(3.17525e-05 -1.19068e-05 0)
(3.26803e-05 -1.2072e-05 0)
(3.36296e-05 -1.22463e-05 0)
(3.46006e-05 -1.24304e-05 0)
(3.55919e-05 -1.26224e-05 0)
(3.66006e-05 -1.2819e-05 0)
(3.76258e-05 -1.30112e-05 0)
(3.86717e-05 -1.31895e-05 0)
(3.97468e-05 -1.33564e-05 0)
(4.08604e-05 -1.35245e-05 0)
(4.20171e-05 -1.3704e-05 0)
(4.32143e-05 -1.39021e-05 0)
(4.44411e-05 -1.41051e-05 0)
(4.56863e-05 -1.42961e-05 0)
(4.69401e-05 -1.44628e-05 0)
(4.81986e-05 -1.45933e-05 0)
(4.94632e-05 -1.46796e-05 0)
(5.07386e-05 -1.46905e-05 0)
(5.20495e-05 -1.4648e-05 0)
(5.34273e-05 -1.45555e-05 0)
(5.48381e-05 -1.43351e-05 0)
(5.61831e-05 -1.37755e-05 0)
(5.74029e-05 -1.26509e-05 0)
(5.85003e-05 -1.08567e-05 0)
(5.94515e-05 -8.39438e-06 0)
(6.0148e-05 -5.45461e-06 0)
(-3.84092e-05 -7.61334e-06 0)
(-3.76205e-05 -1.08887e-05 0)
(-3.65392e-05 -1.35533e-05 0)
(-3.52389e-05 -1.54328e-05 0)
(-3.3808e-05 -1.65961e-05 0)
(-3.23134e-05 -1.7222e-05 0)
(-3.08e-05 -1.74971e-05 0)
(-2.9294e-05 -1.75646e-05 0)
(-2.78092e-05 -1.75149e-05 0)
(-2.63517e-05 -1.73999e-05 0)
(-2.49253e-05 -1.72453e-05 0)
(-2.3532e-05 -1.70609e-05 0)
(-2.21715e-05 -1.68551e-05 0)
(-2.08431e-05 -1.66357e-05 0)
(-1.95474e-05 -1.64047e-05 0)
(-1.8283e-05 -1.61644e-05 0)
(-1.70475e-05 -1.59204e-05 0)
(-1.58394e-05 -1.56753e-05 0)
(-1.46588e-05 -1.5429e-05 0)
(-1.35055e-05 -1.51819e-05 0)
(-1.23789e-05 -1.49364e-05 0)
(-1.12786e-05 -1.46943e-05 0)
(-1.0204e-05 -1.4456e-05 0)
(-9.15476e-06 -1.42221e-05 0)
(-8.13023e-06 -1.39935e-05 0)
(-7.12862e-06 -1.37708e-05 0)
(-6.14961e-06 -1.35529e-05 0)
(-5.19355e-06 -1.33395e-05 0)
(-4.25818e-06 -1.31323e-05 0)
(-3.34087e-06 -1.29329e-05 0)
(-2.4413e-06 -1.27463e-05 0)
(-1.55925e-06 -1.25703e-05 0)
(-6.92668e-07 -1.24033e-05 0)
(1.59008e-07 -1.22452e-05 0)
(9.94214e-07 -1.20944e-05 0)
(1.8142e-06 -1.195e-05 0)
(2.62126e-06 -1.18122e-05 0)
(3.41627e-06 -1.16833e-05 0)
(4.20009e-06 -1.15622e-05 0)
(4.97341e-06 -1.14448e-05 0)
(5.73707e-06 -1.13323e-05 0)
(6.49157e-06 -1.12286e-05 0)
(7.2379e-06 -1.11364e-05 0)
(7.97723e-06 -1.10559e-05 0)
(8.70966e-06 -1.09844e-05 0)
(9.43516e-06 -1.09206e-05 0)
(1.01548e-05 -1.08666e-05 0)
(1.08705e-05 -1.08229e-05 0)
(1.15838e-05 -1.07884e-05 0)
(1.2295e-05 -1.07619e-05 0)
(1.30035e-05 -1.07429e-05 0)
(1.37094e-05 -1.07324e-05 0)
(1.44137e-05 -1.07306e-05 0)
(1.51184e-05 -1.07374e-05 0)
(1.58245e-05 -1.07526e-05 0)
(1.65325e-05 -1.0776e-05 0)
(1.72429e-05 -1.08068e-05 0)
(1.79579e-05 -1.08461e-05 0)
(1.86795e-05 -1.08974e-05 0)
(1.94081e-05 -1.09616e-05 0)
(2.01427e-05 -1.1034e-05 0)
(2.08845e-05 -1.11114e-05 0)
(2.16363e-05 -1.1196e-05 0)
(2.23996e-05 -1.12896e-05 0)
(2.31734e-05 -1.13905e-05 0)
(2.39568e-05 -1.14978e-05 0)
(2.47522e-05 -1.16127e-05 0)
(2.55631e-05 -1.17358e-05 0)
(2.63888e-05 -1.18689e-05 0)
(2.7225e-05 -1.20098e-05 0)
(2.80703e-05 -1.21582e-05 0)
(2.89279e-05 -1.23106e-05 0)
(2.97994e-05 -1.24725e-05 0)
(3.06836e-05 -1.26423e-05 0)
(3.15829e-05 -1.282e-05 0)
(3.25033e-05 -1.30072e-05 0)
(3.34478e-05 -1.32037e-05 0)
(3.44134e-05 -1.34076e-05 0)
(3.53971e-05 -1.36178e-05 0)
(3.63987e-05 -1.38317e-05 0)
(3.74211e-05 -1.40454e-05 0)
(3.8473e-05 -1.42547e-05 0)
(3.9565e-05 -1.44623e-05 0)
(4.06995e-05 -1.4672e-05 0)
(4.18695e-05 -1.48887e-05 0)
(4.30672e-05 -1.51164e-05 0)
(4.42837e-05 -1.53357e-05 0)
(4.5517e-05 -1.55418e-05 0)
(4.67663e-05 -1.57144e-05 0)
(4.80297e-05 -1.58568e-05 0)
(4.93148e-05 -1.59602e-05 0)
(5.06346e-05 -1.60038e-05 0)
(5.20037e-05 -1.60163e-05 0)
(5.34199e-05 -1.59733e-05 0)
(5.48447e-05 -1.57275e-05 0)
(5.62248e-05 -1.50767e-05 0)
(5.75197e-05 -1.38379e-05 0)
(5.87033e-05 -1.1926e-05 0)
(5.97087e-05 -9.25286e-06 0)
(6.04179e-05 -5.9832e-06 0)
(-3.85703e-05 -8.24651e-06 0)
(-3.77548e-05 -1.18374e-05 0)
(-3.66361e-05 -1.47654e-05 0)
(-3.52943e-05 -1.68194e-05 0)
(-3.38192e-05 -1.80799e-05 0)
(-3.2282e-05 -1.87457e-05 0)
(-3.07299e-05 -1.90243e-05 0)
(-2.91897e-05 -1.90753e-05 0)
(-2.76751e-05 -1.8999e-05 0)
(-2.61931e-05 -1.88526e-05 0)
(-2.47463e-05 -1.86641e-05 0)
(-2.3335e-05 -1.84457e-05 0)
(-2.19584e-05 -1.82069e-05 0)
(-2.06167e-05 -1.79539e-05 0)
(-1.93094e-05 -1.76901e-05 0)
(-1.8034e-05 -1.74198e-05 0)
(-1.6789e-05 -1.7147e-05 0)
(-1.55747e-05 -1.68728e-05 0)
(-1.43914e-05 -1.65975e-05 0)
(-1.32378e-05 -1.63225e-05 0)
(-1.21126e-05 -1.60495e-05 0)
(-1.10162e-05 -1.57795e-05 0)
(-9.94893e-06 -1.55143e-05 0)
(-8.90884e-06 -1.52548e-05 0)
(-7.89378e-06 -1.5002e-05 0)
(-6.90229e-06 -1.47567e-05 0)
(-5.93382e-06 -1.45158e-05 0)
(-4.98726e-06 -1.4281e-05 0)
(-4.0602e-06 -1.40551e-05 0)
(-3.15031e-06 -1.38388e-05 0)
(-2.25743e-06 -1.36342e-05 0)
(-1.38219e-06 -1.34412e-05 0)
(-5.23123e-07 -1.32593e-05 0)
(3.20292e-07 -1.3085e-05 0)
(1.14788e-06 -1.29178e-05 0)
(1.96089e-06 -1.27597e-05 0)
(2.76144e-06 -1.26099e-05 0)
(3.55077e-06 -1.24695e-05 0)
(4.32835e-06 -1.23368e-05 0)
(5.09453e-06 -1.22092e-05 0)
(5.85103e-06 -1.20878e-05 0)
(6.59905e-06 -1.19757e-05 0)
(7.33941e-06 -1.18763e-05 0)
(8.07227e-06 -1.17887e-05 0)
(8.79669e-06 -1.17092e-05 0)
(9.51269e-06 -1.16384e-05 0)
(1.02221e-05 -1.15793e-05 0)
(1.09272e-05 -1.15324e-05 0)
(1.16294e-05 -1.14956e-05 0)
(1.23288e-05 -1.14664e-05 0)
(1.30253e-05 -1.14445e-05 0)
(1.37195e-05 -1.14319e-05 0)
(1.44127e-05 -1.14297e-05 0)
(1.51065e-05 -1.14378e-05 0)
(1.58026e-05 -1.14553e-05 0)
(1.65016e-05 -1.14811e-05 0)
(1.72042e-05 -1.15155e-05 0)
(1.79119e-05 -1.1561e-05 0)
(1.86272e-05 -1.162e-05 0)
(1.93504e-05 -1.16909e-05 0)
(2.00796e-05 -1.1769e-05 0)
(2.08149e-05 -1.18542e-05 0)
(2.15588e-05 -1.19491e-05 0)
(2.23126e-05 -1.2053e-05 0)
(2.30753e-05 -1.21631e-05 0)
(2.38467e-05 -1.22806e-05 0)
(2.46305e-05 -1.24098e-05 0)
(2.54316e-05 -1.25504e-05 0)
(2.62503e-05 -1.26975e-05 0)
(2.70811e-05 -1.28475e-05 0)
(2.79207e-05 -1.30052e-05 0)
(2.87714e-05 -1.31714e-05 0)
(2.96349e-05 -1.3346e-05 0)
(3.05108e-05 -1.35289e-05 0)
(3.14027e-05 -1.37252e-05 0)
(3.23178e-05 -1.3937e-05 0)
(3.3258e-05 -1.41573e-05 0)
(3.42203e-05 -1.43807e-05 0)
(3.52031e-05 -1.461e-05 0)
(3.62071e-05 -1.48444e-05 0)
(3.72337e-05 -1.50828e-05 0)
(3.8286e-05 -1.53247e-05 0)
(3.93687e-05 -1.55714e-05 0)
(4.0486e-05 -1.5819e-05 0)
(4.16394e-05 -1.60679e-05 0)
(4.28236e-05 -1.63194e-05 0)
(4.40354e-05 -1.65587e-05 0)
(4.52742e-05 -1.67863e-05 0)
(4.6541e-05 -1.69812e-05 0)
(4.78421e-05 -1.71516e-05 0)
(4.91802e-05 -1.72892e-05 0)
(5.05576e-05 -1.73755e-05 0)
(5.1964e-05 -1.74218e-05 0)
(5.33932e-05 -1.74039e-05 0)
(5.48574e-05 -1.71625e-05 0)
(5.63127e-05 -1.64516e-05 0)
(5.76865e-05 -1.51053e-05 0)
(5.89114e-05 -1.30344e-05 0)
(5.99163e-05 -1.01179e-05 0)
(6.06216e-05 -6.50607e-06 0)
(-3.86937e-05 -8.88852e-06 0)
(-3.7857e-05 -1.28202e-05 0)
(-3.66997e-05 -1.60154e-05 0)
(-3.53154e-05 -1.82498e-05 0)
(-3.37935e-05 -1.96087e-05 0)
(-3.22099e-05 -2.03119e-05 0)
(-3.06152e-05 -2.05897e-05 0)
(-2.90375e-05 -2.06194e-05 0)
(-2.74907e-05 -2.05119e-05 0)
(-2.59812e-05 -2.03293e-05 0)
(-2.45114e-05 -2.01034e-05 0)
(-2.30805e-05 -1.98489e-05 0)
(-2.16879e-05 -1.95739e-05 0)
(-2.03338e-05 -1.92846e-05 0)
(-1.90165e-05 -1.89867e-05 0)
(-1.77342e-05 -1.8684e-05 0)
(-1.64863e-05 -1.83788e-05 0)
(-1.52732e-05 -1.80716e-05 0)
(-1.4094e-05 -1.77641e-05 0)
(-1.29471e-05 -1.74586e-05 0)
(-1.18307e-05 -1.71562e-05 0)
(-1.07437e-05 -1.68566e-05 0)
(-9.68545e-06 -1.65627e-05 0)
(-8.65447e-06 -1.62772e-05 0)
(-7.64873e-06 -1.60002e-05 0)
(-6.66619e-06 -1.57325e-05 0)
(-5.70566e-06 -1.54693e-05 0)
(-4.76584e-06 -1.52144e-05 0)
(-3.845e-06 -1.49702e-05 0)
(-2.94171e-06 -1.47372e-05 0)
(-2.0553e-06 -1.45153e-05 0)
(-1.18624e-06 -1.43049e-05 0)
(-3.3474e-07 -1.41067e-05 0)
(5.00403e-07 -1.39166e-05 0)
(1.32137e-06 -1.37349e-05 0)
(2.12889e-06 -1.3563e-05 0)
(2.92301e-06 -1.3401e-05 0)
(3.70486e-06 -1.32493e-05 0)
(4.47547e-06 -1.31053e-05 0)
(5.23527e-06 -1.29674e-05 0)
(5.98514e-06 -1.2837e-05 0)
(6.72605e-06 -1.27167e-05 0)
(7.45801e-06 -1.26092e-05 0)
(8.18019e-06 -1.25125e-05 0)
(8.89227e-06 -1.24236e-05 0)
(9.59565e-06 -1.23449e-05 0)
(1.02927e-05 -1.22804e-05 0)
(1.09854e-05 -1.22299e-05 0)
(1.16749e-05 -1.21903e-05 0)
(1.23619e-05 -1.21584e-05 0)
(1.30469e-05 -1.21343e-05 0)
(1.37304e-05 -1.21201e-05 0)
(1.44118e-05 -1.21168e-05 0)
(1.50927e-05 -1.21263e-05 0)
(1.5776e-05 -1.21471e-05 0)
(1.64636e-05 -1.21771e-05 0)
(1.71567e-05 -1.22165e-05 0)
(1.78565e-05 -1.2269e-05 0)
(1.85644e-05 -1.23363e-05 0)
(1.92793e-05 -1.24136e-05 0)
(2e-05 -1.24973e-05 0)
(2.07274e-05 -1.259e-05 0)
(2.14635e-05 -1.2694e-05 0)
(2.22081e-05 -1.28064e-05 0)
(2.29602e-05 -1.29245e-05 0)
(2.37223e-05 -1.30532e-05 0)
(2.44993e-05 -1.31984e-05 0)
(2.52916e-05 -1.3355e-05 0)
(2.60964e-05 -1.35158e-05 0)
(2.69152e-05 -1.36787e-05 0)
(2.77491e-05 -1.3848e-05 0)
(2.85959e-05 -1.40261e-05 0)
(2.9454e-05 -1.42123e-05 0)
(3.03249e-05 -1.44092e-05 0)
(3.12157e-05 -1.46282e-05 0)
(3.21311e-05 -1.48649e-05 0)
(3.30685e-05 -1.5107e-05 0)
(3.40277e-05 -1.53528e-05 0)
(3.50118e-05 -1.56054e-05 0)
(3.60202e-05 -1.58627e-05 0)
(3.70513e-05 -1.61243e-05 0)
(3.81046e-05 -1.63907e-05 0)
(3.91807e-05 -1.66647e-05 0)
(4.02823e-05 -1.69438e-05 0)
(4.14155e-05 -1.7228e-05 0)
(4.25871e-05 -1.75129e-05 0)
(4.37983e-05 -1.77865e-05 0)
(4.50503e-05 -1.80485e-05 0)
(4.63422e-05 -1.82802e-05 0)
(4.76806e-05 -1.84967e-05 0)
(4.90527e-05 -1.86607e-05 0)
(5.04496e-05 -1.87834e-05 0)
(5.18788e-05 -1.88493e-05 0)
(5.33614e-05 -1.88792e-05 0)
(5.48784e-05 -1.86503e-05 0)
(5.63662e-05 -1.78858e-05 0)
(5.7796e-05 -1.64411e-05 0)
(5.90873e-05 -1.41684e-05 0)
(6.01232e-05 -1.09798e-05 0)
(6.08289e-05 -7.0228e-06 0)
(-3.88167e-05 -9.53904e-06 0)
(-3.79528e-05 -1.38381e-05 0)
(-3.67534e-05 -1.73069e-05 0)
(-3.53208e-05 -1.97267e-05 0)
(-3.37489e-05 -2.11855e-05 0)
(-3.21165e-05 -2.19238e-05 0)
(-3.04763e-05 -2.21968e-05 0)
(-2.88581e-05 -2.21999e-05 0)
(-2.72771e-05 -2.20554e-05 0)
(-2.57396e-05 -2.18314e-05 0)
(-2.42472e-05 -2.15637e-05 0)
(-2.27991e-05 -2.12684e-05 0)
(-2.13947e-05 -2.09526e-05 0)
(-2.00327e-05 -2.06238e-05 0)
(-1.87111e-05 -2.02885e-05 0)
(-1.74287e-05 -1.9949e-05 0)
(-1.61853e-05 -1.96069e-05 0)
(-1.49793e-05 -1.92642e-05 0)
(-1.38076e-05 -1.89237e-05 0)
(-1.26673e-05 -1.85871e-05 0)
(-1.15569e-05 -1.8255e-05 0)
(-1.0475e-05 -1.79272e-05 0)
(-9.41975e-06 -1.76063e-05 0)
(-8.39105e-06 -1.72945e-05 0)
(-7.38884e-06 -1.69923e-05 0)
(-6.41253e-06 -1.67008e-05 0)
(-5.45933e-06 -1.64163e-05 0)
(-4.52615e-06 -1.61418e-05 0)
(-3.61149e-06 -1.58794e-05 0)
(-2.71391e-06 -1.56295e-05 0)
(-1.8332e-06 -1.53905e-05 0)
(-9.70049e-07 -1.51626e-05 0)
(-1.24769e-07 -1.49468e-05 0)
(7.04027e-07 -1.47415e-05 0)
(1.51926e-06 -1.45469e-05 0)
(2.32281e-06 -1.43623e-05 0)
(3.11394e-06 -1.41872e-05 0)
(3.89099e-06 -1.40225e-05 0)
(4.65379e-06 -1.38664e-05 0)
(5.40403e-06 -1.37177e-05 0)
(6.14359e-06 -1.35778e-05 0)
(6.873e-06 -1.34481e-05 0)
(7.59124e-06 -1.33298e-05 0)
(8.2981e-06 -1.32223e-05 0)
(8.99542e-06 -1.31239e-05 0)
(9.68547e-06 -1.3038e-05 0)
(1.037e-05 -1.29684e-05 0)
(1.10501e-05 -1.29142e-05 0)
(1.17269e-05 -1.2872e-05 0)
(1.2402e-05 -1.28386e-05 0)
(1.30765e-05 -1.28135e-05 0)
(1.37494e-05 -1.27972e-05 0)
(1.44176e-05 -1.27897e-05 0)
(1.50824e-05 -1.27998e-05 0)
(1.57501e-05 -1.28255e-05 0)
(1.64247e-05 -1.28625e-05 0)
(1.71073e-05 -1.29087e-05 0)
(1.77969e-05 -1.29682e-05 0)
(1.8492e-05 -1.30418e-05 0)
(1.91923e-05 -1.31251e-05 0)
(1.98996e-05 -1.32157e-05 0)
(2.06157e-05 -1.33171e-05 0)
(2.13418e-05 -1.34302e-05 0)
(2.20777e-05 -1.35514e-05 0)
(2.28247e-05 -1.36791e-05 0)
(2.3583e-05 -1.38195e-05 0)
(2.43515e-05 -1.39778e-05 0)
(2.51296e-05 -1.41457e-05 0)
(2.59206e-05 -1.43206e-05 0)
(2.67291e-05 -1.45018e-05 0)
(2.75554e-05 -1.46865e-05 0)
(2.83971e-05 -1.48779e-05 0)
(2.92547e-05 -1.50783e-05 0)
(3.013e-05 -1.52925e-05 0)
(3.10234e-05 -1.55319e-05 0)
(3.19345e-05 -1.57889e-05 0)
(3.28655e-05 -1.60513e-05 0)
(3.38197e-05 -1.63218e-05 0)
(3.47992e-05 -1.66009e-05 0)
(3.58037e-05 -1.68828e-05 0)
(3.68326e-05 -1.71677e-05 0)
(3.7883e-05 -1.74542e-05 0)
(3.89558e-05 -1.7752e-05 0)
(4.00577e-05 -1.80607e-05 0)
(4.11936e-05 -1.83797e-05 0)
(4.23663e-05 -1.87032e-05 0)
(4.35787e-05 -1.90172e-05 0)
(4.48357e-05 -1.93253e-05 0)
(4.61383e-05 -1.95991e-05 0)
(4.7479e-05 -1.9859e-05 0)
(4.88535e-05 -2.00496e-05 0)
(5.02786e-05 -2.02225e-05 0)
(5.17694e-05 -2.03314e-05 0)
(5.33003e-05 -2.04014e-05 0)
(5.48315e-05 -2.01573e-05 0)
(5.63524e-05 -1.93645e-05 0)
(5.7842e-05 -1.78458e-05 0)
(5.91996e-05 -1.5367e-05 0)
(6.02875e-05 -1.18669e-05 0)
(6.10242e-05 -7.55247e-06 0)
(-3.89289e-05 -1.02141e-05 0)
(-3.80339e-05 -1.48895e-05 0)
(-3.67936e-05 -1.86457e-05 0)
(-3.53081e-05 -2.12555e-05 0)
(-3.36806e-05 -2.28147e-05 0)
(-3.19936e-05 -2.35861e-05 0)
(-3.0303e-05 -2.38495e-05 0)
(-2.86413e-05 -2.38195e-05 0)
(-2.70236e-05 -2.36316e-05 0)
(-2.54556e-05 -2.33601e-05 0)
(-2.3939e-05 -2.30447e-05 0)
(-2.24726e-05 -2.27028e-05 0)
(-2.10541e-05 -2.23417e-05 0)
(-1.96823e-05 -2.19692e-05 0)
(-1.83559e-05 -2.15916e-05 0)
(-1.70731e-05 -2.12114e-05 0)
(-1.5831e-05 -2.08304e-05 0)
(-1.4627e-05 -2.04512e-05 0)
(-1.34592e-05 -2.00772e-05 0)
(-1.23244e-05 -1.97103e-05 0)
(-1.12197e-05 -1.9349e-05 0)
(-1.01442e-05 -1.89935e-05 0)
(-9.09754e-06 -1.86453e-05 0)
(-8.07971e-06 -1.8306e-05 0)
(-7.08904e-06 -1.79778e-05 0)
(-6.12294e-06 -1.76614e-05 0)
(-5.17907e-06 -1.73558e-05 0)
(-4.25502e-06 -1.70618e-05 0)
(-3.34943e-06 -1.67814e-05 0)
(-2.46113e-06 -1.65146e-05 0)
(-1.58981e-06 -1.62584e-05 0)
(-7.36226e-07 -1.60129e-05 0)
(1.00139e-07 -1.57804e-05 0)
(9.227e-07 -1.5562e-05 0)
(1.73425e-06 -1.53559e-05 0)
(2.53358e-06 -1.51589e-05 0)
(3.3187e-06 -1.49694e-05 0)
(4.08825e-06 -1.47891e-05 0)
(4.84172e-06 -1.46179e-05 0)
(5.5798e-06 -1.44558e-05 0)
(6.30383e-06 -1.43041e-05 0)
(7.01574e-06 -1.41636e-05 0)
(7.71773e-06 -1.40348e-05 0)
(8.41122e-06 -1.3918e-05 0)
(9.09809e-06 -1.38126e-05 0)
(9.77987e-06 -1.3721e-05 0)
(1.04561e-05 -1.36457e-05 0)
(1.11264e-05 -1.35867e-05 0)
(1.17919e-05 -1.35413e-05 0)
(1.24543e-05 -1.35065e-05 0)
(1.31145e-05 -1.34803e-05 0)
(1.37725e-05 -1.34613e-05 0)
(1.44287e-05 -1.345e-05 0)
(1.5084e-05 -1.34596e-05 0)
(1.57394e-05 -1.34891e-05 0)
(1.63971e-05 -1.35318e-05 0)
(1.70598e-05 -1.35855e-05 0)
(1.77302e-05 -1.36517e-05 0)
(1.8408e-05 -1.37309e-05 0)
(1.90927e-05 -1.38208e-05 0)
(1.97857e-05 -1.39201e-05 0)
(2.04885e-05 -1.40317e-05 0)
(2.1202e-05 -1.41556e-05 0)
(2.19276e-05 -1.42888e-05 0)
(2.26669e-05 -1.44299e-05 0)
(2.34197e-05 -1.45819e-05 0)
(2.41836e-05 -1.47495e-05 0)
(2.49594e-05 -1.49295e-05 0)
(2.57472e-05 -1.51174e-05 0)
(2.65451e-05 -1.53139e-05 0)
(2.73562e-05 -1.55148e-05 0)
(2.81838e-05 -1.57228e-05 0)
(2.90282e-05 -1.59408e-05 0)
(2.98911e-05 -1.61747e-05 0)
(3.07776e-05 -1.64349e-05 0)
(3.16903e-05 -1.67128e-05 0)
(3.26272e-05 -1.69963e-05 0)
(3.35845e-05 -1.72883e-05 0)
(3.45594e-05 -1.75892e-05 0)
(3.55531e-05 -1.78944e-05 0)
(3.65689e-05 -1.8203e-05 0)
(3.76089e-05 -1.8512e-05 0)
(3.86763e-05 -1.88371e-05 0)
(3.97739e-05 -1.91777e-05 0)
(4.09067e-05 -1.95327e-05 0)
(4.20832e-05 -1.9898e-05 0)
(4.33096e-05 -2.02574e-05 0)
(4.45824e-05 -2.06113e-05 0)
(4.58968e-05 -2.09292e-05 0)
(4.72565e-05 -2.12313e-05 0)
(4.86576e-05 -2.14595e-05 0)
(5.00999e-05 -2.16895e-05 0)
(5.1601e-05 -2.1857e-05 0)
(5.31583e-05 -2.19508e-05 0)
(5.47571e-05 -2.17185e-05 0)
(5.6348e-05 -2.08933e-05 0)
(5.78623e-05 -1.92862e-05 0)
(5.92181e-05 -1.65923e-05 0)
(6.0304e-05 -1.27727e-05 0)
(6.1037e-05 -8.08884e-06 0)
(-3.89693e-05 -1.09166e-05 0)
(-3.80436e-05 -1.59752e-05 0)
(-3.67582e-05 -2.0034e-05 0)
(-3.52189e-05 -2.28397e-05 0)
(-3.35347e-05 -2.44999e-05 0)
(-3.17939e-05 -2.53012e-05 0)
(-3.00555e-05 -2.55489e-05 0)
(-2.8352e-05 -2.54794e-05 0)
(-2.66986e-05 -2.52416e-05 0)
(-2.51014e-05 -2.49165e-05 0)
(-2.35607e-05 -2.45478e-05 0)
(-2.20746e-05 -2.41545e-05 0)
(-2.06411e-05 -2.3744e-05 0)
(-1.9258e-05 -2.33236e-05 0)
(-1.79234e-05 -2.28996e-05 0)
(-1.66356e-05 -2.24755e-05 0)
(-1.53917e-05 -2.20537e-05 0)
(-1.41887e-05 -2.16365e-05 0)
(-1.30241e-05 -2.12264e-05 0)
(-1.18964e-05 -2.0826e-05 0)
(-1.08038e-05 -2.04333e-05 0)
(-9.74351e-06 -2.00481e-05 0)
(-8.71392e-06 -1.96702e-05 0)
(-7.71379e-06 -1.93024e-05 0)
(-6.74068e-06 -1.89484e-05 0)
(-5.79171e-06 -1.86088e-05 0)
(-4.8637e-06 -1.82828e-05 0)
(-3.95364e-06 -1.79707e-05 0)
(-3.06067e-06 -1.76722e-05 0)
(-2.1848e-06 -1.73887e-05 0)
(-1.32628e-06 -1.71147e-05 0)
(-4.85618e-07 -1.68517e-05 0)
(3.38789e-07 -1.66037e-05 0)
(1.14841e-06 -1.63726e-05 0)
(1.9437e-06 -1.6154e-05 0)
(2.72473e-06 -1.59431e-05 0)
(3.49117e-06 -1.57388e-05 0)
(4.24324e-06 -1.55433e-05 0)
(4.98194e-06 -1.53574e-05 0)
(5.70868e-06 -1.5182e-05 0)
(6.42391e-06 -1.50175e-05 0)
(7.12735e-06 -1.48656e-05 0)
(7.81974e-06 -1.47274e-05 0)
(8.50291e-06 -1.46027e-05 0)
(9.17877e-06 -1.44916e-05 0)
(9.84926e-06 -1.43953e-05 0)
(1.0516e-05 -1.43156e-05 0)
(1.11796e-05 -1.42521e-05 0)
(1.18389e-05 -1.42021e-05 0)
(1.24922e-05 -1.41627e-05 0)
(1.31394e-05 -1.41328e-05 0)
(1.37838e-05 -1.41122e-05 0)
(1.44289e-05 -1.41013e-05 0)
(1.50746e-05 -1.411e-05 0)
(1.57193e-05 -1.41392e-05 0)
(1.63636e-05 -1.41837e-05 0)
(1.70112e-05 -1.42433e-05 0)
(1.76663e-05 -1.43179e-05 0)
(1.83312e-05 -1.44059e-05 0)
(1.90062e-05 -1.45045e-05 0)
(1.96911e-05 -1.46138e-05 0)
(2.03863e-05 -1.47358e-05 0)
(2.10914e-05 -1.48705e-05 0)
(2.18053e-05 -1.50148e-05 0)
(2.25281e-05 -1.51681e-05 0)
(2.32621e-05 -1.53328e-05 0)
(2.40102e-05 -1.55129e-05 0)
(2.47718e-05 -1.57063e-05 0)
(2.55447e-05 -1.59042e-05 0)
(2.63278e-05 -1.61107e-05 0)
(2.7122e-05 -1.63259e-05 0)
(2.79298e-05 -1.65503e-05 0)
(2.87532e-05 -1.67852e-05 0)
(2.95963e-05 -1.70404e-05 0)
(3.04656e-05 -1.73285e-05 0)
(3.1366e-05 -1.76359e-05 0)
(3.22978e-05 -1.7946e-05 0)
(3.32579e-05 -1.82597e-05 0)
(3.42374e-05 -1.85756e-05 0)
(3.52281e-05 -1.88955e-05 0)
(3.62319e-05 -1.92235e-05 0)
(3.72573e-05 -1.95583e-05 0)
(3.83126e-05 -1.99148e-05 0)
(3.9406e-05 -2.02929e-05 0)
(4.0548e-05 -2.06941e-05 0)
(4.17413e-05 -2.11078e-05 0)
(4.29873e-05 -2.152e-05 0)
(4.42815e-05 -2.19165e-05 0)
(4.56141e-05 -2.22748e-05 0)
(4.6978e-05 -2.26147e-05 0)
(4.8371e-05 -2.28759e-05 0)
(4.98015e-05 -2.31501e-05 0)
(5.13184e-05 -2.34078e-05 0)
(5.29497e-05 -2.35734e-05 0)
(5.46101e-05 -2.33419e-05 0)
(5.62129e-05 -2.24429e-05 0)
(5.77205e-05 -2.07169e-05 0)
(5.9086e-05 -1.78219e-05 0)
(6.0204e-05 -1.36854e-05 0)
(6.09555e-05 -8.61784e-06 0)
(-3.89235e-05 -1.1632e-05 0)
(-3.79705e-05 -1.71018e-05 0)
(-3.6638e-05 -2.14699e-05 0)
(-3.50486e-05 -2.44778e-05 0)
(-3.33114e-05 -2.62394e-05 0)
(-3.15204e-05 -2.70652e-05 0)
(-2.97382e-05 -2.72909e-05 0)
(-2.7997e-05 -2.71765e-05 0)
(-2.63114e-05 -2.68827e-05 0)
(-2.46876e-05 -2.64982e-05 0)
(-2.31262e-05 -2.6071e-05 0)
(-2.1625e-05 -2.56216e-05 0)
(-2.01806e-05 -2.51578e-05 0)
(-1.87903e-05 -2.46861e-05 0)
(-1.74519e-05 -2.42128e-05 0)
(-1.61627e-05 -2.37419e-05 0)
(-1.49199e-05 -2.32762e-05 0)
(-1.37211e-05 -2.28179e-05 0)
(-1.25639e-05 -2.23689e-05 0)
(-1.14464e-05 -2.19307e-05 0)
(-1.03667e-05 -2.15027e-05 0)
(-9.32312e-06 -2.10844e-05 0)
(-8.31281e-06 -2.06755e-05 0)
(-7.3324e-06 -2.02791e-05 0)
(-6.37833e-06 -1.99001e-05 0)
(-5.44643e-06 -1.9539e-05 0)
(-4.53388e-06 -1.91939e-05 0)
(-3.63879e-06 -1.88651e-05 0)
(-2.75964e-06 -1.85501e-05 0)
(-1.89714e-06 -1.82494e-05 0)
(-1.05161e-06 -1.79585e-05 0)
(-2.21685e-07 -1.7679e-05 0)
(5.92316e-07 -1.74153e-05 0)
(1.38963e-06 -1.71684e-05 0)
(2.17009e-06 -1.69342e-05 0)
(2.93408e-06 -1.6708e-05 0)
(3.68317e-06 -1.64895e-05 0)
(4.41915e-06 -1.62809e-05 0)
(5.14358e-06 -1.60835e-05 0)
(5.85752e-06 -1.58974e-05 0)
(6.56099e-06 -1.57219e-05 0)
(7.2537e-06 -1.55587e-05 0)
(7.9357e-06 -1.54101e-05 0)
(8.60756e-06 -1.52766e-05 0)
(9.2705e-06 -1.51582e-05 0)
(9.92622e-06 -1.50565e-05 0)
(1.05765e-05 -1.4973e-05 0)
(1.1223e-05 -1.49065e-05 0)
(1.18665e-05 -1.48524e-05 0)
(1.25062e-05 -1.48073e-05 0)
(1.31412e-05 -1.47725e-05 0)
(1.37726e-05 -1.47506e-05 0)
(1.44042e-05 -1.47417e-05 0)
(1.5038e-05 -1.47509e-05 0)
(1.56727e-05 -1.47791e-05 0)
(1.63087e-05 -1.4825e-05 0)
(1.69489e-05 -1.48899e-05 0)
(1.75962e-05 -1.49732e-05 0)
(1.82515e-05 -1.50706e-05 0)
(1.89149e-05 -1.51787e-05 0)
(1.95873e-05 -1.52979e-05 0)
(2.02692e-05 -1.54298e-05 0)
(2.09594e-05 -1.55729e-05 0)
(2.16571e-05 -1.57254e-05 0)
(2.23645e-05 -1.58891e-05 0)
(2.3085e-05 -1.60673e-05 0)
(2.38185e-05 -1.62608e-05 0)
(2.45626e-05 -1.64651e-05 0)
(2.5318e-05 -1.66745e-05 0)
(2.60852e-05 -1.6891e-05 0)
(2.68623e-05 -1.71176e-05 0)
(2.76503e-05 -1.73563e-05 0)
(2.84551e-05 -1.76096e-05 0)
(2.92851e-05 -1.78905e-05 0)
(3.01438e-05 -1.82076e-05 0)
(3.10278e-05 -1.85432e-05 0)
(3.19363e-05 -1.88824e-05 0)
(3.28707e-05 -1.92216e-05 0)
(3.38262e-05 -1.95528e-05 0)
(3.47979e-05 -1.98852e-05 0)
(3.57885e-05 -2.02318e-05 0)
(3.68067e-05 -2.05959e-05 0)
(3.78604e-05 -2.0988e-05 0)
(3.8956e-05 -2.1411e-05 0)
(4.01003e-05 -2.18655e-05 0)
(4.12956e-05 -2.23296e-05 0)
(4.25434e-05 -2.27959e-05 0)
(4.38373e-05 -2.32321e-05 0)
(4.51645e-05 -2.36241e-05 0)
(4.65195e-05 -2.3989e-05 0)
(4.79179e-05 -2.4295e-05 0)
(4.93972e-05 -2.46404e-05 0)
(5.09963e-05 -2.5024e-05 0)
(5.26552e-05 -2.52316e-05 0)
(5.42868e-05 -2.49614e-05 0)
(5.58965e-05 -2.40076e-05 0)
(5.74589e-05 -2.21729e-05 0)
(5.88853e-05 -1.90946e-05 0)
(6.00765e-05 -1.46581e-05 0)
(6.09158e-05 -9.19543e-06 0)
(-3.88288e-05 -1.23591e-05 0)
(-3.78459e-05 -1.82685e-05 0)
(-3.64705e-05 -2.29513e-05 0)
(-3.48315e-05 -2.61667e-05 0)
(-3.30437e-05 -2.8029e-05 0)
(-3.12062e-05 -2.88742e-05 0)
(-2.93827e-05 -2.9072e-05 0)
(-2.76061e-05 -2.89069e-05 0)
(-2.58922e-05 -2.85505e-05 0)
(-2.42465e-05 -2.8101e-05 0)
(-2.26674e-05 -2.76107e-05 0)
(-2.11528e-05 -2.71001e-05 0)
(-1.9701e-05 -2.65779e-05 0)
(-1.83086e-05 -2.6051e-05 0)
(-1.69711e-05 -2.55261e-05 0)
(-1.56842e-05 -2.5007e-05 0)
(-1.44452e-05 -2.44954e-05 0)
(-1.32521e-05 -2.39933e-05 0)
(-1.21026e-05 -2.35028e-05 0)
(-1.09951e-05 -2.30244e-05 0)
(-9.92865e-06 -2.25576e-05 0)
(-8.90121e-06 -2.21028e-05 0)
(-7.9086e-06 -2.16618e-05 0)
(-6.94473e-06 -2.1238e-05 0)
(-6.00493e-06 -2.08354e-05 0)
(-5.08623e-06 -2.04544e-05 0)
(-4.18625e-06 -2.00911e-05 0)
(-3.30419e-06 -1.97452e-05 0)
(-2.43851e-06 -1.94152e-05 0)
(-1.58876e-06 -1.90975e-05 0)
(-7.55841e-07 -1.87905e-05 0)
(6.11269e-08 -1.84956e-05 0)
(8.62202e-07 -1.82153e-05 0)
(1.64622e-06 -1.79511e-05 0)
(2.41245e-06 -1.76994e-05 0)
(3.16168e-06 -1.74571e-05 0)
(3.89625e-06 -1.72248e-05 0)
(4.6184e-06 -1.70043e-05 0)
(5.32947e-06 -1.67963e-05 0)
(6.02989e-06 -1.65998e-05 0)
(6.71978e-06 -1.6414e-05 0)
(7.39927e-06 -1.62404e-05 0)
(8.06827e-06 -1.60814e-05 0)
(8.72688e-06 -1.59379e-05 0)
(9.37607e-06 -1.5811e-05 0)
(1.00173e-05 -1.57024e-05 0)
(1.0652e-05 -1.56134e-05 0)
(1.12816e-05 -1.55432e-05 0)
(1.19077e-05 -1.54859e-05 0)
(1.25306e-05 -1.54369e-05 0)
(1.31494e-05 -1.53976e-05 0)
(1.37647e-05 -1.53735e-05 0)
(1.438e-05 -1.53669e-05 0)
(1.49985e-05 -1.5379e-05 0)
(1.56213e-05 -1.54095e-05 0)
(1.6249e-05 -1.54593e-05 0)
(1.68823e-05 -1.55301e-05 0)
(1.75209e-05 -1.562e-05 0)
(1.81647e-05 -1.57242e-05 0)
(1.88149e-05 -1.58401e-05 0)
(1.94731e-05 -1.59683e-05 0)
(2.01394e-05 -1.61083e-05 0)
(2.08126e-05 -1.62584e-05 0)
(2.14937e-05 -1.64197e-05 0)
(2.21859e-05 -1.65955e-05 0)
(2.28903e-05 -1.67865e-05 0)
(2.36055e-05 -1.69909e-05 0)
(2.43323e-05 -1.72065e-05 0)
(2.50732e-05 -1.74293e-05 0)
(2.58256e-05 -1.76549e-05 0)
(2.65851e-05 -1.78904e-05 0)
(2.73551e-05 -1.81439e-05 0)
(2.81457e-05 -1.84205e-05 0)
(2.89632e-05 -1.8729e-05 0)
(2.98043e-05 -1.907e-05 0)
(3.06644e-05 -1.94265e-05 0)
(3.15456e-05 -1.97906e-05 0)
(3.24502e-05 -2.01537e-05 0)
(3.33763e-05 -2.05038e-05 0)
(3.43221e-05 -2.08547e-05 0)
(3.52935e-05 -2.12283e-05 0)
(3.63043e-05 -2.16323e-05 0)
(3.73622e-05 -2.20666e-05 0)
(3.84662e-05 -2.25351e-05 0)
(3.96119e-05 -2.30345e-05 0)
(4.08003e-05 -2.35477e-05 0)
(4.20366e-05 -2.40631e-05 0)
(4.33147e-05 -2.45363e-05 0)
(4.46202e-05 -2.49549e-05 0)
(4.59708e-05 -2.53697e-05 0)
(4.74147e-05 -2.57627e-05 0)
(4.89744e-05 -2.62138e-05 0)
(5.06047e-05 -2.66698e-05 0)
(5.22417e-05 -2.68608e-05 0)
(5.38829e-05 -2.6583e-05 0)
(5.55465e-05 -2.56252e-05 0)
(5.71849e-05 -2.37086e-05 0)
(5.87008e-05 -2.04482e-05 0)
(5.99805e-05 -1.57227e-05 0)
(6.08819e-05 -9.84305e-06 0)
(-3.86726e-05 -1.31189e-05 0)
(-3.7652e-05 -1.94713e-05 0)
(-3.62328e-05 -2.44819e-05 0)
(-3.45418e-05 -2.79063e-05 0)
(-3.27055e-05 -2.98656e-05 0)
(-3.08227e-05 -3.07266e-05 0)
(-2.89573e-05 -3.08917e-05 0)
(-2.71464e-05 -3.06678e-05 0)
(-2.54056e-05 -3.02426e-05 0)
(-2.3736e-05 -2.97245e-05 0)
(-2.21382e-05 -2.91657e-05 0)
(-2.06131e-05 -2.85875e-05 0)
(-1.91568e-05 -2.80018e-05 0)
(-1.77625e-05 -2.74168e-05 0)
(-1.64257e-05 -2.68377e-05 0)
(-1.51431e-05 -2.62682e-05 0)
(-1.39122e-05 -2.57081e-05 0)
(-1.27307e-05 -2.51597e-05 0)
(-1.15958e-05 -2.46254e-05 0)
(-1.05061e-05 -2.41034e-05 0)
(-9.45946e-06 -2.35957e-05 0)
(-8.45128e-06 -2.31037e-05 0)
(-7.47556e-06 -2.26319e-05 0)
(-6.52566e-06 -2.21834e-05 0)
(-5.59698e-06 -2.17592e-05 0)
(-4.6884e-06 -2.13581e-05 0)
(-3.799e-06 -2.09769e-05 0)
(-2.92732e-06 -2.06134e-05 0)
(-2.07486e-06 -2.02659e-05 0)
(-1.24189e-06 -1.99311e-05 0)
(-4.26477e-07 -1.96075e-05 0)
(3.72351e-07 -1.92966e-05 0)
(1.15531e-06 -1.9e-05 0)
(1.92191e-06 -1.87185e-05 0)
(2.67149e-06 -1.84496e-05 0)
(3.4055e-06 -1.81921e-05 0)
(4.12633e-06 -1.79469e-05 0)
(4.83547e-06 -1.77149e-05 0)
(5.53295e-06 -1.74956e-05 0)
(6.21834e-06 -1.72877e-05 0)
(6.89234e-06 -1.70914e-05 0)
(7.55565e-06 -1.69075e-05 0)
(8.20824e-06 -1.67379e-05 0)
(8.85052e-06 -1.65844e-05 0)
(9.4836e-06 -1.64486e-05 0)
(1.01086e-05 -1.63321e-05 0)
(1.07267e-05 -1.62368e-05 0)
(1.13393e-05 -1.61623e-05 0)
(1.19491e-05 -1.61028e-05 0)
(1.25569e-05 -1.60505e-05 0)
(1.31605e-05 -1.60062e-05 0)
(1.37599e-05 -1.59795e-05 0)
(1.43597e-05 -1.59757e-05 0)
(1.49645e-05 -1.59935e-05 0)
(1.55763e-05 -1.60302e-05 0)
(1.61946e-05 -1.60857e-05 0)
(1.68172e-05 -1.61612e-05 0)
(1.74428e-05 -1.62551e-05 0)
(1.80721e-05 -1.63644e-05 0)
(1.87074e-05 -1.64872e-05 0)
(1.93499e-05 -1.6623e-05 0)
(1.99999e-05 -1.677e-05 0)
(2.06577e-05 -1.69274e-05 0)
(2.13247e-05 -1.70984e-05 0)
(2.20017e-05 -1.72852e-05 0)
(2.26877e-05 -1.74862e-05 0)
(2.33838e-05 -1.77016e-05 0)
(2.40936e-05 -1.79319e-05 0)
(2.48192e-05 -1.81696e-05 0)
(2.55568e-05 -1.84033e-05 0)
(2.63005e-05 -1.86451e-05 0)
(2.70519e-05 -1.89128e-05 0)
(2.78212e-05 -1.92143e-05 0)
(2.86152e-05 -1.95486e-05 0)
(2.94323e-05 -1.99096e-05 0)
(3.0269e-05 -2.02849e-05 0)
(3.11237e-05 -2.06687e-05 0)
(3.19955e-05 -2.10512e-05 0)
(3.28882e-05 -2.14238e-05 0)
(3.38088e-05 -2.18014e-05 0)
(3.47652e-05 -2.22123e-05 0)
(3.57676e-05 -2.26664e-05 0)
(3.68209e-05 -2.31499e-05 0)
(3.7922e-05 -2.36642e-05 0)
(3.90664e-05 -2.42024e-05 0)
(4.02531e-05 -2.47595e-05 0)
(4.14803e-05 -2.53153e-05 0)
(4.27465e-05 -2.58266e-05 0)
(4.40631e-05 -2.62892e-05 0)
(4.54493e-05 -2.67817e-05 0)
(4.69267e-05 -2.72821e-05 0)
(4.84927e-05 -2.78212e-05 0)
(5.0118e-05 -2.83073e-05 0)
(5.18039e-05 -2.85301e-05 0)
(5.35339e-05 -2.82693e-05 0)
(5.52788e-05 -2.73195e-05 0)
(5.69868e-05 -2.53171e-05 0)
(5.85504e-05 -2.18669e-05 0)
(5.9849e-05 -1.68271e-05 0)
(6.07495e-05 -1.05064e-05 0)
(-3.83871e-05 -1.39123e-05 0)
(-3.73379e-05 -2.07103e-05 0)
(-3.58787e-05 -2.60602e-05 0)
(-3.41426e-05 -2.96943e-05 0)
(-3.22593e-05 -3.1749e-05 0)
(-3.03302e-05 -3.2624e-05 0)
(-2.84231e-05 -3.27507e-05 0)
(-2.6577e-05 -3.24602e-05 0)
(-2.48053e-05 -3.19626e-05 0)
(-2.31115e-05 -3.13699e-05 0)
(-2.14997e-05 -3.07335e-05 0)
(-1.99689e-05 -3.00805e-05 0)
(-1.85114e-05 -2.94275e-05 0)
(-1.71205e-05 -2.87809e-05 0)
(-1.57921e-05 -2.81436e-05 0)
(-1.45233e-05 -2.75184e-05 0)
(-1.33117e-05 -2.6905e-05 0)
(-1.21534e-05 -2.63071e-05 0)
(-1.10447e-05 -2.57255e-05 0)
(-9.98266e-06 -2.51586e-05 0)
(-8.9615e-06 -2.46117e-05 0)
(-7.97473e-06 -2.4086e-05 0)
(-7.01584e-06 -2.35877e-05 0)
(-6.07905e-06 -2.31178e-05 0)
(-5.1602e-06 -2.26757e-05 0)
(-4.25889e-06 -2.22548e-05 0)
(-3.37716e-06 -2.1854e-05 0)
(-2.51672e-06 -2.14702e-05 0)
(-1.6789e-06 -2.11008e-05 0)
(-8.63654e-07 -2.07456e-05 0)
(-6.87895e-08 -2.04039e-05 0)
(7.08891e-07 -2.00767e-05 0)
(1.47142e-06 -1.9765e-05 0)
(2.21901e-06 -1.94676e-05 0)
(2.95161e-06 -1.91835e-05 0)
(3.67062e-06 -1.89124e-05 0)
(4.37685e-06 -1.86544e-05 0)
(5.06969e-06 -1.84094e-05 0)
(5.74859e-06 -1.8177e-05 0)
(6.41443e-06 -1.79567e-05 0)
(7.0678e-06 -1.77486e-05 0)
(7.70935e-06 -1.7554e-05 0)
(8.34076e-06 -1.73747e-05 0)
(8.96345e-06 -1.72126e-05 0)
(9.57878e-06 -1.70694e-05 0)
(1.01881e-05 -1.69465e-05 0)
(1.07922e-05 -1.68456e-05 0)
(1.13915e-05 -1.67666e-05 0)
(1.19859e-05 -1.6704e-05 0)
(1.2577e-05 -1.66493e-05 0)
(1.31678e-05 -1.6603e-05 0)
(1.37597e-05 -1.65755e-05 0)
(1.43523e-05 -1.65739e-05 0)
(1.49463e-05 -1.65965e-05 0)
(1.55431e-05 -1.66385e-05 0)
(1.61439e-05 -1.66992e-05 0)
(1.675e-05 -1.67787e-05 0)
(1.73607e-05 -1.68754e-05 0)
(1.79744e-05 -1.69882e-05 0)
(1.85921e-05 -1.71163e-05 0)
(1.92163e-05 -1.72593e-05 0)
(1.98496e-05 -1.74151e-05 0)
(2.04945e-05 -1.75834e-05 0)
(2.11519e-05 -1.77658e-05 0)
(2.18209e-05 -1.79628e-05 0)
(2.25001e-05 -1.81729e-05 0)
(2.31884e-05 -1.83986e-05 0)
(2.38877e-05 -1.86438e-05 0)
(2.45979e-05 -1.88936e-05 0)
(2.53171e-05 -1.91358e-05 0)
(2.6046e-05 -1.93849e-05 0)
(2.67856e-05 -1.96642e-05 0)
(2.75378e-05 -1.99838e-05 0)
(2.83059e-05 -2.03395e-05 0)
(2.90926e-05 -2.07211e-05 0)
(2.98983e-05 -2.11159e-05 0)
(3.0725e-05 -2.152e-05 0)
(3.15782e-05 -2.1926e-05 0)
(3.24642e-05 -2.23294e-05 0)
(3.33864e-05 -2.27419e-05 0)
(3.43439e-05 -2.31911e-05 0)
(3.53355e-05 -2.36882e-05 0)
(3.63645e-05 -2.4217e-05 0)
(3.74343e-05 -2.47747e-05 0)
(3.85492e-05 -2.53573e-05 0)
(3.97093e-05 -2.59557e-05 0)
(4.09168e-05 -2.65581e-05 0)
(4.21891e-05 -2.71283e-05 0)
(4.35311e-05 -2.76549e-05 0)
(4.49342e-05 -2.82174e-05 0)
(4.64043e-05 -2.8803e-05 0)
(4.7965e-05 -2.94262e-05 0)
(4.96332e-05 -2.99917e-05 0)
(5.13739e-05 -3.02725e-05 0)
(5.31465e-05 -3.00247e-05 0)
(5.49394e-05 -2.90753e-05 0)
(5.6696e-05 -2.69763e-05 0)
(5.83043e-05 -2.33162e-05 0)
(5.96294e-05 -1.79354e-05 0)
(6.05364e-05 -1.11602e-05 0)
(-3.79546e-05 -1.47103e-05 0)
(-3.6894e-05 -2.19802e-05 0)
(-3.54033e-05 -2.76754e-05 0)
(-3.36286e-05 -3.15255e-05 0)
(-3.17012e-05 -3.36782e-05 0)
(-2.97298e-05 -3.45639e-05 0)
(-2.77879e-05 -3.46444e-05 0)
(-2.59136e-05 -3.42825e-05 0)
(-2.41204e-05 -3.37066e-05 0)
(-2.24155e-05 -3.30286e-05 0)
(-2.08018e-05 -3.23056e-05 0)
(-1.92735e-05 -3.15736e-05 0)
(-1.78216e-05 -3.08496e-05 0)
(-1.64414e-05 -3.01356e-05 0)
(-1.51294e-05 -2.94345e-05 0)
(-1.38809e-05 -2.87493e-05 0)
(-1.2692e-05 -2.80786e-05 0)
(-1.15589e-05 -2.74286e-05 0)
(-1.04767e-05 -2.67981e-05 0)
(-9.43962e-06 -2.61884e-05 0)
(-8.44065e-06 -2.56053e-05 0)
(-7.47367e-06 -2.50497e-05 0)
(-6.53432e-06 -2.45262e-05 0)
(-5.61943e-06 -2.40351e-05 0)
(-4.72608e-06 -2.35744e-05 0)
(-3.85153e-06 -2.31353e-05 0)
(-2.9927e-06 -2.27168e-05 0)
(-2.15082e-06 -2.23119e-05 0)
(-1.32951e-06 -2.19202e-05 0)
(-5.29095e-07 -2.15434e-05 0)
(2.5269e-07 -2.11834e-05 0)
(1.01835e-06 -2.08401e-05 0)
(1.76854e-06 -2.05132e-05 0)
(2.50297e-06 -2.02003e-05 0)
(3.22182e-06 -1.99016e-05 0)
(3.92658e-06 -1.96175e-05 0)
(4.61905e-06 -1.9347e-05 0)
(5.29972e-06 -1.90888e-05 0)
(5.96837e-06 -1.88434e-05 0)
(6.62511e-06 -1.86109e-05 0)
(7.2704e-06 -1.83909e-05 0)
(7.90408e-06 -1.81849e-05 0)
(8.52527e-06 -1.79948e-05 0)
(9.13396e-06 -1.7823e-05 0)
(9.73143e-06 -1.76716e-05 0)
(1.03196e-05 -1.75422e-05 0)
(1.09005e-05 -1.74361e-05 0)
(1.14762e-05 -1.73532e-05 0)
(1.20494e-05 -1.72879e-05 0)
(1.26221e-05 -1.72327e-05 0)
(1.31949e-05 -1.7187e-05 0)
(1.37672e-05 -1.71595e-05 0)
(1.43389e-05 -1.71576e-05 0)
(1.49094e-05 -1.71802e-05 0)
(1.54803e-05 -1.72246e-05 0)
(1.60558e-05 -1.72907e-05 0)
(1.66398e-05 -1.73777e-05 0)
(1.72336e-05 -1.74809e-05 0)
(1.78365e-05 -1.75993e-05 0)
(1.84481e-05 -1.77342e-05 0)
(1.90686e-05 -1.78855e-05 0)
(1.9698e-05 -1.80509e-05 0)
(2.03354e-05 -1.82293e-05 0)
(2.09806e-05 -1.84221e-05 0)
(2.16358e-05 -1.86301e-05 0)
(2.23031e-05 -1.88514e-05 0)
(2.29813e-05 -1.90861e-05 0)
(2.36652e-05 -1.93391e-05 0)
(2.43544e-05 -1.95977e-05 0)
(2.50569e-05 -1.9854e-05 0)
(2.57778e-05 -2.01175e-05 0)
(2.6515e-05 -2.04101e-05 0)
(2.72664e-05 -2.0743e-05 0)
(2.80298e-05 -2.11127e-05 0)
(2.88033e-05 -2.15092e-05 0)
(2.95898e-05 -2.19223e-05 0)
(3.03959e-05 -2.23502e-05 0)
(3.12265e-05 -2.2785e-05 0)
(3.20872e-05 -2.3223e-05 0)
(3.29822e-05 -2.36717e-05 0)
(3.39119e-05 -2.4155e-05 0)
(3.48755e-05 -2.46854e-05 0)
(3.58762e-05 -2.52533e-05 0)
(3.69173e-05 -2.58518e-05 0)
(3.80029e-05 -2.64824e-05 0)
(3.91435e-05 -2.71325e-05 0)
(4.03396e-05 -2.77897e-05 0)
(4.15941e-05 -2.84329e-05 0)
(4.29223e-05 -2.90298e-05 0)
(4.43163e-05 -2.96492e-05 0)
(4.57916e-05 -3.0324e-05 0)
(4.73888e-05 -3.10634e-05 0)
(4.90675e-05 -3.1701e-05 0)
(5.07804e-05 -3.20223e-05 0)
(5.25763e-05 -3.18391e-05 0)
(5.44491e-05 -3.08981e-05 0)
(5.62816e-05 -2.8692e-05 0)
(5.79348e-05 -2.4796e-05 0)
(5.92849e-05 -1.90656e-05 0)
(6.02124e-05 -1.18223e-05 0)
(-3.74244e-05 -1.55128e-05 0)
(-3.63444e-05 -2.32716e-05 0)
(-3.48234e-05 -2.93264e-05 0)
(-3.3005e-05 -3.33987e-05 0)
(-3.10361e-05 -3.56483e-05 0)
(-2.90307e-05 -3.65378e-05 0)
(-2.70612e-05 -3.6566e-05 0)
(-2.51646e-05 -3.61269e-05 0)
(-2.33597e-05 -3.54614e-05 0)
(-2.16536e-05 -3.46887e-05 0)
(-2.00418e-05 -3.38765e-05 0)
(-1.85163e-05 -3.3063e-05 0)
(-1.70729e-05 -3.22623e-05 0)
(-1.57088e-05 -3.14744e-05 0)
(-1.44169e-05 -3.0706e-05 0)
(-1.31908e-05 -2.9958e-05 0)
(-1.2027e-05 -2.92278e-05 0)
(-1.09211e-05 -2.85235e-05 0)
(-9.86708e-06 -2.78444e-05 0)
(-8.85664e-06 -2.71943e-05 0)
(-7.88289e-06 -2.65764e-05 0)
(-6.94103e-06 -2.59912e-05 0)
(-6.02765e-06 -2.54405e-05 0)
(-5.13873e-06 -2.49268e-05 0)
(-4.27011e-06 -2.4446e-05 0)
(-3.41842e-06 -2.39909e-05 0)
(-2.58299e-06 -2.35565e-05 0)
(-1.76609e-06 -2.31327e-05 0)
(-9.68065e-07 -2.27212e-05 0)
(-1.87452e-07 -2.23261e-05 0)
(5.78225e-07 -2.19503e-05 0)
(1.33011e-06 -2.15919e-05 0)
(2.06759e-06 -2.12493e-05 0)
(2.79014e-06 -2.0921e-05 0)
(3.4986e-06 -2.06077e-05 0)
(4.19415e-06 -2.03107e-05 0)
(4.87728e-06 -2.0028e-05 0)
(5.54814e-06 -1.97579e-05 0)
(6.207e-06 -1.95007e-05 0)
(6.85398e-06 -1.92567e-05 0)
(7.48886e-06 -1.90253e-05 0)
(8.11085e-06 -1.88068e-05 0)
(8.71923e-06 -1.86036e-05 0)
(9.31439e-06 -1.84193e-05 0)
(9.89749e-06 -1.8257e-05 0)
(1.04699e-05 -1.81184e-05 0)
(1.10329e-05 -1.80048e-05 0)
(1.15871e-05 -1.79159e-05 0)
(1.21331e-05 -1.78467e-05 0)
(1.26738e-05 -1.77901e-05 0)
(1.32138e-05 -1.77449e-05 0)
(1.37567e-05 -1.77189e-05 0)
(1.4304e-05 -1.77182e-05 0)
(1.48544e-05 -1.77409e-05 0)
(1.54086e-05 -1.77892e-05 0)
(1.59699e-05 -1.78627e-05 0)
(1.65397e-05 -1.7959e-05 0)
(1.7118e-05 -1.80715e-05 0)
(1.77049e-05 -1.8199e-05 0)
(1.83016e-05 -1.83438e-05 0)
(1.8909e-05 -1.85052e-05 0)
(1.95269e-05 -1.86798e-05 0)
(2.01554e-05 -1.8867e-05 0)
(2.07947e-05 -1.90687e-05 0)
(2.14439e-05 -1.92866e-05 0)
(2.21022e-05 -1.95187e-05 0)
(2.27701e-05 -1.97629e-05 0)
(2.34464e-05 -2.00209e-05 0)
(2.41301e-05 -2.02883e-05 0)
(2.48235e-05 -2.05603e-05 0)
(2.55299e-05 -2.08408e-05 0)
(2.62511e-05 -2.11491e-05 0)
(2.69854e-05 -2.14946e-05 0)
(2.77282e-05 -2.18729e-05 0)
(2.84784e-05 -2.22781e-05 0)
(2.92401e-05 -2.27072e-05 0)
(3.00186e-05 -2.31559e-05 0)
(3.08198e-05 -2.36174e-05 0)
(3.16525e-05 -2.40887e-05 0)
(3.25187e-05 -2.45701e-05 0)
(3.34157e-05 -2.50858e-05 0)
(3.43466e-05 -2.56529e-05 0)
(3.53184e-05 -2.62623e-05 0)
(3.6334e-05 -2.69034e-05 0)
(3.74006e-05 -2.75858e-05 0)
(3.85233e-05 -2.82932e-05 0)
(3.97019e-05 -2.90055e-05 0)
(4.09361e-05 -2.97116e-05 0)
(4.22387e-05 -3.03892e-05 0)
(4.36353e-05 -3.10906e-05 0)
(4.5138e-05 -3.18685e-05 0)
(4.6723e-05 -3.2699e-05 0)
(4.83794e-05 -3.3395e-05 0)
(5.01154e-05 -3.37783e-05 0)
(5.194e-05 -3.36982e-05 0)
(5.38209e-05 -3.27673e-05 0)
(5.56707e-05 -3.04601e-05 0)
(5.73728e-05 -2.63215e-05 0)
(5.87672e-05 -2.02273e-05 0)
(5.9705e-05 -1.24928e-05 0)
(-3.6778e-05 -1.63495e-05 0)
(-3.56645e-05 -2.45859e-05 0)
(-3.41084e-05 -3.10208e-05 0)
(-3.2247e-05 -3.53141e-05 0)
(-3.02419e-05 -3.76537e-05 0)
(-2.82068e-05 -3.85403e-05 0)
(-2.62123e-05 -3.85116e-05 0)
(-2.42992e-05 -3.79861e-05 0)
(-2.24885e-05 -3.72198e-05 0)
(-2.07822e-05 -3.63483e-05 0)
(-1.91735e-05 -3.54448e-05 0)
(-1.76582e-05 -3.45438e-05 0)
(-1.62338e-05 -3.3658e-05 0)
(-1.48943e-05 -3.27913e-05 0)
(-1.363e-05 -3.19532e-05 0)
(-1.2435e-05 -3.11391e-05 0)
(-1.13045e-05 -3.03478e-05 0)
(-1.02323e-05 -2.9588e-05 0)
(-9.21104e-06 -2.88614e-05 0)
(-8.23208e-06 -2.81722e-05 0)
(-7.28858e-06 -2.75203e-05 0)
(-6.37538e-06 -2.6906e-05 0)
(-5.48774e-06 -2.63297e-05 0)
(-4.62169e-06 -2.57951e-05 0)
(-3.77534e-06 -2.52947e-05 0)
(-2.94836e-06 -2.48225e-05 0)
(-2.14133e-06 -2.43688e-05 0)
(-1.35371e-06 -2.39266e-05 0)
(-5.82301e-07 -2.34986e-05 0)
(1.76057e-07 -2.30894e-05 0)
(9.22421e-07 -2.27004e-05 0)
(1.65674e-06 -2.23289e-05 0)
(2.37893e-06 -2.19724e-05 0)
(3.08873e-06 -2.16304e-05 0)
(3.78684e-06 -2.13046e-05 0)
(4.47392e-06 -2.09956e-05 0)
(5.1494e-06 -2.07007e-05 0)
(5.81255e-06 -2.04183e-05 0)
(6.46274e-06 -2.01488e-05 0)
(7.09925e-06 -1.98921e-05 0)
(7.72116e-06 -1.96472e-05 0)
(8.32797e-06 -1.94147e-05 0)
(8.92024e-06 -1.91979e-05 0)
(9.49894e-06 -1.90008e-05 0)
(1.00646e-05 -1.88264e-05 0)
(1.06179e-05 -1.86768e-05 0)
(1.11592e-05 -1.85529e-05 0)
(1.16889e-05 -1.84537e-05 0)
(1.22082e-05 -1.83759e-05 0)
(1.27208e-05 -1.83154e-05 0)
(1.32316e-05 -1.82707e-05 0)
(1.37449e-05 -1.82492e-05 0)
(1.42648e-05 -1.82551e-05 0)
(1.47932e-05 -1.82835e-05 0)
(1.53303e-05 -1.83395e-05 0)
(1.58761e-05 -1.84216e-05 0)
(1.64298e-05 -1.85256e-05 0)
(1.69915e-05 -1.86464e-05 0)
(1.7563e-05 -1.87837e-05 0)
(1.81454e-05 -1.89393e-05 0)
(1.87395e-05 -1.91121e-05 0)
(1.93463e-05 -1.92986e-05 0)
(1.99668e-05 -1.94979e-05 0)
(2.06006e-05 -1.97111e-05 0)
(2.12465e-05 -1.9939e-05 0)
(2.19029e-05 -2.01807e-05 0)
(2.2569e-05 -2.04346e-05 0)
(2.32429e-05 -2.06999e-05 0)
(2.3922e-05 -2.09736e-05 0)
(2.46051e-05 -2.12539e-05 0)
(2.52941e-05 -2.1545e-05 0)
(2.59903e-05 -2.18639e-05 0)
(2.66933e-05 -2.22181e-05 0)
(2.74037e-05 -2.26036e-05 0)
(2.81234e-05 -2.30183e-05 0)
(2.88543e-05 -2.34617e-05 0)
(2.9599e-05 -2.39285e-05 0)
(3.03636e-05 -2.4416e-05 0)
(3.11591e-05 -2.49225e-05 0)
(3.1992e-05 -2.54381e-05 0)
(3.28609e-05 -2.59869e-05 0)
(3.37621e-05 -2.65899e-05 0)
(3.47001e-05 -2.7243e-05 0)
(3.56844e-05 -2.79314e-05 0)
(3.67258e-05 -2.86731e-05 0)
(3.78303e-05 -2.94378e-05 0)
(3.90006e-05 -3.02134e-05 0)
(4.02336e-05 -3.09783e-05 0)
(4.15269e-05 -3.17295e-05 0)
(4.28953e-05 -3.25278e-05 0)
(4.43692e-05 -3.34116e-05 0)
(4.59543e-05 -3.43165e-05 0)
(4.76388e-05 -3.51101e-05 0)
(4.93988e-05 -3.55602e-05 0)
(5.1224e-05 -3.55618e-05 0)
(5.30993e-05 -3.46353e-05 0)
(5.4956e-05 -3.225e-05 0)
(5.66673e-05 -2.7876e-05 0)
(5.80452e-05 -2.13836e-05 0)
(5.89646e-05 -1.3158e-05 0)
(-3.59292e-05 -1.72195e-05 0)
(-3.47854e-05 -2.59333e-05 0)
(-3.31974e-05 -3.27503e-05 0)
(-3.13101e-05 -3.72632e-05 0)
(-2.92788e-05 -3.9688e-05 0)
(-2.72212e-05 -4.05667e-05 0)
(-2.52121e-05 -4.04739e-05 0)
(-2.32943e-05 -3.98513e-05 0)
(-2.14859e-05 -3.89774e-05 0)
(-1.97865e-05 -3.80035e-05 0)
(-1.81923e-05 -3.70007e-05 0)
(-1.67009e-05 -3.60031e-05 0)
(-1.53067e-05 -3.5026e-05 0)
(-1.40002e-05 -3.4078e-05 0)
(-1.2772e-05 -3.31667e-05 0)
(-1.16164e-05 -3.22836e-05 0)
(-1.05259e-05 -3.14315e-05 0)
(-9.49205e-06 -3.06173e-05 0)
(-8.50683e-06 -2.98454e-05 0)
(-7.56215e-06 -2.91181e-05 0)
(-6.65085e-06 -2.84347e-05 0)
(-5.76753e-06 -2.77929e-05 0)
(-4.90855e-06 -2.71935e-05 0)
(-4.07167e-06 -2.66376e-05 0)
(-3.25582e-06 -2.61171e-05 0)
(-2.46032e-06 -2.56245e-05 0)
(-1.68465e-06 -2.5151e-05 0)
(-9.25976e-07 -2.46922e-05 0)
(-1.80396e-07 -2.42514e-05 0)
(5.55069e-07 -2.38315e-05 0)
(1.281e-06 -2.34313e-05 0)
(1.99687e-06 -2.30486e-05 0)
(2.7029e-06 -2.26809e-05 0)
(3.39943e-06 -2.23277e-05 0)
(4.08717e-06 -2.19921e-05 0)
(4.76646e-06 -2.16732e-05 0)
(5.43586e-06 -2.1367e-05 0)
(6.09295e-06 -2.10718e-05 0)
(6.73535e-06 -2.07879e-05 0)
(7.36104e-06 -2.05155e-05 0)
(7.96899e-06 -2.02543e-05 0)
(8.55985e-06 -2.00062e-05 0)
(9.13509e-06 -1.97751e-05 0)
(9.69528e-06 -1.95639e-05 0)
(1.02403e-05 -1.93756e-05 0)
(1.07704e-05 -1.92127e-05 0)
(1.12863e-05 -1.9076e-05 0)
(1.17889e-05 -1.89647e-05 0)
(1.22807e-05 -1.88776e-05 0)
(1.27667e-05 -1.88136e-05 0)
(1.32534e-05 -1.87704e-05 0)
(1.37443e-05 -1.87538e-05 0)
(1.42409e-05 -1.87676e-05 0)
(1.47449e-05 -1.8805e-05 0)
(1.52571e-05 -1.88696e-05 0)
(1.57774e-05 -1.89605e-05 0)
(1.63074e-05 -1.90732e-05 0)
(1.68486e-05 -1.92042e-05 0)
(1.74024e-05 -1.93534e-05 0)
(1.79697e-05 -1.95215e-05 0)
(1.85509e-05 -1.97075e-05 0)
(1.91463e-05 -1.9908e-05 0)
(1.97562e-05 -2.01216e-05 0)
(2.03814e-05 -2.0349e-05 0)
(2.10217e-05 -2.05902e-05 0)
(2.16749e-05 -2.08424e-05 0)
(2.23351e-05 -2.11026e-05 0)
(2.29971e-05 -2.13706e-05 0)
(2.3659e-05 -2.16458e-05 0)
(2.43213e-05 -2.19286e-05 0)
(2.49869e-05 -2.22252e-05 0)
(2.56599e-05 -2.25514e-05 0)
(2.63419e-05 -2.29131e-05 0)
(2.70318e-05 -2.33066e-05 0)
(2.77296e-05 -2.37313e-05 0)
(2.84366e-05 -2.41862e-05 0)
(2.91537e-05 -2.46677e-05 0)
(2.98856e-05 -2.51771e-05 0)
(3.06419e-05 -2.57168e-05 0)
(3.14331e-05 -2.62706e-05 0)
(3.226e-05 -2.68532e-05 0)
(3.3118e-05 -2.74881e-05 0)
(3.40087e-05 -2.81814e-05 0)
(3.49451e-05 -2.89228e-05 0)
(3.5941e-05 -2.97279e-05 0)
(3.70125e-05 -3.05682e-05 0)
(3.81675e-05 -3.1417e-05 0)
(3.93814e-05 -3.22328e-05 0)
(4.06405e-05 -3.30403e-05 0)
(4.19672e-05 -3.39232e-05 0)
(4.34321e-05 -3.49568e-05 0)
(4.50666e-05 -3.59864e-05 0)
(4.67872e-05 -3.68476e-05 0)
(4.85359e-05 -3.73323e-05 0)
(5.03211e-05 -3.73858e-05 0)
(5.21484e-05 -3.64781e-05 0)
(5.39748e-05 -3.40282e-05 0)
(5.56792e-05 -2.94282e-05 0)
(5.70676e-05 -2.25217e-05 0)
(5.8011e-05 -1.38388e-05 0)
(-3.48968e-05 -1.81027e-05 0)
(-3.37322e-05 -2.73128e-05 0)
(-3.21205e-05 -3.44996e-05 0)
(-3.02161e-05 -3.92328e-05 0)
(-2.8169e-05 -4.17412e-05 0)
(-2.61e-05 -4.26062e-05 0)
(-2.40881e-05 -4.24392e-05 0)
(-2.21755e-05 -4.17122e-05 0)
(-2.03759e-05 -4.07274e-05 0)
(-1.86914e-05 -3.96436e-05 0)
(-1.71216e-05 -3.85319e-05 0)
(-1.56615e-05 -3.74312e-05 0)
(-1.43018e-05 -3.63598e-05 0)
(-1.3033e-05 -3.53276e-05 0)
(-1.18476e-05 -3.43385e-05 0)
(-1.07379e-05 -3.33851e-05 0)
(-9.69273e-06 -3.24736e-05 0)
(-8.70231e-06 -3.16071e-05 0)
(-7.75903e-06 -3.07915e-05 0)
(-6.85531e-06 -3.00274e-05 0)
(-5.98435e-06 -2.93138e-05 0)
(-5.13941e-06 -2.8647e-05 0)
(-4.31543e-06 -2.80263e-05 0)
(-3.51138e-06 -2.7449e-05 0)
(-2.72778e-06 -2.69078e-05 0)
(-1.96447e-06 -2.63948e-05 0)
(-1.21972e-06 -2.59033e-05 0)
(-4.89201e-07 -2.54312e-05 0)
(2.31492e-07 -2.49802e-05 0)
(9.43728e-07 -2.45512e-05 0)
(1.64784e-06 -2.41417e-05 0)
(2.34437e-06 -2.375e-05 0)
(3.03454e-06 -2.33744e-05 0)
(3.72045e-06 -2.30147e-05 0)
(4.40263e-06 -2.2673e-05 0)
(5.07838e-06 -2.23459e-05 0)
(5.7433e-06 -2.20283e-05 0)
(6.39356e-06 -2.17188e-05 0)
(7.02677e-06 -2.14182e-05 0)
(7.6413e-06 -2.11272e-05 0)
(8.23661e-06 -2.08474e-05 0)
(8.81288e-06 -2.05815e-05 0)
(9.36985e-06 -2.0333e-05 0)
(9.90757e-06 -2.01047e-05 0)
(1.04269e-05 -1.98999e-05 0)
(1.09292e-05 -1.97215e-05 0)
(1.14165e-05 -1.9571e-05 0)
(1.18916e-05 -1.94483e-05 0)
(1.23586e-05 -1.93542e-05 0)
(1.28227e-05 -1.92892e-05 0)
(1.32885e-05 -1.92496e-05 0)
(1.37572e-05 -1.92367e-05 0)
(1.42283e-05 -1.92552e-05 0)
(1.4704e-05 -1.93001e-05 0)
(1.5187e-05 -1.93723e-05 0)
(1.56789e-05 -1.94725e-05 0)
(1.6182e-05 -1.95966e-05 0)
(1.66987e-05 -1.97408e-05 0)
(1.72303e-05 -1.99041e-05 0)
(1.77774e-05 -2.00868e-05 0)
(1.83391e-05 -2.02869e-05 0)
(1.89143e-05 -2.05011e-05 0)
(1.95038e-05 -2.07299e-05 0)
(2.01091e-05 -2.09732e-05 0)
(2.07288e-05 -2.12283e-05 0)
(2.13576e-05 -2.14887e-05 0)
(2.19913e-05 -2.17525e-05 0)
(2.26301e-05 -2.20228e-05 0)
(2.32741e-05 -2.22999e-05 0)
(2.39222e-05 -2.25846e-05 0)
(2.45751e-05 -2.28866e-05 0)
(2.52358e-05 -2.32217e-05 0)
(2.59046e-05 -2.35917e-05 0)
(2.6579e-05 -2.3992e-05 0)
(2.72593e-05 -2.44252e-05 0)
(2.79467e-05 -2.48885e-05 0)
(2.86397e-05 -2.53786e-05 0)
(2.93402e-05 -2.59027e-05 0)
(3.00559e-05 -2.64676e-05 0)
(3.07998e-05 -2.70579e-05 0)
(3.15816e-05 -2.76766e-05 0)
(3.23984e-05 -2.83429e-05 0)
(3.32479e-05 -2.9073e-05 0)
(3.41399e-05 -2.98672e-05 0)
(3.50928e-05 -3.07397e-05 0)
(3.61145e-05 -3.16575e-05 0)
(3.72027e-05 -3.25779e-05 0)
(3.83488e-05 -3.34403e-05 0)
(3.95653e-05 -3.43198e-05 0)
(4.09039e-05 -3.53204e-05 0)
(4.23989e-05 -3.65248e-05 0)
(4.39944e-05 -3.76512e-05 0)
(4.56352e-05 -3.85508e-05 0)
(4.73653e-05 -3.91017e-05 0)
(4.91953e-05 -3.92048e-05 0)
(5.10506e-05 -3.82966e-05 0)
(5.28685e-05 -3.57841e-05 0)
(5.45675e-05 -3.0984e-05 0)
(5.5994e-05 -2.36998e-05 0)
(5.69993e-05 -1.45673e-05 0)
(-3.37408e-05 -1.9012e-05 0)
(-3.2545e-05 -2.8715e-05 0)
(-3.09134e-05 -3.62668e-05 0)
(-2.89913e-05 -4.12168e-05 0)
(-2.69321e-05 -4.3805e-05 0)
(-2.48582e-05 -4.4649e-05 0)
(-2.28481e-05 -4.44008e-05 0)
(-2.09409e-05 -4.35656e-05 0)
(-1.91534e-05 -4.24634e-05 0)
(-1.74922e-05 -4.12593e-05 0)
(-1.59539e-05 -4.00319e-05 0)
(-1.45294e-05 -3.88241e-05 0)
(-1.32104e-05 -3.76543e-05 0)
(-1.19881e-05 -3.65329e-05 0)
(-1.08542e-05 -3.54613e-05 0)
(-9.79737e-06 -3.44374e-05 0)
(-8.80501e-06 -3.34667e-05 0)
(-7.86664e-06 -3.25499e-05 0)
(-6.97361e-06 -3.16915e-05 0)
(-6.1174e-06 -3.08933e-05 0)
(-5.28932e-06 -3.01525e-05 0)
(-4.48369e-06 -2.94642e-05 0)
(-3.69841e-06 -2.88234e-05 0)
(-2.93334e-06 -2.82259e-05 0)
(-2.18761e-06 -2.76649e-05 0)
(-1.45893e-06 -2.71338e-05 0)
(-7.444e-07 -2.66269e-05 0)
(-4.09843e-08 -2.61438e-05 0)
(6.54175e-07 -2.56843e-05 0)
(1.34364e-06 -2.52484e-05 0)
(2.02971e-06 -2.48333e-05 0)
(2.71446e-06 -2.44377e-05 0)
(3.40009e-06 -2.40606e-05 0)
(4.08681e-06 -2.36995e-05 0)
(4.76998e-06 -2.33524e-05 0)
(5.44255e-06 -2.30147e-05 0)
(6.09879e-06 -2.26817e-05 0)
(6.73511e-06 -2.23538e-05 0)
(7.35065e-06 -2.20339e-05 0)
(7.94563e-06 -2.17228e-05 0)
(8.52013e-06 -2.14232e-05 0)
(9.07473e-06 -2.11379e-05 0)
(9.61061e-06 -2.08705e-05 0)
(1.01281e-05 -2.06232e-05 0)
(1.06268e-05 -2.04e-05 0)
(1.11072e-05 -2.02048e-05 0)
(1.15714e-05 -2.00403e-05 0)
(1.20233e-05 -1.99075e-05 0)
(1.24665e-05 -1.98075e-05 0)
(1.29039e-05 -1.97404e-05 0)
(1.33389e-05 -1.97024e-05 0)
(1.37749e-05 -1.9692e-05 0)
(1.42134e-05 -1.97132e-05 0)
(1.4656e-05 -1.97643e-05 0)
(1.51065e-05 -1.98449e-05 0)
(1.55679e-05 -1.99559e-05 0)
(1.60425e-05 -2.00931e-05 0)
(1.65322e-05 -2.02521e-05 0)
(1.70391e-05 -2.04318e-05 0)
(1.75638e-05 -2.06309e-05 0)
(1.81054e-05 -2.08458e-05 0)
(1.86624e-05 -2.10739e-05 0)
(1.92342e-05 -2.13178e-05 0)
(1.98197e-05 -2.15752e-05 0)
(2.04152e-05 -2.18401e-05 0)
(2.10177e-05 -2.21068e-05 0)
(2.16284e-05 -2.23776e-05 0)
(2.22485e-05 -2.26557e-05 0)
(2.28771e-05 -2.29394e-05 0)
(2.35141e-05 -2.32309e-05 0)
(2.41609e-05 -2.35408e-05 0)
(2.48145e-05 -2.38821e-05 0)
(2.54688e-05 -2.42549e-05 0)
(2.61216e-05 -2.46576e-05 0)
(2.67759e-05 -2.50963e-05 0)
(2.74329e-05 -2.55639e-05 0)
(2.80923e-05 -2.60581e-05 0)
(2.8758e-05 -2.65927e-05 0)
(2.9436e-05 -2.71758e-05 0)
(3.01366e-05 -2.77987e-05 0)
(3.08693e-05 -2.84541e-05 0)
(3.16357e-05 -2.91541e-05 0)
(3.24377e-05 -2.99219e-05 0)
(3.32857e-05 -3.07673e-05 0)
(3.41881e-05 -3.17011e-05 0)
(3.51436e-05 -3.2677e-05 0)
(3.6155e-05 -3.36618e-05 0)
(3.72507e-05 -3.46059e-05 0)
(3.84657e-05 -3.55997e-05 0)
(3.98198e-05 -3.67464e-05 0)
(4.12638e-05 -3.80408e-05 0)
(4.27564e-05 -3.92215e-05 0)
(4.43627e-05 -4.02289e-05 0)
(4.6127e-05 -4.09104e-05 0)
(4.7992e-05 -4.10695e-05 0)
(4.98853e-05 -4.01457e-05 0)
(5.17474e-05 -3.75589e-05 0)
(5.34994e-05 -3.25853e-05 0)
(5.50088e-05 -2.49641e-05 0)
(5.60889e-05 -1.5353e-05 0)
(-3.24294e-05 -1.99641e-05 0)
(-3.12e-05 -3.01419e-05 0)
(-2.9543e-05 -3.80554e-05 0)
(-2.76026e-05 -4.32154e-05 0)
(-2.55335e-05 -4.58757e-05 0)
(-2.34574e-05 -4.66913e-05 0)
(-2.14512e-05 -4.63567e-05 0)
(-1.95564e-05 -4.54064e-05 0)
(-1.77927e-05 -4.4176e-05 0)
(-1.61648e-05 -4.28421e-05 0)
(-1.46666e-05 -4.1494e-05 0)
(-1.32884e-05 -4.01739e-05 0)
(-1.20218e-05 -3.89e-05 0)
(-1.08564e-05 -3.76847e-05 0)
(-9.78046e-06 -3.6529e-05 0)
(-8.78035e-06 -3.54358e-05 0)
(-7.84295e-06 -3.44063e-05 0)
(-6.95696e-06 -3.34421e-05 0)
(-6.11212e-06 -3.25442e-05 0)
(-5.30168e-06 -3.17143e-05 0)
(-4.5205e-06 -3.09477e-05 0)
(-3.76439e-06 -3.02373e-05 0)
(-3.0307e-06 -2.95753e-05 0)
(-2.31715e-06 -2.89583e-05 0)
(-1.62042e-06 -2.83803e-05 0)
(-9.3571e-07 -2.78362e-05 0)
(-2.57813e-07 -2.73202e-05 0)
(4.1698e-07 -2.68307e-05 0)
(1.09111e-06 -2.63676e-05 0)
(1.76702e-06 -2.59305e-05 0)
(2.44679e-06 -2.55162e-05 0)
(3.13018e-06 -2.51219e-05 0)
(3.81431e-06 -2.47454e-05 0)
(4.49564e-06 -2.43822e-05 0)
(5.17006e-06 -2.40268e-05 0)
(5.83177e-06 -2.36745e-05 0)
(6.47505e-06 -2.33217e-05 0)
(7.09634e-06 -2.29716e-05 0)
(7.69464e-06 -2.26297e-05 0)
(8.27035e-06 -2.22971e-05 0)
(8.82429e-06 -2.19768e-05 0)
(9.35763e-06 -2.16722e-05 0)
(9.87144e-06 -2.13865e-05 0)
(1.03662e-05 -2.11209e-05 0)
(1.08423e-05 -2.08794e-05 0)
(1.13006e-05 -2.06671e-05 0)
(1.17427e-05 -2.0488e-05 0)
(1.21706e-05 -2.03439e-05 0)
(1.25877e-05 -2.02359e-05 0)
(1.29971e-05 -2.01633e-05 0)
(1.34015e-05 -2.01226e-05 0)
(1.38025e-05 -2.01117e-05 0)
(1.42018e-05 -2.01337e-05 0)
(1.46036e-05 -2.01903e-05 0)
(1.50147e-05 -2.02818e-05 0)
(1.54407e-05 -2.04073e-05 0)
(1.58851e-05 -2.05613e-05 0)
(1.63501e-05 -2.0739e-05 0)
(1.68361e-05 -2.09377e-05 0)
(1.73421e-05 -2.1155e-05 0)
(1.78663e-05 -2.13863e-05 0)
(1.84067e-05 -2.16293e-05 0)
(1.89611e-05 -2.18867e-05 0)
(1.95282e-05 -2.21558e-05 0)
(2.01065e-05 -2.24292e-05 0)
(2.06934e-05 -2.27026e-05 0)
(2.12869e-05 -2.29818e-05 0)
(2.18884e-05 -2.32695e-05 0)
(2.25001e-05 -2.35639e-05 0)
(2.31236e-05 -2.38672e-05 0)
(2.37577e-05 -2.41872e-05 0)
(2.43964e-05 -2.45311e-05 0)
(2.50335e-05 -2.49015e-05 0)
(2.56673e-05 -2.53025e-05 0)
(2.62973e-05 -2.57402e-05 0)
(2.69247e-05 -2.62082e-05 0)
(2.75553e-05 -2.67077e-05 0)
(2.81934e-05 -2.72515e-05 0)
(2.88372e-05 -2.78446e-05 0)
(2.9493e-05 -2.84918e-05 0)
(3.01703e-05 -2.91761e-05 0)
(3.08768e-05 -2.99118e-05 0)
(3.16216e-05 -3.07198e-05 0)
(3.24104e-05 -3.16144e-05 0)
(3.32487e-05 -3.26018e-05 0)
(3.41491e-05 -3.36397e-05 0)
(3.51242e-05 -3.4698e-05 0)
(3.61956e-05 -3.57522e-05 0)
(3.73723e-05 -3.68602e-05 0)
(3.86378e-05 -3.81137e-05 0)
(4.00085e-05 -3.94866e-05 0)
(4.15016e-05 -4.07623e-05 0)
(4.31114e-05 -4.19115e-05 0)
(4.48479e-05 -4.27277e-05 0)
(4.67127e-05 -4.29656e-05 0)
(4.86524e-05 -4.20519e-05 0)
(5.05627e-05 -3.93766e-05 0)
(5.2335e-05 -3.42285e-05 0)
(5.38583e-05 -2.62872e-05 0)
(5.49586e-05 -1.61696e-05 0)
(-3.0931e-05 -2.09461e-05 0)
(-2.96766e-05 -3.15962e-05 0)
(-2.79972e-05 -3.98633e-05 0)
(-2.60431e-05 -4.52255e-05 0)
(-2.39672e-05 -4.79499e-05 0)
(-2.18903e-05 -4.87312e-05 0)
(-1.98913e-05 -4.83022e-05 0)
(-1.80158e-05 -4.72249e-05 0)
(-1.62834e-05 -4.58554e-05 0)
(-1.46955e-05 -4.43849e-05 0)
(-1.32455e-05 -4.29086e-05 0)
(-1.19248e-05 -4.14687e-05 0)
(-1.07217e-05 -4.00864e-05 0)
(-9.62258e-06 -3.87749e-05 0)
(-8.61247e-06 -3.7537e-05 0)
(-7.67654e-06 -3.63757e-05 0)
(-6.80174e-06 -3.52897e-05 0)
(-5.9769e-06 -3.42798e-05 0)
(-5.19346e-06 -3.33441e-05 0)
(-4.44467e-06 -3.2482e-05 0)
(-3.72439e-06 -3.16886e-05 0)
(-3.02817e-06 -3.09544e-05 0)
(-2.3536e-06 -3.0271e-05 0)
(-1.69688e-06 -2.96366e-05 0)
(-1.05178e-06 -2.9047e-05 0)
(-4.11613e-07 -2.84972e-05 0)
(2.29433e-07 -2.79805e-05 0)
(8.75601e-07 -2.74933e-05 0)
(1.52889e-06 -2.70343e-05 0)
(2.19118e-06 -2.66038e-05 0)
(2.86364e-06 -2.61964e-05 0)
(3.5433e-06 -2.58052e-05 0)
(4.22409e-06 -2.54267e-05 0)
(4.90078e-06 -2.50576e-05 0)
(5.56759e-06 -2.46902e-05 0)
(6.21793e-06 -2.43202e-05 0)
(6.84796e-06 -2.39464e-05 0)
(7.45629e-06 -2.35737e-05 0)
(8.0422e-06 -2.3209e-05 0)
(8.60481e-06 -2.28539e-05 0)
(9.14368e-06 -2.25117e-05 0)
(9.65966e-06 -2.21866e-05 0)
(1.01537e-05 -2.18811e-05 0)
(1.06257e-05 -2.15954e-05 0)
(1.10756e-05 -2.13344e-05 0)
(1.15039e-05 -2.11032e-05 0)
(1.19115e-05 -2.09066e-05 0)
(1.23017e-05 -2.07487e-05 0)
(1.26798e-05 -2.06314e-05 0)
(1.30502e-05 -2.05527e-05 0)
(1.34159e-05 -2.05079e-05 0)
(1.378e-05 -2.04949e-05 0)
(1.41454e-05 -2.05178e-05 0)
(1.45166e-05 -2.05814e-05 0)
(1.48997e-05 -2.06864e-05 0)
(1.52998e-05 -2.08299e-05 0)
(1.57201e-05 -2.10045e-05 0)
(1.61627e-05 -2.1204e-05 0)
(1.66284e-05 -2.14242e-05 0)
(1.71164e-05 -2.16615e-05 0)
(1.76252e-05 -2.19112e-05 0)
(1.81532e-05 -2.21705e-05 0)
(1.86983e-05 -2.24421e-05 0)
(1.92593e-05 -2.27247e-05 0)
(1.98348e-05 -2.30101e-05 0)
(2.04227e-05 -2.32925e-05 0)
(2.102e-05 -2.35793e-05 0)
(2.16242e-05 -2.38749e-05 0)
(2.22334e-05 -2.41776e-05 0)
(2.28448e-05 -2.44874e-05 0)
(2.34545e-05 -2.48106e-05 0)
(2.40605e-05 -2.51534e-05 0)
(2.46615e-05 -2.55203e-05 0)
(2.52574e-05 -2.59181e-05 0)
(2.58496e-05 -2.63526e-05 0)
(2.6441e-05 -2.68213e-05 0)
(2.70348e-05 -2.73262e-05 0)
(2.76321e-05 -2.78757e-05 0)
(2.8234e-05 -2.84734e-05 0)
(2.88421e-05 -2.91334e-05 0)
(2.94628e-05 -2.98389e-05 0)
(3.01067e-05 -3.0607e-05 0)
(3.0785e-05 -3.14562e-05 0)
(3.15071e-05 -3.23969e-05 0)
(3.22804e-05 -3.34413e-05 0)
(3.31202e-05 -3.45544e-05 0)
(3.40261e-05 -3.56834e-05 0)
(3.50152e-05 -3.68438e-05 0)
(3.6104e-05 -3.80435e-05 0)
(3.73144e-05 -3.94105e-05 0)
(3.86698e-05 -4.09191e-05 0)
(4.01393e-05 -4.23031e-05 0)
(4.17088e-05 -4.35606e-05 0)
(4.34159e-05 -4.45198e-05 0)
(4.52624e-05 -4.48638e-05 0)
(4.72008e-05 -4.39948e-05 0)
(4.91526e-05 -4.12426e-05 0)
(5.09692e-05 -3.58838e-05 0)
(5.24979e-05 -2.76101e-05 0)
(5.36055e-05 -1.70032e-05 0)
(-2.93084e-05 -2.19534e-05 0)
(-2.80231e-05 -3.30764e-05 0)
(-2.63178e-05 -4.16893e-05 0)
(-2.43442e-05 -4.72467e-05 0)
(-2.22556e-05 -5.0029e-05 0)
(-2.01742e-05 -5.07688e-05 0)
(-1.81846e-05 -5.02319e-05 0)
(-1.63337e-05 -4.90147e-05 0)
(-1.46376e-05 -4.74962e-05 0)
(-1.3097e-05 -4.58803e-05 0)
(-1.17064e-05 -4.42652e-05 0)
(-1.04555e-05 -4.2697e-05 0)
(-9.32863e-06 -4.12021e-05 0)
(-8.30839e-06 -3.97927e-05 0)
(-7.37817e-06 -3.84736e-05 0)
(-6.52225e-06 -3.72445e-05 0)
(-5.72657e-06 -3.61038e-05 0)
(-4.97899e-06 -3.5049e-05 0)
(-4.26953e-06 -3.40769e-05 0)
(-3.59111e-06 -3.31839e-05 0)
(-2.93872e-06 -3.23654e-05 0)
(-2.30807e-06 -3.16092e-05 0)
(-1.69452e-06 -3.09081e-05 0)
(-1.0917e-06 -3.0262e-05 0)
(-4.93181e-07 -2.96677e-05 0)
(1.06563e-07 -2.91185e-05 0)
(7.11627e-07 -2.86071e-05 0)
(1.32576e-06 -2.81284e-05 0)
(1.95275e-06 -2.76805e-05 0)
(2.59511e-06 -2.72631e-05 0)
(3.2526e-06 -2.68676e-05 0)
(3.92179e-06 -2.64827e-05 0)
(4.59618e-06 -2.6103e-05 0)
(5.26839e-06 -2.57273e-05 0)
(5.9313e-06 -2.53459e-05 0)
(6.57839e-06 -2.4957e-05 0)
(7.20704e-06 -2.45635e-05 0)
(7.81639e-06 -2.41701e-05 0)
(8.40288e-06 -2.37821e-05 0)
(8.9624e-06 -2.34017e-05 0)
(9.49332e-06 -2.3034e-05 0)
(9.9953e-06 -2.26836e-05 0)
(1.04674e-05 -2.23523e-05 0)
(1.09095e-05 -2.20411e-05 0)
(1.13231e-05 -2.17558e-05 0)
(1.17116e-05 -2.15025e-05 0)
(1.20794e-05 -2.12864e-05 0)
(1.24301e-05 -2.11135e-05 0)
(1.27677e-05 -2.09859e-05 0)
(1.30963e-05 -2.0901e-05 0)
(1.34199e-05 -2.08533e-05 0)
(1.37432e-05 -2.08415e-05 0)
(1.40717e-05 -2.08702e-05 0)
(1.44109e-05 -2.09447e-05 0)
(1.47656e-05 -2.10659e-05 0)
(1.51394e-05 -2.12288e-05 0)
(1.55348e-05 -2.14249e-05 0)
(1.5954e-05 -2.16477e-05 0)
(1.63991e-05 -2.1892e-05 0)
(1.68705e-05 -2.21526e-05 0)
(1.73677e-05 -2.24247e-05 0)
(1.78899e-05 -2.27049e-05 0)
(1.84354e-05 -2.29955e-05 0)
(1.9e-05 -2.32941e-05 0)
(1.95784e-05 -2.35922e-05 0)
(2.01676e-05 -2.38862e-05 0)
(2.0766e-05 -2.41812e-05 0)
(2.13697e-05 -2.44817e-05 0)
(2.19751e-05 -2.4786e-05 0)
(2.25781e-05 -2.50923e-05 0)
(2.31736e-05 -2.54087e-05 0)
(2.37579e-05 -2.57433e-05 0)
(2.43292e-05 -2.61015e-05 0)
(2.48888e-05 -2.64924e-05 0)
(2.54386e-05 -2.69218e-05 0)
(2.59801e-05 -2.73886e-05 0)
(2.65177e-05 -2.78951e-05 0)
(2.70574e-05 -2.84494e-05 0)
(2.76052e-05 -2.90557e-05 0)
(2.81611e-05 -2.97222e-05 0)
(2.87247e-05 -3.04427e-05 0)
(2.93041e-05 -3.12358e-05 0)
(2.99088e-05 -3.21203e-05 0)
(3.05577e-05 -3.31127e-05 0)
(3.12563e-05 -3.42079e-05 0)
(3.20023e-05 -3.53861e-05 0)
(3.28089e-05 -3.65796e-05 0)
(3.37085e-05 -3.7851e-05 0)
(3.47371e-05 -3.9165e-05 0)
(3.59108e-05 -4.06819e-05 0)
(3.71906e-05 -4.22922e-05 0)
(3.85775e-05 -4.37983e-05 0)
(4.01234e-05 -4.51853e-05 0)
(4.18322e-05 -4.63042e-05 0)
(4.36855e-05 -4.67554e-05 0)
(4.56339e-05 -4.59482e-05 0)
(4.75911e-05 -4.31419e-05 0)
(4.94317e-05 -3.75749e-05 0)
(5.10011e-05 -2.89496e-05 0)
(5.2151e-05 -1.78763e-05 0)
(-2.75817e-05 -2.30049e-05 0)
(-2.62469e-05 -3.45921e-05 0)
(-2.45005e-05 -4.35449e-05 0)
(-2.24928e-05 -4.92894e-05 0)
(-2.03801e-05 -5.21209e-05 0)
(-1.82911e-05 -5.28038e-05 0)
(-1.63136e-05 -5.2142e-05 0)
(-1.44904e-05 -5.07723e-05 0)
(-1.28369e-05 -4.9092e-05 0)
(-1.13567e-05 -4.73157e-05 0)
(-1.00427e-05 -4.55488e-05 0)
(-8.87757e-06 -4.38454e-05 0)
(-7.84058e-06 -4.22336e-05 0)
(-6.9127e-06 -4.07249e-05 0)
(-6.076e-06 -3.93232e-05 0)
(-5.31307e-06 -3.80276e-05 0)
(-4.60784e-06 -3.68343e-05 0)
(-3.94759e-06 -3.57377e-05 0)
(-3.32231e-06 -3.47329e-05 0)
(-2.72409e-06 -3.3813e-05 0)
(-2.14759e-06 -3.29722e-05 0)
(-1.58765e-06 -3.21988e-05 0)
(-1.03684e-06 -3.14878e-05 0)
(-4.88125e-07 -3.08377e-05 0)
(6.25936e-08 -3.02443e-05 0)
(6.19146e-07 -2.97003e-05 0)
(1.18675e-06 -2.91988e-05 0)
(1.77093e-06 -2.87348e-05 0)
(2.37613e-06 -2.83051e-05 0)
(3.00215e-06 -2.79056e-05 0)
(3.64522e-06 -2.75248e-05 0)
(4.30207e-06 -2.71508e-05 0)
(4.96924e-06 -2.67752e-05 0)
(5.63935e-06 -2.63951e-05 0)
(6.30479e-06 -2.60029e-05 0)
(6.96003e-06 -2.55978e-05 0)
(7.59872e-06 -2.51853e-05 0)
(8.21473e-06 -2.47696e-05 0)
(8.8022e-06 -2.43539e-05 0)
(9.35591e-06 -2.39422e-05 0)
(9.87379e-06 -2.3543e-05 0)
(1.0356e-05 -2.31604e-05 0)
(1.0802e-05 -2.27957e-05 0)
(1.12119e-05 -2.24523e-05 0)
(1.15879e-05 -2.21373e-05 0)
(1.19355e-05 -2.18606e-05 0)
(1.22623e-05 -2.16265e-05 0)
(1.25733e-05 -2.1439e-05 0)
(1.28708e-05 -2.12997e-05 0)
(1.31564e-05 -2.12066e-05 0)
(1.34349e-05 -2.11557e-05 0)
(1.37136e-05 -2.11472e-05 0)
(1.40001e-05 -2.11857e-05 0)
(1.43006e-05 -2.1275e-05 0)
(1.46192e-05 -2.14148e-05 0)
(1.49588e-05 -2.15986e-05 0)
(1.53226e-05 -2.18186e-05 0)
(1.57149e-05 -2.20684e-05 0)
(1.61388e-05 -2.23416e-05 0)
(1.6595e-05 -2.26306e-05 0)
(1.70845e-05 -2.29325e-05 0)
(1.76072e-05 -2.32399e-05 0)
(1.81569e-05 -2.35525e-05 0)
(1.87254e-05 -2.38668e-05 0)
(1.93074e-05 -2.41767e-05 0)
(1.99005e-05 -2.44811e-05 0)
(2.04998e-05 -2.47816e-05 0)
(2.1099e-05 -2.50829e-05 0)
(2.16961e-05 -2.53867e-05 0)
(2.22893e-05 -2.5687e-05 0)
(2.28725e-05 -2.5992e-05 0)
(2.34403e-05 -2.63118e-05 0)
(2.39901e-05 -2.66543e-05 0)
(2.45216e-05 -2.70305e-05 0)
(2.50347e-05 -2.74461e-05 0)
(2.55313e-05 -2.7903e-05 0)
(2.60184e-05 -2.84066e-05 0)
(2.6502e-05 -2.89636e-05 0)
(2.69863e-05 -2.95781e-05 0)
(2.74731e-05 -3.02501e-05 0)
(2.79651e-05 -3.0981e-05 0)
(2.84706e-05 -3.17936e-05 0)
(2.8999e-05 -3.27066e-05 0)
(2.95602e-05 -3.37457e-05 0)
(3.01632e-05 -3.48858e-05 0)
(3.08173e-05 -3.61204e-05 0)
(3.15407e-05 -3.73921e-05 0)
(3.23566e-05 -3.87745e-05 0)
(3.32961e-05 -4.02257e-05 0)
(3.43635e-05 -4.187e-05 0)
(3.55533e-05 -4.3583e-05 0)
(3.68997e-05 -4.52536e-05 0)
(3.843e-05 -4.68117e-05 0)
(4.01322e-05 -4.80856e-05 0)
(4.19906e-05 -4.86667e-05 0)
(4.39513e-05 -4.79049e-05 0)
(4.59108e-05 -4.50424e-05 0)
(4.77467e-05 -3.92786e-05 0)
(4.93031e-05 -3.02996e-05 0)
(5.04498e-05 -1.87718e-05 0)
(-2.57019e-05 -2.41127e-05 0)
(-2.43117e-05 -3.61568e-05 0)
(-2.25122e-05 -4.54436e-05 0)
(-2.04582e-05 -5.13661e-05 0)
(-1.83136e-05 -5.42316e-05 0)
(-1.62144e-05 -5.4836e-05 0)
(-1.42469e-05 -5.40329e-05 0)
(-1.24537e-05 -5.24931e-05 0)
(-1.08551e-05 -5.06301e-05 0)
(-9.45207e-06 -4.8675e-05 0)
(-8.22885e-06 -4.67449e-05 0)
(-7.16164e-06 -4.49009e-05 0)
(-6.22728e-06 -4.31686e-05 0)
(-5.40434e-06 -4.15592e-05 0)
(-4.67232e-06 -4.0075e-05 0)
(-4.0137e-06 -3.87135e-05 0)
(-3.41334e-06 -3.74686e-05 0)
(-2.8567e-06 -3.63332e-05 0)
(-2.33133e-06 -3.52992e-05 0)
(-1.82773e-06 -3.43577e-05 0)
(-1.33853e-06 -3.35008e-05 0)
(-8.55942e-07 -3.27192e-05 0)
(-3.72056e-07 -3.20074e-05 0)
(1.18457e-07 -3.13614e-05 0)
(6.19209e-07 -3.07753e-05 0)
(1.13483e-06 -3.02439e-05 0)
(1.67249e-06 -2.97616e-05 0)
(2.23778e-06 -2.93213e-05 0)
(2.82973e-06 -2.89147e-05 0)
(3.44241e-06 -2.85336e-05 0)
(4.07052e-06 -2.81672e-05 0)
(4.71169e-06 -2.78054e-05 0)
(5.36445e-06 -2.74387e-05 0)
(6.02618e-06 -2.70608e-05 0)
(6.69338e-06 -2.66664e-05 0)
(7.35927e-06 -2.6251e-05 0)
(8.01253e-06 -2.58189e-05 0)
(8.6409e-06 -2.53751e-05 0)
(9.23395e-06 -2.49242e-05 0)
(9.7852e-06 -2.44731e-05 0)
(1.02914e-05 -2.40335e-05 0)
(1.07521e-05 -2.36111e-05 0)
(1.1169e-05 -2.32072e-05 0)
(1.15444e-05 -2.28267e-05 0)
(1.1883e-05 -2.24794e-05 0)
(1.21912e-05 -2.21778e-05 0)
(1.24756e-05 -2.19254e-05 0)
(1.27411e-05 -2.17229e-05 0)
(1.29904e-05 -2.15699e-05 0)
(1.32263e-05 -2.14661e-05 0)
(1.34548e-05 -2.14115e-05 0)
(1.36843e-05 -2.14075e-05 0)
(1.39228e-05 -2.14574e-05 0)
(1.41766e-05 -2.15635e-05 0)
(1.44503e-05 -2.17238e-05 0)
(1.47481e-05 -2.19317e-05 0)
(1.50753e-05 -2.21805e-05 0)
(1.54372e-05 -2.24638e-05 0)
(1.58384e-05 -2.27734e-05 0)
(1.62811e-05 -2.30989e-05 0)
(1.67651e-05 -2.34381e-05 0)
(1.72873e-05 -2.3778e-05 0)
(1.78417e-05 -2.41149e-05 0)
(1.84202e-05 -2.44461e-05 0)
(1.90148e-05 -2.47678e-05 0)
(1.96189e-05 -2.50802e-05 0)
(2.02256e-05 -2.53812e-05 0)
(2.08273e-05 -2.56781e-05 0)
(2.14182e-05 -2.59759e-05 0)
(2.19971e-05 -2.62685e-05 0)
(2.25629e-05 -2.65599e-05 0)
(2.31099e-05 -2.68604e-05 0)
(2.36335e-05 -2.71819e-05 0)
(2.41344e-05 -2.75381e-05 0)
(2.46144e-05 -2.7934e-05 0)
(2.5074e-05 -2.83744e-05 0)
(2.55176e-05 -2.88687e-05 0)
(2.59485e-05 -2.94186e-05 0)
(2.63654e-05 -3.00283e-05 0)
(2.677e-05 -3.06979e-05 0)
(2.7172e-05 -3.14359e-05 0)
(2.75844e-05 -3.22654e-05 0)
(2.8016e-05 -3.32039e-05 0)
(2.84758e-05 -3.42792e-05 0)
(2.89802e-05 -3.54717e-05 0)
(2.95398e-05 -3.67654e-05 0)
(3.01603e-05 -3.81118e-05 0)
(3.08526e-05 -3.95854e-05 0)
(3.16691e-05 -4.11858e-05 0)
(3.26457e-05 -4.29612e-05 0)
(3.37687e-05 -4.48196e-05 0)
(3.50555e-05 -4.66711e-05 0)
(3.65368e-05 -4.84191e-05 0)
(3.82196e-05 -4.98629e-05 0)
(4.00625e-05 -5.05711e-05 0)
(4.20005e-05 -4.98511e-05 0)
(4.39461e-05 -4.69272e-05 0)
(4.57732e-05 -4.09656e-05 0)
(4.7349e-05 -3.16505e-05 0)
(4.85505e-05 -1.96976e-05 0)
(-2.36522e-05 -2.52753e-05 0)
(-2.21986e-05 -3.77804e-05 0)
(-2.03311e-05 -4.73982e-05 0)
(-1.8215e-05 -5.34885e-05 0)
(-1.60265e-05 -5.63673e-05 0)
(-1.39085e-05 -5.68704e-05 0)
(-1.19496e-05 -5.59039e-05 0)
(-1.01982e-05 -5.41649e-05 0)
(-8.67233e-06 -5.20941e-05 0)
(-7.36322e-06 -4.99424e-05 0)
(-6.24717e-06 -4.78397e-05 0)
(-5.29658e-06 -4.58481e-05 0)
(-4.48531e-06 -4.3991e-05 0)
(-3.78874e-06 -4.2279e-05 0)
(-3.18428e-06 -4.07124e-05 0)
(-2.65183e-06 -3.92857e-05 0)
(-2.17346e-06 -3.79912e-05 0)
(-1.73425e-06 -3.682e-05 0)
(-1.32146e-06 -3.57618e-05 0)
(-9.22744e-07 -3.48061e-05 0)
(-5.27662e-07 -3.39439e-05 0)
(-1.26877e-07 -3.31657e-05 0)
(2.8668e-07 -3.24634e-05 0)
(7.16826e-07 -3.18304e-05 0)
(1.16752e-06 -3.12622e-05 0)
(1.64553e-06 -3.07552e-05 0)
(2.15706e-06 -3.03033e-05 0)
(2.70175e-06 -2.98924e-05 0)
(3.27431e-06 -2.95099e-05 0)
(3.86945e-06 -2.91465e-05 0)
(4.48197e-06 -2.87933e-05 0)
(5.10853e-06 -2.84432e-05 0)
(5.74976e-06 -2.80885e-05 0)
(6.40564e-06 -2.77204e-05 0)
(7.07301e-06 -2.73327e-05 0)
(7.74651e-06 -2.69156e-05 0)
(8.41439e-06 -2.64674e-05 0)
(9.05912e-06 -2.59926e-05 0)
(9.666e-06 -2.55007e-05 0)
(1.02262e-05 -2.50033e-05 0)
(1.0734e-05 -2.45138e-05 0)
(1.11861e-05 -2.40416e-05 0)
(1.15844e-05 -2.35913e-05 0)
(1.19344e-05 -2.31694e-05 0)
(1.22428e-05 -2.27869e-05 0)
(1.2514e-05 -2.24546e-05 0)
(1.27513e-05 -2.21766e-05 0)
(1.29594e-05 -2.19525e-05 0)
(1.31437e-05 -2.17817e-05 0)
(1.3312e-05 -2.16671e-05 0)
(1.3475e-05 -2.16106e-05 0)
(1.36427e-05 -2.16135e-05 0)
(1.38233e-05 -2.16774e-05 0)
(1.40227e-05 -2.18026e-05 0)
(1.42457e-05 -2.19865e-05 0)
(1.44977e-05 -2.22234e-05 0)
(1.47853e-05 -2.25075e-05 0)
(1.51147e-05 -2.28314e-05 0)
(1.54907e-05 -2.31851e-05 0)
(1.59147e-05 -2.35549e-05 0)
(1.6385e-05 -2.39359e-05 0)
(1.69002e-05 -2.43152e-05 0)
(1.74586e-05 -2.46854e-05 0)
(1.80532e-05 -2.50417e-05 0)
(1.86725e-05 -2.53778e-05 0)
(1.93035e-05 -2.56957e-05 0)
(1.99343e-05 -2.5993e-05 0)
(2.05535e-05 -2.62779e-05 0)
(2.11502e-05 -2.65574e-05 0)
(2.17193e-05 -2.68316e-05 0)
(2.22609e-05 -2.71024e-05 0)
(2.27752e-05 -2.73788e-05 0)
(2.32623e-05 -2.76759e-05 0)
(2.37249e-05 -2.80105e-05 0)
(2.41641e-05 -2.83845e-05 0)
(2.45792e-05 -2.88029e-05 0)
(2.49701e-05 -2.92787e-05 0)
(2.53356e-05 -2.98086e-05 0)
(2.56757e-05 -3.03998e-05 0)
(2.59977e-05 -3.10587e-05 0)
(2.63129e-05 -3.17986e-05 0)
(2.66321e-05 -3.26409e-05 0)
(2.69667e-05 -3.36022e-05 0)
(2.73238e-05 -3.47082e-05 0)
(2.77117e-05 -3.59494e-05 0)
(2.8132e-05 -3.72872e-05 0)
(2.86075e-05 -3.87074e-05 0)
(2.91856e-05 -4.02827e-05 0)
(2.9902e-05 -4.20402e-05 0)
(3.07705e-05 -4.39686e-05 0)
(3.17939e-05 -4.59832e-05 0)
(3.29865e-05 -4.80139e-05 0)
(3.43875e-05 -4.99744e-05 0)
(3.60108e-05 -5.16097e-05 0)
(3.78111e-05 -5.24422e-05 0)
(3.97548e-05 -5.18051e-05 0)
(4.17445e-05 -4.88231e-05 0)
(4.36476e-05 -4.27021e-05 0)
(4.53484e-05 -3.30965e-05 0)
(4.66856e-05 -2.07281e-05 0)
(-2.14387e-05 -2.65054e-05 0)
(-1.98985e-05 -3.94799e-05 0)
(-1.79399e-05 -4.94277e-05 0)
(-1.57423e-05 -5.5672e-05 0)
(-1.34965e-05 -5.85387e-05 0)
(-1.1354e-05 -5.89117e-05 0)
(-9.41178e-06 -5.7745e-05 0)
(-7.71978e-06 -5.57703e-05 0)
(-6.28573e-06 -5.3466e-05 0)
(-5.09025e-06 -5.11005e-05 0)
(-4.10454e-06 -4.88119e-05 0)
(-3.29801e-06 -4.6662e-05 0)
(-2.6395e-06 -4.46751e-05 0)
(-2.0976e-06 -4.28594e-05 0)
(-1.64442e-06 -4.12127e-05 0)
(-1.25761e-06 -3.97251e-05 0)
(-9.18196e-07 -3.83871e-05 0)
(-6.09542e-07 -3.71866e-05 0)
(-3.16919e-07 -3.61127e-05 0)
(-2.66877e-08 -3.51533e-05 0)
(2.72496e-07 -3.42981e-05 0)
(5.88836e-07 -3.35344e-05 0)
(9.28214e-07 -3.28522e-05 0)
(1.29502e-06 -3.22427e-05 0)
(1.69379e-06 -3.17036e-05 0)
(2.12955e-06 -3.12319e-05 0)
(2.60334e-06 -3.08158e-05 0)
(3.11194e-06 -3.04361e-05 0)
(3.65156e-06 -3.00801e-05 0)
(4.21954e-06 -2.97396e-05 0)
(4.81564e-06 -2.94067e-05 0)
(5.44124e-06 -2.90767e-05 0)
(6.09558e-06 -2.87418e-05 0)
(6.77404e-06 -2.83895e-05 0)
(7.46756e-06 -2.80105e-05 0)
(8.16445e-06 -2.75935e-05 0)
(8.85237e-06 -2.71317e-05 0)
(9.5165e-06 -2.66266e-05 0)
(1.01414e-05 -2.60917e-05 0)
(1.07144e-05 -2.5542e-05 0)
(1.1226e-05 -2.49936e-05 0)
(1.16718e-05 -2.44612e-05 0)
(1.20535e-05 -2.3955e-05 0)
(1.2377e-05 -2.3484e-05 0)
(1.26485e-05 -2.30584e-05 0)
(1.28726e-05 -2.26854e-05 0)
(1.30523e-05 -2.23701e-05 0)
(1.31935e-05 -2.21151e-05 0)
(1.3306e-05 -2.19222e-05 0)
(1.34019e-05 -2.17972e-05 0)
(1.34936e-05 -2.17417e-05 0)
(1.35924e-05 -2.17554e-05 0)
(1.37069e-05 -2.1837e-05 0)
(1.38438e-05 -2.19854e-05 0)
(1.40089e-05 -2.21979e-05 0)
(1.42095e-05 -2.24703e-05 0)
(1.44531e-05 -2.27966e-05 0)
(1.47473e-05 -2.31693e-05 0)
(1.50968e-05 -2.35743e-05 0)
(1.55022e-05 -2.39944e-05 0)
(1.59632e-05 -2.44248e-05 0)
(1.64799e-05 -2.48531e-05 0)
(1.70494e-05 -2.52678e-05 0)
(1.7664e-05 -2.5659e-05 0)
(1.83115e-05 -2.6017e-05 0)
(1.89766e-05 -2.6342e-05 0)
(1.96428e-05 -2.66333e-05 0)
(2.02917e-05 -2.68964e-05 0)
(2.09044e-05 -2.71419e-05 0)
(2.14723e-05 -2.73802e-05 0)
(2.1998e-05 -2.76179e-05 0)
(2.24868e-05 -2.78638e-05 0)
(2.29417e-05 -2.81321e-05 0)
(2.33633e-05 -2.84391e-05 0)
(2.37533e-05 -2.87866e-05 0)
(2.41134e-05 -2.91779e-05 0)
(2.44411e-05 -2.96242e-05 0)
(2.47355e-05 -3.01254e-05 0)
(2.49999e-05 -3.06918e-05 0)
(2.52401e-05 -3.13354e-05 0)
(2.54649e-05 -3.20701e-05 0)
(2.56856e-05 -3.29189e-05 0)
(2.59152e-05 -3.38982e-05 0)
(2.61545e-05 -3.50195e-05 0)
(2.63935e-05 -3.62805e-05 0)
(2.66579e-05 -3.76627e-05 0)
(2.69997e-05 -3.91751e-05 0)
(2.74505e-05 -4.08725e-05 0)
(2.80283e-05 -4.27721e-05 0)
(2.87459e-05 -4.48487e-05 0)
(2.96176e-05 -4.70268e-05 0)
(3.06828e-05 -4.92557e-05 0)
(3.19861e-05 -5.14534e-05 0)
(3.35379e-05 -5.33024e-05 0)
(3.53121e-05 -5.43015e-05 0)
(3.72754e-05 -5.38026e-05 0)
(3.93588e-05 -5.08199e-05 0)
(4.14112e-05 -4.4572e-05 0)
(4.32422e-05 -3.46755e-05 0)
(4.4662e-05 -2.18525e-05 0)
(-1.89992e-05 -2.78268e-05 0)
(-1.73497e-05 -4.12793e-05 0)
(-1.52776e-05 -5.1555e-05 0)
(-1.29799e-05 -5.79337e-05 0)
(-1.06658e-05 -6.07559e-05 0)
(-8.50106e-06 -6.09563e-05 0)
(-6.59149e-06 -5.95399e-05 0)
(-4.97859e-06 -5.7292e-05 0)
(-3.65723e-06 -5.47258e-05 0)
(-2.60263e-06 -5.21243e-05 0)
(-1.78067e-06 -4.9632e-05 0)
(-1.15142e-06 -4.73133e-05 0)
(-6.73829e-07 -4.51929e-05 0)
(-3.11333e-07 -4.32754e-05 0)
(-3.44916e-08 -4.15527e-05 0)
(1.82255e-07 -4.00114e-05 0)
(3.62295e-07 -3.86392e-05 0)
(5.24911e-07 -3.74214e-05 0)
(6.86321e-07 -3.63446e-05 0)
(8.59952e-07 -3.5395e-05 0)
(1.05611e-06 -3.45589e-05 0)
(1.2822e-06 -3.38213e-05 0)
(1.54358e-06 -3.31699e-05 0)
(1.84504e-06 -3.25962e-05 0)
(2.18996e-06 -3.20962e-05 0)
(2.57751e-06 -3.16641e-05 0)
(3.00398e-06 -3.12844e-05 0)
(3.46688e-06 -3.0939e-05 0)
(3.96719e-06 -3.06169e-05 0)
(4.50828e-06 -3.03116e-05 0)
(5.095e-06 -3.00167e-05 0)
(5.7302e-06 -2.97248e-05 0)
(6.41107e-06 -2.94228e-05 0)
(7.12959e-06 -2.90947e-05 0)
(7.87252e-06 -2.87264e-05 0)
(8.62143e-06 -2.83051e-05 0)
(9.35495e-06 -2.78233e-05 0)
(1.00529e-05 -2.72821e-05 0)
(1.06981e-05 -2.66966e-05 0)
(1.12777e-05 -2.60853e-05 0)
(1.17848e-05 -2.5469e-05 0)
(1.22174e-05 -2.48675e-05 0)
(1.25768e-05 -2.42954e-05 0)
(1.28662e-05 -2.37632e-05 0)
(1.30887e-05 -2.32808e-05 0)
(1.32503e-05 -2.28563e-05 0)
(1.33601e-05 -2.2496e-05 0)
(1.34291e-05 -2.22064e-05 0)
(1.34696e-05 -2.19911e-05 0)
(1.34937e-05 -2.18557e-05 0)
(1.35128e-05 -2.18016e-05 0)
(1.35378e-05 -2.1827e-05 0)
(1.35788e-05 -2.19284e-05 0)
(1.36445e-05 -2.21038e-05 0)
(1.37437e-05 -2.23512e-05 0)
(1.38858e-05 -2.2667e-05 0)
(1.4081e-05 -2.30451e-05 0)
(1.43366e-05 -2.34757e-05 0)
(1.4657e-05 -2.39409e-05 0)
(1.50463e-05 -2.44228e-05 0)
(1.5506e-05 -2.49147e-05 0)
(1.60351e-05 -2.54034e-05 0)
(1.66294e-05 -2.58718e-05 0)
(1.72777e-05 -2.63047e-05 0)
(1.79644e-05 -2.66903e-05 0)
(1.86708e-05 -2.70248e-05 0)
(1.93747e-05 -2.73069e-05 0)
(2.00522e-05 -2.75391e-05 0)
(2.06837e-05 -2.77378e-05 0)
(2.12598e-05 -2.79266e-05 0)
(2.17824e-05 -2.81192e-05 0)
(2.22561e-05 -2.83244e-05 0)
(2.26843e-05 -2.85538e-05 0)
(2.30688e-05 -2.88224e-05 0)
(2.34109e-05 -2.91341e-05 0)
(2.37134e-05 -2.94918e-05 0)
(2.39777e-05 -2.9902e-05 0)
(2.4202e-05 -3.03677e-05 0)
(2.43869e-05 -3.09028e-05 0)
(2.45376e-05 -3.15222e-05 0)
(2.46634e-05 -3.2243e-05 0)
(2.47733e-05 -3.30871e-05 0)
(2.48712e-05 -3.4068e-05 0)
(2.4959e-05 -3.51892e-05 0)
(2.50497e-05 -3.64596e-05 0)
(2.51662e-05 -3.7891e-05 0)
(2.53367e-05 -3.94899e-05 0)
(2.56009e-05 -4.13041e-05 0)
(2.59896e-05 -4.33367e-05 0)
(2.65192e-05 -4.55617e-05 0)
(2.72227e-05 -4.79224e-05 0)
(2.81549e-05 -5.0389e-05 0)
(2.93352e-05 -5.28266e-05 0)
(3.07888e-05 -5.49416e-05 0)
(3.25364e-05 -5.61737e-05 0)
(3.45487e-05 -5.587e-05 0)
(3.67383e-05 -5.29548e-05 0)
(3.89058e-05 -4.65678e-05 0)
(4.08272e-05 -3.6343e-05 0)
(4.23265e-05 -2.30375e-05 0)
(-1.61836e-05 -2.92608e-05 0)
(-1.44065e-05 -4.31999e-05 0)
(-1.22071e-05 -5.37987e-05 0)
(-9.80327e-06 -6.0285e-05 0)
(-7.42757e-06 -6.30179e-05 0)
(-5.26235e-06 -6.29879e-05 0)
(-3.41207e-06 -6.12681e-05 0)
(-1.90759e-06 -5.8706e-05 0)
(-7.36824e-07 -5.58425e-05 0)
(1.33176e-07 -5.29772e-05 0)
(7.49293e-07 -5.02635e-05 0)
(1.16311e-06 -4.77688e-05 0)
(1.42285e-06 -4.5514e-05 0)
(1.56951e-06 -4.34974e-05 0)
(1.63822e-06 -4.17052e-05 0)
(1.66021e-06 -4.01218e-05 0)
(1.66156e-06 -3.87295e-05 0)
(1.66282e-06 -3.75102e-05 0)
(1.68045e-06 -3.64466e-05 0)
(1.72733e-06 -3.55222e-05 0)
(1.81281e-06 -3.47194e-05 0)
(1.94349e-06 -3.40215e-05 0)
(2.12411e-06 -3.3414e-05 0)
(2.35724e-06 -3.28878e-05 0)
(2.64283e-06 -3.2435e-05 0)
(2.97699e-06 -3.20457e-05 0)
(3.3551e-06 -3.17053e-05 0)
(3.77652e-06 -3.14004e-05 0)
(4.24446e-06 -3.11229e-05 0)
(4.76449e-06 -3.08678e-05 0)
(5.34385e-06 -3.06286e-05 0)
(5.98804e-06 -3.03927e-05 0)
(6.69706e-06 -3.01405e-05 0)
(7.46379e-06 -2.98509e-05 0)
(8.272e-06 -2.95027e-05 0)
(9.09508e-06 -2.90775e-05 0)
(9.89912e-06 -2.85654e-05 0)
(1.06522e-05 -2.79723e-05 0)
(1.13315e-05 -2.73182e-05 0)
(1.19235e-05 -2.6629e-05 0)
(1.24241e-05 -2.5932e-05 0)
(1.28348e-05 -2.52507e-05 0)
(1.31592e-05 -2.46017e-05 0)
(1.34006e-05 -2.39947e-05 0)
(1.35634e-05 -2.34421e-05 0)
(1.36565e-05 -2.29577e-05 0)
(1.36937e-05 -2.25499e-05 0)
(1.36877e-05 -2.22247e-05 0)
(1.36504e-05 -2.19861e-05 0)
(1.35939e-05 -2.1839e-05 0)
(1.35306e-05 -2.1785e-05 0)
(1.34726e-05 -2.18211e-05 0)
(1.34315e-05 -2.19437e-05 0)
(1.34186e-05 -2.21502e-05 0)
(1.34447e-05 -2.24389e-05 0)
(1.35214e-05 -2.2807e-05 0)
(1.36599e-05 -2.32472e-05 0)
(1.38679e-05 -2.37448e-05 0)
(1.41522e-05 -2.42823e-05 0)
(1.45213e-05 -2.48428e-05 0)
(1.49802e-05 -2.54131e-05 0)
(1.55281e-05 -2.59776e-05 0)
(1.61592e-05 -2.65121e-05 0)
(1.68602e-05 -2.69961e-05 0)
(1.76104e-05 -2.74133e-05 0)
(1.83811e-05 -2.77548e-05 0)
(1.91387e-05 -2.80169e-05 0)
(1.98526e-05 -2.82064e-05 0)
(2.05053e-05 -2.83488e-05 0)
(2.10905e-05 -2.84775e-05 0)
(2.16093e-05 -2.86131e-05 0)
(2.20664e-05 -2.87646e-05 0)
(2.24675e-05 -2.8944e-05 0)
(2.28172e-05 -2.91656e-05 0)
(2.3118e-05 -2.94322e-05 0)
(2.33712e-05 -2.97481e-05 0)
(2.35759e-05 -3.01145e-05 0)
(2.37292e-05 -3.05345e-05 0)
(2.38318e-05 -3.10272e-05 0)
(2.38882e-05 -3.16107e-05 0)
(2.39037e-05 -3.2303e-05 0)
(2.38813e-05 -3.31232e-05 0)
(2.38306e-05 -3.40891e-05 0)
(2.37611e-05 -3.52012e-05 0)
(2.36844e-05 -3.64842e-05 0)
(2.36186e-05 -3.79464e-05 0)
(2.35947e-05 -3.96136e-05 0)
(2.36446e-05 -4.15255e-05 0)
(2.38057e-05 -4.36952e-05 0)
(2.41185e-05 -4.60827e-05 0)
(2.46261e-05 -4.86579e-05 0)
(2.53771e-05 -5.13814e-05 0)
(2.64125e-05 -5.40891e-05 0)
(2.77781e-05 -5.65253e-05 0)
(2.94845e-05 -5.80514e-05 0)
(3.14939e-05 -5.79885e-05 0)
(3.371e-05 -5.51699e-05 0)
(3.59408e-05 -4.86501e-05 0)
(3.7961e-05 -3.81e-05 0)
(3.95703e-05 -2.43137e-05 0)
(-1.27691e-05 -3.08231e-05 0)
(-1.0859e-05 -4.52519e-05 0)
(-8.54235e-06 -5.61573e-05 0)
(-6.06115e-06 -6.27114e-05 0)
(-3.66747e-06 -6.52963e-05 0)
(-1.55002e-06 -6.49722e-05 0)
(1.9334e-07 -6.28949e-05 0)
(1.53783e-06 -5.99697e-05 0)
(2.50124e-06 -5.67674e-05 0)
(3.12954e-06 -5.361e-05 0)
(3.48503e-06 -5.06603e-05 0)
(3.63191e-06 -4.79852e-05 0)
(3.62755e-06 -4.55983e-05 0)
(3.52003e-06 -4.34901e-05 0)
(3.35065e-06 -4.16427e-05 0)
(3.15443e-06 -4.00345e-05 0)
(2.95837e-06 -3.8641e-05 0)
(2.78334e-06 -3.74395e-05 0)
(2.64575e-06 -3.64081e-05 0)
(2.55767e-06 -3.55268e-05 0)
(2.52715e-06 -3.47741e-05 0)
(2.55918e-06 -3.41314e-05 0)
(2.6569e-06 -3.35824e-05 0)
(2.81982e-06 -3.31141e-05 0)
(3.04389e-06 -3.27161e-05 0)
(3.32501e-06 -3.2377e-05 0)
(3.66018e-06 -3.20843e-05 0)
(4.04769e-06 -3.18285e-05 0)
(4.48831e-06 -3.16045e-05 0)
(4.98724e-06 -3.14101e-05 0)
(5.55479e-06 -3.12401e-05 0)
(6.20349e-06 -3.10786e-05 0)
(6.94154e-06 -3.08984e-05 0)
(7.76672e-06 -3.06697e-05 0)
(8.66008e-06 -3.03583e-05 0)
(9.58228e-06 -2.99337e-05 0)
(1.04808e-05 -2.93807e-05 0)
(1.13088e-05 -2.8715e-05 0)
(1.20368e-05 -2.79686e-05 0)
(1.26511e-05 -2.71788e-05 0)
(1.31495e-05 -2.63808e-05 0)
(1.35359e-05 -2.56023e-05 0)
(1.38168e-05 -2.48609e-05 0)
(1.40003e-05 -2.41672e-05 0)
(1.40955e-05 -2.35356e-05 0)
(1.4115e-05 -2.29862e-05 0)
(1.4073e-05 -2.25272e-05 0)
(1.39825e-05 -2.21629e-05 0)
(1.38559e-05 -2.1897e-05 0)
(1.37059e-05 -2.17351e-05 0)
(1.3546e-05 -2.16792e-05 0)
(1.3391e-05 -2.17267e-05 0)
(1.3256e-05 -2.1874e-05 0)
(1.31554e-05 -2.21175e-05 0)
(1.31014e-05 -2.24543e-05 0)
(1.31047e-05 -2.28816e-05 0)
(1.31753e-05 -2.33911e-05 0)
(1.33246e-05 -2.39671e-05 0)
(1.35665e-05 -2.45939e-05 0)
(1.3913e-05 -2.52516e-05 0)
(1.43692e-05 -2.59208e-05 0)
(1.49376e-05 -2.65831e-05 0)
(1.5617e-05 -2.72056e-05 0)
(1.63932e-05 -2.77581e-05 0)
(1.72361e-05 -2.82139e-05 0)
(1.81014e-05 -2.85558e-05 0)
(1.89393e-05 -2.8781e-05 0)
(1.97103e-05 -2.89081e-05 0)
(2.03937e-05 -2.89765e-05 0)
(2.0985e-05 -2.90291e-05 0)
(2.14906e-05 -2.90933e-05 0)
(2.19238e-05 -2.91818e-05 0)
(2.22979e-05 -2.93054e-05 0)
(2.26179e-05 -2.94745e-05 0)
(2.28824e-05 -2.96886e-05 0)
(2.30865e-05 -2.995e-05 0)
(2.32265e-05 -3.02585e-05 0)
(2.3304e-05 -3.06227e-05 0)
(2.3322e-05 -3.10613e-05 0)
(2.32799e-05 -3.15941e-05 0)
(2.31798e-05 -3.22396e-05 0)
(2.30234e-05 -3.30144e-05 0)
(2.28138e-05 -3.39484e-05 0)
(2.25705e-05 -3.50451e-05 0)
(2.2299e-05 -3.63133e-05 0)
(2.20104e-05 -3.77899e-05 0)
(2.17468e-05 -3.95145e-05 0)
(2.15567e-05 -4.15182e-05 0)
(2.14815e-05 -4.38261e-05 0)
(2.15445e-05 -4.6379e-05 0)
(2.17946e-05 -4.91818e-05 0)
(2.23111e-05 -5.21865e-05 0)
(2.31504e-05 -5.52144e-05 0)
(2.43352e-05 -5.79953e-05 0)
(2.59051e-05 -5.9881e-05 0)
(2.78568e-05 -6.01026e-05 0)
(3.00772e-05 -5.74235e-05 0)
(3.23753e-05 -5.08237e-05 0)
(3.45087e-05 -3.99746e-05 0)
(3.62364e-05 -2.56987e-05 0)
(-8.49533e-06 -3.25265e-05 0)
(-6.46329e-06 -4.74236e-05 0)
(-4.07568e-06 -5.8596e-05 0)
(-1.58829e-06 -6.51601e-05 0)
(7.41337e-07 -6.7531e-05 0)
(2.73089e-06 -6.68511e-05 0)
(4.28912e-06 -6.43594e-05 0)
(5.39351e-06 -6.10163e-05 0)
(6.07105e-06 -5.74341e-05 0)
(6.38549e-06 -5.39607e-05 0)
(6.41604e-06 -5.0766e-05 0)
(6.23884e-06 -4.79112e-05 0)
(5.92072e-06 -4.54018e-05 0)
(5.51896e-06 -4.32194e-05 0)
(5.08051e-06 -4.13385e-05 0)
(4.64147e-06 -3.97284e-05 0)
(4.22874e-06 -3.83569e-05 0)
(3.86286e-06 -3.71962e-05 0)
(3.55915e-06 -3.62194e-05 0)
(3.32873e-06 -3.54026e-05 0)
(3.17865e-06 -3.47198e-05 0)
(3.11199e-06 -3.41501e-05 0)
(3.12791e-06 -3.36744e-05 0)
(3.22134e-06 -3.32753e-05 0)
(3.38641e-06 -3.2942e-05 0)
(3.61994e-06 -3.26644e-05 0)
(3.91951e-06 -3.24306e-05 0)
(4.27979e-06 -3.22307e-05 0)
(4.69444e-06 -3.20629e-05 0)
(5.16459e-06 -3.19321e-05 0)
(5.70506e-06 -3.18402e-05 0)
(6.3426e-06 -3.17743e-05 0)
(7.10591e-06 -3.17003e-05 0)
(8.00501e-06 -3.15685e-05 0)
(9.01633e-06 -3.13215e-05 0)
(1.00772e-05 -3.09025e-05 0)
(1.1105e-05 -3.02933e-05 0)
(1.2034e-05 -2.95288e-05 0)
(1.28275e-05 -2.86606e-05 0)
(1.34723e-05 -2.77416e-05 0)
(1.39702e-05 -2.68167e-05 0)
(1.43297e-05 -2.59181e-05 0)
(1.45624e-05 -2.50665e-05 0)
(1.46829e-05 -2.42752e-05 0)
(1.47074e-05 -2.35588e-05 0)
(1.46481e-05 -2.29362e-05 0)
(1.45156e-05 -2.24169e-05 0)
(1.43238e-05 -2.20058e-05 0)
(1.40881e-05 -2.17069e-05 0)
(1.3825e-05 -2.1527e-05 0)
(1.3552e-05 -2.1469e-05 0)
(1.32865e-05 -2.15306e-05 0)
(1.30452e-05 -2.17078e-05 0)
(1.28438e-05 -2.19952e-05 0)
(1.26964e-05 -2.23879e-05 0)
(1.26148e-05 -2.28817e-05 0)
(1.26111e-05 -2.34693e-05 0)
(1.26995e-05 -2.41374e-05 0)
(1.28961e-05 -2.48716e-05 0)
(1.32152e-05 -2.56467e-05 0)
(1.3666e-05 -2.64365e-05 0)
(1.42566e-05 -2.7224e-05 0)
(1.49924e-05 -2.79663e-05 0)
(1.58619e-05 -2.8615e-05 0)
(1.68291e-05 -2.91247e-05 0)
(1.78316e-05 -2.94632e-05 0)
(1.87928e-05 -2.96301e-05 0)
(1.96495e-05 -2.9663e-05 0)
(2.03726e-05 -2.96243e-05 0)
(2.0965e-05 -2.95745e-05 0)
(2.14491e-05 -2.9552e-05 0)
(2.18525e-05 -2.95718e-05 0)
(2.21957e-05 -2.9638e-05 0)
(2.24823e-05 -2.97491e-05 0)
(2.27037e-05 -2.98998e-05 0)
(2.28527e-05 -3.00924e-05 0)
(2.29289e-05 -3.03321e-05 0)
(2.29353e-05 -3.06314e-05 0)
(2.28717e-05 -3.10048e-05 0)
(2.27326e-05 -3.14688e-05 0)
(2.25121e-05 -3.20464e-05 0)
(2.22161e-05 -3.27598e-05 0)
(2.18427e-05 -3.36295e-05 0)
(2.13949e-05 -3.46871e-05 0)
(2.0898e-05 -3.59205e-05 0)
(2.03797e-05 -3.73996e-05 0)
(1.98691e-05 -3.91644e-05 0)
(1.94148e-05 -4.12651e-05 0)
(1.90408e-05 -4.36794e-05 0)
(1.87682e-05 -4.63809e-05 0)
(1.86818e-05 -4.94178e-05 0)
(1.88739e-05 -5.27322e-05 0)
(1.94209e-05 -5.61222e-05 0)
(2.03741e-05 -5.92847e-05 0)
(2.17533e-05 -6.15844e-05 0)
(2.35675e-05 -6.21726e-05 0)
(2.5727e-05 -5.96942e-05 0)
(2.80228e-05 -5.30712e-05 0)
(3.02065e-05 -4.19537e-05 0)
(3.20449e-05 -2.72152e-05 0)
(-2.981e-06 -3.43798e-05 0)
(-8.62833e-07 -4.96726e-05 0)
(1.49681e-06 -6.10338e-05 0)
(3.85474e-06 -6.75294e-05 0)
(5.97465e-06 -6.9617e-05 0)
(7.69476e-06 -6.85221e-05 0)
(8.93719e-06 -6.55613e-05 0)
(9.68973e-06 -6.17548e-05 0)
(9.9888e-06 -5.77617e-05 0)
(9.90733e-06 -5.39561e-05 0)
(9.53606e-06 -5.05132e-05 0)
(8.96561e-06 -4.74882e-05 0)
(8.27695e-06 -4.48764e-05 0)
(7.53642e-06 -4.26477e-05 0)
(6.79421e-06 -4.07632e-05 0)
(6.08661e-06 -3.91811e-05 0)
(5.43943e-06 -3.7861e-05 0)
(4.87072e-06 -3.67688e-05 0)
(4.39392e-06 -3.58731e-05 0)
(4.0185e-06 -3.51459e-05 0)
(3.75011e-06 -3.45569e-05 0)
(3.5886e-06 -3.40802e-05 0)
(3.5264e-06 -3.36915e-05 0)
(3.55129e-06 -3.3371e-05 0)
(3.65394e-06 -3.31113e-05 0)
(3.83216e-06 -3.29051e-05 0)
(4.08383e-06 -3.2738e-05 0)
(4.39923e-06 -3.2597e-05 0)
(4.76544e-06 -3.2484e-05 0)
(5.18407e-06 -3.24189e-05 0)
(5.68386e-06 -3.24208e-05 0)
(6.31433e-06 -3.24849e-05 0)
(7.12644e-06 -3.25678e-05 0)
(8.14325e-06 -3.2585e-05 0)
(9.32892e-06 -3.24354e-05 0)
(1.05855e-05 -3.20256e-05 0)
(1.17939e-05 -3.13393e-05 0)
(1.28618e-05 -3.0439e-05 0)
(1.37415e-05 -2.94075e-05 0)
(1.44229e-05 -2.83215e-05 0)
(1.49178e-05 -2.72388e-05 0)
(1.52453e-05 -2.61959e-05 0)
(1.54245e-05 -2.5215e-05 0)
(1.54729e-05 -2.43113e-05 0)
(1.54071e-05 -2.34978e-05 0)
(1.52435e-05 -2.27908e-05 0)
(1.49977e-05 -2.22007e-05 0)
(1.46863e-05 -2.17352e-05 0)
(1.43272e-05 -2.13988e-05 0)
(1.39391e-05 -2.11995e-05 0)
(1.35415e-05 -2.11412e-05 0)
(1.31537e-05 -2.12203e-05 0)
(1.27931e-05 -2.14312e-05 0)
(1.24758e-05 -2.17672e-05 0)
(1.22165e-05 -2.22223e-05 0)
(1.20317e-05 -2.27936e-05 0)
(1.19395e-05 -2.34739e-05 0)
(1.19559e-05 -2.42503e-05 0)
(1.20972e-05 -2.51097e-05 0)
(1.238e-05 -2.6023e-05 0)
(1.28225e-05 -2.69632e-05 0)
(1.34448e-05 -2.79123e-05 0)
(1.42593e-05 -2.88151e-05 0)
(1.52577e-05 -2.9598e-05 0)
(1.63975e-05 -3.01872e-05 0)
(1.7593e-05 -3.05228e-05 0)
(1.87256e-05 -3.06005e-05 0)
(1.96951e-05 -3.04891e-05 0)
(2.04631e-05 -3.02937e-05 0)
(2.1048e-05 -3.01067e-05 0)
(2.14968e-05 -2.99806e-05 0)
(2.18585e-05 -2.99276e-05 0)
(2.21625e-05 -2.99349e-05 0)
(2.24095e-05 -2.99821e-05 0)
(2.25852e-05 -3.00596e-05 0)
(2.26813e-05 -3.01757e-05 0)
(2.27002e-05 -3.03415e-05 0)
(2.26436e-05 -3.05666e-05 0)
(2.25049e-05 -3.08606e-05 0)
(2.22742e-05 -3.12378e-05 0)
(2.19389e-05 -3.17196e-05 0)
(2.14923e-05 -3.23458e-05 0)
(2.09428e-05 -3.31273e-05 0)
(2.02974e-05 -3.41088e-05 0)
(1.95797e-05 -3.53016e-05 0)
(1.88192e-05 -3.67637e-05 0)
(1.80317e-05 -3.8538e-05 0)
(1.7236e-05 -4.06861e-05 0)
(1.64668e-05 -4.31703e-05 0)
(1.58002e-05 -4.60209e-05 0)
(1.53284e-05 -4.92996e-05 0)
(1.5134e-05 -5.29307e-05 0)
(1.5303e-05 -5.67209e-05 0)
(1.59121e-05 -6.03295e-05 0)
(1.69975e-05 -6.30815e-05 0)
(1.85324e-05 -6.40775e-05 0)
(2.04306e-05 -6.18596e-05 0)
(2.25558e-05 -5.52963e-05 0)
(2.47064e-05 -4.40043e-05 0)
(2.66397e-05 -2.8886e-05 0)
(4.25491e-06 -3.63681e-05 0)
(6.35759e-06 -5.19e-05 0)
(8.49606e-06 -6.33124e-05 0)
(1.04837e-05 -6.96363e-05 0)
(1.21465e-05 -7.13719e-05 0)
(1.33746e-05 -6.98187e-05 0)
(1.41266e-05 -6.63631e-05 0)
(1.43994e-05 -6.20756e-05 0)
(1.42143e-05 -5.76547e-05 0)
(1.36378e-05 -5.3508e-05 0)
(1.27752e-05 -4.98227e-05 0)
(1.17377e-05 -4.66499e-05 0)
(1.06206e-05 -4.39696e-05 0)
(9.4966e-06 -4.17335e-05 0)
(8.41743e-06 -3.98855e-05 0)
(7.41903e-06 -3.83713e-05 0)
(6.52407e-06 -3.71398e-05 0)
(5.7467e-06 -3.61506e-05 0)
(5.09704e-06 -3.53677e-05 0)
(4.58103e-06 -3.4759e-05 0)
(4.20057e-06 -3.42898e-05 0)
(3.95094e-06 -3.39262e-05 0)
(3.81746e-06 -3.36373e-05 0)
(3.78062e-06 -3.34034e-05 0)
(3.82727e-06 -3.32236e-05 0)
(3.95675e-06 -3.30958e-05 0)
(4.16968e-06 -3.30003e-05 0)
(4.44785e-06 -3.29149e-05 0)
(4.76114e-06 -3.28477e-05 0)
(5.10554e-06 -3.28475e-05 0)
(5.5283e-06 -3.29654e-05 0)
(6.11819e-06 -3.32126e-05 0)
(6.97315e-06 -3.35305e-05 0)
(8.14848e-06 -3.37794e-05 0)
(9.59641e-06 -3.3777e-05 0)
(1.11549e-05 -3.33783e-05 0)
(1.26297e-05 -3.25761e-05 0)
(1.38854e-05 -3.14787e-05 0)
(1.48677e-05 -3.02213e-05 0)
(1.55813e-05 -2.89163e-05 0)
(1.60573e-05 -2.76364e-05 0)
(1.63299e-05 -2.64202e-05 0)
(1.64278e-05 -2.52872e-05 0)
(1.63748e-05 -2.42515e-05 0)
(1.61935e-05 -2.33258e-05 0)
(1.59047e-05 -2.25249e-05 0)
(1.55264e-05 -2.18574e-05 0)
(1.50785e-05 -2.13344e-05 0)
(1.4582e-05 -2.09595e-05 0)
(1.40562e-05 -2.07404e-05 0)
(1.35203e-05 -2.06816e-05 0)
(1.29934e-05 -2.07792e-05 0)
(1.24957e-05 -2.1027e-05 0)
(1.2048e-05 -2.14175e-05 0)
(1.16694e-05 -2.19444e-05 0)
(1.13783e-05 -2.26064e-05 0)
(1.11909e-05 -2.33934e-05 0)
(1.11219e-05 -2.42922e-05 0)
(1.11881e-05 -2.52923e-05 0)
(1.14131e-05 -2.63686e-05 0)
(1.18315e-05 -2.74993e-05 0)
(1.24786e-05 -2.866e-05 0)
(1.33827e-05 -2.9782e-05 0)
(1.45519e-05 -3.07588e-05 0)
(1.59412e-05 -3.14698e-05 0)
(1.74242e-05 -3.18026e-05 0)
(1.88071e-05 -3.17389e-05 0)
(1.99264e-05 -3.14029e-05 0)
(2.07338e-05 -3.09763e-05 0)
(2.12794e-05 -3.06047e-05 0)
(2.16557e-05 -3.0358e-05 0)
(2.19486e-05 -3.0235e-05 0)
(2.22033e-05 -3.01896e-05 0)
(2.2415e-05 -3.01737e-05 0)
(2.25552e-05 -3.01733e-05 0)
(2.2608e-05 -3.02075e-05 0)
(2.25779e-05 -3.02953e-05 0)
(2.24685e-05 -3.04381e-05 0)
(2.22665e-05 -3.06362e-05 0)
(2.19498e-05 -3.09038e-05 0)
(2.15046e-05 -3.12664e-05 0)
(2.09176e-05 -3.17642e-05 0)
(2.0192e-05 -3.24375e-05 0)
(1.93447e-05 -3.33161e-05 0)
(1.83949e-05 -3.4441e-05 0)
(1.73575e-05 -3.58451e-05 0)
(1.62388e-05 -3.75791e-05 0)
(1.50579e-05 -3.97097e-05 0)
(1.38677e-05 -4.22444e-05 0)
(1.27532e-05 -4.52392e-05 0)
(1.18077e-05 -4.87502e-05 0)
(1.11397e-05 -5.27086e-05 0)
(1.0848e-05 -5.69094e-05 0)
(1.09809e-05 -6.09796e-05 0)
(1.1548e-05 -6.41954e-05 0)
(1.25476e-05 -6.56078e-05 0)
(1.39513e-05 -6.37175e-05 0)
(1.56984e-05 -5.73544e-05 0)
(1.76424e-05 -4.60445e-05 0)
(1.95552e-05 -3.06851e-05 0)
(1.36264e-05 -3.84236e-05 0)
(1.55125e-05 -5.39121e-05 0)
(1.71059e-05 -6.51578e-05 0)
(1.83415e-05 -7.11786e-05 0)
(1.91718e-05 -7.251e-05 0)
(1.95975e-05 -7.05092e-05 0)
(1.96442e-05 -6.65991e-05 0)
(1.92964e-05 -6.18538e-05 0)
(1.85139e-05 -5.70019e-05 0)
(1.73357e-05 -5.25139e-05 0)
(1.58883e-05 -4.86078e-05 0)
(1.43109e-05 -4.53282e-05 0)
(1.27146e-05 -4.26306e-05 0)
(1.11769e-05 -4.0441e-05 0)
(9.74804e-06 -3.86833e-05 0)
(8.45871e-06 -3.72872e-05 0)
(7.32267e-06 -3.61886e-05 0)
(6.34586e-06 -3.5342e-05 0)
(5.53459e-06 -3.47081e-05 0)
(4.8912e-06 -3.42498e-05 0)
(4.41391e-06 -3.39278e-05 0)
(4.09431e-06 -3.36987e-05 0)
(3.90978e-06 -3.35226e-05 0)
(3.82818e-06 -3.33814e-05 0)
(3.82992e-06 -3.32873e-05 0)
(3.92318e-06 -3.3248e-05 0)
(4.11702e-06 -3.32312e-05 0)
(4.3775e-06 -3.31894e-05 0)
(4.63782e-06 -3.31378e-05 0)
(4.87433e-06 -3.3178e-05 0)
(5.15931e-06 -3.34241e-05 0)
(5.64385e-06 -3.3922e-05 0)
(6.50533e-06 -3.45957e-05 0)
(7.86549e-06 -3.5217e-05 0)
(9.67483e-06 -3.54586e-05 0)
(1.16649e-05 -3.50723e-05 0)
(1.35033e-05 -3.40775e-05 0)
(1.49885e-05 -3.268e-05 0)
(1.60742e-05 -3.11038e-05 0)
(1.67992e-05 -2.95103e-05 0)
(1.72289e-05 -2.7986e-05 0)
(1.74232e-05 -2.65658e-05 0)
(1.74272e-05 -2.52609e-05 0)
(1.72714e-05 -2.40784e-05 0)
(1.69778e-05 -2.30284e-05 0)
(1.65647e-05 -2.2122e-05 0)
(1.60536e-05 -2.13709e-05 0)
(1.54681e-05 -2.07867e-05 0)
(1.48314e-05 -2.03732e-05 0)
(1.41678e-05 -2.01367e-05 0)
(1.34985e-05 -2.00795e-05 0)
(1.2843e-05 -2.01987e-05 0)
(1.22228e-05 -2.04895e-05 0)
(1.16591e-05 -2.09435e-05 0)
(1.11707e-05 -2.15529e-05 0)
(1.07743e-05 -2.23138e-05 0)
(1.04847e-05 -2.32149e-05 0)
(1.0319e-05 -2.42454e-05 0)
(1.02977e-05 -2.54e-05 0)
(1.04508e-05 -2.66651e-05 0)
(1.08229e-05 -2.80279e-05 0)
(1.14711e-05 -2.94627e-05 0)
(1.24599e-05 -3.08903e-05 0)
(1.3832e-05 -3.21603e-05 0)
(1.5552e-05 -3.30685e-05 0)
(1.74397e-05 -3.34021e-05 0)
(1.9172e-05 -3.31092e-05 0)
(2.04761e-05 -3.24154e-05 0)
(2.12951e-05 -3.16419e-05 0)
(2.17424e-05 -3.10221e-05 0)
(2.19878e-05 -3.0644e-05 0)
(2.21762e-05 -3.04729e-05 0)
(2.23784e-05 -3.04031e-05 0)
(2.25729e-05 -3.03359e-05 0)
(2.2695e-05 -3.02522e-05 0)
(2.27139e-05 -3.01967e-05 0)
(2.26424e-05 -3.02016e-05 0)
(2.24914e-05 -3.02556e-05 0)
(2.22418e-05 -3.03426e-05 0)
(2.18568e-05 -3.04728e-05 0)
(2.13091e-05 -3.06886e-05 0)
(2.05941e-05 -3.10306e-05 0)
(1.97131e-05 -3.1559e-05 0)
(1.86698e-05 -3.2302e-05 0)
(1.74849e-05 -3.3318e-05 0)
(1.616e-05 -3.4606e-05 0)
(1.46885e-05 -3.62386e-05 0)
(1.30936e-05 -3.83039e-05 0)
(1.14396e-05 -4.08593e-05 0)
(9.81813e-06 -4.39633e-05 0)
(8.33472e-06 -4.76883e-05 0)
(7.11671e-06 -5.19726e-05 0)
(6.25896e-06 -5.65639e-05 0)
(5.75038e-06 -6.103e-05 0)
(5.55575e-06 -6.46521e-05 0)
(5.71426e-06 -6.649e-05 0)
(6.28445e-06 -6.50035e-05 0)
(7.29179e-06 -5.8988e-05 0)
(8.67887e-06 -4.78586e-05 0)
(1.03523e-05 -3.25328e-05 0)
(2.53029e-05 -4.03835e-05 0)
(2.66181e-05 -5.53771e-05 0)
(2.71635e-05 -6.61365e-05 0)
(2.70822e-05 -7.16966e-05 0)
(2.65513e-05 -7.26248e-05 0)
(2.57715e-05 -7.02983e-05 0)
(2.4874e-05 -6.60868e-05 0)
(2.3785e-05 -6.09672e-05 0)
(2.23168e-05 -5.56958e-05 0)
(2.04476e-05 -5.08776e-05 0)
(1.83399e-05 -4.67919e-05 0)
(1.61734e-05 -4.34708e-05 0)
(1.40779e-05 -4.08307e-05 0)
(1.21315e-05 -3.87624e-05 0)
(1.03764e-05 -3.71639e-05 0)
(8.83018e-06 -3.59442e-05 0)
(7.48923e-06 -3.50248e-05 0)
(6.34565e-06 -3.43596e-05 0)
(5.40193e-06 -3.3911e-05 0)
(4.65754e-06 -3.36355e-05 0)
(4.11128e-06 -3.34924e-05 0)
(3.75555e-06 -3.34233e-05 0)
(3.55834e-06 -3.33742e-05 0)
(3.46517e-06 -3.33252e-05 0)
(3.4424e-06 -3.33183e-05 0)
(3.51823e-06 -3.33842e-05 0)
(3.72921e-06 -3.34625e-05 0)
(4.02044e-06 -3.34446e-05 0)
(4.25355e-06 -3.33464e-05 0)
(4.36017e-06 -3.33648e-05 0)
(4.44188e-06 -3.37279e-05 0)
(4.73348e-06 -3.45504e-05 0)
(5.53178e-06 -3.57468e-05 0)
(7.07831e-06 -3.69576e-05 0)
(9.3393e-06 -3.75996e-05 0)
(1.18768e-05 -3.72216e-05 0)
(1.41418e-05 -3.59037e-05 0)
(1.58505e-05 -3.40481e-05 0)
(1.69903e-05 -3.20271e-05 0)
(1.76679e-05 -3.0066e-05 0)
(1.80078e-05 -2.82576e-05 0)
(1.81062e-05 -2.66187e-05 0)
(1.80226e-05 -2.51391e-05 0)
(1.77891e-05 -2.38095e-05 0)
(1.74248e-05 -2.26327e-05 0)
(1.69473e-05 -2.1618e-05 0)
(1.63751e-05 -2.07808e-05 0)
(1.57283e-05 -2.01322e-05 0)
(1.50283e-05 -1.96785e-05 0)
(1.42969e-05 -1.94247e-05 0)
(1.35568e-05 -1.93717e-05 0)
(1.28312e-05 -1.95166e-05 0)
(1.21421e-05 -1.9853e-05 0)
(1.15086e-05 -2.03732e-05 0)
(1.09497e-05 -2.10677e-05 0)
(1.04828e-05 -2.19285e-05 0)
(1.0122e-05 -2.29451e-05 0)
(9.88363e-06 -2.41109e-05 0)
(9.7868e-06 -2.54262e-05 0)
(9.85778e-06 -2.68928e-05 0)
(1.01498e-05 -2.85183e-05 0)
(1.0752e-05 -3.02946e-05 0)
(1.17815e-05 -3.21414e-05 0)
(1.33457e-05 -3.38538e-05 0)
(1.54568e-05 -3.50912e-05 0)
(1.78764e-05 -3.54467e-05 0)
(2.00708e-05 -3.47875e-05 0)
(2.15832e-05 -3.35252e-05 0)
(2.2357e-05 -3.22347e-05 0)
(2.26162e-05 -3.12874e-05 0)
(2.26515e-05 -3.07838e-05 0)
(2.26976e-05 -3.06234e-05 0)
(2.28593e-05 -3.05911e-05 0)
(2.30741e-05 -3.04943e-05 0)
(2.32074e-05 -3.03134e-05 0)
(2.32047e-05 -3.01534e-05 0)
(2.31034e-05 -3.00733e-05 0)
(2.29366e-05 -3.004e-05 0)
(2.26751e-05 -3.00046e-05 0)
(2.22625e-05 -2.99742e-05 0)
(2.16533e-05 -3.00016e-05 0)
(2.0838e-05 -3.01641e-05 0)
(1.98238e-05 -3.05097e-05 0)
(1.86234e-05 -3.10884e-05 0)
(1.72376e-05 -3.19351e-05 0)
(1.56419e-05 -3.30418e-05 0)
(1.38391e-05 -3.45125e-05 0)
(1.18511e-05 -3.64536e-05 0)
(9.71684e-06 -3.89636e-05 0)
(7.52907e-06 -4.21233e-05 0)
(5.4286e-06 -4.60355e-05 0)
(3.58506e-06 -5.06351e-05 0)
(2.11044e-06 -5.55788e-05 0)
(8.80481e-07 -6.03041e-05 0)
(-2.76969e-07 -6.41792e-05 0)
(-1.3435e-06 -6.63312e-05 0)
(-2.14737e-06 -6.52669e-05 0)
(-2.46892e-06 -5.9743e-05 0)
(-2.14041e-06 -4.91074e-05 0)
(-1.03462e-06 -3.42784e-05 0)
(3.89224e-05 -4.18926e-05 0)
(3.90865e-05 -5.57532e-05 0)
(3.78662e-05 -6.56025e-05 0)
(3.57131e-05 -7.05454e-05 0)
(3.31457e-05 -7.11826e-05 0)
(3.06705e-05 -6.88377e-05 0)
(2.8579e-05 -6.46589e-05 0)
(2.66751e-05 -5.93344e-05 0)
(2.4481e-05 -5.36535e-05 0)
(2.18654e-05 -4.85182e-05 0)
(1.9064e-05 -4.43182e-05 0)
(1.6318e-05 -4.10552e-05 0)
(1.37744e-05 -3.8579e-05 0)
(1.14999e-05 -3.67292e-05 0)
(9.51501e-06 -3.53704e-05 0)
(7.81425e-06 -3.43882e-05 0)
(6.36488e-06 -3.36874e-05 0)
(5.13947e-06 -3.32359e-05 0)
(4.14086e-06 -3.30041e-05 0)
(3.36483e-06 -3.29404e-05 0)
(2.81169e-06 -3.30098e-05 0)
(2.48237e-06 -3.31313e-05 0)
(2.33747e-06 -3.32226e-05 0)
(2.28388e-06 -3.32501e-05 0)
(2.25965e-06 -3.33189e-05 0)
(2.33257e-06 -3.35163e-05 0)
(2.60322e-06 -3.37288e-05 0)
(2.99309e-06 -3.37112e-05 0)
(3.24036e-06 -3.34588e-05 0)
(3.1938e-06 -3.33365e-05 0)
(2.98915e-06 -3.37659e-05 0)
(2.96627e-06 -3.49833e-05 0)
(3.57543e-06 -3.69191e-05 0)
(5.24541e-06 -3.90367e-05 0)
(7.99541e-06 -4.03048e-05 0)
(1.11295e-05 -3.99012e-05 0)
(1.37791e-05 -3.80446e-05 0)
(1.55973e-05 -3.55097e-05 0)
(1.66767e-05 -3.28993e-05 0)
(1.72374e-05 -3.05075e-05 0)
(1.7478e-05 -2.84057e-05 0)
(1.75261e-05 -2.65616e-05 0)
(1.74429e-05 -2.49221e-05 0)
(1.72476e-05 -2.34521e-05 0)
(1.69467e-05 -2.21494e-05 0)
(1.6551e-05 -2.10239e-05 0)
(1.60759e-05 -2.00933e-05 0)
(1.55392e-05 -1.93713e-05 0)
(1.49588e-05 -1.88684e-05 0)
(1.43533e-05 -1.85905e-05 0)
(1.374e-05 -1.85409e-05 0)
(1.31356e-05 -1.87151e-05 0)
(1.25587e-05 -1.9103e-05 0)
(1.20272e-05 -1.96965e-05 0)
(1.15583e-05 -2.0484e-05 0)
(1.11688e-05 -2.14517e-05 0)
(1.0871e-05 -2.2588e-05 0)
(1.06742e-05 -2.3887e-05 0)
(1.05812e-05 -2.53505e-05 0)
(1.06053e-05 -2.70049e-05 0)
(1.08041e-05 -2.89011e-05 0)
(1.12951e-05 -3.10746e-05 0)
(1.22611e-05 -3.34694e-05 0)
(1.39132e-05 -3.58323e-05 0)
(1.63771e-05 -3.76195e-05 0)
(1.9382e-05 -3.80594e-05 0)
(2.20885e-05 -3.68307e-05 0)
(2.3764e-05 -3.46859e-05 0)
(2.43785e-05 -3.2646e-05 0)
(2.43324e-05 -3.12853e-05 0)
(2.40769e-05 -3.0697e-05 0)
(2.3957e-05 -3.06622e-05 0)
(2.41144e-05 -3.07751e-05 0)
(2.44126e-05 -3.06778e-05 0)
(2.46e-05 -3.03663e-05 0)
(2.45905e-05 -3.00739e-05 0)
(2.44769e-05 -2.99177e-05 0)
(2.43376e-05 -2.98165e-05 0)
(2.41213e-05 -2.96506e-05 0)
(2.37368e-05 -2.94401e-05 0)
(2.31305e-05 -2.9241e-05 0)
(2.2287e-05 -2.91848e-05 0)
(2.12136e-05 -2.9319e-05 0)
(1.99133e-05 -2.96963e-05 0)
(1.83818e-05 -3.03151e-05 0)
(1.66136e-05 -3.12002e-05 0)
(1.45853e-05 -3.24392e-05 0)
(1.22771e-05 -3.41759e-05 0)
(9.70693e-06 -3.65301e-05 0)
(6.95559e-06 -3.96632e-05 0)
(4.21373e-06 -4.37337e-05 0)
(1.73769e-06 -4.86638e-05 0)
(-3.32272e-07 -5.3925e-05 0)
(-2.33871e-06 -5.86564e-05 0)
(-4.74968e-06 -6.2422e-05 0)
(-7.57464e-06 -6.45774e-05 0)
(-1.0423e-05 -6.38615e-05 0)
(-1.27762e-05 -5.89942e-05 0)
(-1.41731e-05 -4.92786e-05 0)
(-1.41954e-05 -3.55784e-05 0)
(5.31628e-05 -4.23845e-05 0)
(5.13831e-05 -5.43012e-05 0)
(4.7535e-05 -6.27455e-05 0)
(4.24522e-05 -6.69521e-05 0)
(3.70718e-05 -6.75609e-05 0)
(3.23079e-05 -6.57553e-05 0)
(2.87159e-05 -6.2218e-05 0)
(2.59207e-05 -5.69733e-05 0)
(2.29533e-05 -5.0854e-05 0)
(1.95372e-05 -4.54231e-05 0)
(1.60718e-05 -4.12322e-05 0)
(1.28713e-05 -3.81972e-05 0)
(1.00676e-05 -3.60482e-05 0)
(7.68059e-06 -3.45507e-05 0)
(5.68629e-06 -3.35306e-05 0)
(4.04728e-06 -3.28539e-05 0)
(2.69106e-06 -3.2401e-05 0)
(1.56194e-06 -3.21822e-05 0)
(6.67747e-07 -3.21854e-05 0)
(-5.69276e-09 -3.23418e-05 0)
(-4.56135e-07 -3.26451e-05 0)
(-6.64247e-07 -3.298e-05 0)
(-6.7108e-07 -3.32112e-05 0)
(-6.22214e-07 -3.32673e-05 0)
(-6.27369e-07 -3.3374e-05 0)
(-5.56619e-07 -3.37389e-05 0)
(-1.94264e-07 -3.4154e-05 0)
(3.6663e-07 -3.41186e-05 0)
(6.88476e-07 -3.35551e-05 0)
(5.04916e-07 -3.31041e-05 0)
(-1.68509e-08 -3.34829e-05 0)
(-4.56183e-07 -3.51173e-05 0)
(-2.40226e-07 -3.80194e-05 0)
(1.30324e-06 -4.14234e-05 0)
(4.32491e-06 -4.36119e-05 0)
(7.81951e-06 -4.30956e-05 0)
(1.0543e-05 -4.03938e-05 0)
(1.21694e-05 -3.6943e-05 0)
(1.30013e-05 -3.36572e-05 0)
(1.33986e-05 -3.0868e-05 0)
(1.36194e-05 -2.85651e-05 0)
(1.37945e-05 -2.66216e-05 0)
(1.39621e-05 -2.49187e-05 0)
(1.411e-05 -2.33887e-05 0)
(1.42198e-05 -2.20313e-05 0)
(1.42869e-05 -2.0861e-05 0)
(1.432e-05 -1.99008e-05 0)
(1.43322e-05 -1.91597e-05 0)
(1.43298e-05 -1.86452e-05 0)
(1.43173e-05 -1.83601e-05 0)
(1.42962e-05 -1.83058e-05 0)
(1.42715e-05 -1.84832e-05 0)
(1.42547e-05 -1.88856e-05 0)
(1.42564e-05 -1.95034e-05 0)
(1.42873e-05 -2.03242e-05 0)
(1.43584e-05 -2.13367e-05 0)
(1.44722e-05 -2.25244e-05 0)
(1.46222e-05 -2.38775e-05 0)
(1.47853e-05 -2.53935e-05 0)
(1.4945e-05 -2.71341e-05 0)
(1.5137e-05 -2.92121e-05 0)
(1.54776e-05 -3.17449e-05 0)
(1.61973e-05 -3.47557e-05 0)
(1.7635e-05 -3.79842e-05 0)
(2.01274e-05 -4.06285e-05 0)
(2.34677e-05 -4.12902e-05 0)
(2.64706e-05 -3.92286e-05 0)
(2.80747e-05 -3.58067e-05 0)
(2.83387e-05 -3.27765e-05 0)
(2.78894e-05 -3.09638e-05 0)
(2.73203e-05 -3.0397e-05 0)
(2.70583e-05 -3.06702e-05 0)
(2.72745e-05 -3.10878e-05 0)
(2.77294e-05 -3.10173e-05 0)
(2.80063e-05 -3.0503e-05 0)
(2.79923e-05 -3.00378e-05 0)
(2.78827e-05 -2.98399e-05 0)
(2.7825e-05 -2.97261e-05 0)
(2.77342e-05 -2.94347e-05 0)
(2.7461e-05 -2.90269e-05 0)
(2.69548e-05 -2.85885e-05 0)
(2.62288e-05 -2.82982e-05 0)
(2.52488e-05 -2.81711e-05 0)
(2.40007e-05 -2.83165e-05 0)
(2.25289e-05 -2.8693e-05 0)
(2.08035e-05 -2.93179e-05 0)
(1.87513e-05 -3.02244e-05 0)
(1.63047e-05 -3.16128e-05 0)
(1.34385e-05 -3.36539e-05 0)
(1.02174e-05 -3.66225e-05 0)
(6.83659e-06 -4.07823e-05 0)
(3.65326e-06 -4.60672e-05 0)
(9.37147e-07 -5.16177e-05 0)
(-1.96067e-06 -5.59325e-05 0)
(-5.98616e-06 -5.89563e-05 0)
(-1.11174e-05 -6.06393e-05 0)
(-1.66865e-05 -6.00633e-05 0)
(-2.18713e-05 -5.59781e-05 0)
(-2.58203e-05 -4.76587e-05 0)
(-2.77307e-05 -3.58873e-05 0)
(6.51342e-05 -4.07618e-05 0)
(6.05832e-05 -5.0041e-05 0)
(5.3386e-05 -5.66606e-05 0)
(4.46956e-05 -6.0067e-05 0)
(3.57982e-05 -6.10042e-05 0)
(2.80275e-05 -6.05076e-05 0)
(2.23323e-05 -5.85411e-05 0)
(1.82358e-05 -5.37732e-05 0)
(1.41891e-05 -4.7084e-05 0)
(9.84353e-06 -4.13609e-05 0)
(5.87321e-06 -3.73109e-05 0)
(2.56982e-06 -3.4667e-05 0)
(-6.02664e-08 -3.29737e-05 0)
(-2.11209e-06 -3.19272e-05 0)
(-3.6826e-06 -3.13149e-05 0)
(-4.84687e-06 -3.09929e-05 0)
(-5.72896e-06 -3.07936e-05 0)
(-6.4256e-06 -3.0815e-05 0)
(-6.92203e-06 -3.10721e-05 0)
(-7.25426e-06 -3.146e-05 0)
(-7.42525e-06 -3.20382e-05 0)
(-7.38837e-06 -3.26341e-05 0)
(-7.16657e-06 -3.30262e-05 0)
(-6.94298e-06 -3.30425e-05 0)
(-6.87946e-06 -3.31254e-05 0)
(-6.79834e-06 -3.37165e-05 0)
(-6.37314e-06 -3.44729e-05 0)
(-5.66648e-06 -3.44292e-05 0)
(-5.22654e-06 -3.33569e-05 0)
(-5.3946e-06 -3.23388e-05 0)
(-6.0145e-06 -3.25108e-05 0)
(-6.75327e-06 -3.45294e-05 0)
(-7.11289e-06 -3.85703e-05 0)
(-6.30678e-06 -4.36364e-05 0)
(-3.96867e-06 -4.70403e-05 0)
(-1.17658e-06 -4.62322e-05 0)
(6.70666e-07 -4.23933e-05 0)
(1.47829e-06 -3.78741e-05 0)
(1.83215e-06 -3.39201e-05 0)
(2.15502e-06 -3.08304e-05 0)
(2.66625e-06 -2.84424e-05 0)
(3.42561e-06 -2.64928e-05 0)
(4.41104e-06 -2.47797e-05 0)
(5.56534e-06 -2.32045e-05 0)
(6.84035e-06 -2.17836e-05 0)
(8.20808e-06 -2.0552e-05 0)
(9.65714e-06 -1.95463e-05 0)
(1.11796e-05 -1.87784e-05 0)
(1.27547e-05 -1.82473e-05 0)
(1.43601e-05 -1.79516e-05 0)
(1.59698e-05 -1.78907e-05 0)
(1.75573e-05 -1.80706e-05 0)
(1.90992e-05 -1.84897e-05 0)
(2.05801e-05 -1.91421e-05 0)
(2.19922e-05 -2.00173e-05 0)
(2.33335e-05 -2.11031e-05 0)
(2.45934e-05 -2.23621e-05 0)
(2.57438e-05 -2.37623e-05 0)
(2.67318e-05 -2.52828e-05 0)
(2.74922e-05 -2.70126e-05 0)
(2.79945e-05 -2.91444e-05 0)
(2.82838e-05 -3.19167e-05 0)
(2.85488e-05 -3.55082e-05 0)
(2.91818e-05 -3.97273e-05 0)
(3.07705e-05 -4.35449e-05 0)
(3.33814e-05 -4.46683e-05 0)
(3.5734e-05 -4.15088e-05 0)
(3.66343e-05 -3.64376e-05 0)
(3.6329e-05 -3.22387e-05 0)
(3.55821e-05 -2.99914e-05 0)
(3.49155e-05 -2.95874e-05 0)
(3.46717e-05 -3.03932e-05 0)
(3.50058e-05 -3.13098e-05 0)
(3.56105e-05 -3.12648e-05 0)
(3.59583e-05 -3.04056e-05 0)
(3.59499e-05 -2.96941e-05 0)
(3.58928e-05 -2.95097e-05 0)
(3.59818e-05 -2.94478e-05 0)
(3.60929e-05 -2.9032e-05 0)
(3.60332e-05 -2.83605e-05 0)
(3.5775e-05 -2.76872e-05 0)
(3.53825e-05 -2.7181e-05 0)
(3.48229e-05 -2.67505e-05 0)
(3.40222e-05 -2.66035e-05 0)
(3.29897e-05 -2.67264e-05 0)
(3.16603e-05 -2.70195e-05 0)
(2.9942e-05 -2.75438e-05 0)
(2.77583e-05 -2.84798e-05 0)
(2.49799e-05 -3.00742e-05 0)
(2.15467e-05 -3.27513e-05 0)
(1.75687e-05 -3.69547e-05 0)
(1.34871e-05 -4.27021e-05 0)
(9.87136e-06 -4.859e-05 0)
(5.78552e-06 -5.18704e-05 0)
(-4.32031e-07 -5.32251e-05 0)
(-8.59218e-06 -5.38302e-05 0)
(-1.75325e-05 -5.30758e-05 0)
(-2.61717e-05 -4.98343e-05 0)
(-3.33184e-05 -4.33295e-05 0)
(-3.78855e-05 -3.41188e-05 0)
(6.71221e-05 -3.8671e-05 0)
(5.98031e-05 -4.42226e-05 0)
(4.94632e-05 -4.83143e-05 0)
(3.73803e-05 -5.05848e-05 0)
(2.49238e-05 -5.18561e-05 0)
(1.34675e-05 -5.30779e-05 0)
(4.17407e-06 -5.36369e-05 0)
(-2.91095e-06 -5.02494e-05 0)
(-8.99267e-06 -4.39965e-05 0)
(-1.42878e-05 -3.92703e-05 0)
(-1.81835e-05 -3.63839e-05 0)
(-2.07782e-05 -3.48137e-05 0)
(-2.2379e-05 -3.39362e-05 0)
(-2.32724e-05 -3.35161e-05 0)
(-2.3654e-05 -3.33528e-05 0)
(-2.36637e-05 -3.3406e-05 0)
(-2.34427e-05 -3.33528e-05 0)
(-2.30939e-05 -3.34994e-05 0)
(-2.2659e-05 -3.38951e-05 0)
(-2.21946e-05 -3.42667e-05 0)
(-2.1737e-05 -3.49303e-05 0)
(-2.12572e-05 -3.55796e-05 0)
(-2.07422e-05 -3.60548e-05 0)
(-2.02906e-05 -3.58714e-05 0)
(-1.9996e-05 -3.57719e-05 0)
(-1.97522e-05 -3.64569e-05 0)
(-1.93104e-05 -3.7567e-05 0)
(-1.86441e-05 -3.76136e-05 0)
(-1.80291e-05 -3.6124e-05 0)
(-1.76565e-05 -3.46819e-05 0)
(-1.75561e-05 -3.45307e-05 0)
(-1.78195e-05 -3.62586e-05 0)
(-1.85348e-05 -4.03235e-05 0)
(-1.9406e-05 -4.59741e-05 0)
(-2.00843e-05 -5.01263e-05 0)
(-2.07807e-05 -4.88713e-05 0)
(-2.17107e-05 -4.45363e-05 0)
(-2.2444e-05 -4.01051e-05 0)
(-2.24632e-05 -3.66111e-05 0)
(-2.16128e-05 -3.41606e-05 0)
(-1.9936e-05 -3.23947e-05 0)
(-1.75437e-05 -3.0992e-05 0)
(-1.45527e-05 -2.9726e-05 0)
(-1.10603e-05 -2.8505e-05 0)
(-7.14478e-06 -2.73744e-05 0)
(-2.8758e-06 -2.638e-05 0)
(1.68158e-06 -2.55597e-05 0)
(6.4602e-06 -2.49323e-05 0)
(1.13926e-05 -2.44834e-05 0)
(1.64105e-05 -2.42216e-05 0)
(2.14477e-05 -2.41386e-05 0)
(2.64337e-05 -2.42456e-05 0)
(3.13052e-05 -2.45426e-05 0)
(3.60008e-05 -2.50326e-05 0)
(4.04648e-05 -2.57043e-05 0)
(4.46389e-05 -2.65509e-05 0)
(4.84667e-05 -2.75179e-05 0)
(5.18841e-05 -2.8567e-05 0)
(5.48149e-05 -2.96421e-05 0)
(5.71638e-05 -3.08232e-05 0)
(5.88189e-05 -3.23337e-05 0)
(5.96664e-05 -3.44445e-05 0)
(5.96489e-05 -3.753e-05 0)
(5.88872e-05 -4.15687e-05 0)
(5.78651e-05 -4.58578e-05 0)
(5.70643e-05 -4.75718e-05 0)
(5.63505e-05 -4.36785e-05 0)
(5.54661e-05 -3.79626e-05 0)
(5.46886e-05 -3.36989e-05 0)
(5.43222e-05 -3.1697e-05 0)
(5.43154e-05 -3.16017e-05 0)
(5.45814e-05 -3.28089e-05 0)
(5.50819e-05 -3.41368e-05 0)
(5.5643e-05 -3.40174e-05 0)
(5.60053e-05 -3.27904e-05 0)
(5.61709e-05 -3.19458e-05 0)
(5.63617e-05 -3.19205e-05 0)
(5.66927e-05 -3.20361e-05 0)
(5.70811e-05 -3.15444e-05 0)
(5.74339e-05 -3.07927e-05 0)
(5.77451e-05 -3.00188e-05 0)
(5.80291e-05 -2.9504e-05 0)
(5.82847e-05 -2.89382e-05 0)
(5.84781e-05 -2.86332e-05 0)
(5.85342e-05 -2.85628e-05 0)
(5.83279e-05 -2.84432e-05 0)
(5.77301e-05 -2.85201e-05 0)
(5.66107e-05 -2.88189e-05 0)
(5.47475e-05 -2.9546e-05 0)
(5.18451e-05 -3.1174e-05 0)
(4.76657e-05 -3.4319e-05 0)
(4.2368e-05 -3.93776e-05 0)
(3.645e-05 -4.49263e-05 0)
(2.92903e-05 -4.61876e-05 0)
(1.97611e-05 -4.51177e-05 0)
(8.27748e-06 -4.43314e-05 0)
(-3.92525e-06 -4.33664e-05 0)
(-1.57056e-05 -4.12378e-05 0)
(-2.58011e-05 -3.72071e-05 0)
(-3.29582e-05 -3.15927e-05 0)
(3.19812e-05 -2.37049e-05 0)
(2.3504e-05 -2.6137e-05 0)
(1.19792e-05 -2.80843e-05 0)
(-1.2504e-06 -2.93404e-05 0)
(-1.51388e-05 -3.07542e-05 0)
(-2.98846e-05 -3.34433e-05 0)
(-4.67619e-05 -3.60054e-05 0)
(-6.32239e-05 -3.40309e-05 0)
(-7.37225e-05 -2.88096e-05 0)
(-7.80481e-05 -2.52461e-05 0)
(-7.90784e-05 -2.39015e-05 0)
(-7.83414e-05 -2.35342e-05 0)
(-7.663e-05 -2.35159e-05 0)
(-7.43434e-05 -2.36549e-05 0)
(-7.17098e-05 -2.3909e-05 0)
(-6.89957e-05 -2.4224e-05 0)
(-6.61423e-05 -2.43133e-05 0)
(-6.30949e-05 -2.45321e-05 0)
(-6.02382e-05 -2.49554e-05 0)
(-5.75691e-05 -2.52687e-05 0)
(-5.51992e-05 -2.58538e-05 0)
(-5.33895e-05 -2.64973e-05 0)
(-5.21213e-05 -2.69458e-05 0)
(-5.08177e-05 -2.66371e-05 0)
(-4.88811e-05 -2.63741e-05 0)
(-4.69763e-05 -2.7078e-05 0)
(-4.62082e-05 -2.8391e-05 0)
(-4.63539e-05 -2.85656e-05 0)
(-4.54749e-05 -2.70529e-05 0)
(-4.24955e-05 -2.55154e-05 0)
(-3.8318e-05 -2.5106e-05 0)
(-3.44366e-05 -2.62041e-05 0)
(-3.29371e-05 -2.94962e-05 0)
(-3.63084e-05 -3.48504e-05 0)
(-4.5644e-05 -3.88645e-05 0)
(-5.65007e-05 -3.75036e-05 0)
(-6.33733e-05 -3.32879e-05 0)
(-6.54999e-05 -2.96782e-05 0)
(-6.39989e-05 -2.73547e-05 0)
(-6.00453e-05 -2.60402e-05 0)
(-5.4522e-05 -2.52569e-05 0)
(-4.78468e-05 -2.46813e-05 0)
(-4.01785e-05 -2.41215e-05 0)
(-3.15215e-05 -2.35253e-05 0)
(-2.19065e-05 -2.2952e-05 0)
(-1.14544e-05 -2.24479e-05 0)
(-3.17268e-07 -2.20366e-05 0)
(1.13141e-05 -2.17293e-05 0)
(2.32893e-05 -2.1502e-05 0)
(3.54484e-05 -2.13649e-05 0)
(4.76556e-05 -2.13002e-05 0)
(5.9762e-05 -2.13197e-05 0)
(7.16427e-05 -2.14277e-05 0)
(8.31262e-05 -2.16393e-05 0)
(9.40679e-05 -2.1947e-05 0)
(0.000104294 -2.23527e-05 0)
(0.00011368 -2.2814e-05 0)
(0.00012212 -2.33007e-05 0)
(0.000129581 -2.37407e-05 0)
(0.000136062 -2.41827e-05 0)
(0.000141428 -2.48089e-05 0)
(0.000145308 -2.58849e-05 0)
(0.000146931 -2.78641e-05 0)
(0.000145221 -3.10681e-05 0)
(0.000138993 -3.52599e-05 0)
(0.000128363 -3.71409e-05 0)
(0.000118576 -3.34511e-05 0)
(0.000114552 -2.8e-05 0)
(0.00011548 -2.44956e-05 0)
(0.00011893 -2.31558e-05 0)
(0.000122824 -2.33713e-05 0)
(0.000125628 -2.4723e-05 0)
(0.000126419 -2.61325e-05 0)
(0.000126142 -2.59409e-05 0)
(0.000126696 -2.45561e-05 0)
(0.000128422 -2.37081e-05 0)
(0.000130214 -2.38695e-05 0)
(0.000131351 -2.41423e-05 0)
(0.000132321 -2.371e-05 0)
(0.000133721 -2.30083e-05 0)
(0.000135644 -2.23161e-05 0)
(0.000137873 -2.18725e-05 0)
(0.000140312 -2.13568e-05 0)
(0.000142946 -2.10536e-05 0)
(0.000145377 -2.08702e-05 0)
(0.000147653 -2.04984e-05 0)
(0.000149791 -2.01898e-05 0)
(0.000151567 -1.99484e-05 0)
(0.000152804 -1.98211e-05 0)
(0.000153023 -2.02375e-05 0)
(0.000151194 -2.19881e-05 0)
(0.000145389 -2.62713e-05 0)
(0.000132876 -3.09059e-05 0)
(0.000116295 -3.06249e-05 0)
(0.000101099 -2.75663e-05 0)
(8.73897e-05 -2.56447e-05 0)
(7.39153e-05 -2.46788e-05 0)
(6.08485e-05 -2.35417e-05 0)
(4.93627e-05 -2.16183e-05 0)
(4.08366e-05 -1.90782e-05 0)
(-0.000417895 -2.35728e-05 0)
(-0.000414221 -2.47992e-05 0)
(-0.000412865 -2.58033e-05 0)
(-0.000412454 -2.68923e-05 0)
(-0.00041234 -2.76098e-05 0)
(-0.000416888 -2.76812e-05 0)
(-0.000437686 -2.41849e-05 0)
(-0.000465743 -2.44652e-05 0)
(-0.000472488 -2.81242e-05 0)
(-0.00046019 -2.77152e-05 0)
(-0.000443516 -2.80287e-05 0)
(-0.000425102 -2.80139e-05 0)
(-0.000406155 -2.82779e-05 0)
(-0.000386832 -2.83563e-05 0)
(-0.000367215 -2.87044e-05 0)
(-0.000348201 -2.85345e-05 0)
(-0.00032902 -2.90592e-05 0)
(-0.000308557 -2.91082e-05 0)
(-0.000289139 -2.90771e-05 0)
(-0.000269821 -2.93878e-05 0)
(-0.000250853 -2.93083e-05 0)
(-0.000233403 -2.93421e-05 0)
(-0.000217893 -2.91378e-05 0)
(-0.000202149 -2.96093e-05 0)
(-0.000182916 -3.01941e-05 0)
(-0.000163023 -3.00244e-05 0)
(-0.000147588 -2.94893e-05 0)
(-0.000136705 -2.9178e-05 0)
(-0.000121893 -3.04815e-05 0)
(-9.91366e-05 -3.10853e-05 0)
(-7.26593e-05 -3.15069e-05 0)
(-4.60895e-05 -3.15796e-05 0)
(-2.4493e-05 -3.10579e-05 0)
(-1.55856e-05 -2.99543e-05 0)
(-2.65905e-05 -2.7502e-05 0)
(-4.20274e-05 -2.95953e-05 0)
(-4.2396e-05 -3.09194e-05 0)
(-3.00883e-05 -3.16406e-05 0)
(-9.91757e-06 -3.21599e-05 0)
(1.50033e-05 -3.24744e-05 0)
(4.21932e-05 -3.25641e-05 0)
(7.09122e-05 -3.28263e-05 0)
(0.000100949 -3.2931e-05 0)
(0.000132607 -3.32931e-05 0)
(0.000165964 -3.34151e-05 0)
(0.000200835 -3.36722e-05 0)
(0.000236969 -3.36729e-05 0)
(0.000273967 -3.37492e-05 0)
(0.000311562 -3.36636e-05 0)
(0.00034946 -3.36316e-05 0)
(0.000387358 -3.34846e-05 0)
(0.000425065 -3.33812e-05 0)
(0.000462407 -3.32313e-05 0)
(0.000498975 -3.29971e-05 0)
(0.000534483 -3.27866e-05 0)
(0.000568553 -3.24152e-05 0)
(0.000600989 -3.21431e-05 0)
(0.000631606 -3.16771e-05 0)
(0.000660489 -3.13979e-05 0)
(0.000687953 -3.09974e-05 0)
(0.000713845 -3.07359e-05 0)
(0.000737529 -3.02935e-05 0)
(0.0007569 -2.96875e-05 0)
(0.000769133 -2.8874e-05 0)
(0.000769902 -2.77399e-05 0)
(0.000754334 -2.4889e-05 0)
(0.00074023 -2.754e-05 0)
(0.000745193 -2.85692e-05 0)
(0.000763452 -2.90617e-05 0)
(0.000787153 -2.88985e-05 0)
(0.000811176 -2.84881e-05 0)
(0.000831628 -2.77419e-05 0)
(0.000844454 -2.64853e-05 0)
(0.000852913 -2.65031e-05 0)
(0.00086533 -2.70688e-05 0)
(0.00088239 -2.71289e-05 0)
(0.000898979 -2.65137e-05 0)
(0.000911994 -2.59111e-05 0)
(0.00092417 -2.59361e-05 0)
(0.000937838 -2.57883e-05 0)
(0.000952933 -2.57537e-05 0)
(0.00096841 -2.53807e-05 0)
(0.00098397 -2.52887e-05 0)
(0.00100043 -2.51333e-05 0)
(0.0010155 -2.44807e-05 0)
(0.00103038 -2.46083e-05 0)
(0.00104557 -2.40822e-05 0)
(0.00106032 -2.39875e-05 0)
(0.00107494 -2.36269e-05 0)
(0.0010892 -2.35869e-05 0)
(0.00110123 -2.32178e-05 0)
(0.00110607 -2.34053e-05 0)
(0.0010864 -1.88816e-05 0)
(0.00105415 -2.1312e-05 0)
(0.00103759 -2.34243e-05 0)
(0.00103201 -2.28514e-05 0)
(0.00102796 -2.24323e-05 0)
(0.00102372 -2.13642e-05 0)
(0.00102002 -2.04178e-05 0)
(0.00101825 -1.87269e-05 0)
(-0.00877833 -6.51809e-05 0)
(-0.00856424 -6.11546e-05 0)
(-0.00834645 -5.77441e-05 0)
(-0.00812417 -5.81606e-05 0)
(-0.00789889 -5.45296e-05 0)
(-0.00767079 -3.78866e-05 0)
(-0.00743704 -3.89616e-06 0)
(-0.00719371 -2.19505e-05 0)
(-0.00694197 -7.99489e-05 0)
(-0.00668186 -9.76893e-05 0)
(-0.00641269 -0.00010762 0)
(-0.00613786 -0.000109974 0)
(-0.00585851 -0.000112761 0)
(-0.00557584 -0.000113257 0)
(-0.00529016 -0.000115174 0)
(-0.00500163 -0.000113118 0)
(-0.00471036 -0.000117141 0)
(-0.00441696 -0.000117497 0)
(-0.00412101 -0.000115513 0)
(-0.00382299 -0.00011749 0)
(-0.00352323 -0.000114325 0)
(-0.00322145 -0.000112847 0)
(-0.00291752 -0.000109223 0)
(-0.00261132 -0.000114914 0)
(-0.00230371 -0.000120015 0)
(-0.00199466 -0.00011654 0)
(-0.00168373 -0.000106612 0)
(-0.00137032 -0.000104351 0)
(-0.00105495 -0.000120477 0)
(-0.000737873 -0.000131487 0)
(-0.000419133 -0.000135287 0)
(-0.000100516 -0.0001308 0)
(0.000216102 -0.000112473 0)
(0.000529437 -8.02622e-05 0)
(0.000840239 -4.33201e-05 0)
(0.00115002 -6.45002e-05 0)
(0.00146106 -9.42404e-05 0)
(0.00177559 -0.00011441 0)
(0.00209376 -0.00012804 0)
(0.00241482 -0.000134862 0)
(0.00273808 -0.000138596 0)
(0.00306281 -0.000141683 0)
(0.0033887 -0.000144328 0)
(0.00371553 -0.000148058 0)
(0.00404333 -0.000150949 0)
(0.00437209 -0.000153998 0)
(0.00470183 -0.000155903 0)
(0.00503254 -0.00015746 0)
(0.00536414 -0.000158295 0)
(0.00569655 -0.000158703 0)
(0.0060297 -0.000158476 0)
(0.00636349 -0.000158094 0)
(0.00669776 -0.00015715 0)
(0.00703242 -0.00015529 0)
(0.00736721 -0.000153137 0)
(0.00770193 -0.000149871 0)
(0.00803628 -0.000146797 0)
(0.00837008 -0.000142829 0)
(0.00870301 -0.000139767 0)
(0.00903467 -0.000136418 0)
(0.00936436 -0.000132307 0)
(0.00969098 -0.000125719 0)
(0.0100131 -0.000112631 0)
(0.0103293 -9.34026e-05 0)
(0.0106376 -6.43515e-05 0)
(0.0109399 -3.40844e-05 0)
(0.0112357 -6.7691e-05 0)
(0.0115291 -9.99492e-05 0)
(0.0118224 -0.000118483 0)
(0.0121159 -0.000123427 0)
(0.0124081 -0.000119839 0)
(0.0126972 -0.000108756 0)
(0.0129829 -9.26839e-05 0)
(0.0132642 -9.23117e-05 0)
(0.0135406 -0.0001019 0)
(0.0138133 -0.000105303 0)
(0.0140829 -0.000100118 0)
(0.0143494 -9.3319e-05 0)
(0.0146116 -9.51554e-05 0)
(0.01487 -9.59808e-05 0)
(0.0151246 -9.86449e-05 0)
(0.0153764 -9.65087e-05 0)
(0.0156247 -9.7993e-05 0)
(0.0158697 -9.70338e-05 0)
(0.0161117 -9.28037e-05 0)
(0.0163499 -9.41135e-05 0)
(0.0165846 -9.16513e-05 0)
(0.0168155 -9.0692e-05 0)
(0.0170422 -8.86394e-05 0)
(0.0172632 -8.47764e-05 0)
(0.0174773 -7.27844e-05 0)
(0.0176799 -4.63055e-05 0)
(0.0178736 1.3716e-05 0)
(0.0180519 4.67681e-06 0)
(0.0182167 -2.40422e-05 0)
(0.018374 -3.11259e-05 0)
(0.018526 -3.18307e-05 0)
(0.0186723 -2.97063e-05 0)
(0.0188108 -3.21659e-05 0)
(0.018943 -3.49167e-05 0)
(-0.0142966 -0.000392678 0)
(-0.0139408 -0.000399082 0)
(-0.0135786 -0.000405562 0)
(-0.0132096 -0.000412301 0)
(-0.0128344 -0.000416569 0)
(-0.0124505 -0.00041644 0)
(-0.0120526 -0.000416343 0)
(-0.0116433 -0.000436386 0)
(-0.0112328 -0.00046976 0)
(-0.0108194 -0.000491796 0)
(-0.0103974 -0.000506766 0)
(-0.00996679 -0.00051656 0)
(-0.00952844 -0.000524434 0)
(-0.00908335 -0.000530681 0)
(-0.00863219 -0.000536478 0)
(-0.00817521 -0.000541082 0)
(-0.00771307 -0.000546946 0)
(-0.00724647 -0.000551519 0)
(-0.00677496 -0.000555094 0)
(-0.00629914 -0.000559172 0)
(-0.00581914 -0.000561679 0)
(-0.00533466 -0.000564278 0)
(-0.0048457 -0.000566979 0)
(-0.00435319 -0.000572552 0)
(-0.00385848 -0.000577614 0)
(-0.0033606 -0.000579024 0)
(-0.00285775 -0.000578315 0)
(-0.00234991 -0.000581327 0)
(-0.00184028 -0.000590877 0)
(-0.00133067 -0.000599033 0)
(-0.000820332 -0.000602375 0)
(-0.000309194 -0.000599197 0)
(0.000203486 -0.000587967 0)
(0.00072029 -0.000571128 0)
(0.0012457 -0.000557323 0)
(0.00177407 -0.000564266 0)
(0.00229794 -0.000579672 0)
(0.0028205 -0.000594129 0)
(0.00334477 -0.000605387 0)
(0.0038717 -0.000612813 0)
(0.00440144 -0.000617734 0)
(0.00493353 -0.000621528 0)
(0.00546741 -0.000624814 0)
(0.00600252 -0.000628204 0)
(0.00653847 -0.000631259 0)
(0.007075 -0.00063411 0)
(0.00761189 -0.000636377 0)
(0.00814896 -0.000638203 0)
(0.00868593 -0.0006395 0)
(0.00922254 -0.000640334 0)
(0.00975853 -0.000640659 0)
(0.0102936 -0.000640571 0)
(0.0108274 -0.000639904 0)
(0.0113597 -0.000638518 0)
(0.0118902 -0.000636512 0)
(0.0124186 -0.000633712 0)
(0.0129445 -0.000630433 0)
(0.0134677 -0.00062647 0)
(0.0139876 -0.000622183 0)
(0.0145036 -0.000617056 0)
(0.015015 -0.000610395 0)
(0.0155211 -0.000600916 0)
(0.0160218 -0.000586903 0)
(0.0165175 -0.000568308 0)
(0.0170098 -0.00054638 0)
(0.017503 -0.000528795 0)
(0.0179915 -0.00053282 0)
(0.0184682 -0.000543119 0)
(0.0189364 -0.000550007 0)
(0.0193994 -0.000550301 0)
(0.0198587 -0.00054456 0)
(0.0203145 -0.000533816 0)
(0.0207676 -0.000520987 0)
(0.0212165 -0.000513452 0)
(0.0216581 -0.000510487 0)
(0.022092 -0.000506132 0)
(0.0225199 -0.000498249 0)
(0.0229431 -0.000489296 0)
(0.0233605 -0.000482945 0)
(0.0237712 -0.000477292 0)
(0.024175 -0.000472164 0)
(0.0245725 -0.000465857 0)
(0.0249635 -0.000460113 0)
(0.0253476 -0.000453551 0)
(0.0257253 -0.000445843 0)
(0.0260959 -0.000439257 0)
(0.0264589 -0.000431665 0)
(0.0268139 -0.000423681 0)
(0.0271602 -0.000414213 0)
(0.0274966 -0.000401751 0)
(0.0278226 -0.000382829 0)
(0.0281389 -0.000354519 0)
(0.0284524 -0.000316851 0)
(0.0287598 -0.000299175 0)
(0.0290503 -0.00029435 0)
(0.0293258 -0.000287267 0)
(0.0295913 -0.000277454 0)
(0.0298479 -0.000265972 0)
(0.030094 -0.000254885 0)
(0.0303304 -0.000244359 0)
(-0.0176724 -0.000799192 0)
(-0.0172296 -0.000812786 0)
(-0.0167793 -0.000826954 0)
(-0.0163203 -0.000840936 0)
(-0.0158527 -0.000853559 0)
(-0.0153743 -0.000865063 0)
(-0.0148825 -0.000879582 0)
(-0.0143806 -0.000905658 0)
(-0.0138757 -0.000939106 0)
(-0.0133674 -0.000967982 0)
(-0.0128519 -0.000991383 0)
(-0.0123278 -0.0010101 0)
(-0.0117952 -0.00102594 0)
(-0.0112546 -0.0010397 0)
(-0.0107065 -0.00105219 0)
(-0.0101512 -0.00106359 0)
(-0.00958942 -0.00107477 0)
(-0.00902166 -0.00108495 0)
(-0.00844786 -0.00109421 0)
(-0.0078684 -0.00110305 0)
(-0.00728342 -0.00111096 0)
(-0.00669287 -0.00111862 0)
(-0.00609699 -0.00112639 0)
(-0.00549663 -0.00113507 0)
(-0.00489265 -0.00114315 0)
(-0.0042844 -0.00114933 0)
(-0.00367079 -0.0011546 0)
(-0.00305224 -0.00116167 0)
(-0.0024312 -0.00117128 0)
(-0.00180924 -0.00117976 0)
(-0.00118592 -0.00118427 0)
(-0.000560285 -0.00118329 0)
(6.94616e-05 -0.0011767 0)
(0.000705665 -0.0011677 0)
(0.00134936 -0.00116287 0)
(0.00199666 -0.00116786 0)
(0.00264287 -0.00118001 0)
(0.00328775 -0.00119399 0)
(0.00393281 -0.00120643 0)
(0.00457937 -0.00121612 0)
(0.00522811 -0.00122344 0)
(0.00587895 -0.0012292 0)
(0.0065315 -0.00123398 0)
(0.00718524 -0.00123817 0)
(0.00783969 -0.00124174 0)
(0.00849449 -0.00124471 0)
(0.00914929 -0.00124692 0)
(0.0098038 -0.00124838 0)
(0.0104577 -0.00124906 0)
(0.0111106 -0.00124897 0)
(0.0117622 -0.00124809 0)
(0.0124121 -0.00124641 0)
(0.01306 -0.00124384 0)
(0.0137055 -0.0012403 0)
(0.0143483 -0.00123579 0)
(0.0149881 -0.00123024 0)
(0.0156244 -0.00122373 0)
(0.016257 -0.00121619 0)
(0.0168853 -0.00120762 0)
(0.0175088 -0.00119764 0)
(0.018127 -0.00118562 0)
(0.0187397 -0.00117064 0)
(0.0193475 -0.00115189 0)
(0.0199513 -0.00112978 0)
(0.020553 -0.00110686 0)
(0.0211534 -0.00108928 0)
(0.021748 -0.0010826 0)
(0.022332 -0.00108156 0)
(0.022906 -0.00108008 0)
(0.0234723 -0.00107466 0)
(0.0240328 -0.00106449 0)
(0.0245885 -0.00105027 0)
(0.0251402 -0.00103432 0)
(0.0256867 -0.00102041 0)
(0.0262256 -0.00100873 0)
(0.0267561 -0.000996665 0)
(0.0272793 -0.000982841 0)
(0.0277961 -0.000968217 0)
(0.0283058 -0.00095447 0)
(0.0288076 -0.000941224 0)
(0.0293013 -0.000928161 0)
(0.0297867 -0.000914567 0)
(0.030264 -0.000900784 0)
(0.0307327 -0.000886314 0)
(0.031193 -0.000870983 0)
(0.0316445 -0.00085547 0)
(0.0320865 -0.00083899 0)
(0.0325186 -0.000821268 0)
(0.0329403 -0.000801366 0)
(0.0333512 -0.000777872 0)
(0.0337517 -0.000748726 0)
(0.0341435 -0.000713015 0)
(0.0345311 -0.000673373 0)
(0.0349122 -0.00064355 0)
(0.0352794 -0.000622573 0)
(0.0356316 -0.000603087 0)
(0.0359717 -0.000582725 0)
(0.0363009 -0.000561277 0)
(0.0366182 -0.000539627 0)
(0.0369253 -0.000519096 0)
(-0.0197668 -0.00127074 0)
(-0.0192699 -0.00129258 0)
(-0.0187648 -0.00131543 0)
(-0.0182501 -0.00133841 0)
(-0.0177255 -0.00136108 0)
(-0.01719 -0.00138418 0)
(-0.0166427 -0.0014104 0)
(-0.0160861 -0.00144327 0)
(-0.0155245 -0.00148023 0)
(-0.0149582 -0.00151518 0)
(-0.014385 -0.00154634 0)
(-0.0138037 -0.00157364 0)
(-0.013214 -0.00159793 0)
(-0.0126159 -0.00161986 0)
(-0.0120097 -0.00164005 0)
(-0.0113959 -0.00165883 0)
(-0.0107749 -0.00167666 0)
(-0.010147 -0.00169334 0)
(-0.00951246 -0.00170895 0)
(-0.00887153 -0.00172373 0)
(-0.00822439 -0.00173762 0)
(-0.00757116 -0.00175098 0)
(-0.00691217 -0.00176411 0)
(-0.00624806 -0.00177724 0)
(-0.00557939 -0.00178966 0)
(-0.00490588 -0.00180084 0)
(-0.0042271 -0.00181133 0)
(-0.00354356 -0.00182236 0)
(-0.00285687 -0.00183399 0)
(-0.00216807 -0.00184421 0)
(-0.00147686 -0.00185117 0)
(-0.000782231 -0.00185393 0)
(-8.26629e-05 -0.00185294 0)
(0.000623325 -0.00185073 0)
(0.0013358 -0.00185144 0)
(0.00205206 -0.00185814 0)
(0.00276886 -0.00186982 0)
(0.00348522 -0.00188348 0)
(0.00420164 -0.00189658 0)
(0.00491894 -0.00190782 0)
(0.00563773 -0.00191703 0)
(0.00635811 -0.00192453 0)
(0.00707984 -0.00193068 0)
(0.00780253 -0.00193574 0)
(0.00852575 -0.00193976 0)
(0.0092491 -0.00194276 0)
(0.00997223 -0.00194468 0)
(0.0106948 -0.0019455 0)
(0.0114164 -0.00194519 0)
(0.0121368 -0.00194373 0)
(0.0128555 -0.00194111 0)
(0.0135721 -0.00193731 0)
(0.0142864 -0.00193226 0)
(0.014998 -0.0019259 0)
(0.0157064 -0.0019182 0)
(0.0164114 -0.00190913 0)
(0.0171127 -0.00189869 0)
(0.0178098 -0.00188681 0)
(0.0185023 -0.00187342 0)
(0.0191899 -0.00185824 0)
(0.0198723 -0.00184081 0)
(0.0205495 -0.00182065 0)
(0.0212221 -0.00179754 0)
(0.021891 -0.00177227 0)
(0.0225571 -0.00174708 0)
(0.0232202 -0.00172567 0)
(0.0238772 -0.00171073 0)
(0.0245249 -0.00169989 0)
(0.0251629 -0.00168943 0)
(0.0257924 -0.00167663 0)
(0.0264149 -0.00166038 0)
(0.0270314 -0.00164101 0)
(0.0276425 -0.00161998 0)
(0.0282474 -0.00159935 0)
(0.0288448 -0.00157952 0)
(0.0294338 -0.00155939 0)
(0.0300149 -0.00153822 0)
(0.0305884 -0.00151637 0)
(0.031154 -0.00149461 0)
(0.0317112 -0.00147294 0)
(0.0322595 -0.00145115 0)
(0.0327988 -0.00142888 0)
(0.0333289 -0.00140608 0)
(0.0338497 -0.00138249 0)
(0.034361 -0.00135796 0)
(0.0348626 -0.00133259 0)
(0.0353539 -0.00130595 0)
(0.0358347 -0.0012776 0)
(0.0363047 -0.00124678 0)
(0.0367639 -0.00121251 0)
(0.0372129 -0.0011738 0)
(0.0376534 -0.00113074 0)
(0.0380875 -0.00108581 0)
(0.038514 -0.00104562 0)
(0.0389285 -0.00101086 0)
(0.0393295 -0.000978336 0)
(0.039718 -0.000946061 0)
(0.0400949 -0.000913487 0)
(0.0404592 -0.000880971 0)
(0.0408132 -0.000849951 0)
(-0.0210771 -0.00178385 0)
(-0.020546 -0.00181444 0)
(-0.0200064 -0.00184652 0)
(-0.0194567 -0.00187921 0)
(-0.0188969 -0.00191226 0)
(-0.0183264 -0.00194627 0)
(-0.0177454 -0.0019827 0)
(-0.0171556 -0.00202293 0)
(-0.0165594 -0.00206535 0)
(-0.0159572 -0.00210664 0)
(-0.015348 -0.00214524 0)
(-0.014731 -0.00218073 0)
(-0.0141058 -0.00221338 0)
(-0.0134723 -0.00224359 0)
(-0.0128307 -0.00227177 0)
(-0.0121812 -0.00229825 0)
(-0.0115241 -0.00232331 0)
(-0.0108598 -0.00234699 0)
(-0.0101884 -0.00236937 0)
(-0.00951033 -0.00239065 0)
(-0.00882566 -0.00241088 0)
(-0.00813465 -0.00243031 0)
(-0.00743763 -0.00244911 0)
(-0.00673508 -0.00246737 0)
(-0.00602739 -0.00248476 0)
(-0.00531457 -0.00250106 0)
(-0.00459659 -0.00251652 0)
(-0.00387391 -0.00253166 0)
(-0.00314751 -0.00254633 0)
(-0.002418 -0.0025594 0)
(-0.00168519 -0.00256975 0)
(-0.00094834 -0.00257693 0)
(-0.000206428 -0.00258152 0)
(0.000541317 -0.0025853 0)
(0.00129457 -0.00259083 0)
(0.0020515 -0.00259999 0)
(0.00280994 -0.00261234 0)
(0.00356881 -0.00262616 0)
(0.00432801 -0.00263975 0)
(0.00508789 -0.002652 0)
(0.00584878 -0.0026625 0)
(0.00661079 -0.00267126 0)
(0.00737377 -0.00267842 0)
(0.00813744 -0.00268411 0)
(0.00890142 -0.00268838 0)
(0.00966534 -0.00269125 0)
(0.0104289 -0.00269267 0)
(0.0111916 -0.00269263 0)
(0.0119533 -0.0026911 0)
(0.0127135 -0.00268806 0)
(0.0134719 -0.00268348 0)
(0.0142281 -0.00267735 0)
(0.0149818 -0.00266962 0)
(0.0157326 -0.00266023 0)
(0.0164802 -0.00264915 0)
(0.0172243 -0.00263636 0)
(0.0179644 -0.00262184 0)
(0.0187004 -0.00260553 0)
(0.0194318 -0.00258737 0)
(0.0201584 -0.00256716 0)
(0.02088 -0.00254466 0)
(0.0215968 -0.0025197 0)
(0.0223092 -0.00249241 0)
(0.0230177 -0.00246362 0)
(0.0237225 -0.00243497 0)
(0.0244232 -0.00240869 0)
(0.0251177 -0.00238623 0)
(0.0258039 -0.00236644 0)
(0.0264811 -0.0023471 0)
(0.0271497 -0.00232628 0)
(0.0278107 -0.00230302 0)
(0.0284649 -0.00227735 0)
(0.0291126 -0.00225009 0)
(0.0297534 -0.00222236 0)
(0.0303865 -0.00219453 0)
(0.0310114 -0.00216619 0)
(0.0316281 -0.00213702 0)
(0.0322365 -0.00210713 0)
(0.0328366 -0.00207689 0)
(0.0334279 -0.00204635 0)
(0.0340099 -0.00201541 0)
(0.0345825 -0.00198381 0)
(0.0351456 -0.00195145 0)
(0.0356988 -0.00191813 0)
(0.0362421 -0.00188368 0)
(0.0367752 -0.00184802 0)
(0.0372978 -0.00181081 0)
(0.0378098 -0.00177166 0)
(0.0383109 -0.00173003 0)
(0.0388015 -0.00168536 0)
(0.0392821 -0.00163725 0)
(0.0397537 -0.00158613 0)
(0.0402175 -0.00153381 0)
(0.0406727 -0.00148371 0)
(0.0411169 -0.00143677 0)
(0.0415488 -0.00139171 0)
(0.0419686 -0.00134738 0)
(0.0423766 -0.00130334 0)
(0.0427718 -0.00125985 0)
(0.0431564 -0.00121818 0)
(-0.0219042 -0.0023237 0)
(-0.0213513 -0.00236334 0)
(-0.0207898 -0.00240493 0)
(-0.0202179 -0.00244753 0)
(-0.0196359 -0.00249083 0)
(-0.0190438 -0.00253512 0)
(-0.0184418 -0.00258106 0)
(-0.0178312 -0.00262905 0)
(-0.0172133 -0.00267804 0)
(-0.0165886 -0.00272613 0)
(-0.0159567 -0.00277215 0)
(-0.015317 -0.00281559 0)
(-0.0146693 -0.00285642 0)
(-0.0140134 -0.00289482 0)
(-0.0133494 -0.00293104 0)
(-0.0126776 -0.00296532 0)
(-0.011998 -0.00299787 0)
(-0.0113111 -0.00302878 0)
(-0.0106169 -0.00305819 0)
(-0.00991577 -0.00308623 0)
(-0.00920791 -0.00311302 0)
(-0.00849356 -0.00313871 0)
(-0.00777305 -0.00316341 0)
(-0.00704675 -0.00318718 0)
(-0.00631499 -0.00320985 0)
(-0.00557793 -0.00323135 0)
(-0.00483571 -0.00325176 0)
(-0.00408875 -0.00327124 0)
(-0.00333763 -0.00328963 0)
(-0.00258271 -0.00330628 0)
(-0.00182389 -0.0033206 0)
(-0.00106072 -0.00333243 0)
(-0.000292631 -0.0033423 0)
(0.000480693 -0.00335141 0)
(0.00125879 -0.00336133 0)
(0.00204041 -0.00337317 0)
(0.00282404 -0.00338679 0)
(0.0036087 -0.00340123 0)
(0.00439403 -0.00341537 0)
(0.00518003 -0.00342838 0)
(0.00596681 -0.00343977 0)
(0.00675438 -0.00344939 0)
(0.00754261 -0.00345722 0)
(0.00833127 -0.00346328 0)
(0.00912004 -0.0034676 0)
(0.00990859 -0.00347017 0)
(0.0106966 -0.00347094 0)
(0.0114837 -0.00346991 0)
(0.0122697 -0.00346702 0)
(0.013054 -0.00346227 0)
(0.0138365 -0.00345565 0)
(0.0146166 -0.00344711 0)
(0.0153943 -0.00343663 0)
(0.016169 -0.00342417 0)
(0.0169405 -0.0034097 0)
(0.0177084 -0.0033932 0)
(0.0184725 -0.00337465 0)
(0.0192325 -0.00335402 0)
(0.019988 -0.00333125 0)
(0.0207389 -0.00330627 0)
(0.0214851 -0.00327898 0)
(0.0222267 -0.00324943 0)
(0.0229638 -0.00321789 0)
(0.0236967 -0.0031851 0)
(0.0244254 -0.00315221 0)
(0.0251492 -0.00312055 0)
(0.0258668 -0.00309094 0)
(0.0265767 -0.00306284 0)
(0.0272782 -0.00303495 0)
(0.0279715 -0.00300599 0)
(0.0286568 -0.00297523 0)
(0.0293347 -0.00294254 0)
(0.0300055 -0.00290831 0)
(0.0306689 -0.00287312 0)
(0.0313244 -0.00283724 0)
(0.0319717 -0.0028006 0)
(0.0326106 -0.00276306 0)
(0.033241 -0.00272469 0)
(0.0338626 -0.00268565 0)
(0.0344752 -0.00264599 0)
(0.0350785 -0.00260563 0)
(0.0356721 -0.00256442 0)
(0.0362559 -0.00252222 0)
(0.0368297 -0.00247889 0)
(0.0373934 -0.00243423 0)
(0.0379467 -0.00238811 0)
(0.0384895 -0.00234027 0)
(0.0390216 -0.00229041 0)
(0.0395431 -0.00223819 0)
(0.0400542 -0.0021833 0)
(0.0405553 -0.00212568 0)
(0.0410471 -0.0020658 0)
(0.0415301 -0.00200492 0)
(0.0420039 -0.0019449 0)
(0.042467 -0.00188659 0)
(0.0429186 -0.00182962 0)
(0.0433584 -0.00177353 0)
(0.0437866 -0.00171803 0)
(0.044202 -0.00166347 0)
(0.0446066 -0.001611 0)
(-0.0224353 -0.00288055 0)
(-0.0218684 -0.00292942 0)
(-0.0212927 -0.00298062 0)
(-0.0207066 -0.0030331 0)
(-0.0201106 -0.00308639 0)
(-0.0195047 -0.00314049 0)
(-0.0188893 -0.00319559 0)
(-0.0182653 -0.00325164 0)
(-0.0176335 -0.00330793 0)
(-0.0169944 -0.00336329 0)
(-0.0163477 -0.00341687 0)
(-0.0156932 -0.00346818 0)
(-0.0150309 -0.00351705 0)
(-0.0143604 -0.00356352 0)
(-0.013682 -0.00360772 0)
(-0.0129957 -0.0036498 0)
(-0.0123017 -0.00368992 0)
(-0.0116002 -0.0037282 0)
(-0.0108914 -0.00376474 0)
(-0.0101756 -0.00379969 0)
(-0.00945293 -0.00383313 0)
(-0.00872372 -0.0038652 0)
(-0.00798823 -0.00389596 0)
(-0.0072468 -0.00392544 0)
(-0.00649972 -0.00395359 0)
(-0.00574721 -0.00398035 0)
(-0.0049895 -0.00400575 0)
(-0.00422693 -0.00402982 0)
(-0.00345988 -0.00405239 0)
(-0.00268859 -0.00407312 0)
(-0.00191305 -0.00409172 0)
(-0.00113304 -0.0041082 0)
(-0.000348321 -0.00412297 0)
(0.000441158 -0.00413683 0)
(0.00123491 -0.00415072 0)
(0.00203201 -0.00416533 0)
(0.00283137 -0.00418064 0)
(0.00363216 -0.0041961 0)
(0.00443389 -0.00421101 0)
(0.00523637 -0.00422472 0)
(0.00603954 -0.00423681 0)
(0.00684332 -0.00424702 0)
(0.00764755 -0.00425527 0)
(0.008452 -0.0042615 0)
(0.00925639 -0.0042657 0)
(0.0100604 -0.00426783 0)
(0.0108638 -0.00426784 0)
(0.0116662 -0.0042657 0)
(0.0124673 -0.00426139 0)
(0.0132668 -0.00425488 0)
(0.0140643 -0.00424616 0)
(0.0148596 -0.00423519 0)
(0.0156523 -0.00422195 0)
(0.0164421 -0.00420641 0)
(0.0172287 -0.00418857 0)
(0.0180117 -0.00416841 0)
(0.0187911 -0.00414592 0)
(0.0195663 -0.00412108 0)
(0.0203373 -0.00409388 0)
(0.0211039 -0.00406432 0)
(0.0218659 -0.00403242 0)
(0.0226233 -0.00399833 0)
(0.0233763 -0.00396238 0)
(0.0241247 -0.00392514 0)
(0.0248685 -0.00388743 0)
(0.025607 -0.0038501 0)
(0.0263391 -0.00381363 0)
(0.0270641 -0.00377775 0)
(0.0277811 -0.0037417 0)
(0.02849 -0.0037047 0)
(0.0291911 -0.0036662 0)
(0.0298844 -0.00362603 0)
(0.0305701 -0.00358432 0)
(0.0312481 -0.00354136 0)
(0.0319181 -0.00349734 0)
(0.0325797 -0.00345229 0)
(0.0332328 -0.00340619 0)
(0.0338773 -0.00335908 0)
(0.0345128 -0.00331105 0)
(0.0351391 -0.00326212 0)
(0.0357559 -0.00321223 0)
(0.0363631 -0.00316126 0)
(0.0369603 -0.00310911 0)
(0.0375475 -0.00305564 0)
(0.0381244 -0.00300068 0)
(0.038691 -0.00294408 0)
(0.039247 -0.00288567 0)
(0.0397925 -0.00282523 0)
(0.0403275 -0.00276255 0)
(0.0408522 -0.00269751 0)
(0.0413668 -0.00263017 0)
(0.0418718 -0.00256098 0)
(0.0423674 -0.00249078 0)
(0.0428532 -0.00242073 0)
(0.0433286 -0.00235148 0)
(0.0437928 -0.00228308 0)
(0.0442456 -0.00221547 0)
(0.0446869 -0.00214859 0)
(0.0451153 -0.00208286 0)
(0.0455329 -0.00201947 0)
(-0.0227879 -0.00344847 0)
(-0.0222118 -0.00350667 0)
(-0.0216269 -0.00356751 0)
(-0.0210315 -0.0036298 0)
(-0.0204263 -0.00369287 0)
(-0.0198114 -0.0037565 0)
(-0.0191873 -0.0038206 0)
(-0.0185544 -0.00388496 0)
(-0.0179135 -0.00394903 0)
(-0.0172647 -0.00401203 0)
(-0.0166083 -0.00407333 0)
(-0.0159439 -0.0041325 0)
(-0.0152717 -0.00418934 0)
(-0.0145914 -0.00424378 0)
(-0.0139032 -0.00429589 0)
(-0.0132072 -0.00434574 0)
(-0.0125035 -0.00439346 0)
(-0.0117923 -0.00443914 0)
(-0.0110738 -0.00448288 0)
(-0.0103482 -0.00452479 0)
(-0.00961568 -0.00456496 0)
(-0.00887658 -0.00460347 0)
(-0.00813114 -0.00464038 0)
(-0.00737964 -0.00467572 0)
(-0.00662237 -0.00470946 0)
(-0.00585959 -0.00474158 0)
(-0.00509152 -0.00477207 0)
(-0.00431847 -0.0048009 0)
(-0.00354071 -0.00482796 0)
(-0.00275845 -0.00485307 0)
(-0.00197174 -0.00487611 0)
(-0.00118053 -0.00489716 0)
(-0.000384814 -0.00491651 0)
(0.000415311 -0.00493469 0)
(0.00121936 -0.00495226 0)
(0.00202663 -0.00496965 0)
(0.00283627 -0.0049869 0)
(0.00364757 -0.00500368 0)
(0.00446003 -0.00501953 0)
(0.00527335 -0.00503398 0)
(0.00608736 -0.00504666 0)
(0.00690189 -0.00505733 0)
(0.00771674 -0.00506583 0)
(0.00853166 -0.00507208 0)
(0.0093464 -0.00507603 0)
(0.0101607 -0.00507761 0)
(0.0109742 -0.00507676 0)
(0.0117867 -0.00507346 0)
(0.0125979 -0.00506767 0)
(0.0134074 -0.00505937 0)
(0.0142148 -0.00504853 0)
(0.0150201 -0.00503512 0)
(0.0158227 -0.00501913 0)
(0.0166225 -0.00500054 0)
(0.0174191 -0.00497937 0)
(0.0182123 -0.00495561 0)
(0.0190018 -0.00492925 0)
(0.0197873 -0.00490032 0)
(0.0205687 -0.00486883 0)
(0.0213457 -0.00483483 0)
(0.0221183 -0.00479842 0)
(0.0228864 -0.00475978 0)
(0.0236498 -0.00471923 0)
(0.0244085 -0.00467724 0)
(0.0251622 -0.00463437 0)
(0.0259103 -0.0045912 0)
(0.0266522 -0.00454801 0)
(0.027387 -0.00450469 0)
(0.0281142 -0.00446081 0)
(0.0288336 -0.00441588 0)
(0.029545 -0.00436954 0)
(0.0302486 -0.0043216 0)
(0.0309444 -0.00427207 0)
(0.0316322 -0.00422111 0)
(0.0323118 -0.00416882 0)
(0.0329831 -0.00411528 0)
(0.0336456 -0.00406048 0)
(0.0342994 -0.0040045 0)
(0.0349441 -0.00394736 0)
(0.0355795 -0.00388906 0)
(0.0362054 -0.00382957 0)
(0.0368215 -0.00376879 0)
(0.0374277 -0.00370664 0)
(0.0380238 -0.00364299 0)
(0.0386096 -0.00357771 0)
(0.0391851 -0.0035107 0)
(0.0397502 -0.0034418 0)
(0.0403047 -0.00337088 0)
(0.0408488 -0.00329783 0)
(0.0413826 -0.00322261 0)
(0.0419063 -0.00314535 0)
(0.0424201 -0.00306642 0)
(0.042924 -0.00298644 0)
(0.0434179 -0.00290616 0)
(0.0439013 -0.0028261 0)
(0.0443737 -0.00274654 0)
(0.0448349 -0.00266755 0)
(0.0452847 -0.00258936 0)
(0.0457216 -0.00251242 0)
(0.0461475 -0.00243795 0)
(-0.0230351 -0.00402368 0)
(-0.0224529 -0.00409128 0)
(-0.0218618 -0.00416177 0)
(-0.0212603 -0.00423379 0)
(-0.0206489 -0.00430652 0)
(-0.020028 -0.00437956 0)
(-0.0193979 -0.00445265 0)
(-0.0187591 -0.00452551 0)
(-0.0181118 -0.00459767 0)
(-0.0174566 -0.0046686 0)
(-0.0167933 -0.00473778 0)
(-0.0161221 -0.00480486 0)
(-0.0154429 -0.00486963 0)
(-0.0147557 -0.004932 0)
(-0.0140607 -0.00499197 0)
(-0.0133578 -0.00504957 0)
(-0.0126472 -0.00510488 0)
(-0.0119292 -0.00515798 0)
(-0.0112038 -0.00520895 0)
(-0.0104713 -0.00525786 0)
(-0.00973196 -0.00530479 0)
(-0.00898591 -0.0053498 0)
(-0.00823346 -0.00539293 0)
(-0.00747488 -0.00543422 0)
(-0.00671045 -0.00547365 0)
(-0.00594041 -0.00551121 0)
(-0.00516502 -0.00554689 0)
(-0.00438452 -0.00558064 0)
(-0.00359916 -0.00561238 0)
(-0.00280914 -0.00564205 0)
(-0.00201456 -0.00566959 0)
(-0.00121552 -0.0056951 0)
(-0.000412117 -0.0057188 0)
(0.000395441 -0.005741 0)
(0.00120669 -0.00576205 0)
(0.00202106 -0.00578222 0)
(0.00283785 -0.00580154 0)
(0.00365645 -0.00581983 0)
(0.00447636 -0.00583678 0)
(0.00529726 -0.00585203 0)
(0.00611887 -0.00586529 0)
(0.00694098 -0.00587634 0)
(0.00776334 -0.005885 0)
(0.00858569 -0.00589118 0)
(0.00940777 -0.00589477 0)
(0.0102293 -0.00589571 0)
(0.0110501 -0.00589394 0)
(0.0118698 -0.00588941 0)
(0.012688 -0.0058821 0)
(0.0135046 -0.00587198 0)
(0.0143192 -0.00585901 0)
(0.0151315 -0.00584318 0)
(0.0159412 -0.00582446 0)
(0.0167481 -0.00580288 0)
(0.0175519 -0.00577843 0)
(0.0183523 -0.00575113 0)
(0.0191491 -0.00572098 0)
(0.019942 -0.00568803 0)
(0.0207307 -0.00565233 0)
(0.0215152 -0.00561397 0)
(0.0222953 -0.00557307 0)
(0.0230708 -0.00552983 0)
(0.0238416 -0.00548453 0)
(0.0246075 -0.00543754 0)
(0.0253681 -0.00538929 0)
(0.026123 -0.00534015 0)
(0.0268716 -0.00529033 0)
(0.0276132 -0.00523979 0)
(0.0283475 -0.00518831 0)
(0.0290741 -0.00513558 0)
(0.0297929 -0.00508136 0)
(0.0305037 -0.0050255 0)
(0.0312066 -0.00496796 0)
(0.0319013 -0.00490882 0)
(0.0325877 -0.00484816 0)
(0.0332656 -0.00478602 0)
(0.0339348 -0.00472245 0)
(0.034595 -0.00465748 0)
(0.0352461 -0.00459114 0)
(0.0358878 -0.0045234 0)
(0.03652 -0.00445425 0)
(0.0371424 -0.00438364 0)
(0.0377548 -0.00431146 0)
(0.0383571 -0.00423763 0)
(0.0389492 -0.00416207 0)
(0.0395309 -0.00408467 0)
(0.0401022 -0.00400534 0)
(0.0406631 -0.00392399 0)
(0.0412135 -0.00384057 0)
(0.0417536 -0.00375508 0)
(0.0422835 -0.00366771 0)
(0.0428033 -0.00357874 0)
(0.043313 -0.00348866 0)
(0.0438124 -0.003398 0)
(0.0443011 -0.00330719 0)
(0.0447789 -0.00321658 0)
(0.0452456 -0.00312632 0)
(0.0457009 -0.00303678 0)
(0.0461433 -0.0029486 0)
(0.0465746 -0.00286295 0)
(-0.0232222 -0.00460379 0)
(-0.0226358 -0.00468083 0)
(-0.0220405 -0.00476098 0)
(-0.0214346 -0.0048427 0)
(-0.020819 -0.00492504 0)
(-0.020194 -0.00500745 0)
(-0.0195597 -0.00508958 0)
(-0.0189165 -0.00517109 0)
(-0.0182648 -0.0052516 0)
(-0.0176048 -0.00533066 0)
(-0.0169367 -0.00540788 0)
(-0.0162604 -0.00548295 0)
(-0.0155761 -0.00555569 0)
(-0.0148838 -0.00562598 0)
(-0.0141836 -0.00569379 0)
(-0.0134757 -0.00575914 0)
(-0.01276 -0.00582204 0)
(-0.0120368 -0.00588257 0)
(-0.0113064 -0.00594076 0)
(-0.0105687 -0.00599669 0)
(-0.00982414 -0.0060504 0)
(-0.00907286 -0.00610195 0)
(-0.00831514 -0.00615138 0)
(-0.00755123 -0.0061987 0)
(-0.00678139 -0.00624392 0)
(-0.00600588 -0.00628701 0)
(-0.00522492 -0.00632797 0)
(-0.00443877 -0.00636675 0)
(-0.00364765 -0.00640331 0)
(-0.00285177 -0.00643762 0)
(-0.00205128 -0.00646967 0)
(-0.00124636 -0.00649956 0)
(-0.000437203 -0.00652743 0)
(0.000375943 -0.00655346 0)
(0.00119263 -0.00657785 0)
(0.00201236 -0.00660077 0)
(0.00283454 -0.00662225 0)
(0.00365862 -0.00664218 0)
(0.00448414 -0.00666035 0)
(0.00531075 -0.00667648 0)
(0.00613813 -0.00669035 0)
(0.00696601 -0.00670176 0)
(0.00779412 -0.00671054 0)
(0.00862218 -0.00671657 0)
(0.00944994 -0.00671975 0)
(0.0102771 -0.00671999 0)
(0.0111035 -0.00671724 0)
(0.0119287 -0.00671145 0)
(0.0127525 -0.00670259 0)
(0.0135746 -0.00669062 0)
(0.0143947 -0.00667552 0)
(0.0152125 -0.00665727 0)
(0.0160278 -0.00663586 0)
(0.0168403 -0.00661132 0)
(0.0176496 -0.00658364 0)
(0.0184556 -0.00655284 0)
(0.019258 -0.00651896 0)
(0.0200566 -0.00648205 0)
(0.0208511 -0.0064422 0)
(0.0216413 -0.00639949 0)
(0.0224271 -0.00635408 0)
(0.0232082 -0.00630614 0)
(0.0239845 -0.00625593 0)
(0.0247558 -0.00620377 0)
(0.0255216 -0.00614996 0)
(0.0262816 -0.00609477 0)
(0.0270353 -0.00603835 0)
(0.0277821 -0.00598074 0)
(0.0285217 -0.0059218 0)
(0.0292536 -0.00586138 0)
(0.0299778 -0.00579929 0)
(0.030694 -0.00573543 0)
(0.0314022 -0.00566977 0)
(0.0321021 -0.00560235 0)
(0.0327936 -0.00553321 0)
(0.0334764 -0.0054624 0)
(0.0341504 -0.00538996 0)
(0.0348154 -0.00531591 0)
(0.0354713 -0.00524027 0)
(0.0361177 -0.00516303 0)
(0.0367545 -0.00508419 0)
(0.0373815 -0.00500369 0)
(0.0379985 -0.00492147 0)
(0.0386054 -0.00483747 0)
(0.039202 -0.00475162 0)
(0.0397883 -0.00466386 0)
(0.0403641 -0.00457411 0)
(0.0409296 -0.00448233 0)
(0.0414846 -0.00438849 0)
(0.0420293 -0.00429268 0)
(0.0425636 -0.00419503 0)
(0.0430875 -0.00409583 0)
(0.0436012 -0.00399543 0)
(0.0441043 -0.00389425 0)
(0.0445967 -0.00379265 0)
(0.0450781 -0.00369094 0)
(0.0455485 -0.00358945 0)
(0.0460074 -0.00348855 0)
(0.0464534 -0.00338905 0)
(0.0468882 -0.00329219 0)
(-0.0233766 -0.00518729 0)
(-0.0227872 -0.00527381 0)
(-0.0221888 -0.00536363 0)
(-0.0215799 -0.00545507 0)
(-0.0209613 -0.00554702 0)
(-0.0203331 -0.00563882 0)
(-0.0196957 -0.00573007 0)
(-0.0190493 -0.00582038 0)
(-0.0183942 -0.00590941 0)
(-0.0177306 -0.00599679 0)
(-0.0170587 -0.00608219 0)
(-0.0163786 -0.00616536 0)
(-0.0156903 -0.00624613 0)
(-0.0149941 -0.00632439 0)
(-0.0142898 -0.00640007 0)
(-0.0135778 -0.00647316 0)
(-0.0128581 -0.00654367 0)
(-0.0121308 -0.00661162 0)
(-0.0113962 -0.00667706 0)
(-0.0106544 -0.00674002 0)
(-0.00990563 -0.00680055 0)
(-0.00915013 -0.00685868 0)
(-0.00838813 -0.00691446 0)
(-0.00761989 -0.00696789 0)
(-0.00684566 -0.00701897 0)
(-0.00606567 -0.00706767 0)
(-0.00528017 -0.00711398 0)
(-0.00448939 -0.00715788 0)
(-0.00369357 -0.00719933 0)
(-0.00289292 -0.00723833 0)
(-0.00208764 -0.0072749 0)
(-0.00127797 -0.00730909 0)
(-0.00046414 -0.00734101 0)
(0.000353566 -0.00737074 0)
(0.00117472 -0.00739838 0)
(0.00199887 -0.00742404 0)
(0.00282549 -0.00744774 0)
(0.00365409 -0.00746942 0)
(0.00448422 -0.0074889 0)
(0.00531552 -0.007506 0)
(0.00614766 -0.00752052 0)
(0.00698034 -0.0075323 0)
(0.00781326 -0.00754118 0)
(0.00864612 -0.00754704 0)
(0.00947869 -0.00754977 0)
(0.0103107 -0.00754928 0)
(0.0111418 -0.00754552 0)
(0.0119718 -0.00753844 0)
(0.0128003 -0.00752801 0)
(0.013627 -0.00751419 0)
(0.0144518 -0.00749695 0)
(0.0152744 -0.00747628 0)
(0.0160944 -0.00745219 0)
(0.0169115 -0.0074247 0)
(0.0177256 -0.00739381 0)
(0.0185364 -0.00735955 0)
(0.0193436 -0.00732197 0)
(0.0201469 -0.00728114 0)
(0.0209462 -0.00723715 0)
(0.0217412 -0.00719009 0)
(0.0225317 -0.00714011 0)
(0.0233175 -0.00708739 0)
(0.0240984 -0.00703215 0)
(0.024874 -0.00697465 0)
(0.0256441 -0.00691514 0)
(0.0264083 -0.00685382 0)
(0.0271661 -0.00679082 0)
(0.0279171 -0.00672619 0)
(0.0286609 -0.0066599 0)
(0.0293971 -0.00659182 0)
(0.0301256 -0.00652187 0)
(0.0308461 -0.00644998 0)
(0.0315585 -0.00637613 0)
(0.0322626 -0.00630034 0)
(0.0329581 -0.00622264 0)
(0.0336449 -0.00614307 0)
(0.0343228 -0.00606167 0)
(0.0349917 -0.00597845 0)
(0.0356513 -0.00589344 0)
(0.0363014 -0.00580664 0)
(0.0369418 -0.00571805 0)
(0.0375724 -0.00562764 0)
(0.038193 -0.00553537 0)
(0.0388034 -0.00544121 0)
(0.0394036 -0.00534509 0)
(0.0399934 -0.00524697 0)
(0.0405727 -0.0051468 0)
(0.0411417 -0.00504456 0)
(0.0417002 -0.00494028 0)
(0.0422482 -0.00483404 0)
(0.0427857 -0.00472598 0)
(0.0433127 -0.00461636 0)
(0.0438292 -0.00450545 0)
(0.0443351 -0.00439358 0)
(0.04483 -0.00428108 0)
(0.0453139 -0.00416823 0)
(0.0457868 -0.00405546 0)
(0.0462481 -0.00394321 0)
(0.0466964 -0.00383231 0)
(0.0471334 -0.00372414 0)
(-0.0235146 -0.00577327 0)
(-0.0229229 -0.00586932 0)
(-0.0223223 -0.00596887 0)
(-0.0217111 -0.00607005 0)
(-0.0210901 -0.00617164 0)
(-0.0204596 -0.00627289 0)
(-0.0198198 -0.00637333 0)
(-0.0191708 -0.00647257 0)
(-0.018513 -0.00657027 0)
(-0.0178465 -0.00666612 0)
(-0.0171715 -0.00675986 0)
(-0.0164882 -0.00685125 0)
(-0.0157967 -0.00694015 0)
(-0.0150971 -0.00702643 0)
(-0.0143895 -0.00711002 0)
(-0.013674 -0.00719088 0)
(-0.0129508 -0.00726901 0)
(-0.0122201 -0.00734442 0)
(-0.0114819 -0.00741712 0)
(-0.0107365 -0.00748714 0)
(-0.0099841 -0.00755453 0)
(-0.00922493 -0.00761931 0)
(-0.00845922 -0.0076815 0)
(-0.0076872 -0.0077411 0)
(-0.00690911 -0.00779809 0)
(-0.00612519 -0.00785245 0)
(-0.0053357 -0.00790418 0)
(-0.00454086 -0.00795325 0)
(-0.00374092 -0.00799966 0)
(-0.00293611 -0.00804338 0)
(-0.00212666 -0.00808445 0)
(-0.00131283 -0.00812291 0)
(-0.000494901 -0.00815881 0)
(0.000326838 -0.00819216 0)
(0.00115198 -0.008223 0)
(0.00198008 -0.0082514 0)
(0.00281069 -0.00827737 0)
(0.00364333 -0.00830086 0)
(0.00447758 -0.00832175 0)
(0.00531309 -0.00833989 0)
(0.0061495 -0.00835512 0)
(0.0069865 -0.00836729 0)
(0.00782377 -0.00837628 0)
(0.00866101 -0.00838195 0)
(0.00949796 -0.00838422 0)
(0.0103343 -0.008383 0)
(0.0111698 -0.00837823 0)
(0.0120041 -0.00836987 0)
(0.012837 -0.00835786 0)
(0.0136681 -0.00834217 0)
(0.0144973 -0.00832278 0)
(0.0153242 -0.00829969 0)
(0.0161485 -0.00827291 0)
(0.0169701 -0.00824246 0)
(0.0177885 -0.00820836 0)
(0.0186036 -0.00817064 0)
(0.0194152 -0.00812938 0)
(0.0202229 -0.00808463 0)
(0.0210265 -0.00803649 0)
(0.0218258 -0.00798505 0)
(0.0226205 -0.00793045 0)
(0.0234105 -0.00787286 0)
(0.0241954 -0.00781249 0)
(0.0249749 -0.00774955 0)
(0.0257489 -0.00768423 0)
(0.0265167 -0.0076167 0)
(0.0272782 -0.0075471 0)
(0.0280328 -0.00747548 0)
(0.0287803 -0.00740184 0)
(0.0295202 -0.00732613 0)
(0.0302524 -0.00724831 0)
(0.0309767 -0.00716835 0)
(0.0316927 -0.00708624 0)
(0.0324003 -0.007002 0)
(0.0330993 -0.00691567 0)
(0.0337896 -0.00682726 0)
(0.0344708 -0.00673681 0)
(0.0351429 -0.00664435 0)
(0.0358057 -0.00654991 0)
(0.0364589 -0.0064535 0)
(0.0371024 -0.00635514 0)
(0.037736 -0.0062548 0)
(0.0383596 -0.00615247 0)
(0.0389729 -0.00604812 0)
(0.039576 -0.0059417 0)
(0.0401686 -0.00583319 0)
(0.0407509 -0.00572256 0)
(0.0413226 -0.0056098 0)
(0.0418838 -0.005495 0)
(0.0424344 -0.00537822 0)
(0.0429744 -0.00525964 0)
(0.0435038 -0.00513941 0)
(0.0440224 -0.00501783 0)
(0.0445302 -0.00489511 0)
(0.0450271 -0.0047716 0)
(0.0455128 -0.00464759 0)
(0.0459873 -0.00452346 0)
(0.0464503 -0.00439983 0)
(0.0469001 -0.0042775 0)
(0.0473386 -0.0041579 0)
(-0.023646 -0.00636122 0)
(-0.0230526 -0.00646684 0)
(-0.0224501 -0.00657616 0)
(-0.0218371 -0.00668715 0)
(-0.0212142 -0.00679843 0)
(-0.0205817 -0.00690918 0)
(-0.0199398 -0.00701889 0)
(-0.0192887 -0.00712717 0)
(-0.0186285 -0.00723368 0)
(-0.0179596 -0.00733816 0)
(-0.017282 -0.00744037 0)
(-0.016596 -0.00754012 0)
(-0.0159016 -0.00763724 0)
(-0.0151991 -0.00773161 0)
(-0.0144885 -0.00782316 0)
(-0.0137699 -0.00791184 0)
(-0.0130436 -0.00799764 0)
(-0.0123096 -0.00808054 0)
(-0.0115682 -0.00816055 0)
(-0.0108195 -0.0082377 0)
(-0.0100638 -0.00831201 0)
(-0.00930125 -0.00838348 0)
(-0.00853209 -0.00845213 0)
(-0.00775655 -0.00851794 0)
(-0.00697486 -0.0085809 0)
(-0.00618729 -0.00864098 0)
(-0.00539407 -0.00869819 0)
(-0.00459546 -0.0087525 0)
(-0.00379168 -0.00880391 0)
(-0.002983 -0.0088524 0)
(-0.00216967 -0.00889798 0)
(-0.00135197 -0.00894068 0)
(-0.000530193 -0.00898051 0)
(0.000295361 -0.00901745 0)
(0.0011243 -0.00905147 0)
(0.0019562 -0.00908261 0)
(0.00279063 -0.00911089 0)
(0.00362715 -0.00913625 0)
(0.00446535 -0.00915861 0)
(0.00530488 -0.00917785 0)
(0.00614539 -0.00919384 0)
(0.00698654 -0.00920645 0)
(0.007828 -0.00921557 0)
(0.00866947 -0.00922109 0)
(0.00951067 -0.00922291 0)
(0.0103513 -0.00922096 0)
(0.011191 -0.00921519 0)
(0.0120296 -0.00920553 0)
(0.0128668 -0.00919194 0)
(0.0137022 -0.00917439 0)
(0.0145357 -0.00915285 0)
(0.0153668 -0.00912734 0)
(0.0161954 -0.00909787 0)
(0.0170212 -0.00906447 0)
(0.0178439 -0.00902715 0)
(0.0186632 -0.00898597 0)
(0.019479 -0.00894099 0)
(0.0202909 -0.00889229 0)
(0.0210986 -0.00883994 0)
(0.021902 -0.00878406 0)
(0.0227008 -0.00872477 0)
(0.0234947 -0.00866224 0)
(0.0242834 -0.00859664 0)
(0.0250667 -0.00852815 0)
(0.0258442 -0.00845693 0)
(0.0266156 -0.00838314 0)
(0.0273806 -0.0083069 0)
(0.0281386 -0.00822828 0)
(0.0288895 -0.00814729 0)
(0.0296329 -0.00806393 0)
(0.0303685 -0.00797822 0)
(0.0310961 -0.00789015 0)
(0.0318155 -0.00779973 0)
(0.0325264 -0.00770698 0)
(0.0332286 -0.00761193 0)
(0.0339219 -0.00751461 0)
(0.0346062 -0.00741505 0)
(0.0352813 -0.00731328 0)
(0.0359469 -0.00720936 0)
(0.0366029 -0.00710329 0)
(0.0372492 -0.00699509 0)
(0.0378854 -0.00688477 0)
(0.0385116 -0.00677232 0)
(0.0391276 -0.00665772 0)
(0.0397332 -0.00654094 0)
(0.0403283 -0.00642196 0)
(0.040913 -0.00630079 0)
(0.041487 -0.00617747 0)
(0.0420505 -0.00605206 0)
(0.0426032 -0.00592464 0)
(0.0431452 -0.00579538 0)
(0.0436764 -0.0056644 0)
(0.0441967 -0.00553197 0)
(0.0447061 -0.00539828 0)
(0.0452044 -0.00526363 0)
(0.0456914 -0.00512837 0)
(0.0461671 -0.00499286 0)
(0.0466312 -0.00485772 0)
(0.0470821 -0.00472391 0)
(0.0475216 -0.00459288 0)
(-0.0237768 -0.0069508 0)
(-0.0231819 -0.00706606 0)
(-0.0225778 -0.00718521 0)
(-0.0219632 -0.00730605 0)
(-0.0213386 -0.00742707 0)
(-0.0207044 -0.0075474 0)
(-0.0200606 -0.00766647 0)
(-0.0194075 -0.00778389 0)
(-0.0187453 -0.00789936 0)
(-0.0180741 -0.00801261 0)
(-0.0173942 -0.00812343 0)
(-0.0167057 -0.00823164 0)
(-0.0160087 -0.00833707 0)
(-0.0153035 -0.00843962 0)
(-0.0145901 -0.00853921 0)
(-0.0138686 -0.00863578 0)
(-0.0131393 -0.00872931 0)
(-0.0124023 -0.00881977 0)
(-0.0116578 -0.00890716 0)
(-0.010906 -0.0089915 0)
(-0.010147 -0.00907278 0)
(-0.00938119 -0.00915101 0)
(-0.00860867 -0.00922617 0)
(-0.00782969 -0.00929826 0)
(-0.00704451 -0.00936725 0)
(-0.00625337 -0.00943313 0)
(-0.00545653 -0.00949588 0)
(-0.00465423 -0.0095555 0)
(-0.00384673 -0.00961196 0)
(-0.00303427 -0.00966524 0)
(-0.00221715 -0.00971535 0)
(-0.00139564 -0.00976229 0)
(-0.000570068 -0.00980604 0)
(0.000259276 -0.00984655 0)
(0.00109201 -0.00988374 0)
(0.00192772 -0.00991764 0)
(0.002766 -0.00994825 0)
(0.00360642 -0.00997555 0)
(0.0044486 -0.00999945 0)
(0.00529217 -0.0100199 0)
(0.00613679 -0.0100367 0)
(0.0069821 -0.0100498 0)
(0.00782778 -0.0100591 0)
(0.0086735 -0.0100645 0)
(0.00951898 -0.0100659 0)
(0.0103639 -0.0100632 0)
(0.011208 -0.0100564 0)
(0.0120509 -0.0100455 0)
(0.0128924 -0.0100303 0)
(0.0137322 -0.0100109 0)
(0.01457 -0.0099872 0)
(0.0154055 -0.00995929 0)
(0.0162384 -0.00992714 0)
(0.0170685 -0.00989078 0)
(0.0178955 -0.00985023 0)
(0.0187191 -0.00980557 0)
(0.0195391 -0.00975684 0)
(0.0203552 -0.00970412 0)
(0.0211671 -0.0096475 0)
(0.0219746 -0.00958709 0)
(0.0227774 -0.00952303 0)
(0.0235752 -0.00945545 0)
(0.0243677 -0.00938452 0)
(0.0251547 -0.00931037 0)
(0.0259359 -0.00923317 0)
(0.0267108 -0.00915305 0)
(0.0274791 -0.00907012 0)
(0.0282406 -0.00898445 0)
(0.0289949 -0.00889609 0)
(0.0297416 -0.00880508 0)
(0.0304805 -0.00871146 0)
(0.0312114 -0.00861525 0)
(0.0319339 -0.00851646 0)
(0.0326479 -0.00841513 0)
(0.0333532 -0.00831129 0)
(0.0340496 -0.00820497 0)
(0.0347368 -0.00809621 0)
(0.0354146 -0.00798507 0)
(0.036083 -0.00787158 0)
(0.0367417 -0.00775577 0)
(0.0373905 -0.00763767 0)
(0.0380293 -0.0075173 0)
(0.0386579 -0.00739465 0)
(0.0392762 -0.00726973 0)
(0.0398841 -0.00714251 0)
(0.0404815 -0.00701301 0)
(0.0410683 -0.00688124 0)
(0.0416445 -0.00674728 0)
(0.0422098 -0.00661115 0)
(0.0427644 -0.00647299 0)
(0.0433081 -0.00633287 0)
(0.0438408 -0.006191 0)
(0.0443626 -0.00604752 0)
(0.0448732 -0.00590272 0)
(0.0453726 -0.00575681 0)
(0.0458606 -0.00561017 0)
(0.0463372 -0.00546321 0)
(0.0468021 -0.00531649 0)
(0.0472538 -0.00517107 0)
(0.0476939 -0.00502855 0)
(-0.0239105 -0.00754184 0)
(-0.0233142 -0.00766679 0)
(-0.0227088 -0.00779582 0)
(-0.0220926 -0.00792656 0)
(-0.0214665 -0.00805738 0)
(-0.0208306 -0.00818735 0)
(-0.0201851 -0.00831588 0)
(-0.0195301 -0.00844257 0)
(-0.0188659 -0.00856712 0)
(-0.0181926 -0.00868928 0)
(-0.0175105 -0.00880884 0)
(-0.0168196 -0.00892563 0)
(-0.0161201 -0.00903949 0)
(-0.0154123 -0.00915031 0)
(-0.0146961 -0.00925803 0)
(-0.0139719 -0.00936257 0)
(-0.0132397 -0.00946391 0)
(-0.0124997 -0.00956201 0)
(-0.0117521 -0.00965686 0)
(-0.0109971 -0.00974846 0)
(-0.010235 -0.00983679 0)
(-0.00946586 -0.00992184 0)
(-0.00868997 -0.0100036 0)
(-0.00790754 -0.010082 0)
(-0.00711884 -0.0101571 0)
(-0.00632413 -0.0102289 0)
(-0.00552364 -0.0102973 0)
(-0.00471764 -0.0103623 0)
(-0.00390637 -0.0104238 0)
(-0.00309011 -0.0104819 0)
(-0.00226914 -0.0105366 0)
(-0.00144378 -0.0105878 0)
(-0.000614328 -0.0106354 0)
(0.000218905 -0.0106795 0)
(0.00105555 -0.0107199 0)
(0.0018952 -0.0107566 0)
(0.00273747 -0.0107896 0)
(0.00358193 -0.0108188 0)
(0.00442821 -0.0108443 0)
(0.00527596 -0.010866 0)
(0.00612482 -0.0108837 0)
(0.00697443 -0.0108973 0)
(0.00782445 -0.0109069 0)
(0.00867457 -0.0109122 0)
(0.00952448 -0.0109132 0)
(0.0103739 -0.0109098 0)
(0.0112224 -0.0109021 0)
(0.0120699 -0.0108898 0)
(0.0129159 -0.0108731 0)
(0.0137602 -0.0108518 0)
(0.0146025 -0.010826 0)
(0.0154425 -0.0107957 0)
(0.0162799 -0.0107608 0)
(0.0171145 -0.0107215 0)
(0.0179459 -0.0106777 0)
(0.0187739 -0.0106295 0)
(0.0195983 -0.010577 0)
(0.0204187 -0.0105202 0)
(0.0212349 -0.0104592 0)
(0.0220465 -0.0103942 0)
(0.0228534 -0.0103253 0)
(0.0236552 -0.0102526 0)
(0.0244517 -0.0101762 0)
(0.0252425 -0.0100963 0)
(0.0260273 -0.010013 0)
(0.0268059 -0.00992646 0)
(0.0275778 -0.00983676 0)
(0.0283427 -0.00974399 0)
(0.0291004 -0.00964824 0)
(0.0298505 -0.00954955 0)
(0.0305927 -0.00944799 0)
(0.0313268 -0.00934357 0)
(0.0320525 -0.00923635 0)
(0.0327697 -0.00912636 0)
(0.033478 -0.00901363 0)
(0.0341773 -0.00889822 0)
(0.0348674 -0.00878019 0)
(0.0355481 -0.00865958 0)
(0.0362191 -0.00853644 0)
(0.0368804 -0.00841082 0)
(0.0375317 -0.00828274 0)
(0.0381729 -0.00815224 0)
(0.0388039 -0.00801932 0)
(0.0394245 -0.00788398 0)
(0.0400346 -0.00774624 0)
(0.0406341 -0.00760613 0)
(0.0412229 -0.0074637 0)
(0.041801 -0.00731899 0)
(0.0423681 -0.00717205 0)
(0.0429243 -0.007023 0)
(0.0434695 -0.0068719 0)
(0.0440036 -0.00671897 0)
(0.0445266 -0.00656433 0)
(0.0450383 -0.00640826 0)
(0.0455386 -0.00625102 0)
(0.0460274 -0.00609287 0)
(0.0465047 -0.00593432 0)
(0.0469703 -0.00577596 0)
(0.0474225 -0.00561885 0)
(0.047863 -0.00546473 0)
(-0.0240494 -0.00813421 0)
(-0.0234518 -0.00826889 0)
(-0.022845 -0.00840785 0)
(-0.0222274 -0.00854854 0)
(-0.0215997 -0.00868924 0)
(-0.0209622 -0.00882894 0)
(-0.020315 -0.00896705 0)
(-0.0196582 -0.00910313 0)
(-0.018992 -0.0092369 0)
(-0.0183167 -0.0093681 0)
(-0.0176323 -0.00949653 0)
(-0.0169391 -0.00962202 0)
(-0.0162371 -0.00974442 0)
(-0.0155267 -0.00986363 0)
(-0.0148078 -0.00997958 0)
(-0.0140807 -0.0100922 0)
(-0.0133456 -0.0102014 0)
(-0.0126026 -0.0103073 0)
(-0.011852 -0.0104097 0)
(-0.0110938 -0.0105086 0)
(-0.0103284 -0.0106041 0)
(-0.00955589 -0.010696 0)
(-0.00877654 -0.0107845 0)
(-0.00799059 -0.0108693 0)
(-0.00719829 -0.0109506 0)
(-0.0063999 -0.0110284 0)
(-0.00559567 -0.0111024 0)
(-0.00478585 -0.0111728 0)
(-0.0039707 -0.0112395 0)
(-0.00315051 -0.0113025 0)
(-0.00232557 -0.0113617 0)
(-0.00149621 -0.0114172 0)
(-0.000662726 -0.0114688 0)
(0.000174571 -0.0115165 0)
(0.00101532 -0.0115601 0)
(0.00185911 -0.0115996 0)
(0.00270556 -0.011635 0)
(0.00355427 -0.0116663 0)
(0.00440487 -0.0116935 0)
(0.005257 -0.0117164 0)
(0.0061103 -0.0117351 0)
(0.00696441 -0.0117494 0)
(0.00781898 -0.0117592 0)
(0.00867371 -0.0117644 0)
(0.00952827 -0.0117651 0)
(0.0103824 -0.0117611 0)
(0.0112356 -0.0117523 0)
(0.0120878 -0.0117388 0)
(0.0129386 -0.0117205 0)
(0.0137876 -0.0116973 0)
(0.0146346 -0.0116694 0)
(0.0154794 -0.0116366 0)
(0.0163215 -0.011599 0)
(0.0171607 -0.0115567 0)
(0.0179968 -0.0115096 0)
(0.0188295 -0.0114579 0)
(0.0196584 -0.0114015 0)
(0.0204833 -0.0113406 0)
(0.0213039 -0.0112753 0)
(0.0221199 -0.0112056 0)
(0.0229311 -0.0111318 0)
(0.023737 -0.0110538 0)
(0.0245376 -0.0109718 0)
(0.0253324 -0.0108861 0)
(0.0261211 -0.0107966 0)
(0.0269034 -0.0107035 0)
(0.027679 -0.0106069 0)
(0.0284475 -0.010507 0)
(0.0292087 -0.0104038 0)
(0.0299623 -0.0102974 0)
(0.0307079 -0.0101878 0)
(0.0314453 -0.0100751 0)
(0.0321743 -0.00995939 0)
(0.0328947 -0.00984065 0)
(0.0336061 -0.00971896 0)
(0.0343085 -0.00959439 0)
(0.0350015 -0.009467 0)
(0.0356849 -0.00933684 0)
(0.0363587 -0.00920397 0)
(0.0370226 -0.00906844 0)
(0.0376764 -0.00893028 0)
(0.0383201 -0.00878954 0)
(0.0389534 -0.00864622 0)
(0.0395763 -0.00850036 0)
(0.0401885 -0.008352 0)
(0.04079 -0.00820118 0)
(0.0413808 -0.00804797 0)
(0.0419606 -0.00789238 0)
(0.0425294 -0.00773451 0)
(0.0430872 -0.00757442 0)
(0.0436338 -0.00741225 0)
(0.0441692 -0.00724812 0)
(0.0446933 -0.00708224 0)
(0.0452059 -0.00691478 0)
(0.0457071 -0.00674606 0)
(0.0461966 -0.00657636 0)
(0.0466745 -0.00640607 0)
(0.0471406 -0.00623597 0)
(0.0475932 -0.00606717 0)
(0.0480341 -0.00590139 0)
(-0.024195 -0.00872786 0)
(-0.0235961 -0.00887231 0)
(-0.0229879 -0.00902125 0)
(-0.0223688 -0.00917196 0)
(-0.0217396 -0.00932261 0)
(-0.0211004 -0.00947215 0)
(-0.0204515 -0.00961995 0)
(-0.0197928 -0.00976556 0)
(-0.0191247 -0.00990868 0)
(-0.0184472 -0.0100491 0)
(-0.0177606 -0.0101865 0)
(-0.017065 -0.0103208 0)
(-0.0163606 -0.0104519 0)
(-0.0156475 -0.0105796 0)
(-0.0149259 -0.0107039 0)
(-0.0141959 -0.0108247 0)
(-0.0134578 -0.010942 0)
(-0.0127118 -0.0110556 0)
(-0.0119579 -0.0111657 0)
(-0.0111965 -0.011272 0)
(-0.0104276 -0.0113747 0)
(-0.00965166 -0.0114737 0)
(-0.00886875 -0.0115689 0)
(-0.00807914 -0.0116603 0)
(-0.00728309 -0.0117479 0)
(-0.00648088 -0.0118316 0)
(-0.00567274 -0.0119114 0)
(-0.00485894 -0.0119873 0)
(-0.00403974 -0.0120592 0)
(-0.00321544 -0.0121271 0)
(-0.00238636 -0.012191 0)
(-0.00155279 -0.0122507 0)
(-0.000715068 -0.0123063 0)
(0.000126517 -0.0123576 0)
(0.000971601 -0.0124044 0)
(0.00181978 -0.0124468 0)
(0.00267067 -0.0124847 0)
(0.00352388 -0.0125182 0)
(0.00437905 -0.0125471 0)
(0.00523581 -0.0125714 0)
(0.0060938 -0.0125911 0)
(0.00695266 -0.012606 0)
(0.00781205 -0.0126162 0)
(0.00867164 -0.0126215 0)
(0.00953111 -0.0126218 0)
(0.0103901 -0.0126171 0)
(0.0112484 -0.0126074 0)
(0.0121055 -0.0125926 0)
(0.0129613 -0.0125728 0)
(0.0138153 -0.0125478 0)
(0.0146674 -0.0125176 0)
(0.0155171 -0.0124824 0)
(0.0163642 -0.0124421 0)
(0.0172084 -0.0123967 0)
(0.0180493 -0.0123463 0)
(0.0188868 -0.0122909 0)
(0.0197205 -0.0122307 0)
(0.0205501 -0.0121656 0)
(0.0213754 -0.0120958 0)
(0.022196 -0.0120214 0)
(0.0230116 -0.0119425 0)
(0.023822 -0.0118591 0)
(0.0246269 -0.0117715 0)
(0.0254258 -0.0116798 0)
(0.0262186 -0.011584 0)
(0.0270049 -0.0114843 0)
(0.0277843 -0.0113808 0)
(0.0285567 -0.0112737 0)
(0.0293216 -0.0111629 0)
(0.0300788 -0.0110487 0)
(0.030828 -0.010931 0)
(0.0315689 -0.01081 0)
(0.0323013 -0.0106857 0)
(0.0330249 -0.0105581 0)
(0.0337396 -0.0104274 0)
(0.034445 -0.0102935 0)
(0.035141 -0.0101567 0)
(0.0358274 -0.0100169 0)
(0.0365039 -0.0098742 0)
(0.0371705 -0.00972865 0)
(0.037827 -0.0095803 0)
(0.0384731 -0.0094292 0)
(0.0391088 -0.00927537 0)
(0.0397339 -0.00911889 0)
(0.0403483 -0.0089598 0)
(0.0409518 -0.00879817 0)
(0.0415444 -0.00863404 0)
(0.042126 -0.00846744 0)
(0.0426965 -0.00829848 0)
(0.0432557 -0.00812722 0)
(0.0438037 -0.00795382 0)
(0.0443403 -0.00777836 0)
(0.0448654 -0.00760109 0)
(0.045379 -0.00742214 0)
(0.0458809 -0.00724178 0)
(0.0463712 -0.00706038 0)
(0.0468497 -0.00687833 0)
(0.0473162 -0.00669636 0)
(0.0477691 -0.00651576 0)
(0.0482103 -0.00633832 0)
(-0.0243485 -0.00932279 0)
(-0.0237482 -0.00947707 0)
(-0.0231385 -0.00963603 0)
(-0.0225179 -0.00979684 0)
(-0.0218871 -0.00995754 0)
(-0.0212462 -0.010117 0)
(-0.0205955 -0.0102746 0)
(-0.0199349 -0.0104299 0)
(-0.0192647 -0.0105825 0)
(-0.0185851 -0.0107322 0)
(-0.0178962 -0.0108788 0)
(-0.0171981 -0.0110221 0)
(-0.0164911 -0.011162 0)
(-0.0157753 -0.0112984 0)
(-0.0150508 -0.0114312 0)
(-0.0143179 -0.0115603 0)
(-0.0135767 -0.0116856 0)
(-0.0128275 -0.0118072 0)
(-0.0120703 -0.011925 0)
(-0.0113054 -0.0120389 0)
(-0.0105331 -0.0121489 0)
(-0.00975347 -0.0122549 0)
(-0.00896682 -0.012357 0)
(-0.00817338 -0.012455 0)
(-0.00737342 -0.0125489 0)
(-0.00656719 -0.0126388 0)
(-0.00575496 -0.0127244 0)
(-0.00493697 -0.0128059 0)
(-0.00411352 -0.0128831 0)
(-0.00328491 -0.0129559 0)
(-0.00245145 -0.0130244 0)
(-0.00161345 -0.0130885 0)
(-0.000771234 -0.0131482 0)
(7.48966e-05 -0.0132031 0)
(0.000924581 -0.0132533 0)
(0.00177741 -0.0132986 0)
(0.00263302 -0.0133391 0)
(0.00349101 -0.0133747 0)
(0.00435104 -0.0134055 0)
(0.00521272 -0.0134312 0)
(0.0060757 -0.013452 0)
(0.0069396 -0.0134677 0)
(0.00780409 -0.0134782 0)
(0.00866883 -0.0134835 0)
(0.0095335 -0.0134835 0)
(0.0103978 -0.0134782 0)
(0.0112613 -0.0134676 0)
(0.0121237 -0.0134516 0)
(0.0129847 -0.0134302 0)
(0.0138441 -0.0134033 0)
(0.0147014 -0.013371 0)
(0.0155564 -0.0133333 0)
(0.0164087 -0.0132902 0)
(0.0172581 -0.0132417 0)
(0.0181042 -0.0131879 0)
(0.0189468 -0.0131289 0)
(0.0197855 -0.0130647 0)
(0.0206201 -0.0129954 0)
(0.0214503 -0.0129211 0)
(0.0222757 -0.0128418 0)
(0.0230961 -0.0127577 0)
(0.0239111 -0.0126689 0)
(0.0247205 -0.0125755 0)
(0.0255239 -0.0124777 0)
(0.026321 -0.0123755 0)
(0.0271114 -0.0122691 0)
(0.027895 -0.0121587 0)
(0.0286714 -0.0120442 0)
(0.0294402 -0.0119258 0)
(0.0302012 -0.0118037 0)
(0.0309541 -0.0116778 0)
(0.0316986 -0.0115483 0)
(0.0324346 -0.0114153 0)
(0.0331617 -0.0112788 0)
(0.0338797 -0.0111389 0)
(0.0345883 -0.0109958 0)
(0.0352875 -0.0108494 0)
(0.0359769 -0.0106998 0)
(0.0366563 -0.0105471 0)
(0.0373257 -0.0103915 0)
(0.0379848 -0.0102328 0)
(0.0386335 -0.0100713 0)
(0.0392716 -0.00990685 0)
(0.039899 -0.00973966 0)
(0.0405156 -0.00956974 0)
(0.0411212 -0.00939718 0)
(0.0417157 -0.00922198 0)
(0.0422991 -0.00904424 0)
(0.0428712 -0.00886403 0)
(0.0434319 -0.00868147 0)
(0.0439812 -0.00849666 0)
(0.044519 -0.00830975 0)
(0.0450452 -0.00812088 0)
(0.0455597 -0.00793029 0)
(0.0460624 -0.00773818 0)
(0.0465533 -0.00754491 0)
(0.0470323 -0.007351 0)
(0.0474993 -0.00715714 0)
(0.0479525 -0.00696458 0)
(0.0483939 -0.00677532 0)
(-0.0245105 -0.00991905 0)
(-0.0239088 -0.0100832 0)
(-0.0232976 -0.0102523 0)
(-0.0226754 -0.0104233 0)
(-0.0220429 -0.0105941 0)
(-0.0214003 -0.0107637 0)
(-0.0207477 -0.0109312 0)
(-0.0200851 -0.0110962 0)
(-0.0194128 -0.0112585 0)
(-0.0187309 -0.0114176 0)
(-0.0180395 -0.0115735 0)
(-0.0173389 -0.0117259 0)
(-0.0166292 -0.0118748 0)
(-0.0159106 -0.01202 0)
(-0.0151831 -0.0121614 0)
(-0.0144471 -0.0122989 0)
(-0.0137027 -0.0124325 0)
(-0.0129501 -0.0125622 0)
(-0.0121895 -0.0126878 0)
(-0.011421 -0.0128093 0)
(-0.010645 -0.0129267 0)
(-0.00986155 -0.0130399 0)
(-0.00907098 -0.0131489 0)
(-0.00827352 -0.0132537 0)
(-0.00746943 -0.0133541 0)
(-0.00665898 -0.0134501 0)
(-0.00584243 -0.0135417 0)
(-0.00502005 -0.0136287 0)
(-0.00419211 -0.0137113 0)
(-0.00335894 -0.0137892 0)
(-0.00252085 -0.0138624 0)
(-0.00167815 -0.013931 0)
(-0.000831173 -0.0139946 0)
(1.97777e-05 -0.0140533 0)
(0.000874345 -0.0141069 0)
(0.00173212 -0.0141552 0)
(0.00259274 -0.0141983 0)
(0.00345583 -0.0142362 0)
(0.00432102 -0.0142688 0)
(0.00518794 -0.0142961 0)
(0.00605621 -0.014318 0)
(0.00692546 -0.0143345 0)
(0.00779537 -0.0143454 0)
(0.00866557 -0.0143508 0)
(0.00953574 -0.0143506 0)
(0.0104055 -0.0143448 0)
(0.0112746 -0.0143332 0)
(0.0121426 -0.014316 0)
(0.0130092 -0.014293 0)
(0.0138741 -0.0142643 0)
(0.014737 -0.0142298 0)
(0.0155975 -0.0141896 0)
(0.0164554 -0.0141437 0)
(0.0173103 -0.0140921 0)
(0.0181618 -0.0140349 0)
(0.0190098 -0.0139722 0)
(0.0198539 -0.0139039 0)
(0.0206938 -0.0138303 0)
(0.0215291 -0.0137513 0)
(0.0223597 -0.0136671 0)
(0.023185 -0.0135777 0)
(0.024005 -0.0134834 0)
(0.0248191 -0.0133841 0)
(0.0256272 -0.0132801 0)
(0.0264288 -0.0131715 0)
(0.0272238 -0.0130583 0)
(0.0280117 -0.0129407 0)
(0.0287923 -0.0128188 0)
(0.0295652 -0.0126928 0)
(0.0303303 -0.0125626 0)
(0.0310871 -0.0124284 0)
(0.0318355 -0.0122904 0)
(0.0325752 -0.0121486 0)
(0.0333059 -0.012003 0)
(0.0340274 -0.0118539 0)
(0.0347394 -0.0117012 0)
(0.0354418 -0.0115451 0)
(0.0361344 -0.0113857 0)
(0.0368169 -0.011223 0)
(0.0374892 -0.011057 0)
(0.0381511 -0.010888 0)
(0.0388024 -0.0107158 0)
(0.0394431 -0.0105407 0)
(0.0400728 -0.0103627 0)
(0.0406916 -0.0101818 0)
(0.0412993 -0.00999818 0)
(0.0418958 -0.00981178 0)
(0.0424809 -0.00962276 0)
(0.0430547 -0.00943118 0)
(0.043617 -0.00923716 0)
(0.0441677 -0.0090408 0)
(0.0447067 -0.00884227 0)
(0.0452339 -0.00864168 0)
(0.0457493 -0.00843927 0)
(0.0462529 -0.00823532 0)
(0.0467444 -0.0080301 0)
(0.0472239 -0.00782416 0)
(0.0476914 -0.00761831 0)
(0.048145 -0.00741377 0)
(0.0485866 -0.00721256 0)
(-0.0246818 -0.0105167 0)
(-0.0240786 -0.0106908 0)
(-0.0234659 -0.0108701 0)
(-0.022842 -0.0110514 0)
(-0.0222077 -0.0112325 0)
(-0.0215633 -0.0114122 0)
(-0.0209086 -0.0115898 0)
(-0.0202439 -0.0117647 0)
(-0.0195693 -0.0119367 0)
(-0.018885 -0.0121054 0)
(-0.0181912 -0.0122707 0)
(-0.0174879 -0.0124324 0)
(-0.0167753 -0.0125904 0)
(-0.0160537 -0.0127445 0)
(-0.0153232 -0.0128947 0)
(-0.0145839 -0.0130408 0)
(-0.0138361 -0.0131828 0)
(-0.01308 -0.0133206 0)
(-0.0123157 -0.0134542 0)
(-0.0115435 -0.0135835 0)
(-0.0107636 -0.0137084 0)
(-0.00997613 -0.0138289 0)
(-0.00918143 -0.013945 0)
(-0.00837973 -0.0140565 0)
(-0.00757129 -0.0141635 0)
(-0.0067564 -0.0142658 0)
(-0.0059353 -0.0143634 0)
(-0.00510827 -0.0144562 0)
(-0.0042756 -0.0145441 0)
(-0.0034376 -0.0146272 0)
(-0.00259461 -0.0147053 0)
(-0.00174693 -0.0147783 0)
(-0.000894901 -0.0148461 0)
(-3.88369e-05 -0.0149086 0)
(0.000820915 -0.0149656 0)
(0.00168394 -0.015017 0)
(0.0025499 -0.0150628 0)
(0.0034184 -0.015103 0)
(0.00428908 -0.0151375 0)
(0.00516155 -0.0151664 0)
(0.00603544 -0.0151895 0)
(0.00691038 -0.0152068 0)
(0.00778601 -0.0152183 0)
(0.008662 -0.0152239 0)
(0.00953799 -0.0152235 0)
(0.0104136 -0.0152171 0)
(0.0112885 -0.0152046 0)
(0.0121624 -0.0151862 0)
(0.013035 -0.0151616 0)
(0.0139058 -0.015131 0)
(0.0147746 -0.0150944 0)
(0.015641 -0.0150516 0)
(0.0165046 -0.0150029 0)
(0.0173653 -0.0149482 0)
(0.0182227 -0.0148875 0)
(0.0190763 -0.014821 0)
(0.019926 -0.0147486 0)
(0.0207715 -0.0146705 0)
(0.0216123 -0.0145868 0)
(0.0224482 -0.0144975 0)
(0.0232788 -0.0144029 0)
(0.0241039 -0.0143029 0)
(0.0249231 -0.0141977 0)
(0.0257362 -0.0140874 0)
(0.0265427 -0.0139721 0)
(0.0273423 -0.013852 0)
(0.0281349 -0.0137272 0)
(0.02892 -0.0135978 0)
(0.0296973 -0.0134639 0)
(0.0304666 -0.0133256 0)
(0.0312276 -0.0131831 0)
(0.0319801 -0.0130364 0)
(0.0327236 -0.0128856 0)
(0.0334581 -0.012731 0)
(0.0341833 -0.0125724 0)
(0.0348989 -0.0124102 0)
(0.0356048 -0.0122443 0)
(0.0363006 -0.0120748 0)
(0.0369863 -0.0119019 0)
(0.0376616 -0.0117255 0)
(0.0383265 -0.0115459 0)
(0.0389806 -0.0113631 0)
(0.0396238 -0.0111771 0)
(0.0402561 -0.0109881 0)
(0.0408771 -0.0107962 0)
(0.041487 -0.0106013 0)
(0.0420855 -0.0104035 0)
(0.0426726 -0.0102031 0)
(0.0432481 -0.00999996 0)
(0.0438119 -0.00979433 0)
(0.044364 -0.00958626 0)
(0.0449042 -0.00937593 0)
(0.0454326 -0.0091635 0)
(0.045949 -0.00894912 0)
(0.0464534 -0.00873315 0)
(0.0469456 -0.00851592 0)
(0.0474257 -0.00829787 0)
(0.0478936 -0.00807982 0)
(0.0483476 -0.00786322 0)
(0.0487895 -0.00765012 0)
(-0.0248629 -0.0111159 0)
(-0.0242581 -0.0113001 0)
(-0.0236437 -0.0114897 0)
(-0.0230181 -0.0116813 0)
(-0.022382 -0.0118728 0)
(-0.0217355 -0.0120628 0)
(-0.0210787 -0.0122505 0)
(-0.0204118 -0.0124354 0)
(-0.0197348 -0.0126173 0)
(-0.019048 -0.0127957 0)
(-0.0183515 -0.0129706 0)
(-0.0176453 -0.0131418 0)
(-0.0169298 -0.013309 0)
(-0.0162051 -0.0134722 0)
(-0.0154713 -0.0136312 0)
(-0.0147286 -0.013786 0)
(-0.0139772 -0.0139365 0)
(-0.0132174 -0.0140827 0)
(-0.0124493 -0.0142244 0)
(-0.0116731 -0.0143615 0)
(-0.0108891 -0.0144941 0)
(-0.0100974 -0.0146221 0)
(-0.00929838 -0.0147453 0)
(-0.00849221 -0.0148638 0)
(-0.00767919 -0.0149774 0)
(-0.0068596 -0.0150861 0)
(-0.0060337 -0.0151898 0)
(-0.00520176 -0.0152884 0)
(-0.00436409 -0.0153819 0)
(-0.003521 -0.0154702 0)
(-0.00267281 -0.0155531 0)
(-0.00181986 -0.0156307 0)
(-0.00096248 -0.0157028 0)
(-0.000100991 -0.0157692 0)
(0.000764267 -0.0158297 0)
(0.00163288 -0.0158843 0)
(0.0025045 -0.0159328 0)
(0.00337876 -0.0159754 0)
(0.00425526 -0.016012 0)
(0.00513361 -0.0160425 0)
(0.00601345 -0.0160668 0)
(0.0068944 -0.0160851 0)
(0.00777611 -0.0160971 0)
(0.00865822 -0.0161028 0)
(0.00954036 -0.0161023 0)
(0.0104222 -0.0160953 0)
(0.0113033 -0.0160821 0)
(0.0121834 -0.0160624 0)
(0.0130622 -0.0160363 0)
(0.0139392 -0.0160038 0)
(0.0148142 -0.015965 0)
(0.0156868 -0.0159197 0)
(0.0165566 -0.0158681 0)
(0.0174234 -0.0158102 0)
(0.0182868 -0.015746 0)
(0.0191465 -0.0156756 0)
(0.0200022 -0.0155991 0)
(0.0208534 -0.0155165 0)
(0.0217 -0.0154279 0)
(0.0225416 -0.0153336 0)
(0.0233778 -0.0152334 0)
(0.0242084 -0.0151276 0)
(0.0250329 -0.0150163 0)
(0.0258512 -0.0148996 0)
(0.0266628 -0.0147777 0)
(0.0274675 -0.0146505 0)
(0.0282649 -0.0145184 0)
(0.0290548 -0.0143813 0)
(0.0298368 -0.0142395 0)
(0.0306106 -0.014093 0)
(0.031376 -0.013942 0)
(0.0321327 -0.0137865 0)
(0.0328804 -0.0136267 0)
(0.0336189 -0.0134628 0)
(0.034348 -0.0132947 0)
(0.0350674 -0.0131227 0)
(0.0357768 -0.0129469 0)
(0.0364761 -0.0127672 0)
(0.0371652 -0.0125839 0)
(0.0378437 -0.0123971 0)
(0.0385115 -0.0122068 0)
(0.0391685 -0.0120131 0)
(0.0398145 -0.0118162 0)
(0.0404493 -0.0116161 0)
(0.0410728 -0.0114128 0)
(0.041685 -0.0112065 0)
(0.0422856 -0.0109973 0)
(0.0428746 -0.0107853 0)
(0.0434519 -0.0105705 0)
(0.0440174 -0.0103531 0)
(0.0445709 -0.0101332 0)
(0.0451125 -0.00991086 0)
(0.045642 -0.0096864 0)
(0.0461595 -0.00945997 0)
(0.0466646 -0.00923182 0)
(0.0471576 -0.00900238 0)
(0.0476384 -0.00877213 0)
(0.0481068 -0.00854182 0)
(0.0485611 -0.00831296 0)
(0.0490033 -0.00808784 0)
(-0.0250543 -0.0117166 0)
(-0.0244478 -0.011911 0)
(-0.0238317 -0.012111 0)
(-0.0232041 -0.0123132 0)
(-0.022566 -0.0125151 0)
(-0.0219174 -0.0127155 0)
(-0.0212584 -0.0129135 0)
(-0.0205891 -0.0131086 0)
(-0.0199096 -0.0133004 0)
(-0.0192201 -0.0134887 0)
(-0.0185208 -0.0136733 0)
(-0.0178117 -0.013854 0)
(-0.017093 -0.0140306 0)
(-0.016365 -0.014203 0)
(-0.0156277 -0.0143711 0)
(-0.0148814 -0.0145348 0)
(-0.0141263 -0.014694 0)
(-0.0133626 -0.0148486 0)
(-0.0125904 -0.0149985 0)
(-0.0118101 -0.0151437 0)
(-0.0110218 -0.0152841 0)
(-0.0102256 -0.0154196 0)
(-0.00942202 -0.0155502 0)
(-0.00861115 -0.0156757 0)
(-0.0077933 -0.0157961 0)
(-0.00696876 -0.0159113 0)
(-0.00613779 -0.0160212 0)
(-0.00530068 -0.0161258 0)
(-0.00445772 -0.0162249 0)
(-0.00360924 -0.0163185 0)
(-0.00275557 -0.0164064 0)
(-0.00189705 -0.0164887 0)
(-0.00103399 -0.0165651 0)
(-0.000166755 -0.0166355 0)
(0.000704345 -0.0166996 0)
(0.00157889 -0.0167573 0)
(0.00245652 -0.0168087 0)
(0.00333686 -0.0168537 0)
(0.00421952 -0.0168924 0)
(0.00510411 -0.0169246 0)
(0.00599025 -0.0169503 0)
(0.00687756 -0.0169695 0)
(0.00776569 -0.0169821 0)
(0.00865426 -0.0169881 0)
(0.00954289 -0.0169874 0)
(0.0104312 -0.01698 0)
(0.0113189 -0.0169658 0)
(0.0122056 -0.016945 0)
(0.0130909 -0.0169174 0)
(0.0139745 -0.016883 0)
(0.014856 -0.0168419 0)
(0.0157351 -0.0167941 0)
(0.0166115 -0.0167396 0)
(0.0174847 -0.0166784 0)
(0.0183545 -0.0166106 0)
(0.0192205 -0.0165363 0)
(0.0200824 -0.0164556 0)
(0.0209399 -0.0163684 0)
(0.0217926 -0.016275 0)
(0.0226401 -0.0161753 0)
(0.0234822 -0.0160696 0)
(0.0243185 -0.015958 0)
(0.0251488 -0.0158404 0)
(0.0259726 -0.0157172 0)
(0.0267896 -0.0155884 0)
(0.0275995 -0.0154541 0)
(0.0284021 -0.0153145 0)
(0.029197 -0.0151696 0)
(0.0299839 -0.0150197 0)
(0.0307625 -0.0148649 0)
(0.0315326 -0.0147052 0)
(0.0322938 -0.0145408 0)
(0.0330459 -0.0143719 0)
(0.0337886 -0.0141985 0)
(0.0345218 -0.0140208 0)
(0.0352451 -0.013839 0)
(0.0359583 -0.013653 0)
(0.0366613 -0.0134631 0)
(0.0373538 -0.0132693 0)
(0.0380357 -0.0130718 0)
(0.0387067 -0.0128706 0)
(0.0393667 -0.012666 0)
(0.0400155 -0.0124579 0)
(0.0406531 -0.0122465 0)
(0.0412791 -0.0120318 0)
(0.0418937 -0.011814 0)
(0.0424965 -0.0115932 0)
(0.0430876 -0.0113694 0)
(0.0436667 -0.0111428 0)
(0.0442339 -0.0109134 0)
(0.044789 -0.0106815 0)
(0.045332 -0.0104471 0)
(0.0458627 -0.0102104 0)
(0.0463812 -0.00997181 0)
(0.0468873 -0.00973141 0)
(0.047381 -0.00948958 0)
(0.0478625 -0.00924692 0)
(0.0483315 -0.0090043 0)
(0.0487862 -0.00876317 0)
(0.0492286 -0.00852581 0)
(-0.0252562 -0.0123191 0)
(-0.024648 -0.0125238 0)
(-0.02403 -0.0127343 0)
(-0.0234005 -0.0129471 0)
(-0.0227602 -0.0131596 0)
(-0.0221093 -0.0133705 0)
(-0.021448 -0.0135789 0)
(-0.0207761 -0.0137842 0)
(-0.020094 -0.0139862 0)
(-0.0194017 -0.0141846 0)
(-0.0186994 -0.014379 0)
(-0.0179871 -0.0145694 0)
(-0.0172652 -0.0147555 0)
(-0.0165337 -0.0149373 0)
(-0.0157928 -0.0151145 0)
(-0.0150427 -0.0152872 0)
(-0.0142837 -0.0154552 0)
(-0.0135159 -0.0156185 0)
(-0.0127395 -0.0157768 0)
(-0.0119547 -0.0159302 0)
(-0.0111618 -0.0160785 0)
(-0.010361 -0.0162217 0)
(-0.00955259 -0.0163597 0)
(-0.00873675 -0.0164924 0)
(-0.00791382 -0.0166198 0)
(-0.00708406 -0.0167416 0)
(-0.00624774 -0.0168579 0)
(-0.00540516 -0.0169685 0)
(-0.00455663 -0.0170733 0)
(-0.00370247 -0.0171723 0)
(-0.00284301 -0.0172654 0)
(-0.00197859 -0.0173524 0)
(-0.00110954 -0.0174332 0)
(-0.000236213 -0.0175076 0)
(0.000641075 -0.0175755 0)
(0.00152189 -0.0176365 0)
(0.00240589 -0.0176908 0)
(0.00329267 -0.0177384 0)
(0.00418184 -0.0177792 0)
(0.00507301 -0.0178131 0)
(0.00596581 -0.0178402 0)
(0.00685984 -0.0178604 0)
(0.00775474 -0.0178737 0)
(0.00865013 -0.0178799 0)
(0.00954561 -0.0178792 0)
(0.0104408 -0.0178713 0)
(0.0113354 -0.0178564 0)
(0.012229 -0.0178343 0)
(0.0131212 -0.0178052 0)
(0.0140117 -0.0177689 0)
(0.0149001 -0.0177256 0)
(0.0157861 -0.0176751 0)
(0.0166693 -0.0176177 0)
(0.0175493 -0.0175532 0)
(0.0184258 -0.0174818 0)
(0.0192985 -0.0174035 0)
(0.020167 -0.0173184 0)
(0.021031 -0.0172266 0)
(0.02189 -0.0171281 0)
(0.0227439 -0.0170232 0)
(0.0235922 -0.0169118 0)
(0.0244346 -0.0167941 0)
(0.0252708 -0.0166703 0)
(0.0261004 -0.0165404 0)
(0.0269232 -0.0164046 0)
(0.0277387 -0.016263 0)
(0.0285467 -0.0161158 0)
(0.0293469 -0.015963 0)
(0.030139 -0.0158049 0)
(0.0309227 -0.0156416 0)
(0.0316976 -0.0154731 0)
(0.0324636 -0.0152997 0)
(0.0332203 -0.0151214 0)
(0.0339675 -0.0149385 0)
(0.0347049 -0.014751 0)
(0.0354324 -0.0145591 0)
(0.0361496 -0.0143629 0)
(0.0368565 -0.0141626 0)
(0.0375526 -0.0139582 0)
(0.038238 -0.0137498 0)
(0.0389123 -0.0135377 0)
(0.0395755 -0.0133219 0)
(0.0402274 -0.0131025 0)
(0.0408677 -0.0128796 0)
(0.0414965 -0.0126534 0)
(0.0421135 -0.0124239 0)
(0.0427186 -0.0121912 0)
(0.0433118 -0.0119555 0)
(0.0438929 -0.0117168 0)
(0.0444619 -0.0114753 0)
(0.0450186 -0.0112312 0)
(0.0455631 -0.0109846 0)
(0.0460951 -0.0107356 0)
(0.0466147 -0.0104846 0)
(0.0471218 -0.0102318 0)
(0.0476164 -0.00997746 0)
(0.0480985 -0.00972225 0)
(0.0485681 -0.00946712 0)
(0.0490233 -0.00921365 0)
(0.0494661 -0.00896404 0)
(-0.0254691 -0.0129234 0)
(-0.0248591 -0.0131384 0)
(-0.0242391 -0.0133596 0)
(-0.0236074 -0.0135831 0)
(-0.0229649 -0.0138063 0)
(-0.0223117 -0.0140278 0)
(-0.0216478 -0.0142468 0)
(-0.0209733 -0.0144626 0)
(-0.0202884 -0.0146749 0)
(-0.0195931 -0.0148834 0)
(-0.0188876 -0.0150878 0)
(-0.018172 -0.015288 0)
(-0.0174466 -0.0154839 0)
(-0.0167115 -0.0156751 0)
(-0.0159668 -0.0158618 0)
(-0.0152128 -0.0160437 0)
(-0.0144496 -0.0162206 0)
(-0.0136775 -0.0163926 0)
(-0.0128966 -0.0165595 0)
(-0.0121072 -0.0167212 0)
(-0.0113095 -0.0168777 0)
(-0.0105038 -0.0170287 0)
(-0.00969028 -0.0171743 0)
(-0.00886923 -0.0173143 0)
(-0.00804094 -0.0174487 0)
(-0.00720568 -0.0175773 0)
(-0.00636373 -0.0177 0)
(-0.00551539 -0.0178168 0)
(-0.00466098 -0.0179275 0)
(-0.00380083 -0.018032 0)
(-0.00293526 -0.0181303 0)
(-0.00206462 -0.0182221 0)
(-0.00118923 -0.0183075 0)
(-0.000309466 -0.0183861 0)
(0.000574357 -0.0184577 0)
(0.0014618 -0.0185222 0)
(0.00235251 -0.0185795 0)
(0.00324609 -0.0186296 0)
(0.00414214 -0.0186727 0)
(0.00504026 -0.0187085 0)
(0.00594008 -0.0187371 0)
(0.0068412 -0.0187583 0)
(0.00774324 -0.0187723 0)
(0.0086458 -0.0187789 0)
(0.0095485 -0.0187781 0)
(0.010451 -0.0187698 0)
(0.0113528 -0.0187541 0)
(0.0122537 -0.0187308 0)
(0.0131532 -0.0187001 0)
(0.0140509 -0.018662 0)
(0.0149466 -0.0186163 0)
(0.0158398 -0.0185632 0)
(0.0167301 -0.0185028 0)
(0.0176173 -0.0184349 0)
(0.0185009 -0.0183598 0)
(0.0193806 -0.0182775 0)
(0.020256 -0.0181879 0)
(0.0211268 -0.0180914 0)
(0.0219926 -0.0179878 0)
(0.0228531 -0.0178774 0)
(0.0237079 -0.0177603 0)
(0.0245567 -0.0176365 0)
(0.0253992 -0.0175062 0)
(0.026235 -0.0173695 0)
(0.0270637 -0.0172266 0)
(0.0278852 -0.0170776 0)
(0.0286989 -0.0169226 0)
(0.0295047 -0.0167618 0)
(0.0303023 -0.0165953 0)
(0.0310912 -0.0164233 0)
(0.0318713 -0.016246 0)
(0.0326423 -0.0160634 0)
(0.0334039 -0.0158757 0)
(0.0341557 -0.015683 0)
(0.0348977 -0.0154856 0)
(0.0356295 -0.0152835 0)
(0.036351 -0.0150769 0)
(0.0370618 -0.0148659 0)
(0.0377619 -0.0146507 0)
(0.0384509 -0.0144314 0)
(0.0391287 -0.0142082 0)
(0.0397953 -0.013981 0)
(0.0404503 -0.0137501 0)
(0.0410936 -0.0135156 0)
(0.0417252 -0.0132776 0)
(0.0423448 -0.0130362 0)
(0.0429523 -0.0127915 0)
(0.0435478 -0.0125437 0)
(0.044131 -0.0122928 0)
(0.0447019 -0.0120391 0)
(0.0452603 -0.0117826 0)
(0.0458062 -0.0115235 0)
(0.0463397 -0.0112621 0)
(0.0468605 -0.0109985 0)
(0.0473686 -0.010733 0)
(0.0478641 -0.0104661 0)
(0.048347 -0.0101983 0)
(0.0488171 -0.00993052 0)
(0.0492728 -0.00966444 0)
(0.0497159 -0.00940244 0)
(-0.0256932 -0.0135294 0)
(-0.0250812 -0.013755 0)
(-0.0244591 -0.0139869 0)
(-0.0238253 -0.0142212 0)
(-0.0231804 -0.0144553 0)
(-0.0225247 -0.0146876 0)
(-0.0218581 -0.0149173 0)
(-0.0211808 -0.0151437 0)
(-0.0204929 -0.0153665 0)
(-0.0197945 -0.0155853 0)
(-0.0190857 -0.0158 0)
(-0.0183667 -0.0160102 0)
(-0.0176376 -0.0162159 0)
(-0.0168986 -0.0164169 0)
(-0.01615 -0.0166131 0)
(-0.0153918 -0.0168043 0)
(-0.0146243 -0.0169904 0)
(-0.0138476 -0.0171713 0)
(-0.013062 -0.0173469 0)
(-0.0122678 -0.0175171 0)
(-0.0114651 -0.0176818 0)
(-0.0106542 -0.0178408 0)
(-0.0098353 -0.0179942 0)
(-0.00900877 -0.0181416 0)
(-0.00817484 -0.0182832 0)
(-0.0073338 -0.0184187 0)
(-0.00648593 -0.0185481 0)
(-0.00563154 -0.0186711 0)
(-0.00477093 -0.0187878 0)
(-0.00390446 -0.018898 0)
(-0.00303246 -0.0190015 0)
(-0.00215525 -0.0190984 0)
(-0.00127318 -0.0191883 0)
(-0.000386633 -0.0192712 0)
(0.000504078 -0.0193467 0)
(0.00139851 -0.0194147 0)
(0.0022963 -0.0194751 0)
(0.00319704 -0.0195279 0)
(0.00410034 -0.0195733 0)
(0.00500579 -0.019611 0)
(0.005913 -0.0196411 0)
(0.00682158 -0.0196636 0)
(0.00773112 -0.0196783 0)
(0.00864124 -0.0196853 0)
(0.00955154 -0.0196844 0)
(0.0104616 -0.0196757 0)
(0.0113711 -0.0196592 0)
(0.0122796 -0.0196348 0)
(0.0131868 -0.0196025 0)
(0.0140922 -0.0195624 0)
(0.0149954 -0.0195145 0)
(0.0158962 -0.0194587 0)
(0.0167941 -0.0193952 0)
(0.0176888 -0.019324 0)
(0.0185798 -0.0192451 0)
(0.0194668 -0.0191586 0)
(0.0203495 -0.0190646 0)
(0.0212275 -0.0189632 0)
(0.0221004 -0.0188545 0)
(0.0229678 -0.0187385 0)
(0.0238295 -0.0186154 0)
(0.0246851 -0.0184854 0)
(0.0255342 -0.0183485 0)
(0.0263764 -0.0182049 0)
(0.0272115 -0.0180548 0)
(0.0280391 -0.0178982 0)
(0.028859 -0.0177353 0)
(0.0296707 -0.0175663 0)
(0.0304739 -0.0173914 0)
(0.0312685 -0.0172106 0)
(0.032054 -0.0170241 0)
(0.0328302 -0.0168322 0)
(0.0335969 -0.0166349 0)
(0.0343537 -0.0164324 0)
(0.0351004 -0.0162248 0)
(0.0358368 -0.0160124 0)
(0.0365627 -0.0157952 0)
(0.0372777 -0.0155734 0)
(0.0379818 -0.0153472 0)
(0.0386747 -0.0151167 0)
(0.0393562 -0.0148821 0)
(0.0400262 -0.0146434 0)
(0.0406845 -0.0144008 0)
(0.041331 -0.0141545 0)
(0.0419655 -0.0139046 0)
(0.0425878 -0.0136511 0)
(0.0431979 -0.0133942 0)
(0.0437958 -0.0131341 0)
(0.0443811 -0.0128708 0)
(0.044954 -0.0126046 0)
(0.0455142 -0.0123356 0)
(0.0460617 -0.0120639 0)
(0.0465966 -0.0117898 0)
(0.0471187 -0.0115135 0)
(0.047628 -0.0112353 0)
(0.0481244 -0.0109556 0)
(0.0486081 -0.0106751 0)
(0.0490789 -0.0103946 0)
(0.0495351 -0.0101158 0)
(0.0499785 -0.00984128 0)
(-0.0259287 -0.0141374 0)
(-0.0253147 -0.0143736 0)
(-0.0246905 -0.0146164 0)
(-0.0240543 -0.0148617 0)
(-0.0234069 -0.0151068 0)
(-0.0227486 -0.0153501 0)
(-0.0220793 -0.0155906 0)
(-0.021399 -0.0158278 0)
(-0.020708 -0.0160612 0)
(-0.0200062 -0.0162906 0)
(-0.019294 -0.0165156 0)
(-0.0185713 -0.0167361 0)
(-0.0178384 -0.0169518 0)
(-0.0170955 -0.0171627 0)
(-0.0163426 -0.0173686 0)
(-0.01558 -0.0175693 0)
(-0.0148079 -0.0177648 0)
(-0.0140265 -0.0179548 0)
(-0.013236 -0.0181393 0)
(-0.0124366 -0.0183181 0)
(-0.0116287 -0.0184912 0)
(-0.0108123 -0.0186584 0)
(-0.00998787 -0.0188196 0)
(-0.00915557 -0.0189747 0)
(-0.00831573 -0.0191236 0)
(-0.00746861 -0.0192662 0)
(-0.00661452 -0.0194022 0)
(-0.00575376 -0.0195317 0)
(-0.00488665 -0.0196545 0)
(-0.00401354 -0.0197705 0)
(-0.00313475 -0.0198795 0)
(-0.00225063 -0.0199814 0)
(-0.00136154 -0.0200761 0)
(-0.000467844 -0.0201633 0)
(0.000430114 -0.0202428 0)
(0.0013319 -0.0203144 0)
(0.00223715 -0.020378 0)
(0.00314544 -0.0204337 0)
(0.00405636 -0.0204814 0)
(0.00496952 -0.0205211 0)
(0.00588451 -0.0205529 0)
(0.00680092 -0.0205765 0)
(0.00771837 -0.020592 0)
(0.00863644 -0.0205994 0)
(0.00955473 -0.0205986 0)
(0.0104728 -0.0205895 0)
(0.0113903 -0.0205722 0)
(0.0123069 -0.0205466 0)
(0.013222 -0.0205128 0)
(0.0141354 -0.0204707 0)
(0.0150467 -0.0204205 0)
(0.0159554 -0.020362 0)
(0.0168613 -0.0202954 0)
(0.0177638 -0.0202207 0)
(0.0186626 -0.020138 0)
(0.0195573 -0.0200473 0)
(0.0204477 -0.0199487 0)
(0.0213332 -0.0198423 0)
(0.0222135 -0.0197283 0)
(0.0230883 -0.0196067 0)
(0.0239572 -0.0194776 0)
(0.0248198 -0.0193412 0)
(0.0256758 -0.0191976 0)
(0.0265249 -0.0190469 0)
(0.0273666 -0.0188894 0)
(0.0282008 -0.0187251 0)
(0.029027 -0.0185542 0)
(0.0298449 -0.0183768 0)
(0.0306542 -0.0181932 0)
(0.0314546 -0.0180035 0)
(0.0322458 -0.0178078 0)
(0.0330275 -0.0176063 0)
(0.0337995 -0.0173992 0)
(0.0345615 -0.0171866 0)
(0.0353133 -0.0169688 0)
(0.0360545 -0.0167458 0)
(0.0367849 -0.0165179 0)
(0.0375044 -0.0162852 0)
(0.0382127 -0.0160478 0)
(0.0389097 -0.015806 0)
(0.0395951 -0.0155597 0)
(0.0402687 -0.0153093 0)
(0.0409305 -0.0150549 0)
(0.0415802 -0.0147965 0)
(0.0422177 -0.0145344 0)
(0.042843 -0.0142687 0)
(0.0434557 -0.0139994 0)
(0.044056 -0.0137268 0)
(0.0446437 -0.0134509 0)
(0.0452185 -0.0131721 0)
(0.0457807 -0.0128903 0)
(0.0463299 -0.0126059 0)
(0.0468663 -0.0123189 0)
(0.0473897 -0.0120297 0)
(0.0479002 -0.0117386 0)
(0.0483976 -0.011446 0)
(0.048882 -0.0111525 0)
(0.0493535 -0.0108591 0)
(0.0498102 -0.0105677 0)
(0.050254 -0.0102806 0)
(-0.0261758 -0.0147474 0)
(-0.0255597 -0.0149944 0)
(-0.0249332 -0.0152481 0)
(-0.0242946 -0.0155046 0)
(-0.0236447 -0.0157609 0)
(-0.0229837 -0.0160153 0)
(-0.0223114 -0.0162668 0)
(-0.0216281 -0.016515 0)
(-0.0209338 -0.0167592 0)
(-0.0202286 -0.0169993 0)
(-0.0195127 -0.0172349 0)
(-0.0187862 -0.0174658 0)
(-0.0180493 -0.0176918 0)
(-0.0173021 -0.0179128 0)
(-0.0165449 -0.0181286 0)
(-0.0157777 -0.018339 0)
(-0.0150008 -0.0185439 0)
(-0.0142144 -0.0187432 0)
(-0.0134187 -0.0189368 0)
(-0.0126141 -0.0191244 0)
(-0.0118006 -0.0193061 0)
(-0.0109785 -0.0194816 0)
(-0.0101482 -0.0196509 0)
(-0.00930984 -0.0198138 0)
(-0.00846378 -0.0199702 0)
(-0.0076103 -0.0201199 0)
(-0.00674967 -0.0202629 0)
(-0.00588223 -0.0203989 0)
(-0.00500829 -0.020528 0)
(-0.0041282 -0.0206498 0)
(-0.00324229 -0.0207644 0)
(-0.00235092 -0.0208715 0)
(-0.00145444 -0.0209711 0)
(-0.000553234 -0.0210628 0)
(0.000352346 -0.0211464 0)
(0.00126187 -0.0212217 0)
(0.00217496 -0.0212886 0)
(0.00309118 -0.0213472 0)
(0.00401012 -0.0213974 0)
(0.00493137 -0.0214392 0)
(0.00585453 -0.0214726 0)
(0.00677918 -0.0214975 0)
(0.00770493 -0.0215138 0)
(0.00863135 -0.0215216 0)
(0.00955802 -0.0215208 0)
(0.0104845 -0.0215114 0)
(0.0114105 -0.0214934 0)
(0.0123354 -0.0214666 0)
(0.013259 -0.0214313 0)
(0.0141808 -0.0213872 0)
(0.0151005 -0.0213346 0)
(0.0160175 -0.0212734 0)
(0.0169316 -0.0212037 0)
(0.0178424 -0.0211254 0)
(0.0187494 -0.0210388 0)
(0.0196522 -0.0209438 0)
(0.0205505 -0.0208405 0)
(0.021444 -0.0207291 0)
(0.0223321 -0.0206096 0)
(0.0232146 -0.0204822 0)
(0.024091 -0.020347 0)
(0.0249611 -0.0202041 0)
(0.0258244 -0.0200537 0)
(0.0266806 -0.0198958 0)
(0.0275293 -0.0197307 0)
(0.0283703 -0.0195585 0)
(0.0292031 -0.0193794 0)
(0.0300275 -0.0191936 0)
(0.0308432 -0.0190011 0)
(0.0316497 -0.0188022 0)
(0.032447 -0.0185971 0)
(0.0332345 -0.0183859 0)
(0.0340121 -0.0181689 0)
(0.0347795 -0.0179461 0)
(0.0355365 -0.0177178 0)
(0.0362827 -0.0174841 0)
(0.037018 -0.0172452 0)
(0.0377422 -0.0170014 0)
(0.0384549 -0.0167526 0)
(0.0391561 -0.0164992 0)
(0.0398455 -0.0162413 0)
(0.040523 -0.0159789 0)
(0.0411884 -0.0157124 0)
(0.0418415 -0.0154419 0)
(0.0424822 -0.0151674 0)
(0.0431105 -0.0148891 0)
(0.043726 -0.0146073 0)
(0.0443289 -0.0143219 0)
(0.0449189 -0.0140333 0)
(0.0454959 -0.0137416 0)
(0.04606 -0.0134469 0)
(0.0466111 -0.0131494 0)
(0.047149 -0.0128494 0)
(0.0476738 -0.0125471 0)
(0.0481854 -0.0122429 0)
(0.0486839 -0.0119373 0)
(0.0491692 -0.0116308 0)
(0.0496414 -0.0113243 0)
(0.0500985 -0.0110199 0)
(0.0505427 -0.0107201 0)
(-0.0264347 -0.0153595 0)
(-0.0258165 -0.0156174 0)
(-0.0251877 -0.0158823 0)
(-0.0245466 -0.0161501 0)
(-0.023894 -0.0164177 0)
(-0.0232301 -0.0166834 0)
(-0.0225548 -0.0169461 0)
(-0.0218683 -0.0172054 0)
(-0.0211705 -0.0174607 0)
(-0.0204618 -0.0177117 0)
(-0.0197421 -0.017958 0)
(-0.0190116 -0.0181996 0)
(-0.0182705 -0.0184361 0)
(-0.0175189 -0.0186673 0)
(-0.0167571 -0.0188932 0)
(-0.0159851 -0.0191135 0)
(-0.0152031 -0.0193281 0)
(-0.0144116 -0.0195369 0)
(-0.0136105 -0.0197397 0)
(-0.0128002 -0.0199363 0)
(-0.0119809 -0.0201268 0)
(-0.0111529 -0.0203108 0)
(-0.0103164 -0.0204883 0)
(-0.00947178 -0.0206592 0)
(-0.00861921 -0.0208232 0)
(-0.00775904 -0.0209803 0)
(-0.00689157 -0.0211303 0)
(-0.00601712 -0.0212731 0)
(-0.00513602 -0.0214085 0)
(-0.00424861 -0.0215364 0)
(-0.00335524 -0.0216567 0)
(-0.00245626 -0.0217691 0)
(-0.00155203 -0.0218737 0)
(-0.000642943 -0.02197 0)
(0.000270639 -0.0220579 0)
(0.00118829 -0.022137 0)
(0.00210961 -0.0222073 0)
(0.00303416 -0.0222689 0)
(0.00396152 -0.0223217 0)
(0.00489127 -0.0223656 0)
(0.00582301 -0.0224007 0)
(0.00675632 -0.0224269 0)
(0.00769077 -0.0224442 0)
(0.00862594 -0.0224525 0)
(0.0095614 -0.0224517 0)
(0.0104967 -0.022442 0)
(0.0114315 -0.0224232 0)
(0.0123653 -0.0223953 0)
(0.0132977 -0.0223583 0)
(0.0142283 -0.0223123 0)
(0.0151567 -0.0222573 0)
(0.0160825 -0.0221933 0)
(0.0170053 -0.0221204 0)
(0.0179247 -0.0220385 0)
(0.0188403 -0.0219479 0)
(0.0197516 -0.0218485 0)
(0.0206583 -0.0217405 0)
(0.02156 -0.0216239 0)
(0.0224563 -0.0214989 0)
(0.0233468 -0.0213656 0)
(0.0242312 -0.0212241 0)
(0.025109 -0.0210746 0)
(0.02598 -0.0209171 0)
(0.0268436 -0.020752 0)
(0.0276997 -0.0205792 0)
(0.0285479 -0.0203989 0)
(0.0293877 -0.0202115 0)
(0.0302189 -0.0200169 0)
(0.0310412 -0.0198154 0)
(0.0318542 -0.0196072 0)
(0.0326577 -0.0193925 0)
(0.0334513 -0.0191714 0)
(0.0342348 -0.0189442 0)
(0.0350078 -0.018711 0)
(0.0357703 -0.018472 0)
(0.0365218 -0.0182274 0)
(0.0372622 -0.0179774 0)
(0.0379911 -0.0177222 0)
(0.0387086 -0.0174618 0)
(0.0394142 -0.0171966 0)
(0.0401078 -0.0169267 0)
(0.0407893 -0.0166523 0)
(0.0414584 -0.0163735 0)
(0.0421151 -0.0160905 0)
(0.0427592 -0.0158034 0)
(0.0433905 -0.0155125 0)
(0.044009 -0.0152178 0)
(0.0446146 -0.0149196 0)
(0.045207 -0.014618 0)
(0.0457864 -0.0143132 0)
(0.0463525 -0.0140054 0)
(0.0469053 -0.0136947 0)
(0.0474449 -0.0133815 0)
(0.0479712 -0.013066 0)
(0.048484 -0.0127485 0)
(0.0489834 -0.0124295 0)
(0.0494697 -0.0121098 0)
(0.0499426 -0.0117903 0)
(0.0504004 -0.0114728 0)
(0.0508449 -0.0111599 0)
(-0.0267057 -0.0159737 0)
(-0.0260852 -0.0162427 0)
(-0.025454 -0.016519 0)
(-0.0248103 -0.0167982 0)
(-0.024155 -0.0170773 0)
(-0.0234881 -0.0173545 0)
(-0.0228097 -0.0176287 0)
(-0.0221198 -0.0178993 0)
(-0.0214185 -0.0181658 0)
(-0.020706 -0.0184279 0)
(-0.0199824 -0.0186852 0)
(-0.0192477 -0.0189375 0)
(-0.0185022 -0.0191847 0)
(-0.0177461 -0.0194264 0)
(-0.0169794 -0.0196626 0)
(-0.0162024 -0.019893 0)
(-0.0154152 -0.0201175 0)
(-0.0146182 -0.0203359 0)
(-0.0138115 -0.0205482 0)
(-0.0129954 -0.0207541 0)
(-0.0121701 -0.0209534 0)
(-0.0113358 -0.0211462 0)
(-0.0104929 -0.0213321 0)
(-0.00964159 -0.0215111 0)
(-0.00878222 -0.021683 0)
(-0.00791505 -0.0218476 0)
(-0.00704041 -0.0220049 0)
(-0.00615862 -0.0221545 0)
(-0.00527002 -0.0222965 0)
(-0.00437496 -0.0224306 0)
(-0.00347376 -0.0225567 0)
(-0.0025668 -0.0226747 0)
(-0.00165446 -0.0227843 0)
(-0.000737117 -0.0228854 0)
(0.000184851 -0.0229777 0)
(0.00111102 -0.0230607 0)
(0.00204097 -0.0231346 0)
(0.00297427 -0.0231992 0)
(0.00391047 -0.0232547 0)
(0.00484915 -0.0233008 0)
(0.00578989 -0.0233377 0)
(0.00673227 -0.0233653 0)
(0.00767584 -0.0233835 0)
(0.00862017 -0.0233923 0)
(0.00956482 -0.0233917 0)
(0.0105094 -0.0233816 0)
(0.0114534 -0.0233621 0)
(0.0123964 -0.023333 0)
(0.0133381 -0.0232945 0)
(0.0142779 -0.0232465 0)
(0.0152156 -0.023189 0)
(0.0161505 -0.0231222 0)
(0.0170824 -0.023046 0)
(0.0180108 -0.0229605 0)
(0.0189353 -0.0228657 0)
(0.0198555 -0.0227619 0)
(0.020771 -0.022649 0)
(0.0216814 -0.0225272 0)
(0.0225862 -0.0223965 0)
(0.0234852 -0.0222572 0)
(0.0243778 -0.0221093 0)
(0.0252638 -0.021953 0)
(0.0261427 -0.0217884 0)
(0.0270143 -0.0216157 0)
(0.027878 -0.021435 0)
(0.0287337 -0.0212466 0)
(0.0295808 -0.0210506 0)
(0.0304192 -0.0208471 0)
(0.0312484 -0.0206364 0)
(0.0320682 -0.0204188 0)
(0.0328782 -0.0201942 0)
(0.0336781 -0.0199631 0)
(0.0344678 -0.0197254 0)
(0.0352468 -0.0194816 0)
(0.0360149 -0.0192317 0)
(0.0367719 -0.018976 0)
(0.0375176 -0.0187146 0)
(0.0382517 -0.0184478 0)
(0.0389739 -0.0181757 0)
(0.0396842 -0.0178985 0)
(0.0403822 -0.0176164 0)
(0.0410679 -0.0173296 0)
(0.041741 -0.0170383 0)
(0.0424014 -0.0167427 0)
(0.0430489 -0.0164428 0)
(0.0436835 -0.0161389 0)
(0.044305 -0.0158312 0)
(0.0449134 -0.0155199 0)
(0.0455083 -0.0152051 0)
(0.04609 -0.014887 0)
(0.0466583 -0.0145658 0)
(0.0472131 -0.0142418 0)
(0.0477543 -0.0139151 0)
(0.048282 -0.0135862 0)
(0.0487962 -0.0132553 0)
(0.0492967 -0.0129228 0)
(0.0497838 -0.0125896 0)
(0.0502574 -0.0122567 0)
(0.0507157 -0.011926 0)
(0.0511607 -0.0116001 0)
(-0.0269889 -0.0165903 0)
(-0.026366 -0.0168705 0)
(-0.0257324 -0.0171582 0)
(-0.025086 -0.0174491 0)
(-0.0244278 -0.0177398 0)
(-0.0237579 -0.0180287 0)
(-0.0230763 -0.0183145 0)
(-0.0223829 -0.0185966 0)
(-0.021678 -0.0188746 0)
(-0.0209616 -0.019148 0)
(-0.0202338 -0.0194165 0)
(-0.0194948 -0.0196799 0)
(-0.0187447 -0.0199379 0)
(-0.0179838 -0.0201903 0)
(-0.0172121 -0.0204369 0)
(-0.0164298 -0.0206777 0)
(-0.0156372 -0.0209123 0)
(-0.0148345 -0.0211406 0)
(-0.014022 -0.0213625 0)
(-0.0131998 -0.0215778 0)
(-0.0123681 -0.0217864 0)
(-0.0115274 -0.0219881 0)
(-0.0106777 -0.0221826 0)
(-0.00981951 -0.0223699 0)
(-0.00895301 -0.0225499 0)
(-0.00807854 -0.0227222 0)
(-0.0071964 -0.0228869 0)
(-0.00630694 -0.0230436 0)
(-0.00541049 -0.0231923 0)
(-0.0045074 -0.0233328 0)
(-0.00359802 -0.0234649 0)
(-0.00268272 -0.0235885 0)
(-0.00176188 -0.0237034 0)
(-0.000835898 -0.0238094 0)
(9.4846e-05 -0.0239061 0)
(0.00102994 -0.0239933 0)
(0.00196894 -0.0240708 0)
(0.00291139 -0.0241386 0)
(0.00385686 -0.0241968 0)
(0.00480489 -0.0242453 0)
(0.00575507 -0.0242841 0)
(0.00670694 -0.0243131 0)
(0.00766006 -0.0243323 0)
(0.00861398 -0.0243417 0)
(0.00956827 -0.0243412 0)
(0.0105225 -0.0243308 0)
(0.0114762 -0.0243105 0)
(0.0124289 -0.0242802 0)
(0.0133803 -0.0242401 0)
(0.0143297 -0.02419 0)
(0.015277 -0.0241301 0)
(0.0162215 -0.0240604 0)
(0.0171629 -0.0239809 0)
(0.0181008 -0.0238916 0)
(0.0190347 -0.0237927 0)
(0.0199641 -0.0236843 0)
(0.0208888 -0.0235664 0)
(0.0218082 -0.0234392 0)
(0.022722 -0.0233028 0)
(0.0236297 -0.0231573 0)
(0.0245311 -0.0230029 0)
(0.0254256 -0.0228396 0)
(0.0263129 -0.0226677 0)
(0.0271926 -0.0224873 0)
(0.0280644 -0.0222986 0)
(0.0289279 -0.0221018 0)
(0.0297827 -0.0218971 0)
(0.0306285 -0.0216845 0)
(0.031465 -0.0214645 0)
(0.0322919 -0.0212371 0)
(0.0331087 -0.0210025 0)
(0.0339153 -0.020761 0)
(0.0347113 -0.0205128 0)
(0.0354965 -0.0202581 0)
(0.0362707 -0.0199971 0)
(0.0370334 -0.01973 0)
(0.0377846 -0.0194571 0)
(0.038524 -0.0191784 0)
(0.0392513 -0.0188943 0)
(0.0399664 -0.0186049 0)
(0.040669 -0.0183104 0)
(0.041359 -0.0180111 0)
(0.0420362 -0.017707 0)
(0.0427005 -0.0173984 0)
(0.0433516 -0.0170855 0)
(0.0439896 -0.0167686 0)
(0.0446142 -0.0164476 0)
(0.0452255 -0.0161229 0)
(0.0458232 -0.0157947 0)
(0.0464073 -0.0154631 0)
(0.0469777 -0.0151283 0)
(0.0475344 -0.0147907 0)
(0.0480774 -0.0144505 0)
(0.0486066 -0.0141078 0)
(0.049122 -0.0137632 0)
(0.0496237 -0.0134172 0)
(0.0501117 -0.0130704 0)
(0.050586 -0.012724 0)
(0.0510448 -0.0123798 0)
(0.0514902 -0.0120407 0)
(-0.0272844 -0.0172091 0)
(-0.0266592 -0.0175006 0)
(-0.026023 -0.0178 0)
(-0.0253739 -0.0181027 0)
(-0.0247128 -0.0184054 0)
(-0.0240397 -0.0187061 0)
(-0.0233547 -0.0190037 0)
(-0.0226578 -0.0192976 0)
(-0.0219491 -0.0195872 0)
(-0.0212286 -0.0198721 0)
(-0.0204966 -0.020152 0)
(-0.0197531 -0.0204267 0)
(-0.0189982 -0.0206958 0)
(-0.0182323 -0.0209591 0)
(-0.0174554 -0.0212165 0)
(-0.0166677 -0.0214678 0)
(-0.0158694 -0.0217128 0)
(-0.0150609 -0.0219512 0)
(-0.0142422 -0.022183 0)
(-0.0134136 -0.022408 0)
(-0.0125754 -0.0226259 0)
(-0.0117279 -0.0228367 0)
(-0.0108712 -0.0230401 0)
(-0.0100058 -0.0232359 0)
(-0.00913183 -0.0234241 0)
(-0.00824973 -0.0236044 0)
(-0.00735977 -0.0237766 0)
(-0.00646229 -0.0239407 0)
(-0.00555764 -0.0240963 0)
(-0.00464615 -0.0242433 0)
(-0.00372821 -0.0243816 0)
(-0.00280417 -0.024511 0)
(-0.00187445 -0.0246313 0)
(-0.000939428 -0.0247423 0)
(5.03953e-07 -0.0248437 0)
(0.00094494 -0.024935 0)
(0.0018934 -0.0250162 0)
(0.00284544 -0.0250873 0)
(0.0038006 -0.0251484 0)
(0.00475842 -0.0251993 0)
(0.00571846 -0.02524 0)
(0.00668026 -0.0252705 0)
(0.00764338 -0.0252908 0)
(0.00860735 -0.0253008 0)
(0.00957172 -0.0253005 0)
(0.010536 -0.0252898 0)
(0.0114999 -0.0252688 0)
(0.0124627 -0.0252374 0)
(0.0134242 -0.0251956 0)
(0.0143838 -0.0251435 0)
(0.015341 -0.025081 0)
(0.0162956 -0.0250083 0)
(0.0172469 -0.0249254 0)
(0.0181947 -0.0248324 0)
(0.0191383 -0.0247293 0)
(0.0200775 -0.0246162 0)
(0.0210118 -0.0244932 0)
(0.0219407 -0.0243605 0)
(0.0228638 -0.0242182 0)
(0.0237807 -0.0240664 0)
(0.0246911 -0.0239052 0)
(0.0255945 -0.0237349 0)
(0.0264906 -0.0235555 0)
(0.0273789 -0.0233672 0)
(0.0282591 -0.0231703 0)
(0.0291308 -0.0229649 0)
(0.0299936 -0.0227512 0)
(0.0308472 -0.0225295 0)
(0.0316913 -0.0222998 0)
(0.0325255 -0.0220625 0)
(0.0333495 -0.0218177 0)
(0.034163 -0.0215657 0)
(0.0349658 -0.0213067 0)
(0.0357574 -0.0210409 0)
(0.0365378 -0.0207685 0)
(0.0373065 -0.0204898 0)
(0.0380635 -0.020205 0)
(0.0388084 -0.0199143 0)
(0.0395409 -0.0196179 0)
(0.040261 -0.019316 0)
(0.0409684 -0.0190089 0)
(0.0416629 -0.0186967 0)
(0.0423444 -0.0183796 0)
(0.0430127 -0.018058 0)
(0.0436676 -0.0177318 0)
(0.0443091 -0.0174014 0)
(0.044937 -0.017067 0)
(0.0455512 -0.0167287 0)
(0.0461516 -0.0163868 0)
(0.0467383 -0.0160415 0)
(0.0473109 -0.0156929 0)
(0.0478696 -0.0153414 0)
(0.0484144 -0.0149873 0)
(0.0489452 -0.0146309 0)
(0.0494619 -0.0142724 0)
(0.0499646 -0.0139124 0)
(0.0504535 -0.0135519 0)
(0.0509286 -0.0131917 0)
(0.051388 -0.012834 0)
(0.0518337 -0.0124816 0)
(-0.0275924 -0.0178302 0)
(-0.0269647 -0.0181333 0)
(-0.026326 -0.0184445 0)
(-0.0256741 -0.0187592 0)
(-0.02501 -0.0190739 0)
(-0.0243338 -0.0193867 0)
(-0.0236454 -0.0196964 0)
(-0.0229448 -0.0200023 0)
(-0.0222321 -0.0203038 0)
(-0.0215075 -0.0206004 0)
(-0.020771 -0.020892 0)
(-0.0200228 -0.0211781 0)
(-0.019263 -0.0214586 0)
(-0.0184919 -0.0217331 0)
(-0.0177096 -0.0220015 0)
(-0.0169163 -0.0222636 0)
(-0.0161121 -0.0225191 0)
(-0.0152974 -0.0227679 0)
(-0.0144723 -0.0230099 0)
(-0.0136372 -0.0232447 0)
(-0.0127921 -0.0234722 0)
(-0.0119375 -0.0236923 0)
(-0.0110735 -0.0239048 0)
(-0.0102006 -0.0241094 0)
(-0.0093189 -0.024306 0)
(-0.00842884 -0.0244944 0)
(-0.00753072 -0.0246745 0)
(-0.00662487 -0.0248459 0)
(-0.00571164 -0.0250086 0)
(-0.00479139 -0.0251624 0)
(-0.0038645 -0.0253071 0)
(-0.00293135 -0.0254424 0)
(-0.00199234 -0.0255683 0)
(-0.00104786 -0.0256845 0)
(-9.83233e-05 -0.0257907 0)
(0.00085588 -0.0258863 0)
(0.00181424 -0.0259714 0)
(0.0027763 -0.0260459 0)
(0.00374158 -0.0261099 0)
(0.00470963 -0.0261633 0)
(0.00567999 -0.026206 0)
(0.00665219 -0.0262381 0)
(0.00762575 -0.0262595 0)
(0.00860022 -0.0262702 0)
(0.00957512 -0.02627 0)
(0.01055 -0.0262591 0)
(0.0115244 -0.0262374 0)
(0.0124978 -0.0262048 0)
(0.0134699 -0.0261614 0)
(0.01444 -0.0261071 0)
(0.0154078 -0.0260422 0)
(0.0163728 -0.0259665 0)
(0.0173345 -0.0258801 0)
(0.0182926 -0.0257832 0)
(0.0192465 -0.0256757 0)
(0.0201958 -0.0255579 0)
(0.0211401 -0.0254298 0)
(0.0220788 -0.0252914 0)
(0.0230117 -0.0251431 0)
(0.0239383 -0.0249848 0)
(0.0248582 -0.0248167 0)
(0.0257709 -0.0246391 0)
(0.0266761 -0.0244521 0)
(0.0275733 -0.0242558 0)
(0.0284623 -0.0240505 0)
(0.0293425 -0.0238363 0)
(0.0302137 -0.0236135 0)
(0.0310754 -0.0233822 0)
(0.0319274 -0.0231428 0)
(0.0327693 -0.0228954 0)
(0.0336008 -0.0226401 0)
(0.0344216 -0.0223774 0)
(0.0352313 -0.0221073 0)
(0.0360297 -0.0218302 0)
(0.0368165 -0.0215462 0)
(0.0375915 -0.0212557 0)
(0.0383545 -0.0209588 0)
(0.0391051 -0.0206557 0)
(0.0398431 -0.0203468 0)
(0.0405684 -0.0200322 0)
(0.0412807 -0.0197122 0)
(0.0419799 -0.0193869 0)
(0.0426659 -0.0190566 0)
(0.0433383 -0.0187215 0)
(0.0439971 -0.0183819 0)
(0.0446422 -0.0180378 0)
(0.0452735 -0.0176896 0)
(0.0458908 -0.0173375 0)
(0.0464941 -0.0169815 0)
(0.0470832 -0.0166222 0)
(0.0476583 -0.0162597 0)
(0.048219 -0.0158941 0)
(0.0487655 -0.0155258 0)
(0.0492979 -0.0151552 0)
(0.049816 -0.0147826 0)
(0.0503198 -0.0144087 0)
(0.0508096 -0.014034 0)
(0.0512853 -0.0136599 0)
(0.0517451 -0.0132886 0)
(0.0521911 -0.0129228 0)
(-0.027913 -0.0184538 0)
(-0.0272829 -0.0187684 0)
(-0.0266415 -0.0190917 0)
(-0.0259869 -0.0194186 0)
(-0.0253198 -0.0197456 0)
(-0.0246403 -0.0200708 0)
(-0.0239483 -0.0203927 0)
(-0.0232439 -0.0207108 0)
(-0.0225272 -0.0210244 0)
(-0.0217983 -0.0213331 0)
(-0.0210572 -0.0216365 0)
(-0.0203042 -0.0219344 0)
(-0.0195394 -0.0222265 0)
(-0.0187629 -0.0225125 0)
(-0.017975 -0.0227921 0)
(-0.0171757 -0.0230653 0)
(-0.0163655 -0.0233316 0)
(-0.0155444 -0.0235911 0)
(-0.0147127 -0.0238433 0)
(-0.0138707 -0.0240883 0)
(-0.0130185 -0.0243257 0)
(-0.0121565 -0.0245553 0)
(-0.0112849 -0.024777 0)
(-0.0104042 -0.0249906 0)
(-0.00951443 -0.0251959 0)
(-0.00861609 -0.0253926 0)
(-0.00770945 -0.0255807 0)
(-0.00679487 -0.0257598 0)
(-0.0058727 -0.0259298 0)
(-0.00494332 -0.0260905 0)
(-0.00400711 -0.0262417 0)
(-0.00306444 -0.0263832 0)
(-0.00211573 -0.0265149 0)
(-0.00116138 -0.0266364 0)
(-0.000201804 -0.0267474 0)
(0.000762597 -0.0268476 0)
(0.00173129 -0.0269367 0)
(0.00270382 -0.0270148 0)
(0.0036797 -0.0270818 0)
(0.00465845 -0.0271378 0)
(0.00563959 -0.0271827 0)
(0.00662264 -0.0272164 0)
(0.00760712 -0.027239 0)
(0.00859254 -0.0272503 0)
(0.00957845 -0.0272504 0)
(0.0105644 -0.0272392 0)
(0.0115498 -0.0272167 0)
(0.0125343 -0.0271829 0)
(0.0135174 -0.0271379 0)
(0.0144985 -0.0270815 0)
(0.0154773 -0.027014 0)
(0.0164532 -0.0269352 0)
(0.0174258 -0.0268454 0)
(0.0183946 -0.0267445 0)
(0.0193592 -0.0266326 0)
(0.0203191 -0.0265099 0)
(0.0212738 -0.0263764 0)
(0.0222229 -0.0262324 0)
(0.023166 -0.0260778 0)
(0.0241026 -0.0259129 0)
(0.0250323 -0.0257378 0)
(0.0259548 -0.0255528 0)
(0.0268695 -0.0253579 0)
(0.0277761 -0.0251534 0)
(0.0286741 -0.0249395 0)
(0.0295633 -0.0247163 0)
(0.0304432 -0.0244842 0)
(0.0313134 -0.0242432 0)
(0.0321737 -0.0239938 0)
(0.0330236 -0.0237359 0)
(0.0338629 -0.02347 0)
(0.0346911 -0.0231963 0)
(0.0355081 -0.0229149 0)
(0.0363136 -0.0226262 0)
(0.0371072 -0.0223304 0)
(0.0378887 -0.0220278 0)
(0.0386578 -0.0217185 0)
(0.0394144 -0.0214029 0)
(0.0401581 -0.0210812 0)
(0.0408888 -0.0207536 0)
(0.0416063 -0.0204204 0)
(0.0423104 -0.0200817 0)
(0.0430009 -0.0197379 0)
(0.0436776 -0.0193892 0)
(0.0443405 -0.0190357 0)
(0.0449893 -0.0186778 0)
(0.045624 -0.0183155 0)
(0.0462446 -0.0179493 0)
(0.0468508 -0.0175792 0)
(0.0474425 -0.0172055 0)
(0.0480199 -0.0168286 0)
(0.0485829 -0.0164487 0)
(0.0491313 -0.0160661 0)
(0.0496651 -0.015681 0)
(0.0501844 -0.0152941 0)
(0.0506894 -0.0149059 0)
(0.05118 -0.014517 0)
(0.0516563 -0.0141289 0)
(0.0521165 -0.0137436 0)
(0.0525628 -0.0133642 0)
(-0.0282465 -0.0190798 0)
(-0.0276139 -0.0194062 0)
(-0.0269699 -0.0197416 0)
(-0.0263125 -0.0200809 0)
(-0.0256423 -0.0204205 0)
(-0.0249594 -0.0207582 0)
(-0.0242638 -0.0210927 0)
(-0.0235556 -0.0214233 0)
(-0.0228347 -0.0217493 0)
(-0.0221014 -0.0220703 0)
(-0.0213556 -0.0223859 0)
(-0.0205976 -0.0226958 0)
(-0.0198275 -0.0229998 0)
(-0.0190455 -0.0232974 0)
(-0.0182518 -0.0235886 0)
(-0.0174465 -0.023873 0)
(-0.0166298 -0.0241505 0)
(-0.0158021 -0.0244208 0)
(-0.0149636 -0.0246837 0)
(-0.0141144 -0.024939 0)
(-0.0132548 -0.0251864 0)
(-0.0123851 -0.0254259 0)
(-0.0115057 -0.0256571 0)
(-0.0106168 -0.0258799 0)
(-0.00971866 -0.0260941 0)
(-0.00881169 -0.0262994 0)
(-0.00789619 -0.0264957 0)
(-0.00697252 -0.0266826 0)
(-0.00604105 -0.0268602 0)
(-0.00510216 -0.027028 0)
(-0.00415622 -0.027186 0)
(-0.00320363 -0.0273338 0)
(-0.0022448 -0.0274714 0)
(-0.00128015 -0.0275985 0)
(-0.000310106 -0.0277146 0)
(0.000664934 -0.0278195 0)
(0.00164442 -0.0279127 0)
(0.00262789 -0.0279944 0)
(0.00361484 -0.0280646 0)
(0.00460476 -0.0281233 0)
(0.00559716 -0.0281704 0)
(0.00659154 -0.0282058 0)
(0.00758741 -0.0282296 0)
(0.00858429 -0.0282417 0)
(0.00958169 -0.028242 0)
(0.0105791 -0.0282306 0)
(0.0115761 -0.0282074 0)
(0.0125722 -0.0281724 0)
(0.0135667 -0.0281257 0)
(0.0145594 -0.0280672 0)
(0.0155496 -0.027997 0)
(0.0165369 -0.0279151 0)
(0.0175208 -0.0278217 0)
(0.0185008 -0.0277167 0)
(0.0194765 -0.0276003 0)
(0.0204474 -0.0274726 0)
(0.0214131 -0.0273337 0)
(0.022373 -0.0271838 0)
(0.0233267 -0.0270229 0)
(0.0242738 -0.0268512 0)
(0.0252138 -0.026669 0)
(0.0261464 -0.0264763 0)
(0.027071 -0.0262734 0)
(0.0279873 -0.0260605 0)
(0.0288949 -0.0258377 0)
(0.0297934 -0.0256054 0)
(0.0306823 -0.0253637 0)
(0.0315614 -0.0251128 0)
(0.0324303 -0.024853 0)
(0.0332886 -0.0245846 0)
(0.0341359 -0.0243077 0)
(0.034972 -0.0240227 0)
(0.0357966 -0.0237298 0)
(0.0366094 -0.0234293 0)
(0.03741 -0.0231214 0)
(0.0381983 -0.0228064 0)
(0.0389738 -0.0224845 0)
(0.0397366 -0.0221561 0)
(0.0404862 -0.0218213 0)
(0.0412225 -0.0214804 0)
(0.0419454 -0.0211337 0)
(0.0426545 -0.0207814 0)
(0.0433497 -0.0204238 0)
(0.0440309 -0.0200611 0)
(0.0446979 -0.0196935 0)
(0.0453507 -0.0193214 0)
(0.045989 -0.0189448 0)
(0.0466128 -0.0185641 0)
(0.047222 -0.0181796 0)
(0.0478165 -0.0177914 0)
(0.0483962 -0.0173999 0)
(0.0489612 -0.0170053 0)
(0.0495115 -0.016608 0)
(0.050047 -0.0162084 0)
(0.0505676 -0.0158068 0)
(0.0510736 -0.0154039 0)
(0.0515649 -0.0150006 0)
(0.0520418 -0.0145982 0)
(0.0525024 -0.0141989 0)
(0.0529488 -0.0138058 0)
(-0.028593 -0.0197083 0)
(-0.0279579 -0.0200464 0)
(-0.0273113 -0.0203942 0)
(-0.026651 -0.0207462 0)
(-0.0259777 -0.0210986 0)
(-0.0252915 -0.0214492 0)
(-0.0245922 -0.0217965 0)
(-0.02388 -0.0221399 0)
(-0.0231549 -0.0224786 0)
(-0.022417 -0.0228122 0)
(-0.0216664 -0.0231402 0)
(-0.0209033 -0.0234625 0)
(-0.0201277 -0.0237786 0)
(-0.01934 -0.0240882 0)
(-0.0185402 -0.0243912 0)
(-0.0177287 -0.0246872 0)
(-0.0169055 -0.0249761 0)
(-0.0160709 -0.0252575 0)
(-0.0152252 -0.0255312 0)
(-0.0143685 -0.0257971 0)
(-0.0135013 -0.026055 0)
(-0.0126237 -0.0263045 0)
(-0.0117361 -0.0265455 0)
(-0.0108387 -0.0267777 0)
(-0.00993184 -0.027001 0)
(-0.0090159 -0.0272152 0)
(-0.0080912 -0.0274199 0)
(-0.00715808 -0.027615 0)
(-0.00621693 -0.0278002 0)
(-0.00526812 -0.0279754 0)
(-0.00431204 -0.0281403 0)
(-0.00334911 -0.0282947 0)
(-0.00237975 -0.0284384 0)
(-0.00140436 -0.0285712 0)
(-0.000423409 -0.0286927 0)
(0.000562731 -0.0288023 0)
(0.00155349 -0.0288999 0)
(0.00254838 -0.0289854 0)
(0.00354688 -0.0290589 0)
(0.00454846 -0.0291203 0)
(0.00555261 -0.0291697 0)
(0.00655882 -0.0292069 0)
(0.00756659 -0.029232 0)
(0.00857542 -0.0292448 0)
(0.00958482 -0.0292454 0)
(0.0105943 -0.0292338 0)
(0.0116033 -0.0292099 0)
(0.0126113 -0.0291737 0)
(0.0136179 -0.0291252 0)
(0.0146225 -0.0290645 0)
(0.0156247 -0.0289916 0)
(0.0166238 -0.0289066 0)
(0.0176196 -0.0288095 0)
(0.0186113 -0.0287004 0)
(0.0195987 -0.0285794 0)
(0.0205811 -0.0284466 0)
(0.0215581 -0.0283021 0)
(0.0225292 -0.0281461 0)
(0.023494 -0.0279787 0)
(0.0244521 -0.0278001 0)
(0.0254028 -0.0276105 0)
(0.0263459 -0.02741 0)
(0.0272809 -0.0271989 0)
(0.0282073 -0.0269773 0)
(0.0291248 -0.0267456 0)
(0.030033 -0.0265038 0)
(0.0309314 -0.0262523 0)
(0.0318197 -0.0259912 0)
(0.0326975 -0.0257209 0)
(0.0335645 -0.0254416 0)
(0.0344203 -0.0251536 0)
(0.0352646 -0.0248571 0)
(0.036097 -0.0245524 0)
(0.0369174 -0.0242397 0)
(0.0377253 -0.0239194 0)
(0.0385205 -0.0235918 0)
(0.0393029 -0.023257 0)
(0.040072 -0.0229154 0)
(0.0408278 -0.0225672 0)
(0.0415699 -0.0222128 0)
(0.0422983 -0.0218523 0)
(0.0430126 -0.0214861 0)
(0.0437127 -0.0211144 0)
(0.0443985 -0.0207374 0)
(0.0450699 -0.0203555 0)
(0.0457266 -0.0199688 0)
(0.0463686 -0.0195777 0)
(0.0469958 -0.0191823 0)
(0.047608 -0.0187829 0)
(0.0482053 -0.0183799 0)
(0.0487876 -0.0179735 0)
(0.0493548 -0.017564 0)
(0.0499068 -0.0171517 0)
(0.0504438 -0.0167371 0)
(0.0509658 -0.0163207 0)
(0.0514727 -0.015903 0)
(0.0519648 -0.015485 0)
(0.052442 -0.015068 0)
(0.0529029 -0.0146545 0)
(0.0533494 -0.0142476 0)
(-0.0289527 -0.0203392 0)
(-0.0283151 -0.0206892 0)
(-0.0276659 -0.0210495 0)
(-0.0270028 -0.0214145 0)
(-0.0263264 -0.02178 0)
(-0.0256367 -0.0221437 0)
(-0.0249338 -0.0225043 0)
(-0.0242175 -0.0228607 0)
(-0.023488 -0.0232124 0)
(-0.0227454 -0.0235589 0)
(-0.0219899 -0.0238998 0)
(-0.0212214 -0.0242346 0)
(-0.0204403 -0.0245631 0)
(-0.0196467 -0.0248851 0)
(-0.0188407 -0.0252001 0)
(-0.0180226 -0.025508 0)
(-0.0171926 -0.0258085 0)
(-0.0163509 -0.0261013 0)
(-0.0154978 -0.0263862 0)
(-0.0146335 -0.026663 0)
(-0.0137583 -0.0269315 0)
(-0.0128725 -0.0271914 0)
(-0.0119763 -0.0274424 0)
(-0.0110701 -0.0276844 0)
(-0.0101542 -0.0279171 0)
(-0.00922899 -0.0281403 0)
(-0.00829471 -0.0283537 0)
(-0.00735177 -0.0285571 0)
(-0.00640055 -0.0287504 0)
(-0.00544142 -0.0289331 0)
(-0.00447481 -0.0291052 0)
(-0.00350112 -0.0292664 0)
(-0.00252077 -0.0294164 0)
(-0.00153421 -0.0295551 0)
(-0.000541871 -0.029682 0)
(0.000455843 -0.0297966 0)
(0.00145836 -0.0298986 0)
(0.00246517 -0.0299881 0)
(0.00347571 -0.030065 0)
(0.00448945 -0.0301293 0)
(0.00550586 -0.030181 0)
(0.00652442 -0.0302201 0)
(0.0075446 -0.0302465 0)
(0.0085659 -0.0302602 0)
(0.00958779 -0.0302611 0)
(0.0106098 -0.0302493 0)
(0.0116313 -0.0302247 0)
(0.0126519 -0.0301873 0)
(0.013671 -0.0301371 0)
(0.0146881 -0.0300742 0)
(0.0157027 -0.0299985 0)
(0.0167143 -0.0299102 0)
(0.0177223 -0.0298094 0)
(0.0187263 -0.029696 0)
(0.0197257 -0.0295702 0)
(0.0207201 -0.0294322 0)
(0.021709 -0.029282 0)
(0.0226918 -0.0291199 0)
(0.0236682 -0.0289458 0)
(0.0246376 -0.0287601 0)
(0.0255996 -0.0285629 0)
(0.0265536 -0.0283545 0)
(0.0274994 -0.0281349 0)
(0.0284364 -0.0279045 0)
(0.0293642 -0.0276635 0)
(0.0302824 -0.027412 0)
(0.0311907 -0.0271504 0)
(0.0320885 -0.026879 0)
(0.0329757 -0.0265979 0)
(0.0338517 -0.0263075 0)
(0.0347162 -0.026008 0)
(0.035569 -0.0256996 0)
(0.0364096 -0.0253828 0)
(0.0372379 -0.0250578 0)
(0.0380534 -0.0247248 0)
(0.0388559 -0.0243842 0)
(0.0396452 -0.0240362 0)
(0.040421 -0.0236811 0)
(0.0411831 -0.0233193 0)
(0.0419313 -0.0229509 0)
(0.0426653 -0.0225764 0)
(0.043385 -0.0221959 0)
(0.0440902 -0.0218098 0)
(0.0447808 -0.0214182 0)
(0.0454566 -0.0210216 0)
(0.0461174 -0.0206201 0)
(0.0467632 -0.020214 0)
(0.0473939 -0.0198036 0)
(0.0480093 -0.0193891 0)
(0.0486093 -0.0189709 0)
(0.0491941 -0.0185493 0)
(0.0497635 -0.0181246 0)
(0.0503175 -0.0176971 0)
(0.050856 -0.0172673 0)
(0.0513791 -0.0168357 0)
(0.0518869 -0.0164029 0)
(0.0523796 -0.0159699 0)
(0.0528572 -0.0155381 0)
(0.0533182 -0.0151102 0)
(0.0537648 -0.0146895 0)
(-0.0293259 -0.0209726 0)
(-0.0286858 -0.0213345 0)
(-0.028034 -0.0217075 0)
(-0.0273681 -0.0220858 0)
(-0.0266886 -0.0224647 0)
(-0.0259955 -0.022842 0)
(-0.0252888 -0.023216 0)
(-0.0245684 -0.0235859 0)
(-0.0238344 -0.0239509 0)
(-0.023087 -0.0243106 0)
(-0.0223263 -0.0246645 0)
(-0.0215525 -0.0250123 0)
(-0.0207656 -0.0253536 0)
(-0.0199658 -0.0256881 0)
(-0.0191535 -0.0260155 0)
(-0.0183286 -0.0263356 0)
(-0.0174916 -0.026648 0)
(-0.0166426 -0.0269525 0)
(-0.0157818 -0.027249 0)
(-0.0149095 -0.027537 0)
(-0.0140261 -0.0278164 0)
(-0.0131317 -0.0280869 0)
(-0.0122267 -0.0283482 0)
(-0.0113114 -0.0286002 0)
(-0.0103861 -0.0288426 0)
(-0.00945121 -0.0290751 0)
(-0.00850699 -0.0292975 0)
(-0.00755384 -0.0295095 0)
(-0.00659215 -0.0297109 0)
(-0.0056223 -0.0299015 0)
(-0.00464473 -0.030081 0)
(-0.00365984 -0.0302492 0)
(-0.00266808 -0.0304058 0)
(-0.00166986 -0.0305505 0)
(-0.000665656 -0.0306831 0)
(0.000344121 -0.0308029 0)
(0.00135889 -0.0309095 0)
(0.00237811 -0.031003 0)
(0.00340121 -0.0310834 0)
(0.00442762 -0.0311507 0)
(0.00545681 -0.0312049 0)
(0.00648824 -0.0312459 0)
(0.00752136 -0.0312737 0)
(0.00855564 -0.0312883 0)
(0.00959056 -0.0312896 0)
(0.0106256 -0.0312776 0)
(0.0116602 -0.0312523 0)
(0.0126939 -0.0312137 0)
(0.013726 -0.0311618 0)
(0.0147562 -0.0310966 0)
(0.0157837 -0.0310182 0)
(0.0168082 -0.0309265 0)
(0.017829 -0.0308218 0)
(0.0188457 -0.0307041 0)
(0.0198578 -0.0305735 0)
(0.0208647 -0.0304301 0)
(0.0218659 -0.0302741 0)
(0.022861 -0.0301056 0)
(0.0238494 -0.0299247 0)
(0.0248306 -0.0297317 0)
(0.0258042 -0.0295268 0)
(0.0267697 -0.0293101 0)
(0.0277267 -0.0290819 0)
(0.0286747 -0.0288424 0)
(0.0296132 -0.0285919 0)
(0.0305419 -0.0283305 0)
(0.0314604 -0.0280586 0)
(0.0323682 -0.0277765 0)
(0.033265 -0.0274843 0)
(0.0341505 -0.0271825 0)
(0.0350241 -0.0268712 0)
(0.0358857 -0.0265508 0)
(0.0367348 -0.0262216 0)
(0.0375712 -0.0258838 0)
(0.0383946 -0.0255378 0)
(0.0392047 -0.0251839 0)
(0.0400012 -0.0248224 0)
(0.040784 -0.0244536 0)
(0.0415526 -0.0240778 0)
(0.042307 -0.0236952 0)
(0.043047 -0.0233063 0)
(0.0437722 -0.0229112 0)
(0.0444827 -0.0225103 0)
(0.0451781 -0.0221038 0)
(0.0458584 -0.0216921 0)
(0.0465235 -0.0212755 0)
(0.0471732 -0.0208541 0)
(0.0478074 -0.0204283 0)
(0.048426 -0.0199984 0)
(0.0490291 -0.0195647 0)
(0.0496163 -0.0191275 0)
(0.0501878 -0.0186872 0)
(0.0507436 -0.0182442 0)
(0.0512838 -0.0177989 0)
(0.0518081 -0.0173517 0)
(0.0523167 -0.0169035 0)
(0.0528099 -0.0164552 0)
(0.0532876 -0.0160083 0)
(0.0537486 -0.0155657 0)
(0.0541951 -0.0151313 0)
(-0.0297128 -0.0216084 0)
(-0.0290702 -0.0219822 0)
(-0.0284159 -0.0223683 0)
(-0.0277473 -0.02276 0)
(-0.0270647 -0.0231528 0)
(-0.0263682 -0.0235438 0)
(-0.0256576 -0.0239317 0)
(-0.024933 -0.0243153 0)
(-0.0241945 -0.0246941 0)
(-0.0234421 -0.0250674 0)
(-0.0226762 -0.0254347 0)
(-0.0218967 -0.0257958 0)
(-0.0211038 -0.0261502 0)
(-0.0202978 -0.0264976 0)
(-0.0194788 -0.0268377 0)
(-0.0186471 -0.0271702 0)
(-0.0178027 -0.0274949 0)
(-0.0169461 -0.0278115 0)
(-0.0160774 -0.0281197 0)
(-0.015197 -0.0284192 0)
(-0.014305 -0.0287098 0)
(-0.0134017 -0.0289913 0)
(-0.0124876 -0.0292633 0)
(-0.0115628 -0.0295256 0)
(-0.0106278 -0.0297779 0)
(-0.00968285 -0.03002 0)
(-0.00872831 -0.0302516 0)
(-0.00776456 -0.0304725 0)
(-0.006792 -0.0306824 0)
(-0.00581102 -0.030881 0)
(-0.00482206 -0.0310682 0)
(-0.00382553 -0.0312436 0)
(-0.00282188 -0.031407 0)
(-0.00181153 -0.0315581 0)
(-0.000794966 -0.0316965 0)
(0.000227375 -0.0318216 0)
(0.00125492 -0.0319331 0)
(0.00228707 -0.0320308 0)
(0.00332325 -0.0321149 0)
(0.00436287 -0.0321853 0)
(0.00540537 -0.032242 0)
(0.00645019 -0.0322851 0)
(0.00749678 -0.0323144 0)
(0.0085446 -0.0323299 0)
(0.00959309 -0.0323316 0)
(0.0106417 -0.0323194 0)
(0.01169 -0.0322934 0)
(0.0127373 -0.0322536 0)
(0.013783 -0.0321999 0)
(0.0148267 -0.0321324 0)
(0.0158678 -0.0320511 0)
(0.0169057 -0.0319561 0)
(0.0179399 -0.0318475 0)
(0.0189699 -0.0317253 0)
(0.0199951 -0.0315898 0)
(0.021015 -0.0314409 0)
(0.0220291 -0.0312789 0)
(0.0230368 -0.0311039 0)
(0.0240377 -0.030916 0)
(0.0250313 -0.0307156 0)
(0.026017 -0.0305027 0)
(0.0269944 -0.0302775 0)
(0.0279631 -0.0300404 0)
(0.0289225 -0.0297916 0)
(0.0298722 -0.0295313 0)
(0.0308118 -0.0292597 0)
(0.031741 -0.0289772 0)
(0.0326591 -0.0286841 0)
(0.033566 -0.0283806 0)
(0.0344612 -0.028067 0)
(0.0353443 -0.0277436 0)
(0.036215 -0.0274108 0)
(0.0370729 -0.0270688 0)
(0.0379179 -0.026718 0)
(0.0387494 -0.0263587 0)
(0.0395673 -0.0259912 0)
(0.0403713 -0.0256159 0)
(0.0411612 -0.025233 0)
(0.0419367 -0.0248428 0)
(0.0426975 -0.0244457 0)
(0.0434435 -0.024042 0)
(0.0441746 -0.023632 0)
(0.0448904 -0.023216 0)
(0.0455909 -0.0227943 0)
(0.0462759 -0.0223672 0)
(0.0469453 -0.021935 0)
(0.047599 -0.0214981 0)
(0.0482368 -0.0210565 0)
(0.0488587 -0.0206108 0)
(0.0494646 -0.0201613 0)
(0.0500545 -0.0197083 0)
(0.0506282 -0.019252 0)
(0.0511858 -0.018793 0)
(0.0517274 -0.0183317 0)
(0.0522529 -0.0178688 0)
(0.0527623 -0.0174048 0)
(0.0532559 -0.0169408 0)
(0.0537337 -0.0164786 0)
(0.0541945 -0.0160212 0)
(0.0546407 -0.0155728 0)
(-0.0301139 -0.0222466 0)
(-0.0294689 -0.0226324 0)
(-0.0288121 -0.0230317 0)
(-0.0281408 -0.0234373 0)
(-0.0274551 -0.0238442 0)
(-0.0267551 -0.0242495 0)
(-0.0260406 -0.0246515 0)
(-0.0253117 -0.0250493 0)
(-0.0245685 -0.0254421 0)
(-0.0238111 -0.0258293 0)
(-0.0230397 -0.0262105 0)
(-0.0222545 -0.0265852 0)
(-0.0214555 -0.026953 0)
(-0.020643 -0.0273137 0)
(-0.0198172 -0.0276669 0)
(-0.0189783 -0.0280122 0)
(-0.0181264 -0.0283495 0)
(-0.017262 -0.0286785 0)
(-0.0163851 -0.0289987 0)
(-0.0154961 -0.0293101 0)
(-0.0145953 -0.0296122 0)
(-0.0136829 -0.0299049 0)
(-0.0127593 -0.0301879 0)
(-0.0118247 -0.0304607 0)
(-0.0108796 -0.0307233 0)
(-0.00992421 -0.0309753 0)
(-0.00895897 -0.0312165 0)
(-0.00798423 -0.0314465 0)
(-0.00700038 -0.0316652 0)
(-0.00600785 -0.0318722 0)
(-0.00500706 -0.0320673 0)
(-0.00399844 -0.0322501 0)
(-0.00298242 -0.0324206 0)
(-0.00195946 -0.0325782 0)
(-0.000930044 -0.0327228 0)
(0.000105378 -0.0328535 0)
(0.00114623 -0.03297 0)
(0.00219186 -0.0330721 0)
(0.00324167 -0.03316 0)
(0.00429505 -0.0332336 0)
(0.00535142 -0.033293 0)
(0.0064102 -0.0333382 0)
(0.00747083 -0.033369 0)
(0.00853273 -0.0333855 0)
(0.00959537 -0.0333876 0)
(0.0106582 -0.0333754 0)
(0.0117206 -0.0333487 0)
(0.0127821 -0.0333076 0)
(0.013842 -0.0332521 0)
(0.0148998 -0.0331822 0)
(0.015955 -0.033098 0)
(0.0170069 -0.0329995 0)
(0.018055 -0.0328869 0)
(0.0190988 -0.0327602 0)
(0.0201377 -0.0326195 0)
(0.0211711 -0.032465 0)
(0.0221986 -0.0322969 0)
(0.0232196 -0.0321152 0)
(0.0242335 -0.0319202 0)
(0.0252399 -0.031712 0)
(0.0262383 -0.0314909 0)
(0.0272281 -0.0312572 0)
(0.0282089 -0.0310109 0)
(0.0291802 -0.0307525 0)
(0.0301416 -0.0304821 0)
(0.0310925 -0.0302001 0)
(0.0320327 -0.0299067 0)
(0.0329616 -0.0296023 0)
(0.033879 -0.0292871 0)
(0.0347843 -0.0289614 0)
(0.0356772 -0.0286257 0)
(0.0365574 -0.0282801 0)
(0.0374245 -0.0279251 0)
(0.0382782 -0.0275609 0)
(0.0391182 -0.0271879 0)
(0.0399442 -0.0268064 0)
(0.0407559 -0.0264168 0)
(0.0415532 -0.0260194 0)
(0.0423357 -0.0256146 0)
(0.0431032 -0.0252026 0)
(0.0438555 -0.0247838 0)
(0.0445925 -0.0243585 0)
(0.0453139 -0.0239271 0)
(0.0460196 -0.0234898 0)
(0.0467094 -0.023047 0)
(0.0473832 -0.0225989 0)
(0.048041 -0.0221459 0)
(0.0486826 -0.0216884 0)
(0.0493078 -0.0212265 0)
(0.0499166 -0.0207607 0)
(0.0505091 -0.0202914 0)
(0.0510851 -0.0198189 0)
(0.0516446 -0.0193436 0)
(0.0521876 -0.018866 0)
(0.0527141 -0.0183868 0)
(0.0532242 -0.0179066 0)
(0.053718 -0.0174266 0)
(0.0541957 -0.0169487 0)
(0.0546562 -0.0164761 0)
(0.055102 -0.0160139 0)
(-0.0305296 -0.0228873 0)
(-0.0298821 -0.0232849 0)
(-0.029223 -0.0236977 0)
(-0.0285491 -0.0241176 0)
(-0.0278603 -0.0245391 0)
(-0.0271567 -0.024959 0)
(-0.0264383 -0.0253757 0)
(-0.025705 -0.025788 0)
(-0.024957 -0.0261952 0)
(-0.0241945 -0.0265968 0)
(-0.0234175 -0.0269921 0)
(-0.0226263 -0.0273807 0)
(-0.021821 -0.0277624 0)
(-0.0210018 -0.0281367 0)
(-0.020169 -0.0285033 0)
(-0.0193227 -0.0288618 0)
(-0.0184631 -0.0292121 0)
(-0.0175905 -0.0295537 0)
(-0.0167052 -0.0298864 0)
(-0.0158074 -0.0302099 0)
(-0.0148975 -0.030524 0)
(-0.0139756 -0.0308282 0)
(-0.0130421 -0.0311224 0)
(-0.0120974 -0.0314062 0)
(-0.0111418 -0.0316794 0)
(-0.0101757 -0.0319416 0)
(-0.00919931 -0.0321926 0)
(-0.00821317 -0.0324321 0)
(-0.00721762 -0.0326598 0)
(-0.0062131 -0.0328755 0)
(-0.00520002 -0.0330788 0)
(-0.00417883 -0.0332694 0)
(-0.00314997 -0.0334471 0)
(-0.0021139 -0.0336116 0)
(-0.00107111 -0.0337625 0)
(-2.20698e-05 -0.0338991 0)
(0.00103264 -0.0340208 0)
(0.00209232 -0.0341275 0)
(0.00315633 -0.0342193 0)
(0.00422403 -0.0342963 0)
(0.00529484 -0.0343585 0)
(0.00636816 -0.0344058 0)
(0.0074434 -0.0344382 0)
(0.00851999 -0.0344558 0)
(0.00959736 -0.0344584 0)
(0.0106749 -0.034446 0)
(0.0117521 -0.0344186 0)
(0.0128284 -0.0343763 0)
(0.013903 -0.0343189 0)
(0.0149756 -0.0342467 0)
(0.0160454 -0.0341595 0)
(0.0171119 -0.0340575 0)
(0.0181745 -0.0339407 0)
(0.0192327 -0.0338093 0)
(0.0202858 -0.0336634 0)
(0.0213334 -0.0335031 0)
(0.0223748 -0.0333286 0)
(0.0234095 -0.0331401 0)
(0.0244371 -0.0329377 0)
(0.0254568 -0.0327216 0)
(0.0264683 -0.0324922 0)
(0.027471 -0.0322495 0)
(0.0284645 -0.0319939 0)
(0.0294482 -0.0317256 0)
(0.0304216 -0.0314449 0)
(0.0313844 -0.0311522 0)
(0.032336 -0.0308476 0)
(0.0332762 -0.0305316 0)
(0.0342043 -0.0302044 0)
(0.0351202 -0.0298663 0)
(0.0360233 -0.0295178 0)
(0.0369133 -0.0291591 0)
(0.0377899 -0.0287906 0)
(0.0386527 -0.0284127 0)
(0.0395014 -0.0280257 0)
(0.0403359 -0.0276299 0)
(0.0411556 -0.0272257 0)
(0.0419605 -0.0268135 0)
(0.0427503 -0.0263935 0)
(0.0435247 -0.0259663 0)
(0.0442835 -0.025532 0)
(0.0450266 -0.0250911 0)
(0.0457537 -0.0246438 0)
(0.0464647 -0.0241905 0)
(0.0471595 -0.0237316 0)
(0.0478379 -0.0232673 0)
(0.0484998 -0.022798 0)
(0.0491452 -0.0223239 0)
(0.0497739 -0.0218456 0)
(0.0503858 -0.0213633 0)
(0.0509809 -0.0208773 0)
(0.0515591 -0.020388 0)
(0.0521204 -0.019896 0)
(0.0526648 -0.0194017 0)
(0.0531923 -0.0189057 0)
(0.053703 -0.018409 0)
(0.054197 -0.0179126 0)
(0.0546744 -0.0174185 0)
(0.0551343 -0.0169306 0)
(0.0555795 -0.0164545 0)
(-0.0309605 -0.0235301 0)
(-0.0303107 -0.0239395 0)
(-0.0296493 -0.0243663 0)
(-0.0289727 -0.0248009 0)
(-0.0282809 -0.0252374 0)
(-0.0275737 -0.0256724 0)
(-0.0268512 -0.0261042 0)
(-0.0261134 -0.0265315 0)
(-0.0253605 -0.0269536 0)
(-0.0245927 -0.0273698 0)
(-0.02381 -0.0277796 0)
(-0.0230127 -0.0281827 0)
(-0.0222009 -0.0285785 0)
(-0.0213748 -0.0289668 0)
(-0.0205347 -0.0293472 0)
(-0.0196808 -0.0297193 0)
(-0.0188132 -0.0300828 0)
(-0.0179323 -0.0304375 0)
(-0.0170382 -0.0307831 0)
(-0.0161314 -0.0311191 0)
(-0.0152119 -0.0314454 0)
(-0.0142802 -0.0317615 0)
(-0.0133366 -0.0320673 0)
(-0.0123814 -0.0323624 0)
(-0.0114149 -0.0326464 0)
(-0.0104376 -0.0329192 0)
(-0.00944973 -0.0331804 0)
(-0.00845176 -0.0334297 0)
(-0.00744407 -0.0336668 0)
(-0.00642708 -0.0338914 0)
(-0.00540124 -0.0341032 0)
(-0.00436699 -0.0343019 0)
(-0.00332479 -0.0344872 0)
(-0.00227509 -0.0346588 0)
(-0.00121839 -0.0348162 0)
(-0.00015518 -0.0349589 0)
(0.000913962 -0.0350861 0)
(0.00198826 -0.0351975 0)
(0.00306705 -0.0352934 0)
(0.00414968 -0.0353738 0)
(0.00523552 -0.0354389 0)
(0.00632398 -0.0354885 0)
(0.00741445 -0.0355226 0)
(0.00850633 -0.0355413 0)
(0.00959904 -0.0355444 0)
(0.010692 -0.0355319 0)
(0.0117846 -0.0355038 0)
(0.0128762 -0.0354602 0)
(0.0139662 -0.035401 0)
(0.0150541 -0.0353263 0)
(0.0161392 -0.0352361 0)
(0.0172209 -0.0351305 0)
(0.0182986 -0.0350095 0)
(0.0193717 -0.0348733 0)
(0.0204397 -0.0347221 0)
(0.021502 -0.0345559 0)
(0.022558 -0.0343749 0)
(0.023607 -0.0341793 0)
(0.0246487 -0.0339693 0)
(0.0256824 -0.0337451 0)
(0.0267076 -0.033507 0)
(0.0277237 -0.0332552 0)
(0.0287303 -0.0329899 0)
(0.0297268 -0.0327115 0)
(0.0307129 -0.0324203 0)
(0.0316879 -0.0321165 0)
(0.0326515 -0.0318004 0)
(0.0336033 -0.0314724 0)
(0.0345427 -0.0311329 0)
(0.0354695 -0.0307821 0)
(0.0363831 -0.0304205 0)
(0.0372834 -0.0300483 0)
(0.0381698 -0.029666 0)
(0.039042 -0.029274 0)
(0.0398999 -0.0288725 0)
(0.040743 -0.028462 0)
(0.041571 -0.0280428 0)
(0.0423838 -0.0276154 0)
(0.043181 -0.02718 0)
(0.0439625 -0.026737 0)
(0.0447281 -0.0262869 0)
(0.0454774 -0.0258299 0)
(0.0462104 -0.0253664 0)
(0.046927 -0.0248968 0)
(0.0476268 -0.0244212 0)
(0.0483099 -0.0239403 0)
(0.0489762 -0.0234543 0)
(0.0496254 -0.0229634 0)
(0.0502575 -0.0224681 0)
(0.0508725 -0.0219687 0)
(0.0514704 -0.0214657 0)
(0.0520509 -0.0209594 0)
(0.052614 -0.0204502 0)
(0.0531598 -0.0199388 0)
(0.0536883 -0.0194257 0)
(0.0541994 -0.0189118 0)
(0.0546934 -0.0183985 0)
(0.0551703 -0.017888 0)
(0.0556295 -0.0173843 0)
(0.0560739 -0.0168944 0)
(-0.0314075 -0.0241751 0)
(-0.0307555 -0.0245962 0)
(-0.0300917 -0.0250373 0)
(-0.0294126 -0.0254872 0)
(-0.0287176 -0.0259392 0)
(-0.0280067 -0.0263898 0)
(-0.0272801 -0.0268371 0)
(-0.0265377 -0.0272798 0)
(-0.0257798 -0.0277172 0)
(-0.0250064 -0.0281485 0)
(-0.0242178 -0.0285733 0)
(-0.0234142 -0.0289911 0)
(-0.0225957 -0.0294015 0)
(-0.0217626 -0.0298042 0)
(-0.020915 -0.0301987 0)
(-0.0200532 -0.0305848 0)
(-0.0191773 -0.030962 0)
(-0.0182878 -0.0313302 0)
(-0.0173847 -0.0316889 0)
(-0.0164684 -0.0320378 0)
(-0.0155392 -0.0323766 0)
(-0.0145973 -0.0327051 0)
(-0.0136432 -0.0330228 0)
(-0.0126771 -0.0333295 0)
(-0.0116994 -0.0336249 0)
(-0.0107104 -0.0339085 0)
(-0.00971064 -0.0341802 0)
(-0.00870038 -0.0344396 0)
(-0.00768008 -0.0346864 0)
(-0.00665016 -0.0349202 0)
(-0.00561106 -0.0351408 0)
(-0.00456324 -0.0353479 0)
(-0.00350716 -0.035541 0)
(-0.00244329 -0.03572 0)
(-0.00137214 -0.0358844 0)
(-0.000294201 -0.0360335 0)
(0.000789964 -0.0361664 0)
(0.0018795 -0.0362827 0)
(0.00297369 -0.0363828 0)
(0.00407187 -0.0364669 0)
(0.00517338 -0.0365349 0)
(0.00627761 -0.0365868 0)
(0.00738394 -0.0366228 0)
(0.00849176 -0.0366425 0)
(0.00960045 -0.0366462 0)
(0.0107094 -0.0366337 0)
(0.011818 -0.036605 0)
(0.0129257 -0.0365601 0)
(0.0140318 -0.036499 0)
(0.0151356 -0.0364218 0)
(0.0162366 -0.0363285 0)
(0.0173341 -0.0362192 0)
(0.0184276 -0.0360939 0)
(0.0195163 -0.0359528 0)
(0.0205998 -0.035796 0)
(0.0216774 -0.0356237 0)
(0.0227485 -0.0354361 0)
(0.0238125 -0.0352333 0)
(0.0248689 -0.0350155 0)
(0.0259171 -0.0347829 0)
(0.0269565 -0.0345359 0)
(0.0279866 -0.0342747 0)
(0.0290069 -0.0339996 0)
(0.0300168 -0.0337107 0)
(0.031016 -0.0334086 0)
(0.0320038 -0.0330934 0)
(0.0329798 -0.0327655 0)
(0.0339436 -0.0324252 0)
(0.0348948 -0.032073 0)
(0.0358329 -0.0317092 0)
(0.0367576 -0.0313341 0)
(0.0376684 -0.0309481 0)
(0.038565 -0.0305516 0)
(0.0394471 -0.030145 0)
(0.0403143 -0.0297288 0)
(0.0411664 -0.0293032 0)
(0.0420031 -0.0288686 0)
(0.042824 -0.0284255 0)
(0.043629 -0.0279743 0)
(0.0444178 -0.0275152 0)
(0.0451902 -0.0270488 0)
(0.0459461 -0.0265753 0)
(0.0466851 -0.0260951 0)
(0.0474073 -0.0256087 0)
(0.0481125 -0.0251163 0)
(0.0488003 -0.0246183 0)
(0.0494709 -0.024115 0)
(0.0501242 -0.023607 0)
(0.05076 -0.0230943 0)
(0.051378 -0.0225775 0)
(0.0519785 -0.022057 0)
(0.0525613 -0.0215331 0)
(0.0531264 -0.0210064 0)
(0.0536736 -0.0204774 0)
(0.054203 -0.0199467 0)
(0.0547145 -0.0194153 0)
(0.0552084 -0.0188845 0)
(0.0556847 -0.0183569 0)
(0.0561429 -0.017837 0)
(0.0565863 -0.0173335 0)
(-0.0318717 -0.0248221 0)
(-0.0312175 -0.0252546 0)
(-0.0305515 -0.0257106 0)
(-0.0298698 -0.0261763 0)
(-0.0291715 -0.0266444 0)
(-0.0284568 -0.0271112 0)
(-0.0277259 -0.0275745 0)
(-0.0269787 -0.0280331 0)
(-0.0262155 -0.0284862 0)
(-0.0254365 -0.028933 0)
(-0.0246419 -0.0293732 0)
(-0.0238318 -0.0298062 0)
(-0.0230064 -0.0302316 0)
(-0.0221659 -0.030649 0)
(-0.0213106 -0.0310581 0)
(-0.0204406 -0.0314584 0)
(-0.0195562 -0.0318498 0)
(-0.0186577 -0.0322318 0)
(-0.0177453 -0.032604 0)
(-0.0168193 -0.0329662 0)
(-0.0158799 -0.033318 0)
(-0.0149275 -0.0336591 0)
(-0.0139624 -0.0339892 0)
(-0.012985 -0.0343079 0)
(-0.0119957 -0.0346148 0)
(-0.0109947 -0.0349098 0)
(-0.0099825 -0.0351923 0)
(-0.00895949 -0.0354621 0)
(-0.00792608 -0.0357189 0)
(-0.00688271 -0.0359623 0)
(-0.00582983 -0.0361921 0)
(-0.00476789 -0.0364077 0)
(-0.00369739 -0.0366091 0)
(-0.00261879 -0.0367958 0)
(-0.00153261 -0.0369674 0)
(-0.000439343 -0.0371232 0)
(0.00066047 -0.037262 0)
(0.00176589 -0.0373834 0)
(0.00287615 -0.0374879 0)
(0.00399053 -0.0375757 0)
(0.00510837 -0.0376468 0)
(0.00622904 -0.0377012 0)
(0.0073519 -0.0377389 0)
(0.00847633 -0.03776 0)
(0.00960169 -0.0377642 0)
(0.0107274 -0.0377517 0)
(0.0118527 -0.0377223 0)
(0.0129771 -0.0376762 0)
(0.0140998 -0.0376132 0)
(0.0152204 -0.0375335 0)
(0.016338 -0.037437 0)
(0.017452 -0.0373239 0)
(0.0185619 -0.0371942 0)
(0.019667 -0.0370481 0)
(0.0207666 -0.0368857 0)
(0.0218602 -0.0367071 0)
(0.022947 -0.0365126 0)
(0.0240267 -0.0363023 0)
(0.0250984 -0.0360765 0)
(0.0261617 -0.0358354 0)
(0.0272159 -0.0355793 0)
(0.0282606 -0.0353084 0)
(0.0292952 -0.035023 0)
(0.0303191 -0.0347234 0)
(0.0313319 -0.03441 0)
(0.032333 -0.0340831 0)
(0.033322 -0.033743 0)
(0.0342984 -0.0333902 0)
(0.0352617 -0.0330249 0)
(0.0362117 -0.0326476 0)
(0.0371477 -0.0322587 0)
(0.0380695 -0.0318585 0)
(0.0389767 -0.0314475 0)
(0.039869 -0.031026 0)
(0.040746 -0.0305945 0)
(0.0416074 -0.0301534 0)
(0.0424529 -0.0297031 0)
(0.0432823 -0.029244 0)
(0.0440953 -0.0287764 0)
(0.0448917 -0.0283009 0)
(0.0456712 -0.0278177 0)
(0.0464338 -0.0273274 0)
(0.0471791 -0.0268302 0)
(0.0479071 -0.0263265 0)
(0.0486176 -0.0258168 0)
(0.0493105 -0.0253013 0)
(0.0499856 -0.0247804 0)
(0.0506428 -0.0242546 0)
(0.0512822 -0.0237242 0)
(0.0519036 -0.0231896 0)
(0.0525068 -0.0226511 0)
(0.053092 -0.0221093 0)
(0.0536589 -0.0215646 0)
(0.0542075 -0.0210174 0)
(0.0547378 -0.0204686 0)
(0.0552497 -0.0199191 0)
(0.0557434 -0.0193703 0)
(0.0562189 -0.018825 0)
(0.056676 -0.0182882 0)
(0.0571181 -0.0177712 0)
(-0.0323547 -0.025471 0)
(-0.0316983 -0.0259149 0)
(-0.03103 -0.0263863 0)
(-0.0303455 -0.0268684 0)
(-0.0296439 -0.0273532 0)
(-0.0289253 -0.0278367 0)
(-0.0281898 -0.0283165 0)
(-0.0274377 -0.0287914 0)
(-0.0266691 -0.0292606 0)
(-0.0258842 -0.0297234 0)
(-0.0250833 -0.0301794 0)
(-0.0242664 -0.0306279 0)
(-0.0234338 -0.0310687 0)
(-0.0225858 -0.0315013 0)
(-0.0217224 -0.0319253 0)
(-0.0208441 -0.0323404 0)
(-0.0199508 -0.0327462 0)
(-0.019043 -0.0331424 0)
(-0.0181209 -0.0335285 0)
(-0.0171848 -0.0339044 0)
(-0.0162349 -0.0342695 0)
(-0.0152715 -0.0346237 0)
(-0.0142951 -0.0349665 0)
(-0.013306 -0.0352975 0)
(-0.0123045 -0.0356164 0)
(-0.011291 -0.035923 0)
(-0.0102659 -0.0362167 0)
(-0.00922958 -0.0364973 0)
(-0.00818252 -0.0367645 0)
(-0.00712514 -0.0370178 0)
(-0.00605789 -0.0372569 0)
(-0.00498127 -0.0374816 0)
(-0.00389574 -0.0376914 0)
(-0.00280181 -0.0378861 0)
(-0.00169996 -0.0380652 0)
(-0.00059072 -0.038228 0)
(0.000525394 -0.0383731 0)
(0.00164739 -0.0384998 0)
(0.00277442 -0.0386088 0)
(0.00390571 -0.0387003 0)
(0.00504059 -0.0387746 0)
(0.00617841 -0.0388316 0)
(0.00731853 -0.0388712 0)
(0.0084603 -0.0388935 0)
(0.00960307 -0.0388985 0)
(0.0107462 -0.0388859 0)
(0.011889 -0.0388559 0)
(0.0130309 -0.0388085 0)
(0.0141711 -0.0387436 0)
(0.015309 -0.0386613 0)
(0.016444 -0.0385616 0)
(0.0175753 -0.0384446 0)
(0.0187024 -0.0383104 0)
(0.0198245 -0.0381591 0)
(0.020941 -0.0379909 0)
(0.0220513 -0.0378059 0)
(0.0231547 -0.0376044 0)
(0.0242506 -0.0373864 0)
(0.0253384 -0.0371524 0)
(0.0264174 -0.0369025 0)
(0.0274872 -0.0366369 0)
(0.0285471 -0.036356 0)
(0.0295966 -0.0360601 0)
(0.0306351 -0.0357495 0)
(0.0316621 -0.0354246 0)
(0.0326771 -0.0350856 0)
(0.0336795 -0.0347331 0)
(0.034669 -0.0343672 0)
(0.0356451 -0.0339886 0)
(0.0366073 -0.0335975 0)
(0.0375553 -0.0331943 0)
(0.0384885 -0.0327796 0)
(0.0394068 -0.0323536 0)
(0.0403096 -0.0319168 0)
(0.0411967 -0.0314697 0)
(0.0420678 -0.0310127 0)
(0.0429225 -0.0305462 0)
(0.0437607 -0.0300706 0)
(0.044582 -0.0295864 0)
(0.0453862 -0.029094 0)
(0.0461732 -0.0285937 0)
(0.0469426 -0.028086 0)
(0.0476944 -0.0275713 0)
(0.0484284 -0.02705 0)
(0.0491444 -0.0265224 0)
(0.0498423 -0.0259891 0)
(0.0505221 -0.0254503 0)
(0.0511836 -0.0249064 0)
(0.0518267 -0.0243577 0)
(0.0524512 -0.0238047 0)
(0.0530573 -0.023248 0)
(0.0536449 -0.0226877 0)
(0.0542138 -0.0221245 0)
(0.0547639 -0.0215589 0)
(0.0552951 -0.0209915 0)
(0.0558074 -0.0204232 0)
(0.0563008 -0.0198558 0)
(0.0567754 -0.0192921 0)
(0.0572311 -0.0187377 0)
(0.0576716 -0.0182073 0)
(-0.0328585 -0.0261221 0)
(-0.0322 -0.0265771 0)
(-0.0315293 -0.0270647 0)
(-0.0308419 -0.0275639 0)
(-0.0301366 -0.0280661 0)
(-0.0294138 -0.0285666 0)
(-0.0286736 -0.0290634 0)
(-0.0279162 -0.0295551 0)
(-0.0271419 -0.0300408 0)
(-0.026351 -0.03052 0)
(-0.0255435 -0.0309922 0)
(-0.0247196 -0.0314567 0)
(-0.0238796 -0.0319132 0)
(-0.0230236 -0.0323614 0)
(-0.022152 -0.0328008 0)
(-0.0212648 -0.033231 0)
(-0.0203624 -0.0336517 0)
(-0.0194449 -0.0340624 0)
(-0.0185126 -0.0344629 0)
(-0.017566 -0.0348528 0)
(-0.0166051 -0.0352317 0)
(-0.0156304 -0.0355993 0)
(-0.0146421 -0.0359551 0)
(-0.0136407 -0.0362988 0)
(-0.0126265 -0.0366301 0)
(-0.0115999 -0.0369486 0)
(-0.0105613 -0.0372539 0)
(-0.00951116 -0.0375456 0)
(-0.00844983 -0.0378234 0)
(-0.00737779 -0.038087 0)
(-0.00629554 -0.0383358 0)
(-0.00520356 -0.0385698 0)
(-0.00410234 -0.0387884 0)
(-0.00299238 -0.0389913 0)
(-0.00187418 -0.0391782 0)
(-0.000748265 -0.0393482 0)
(0.000384844 -0.0394998 0)
(0.00152418 -0.039632 0)
(0.00266874 -0.0397457 0)
(0.00381772 -0.0398411 0)
(0.00497043 -0.0399187 0)
(0.00612621 -0.0399783 0)
(0.0072844 -0.0400199 0)
(0.00844432 -0.0400435 0)
(0.00960532 -0.0400491 0)
(0.0107667 -0.0400366 0)
(0.0119278 -0.040006 0)
(0.013088 -0.0399572 0)
(0.0142466 -0.0398903 0)
(0.0154028 -0.0398053 0)
(0.0165559 -0.0397023 0)
(0.0177054 -0.0395813 0)
(0.0188504 -0.0394424 0)
(0.0199904 -0.0392858 0)
(0.0211246 -0.0391116 0)
(0.0222524 -0.0389201 0)
(0.0233731 -0.0387113 0)
(0.0244861 -0.0384855 0)
(0.0255907 -0.038243 0)
(0.0266863 -0.0379839 0)
(0.0277723 -0.0377087 0)
(0.0288482 -0.0374176 0)
(0.0299132 -0.0371109 0)
(0.030967 -0.036789 0)
(0.0320089 -0.0364521 0)
(0.0330384 -0.0361008 0)
(0.034055 -0.0357354 0)
(0.0350582 -0.0353563 0)
(0.0360475 -0.0349639 0)
(0.0370226 -0.0345586 0)
(0.0379829 -0.0341409 0)
(0.0389282 -0.0337111 0)
(0.0398579 -0.0332698 0)
(0.0407717 -0.0328173 0)
(0.0416694 -0.0323542 0)
(0.0425506 -0.0318809 0)
(0.0434149 -0.0313978 0)
(0.0442622 -0.0309053 0)
(0.0450921 -0.030404 0)
(0.0459045 -0.0298942 0)
(0.0466991 -0.0293764 0)
(0.0474757 -0.0288509 0)
(0.0482342 -0.0283183 0)
(0.0489744 -0.027779 0)
(0.0496962 -0.0272333 0)
(0.0503993 -0.0266816 0)
(0.0510838 -0.0261243 0)
(0.0517496 -0.0255619 0)
(0.0523966 -0.0249947 0)
(0.0530245 -0.024423 0)
(0.0536335 -0.0238474 0)
(0.0542234 -0.0232683 0)
(0.0547942 -0.0226862 0)
(0.0553458 -0.0221016 0)
(0.0558781 -0.0215151 0)
(0.0563908 -0.0209277 0)
(0.056884 -0.020341 0)
(0.0573577 -0.019758 0)
(0.0578119 -0.0191852 0)
(0.0582504 -0.0186415 0)
(-0.0333861 -0.0267755 0)
(-0.0327254 -0.0272416 0)
(-0.0320521 -0.0277461 0)
(-0.0313614 -0.0282631 0)
(-0.0306522 -0.0287831 0)
(-0.0299248 -0.0293013 0)
(-0.0291796 -0.0298154 0)
(-0.0284167 -0.0303243 0)
(-0.0276365 -0.030827 0)
(-0.0268391 -0.0313229 0)
(-0.0260248 -0.0318116 0)
(-0.0251935 -0.0322925 0)
(-0.0243457 -0.0327652 0)
(-0.0234815 -0.0332293 0)
(-0.0226011 -0.0336844 0)
(-0.0217047 -0.0341302 0)
(-0.0207926 -0.0345661 0)
(-0.0198649 -0.0349919 0)
(-0.0189221 -0.0354071 0)
(-0.0179643 -0.0358114 0)
(-0.016992 -0.0362044 0)
(-0.0160052 -0.0365857 0)
(-0.0150045 -0.036955 0)
(-0.0139902 -0.0373118 0)
(-0.0129627 -0.0376557 0)
(-0.0119224 -0.0379865 0)
(-0.0108696 -0.0383036 0)
(-0.00980478 -0.0386067 0)
(-0.00872843 -0.0388954 0)
(-0.00764098 -0.0391694 0)
(-0.00654295 -0.0394283 0)
(-0.00543482 -0.0396717 0)
(-0.00431711 -0.0398993 0)
(-0.00319032 -0.0401107 0)
(-0.00205496 -0.0403056 0)
(-0.000911577 -0.0404831 0)
(0.000239338 -0.0406414 0)
(0.00139685 -0.0407794 0)
(0.00255983 -0.0408977 0)
(0.00372739 -0.0409971 0)
(0.00489883 -0.0410779 0)
(0.00607349 -0.0411402 0)
(0.00725067 -0.0411838 0)
(0.0084297 -0.0412088 0)
(0.00960989 -0.041215 0)
(0.0107905 -0.0412024 0)
(0.0119709 -0.0411711 0)
(0.0131504 -0.0411209 0)
(0.0143282 -0.0410519 0)
(0.0155037 -0.0409641 0)
(0.016676 -0.0408576 0)
(0.0178445 -0.0407325 0)
(0.0190086 -0.0405888 0)
(0.0201673 -0.0404267 0)
(0.0213202 -0.0402464 0)
(0.0224664 -0.040048 0)
(0.0236053 -0.0398317 0)
(0.0247363 -0.0395978 0)
(0.0258586 -0.0393465 0)
(0.0269716 -0.0390781 0)
(0.0280748 -0.0387929 0)
(0.0291674 -0.0384912 0)
(0.0302489 -0.0381734 0)
(0.0313187 -0.0378398 0)
(0.0323763 -0.0374909 0)
(0.033421 -0.0371269 0)
(0.0344524 -0.0367483 0)
(0.03547 -0.0363555 0)
(0.0364733 -0.035949 0)
(0.0374619 -0.0355292 0)
(0.0384352 -0.0350965 0)
(0.039393 -0.0346514 0)
(0.0403348 -0.0341944 0)
(0.0412602 -0.0337259 0)
(0.0421689 -0.0332464 0)
(0.0430607 -0.0327563 0)
(0.0439351 -0.0322562 0)
(0.0447919 -0.0317465 0)
(0.0456308 -0.0312277 0)
(0.0464517 -0.0307002 0)
(0.0472543 -0.0301644 0)
(0.0480384 -0.0296209 0)
(0.0488038 -0.0290701 0)
(0.0495504 -0.0285122 0)
(0.0502781 -0.027948 0)
(0.0509867 -0.0273776 0)
(0.0516761 -0.0268015 0)
(0.0523463 -0.0262202 0)
(0.0529972 -0.025634 0)
(0.0536287 -0.0250434 0)
(0.0542406 -0.0244487 0)
(0.054833 -0.0238504 0)
(0.0554058 -0.023249 0)
(0.055959 -0.022645 0)
(0.0564923 -0.022039 0)
(0.0570056 -0.0214319 0)
(0.0574987 -0.0208253 0)
(0.0579714 -0.0202223 0)
(0.058424 -0.0196299 0)
(0.0588601 -0.0190731 0)
(-0.0339423 -0.0274273 0)
(-0.033279 -0.0279048 0)
(-0.0326027 -0.0284269 0)
(-0.0319083 -0.0289622 0)
(-0.0311946 -0.0295003 0)
(-0.0304623 -0.0300365 0)
(-0.0297117 -0.0305684 0)
(-0.028943 -0.0310947 0)
(-0.0281565 -0.0316147 0)
(-0.0273523 -0.0321277 0)
(-0.0265306 -0.0326332 0)
(-0.0256917 -0.0331308 0)
(-0.0248356 -0.03362 0)
(-0.0239626 -0.0341004 0)
(-0.0230729 -0.0345715 0)
(-0.0221667 -0.0350331 0)
(-0.0212443 -0.0354846 0)
(-0.0203059 -0.0359256 0)
(-0.0193518 -0.0363559 0)
(-0.0183822 -0.0367749 0)
(-0.0173976 -0.0371823 0)
(-0.0163981 -0.0375777 0)
(-0.0153841 -0.0379606 0)
(-0.0143561 -0.0383307 0)
(-0.0133144 -0.0386876 0)
(-0.0122594 -0.0390308 0)
(-0.0111916 -0.03936 0)
(-0.0101112 -0.0396747 0)
(-0.00901892 -0.0399746 0)
(-0.00791511 -0.0402592 0)
(-0.00680032 -0.0405283 0)
(-0.00567505 -0.0407814 0)
(-0.00453984 -0.0410181 0)
(-0.00339521 -0.0412382 0)
(-0.00224169 -0.0414411 0)
(-0.00107985 -0.0416262 0)
(8.98362e-05 -0.0417915 0)
(0.0012665 -0.0419353 0)
(0.00244892 -0.0420584 0)
(0.00363614 -0.0421619 0)
(0.00482743 -0.0422461 0)
(0.0060221 -0.042311 0)
(0.00721944 -0.0423566 0)
(0.00841875 -0.0423828 0)
(0.00961931 -0.0423896 0)
(0.0108204 -0.042377 0)
(0.0120213 -0.0423448 0)
(0.0132213 -0.0422931 0)
(0.0144195 -0.0422218 0)
(0.0156154 -0.0421311 0)
(0.0168081 -0.0420209 0)
(0.0179969 -0.0418913 0)
(0.019181 -0.0417425 0)
(0.0203598 -0.0415746 0)
(0.0215324 -0.0413878 0)
(0.0226982 -0.0411822 0)
(0.0238565 -0.0409581 0)
(0.0250065 -0.0407157 0)
(0.0261477 -0.0404553 0)
(0.0272792 -0.0401772 0)
(0.0284005 -0.0398816 0)
(0.0295109 -0.039569 0)
(0.0306098 -0.0392397 0)
(0.0316966 -0.0388941 0)
(0.0327708 -0.0385325 0)
(0.0338317 -0.0381554 0)
(0.0348788 -0.0377632 0)
(0.0359116 -0.0373564 0)
(0.0369297 -0.0369354 0)
(0.0379325 -0.0365006 0)
(0.0389197 -0.0360526 0)
(0.0398907 -0.0355918 0)
(0.0408453 -0.0351187 0)
(0.0417829 -0.0346338 0)
(0.0427034 -0.0341375 0)
(0.0436062 -0.0336305 0)
(0.0444912 -0.0331131 0)
(0.0453581 -0.0325858 0)
(0.0462065 -0.0320492 0)
(0.0470364 -0.0315037 0)
(0.0478473 -0.0309498 0)
(0.0486393 -0.0303879 0)
(0.049412 -0.0298185 0)
(0.0501654 -0.0292421 0)
(0.0508993 -0.028659 0)
(0.0516136 -0.0280697 0)
(0.0523082 -0.0274747 0)
(0.052983 -0.0268743 0)
(0.0536379 -0.0262689 0)
(0.0542729 -0.0256591 0)
(0.0548879 -0.0250451 0)
(0.0554829 -0.0244275 0)
(0.0560577 -0.0238067 0)
(0.0566125 -0.0231831 0)
(0.0571468 -0.0225574 0)
(0.0576606 -0.0219304 0)
(0.0581538 -0.0213036 0)
(0.0586258 -0.02068 0)
(0.0590769 -0.0200671 0)
(0.0595104 -0.0194973 0)
(-0.0345318 -0.0280629 0)
(-0.0338659 -0.0285515 0)
(-0.0331861 -0.0290912 0)
(-0.0324874 -0.0296449 0)
(-0.0317691 -0.0302014 0)
(-0.0310316 -0.0307556 0)
(-0.0302752 -0.0313054 0)
(-0.0295003 -0.0318494 0)
(-0.028707 -0.0323869 0)
(-0.0278955 -0.0329172 0)
(-0.027066 -0.0334399 0)
(-0.0262187 -0.0339545 0)
(-0.0253537 -0.0344605 0)
(-0.0244713 -0.0349575 0)
(-0.0235716 -0.0354451 0)
(-0.0226549 -0.0359229 0)
(-0.0217215 -0.0363904 0)
(-0.0207715 -0.0368473 0)
(-0.0198053 -0.037293 0)
(-0.0188231 -0.0377273 0)
(-0.0178252 -0.0381496 0)
(-0.016812 -0.0385596 0)
(-0.0157838 -0.0389568 0)
(-0.0147411 -0.0393408 0)
(-0.0136842 -0.0397112 0)
(-0.0126135 -0.0400675 0)
(-0.0115294 -0.0404094 0)
(-0.0104324 -0.0407364 0)
(-0.00932294 -0.0410481 0)
(-0.00820158 -0.0413441 0)
(-0.00706881 -0.041624 0)
(-0.00592518 -0.0418874 0)
(-0.00477122 -0.042134 0)
(-0.00360749 -0.0423633 0)
(-0.00243456 -0.0425749 0)
(-0.00125305 -0.0427682 0)
(-6.34531e-05 -0.0429412 0)
(0.0011335 -0.0430916 0)
(0.00233659 -0.0432201 0)
(0.00354479 -0.0433282 0)
(0.00475731 -0.0434163 0)
(0.00597342 -0.0434844 0)
(0.00719237 -0.0435325 0)
(0.00841344 -0.0435604 0)
(0.00963587 -0.0435682 0)
(0.0108589 -0.0435557 0)
(0.0120818 -0.043523 0)
(0.0133038 -0.0434699 0)
(0.0145241 -0.0433965 0)
(0.0157419 -0.0433028 0)
(0.0169565 -0.0431889 0)
(0.0181671 -0.0430548 0)
(0.0193729 -0.0429007 0)
(0.0205731 -0.0427268 0)
(0.021767 -0.0425331 0)
(0.0229539 -0.0423199 0)
(0.024133 -0.0420875 0)
(0.0253035 -0.041836 0)
(0.0264649 -0.0415659 0)
(0.0276163 -0.0412773 0)
(0.0287571 -0.0409706 0)
(0.0298866 -0.0406463 0)
(0.0310042 -0.0403045 0)
(0.0321093 -0.0399459 0)
(0.0332013 -0.0395708 0)
(0.0342796 -0.0391796 0)
(0.0353436 -0.0387727 0)
(0.0363928 -0.0383508 0)
(0.0374267 -0.0379141 0)
(0.0384449 -0.0374633 0)
(0.0394468 -0.0369988 0)
(0.0404321 -0.0365212 0)
(0.0414003 -0.0360309 0)
(0.042351 -0.0355284 0)
(0.043284 -0.0350144 0)
(0.0441987 -0.0344892 0)
(0.0450951 -0.0339534 0)
(0.0459727 -0.0334076 0)
(0.0468313 -0.0328522 0)
(0.0476707 -0.0322878 0)
(0.0484906 -0.0317148 0)
(0.0492909 -0.0311337 0)
(0.0500713 -0.0305449 0)
(0.0508319 -0.0299491 0)
(0.0515725 -0.0293466 0)
(0.0522927 -0.0287378 0)
(0.0529926 -0.0281231 0)
(0.0536722 -0.0275031 0)
(0.0543315 -0.0268781 0)
(0.0549702 -0.0262487 0)
(0.0555883 -0.0256151 0)
(0.0561858 -0.0249779 0)
(0.0567627 -0.0243374 0)
(0.0573189 -0.0236942 0)
(0.0578542 -0.0230487 0)
(0.0583684 -0.0224018 0)
(0.0588615 -0.0217549 0)
(0.059333 -0.0211109 0)
(0.0597825 -0.0204775 0)
(0.060213 -0.0198956 0)
(-0.0351502 -0.028742 0)
(-0.0344834 -0.0292414 0)
(-0.0338014 -0.0298006 0)
(-0.0330997 -0.0303747 0)
(-0.0323776 -0.0309515 0)
(-0.0316354 -0.0315259 0)
(-0.0308737 -0.0320954 0)
(-0.0300927 -0.032659 0)
(-0.0292926 -0.0332159 0)
(-0.0284736 -0.0337655 0)
(-0.0276361 -0.0343072 0)
(-0.0267801 -0.0348407 0)
(-0.0259059 -0.0353655 0)
(-0.0250136 -0.0358811 0)
(-0.0241034 -0.0363871 0)
(-0.0231757 -0.036883 0)
(-0.0222306 -0.0373685 0)
(-0.0212685 -0.037843 0)
(-0.0202894 -0.0383062 0)
(-0.0192939 -0.0387576 0)
(-0.0182821 -0.0391968 0)
(-0.0172544 -0.0396233 0)
(-0.0162111 -0.0400367 0)
(-0.0151528 -0.0404365 0)
(-0.0140797 -0.0408223 0)
(-0.0129923 -0.0411936 0)
(-0.0118909 -0.0415501 0)
(-0.0107762 -0.0418911 0)
(-0.00964857 -0.0422164 0)
(-0.00850851 -0.0425255 0)
(-0.0073566 -0.0428179 0)
(-0.00619337 -0.0430933 0)
(-0.0050194 -0.0433513 0)
(-0.00383527 -0.0435914 0)
(-0.00264162 -0.0438133 0)
(-0.0014391 -0.0440162 0)
(-0.000228257 -0.0441982 0)
(0.00099032 -0.0443566 0)
(0.00221551 -0.0444917 0)
(0.00344624 -0.0446055 0)
(0.00468163 -0.0446984 0)
(0.00592088 -0.0447706 0)
(0.00716321 -0.044822 0)
(0.00840786 -0.0448525 0)
(0.00965402 -0.0448621 0)
(0.0109009 -0.0448506 0)
(0.0121478 -0.044818 0)
(0.0133937 -0.0447643 0)
(0.0146381 -0.0446894 0)
(0.0158799 -0.0445934 0)
(0.0171184 -0.0444764 0)
(0.0183528 -0.0443383 0)
(0.0195824 -0.0441794 0)
(0.0208061 -0.0439998 0)
(0.0220234 -0.0437996 0)
(0.0232334 -0.0435792 0)
(0.0244354 -0.0433386 0)
(0.0256285 -0.0430782 0)
(0.0268121 -0.0427984 0)
(0.0279853 -0.0424993 0)
(0.0291476 -0.0421814 0)
(0.0302982 -0.041845 0)
(0.0314364 -0.0414906 0)
(0.0325616 -0.0411185 0)
(0.0336732 -0.0407292 0)
(0.0347706 -0.0403232 0)
(0.0358531 -0.0399009 0)
(0.0369203 -0.0394629 0)
(0.0379716 -0.0390096 0)
(0.0390066 -0.0385416 0)
(0.0400247 -0.0380594 0)
(0.0410255 -0.0375635 0)
(0.0420087 -0.0370545 0)
(0.0429737 -0.0365329 0)
(0.0439202 -0.0359993 0)
(0.0448479 -0.0354542 0)
(0.0457565 -0.0348982 0)
(0.0466457 -0.0343318 0)
(0.0475152 -0.0337556 0)
(0.0483648 -0.03317 0)
(0.0491944 -0.0325756 0)
(0.0500036 -0.031973 0)
(0.0507922 -0.0313624 0)
(0.0515603 -0.0307447 0)
(0.0523077 -0.0301201 0)
(0.0530342 -0.0294892 0)
(0.0537398 -0.0288523 0)
(0.0544242 -0.02821 0)
(0.0550876 -0.0275627 0)
(0.0557298 -0.026911 0)
(0.0563508 -0.0262551 0)
(0.0569505 -0.0255954 0)
(0.0575289 -0.0249326 0)
(0.0580858 -0.0242669 0)
(0.0586209 -0.0235988 0)
(0.0591341 -0.022929 0)
(0.059625 -0.0222589 0)
(0.0600935 -0.0215914 0)
(0.0605385 -0.0209352 0)
(0.0609654 -0.0203403 0)
(3.30806e-05 -1.02905e-07 0)
(3.34117e-05 -8.99675e-08 0)
(3.36372e-05 -7.90203e-08 0)
(3.37847e-05 -7.86982e-08 0)
(3.39267e-05 -7.19523e-08 0)
(3.40251e-05 -6.85591e-08 0)
(3.41067e-05 -6.18943e-08 0)
(3.41537e-05 -5.7437e-08 0)
(3.41734e-05 -5.13339e-08 0)
(3.41616e-05 -4.39251e-08 0)
(3.41183e-05 -3.63779e-08 0)
(3.40415e-05 -2.89529e-08 0)
(3.39306e-05 -2.10959e-08 0)
(3.37843e-05 -1.29762e-08 0)
(3.36017e-05 -4.59825e-09 0)
(3.33818e-05 4.01383e-09 0)
(3.31239e-05 1.29883e-08 0)
(3.28277e-05 2.19285e-08 0)
(3.2494e-05 3.06552e-08 0)
(3.21237e-05 3.9428e-08 0)
(3.1717e-05 4.82446e-08 0)
(3.12746e-05 5.69615e-08 0)
(3.07975e-05 6.57382e-08 0)
(3.02875e-05 7.40713e-08 0)
(2.97467e-05 8.21934e-08 0)
(2.91774e-05 8.99255e-08 0)
(2.85822e-05 9.70931e-08 0)
(2.79644e-05 1.0344e-07 0)
(2.73264e-05 1.10023e-07 0)
(2.66707e-05 1.15543e-07 0)
(2.60016e-05 1.20049e-07 0)
(2.53225e-05 1.24404e-07 0)
(2.46358e-05 1.28196e-07 0)
(2.39449e-05 1.31006e-07 0)
(2.32535e-05 1.3296e-07 0)
(2.25646e-05 1.34408e-07 0)
(2.18805e-05 1.3542e-07 0)
(2.1203e-05 1.35851e-07 0)
(2.0535e-05 1.35335e-07 0)
(1.98793e-05 1.34537e-07 0)
(1.92366e-05 1.33596e-07 0)
(1.86075e-05 1.32203e-07 0)
(1.79927e-05 1.30554e-07 0)
(1.73935e-05 1.28631e-07 0)
(1.68105e-05 1.26685e-07 0)
(1.62429e-05 1.24748e-07 0)
(1.56897e-05 1.23006e-07 0)
(1.51502e-05 1.21236e-07 0)
(1.46243e-05 1.19507e-07 0)
(1.41114e-05 1.17931e-07 0)
(1.36104e-05 1.16545e-07 0)
(1.31202e-05 1.15403e-07 0)
(1.26401e-05 1.14334e-07 0)
(1.21701e-05 1.13251e-07 0)
(1.17104e-05 1.12244e-07 0)
(1.12609e-05 1.11246e-07 0)
(1.08218e-05 1.1003e-07 0)
(1.03942e-05 1.08423e-07 0)
(9.98003e-06 1.06543e-07 0)
(9.58063e-06 1.04401e-07 0)
(9.19651e-06 1.02043e-07 0)
(8.82791e-06 9.92994e-08 0)
(8.47666e-06 9.60156e-08 0)
(8.14468e-06 9.23177e-08 0)
(7.83298e-06 8.85423e-08 0)
(7.54163e-06 8.42687e-08 0)
(7.27088e-06 8.00357e-08 0)
(7.02153e-06 7.50553e-08 0)
(6.79459e-06 6.99298e-08 0)
(6.58991e-06 6.46037e-08 0)
(6.40526e-06 5.95419e-08 0)
(6.23947e-06 5.42759e-08 0)
(6.09261e-06 4.87998e-08 0)
(5.96338e-06 4.38279e-08 0)
(5.84862e-06 3.90953e-08 0)
(5.7452e-06 3.48538e-08 0)
(5.64981e-06 3.12949e-08 0)
(5.55927e-06 2.81065e-08 0)
(5.47131e-06 2.52478e-08 0)
(5.38325e-06 2.33597e-08 0)
(5.29154e-06 2.21375e-08 0)
(5.19326e-06 2.09778e-08 0)
(5.08598e-06 2.08485e-08 0)
(4.96669e-06 2.1749e-08 0)
(4.8323e-06 2.32235e-08 0)
(4.67968e-06 2.52345e-08 0)
(4.50686e-06 2.75149e-08 0)
(4.31198e-06 3.06333e-08 0)
(4.09035e-06 3.55082e-08 0)
(3.84049e-06 3.96002e-08 0)
(3.56497e-06 4.37047e-08 0)
(3.26363e-06 4.841e-08 0)
(2.93262e-06 5.48712e-08 0)
(2.57538e-06 5.80776e-08 0)
(2.20015e-06 6.02558e-08 0)
(1.80688e-06 6.37618e-08 0)
(1.39263e-06 6.77854e-08 0)
(9.6155e-07 7.10691e-08 0)
(5.29396e-07 6.87266e-08 0)
(1.44138e-07 6.31751e-08 0)
(4.92041e-05 -3.48406e-07 0)
(4.9314e-05 -1.85799e-07 0)
(4.91948e-05 -9.84837e-08 0)
(4.88815e-05 -7.13909e-08 0)
(4.858e-05 -4.15328e-08 0)
(4.82017e-05 -2.35733e-08 0)
(4.78224e-05 2.13096e-09 0)
(4.73996e-05 2.39583e-08 0)
(4.6952e-05 4.9218e-08 0)
(4.64721e-05 7.56581e-08 0)
(4.59616e-05 1.03179e-07 0)
(4.54202e-05 1.30691e-07 0)
(4.48481e-05 1.59185e-07 0)
(4.42443e-05 1.88311e-07 0)
(4.36084e-05 2.18124e-07 0)
(4.29401e-05 2.48301e-07 0)
(4.22394e-05 2.79048e-07 0)
(4.15065e-05 3.09386e-07 0)
(4.07423e-05 3.38683e-07 0)
(3.99473e-05 3.67641e-07 0)
(3.91223e-05 3.96124e-07 0)
(3.82688e-05 4.23608e-07 0)
(3.73891e-05 4.49954e-07 0)
(3.64864e-05 4.74169e-07 0)
(3.55642e-05 4.96337e-07 0)
(3.46259e-05 5.16605e-07 0)
(3.36748e-05 5.34301e-07 0)
(3.27145e-05 5.48783e-07 0)
(3.17491e-05 5.62115e-07 0)
(3.07825e-05 5.72634e-07 0)
(2.98184e-05 5.78727e-07 0)
(2.88621e-05 5.82893e-07 0)
(2.79167e-05 5.85762e-07 0)
(2.6985e-05 5.84791e-07 0)
(2.60713e-05 5.8084e-07 0)
(2.51788e-05 5.74894e-07 0)
(2.43103e-05 5.67509e-07 0)
(2.34672e-05 5.5886e-07 0)
(2.26514e-05 5.46945e-07 0)
(2.18654e-05 5.34024e-07 0)
(2.111e-05 5.21122e-07 0)
(2.03849e-05 5.07629e-07 0)
(1.96897e-05 4.93492e-07 0)
(1.90254e-05 4.78312e-07 0)
(1.83921e-05 4.63564e-07 0)
(1.77884e-05 4.4972e-07 0)
(1.72115e-05 4.37037e-07 0)
(1.66601e-05 4.24239e-07 0)
(1.61335e-05 4.11853e-07 0)
(1.56303e-05 4.0034e-07 0)
(1.51491e-05 3.89716e-07 0)
(1.46878e-05 3.80042e-07 0)
(1.42454e-05 3.70402e-07 0)
(1.38225e-05 3.60475e-07 0)
(1.34195e-05 3.50567e-07 0)
(1.30359e-05 3.4079e-07 0)
(1.26714e-05 3.30441e-07 0)
(1.23266e-05 3.1874e-07 0)
(1.20025e-05 3.05948e-07 0)
(1.17005e-05 2.9233e-07 0)
(1.14205e-05 2.78758e-07 0)
(1.11616e-05 2.64607e-07 0)
(1.09249e-05 2.48959e-07 0)
(1.0712e-05 2.32142e-07 0)
(1.0523e-05 2.15156e-07 0)
(1.03566e-05 1.9812e-07 0)
(1.02114e-05 1.81446e-07 0)
(1.00865e-05 1.63972e-07 0)
(9.98133e-06 1.46509e-07 0)
(9.89403e-06 1.29982e-07 0)
(9.82112e-06 1.15637e-07 0)
(9.75913e-06 1.01978e-07 0)
(9.70625e-06 8.83489e-08 0)
(9.66014e-06 7.70626e-08 0)
(9.61572e-06 6.90175e-08 0)
(9.56774e-06 6.3547e-08 0)
(9.51192e-06 6.10139e-08 0)
(9.44449e-06 6.06123e-08 0)
(9.36229e-06 6.20549e-08 0)
(9.26312e-06 6.58288e-08 0)
(9.14364e-06 7.28144e-08 0)
(8.99754e-06 8.21919e-08 0)
(8.8201e-06 9.36155e-08 0)
(8.61057e-06 1.07102e-07 0)
(8.36714e-06 1.23329e-07 0)
(8.08518e-06 1.42094e-07 0)
(7.76162e-06 1.61713e-07 0)
(7.39552e-06 1.8337e-07 0)
(6.98507e-06 2.09166e-07 0)
(6.52975e-06 2.32819e-07 0)
(6.03297e-06 2.54659e-07 0)
(5.49744e-06 2.77853e-07 0)
(4.92384e-06 3.03889e-07 0)
(4.3145e-06 3.22334e-07 0)
(3.67124e-06 3.37323e-07 0)
(2.99542e-06 3.55153e-07 0)
(2.28981e-06 3.71381e-07 0)
(1.56819e-06 3.80029e-07 0)
(8.51339e-07 3.62653e-07 0)
(2.13346e-07 2.82306e-07 0)
(5.45113e-05 -4.88321e-07 0)
(5.42916e-05 -7.57537e-08 0)
(5.38381e-05 1.36609e-07 0)
(5.31139e-05 2.09974e-07 0)
(5.24269e-05 2.63073e-07 0)
(5.16517e-05 2.92409e-07 0)
(5.08971e-05 3.29476e-07 0)
(5.01085e-05 3.63568e-07 0)
(4.93118e-05 4.00336e-07 0)
(4.84999e-05 4.36351e-07 0)
(4.76764e-05 4.7344e-07 0)
(4.68411e-05 5.10924e-07 0)
(4.59941e-05 5.49566e-07 0)
(4.51342e-05 5.88915e-07 0)
(4.42605e-05 6.29238e-07 0)
(4.33725e-05 6.69914e-07 0)
(4.24702e-05 7.10954e-07 0)
(4.15539e-05 7.51448e-07 0)
(4.06235e-05 7.90787e-07 0)
(3.96781e-05 8.29828e-07 0)
(3.87182e-05 8.67715e-07 0)
(3.7745e-05 9.03859e-07 0)
(3.67608e-05 9.37085e-07 0)
(3.57681e-05 9.66931e-07 0)
(3.47689e-05 9.93018e-07 0)
(3.37665e-05 1.01548e-06 0)
(3.27654e-05 1.03366e-06 0)
(3.17666e-05 1.04791e-06 0)
(3.07733e-05 1.05761e-06 0)
(2.97929e-05 1.06313e-06 0)
(2.88264e-05 1.06324e-06 0)
(2.78752e-05 1.05836e-06 0)
(2.69457e-05 1.05104e-06 0)
(2.60408e-05 1.03839e-06 0)
(2.51625e-05 1.02132e-06 0)
(2.43122e-05 1.00113e-06 0)
(2.34934e-05 9.77693e-07 0)
(2.27095e-05 9.528e-07 0)
(2.19598e-05 9.24338e-07 0)
(2.12439e-05 8.94009e-07 0)
(2.05638e-05 8.63228e-07 0)
(1.99203e-05 8.32349e-07 0)
(1.93123e-05 8.01191e-07 0)
(1.87384e-05 7.68933e-07 0)
(1.81983e-05 7.37165e-07 0)
(1.76913e-05 7.0755e-07 0)
(1.72146e-05 6.80607e-07 0)
(1.67657e-05 6.54254e-07 0)
(1.63422e-05 6.28752e-07 0)
(1.5943e-05 6.0516e-07 0)
(1.55669e-05 5.8311e-07 0)
(1.52114e-05 5.63147e-07 0)
(1.48749e-05 5.43391e-07 0)
(1.45573e-05 5.2327e-07 0)
(1.42589e-05 5.03132e-07 0)
(1.39796e-05 4.83505e-07 0)
(1.37182e-05 4.63678e-07 0)
(1.34741e-05 4.42279e-07 0)
(1.32475e-05 4.19448e-07 0)
(1.30398e-05 3.95774e-07 0)
(1.28509e-05 3.72306e-07 0)
(1.26791e-05 3.48798e-07 0)
(1.25248e-05 3.23474e-07 0)
(1.2389e-05 2.96508e-07 0)
(1.22721e-05 2.69284e-07 0)
(1.2173e-05 2.43238e-07 0)
(1.20898e-05 2.18287e-07 0)
(1.20205e-05 1.93413e-07 0)
(1.19633e-05 1.69371e-07 0)
(1.19159e-05 1.47717e-07 0)
(1.18754e-05 1.30014e-07 0)
(1.18388e-05 1.14652e-07 0)
(1.18024e-05 1.00541e-07 0)
(1.17631e-05 9.05068e-08 0)
(1.17173e-05 8.65231e-08 0)
(1.166e-05 8.74923e-08 0)
(1.15863e-05 9.32962e-08 0)
(1.14933e-05 1.02715e-07 0)
(1.13783e-05 1.15555e-07 0)
(1.12376e-05 1.31765e-07 0)
(1.10673e-05 1.53489e-07 0)
(1.08633e-05 1.80913e-07 0)
(1.06219e-05 2.11013e-07 0)
(1.034e-05 2.43509e-07 0)
(1.0016e-05 2.80237e-07 0)
(9.64834e-06 3.21475e-07 0)
(9.23423e-06 3.64543e-07 0)
(8.77174e-06 4.09734e-07 0)
(8.26158e-06 4.58738e-07 0)
(7.70404e-06 5.05677e-07 0)
(7.09858e-06 5.49174e-07 0)
(6.44864e-06 5.92395e-07 0)
(5.76141e-06 6.35564e-07 0)
(5.03923e-06 6.7258e-07 0)
(4.27636e-06 7.07e-07 0)
(3.47677e-06 7.41161e-07 0)
(2.6485e-06 7.68167e-07 0)
(1.80727e-06 7.78142e-07 0)
(9.75265e-07 7.41969e-07 0)
(2.36548e-07 5.69687e-07 0)
(5.69268e-05 -5.17083e-07 0)
(5.64863e-05 1.55266e-07 0)
(5.58342e-05 5.06147e-07 0)
(5.48776e-05 6.32012e-07 0)
(5.39731e-05 7.05417e-07 0)
(5.29722e-05 7.44275e-07 0)
(5.20031e-05 7.85773e-07 0)
(5.10095e-05 8.24175e-07 0)
(5.00253e-05 8.6344e-07 0)
(4.90415e-05 9.01158e-07 0)
(4.80625e-05 9.39217e-07 0)
(4.70871e-05 9.7805e-07 0)
(4.61153e-05 1.01836e-06 0)
(4.51454e-05 1.05998e-06 0)
(4.41754e-05 1.10278e-06 0)
(4.32041e-05 1.14655e-06 0)
(4.22313e-05 1.19066e-06 0)
(4.12564e-05 1.2342e-06 0)
(4.02788e-05 1.27705e-06 0)
(3.92969e-05 1.32018e-06 0)
(3.83104e-05 1.36168e-06 0)
(3.73199e-05 1.40113e-06 0)
(3.63266e-05 1.43637e-06 0)
(3.53325e-05 1.46704e-06 0)
(3.43392e-05 1.49344e-06 0)
(3.33489e-05 1.51444e-06 0)
(3.23649e-05 1.52895e-06 0)
(3.13902e-05 1.53976e-06 0)
(3.04261e-05 1.54348e-06 0)
(2.94778e-05 1.53963e-06 0)
(2.85489e-05 1.53132e-06 0)
(2.764e-05 1.51624e-06 0)
(2.67546e-05 1.49567e-06 0)
(2.58967e-05 1.46912e-06 0)
(2.50687e-05 1.43717e-06 0)
(2.42716e-05 1.40146e-06 0)
(2.35073e-05 1.36085e-06 0)
(2.27785e-05 1.31737e-06 0)
(2.2086e-05 1.27153e-06 0)
(2.14291e-05 1.22356e-06 0)
(2.08076e-05 1.17442e-06 0)
(2.0222e-05 1.12513e-06 0)
(1.96727e-05 1.07596e-06 0)
(1.91585e-05 1.027e-06 0)
(1.86766e-05 9.78683e-07 0)
(1.82255e-05 9.33258e-07 0)
(1.78043e-05 8.91625e-07 0)
(1.74108e-05 8.52534e-07 0)
(1.70405e-05 8.15318e-07 0)
(1.6692e-05 7.80283e-07 0)
(1.63647e-05 7.47644e-07 0)
(1.60565e-05 7.184e-07 0)
(1.57652e-05 6.89795e-07 0)
(1.549e-05 6.61111e-07 0)
(1.52308e-05 6.32331e-07 0)
(1.49877e-05 6.04082e-07 0)
(1.47602e-05 5.76351e-07 0)
(1.45471e-05 5.47731e-07 0)
(1.43477e-05 5.17093e-07 0)
(1.4163e-05 4.8554e-07 0)
(1.39939e-05 4.53917e-07 0)
(1.38395e-05 4.22505e-07 0)
(1.36997e-05 3.89313e-07 0)
(1.35747e-05 3.5418e-07 0)
(1.34655e-05 3.18807e-07 0)
(1.33716e-05 2.85306e-07 0)
(1.32912e-05 2.54035e-07 0)
(1.32219e-05 2.23683e-07 0)
(1.31617e-05 1.95282e-07 0)
(1.31082e-05 1.70552e-07 0)
(1.30588e-05 1.51007e-07 0)
(1.3011e-05 1.35361e-07 0)
(1.29606e-05 1.23427e-07 0)
(1.29029e-05 1.17394e-07 0)
(1.28351e-05 1.18634e-07 0)
(1.27532e-05 1.2751e-07 0)
(1.26526e-05 1.43157e-07 0)
(1.25306e-05 1.63641e-07 0)
(1.23851e-05 1.88688e-07 0)
(1.22121e-05 2.19982e-07 0)
(1.20064e-05 2.58288e-07 0)
(1.17654e-05 3.03657e-07 0)
(1.14859e-05 3.54399e-07 0)
(1.11623e-05 4.09536e-07 0)
(1.07928e-05 4.68439e-07 0)
(1.03789e-05 5.32266e-07 0)
(9.91918e-06 5.99489e-07 0)
(9.41059e-06 6.69377e-07 0)
(8.85229e-06 7.42437e-07 0)
(8.24448e-06 8.13851e-07 0)
(7.58787e-06 8.81221e-07 0)
(6.88638e-06 9.45322e-07 0)
(6.14588e-06 1.00612e-06 0)
(5.36722e-06 1.06267e-06 0)
(4.54723e-06 1.11772e-06 0)
(3.69281e-06 1.1671e-06 0)
(2.80931e-06 1.20495e-06 0)
(1.91403e-06 1.21521e-06 0)
(1.03354e-06 1.15622e-06 0)
(2.49285e-07 8.80129e-07 0)
(5.81248e-05 -5.35845e-07 0)
(5.7678e-05 4.4924e-07 0)
(5.69536e-05 9.43438e-07 0)
(5.58853e-05 1.12921e-06 0)
(5.48721e-05 1.22361e-06 0)
(5.37571e-05 1.27049e-06 0)
(5.26818e-05 1.31344e-06 0)
(5.15869e-05 1.34975e-06 0)
(5.05118e-05 1.38554e-06 0)
(4.94461e-05 1.4182e-06 0)
(4.83955e-05 1.45109e-06 0)
(4.7358e-05 1.48525e-06 0)
(4.6333e-05 1.52134e-06 0)
(4.53183e-05 1.56004e-06 0)
(4.43113e-05 1.60032e-06 0)
(4.33104e-05 1.64253e-06 0)
(4.23146e-05 1.6855e-06 0)
(4.13225e-05 1.72823e-06 0)
(4.03329e-05 1.77099e-06 0)
(3.93438e-05 1.81475e-06 0)
(3.83551e-05 1.85693e-06 0)
(3.73669e-05 1.89642e-06 0)
(3.63794e-05 1.93165e-06 0)
(3.5394e-05 1.96096e-06 0)
(3.44127e-05 1.98535e-06 0)
(3.34372e-05 2.00369e-06 0)
(3.24688e-05 2.01349e-06 0)
(3.15115e-05 2.0182e-06 0)
(3.05685e-05 2.01517e-06 0)
(2.96411e-05 2.00215e-06 0)
(2.87328e-05 1.9832e-06 0)
(2.78477e-05 1.95699e-06 0)
(2.69871e-05 1.92334e-06 0)
(2.61537e-05 1.88221e-06 0)
(2.53503e-05 1.83475e-06 0)
(2.45792e-05 1.78258e-06 0)
(2.38419e-05 1.72525e-06 0)
(2.31389e-05 1.66374e-06 0)
(2.24713e-05 1.59969e-06 0)
(2.18406e-05 1.53365e-06 0)
(2.12455e-05 1.46711e-06 0)
(2.06845e-05 1.39996e-06 0)
(2.01588e-05 1.33314e-06 0)
(1.96674e-05 1.26759e-06 0)
(1.92069e-05 1.20402e-06 0)
(1.87753e-05 1.14383e-06 0)
(1.83727e-05 1.08768e-06 0)
(1.79969e-05 1.03626e-06 0)
(1.76435e-05 9.88554e-07 0)
(1.73101e-05 9.43025e-07 0)
(1.69959e-05 9.00954e-07 0)
(1.66996e-05 8.63179e-07 0)
(1.64187e-05 8.26942e-07 0)
(1.61513e-05 7.91086e-07 0)
(1.58972e-05 7.54975e-07 0)
(1.56574e-05 7.19169e-07 0)
(1.54316e-05 6.85015e-07 0)
(1.52181e-05 6.50376e-07 0)
(1.50163e-05 6.13095e-07 0)
(1.48278e-05 5.74281e-07 0)
(1.46538e-05 5.35516e-07 0)
(1.44935e-05 4.97314e-07 0)
(1.43461e-05 4.57374e-07 0)
(1.42126e-05 4.14931e-07 0)
(1.40945e-05 3.71892e-07 0)
(1.39913e-05 3.31399e-07 0)
(1.3901e-05 2.9421e-07 0)
(1.38214e-05 2.59119e-07 0)
(1.37507e-05 2.26815e-07 0)
(1.36865e-05 1.99584e-07 0)
(1.36263e-05 1.7882e-07 0)
(1.35671e-05 1.63606e-07 0)
(1.35043e-05 1.54581e-07 0)
(1.34336e-05 1.53321e-07 0)
(1.33514e-05 1.60876e-07 0)
(1.32542e-05 1.78141e-07 0)
(1.31389e-05 2.03744e-07 0)
(1.30031e-05 2.35437e-07 0)
(1.28431e-05 2.7314e-07 0)
(1.26536e-05 3.20252e-07 0)
(1.24309e-05 3.75656e-07 0)
(1.21724e-05 4.39265e-07 0)
(1.18743e-05 5.11029e-07 0)
(1.15331e-05 5.891e-07 0)
(1.11462e-05 6.70849e-07 0)
(1.07136e-05 7.57046e-07 0)
(1.02353e-05 8.48007e-07 0)
(9.70755e-06 9.43165e-07 0)
(9.12848e-06 1.04135e-06 0)
(8.49908e-06 1.13756e-06 0)
(7.82108e-06 1.22869e-06 0)
(7.09759e-06 1.31425e-06 0)
(6.33238e-06 1.39453e-06 0)
(5.52655e-06 1.47154e-06 0)
(4.67988e-06 1.54592e-06 0)
(3.79848e-06 1.61068e-06 0)
(2.88651e-06 1.6595e-06 0)
(1.96652e-06 1.66792e-06 0)
(1.06638e-06 1.58462e-06 0)
(2.58323e-07 1.20264e-06 0)
(5.87948e-05 -6.05715e-07 0)
(5.83609e-05 7.54207e-07 0)
(5.76008e-05 1.41131e-06 0)
(5.64704e-05 1.66184e-06 0)
(5.5403e-05 1.77849e-06 0)
(5.42306e-05 1.83263e-06 0)
(5.31035e-05 1.87495e-06 0)
(5.19601e-05 1.90608e-06 0)
(5.08437e-05 1.9345e-06 0)
(4.97422e-05 1.95876e-06 0)
(4.86605e-05 1.98317e-06 0)
(4.75968e-05 2.00938e-06 0)
(4.65495e-05 2.03845e-06 0)
(4.55163e-05 2.07143e-06 0)
(4.44951e-05 2.1068e-06 0)
(4.3484e-05 2.14501e-06 0)
(4.24808e-05 2.18498e-06 0)
(4.14831e-05 2.22559e-06 0)
(4.04886e-05 2.2671e-06 0)
(3.94964e-05 2.30992e-06 0)
(3.85063e-05 2.35146e-06 0)
(3.75185e-05 2.38957e-06 0)
(3.65333e-05 2.42381e-06 0)
(3.55512e-05 2.45137e-06 0)
(3.45735e-05 2.47288e-06 0)
(3.36029e-05 2.48759e-06 0)
(3.26409e-05 2.49299e-06 0)
(3.16888e-05 2.49114e-06 0)
(3.07518e-05 2.4802e-06 0)
(2.98319e-05 2.45871e-06 0)
(2.89303e-05 2.42914e-06 0)
(2.80517e-05 2.39071e-06 0)
(2.7199e-05 2.34402e-06 0)
(2.63739e-05 2.28855e-06 0)
(2.55785e-05 2.22556e-06 0)
(2.48153e-05 2.15649e-06 0)
(2.40867e-05 2.08232e-06 0)
(2.33926e-05 2.00354e-06 0)
(2.2733e-05 1.92115e-06 0)
(2.21099e-05 1.83719e-06 0)
(2.1523e-05 1.75316e-06 0)
(2.09707e-05 1.66862e-06 0)
(2.04528e-05 1.58479e-06 0)
(1.99683e-05 1.50292e-06 0)
(1.95147e-05 1.42462e-06 0)
(1.90895e-05 1.35034e-06 0)
(1.8692e-05 1.28017e-06 0)
(1.83209e-05 1.21642e-06 0)
(1.79728e-05 1.15843e-06 0)
(1.76434e-05 1.1036e-06 0)
(1.73311e-05 1.05279e-06 0)
(1.7036e-05 1.00659e-06 0)
(1.67565e-05 9.63409e-07 0)
(1.6489e-05 9.21457e-07 0)
(1.62324e-05 8.79253e-07 0)
(1.59883e-05 8.36812e-07 0)
(1.57577e-05 7.96588e-07 0)
(1.55388e-05 7.56085e-07 0)
(1.53307e-05 7.12974e-07 0)
(1.51344e-05 6.67403e-07 0)
(1.49519e-05 6.21519e-07 0)
(1.47837e-05 5.76747e-07 0)
(1.46292e-05 5.30251e-07 0)
(1.44886e-05 4.80526e-07 0)
(1.43631e-05 4.29838e-07 0)
(1.42524e-05 3.82312e-07 0)
(1.41552e-05 3.39098e-07 0)
(1.40698e-05 2.98963e-07 0)
(1.39937e-05 2.62759e-07 0)
(1.39238e-05 2.32848e-07 0)
(1.38586e-05 2.10503e-07 0)
(1.37954e-05 1.95749e-07 0)
(1.37289e-05 1.89762e-07 0)
(1.36538e-05 1.9342e-07 0)
(1.35667e-05 2.0765e-07 0)
(1.34649e-05 2.33107e-07 0)
(1.33464e-05 2.67889e-07 0)
(1.32085e-05 3.10474e-07 0)
(1.30448e-05 3.6201e-07 0)
(1.28504e-05 4.25163e-07 0)
(1.26217e-05 4.97977e-07 0)
(1.23557e-05 5.80478e-07 0)
(1.20509e-05 6.72708e-07 0)
(1.17048e-05 7.72707e-07 0)
(1.13134e-05 8.77617e-07 0)
(1.08753e-05 9.86775e-07 0)
(1.03903e-05 1.10147e-06 0)
(9.85592e-06 1.22215e-06 0)
(9.27044e-06 1.34578e-06 0)
(8.63462e-06 1.46684e-06 0)
(7.94971e-06 1.58191e-06 0)
(7.21769e-06 1.68992e-06 0)
(6.44057e-06 1.79147e-06 0)
(5.62066e-06 1.88923e-06 0)
(4.75903e-06 1.983e-06 0)
(3.8605e-06 2.0643e-06 0)
(2.93251e-06 2.12273e-06 0)
(1.99979e-06 2.12746e-06 0)
(1.08647e-06 2.02073e-06 0)
(2.63428e-07 1.53262e-06 0)
(5.92207e-05 -6.64638e-07 0)
(5.87342e-05 1.06699e-06 0)
(5.79426e-05 1.90028e-06 0)
(5.67689e-05 2.21541e-06 0)
(5.56659e-05 2.35357e-06 0)
(5.44603e-05 2.41326e-06 0)
(5.33075e-05 2.45271e-06 0)
(5.21411e-05 2.47665e-06 0)
(5.10062e-05 2.49509e-06 0)
(4.98895e-05 2.50913e-06 0)
(4.87959e-05 2.52339e-06 0)
(4.77229e-05 2.53998e-06 0)
(4.66685e-05 2.5609e-06 0)
(4.56302e-05 2.58673e-06 0)
(4.4606e-05 2.61593e-06 0)
(4.35937e-05 2.64902e-06 0)
(4.25906e-05 2.68541e-06 0)
(4.15929e-05 2.72405e-06 0)
(4.05975e-05 2.76445e-06 0)
(3.96038e-05 2.80602e-06 0)
(3.86121e-05 2.84652e-06 0)
(3.76223e-05 2.88327e-06 0)
(3.6636e-05 2.91562e-06 0)
(3.56535e-05 2.94138e-06 0)
(3.46742e-05 2.96057e-06 0)
(3.37018e-05 2.97074e-06 0)
(3.27389e-05 2.9717e-06 0)
(3.17853e-05 2.96418e-06 0)
(3.08468e-05 2.9443e-06 0)
(2.99263e-05 2.91424e-06 0)
(2.90242e-05 2.87446e-06 0)
(2.81453e-05 2.8235e-06 0)
(2.72922e-05 2.76343e-06 0)
(2.64674e-05 2.69358e-06 0)
(2.56727e-05 2.615e-06 0)
(2.49106e-05 2.52897e-06 0)
(2.41832e-05 2.43758e-06 0)
(2.34907e-05 2.34157e-06 0)
(2.2833e-05 2.24106e-06 0)
(2.2212e-05 2.13911e-06 0)
(2.16278e-05 2.03706e-06 0)
(2.10789e-05 1.93535e-06 0)
(2.05639e-05 1.83456e-06 0)
(2.00821e-05 1.73642e-06 0)
(1.9632e-05 1.64322e-06 0)
(1.92108e-05 1.55512e-06 0)
(1.88159e-05 1.47171e-06 0)
(1.84463e-05 1.39545e-06 0)
(1.81005e-05 1.32683e-06 0)
(1.77743e-05 1.26325e-06 0)
(1.74638e-05 1.20447e-06 0)
(1.7169e-05 1.15014e-06 0)
(1.68893e-05 1.09998e-06 0)
(1.66218e-05 1.05245e-06 0)
(1.63642e-05 1.0052e-06 0)
(1.61172e-05 9.57208e-07 0)
(1.5882e-05 9.10588e-07 0)
(1.56584e-05 8.6431e-07 0)
(1.54459e-05 8.15816e-07 0)
(1.52445e-05 7.64142e-07 0)
(1.50558e-05 7.11202e-07 0)
(1.48819e-05 6.59177e-07 0)
(1.47235e-05 6.05563e-07 0)
(1.45803e-05 5.48448e-07 0)
(1.44521e-05 4.9032e-07 0)
(1.43382e-05 4.3573e-07 0)
(1.42384e-05 3.85954e-07 0)
(1.41518e-05 3.40127e-07 0)
(1.40754e-05 2.99918e-07 0)
(1.40054e-05 2.67395e-07 0)
(1.394e-05 2.42985e-07 0)
(1.38775e-05 2.28078e-07 0)
(1.38125e-05 2.25084e-07 0)
(1.3739e-05 2.3389e-07 0)
(1.36536e-05 2.54614e-07 0)
(1.35549e-05 2.87586e-07 0)
(1.34413e-05 3.30617e-07 0)
(1.33078e-05 3.84637e-07 0)
(1.31464e-05 4.51388e-07 0)
(1.29522e-05 5.3106e-07 0)
(1.27218e-05 6.22367e-07 0)
(1.24526e-05 7.24108e-07 0)
(1.21457e-05 8.35471e-07 0)
(1.18001e-05 9.56373e-07 0)
(1.14107e-05 1.08445e-06 0)
(1.09737e-05 1.21739e-06 0)
(1.04882e-05 1.35629e-06 0)
(9.95278e-06 1.50234e-06 0)
(9.36672e-06 1.65113e-06 0)
(8.73069e-06 1.79706e-06 0)
(8.04495e-06 1.93672e-06 0)
(7.31026e-06 2.06846e-06 0)
(6.52731e-06 2.193e-06 0)
(5.69781e-06 2.3126e-06 0)
(4.82382e-06 2.42691e-06 0)
(3.91241e-06 2.52497e-06 0)
(2.97361e-06 2.59111e-06 0)
(2.02936e-06 2.59282e-06 0)
(1.10201e-06 2.4635e-06 0)
(2.67083e-07 1.86782e-06 0)
(5.94839e-05 -7.00105e-07 0)
(5.8951e-05 1.39647e-06 0)
(5.81197e-05 2.4072e-06 0)
(5.6911e-05 2.78549e-06 0)
(5.57815e-05 2.94228e-06 0)
(5.45538e-05 3.00455e-06 0)
(5.33859e-05 3.03874e-06 0)
(5.22072e-05 3.05372e-06 0)
(5.10638e-05 3.06082e-06 0)
(4.99404e-05 3.06331e-06 0)
(4.88425e-05 3.06634e-06 0)
(4.77664e-05 3.07264e-06 0)
(4.671e-05 3.0847e-06 0)
(4.56708e-05 3.10273e-06 0)
(4.4646e-05 3.12543e-06 0)
(4.3633e-05 3.15309e-06 0)
(4.26296e-05 3.18563e-06 0)
(4.16321e-05 3.22234e-06 0)
(4.06374e-05 3.26182e-06 0)
(3.96442e-05 3.30251e-06 0)
(3.86523e-05 3.3421e-06 0)
(3.76622e-05 3.37787e-06 0)
(3.66739e-05 3.40851e-06 0)
(3.56881e-05 3.43254e-06 0)
(3.47066e-05 3.44946e-06 0)
(3.37318e-05 3.45535e-06 0)
(3.27654e-05 3.45178e-06 0)
(3.18094e-05 3.43853e-06 0)
(3.08684e-05 3.40974e-06 0)
(2.99444e-05 3.37111e-06 0)
(2.90394e-05 3.32096e-06 0)
(2.81571e-05 3.25752e-06 0)
(2.7301e-05 3.18387e-06 0)
(2.64739e-05 3.09931e-06 0)
(2.56772e-05 3.00501e-06 0)
(2.49132e-05 2.90199e-06 0)
(2.41846e-05 2.79291e-06 0)
(2.34917e-05 2.67935e-06 0)
(2.28343e-05 2.561e-06 0)
(2.22134e-05 2.44042e-06 0)
(2.16303e-05 2.31989e-06 0)
(2.10837e-05 2.20083e-06 0)
(2.05714e-05 2.0832e-06 0)
(2.00917e-05 1.96889e-06 0)
(1.96438e-05 1.86018e-06 0)
(1.92266e-05 1.75788e-06 0)
(1.88363e-05 1.6619e-06 0)
(1.84694e-05 1.57372e-06 0)
(1.81251e-05 1.49416e-06 0)
(1.78014e-05 1.42139e-06 0)
(1.74942e-05 1.35504e-06 0)
(1.72015e-05 1.29341e-06 0)
(1.69224e-05 1.23647e-06 0)
(1.66552e-05 1.18333e-06 0)
(1.6398e-05 1.13133e-06 0)
(1.61509e-05 1.07879e-06 0)
(1.59134e-05 1.02653e-06 0)
(1.56858e-05 9.74571e-07 0)
(1.54695e-05 9.20619e-07 0)
(1.52643e-05 8.6324e-07 0)
(1.50714e-05 8.03436e-07 0)
(1.48939e-05 7.43401e-07 0)
(1.47338e-05 6.81676e-07 0)
(1.45904e-05 6.16774e-07 0)
(1.44624e-05 5.51313e-07 0)
(1.43487e-05 4.89683e-07 0)
(1.42496e-05 4.3284e-07 0)
(1.41646e-05 3.80677e-07 0)
(1.40907e-05 3.36109e-07 0)
(1.4024e-05 3.00865e-07 0)
(1.39622e-05 2.74296e-07 0)
(1.39032e-05 2.58966e-07 0)
(1.38421e-05 2.5856e-07 0)
(1.37735e-05 2.72397e-07 0)
(1.36941e-05 2.99349e-07 0)
(1.36023e-05 3.39e-07 0)
(1.34947e-05 3.90534e-07 0)
(1.3365e-05 4.56938e-07 0)
(1.32072e-05 5.39232e-07 0)
(1.30172e-05 6.35825e-07 0)
(1.27918e-05 7.45839e-07 0)
(1.25285e-05 8.66863e-07 0)
(1.22266e-05 9.97226e-07 0)
(1.18842e-05 1.13872e-06 0)
(1.14973e-05 1.29002e-06 0)
(1.10623e-05 1.44728e-06 0)
(1.05782e-05 1.61084e-06 0)
(1.00438e-05 1.78222e-06 0)
(9.4582e-06 1.95627e-06 0)
(8.82134e-06 2.12735e-06 0)
(8.13436e-06 2.29182e-06 0)
(7.39855e-06 2.44803e-06 0)
(6.61124e-06 2.59783e-06 0)
(5.77288e-06 2.7411e-06 0)
(4.88986e-06 2.87602e-06 0)
(3.97114e-06 2.99042e-06 0)
(3.02152e-06 3.06549e-06 0)
(2.06079e-06 3.06598e-06 0)
(1.1188e-06 2.91235e-06 0)
(2.72167e-07 2.20804e-06 0)
(5.97253e-05 -7.1232e-07 0)
(5.91158e-05 1.75177e-06 0)
(5.82383e-05 2.93228e-06 0)
(5.69956e-05 3.3704e-06 0)
(5.58416e-05 3.54181e-06 0)
(5.45943e-05 3.60378e-06 0)
(5.34139e-05 3.6304e-06 0)
(5.22256e-05 3.63466e-06 0)
(5.10766e-05 3.62926e-06 0)
(4.99498e-05 3.61919e-06 0)
(4.88504e-05 3.61021e-06 0)
(4.7774e-05 3.60588e-06 0)
(4.67182e-05 3.60853e-06 0)
(4.56803e-05 3.61843e-06 0)
(4.46573e-05 3.6346e-06 0)
(4.36461e-05 3.65687e-06 0)
(4.2644e-05 3.68569e-06 0)
(4.16471e-05 3.72029e-06 0)
(4.06526e-05 3.75882e-06 0)
(3.96593e-05 3.79902e-06 0)
(3.86669e-05 3.83785e-06 0)
(3.76754e-05 3.87317e-06 0)
(3.66842e-05 3.90309e-06 0)
(3.56949e-05 3.92542e-06 0)
(3.47097e-05 3.93974e-06 0)
(3.37304e-05 3.94217e-06 0)
(3.27596e-05 3.93371e-06 0)
(3.18002e-05 3.91414e-06 0)
(3.08543e-05 3.87768e-06 0)
(2.99248e-05 3.82991e-06 0)
(2.90161e-05 3.76915e-06 0)
(2.81292e-05 3.69373e-06 0)
(2.72682e-05 3.60601e-06 0)
(2.64376e-05 3.50639e-06 0)
(2.5638e-05 3.39625e-06 0)
(2.48712e-05 3.27613e-06 0)
(2.41401e-05 3.14901e-06 0)
(2.34458e-05 3.01725e-06 0)
(2.2788e-05 2.88073e-06 0)
(2.21676e-05 2.7416e-06 0)
(2.15852e-05 2.60215e-06 0)
(2.10399e-05 2.46516e-06 0)
(2.05301e-05 2.33049e-06 0)
(2.00535e-05 2.20008e-06 0)
(1.96092e-05 2.07539e-06 0)
(1.91963e-05 1.95818e-06 0)
(1.8811e-05 1.84983e-06 0)
(1.84482e-05 1.75063e-06 0)
(1.81068e-05 1.66029e-06 0)
(1.7786e-05 1.57795e-06 0)
(1.74818e-05 1.50404e-06 0)
(1.71913e-05 1.43584e-06 0)
(1.69135e-05 1.37246e-06 0)
(1.66473e-05 1.31371e-06 0)
(1.6391e-05 1.25714e-06 0)
(1.61439e-05 1.20048e-06 0)
(1.59054e-05 1.14368e-06 0)
(1.56757e-05 1.08649e-06 0)
(1.54569e-05 1.02698e-06 0)
(1.52495e-05 9.63886e-07 0)
(1.50543e-05 8.97305e-07 0)
(1.48748e-05 8.28664e-07 0)
(1.47138e-05 7.58037e-07 0)
(1.45701e-05 6.84899e-07 0)
(1.44423e-05 6.11928e-07 0)
(1.43298e-05 5.42951e-07 0)
(1.42331e-05 4.78507e-07 0)
(1.41512e-05 4.19627e-07 0)
(1.40809e-05 3.70383e-07 0)
(1.40188e-05 3.31861e-07 0)
(1.39629e-05 3.03088e-07 0)
(1.39092e-05 2.87603e-07 0)
(1.38535e-05 2.89411e-07 0)
(1.37917e-05 3.07545e-07 0)
(1.37207e-05 3.40056e-07 0)
(1.36376e-05 3.86582e-07 0)
(1.35366e-05 4.481e-07 0)
(1.34116e-05 5.27409e-07 0)
(1.3259e-05 6.24416e-07 0)
(1.30755e-05 7.37486e-07 0)
(1.28575e-05 8.65643e-07 0)
(1.26025e-05 1.00578e-06 0)
(1.23082e-05 1.15625e-06 0)
(1.19708e-05 1.31941e-06 0)
(1.15875e-05 1.49411e-06 0)
(1.11564e-05 1.67577e-06 0)
(1.06753e-05 1.86447e-06 0)
(1.01423e-05 2.06157e-06 0)
(9.5567e-06 2.26164e-06 0)
(8.91774e-06 2.45887e-06 0)
(8.22637e-06 2.64847e-06 0)
(7.48379e-06 2.82978e-06 0)
(6.68856e-06 3.00611e-06 0)
(5.8442e-06 3.17311e-06 0)
(4.95651e-06 3.32825e-06 0)
(4.03122e-06 3.45968e-06 0)
(3.07059e-06 3.54696e-06 0)
(2.09641e-06 3.54701e-06 0)
(1.14044e-06 3.36758e-06 0)
(2.78551e-07 2.55442e-06 0)
(5.99158e-05 -6.8286e-07 0)
(5.92641e-05 2.13304e-06 0)
(5.83438e-05 3.47625e-06 0)
(5.70657e-05 3.97036e-06 0)
(5.58849e-05 4.15258e-06 0)
(5.46158e-05 4.2111e-06 0)
(5.34221e-05 4.22746e-06 0)
(5.22251e-05 4.21891e-06 0)
(5.10721e-05 4.19944e-06 0)
(4.99443e-05 4.17559e-06 0)
(4.88461e-05 4.15379e-06 0)
(4.77727e-05 4.13825e-06 0)
(4.67209e-05 4.13096e-06 0)
(4.56873e-05 4.13268e-06 0)
(4.46678e-05 4.1425e-06 0)
(4.36592e-05 4.15974e-06 0)
(4.26581e-05 4.18545e-06 0)
(4.1661e-05 4.21831e-06 0)
(4.06659e-05 4.25595e-06 0)
(3.96718e-05 4.29587e-06 0)
(3.86779e-05 4.33428e-06 0)
(3.7684e-05 4.36962e-06 0)
(3.66896e-05 4.39946e-06 0)
(3.56964e-05 4.42025e-06 0)
(3.47065e-05 4.43236e-06 0)
(3.37226e-05 4.43119e-06 0)
(3.27469e-05 4.41801e-06 0)
(3.17817e-05 4.39203e-06 0)
(3.08302e-05 4.34846e-06 0)
(2.98949e-05 4.29129e-06 0)
(2.89799e-05 4.21966e-06 0)
(2.80869e-05 4.13284e-06 0)
(2.72204e-05 4.03032e-06 0)
(2.6385e-05 3.91534e-06 0)
(2.55806e-05 3.78934e-06 0)
(2.48092e-05 3.65204e-06 0)
(2.4074e-05 3.50646e-06 0)
(2.33764e-05 3.35611e-06 0)
(2.27165e-05 3.20075e-06 0)
(2.2096e-05 3.04236e-06 0)
(2.15148e-05 2.88387e-06 0)
(2.09709e-05 2.72856e-06 0)
(2.04633e-05 2.57643e-06 0)
(1.99904e-05 2.4293e-06 0)
(1.95506e-05 2.28843e-06 0)
(1.91421e-05 2.15621e-06 0)
(1.87613e-05 2.03537e-06 0)
(1.84035e-05 1.92533e-06 0)
(1.80671e-05 1.82429e-06 0)
(1.7751e-05 1.73251e-06 0)
(1.74516e-05 1.65122e-06 0)
(1.71647e-05 1.57716e-06 0)
(1.68883e-05 1.50786e-06 0)
(1.66226e-05 1.44371e-06 0)
(1.63664e-05 1.38285e-06 0)
(1.6119e-05 1.3225e-06 0)
(1.58796e-05 1.26147e-06 0)
(1.56491e-05 1.19916e-06 0)
(1.54298e-05 1.13373e-06 0)
(1.52225e-05 1.06494e-06 0)
(1.5028e-05 9.91645e-07 0)
(1.48484e-05 9.14451e-07 0)
(1.46863e-05 8.34834e-07 0)
(1.45417e-05 7.53303e-07 0)
(1.44136e-05 6.72268e-07 0)
(1.43022e-05 5.9521e-07 0)
(1.42077e-05 5.22714e-07 0)
(1.41282e-05 4.57029e-07 0)
(1.4061e-05 4.02561e-07 0)
(1.40042e-05 3.59902e-07 0)
(1.39547e-05 3.28776e-07 0)
(1.39076e-05 3.13291e-07 0)
(1.38589e-05 3.16908e-07 0)
(1.38057e-05 3.38382e-07 0)
(1.3745e-05 3.75685e-07 0)
(1.36718e-05 4.29906e-07 0)
(1.35787e-05 5.02581e-07 0)
(1.34606e-05 5.94935e-07 0)
(1.33151e-05 7.06196e-07 0)
(1.31388e-05 8.35548e-07 0)
(1.29281e-05 9.81524e-07 0)
(1.26812e-05 1.14051e-06 0)
(1.23946e-05 1.31185e-06 0)
(1.20634e-05 1.49779e-06 0)
(1.16854e-05 1.69598e-06 0)
(1.12591e-05 1.90215e-06 0)
(1.07812e-05 2.11695e-06 0)
(1.02498e-05 2.34047e-06 0)
(9.66473e-06 2.56736e-06 0)
(9.02485e-06 2.79182e-06 0)
(8.33013e-06 3.00786e-06 0)
(7.57948e-06 3.21607e-06 0)
(6.77478e-06 3.41819e-06 0)
(5.92345e-06 3.6077e-06 0)
(5.02878e-06 3.78362e-06 0)
(4.09384e-06 3.93373e-06 0)
(3.12145e-06 4.03488e-06 0)
(2.13677e-06 4.03373e-06 0)
(1.16581e-06 3.83114e-06 0)
(2.85193e-07 2.90829e-06 0)
(5.99935e-05 -6.68564e-07 0)
(5.93956e-05 2.5241e-06 0)
(5.84478e-05 4.03774e-06 0)
(5.71329e-05 4.5864e-06 0)
(5.59219e-05 4.77629e-06 0)
(5.46285e-05 4.82771e-06 0)
(5.34197e-05 4.83047e-06 0)
(5.22133e-05 4.80633e-06 0)
(5.10566e-05 4.77071e-06 0)
(4.99284e-05 4.73163e-06 0)
(4.88324e-05 4.69611e-06 0)
(4.77626e-05 4.66848e-06 0)
(4.67154e-05 4.65097e-06 0)
(4.56868e-05 4.64466e-06 0)
(4.46723e-05 4.64831e-06 0)
(4.3668e-05 4.66115e-06 0)
(4.26702e-05 4.68444e-06 0)
(4.16749e-05 4.71625e-06 0)
(4.06807e-05 4.75311e-06 0)
(3.96867e-05 4.79304e-06 0)
(3.86918e-05 4.83171e-06 0)
(3.76956e-05 4.86735e-06 0)
(3.6699e-05 4.89717e-06 0)
(3.57031e-05 4.91694e-06 0)
(3.47091e-05 4.92733e-06 0)
(3.37206e-05 4.92228e-06 0)
(3.27396e-05 4.90515e-06 0)
(3.17684e-05 4.87291e-06 0)
(3.08098e-05 4.82239e-06 0)
(2.9867e-05 4.75605e-06 0)
(2.89443e-05 4.67378e-06 0)
(2.80441e-05 4.57511e-06 0)
(2.71703e-05 4.45802e-06 0)
(2.63263e-05 4.3276e-06 0)
(2.55143e-05 4.18543e-06 0)
(2.47366e-05 4.03064e-06 0)
(2.39955e-05 3.86622e-06 0)
(2.32934e-05 3.69658e-06 0)
(2.26316e-05 3.52151e-06 0)
(2.20106e-05 3.34277e-06 0)
(2.14297e-05 3.16508e-06 0)
(2.08877e-05 2.99077e-06 0)
(2.03839e-05 2.82045e-06 0)
(1.99162e-05 2.65615e-06 0)
(1.94811e-05 2.49933e-06 0)
(1.90771e-05 2.35199e-06 0)
(1.87019e-05 2.2181e-06 0)
(1.83509e-05 2.097e-06 0)
(1.80204e-05 1.98579e-06 0)
(1.77084e-05 1.8849e-06 0)
(1.7413e-05 1.7963e-06 0)
(1.713e-05 1.71696e-06 0)
(1.6856e-05 1.64275e-06 0)
(1.65908e-05 1.57378e-06 0)
(1.63343e-05 1.50869e-06 0)
(1.60867e-05 1.44477e-06 0)
(1.58474e-05 1.3795e-06 0)
(1.56163e-05 1.31217e-06 0)
(1.53956e-05 1.24102e-06 0)
(1.51872e-05 1.16599e-06 0)
(1.49923e-05 1.08573e-06 0)
(1.48126e-05 1.00041e-06 0)
(1.46499e-05 9.12078e-07 0)
(1.45049e-05 8.21918e-07 0)
(1.43773e-05 7.32336e-07 0)
(1.42673e-05 6.46469e-07 0)
(1.41752e-05 5.65723e-07 0)
(1.40984e-05 4.93095e-07 0)
(1.40355e-05 4.32451e-07 0)
(1.39848e-05 3.84819e-07 0)
(1.39422e-05 3.51125e-07 0)
(1.39026e-05 3.35293e-07 0)
(1.38628e-05 3.40006e-07 0)
(1.38202e-05 3.64014e-07 0)
(1.37709e-05 4.05949e-07 0)
(1.37081e-05 4.68531e-07 0)
(1.36243e-05 5.52954e-07 0)
(1.35151e-05 6.58418e-07 0)
(1.33781e-05 7.84111e-07 0)
(1.32097e-05 9.29953e-07 0)
(1.30072e-05 1.09347e-06 0)
(1.27691e-05 1.27107e-06 0)
(1.24905e-05 1.46386e-06 0)
(1.21661e-05 1.67309e-06 0)
(1.17946e-05 1.89494e-06 0)
(1.13733e-05 2.12643e-06 0)
(1.08985e-05 2.36819e-06 0)
(1.03694e-05 2.61861e-06 0)
(9.78549e-06 2.87308e-06 0)
(9.14548e-06 3.12554e-06 0)
(8.44707e-06 3.37018e-06 0)
(7.68808e-06 3.60738e-06 0)
(6.87394e-06 3.83449e-06 0)
(6.01346e-06 4.04623e-06 0)
(5.10836e-06 4.24376e-06 0)
(4.16096e-06 4.4137e-06 0)
(3.17826e-06 4.52808e-06 0)
(2.18256e-06 4.52641e-06 0)
(1.1935e-06 4.30444e-06 0)
(2.92977e-07 3.27069e-06 0)
(6.0106e-05 -7.15245e-07 0)
(5.95429e-05 2.91611e-06 0)
(5.85543e-05 4.61778e-06 0)
(5.71946e-05 5.22051e-06 0)
(5.59501e-05 5.41409e-06 0)
(5.46321e-05 5.45407e-06 0)
(5.34089e-05 5.4396e-06 0)
(5.21935e-05 5.39687e-06 0)
(5.10331e-05 5.34291e-06 0)
(4.9905e-05 5.28702e-06 0)
(4.88116e-05 5.23676e-06 0)
(4.7746e-05 5.19642e-06 0)
(4.67037e-05 5.16859e-06 0)
(4.56803e-05 5.15418e-06 0)
(4.46709e-05 5.15162e-06 0)
(4.3671e-05 5.16064e-06 0)
(4.26766e-05 5.18185e-06 0)
(4.16843e-05 5.21312e-06 0)
(4.06922e-05 5.24979e-06 0)
(3.96988e-05 5.29018e-06 0)
(3.87033e-05 5.32987e-06 0)
(3.77053e-05 5.36621e-06 0)
(3.6706e-05 5.39609e-06 0)
(3.57064e-05 5.41542e-06 0)
(3.47079e-05 5.42452e-06 0)
(3.37139e-05 5.41605e-06 0)
(3.27264e-05 5.39535e-06 0)
(3.17476e-05 5.35744e-06 0)
(3.07805e-05 5.3004e-06 0)
(2.98289e-05 5.22489e-06 0)
(2.88969e-05 5.13231e-06 0)
(2.79884e-05 5.02088e-06 0)
(2.71071e-05 4.88985e-06 0)
(2.62551e-05 4.74399e-06 0)
(2.54358e-05 4.58508e-06 0)
(2.46521e-05 4.41223e-06 0)
(2.39058e-05 4.22863e-06 0)
(2.32002e-05 4.03848e-06 0)
(2.25365e-05 3.84267e-06 0)
(2.19143e-05 3.64341e-06 0)
(2.1334e-05 3.44591e-06 0)
(2.07949e-05 3.25143e-06 0)
(2.02954e-05 3.06198e-06 0)
(1.9833e-05 2.88018e-06 0)
(1.94046e-05 2.70751e-06 0)
(1.90068e-05 2.54515e-06 0)
(1.86372e-05 2.3978e-06 0)
(1.82926e-05 2.26527e-06 0)
(1.79688e-05 2.14469e-06 0)
(1.76617e-05 2.03548e-06 0)
(1.73694e-05 1.93975e-06 0)
(1.70895e-05 1.85517e-06 0)
(1.68182e-05 1.77687e-06 0)
(1.65542e-05 1.70393e-06 0)
(1.6298e-05 1.63452e-06 0)
(1.60505e-05 1.56682e-06 0)
(1.58112e-05 1.49753e-06 0)
(1.55793e-05 1.42582e-06 0)
(1.53568e-05 1.34934e-06 0)
(1.51469e-05 1.26737e-06 0)
(1.49513e-05 1.17982e-06 0)
(1.47709e-05 1.08663e-06 0)
(1.46071e-05 9.89596e-07 0)
(1.44612e-05 8.90534e-07 0)
(1.43337e-05 7.92029e-07 0)
(1.42251e-05 6.96832e-07 0)
(1.41355e-05 6.07381e-07 0)
(1.40632e-05 5.27078e-07 0)
(1.40064e-05 4.59407e-07 0)
(1.39628e-05 4.06287e-07 0)
(1.39279e-05 3.69671e-07 0)
(1.38972e-05 3.52757e-07 0)
(1.38681e-05 3.57786e-07 0)
(1.38375e-05 3.83719e-07 0)
(1.37999e-05 4.30651e-07 0)
(1.37478e-05 5.02148e-07 0)
(1.36745e-05 5.9837e-07 0)
(1.35758e-05 7.17169e-07 0)
(1.34483e-05 8.57779e-07 0)
(1.32891e-05 1.0201e-06 0)
(1.30967e-05 1.20075e-06 0)
(1.28682e-05 1.39724e-06 0)
(1.25977e-05 1.61214e-06 0)
(1.22808e-05 1.84474e-06 0)
(1.19162e-05 2.09081e-06 0)
(1.14998e-05 2.34872e-06 0)
(1.10287e-05 2.61783e-06 0)
(1.05026e-05 2.89569e-06 0)
(9.92036e-06 3.1785e-06 0)
(9.27994e-06 3.46006e-06 0)
(8.57714e-06 3.73582e-06 0)
(7.81081e-06 4.00311e-06 0)
(6.98746e-06 4.25575e-06 0)
(6.11514e-06 4.49035e-06 0)
(5.19599e-06 4.71043e-06 0)
(4.23428e-06 4.90006e-06 0)
(3.24121e-06 5.02577e-06 0)
(2.23061e-06 5.02787e-06 0)
(1.22049e-06 4.78757e-06 0)
(3.00927e-07 3.64171e-06 0)
(6.03818e-05 -7.61558e-07 0)
(5.97315e-05 3.32787e-06 0)
(5.86736e-05 5.22401e-06 0)
(5.72569e-05 5.87644e-06 0)
(5.59736e-05 6.06734e-06 0)
(5.46284e-05 6.09038e-06 0)
(5.33897e-05 6.05478e-06 0)
(5.21653e-05 5.99041e-06 0)
(5.10018e-05 5.91578e-06 0)
(4.98748e-05 5.84139e-06 0)
(4.87856e-05 5.77524e-06 0)
(4.77259e-05 5.72172e-06 0)
(4.66905e-05 5.6834e-06 0)
(4.56738e-05 5.66092e-06 0)
(4.46702e-05 5.65251e-06 0)
(4.36751e-05 5.65824e-06 0)
(4.26839e-05 5.67787e-06 0)
(4.16943e-05 5.70845e-06 0)
(4.07041e-05 5.74621e-06 0)
(3.97105e-05 5.78732e-06 0)
(3.87142e-05 5.82842e-06 0)
(3.77145e-05 5.86631e-06 0)
(3.67118e-05 5.89677e-06 0)
(3.57075e-05 5.91627e-06 0)
(3.47035e-05 5.92429e-06 0)
(3.37024e-05 5.91345e-06 0)
(3.27064e-05 5.88939e-06 0)
(3.17188e-05 5.84633e-06 0)
(3.0742e-05 5.78313e-06 0)
(2.97801e-05 5.69856e-06 0)
(2.88386e-05 5.59528e-06 0)
(2.79212e-05 5.47086e-06 0)
(2.70306e-05 5.32585e-06 0)
(2.61705e-05 5.16408e-06 0)
(2.53448e-05 4.98768e-06 0)
(2.45561e-05 4.79636e-06 0)
(2.38055e-05 4.59305e-06 0)
(2.30966e-05 4.3817e-06 0)
(2.24314e-05 4.16435e-06 0)
(2.18088e-05 3.94431e-06 0)
(2.12291e-05 3.72585e-06 0)
(2.06925e-05 3.51039e-06 0)
(2.01968e-05 3.30134e-06 0)
(1.97393e-05 3.1013e-06 0)
(1.93175e-05 2.91202e-06 0)
(1.89276e-05 2.73494e-06 0)
(1.85653e-05 2.57438e-06 0)
(1.82275e-05 2.43031e-06 0)
(1.79104e-05 2.3005e-06 0)
(1.76094e-05 2.18373e-06 0)
(1.73228e-05 2.08115e-06 0)
(1.7048e-05 1.99141e-06 0)
(1.67813e-05 1.90957e-06 0)
(1.65207e-05 1.83327e-06 0)
(1.62661e-05 1.75989e-06 0)
(1.60183e-05 1.68894e-06 0)
(1.57777e-05 1.61609e-06 0)
(1.55441e-05 1.54034e-06 0)
(1.53194e-05 1.45838e-06 0)
(1.51068e-05 1.36964e-06 0)
(1.49082e-05 1.27476e-06 0)
(1.47247e-05 1.17387e-06 0)
(1.4558e-05 1.06799e-06 0)
(1.44103e-05 9.59511e-07 0)
(1.42832e-05 8.51203e-07 0)
(1.41769e-05 7.46042e-07 0)
(1.4091e-05 6.47081e-07 0)
(1.40243e-05 5.58102e-07 0)
(1.39746e-05 4.82844e-07 0)
(1.39386e-05 4.2393e-07 0)
(1.39122e-05 3.83833e-07 0)
(1.38918e-05 3.64865e-07 0)
(1.3875e-05 3.69289e-07 0)
(1.38575e-05 3.97074e-07 0)
(1.38324e-05 4.49604e-07 0)
(1.37921e-05 5.30301e-07 0)
(1.37309e-05 6.38179e-07 0)
(1.36438e-05 7.70751e-07 0)
(1.35269e-05 9.26666e-07 0)
(1.33785e-05 1.10506e-06 0)
(1.31974e-05 1.30263e-06 0)
(1.29788e-05 1.51899e-06 0)
(1.27163e-05 1.75646e-06 0)
(1.24076e-05 2.01246e-06 0)
(1.20498e-05 2.28368e-06 0)
(1.16387e-05 2.56875e-06 0)
(1.11723e-05 2.86545e-06 0)
(1.06496e-05 3.17151e-06 0)
(1.00692e-05 3.4834e-06 0)
(9.42825e-06 3.79562e-06 0)
(8.72199e-06 4.10426e-06 0)
(7.95029e-06 4.40252e-06 0)
(7.11769e-06 4.68294e-06 0)
(6.23043e-06 4.94201e-06 0)
(5.29392e-06 5.18519e-06 0)
(4.31662e-06 5.39329e-06 0)
(3.30917e-06 5.52954e-06 0)
(2.27983e-06 5.53985e-06 0)
(1.2448e-06 5.28185e-06 0)
(3.05873e-07 4.02025e-06 0)
(6.06816e-05 -7.67644e-07 0)
(5.99323e-05 3.77731e-06 0)
(5.87987e-05 5.86373e-06 0)
(5.73191e-05 6.55809e-06 0)
(5.59916e-05 6.7385e-06 0)
(5.46156e-05 6.73788e-06 0)
(5.336e-05 6.67635e-06 0)
(5.21271e-05 6.58684e-06 0)
(5.09618e-05 6.48881e-06 0)
(4.98375e-05 6.39411e-06 0)
(4.8754e-05 6.31086e-06 0)
(4.77021e-05 6.2434e-06 0)
(4.66756e-05 6.19423e-06 0)
(4.56681e-05 6.16382e-06 0)
(4.46729e-05 6.15035e-06 0)
(4.36847e-05 6.15315e-06 0)
(4.26994e-05 6.17208e-06 0)
(4.17133e-05 6.20247e-06 0)
(4.07251e-05 6.24199e-06 0)
(3.97327e-05 6.28462e-06 0)
(3.87354e-05 6.32783e-06 0)
(3.77329e-05 6.36792e-06 0)
(3.67256e-05 6.3999e-06 0)
(3.57149e-05 6.4203e-06 0)
(3.47029e-05 6.42785e-06 0)
(3.36922e-05 6.41541e-06 0)
(3.26864e-05 6.38801e-06 0)
(3.16886e-05 6.34021e-06 0)
(3.07011e-05 6.27092e-06 0)
(2.97289e-05 6.17743e-06 0)
(2.87767e-05 6.06298e-06 0)
(2.78487e-05 5.92566e-06 0)
(2.69486e-05 5.76633e-06 0)
(2.60794e-05 5.5882e-06 0)
(2.52451e-05 5.39348e-06 0)
(2.44498e-05 5.18279e-06 0)
(2.36952e-05 4.95924e-06 0)
(2.29832e-05 4.72629e-06 0)
(2.23156e-05 4.48676e-06 0)
(2.16929e-05 4.24501e-06 0)
(2.11151e-05 4.00455e-06 0)
(2.05811e-05 3.76779e-06 0)
(2.0089e-05 3.53857e-06 0)
(1.9637e-05 3.31953e-06 0)
(1.92218e-05 3.11294e-06 0)
(1.88389e-05 2.92094e-06 0)
(1.8484e-05 2.74727e-06 0)
(1.81538e-05 2.5918e-06 0)
(1.78445e-05 2.4526e-06 0)
(1.75517e-05 2.3285e-06 0)
(1.72721e-05 2.21965e-06 0)
(1.7003e-05 2.12503e-06 0)
(1.67413e-05 2.04004e-06 0)
(1.64846e-05 1.96113e-06 0)
(1.62315e-05 1.88517e-06 0)
(1.59829e-05 1.81156e-06 0)
(1.57408e-05 1.7356e-06 0)
(1.55053e-05 1.65591e-06 0)
(1.52777e-05 1.56877e-06 0)
(1.50613e-05 1.47373e-06 0)
(1.48586e-05 1.37143e-06 0)
(1.4672e-05 1.26257e-06 0)
(1.45029e-05 1.14769e-06 0)
(1.43536e-05 1.02891e-06 0)
(1.42268e-05 9.09555e-07 0)
(1.41229e-05 7.93656e-07 0)
(1.40416e-05 6.842e-07 0)
(1.39816e-05 5.85559e-07 0)
(1.39398e-05 5.02404e-07 0)
(1.39121e-05 4.37471e-07 0)
(1.38956e-05 3.92897e-07 0)
(1.38877e-05 3.70826e-07 0)
(1.38847e-05 3.74073e-07 0)
(1.38805e-05 4.04002e-07 0)
(1.38678e-05 4.62404e-07 0)
(1.38399e-05 5.52153e-07 0)
(1.37914e-05 6.71709e-07 0)
(1.37175e-05 8.18395e-07 0)
(1.36141e-05 9.89718e-07 0)
(1.34794e-05 1.18377e-06 0)
(1.33104e-05 1.39902e-06 0)
(1.3101e-05 1.63649e-06 0)
(1.28469e-05 1.89656e-06 0)
(1.25464e-05 2.1763e-06 0)
(1.21955e-05 2.47351e-06 0)
(1.17904e-05 2.7861e-06 0)
(1.13289e-05 3.11099e-06 0)
(1.08094e-05 3.44606e-06 0)
(1.02305e-05 3.78778e-06 0)
(9.58869e-06 4.13207e-06 0)
(8.88028e-06 4.47424e-06 0)
(8.10559e-06 4.80467e-06 0)
(7.26677e-06 5.11562e-06 0)
(6.36677e-06 5.40199e-06 0)
(5.41602e-06 5.66733e-06 0)
(4.42521e-06 5.89426e-06 0)
(3.39437e-06 6.04463e-06 0)
(2.33696e-06 6.06342e-06 0)
(1.27905e-06 5.78811e-06 0)
(3.17087e-07 4.40777e-06 0)
(6.09428e-05 -7.48268e-07 0)
(6.01163e-05 4.26703e-06 0)
(5.89064e-05 6.53869e-06 0)
(5.73646e-05 7.26652e-06 0)
(5.59946e-05 7.42847e-06 0)
(5.4589e-05 7.39719e-06 0)
(5.33174e-05 7.30419e-06 0)
(5.20773e-05 7.18564e-06 0)
(5.09115e-05 7.06145e-06 0)
(4.97911e-05 6.9445e-06 0)
(4.87147e-05 6.84283e-06 0)
(4.76719e-05 6.76054e-06 0)
(4.66554e-05 6.70022e-06 0)
(4.56582e-05 6.66188e-06 0)
(4.46726e-05 6.64406e-06 0)
(4.36927e-05 6.64431e-06 0)
(4.27142e-05 6.66347e-06 0)
(4.17336e-05 6.69485e-06 0)
(4.07486e-05 6.73639e-06 0)
(3.97575e-05 6.78199e-06 0)
(3.87596e-05 6.82822e-06 0)
(3.77544e-05 6.8713e-06 0)
(3.67429e-05 6.90572e-06 0)
(3.57262e-05 6.92786e-06 0)
(3.47067e-05 6.93578e-06 0)
(3.36866e-05 6.92243e-06 0)
(3.267e-05 6.89172e-06 0)
(3.16608e-05 6.83979e-06 0)
(3.06615e-05 6.76407e-06 0)
(2.96774e-05 6.66196e-06 0)
(2.8713e-05 6.53649e-06 0)
(2.77722e-05 6.3862e-06 0)
(2.68602e-05 6.21167e-06 0)
(2.59811e-05 6.01694e-06 0)
(2.51375e-05 5.8035e-06 0)
(2.43342e-05 5.57223e-06 0)
(2.35742e-05 5.32724e-06 0)
(2.28592e-05 5.07224e-06 0)
(2.21896e-05 4.81002e-06 0)
(2.15665e-05 4.54525e-06 0)
(2.09906e-05 4.28188e-06 0)
(2.04604e-05 4.02334e-06 0)
(1.99735e-05 3.77334e-06 0)
(1.95278e-05 3.53458e-06 0)
(1.91197e-05 3.31029e-06 0)
(1.87445e-05 3.10316e-06 0)
(1.83974e-05 2.91632e-06 0)
(1.8075e-05 2.74931e-06 0)
(1.7774e-05 2.60049e-06 0)
(1.74897e-05 2.46914e-06 0)
(1.72178e-05 2.35493e-06 0)
(1.69546e-05 2.25584e-06 0)
(1.66976e-05 2.16816e-06 0)
(1.64446e-05 2.08743e-06 0)
(1.61936e-05 2.01035e-06 0)
(1.59447e-05 1.93463e-06 0)
(1.57009e-05 1.85622e-06 0)
(1.54631e-05 1.77293e-06 0)
(1.52316e-05 1.68125e-06 0)
(1.50101e-05 1.58033e-06 0)
(1.48021e-05 1.47044e-06 0)
(1.46112e-05 1.35282e-06 0)
(1.44395e-05 1.22834e-06 0)
(1.42892e-05 1.09855e-06 0)
(1.41627e-05 9.67246e-07 0)
(1.40614e-05 8.39434e-07 0)
(1.3985e-05 7.1832e-07 0)
(1.3932e-05 6.09062e-07 0)
(1.38993e-05 5.17365e-07 0)
(1.38832e-05 4.45647e-07 0)
(1.38806e-05 3.95429e-07 0)
(1.38881e-05 3.6968e-07 0)
(1.38997e-05 3.72203e-07 0)
(1.39081e-05 4.0505e-07 0)
(1.39063e-05 4.69752e-07 0)
(1.38894e-05 5.6791e-07 0)
(1.38537e-05 6.98316e-07 0)
(1.37952e-05 8.58231e-07 0)
(1.37092e-05 1.04454e-06 0)
(1.35908e-05 1.25529e-06 0)
(1.34341e-05 1.49021e-06 0)
(1.32343e-05 1.74957e-06 0)
(1.29895e-05 2.03227e-06 0)
(1.26972e-05 2.33641e-06 0)
(1.23536e-05 2.66005e-06 0)
(1.19552e-05 3.00046e-06 0)
(1.1499e-05 3.35455e-06 0)
(1.09827e-05 3.71949e-06 0)
(1.04038e-05 4.09248e-06 0)
(9.7585e-06 4.47002e-06 0)
(9.04577e-06 4.84554e-06 0)
(8.26721e-06 5.20887e-06 0)
(7.42425e-06 5.55164e-06 0)
(6.51774e-06 5.86802e-06 0)
(5.5551e-06 6.15613e-06 0)
(4.54527e-06 6.40519e-06 0)
(3.48911e-06 6.57391e-06 0)
(2.40367e-06 6.60036e-06 0)
(1.32341e-06 6.30537e-06 0)
(3.34206e-07 4.80904e-06 0)
(6.1147e-05 -7.17051e-07 0)
(6.02718e-05 4.79279e-06 0)
(5.89906e-05 7.24799e-06 0)
(5.73861e-05 8.0016e-06 0)
(5.59725e-05 8.13663e-06 0)
(5.45384e-05 8.06761e-06 0)
(5.3253e-05 7.9372e-06 0)
(5.20093e-05 7.78528e-06 0)
(5.08468e-05 7.6324e-06 0)
(4.97337e-05 7.49146e-06 0)
(4.8667e-05 7.37003e-06 0)
(4.76357e-05 7.27228e-06 0)
(4.66309e-05 7.20079e-06 0)
(4.56451e-05 7.15456e-06 0)
(4.46703e-05 7.13287e-06 0)
(4.36994e-05 7.13152e-06 0)
(4.27283e-05 7.15153e-06 0)
(4.17541e-05 7.18499e-06 0)
(4.0773e-05 7.22933e-06 0)
(3.97833e-05 7.27911e-06 0)
(3.87852e-05 7.32923e-06 0)
(3.77775e-05 7.37642e-06 0)
(3.67614e-05 7.41409e-06 0)
(3.57384e-05 7.43891e-06 0)
(3.47109e-05 7.448e-06 0)
(3.36806e-05 7.43475e-06 0)
(3.26519e-05 7.40133e-06 0)
(3.16296e-05 7.34571e-06 0)
(3.06165e-05 7.26368e-06 0)
(2.96188e-05 7.15278e-06 0)
(2.86416e-05 7.01643e-06 0)
(2.76877e-05 6.8534e-06 0)
(2.67628e-05 6.66277e-06 0)
(2.58724e-05 6.45047e-06 0)
(2.50195e-05 6.21816e-06 0)
(2.42077e-05 5.96551e-06 0)
(2.34412e-05 5.69762e-06 0)
(2.27221e-05 5.41958e-06 0)
(2.20507e-05 5.13391e-06 0)
(2.14278e-05 4.8451e-06 0)
(2.08541e-05 4.55774e-06 0)
(2.03283e-05 4.27641e-06 0)
(1.98477e-05 4.00491e-06 0)
(1.94091e-05 3.74614e-06 0)
(1.90086e-05 3.50385e-06 0)
(1.86417e-05 3.28123e-06 0)
(1.83039e-05 3.08106e-06 0)
(1.79911e-05 2.90251e-06 0)
(1.76992e-05 2.74401e-06 0)
(1.74238e-05 2.60556e-06 0)
(1.716e-05 2.48643e-06 0)
(1.69035e-05 2.38383e-06 0)
(1.66515e-05 2.29408e-06 0)
(1.64024e-05 2.21214e-06 0)
(1.61538e-05 2.13472e-06 0)
(1.59052e-05 2.05793e-06 0)
(1.566e-05 1.97812e-06 0)
(1.54191e-05 1.89186e-06 0)
(1.5183e-05 1.7963e-06 0)
(1.49561e-05 1.68974e-06 0)
(1.47423e-05 1.57232e-06 0)
(1.4546e-05 1.44514e-06 0)
(1.4371e-05 1.30985e-06 0)
(1.42193e-05 1.16827e-06 0)
(1.40929e-05 1.02443e-06 0)
(1.39938e-05 8.8324e-07 0)
(1.39225e-05 7.49306e-07 0)
(1.38768e-05 6.28533e-07 0)
(1.3854e-05 5.26801e-07 0)
(1.38514e-05 4.46823e-07 0)
(1.38642e-05 3.90302e-07 0)
(1.38872e-05 3.61004e-07 0)
(1.39134e-05 3.6342e-07 0)
(1.3936e-05 3.99849e-07 0)
(1.39487e-05 4.70775e-07 0)
(1.39468e-05 5.77143e-07 0)
(1.39263e-05 7.17607e-07 0)
(1.38836e-05 8.89739e-07 0)
(1.38136e-05 1.09075e-06 0)
(1.37096e-05 1.3198e-06 0)
(1.35654e-05 1.57581e-06 0)
(1.33775e-05 1.85729e-06 0)
(1.31439e-05 2.16313e-06 0)
(1.28614e-05 2.49239e-06 0)
(1.25265e-05 2.84273e-06 0)
(1.21357e-05 3.21157e-06 0)
(1.16856e-05 3.59574e-06 0)
(1.11736e-05 3.99169e-06 0)
(1.05956e-05 4.39805e-06 0)
(9.94743e-06 4.81015e-06 0)
(9.22942e-06 5.21922e-06 0)
(8.44616e-06 5.61495e-06 0)
(7.59912e-06 5.99007e-06 0)
(6.68545e-06 6.33859e-06 0)
(5.70712e-06 6.65386e-06 0)
(4.67214e-06 6.92896e-06 0)
(3.58827e-06 7.11636e-06 0)
(2.47652e-06 7.15095e-06 0)
(1.37428e-06 6.83345e-06 0)
(3.54063e-07 5.22782e-06 0)
(6.13379e-05 -6.74489e-07 0)
(6.04e-05 5.34965e-06 0)
(5.90494e-05 7.99107e-06 0)
(5.73818e-05 8.76373e-06 0)
(5.59261e-05 8.8623e-06 0)
(5.44665e-05 8.74796e-06 0)
(5.31702e-05 8.57379e-06 0)
(5.1925e-05 8.38431e-06 0)
(5.07677e-05 8.2e-06 0)
(4.96647e-05 8.03336e-06 0)
(4.8611e-05 7.89101e-06 0)
(4.75938e-05 7.77753e-06 0)
(4.66034e-05 7.69497e-06 0)
(4.56307e-05 7.64146e-06 0)
(4.46677e-05 7.61629e-06 0)
(4.3707e-05 7.61466e-06 0)
(4.27439e-05 7.636e-06 0)
(4.17763e-05 7.67264e-06 0)
(4.07992e-05 7.72084e-06 0)
(3.9811e-05 7.77572e-06 0)
(3.88127e-05 7.83114e-06 0)
(3.7803e-05 7.88279e-06 0)
(3.67829e-05 7.92504e-06 0)
(3.57529e-05 7.95373e-06 0)
(3.4716e-05 7.96517e-06 0)
(3.36742e-05 7.95311e-06 0)
(3.26321e-05 7.91779e-06 0)
(3.15951e-05 7.85885e-06 0)
(3.05669e-05 7.77075e-06 0)
(2.95543e-05 7.65063e-06 0)
(2.85626e-05 7.5032e-06 0)
(2.75956e-05 7.32717e-06 0)
(2.66576e-05 7.12051e-06 0)
(2.57537e-05 6.88996e-06 0)
(2.4889e-05 6.63782e-06 0)
(2.40679e-05 6.36288e-06 0)
(2.32944e-05 6.07105e-06 0)
(2.25706e-05 5.7686e-06 0)
(2.18972e-05 5.45815e-06 0)
(2.12752e-05 5.14427e-06 0)
(2.07044e-05 4.83192e-06 0)
(2.01834e-05 4.52676e-06 0)
(1.97095e-05 4.23268e-06 0)
(1.92793e-05 3.9537e-06 0)
(1.88878e-05 3.69323e-06 0)
(1.85303e-05 3.45462e-06 0)
(1.82031e-05 3.24059e-06 0)
(1.79016e-05 3.05055e-06 0)
(1.76206e-05 2.88278e-06 0)
(1.73547e-05 2.7376e-06 0)
(1.70993e-05 2.61395e-06 0)
(1.68502e-05 2.50876e-06 0)
(1.66041e-05 2.41763e-06 0)
(1.63591e-05 2.33533e-06 0)
(1.61131e-05 2.25809e-06 0)
(1.58651e-05 2.18139e-06 0)
(1.56185e-05 2.10113e-06 0)
(1.53745e-05 2.01269e-06 0)
(1.51339e-05 1.91388e-06 0)
(1.49016e-05 1.80189e-06 0)
(1.46824e-05 1.67686e-06 0)
(1.44811e-05 1.53975e-06 0)
(1.43018e-05 1.39281e-06 0)
(1.41476e-05 1.23863e-06 0)
(1.4021e-05 1.08116e-06 0)
(1.39239e-05 9.25352e-07 0)
(1.38573e-05 7.77308e-07 0)
(1.38191e-05 6.43788e-07 0)
(1.38065e-05 5.30573e-07 0)
(1.3816e-05 4.411e-07 0)
(1.38428e-05 3.77661e-07 0)
(1.38811e-05 3.44735e-07 0)
(1.39236e-05 3.46969e-07 0)
(1.39636e-05 3.86475e-07 0)
(1.39949e-05 4.63514e-07 0)
(1.4011e-05 5.78149e-07 0)
(1.40078e-05 7.28823e-07 0)
(1.39819e-05 9.13254e-07 0)
(1.39276e-05 1.1299e-06 0)
(1.38373e-05 1.37784e-06 0)
(1.37065e-05 1.65493e-06 0)
(1.35321e-05 1.9587e-06 0)
(1.33107e-05 2.28849e-06 0)
(1.30391e-05 2.64334e-06 0)
(1.27141e-05 3.02094e-06 0)
(1.23318e-05 3.41897e-06 0)
(1.18892e-05 3.83374e-06 0)
(1.13827e-05 4.26222e-06 0)
(1.0807e-05 4.70369e-06 0)
(1.01584e-05 5.15182e-06 0)
(9.43628e-06 5.5959e-06 0)
(8.6469e-06 6.02348e-06 0)
(7.79354e-06 6.43146e-06 0)
(6.87083e-06 6.81472e-06 0)
(5.87209e-06 7.16377e-06 0)
(4.80876e-06 7.4668e-06 0)
(3.69553e-06 7.67303e-06 0)
(2.55433e-06 7.71551e-06 0)
(1.41884e-06 7.37598e-06 0)
(3.66355e-07 5.66282e-06 0)
(6.1518e-05 -5.91821e-07 0)
(6.04928e-05 5.93884e-06 0)
(5.90717e-05 8.76654e-06 0)
(5.73492e-05 9.55037e-06 0)
(5.58595e-05 9.60301e-06 0)
(5.43801e-05 9.43649e-06 0)
(5.30745e-05 9.21349e-06 0)
(5.18283e-05 8.98222e-06 0)
(5.06779e-05 8.76338e-06 0)
(4.95867e-05 8.56909e-06 0)
(4.85473e-05 8.40492e-06 0)
(4.75453e-05 8.27537e-06 0)
(4.65711e-05 8.18174e-06 0)
(4.56132e-05 8.12201e-06 0)
(4.46632e-05 8.09391e-06 0)
(4.37144e-05 8.09301e-06 0)
(4.27605e-05 8.11664e-06 0)
(4.17999e-05 8.15776e-06 0)
(4.08265e-05 8.21119e-06 0)
(3.98388e-05 8.27208e-06 0)
(3.88388e-05 8.33431e-06 0)
(3.78252e-05 8.39105e-06 0)
(3.67983e-05 8.43954e-06 0)
(3.57594e-05 8.47306e-06 0)
(3.47124e-05 8.4876e-06 0)
(3.36599e-05 8.47741e-06 0)
(3.26061e-05 8.44107e-06 0)
(3.15551e-05 8.37948e-06 0)
(3.05124e-05 8.28531e-06 0)
(2.94849e-05 8.15608e-06 0)
(2.84778e-05 7.99738e-06 0)
(2.74959e-05 7.80772e-06 0)
(2.6544e-05 7.58527e-06 0)
(2.56266e-05 7.33618e-06 0)
(2.47502e-05 7.0625e-06 0)
(2.39198e-05 6.76473e-06 0)
(2.31388e-05 6.44762e-06 0)
(2.24099e-05 6.11933e-06 0)
(2.17345e-05 5.78283e-06 0)
(2.11129e-05 5.44269e-06 0)
(2.05446e-05 5.10429e-06 0)
(2.00283e-05 4.7743e-06 0)
(1.95606e-05 4.45689e-06 0)
(1.91384e-05 4.1568e-06 0)
(1.8757e-05 3.87767e-06 0)
(1.84106e-05 3.62277e-06 0)
(1.80953e-05 3.39431e-06 0)
(1.78064e-05 3.1926e-06 0)
(1.75379e-05 3.01624e-06 0)
(1.72835e-05 2.86466e-06 0)
(1.70385e-05 2.73721e-06 0)
(1.67987e-05 2.62992e-06 0)
(1.65597e-05 2.53839e-06 0)
(1.63193e-05 2.45681e-06 0)
(1.60752e-05 2.38078e-06 0)
(1.58263e-05 2.30534e-06 0)
(1.55764e-05 2.22558e-06 0)
(1.53276e-05 2.13556e-06 0)
(1.50816e-05 2.03406e-06 0)
(1.48431e-05 1.91697e-06 0)
(1.46176e-05 1.78408e-06 0)
(1.44103e-05 1.63688e-06 0)
(1.42258e-05 1.4779e-06 0)
(1.40685e-05 1.31e-06 0)
(1.39415e-05 1.13748e-06 0)
(1.38469e-05 9.65919e-07 0)
(1.37854e-05 8.02308e-07 0)
(1.37555e-05 6.54485e-07 0)
(1.3754e-05 5.28615e-07 0)
(1.3777e-05 4.28588e-07 0)
(1.38193e-05 3.57391e-07 0)
(1.3874e-05 3.20184e-07 0)
(1.39342e-05 3.21628e-07 0)
(1.39936e-05 3.63462e-07 0)
(1.40445e-05 4.46479e-07 0)
(1.40798e-05 5.69952e-07 0)
(1.40956e-05 7.30994e-07 0)
(1.40881e-05 9.28224e-07 0)
(1.40501e-05 1.16172e-06 0)
(1.39746e-05 1.42898e-06 0)
(1.38586e-05 1.72688e-06 0)
(1.36984e-05 2.05343e-06 0)
(1.34897e-05 2.40784e-06 0)
(1.32302e-05 2.78859e-06 0)
(1.2916e-05 3.19426e-06 0)
(1.25431e-05 3.62206e-06 0)
(1.21091e-05 4.06795e-06 0)
(1.16085e-05 4.53068e-06 0)
(1.10363e-05 5.00846e-06 0)
(1.03883e-05 5.49436e-06 0)
(9.66422e-06 5.97473e-06 0)
(8.87085e-06 6.4351e-06 0)
(8.00752e-06 6.8781e-06 0)
(7.0657e-06 7.29999e-06 0)
(6.0414e-06 7.68727e-06 0)
(4.95116e-06 8.0184e-06 0)
(3.80966e-06 8.24468e-06 0)
(2.63984e-06 8.29491e-06 0)
(1.46455e-06 7.93857e-06 0)
(3.76371e-07 6.11133e-06 0)
(6.1556e-05 -4.96252e-07 0)
(6.05248e-05 6.55709e-06 0)
(5.90457e-05 9.56939e-06 0)
(5.72782e-05 1.03573e-05 0)
(5.57589e-05 1.03562e-05 0)
(5.42644e-05 1.01304e-05 0)
(5.2957e-05 9.85428e-06 0)
(5.17159e-05 9.5779e-06 0)
(5.05748e-05 9.32188e-06 0)
(4.94966e-05 9.09822e-06 0)
(4.84726e-05 8.9113e-06 0)
(4.74875e-05 8.76516e-06 0)
(4.65308e-05 8.66037e-06 0)
(4.559e-05 8.59495e-06 0)
(4.46558e-05 8.56482e-06 0)
(4.37209e-05 8.56551e-06 0)
(4.2778e-05 8.59307e-06 0)
(4.18254e-05 8.64017e-06 0)
(4.08561e-05 8.70056e-06 0)
(3.98689e-05 8.76877e-06 0)
(3.8867e-05 8.83897e-06 0)
(3.7848e-05 8.90266e-06 0)
(3.68133e-05 8.95849e-06 0)
(3.57654e-05 8.99711e-06 0)
(3.47085e-05 9.01515e-06 0)
(3.36455e-05 9.00713e-06 0)
(3.25783e-05 8.9713e-06 0)
(3.15124e-05 8.90722e-06 0)
(3.04549e-05 8.80729e-06 0)
(2.94109e-05 8.66964e-06 0)
(2.83863e-05 8.49946e-06 0)
(2.73885e-05 8.29565e-06 0)
(2.64222e-05 8.05688e-06 0)
(2.54918e-05 7.7883e-06 0)
(2.4605e-05 7.49218e-06 0)
(2.37664e-05 7.17048e-06 0)
(2.29785e-05 6.82734e-06 0)
(2.22442e-05 6.47198e-06 0)
(2.15658e-05 6.10806e-06 0)
(2.09438e-05 5.74064e-06 0)
(2.03767e-05 5.37535e-06 0)
(1.98633e-05 5.01952e-06 0)
(1.94006e-05 4.67803e-06 0)
(1.89858e-05 4.3555e-06 0)
(1.86146e-05 4.05652e-06 0)
(1.82809e-05 3.78464e-06 0)
(1.79795e-05 3.54145e-06 0)
(1.77055e-05 3.32756e-06 0)
(1.74524e-05 3.14263e-06 0)
(1.72132e-05 2.98528e-06 0)
(1.69823e-05 2.85455e-06 0)
(1.67543e-05 2.7465e-06 0)
(1.65233e-05 2.6562e-06 0)
(1.62865e-05 2.57692e-06 0)
(1.60422e-05 2.50389e-06 0)
(1.57902e-05 2.43091e-06 0)
(1.55343e-05 2.35282e-06 0)
(1.52771e-05 2.26202e-06 0)
(1.50224e-05 2.15768e-06 0)
(1.47762e-05 2.0355e-06 0)
(1.45426e-05 1.89491e-06 0)
(1.43273e-05 1.73727e-06 0)
(1.41368e-05 1.56536e-06 0)
(1.39758e-05 1.3824e-06 0)
(1.38483e-05 1.19323e-06 0)
(1.37573e-05 1.00415e-06 0)
(1.37033e-05 8.23475e-07 0)
(1.36835e-05 6.59895e-07 0)
(1.36948e-05 5.20061e-07 0)
(1.37333e-05 4.08283e-07 0)
(1.37929e-05 3.28723e-07 0)
(1.38659e-05 2.86673e-07 0)
(1.39457e-05 2.86487e-07 0)
(1.40258e-05 3.30196e-07 0)
(1.40979e-05 4.19072e-07 0)
(1.41543e-05 5.51858e-07 0)
(1.41903e-05 7.23815e-07 0)
(1.42011e-05 9.34886e-07 0)
(1.41797e-05 1.1855e-06 0)
(1.41208e-05 1.47222e-06 0)
(1.40212e-05 1.79111e-06 0)
(1.3876e-05 2.14113e-06 0)
(1.36813e-05 2.52057e-06 0)
(1.3435e-05 2.92768e-06 0)
(1.31324e-05 3.3623e-06 0)
(1.277e-05 3.82025e-06 0)
(1.23448e-05 4.29833e-06 0)
(1.18508e-05 4.79657e-06 0)
(1.12836e-05 5.31148e-06 0)
(1.06386e-05 5.83678e-06 0)
(9.91596e-06 6.35413e-06 0)
(9.11774e-06 6.8509e-06 0)
(8.23802e-06 7.33382e-06 0)
(7.27209e-06 7.79786e-06 0)
(6.22289e-06 8.22354e-06 0)
(5.10648e-06 8.58379e-06 0)
(3.93667e-06 8.83086e-06 0)
(2.73336e-06 8.8914e-06 0)
(1.51685e-06 8.52224e-06 0)
(3.91784e-07 6.57481e-06 0)
(6.15258e-05 -4.39696e-07 0)
(6.05085e-05 7.19423e-06 0)
(5.89804e-05 1.03954e-05 0)
(5.7169e-05 1.1183e-05 0)
(5.5621e-05 1.11206e-05 0)
(5.41114e-05 1.08286e-05 0)
(5.28e-05 1.04942e-05 0)
(5.15658e-05 1.01694e-05 0)
(5.04393e-05 9.87352e-06 0)
(4.93808e-05 9.61842e-06 0)
(4.83799e-05 9.40783e-06 0)
(4.74181e-05 9.24517e-06 0)
(4.64829e-05 9.12966e-06 0)
(4.55624e-05 9.0588e-06 0)
(4.4646e-05 9.02778e-06 0)
(4.37265e-05 9.03121e-06 0)
(4.27966e-05 9.06432e-06 0)
(4.18535e-05 9.11908e-06 0)
(4.08913e-05 9.18774e-06 0)
(3.99085e-05 9.26525e-06 0)
(3.89065e-05 9.3448e-06 0)
(3.78837e-05 9.41752e-06 0)
(3.68422e-05 9.48163e-06 0)
(3.57842e-05 9.52627e-06 0)
(3.47139e-05 9.54888e-06 0)
(3.36353e-05 9.54364e-06 0)
(3.25516e-05 9.50937e-06 0)
(3.14687e-05 9.44271e-06 0)
(3.03935e-05 9.33748e-06 0)
(2.93316e-05 9.19193e-06 0)
(2.8289e-05 9.01012e-06 0)
(2.72734e-05 8.79142e-06 0)
(2.62908e-05 8.53552e-06 0)
(2.53463e-05 8.24655e-06 0)
(2.44472e-05 7.92703e-06 0)
(2.35981e-05 7.57994e-06 0)
(2.2802e-05 7.21034e-06 0)
(2.20615e-05 6.82709e-06 0)
(2.13792e-05 6.43424e-06 0)
(2.07563e-05 6.03823e-06 0)
(2.01914e-05 5.64508e-06 0)
(1.96831e-05 5.26225e-06 0)
(1.92283e-05 4.89542e-06 0)
(1.88238e-05 4.54924e-06 0)
(1.84649e-05 4.22917e-06 0)
(1.81456e-05 3.93932e-06 0)
(1.78597e-05 3.6811e-06 0)
(1.76015e-05 3.45482e-06 0)
(1.73642e-05 3.26081e-06 0)
(1.71403e-05 3.09846e-06 0)
(1.69232e-05 2.96515e-06 0)
(1.67068e-05 2.8582e-06 0)
(1.64842e-05 2.7706e-06 0)
(1.62521e-05 2.69584e-06 0)
(1.60088e-05 2.62765e-06 0)
(1.57546e-05 2.55867e-06 0)
(1.54935e-05 2.48343e-06 0)
(1.52288e-05 2.39302e-06 0)
(1.4965e-05 2.28592e-06 0)
(1.47084e-05 2.1585e-06 0)
(1.44646e-05 2.00986e-06 0)
(1.42402e-05 1.84157e-06 0)
(1.40426e-05 1.65549e-06 0)
(1.38772e-05 1.45615e-06 0)
(1.37485e-05 1.2484e-06 0)
(1.36603e-05 1.03975e-06 0)
(1.36126e-05 8.40282e-07 0)
(1.36029e-05 6.59382e-07 0)
(1.36279e-05 5.04023e-07 0)
(1.36837e-05 3.79098e-07 0)
(1.37636e-05 2.90417e-07 0)
(1.38584e-05 2.43125e-07 0)
(1.39604e-05 2.40849e-07 0)
(1.40624e-05 2.86257e-07 0)
(1.41565e-05 3.81024e-07 0)
(1.42357e-05 5.23011e-07 0)
(1.42939e-05 7.06637e-07 0)
(1.43249e-05 9.3244e-07 0)
(1.43226e-05 1.2007e-06 0)
(1.4282e-05 1.5068e-06 0)
(1.41993e-05 1.84731e-06 0)
(1.40695e-05 2.22148e-06 0)
(1.38892e-05 2.62638e-06 0)
(1.36559e-05 3.0605e-06 0)
(1.33652e-05 3.52476e-06 0)
(1.30133e-05 4.01361e-06 0)
(1.25961e-05 4.52509e-06 0)
(1.21087e-05 5.05935e-06 0)
(1.15472e-05 5.61204e-06 0)
(1.0907e-05 6.1777e-06 0)
(1.01852e-05 6.7344e-06 0)
(9.37834e-06 7.27298e-06 0)
(8.48094e-06 7.80005e-06 0)
(7.49379e-06 8.3076e-06 0)
(6.42257e-06 8.77165e-06 0)
(5.27968e-06 9.16383e-06 0)
(4.0772e-06 9.43314e-06 0)
(2.83156e-06 9.50952e-06 0)
(1.5706e-06 9.1252e-06 0)
(4.09282e-07 7.05501e-06 0)
(6.15397e-05 -4.01053e-07 0)
(6.04693e-05 7.85165e-06 0)
(5.88796e-05 1.12467e-05 0)
(5.70202e-05 1.20276e-05 0)
(5.54431e-05 1.1896e-05 0)
(5.39192e-05 1.15315e-05 0)
(5.26082e-05 1.11322e-05 0)
(5.13874e-05 1.07537e-05 0)
(5.02821e-05 1.04151e-05 0)
(4.92492e-05 1.01262e-05 0)
(4.82765e-05 9.8914e-06 0)
(4.73415e-05 9.71323e-06 0)
(4.64306e-05 9.58804e-06 0)
(4.55324e-05 9.5123e-06 0)
(4.46359e-05 9.482e-06 0)
(4.37332e-05 9.48969e-06 0)
(4.28174e-05 9.52941e-06 0)
(4.18844e-05 9.59341e-06 0)
(4.09293e-05 9.67196e-06 0)
(3.99514e-05 9.7608e-06 0)
(3.89501e-05 9.85091e-06 0)
(3.79237e-05 9.93519e-06 0)
(3.68755e-05 1.00083e-05 0)
(3.58076e-05 1.00613e-05 0)
(3.47233e-05 1.00902e-05 0)
(3.36273e-05 1.00888e-05 0)
(3.25252e-05 1.0056e-05 0)
(3.14241e-05 9.98713e-06 0)
(3.03304e-05 9.87665e-06 0)
(2.92496e-05 9.72338e-06 0)
(2.81876e-05 9.53023e-06 0)
(2.71522e-05 9.29626e-06 0)
(2.61505e-05 9.02247e-06 0)
(2.51889e-05 8.71222e-06 0)
(2.42746e-05 8.36808e-06 0)
(2.34121e-05 7.99483e-06 0)
(2.26058e-05 7.59711e-06 0)
(2.18579e-05 7.18425e-06 0)
(2.11721e-05 6.76186e-06 0)
(2.055e-05 6.33527e-06 0)
(1.99892e-05 5.91249e-06 0)
(1.9488e-05 5.50111e-06 0)
(1.90434e-05 5.10749e-06 0)
(1.86519e-05 4.73651e-06 0)
(1.8308e-05 4.39454e-06 0)
(1.80051e-05 4.08603e-06 0)
(1.77361e-05 3.81263e-06 0)
(1.74941e-05 3.57433e-06 0)
(1.72727e-05 3.37145e-06 0)
(1.70638e-05 3.20419e-06 0)
(1.68596e-05 3.06983e-06 0)
(1.66541e-05 2.96445e-06 0)
(1.64404e-05 2.88118e-06 0)
(1.62149e-05 2.8128e-06 0)
(1.59749e-05 2.75082e-06 0)
(1.57201e-05 2.68803e-06 0)
(1.54543e-05 2.61681e-06 0)
(1.51831e-05 2.52801e-06 0)
(1.49096e-05 2.41991e-06 0)
(1.46394e-05 2.28768e-06 0)
(1.43833e-05 2.13063e-06 0)
(1.41487e-05 1.95043e-06 0)
(1.39422e-05 1.74901e-06 0)
(1.37709e-05 1.53152e-06 0)
(1.36399e-05 1.30347e-06 0)
(1.35528e-05 1.07344e-06 0)
(1.35106e-05 8.53011e-07 0)
(1.35113e-05 6.52687e-07 0)
(1.35514e-05 4.79762e-07 0)
(1.36266e-05 3.39768e-07 0)
(1.37301e-05 2.4036e-07 0)
(1.38511e-05 1.87543e-07 0)
(1.39785e-05 1.83845e-07 0)
(1.41036e-05 2.31592e-07 0)
(1.422e-05 3.31796e-07 0)
(1.4323e-05 4.82048e-07 0)
(1.44062e-05 6.77745e-07 0)
(1.44611e-05 9.18995e-07 0)
(1.44806e-05 1.20564e-06 0)
(1.44598e-05 1.53221e-06 0)
(1.43946e-05 1.89541e-06 0)
(1.42805e-05 2.2944e-06 0)
(1.41146e-05 2.72547e-06 0)
(1.38938e-05 3.18742e-06 0)
(1.36148e-05 3.68161e-06 0)
(1.32734e-05 4.20239e-06 0)
(1.28647e-05 4.74833e-06 0)
(1.23838e-05 5.31912e-06 0)
(1.1827e-05 5.9102e-06 0)
(1.11919e-05 6.51609e-06 0)
(1.0472e-05 7.11637e-06 0)
(9.65774e-06 7.70153e-06 0)
(8.74504e-06 8.2758e-06 0)
(7.73842e-06 8.8278e-06 0)
(6.64444e-06 9.33184e-06 0)
(5.47345e-06 9.75971e-06 0)
(4.2305e-06 1.00565e-05 0)
(2.93374e-06 1.01532e-05 0)
(1.61421e-06 9.75144e-06 0)
(4.15566e-07 7.54948e-06 0)
(6.15141e-05 -3.4099e-07 0)
(6.03709e-05 8.53479e-06 0)
(5.87242e-05 1.21256e-05 0)
(5.68184e-05 1.28907e-05 0)
(5.52181e-05 1.26806e-05 0)
(5.36917e-05 1.22354e-05 0)
(5.23924e-05 1.17643e-05 0)
(5.11929e-05 1.13279e-05 0)
(5.0114e-05 1.09438e-05 0)
(4.91102e-05 1.06199e-05 0)
(4.81665e-05 1.0361e-05 0)
(4.72595e-05 1.01681e-05 0)
(4.63752e-05 1.00341e-05 0)
(4.55019e-05 9.95461e-06 0)
(4.46277e-05 9.92663e-06 0)
(4.37431e-05 9.9402e-06 0)
(4.28426e-05 9.98824e-06 0)
(4.19212e-05 1.00624e-05 0)
(4.09734e-05 1.01535e-05 0)
(3.99988e-05 1.02555e-05 0)
(3.89964e-05 1.0358e-05 0)
(3.79656e-05 1.04554e-05 0)
(3.69096e-05 1.05389e-05 0)
(3.58312e-05 1.06025e-05 0)
(3.4733e-05 1.06392e-05 0)
(3.36203e-05 1.06432e-05 0)
(3.24997e-05 1.06119e-05 0)
(3.13789e-05 1.05414e-05 0)
(3.02638e-05 1.0426e-05 0)
(2.91611e-05 1.0265e-05 0)
(2.80775e-05 1.00606e-05 0)
(2.7021e-05 9.81129e-06 0)
(2.59995e-05 9.51888e-06 0)
(2.50196e-05 9.18619e-06 0)
(2.40891e-05 8.81659e-06 0)
(2.32129e-05 8.41616e-06 0)
(2.23956e-05 7.98832e-06 0)
(2.16407e-05 7.5441e-06 0)
(2.09516e-05 7.09022e-06 0)
(2.03299e-05 6.63108e-06 0)
(1.97735e-05 6.17673e-06 0)
(1.92804e-05 5.73546e-06 0)
(1.8847e-05 5.31344e-06 0)
(1.84697e-05 4.91632e-06 0)
(1.81425e-05 4.5515e-06 0)
(1.78581e-05 4.22368e-06 0)
(1.76095e-05 3.93472e-06 0)
(1.73884e-05 3.68456e-06 0)
(1.71869e-05 3.47361e-06 0)
(1.69959e-05 3.30214e-06 0)
(1.68069e-05 3.16816e-06 0)
(1.66128e-05 3.06544e-06 0)
(1.64074e-05 2.98845e-06 0)
(1.61865e-05 2.92765e-06 0)
(1.59476e-05 2.87364e-06 0)
(1.56902e-05 2.81922e-06 0)
(1.54172e-05 2.7532e-06 0)
(1.51357e-05 2.66799e-06 0)
(1.48498e-05 2.56041e-06 0)
(1.45654e-05 2.42405e-06 0)
(1.42947e-05 2.25831e-06 0)
(1.40465e-05 2.06491e-06 0)
(1.38288e-05 1.84681e-06 0)
(1.36495e-05 1.60937e-06 0)
(1.35146e-05 1.35877e-06 0)
(1.34284e-05 1.10547e-06 0)
(1.33924e-05 8.61628e-07 0)
(1.34042e-05 6.39495e-07 0)
(1.346e-05 4.46813e-07 0)
(1.35546e-05 2.89918e-07 0)
(1.368e-05 1.78196e-07 0)
(1.3826e-05 1.18682e-07 0)
(1.39814e-05 1.13487e-07 0)
(1.41361e-05 1.63985e-07 0)
(1.42819e-05 2.6994e-07 0)
(1.44121e-05 4.28411e-07 0)
(1.45204e-05 6.36072e-07 0)
(1.45997e-05 8.93391e-07 0)
(1.46418e-05 1.19965e-06 0)
(1.46417e-05 1.5479e-06 0)
(1.45954e-05 1.93492e-06 0)
(1.44985e-05 2.35949e-06 0)
(1.43491e-05 2.8173e-06 0)
(1.41433e-05 3.30814e-06 0)
(1.38775e-05 3.83246e-06 0)
(1.35491e-05 4.38565e-06 0)
(1.31519e-05 4.9672e-06 0)
(1.26803e-05 5.57556e-06 0)
(1.21296e-05 6.20636e-06 0)
(1.14973e-05 6.85257e-06 0)
(1.0778e-05 7.49923e-06 0)
(9.95933e-06 8.13497e-06 0)
(9.03455e-06 8.75988e-06 0)
(8.00934e-06 9.35854e-06 0)
(6.88945e-06 9.90585e-06 0)
(5.68652e-06 1.03729e-05 0)
(4.39897e-06 1.07046e-05 0)
(3.05527e-06 1.08207e-05 0)
(1.69439e-06 1.04034e-05 0)
(4.43305e-07 8.06365e-06 0)
(6.13771e-05 -2.62236e-07 0)
(6.01875e-05 9.24333e-06 0)
(5.84905e-05 1.30288e-05 0)
(5.65524e-05 1.37682e-05 0)
(5.49424e-05 1.34688e-05 0)
(5.3425e-05 1.29343e-05 0)
(5.21463e-05 1.23865e-05 0)
(5.09747e-05 1.18887e-05 0)
(4.9928e-05 1.14573e-05 0)
(4.89571e-05 1.10985e-05 0)
(4.80461e-05 1.08158e-05 0)
(4.71715e-05 1.06084e-05 0)
(4.63176e-05 1.04664e-05 0)
(4.54718e-05 1.03851e-05 0)
(4.46223e-05 1.03602e-05 0)
(4.37583e-05 1.03817e-05 0)
(4.28741e-05 1.04404e-05 0)
(4.19648e-05 1.05264e-05 0)
(4.10251e-05 1.06322e-05 0)
(4.00536e-05 1.07494e-05 0)
(3.90496e-05 1.08671e-05 0)
(3.80139e-05 1.09784e-05 0)
(3.69494e-05 1.10748e-05 0)
(3.58588e-05 1.11501e-05 0)
(3.47458e-05 1.11962e-05 0)
(3.36156e-05 1.12066e-05 0)
(3.2475e-05 1.11779e-05 0)
(3.13324e-05 1.11064e-05 0)
(3.01944e-05 1.09868e-05 0)
(2.90676e-05 1.08184e-05 0)
(2.796e-05 1.0602e-05 0)
(2.68805e-05 1.03373e-05 0)
(2.58375e-05 1.00252e-05 0)
(2.48376e-05 9.66857e-06 0)
(2.389e-05 9.27358e-06 0)
(2.29993e-05 8.84398e-06 0)
(2.21704e-05 8.38433e-06 0)
(2.14086e-05 7.90726e-06 0)
(2.07158e-05 7.41905e-06 0)
(2.00938e-05 6.92543e-06 0)
(1.95417e-05 6.43799e-06 0)
(1.90573e-05 5.96458e-06 0)
(1.86366e-05 5.51255e-06 0)
(1.8275e-05 5.08822e-06 0)
(1.7966e-05 4.6992e-06 0)
(1.77025e-05 4.35091e-06 0)
(1.74776e-05 4.04596e-06 0)
(1.72804e-05 3.78329e-06 0)
(1.71008e-05 3.56552e-06 0)
(1.69297e-05 3.39154e-06 0)
(1.67576e-05 3.25895e-06 0)
(1.65763e-05 3.16152e-06 0)
(1.63803e-05 3.09231e-06 0)
(1.61644e-05 3.04099e-06 0)
(1.59259e-05 2.99732e-06 0)
(1.56649e-05 2.95292e-06 0)
(1.53835e-05 2.89402e-06 0)
(1.50893e-05 2.81493e-06 0)
(1.47889e-05 2.70797e-06 0)
(1.44886e-05 2.56814e-06 0)
(1.42005e-05 2.39345e-06 0)
(1.39353e-05 2.18649e-06 0)
(1.37035e-05 1.95014e-06 0)
(1.35143e-05 1.69074e-06 0)
(1.3375e-05 1.4154e-06 0)
(1.32896e-05 1.13604e-06 0)
(1.32588e-05 8.66305e-07 0)
(1.32814e-05 6.19776e-07 0)
(1.33533e-05 4.05005e-07 0)
(1.34687e-05 2.29208e-07 0)
(1.36196e-05 1.03374e-07 0)
(1.37947e-05 3.53693e-08 0)
(1.39813e-05 2.77425e-08 0)
(1.41677e-05 8.07372e-08 0)
(1.43443e-05 1.93116e-07 0)
(1.45032e-05 3.61707e-07 0)
(1.46358e-05 5.83064e-07 0)
(1.47348e-05 8.57421e-07 0)
(1.47959e-05 1.18369e-06 0)
(1.48152e-05 1.55382e-06 0)
(1.47878e-05 1.96516e-06 0)
(1.47106e-05 2.41528e-06 0)
(1.45818e-05 2.89979e-06 0)
(1.43965e-05 3.42018e-06 0)
(1.41504e-05 3.97525e-06 0)
(1.38393e-05 4.5615e-06 0)
(1.34581e-05 5.17929e-06 0)
(1.30018e-05 5.82635e-06 0)
(1.24624e-05 6.4995e-06 0)
(1.18323e-05 7.18981e-06 0)
(1.11069e-05 7.88441e-06 0)
(1.02799e-05 8.57251e-06 0)
(9.34578e-06 9.25056e-06 0)
(8.30403e-06 9.90026e-06 0)
(7.15622e-06 1.04957e-05 0)
(5.91481e-06 1.10062e-05 0)
(4.58115e-06 1.13764e-05 0)
(3.19226e-06 1.15086e-05 0)
(1.80044e-06 1.10756e-05 0)
(4.88606e-07 8.61195e-06 0)
(6.11588e-05 -1.74115e-07 0)
(5.99189e-05 9.97864e-06 0)
(5.81796e-05 1.39502e-05 0)
(5.62243e-05 1.46532e-05 0)
(5.46156e-05 1.42553e-05 0)
(5.31159e-05 1.36236e-05 0)
(5.18646e-05 1.29953e-05 0)
(5.07272e-05 1.24333e-05 0)
(4.9717e-05 1.19534e-05 0)
(4.87844e-05 1.15594e-05 0)
(4.79133e-05 1.12527e-05 0)
(4.70774e-05 1.10315e-05 0)
(4.62595e-05 1.08825e-05 0)
(4.54455e-05 1.08018e-05 0)
(4.4624e-05 1.07819e-05 0)
(4.37831e-05 1.08132e-05 0)
(4.29164e-05 1.0885e-05 0)
(4.20191e-05 1.09859e-05 0)
(4.10863e-05 1.11083e-05 0)
(4.01173e-05 1.1243e-05 0)
(3.9111e-05 1.13781e-05 0)
(3.80688e-05 1.15052e-05 0)
(3.69939e-05 1.16169e-05 0)
(3.58894e-05 1.17046e-05 0)
(3.47604e-05 1.17615e-05 0)
(3.36122e-05 1.17794e-05 0)
(3.24511e-05 1.17548e-05 0)
(3.12854e-05 1.1683e-05 0)
(3.01227e-05 1.15599e-05 0)
(2.89701e-05 1.13843e-05 0)
(2.78366e-05 1.11558e-05 0)
(2.67319e-05 1.08749e-05 0)
(2.56647e-05 1.0542e-05 0)
(2.46434e-05 1.01612e-05 0)
(2.36771e-05 9.73895e-06 0)
(2.27699e-05 9.27799e-06 0)
(2.19292e-05 8.78566e-06 0)
(2.11601e-05 8.27333e-06 0)
(2.04631e-05 7.74896e-06 0)
(1.98413e-05 7.21848e-06 0)
(1.92936e-05 6.69628e-06 0)
(1.88182e-05 6.18805e-06 0)
(1.8411e-05 5.70409e-06 0)
(1.80663e-05 5.25118e-06 0)
(1.77775e-05 4.83707e-06 0)
(1.75374e-05 4.46695e-06 0)
(1.73371e-05 4.14483e-06 0)
(1.71652e-05 3.87018e-06 0)
(1.70097e-05 3.6464e-06 0)
(1.68603e-05 3.47162e-06 0)
(1.67068e-05 3.3416e-06 0)
(1.65399e-05 3.25166e-06 0)
(1.63546e-05 3.19212e-06 0)
(1.61449e-05 3.15271e-06 0)
(1.59074e-05 3.12194e-06 0)
(1.56426e-05 3.08893e-06 0)
(1.53526e-05 3.04065e-06 0)
(1.50448e-05 2.96924e-06 0)
(1.47282e-05 2.86362e-06 0)
(1.44103e-05 2.72105e-06 0)
(1.41025e-05 2.53802e-06 0)
(1.38187e-05 2.31558e-06 0)
(1.3572e-05 2.05982e-06 0)
(1.33724e-05 1.77625e-06 0)
(1.32277e-05 1.47361e-06 0)
(1.31432e-05 1.16489e-06 0)
(1.31202e-05 8.66369e-07 0)
(1.31572e-05 5.92397e-07 0)
(1.32494e-05 3.53079e-07 0)
(1.33886e-05 1.56672e-07 0)
(1.35646e-05 1.51459e-08 0)
(1.3767e-05 -6.27509e-08 0)
(1.39843e-05 -7.39573e-08 0)
(1.42033e-05 -1.86686e-08 0)
(1.44117e-05 1.01014e-07 0)
(1.46e-05 2.81291e-07 0)
(1.47598e-05 5.18389e-07 0)
(1.48833e-05 8.11509e-07 0)
(1.49668e-05 1.15769e-06 0)
(1.50071e-05 1.55001e-06 0)
(1.49992e-05 1.98578e-06 0)
(1.49419e-05 2.46072e-06 0)
(1.48332e-05 2.97204e-06 0)
(1.46674e-05 3.52201e-06 0)
(1.44404e-05 4.10834e-06 0)
(1.41474e-05 4.72877e-06 0)
(1.37831e-05 5.38308e-06 0)
(1.3341e-05 6.0705e-06 0)
(1.28114e-05 6.7888e-06 0)
(1.21875e-05 7.52699e-06 0)
(1.14643e-05 8.27191e-06 0)
(1.06334e-05 9.01389e-06 0)
(9.68833e-06 9.74782e-06 0)
(8.62594e-06 1.0454e-05 0)
(7.44839e-06 1.11021e-05 0)
(6.17077e-06 1.16608e-05 0)
(4.78749e-06 1.20732e-05 0)
(3.34285e-06 1.22202e-05 0)
(1.89681e-06 1.17705e-05 0)
(5.21399e-07 9.19692e-06 0)
(6.08297e-05 -6.66908e-08 0)
(5.95434e-05 1.07357e-05 0)
(5.77814e-05 1.48828e-05 0)
(5.58243e-05 1.55385e-05 0)
(5.42317e-05 1.50341e-05 0)
(5.27619e-05 1.42988e-05 0)
(5.1547e-05 1.35869e-05 0)
(5.04523e-05 1.29579e-05 0)
(4.94884e-05 1.24289e-05 0)
(4.86025e-05 1.19991e-05 0)
(4.77769e-05 1.16688e-05 0)
(4.69839e-05 1.14349e-05 0)
(4.6205e-05 1.12808e-05 0)
(4.54252e-05 1.12028e-05 0)
(4.46326e-05 1.11907e-05 0)
(4.38157e-05 1.12343e-05 0)
(4.29682e-05 1.13215e-05 0)
(4.20845e-05 1.14405e-05 0)
(4.11597e-05 1.15819e-05 0)
(4.01933e-05 1.17364e-05 0)
(3.91848e-05 1.18914e-05 0)
(3.81357e-05 1.20367e-05 0)
(3.70488e-05 1.21654e-05 0)
(3.59287e-05 1.22671e-05 0)
(3.47811e-05 1.23357e-05 0)
(3.36118e-05 1.23623e-05 0)
(3.24275e-05 1.23429e-05 0)
(3.12367e-05 1.22719e-05 0)
(3.00473e-05 1.2146e-05 0)
(2.88675e-05 1.19634e-05 0)
(2.77068e-05 1.17228e-05 0)
(2.65753e-05 1.14249e-05 0)
(2.54825e-05 1.10707e-05 0)
(2.44376e-05 1.06651e-05 0)
(2.34505e-05 1.02127e-05 0)
(2.25263e-05 9.71875e-06 0)
(2.16728e-05 9.19234e-06 0)
(2.08951e-05 8.64255e-06 0)
(2.01926e-05 8.08009e-06 0)
(1.95705e-05 7.51059e-06 0)
(1.90276e-05 6.95077e-06 0)
(1.85607e-05 6.40664e-06 0)
(1.81667e-05 5.88833e-06 0)
(1.78394e-05 5.40455e-06 0)
(1.75716e-05 4.96335e-06 0)
(1.73557e-05 4.57044e-06 0)
(1.71818e-05 4.22988e-06 0)
(1.7037e-05 3.94458e-06 0)
(1.69084e-05 3.71484e-06 0)
(1.67832e-05 3.54071e-06 0)
(1.66522e-05 3.41548e-06 0)
(1.65045e-05 3.33396e-06 0)
(1.63321e-05 3.28696e-06 0)
(1.61299e-05 3.2625e-06 0)
(1.5894e-05 3.24728e-06 0)
(1.56235e-05 3.22852e-06 0)
(1.53224e-05 3.1934e-06 0)
(1.49993e-05 3.13105e-06 0)
(1.46635e-05 3.02874e-06 0)
(1.43253e-05 2.88403e-06 0)
(1.39982e-05 2.69201e-06 0)
(1.36974e-05 2.4537e-06 0)
(1.34359e-05 2.17616e-06 0)
(1.32256e-05 1.86572e-06 0)
(1.30764e-05 1.53258e-06 0)
(1.29934e-05 1.19165e-06 0)
(1.29785e-05 8.60768e-07 0)
(1.30308e-05 5.55876e-07 0)
(1.31454e-05 2.89153e-07 0)
(1.3312e-05 7.08103e-08 0)
(1.35178e-05 -8.69681e-08 0)
(1.37508e-05 -1.75508e-07 0)
(1.39998e-05 -1.91595e-07 0)
(1.42517e-05 -1.3434e-07 0)
(1.44926e-05 -6.38877e-09 0)
(1.4711e-05 1.87196e-07 0)
(1.4898e-05 4.40645e-07 0)
(1.50468e-05 7.53353e-07 0)
(1.51542e-05 1.12045e-06 0)
(1.52165e-05 1.53593e-06 0)
(1.52291e-05 1.99642e-06 0)
(1.51919e-05 2.49606e-06 0)
(1.51028e-05 3.03451e-06 0)
(1.49563e-05 3.61407e-06 0)
(1.47486e-05 4.23193e-06 0)
(1.44737e-05 4.88724e-06 0)
(1.4126e-05 5.57882e-06 0)
(1.36983e-05 6.3082e-06 0)
(1.31827e-05 7.07255e-06 0)
(1.25728e-05 7.8595e-06 0)
(1.18583e-05 8.65829e-06 0)
(1.10244e-05 9.45952e-06 0)
(1.00646e-05 1.02539e-05 0)
(8.97827e-06 1.10215e-05 0)
(7.76963e-06 1.17256e-05 0)
(6.45178e-06 1.23374e-05 0)
(5.01469e-06 1.27989e-05 0)
(3.50599e-06 1.29636e-05 0)
(1.97546e-06 1.25023e-05 0)
(5.35797e-07 9.80892e-06 0)
(6.03184e-05 5.47964e-08 0)
(5.90378e-05 1.1497e-05 0)
(5.72847e-05 1.58161e-05 0)
(5.5347e-05 1.64159e-05 0)
(5.37831e-05 1.57984e-05 0)
(5.23549e-05 1.49543e-05 0)
(5.11903e-05 1.41553e-05 0)
(5.01513e-05 1.34576e-05 0)
(4.92435e-05 1.28787e-05 0)
(4.84123e-05 1.24144e-05 0)
(4.76362e-05 1.20621e-05 0)
(4.6889e-05 1.18167e-05 0)
(4.61519e-05 1.16603e-05 0)
(4.54091e-05 1.15873e-05 0)
(4.46478e-05 1.15856e-05 0)
(4.38562e-05 1.16446e-05 0)
(4.30286e-05 1.17494e-05 0)
(4.2159e-05 1.18895e-05 0)
(4.12433e-05 1.20526e-05 0)
(4.028e-05 1.22296e-05 0)
(3.92694e-05 1.24066e-05 0)
(3.82138e-05 1.25735e-05 0)
(3.71142e-05 1.27202e-05 0)
(3.59768e-05 1.28388e-05 0)
(3.48081e-05 1.29206e-05 0)
(3.36142e-05 1.29572e-05 0)
(3.24031e-05 1.29439e-05 0)
(3.11837e-05 1.28746e-05 0)
(2.99644e-05 1.27463e-05 0)
(2.87546e-05 1.25567e-05 0)
(2.75642e-05 1.2304e-05 0)
(2.64037e-05 1.19887e-05 0)
(2.52832e-05 1.16127e-05 0)
(2.42129e-05 1.11802e-05 0)
(2.32032e-05 1.06963e-05 0)
(2.22603e-05 1.01677e-05 0)
(2.13926e-05 9.60419e-06 0)
(2.06058e-05 9.01508e-06 0)
(1.98985e-05 8.41173e-06 0)
(1.92774e-05 7.80225e-06 0)
(1.87414e-05 7.2014e-06 0)
(1.82853e-05 6.61928e-06 0)
(1.7907e-05 6.06469e-06 0)
(1.75999e-05 5.54775e-06 0)
(1.73559e-05 5.07723e-06 0)
(1.71663e-05 4.66031e-06 0)
(1.70207e-05 4.30128e-06 0)
(1.69046e-05 4.0051e-06 0)
(1.68044e-05 3.76997e-06 0)
(1.67065e-05 3.59697e-06 0)
(1.65993e-05 3.47867e-06 0)
(1.64721e-05 3.40749e-06 0)
(1.63152e-05 3.37601e-06 0)
(1.61217e-05 3.36956e-06 0)
(1.58879e-05 3.37341e-06 0)
(1.56128e-05 3.37255e-06 0)
(1.53e-05 3.35255e-06 0)
(1.49585e-05 3.30118e-06 0)
(1.46003e-05 3.20435e-06 0)
(1.42383e-05 3.0583e-06 0)
(1.3887e-05 2.85634e-06 0)
(1.35638e-05 2.60192e-06 0)
(1.32836e-05 2.29991e-06 0)
(1.30605e-05 1.95945e-06 0)
(1.29051e-05 1.59253e-06 0)
(1.28234e-05 1.21607e-06 0)
(1.28176e-05 8.49105e-07 0)
(1.28865e-05 5.09651e-07 0)
(1.30244e-05 2.12381e-07 0)
(1.322e-05 -3.00749e-08 0)
(1.34591e-05 -2.05314e-07 0)
(1.37284e-05 -3.05096e-07 0)
(1.40143e-05 -3.26245e-07 0)
(1.43021e-05 -2.66765e-07 0)
(1.45775e-05 -1.29964e-07 0)
(1.48283e-05 7.75854e-08 0)
(1.50454e-05 3.49297e-07 0)
(1.52216e-05 6.82611e-07 0)
(1.53538e-05 1.07129e-06 0)
(1.54392e-05 1.5109e-06 0)
(1.54738e-05 1.99654e-06 0)
(1.54576e-05 2.52131e-06 0)
(1.53885e-05 3.08729e-06 0)
(1.52616e-05 3.6964e-06 0)
(1.5073e-05 4.34621e-06 0)
(1.48166e-05 5.03685e-06 0)
(1.44853e-05 5.76701e-06 0)
(1.40723e-05 6.53882e-06 0)
(1.35726e-05 7.34855e-06 0)
(1.29758e-05 8.18588e-06 0)
(1.22673e-05 9.04267e-06 0)
(1.14321e-05 9.90889e-06 0)
(1.04624e-05 1.07684e-05 0)
(9.35645e-06 1.16023e-05 0)
(8.11853e-06 1.23665e-05 0)
(6.75666e-06 1.30387e-05 0)
(5.26513e-06 1.35537e-05 0)
(3.69348e-06 1.37421e-05 0)
(2.09543e-06 1.32737e-05 0)
(5.78397e-07 1.04523e-05 0)
(5.96121e-05 1.59097e-07 0)
(5.8401e-05 1.22445e-05 0)
(5.66751e-05 1.67363e-05 0)
(5.47786e-05 1.72763e-05 0)
(5.32628e-05 1.65401e-05 0)
(5.18949e-05 1.55833e-05 0)
(5.07936e-05 1.46939e-05 0)
(4.9819e-05 1.3928e-05 0)
(4.89742e-05 1.32989e-05 0)
(4.82044e-05 1.28019e-05 0)
(4.74857e-05 1.24299e-05 0)
(4.67911e-05 1.21748e-05 0)
(4.61007e-05 1.20195e-05 0)
(4.53985e-05 1.19539e-05 0)
(4.46706e-05 1.19659e-05 0)
(4.39056e-05 1.20432e-05 0)
(4.30985e-05 1.21688e-05 0)
(4.22431e-05 1.23326e-05 0)
(4.13361e-05 1.25207e-05 0)
(4.03758e-05 1.27224e-05 0)
(3.9363e-05 1.29244e-05 0)
(3.82997e-05 1.31144e-05 0)
(3.71876e-05 1.32824e-05 0)
(3.60323e-05 1.34206e-05 0)
(3.48404e-05 1.35177e-05 0)
(3.362e-05 1.35658e-05 0)
(3.23796e-05 1.35594e-05 0)
(3.11293e-05 1.34926e-05 0)
(2.98781e-05 1.33622e-05 0)
(2.86359e-05 1.31658e-05 0)
(2.74127e-05 1.29008e-05 0)
(2.62199e-05 1.25676e-05 0)
(2.50693e-05 1.21686e-05 0)
(2.39715e-05 1.17079e-05 0)
(2.29376e-05 1.11909e-05 0)
(2.19746e-05 1.06257e-05 0)
(2.10916e-05 1.00218e-05 0)
(2.02947e-05 9.39114e-06 0)
(1.95832e-05 8.74411e-06 0)
(1.89634e-05 8.09234e-06 0)
(1.84343e-05 7.44805e-06 0)
(1.79904e-05 6.82447e-06 0)
(1.76293e-05 6.23149e-06 0)
(1.73447e-05 5.67926e-06 0)
(1.71273e-05 5.1783e-06 0)
(1.6967e-05 4.736e-06 0)
(1.68526e-05 4.35833e-06 0)
(1.67685e-05 4.05134e-06 0)
(1.67001e-05 3.81077e-06 0)
(1.66328e-05 3.6393e-06 0)
(1.65525e-05 3.52933e-06 0)
(1.64476e-05 3.47159e-06 0)
(1.63075e-05 3.45862e-06 0)
(1.61236e-05 3.47315e-06 0)
(1.58921e-05 3.49997e-06 0)
(1.56118e-05 3.52076e-06 0)
(1.52858e-05 3.51979e-06 0)
(1.49228e-05 3.48245e-06 0)
(1.4539e-05 3.39358e-06 0)
(1.41488e-05 3.2448e-06 0)
(1.37681e-05 3.03402e-06 0)
(1.34177e-05 2.76105e-06 0)
(1.31148e-05 2.43259e-06 0)
(1.28755e-05 2.05877e-06 0)
(1.27118e-05 1.65422e-06 0)
(1.26303e-05 1.23801e-06 0)
(1.2634e-05 8.30733e-07 0)
(1.27214e-05 4.52887e-07 0)
(1.28851e-05 1.21948e-07 0)
(1.31128e-05 -1.47466e-07 0)
(1.33898e-05 -3.42325e-07 0)
(1.37002e-05 -4.5425e-07 0)
(1.40272e-05 -4.79878e-07 0)
(1.43544e-05 -4.17414e-07 0)
(1.46676e-05 -2.7116e-07 0)
(1.49542e-05 -4.8852e-08 0)
(1.52034e-05 2.42911e-07 0)
(1.54076e-05 5.98487e-07 0)
(1.55653e-05 1.00996e-06 0)
(1.56748e-05 1.4743e-06 0)
(1.5732e-05 1.98576e-06 0)
(1.57377e-05 2.53589e-06 0)
(1.569e-05 3.12993e-06 0)
(1.5584e-05 3.76872e-06 0)
(1.54162e-05 4.45075e-06 0)
(1.518e-05 5.17708e-06 0)
(1.48692e-05 5.9462e-06 0)
(1.44776e-05 6.76035e-06 0)
(1.39986e-05 7.61603e-06 0)
(1.34118e-05 8.50904e-06 0)
(1.27037e-05 9.42619e-06 0)
(1.18677e-05 1.03599e-05 0)
(1.08909e-05 1.12894e-05 0)
(9.76975e-06 1.21941e-05 0)
(8.50424e-06 1.30256e-05 0)
(7.09333e-06 1.37674e-05 0)
(5.54194e-06 1.43383e-05 0)
(3.89871e-06 1.45568e-05 0)
(2.23172e-06 1.40775e-05 0)
(6.31042e-07 1.11414e-05 0)
(5.87421e-05 2.08444e-07 0)
(5.76378e-05 1.29644e-05 0)
(5.5966e-05 1.76298e-05 0)
(5.41347e-05 1.81092e-05 0)
(5.26845e-05 1.72505e-05 0)
(5.13882e-05 1.61794e-05 0)
(5.03578e-05 1.51985e-05 0)
(4.94565e-05 1.43644e-05 0)
(4.86842e-05 1.36864e-05 0)
(4.79823e-05 1.31579e-05 0)
(4.7326e-05 1.27694e-05 0)
(4.66875e-05 1.25073e-05 0)
(4.60473e-05 1.23561e-05 0)
(4.53893e-05 1.23013e-05 0)
(4.46978e-05 1.23302e-05 0)
(4.3962e-05 1.24294e-05 0)
(4.3178e-05 1.25791e-05 0)
(4.23385e-05 1.277e-05 0)
(4.14402e-05 1.29862e-05 0)
(4.04828e-05 1.32152e-05 0)
(3.94667e-05 1.3445e-05 0)
(3.83943e-05 1.36602e-05 0)
(3.72682e-05 1.38532e-05 0)
(3.60951e-05 1.40123e-05 0)
(3.48818e-05 1.41269e-05 0)
(3.36362e-05 1.41884e-05 0)
(3.2367e-05 1.41903e-05 0)
(3.10843e-05 1.41271e-05 0)
(2.97984e-05 1.39952e-05 0)
(2.85204e-05 1.37921e-05 0)
(2.72614e-05 1.35149e-05 0)
(2.60337e-05 1.31631e-05 0)
(2.48501e-05 1.27399e-05 0)
(2.37225e-05 1.22492e-05 0)
(2.26623e-05 1.16972e-05 0)
(2.1677e-05 1.10932e-05 0)
(2.07767e-05 1.04463e-05 0)
(1.99682e-05 9.77145e-06 0)
(1.92507e-05 9.0786e-06 0)
(1.86309e-05 8.38023e-06 0)
(1.81076e-05 7.69051e-06 0)
(1.76746e-05 7.02276e-06 0)
(1.73302e-05 6.38777e-06 0)
(1.70686e-05 5.79877e-06 0)
(1.68797e-05 5.26484e-06 0)
(1.67518e-05 4.79565e-06 0)
(1.66735e-05 4.39827e-06 0)
(1.66263e-05 4.07918e-06 0)
(1.65949e-05 3.83448e-06 0)
(1.65635e-05 3.66562e-06 0)
(1.65142e-05 3.56645e-06 0)
(1.64349e-05 3.52517e-06 0)
(1.63126e-05 3.53446e-06 0)
(1.61384e-05 3.57332e-06 0)
(1.59083e-05 3.62735e-06 0)
(1.56206e-05 3.67406e-06 0)
(1.52794e-05 3.69652e-06 0)
(1.48934e-05 3.67643e-06 0)
(1.44794e-05 3.59817e-06 0)
(1.40569e-05 3.44835e-06 0)
(1.36433e-05 3.22728e-06 0)
(1.32609e-05 2.93347e-06 0)
(1.29313e-05 2.57582e-06 0)
(1.26732e-05 2.16474e-06 0)
(1.25001e-05 1.71804e-06 0)
(1.24195e-05 1.25728e-06 0)
(1.24341e-05 8.04975e-07 0)
(1.2541e-05 3.84919e-07 0)
(1.27316e-05 1.68527e-08 0)
(1.29935e-05 -2.82876e-07 0)
(1.33114e-05 -5.00121e-07 0)
(1.36675e-05 -6.25426e-07 0)
(1.40415e-05 -6.54934e-07 0)
(1.44137e-05 -5.88398e-07 0)
(1.47681e-05 -4.31286e-07 0)
(1.50917e-05 -1.91928e-07 0)
(1.53733e-05 1.2134e-07 0)
(1.56067e-05 5.00634e-07 0)
(1.57908e-05 9.36515e-07 0)
(1.59238e-05 1.42608e-06 0)
(1.60043e-05 1.9636e-06 0)
(1.60326e-05 2.53946e-06 0)
(1.60074e-05 3.16131e-06 0)
(1.59259e-05 3.82935e-06 0)
(1.57839e-05 4.54343e-06 0)
(1.55743e-05 5.30546e-06 0)
(1.52903e-05 6.11321e-06 0)
(1.49245e-05 6.97028e-06 0)
(1.4467e-05 7.87453e-06 0)
(1.38912e-05 8.83067e-06 0)
(1.31837e-05 9.81026e-06 0)
(1.23436e-05 1.0813e-05 0)
(1.13575e-05 1.18164e-05 0)
(1.022e-05 1.27966e-05 0)
(8.91812e-06 1.37059e-05 0)
(7.45636e-06 1.45234e-05 0)
(5.84657e-06 1.51565e-05 0)
(4.11973e-06 1.54152e-05 0)
(2.34317e-06 1.49244e-05 0)
(6.57049e-07 1.18713e-05 0)
(5.78192e-05 1.88507e-07 0)
(5.68038e-05 1.36488e-05 0)
(5.51931e-05 1.84917e-05 0)
(5.34228e-05 1.89108e-05 0)
(5.20402e-05 1.79245e-05 0)
(5.08276e-05 1.67368e-05 0)
(4.98839e-05 1.56635e-05 0)
(4.90685e-05 1.47617e-05 0)
(4.83767e-05 1.40375e-05 0)
(4.77487e-05 1.34796e-05 0)
(4.71601e-05 1.30775e-05 0)
(4.65828e-05 1.28126e-05 0)
(4.59965e-05 1.26683e-05 0)
(4.5385e-05 1.26278e-05 0)
(4.47329e-05 1.26775e-05 0)
(4.40284e-05 1.28021e-05 0)
(4.32686e-05 1.29791e-05 0)
(4.24468e-05 1.32008e-05 0)
(4.15579e-05 1.34486e-05 0)
(4.06031e-05 1.37084e-05 0)
(3.95828e-05 1.39685e-05 0)
(3.85004e-05 1.42129e-05 0)
(3.7359e-05 1.44326e-05 0)
(3.61658e-05 1.46143e-05 0)
(3.49289e-05 1.47482e-05 0)
(3.36556e-05 1.4825e-05 0)
(3.23549e-05 1.48371e-05 0)
(3.10374e-05 1.47791e-05 0)
(2.97143e-05 1.46466e-05 0)
(2.83984e-05 1.44369e-05 0)
(2.71019e-05 1.41472e-05 0)
(2.58373e-05 1.37764e-05 0)
(2.46183e-05 1.33275e-05 0)
(2.34584e-05 1.28052e-05 0)
(2.23697e-05 1.22161e-05 0)
(2.13597e-05 1.15707e-05 0)
(2.04401e-05 1.08794e-05 0)
(1.96189e-05 1.01565e-05 0)
(1.88947e-05 9.41475e-06 0)
(1.82754e-05 8.66669e-06 0)
(1.77594e-05 7.92884e-06 0)
(1.73385e-05 7.2143e-06 0)
(1.70131e-05 6.53379e-06 0)
(1.67767e-05 5.90521e-06 0)
(1.66178e-05 5.33568e-06 0)
(1.65253e-05 4.83783e-06 0)
(1.64862e-05 4.41865e-06 0)
(1.6481e-05 4.08532e-06 0)
(1.64914e-05 3.83864e-06 0)
(1.64995e-05 3.67398e-06 0)
(1.64856e-05 3.58822e-06 0)
(1.6435e-05 3.5683e-06 0)
(1.63318e-05 3.60226e-06 0)
(1.61686e-05 3.67098e-06 0)
(1.59392e-05 3.75624e-06 0)
(1.56412e-05 3.83382e-06 0)
(1.52828e-05 3.88282e-06 0)
(1.4872e-05 3.88393e-06 0)
(1.44248e-05 3.81847e-06 0)
(1.3964e-05 3.67054e-06 0)
(1.35116e-05 3.43852e-06 0)
(1.30928e-05 3.12209e-06 0)
(1.27315e-05 2.72996e-06 0)
(1.24494e-05 2.27875e-06 0)
(1.22633e-05 1.78458e-06 0)
(1.21811e-05 1.27283e-06 0)
(1.22053e-05 7.71671e-07 0)
(1.23329e-05 3.04981e-07 0)
(1.25546e-05 -1.04561e-07 0)
(1.28566e-05 -4.38354e-07 0)
(1.32206e-05 -6.80681e-07 0)
(1.36265e-05 -8.21099e-07 0)
(1.40527e-05 -8.55045e-07 0)
(1.44757e-05 -7.82433e-07 0)
(1.48753e-05 -6.11506e-07 0)
(1.5238e-05 -3.52514e-07 0)
(1.5554e-05 -1.55473e-08 0)
(1.58187e-05 3.88868e-07 0)
(1.60301e-05 8.50551e-07 0)
(1.61868e-05 1.36632e-06 0)
(1.62908e-05 1.92945e-06 0)
(1.63424e-05 2.53182e-06 0)
(1.63403e-05 3.18056e-06 0)
(1.62838e-05 3.87694e-06 0)
(1.61684e-05 4.62223e-06 0)
(1.59879e-05 5.41929e-06 0)
(1.57332e-05 6.26642e-06 0)
(1.53945e-05 7.16783e-06 0)
(1.49572e-05 8.12485e-06 0)
(1.4396e-05 9.14796e-06 0)
(1.36976e-05 1.0194e-05 0)
(1.28568e-05 1.12688e-05 0)
(1.18638e-05 1.23493e-05 0)
(1.07085e-05 1.34118e-05 0)
(9.36922e-06 1.44102e-05 0)
(7.85367e-06 1.53069e-05 0)
(6.17644e-06 1.6012e-05 0)
(4.36538e-06 1.63224e-05 0)
(2.47459e-06 1.5829e-05 0)
(6.88735e-07 1.2636e-05 0)
(5.69141e-05 1.55451e-07 0)
(5.5868e-05 1.43082e-05 0)
(5.43117e-05 1.93232e-05 0)
(5.26218e-05 1.96752e-05 0)
(5.13307e-05 1.85562e-05 0)
(5.02149e-05 1.72492e-05 0)
(4.93668e-05 1.60831e-05 0)
(4.86465e-05 1.51148e-05 0)
(4.80465e-05 1.4347e-05 0)
(4.75045e-05 1.37635e-05 0)
(4.69936e-05 1.33511e-05 0)
(4.6484e-05 1.30881e-05 0)
(4.59551e-05 1.29546e-05 0)
(4.53914e-05 1.29324e-05 0)
(4.47809e-05 1.30071e-05 0)
(4.41104e-05 1.316e-05 0)
(4.33752e-05 1.33688e-05 0)
(4.25706e-05 1.36242e-05 0)
(4.16914e-05 1.39074e-05 0)
(4.07391e-05 1.42021e-05 0)
(3.97144e-05 1.44957e-05 0)
(3.86216e-05 1.47727e-05 0)
(3.74635e-05 1.50202e-05 0)
(3.62479e-05 1.52278e-05 0)
(3.49843e-05 1.53827e-05 0)
(3.36802e-05 1.54766e-05 0)
(3.23452e-05 1.5501e-05 0)
(3.09907e-05 1.54495e-05 0)
(2.96286e-05 1.53171e-05 0)
(2.82721e-05 1.51013e-05 0)
(2.69345e-05 1.47988e-05 0)
(2.56296e-05 1.44085e-05 0)
(2.43715e-05 1.3933e-05 0)
(2.31742e-05 1.33777e-05 0)
(2.2052e-05 1.27492e-05 0)
(2.10145e-05 1.20591e-05 0)
(2.0074e-05 1.13215e-05 0)
(1.92388e-05 1.05466e-05 0)
(1.85079e-05 9.75104e-06 0)
(1.78898e-05 8.95197e-06 0)
(1.7384e-05 8.16134e-06 0)
(1.69804e-05 7.39642e-06 0)
(1.66794e-05 6.66868e-06 0)
(1.64729e-05 5.9966e-06 0)
(1.6347e-05 5.38973e-06 0)
(1.62908e-05 4.86144e-06 0)
(1.62911e-05 4.4194e-06 0)
(1.63274e-05 4.0709e-06 0)
(1.6381e-05 3.82259e-06 0)
(1.64326e-05 3.66333e-06 0)
(1.64584e-05 3.59261e-06 0)
(1.64419e-05 3.59774e-06 0)
(1.63653e-05 3.66049e-06 0)
(1.62165e-05 3.76501e-06 0)
(1.59901e-05 3.88664e-06 0)
(1.56828e-05 4.00071e-06 0)
(1.53021e-05 4.08135e-06 0)
(1.48587e-05 4.10609e-06 0)
(1.43712e-05 4.05617e-06 0)
(1.38679e-05 3.91344e-06 0)
(1.33733e-05 3.67033e-06 0)
(1.29119e-05 3.33027e-06 0)
(1.25131e-05 2.9018e-06 0)
(1.22006e-05 2.40424e-06 0)
(1.19936e-05 1.85653e-06 0)
(1.19058e-05 1.28818e-06 0)
(1.19402e-05 7.30613e-07 0)
(1.20928e-05 2.10786e-07 0)
(1.23524e-05 -2.4539e-07 0)
(1.27003e-05 -6.16762e-07 0)
(1.31152e-05 -8.86263e-07 0)
(1.35742e-05 -1.04274e-06 0)
(1.40523e-05 -1.08092e-06 0)
(1.45254e-05 -1.00095e-06 0)
(1.49737e-05 -8.14028e-07 0)
(1.53819e-05 -5.33114e-07 0)
(1.57389e-05 -1.70185e-07 0)
(1.60395e-05 2.61782e-07 0)
(1.62809e-05 7.51177e-07 0)
(1.64627e-05 1.29479e-06 0)
(1.65893e-05 1.88372e-06 0)
(1.66633e-05 2.51255e-06 0)
(1.66848e-05 3.1875e-06 0)
(1.66535e-05 3.91131e-06 0)
(1.65649e-05 4.68683e-06 0)
(1.64147e-05 5.51719e-06 0)
(1.61938e-05 6.40386e-06 0)
(1.58884e-05 7.35127e-06 0)
(1.54765e-05 8.36615e-06 0)
(1.49388e-05 9.45556e-06 0)
(1.42588e-05 1.05742e-05 0)
(1.34222e-05 1.1726e-05 0)
(1.24222e-05 1.28882e-05 0)
(1.12447e-05 1.40415e-05 0)
(9.8689e-06 1.51376e-05 0)
(8.2934e-06 1.61235e-05 0)
(6.54248e-06 1.69054e-05 0)
(4.64829e-06 1.72774e-05 0)
(2.65938e-06 1.67892e-05 0)
(7.53166e-07 1.34514e-05 0)
(5.57984e-05 1.38202e-07 0)
(5.47915e-05 1.49432e-05 0)
(5.33182e-05 2.01175e-05 0)
(5.17247e-05 2.03923e-05 0)
(5.05377e-05 1.91378e-05 0)
(4.95352e-05 1.77102e-05 0)
(4.88e-05 1.64507e-05 0)
(4.81915e-05 1.54177e-05 0)
(4.76963e-05 1.46089e-05 0)
(4.72498e-05 1.40049e-05 0)
(4.68238e-05 1.35869e-05 0)
(4.63886e-05 1.33301e-05 0)
(4.59233e-05 1.32132e-05 0)
(4.54116e-05 1.32144e-05 0)
(4.48447e-05 1.33174e-05 0)
(4.4209e-05 1.35024e-05 0)
(4.3499e-05 1.37485e-05 0)
(4.27124e-05 1.404e-05 0)
(4.18435e-05 1.43626e-05 0)
(4.08941e-05 1.4696e-05 0)
(3.98654e-05 1.5027e-05 0)
(3.87608e-05 1.53388e-05 0)
(3.75847e-05 1.56175e-05 0)
(3.63453e-05 1.58539e-05 0)
(3.50521e-05 1.60325e-05 0)
(3.37142e-05 1.6145e-05 0)
(3.23414e-05 1.61833e-05 0)
(3.09462e-05 1.61394e-05 0)
(2.95417e-05 1.60082e-05 0)
(2.81411e-05 1.57868e-05 0)
(2.67587e-05 1.54716e-05 0)
(2.54099e-05 1.50611e-05 0)
(2.41094e-05 1.45583e-05 0)
(2.28718e-05 1.39687e-05 0)
(2.1713e-05 1.32989e-05 0)
(2.06458e-05 1.2561e-05 0)
(1.96819e-05 1.17725e-05 0)
(1.88306e-05 1.09419e-05 0)
(1.80939e-05 1.00885e-05 0)
(1.74775e-05 9.23421e-06 0)
(1.69817e-05 8.38617e-06 0)
(1.65974e-05 7.56704e-06 0)
(1.63224e-05 6.78984e-06 0)
(1.61479e-05 6.07192e-06 0)
(1.60583e-05 5.42577e-06 0)
(1.60427e-05 4.86483e-06 0)
(1.60868e-05 4.39939e-06 0)
(1.61706e-05 4.03525e-06 0)
(1.62732e-05 3.78097e-06 0)
(1.63728e-05 3.62975e-06 0)
(1.64435e-05 3.57711e-06 0)
(1.64645e-05 3.60964e-06 0)
(1.6416e-05 3.70818e-06 0)
(1.62835e-05 3.85393e-06 0)
(1.60597e-05 4.01916e-06 0)
(1.57409e-05 4.17592e-06 0)
(1.53347e-05 4.29513e-06 0)
(1.48553e-05 4.34836e-06 0)
(1.43243e-05 4.31625e-06 0)
(1.37708e-05 4.1803e-06 0)
(1.32255e-05 3.92525e-06 0)
(1.27164e-05 3.5598e-06 0)
(1.22735e-05 3.09432e-06 0)
(1.19256e-05 2.54221e-06 0)
(1.16963e-05 1.93595e-06 0)
(1.16017e-05 1.30402e-06 0)
(1.16471e-05 6.8037e-07 0)
(1.18284e-05 9.96123e-08 0)
(1.21301e-05 -4.08504e-07 0)
(1.25287e-05 -8.20457e-07 0)
(1.2999e-05 -1.11889e-06 0)
(1.35164e-05 -1.29219e-06 0)
(1.40538e-05 -1.33368e-06 0)
(1.45844e-05 -1.2455e-06 0)
(1.50863e-05 -1.0412e-06 0)
(1.55422e-05 -7.35835e-07 0)
(1.59408e-05 -3.44508e-07 0)
(1.62769e-05 1.17777e-07 0)
(1.6547e-05 6.38405e-07 0)
(1.67525e-05 1.21166e-06 0)
(1.69004e-05 1.82735e-06 0)
(1.69945e-05 2.48241e-06 0)
(1.70371e-05 3.18273e-06 0)
(1.70293e-05 3.93277e-06 0)
(1.69676e-05 4.73723e-06 0)
(1.68481e-05 5.59863e-06 0)
(1.66615e-05 6.52372e-06 0)
(1.63898e-05 7.51873e-06 0)
(1.60105e-05 8.59358e-06 0)
(1.55055e-05 9.749e-06 0)
(1.48513e-05 1.09466e-05 0)
(1.40294e-05 1.21813e-05 0)
(1.30288e-05 1.34334e-05 0)
(1.18294e-05 1.46867e-05 0)
(1.04155e-05 1.58879e-05 0)
(8.78337e-06 1.69757e-05 0)
(6.95262e-06 1.78402e-05 0)
(4.96007e-06 1.82823e-05 0)
(2.85987e-06 1.78051e-05 0)
(8.19373e-07 1.43328e-05 0)
(5.45003e-05 9.25131e-08 0)
(5.35828e-05 1.55389e-05 0)
(5.22042e-05 2.08644e-05 0)
(5.07278e-05 2.10537e-05 0)
(4.96688e-05 1.96595e-05 0)
(4.8803e-05 1.81097e-05 0)
(4.82007e-05 1.67576e-05 0)
(4.77175e-05 1.56645e-05 0)
(4.7335e-05 1.48184e-05 0)
(4.69907e-05 1.41999e-05 0)
(4.66547e-05 1.37817e-05 0)
(4.6297e-05 1.35368e-05 0)
(4.58993e-05 1.34412e-05 0)
(4.54438e-05 1.34719e-05 0)
(4.49238e-05 1.36075e-05 0)
(4.43254e-05 1.38289e-05 0)
(4.36425e-05 1.41169e-05 0)
(4.28753e-05 1.44494e-05 0)
(4.20176e-05 1.48145e-05 0)
(4.10712e-05 1.51901e-05 0)
(4.0037e-05 1.55614e-05 0)
(3.8919e-05 1.59118e-05 0)
(3.77233e-05 1.62268e-05 0)
(3.64574e-05 1.64938e-05 0)
(3.51319e-05 1.6699e-05 0)
(3.37576e-05 1.68326e-05 0)
(3.23438e-05 1.68857e-05 0)
(3.09037e-05 1.68512e-05 0)
(2.9452e-05 1.67221e-05 0)
(2.80031e-05 1.64956e-05 0)
(2.65723e-05 1.61676e-05 0)
(2.51753e-05 1.57365e-05 0)
(2.3828e-05 1.52048e-05 0)
(2.25467e-05 1.45787e-05 0)
(2.13494e-05 1.38671e-05 0)
(2.02512e-05 1.30774e-05 0)
(1.92633e-05 1.22329e-05 0)
(1.83952e-05 1.1343e-05 0)
(1.76525e-05 1.04283e-05 0)
(1.70379e-05 9.51246e-06 0)
(1.65515e-05 8.60348e-06 0)
(1.6186e-05 7.72681e-06 0)
(1.59374e-05 6.89567e-06 0)
(1.57973e-05 6.12974e-06 0)
(1.5749e-05 5.44121e-06 0)
(1.5781e-05 4.84516e-06 0)
(1.58768e-05 4.35415e-06 0)
(1.60147e-05 3.97468e-06 0)
(1.61714e-05 3.71308e-06 0)
(1.63234e-05 3.57179e-06 0)
(1.64424e-05 3.53856e-06 0)
(1.6504e-05 3.60334e-06 0)
(1.64867e-05 3.74355e-06 0)
(1.63727e-05 3.93784e-06 0)
(1.61523e-05 4.15407e-06 0)
(1.58219e-05 4.36045e-06 0)
(1.5389e-05 4.5231e-06 0)
(1.48695e-05 4.61356e-06 0)
(1.42876e-05 4.60313e-06 0)
(1.36739e-05 4.47324e-06 0)
(1.30659e-05 4.20735e-06 0)
(1.25005e-05 3.81443e-06 0)
(1.20083e-05 3.30371e-06 0)
(1.16233e-05 2.69642e-06 0)
(1.13727e-05 2.02276e-06 0)
(1.12729e-05 1.31727e-06 0)
(1.13319e-05 6.19485e-07 0)
(1.15438e-05 -3.00265e-08 0)
(1.18911e-05 -5.96303e-07 0)
(1.2348e-05 -1.05311e-06 0)
(1.28846e-05 -1.38265e-06 0)
(1.34699e-05 -1.57311e-06 0)
(1.40728e-05 -1.61707e-06 0)
(1.46652e-05 -1.51877e-06 0)
(1.52231e-05 -1.29399e-06 0)
(1.57271e-05 -9.60404e-07 0)
(1.61656e-05 -5.37445e-07 0)
(1.65338e-05 -4.17653e-08 0)
(1.68293e-05 5.13603e-07 0)
(1.70568e-05 1.11763e-06 0)
(1.72254e-05 1.76065e-06 0)
(1.73402e-05 2.44187e-06 0)
(1.74051e-05 3.16644e-06 0)
(1.74224e-05 3.94125e-06 0)
(1.739e-05 4.77252e-06 0)
(1.73037e-05 5.66339e-06 0)
(1.71517e-05 6.62612e-06 0)
(1.69159e-05 7.66882e-06 0)
(1.6575e-05 8.8025e-06 0)
(1.61072e-05 1.00262e-05 0)
(1.5482e-05 1.13074e-05 0)
(1.46806e-05 1.26304e-05 0)
(1.36816e-05 1.39837e-05 0)
(1.24635e-05 1.53459e-05 0)
(1.10157e-05 1.66604e-05 0)
(9.33506e-06 1.78596e-05 0)
(7.42625e-06 1.88239e-05 0)
(5.31883e-06 1.93451e-05 0)
(3.08131e-06 1.88898e-05 0)
(8.86788e-07 1.5284e-05 0)
(5.30848e-05 1.44261e-08 0)
(5.2245e-05 1.60869e-05 0)
(5.09797e-05 2.15525e-05 0)
(4.96462e-05 2.16472e-05 0)
(4.87354e-05 2.01113e-05 0)
(4.80215e-05 1.84384e-05 0)
(4.75658e-05 1.69962e-05 0)
(4.72223e-05 1.58485e-05 0)
(4.69649e-05 1.49718e-05 0)
(4.67305e-05 1.43449e-05 0)
(4.649e-05 1.39333e-05 0)
(4.62147e-05 1.37064e-05 0)
(4.58894e-05 1.36368e-05 0)
(4.54962e-05 1.3702e-05 0)
(4.50265e-05 1.38763e-05 0)
(4.44666e-05 1.41393e-05 0)
(4.38111e-05 1.44729e-05 0)
(4.30617e-05 1.48526e-05 0)
(4.22141e-05 1.52633e-05 0)
(4.12694e-05 1.56852e-05 0)
(4.02282e-05 1.61007e-05 0)
(3.90952e-05 1.64944e-05 0)
(3.7877e-05 1.68484e-05 0)
(3.65823e-05 1.71492e-05 0)
(3.52224e-05 1.7383e-05 0)
(3.38086e-05 1.75408e-05 0)
(3.23517e-05 1.76104e-05 0)
(3.08649e-05 1.75867e-05 0)
(2.93628e-05 1.74611e-05 0)
(2.78614e-05 1.723e-05 0)
(2.63774e-05 1.68892e-05 0)
(2.49273e-05 1.64371e-05 0)
(2.35284e-05 1.58749e-05 0)
(2.22004e-05 1.52103e-05 0)
(2.09608e-05 1.44523e-05 0)
(1.98281e-05 1.36097e-05 0)
(1.88148e-05 1.27032e-05 0)
(1.79289e-05 1.175e-05 0)
(1.71798e-05 1.07704e-05 0)
(1.65671e-05 9.78758e-06 0)
(1.60906e-05 8.81434e-06 0)
(1.57442e-05 7.87535e-06 0)
(1.5524e-05 6.98614e-06 0)
(1.54211e-05 6.16785e-06 0)
(1.54181e-05 5.43351e-06 0)
(1.55024e-05 4.79937e-06 0)
(1.56558e-05 4.28028e-06 0)
(1.58542e-05 3.88503e-06 0)
(1.60719e-05 3.61926e-06 0)
(1.62826e-05 3.48749e-06 0)
(1.64561e-05 3.47574e-06 0)
(1.65637e-05 3.57789e-06 0)
(1.6581e-05 3.76557e-06 0)
(1.64882e-05 4.01492e-06 0)
(1.6272e-05 4.29112e-06 0)
(1.59279e-05 4.5543e-06 0)
(1.54651e-05 4.76931e-06 0)
(1.48999e-05 4.90206e-06 0)
(1.42584e-05 4.91916e-06 0)
(1.35755e-05 4.79854e-06 0)
(1.28964e-05 4.52408e-06 0)
(1.22645e-05 4.09879e-06 0)
(1.17157e-05 3.53911e-06 0)
(1.12876e-05 2.86907e-06 0)
(1.10099e-05 2.11724e-06 0)
(1.09044e-05 1.32821e-06 0)
(1.09787e-05 5.4693e-07 0)
(1.12253e-05 -1.79784e-07 0)
(1.1624e-05 -8.11639e-07 0)
(1.2146e-05 -1.31899e-06 0)
(1.27562e-05 -1.68225e-06 0)
(1.34166e-05 -1.88921e-06 0)
(1.4092e-05 -1.93391e-06 0)
(1.47521e-05 -1.82292e-06 0)
(1.53706e-05 -1.57368e-06 0)
(1.59258e-05 -1.20738e-06 0)
(1.64056e-05 -7.48065e-07 0)
(1.68051e-05 -2.14565e-07 0)
(1.71249e-05 3.77734e-07 0)
(1.73733e-05 1.01317e-06 0)
(1.75614e-05 1.68391e-06 0)
(1.76961e-05 2.39063e-06 0)
(1.77833e-05 3.13812e-06 0)
(1.78268e-05 3.93566e-06 0)
(1.78267e-05 4.79096e-06 0)
(1.77769e-05 5.71027e-06 0)
(1.76638e-05 6.70982e-06 0)
(1.74698e-05 7.79868e-06 0)
(1.71739e-05 8.99006e-06 0)
(1.67482e-05 1.02855e-05 0)
(1.61585e-05 1.16539e-05 0)
(1.53814e-05 1.30723e-05 0)
(1.43851e-05 1.4538e-05 0)
(1.31525e-05 1.60166e-05 0)
(1.16727e-05 1.74546e-05 0)
(9.93571e-06 1.87751e-05 0)
(7.94567e-06 1.98584e-05 0)
(5.71976e-06 2.04731e-05 0)
(3.33778e-06 2.00528e-05 0)
(9.69521e-07 1.63136e-05 0)
(5.14546e-05 -1.07121e-07 0)
(5.07727e-05 1.65726e-05 0)
(4.96397e-05 2.21717e-05 0)
(4.84637e-05 2.21626e-05 0)
(4.77242e-05 2.04817e-05 0)
(4.71887e-05 1.86871e-05 0)
(4.68986e-05 1.71599e-05 0)
(4.67069e-05 1.59634e-05 0)
(4.65846e-05 1.50647e-05 0)
(4.64692e-05 1.4436e-05 0)
(4.63336e-05 1.40385e-05 0)
(4.61481e-05 1.38359e-05 0)
(4.58973e-05 1.37994e-05 0)
(4.55659e-05 1.39029e-05 0)
(4.51454e-05 1.41224e-05 0)
(4.46253e-05 1.44331e-05 0)
(4.40003e-05 1.48166e-05 0)
(4.32705e-05 1.52478e-05 0)
(4.2433e-05 1.5709e-05 0)
(4.14892e-05 1.61818e-05 0)
(4.04407e-05 1.66469e-05 0)
(3.92918e-05 1.70862e-05 0)
(3.80495e-05 1.74831e-05 0)
(3.67235e-05 1.78214e-05 0)
(3.53267e-05 1.80858e-05 0)
(3.38708e-05 1.82697e-05 0)
(3.23671e-05 1.83588e-05 0)
(3.08302e-05 1.83474e-05 0)
(2.92744e-05 1.82266e-05 0)
(2.77169e-05 1.79918e-05 0)
(2.61753e-05 1.76385e-05 0)
(2.46672e-05 1.71652e-05 0)
(2.32127e-05 1.65716e-05 0)
(2.18331e-05 1.58662e-05 0)
(2.05474e-05 1.50565e-05 0)
(1.93758e-05 1.41577e-05 0)
(1.83331e-05 1.31849e-05 0)
(1.74288e-05 1.21635e-05 0)
(1.66717e-05 1.11134e-05 0)
(1.60607e-05 1.00583e-05 0)
(1.55956e-05 9.01916e-06 0)
(1.52708e-05 8.01094e-06 0)
(1.50817e-05 7.06177e-06 0)
(1.50193e-05 6.18501e-06 0)
(1.50646e-05 5.40113e-06 0)
(1.52052e-05 4.72602e-06 0)
(1.54214e-05 4.17745e-06 0)
(1.56867e-05 3.76219e-06 0)
(1.59741e-05 3.49445e-06 0)
(1.62521e-05 3.37129e-06 0)
(1.64879e-05 3.38698e-06 0)
(1.66483e-05 3.52911e-06 0)
(1.67042e-05 3.77309e-06 0)
(1.66349e-05 4.08445e-06 0)
(1.64224e-05 4.42903e-06 0)
(1.60624e-05 4.75996e-06 0)
(1.55649e-05 5.0378e-06 0)
(1.49466e-05 5.21908e-06 0)
(1.42376e-05 5.26908e-06 0)
(1.34778e-05 5.16075e-06 0)
(1.27171e-05 4.87921e-06 0)
(1.20077e-05 4.41665e-06 0)
(1.13916e-05 3.80342e-06 0)
(1.09111e-05 3.05932e-06 0)
(1.06031e-05 2.22022e-06 0)
(1.04908e-05 1.33682e-06 0)
(1.0581e-05 4.61636e-07 0)
(1.08648e-05 -3.51785e-07 0)
(1.13199e-05 -1.05746e-06 0)
(1.19136e-05 -1.62142e-06 0)
(1.26049e-05 -2.02127e-06 0)
(1.33499e-05 -2.24454e-06 0)
(1.41077e-05 -2.28809e-06 0)
(1.48439e-05 -2.16092e-06 0)
(1.55288e-05 -1.88253e-06 0)
(1.61391e-05 -1.4783e-06 0)
(1.66617e-05 -9.76532e-07 0)
(1.70922e-05 -4.0017e-07 0)
(1.7435e-05 2.30766e-07 0)
(1.77024e-05 8.99082e-07 0)
(1.79077e-05 1.598e-06 0)
(1.80609e-05 2.32899e-06 0)
(1.81701e-05 3.09764e-06 0)
(1.82408e-05 3.91491e-06 0)
(1.82754e-05 4.79068e-06 0)
(1.82667e-05 5.73671e-06 0)
(1.82001e-05 6.7712e-06 0)
(1.80556e-05 7.90522e-06 0)
(1.7809e-05 9.15413e-06 0)
(1.74296e-05 1.05243e-05 0)
(1.68819e-05 1.19825e-05 0)
(1.6133e-05 1.35063e-05 0)
(1.51457e-05 1.50928e-05 0)
(1.39079e-05 1.66956e-05 0)
(1.24081e-05 1.82687e-05 0)
(1.06105e-05 1.97296e-05 0)
(8.5249e-06 2.09448e-05 0)
(6.17521e-06 2.16705e-05 0)
(3.64359e-06 2.12978e-05 0)
(1.07361e-06 1.74389e-05 0)
(4.96876e-05 -3.27889e-07 0)
(4.91738e-05 1.69849e-05 0)
(4.8184e-05 2.27144e-05 0)
(4.71848e-05 2.25916e-05 0)
(4.66359e-05 2.07594e-05 0)
(4.62992e-05 1.88446e-05 0)
(4.61955e-05 1.72402e-05 0)
(4.61742e-05 1.60025e-05 0)
(4.62017e-05 1.50918e-05 0)
(4.62148e-05 1.4469e-05 0)
(4.61892e-05 1.40937e-05 0)
(4.60975e-05 1.39228e-05 0)
(4.59239e-05 1.39273e-05 0)
(4.56565e-05 1.40749e-05 0)
(4.52875e-05 1.43452e-05 0)
(4.48088e-05 1.47097e-05 0)
(4.42154e-05 1.51482e-05 0)
(4.35061e-05 1.56348e-05 0)
(4.26795e-05 1.61515e-05 0)
(4.17367e-05 1.66788e-05 0)
(4.06792e-05 1.71989e-05 0)
(3.95126e-05 1.76883e-05 0)
(3.82444e-05 1.8133e-05 0)
(3.68835e-05 1.85104e-05 0)
(3.54463e-05 1.88098e-05 0)
(3.39449e-05 1.90205e-05 0)
(3.23906e-05 1.91319e-05 0)
(3.07999e-05 1.91349e-05 0)
(2.91868e-05 1.90203e-05 0)
(2.75691e-05 1.8783e-05 0)
(2.59653e-05 1.84179e-05 0)
(2.43942e-05 1.79228e-05 0)
(2.28788e-05 1.72971e-05 0)
(2.14425e-05 1.65481e-05 0)
(2.01061e-05 1.56844e-05 0)
(1.88919e-05 1.47215e-05 0)
(1.78172e-05 1.36803e-05 0)
(1.68924e-05 1.25843e-05 0)
(1.61265e-05 1.14565e-05 0)
(1.55193e-05 1.03258e-05 0)
(1.50659e-05 9.21359e-06 0)
(1.47642e-05 8.13582e-06 0)
(1.46094e-05 7.11908e-06 0)
(1.45897e-05 6.1804e-06 0)
(1.4688e-05 5.34111e-06 0)
(1.48901e-05 4.62314e-06 0)
(1.51735e-05 4.03945e-06 0)
(1.5513e-05 3.60588e-06 0)
(1.58779e-05 3.33206e-06 0)
(1.62309e-05 3.21967e-06 0)
(1.65371e-05 3.2671e-06 0)
(1.67587e-05 3.45539e-06 0)
(1.68599e-05 3.76282e-06 0)
(1.6817e-05 4.14623e-06 0)
(1.66107e-05 4.56953e-06 0)
(1.62337e-05 4.97978e-06 0)
(1.5696e-05 5.32934e-06 0)
(1.50167e-05 5.56872e-06 0)
(1.42306e-05 5.65807e-06 0)
(1.33826e-05 5.56544e-06 0)
(1.25266e-05 5.27518e-06 0)
(1.17268e-05 4.7756e-06 0)
(1.10347e-05 4.09871e-06 0)
(1.04936e-05 3.26869e-06 0)
(1.0149e-05 2.33318e-06 0)
(1.00279e-05 1.34308e-06 0)
(1.01358e-05 3.62411e-07 0)
(1.0462e-05 -5.48484e-07 0)
(1.09813e-05 -1.33734e-06 0)
(1.16565e-05 -1.9647e-06 0)
(1.24399e-05 -2.40458e-06 0)
(1.32802e-05 -2.6443e-06 0)
(1.413e-05 -2.68412e-06 0)
(1.49497e-05 -2.53606e-06 0)
(1.57063e-05 -2.22272e-06 0)
(1.63746e-05 -1.77418e-06 0)
(1.69403e-05 -1.22367e-06 0)
(1.74003e-05 -5.99315e-07 0)
(1.77646e-05 7.33323e-08 0)
(1.80498e-05 7.76218e-07 0)
(1.82717e-05 1.50336e-06 0)
(1.84429e-05 2.25737e-06 0)
(1.85731e-05 3.04519e-06 0)
(1.86697e-05 3.879e-06 0)
(1.87363e-05 4.77158e-06 0)
(1.87689e-05 5.7399e-06 0)
(1.87559e-05 6.80541e-06 0)
(1.86719e-05 7.98423e-06 0)
(1.84831e-05 9.2925e-06 0)
(1.81585e-05 1.07386e-05 0)
(1.76588e-05 1.22913e-05 0)
(1.69449e-05 1.39282e-05 0)
(1.59777e-05 1.56436e-05 0)
(1.47383e-05 1.7382e-05 0)
(1.32016e-05 1.91055e-05 0)
(1.13402e-05 2.07238e-05 0)
(9.16746e-06 2.20853e-05 0)
(6.68829e-06 2.29417e-05 0)
(3.9799e-06 2.2637e-05 0)
(1.17918e-06 1.86728e-05 0)
(4.79297e-05 -6.13225e-07 0)
(4.74633e-05 1.73359e-05 0)
(4.6603e-05 2.31767e-05 0)
(4.58003e-05 2.29238e-05 0)
(4.54712e-05 2.09339e-05 0)
(4.53607e-05 1.89003e-05 0)
(4.54666e-05 1.72262e-05 0)
(4.56325e-05 1.5958e-05 0)
(4.58214e-05 1.50467e-05 0)
(4.59712e-05 1.44408e-05 0)
(4.60596e-05 1.40971e-05 0)
(4.6065e-05 1.39662e-05 0)
(4.59734e-05 1.40176e-05 0)
(4.57734e-05 1.42176e-05 0)
(4.54589e-05 1.4544e-05 0)
(4.50226e-05 1.49678e-05 0)
(4.44609e-05 1.54668e-05 0)
(4.37723e-05 1.60136e-05 0)
(4.29565e-05 1.6591e-05 0)
(4.20143e-05 1.71778e-05 0)
(4.09464e-05 1.77575e-05 0)
(3.97598e-05 1.83033e-05 0)
(3.84621e-05 1.87978e-05 0)
(3.70634e-05 1.92186e-05 0)
(3.55824e-05 1.95563e-05 0)
(3.40314e-05 1.97962e-05 0)
(3.24236e-05 1.99316e-05 0)
(3.0775e-05 1.99511e-05 0)
(2.91004e-05 1.98445e-05 0)
(2.74179e-05 1.96061e-05 0)
(2.57464e-05 1.923e-05 0)
(2.41071e-05 1.87126e-05 0)
(2.25254e-05 1.80539e-05 0)
(2.1027e-05 1.72582e-05 0)
(1.96345e-05 1.63372e-05 0)
(1.83739e-05 1.53048e-05 0)
(1.72644e-05 1.41881e-05 0)
(1.63166e-05 1.30112e-05 0)
(1.55419e-05 1.18038e-05 0)
(1.49384e-05 1.05905e-05 0)
(1.44994e-05 9.39769e-06 0)
(1.42222e-05 8.24624e-06 0)
(1.41027e-05 7.15464e-06 0)
(1.41297e-05 6.14998e-06 0)
(1.42857e-05 5.25106e-06 0)
(1.45538e-05 4.48416e-06 0)
(1.49121e-05 3.86222e-06 0)
(1.53328e-05 3.40908e-06 0)
(1.57817e-05 3.12658e-06 0)
(1.62208e-05 3.0301e-06 0)
(1.66068e-05 3.11178e-06 0)
(1.68972e-05 3.35305e-06 0)
(1.70508e-05 3.73027e-06 0)
(1.704e-05 4.19912e-06 0)
(1.6842e-05 4.71246e-06 0)
(1.6446e-05 5.21459e-06 0)
(1.58627e-05 5.64644e-06 0)
(1.51137e-05 5.9559e-06 0)
(1.42389e-05 6.09257e-06 0)
(1.32896e-05 6.01966e-06 0)
(1.23247e-05 5.71949e-06 0)
(1.14204e-05 5.18182e-06 0)
(1.06378e-05 4.43242e-06 0)
(1.0028e-05 3.50719e-06 0)
(9.64171e-06 2.45925e-06 0)
(9.50795e-06 1.34795e-06 0)
(9.63615e-06 2.47254e-07 0)
(1.00128e-05 -7.73956e-07 0)
(1.06074e-05 -1.65633e-06 0)
(1.13755e-05 -2.35429e-06 0)
(1.22624e-05 -2.83777e-06 0)
(1.32089e-05 -3.09398e-06 0)
(1.41606e-05 -3.12658e-06 0)
(1.50724e-05 -2.95173e-06 0)
(1.59067e-05 -2.59619e-06 0)
(1.6636e-05 -2.09555e-06 0)
(1.72449e-05 -1.48904e-06 0)
(1.77339e-05 -8.11285e-07 0)
(1.81183e-05 -9.32202e-08 0)
(1.84182e-05 6.45568e-07 0)
(1.86531e-05 1.40092e-06 0)
(1.88388e-05 2.17682e-06 0)
(1.89873e-05 2.98173e-06 0)
(1.91076e-05 3.82908e-06 0)
(1.92046e-05 4.73487e-06 0)
(1.92778e-05 5.71925e-06 0)
(1.93188e-05 6.80941e-06 0)
(1.93014e-05 8.03029e-06 0)
(1.91841e-05 9.39947e-06 0)
(1.89281e-05 1.09228e-05 0)
(1.84898e-05 1.2576e-05 0)
(1.78206e-05 1.43334e-05 0)
(1.68801e-05 1.61863e-05 0)
(1.56484e-05 1.80756e-05 0)
(1.40806e-05 1.99699e-05 0)
(1.21543e-05 2.17555e-05 0)
(9.88325e-06 2.32846e-05 0)
(7.25844e-06 2.42946e-05 0)
(4.35034e-06 2.40867e-05 0)
(1.29336e-06 2.00229e-05 0)
(4.59814e-05 -9.2199e-07 0)
(4.55836e-05 1.76373e-05 0)
(4.48717e-05 2.35525e-05 0)
(4.43009e-05 2.31442e-05 0)
(4.42293e-05 2.09897e-05 0)
(4.43754e-05 1.88415e-05 0)
(4.47133e-05 1.71079e-05 0)
(4.50839e-05 1.58226e-05 0)
(4.54459e-05 1.49237e-05 0)
(4.57414e-05 1.43482e-05 0)
(4.59516e-05 1.40459e-05 0)
(4.60574e-05 1.39647e-05 0)
(4.60503e-05 1.40699e-05 0)
(4.592e-05 1.43298e-05 0)
(4.5662e-05 1.47181e-05 0)
(4.52695e-05 1.5207e-05 0)
(4.47388e-05 1.57718e-05 0)
(4.407e-05 1.63848e-05 0)
(4.32637e-05 1.70282e-05 0)
(4.23213e-05 1.76812e-05 0)
(4.12421e-05 1.83238e-05 0)
(4.00329e-05 1.8931e-05 0)
(3.87034e-05 1.9479e-05 0)
(3.7265e-05 1.99489e-05 0)
(3.57364e-05 2.03263e-05 0)
(3.41318e-05 2.05998e-05 0)
(3.24665e-05 2.07604e-05 0)
(3.07557e-05 2.07983e-05 0)
(2.90147e-05 2.07017e-05 0)
(2.72619e-05 2.04639e-05 0)
(2.55174e-05 2.00777e-05 0)
(2.38046e-05 1.9538e-05 0)
(2.21508e-05 1.88443e-05 0)
(2.05841e-05 1.79985e-05 0)
(1.91298e-05 1.70161e-05 0)
(1.78177e-05 1.59121e-05 0)
(1.66706e-05 1.47105e-05 0)
(1.57002e-05 1.34461e-05 0)
(1.49156e-05 1.21515e-05 0)
(1.43148e-05 1.08516e-05 0)
(1.38916e-05 9.57345e-06 0)
(1.36401e-05 8.33991e-06 0)
(1.35588e-05 7.16895e-06 0)
(1.36359e-05 6.09254e-06 0)
(1.38537e-05 5.12955e-06 0)
(1.41946e-05 4.30746e-06 0)
(1.46351e-05 3.64705e-06 0)
(1.51451e-05 3.16634e-06 0)
(1.56891e-05 2.87829e-06 0)
(1.62242e-05 2.79755e-06 0)
(1.66984e-05 2.91425e-06 0)
(1.70662e-05 3.21669e-06 0)
(1.72804e-05 3.67398e-06 0)
(1.7306e-05 4.2404e-06 0)
(1.71173e-05 4.85736e-06 0)
(1.67008e-05 5.46638e-06 0)
(1.60677e-05 5.99595e-06 0)
(1.5241e-05 6.38617e-06 0)
(1.42633e-05 6.57872e-06 0)
(1.31967e-05 6.53062e-06 0)
(1.21082e-05 6.22086e-06 0)
(1.10837e-05 5.63942e-06 0)
(1.01976e-05 4.80852e-06 0)
(9.50774e-06 3.77837e-06 0)
(9.07151e-06 2.6006e-06 0)
(8.92436e-06 1.35128e-06 0)
(9.07532e-06 1.13727e-07 0)
(9.50911e-06 -1.03285e-06 0)
(1.01904e-05 -2.02053e-06 0)
(1.10659e-05 -2.79658e-06 0)
(1.20704e-05 -3.32693e-06 0)
(1.31357e-05 -3.59917e-06 0)
(1.42011e-05 -3.62058e-06 0)
(1.52152e-05 -3.41213e-06 0)
(1.61352e-05 -3.00531e-06 0)
(1.6929e-05 -2.4429e-06 0)
(1.75811e-05 -1.771e-06 0)
(1.80957e-05 -1.03277e-06 0)
(1.84929e-05 -2.66185e-07 0)
(1.87997e-05 5.09627e-07 0)
(1.90423e-05 1.29256e-06 0)
(1.924e-05 2.08846e-06 0)
(1.94061e-05 2.90779e-06 0)
(1.95508e-05 3.76545e-06 0)
(1.96812e-05 4.67956e-06 0)
(1.98001e-05 5.67376e-06 0)
(1.98995e-05 6.78184e-06 0)
(1.99537e-05 8.03935e-06 0)
(1.99179e-05 9.46786e-06 0)
(1.97427e-05 1.1071e-05 0)
(1.93774e-05 1.28295e-05 0)
(1.87639e-05 1.47177e-05 0)
(1.78571e-05 1.67183e-05 0)
(1.66313e-05 1.87744e-05 0)
(1.50422e-05 2.08564e-05 0)
(1.30599e-05 2.2827e-05 0)
(1.06863e-05 2.45476e-05 0)
(7.90492e-06 2.57401e-05 0)
(4.76595e-06 2.56625e-05 0)
(1.41841e-06 2.15006e-05 0)
(4.37592e-05 -1.28585e-06 0)
(4.34765e-05 1.7876e-05 0)
(4.29552e-05 2.38245e-05 0)
(4.26693e-05 2.32312e-05 0)
(4.29057e-05 2.09072e-05 0)
(4.33485e-05 1.86525e-05 0)
(4.39471e-05 1.68759e-05 0)
(4.45396e-05 1.55892e-05 0)
(4.50853e-05 1.4719e-05 0)
(4.55332e-05 1.41875e-05 0)
(4.58693e-05 1.39375e-05 0)
(4.60779e-05 1.39159e-05 0)
(4.61569e-05 1.40843e-05 0)
(4.60985e-05 1.44095e-05 0)
(4.58991e-05 1.48664e-05 0)
(4.55514e-05 1.54275e-05 0)
(4.50514e-05 1.60641e-05 0)
(4.44014e-05 1.67491e-05 0)
(4.36041e-05 1.74633e-05 0)
(4.26603e-05 1.81876e-05 0)
(4.15692e-05 1.88986e-05 0)
(4.03367e-05 1.95721e-05 0)
(3.89728e-05 2.01797e-05 0)
(3.74903e-05 2.0702e-05 0)
(3.591e-05 2.11227e-05 0)
(3.42479e-05 2.14323e-05 0)
(3.25203e-05 2.16212e-05 0)
(3.07423e-05 2.16782e-05 0)
(2.89295e-05 2.15943e-05 0)
(2.71014e-05 2.13589e-05 0)
(2.52787e-05 2.09638e-05 0)
(2.34865e-05 2.0402e-05 0)
(2.17533e-05 1.96717e-05 0)
(2.01115e-05 1.8773e-05 0)
(1.85907e-05 1.77251e-05 0)
(1.72212e-05 1.6543e-05 0)
(1.60317e-05 1.52501e-05 0)
(1.50374e-05 1.38893e-05 0)
(1.42444e-05 1.24994e-05 0)
(1.36474e-05 1.11081e-05 0)
(1.32399e-05 9.73877e-06 0)
(1.30153e-05 8.41695e-06 0)
(1.29742e-05 7.16558e-06 0)
(1.31055e-05 6.00713e-06 0)
(1.33902e-05 4.97509e-06 0)
(1.38111e-05 4.09497e-06 0)
(1.43409e-05 3.38739e-06 0)
(1.49491e-05 2.87621e-06 0)
(1.55989e-05 2.57937e-06 0)
(1.62399e-05 2.51425e-06 0)
(1.68154e-05 2.67141e-06 0)
(1.72723e-05 3.04266e-06 0)
(1.75548e-05 3.59205e-06 0)
(1.7623e-05 4.26787e-06 0)
(1.7446e-05 5.00596e-06 0)
(1.70077e-05 5.73589e-06 0)
(1.63186e-05 6.38059e-06 0)
(1.54029e-05 6.86286e-06 0)
(1.43068e-05 7.12472e-06 0)
(1.31038e-05 7.10771e-06 0)
(1.18728e-05 6.78738e-06 0)
(1.07104e-05 6.15517e-06 0)
(9.70553e-06 5.23632e-06 0)
(8.9245e-06 4.08144e-06 0)
(8.43127e-06 2.75862e-06 0)
(8.2681e-06 1.35222e-06 0)
(8.44466e-06 -4.06104e-08 0)
(8.94364e-06 -1.33008e-06 0)
(9.72456e-06 -2.43687e-06 0)
(1.07239e-05 -3.29938e-06 0)
(1.1863e-05 -3.87949e-06 0)
(1.30627e-05 -4.16619e-06 0)
(1.42545e-05 -4.17162e-06 0)
(1.53814e-05 -3.92187e-06 0)
(1.63952e-05 -3.45369e-06 0)
(1.7258e-05 -2.81708e-06 0)
(1.79522e-05 -2.06808e-06 0)
(1.84861e-05 -1.26191e-06 0)
(1.88879e-05 -4.42087e-07 0)
(1.91941e-05 3.71829e-07 0)
(1.94385e-05 1.18039e-06 0)
(1.9644e-05 1.99337e-06 0)
(1.98258e-05 2.82313e-06 0)
(1.99969e-05 3.68654e-06 0)
(2.01651e-05 4.60325e-06 0)
(2.03334e-05 5.60119e-06 0)
(2.04947e-05 6.72071e-06 0)
(2.06292e-05 8.00675e-06 0)
(2.06877e-05 9.4917e-06 0)
(2.06062e-05 1.11775e-05 0)
(2.03228e-05 1.30466e-05 0)
(1.97782e-05 1.5074e-05 0)
(1.892e-05 1.72376e-05 0)
(1.77085e-05 1.94762e-05 0)
(1.61059e-05 2.17589e-05 0)
(1.40652e-05 2.3941e-05 0)
(1.1581e-05 2.58772e-05 0)
(8.63375e-06 2.72872e-05 0)
(5.25002e-06 2.73788e-05 0)
(1.57152e-06 2.31261e-05 0)
(4.11547e-05 -1.72797e-06 0)
(4.10587e-05 1.80229e-05 0)
(4.0808e-05 2.39619e-05 0)
(4.08895e-05 2.31545e-05 0)
(4.14973e-05 2.06632e-05 0)
(4.22786e-05 1.83151e-05 0)
(4.31679e-05 1.65182e-05 0)
(4.40023e-05 1.52509e-05 0)
(4.47443e-05 1.44273e-05 0)
(4.53511e-05 1.39556e-05 0)
(4.58167e-05 1.37709e-05 0)
(4.61312e-05 1.38192e-05 0)
(4.62971e-05 1.40587e-05 0)
(4.63115e-05 1.44556e-05 0)
(4.61728e-05 1.49879e-05 0)
(4.58711e-05 1.56288e-05 0)
(4.54025e-05 1.63444e-05 0)
(4.47718e-05 1.71065e-05 0)
(4.39839e-05 1.7896e-05 0)
(4.30384e-05 1.86957e-05 0)
(4.19335e-05 1.94829e-05 0)
(4.06742e-05 2.02287e-05 0)
(3.92709e-05 2.09013e-05 0)
(3.77397e-05 2.148e-05 0)
(3.6104e-05 2.19469e-05 0)
(3.43827e-05 2.22947e-05 0)
(3.25905e-05 2.25149e-05 0)
(3.07425e-05 2.25935e-05 0)
(2.88537e-05 2.25248e-05 0)
(2.69435e-05 2.2294e-05 0)
(2.50349e-05 2.18915e-05 0)
(2.31551e-05 2.13077e-05 0)
(2.13341e-05 2.05388e-05 0)
(1.96094e-05 1.95875e-05 0)
(1.8014e-05 1.84685e-05 0)
(1.65801e-05 1.71983e-05 0)
(1.53441e-05 1.58061e-05 0)
(1.43255e-05 1.43405e-05 0)
(1.3525e-05 1.2849e-05 0)
(1.29328e-05 1.13586e-05 0)
(1.25423e-05 9.89227e-06 0)
(1.23489e-05 8.47781e-06 0)
(1.23491e-05 7.13634e-06 0)
(1.25361e-05 5.891e-06 0)
(1.28952e-05 4.78273e-06 0)
(1.34002e-05 3.83694e-06 0)
(1.40263e-05 3.07758e-06 0)
(1.47431e-05 2.53233e-06 0)
(1.55112e-05 2.22444e-06 0)
(1.6273e-05 2.17359e-06 0)
(1.69642e-05 2.37826e-06 0)
(1.75256e-05 2.82506e-06 0)
(1.78891e-05 3.47725e-06 0)
(1.80071e-05 4.28066e-06 0)
(1.78442e-05 5.15594e-06 0)
(1.73814e-05 6.02627e-06 0)
(1.66275e-05 6.80292e-06 0)
(1.5611e-05 7.39765e-06 0)
(1.43815e-05 7.73635e-06 0)
(1.30205e-05 7.75625e-06 0)
(1.16236e-05 7.42972e-06 0)
(1.03018e-05 6.73933e-06 0)
(9.15734e-06 5.72095e-06 0)
(8.2686e-06 4.42317e-06 0)
(7.7094e-06 2.93337e-06 0)
(7.52729e-06 1.35097e-06 0)
(7.73368e-06 -2.1862e-07 0)
(8.30842e-06 -1.67123e-06 0)
(9.20447e-06 -2.91307e-06 0)
(1.03458e-05 -3.8719e-06 0)
(1.16388e-05 -4.5043e-06 0)
(1.29906e-05 -4.80259e-06 0)
(1.43236e-05 -4.78555e-06 0)
(1.55751e-05 -4.48569e-06 0)
(1.66919e-05 -3.94496e-06 0)
(1.76283e-05 -3.21902e-06 0)
(1.83629e-05 -2.37972e-06 0)
(1.89106e-05 -1.49611e-06 0)
(1.93093e-05 -6.16982e-07 0)
(1.96072e-05 2.35526e-07 0)
(1.98471e-05 1.06706e-06 0)
(2.00553e-05 1.89346e-06 0)
(2.02485e-05 2.72872e-06 0)
(2.04429e-05 3.59169e-06 0)
(2.06478e-05 4.50495e-06 0)
(2.0868e-05 5.49923e-06 0)
(2.11008e-05 6.62165e-06 0)
(2.13284e-05 7.92643e-06 0)
(2.14936e-05 9.46493e-06 0)
(2.15185e-05 1.1236e-05 0)
(2.13297e-05 1.32214e-05 0)
(2.08672e-05 1.5395e-05 0)
(2.00697e-05 1.77388e-05 0)
(1.88871e-05 2.0175e-05 0)
(1.7275e-05 2.26767e-05 0)
(1.51818e-05 2.50963e-05 0)
(1.25907e-05 2.72778e-05 0)
(9.45863e-06 2.89444e-05 0)
(5.80364e-06 2.92502e-05 0)
(1.74961e-06 2.49255e-05 0)
(3.80089e-05 -2.28334e-06 0)
(3.8213e-05 1.80315e-05 0)
(3.83651e-05 2.39154e-05 0)
(3.89384e-05 2.28707e-05 0)
(4.00077e-05 2.02269e-05 0)
(4.11817e-05 1.78095e-05 0)
(4.23944e-05 1.60214e-05 0)
(4.34871e-05 1.47999e-05 0)
(4.44342e-05 1.40451e-05 0)
(4.52037e-05 1.36507e-05 0)
(4.58005e-05 1.3545e-05 0)
(4.62218e-05 1.36741e-05 0)
(4.64758e-05 1.39912e-05 0)
(4.65639e-05 1.44688e-05 0)
(4.64866e-05 1.5082e-05 0)
(4.62312e-05 1.58102e-05 0)
(4.57931e-05 1.66119e-05 0)
(4.51808e-05 1.74564e-05 0)
(4.44023e-05 1.83261e-05 0)
(4.34567e-05 1.92072e-05 0)
(4.23371e-05 2.0078e-05 0)
(4.1046e-05 2.09027e-05 0)
(3.95981e-05 2.16465e-05 0)
(3.80134e-05 2.22843e-05 0)
(3.63188e-05 2.28002e-05 0)
(3.4535e-05 2.31891e-05 0)
(3.26748e-05 2.34413e-05 0)
(3.07537e-05 2.35467e-05 0)
(2.8786e-05 2.34949e-05 0)
(2.6789e-05 2.32721e-05 0)
(2.47878e-05 2.28643e-05 0)
(2.28115e-05 2.22595e-05 0)
(2.08945e-05 2.14509e-05 0)
(1.90781e-05 2.04439e-05 0)
(1.73976e-05 1.92464e-05 0)
(1.5891e-05 1.78849e-05 0)
(1.46035e-05 1.63811e-05 0)
(1.35593e-05 1.47984e-05 0)
(1.2754e-05 1.31959e-05 0)
(1.21702e-05 1.16033e-05 0)
(1.18011e-05 1.00359e-05 0)
(1.16392e-05 8.5196e-06 0)
(1.16831e-05 7.07883e-06 0)
(1.19309e-05 5.74515e-06 0)
(1.23651e-05 4.54972e-06 0)
(1.29614e-05 3.53035e-06 0)
(1.36926e-05 2.71513e-06 0)
(1.45274e-05 2.12996e-06 0)
(1.5425e-05 1.80599e-06 0)
(1.63228e-05 1.77037e-06 0)
(1.71476e-05 2.02374e-06 0)
(1.78286e-05 2.55936e-06 0)
(1.82884e-05 3.3242e-06 0)
(1.84662e-05 4.27282e-06 0)
(1.83216e-05 5.30706e-06 0)
(1.78337e-05 6.34086e-06 0)
(1.70071e-05 7.27098e-06 0)
(1.58728e-05 7.99624e-06 0)
(1.44896e-05 8.43003e-06 0)
(1.29532e-05 8.49603e-06 0)
(1.13649e-05 8.15779e-06 0)
(9.85468e-06 7.40505e-06 0)
(8.54614e-06 6.26803e-06 0)
(7.53074e-06 4.81239e-06 0)
(6.89621e-06 3.13441e-06 0)
(6.6923e-06 1.3485e-06 0)
(6.93164e-06 -4.23482e-07 0)
(7.59393e-06 -2.06248e-06 0)
(8.6232e-06 -3.45794e-06 0)
(9.92874e-06 -4.52445e-06 0)
(1.13987e-05 -5.21143e-06 0)
(1.29228e-05 -5.51682e-06 0)
(1.44127e-05 -5.46896e-06 0)
(1.58015e-05 -5.10876e-06 0)
(1.70319e-05 -4.48244e-06 0)
(1.80474e-05 -3.64956e-06 0)
(1.8821e-05 -2.70368e-06 0)
(1.93747e-05 -1.73016e-06 0)
(1.97589e-05 -7.85909e-07 0)
(2.00381e-05 1.04581e-07 0)
(2.02666e-05 9.55559e-07 0)
(2.04716e-05 1.79134e-06 0)
(2.06703e-05 2.62718e-06 0)
(2.08828e-05 3.48239e-06 0)
(2.11237e-05 4.38412e-06 0)
(2.14004e-05 5.36436e-06 0)
(2.17149e-05 6.47808e-06 0)
(2.20487e-05 7.79243e-06 0)
(2.23355e-05 9.3807e-06 0)
(2.24831e-05 1.12394e-05 0)
(2.24031e-05 1.33463e-05 0)
(2.20346e-05 1.56755e-05 0)
(2.13138e-05 1.82132e-05 0)
(2.01794e-05 2.08635e-05 0)
(1.85635e-05 2.36107e-05 0)
(1.6415e-05 2.629e-05 0)
(1.37155e-05 2.87535e-05 0)
(1.03862e-05 3.07229e-05 0)
(6.42978e-06 3.12967e-05 0)
(1.95309e-06 2.69222e-05 0)
(3.40674e-05 -3.00371e-06 0)
(3.47645e-05 1.78245e-05 0)
(3.55451e-05 2.36044e-05 0)
(3.67985e-05 2.23157e-05 0)
(3.84431e-05 1.956e-05 0)
(4.00676e-05 1.71131e-05 0)
(4.16358e-05 1.53736e-05 0)
(4.3002e-05 1.42301e-05 0)
(4.41622e-05 1.35695e-05 0)
(4.50965e-05 1.32721e-05 0)
(4.58257e-05 1.32592e-05 0)
(4.63531e-05 1.34807e-05 0)
(4.66949e-05 1.38833e-05 0)
(4.68581e-05 1.44483e-05 0)
(4.68446e-05 1.51495e-05 0)
(4.66378e-05 1.59712e-05 0)
(4.62288e-05 1.68666e-05 0)
(4.56337e-05 1.77987e-05 0)
(4.48653e-05 1.87534e-05 0)
(4.39209e-05 1.97231e-05 0)
(4.27866e-05 2.06853e-05 0)
(4.14612e-05 2.15969e-05 0)
(3.99635e-05 2.24175e-05 0)
(3.83197e-05 2.31178e-05 0)
(3.65613e-05 2.36866e-05 0)
(3.47091e-05 2.41161e-05 0)
(3.27763e-05 2.44037e-05 0)
(3.07779e-05 2.45389e-05 0)
(2.87262e-05 2.45073e-05 0)
(2.66374e-05 2.42965e-05 0)
(2.45366e-05 2.38864e-05 0)
(2.24551e-05 2.32625e-05 0)
(2.04319e-05 2.2414e-05 0)
(1.85125e-05 2.13446e-05 0)
(1.67389e-05 2.00671e-05 0)
(1.5151e-05 1.86054e-05 0)
(1.38038e-05 1.6976e-05 0)
(1.27356e-05 1.5262e-05 0)
(1.19309e-05 1.35412e-05 0)
(1.13579e-05 1.18368e-05 0)
(1.10074e-05 1.01697e-05 0)
(1.0878e-05 8.54113e-06 0)
(1.09699e-05 6.99863e-06 0)
(1.12792e-05 5.56395e-06 0)
(1.17939e-05 4.27586e-06 0)
(1.24889e-05 3.1772e-06 0)
(1.33326e-05 2.2985e-06 0)
(1.42951e-05 1.66214e-06 0)
(1.53382e-05 1.3159e-06 0)
(1.63892e-05 1.29544e-06 0)
(1.73664e-05 1.60081e-06 0)
(1.81842e-05 2.23429e-06 0)
(1.87543e-05 3.13282e-06 0)
(1.90059e-05 4.23947e-06 0)
(1.88849e-05 5.45983e-06 0)
(1.83703e-05 6.68031e-06 0)
(1.74622e-05 7.79081e-06 0)
(1.61979e-05 8.66818e-06 0)
(1.46403e-05 9.21854e-06 0)
(1.28944e-05 9.34075e-06 0)
(1.1086e-05 8.98892e-06 0)
(9.36014e-06 8.15841e-06 0)
(7.86169e-06 6.88988e-06 0)
(6.7027e-06 5.25228e-06 0)
(5.97865e-06 3.3633e-06 0)
(5.74872e-06 1.34677e-06 0)
(6.02747e-06 -6.57839e-07 0)
(6.79079e-06 -2.51103e-06 0)
(7.97386e-06 -4.08187e-06 0)
(9.46932e-06 -5.26883e-06 0)
(1.11428e-05 -6.01254e-06 0)
(1.28618e-05 -6.31901e-06 0)
(1.4527e-05 -6.23046e-06 0)
(1.6069e-05 -5.79795e-06 0)
(1.74248e-05 -5.0697e-06 0)
(1.85224e-05 -4.1084e-06 0)
(1.93286e-05 -3.03494e-06 0)
(1.98759e-05 -1.95783e-06 0)
(2.02312e-05 -9.43451e-07 0)
(2.04812e-05 -1.54924e-08 0)
(2.06925e-05 8.48472e-07 0)
(2.08909e-05 1.68921e-06 0)
(2.10914e-05 2.52101e-06 0)
(2.13176e-05 3.36064e-06 0)
(2.15922e-05 4.23996e-06 0)
(2.1927e-05 5.19347e-06 0)
(2.23285e-05 6.28496e-06 0)
(2.27813e-05 7.59779e-06 0)
(2.3211e-05 9.22988e-06 0)
(2.35016e-05 1.11785e-05 0)
(2.35495e-05 1.34129e-05 0)
(2.32909e-05 1.5911e-05 0)
(2.26564e-05 1.8652e-05 0)
(2.15825e-05 2.1534e-05 0)
(1.99892e-05 2.4555e-05 0)
(1.77937e-05 2.75249e-05 0)
(1.49668e-05 3.03107e-05 0)
(1.14198e-05 3.26335e-05 0)
(7.13946e-06 3.35368e-05 0)
(2.19234e-06 2.91429e-05 0)
(2.89568e-05 -3.96617e-06 0)
(3.04699e-05 1.72689e-05 0)
(3.22347e-05 2.29032e-05 0)
(3.44335e-05 2.14004e-05 0)
(3.67975e-05 1.86182e-05 0)
(3.89359e-05 1.62017e-05 0)
(4.08945e-05 1.45633e-05 0)
(4.255e-05 1.35358e-05 0)
(4.39306e-05 1.29982e-05 0)
(4.50315e-05 1.28186e-05 0)
(4.5894e-05 1.29137e-05 0)
(4.65284e-05 1.32388e-05 0)
(4.69594e-05 1.37347e-05 0)
(4.72017e-05 1.43916e-05 0)
(4.72564e-05 1.51895e-05 0)
(4.71009e-05 1.61136e-05 0)
(4.67203e-05 1.71096e-05 0)
(4.61394e-05 1.81347e-05 0)
(4.53812e-05 1.91774e-05 0)
(4.44406e-05 2.02423e-05 0)
(4.32926e-05 2.13048e-05 0)
(4.19304e-05 2.23137e-05 0)
(4.03768e-05 2.32168e-05 0)
(3.86666e-05 2.39848e-05 0)
(3.68368e-05 2.46076e-05 0)
(3.49121e-05 2.50786e-05 0)
(3.29046e-05 2.54057e-05 0)
(3.08248e-05 2.55713e-05 0)
(2.86846e-05 2.55655e-05 0)
(2.6498e-05 2.53708e-05 0)
(2.42892e-05 2.49624e-05 0)
(2.20923e-05 2.43219e-05 0)
(1.99509e-05 2.34331e-05 0)
(1.79185e-05 2.22979e-05 0)
(1.6041e-05 2.09369e-05 0)
(1.43581e-05 1.93595e-05 0)
(1.29445e-05 1.75914e-05 0)
(1.18545e-05 1.5736e-05 0)
(1.1054e-05 1.38836e-05 0)
(1.0497e-05 1.20605e-05 0)
(1.01659e-05 1.02877e-05 0)
(1.00662e-05 8.54789e-06 0)
(1.02064e-05 6.88884e-06 0)
(1.05806e-05 5.34604e-06 0)
(1.11825e-05 3.95762e-06 0)
(1.19831e-05 2.7703e-06 0)
(1.2945e-05 1.8172e-06 0)
(1.40453e-05 1.12189e-06 0)
(1.52502e-05 7.44656e-07 0)
(1.64736e-05 7.35843e-07 0)
(1.7625e-05 1.09939e-06 0)
(1.86023e-05 1.82866e-06 0)
(1.92991e-05 2.87749e-06 0)
(1.9638e-05 4.17221e-06 0)
(1.95498e-05 5.60671e-06 0)
(1.90065e-05 7.04696e-06 0)
(1.80084e-05 8.36699e-06 0)
(1.65947e-05 9.42734e-06 0)
(1.48347e-05 1.0107e-05 0)
(1.28467e-05 1.02928e-05 0)
(1.07791e-05 9.94096e-06 0)
(8.80654e-06 9.022e-06 0)
(7.09334e-06 7.5958e-06 0)
(5.76973e-06 5.75049e-06 0)
(4.94769e-06 3.6161e-06 0)
(4.68591e-06 1.33932e-06 0)
(5.0057e-06 -9.22765e-07 0)
(5.88479e-06 -3.02513e-06 0)
(7.2476e-06 -4.79808e-06 0)
(8.96621e-06 -6.12009e-06 0)
(1.0876e-05 -6.92157e-06 0)
(1.28155e-05 -7.22015e-06 0)
(1.46739e-05 -7.0783e-06 0)
(1.63846e-05 -6.56066e-06 0)
(1.78819e-05 -5.71182e-06 0)
(1.90684e-05 -4.59422e-06 0)
(1.98971e-05 -3.36827e-06 0)
(2.04197e-05 -2.17144e-06 0)
(2.07284e-05 -1.08121e-06 0)
(2.09353e-05 -1.22539e-07 0)
(2.11217e-05 7.48027e-07 0)
(2.13092e-05 1.58901e-06 0)
(2.1506e-05 2.41224e-06 0)
(2.17421e-05 3.22813e-06 0)
(2.20483e-05 4.07299e-06 0)
(2.24355e-05 4.98757e-06 0)
(2.29219e-05 6.03901e-06 0)
(2.35118e-05 7.3318e-06 0)
(2.41181e-05 8.99856e-06 0)
(2.45756e-05 1.1043e-05 0)
(2.47727e-05 1.34105e-05 0)
(2.46434e-05 1.60949e-05 0)
(2.41108e-05 1.9047e-05 0)
(2.31164e-05 2.21781e-05 0)
(2.1562e-05 2.54997e-05 0)
(1.93247e-05 2.88037e-05 0)
(1.63672e-05 3.1956e-05 0)
(1.25863e-05 3.46884e-05 0)
(7.94629e-06 3.59899e-05 0)
(2.47144e-06 3.16216e-05 0)
(2.21831e-05 -5.28721e-06 0)
(2.5009e-05 1.61548e-05 0)
(2.82706e-05 2.16273e-05 0)
(3.17777e-05 2.00063e-05 0)
(3.50378e-05 1.73479e-05 0)
(3.77571e-05 1.50483e-05 0)
(4.0146e-05 1.35773e-05 0)
(4.21109e-05 1.27106e-05 0)
(4.37246e-05 1.23295e-05 0)
(4.49992e-05 1.2289e-05 0)
(4.60017e-05 1.25064e-05 0)
(4.67482e-05 1.29468e-05 0)
(4.72724e-05 1.35428e-05 0)
(4.76008e-05 1.42963e-05 0)
(4.77325e-05 1.51978e-05 0)
(4.76334e-05 1.62375e-05 0)
(4.72817e-05 1.73426e-05 0)
(4.67149e-05 1.84648e-05 0)
(4.59702e-05 1.95969e-05 0)
(4.50391e-05 2.07622e-05 0)
(4.38799e-05 2.19365e-05 0)
(4.2477e-05 2.30548e-05 0)
(4.08596e-05 2.4049e-05 0)
(3.90758e-05 2.48879e-05 0)
(3.71691e-05 2.55651e-05 0)
(3.51688e-05 2.60821e-05 0)
(3.30826e-05 2.64461e-05 0)
(3.0917e-05 2.66469e-05 0)
(2.86844e-05 2.66725e-05 0)
(2.63933e-05 2.64982e-05 0)
(2.40682e-05 2.60973e-05 0)
(2.17446e-05 2.5444e-05 0)
(1.94719e-05 2.45152e-05 0)
(1.73138e-05 2.33119e-05 0)
(1.5317e-05 2.18594e-05 0)
(1.35249e-05 2.01581e-05 0)
(1.20385e-05 1.82291e-05 0)
(1.0926e-05 1.62097e-05 0)
(1.01353e-05 1.42182e-05 0)
(9.60169e-06 1.22817e-05 0)
(9.29189e-06 1.03891e-05 0)
(9.21844e-06 8.54185e-06 0)
(9.40767e-06 6.7523e-06 0)
(9.8502e-06 5.09132e-06 0)
(1.05417e-05 3.59247e-06 0)
(1.14538e-05 2.30753e-06 0)
(1.25422e-05 1.26845e-06 0)
(1.37911e-05 5.03373e-07 0)
(1.51749e-05 8.04851e-08 0)
(1.65932e-05 8.03218e-08 0)
(1.79371e-05 5.17916e-07 0)
(1.90961e-05 1.37662e-06 0)
(1.99484e-05 2.60913e-06 0)
(2.03925e-05 4.09189e-06 0)
(2.03436e-05 5.76364e-06 0)
(1.97702e-05 7.45724e-06 0)
(1.86709e-05 9.01139e-06 0)
(1.70859e-05 1.02835e-05 0)
(1.509e-05 1.11179e-05 0)
(1.28257e-05 1.13876e-05 0)
(1.04616e-05 1.10296e-05 0)
(8.19635e-06 1.00204e-05 0)
(6.23495e-06 8.40698e-06 0)
(4.72448e-06 6.32109e-06 0)
(3.78713e-06 3.90147e-06 0)
(3.49291e-06 1.32226e-06 0)
(3.85654e-06 -1.22762e-06 0)
(4.86335e-06 -3.61175e-06 0)
(6.43711e-06 -5.62257e-06 0)
(8.41866e-06 -7.09663e-06 0)
(1.06034e-05 -7.95453e-06 0)
(1.27921e-05 -8.23105e-06 0)
(1.48629e-05 -8.02033e-06 0)
(1.67592e-05 -7.40503e-06 0)
(1.84178e-05 -6.41719e-06 0)
(1.97032e-05 -5.10688e-06 0)
(2.05452e-05 -3.6962e-06 0)
(2.1022e-05 -2.36287e-06 0)
(2.12582e-05 -1.20771e-06 0)
(2.14021e-05 -2.17965e-07 0)
(2.1555e-05 6.55394e-07 0)
(2.17266e-05 1.49324e-06 0)
(2.19133e-05 2.30331e-06 0)
(2.21558e-05 3.08633e-06 0)
(2.24882e-05 3.88661e-06 0)
(2.29195e-05 4.74967e-06 0)
(2.34931e-05 5.73578e-06 0)
(2.42442e-05 6.98055e-06 0)
(2.50607e-05 8.67137e-06 0)
(2.57101e-05 1.08216e-05 0)
(2.60741e-05 1.33313e-05 0)
(2.60921e-05 1.62171e-05 0)
(2.5685e-05 1.93858e-05 0)
(2.48043e-05 2.27847e-05 0)
(2.33107e-05 2.6439e-05 0)
(2.10306e-05 3.01275e-05 0)
(1.79402e-05 3.36921e-05 0)
(1.39101e-05 3.69011e-05 0)
(8.86605e-06 3.86824e-05 0)
(2.79416e-06 3.43971e-05 0)
(1.32684e-05 -7.12159e-06 0)
(1.80262e-05 1.41909e-05 0)
(2.34448e-05 1.95237e-05 0)
(2.8719e-05 1.79832e-05 0)
(3.30762e-05 1.56868e-05 0)
(3.64424e-05 1.36247e-05 0)
(3.93085e-05 1.24014e-05 0)
(4.16134e-05 1.17449e-05 0)
(4.34874e-05 1.15581e-05 0)
(4.4957e-05 1.16784e-05 0)
(4.61187e-05 1.20339e-05 0)
(4.69955e-05 1.26015e-05 0)
(4.76298e-05 1.33036e-05 0)
(4.80634e-05 1.41579e-05 0)
(4.82925e-05 1.51697e-05 0)
(4.82648e-05 1.63374e-05 0)
(4.79476e-05 1.75653e-05 0)
(4.73985e-05 1.87875e-05 0)
(4.66761e-05 2.00074e-05 0)
(4.57672e-05 2.12783e-05 0)
(4.46043e-05 2.25787e-05 0)
(4.31594e-05 2.38207e-05 0)
(4.14712e-05 2.49169e-05 0)
(3.96056e-05 2.58288e-05 0)
(3.76165e-05 2.6561e-05 0)
(3.55352e-05 2.71228e-05 0)
(3.33676e-05 2.75248e-05 0)
(3.11157e-05 2.77657e-05 0)
(2.87858e-05 2.78265e-05 0)
(2.63835e-05 2.76799e-05 0)
(2.39322e-05 2.72925e-05 0)
(2.14677e-05 2.66325e-05 0)
(1.9047e-05 2.56637e-05 0)
(1.67471e-05 2.43897e-05 0)
(1.46149e-05 2.28424e-05 0)
(1.2691e-05 2.10043e-05 0)
(1.11161e-05 1.88904e-05 0)
(9.98818e-06 1.66786e-05 0)
(9.22195e-06 1.45383e-05 0)
(8.71158e-06 1.24883e-05 0)
(8.42228e-06 1.04789e-05 0)
(8.37091e-06 8.51595e-06 0)
(8.60087e-06 6.59354e-06 0)
(9.11546e-06 4.79745e-06 0)
(9.90115e-06 3.17722e-06 0)
(1.09286e-05 1.78844e-06 0)
(1.21471e-05 6.55071e-07 0)
(1.35514e-05 -1.96265e-07 0)
(1.51317e-05 -6.77851e-07 0)
(1.67764e-05 -6.86698e-07 0)
(1.83515e-05 -2.06262e-07 0)
(1.97238e-05 7.45278e-07 0)
(2.07311e-05 2.13589e-06 0)
(2.1288e-05 3.91776e-06 0)
(2.1303e-05 5.87438e-06 0)
(2.06982e-05 7.85781e-06 0)
(1.94864e-05 9.6861e-06 0)
(1.77094e-05 1.12104e-05 0)
(1.54445e-05 1.22479e-05 0)
(1.28567e-05 1.26337e-05 0)
(1.01461e-05 1.22579e-05 0)
(7.5423e-06 1.11349e-05 0)
(5.28845e-06 9.32061e-06 0)
(3.56171e-06 6.95561e-06 0)
(2.49296e-06 4.22283e-06 0)
(2.16376e-06 1.30043e-06 0)
(2.57799e-06 -1.58875e-06 0)
(3.72472e-06 -4.28016e-06 0)
(5.54184e-06 -6.57209e-06 0)
(7.83607e-06 -8.21871e-06 0)
(1.0342e-05 -9.12815e-06 0)
(1.28108e-05 -9.36122e-06 0)
(1.51113e-05 -9.06388e-06 0)
(1.72109e-05 -8.34008e-06 0)
(1.90579e-05 -7.19543e-06 0)
(2.04559e-05 -5.64389e-06 0)
(2.12942e-05 -4.00588e-06 0)
(2.16869e-05 -2.50815e-06 0)
(2.18247e-05 -1.2536e-06 0)
(2.18921e-05 -2.61218e-07 0)
(2.19989e-05 5.77395e-07 0)
(2.21487e-05 1.40675e-06 0)
(2.23173e-05 2.19808e-06 0)
(2.25594e-05 2.93885e-06 0)
(2.29092e-05 3.68803e-06 0)
(2.33732e-05 4.4834e-06 0)
(2.40338e-05 5.37061e-06 0)
(2.49753e-05 6.52983e-06 0)
(2.60446e-05 8.23519e-06 0)
(2.69155e-05 1.05018e-05 0)
(2.74662e-05 1.31722e-05 0)
(2.76511e-05 1.62662e-05 0)
(2.73951e-05 1.96551e-05 0)
(2.66686e-05 2.33384e-05 0)
(2.52558e-05 2.73709e-05 0)
(2.29313e-05 3.14969e-05 0)
(1.971e-05 3.55255e-05 0)
(1.54168e-05 3.92883e-05 0)
(9.91301e-06 4.16503e-05 0)
(3.16216e-06 3.75106e-05 0)
(1.96143e-06 -9.60487e-06 0)
(9.18471e-06 1.10363e-05 0)
(1.74599e-05 1.62803e-05 0)
(2.49943e-05 1.51479e-05 0)
(3.06435e-05 1.35687e-05 0)
(3.47232e-05 1.18952e-05 0)
(3.81426e-05 1.10081e-05 0)
(4.08618e-05 1.06155e-05 0)
(4.30653e-05 1.06644e-05 0)
(4.4794e-05 1.09713e-05 0)
(4.61755e-05 1.1483e-05 0)
(4.72346e-05 1.21937e-05 0)
(4.80244e-05 1.30067e-05 0)
(4.86087e-05 1.3965e-05 0)
(4.89793e-05 1.50952e-05 0)
(4.90576e-05 1.64083e-05 0)
(4.8795e-05 1.77761e-05 0)
(4.82772e-05 1.91003e-05 0)
(4.75984e-05 2.04031e-05 0)
(4.67378e-05 2.17876e-05 0)
(4.55894e-05 2.32324e-05 0)
(4.41075e-05 2.46147e-05 0)
(4.23433e-05 2.58251e-05 0)
(4.03894e-05 2.68118e-05 0)
(3.83143e-05 2.7597e-05 0)
(3.61512e-05 2.82e-05 0)
(3.39037e-05 2.86437e-05 0)
(3.15645e-05 2.89266e-05 0)
(2.9134e-05 2.90292e-05 0)
(2.66134e-05 2.89186e-05 0)
(2.40245e-05 2.85532e-05 0)
(2.14022e-05 2.78938e-05 0)
(1.88122e-05 2.68849e-05 0)
(1.63516e-05 2.55363e-05 0)
(1.40612e-05 2.38942e-05 0)
(1.19795e-05 2.1906e-05 0)
(1.0298e-05 1.95736e-05 0)
(9.15386e-06 1.71387e-05 0)
(8.42332e-06 1.48409e-05 0)
(7.94363e-06 1.26732e-05 0)
(7.67304e-06 1.05624e-05 0)
(7.63889e-06 8.47431e-06 0)
(7.90402e-06 6.41595e-06 0)
(8.48677e-06 4.46424e-06 0)
(9.36878e-06 2.71411e-06 0)
(1.05121e-05 1.22378e-06 0)
(1.18587e-05 -2.22097e-08 0)
(1.34186e-05 -9.67746e-07 0)
(1.52008e-05 -1.50758e-06 0)
(1.70779e-05 -1.49804e-06 0)
(1.88899e-05 -9.18198e-07 0)
(2.05008e-05 2.14433e-07 0)
(2.17686e-05 1.84359e-06 0)
(2.24946e-05 3.85904e-06 0)
(2.25411e-05 6.12041e-06 0)
(2.18958e-05 8.44518e-06 0)
(2.05581e-05 1.06046e-05 0)
(1.8568e-05 1.23997e-05 0)
(1.59939e-05 1.36301e-05 0)
(1.30152e-05 1.41106e-05 0)
(9.88817e-06 1.37302e-05 0)
(6.89347e-06 1.24857e-05 0)
(4.30184e-06 1.0453e-05 0)
(2.32597e-06 7.77794e-06 0)
(1.10443e-06 4.6641e-06 0)
(7.25641e-07 1.28142e-06 0)
(1.19924e-06 -2.01208e-06 0)
(2.50034e-06 -5.05431e-06 0)
(4.59217e-06 -7.6671e-06 0)
(7.25954e-06 -9.51383e-06 0)
(1.0143e-05 -1.0466e-05 0)
(1.2925e-05 -1.06244e-05 0)
(1.54666e-05 -1.02182e-05 0)
(1.77836e-05 -9.38188e-06 0)
(1.98545e-05 -8.06733e-06 0)
(2.13841e-05 -6.20384e-06 0)
(2.21958e-05 -4.28851e-06 0)
(2.2478e-05 -2.62658e-06 0)
(2.2462e-05 -1.32926e-06 0)
(2.2396e-05 -3.47367e-07 0)
(2.2459e-05 4.88164e-07 0)
(2.25958e-05 1.32919e-06 0)
(2.27353e-05 2.10055e-06 0)
(2.29655e-05 2.79036e-06 0)
(2.33228e-05 3.48194e-06 0)
(2.38042e-05 4.19214e-06 0)
(2.45457e-05 4.93692e-06 0)
(2.57069e-05 5.96118e-06 0)
(2.70809e-05 7.67114e-06 0)
(2.8207e-05 1.00689e-05 0)
(2.89619e-05 1.2926e-05 0)
(2.93294e-05 1.62288e-05 0)
(2.92572e-05 1.98381e-05 0)
(2.87209e-05 2.38247e-05 0)
(2.74123e-05 2.82886e-05 0)
(2.50679e-05 3.29045e-05 0)
(2.17354e-05 3.74592e-05 0)
(1.71726e-05 4.18672e-05 0)
(1.1159e-05 4.49197e-05 0)
(3.61329e-06 4.10224e-05 0)
(-1.16641e-05 -1.26877e-05 0)
(-1.81194e-06 6.42066e-06 0)
(9.81025e-06 1.16032e-05 0)
(2.00315e-05 1.13304e-05 0)
(2.71484e-05 1.09338e-05 0)
(3.20496e-05 9.81685e-06 0)
(3.61803e-05 9.35212e-06 0)
(3.94813e-05 9.27929e-06 0)
(4.2169e-05 9.60644e-06 0)
(4.43057e-05 1.01301e-05 0)
(4.60448e-05 1.08176e-05 0)
(4.74099e-05 1.16925e-05 0)
(4.84627e-05 1.2623e-05 0)
(4.92966e-05 1.36867e-05 0)
(4.98989e-05 1.4947e-05 0)
(5.01587e-05 1.64302e-05 0)
(5.00058e-05 1.79603e-05 0)
(4.9563e-05 1.93869e-05 0)
(4.89767e-05 2.07643e-05 0)
(4.82134e-05 2.22735e-05 0)
(4.71144e-05 2.38884e-05 0)
(4.56162e-05 2.54319e-05 0)
(4.37858e-05 2.67733e-05 0)
(4.1748e-05 2.78359e-05 0)
(3.95916e-05 2.86674e-05 0)
(3.73513e-05 2.93098e-05 0)
(3.50268e-05 2.97922e-05 0)
(3.26021e-05 3.01189e-05 0)
(3.00699e-05 3.02733e-05 0)
(2.74253e-05 3.0201e-05 0)
(2.46888e-05 2.98677e-05 0)
(2.18904e-05 2.92179e-05 0)
(1.91073e-05 2.81654e-05 0)
(1.64644e-05 2.6732e-05 0)
(1.39902e-05 2.49965e-05 0)
(1.17145e-05 2.28468e-05 0)
(9.90005e-06 2.02554e-05 0)
(8.73885e-06 1.75475e-05 0)
(8.04885e-06 1.50789e-05 0)
(7.60727e-06 1.28065e-05 0)
(7.36027e-06 1.06131e-05 0)
(7.33937e-06 8.40499e-06 0)
(7.63073e-06 6.18242e-06 0)
(8.27794e-06 4.04524e-06 0)
(9.26198e-06 2.15337e-06 0)
(1.05103e-05 5.23932e-07 0)
(1.19737e-05 -8.59297e-07 0)
(1.36895e-05 -1.95624e-06 0)
(1.56824e-05 -2.63276e-06 0)
(1.78255e-05 -2.69636e-06 0)
(1.99309e-05 -2.10876e-06 0)
(2.18219e-05 -8.64687e-07 0)
(2.32736e-05 9.88683e-07 0)
(2.41443e-05 3.32778e-06 0)
(2.43011e-05 5.98577e-06 0)
(2.36247e-05 8.696e-06 0)
(2.21228e-05 1.12061e-05 0)
(1.98549e-05 1.33501e-05 0)
(1.69087e-05 1.48645e-05 0)
(1.34937e-05 1.54963e-05 0)
(9.89749e-06 1.50994e-05 0)
(6.44191e-06 1.36936e-05 0)
(3.44882e-06 1.13586e-05 0)
(1.16188e-06 8.28194e-06 0)
(-2.79077e-07 4.759e-06 0)
(-7.16666e-07 1.06672e-06 0)
(-1.4832e-07 -2.5035e-06 0)
(1.32505e-06 -5.95605e-06 0)
(3.72475e-06 -8.92621e-06 0)
(6.82984e-06 -1.10088e-05 0)
(1.01575e-05 -1.19875e-05 0)
(1.32849e-05 -1.20199e-05 0)
(1.60666e-05 -1.14692e-05 0)
(1.8606e-05 -1.05089e-05 0)
(2.09499e-05 -9.00167e-06 0)
(2.26326e-05 -6.75018e-06 0)
(2.33575e-05 -4.4758e-06 0)
(2.34314e-05 -2.56012e-06 0)
(2.32217e-05 -1.13876e-06 0)
(2.30483e-05 -1.90217e-07 0)
(2.30677e-05 5.15676e-07 0)
(2.31633e-05 1.27965e-06 0)
(2.32398e-05 2.01858e-06 0)
(2.34353e-05 2.64323e-06 0)
(2.37891e-05 3.27227e-06 0)
(2.42665e-05 3.89181e-06 0)
(2.50722e-05 4.45026e-06 0)
(2.64727e-05 5.2719e-06 0)
(2.81997e-05 6.95356e-06 0)
(2.96223e-05 9.50684e-06 0)
(3.06027e-05 1.25784e-05 0)
(3.11718e-05 1.60855e-05 0)
(3.13113e-05 1.99008e-05 0)
(3.10086e-05 2.42052e-05 0)
(2.98476e-05 2.91607e-05 0)
(2.74985e-05 3.43248e-05 0)
(2.40657e-05 3.94706e-05 0)
(1.92374e-05 4.46741e-05 0)
(1.26789e-05 4.8573e-05 0)
(4.20716e-06 4.50454e-05 0)
(-2.65874e-05 -1.62363e-05 0)
(-1.47423e-05 -1.02828e-07 0)
(3.0704e-08 4.97038e-06 0)
(1.29789e-05 6.02488e-06 0)
(2.16622e-05 7.44667e-06 0)
(2.76162e-05 7.04762e-06 0)
(3.27677e-05 7.14151e-06 0)
(3.70002e-05 7.50017e-06 0)
(4.04925e-05 8.20484e-06 0)
(4.33537e-05 9.0086e-06 0)
(4.5734e-05 9.91742e-06 0)
(4.76614e-05 1.0996e-05 0)
(4.91988e-05 1.20567e-05 0)
(5.04733e-05 1.32343e-05 0)
(5.14712e-05 1.46425e-05 0)
(5.20573e-05 1.63336e-05 0)
(5.21431e-05 1.80619e-05 0)
(5.18823e-05 1.95999e-05 0)
(5.14854e-05 2.10491e-05 0)
(5.08998e-05 2.2709e-05 0)
(4.9914e-05 2.45356e-05 0)
(4.84566e-05 2.62868e-05 0)
(4.66076e-05 2.77929e-05 0)
(4.45184e-05 2.89484e-05 0)
(4.23053e-05 2.98365e-05 0)
(4.00007e-05 3.0542e-05 0)
(3.76033e-05 3.10823e-05 0)
(3.50985e-05 3.14825e-05 0)
(3.24644e-05 3.17276e-05 0)
(2.96942e-05 3.17296e-05 0)
(2.68097e-05 3.14697e-05 0)
(2.3819e-05 3.08793e-05 0)
(2.08168e-05 2.98132e-05 0)
(1.79671e-05 2.8325e-05 0)
(1.52797e-05 2.65282e-05 0)
(1.2785e-05 2.42087e-05 0)
(1.08072e-05 2.1346e-05 0)
(9.58754e-06 1.83757e-05 0)
(8.92037e-06 1.57382e-05 0)
(8.53223e-06 1.33061e-05 0)
(8.333e-06 1.09221e-05 0)
(8.33396e-06 8.57667e-06 0)
(8.65111e-06 6.13714e-06 0)
(9.36762e-06 3.82062e-06 0)
(1.04368e-05 1.78135e-06 0)
(1.17648e-05 -1.00973e-08 0)
(1.33101e-05 -1.4728e-06 0)
(1.51165e-05 -2.67006e-06 0)
(1.72463e-05 -3.43198e-06 0)
(1.95973e-05 -3.51832e-06 0)
(2.1987e-05 -2.83037e-06 0)
(2.42171e-05 -1.40757e-06 0)
(2.60382e-05 7.10243e-07 0)
(2.71618e-05 3.53497e-06 0)
(2.73669e-05 6.69811e-06 0)
(2.66011e-05 9.8903e-06 0)
(2.49188e-05 1.28698e-05 0)
(2.23612e-05 1.54541e-05 0)
(1.89624e-05 1.734e-05 0)
(1.49648e-05 1.81936e-05 0)
(1.07605e-05 1.7847e-05 0)
(6.74138e-06 1.63336e-05 0)
(3.26126e-06 1.37436e-05 0)
(6.40734e-07 1.02593e-05 0)
(-9.40991e-07 6.21806e-06 0)
(-1.39902e-06 1.79797e-06 0)
(-8.55314e-07 -2.99361e-06 0)
(7.05017e-07 -6.98551e-06 0)
(3.43371e-06 -1.03922e-05 0)
(7.02824e-06 -1.27671e-05 0)
(1.08664e-05 -1.37612e-05 0)
(1.43681e-05 -1.36112e-05 0)
(1.738e-05 -1.29053e-05 0)
(2.01348e-05 -1.18579e-05 0)
(2.27761e-05 -1.01863e-05 0)
(2.46188e-05 -7.47007e-06 0)
(2.52208e-05 -4.81667e-06 0)
(2.50432e-05 -2.60221e-06 0)
(2.45123e-05 -1.06957e-06 0)
(2.40562e-05 -2.92732e-07 0)
(2.39821e-05 2.48843e-07 0)
(2.40829e-05 1.1543e-06 0)
(2.40981e-05 1.92916e-06 0)
(2.42169e-05 2.45739e-06 0)
(2.45455e-05 2.91831e-06 0)
(2.50008e-05 3.28348e-06 0)
(2.5833e-05 3.45794e-06 0)
(2.74256e-05 4.01773e-06 0)
(2.94935e-05 5.84662e-06 0)
(3.12477e-05 8.7435e-06 0)
(3.24995e-05 1.20637e-05 0)
(3.33132e-05 1.57609e-05 0)
(3.37047e-05 1.97654e-05 0)
(3.36856e-05 2.44289e-05 0)
(3.26906e-05 2.99774e-05 0)
(3.03069e-05 3.57493e-05 0)
(2.67836e-05 4.14405e-05 0)
(2.16974e-05 4.74639e-05 0)
(1.45223e-05 5.23831e-05 0)
(4.934e-06 4.94806e-05 0)
(-3.94591e-05 -1.89098e-05 0)
(-2.74927e-05 -6.44005e-06 0)
(-1.11395e-05 -1.43838e-06 0)
(3.63612e-06 1.67118e-06 0)
(1.38945e-05 5.16018e-06 0)
(2.14371e-05 5.5391e-06 0)
(2.82175e-05 5.96264e-06 0)
(3.40386e-05 6.53603e-06 0)
(3.89091e-05 7.33021e-06 0)
(4.30854e-05 8.21618e-06 0)
(4.66262e-05 9.18795e-06 0)
(4.95957e-05 1.03424e-05 0)
(5.20408e-05 1.1415e-05 0)
(5.40926e-05 1.26085e-05 0)
(5.57499e-05 1.40926e-05 0)
(5.69125e-05 1.59558e-05 0)
(5.75053e-05 1.78876e-05 0)
(5.76639e-05 1.95333e-05 0)
(5.76307e-05 2.10421e-05 0)
(5.73284e-05 2.28632e-05 0)
(5.65568e-05 2.48973e-05 0)
(5.52685e-05 2.68639e-05 0)
(5.35329e-05 2.85175e-05 0)
(5.14974e-05 2.96977e-05 0)
(4.92964e-05 3.05645e-05 0)
(4.69518e-05 3.12525e-05 0)
(4.44768e-05 3.17472e-05 0)
(4.18918e-05 3.21248e-05 0)
(3.91526e-05 3.23664e-05 0)
(3.62555e-05 3.23401e-05 0)
(3.32328e-05 3.20702e-05 0)
(3.00441e-05 3.14719e-05 0)
(2.6802e-05 3.02688e-05 0)
(2.37101e-05 2.86106e-05 0)
(2.07543e-05 2.66894e-05 0)
(1.80308e-05 2.40755e-05 0)
(1.58894e-05 2.08004e-05 0)
(1.44983e-05 1.74365e-05 0)
(1.36853e-05 1.45942e-05 0)
(1.32792e-05 1.2098e-05 0)
(1.32229e-05 9.79845e-06 0)
(1.33601e-05 7.44359e-06 0)
(1.37614e-05 4.87314e-06 0)
(1.45782e-05 2.37011e-06 0)
(1.56999e-05 3.40921e-07 0)
(1.70784e-05 -1.01597e-06 0)
(1.86635e-05 -2.4551e-06 0)
(2.04587e-05 -3.87853e-06 0)
(2.25942e-05 -4.91094e-06 0)
(2.50915e-05 -5.1799e-06 0)
(2.77857e-05 -4.48109e-06 0)
(3.03571e-05 -2.87124e-06 0)
(3.25101e-05 -4.81676e-07 0)
(3.38916e-05 2.4243e-06 0)
(3.41829e-05 5.8241e-06 0)
(3.33224e-05 9.40248e-06 0)
(3.13818e-05 1.26656e-05 0)
(2.8404e-05 1.54432e-05 0)
(2.44274e-05 1.74066e-05 0)
(1.9735e-05 1.82317e-05 0)
(1.47969e-05 1.76471e-05 0)
(1.00656e-05 1.5839e-05 0)
(5.93713e-06 1.2932e-05 0)
(2.77901e-06 8.99853e-06 0)
(7.13871e-07 4.53392e-06 0)
(-2.74797e-07 -2.0116e-07 0)
(3.54499e-07 -3.90557e-06 0)
(2.41195e-06 -8.00248e-06 0)
(5.4766e-06 -1.18402e-05 0)
(9.53944e-06 -1.44577e-05 0)
(1.38822e-05 -1.53129e-05 0)
(1.77572e-05 -1.47744e-05 0)
(2.09816e-05 -1.38462e-05 0)
(2.38965e-05 -1.2778e-05 0)
(2.67254e-05 -1.09841e-05 0)
(2.85872e-05 -7.5645e-06 0)
(2.89689e-05 -4.42828e-06 0)
(2.844e-05 -2.34217e-06 0)
(2.74698e-05 -7.78152e-07 0)
(2.67292e-05 -1.35451e-07 0)
(2.66346e-05 3.223e-07 0)
(2.66283e-05 1.36785e-06 0)
(2.63287e-05 2.22475e-06 0)
(2.61743e-05 2.95661e-06 0)
(2.63494e-05 3.71398e-06 0)
(2.67571e-05 4.32462e-06 0)
(2.76587e-05 4.41424e-06 0)
(2.93785e-05 4.62833e-06 0)
(3.15635e-05 6.06046e-06 0)
(3.34972e-05 8.63948e-06 0)
(3.50776e-05 1.17035e-05 0)
(3.63042e-05 1.52786e-05 0)
(3.71221e-05 1.94513e-05 0)
(3.73776e-05 2.44774e-05 0)
(3.63323e-05 3.05919e-05 0)
(3.36444e-05 3.6892e-05 0)
(2.97838e-05 4.313e-05 0)
(2.43317e-05 5.00822e-05 0)
(1.6575e-05 5.63063e-05 0)
(5.75552e-06 5.41292e-05 0)
(-3.76504e-05 -2.26988e-05 0)
(-2.88744e-05 -1.58897e-05 0)
(-1.52527e-05 -1.21276e-05 0)
(-1.80428e-06 -8.05184e-06 0)
(9.85846e-06 -3.2827e-06 0)
(2.03431e-05 -2.49771e-06 0)
(2.96326e-05 -1.52962e-06 0)
(3.81826e-05 -4.41947e-07 0)
(4.54705e-05 1.3231e-06 0)
(5.21812e-05 2.89689e-06 0)
(5.7916e-05 4.57128e-06 0)
(6.28828e-05 6.4285e-06 0)
(6.70715e-05 8.10067e-06 0)
(7.05146e-05 9.96508e-06 0)
(7.32542e-05 1.20493e-05 0)
(7.54341e-05 1.45699e-05 0)
(7.71114e-05 1.7163e-05 0)
(7.82092e-05 1.93487e-05 0)
(7.88477e-05 2.1336e-05 0)
(7.8929e-05 2.37155e-05 0)
(7.85088e-05 2.6192e-05 0)
(7.76492e-05 2.85615e-05 0)
(7.63146e-05 3.06799e-05 0)
(7.45594e-05 3.22781e-05 0)
(7.24913e-05 3.35905e-05 0)
(7.00976e-05 3.47465e-05 0)
(6.7465e-05 3.56149e-05 0)
(6.4725e-05 3.63956e-05 0)
(6.18017e-05 3.70624e-05 0)
(5.8727e-05 3.73651e-05 0)
(5.5551e-05 3.74755e-05 0)
(5.21148e-05 3.72806e-05 0)
(4.85721e-05 3.62867e-05 0)
(4.51686e-05 3.47204e-05 0)
(4.18314e-05 3.2824e-05 0)
(3.88759e-05 2.99841e-05 0)
(3.65369e-05 2.62256e-05 0)
(3.46863e-05 2.23732e-05 0)
(3.34693e-05 1.89114e-05 0)
(3.30967e-05 1.58077e-05 0)
(3.32882e-05 1.32912e-05 0)
(3.35626e-05 1.07121e-05 0)
(3.39851e-05 7.75479e-06 0)
(3.48584e-05 4.7642e-06 0)
(3.61743e-05 1.98538e-06 0)
(3.73458e-05 -3.04718e-07 0)
(3.83094e-05 -2.5789e-06 0)
(3.95953e-05 -4.67379e-06 0)
(4.13343e-05 -6.0023e-06 0)
(4.3674e-05 -6.64733e-06 0)
(4.655e-05 -6.26795e-06 0)
(4.94475e-05 -4.54101e-06 0)
(5.18304e-05 -1.60225e-06 0)
(5.34186e-05 2.41238e-06 0)
(5.39118e-05 7.42902e-06 0)
(5.29398e-05 1.24585e-05 0)
(5.05289e-05 1.73068e-05 0)
(4.68212e-05 2.16343e-05 0)
(4.19551e-05 2.49299e-05 0)
(3.62616e-05 2.6724e-05 0)
(3.03333e-05 2.6362e-05 0)
(2.47376e-05 2.43366e-05 0)
(1.9759e-05 2.06878e-05 0)
(1.5899e-05 1.55993e-05 0)
(1.33824e-05 1.00403e-05 0)
(1.26785e-05 4.17895e-06 0)
(1.29948e-05 -1.89113e-06 0)
(1.41159e-05 -8.4443e-06 0)
(1.70529e-05 -1.40876e-05 0)
(2.1148e-05 -1.78068e-05 0)
(2.56053e-05 -1.90892e-05 0)
(2.97233e-05 -1.83271e-05 0)
(3.3164e-05 -1.70663e-05 0)
(3.59728e-05 -1.54803e-05 0)
(3.80422e-05 -1.31519e-05 0)
(3.90202e-05 -8.41996e-06 0)
(3.87997e-05 -4.28598e-06 0)
(3.80238e-05 -1.69358e-06 0)
(3.69519e-05 -1.81745e-07 0)
(3.58561e-05 -5.3704e-08 0)
(3.50357e-05 -2.71806e-07 0)
(3.4221e-05 5.70479e-07 0)
(3.34883e-05 8.02044e-07 0)
(3.30633e-05 8.87671e-07 0)
(3.30704e-05 9.43995e-07 0)
(3.34005e-05 1.06873e-06 0)
(3.40283e-05 6.5886e-07 0)
(3.4779e-05 5.26675e-07 0)
(3.58724e-05 1.88687e-06 0)
(3.77359e-05 4.89096e-06 0)
(4.01951e-05 8.93779e-06 0)
(4.26463e-05 1.38361e-05 0)
(4.4346e-05 1.9494e-05 0)
(4.44191e-05 2.59634e-05 0)
(4.24346e-05 3.38497e-05 0)
(3.86686e-05 4.21492e-05 0)
(3.32962e-05 5.04363e-05 0)
(2.64508e-05 5.93519e-05 0)
(1.80197e-05 6.74571e-05 0)
(7.50876e-06 6.69801e-05 0)
(3.40842e-05 -1.55541e-05 0)
(3.61407e-05 -1.37357e-05 0)
(3.96822e-05 -1.17169e-05 0)
(4.59795e-05 -7.95755e-06 0)
(6.02493e-05 -3.26031e-06 0)
(7.74958e-05 -2.17832e-06 0)
(9.1297e-05 -8.34656e-07 0)
(0.000104972 7.19877e-07 0)
(0.000116568 2.98944e-06 0)
(0.000127793 5.00062e-06 0)
(0.000137532 7.05727e-06 0)
(0.000146239 9.21398e-06 0)
(0.000153755 1.10914e-05 0)
(0.000159641 1.29931e-05 0)
(0.000164052 1.49595e-05 0)
(0.000167937 1.72246e-05 0)
(0.000171774 1.94184e-05 0)
(0.000174846 2.10925e-05 0)
(0.000176688 2.24668e-05 0)
(0.000177146 2.40766e-05 0)
(0.000177158 2.56985e-05 0)
(0.000177213 2.71565e-05 0)
(0.000176933 2.83461e-05 0)
(0.000175911 2.90934e-05 0)
(0.000174094 2.95708e-05 0)
(0.000171401 2.98688e-05 0)
(0.000168146 2.98985e-05 0)
(0.000164766 2.98048e-05 0)
(0.000161102 2.95477e-05 0)
(0.000157303 2.8967e-05 0)
(0.000153493 2.8232e-05 0)
(0.000149286 2.72716e-05 0)
(0.000144871 2.57696e-05 0)
(0.000140388 2.38894e-05 0)
(0.000135806 2.18349e-05 0)
(0.000132112 1.91983e-05 0)
(0.000129128 1.58445e-05 0)
(0.000125617 1.24719e-05 0)
(0.000122476 9.42782e-06 0)
(0.000121304 6.69782e-06 0)
(0.000121482 4.46491e-06 0)
(0.000121573 2.37127e-06 0)
(0.00012141 2.6008e-07 0)
(0.000121312 -1.59389e-06 0)
(0.000121343 -3.297e-06 0)
(0.000121128 -4.86026e-06 0)
(0.000120521 -6.00504e-06 0)
(0.000120285 -6.72428e-06 0)
(0.000120427 -6.82629e-06 0)
(0.0001208 -6.60077e-06 0)
(0.000122161 -5.78586e-06 0)
(0.000124467 -4.2042e-06 0)
(0.000126818 -1.93683e-06 0)
(0.00012866 1.22542e-06 0)
(0.000129261 4.89961e-06 0)
(0.000128028 8.22179e-06 0)
(0.000124436 1.13926e-05 0)
(0.000118263 1.4216e-05 0)
(0.000110859 1.63991e-05 0)
(0.000103071 1.74994e-05 0)
(9.5295e-05 1.69414e-05 0)
(8.80086e-05 1.50382e-05 0)
(8.12383e-05 1.17001e-05 0)
(7.55661e-05 7.20573e-06 0)
(7.08957e-05 2.28969e-06 0)
(6.70946e-05 -3.10939e-06 0)
(6.52439e-05 -9.93273e-06 0)
(6.60047e-05 -1.55776e-05 0)
(6.83941e-05 -2.00559e-05 0)
(7.08448e-05 -2.28321e-05 0)
(7.36715e-05 -2.33607e-05 0)
(7.75466e-05 -2.19834e-05 0)
(8.15996e-05 -2.02106e-05 0)
(8.33411e-05 -1.83632e-05 0)
(8.01506e-05 -1.55931e-05 0)
(7.61583e-05 -1.00945e-05 0)
(7.47545e-05 -4.81336e-06 0)
(7.34493e-05 -7.22185e-07 0)
(7.1889e-05 1.59613e-06 0)
(6.91397e-05 2.35238e-06 0)
(6.37278e-05 2.83386e-06 0)
(5.88903e-05 4.73602e-06 0)
(5.6746e-05 5.69308e-06 0)
(5.55556e-05 5.83591e-06 0)
(5.51023e-05 5.65871e-06 0)
(5.54656e-05 5.48245e-06 0)
(5.60544e-05 4.94233e-06 0)
(5.55932e-05 4.87036e-06 0)
(5.49668e-05 6.3339e-06 0)
(5.66394e-05 9.24379e-06 0)
(6.03963e-05 1.27513e-05 0)
(6.44269e-05 1.64219e-05 0)
(6.65803e-05 1.99974e-05 0)
(6.51182e-05 2.39752e-05 0)
(6.06122e-05 2.90116e-05 0)
(5.36428e-05 3.41349e-05 0)
(4.20153e-05 3.91227e-05 0)
(2.83317e-05 4.51413e-05 0)
(1.74642e-05 5.14075e-05 0)
(1.03842e-05 5.17783e-05 0)
(0.00101921 -1.69377e-05 0)
(0.00101734 -1.33878e-05 0)
(0.00100677 -1.2381e-05 0)
(0.00100269 -1.13676e-05 0)
(0.00102754 -1.18797e-05 0)
(0.00106187 -9.84183e-06 0)
(0.00108515 -8.9905e-06 0)
(0.00110857 -6.86284e-06 0)
(0.00112792 -5.78725e-06 0)
(0.0011473 -4.83409e-06 0)
(0.00116392 -2.31232e-06 0)
(0.00117995 7.58719e-07 0)
(0.00119375 4.25413e-06 0)
(0.00120371 7.54692e-06 0)
(0.00121021 1.04828e-05 0)
(0.00121583 1.28916e-05 0)
(0.00122218 1.56764e-05 0)
(0.00122708 1.81195e-05 0)
(0.00122848 2.04641e-05 0)
(0.0012265 2.30004e-05 0)
(0.00122391 2.51146e-05 0)
(0.00122159 2.71391e-05 0)
(0.00121885 2.93051e-05 0)
(0.00121427 3.08782e-05 0)
(0.00120736 3.2197e-05 0)
(0.00119812 3.36058e-05 0)
(0.00118702 3.41791e-05 0)
(0.00117481 3.47256e-05 0)
(0.00116151 3.54547e-05 0)
(0.0011472 3.54465e-05 0)
(0.00113211 3.53737e-05 0)
(0.00111608 3.53751e-05 0)
(0.00109935 3.40946e-05 0)
(0.00108144 3.23663e-05 0)
(0.00106284 3.03606e-05 0)
(0.00104602 2.68201e-05 0)
(0.00102965 2.29313e-05 0)
(0.00101035 1.9655e-05 0)
(0.000989674 1.58441e-05 0)
(0.00097075 1.17157e-05 0)
(0.000954055 9.14965e-06 0)
(0.000938656 7.29311e-06 0)
(0.000923351 4.80574e-06 0)
(0.000907908 2.10194e-06 0)
(0.0008925 -7.57581e-07 0)
(0.000876637 -2.30589e-06 0)
(0.000860268 -5.0215e-06 0)
(0.000844842 -8.27782e-06 0)
(0.000830368 -1.01674e-05 0)
(0.000813957 -1.11751e-05 0)
(0.000796783 -1.14195e-05 0)
(0.000783654 -1.00573e-05 0)
(0.000772996 -6.52696e-06 0)
(0.000760154 -9.57236e-07 0)
(0.000748001 3.74238e-06 0)
(0.000736088 9.50148e-06 0)
(0.00071896 1.55078e-05 0)
(0.000695646 2.06146e-05 0)
(0.000672869 2.34102e-05 0)
(0.000654462 2.50826e-05 0)
(0.000638206 2.41872e-05 0)
(0.000622763 2.1919e-05 0)
(0.000606523 1.84588e-05 0)
(0.000587017 1.31965e-05 0)
(0.000561867 8.51227e-06 0)
(0.000535332 3.31969e-06 0)
(0.000515455 -4.44666e-06 0)
(0.000501356 -1.35155e-05 0)
(0.00048751 -1.93388e-05 0)
(0.00047016 -2.25572e-05 0)
(0.000453008 -2.40299e-05 0)
(0.000441495 -2.32976e-05 0)
(0.000433928 -2.18026e-05 0)
(0.000419872 -1.83212e-05 0)
(0.000388625 -1.32455e-05 0)
(0.000359567 -9.93693e-06 0)
(0.000345256 -6.35799e-06 0)
(0.000330273 -2.96443e-06 0)
(0.00031844 -1.9255e-06 0)
(0.000299291 -8.95008e-08 0)
(0.000271443 -5.20049e-08 0)
(0.000257221 -1.01713e-06 0)
(0.000252877 -1.68833e-06 0)
(0.000247437 -1.39471e-06 0)
(0.000240513 -1.57646e-06 0)
(0.000232884 -1.17994e-06 0)
(0.000224314 -1.35046e-06 0)
(0.000213833 -8.78683e-07 0)
(0.000202667 -4.50259e-07 0)
(0.000193984 1.28183e-06 0)
(0.000187394 4.48555e-06 0)
(0.000181051 9.12276e-06 0)
(0.000172139 1.52519e-05 0)
(0.000158412 2.30731e-05 0)
(0.000140415 3.2326e-05 0)
(0.000118691 4.18344e-05 0)
(9.0897e-05 5.15574e-05 0)
(5.93669e-05 5.98494e-05 0)
(2.8761e-05 6.60574e-05 0)
(3.18446e-05 7.11557e-05 0)
(0.0191389 -3.99987e-05 0)
(0.019371 -2.10875e-05 0)
(0.0195669 -2.14586e-05 0)
(0.019728 -2.83537e-05 0)
(0.0198576 -5.69084e-05 0)
(0.0199902 -3.94919e-05 0)
(0.0201022 -3.94091e-05 0)
(0.0202064 -2.97279e-05 0)
(0.0202961 -2.70453e-05 0)
(0.0203766 -2.21293e-05 0)
(0.0204468 -1.68942e-05 0)
(0.0205071 -1.3501e-05 0)
(0.020559 -6.21945e-06 0)
(0.0206002 -1.1286e-06 0)
(0.0206318 4.8434e-06 0)
(0.0206525 7.2105e-06 0)
(0.0206652 1.09259e-05 0)
(0.0206697 1.59598e-05 0)
(0.0206656 2.28797e-05 0)
(0.0206515 2.8469e-05 0)
(0.0206279 3.18917e-05 0)
(0.0205958 3.51901e-05 0)
(0.0205563 3.95143e-05 0)
(0.020509 4.42074e-05 0)
(0.0204524 4.881e-05 0)
(0.0203858 5.36535e-05 0)
(0.0203081 5.67767e-05 0)
(0.0202186 5.96896e-05 0)
(0.0201177 6.28545e-05 0)
(0.0200047 6.50058e-05 0)
(0.0198793 6.71143e-05 0)
(0.0197417 6.94447e-05 0)
(0.0195912 6.99473e-05 0)
(0.0194276 7.0768e-05 0)
(0.0192504 6.91341e-05 0)
(0.0190604 6.41058e-05 0)
(0.0188584 6.17878e-05 0)
(0.0186439 6.14864e-05 0)
(0.0184159 5.6652e-05 0)
(0.0181756 5.00009e-05 0)
(0.0179252 4.48063e-05 0)
(0.0176675 4.13993e-05 0)
(0.0174027 3.75224e-05 0)
(0.01713 3.35732e-05 0)
(0.0168496 3.07075e-05 0)
(0.0165625 3.03769e-05 0)
(0.0162692 2.94012e-05 0)
(0.0159696 2.58438e-05 0)
(0.0156655 2.43122e-05 0)
(0.0153577 2.62765e-05 0)
(0.0150446 2.42225e-05 0)
(0.0147289 2.08153e-05 0)
(0.0144158 2.41113e-05 0)
(0.0141065 3.13784e-05 0)
(0.0137992 3.64062e-05 0)
(0.0134942 4.75234e-05 0)
(0.0131896 6.22424e-05 0)
(0.0128822 7.30797e-05 0)
(0.0125708 7.26318e-05 0)
(0.0122597 7.18322e-05 0)
(0.0119504 6.94606e-05 0)
(0.0116425 6.58983e-05 0)
(0.0113357 6.26885e-05 0)
(0.0110276 5.9466e-05 0)
(0.0107161 5.81988e-05 0)
(0.0104001 4.4003e-05 0)
(0.0100815 2.79958e-05 0)
(0.00976132 1.93968e-05 0)
(0.00943932 1.77736e-05 0)
(0.00911495 1.81629e-05 0)
(0.00878864 1.41755e-05 0)
(0.00846362 1.00718e-05 0)
(0.00814078 1.11532e-05 0)
(0.00781718 2.25601e-05 0)
(0.00748871 4.22223e-05 0)
(0.00715378 2.72204e-05 0)
(0.00682388 2.47454e-05 0)
(0.00649868 3.22708e-05 0)
(0.00617387 2.49264e-05 0)
(0.00585096 5.18143e-05 0)
(0.00552237 4.35448e-05 0)
(0.00519757 2.60597e-05 0)
(0.00488356 2.27517e-05 0)
(0.00457742 2.49854e-05 0)
(0.00427675 2.42035e-05 0)
(0.00398067 2.5735e-05 0)
(0.0036874 2.60571e-05 0)
(0.00339546 2.83875e-05 0)
(0.00310452 2.76541e-05 0)
(0.00281513 2.66403e-05 0)
(0.00252683 2.92249e-05 0)
(0.00223803 3.57299e-05 0)
(0.00194712 4.81952e-05 0)
(0.00165274 6.23907e-05 0)
(0.00135496 7.81765e-05 0)
(0.00105426 9.43492e-05 0)
(0.000751338 0.000110834 0)
(0.000454844 0.000120115 0)
(0.000181181 0.000113152 0)
(2.63516e-05 0.00011055 0)
(0.03068 -0.00023167 0)
(0.0310996 -0.000202792 0)
(0.0314983 -0.000176166 0)
(0.0318662 -0.000158342 0)
(0.0321952 -0.000158908 0)
(0.0324985 -0.000140754 0)
(0.0327756 -0.000127053 0)
(0.0330271 -0.00011068 0)
(0.0332521 -9.74932e-05 0)
(0.0334514 -8.44698e-05 0)
(0.0336261 -7.12769e-05 0)
(0.0337761 -5.91088e-05 0)
(0.0339022 -4.5137e-05 0)
(0.0340048 -3.12556e-05 0)
(0.0340846 -1.73739e-05 0)
(0.034141 -5.96629e-06 0)
(0.034175 5.08696e-06 0)
(0.0341875 1.70413e-05 0)
(0.034179 3.04887e-05 0)
(0.0341499 4.32728e-05 0)
(0.0341002 5.42863e-05 0)
(0.0340304 6.45856e-05 0)
(0.0339413 7.50795e-05 0)
(0.0338334 8.61748e-05 0)
(0.0337066 9.76714e-05 0)
(0.0335611 0.000109506 0)
(0.0333965 0.000120767 0)
(0.033213 0.000131859 0)
(0.0330111 0.000142857 0)
(0.0327911 0.000153428 0)
(0.0325534 0.000163869 0)
(0.0322987 0.000174138 0)
(0.0320269 0.000183612 0)
(0.0317386 0.000193029 0)
(0.0314341 0.00020059 0)
(0.0311131 0.000205801 0)
(0.0307763 0.000212137 0)
(0.0304251 0.000219519 0)
(0.0300601 0.000224529 0)
(0.0296816 0.00022771 0)
(0.0292913 0.000230457 0)
(0.0288906 0.000233502 0)
(0.0284802 0.000236651 0)
(0.0280599 0.000239807 0)
(0.0276299 0.000243154 0)
(0.027191 0.000247068 0)
(0.0267438 0.000250395 0)
(0.026288 0.00025216 0)
(0.025824 0.000254475 0)
(0.0253539 0.000258634 0)
(0.0248779 0.000260624 0)
(0.0243962 0.000260314 0)
(0.0239112 0.000261992 0)
(0.0234255 0.000265308 0)
(0.0229384 0.000268369 0)
(0.0224497 0.000274953 0)
(0.0219598 0.00028524 0)
(0.0214685 0.000294473 0)
(0.0209736 0.000297067 0)
(0.020475 0.000297103 0)
(0.0199733 0.000295371 0)
(0.0194686 0.000292791 0)
(0.0189611 0.000290329 0)
(0.0184508 0.000288858 0)
(0.0179393 0.000288122 0)
(0.0174256 0.000281295 0)
(0.0169077 0.000272728 0)
(0.0163862 0.000266338 0)
(0.0158626 0.000263537 0)
(0.0153381 0.000262866 0)
(0.0148126 0.000259854 0)
(0.0142858 0.000256665 0)
(0.013758 0.000258495 0)
(0.0132302 0.000269867 0)
(0.0127049 0.000284039 0)
(0.0121773 0.000280077 0)
(0.0116477 0.000277426 0)
(0.0111212 0.000279941 0)
(0.0105939 0.000278345 0)
(0.0100679 0.000290771 0)
(0.00954218 0.000288448 0)
(0.00901276 0.000276571 0)
(0.00848468 0.000269062 0)
(0.00796126 0.000265615 0)
(0.00744149 0.000262039 0)
(0.00692434 0.000260147 0)
(0.0064091 0.000258885 0)
(0.00589505 0.000259038 0)
(0.00538166 0.000258203 0)
(0.00486817 0.000257785 0)
(0.00435438 0.000259949 0)
(0.00383987 0.000265872 0)
(0.0033244 0.000276125 0)
(0.00280784 0.000288613 0)
(0.00229053 0.000302151 0)
(0.00177404 0.000315426 0)
(0.00126299 0.000325005 0)
(0.00077215 0.000318362 0)
(0.000328824 0.000272528 0)
(4.43056e-05 0.000168203 0)
(0.0373821 -0.000493073 0)
(0.0379323 -0.00045156 0)
(0.038462 -0.000408333 0)
(0.0389597 -0.000371879 0)
(0.0394145 -0.000349878 0)
(0.0398316 -0.000318586 0)
(0.040216 -0.000288407 0)
(0.0405664 -0.000257258 0)
(0.0408827 -0.000228313 0)
(0.0411648 -0.000200203 0)
(0.0414137 -0.000172269 0)
(0.0416297 -0.000145147 0)
(0.0418135 -0.000117189 0)
(0.041966 -8.92915e-05 0)
(0.0420881 -6.18631e-05 0)
(0.0421795 -3.65843e-05 0)
(0.0422406 -1.19204e-05 0)
(0.0422724 1.29581e-05 0)
(0.0422761 3.86133e-05 0)
(0.0422525 6.35616e-05 0)
(0.0422016 8.68065e-05 0)
(0.0421238 0.000109003 0)
(0.04202 0.000130929 0)
(0.0418909 0.000153177 0)
(0.0417371 0.000175692 0)
(0.0415593 0.000198321 0)
(0.0413578 0.000220453 0)
(0.0411329 0.000242173 0)
(0.0408856 0.000263427 0)
(0.0406163 0.000284087 0)
(0.0403259 0.00030429 0)
(0.0400152 0.000323949 0)
(0.0396848 0.000342783 0)
(0.0393354 0.000361083 0)
(0.0389676 0.000377699 0)
(0.0385813 0.000392331 0)
(0.038177 0.00040707 0)
(0.0377567 0.000421996 0)
(0.0373212 0.000434846 0)
(0.0368704 0.000445396 0)
(0.0364055 0.000454647 0)
(0.0359273 0.000463535 0)
(0.0354368 0.000472354 0)
(0.0349342 0.00048105 0)
(0.0344202 0.000489674 0)
(0.0338954 0.000498375 0)
(0.0333604 0.000506402 0)
(0.0328151 0.000513086 0)
(0.0322597 0.000519658 0)
(0.0316961 0.000527017 0)
(0.0311253 0.000532495 0)
(0.0305463 0.000535661 0)
(0.0299604 0.000539409 0)
(0.0293697 0.000544035 0)
(0.0287744 0.000549034 0)
(0.0281746 0.000556706 0)
(0.0275721 0.00056726 0)
(0.0269677 0.000577201 0)
(0.0263595 0.000582399 0)
(0.025746 0.000584668 0)
(0.0251275 0.000585112 0)
(0.0245041 0.000584678 0)
(0.0238762 0.00058407 0)
(0.0232445 0.000583961 0)
(0.0226108 0.000583658 0)
(0.0219741 0.000579384 0)
(0.021332 0.000573465 0)
(0.0206852 0.000568734 0)
(0.0200354 0.000566645 0)
(0.0193841 0.0005662 0)
(0.0187312 0.000564202 0)
(0.0180755 0.000562199 0)
(0.0174173 0.000564696 0)
(0.0167592 0.000574917 0)
(0.0161054 0.000586767 0)
(0.0154509 0.000585948 0)
(0.0147923 0.00058367 0)
(0.0141348 0.000584903 0)
(0.0134761 0.00058514 0)
(0.0128186 0.000593779 0)
(0.0121632 0.000593664 0)
(0.0115027 0.00058447 0)
(0.0108388 0.000576368 0)
(0.0101761 0.000571297 0)
(0.00951455 0.000566885 0)
(0.00885366 0.000564051 0)
(0.00819329 0.000562337 0)
(0.00753331 0.00056193 0)
(0.00687334 0.000561269 0)
(0.00621263 0.000561339 0)
(0.00555118 0.000563863 0)
(0.00488925 0.000570112 0)
(0.00422734 0.000580136 0)
(0.00356598 0.000592199 0)
(0.00290615 0.000604451 0)
(0.00225056 0.000614295 0)
(0.00160644 0.0006145 0)
(0.000991624 0.000585985 0)
(0.000438962 0.000490946 0)
(6.21351e-05 0.000270625 0)
(0.0413418 -0.000808687 0)
(0.0419801 -0.000750691 0)
(0.0425943 -0.000690624 0)
(0.0431736 -0.000635392 0)
(0.0437078 -0.000590716 0)
(0.044199 -0.000541513 0)
(0.0446524 -0.000492438 0)
(0.0450672 -0.000443089 0)
(0.0454434 -0.000395471 0)
(0.0457808 -0.000348992 0)
(0.0460802 -0.000303071 0)
(0.0463421 -0.000258012 0)
(0.0465672 -0.000212826 0)
(0.0467565 -0.000168017 0)
(0.0469109 -0.00012404 0)
(0.0470304 -8.20037e-05 0)
(0.0471153 -4.10217e-05 0)
(0.0471663 -3.31147e-07 0)
(0.0471851 4.04534e-05 0)
(0.0471724 8.02803e-05 0)
(0.0471287 0.00011835 0)
(0.047054 0.000155067 0)
(0.0469494 0.000191067 0)
(0.0468157 0.00022692 0)
(0.046654 0.000262661 0)
(0.046465 0.000298139 0)
(0.0462496 0.000332898 0)
(0.0460082 0.00036687 0)
(0.0457418 0.000399971 0)
(0.0454511 0.000432106 0)
(0.0451371 0.000463327 0)
(0.0448007 0.000493577 0)
(0.0444426 0.000522696 0)
(0.0440638 0.000550741 0)
(0.043665 0.000576988 0)
(0.0432462 0.000601282 0)
(0.0428082 0.000624932 0)
(0.0423526 0.000647976 0)
(0.0418802 0.000668847 0)
(0.0413911 0.000687209 0)
(0.0408858 0.000703825 0)
(0.0403653 0.000719591 0)
(0.0398303 0.000734957 0)
(0.0392816 0.000749961 0)
(0.0387199 0.000764609 0)
(0.0381459 0.000778931 0)
(0.0375602 0.000792409 0)
(0.036963 0.000804581 0)
(0.0363545 0.000816141 0)
(0.0357363 0.000827639 0)
(0.0351092 0.000837351 0)
(0.0344727 0.000844937 0)
(0.033827 0.000852352 0)
(0.0331738 0.000860116 0)
(0.0325136 0.000868294 0)
(0.0318471 0.000878391 0)
(0.0311762 0.000890466 0)
(0.0305022 0.000901943 0)
(0.0298237 0.000909789 0)
(0.0291393 0.000914853 0)
(0.0284488 0.000918094 0)
(0.0277525 0.000920319 0)
(0.0270508 0.000922065 0)
(0.0263445 0.000923744 0)
(0.0256349 0.000924718 0)
(0.0249209 0.000922813 0)
(0.024201 0.000919524 0)
(0.0234758 0.000916966 0)
(0.0227466 0.000916278 0)
(0.0220149 0.000916738 0)
(0.0212807 0.000916196 0)
(0.0205428 0.000915834 0)
(0.0198017 0.00091916 0)
(0.0190604 0.000928286 0)
(0.0183227 0.000938411 0)
(0.0175848 0.000939458 0)
(0.0168425 0.000938229 0)
(0.0160994 0.000939264 0)
(0.015355 0.000940548 0)
(0.0146114 0.000947239 0)
(0.01387 0.000948283 0)
(0.0131241 0.000941726 0)
(0.0123732 0.000934662 0)
(0.0116209 0.00092957 0)
(0.0108679 0.000925328 0)
(0.0101141 0.00092252 0)
(0.00935955 0.000920947 0)
(0.00860464 0.000920567 0)
(0.00784918 0.000920285 0)
(0.0070927 0.000920838 0)
(0.00633538 0.00092368 0)
(0.00557787 0.000929981 0)
(0.00482107 0.000939571 0)
(0.00406597 0.000950733 0)
(0.00331405 0.000960933 0)
(0.00256885 0.000965881 0)
(0.00183897 0.000954521 0)
(0.00114291 0.000900696 0)
(0.000516808 0.000750398 0)
(7.58525e-05 0.000402184 0)
(0.0437321 -0.00116089 0)
(0.0444287 -0.00108373 0)
(0.0450973 -0.00100498 0)
(0.0457281 -0.000929623 0)
(0.0463123 -0.000861909 0)
(0.0468511 -0.000792229 0)
(0.0473484 -0.000722687 0)
(0.0478043 -0.000653281 0)
(0.0482189 -0.000585412 0)
(0.0485922 -0.000518874 0)
(0.0489248 -0.000453248 0)
(0.0492174 -0.000388683 0)
(0.0494706 -0.000324568 0)
(0.0496855 -0.000261218 0)
(0.0498627 -0.000199031 0)
(0.0500027 -0.00013876 0)
(0.0501056 -7.98871e-05 0)
(0.0501723 -2.18127e-05 0)
(0.0502041 3.57206e-05 0)
(0.050202 9.19711e-05 0)
(0.0501665 0.000146327 0)
(0.0500979 0.00019902 0)
(0.0499971 0.00025054 0)
(0.0498651 0.000301371 0)
(0.0497029 0.000351593 0)
(0.0495117 0.000401071 0)
(0.0492921 0.000449472 0)
(0.0490452 0.000496649 0)
(0.0487716 0.000542507 0)
(0.0484724 0.000586973 0)
(0.0481484 0.000630044 0)
(0.0478005 0.000671664 0)
(0.0474297 0.000711762 0)
(0.0470369 0.000750309 0)
(0.0466229 0.000786794 0)
(0.0461879 0.000821175 0)
(0.0457326 0.000854322 0)
(0.0452585 0.000886193 0)
(0.0447664 0.000915687 0)
(0.0442565 0.00094255 0)
(0.043729 0.000967376 0)
(0.0431848 0.000990924 0)
(0.0426249 0.00101366 0)
(0.0420499 0.00103568 0)
(0.0414608 0.00105702 0)
(0.0408581 0.00107764 0)
(0.0402427 0.00109717 0)
(0.0396149 0.00111529 0)
(0.0389751 0.00113238 0)
(0.0383243 0.00114877 0)
(0.0376635 0.00116338 0)
(0.0369922 0.00117602 0)
(0.0363107 0.00118801 0)
(0.03562 0.00119989 0)
(0.0349208 0.00121197 0)
(0.034214 0.00122523 0)
(0.0335015 0.00123961 0)
(0.0327844 0.00125325 0)
(0.032062 0.00126396 0)
(0.0313332 0.00127217 0)
(0.0305977 0.00127857 0)
(0.0298559 0.00128378 0)
(0.029108 0.00128821 0)
(0.0283548 0.00129214 0)
(0.0275971 0.0012951 0)
(0.0268342 0.00129585 0)
(0.0260651 0.00129545 0)
(0.0252903 0.00129541 0)
(0.0245109 0.00129657 0)
(0.0237281 0.00129847 0)
(0.0229419 0.00129972 0)
(0.0221516 0.00130124 0)
(0.0213578 0.00130559 0)
(0.0205632 0.0013141 0)
(0.0197708 0.00132316 0)
(0.018978 0.0013257 0)
(0.018181 0.00132589 0)
(0.0173821 0.0013274 0)
(0.0165815 0.00132948 0)
(0.0157812 0.00133506 0)
(0.0149824 0.00133685 0)
(0.01418 0.0013327 0)
(0.0133725 0.00132736 0)
(0.0125623 0.00132314 0)
(0.0117503 0.00131969 0)
(0.0109365 0.00131748 0)
(0.0101213 0.00131644 0)
(0.00930509 0.00131643 0)
(0.00848798 0.00131667 0)
(0.00766971 0.00131772 0)
(0.0068506 0.00132082 0)
(0.00603147 0.00132694 0)
(0.00521344 0.0013358 0)
(0.00439776 0.00134555 0)
(0.00358629 0.00135296 0)
(0.00278302 0.00135192 0)
(0.00199695 0.00132773 0)
(0.00124633 0.00124694 0)
(0.000569901 0.00103802 0)
(8.53261e-05 0.000553132 0)
(0.0452127 -0.00153731 0)
(0.0459473 -0.00143926 0)
(0.046651 -0.00133998 0)
(0.0473143 -0.00124313 0)
(0.04793 -0.00115186 0)
(0.0484989 -0.0010603 0)
(0.0490239 -0.000969213 0)
(0.0495057 -0.000878672 0)
(0.0499446 -0.000789646 0)
(0.0503406 -0.00070212 0)
(0.0506945 -0.000615838 0)
(0.0510069 -0.000530881 0)
(0.0512786 -0.000446874 0)
(0.0515103 -0.000364034 0)
(0.0517029 -0.000282695 0)
(0.0518568 -0.000203373 0)
(0.0519724 -0.000125779 0)
(0.0520504 -4.94874e-05 0)
(0.052092 2.56731e-05 0)
(0.0520982 9.919e-05 0)
(0.0520696 0.000170607 0)
(0.0520068 0.000240037 0)
(0.0519104 0.000307843 0)
(0.0517815 0.000374409 0)
(0.0516213 0.000439831 0)
(0.0514308 0.000503988 0)
(0.051211 0.000566644 0)
(0.0509628 0.000627627 0)
(0.0506871 0.000686823 0)
(0.0503847 0.000744175 0)
(0.0500567 0.000799664 0)
(0.0497039 0.000853237 0)
(0.0493272 0.000904841 0)
(0.0489276 0.000954447 0)
(0.0485059 0.00100172 0)
(0.0480624 0.00104664 0)
(0.047598 0.00108977 0)
(0.0471138 0.00113108 0)
(0.0466108 0.00116981 0)
(0.046089 0.00120576 0)
(0.0455489 0.00123939 0)
(0.0449911 0.00127133 0)
(0.0444167 0.00130203 0)
(0.0438264 0.00133161 0)
(0.0432211 0.0013601 0)
(0.0426016 0.00138749 0)
(0.0419684 0.00141352 0)
(0.0413223 0.00143797 0)
(0.0406634 0.001461 0)
(0.039993 0.00148283 0)
(0.0393115 0.00150282 0)
(0.0386188 0.00152091 0)
(0.0379153 0.00153798 0)
(0.0372017 0.00155452 0)
(0.0364788 0.00157089 0)
(0.0357475 0.00158777 0)
(0.0350093 0.00160504 0)
(0.0342653 0.00162139 0)
(0.0335152 0.00163527 0)
(0.0327582 0.00164686 0)
(0.0319942 0.00165666 0)
(0.0312233 0.00166511 0)
(0.030446 0.00167252 0)
(0.0296628 0.00167911 0)
(0.0288743 0.00168459 0)
(0.02808 0.0016883 0)
(0.0272795 0.00169096 0)
(0.026473 0.00169363 0)
(0.0256616 0.00169694 0)
(0.024846 0.00170067 0)
(0.0240266 0.00170395 0)
(0.0232028 0.00170746 0)
(0.0223753 0.00171303 0)
(0.0215464 0.00172144 0)
(0.0207184 0.00173004 0)
(0.0198894 0.00173402 0)
(0.0190566 0.00173581 0)
(0.0182212 0.00173819 0)
(0.0173837 0.00174106 0)
(0.0165459 0.00174604 0)
(0.0157087 0.00174848 0)
(0.0148687 0.00174645 0)
(0.014024 0.00174302 0)
(0.0131761 0.0017401 0)
(0.0123258 0.00173777 0)
(0.0114732 0.00173645 0)
(0.010619 0.00173614 0)
(0.00976348 0.00173667 0)
(0.00890679 0.00173751 0)
(0.00804887 0.00173908 0)
(0.00719012 0.00174237 0)
(0.00633139 0.00174818 0)
(0.00547389 0.00175608 0)
(0.00461904 0.00176405 0)
(0.0037689 0.00176815 0)
(0.00292763 0.00176052 0)
(0.00210414 0.00172292 0)
(0.00131631 0.00161434 0)
(0.000605246 0.00134442 0)
(9.15048e-05 0.000716386 0)
(0.0461587 -0.00192924 0)
(0.0469178 -0.00180931 0)
(0.0476441 -0.00168825 0)
(0.048328 -0.0015689 0)
(0.0489635 -0.00145376 0)
(0.0495513 -0.0013394 0)
(0.0500937 -0.00122597 0)
(0.0505916 -0.00111356 0)
(0.0510455 -0.0010028 0)
(0.0514556 -0.00089376 0)
(0.0518228 -0.000786304 0)
(0.0521476 -0.000680465 0)
(0.0524309 -0.000576018 0)
(0.0526733 -0.000473131 0)
(0.0528757 -0.000372076 0)
(0.0530386 -0.000273217 0)
(0.0531625 -0.000176418 0)
(0.053248 -8.14005e-05 0)
(0.0532963 1.19367e-05 0)
(0.0533083 0.000103234 0)
(0.0532847 0.00019215 0)
(0.053226 0.000278735 0)
(0.0531332 0.000363246 0)
(0.0530072 0.000445975 0)
(0.052849 0.000527018 0)
(0.05266 0.000606275 0)
(0.0524409 0.000683563 0)
(0.0521928 0.000758727 0)
(0.0519165 0.000831645 0)
(0.0516131 0.000902256 0)
(0.0512833 0.00097053 0)
(0.0509282 0.00103645 0)
(0.0505486 0.00109995 0)
(0.0501454 0.001161 0)
(0.0497194 0.00121941 0)
(0.0492712 0.00127519 0)
(0.0488015 0.00132865 0)
(0.0483115 0.00137979 0)
(0.0478019 0.00142813 0)
(0.047273 0.00147352 0)
(0.0467253 0.0015163 0)
(0.0461594 0.00155698 0)
(0.0455762 0.00159597 0)
(0.0449767 0.00163345 0)
(0.0443616 0.00166944 0)
(0.0437317 0.00170392 0)
(0.0430877 0.00173675 0)
(0.0424301 0.00176777 0)
(0.0417596 0.00179706 0)
(0.0410768 0.00182472 0)
(0.0403823 0.0018504 0)
(0.0396763 0.00187414 0)
(0.038959 0.00189657 0)
(0.0382311 0.0019181 0)
(0.0374934 0.00193908 0)
(0.0367468 0.00195995 0)
(0.0359925 0.00198063 0)
(0.0352314 0.00200018 0)
(0.0344635 0.00201753 0)
(0.0336883 0.00203269 0)
(0.0329058 0.00204603 0)
(0.0321162 0.00205789 0)
(0.0313199 0.00206851 0)
(0.0305172 0.00207805 0)
(0.0297086 0.00208637 0)
(0.028894 0.00209315 0)
(0.0280731 0.00209891 0)
(0.0272463 0.00210438 0)
(0.0264141 0.00211006 0)
(0.0255775 0.00211586 0)
(0.0247366 0.00212129 0)
(0.0238913 0.00212686 0)
(0.0230422 0.00213382 0)
(0.0221911 0.0021426 0)
(0.0213398 0.0021513 0)
(0.020487 0.00215668 0)
(0.0196306 0.00216013 0)
(0.0187712 0.00216364 0)
(0.0179096 0.0021674 0)
(0.0170469 0.0021723 0)
(0.0161841 0.0021754 0)
(0.0153188 0.0021752 0)
(0.0144495 0.00217362 0)
(0.0135769 0.00217214 0)
(0.0127017 0.00217105 0)
(0.0118242 0.00217075 0)
(0.0109448 0.00217125 0)
(0.010064 0.00217242 0)
(0.00918198 0.00217388 0)
(0.00829868 0.00217598 0)
(0.00741453 0.00217948 0)
(0.00653038 0.00218495 0)
(0.00564744 0.00219183 0)
(0.00476721 0.00219791 0)
(0.00389182 0.00219855 0)
(0.00302541 0.00218419 0)
(0.00217665 0.00213314 0)
(0.00136327 0.00199641 0)
(0.000628381 0.00166378 0)
(9.5365e-05 0.000887791 0)
(0.0467859 -0.00233106 0)
(0.0475609 -0.00218862 0)
(0.0483018 -0.00204496 0)
(0.0489988 -0.00190245 0)
(0.0496466 -0.00176325 0)
(0.0502463 -0.00162551 0)
(0.0507996 -0.0014892 0)
(0.0513074 -0.0013544 0)
(0.0517704 -0.00122152 0)
(0.0521891 -0.00109065 0)
(0.0525642 -0.000961736 0)
(0.0528965 -0.000834753 0)
(0.0531867 -0.000709577 0)
(0.0534356 -0.000586335 0)
(0.053644 -0.000465236 0)
(0.0538123 -0.000346554 0)
(0.0539411 -0.000230254 0)
(0.0540313 -0.00011618 0)
(0.0540836 -4.2953e-06 0)
(0.0540992 0.000105134 0)
(0.0540787 0.000211842 0)
(0.0540227 0.000315842 0)
(0.0539321 0.000417313 0)
(0.053808 0.00051647 0)
(0.0536513 0.000613393 0)
(0.0534632 0.000708012 0)
(0.0532447 0.000800178 0)
(0.0529968 0.000889759 0)
(0.0527203 0.000976634 0)
(0.0524162 0.00106075 0)
(0.0520854 0.00114207 0)
(0.0517289 0.00122056 0)
(0.0513474 0.00129623 0)
(0.0509419 0.001369 0)
(0.0505132 0.00143878 0)
(0.0500619 0.00150558 0)
(0.0495888 0.00156963 0)
(0.0490949 0.00163089 0)
(0.048581 0.00168906 0)
(0.0480475 0.00174408 0)
(0.0474948 0.00179619 0)
(0.0469237 0.00184583 0)
(0.046335 0.00189334 0)
(0.0457295 0.00193891 0)
(0.0451081 0.00198261 0)
(0.0444716 0.00202443 0)
(0.0438206 0.00206427 0)
(0.0431558 0.00210202 0)
(0.0424776 0.00213774 0)
(0.0417868 0.00217149 0)
(0.041084 0.00220308 0)
(0.0403693 0.00223261 0)
(0.0396431 0.00226055 0)
(0.038906 0.00228727 0)
(0.0381589 0.00231307 0)
(0.0374024 0.00233823 0)
(0.0366377 0.00236269 0)
(0.0358655 0.0023858 0)
(0.0350859 0.00240683 0)
(0.0342988 0.00242573 0)
(0.0335042 0.00244273 0)
(0.0327022 0.00245811 0)
(0.0318933 0.00247209 0)
(0.0310778 0.00248478 0)
(0.0302561 0.00249613 0)
(0.0294281 0.00250604 0)
(0.0285939 0.00251488 0)
(0.0277537 0.00252319 0)
(0.0269081 0.00253137 0)
(0.0260578 0.0025394 0)
(0.025203 0.00254705 0)
(0.0243437 0.0025547 0)
(0.0234807 0.00256318 0)
(0.0226152 0.00257272 0)
(0.0217485 0.00258196 0)
(0.0208799 0.00258874 0)
(0.0200079 0.00259384 0)
(0.0191328 0.00259862 0)
(0.0182552 0.00260341 0)
(0.0173762 0.00260864 0)
(0.0164963 0.00261251 0)
(0.0156141 0.00261389 0)
(0.0147283 0.00261403 0)
(0.0138395 0.00261398 0)
(0.0129481 0.00261415 0)
(0.0120543 0.00261487 0)
(0.0111588 0.00261621 0)
(0.0102617 0.00261805 0)
(0.00936335 0.00262016 0)
(0.00846376 0.00262278 0)
(0.00756332 0.0026265 0)
(0.00666283 0.00263168 0)
(0.00576347 0.00263757 0)
(0.00486673 0.00264177 0)
(0.00397474 0.00263897 0)
(0.00309153 0.002618 0)
(0.00222555 0.00255364 0)
(0.00139456 0.0023886 0)
(0.000643341 0.0019919 0)
(9.77168e-05 0.00106444 0)
(0.0472211 -0.00273922 0)
(0.0480063 -0.00257386 0)
(0.0487566 -0.00240699 0)
(0.0494619 -0.00224086 0)
(0.0501176 -0.00207747 0)
(0.0507247 -0.00191601 0)
(0.0512846 -0.00175645 0)
(0.0517984 -0.00159889 0)
(0.0522668 -0.00144359 0)
(0.0526905 -0.00129064 0)
(0.0530703 -0.00114003 0)
(0.0534069 -0.000991711 0)
(0.053701 -0.00084562 0)
(0.0539534 -0.000701838 0)
(0.054165 -0.000560523 0)
(0.0543362 -0.000421889 0)
(0.0544677 -0.000285958 0)
(0.0545603 -0.000152663 0)
(0.0546148 -2.20244e-05 0)
(0.0546321 0.000105747 0)
(0.0546131 0.000230431 0)
(0.0545584 0.000352015 0)
(0.0544689 0.00047061 0)
(0.0543456 0.000586373 0)
(0.0541895 0.000699354 0)
(0.0540017 0.000809513 0)
(0.0537832 0.000916724 0)
(0.0535351 0.00102088 0)
(0.0532581 0.00112186 0)
(0.0529532 0.00121963 0)
(0.0526214 0.00131415 0)
(0.0522635 0.00140541 0)
(0.0518805 0.00149338 0)
(0.0514731 0.00157805 0)
(0.0510422 0.00165936 0)
(0.0505885 0.00173732 0)
(0.0501129 0.00181208 0)
(0.0496161 0.00188365 0)
(0.049099 0.00195182 0)
(0.0485621 0.00201657 0)
(0.0480059 0.00207811 0)
(0.0474311 0.00213682 0)
(0.0468385 0.00219299 0)
(0.046229 0.0022468 0)
(0.0456033 0.00229834 0)
(0.0449622 0.00234763 0)
(0.0443065 0.00239462 0)
(0.0436367 0.00243923 0)
(0.0429534 0.0024815 0)
(0.0422571 0.00252148 0)
(0.0415486 0.00255914 0)
(0.040828 0.00259456 0)
(0.0400958 0.00262812 0)
(0.0393527 0.00266013 0)
(0.0385992 0.00269086 0)
(0.0378362 0.00272051 0)
(0.0370645 0.00274902 0)
(0.0362848 0.00277595 0)
(0.0354974 0.00280081 0)
(0.0347023 0.00282354 0)
(0.0338994 0.0028443 0)
(0.0330892 0.0028633 0)
(0.0322719 0.00288072 0)
(0.0314478 0.00289667 0)
(0.0306173 0.00291117 0)
(0.0297804 0.00292422 0)
(0.0289374 0.00293611 0)
(0.0280884 0.00294727 0)
(0.0272339 0.00295801 0)
(0.0263746 0.00296839 0)
(0.0255106 0.00297829 0)
(0.0246423 0.00298802 0)
(0.0237701 0.00299813 0)
(0.0228951 0.00300871 0)
(0.0220183 0.00301882 0)
(0.0211392 0.00302702 0)
(0.0202568 0.00303372 0)
(0.0193713 0.00303989 0)
(0.0184832 0.00304579 0)
(0.0175933 0.00305167 0)
(0.016702 0.00305642 0)
(0.0158085 0.00305923 0)
(0.0149118 0.00306091 0)
(0.0140123 0.00306225 0)
(0.0131102 0.00306362 0)
(0.0122059 0.00306535 0)
(0.0112998 0.00306752 0)
(0.0103922 0.00307006 0)
(0.00948331 0.00307281 0)
(0.00857323 0.00307595 0)
(0.00766231 0.0030799 0)
(0.00675131 0.00308481 0)
(0.00584132 0.0030898 0)
(0.0049338 0.0030922 0)
(0.00403081 0.00308608 0)
(0.00313628 0.00305869 0)
(0.00225847 0.00298122 0)
(0.00141532 0.00278773 0)
(0.000652935 0.0023259 0)
(9.91225e-05 0.00124442 0)
(0.04754 -0.00315154 0)
(0.0483318 -0.00296299 0)
(0.0490881 -0.00277247 0)
(0.0497987 -0.00258232 0)
(0.0504592 -0.00239459 0)
(0.051071 -0.00220915 0)
(0.051635 -0.00202609 0)
(0.0521524 -0.00184549 0)
(0.0526239 -0.00166753 0)
(0.0530504 -0.00149232 0)
(0.0534326 -0.0013198 0)
(0.0537713 -0.00114997 0)
(0.0540673 -0.000982788 0)
(0.0543214 -0.000818303 0)
(0.0545343 -0.000656641 0)
(0.0547067 -0.000497976 0)
(0.0548393 -0.000342356 0)
(0.0549327 -0.000189774 0)
(0.0549879 -4.02941e-05 0)
(0.0550057 0.000105911 0)
(0.0549869 0.000248652 0)
(0.0549324 0.000387893 0)
(0.054843 0.000523691 0)
(0.0547195 0.000656156 0)
(0.0545632 0.000785307 0)
(0.054375 0.000911118 0)
(0.0541559 0.00103349 0)
(0.053907 0.00115231 0)
(0.053629 0.00126752 0)
(0.053323 0.00137904 0)
(0.0529899 0.00148686 0)
(0.0526306 0.00159099 0)
(0.0522459 0.00169138 0)
(0.0518366 0.00178806 0)
(0.0514037 0.001881 0)
(0.0509479 0.0019702 0)
(0.05047 0.00205578 0)
(0.0499708 0.00213775 0)
(0.0494511 0.00221602 0)
(0.0489114 0.00229058 0)
(0.0483524 0.00236161 0)
(0.0477747 0.00242943 0)
(0.0471791 0.00249433 0)
(0.0465665 0.00255646 0)
(0.0459376 0.00261593 0)
(0.0452931 0.00267278 0)
(0.0446339 0.00272699 0)
(0.0439604 0.00277854 0)
(0.0432733 0.00282745 0)
(0.0425732 0.00287379 0)
(0.0418605 0.00291758 0)
(0.0411358 0.00295894 0)
(0.0403994 0.00299818 0)
(0.0396519 0.00303554 0)
(0.038894 0.00307127 0)
(0.0381264 0.00310553 0)
(0.0373499 0.00313827 0)
(0.036565 0.00316921 0)
(0.0357722 0.00319802 0)
(0.0349714 0.00322465 0)
(0.0341629 0.00324922 0)
(0.033347 0.00327187 0)
(0.0325238 0.00329278 0)
(0.0316939 0.00331206 0)
(0.0308574 0.00332975 0)
(0.0300145 0.00334594 0)
(0.0291655 0.00336087 0)
(0.0283106 0.00337488 0)
(0.0274502 0.00338823 0)
(0.0265848 0.003401 0)
(0.0257149 0.00341317 0)
(0.0248405 0.00342497 0)
(0.0239622 0.00343677 0)
(0.0230809 0.0034486 0)
(0.0221973 0.00345982 0)
(0.0213112 0.00346945 0)
(0.0204218 0.00347774 0)
(0.0195294 0.00348532 0)
(0.0186343 0.00349241 0)
(0.0177372 0.00349916 0)
(0.0168383 0.00350487 0)
(0.0159372 0.00350901 0)
(0.0150332 0.00351211 0)
(0.0141265 0.00351475 0)
(0.0132174 0.00351729 0)
(0.0123062 0.00352 0)
(0.0113932 0.00352299 0)
(0.0104788 0.00352622 0)
(0.00956304 0.00352959 0)
(0.00864616 0.00353324 0)
(0.00772848 0.00353742 0)
(0.00681068 0.00354211 0)
(0.00589379 0.00354627 0)
(0.00497918 0.00354698 0)
(0.00406884 0.00353769 0)
(0.0031666 0.00350409 0)
(0.00228063 0.0034137 0)
(0.00142907 0.00319165 0)
(0.000659058 0.00266384 0)
(9.99483e-05 0.0014265 0)
(0.0477887 -0.00356654 0)
(0.0485847 -0.00335465 0)
(0.0493449 -0.00314022 0)
(0.0500589 -0.00292581 0)
(0.0507225 -0.00271356 0)
(0.0513371 -0.00250393 0)
(0.0519036 -0.00229713 0)
(0.0524231 -0.00209328 0)
(0.0528962 -0.00189252 0)
(0.053324 -0.0016949 0)
(0.0537073 -0.00150036 0)
(0.0540468 -0.0013089 0)
(0.0543434 -0.00112049 0)
(0.0545978 -0.000935152 0)
(0.0548109 -0.000753005 0)
(0.0549833 -0.000574197 0)
(0.0551157 -0.0003988 0)
(0.0552089 -0.000226857 0)
(0.0552637 -5.84561e-05 0)
(0.055281 0.000106246 0)
(0.0552616 0.000267088 0)
(0.0552064 0.000424015 0)
(0.0551161 0.000577047 0)
(0.0549918 0.000726252 0)
(0.0548345 0.000871631 0)
(0.0546453 0.00101316 0)
(0.054425 0.00115075 0)
(0.0541748 0.00128432 0)
(0.0538954 0.0014138 0)
(0.0535879 0.00153916 0)
(0.0532532 0.00166036 0)
(0.0528921 0.00177741 0)
(0.0525055 0.00189032 0)
(0.0520943 0.00199908 0)
(0.0516594 0.00210369 0)
(0.0512014 0.00220419 0)
(0.0507213 0.00230065 0)
(0.0502198 0.0023931 0)
(0.0496976 0.0024815 0)
(0.0491555 0.00256589 0)
(0.048594 0.00264644 0)
(0.0480138 0.00272341 0)
(0.0474157 0.00279705 0)
(0.0468004 0.00286755 0)
(0.0461688 0.002935 0)
(0.0455217 0.00299946 0)
(0.0448596 0.00306094 0)
(0.0441832 0.00311947 0)
(0.0434931 0.00317509 0)
(0.04279 0.00322785 0)
(0.0420742 0.00327782 0)
(0.0413462 0.00332513 0)
(0.0406066 0.00337005 0)
(0.0398559 0.0034128 0)
(0.0390947 0.00345357 0)
(0.0383237 0.00349251 0)
(0.0375437 0.00352962 0)
(0.0367551 0.0035647 0)
(0.0359583 0.00359754 0)
(0.0351535 0.00362811 0)
(0.0343409 0.00365649 0)
(0.0335209 0.00368282 0)
(0.0326936 0.00370724 0)
(0.0318595 0.00372987 0)
(0.0310188 0.00375079 0)
(0.0301718 0.00377012 0)
(0.0293186 0.00378807 0)
(0.0284596 0.00380491 0)
(0.0275952 0.00382086 0)
(0.0267258 0.00383604 0)
(0.0258517 0.00385046 0)
(0.0249733 0.00386432 0)
(0.0240909 0.00387787 0)
(0.0232054 0.00389112 0)
(0.0223171 0.00390361 0)
(0.0214262 0.00391472 0)
(0.0205321 0.00392456 0)
(0.019635 0.00393355 0)
(0.0187353 0.00394189 0)
(0.0178332 0.00394963 0)
(0.0169292 0.00395638 0)
(0.016023 0.00396178 0)
(0.0151141 0.0039662 0)
(0.0142026 0.00397008 0)
(0.0132889 0.00397373 0)
(0.0123731 0.0039774 0)
(0.0114556 0.0039812 0)
(0.0105366 0.00398511 0)
(0.00961638 0.00398908 0)
(0.00869507 0.00399321 0)
(0.00777299 0.00399762 0)
(0.00685079 0.00400213 0)
(0.0059294 0.00400553 0)
(0.00501008 0.00400467 0)
(0.00409478 0.00399237 0)
(0.00318723 0.00395275 0)
(0.00229558 0.00384957 0)
(0.00143819 0.00359885 0)
(0.000662963 0.00300442 0)
(0.000100425 0.0016099 0)
(0.0479961 -0.00398322 0)
(0.0487948 -0.00374788 0)
(0.0495574 -0.00350939 0)
(0.0502736 -0.00327056 0)
(0.0509391 -0.00303371 0)
(0.0515554 -0.00279973 0)
(0.0521234 -0.002569 0)
(0.0526439 -0.00234171 0)
(0.0531179 -0.00211798 0)
(0.0535461 -0.00189782 0)
(0.0539295 -0.00168118 0)
(0.054269 -0.00146802 0)
(0.0545653 -0.00125829 0)
(0.0548192 -0.00105202 0)
(0.0550316 -0.000849307 0)
(0.0552032 -0.00065027 0)
(0.0553346 -0.000455012 0)
(0.0554267 -0.000263624 0)
(0.0554804 -7.62118e-05 0)
(0.0554965 0.000107069 0)
(0.0554757 0.00028607 0)
(0.0554191 0.000460724 0)
(0.0553274 0.000631023 0)
(0.0552017 0.000796998 0)
(0.0550429 0.000958648 0)
(0.054852 0.00111593 0)
(0.0546301 0.00126879 0)
(0.054378 0.00141715 0)
(0.0540969 0.00156096 0)
(0.0537875 0.00170019 0)
(0.0534508 0.00183481 0)
(0.0530876 0.00196483 0)
(0.052699 0.00209028 0)
(0.0522856 0.00221117 0)
(0.0518485 0.00232749 0)
(0.0513883 0.0024393 0)
(0.0509058 0.00254666 0)
(0.050402 0.00264963 0)
(0.0498775 0.0027482 0)
(0.0493329 0.00284243 0)
(0.048769 0.00293249 0)
(0.0481865 0.00301861 0)
(0.047586 0.00310102 0)
(0.0469684 0.00317989 0)
(0.0463344 0.00325534 0)
(0.0456848 0.00332744 0)
(0.0450203 0.00339625 0)
(0.0443414 0.00346178 0)
(0.0436488 0.00352412 0)
(0.042943 0.00358333 0)
(0.0422246 0.00363949 0)
(0.0414941 0.00369275 0)
(0.0407519 0.00374334 0)
(0.0399986 0.00379148 0)
(0.0392348 0.00383733 0)
(0.0384612 0.00388102 0)
(0.0376784 0.00392257 0)
(0.0368869 0.00396186 0)
(0.0360871 0.00399878 0)
(0.0352792 0.00403331 0)
(0.0344636 0.0040655 0)
(0.0336405 0.0040955 0)
(0.0328102 0.00412344 0)
(0.031973 0.00414943 0)
(0.0311293 0.0041736 0)
(0.0302793 0.00419604 0)
(0.0294231 0.00421697 0)
(0.0285612 0.00423661 0)
(0.0276939 0.00425516 0)
(0.0268216 0.00427274 0)
(0.0259447 0.00428942 0)
(0.0250635 0.00430533 0)
(0.0241783 0.00432068 0)
(0.0232898 0.00433544 0)
(0.0223984 0.00434933 0)
(0.0215041 0.00436193 0)
(0.0206067 0.00437329 0)
(0.0197064 0.0043837 0)
(0.0188034 0.00439329 0)
(0.0178981 0.00440212 0)
(0.0169906 0.00440995 0)
(0.0160808 0.00441657 0)
(0.0151685 0.00442225 0)
(0.0142538 0.00442731 0)
(0.013337 0.00443204 0)
(0.0124181 0.00443665 0)
(0.0114976 0.00444123 0)
(0.0105756 0.00444581 0)
(0.00965242 0.00445036 0)
(0.0087282 0.00445494 0)
(0.00780325 0.00445957 0)
(0.00687817 0.00446393 0)
(0.00595381 0.00446665 0)
(0.00503134 0.00446433 0)
(0.00411264 0.00444916 0)
(0.00320139 0.00440368 0)
(0.00230574 0.00428781 0)
(0.00144428 0.00400833 0)
(0.000665465 0.00334678 0)
(0.000100694 0.00179415 0)
(0.0481806 -0.00440102 0)
(0.0489809 -0.0041421 0)
(0.0497451 -0.00387942 0)
(0.0504626 -0.00361603 0)
(0.0511293 -0.00335454 0)
(0.0517466 -0.00309612 0)
(0.0523154 -0.00284131 0)
(0.0528364 -0.00259039 0)
(0.0533104 -0.0023435 0)
(0.0537385 -0.00210063 0)
(0.0541216 -0.00186174 0)
(0.0544604 -0.00162676 0)
(0.0547558 -0.00139563 0)
(0.0550087 -0.00116836 0)
(0.0552198 -0.000945027 0)
(0.0553899 -0.000725732 0)
(0.0555198 -0.00051059 0)
(0.0556103 -0.000299729 0)
(0.0556623 -9.32647e-05 0)
(0.0556765 0.000108641 0)
(0.0556539 0.000305842 0)
(0.0555954 0.000498256 0)
(0.0555017 0.000685855 0)
(0.055374 0.000868632 0)
(0.0552132 0.00104659 0)
(0.0550203 0.00121967 0)
(0.0547962 0.00138783 0)
(0.0545421 0.00155101 0)
(0.0542587 0.00170917 0)
(0.0539471 0.00186229 0)
(0.0536081 0.00201036 0)
(0.0532426 0.00215339 0)
(0.0528516 0.00229138 0)
(0.0524359 0.0024244 0)
(0.0519964 0.00255245 0)
(0.0515338 0.00267558 0)
(0.0510489 0.00279386 0)
(0.0505426 0.00290735 0)
(0.0500157 0.0030161 0)
(0.0494687 0.00312017 0)
(0.0489024 0.00321973 0)
(0.0483175 0.00331499 0)
(0.0477147 0.00340616 0)
(0.0470948 0.0034934 0)
(0.0464586 0.00357685 0)
(0.0458066 0.00365661 0)
(0.0451398 0.00373275 0)
(0.0444586 0.0038053 0)
(0.0437637 0.00387436 0)
(0.0430556 0.00394001 0)
(0.0423349 0.00400237 0)
(0.041602 0.00406158 0)
(0.0408576 0.00411783 0)
(0.0401021 0.00417135 0)
(0.0393361 0.00422229 0)
(0.0385603 0.00427076 0)
(0.0377752 0.00431679 0)
(0.0369813 0.00436034 0)
(0.0361791 0.00440135 0)
(0.0353688 0.00443983 0)
(0.0345507 0.00447585 0)
(0.0337252 0.00450952 0)
(0.0328925 0.00454096 0)
(0.032053 0.00457032 0)
(0.0312069 0.00459771 0)
(0.0303546 0.00462324 0)
(0.0294962 0.00464711 0)
(0.0286322 0.00466951 0)
(0.0277627 0.00469065 0)
(0.0268884 0.00471062 0)
(0.0260094 0.00472954 0)
(0.0251261 0.00474751 0)
(0.0242389 0.00476468 0)
(0.0233482 0.00478105 0)
(0.0224546 0.00479642 0)
(0.0215579 0.00481051 0)
(0.0206582 0.00482337 0)
(0.0197556 0.00483517 0)
(0.0188503 0.00484604 0)
(0.0179426 0.00485602 0)
(0.0170326 0.00486496 0)
(0.0161204 0.00487278 0)
(0.0152058 0.00487966 0)
(0.0142889 0.00488586 0)
(0.0133698 0.00489163 0)
(0.0124489 0.00489713 0)
(0.0115263 0.00490247 0)
(0.0106023 0.00490771 0)
(0.00967715 0.00491282 0)
(0.00875098 0.00491783 0)
(0.00782413 0.00492268 0)
(0.00689715 0.00492691 0)
(0.0059708 0.00492902 0)
(0.00504619 0.00492533 0)
(0.0041251 0.00490742 0)
(0.00321123 0.0048562 0)
(0.00231273 0.00472773 0)
(0.00144839 0.0044194 0)
(0.000667087 0.00369035 0)
(0.000100841 0.00197892 0)
(0.048354 -0.00481953 0)
(0.0491552 -0.00453702 0)
(0.0499203 -0.00425003 0)
(0.0506386 -0.00396197 0)
(0.051306 -0.00367574 0)
(0.0519238 -0.00339278 0)
(0.0524929 -0.0031138 0)
(0.053014 -0.00283914 0)
(0.0534878 -0.00256894 0)
(0.0539154 -0.00230321 0)
(0.0542976 -0.00204191 0)
(0.0546354 -0.00178494 0)
(0.0549296 -0.00153227 0)
(0.0551809 -0.00128388 0)
(0.0553904 -0.00103982 0)
(0.0555587 -0.000800212 0)
(0.0556866 -0.000565157 0)
(0.055775 -0.000334801 0)
(0.0558248 -0.000109271 0)
(0.0558368 0.000111271 0)
(0.0558119 0.000326679 0)
(0.055751 0.000536857 0)
(0.055655 0.000741759 0)
(0.055525 0.000941353 0)
(0.0553617 0.00113562 0)
(0.0551664 0.00132453 0)
(0.0549398 0.00150801 0)
(0.0546832 0.00168604 0)
(0.0543973 0.00185857 0)
(0.0540831 0.0020256 0)
(0.0537415 0.00218712 0)
(0.0533735 0.00234315 0)
(0.0529799 0.00249372 0)
(0.0525616 0.00263886 0)
(0.0521195 0.00277864 0)
(0.0516543 0.0029131 0)
(0.0511668 0.0030423 0)
(0.050658 0.00316632 0)
(0.0501285 0.00328523 0)
(0.049579 0.00339913 0)
(0.0490102 0.00350816 0)
(0.0484229 0.00361253 0)
(0.0478177 0.00371243 0)
(0.0471955 0.00380804 0)
(0.0465569 0.00389949 0)
(0.0459028 0.00398691 0)
(0.0452336 0.00407037 0)
(0.0445502 0.00414994 0)
(0.0438531 0.00422571 0)
(0.0431428 0.00429781 0)
(0.0424199 0.00436634 0)
(0.0416849 0.00443147 0)
(0.0409384 0.00449337 0)
(0.0401808 0.00455225 0)
(0.0394129 0.00460826 0)
(0.038635 0.00466152 0)
(0.0378479 0.00471207 0)
(0.037052 0.0047599 0)
(0.0362477 0.00480502 0)
(0.0354353 0.00484746 0)
(0.0346152 0.00488729 0)
(0.0337877 0.00492461 0)
(0.032953 0.00495955 0)
(0.0321115 0.00499225 0)
(0.0312636 0.00502283 0)
(0.0304094 0.00505141 0)
(0.0295492 0.00507818 0)
(0.0286835 0.00510332 0)
(0.0278124 0.00512701 0)
(0.0269364 0.00514938 0)
(0.0260558 0.00517053 0)
(0.025171 0.00519056 0)
(0.0242822 0.00520957 0)
(0.02339 0.00522759 0)
(0.0224946 0.00524448 0)
(0.0215961 0.00526008 0)
(0.0206947 0.00527441 0)
(0.0197904 0.00528761 0)
(0.0188834 0.00529976 0)
(0.0179739 0.00531092 0)
(0.0170622 0.00532101 0)
(0.0161482 0.00532999 0)
(0.0152319 0.00533803 0)
(0.0143134 0.00534533 0)
(0.0133928 0.00535208 0)
(0.0124704 0.00535845 0)
(0.0115464 0.00536455 0)
(0.010621 0.00537042 0)
(0.00969449 0.00537608 0)
(0.008767 0.0053815 0)
(0.00783888 0.00538655 0)
(0.00691061 0.00539068 0)
(0.0059829 0.00539224 0)
(0.00505677 0.00538727 0)
(0.00413399 0.00536671 0)
(0.00321821 0.00530987 0)
(0.00231764 0.00516885 0)
(0.00145123 0.00483159 0)
(0.000668155 0.00403476 0)
(0.000100914 0.00216404 0)
(0.0485238 -0.00523847 0)
(0.0493257 -0.00493233 0)
(0.0500914 -0.00462099 0)
(0.0508101 -0.00430821 0)
(0.0514777 -0.00399716 0)
(0.0520957 -0.00368955 0)
(0.0526648 -0.00338629 0)
(0.0531856 -0.00308778 0)
(0.053659 -0.00279417 0)
(0.0540858 -0.0025055 0)
(0.0544669 -0.00222168 0)
(0.0548034 -0.00194263 0)
(0.055096 -0.00166828 0)
(0.0553456 -0.00139864 0)
(0.055553 -0.00113374 0)
(0.0557191 -0.000873701 0)
(0.0558448 -0.000618642 0)
(0.0559308 -0.000368715 0)
(0.055978 -0.000124061 0)
(0.0559875 0.000115156 0)
(0.0559599 0.000348791 0)
(0.0558963 0.000576739 0)
(0.0557976 0.00079894 0)
(0.0556648 0.00101535 0)
(0.0554989 0.00122593 0)
(0.0553007 0.00143066 0)
(0.0550714 0.00162949 0)
(0.0548119 0.00182236 0)
(0.0545232 0.00200927 0)
(0.0542062 0.00219021 0)
(0.0538618 0.00236519 0)
(0.0534909 0.00253423 0)
(0.0530945 0.00269738 0)
(0.0526734 0.00285467 0)
(0.0522284 0.00300616 0)
(0.0517605 0.00315193 0)
(0.0512703 0.00329205 0)
(0.0507587 0.00342659 0)
(0.0502264 0.00355564 0)
(0.0496743 0.00367933 0)
(0.0491029 0.00379781 0)
(0.0485131 0.00391126 0)
(0.0479054 0.00401987 0)
(0.0472808 0.00412382 0)
(0.0466399 0.00422327 0)
(0.0459834 0.00431832 0)
(0.045312 0.00440908 0)
(0.0446263 0.00449565 0)
(0.0439269 0.00457814 0)
(0.0432144 0.00465666 0)
(0.0424894 0.00473135 0)
(0.0417524 0.00480237 0)
(0.0410038 0.00486989 0)
(0.0402443 0.00493411 0)
(0.0394745 0.00499518 0)
(0.0386947 0.00505321 0)
(0.0379057 0.00510829 0)
(0.0371079 0.00516043 0)
(0.0363017 0.00520966 0)
(0.0354875 0.00525604 0)
(0.0346655 0.00529966 0)
(0.0338362 0.00534062 0)
(0.0329998 0.00537903 0)
(0.0321566 0.00541504 0)
(0.031307 0.00544877 0)
(0.0304512 0.00548037 0)
(0.0295896 0.00551001 0)
(0.0287223 0.00553787 0)
(0.0278499 0.0055641 0)
(0.0269726 0.00558884 0)
(0.0260907 0.0056122 0)
(0.0252046 0.00563427 0)
(0.0243146 0.00565514 0)
(0.023421 0.00567484 0)
(0.0225243 0.00569329 0)
(0.0216244 0.0057104 0)
(0.0207216 0.0057262 0)
(0.019816 0.00574078 0)
(0.0189076 0.00575423 0)
(0.0179969 0.00576658 0)
(0.0170838 0.00577782 0)
(0.0161684 0.00578795 0)
(0.0152508 0.0057971 0)
(0.0143311 0.00580545 0)
(0.0134094 0.00581315 0)
(0.0124859 0.00582037 0)
(0.0115609 0.0058272 0)
(0.0106345 0.0058337 0)
(0.00970704 0.00583987 0)
(0.00877863 0.00584569 0)
(0.00784962 0.00585095 0)
(0.00692045 0.00585499 0)
(0.00599177 0.00585603 0)
(0.00506454 0.00584985 0)
(0.00414049 0.00582674 0)
(0.00322329 0.00576436 0)
(0.00232118 0.00561084 0)
(0.00145324 0.0052446 0)
(0.000668874 0.00437975 0)
(0.000100942 0.00234936 0)
(0.0486954 -0.00565772 0)
(0.0494975 -0.00532782 0)
(0.0502635 -0.00499209 0)
(0.0509824 -0.00465456 0)
(0.0516501 -0.00431865 0)
(0.0522681 -0.00398633 0)
(0.0528369 -0.00365867 0)
(0.0533572 -0.00333615 0)
(0.0538299 -0.00301899 0)
(0.0542556 -0.00270722 0)
(0.0546355 -0.00240077 0)
(0.0549704 -0.00209953 0)
(0.0552612 -0.00180344 0)
(0.0555087 -0.00151246 0)
(0.0557139 -0.00122665 0)
(0.0558776 -0.000946105 0)
(0.0560007 -0.00067097 0)
(0.056084 -0.000401398 0)
(0.0561285 -0.000137552 0)
(0.056135 0.000120396 0)
(0.0561045 0.000372299 0)
(0.0560379 0.000618046 0)
(0.0559362 0.00085756 0)
(0.0558004 0.00109079 0)
(0.0556314 0.0013177 0)
(0.0554302 0.00153825 0)
(0.0551978 0.00175242 0)
(0.0549352 0.00196015 0)
(0.0546434 0.00216143 0)
(0.0543232 0.00235629 0)
(0.0539758 0.00254474 0)
(0.0536018 0.00272679 0)
(0.0532023 0.0029025 0)
(0.0527782 0.00307192 0)
(0.0523302 0.00323513 0)
(0.0518592 0.00339219 0)
(0.0513661 0.00354319 0)
(0.0508516 0.00368823 0)
(0.0503165 0.00382741 0)
(0.0497615 0.00396086 0)
(0.0491874 0.00408874 0)
(0.0485949 0.00421125 0)
(0.0479846 0.00432854 0)
(0.0473575 0.00444081 0)
(0.0467141 0.00454821 0)
(0.0460552 0.00465088 0)
(0.0453814 0.00474893 0)
(0.0446934 0.00484248 0)
(0.0439917 0.00493164 0)
(0.0432771 0.00501656 0)
(0.0425499 0.00509738 0)
(0.0418107 0.00517425 0)
(0.0410602 0.00524737 0)
(0.0402987 0.00531689 0)
(0.039527 0.005383 0)
(0.0387454 0.00544581 0)
(0.0379546 0.00550541 0)
(0.037155 0.00556186 0)
(0.036347 0.0056152 0)
(0.035531 0.00566551 0)
(0.0347073 0.00571289 0)
(0.0338762 0.00575745 0)
(0.0330382 0.0057993 0)
(0.0321935 0.00583859 0)
(0.0313423 0.00587545 0)
(0.0304851 0.00591004 0)
(0.0296221 0.00594252 0)
(0.0287535 0.00597306 0)
(0.0278799 0.00600181 0)
(0.0270014 0.00602891 0)
(0.0261183 0.00605445 0)
(0.0252311 0.00607855 0)
(0.02434 0.00610128 0)
(0.0234453 0.00612268 0)
(0.0225474 0.00614271 0)
(0.0216465 0.00616135 0)
(0.0207425 0.0061786 0)
(0.0198357 0.00619456 0)
(0.0189263 0.00620929 0)
(0.0180144 0.00622284 0)
(0.0171002 0.00623523 0)
(0.0161838 0.00624648 0)
(0.0152652 0.0062567 0)
(0.0143446 0.00626605 0)
(0.013422 0.00627468 0)
(0.0124977 0.00628271 0)
(0.0115719 0.00629026 0)
(0.0106447 0.00629738 0)
(0.00971653 0.00630406 0)
(0.00878744 0.00631025 0)
(0.00785777 0.0063157 0)
(0.00692793 0.00631967 0)
(0.00599851 0.00632024 0)
(0.00507044 0.00631292 0)
(0.00414542 0.00628734 0)
(0.00322712 0.00621949 0)
(0.00232383 0.00605348 0)
(0.00145472 0.00565819 0)
(0.000669368 0.00472516 0)
(0.000100941 0.00253481 0)
(0.048872 -0.00607718 0)
(0.0496743 -0.00572342 0)
(0.0504403 -0.00536322 0)
(0.0511592 -0.00500088 0)
(0.0518268 -0.00464007 0)
(0.0524445 -0.00428301 0)
(0.0530129 -0.00393085 0)
(0.0535326 -0.00358419 0)
(0.0540043 -0.00324331 0)
(0.0544289 -0.00290826 0)
(0.0548073 -0.00257899 0)
(0.0551405 -0.0022554 0)
(0.0554292 -0.00193741 0)
(0.0556745 -0.001625 0)
(0.0558772 -0.00131821 0)
(0.0560383 -0.00101712 0)
(0.0561585 -0.000721873 0)
(0.0562389 -0.00043263 0)
(0.0562803 -0.000149566 0)
(0.0562837 0.000127141 0)
(0.05625 0.000397335 0)
(0.0561801 0.000660904 0)
(0.0560751 0.000917755 0)
(0.055936 0.00116782 0)
(0.0557636 0.00141107 0)
(0.0555591 0.00164746 0)
(0.0553233 0.00187697 0)
(0.0550574 0.00209957 0)
(0.0547622 0.00231524 0)
(0.0544387 0.002524 0)
(0.0540879 0.0027259 0)
(0.0537107 0.00292095 0)
(0.0533079 0.00310921 0)
(0.0528804 0.00329074 0)
(0.0524292 0.00346563 0)
(0.051955 0.00363396 0)
(0.0514588 0.00379583 0)
(0.0509411 0.00395135 0)
(0.050403 0.00410063 0)
(0.0498451 0.00424382 0)
(0.049268 0.00438107 0)
(0.0486727 0.00451258 0)
(0.0480598 0.00463852 0)
(0.0474299 0.00475907 0)
(0.0467839 0.00487439 0)
(0.0461225 0.00498464 0)
(0.0454462 0.00508995 0)
(0.0447558 0.00519045 0)
(0.0440518 0.00528627 0)
(0.0433348 0.00537755 0)
(0.0426054 0.00546446 0)
(0.0418642 0.00554716 0)
(0.0411115 0.00562583 0)
(0.0403481 0.00570064 0)
(0.0395744 0.00577176 0)
(0.038791 0.00583933 0)
(0.0379983 0.00590345 0)
(0.0371969 0.00596419 0)
(0.0363871 0.00602162 0)
(0.0355694 0.00607584 0)
(0.034744 0.00612695 0)
(0.0339113 0.00617508 0)
(0.0330717 0.00622034 0)
(0.0322254 0.00626288 0)
(0.0313729 0.00630284 0)
(0.0305142 0.00634039 0)
(0.0296499 0.00637568 0)
(0.0287802 0.00640887 0)
(0.0279053 0.0064401 0)
(0.0270257 0.00646952 0)
(0.0261416 0.00649723 0)
(0.0252533 0.00652334 0)
(0.0243612 0.00654793 0)
(0.0234655 0.00657105 0)
(0.0225666 0.00659268 0)
(0.0216646 0.00661283 0)
(0.0207596 0.00663153 0)
(0.0198519 0.00664885 0)
(0.0189415 0.00666486 0)
(0.0180287 0.0066796 0)
(0.0171135 0.00669312 0)
(0.0161962 0.00670546 0)
(0.0152768 0.00671673 0)
(0.0143553 0.00672706 0)
(0.013432 0.00673657 0)
(0.012507 0.00674541 0)
(0.0115806 0.00675365 0)
(0.0106529 0.00676136 0)
(0.00972407 0.00676853 0)
(0.00879444 0.00677509 0)
(0.00786424 0.00678072 0)
(0.00693386 0.00678463 0)
(0.00600386 0.00678477 0)
(0.00507511 0.00677637 0)
(0.00414931 0.00674838 0)
(0.00323012 0.00667512 0)
(0.00232587 0.00649664 0)
(0.00145584 0.00607224 0)
(0.000669714 0.00507087 0)
(0.000100919 0.00272035 0)
(0.0490561 -0.00649667 0)
(0.0498584 -0.00611904 0)
(0.0506244 -0.00573432 0)
(0.0513431 -0.00534707 0)
(0.0520104 -0.0049613 0)
(0.0526277 -0.00457941 0)
(0.0531955 -0.00420268 0)
(0.0537143 -0.00383182 0)
(0.054185 -0.00346712 0)
(0.0546082 -0.00310867 0)
(0.0549849 -0.00275642 0)
(0.0553161 -0.00241032 0)
(0.0556027 -0.00207028 0)
(0.0558455 -0.00173628 0)
(0.0560456 -0.00140838 0)
(0.0562037 -0.00108664 0)
(0.0563209 -0.000771214 0)
(0.0563981 -0.000462252 0)
(0.0564362 -0.000159936 0)
(0.0564363 0.000135553 0)
(0.0563991 0.000424058 0)
(0.0563257 0.000705459 0)
(0.0562172 0.00097966 0)
(0.0560744 0.00124658 0)
(0.0558985 0.00150618 0)
(0.0556903 0.00175842 0)
(0.055451 0.00200328 0)
(0.0551814 0.00224074 0)
(0.0548826 0.0024708 0)
(0.0545556 0.00269347 0)
(0.0542012 0.0029088 0)
(0.0538203 0.00311683 0)
(0.053414 0.00331763 0)
(0.0529831 0.00351125 0)
(0.0525284 0.0036978 0)
(0.0520509 0.00387738 0)
(0.0515512 0.0040501 0)
(0.0510303 0.00421607 0)
(0.050489 0.00437542 0)
(0.0499279 0.00452831 0)
(0.0493478 0.00467489 0)
(0.0487495 0.00481536 0)
(0.0481336 0.00494989 0)
(0.047501 0.00507868 0)
(0.0468523 0.00520189 0)
(0.0461881 0.00531969 0)
(0.0455093 0.00543222 0)
(0.0448163 0.00553964 0)
(0.0441099 0.00564208 0)
(0.0433905 0.00573969 0)
(0.0426588 0.00583266 0)
(0.0419153 0.00592115 0)
(0.0411606 0.00600534 0)
(0.0403951 0.0060854 0)
(0.0396194 0.00616151 0)
(0.0388341 0.00623381 0)
(0.0380395 0.00630242 0)
(0.0372362 0.00636743 0)
(0.0364246 0.00642893 0)
(0.0356051 0.00648703 0)
(0.034778 0.00654184 0)
(0.0339437 0.00659351 0)
(0.0331025 0.00664215 0)
(0.0322548 0.00668792 0)
(0.0314008 0.00673096 0)
(0.0305408 0.00677143 0)
(0.0296752 0.00680949 0)
(0.0288042 0.00684529 0)
(0.0279282 0.00687897 0)
(0.0270474 0.00691068 0)
(0.0261623 0.00694054 0)
(0.025273 0.00696865 0)
(0.0243799 0.00699509 0)
(0.0234833 0.00701992 0)
(0.0225834 0.00704316 0)
(0.0216804 0.00706483 0)
(0.0207745 0.00708496 0)
(0.0198659 0.00710362 0)
(0.0189546 0.00712088 0)
(0.0180409 0.0071368 0)
(0.0171249 0.00715144 0)
(0.0162068 0.00716486 0)
(0.0152866 0.00717714 0)
(0.0143644 0.00718841 0)
(0.0134405 0.00719879 0)
(0.0125149 0.0072084 0)
(0.0115879 0.00721732 0)
(0.0106597 0.00722561 0)
(0.0097304 0.00723325 0)
(0.0088003 0.00724015 0)
(0.00786965 0.00724597 0)
(0.00693881 0.00724983 0)
(0.00600829 0.00724958 0)
(0.00507897 0.00724016 0)
(0.00415251 0.00720981 0)
(0.00323257 0.00713116 0)
(0.00232752 0.00694021 0)
(0.00145672 0.00648664 0)
(0.00066996 0.00541682 0)
(0.000100884 0.00290594 0)
(0.0492491 -0.00691621 0)
(0.0500514 -0.00651463 0)
(0.0508173 -0.00610534 0)
(0.0515357 -0.00569314 0)
(0.0522026 -0.00528232 0)
(0.0528193 -0.00487547 0)
(0.0533863 -0.00447405 0)
(0.0539042 -0.00407886 0)
(0.0543736 -0.00369023 0)
(0.0547952 -0.00330828 0)
(0.0551702 -0.00293299 0)
(0.0554992 -0.00256427 0)
(0.0557834 -0.00220207 0)
(0.0560236 -0.00184637 0)
(0.0562207 -0.00149722 0)
(0.0563758 -0.00115472 0)
(0.0564898 -0.000818996 0)
(0.0565636 -0.000490219 0)
(0.0565982 -0.000168577 0)
(0.0565945 0.000145754 0)
(0.0565537 0.000452609 0)
(0.0564766 0.000751866 0)
(0.0563642 0.00104343 0)
(0.0562176 0.00132722 0)
(0.0560378 0.00160317 0)
(0.0558258 0.00187126 0)
(0.0555826 0.00213147 0)
(0.0553092 0.0023838 0)
(0.0550065 0.00262823 0)
(0.0546756 0.00286479 0)
(0.0543174 0.00309354 0)
(0.0539328 0.00331454 0)
(0.0535227 0.00352785 0)
(0.0530881 0.00373355 0)
(0.0526298 0.00393175 0)
(0.0521486 0.00412257 0)
(0.0516454 0.00430611 0)
(0.051121 0.0044825 0)
(0.0505763 0.00465188 0)
(0.0500118 0.00481441 0)
(0.0494285 0.00497027 0)
(0.0488271 0.00511965 0)
(0.0482082 0.00526275 0)
(0.0475725 0.00539974 0)
(0.0469209 0.0055308 0)
(0.046254 0.0056561 0)
(0.0455724 0.00577582 0)
(0.0448768 0.00589011 0)
(0.0441678 0.00599913 0)
(0.0434459 0.00610304 0)
(0.0427118 0.00620202 0)
(0.041966 0.00629626 0)
(0.041209 0.00638594 0)
(0.0404414 0.00647122 0)
(0.0396636 0.00655228 0)
(0.0388763 0.00662928 0)
(0.0380798 0.00670235 0)
(0.0372746 0.0067716 0)
(0.0364611 0.00683715 0)
(0.0356398 0.0068991 0)
(0.034811 0.0069576 0)
(0.033975 0.00701277 0)
(0.0331322 0.00706477 0)
(0.0322829 0.00711373 0)
(0.0314274 0.00715981 0)
(0.0305661 0.00720316 0)
(0.0296991 0.00724395 0)
(0.0288269 0.00728232 0)
(0.0279498 0.00731843 0)
(0.0270679 0.00735241 0)
(0.0261817 0.00738439 0)
(0.0252914 0.00741448 0)
(0.0243974 0.00744277 0)
(0.0234998 0.00746931 0)
(0.0225989 0.00749414 0)
(0.021695 0.0075173 0)
(0.0207882 0.00753884 0)
(0.0198786 0.00755882 0)
(0.0189665 0.00757733 0)
(0.018052 0.00759442 0)
(0.0171353 0.00761016 0)
(0.0162164 0.00762463 0)
(0.0152954 0.0076379 0)
(0.0143726 0.00765009 0)
(0.0134481 0.00766131 0)
(0.012522 0.00767167 0)
(0.0115944 0.00768125 0)
(0.0106657 0.00769009 0)
(0.009736 0.00769819 0)
(0.00880547 0.00770543 0)
(0.0078744 0.00771144 0)
(0.00694313 0.00771527 0)
(0.00601214 0.00771465 0)
(0.0050823 0.00770424 0)
(0.00415524 0.00767157 0)
(0.00323464 0.00758756 0)
(0.00232889 0.00738413 0)
(0.00145743 0.00690135 0)
(0.000670138 0.00576298 0)
(0.00010084 0.00309158 0)
(0.0494524 -0.00733595 0)
(0.0502545 -0.00691026 0)
(0.0510202 -0.00647627 0)
(0.0517383 -0.00603907 0)
(0.0524047 -0.00560314 0)
(0.0530206 -0.00517125 0)
(0.0535867 -0.00474501 0)
(0.0541034 -0.00432532 0)
(0.0545713 -0.00391257 0)
(0.0549913 -0.00350693 0)
(0.0553642 -0.00310842 0)
(0.055691 -0.00271696 0)
(0.0559726 -0.00233248 0)
(0.0562099 -0.00195499 0)
(0.056404 -0.00158452 0)
(0.0565557 -0.00122116 0)
(0.0566662 -0.00086507 0)
(0.0567364 -0.000516407 0)
(0.0567672 -0.00017537 0)
(0.0567597 0.000157858 0)
(0.0567149 0.000483108 0)
(0.0566338 0.00080025 0)
(0.0565174 0.00110919 0)
(0.0563668 0.00140985 0)
(0.0561829 0.00170217 0)
(0.0559667 0.00198611 0)
(0.0557194 0.00226167 0)
(0.0554418 0.00252884 0)
(0.0551351 0.00278763 0)
(0.0548001 0.00303808 0)
(0.0544378 0.00328024 0)
(0.0540492 0.00351419 0)
(0.0536352 0.00374 0)
(0.0531966 0.00395777 0)
(0.0527344 0.0041676 0)
(0.0522494 0.0043696 0)
(0.0517425 0.00456392 0)
(0.0512145 0.00475069 0)
(0.0506661 0.00493006 0)
(0.0500982 0.0051022 0)
(0.0495114 0.0052673 0)
(0.0489066 0.00542556 0)
(0.0482845 0.00557716 0)
(0.0476458 0.00572231 0)
(0.0469911 0.00586118 0)
(0.0463212 0.00599395 0)
(0.0456368 0.00612081 0)
(0.0449384 0.00624193 0)
(0.0442266 0.00635749 0)
(0.0435022 0.00646766 0)
(0.0427656 0.00657262 0)
(0.0420173 0.00667255 0)
(0.041258 0.00676767 0)
(0.0404881 0.00685813 0)
(0.0397081 0.00694411 0)
(0.0389187 0.00702577 0)
(0.0381201 0.00710327 0)
(0.0373129 0.00717674 0)
(0.0364976 0.0072463 0)
(0.0356744 0.00731209 0)
(0.0348438 0.00737424 0)
(0.0340061 0.0074329 0)
(0.0331616 0.00748821 0)
(0.0323108 0.00754032 0)
(0.0314538 0.0075894 0)
(0.030591 0.0076356 0)
(0.0297227 0.00767907 0)
(0.0288492 0.00771998 0)
(0.0279708 0.00775849 0)
(0.0270879 0.00779471 0)
(0.0262006 0.0078288 0)
(0.0253093 0.00786084 0)
(0.0244142 0.00789095 0)
(0.0235156 0.00791918 0)
(0.0226138 0.00794559 0)
(0.021709 0.00797023 0)
(0.0208012 0.00799316 0)
(0.0198908 0.00801446 0)
(0.0189779 0.00803419 0)
(0.0180626 0.00805244 0)
(0.017145 0.00806928 0)
(0.0162254 0.00808477 0)
(0.0153038 0.008099 0)
(0.0143803 0.00811208 0)
(0.0134552 0.00812411 0)
(0.0125285 0.0081352 0)
(0.0116005 0.00814543 0)
(0.0106714 0.00815482 0)
(0.00974118 0.00816336 0)
(0.00881023 0.00817093 0)
(0.00787875 0.00817712 0)
(0.00694705 0.00818094 0)
(0.00601562 0.00817998 0)
(0.00508528 0.00816861 0)
(0.00415766 0.00813365 0)
(0.00323646 0.00804428 0)
(0.00233008 0.00782837 0)
(0.00145803 0.00731634 0)
(0.00067027 0.00610932 0)
(0.000100791 0.00327726 0)
(0.0496665 -0.0077558 0)
(0.0504686 -0.00730586 0)
(0.0512341 -0.00684706 0)
(0.0519518 -0.00638472 0)
(0.0526175 -0.00592357 0)
(0.0532326 -0.00546656 0)
(0.0537976 -0.00501544 0)
(0.0543129 -0.00457113 0)
(0.0547792 -0.00413412 0)
(0.0551972 -0.00370463 0)
(0.0555679 -0.00328272 0)
(0.0558922 -0.00286833 0)
(0.056171 -0.00246141 0)
(0.0564052 -0.00206199 0)
(0.056596 -0.00167008 0)
(0.0567443 -0.00128579 0)
(0.0568511 -0.000909259 0)
(0.0569174 -0.000540661 0)
(0.0569442 -0.000180185 0)
(0.0569326 0.000171977 0)
(0.0568837 0.000515651 0)
(0.0567983 0.000850703 0)
(0.0566776 0.00117704 0)
(0.0565226 0.00149459 0)
(0.0563343 0.00180327 0)
(0.0561138 0.00210307 0)
(0.0558621 0.00239397 0)
(0.0555802 0.00267599 0)
(0.0552691 0.00294915 0)
(0.0549298 0.00321347 0)
(0.0545633 0.00346903 0)
(0.0541704 0.00371591 0)
(0.0537522 0.00395419 0)
(0.0533095 0.00418398 0)
(0.0528432 0.00440539 0)
(0.0523542 0.00461855 0)
(0.0518433 0.0048236 0)
(0.0513114 0.00502071 0)
(0.0507593 0.00521004 0)
(0.0501876 0.00539176 0)
(0.0495973 0.00556606 0)
(0.048989 0.00573314 0)
(0.0483635 0.00589321 0)
(0.0477214 0.00604646 0)
(0.0470636 0.00619309 0)
(0.0463906 0.00633328 0)
(0.0457031 0.00646724 0)
(0.0450018 0.00659515 0)
(0.0442872 0.00671721 0)
(0.04356 0.00683359 0)
(0.0428207 0.00694447 0)
(0.0420699 0.00705007 0)
(0.0413081 0.00715057 0)
(0.0405359 0.00724616 0)
(0.0397536 0.00733702 0)
(0.0389619 0.00742332 0)
(0.0381613 0.00750521 0)
(0.037352 0.00758287 0)
(0.0365347 0.00765643 0)
(0.0357096 0.00772602 0)
(0.0348771 0.00779179 0)
(0.0340376 0.00785388 0)
(0.0331914 0.00791247 0)
(0.0323389 0.0079677 0)
(0.0314804 0.00801974 0)
(0.0306161 0.00806874 0)
(0.0297464 0.00811487 0)
(0.0288716 0.00815829 0)
(0.027992 0.00819915 0)
(0.0271078 0.0082376 0)
(0.0262194 0.00827376 0)
(0.025327 0.00830774 0)
(0.0244309 0.00833964 0)
(0.0235313 0.00836954 0)
(0.0226286 0.00839752 0)
(0.0217228 0.00842362 0)
(0.0208141 0.00844793 0)
(0.0199028 0.00847052 0)
(0.018989 0.00849147 0)
(0.0180729 0.00851086 0)
(0.0171546 0.00852877 0)
(0.0162342 0.00854526 0)
(0.0153119 0.00856043 0)
(0.0143879 0.00857438 0)
(0.0134621 0.00858721 0)
(0.0125349 0.00859901 0)
(0.0116064 0.00860986 0)
(0.0106768 0.00861978 0)
(0.00974615 0.00862876 0)
(0.00881478 0.00863665 0)
(0.00788287 0.00864303 0)
(0.00695075 0.00864684 0)
(0.00601887 0.00864556 0)
(0.00508803 0.00863326 0)
(0.00415988 0.00859601 0)
(0.00323809 0.00850129 0)
(0.00233113 0.00827289 0)
(0.00145855 0.00773159 0)
(0.000670369 0.00645584 0)
(0.000100737 0.00346298 0)
(0.0498923 -0.00817563 0)
(0.0506943 -0.00770131 0)
(0.0514595 -0.00721762 0)
(0.0521767 -0.00673003 0)
(0.0528417 -0.00624353 0)
(0.0534558 -0.00576127 0)
(0.0540195 -0.00528512 0)
(0.0545333 -0.00481609 0)
(0.0549978 -0.00435473 0)
(0.0554137 -0.00390129 0)
(0.0557819 -0.00345585 0)
(0.0561035 -0.0030184 0)
(0.0563792 -0.00258891 0)
(0.0566102 -0.00216741 0)
(0.0567975 -0.00175392 0)
(0.056942 -0.00134857 0)
(0.0570448 -0.000951511 0)
(0.0571071 -0.0005629 0)
(0.0571297 -0.000182925 0)
(0.0571138 0.00018822 0)
(0.0570604 0.000550349 0)
(0.0569705 0.00090334 0)
(0.0568453 0.0012471 0)
(0.0566857 0.00158154 0)
(0.0564928 0.00190661 0)
(0.0562677 0.00222227 0)
(0.0560114 0.00252852 0)
(0.0557249 0.00282538 0)
(0.0554092 0.00311289 0)
(0.0550653 0.00339108 0)
(0.0546942 0.00366001 0)
(0.0542969 0.00391978 0)
(0.0538742 0.0041705 0)
(0.0534271 0.00441228 0)
(0.0529566 0.00464523 0)
(0.0524633 0.00486951 0)
(0.0519483 0.00508528 0)
(0.0514124 0.00529269 0)
(0.0508562 0.00549193 0)
(0.0502807 0.00568319 0)
(0.0496866 0.00586664 0)
(0.0490747 0.00604249 0)
(0.0484456 0.00621096 0)
(0.0478 0.00637227 0)
(0.0471388 0.00652661 0)
(0.0464625 0.00667418 0)
(0.0457719 0.00681519 0)
(0.0450675 0.00694985 0)
(0.04435 0.00707834 0)
(0.0436199 0.00720088 0)
(0.0428778 0.00731765 0)
(0.0421243 0.00742885 0)
(0.04136 0.00753468 0)
(0.0405852 0.00763536 0)
(0.0398006 0.00773106 0)
(0.0390066 0.00782196 0)
(0.0382037 0.00790824 0)
(0.0373923 0.00799005 0)
(0.0365728 0.00806756 0)
(0.0357457 0.00814091 0)
(0.0349113 0.00821026 0)
(0.0340699 0.00827575 0)
(0.033222 0.00833757 0)
(0.0323678 0.00839587 0)
(0.0315076 0.00845083 0)
(0.0306418 0.00850261 0)
(0.0297707 0.00855136 0)
(0.0288945 0.00859725 0)
(0.0280136 0.00864044 0)
(0.0271281 0.00868107 0)
(0.0262385 0.00871927 0)
(0.025345 0.00875515 0)
(0.0244478 0.00878883 0)
(0.0235472 0.00882039 0)
(0.0226434 0.0088499 0)
(0.0217366 0.00887746 0)
(0.0208271 0.00890313 0)
(0.0199149 0.008927 0)
(0.0190002 0.00894915 0)
(0.0180833 0.00896967 0)
(0.0171642 0.00898862 0)
(0.0162431 0.0090061 0)
(0.0153201 0.00902218 0)
(0.0143954 0.00903698 0)
(0.0134691 0.00905058 0)
(0.0125413 0.00906308 0)
(0.0116123 0.00907454 0)
(0.0106821 0.00908498 0)
(0.00975105 0.00909439 0)
(0.00881922 0.0091026 0)
(0.00788688 0.00910916 0)
(0.00695432 0.00911298 0)
(0.00602197 0.00911139 0)
(0.00509064 0.00909815 0)
(0.00416195 0.00905863 0)
(0.0032396 0.00895859 0)
(0.00233209 0.0087177 0)
(0.00145902 0.00814708 0)
(0.000670439 0.00680251 0)
(0.000100677 0.0036487 0)
(0.0501302 -0.00859555 0)
(0.0509321 -0.00809667 0)
(0.051697 -0.00758797 0)
(0.0524136 -0.00707506 0)
(0.0530777 -0.0065631 0)
(0.0536907 -0.00605546 0)
(0.054253 -0.00555409 0)
(0.0547651 -0.00506014 0)
(0.0552276 -0.00457424 0)
(0.0556411 -0.00409668 0)
(0.0560067 -0.00362758 0)
(0.0563253 -0.00316695 0)
(0.0565978 -0.00271478 0)
(0.0568253 -0.00227109 0)
(0.0570087 -0.00183592 0)
(0.0571493 -0.00140941 0)
(0.057248 -0.000991717 0)
(0.0573059 -0.000583004 0)
(0.057324 -0.000183457 0)
(0.0573035 0.00020673 0)
(0.0572454 0.000587365 0)
(0.0571508 0.000958328 0)
(0.0570208 0.00131952 0)
(0.0568563 0.00167088 0)
(0.0566586 0.00201234 0)
(0.0564286 0.00234386 0)
(0.0561674 0.00266546 0)
(0.0558761 0.00297715 0)
(0.0555555 0.00327898 0)
(0.0552069 0.00357101 0)
(0.054831 0.00385329 0)
(0.054429 0.00412592 0)
(0.0540017 0.00438904 0)
(0.05355 0.00464277 0)
(0.0530749 0.00488725 0)
(0.0525772 0.00512262 0)
(0.0520579 0.00534906 0)
(0.0515177 0.00556674 0)
(0.0509574 0.00577584 0)
(0.0503778 0.00597657 0)
(0.0497797 0.00616911 0)
(0.0491639 0.00635368 0)
(0.048531 0.00653051 0)
(0.0478819 0.00669981 0)
(0.0472171 0.00686181 0)
(0.0465374 0.00701672 0)
(0.0458434 0.00716474 0)
(0.0451358 0.00730608 0)
(0.0444152 0.00744097 0)
(0.0436821 0.0075696 0)
(0.0429371 0.0076922 0)
(0.0421808 0.00780896 0)
(0.0414137 0.00792009 0)
(0.0406364 0.0080258 0)
(0.0398492 0.0081263 0)
(0.0390528 0.00822177 0)
(0.0382475 0.00831239 0)
(0.0374339 0.00839831 0)
(0.0366123 0.00847973 0)
(0.0357831 0.0085568 0)
(0.0349466 0.00862968 0)
(0.0341034 0.00869853 0)
(0.0332536 0.00876354 0)
(0.0323976 0.00882488 0)
(0.0315358 0.00888272 0)
(0.0306683 0.00893723 0)
(0.0297957 0.00898856 0)
(0.0289181 0.00903689 0)
(0.0280357 0.00908237 0)
(0.027149 0.00912514 0)
(0.0262582 0.00916535 0)
(0.0253635 0.00920311 0)
(0.0244652 0.00923853 0)
(0.0235635 0.00927172 0)
(0.0226586 0.00930277 0)
(0.0217508 0.00933176 0)
(0.0208403 0.00935878 0)
(0.0199272 0.00938391 0)
(0.0190117 0.00940725 0)
(0.0180939 0.00942887 0)
(0.017174 0.00944885 0)
(0.0162521 0.00946728 0)
(0.0153284 0.00948426 0)
(0.014403 0.00949989 0)
(0.0134761 0.00951425 0)
(0.0125478 0.00952742 0)
(0.0116182 0.00953947 0)
(0.0106875 0.00955042 0)
(0.00975595 0.00956024 0)
(0.00882366 0.00956876 0)
(0.00789085 0.00957551 0)
(0.00695782 0.00957933 0)
(0.006025 0.00957743 0)
(0.00509316 0.00956328 0)
(0.00416393 0.00952151 0)
(0.00324104 0.00941615 0)
(0.00233299 0.00916277 0)
(0.00145944 0.0085628 0)
(0.000670482 0.00714931 0)
(0.000100608 0.00383442 0)
(0.0503805 -0.00901557 0)
(0.0511824 -0.008492 0)
(0.0519469 -0.00795812 0)
(0.0526629 -0.0074197 0)
(0.0533261 -0.00688217 0)
(0.0539378 -0.00634901 0)
(0.0544985 -0.00582229 0)
(0.0550087 -0.00530326 0)
(0.0554689 -0.00479263 0)
(0.0558799 -0.00429076 0)
(0.0562426 -0.0037978 0)
(0.0565579 -0.00331382 0)
(0.056827 -0.00283882 0)
(0.0570507 -0.00237281 0)
(0.0572302 -0.00191587 0)
(0.0573665 -0.00146811 0)
(0.0574607 -0.0010297 0)
(0.057514 -0.000600818 0)
(0.0575275 -0.000181639 0)
(0.0575021 0.000227642 0)
(0.0574391 0.000626834 0)
(0.0573395 0.0010158 0)
(0.0572044 0.00139446 0)
(0.0570348 0.00176274 0)
(0.056832 0.00212059 0)
(0.0565968 0.00246798 0)
(0.0563305 0.00280491 0)
(0.0560341 0.00313141 0)
(0.0557084 0.00344755 0)
(0.0553547 0.00375338 0)
(0.0549739 0.00404898 0)
(0.0545669 0.00433446 0)
(0.0541347 0.00460996 0)
(0.0536782 0.00487562 0)
(0.0531984 0.00513157 0)
(0.0526961 0.005378 0)
(0.0521722 0.00561506 0)
(0.0516275 0.00584295 0)
(0.0510628 0.00606186 0)
(0.050479 0.00627199 0)
(0.0498768 0.00647358 0)
(0.0492569 0.00666682 0)
(0.0486201 0.00685195 0)
(0.0479672 0.0070292 0)
(0.0472987 0.00719881 0)
(0.0466154 0.00736099 0)
(0.0459179 0.00751596 0)
(0.045207 0.00766394 0)
(0.0444831 0.00780516 0)
(0.0437468 0.00793984 0)
(0.0429988 0.00806821 0)
(0.0422396 0.00819048 0)
(0.0414697 0.00830686 0)
(0.0406896 0.00841757 0)
(0.0398998 0.00852282 0)
(0.0391008 0.00862281 0)
(0.0382931 0.00871771 0)
(0.0374771 0.00880771 0)
(0.0366532 0.00889299 0)
(0.0358218 0.00897372 0)
(0.0349833 0.00905009 0)
(0.034138 0.00912227 0)
(0.0332863 0.00919044 0)
(0.0324285 0.00925477 0)
(0.0315649 0.00931544 0)
(0.0306958 0.00937263 0)
(0.0298216 0.0094265 0)
(0.0289424 0.00947722 0)
(0.0280587 0.00952495 0)
(0.0271706 0.00956983 0)
(0.0262785 0.00961202 0)
(0.0253825 0.00965163 0)
(0.024483 0.00968878 0)
(0.0235802 0.00972359 0)
(0.0226743 0.00975615 0)
(0.0217654 0.00978656 0)
(0.0208539 0.00981491 0)
(0.0199398 0.00984128 0)
(0.0190234 0.00986578 0)
(0.0181047 0.00988848 0)
(0.017184 0.00990947 0)
(0.0162614 0.00992884 0)
(0.0153369 0.00994669 0)
(0.0144109 0.00996312 0)
(0.0134833 0.00997821 0)
(0.0125543 0.00999204 0)
(0.0116242 0.0100047 0)
(0.010693 0.0100161 0)
(0.00976091 0.0100263 0)
(0.00882812 0.0100351 0)
(0.00789483 0.0100421 0)
(0.00696131 0.0100459 0)
(0.00602799 0.0100437 0)
(0.00509562 0.0100286 0)
(0.00416586 0.00998464 0)
(0.00324242 0.00987397 0)
(0.00233385 0.0096081 0)
(0.00145983 0.00897873 0)
(0.000670496 0.00749622 0)
(0.000100528 0.00402011 0)
(0.0506436 -0.00943578 0)
(0.0514454 -0.00888733 0)
(0.0522096 -0.00832806 0)
(0.052925 -0.00776392 0)
(0.0535871 -0.0072006 0)
(0.0541974 -0.00664172 0)
(0.0547563 -0.0060895 0)
(0.0552644 -0.00554527 0)
(0.0557221 -0.00500979 0)
(0.0561303 -0.00448346 0)
(0.0564898 -0.00396651 0)
(0.0568018 -0.00345901 0)
(0.057067 -0.00296102 0)
(0.0572867 -0.00247255 0)
(0.0574619 -0.0019937 0)
(0.0575938 -0.00152459 0)
(0.0576834 -0.00106537 0)
(0.0577318 -0.00061624 0)
(0.0577403 -0.000177373 0)
(0.0577098 0.000251047 0)
(0.0576416 0.000668831 0)
(0.0575366 0.00107584 0)
(0.0573962 0.00147198 0)
(0.0572213 0.00185719 0)
(0.0570131 0.00223144 0)
(0.0567725 0.0025947 0)
(0.0565008 0.00294696 0)
(0.056199 0.00328827 0)
(0.0558681 0.00361869 0)
(0.055509 0.00393831 0)
(0.055123 0.00424722 0)
(0.0547108 0.00454553 0)
(0.0542735 0.00483338 0)
(0.053812 0.00511092 0)
(0.0533272 0.00537832 0)
(0.05282 0.00563574 0)
(0.0522913 0.00588337 0)
(0.051742 0.00612142 0)
(0.0511728 0.00635008 0)
(0.0505845 0.00656957 0)
(0.0499779 0.00678014 0)
(0.0493538 0.006982 0)
(0.0487129 0.00717538 0)
(0.048056 0.00736052 0)
(0.0473836 0.00753767 0)
(0.0466966 0.00770707 0)
(0.0459955 0.00786893 0)
(0.045281 0.0080235 0)
(0.0445537 0.008171 0)
(0.0438142 0.00831168 0)
(0.043063 0.00844577 0)
(0.0423007 0.0085735 0)
(0.0415278 0.00869508 0)
(0.0407449 0.00881074 0)
(0.0399524 0.00892068 0)
(0.0391507 0.00902513 0)
(0.0383405 0.00912427 0)
(0.037522 0.00921829 0)
(0.0366958 0.00930738 0)
(0.0358621 0.00939174 0)
(0.0350214 0.00947156 0)
(0.034174 0.00954702 0)
(0.0333203 0.0096183 0)
(0.0324605 0.00968558 0)
(0.0315951 0.00974904 0)
(0.0307243 0.00980887 0)
(0.0298484 0.00986523 0)
(0.0289677 0.0099183 0)
(0.0280824 0.00996823 0)
(0.0271929 0.0100152 0)
(0.0262994 0.0100593 0)
(0.0254022 0.0101008 0)
(0.0245015 0.0101396 0)
(0.0235975 0.010176 0)
(0.0226904 0.0102101 0)
(0.0217805 0.0102419 0)
(0.0208679 0.0102715 0)
(0.0199529 0.0102991 0)
(0.0190355 0.0103248 0)
(0.018116 0.0103485 0)
(0.0171944 0.0103705 0)
(0.0162709 0.0103908 0)
(0.0153457 0.0104095 0)
(0.014419 0.0104267 0)
(0.0134907 0.0104425 0)
(0.0125611 0.010457 0)
(0.0116304 0.0104701 0)
(0.0106986 0.010482 0)
(0.00976598 0.0104927 0)
(0.00883266 0.0105018 0)
(0.00789885 0.0105089 0)
(0.00696481 0.0105127 0)
(0.00603096 0.0105102 0)
(0.00509806 0.0104943 0)
(0.00416775 0.010448 0)
(0.00324378 0.0103321 0)
(0.00233468 0.0100537 0)
(0.00146018 0.00939484 0)
(0.00067048 0.00784322 0)
(0.000100437 0.00420576 0)
(0.0509197 -0.00985624 0)
(0.0517214 -0.00928264 0)
(0.0524853 -0.00869778 0)
(0.0532 -0.00810776 0)
(0.0538609 -0.00751843 0)
(0.0544697 -0.00693361 0)
(0.0550267 -0.00635567 0)
(0.0555324 -0.00578603 0)
(0.0559875 -0.00522552 0)
(0.0563926 -0.0046746 0)
(0.0567487 -0.00413351 0)
(0.0570569 -0.00360237 0)
(0.0573182 -0.00308125 0)
(0.0575336 -0.0025702 0)
(0.0577043 -0.00206933 0)
(0.0578314 -0.00157874 0)
(0.057916 -0.00109862 0)
(0.0579593 -0.000629159 0)
(0.0579625 -0.000170538 0)
(0.0579267 0.000277065 0)
(0.0578529 0.000713478 0)
(0.0577425 0.00113856 0)
(0.0575964 0.0015522 0)
(0.0574159 0.00195436 0)
(0.057202 0.002345 0)
(0.0569558 0.00272412 0)
(0.0566785 0.00309172 0)
(0.056371 0.00344783 0)
(0.0560345 0.00379253 0)
(0.0556699 0.00412593 0)
(0.0552783 0.00444812 0)
(0.0548607 0.00475922 0)
(0.0544181 0.00505939 0)
(0.0539513 0.00534877 0)
(0.0534614 0.00562755 0)
(0.0529491 0.00589592 0)
(0.0524154 0.00615408 0)
(0.0518612 0.00640223 0)
(0.0512872 0.00664059 0)
(0.0506943 0.0068694 0)
(0.0500832 0.00708889 0)
(0.0494547 0.0072993 0)
(0.0488095 0.00750086 0)
(0.0481484 0.00769384 0)
(0.047472 0.00787847 0)
(0.0467811 0.00805502 0)
(0.0460762 0.00822373 0)
(0.045358 0.00838483 0)
(0.0446272 0.00853856 0)
(0.0438842 0.00868519 0)
(0.0431297 0.00882495 0)
(0.0423642 0.00895808 0)
(0.0415883 0.00908481 0)
(0.0408023 0.00920535 0)
(0.040007 0.00931994 0)
(0.0392026 0.00942878 0)
(0.0383897 0.00953211 0)
(0.0375686 0.0096301 0)
(0.0367399 0.00972297 0)
(0.0359039 0.00981091 0)
(0.0350609 0.00989413 0)
(0.0342113 0.00997282 0)
(0.0333555 0.0100472 0)
(0.0324938 0.0101173 0)
(0.0316265 0.0101836 0)
(0.0307539 0.010246 0)
(0.0298762 0.0103048 0)
(0.0289939 0.0103602 0)
(0.0281071 0.0104123 0)
(0.0272161 0.0104613 0)
(0.0263212 0.0105073 0)
(0.0254226 0.0105505 0)
(0.0245206 0.0105911 0)
(0.0236154 0.0106291 0)
(0.0227072 0.0106646 0)
(0.0217961 0.0106978 0)
(0.0208825 0.0107287 0)
(0.0199664 0.0107575 0)
(0.019048 0.0107842 0)
(0.0181276 0.010809 0)
(0.0172051 0.010832 0)
(0.0162808 0.0108532 0)
(0.0153548 0.0108727 0)
(0.0144273 0.0108906 0)
(0.0134984 0.0109071 0)
(0.0125681 0.0109222 0)
(0.0116367 0.0109359 0)
(0.0107044 0.0109483 0)
(0.00977116 0.0109593 0)
(0.00883728 0.0109687 0)
(0.00790293 0.010976 0)
(0.00696835 0.0109798 0)
(0.00603394 0.010977 0)
(0.00510049 0.0109602 0)
(0.00416963 0.0109117 0)
(0.00324511 0.0107905 0)
(0.00233548 0.0104995 0)
(0.0014605 0.00981114 0)
(0.000670438 0.0081903 0)
(0.000100339 0.00439139 0)
(0.051209 -0.0102768 0)
(0.0520108 -0.00967779 0)
(0.0527743 -0.00906713 0)
(0.0534882 -0.00845103 0)
(0.0541479 -0.00783553 0)
(0.054755 -0.00722462 0)
(0.0553099 -0.00662077 0)
(0.0558131 -0.00602551 0)
(0.0562652 -0.00543975 0)
(0.056667 -0.00486403 0)
(0.0570195 -0.00429863 0)
(0.0573237 -0.00374368 0)
(0.0575807 -0.0031993 0)
(0.0577915 -0.00266556 0)
(0.0579574 -0.00214256 0)
(0.0580794 -0.00163041 0)
(0.0581588 -0.0011293 0)
(0.0581967 -0.000639434 0)
(0.0581944 -0.000160995 0)
(0.0581529 0.000305844 0)
(0.0580734 0.00076092 0)
(0.0579571 0.0012041 0)
(0.0578051 0.00163527 0)
(0.0576187 0.00205439 0)
(0.0573989 0.00246144 0)
(0.0571467 0.00285641 0)
(0.0568635 0.00323934 0)
(0.0565501 0.00361024 0)
(0.0562077 0.00396921 0)
(0.0558374 0.00431635 0)
(0.0554401 0.00465178 0)
(0.0550168 0.00497564 0)
(0.0545686 0.00528807 0)
(0.0540963 0.00558925 0)
(0.0536009 0.00587937 0)
(0.0530834 0.00615864 0)
(0.0525445 0.00642727 0)
(0.0519852 0.00668549 0)
(0.0514063 0.0069335 0)
(0.0508085 0.00717156 0)
(0.0501927 0.0073999 0)
(0.0495596 0.00761879 0)
(0.04891 0.00782848 0)
(0.0482445 0.00802922 0)
(0.0475639 0.00822128 0)
(0.0468689 0.00840492 0)
(0.0461601 0.00858041 0)
(0.0454381 0.008748 0)
(0.0447035 0.00890792 0)
(0.043957 0.00906044 0)
(0.043199 0.00920581 0)
(0.0424302 0.00934428 0)
(0.041651 0.00947608 0)
(0.040862 0.00960145 0)
(0.0400637 0.00972061 0)
(0.0392564 0.00983381 0)
(0.0384407 0.00994127 0)
(0.037617 0.0100432 0)
(0.0367858 0.0101398 0)
(0.0359473 0.0102313 0)
(0.0351019 0.0103178 0)
(0.0342501 0.0103997 0)
(0.0333921 0.0104771 0)
(0.0325284 0.0105501 0)
(0.0316591 0.010619 0)
(0.0307845 0.010684 0)
(0.0299051 0.0107452 0)
(0.0290211 0.0108028 0)
(0.0281326 0.0108571 0)
(0.0272401 0.0109081 0)
(0.0263438 0.010956 0)
(0.0254438 0.011001 0)
(0.0245404 0.0110432 0)
(0.0236339 0.0110827 0)
(0.0227245 0.0111197 0)
(0.0218123 0.0111542 0)
(0.0208975 0.0111864 0)
(0.0199804 0.0112164 0)
(0.019061 0.0112442 0)
(0.0181396 0.01127 0)
(0.0172162 0.0112939 0)
(0.0162911 0.011316 0)
(0.0153643 0.0113363 0)
(0.014436 0.011355 0)
(0.0135063 0.0113721 0)
(0.0125753 0.0113878 0)
(0.0116433 0.011402 0)
(0.0107103 0.0114148 0)
(0.00977647 0.0114262 0)
(0.008842 0.0114359 0)
(0.00790707 0.0114433 0)
(0.00697192 0.0114472 0)
(0.00603695 0.0114441 0)
(0.00510293 0.0114264 0)
(0.00417151 0.0113757 0)
(0.00324643 0.0112491 0)
(0.00233625 0.0109456 0)
(0.00146079 0.0102276 0)
(0.000670373 0.00853749 0)
(0.000100236 0.00457699 0)
(0.0515117 -0.0106974 0)
(0.0523136 -0.0100728 0)
(0.0530767 -0.00943617 0)
(0.0537898 -0.00879373 0)
(0.0544482 -0.00815182 0)
(0.0550534 -0.0075146 0)
(0.055606 -0.00688466 0)
(0.0561065 -0.0062636 0)
(0.0565554 -0.00565242 0)
(0.0569537 -0.00505172 0)
(0.0573022 -0.00446182 0)
(0.0576022 -0.00388291 0)
(0.0578546 -0.0033151 0)
(0.0580606 -0.00275852 0)
(0.0582213 -0.00221327 0)
(0.058338 -0.00167946 0)
(0.0584119 -0.00115729 0)
(0.0584441 -0.000646935 0)
(0.0584359 -0.00014861 0)
(0.0583885 0.000337519 0)
(0.0583029 0.000811301 0)
(0.0581805 0.00127261 0)
(0.0580224 0.00172134 0)
(0.0578297 0.00215744 0)
(0.0576037 0.0025809 0)
(0.0573454 0.00299174 0)
(0.0570559 0.00338997 0)
(0.0567364 0.00377564 0)
(0.0563879 0.00414885 0)
(0.0560115 0.0045097 0)
(0.0556082 0.00485833 0)
(0.055179 0.00519489 0)
(0.0547249 0.00551954 0)
(0.0542469 0.00583249 0)
(0.0537459 0.00613391 0)
(0.0532229 0.00642404 0)
(0.0526786 0.00670309 0)
(0.052114 0.0069713 0)
(0.0515299 0.0072289 0)
(0.0509271 0.00747613 0)
(0.0503064 0.00771327 0)
(0.0496685 0.00794057 0)
(0.0490142 0.00815831 0)
(0.0483442 0.00836677 0)
(0.0476593 0.00856619 0)
(0.04696 0.00875687 0)
(0.0462471 0.00893908 0)
(0.0455211 0.00911308 0)
(0.0447827 0.00927913 0)
(0.0440324 0.00943747 0)
(0.0432709 0.00958839 0)
(0.0424986 0.00973212 0)
(0.0417161 0.00986893 0)
(0.0409239 0.00999907 0)
(0.0401224 0.0101228 0)
(0.0393122 0.0102403 0)
(0.0384937 0.0103518 0)
(0.0376672 0.0104576 0)
(0.0368333 0.0105579 0)
(0.0359922 0.0106528 0)
(0.0351445 0.0107427 0)
(0.0342903 0.0108277 0)
(0.0334301 0.010908 0)
(0.0325642 0.0109839 0)
(0.0316928 0.0110554 0)
(0.0308163 0.0111229 0)
(0.0299351 0.0111865 0)
(0.0290492 0.0112464 0)
(0.0281591 0.0113027 0)
(0.027265 0.0113557 0)
(0.0263671 0.0114055 0)
(0.0254657 0.0114522 0)
(0.024561 0.011496 0)
(0.0236531 0.011537 0)
(0.0227424 0.0115754 0)
(0.021829 0.0116113 0)
(0.0209131 0.0116447 0)
(0.0199949 0.0116758 0)
(0.0190745 0.0117047 0)
(0.018152 0.0117315 0)
(0.0172277 0.0117563 0)
(0.0163016 0.0117792 0)
(0.015374 0.0118003 0)
(0.0144449 0.0118197 0)
(0.0135144 0.0118375 0)
(0.0125827 0.0118537 0)
(0.01165 0.0118684 0)
(0.0107164 0.0118817 0)
(0.00978192 0.0118934 0)
(0.00884684 0.0119034 0)
(0.0079113 0.011911 0)
(0.00697555 0.0119148 0)
(0.00603999 0.0119115 0)
(0.00510539 0.0118929 0)
(0.00417339 0.01184 0)
(0.00324772 0.0117081 0)
(0.00233698 0.0113919 0)
(0.00146104 0.0106443 0)
(0.000670293 0.00888479 0)
(0.000100132 0.00476257 0)
(0.0518281 -0.0111183 0)
(0.0526299 -0.0104679 0)
(0.0533927 -0.00980502 0)
(0.0541049 -0.00913599 0)
(0.0547619 -0.00846738 0)
(0.0553652 -0.00780355 0)
(0.0559153 -0.00714723 0)
(0.0564128 -0.00650013 0)
(0.0568584 -0.00586332 0)
(0.0572528 -0.00523746 0)
(0.0575972 -0.0046229 0)
(0.0578926 -0.00401986 0)
(0.0581401 -0.00342849 0)
(0.0583409 -0.00284893 0)
(0.0584963 -0.0022813 0)
(0.0586073 -0.00172572 0)
(0.0586754 -0.00118238 0)
(0.0587016 -0.000651466 0)
(0.0586872 -0.000133187 0)
(0.0586335 0.000372283 0)
(0.0585417 0.000864814 0)
(0.0584128 0.00134428 0)
(0.0582482 0.00181059 0)
(0.0580491 0.00226369 0)
(0.0578166 0.00270357 0)
(0.0575517 0.00313024 0)
(0.0572558 0.00354376 0)
(0.0569298 0.00394418 0)
(0.056575 0.0043316 0)
(0.0561922 0.00470613 0)
(0.0557827 0.00506792 0)
(0.0553473 0.00541714 0)
(0.0548872 0.00575399 0)
(0.0544032 0.00607864 0)
(0.0538964 0.00639132 0)
(0.0533676 0.00669225 0)
(0.0528177 0.00698165 0)
(0.0522476 0.00725978 0)
(0.0516581 0.00752689 0)
(0.05105 0.00778323 0)
(0.0504242 0.00802909 0)
(0.0497814 0.00826475 0)
(0.0491223 0.00849049 0)
(0.0484476 0.00870659 0)
(0.0477581 0.00891332 0)
(0.0470544 0.00911097 0)
(0.0463373 0.00929983 0)
(0.0456071 0.00948016 0)
(0.0448647 0.00965225 0)
(0.0441106 0.00981636 0)
(0.0433454 0.00997274 0)
(0.0425695 0.0101217 0)
(0.0417835 0.0102634 0)
(0.040988 0.0103983 0)
(0.0401833 0.0105265 0)
(0.03937 0.0106482 0)
(0.0385485 0.0107638 0)
(0.0377191 0.0108734 0)
(0.0368825 0.0109773 0)
(0.0360388 0.0110757 0)
(0.0351885 0.0111688 0)
(0.0343319 0.0112569 0)
(0.0334694 0.0113401 0)
(0.0326012 0.0114187 0)
(0.0317277 0.0114929 0)
(0.0308493 0.0115628 0)
(0.0299661 0.0116287 0)
(0.0290784 0.0116908 0)
(0.0281866 0.0117492 0)
(0.0272908 0.0118041 0)
(0.0263913 0.0118557 0)
(0.0254884 0.0119041 0)
(0.0245822 0.0119495 0)
(0.023673 0.011992 0)
(0.022761 0.0120318 0)
(0.0218463 0.0120689 0)
(0.0209292 0.0121035 0)
(0.0200098 0.0121357 0)
(0.0190883 0.0121657 0)
(0.0181649 0.0121934 0)
(0.0172396 0.0122191 0)
(0.0163126 0.0122429 0)
(0.0153841 0.0122647 0)
(0.0144541 0.0122848 0)
(0.0135228 0.0123032 0)
(0.0125904 0.01232 0)
(0.011657 0.0123352 0)
(0.0107226 0.0123489 0)
(0.00978751 0.012361 0)
(0.00885178 0.0123712 0)
(0.00791561 0.012379 0)
(0.00697924 0.0123828 0)
(0.00604308 0.0123792 0)
(0.00510787 0.0123597 0)
(0.00417526 0.0123046 0)
(0.00324899 0.0121673 0)
(0.00233769 0.0118385 0)
(0.00146128 0.0110612 0)
(0.000670201 0.0092322 0)
(0.000100024 0.00494812 0)
(0.0521581 -0.0115393 0)
(0.0529601 -0.010863 0)
(0.0537225 -0.0101736 0)
(0.0544339 -0.00947764 0)
(0.0550893 -0.00878207 0)
(0.0556905 -0.00809138 0)
(0.056238 -0.00740841 0)
(0.0567323 -0.00673499 0)
(0.0571742 -0.0060723 0)
(0.0575645 -0.00542105 0)
(0.0579044 -0.00478164 0)
(0.058195 -0.00415431 0)
(0.0584373 -0.00353923 0)
(0.0586327 -0.00293655 0)
(0.0587823 -0.00234641 0)
(0.0588874 -0.00176896 0)
(0.0589493 -0.00120436 0)
(0.0589692 -0.000652811 0)
(0.0589484 -0.000114508 0)
(0.0588882 0.000410361 0)
(0.0587896 0.000921671 0)
(0.0586541 0.00141931 0)
(0.0584827 0.00190321 0)
(0.0582768 0.0023733 0)
(0.0580375 0.00282959 0)
(0.0577659 0.0032721 0)
(0.0574632 0.00370088 0)
(0.0571305 0.00411602 0)
(0.056769 0.00451761 0)
(0.0563797 0.0049058 0)
(0.0559636 0.00528072 0)
(0.0555219 0.00564258 0)
(0.0550554 0.00599155 0)
(0.0545652 0.00632786 0)
(0.0540523 0.00665173 0)
(0.0535175 0.00696338 0)
(0.0529617 0.00726306 0)
(0.0523859 0.00755104 0)
(0.0517908 0.0078276 0)
(0.0511773 0.008093 0)
(0.0505462 0.00834752 0)
(0.0498982 0.00859146 0)
(0.0492341 0.00882513 0)
(0.0485546 0.0090488 0)
(0.0478604 0.00926277 0)
(0.0471522 0.00946731 0)
(0.0464306 0.00966273 0)
(0.0456962 0.00984932 0)
(0.0449496 0.0100274 0)
(0.0441915 0.0101972 0)
(0.0434224 0.010359 0)
(0.0426428 0.010513 0)
(0.0418533 0.0106597 0)
(0.0410542 0.0107992 0)
(0.0402462 0.0109317 0)
(0.0394297 0.0110577 0)
(0.0386051 0.0111772 0)
(0.0377728 0.0112906 0)
(0.0369333 0.011398 0)
(0.0360869 0.0114998 0)
(0.035234 0.0115961 0)
(0.0343749 0.0116872 0)
(0.03351 0.0117733 0)
(0.0326395 0.0118546 0)
(0.0317639 0.0119314 0)
(0.0308833 0.0120037 0)
(0.0299981 0.0120719 0)
(0.0291086 0.0121361 0)
(0.0282149 0.0121965 0)
(0.0273174 0.0122533 0)
(0.0264163 0.0123067 0)
(0.0255118 0.0123567 0)
(0.0246041 0.0124037 0)
(0.0236935 0.0124476 0)
(0.0227801 0.0124887 0)
(0.0218642 0.0125271 0)
(0.0209458 0.0125629 0)
(0.0200253 0.0125962 0)
(0.0191027 0.0126272 0)
(0.0181781 0.0126559 0)
(0.0172518 0.0126824 0)
(0.0163239 0.012707 0)
(0.0153944 0.0127296 0)
(0.0144636 0.0127503 0)
(0.0135315 0.0127693 0)
(0.0125983 0.0127866 0)
(0.0116641 0.0128023 0)
(0.010729 0.0128164 0)
(0.00979324 0.0128289 0)
(0.00885684 0.0128394 0)
(0.00792001 0.0128473 0)
(0.006983 0.0128511 0)
(0.0060462 0.0128472 0)
(0.00511036 0.0128269 0)
(0.00417712 0.0127695 0)
(0.00325024 0.0126268 0)
(0.00233837 0.0122853 0)
(0.0014615 0.0114784 0)
(0.000670095 0.00957972 0)
(9.99111e-05 0.00513362 0)
(0.0525021 -0.0119606 0)
(0.0533041 -0.011258 0)
(0.0540663 -0.0105417 0)
(0.0547767 -0.00981861 0)
(0.0554306 -0.00909575 0)
(0.0560296 -0.00837791 0)
(0.0565742 -0.00766805 0)
(0.0570651 -0.00696809 0)
(0.0575031 -0.0062793 0)
(0.057889 -0.00560243 0)
(0.0582241 -0.00493797 0)
(0.0585095 -0.00428617 0)
(0.0587464 -0.00364722 0)
(0.058936 -0.00302128 0)
(0.0590795 -0.00240851 0)
(0.0591784 -0.00180908 0)
(0.0592339 -0.00122314 0)
(0.0592471 -0.000650867 0)
(0.0592195 -9.24751e-05 0)
(0.0591524 0.000451856 0)
(0.0590469 0.000981982 0)
(0.0589043 0.00149782 0)
(0.0587259 0.00199931 0)
(0.0585129 0.0024864 0)
(0.0582665 0.0029591 0)
(0.0579878 0.00341744 0)
(0.0576781 0.00386147 0)
(0.0573384 0.0042913 0)
(0.05697 0.00470705 0)
(0.0565738 0.00510885 0)
(0.0561509 0.00549688 0)
(0.0557025 0.0058713 0)
(0.0552295 0.00623235 0)
(0.0547329 0.00658025 0)
(0.0542136 0.00691523 0)
(0.0536726 0.00723754 0)
(0.0531108 0.00754743 0)
(0.052529 0.00784521 0)
(0.0519281 0.00813114 0)
(0.051309 0.00840553 0)
(0.0506724 0.00866866 0)
(0.0500191 0.00892082 0)
(0.0493498 0.00916232 0)
(0.0486652 0.00939348 0)
(0.0479661 0.0096146 0)
(0.0472532 0.00982596 0)
(0.046527 0.0100279 0)
(0.0457882 0.0102206 0)
(0.0450373 0.0104046 0)
(0.0442751 0.01058 0)
(0.043502 0.0107471 0)
(0.0427185 0.0109063 0)
(0.0419253 0.0110577 0)
(0.0411227 0.0112018 0)
(0.0403112 0.0113387 0)
(0.0394914 0.0114688 0)
(0.0386636 0.0115922 0)
(0.0378283 0.0117093 0)
(0.0369858 0.0118202 0)
(0.0361366 0.0119253 0)
(0.0352809 0.0120248 0)
(0.0344193 0.0121189 0)
(0.0335519 0.0122078 0)
(0.0326791 0.0122917 0)
(0.0318012 0.012371 0)
(0.0309184 0.0124457 0)
(0.0300312 0.0125161 0)
(0.0291397 0.0125824 0)
(0.0282441 0.0126448 0)
(0.0273449 0.0127034 0)
(0.026442 0.0127585 0)
(0.0255359 0.0128102 0)
(0.0246267 0.0128586 0)
(0.0237146 0.012904 0)
(0.0227999 0.0129464 0)
(0.0218826 0.012986 0)
(0.020963 0.0130229 0)
(0.0200412 0.0130573 0)
(0.0191174 0.0130892 0)
(0.0181918 0.0131188 0)
(0.0172644 0.0131462 0)
(0.0163355 0.0131715 0)
(0.0154051 0.0131948 0)
(0.0144734 0.0132162 0)
(0.0135404 0.0132358 0)
(0.0126064 0.0132537 0)
(0.0116715 0.0132698 0)
(0.0107356 0.0132843 0)
(0.00979911 0.0132971 0)
(0.00886201 0.0133078 0)
(0.0079245 0.0133159 0)
(0.00698682 0.0133197 0)
(0.00604937 0.0133155 0)
(0.00511287 0.0132943 0)
(0.00417899 0.0132346 0)
(0.00325148 0.0130866 0)
(0.00233905 0.0127324 0)
(0.0014617 0.0118957 0)
(0.000669971 0.00992732 0)
(9.97887e-05 0.00531905 0)
(0.05286 -0.012382 0)
(0.0536623 -0.011653 0)
(0.0544242 -0.0109096 0)
(0.0551337 -0.010159 0)
(0.0557859 -0.00940848 0)
(0.0563825 -0.00866312 0)
(0.0569241 -0.00792607 0)
(0.0574114 -0.00719931 0)
(0.0578451 -0.00648416 0)
(0.0582264 -0.00578147 0)
(0.0585564 -0.00509175 0)
(0.0588364 -0.00441532 0)
(0.0590674 -0.00375234 0)
(0.0592509 -0.00310301 0)
(0.0593881 -0.00246749 0)
(0.0594804 -0.00184597 0)
(0.059529 -0.00123859 0)
(0.0595354 -0.000645535 0)
(0.0595007 -6.69965e-05 0)
(0.0594263 0.000496839 0)
(0.0593135 0.00104583 0)
(0.0591636 0.0015799 0)
(0.0589778 0.002099 0)
(0.0587574 0.0026031 0)
(0.0585036 0.00309221 0)
(0.0582175 0.00356637 0)
(0.0579005 0.00402565 0)
(0.0575535 0.00447015 0)
(0.0571779 0.00490001 0)
(0.0567746 0.00531539 0)
(0.0563447 0.00571645 0)
(0.0558893 0.0061034 0)
(0.0554095 0.00647646 0)
(0.0549061 0.00683587 0)
(0.0543803 0.0071819 0)
(0.0538328 0.00751481 0)
(0.0532647 0.00783487 0)
(0.0526768 0.00814238 0)
(0.05207 0.00843763 0)
(0.051445 0.00872093 0)
(0.0508027 0.00899257 0)
(0.0501438 0.00925287 0)
(0.0494692 0.00950213 0)
(0.0487794 0.00974069 0)
(0.0480753 0.00996887 0)
(0.0473574 0.010187 0)
(0.0466264 0.0103953 0)
(0.0458831 0.0105942 0)
(0.0451278 0.0107839 0)
(0.0443613 0.0109649 0)
(0.043584 0.0111373 0)
(0.0427966 0.0113014 0)
(0.0419995 0.0114576 0)
(0.0411932 0.0116062 0)
(0.0403782 0.0117474 0)
(0.039555 0.0118815 0)
(0.0387239 0.0120088 0)
(0.0378854 0.0121295 0)
(0.0370399 0.0122439 0)
(0.0361878 0.0123522 0)
(0.0353294 0.0124548 0)
(0.034465 0.0125518 0)
(0.0335951 0.0126434 0)
(0.0327198 0.01273 0)
(0.0318396 0.0128117 0)
(0.0309546 0.0128887 0)
(0.0300653 0.0129613 0)
(0.0291717 0.0130297 0)
(0.0282743 0.013094 0)
(0.0273731 0.0131544 0)
(0.0264686 0.0132112 0)
(0.0255608 0.0132644 0)
(0.02465 0.0133143 0)
(0.0237364 0.0133611 0)
(0.0228202 0.0134048 0)
(0.0219015 0.0134455 0)
(0.0209806 0.0134836 0)
(0.0200576 0.013519 0)
(0.0191326 0.0135518 0)
(0.0182059 0.0135823 0)
(0.0172774 0.0136105 0)
(0.0163475 0.0136366 0)
(0.0154161 0.0136606 0)
(0.0144834 0.0136826 0)
(0.0135496 0.0137027 0)
(0.0126148 0.0137211 0)
(0.011679 0.0137377 0)
(0.0107424 0.0137526 0)
(0.00980512 0.0137656 0)
(0.00886729 0.0137766 0)
(0.00792907 0.0137848 0)
(0.00699071 0.0137887 0)
(0.00605257 0.0137842 0)
(0.0051154 0.013762 0)
(0.00418085 0.0137001 0)
(0.00325272 0.0135466 0)
(0.00233971 0.0131798 0)
(0.00146189 0.0123132 0)
(0.000669822 0.010275 0)
(9.96549e-05 0.0055044 0)
(0.0532321 -0.0128037 0)
(0.0540346 -0.0120481 0)
(0.0547963 -0.0112773 0)
(0.0555049 -0.0104987 0)
(0.0561553 -0.00972021 0)
(0.0567494 -0.008947 0)
(0.0572878 -0.0081824 0)
(0.0577712 -0.00742853 0)
(0.0582005 -0.00668676 0)
(0.0585769 -0.005958 0)
(0.0589015 -0.00524282 0)
(0.0591756 -0.00454156 0)
(0.0594006 -0.00385441 0)
(0.0595776 -0.00318155 0)
(0.0597081 -0.00252316 0)
(0.0597934 -0.00187943 0)
(0.059835 -0.00125053 0)
(0.059834 -0.000636623 0)
(0.0597919 -3.78859e-05 0)
(0.05971 0.000545498 0)
(0.0595896 0.00111339 0)
(0.059432 0.00166572 0)
(0.0592385 0.00220245 0)
(0.0590103 0.00272356 0)
(0.0587488 0.00322907 0)
(0.0584551 0.00371904 0)
(0.0581304 0.00419354 0)
(0.0577759 0.00465268 0)
(0.0573927 0.00509661 0)
(0.056982 0.0055255 0)
(0.0565448 0.00593955 0)
(0.0560822 0.00633896 0)
(0.0555953 0.00672398 0)
(0.055085 0.00709486 0)
(0.0545524 0.00745188 0)
(0.0539983 0.00779533 0)
(0.0534236 0.00812548 0)
(0.0528294 0.00844264 0)
(0.0522163 0.00874712 0)
(0.0515853 0.00903924 0)
(0.0509371 0.00931931 0)
(0.0502725 0.00958765 0)
(0.0495923 0.0098446 0)
(0.0488971 0.0100905 0)
(0.0481877 0.0103256 0)
(0.0474648 0.0105504 0)
(0.046729 0.0107651 0)
(0.0459808 0.01097 0)
(0.045221 0.0111655 0)
(0.0444501 0.0113519 0)
(0.0436686 0.0115295 0)
(0.042877 0.0116986 0)
(0.042076 0.0118594 0)
(0.0412659 0.0120124 0)
(0.0404472 0.0121578 0)
(0.0396204 0.0122959 0)
(0.038786 0.012427 0)
(0.0379442 0.0125513 0)
(0.0370956 0.0126691 0)
(0.0362405 0.0127806 0)
(0.0353792 0.0128862 0)
(0.0345121 0.012986 0)
(0.0336395 0.0130804 0)
(0.0327618 0.0131695 0)
(0.0318791 0.0132536 0)
(0.0309919 0.0133329 0)
(0.0301003 0.0134076 0)
(0.0292047 0.0134779 0)
(0.0283053 0.0135441 0)
(0.0274022 0.0136063 0)
(0.0264959 0.0136647 0)
(0.0255864 0.0137195 0)
(0.0246739 0.0137708 0)
(0.0237588 0.0138189 0)
(0.0228411 0.0138638 0)
(0.021921 0.0139058 0)
(0.0209988 0.0139449 0)
(0.0200745 0.0139813 0)
(0.0191483 0.0140151 0)
(0.0182203 0.0140464 0)
(0.0172908 0.0140754 0)
(0.0163598 0.0141022 0)
(0.0154274 0.0141268 0)
(0.0144938 0.0141494 0)
(0.0135591 0.0141701 0)
(0.0126233 0.014189 0)
(0.0116867 0.014206 0)
(0.0107493 0.0142212 0)
(0.00981125 0.0142346 0)
(0.00887267 0.0142458 0)
(0.00793373 0.0142541 0)
(0.00699465 0.0142579 0)
(0.0060558 0.0142531 0)
(0.00511794 0.01423 0)
(0.00418272 0.0141659 0)
(0.00325395 0.0140071 0)
(0.00234036 0.0136275 0)
(0.00146205 0.0127309 0)
(0.000669643 0.0106227 0)
(9.95108e-05 0.00568966 0)
(0.0536185 -0.0132256 0)
(0.0544213 -0.0124432 0)
(0.0551829 -0.0116447 0)
(0.0558906 -0.0108378 0)
(0.0565392 -0.0100309 0)
(0.0571306 -0.00922942 0)
(0.0576655 -0.00843693 0)
(0.0581448 -0.00765563 0)
(0.0585695 -0.00688697 0)
(0.0589405 -0.00613191 0)
(0.0592594 -0.00539104 0)
(0.0595274 -0.00466476 0)
(0.0597459 -0.00395327 0)
(0.0599162 -0.00325675 0)
(0.0600396 -0.00257538 0)
(0.0601177 -0.00190933 0)
(0.0601517 -0.0012588 0)
(0.0601431 -0.000623957 0)
(0.0600932 -4.95899e-06 0)
(0.0600034 0.000598022 0)
(0.0598751 0.00118486 0)
(0.0597095 0.00175548 0)
(0.0595079 0.00230984 0)
(0.0592718 0.00284796 0)
(0.0590022 0.00336985 0)
(0.0587005 0.0038756 0)
(0.0583679 0.00436528 0)
(0.0580055 0.00483902 0)
(0.0576145 0.00529696 0)
(0.0571961 0.00573932 0)
(0.0567513 0.00616629 0)
(0.0562813 0.00657812 0)
(0.055787 0.00697505 0)
(0.0552695 0.00735734 0)
(0.0547298 0.00772529 0)
(0.0541688 0.0080792 0)
(0.0535874 0.00841937 0)
(0.0529866 0.00874609 0)
(0.0523671 0.00905971 0)
(0.0517298 0.00936055 0)
(0.0510755 0.00964895 0)
(0.050405 0.00992526 0)
(0.049719 0.0101898 0)
(0.0490183 0.0104429 0)
(0.0483036 0.010685 0)
(0.0475754 0.0109163 0)
(0.0468345 0.0111373 0)
(0.0460815 0.0113482 0)
(0.045317 0.0115493 0)
(0.0445415 0.0117411 0)
(0.0437556 0.0119238 0)
(0.0429598 0.0120977 0)
(0.0421546 0.0122632 0)
(0.0413406 0.0124206 0)
(0.0405182 0.0125701 0)
(0.0396878 0.0127121 0)
(0.0388498 0.0128469 0)
(0.0380047 0.0129747 0)
(0.0371529 0.0130958 0)
(0.0362947 0.0132105 0)
(0.0354304 0.013319 0)
(0.0345605 0.0134217 0)
(0.0336852 0.0135187 0)
(0.0328049 0.0136103 0)
(0.0319198 0.0136967 0)
(0.0310302 0.0137782 0)
(0.0301364 0.013855 0)
(0.0292386 0.0139273 0)
(0.0283371 0.0139953 0)
(0.0274321 0.0140592 0)
(0.0265239 0.0141192 0)
(0.0256126 0.0141754 0)
(0.0246985 0.0142282 0)
(0.0237818 0.0142775 0)
(0.0228625 0.0143237 0)
(0.021941 0.0143667 0)
(0.0210174 0.0144069 0)
(0.0200918 0.0144442 0)
(0.0191643 0.0144789 0)
(0.0182352 0.0145111 0)
(0.0173045 0.0145408 0)
(0.0163724 0.0145683 0)
(0.015439 0.0145936 0)
(0.0145044 0.0146168 0)
(0.0135687 0.014638 0)
(0.0126321 0.0146573 0)
(0.0116946 0.0146747 0)
(0.0107564 0.0146902 0)
(0.00981752 0.0147039 0)
(0.00887817 0.0147153 0)
(0.00793847 0.0147238 0)
(0.00699865 0.0147276 0)
(0.00605907 0.0147225 0)
(0.0051205 0.0146985 0)
(0.00418459 0.014632 0)
(0.00325518 0.0144678 0)
(0.00234098 0.0140754 0)
(0.00146217 0.0131488 0)
(0.000669437 0.0109705 0)
(9.93596e-05 0.00587485 0)
(0.0540193 -0.0136477 0)
(0.0548226 -0.0128385 0)
(0.0555842 -0.0120118 0)
(0.0562909 -0.0111762 0)
(0.0569376 -0.0103404 0)
(0.0575262 -0.00951023 0)
(0.0580575 -0.00868947 0)
(0.0585324 -0.00788041 0)
(0.058952 -0.00708458 0)
(0.0593176 -0.00630297 0)
(0.0596304 -0.00553622 0)
(0.0598919 -0.00478471 0)
(0.0601036 -0.00404872 0)
(0.0602667 -0.0033284 0)
(0.0603828 -0.00262392 0)
(0.0604532 -0.00193546 0)
(0.0604794 -0.00126322 0)
(0.0604627 -0.000607353 0)
(0.0604047 3.1968e-05 0)
(0.0603067 0.000654592 0)
(0.06017 0.00126041 0)
(0.0599961 0.00184934 0)
(0.0597862 0.00242135 0)
(0.0595417 0.00297646 0)
(0.0592638 0.00351472 0)
(0.0589537 0.00403621 0)
(0.0586128 0.00454104 0)
(0.0582423 0.00502933 0)
(0.0578432 0.00550126 0)
(0.0574168 0.00595703 0)
(0.0569642 0.00639689 0)
(0.0564864 0.00682107 0)
(0.0559846 0.00722984 0)
(0.0554596 0.00762348 0)
(0.0549126 0.00800227 0)
(0.0543444 0.00836655 0)
(0.0537561 0.00871663 0)
(0.0531484 0.00905283 0)
(0.0525223 0.00937549 0)
(0.0518785 0.00968497 0)
(0.051218 0.00998162 0)
(0.0505414 0.0102658 0)
(0.0498495 0.0105379 0)
(0.049143 0.0107981 0)
(0.0484227 0.011047 0)
(0.0476891 0.0112849 0)
(0.046943 0.011512 0)
(0.046185 0.0117287 0)
(0.0454156 0.0119355 0)
(0.0446354 0.0121325 0)
(0.0438449 0.0123202 0)
(0.0430448 0.0124989 0)
(0.0422354 0.012669 0)
(0.0414174 0.0128306 0)
(0.040591 0.0129842 0)
(0.0397569 0.0131301 0)
(0.0389154 0.0132685 0)
(0.0380668 0.0133997 0)
(0.0372117 0.0135241 0)
(0.0363503 0.0136418 0)
(0.035483 0.0137533 0)
(0.0346102 0.0138587 0)
(0.0337321 0.0139582 0)
(0.0328491 0.0140522 0)
(0.0319615 0.014141 0)
(0.0310695 0.0142246 0)
(0.0301733 0.0143034 0)
(0.0292734 0.0143776 0)
(0.0283698 0.0144474 0)
(0.0274628 0.0145129 0)
(0.0265527 0.0145745 0)
(0.0256396 0.0146322 0)
(0.0247237 0.0146863 0)
(0.0238053 0.0147369 0)
(0.0228845 0.0147842 0)
(0.0219615 0.0148284 0)
(0.0210365 0.0148695 0)
(0.0201095 0.0149078 0)
(0.0191807 0.0149434 0)
(0.0182504 0.0149763 0)
(0.0173185 0.0150068 0)
(0.0163853 0.0150349 0)
(0.0154508 0.0150608 0)
(0.0145152 0.0150846 0)
(0.0135786 0.0151063 0)
(0.012641 0.015126 0)
(0.0117027 0.0151438 0)
(0.0107636 0.0151597 0)
(0.00982391 0.0151736 0)
(0.00888376 0.0151853 0)
(0.00794329 0.0151939 0)
(0.0070027 0.0151976 0)
(0.00606238 0.0151922 0)
(0.00512308 0.0151672 0)
(0.00418647 0.0150986 0)
(0.00325638 0.0149288 0)
(0.00234157 0.0145236 0)
(0.00146224 0.0135669 0)
(0.000669205 0.0113183 0)
(9.92044e-05 0.00605996 0)
(0.0544348 -0.0140701 0)
(0.0552387 -0.0132339 0)
(0.0560003 -0.0123787 0)
(0.0567062 -0.0115138 0)
(0.0573509 -0.0106486 0)
(0.0579365 -0.00978939 0)
(0.0584639 -0.00893993 0)
(0.0589342 -0.00810275 0)
(0.0593484 -0.00727945 0)
(0.0597081 -0.00647103 0)
(0.0600145 -0.00567815 0)
(0.0602693 -0.00490123 0)
(0.0604737 -0.00414054 0)
(0.0606294 -0.00339627 0)
(0.0607376 -0.00266856 0)
(0.0608 -0.00195759 0)
(0.060818 -0.00126354 0)
(0.060793 -0.000586589 0)
(0.0607266 7.31091e-05 0)
(0.0606199 0.00071541 0)
(0.0604746 0.00134022 0)
(0.0602919 0.00194747 0)
(0.0600733 0.00253713 0)
(0.0598201 0.00310924 0)
(0.0595335 0.00366385 0)
(0.0592148 0.00420106 0)
(0.0588654 0.00472099 0)
(0.0584863 0.00522381 0)
(0.0580789 0.00570968 0)
(0.0576442 0.00617883 0)
(0.0571835 0.0066315 0)
(0.0566977 0.00706796 0)
(0.0561879 0.0074885 0)
(0.0556553 0.00789338 0)
(0.0551007 0.00828293 0)
(0.0545251 0.00865749 0)
(0.0539296 0.00901738 0)
(0.0533148 0.00936298 0)
(0.0526819 0.00969461 0)
(0.0520314 0.0100126 0)
(0.0513644 0.0103175 0)
(0.0506815 0.0106094 0)
(0.0499835 0.0108889 0)
(0.0492711 0.0111563 0)
(0.048545 0.0114119 0)
(0.0478059 0.0116561 0)
(0.0470545 0.0118893 0)
(0.0462912 0.0121118 0)
(0.0455168 0.0123241 0)
(0.0447318 0.0125263 0)
(0.0439367 0.012719 0)
(0.043132 0.0129024 0)
(0.0423184 0.0130768 0)
(0.0414961 0.0132427 0)
(0.0406658 0.0134003 0)
(0.0398278 0.0135499 0)
(0.0389826 0.0136919 0)
(0.0381305 0.0138265 0)
(0.037272 0.013954 0)
(0.0364073 0.0140748 0)
(0.035537 0.014189 0)
(0.0346611 0.0142971 0)
(0.0337802 0.0143992 0)
(0.0328945 0.0144955 0)
(0.0320042 0.0145865 0)
(0.0311097 0.0146722 0)
(0.0302112 0.014753 0)
(0.029309 0.014829 0)
(0.0284033 0.0149005 0)
(0.0274942 0.0149677 0)
(0.0265821 0.0150308 0)
(0.0256672 0.0150899 0)
(0.0247496 0.0151453 0)
(0.0238295 0.0151971 0)
(0.0229071 0.0152456 0)
(0.0219825 0.0152908 0)
(0.021056 0.0153329 0)
(0.0201276 0.0153721 0)
(0.0191976 0.0154085 0)
(0.0182659 0.0154422 0)
(0.0173329 0.0154734 0)
(0.0163985 0.0155021 0)
(0.015463 0.0155286 0)
(0.0145263 0.0155529 0)
(0.0135887 0.0155751 0)
(0.0126502 0.0155952 0)
(0.0117109 0.0156134 0)
(0.0107709 0.0156296 0)
(0.00983042 0.0156438 0)
(0.00888945 0.0156556 0)
(0.00794818 0.0156643 0)
(0.00700681 0.015668 0)
(0.00606572 0.0156623 0)
(0.00512567 0.0156364 0)
(0.00418834 0.0155654 0)
(0.00325756 0.0153902 0)
(0.00234211 0.0149721 0)
(0.00146228 0.0139852 0)
(0.000668952 0.0116662 0)
(9.90457e-05 0.00624499 0)
(0.0548652 -0.0144929 0)
(0.0556698 -0.0136296 0)
(0.0564317 -0.0127455 0)
(0.0571367 -0.0118507 0)
(0.0577793 -0.0109557 0)
(0.0583617 -0.0100668 0)
(0.0588849 -0.00918827 0)
(0.0593502 -0.00832259 0)
(0.0597589 -0.00747148 0)
(0.0601123 -0.00663599 0)
(0.060412 -0.00581675 0)
(0.0606595 -0.00501421 0)
(0.0608565 -0.00422865 0)
(0.0610042 -0.00346025 0)
(0.0611043 -0.00270917 0)
(0.0611584 -0.00197558 0)
(0.0611678 -0.00125964 0)
(0.061134 -0.000561525 0)
(0.0610587 0.000118609 0)
(0.0609431 0.000780626 0)
(0.0607888 0.00142445 0)
(0.060597 0.00205002 0)
(0.0603693 0.00265734 0)
(0.060107 0.00324644 0)
(0.0598114 0.00381738 0)
(0.0594838 0.00437029 0)
(0.0591255 0.00490531 0)
(0.0587377 0.0054226 0)
(0.0583215 0.00592236 0)
(0.0578783 0.00640482 0)
(0.0574091 0.00687024 0)
(0.056915 0.0073189 0)
(0.0563971 0.0077511 0)
(0.0558565 0.00816715 0)
(0.0552941 0.00856738 0)
(0.0547109 0.00895213 0)
(0.0541079 0.00932176 0)
(0.0534859 0.00967666 0)
(0.0528458 0.0100172 0)
(0.0521885 0.0103437 0)
(0.0515148 0.0106566 0)
(0.0508254 0.0109562 0)
(0.0501211 0.011243 0)
(0.0494026 0.0115173 0)
(0.0486706 0.0117796 0)
(0.0479258 0.0120301 0)
(0.0471688 0.0122693 0)
(0.0464002 0.0124975 0)
(0.0456206 0.0127151 0)
(0.0448306 0.0129225 0)
(0.0440308 0.01312 0)
(0.0432215 0.013308 0)
(0.0424034 0.0134869 0)
(0.0415769 0.0136569 0)
(0.0407425 0.0138183 0)
(0.0399005 0.0139716 0)
(0.0390515 0.0141171 0)
(0.0381958 0.014255 0)
(0.0373338 0.0143856 0)
(0.0364658 0.0145093 0)
(0.0355922 0.0146263 0)
(0.0347133 0.014737 0)
(0.0338295 0.0148415 0)
(0.032941 0.0149402 0)
(0.032048 0.0150333 0)
(0.031151 0.0151211 0)
(0.0302501 0.0152037 0)
(0.0293455 0.0152816 0)
(0.0284375 0.0153547 0)
(0.0275264 0.0154235 0)
(0.0266123 0.015488 0)
(0.0256954 0.0155485 0)
(0.024776 0.0156052 0)
(0.0238542 0.0156582 0)
(0.0229301 0.0157077 0)
(0.022004 0.0157539 0)
(0.021076 0.015797 0)
(0.0201462 0.015837 0)
(0.0192148 0.0158742 0)
(0.0182818 0.0159086 0)
(0.0173476 0.0159405 0)
(0.016412 0.0159699 0)
(0.0154753 0.0159969 0)
(0.0145376 0.0160217 0)
(0.013599 0.0160443 0)
(0.0126595 0.0160649 0)
(0.0117193 0.0160834 0)
(0.0107784 0.0160999 0)
(0.00983705 0.0161144 0)
(0.00889524 0.0161264 0)
(0.00795314 0.0161352 0)
(0.00701096 0.0161388 0)
(0.00606909 0.0161327 0)
(0.00512828 0.016106 0)
(0.0041902 0.0160326 0)
(0.00325869 0.0158519 0)
(0.0023426 0.0154208 0)
(0.00146228 0.0144037 0)
(0.000668676 0.0120142 0)
(9.88808e-05 0.00642993 0)
(0.0553107 -0.014916 0)
(0.0561163 -0.0140258 0)
(0.0568786 -0.0131122 0)
(0.0575827 -0.0121869 0)
(0.058223 -0.0112613 0)
(0.058802 -0.0103424 0)
(0.0593208 -0.00943429 0)
(0.0597808 -0.00853974 0)
(0.0601835 -0.00766049 0)
(0.0605303 -0.00679762 0)
(0.0608229 -0.0059518 0)
(0.0610629 -0.00512345 0)
(0.0612519 -0.00431285 0)
(0.0613914 -0.00352018 0)
(0.061483 -0.00274561 0)
(0.0615283 -0.00198929 0)
(0.0615287 -0.00125137 0)
(0.0614859 -0.000532028 0)
(0.0614013 0.000168599 0)
(0.0612763 0.000850383 0)
(0.0611126 0.00151325 0)
(0.0609115 0.00215717 0)
(0.0606743 0.00278214 0)
(0.0604026 0.00338822 0)
(0.0600977 0.00397549 0)
(0.0597608 0.00454408 0)
(0.0593932 0.00509413 0)
(0.0589963 0.00562584 0)
(0.0585711 0.00613942 0)
(0.058119 0.00663512 0)
(0.0576411 0.00711321 0)
(0.0571384 0.00757398 0)
(0.0566121 0.00801776 0)
(0.0560632 0.0084449 0)
(0.0554927 0.00885572 0)
(0.0549017 0.00925059 0)
(0.054291 0.00962988 0)
(0.0536615 0.00999399 0)
(0.0530141 0.0103433 0)
(0.0523498 0.0106782 0)
(0.0516691 0.010999 0)
(0.050973 0.0113063 0)
(0.0502623 0.0116003 0)
(0.0495375 0.0118815 0)
(0.0487994 0.0121502 0)
(0.0480487 0.012407 0)
(0.047286 0.012652 0)
(0.0465119 0.0128859 0)
(0.0457271 0.0131088 0)
(0.044932 0.0133212 0)
(0.0441272 0.0135235 0)
(0.0433132 0.013716 0)
(0.0424905 0.0138991 0)
(0.0416596 0.0140732 0)
(0.040821 0.0142385 0)
(0.039975 0.0143954 0)
(0.0391221 0.0145442 0)
(0.0382626 0.0146853 0)
(0.037397 0.014819 0)
(0.0365256 0.0149455 0)
(0.0356488 0.0150652 0)
(0.0347667 0.0151784 0)
(0.0338799 0.0152853 0)
(0.0329885 0.0153863 0)
(0.0320928 0.0154815 0)
(0.0311932 0.0155712 0)
(0.0302898 0.0156557 0)
(0.0293828 0.0157352 0)
(0.0284726 0.01581 0)
(0.0275593 0.0158803 0)
(0.0266431 0.0159462 0)
(0.0257243 0.016008 0)
(0.024803 0.0160659 0)
(0.0238794 0.0161201 0)
(0.0229537 0.0161707 0)
(0.0220259 0.0162179 0)
(0.0210964 0.0162618 0)
(0.0201651 0.0163027 0)
(0.0192323 0.0163406 0)
(0.0182981 0.0163758 0)
(0.0173625 0.0164082 0)
(0.0164258 0.0164382 0)
(0.015488 0.0164658 0)
(0.0145492 0.016491 0)
(0.0136095 0.0165141 0)
(0.012669 0.016535 0)
(0.0117278 0.0165539 0)
(0.0107861 0.0165707 0)
(0.0098438 0.0165854 0)
(0.00890112 0.0165976 0)
(0.00795817 0.0166064 0)
(0.00701517 0.01661 0)
(0.00607249 0.0166036 0)
(0.00513089 0.0165759 0)
(0.00419204 0.0165002 0)
(0.0032598 0.0163139 0)
(0.00234305 0.0158698 0)
(0.00146225 0.0148223 0)
(0.000668368 0.0123622 0)
(9.87051e-05 0.00661474 0)
(0.0557718 -0.0153396 0)
(0.0565787 -0.0144224 0)
(0.0573415 -0.0134787 0)
(0.0580446 -0.0125223 0)
(0.0586825 -0.0115655 0)
(0.0592577 -0.0106159 0)
(0.0597718 -0.0096778 0)
(0.0602263 -0.008754 0)
(0.0606226 -0.00784628 0)
(0.0609625 -0.00695575 0)
(0.0612476 -0.00608309 0)
(0.0614797 -0.00522872 0)
(0.0616603 -0.0043929 0)
(0.0617912 -0.00357581 0)
(0.0618738 -0.00277762 0)
(0.0619099 -0.00199845 0)
(0.061901 -0.00123848 0)
(0.0618486 -0.000497844 0)
(0.0617544 0.000223325 0)
(0.0616197 0.000924912 0)
(0.0614462 0.00160685 0)
(0.0612353 0.00226911 0)
(0.0609884 0.00291173 0)
(0.0607069 0.00353477 0)
(0.0603922 0.00413834 0)
(0.0600457 0.00472256 0)
(0.0596686 0.0052876 0)
(0.0592622 0.00583366 0)
(0.0588277 0.00636099 0)
(0.0583664 0.00686985 0)
(0.0578794 0.00736053 0)
(0.0573679 0.00783334 0)
(0.0568329 0.00828863 0)
(0.0562755 0.00872676 0)
(0.0556968 0.00914809 0)
(0.0550976 0.009553 0)
(0.0544789 0.00994186 0)
(0.0538417 0.0103151 0)
(0.0531869 0.0106731 0)
(0.0525151 0.0110162 0)
(0.0518274 0.0113449 0)
(0.0511245 0.0116597 0)
(0.050407 0.0119608 0)
(0.0496758 0.0122487 0)
(0.0489314 0.0125239 0)
(0.0481747 0.0127868 0)
(0.0474061 0.0130376 0)
(0.0466264 0.013277 0)
(0.0458361 0.0135051 0)
(0.0450357 0.0137225 0)
(0.0442259 0.0139294 0)
(0.043407 0.0141264 0)
(0.0425797 0.0143137 0)
(0.0417443 0.0144916 0)
(0.0409013 0.0146607 0)
(0.0400512 0.0148211 0)
(0.0391943 0.0149732 0)
(0.038331 0.0151175 0)
(0.0374617 0.0152541 0)
(0.0365868 0.0153834 0)
(0.0357066 0.0155058 0)
(0.0348214 0.0156214 0)
(0.0339315 0.0157306 0)
(0.0330371 0.0158337 0)
(0.0321387 0.015931 0)
(0.0312363 0.0160226 0)
(0.0303303 0.0161089 0)
(0.029421 0.0161901 0)
(0.0285084 0.0162665 0)
(0.0275929 0.0163382 0)
(0.0266747 0.0164055 0)
(0.0257538 0.0164686 0)
(0.0248306 0.0165276 0)
(0.0239052 0.0165829 0)
(0.0229777 0.0166345 0)
(0.0220484 0.0166826 0)
(0.0211172 0.0167274 0)
(0.0201845 0.0167691 0)
(0.0192503 0.0168077 0)
(0.0183147 0.0168435 0)
(0.0173779 0.0168766 0)
(0.0164399 0.0169071 0)
(0.0155009 0.0169352 0)
(0.014561 0.0169609 0)
(0.0136202 0.0169844 0)
(0.0126787 0.0170057 0)
(0.0117366 0.0170249 0)
(0.0107939 0.017042 0)
(0.00985066 0.0170569 0)
(0.00890709 0.0170692 0)
(0.00796328 0.0170781 0)
(0.00701944 0.0170816 0)
(0.00607593 0.0170749 0)
(0.00513351 0.0170462 0)
(0.00419385 0.0169681 0)
(0.00326086 0.0167763 0)
(0.00234347 0.0163191 0)
(0.00146216 0.0152412 0)
(0.000668016 0.0127103 0)
(9.85153e-05 0.00679942 0)
(0.0562489 -0.0157638 0)
(0.0570574 -0.0148195 0)
(0.0578208 -0.0138452 0)
(0.0585229 -0.0128568 0)
(0.0591581 -0.0118681 0)
(0.0597293 -0.0108872 0)
(0.0602384 -0.00991866 0)
(0.0606868 -0.00896521 0)
(0.0610765 -0.00802868 0)
(0.061409 -0.0071102 0)
(0.0616862 -0.00621045 0)
(0.0619099 -0.00532984 0)
(0.0620819 -0.00446862 0)
(0.0622036 -0.00362695 0)
(0.062277 -0.00280499 0)
(0.0623035 -0.00200287 0)
(0.0622848 -0.00122075 0)
(0.0622225 -0.000458747 0)
(0.0621182 0.000283014 0)
(0.0619735 0.00100443 0)
(0.0617898 0.00170546 0)
(0.0615686 0.00238608 0)
(0.0613116 0.00304632 0)
(0.06102 0.00368628 0)
(0.0606952 0.0043061 0)
(0.0603387 0.00490591 0)
(0.0599517 0.00548588 0)
(0.0595355 0.00604623 0)
(0.0590914 0.00658724 0)
(0.0586206 0.00710919 0)
(0.0581243 0.00761238 0)
(0.0576036 0.00809716 0)
(0.0570597 0.00856388 0)
(0.0564935 0.00901291 0)
(0.0559061 0.00944465 0)
(0.0552986 0.00985948 0)
(0.0546717 0.0102578 0)
(0.0540266 0.01064 0)
(0.053364 0.0110066 0)
(0.0526847 0.0113579 0)
(0.0519897 0.0116944 0)
(0.0512796 0.0120165 0)
(0.0505553 0.0123246 0)
(0.0498174 0.0126192 0)
(0.0490667 0.0129007 0)
(0.0483037 0.0131696 0)
(0.0475292 0.0134261 0)
(0.0467437 0.0136709 0)
(0.0459478 0.0139041 0)
(0.045142 0.0141263 0)
(0.044327 0.0143379 0)
(0.0435031 0.0145391 0)
(0.042671 0.0147305 0)
(0.0418309 0.0149123 0)
(0.0409835 0.015085 0)
(0.0401291 0.0152489 0)
(0.0392681 0.0154043 0)
(0.038401 0.0155516 0)
(0.0375279 0.0156911 0)
(0.0366494 0.0158231 0)
(0.0357658 0.015948 0)
(0.0348773 0.016066 0)
(0.0339842 0.0161775 0)
(0.0330869 0.0162827 0)
(0.0321855 0.0163819 0)
(0.0312804 0.0164753 0)
(0.0303718 0.0165634 0)
(0.02946 0.0166462 0)
(0.0285451 0.0167241 0)
(0.0276273 0.0167972 0)
(0.0267069 0.0168658 0)
(0.025784 0.0169301 0)
(0.0248589 0.0169903 0)
(0.0239316 0.0170466 0)
(0.0230023 0.0170991 0)
(0.0220713 0.0171481 0)
(0.0211385 0.0171938 0)
(0.0202043 0.0172362 0)
(0.0192686 0.0172756 0)
(0.0183316 0.017312 0)
(0.0173935 0.0173457 0)
(0.0164543 0.0173767 0)
(0.0155141 0.0174053 0)
(0.014573 0.0174314 0)
(0.0136312 0.0174552 0)
(0.0126886 0.0174769 0)
(0.0117455 0.0174964 0)
(0.0108018 0.0175137 0)
(0.00985766 0.0175288 0)
(0.00891317 0.0175413 0)
(0.00796847 0.0175503 0)
(0.00702376 0.0175537 0)
(0.0060794 0.0175466 0)
(0.00513613 0.0175169 0)
(0.00419566 0.0174365 0)
(0.0032619 0.017239 0)
(0.00234384 0.0167688 0)
(0.00146202 0.0156603 0)
(0.000667611 0.0130584 0)
(9.83108e-05 0.00698396 0)
(0.0567429 -0.0161888 0)
(0.0575533 -0.0152174 0)
(0.0583174 -0.0142116 0)
(0.0590182 -0.0131902 0)
(0.0596504 -0.0121689 0)
(0.0602173 -0.0111562 0)
(0.0607208 -0.0101566 0)
(0.0611629 -0.00917313 0)
(0.0615454 -0.00820746 0)
(0.0618702 -0.00726075 0)
(0.0621391 -0.00633366 0)
(0.0623541 -0.0054266 0)
(0.0625169 -0.00453979 0)
(0.0626292 -0.0036734 0)
(0.0626927 -0.00282754 0)
(0.0627092 -0.00200235 0)
(0.0626803 -0.00119797 0)
(0.0626077 -0.000414534 0)
(0.062493 0.000347867 0)
(0.0623377 0.00108915 0)
(0.0621434 0.00180928 0)
(0.0619117 0.00250824 0)
(0.0616441 0.0031861 0)
(0.061342 0.00384295 0)
(0.0610068 0.00447897 0)
(0.0606399 0.0050943 0)
(0.0602426 0.00568915 0)
(0.0598164 0.00626375 0)
(0.0593623 0.00681837 0)
(0.0588817 0.00735333 0)
(0.0583758 0.00786897 0)
(0.0578456 0.00836563 0)
(0.0572924 0.00884368 0)
(0.0567172 0.00930351 0)
(0.056121 0.00974554 0)
(0.0555048 0.0101702 0)
(0.0548695 0.0105778 0)
(0.0542162 0.0109689 0)
(0.0535456 0.0113439 0)
(0.0528586 0.0117033 0)
(0.0521561 0.0120474 0)
(0.0514387 0.0123768 0)
(0.0507073 0.0126919 0)
(0.0499626 0.012993 0)
(0.0492053 0.0132808 0)
(0.0484359 0.0135555 0)
(0.0476552 0.0138176 0)
(0.0468637 0.0140676 0)
(0.0460621 0.0143059 0)
(0.0452508 0.0145328 0)
(0.0444304 0.0147488 0)
(0.0436015 0.0149543 0)
(0.0427644 0.0151497 0)
(0.0419196 0.0153353 0)
(0.0410677 0.0155115 0)
(0.0402089 0.0156788 0)
(0.0393437 0.0158373 0)
(0.0384726 0.0159876 0)
(0.0375957 0.0161299 0)
(0.0367135 0.0162645 0)
(0.0358263 0.0163918 0)
(0.0349344 0.0165122 0)
(0.0340381 0.0166258 0)
(0.0331377 0.016733 0)
(0.0322335 0.0168342 0)
(0.0313256 0.0169294 0)
(0.0304143 0.0170191 0)
(0.0294999 0.0171035 0)
(0.0285826 0.0171828 0)
(0.0276625 0.0172573 0)
(0.0267399 0.0173272 0)
(0.0258149 0.0173926 0)
(0.0248877 0.0174539 0)
(0.0239585 0.0175112 0)
(0.0230275 0.0175647 0)
(0.0220947 0.0176145 0)
(0.0211603 0.017661 0)
(0.0202245 0.0177041 0)
(0.0192873 0.0177441 0)
(0.018349 0.0177812 0)
(0.0174095 0.0178154 0)
(0.016469 0.0178469 0)
(0.0155276 0.0178759 0)
(0.0145853 0.0179024 0)
(0.0136424 0.0179266 0)
(0.0126988 0.0179486 0)
(0.0117546 0.0179684 0)
(0.0108099 0.0179859 0)
(0.0098648 0.0180012 0)
(0.00891938 0.0180138 0)
(0.00797377 0.0180229 0)
(0.00702817 0.0180262 0)
(0.00608292 0.0180187 0)
(0.00513878 0.017988 0)
(0.00419747 0.0179052 0)
(0.00326292 0.0177022 0)
(0.00234414 0.0172188 0)
(0.00146179 0.0160796 0)
(0.000667146 0.0134064 0)
(9.80934e-05 0.00716835 0)
(0.0572548 -0.0166148 0)
(0.0580674 -0.015616 0)
(0.0588321 -0.0145777 0)
(0.0595313 -0.0135226 0)
(0.0601601 -0.0124679 0)
(0.0607221 -0.0114226 0)
(0.0612198 -0.0103916 0)
(0.061655 -0.00937759 0)
(0.06203 -0.00838244 0)
(0.0623466 -0.0074072 0)
(0.0626068 -0.00645252 0)
(0.0628126 -0.00551877 0)
(0.0629658 -0.00460619 0)
(0.0630682 -0.0037149 0)
(0.0631215 -0.00284503 0)
(0.0631276 -0.00199667 0)
(0.0630881 -0.00116995 0)
(0.0630047 -0.000365009 0)
(0.0628791 0.000418071 0)
(0.0627128 0.00117924 0)
(0.0625076 0.00191847 0)
(0.0622649 0.00263577 0)
(0.0619863 0.00333122 0)
(0.0616733 0.00400495 0)
(0.0613273 0.00465712 0)
(0.0609496 0.00528794 0)
(0.0605418 0.00589761 0)
(0.0601051 0.00648639 0)
(0.0596407 0.00705456 0)
(0.05915 0.00760246 0)
(0.0586341 0.00813044 0)
(0.0580942 0.00863888 0)
(0.0575314 0.00912816 0)
(0.0569469 0.00959868 0)
(0.0563415 0.0100509 0)
(0.0557164 0.0104852 0)
(0.0550725 0.0109021 0)
(0.0544107 0.011302 0)
(0.0537319 0.0116853 0)
(0.053037 0.0120526 0)
(0.0523267 0.0124043 0)
(0.0516018 0.0127408 0)
(0.0508632 0.0130627 0)
(0.0501115 0.0133703 0)
(0.0493473 0.0136641 0)
(0.0485714 0.0139446 0)
(0.0477844 0.0142122 0)
(0.0469868 0.0144674 0)
(0.0461792 0.0147105 0)
(0.0453623 0.0149421 0)
(0.0445365 0.0151625 0)
(0.0437022 0.0153721 0)
(0.0428601 0.0155714 0)
(0.0420105 0.0157606 0)
(0.0411539 0.0159403 0)
(0.0402907 0.0161108 0)
(0.0394212 0.0162724 0)
(0.0385459 0.0164256 0)
(0.0376651 0.0165706 0)
(0.0367791 0.0167078 0)
(0.0358883 0.0168375 0)
(0.034993 0.01696 0)
(0.0340934 0.0170758 0)
(0.0331898 0.017185 0)
(0.0322826 0.0172879 0)
(0.0313718 0.0173849 0)
(0.0304578 0.0174762 0)
(0.0295408 0.0175621 0)
(0.028621 0.0176428 0)
(0.0276985 0.0177185 0)
(0.0267737 0.0177896 0)
(0.0258465 0.0178562 0)
(0.0249173 0.0179185 0)
(0.0239862 0.0179767 0)
(0.0230533 0.0180311 0)
(0.0221187 0.0180818 0)
(0.0211827 0.0181289 0)
(0.0202453 0.0181727 0)
(0.0193066 0.0182134 0)
(0.0183668 0.018251 0)
(0.0174259 0.0182858 0)
(0.0164841 0.0183178 0)
(0.0155414 0.0183472 0)
(0.014598 0.0183741 0)
(0.0136539 0.0183986 0)
(0.0127092 0.0184208 0)
(0.0117639 0.0184409 0)
(0.0108182 0.0184586 0)
(0.00987212 0.0184741 0)
(0.00892574 0.0184868 0)
(0.00797921 0.0184959 0)
(0.00703268 0.0184992 0)
(0.00608652 0.0184913 0)
(0.00514148 0.0184596 0)
(0.00419929 0.0183744 0)
(0.0032639 0.0181657 0)
(0.00234438 0.017669 0)
(0.00146146 0.016499 0)
(0.000666616 0.0137545 0)
(9.78644e-05 0.00735259 0)
(0.0577862 -0.0170422 0)
(0.0586013 -0.0160154 0)
(0.0593662 -0.0149433 0)
(0.0600634 -0.0138534 0)
(0.0606882 -0.0127645 0)
(0.0612449 -0.0116862 0)
(0.0617361 -0.0106232 0)
(0.0621641 -0.00957835 0)
(0.062531 -0.00855338 0)
(0.062839 -0.00754934 0)
(0.06309 -0.00656682 0)
(0.0632861 -0.00560619 0)
(0.0634293 -0.00466764 0)
(0.0635213 -0.00375131 0)
(0.063564 -0.00285729 0)
(0.0635592 -0.00198565 0)
(0.0635086 -0.00113652 0)
(0.0634139 -0.000310003 0)
(0.063277 0.000493808 0)
(0.0630994 0.00127489 0)
(0.0628827 0.00203321 0)
(0.0626286 0.00276884 0)
(0.0623386 0.00348187 0)
(0.0620143 0.00417244 0)
(0.0616571 0.00484075 0)
(0.0612684 0.005487 0)
(0.0608496 0.00611143 0)
(0.060402 0.00671432 0)
(0.059927 0.00729595 0)
(0.0594258 0.0078567 0)
(0.0588997 0.00839692 0)
(0.0583497 0.00891702 0)
(0.0577771 0.00941742 0)
(0.0571829 0.00989852 0)
(0.0565681 0.0103608 0)
(0.0559338 0.0108047 0)
(0.055281 0.0112307 0)
(0.0546105 0.0116392 0)
(0.0539232 0.0120308 0)
(0.0532201 0.0124059 0)
(0.0525019 0.012765 0)
(0.0517693 0.0131086 0)
(0.0510232 0.0134371 0)
(0.0502643 0.013751 0)
(0.0494931 0.0140508 0)
(0.0487105 0.014337 0)
(0.0479169 0.01461 0)
(0.0471131 0.0148702 0)
(0.0462995 0.0151181 0)
(0.0454767 0.0153542 0)
(0.0446453 0.0155789 0)
(0.0438057 0.0157925 0)
(0.0429584 0.0159956 0)
(0.0421038 0.0161884 0)
(0.0412424 0.0163715 0)
(0.0403746 0.0165451 0)
(0.0395007 0.0167097 0)
(0.0386212 0.0168656 0)
(0.0377363 0.0170132 0)
(0.0368465 0.0171529 0)
(0.035952 0.0172849 0)
(0.0350531 0.0174096 0)
(0.0341502 0.0175274 0)
(0.0332434 0.0176384 0)
(0.032333 0.0177432 0)
(0.0314194 0.0178418 0)
(0.0305026 0.0179346 0)
(0.0295829 0.0180219 0)
(0.0286605 0.0181039 0)
(0.0277356 0.0181809 0)
(0.0268084 0.0182531 0)
(0.0258791 0.0183208 0)
(0.0249478 0.018384 0)
(0.0240147 0.0184432 0)
(0.0230798 0.0184984 0)
(0.0221435 0.0185498 0)
(0.0212057 0.0185977 0)
(0.0202666 0.0186422 0)
(0.0193264 0.0186834 0)
(0.0183851 0.0187215 0)
(0.0174428 0.0187568 0)
(0.0164996 0.0187892 0)
(0.0155557 0.018819 0)
(0.014611 0.0188462 0)
(0.0136657 0.0188711 0)
(0.0127199 0.0188936 0)
(0.0117735 0.0189139 0)
(0.0108268 0.0189319 0)
(0.00987968 0.0189475 0)
(0.00893232 0.0189603 0)
(0.00798482 0.0189695 0)
(0.00703734 0.0189727 0)
(0.00609023 0.0189644 0)
(0.00514425 0.0189317 0)
(0.00420115 0.0188441 0)
(0.00326488 0.0186297 0)
(0.00234455 0.0181197 0)
(0.00146105 0.0169186 0)
(0.000666021 0.0141025 0)
(9.76226e-05 0.00753665 0)
(0.0583393 -0.0174712 0)
(0.0591571 -0.0164154 0)
(0.0599216 -0.0153082 0)
(0.0606159 -0.0141825 0)
(0.0612361 -0.0130587 0)
(0.0617868 -0.0119467 0)
(0.0622711 -0.0108513 0)
(0.0626913 -0.00977519 0)
(0.0630497 -0.00872007 0)
(0.0633485 -0.00768693 0)
(0.0635899 -0.00667635 0)
(0.0637759 -0.00568863 0)
(0.0639085 -0.00472395 0)
(0.0639897 -0.00378242 0)
(0.0640213 -0.00286411 0)
(0.0640051 -0.00196911 0)
(0.0639429 -0.00109748 0)
(0.0638366 -0.000249331 0)
(0.0636878 0.000575263 0)
(0.0634983 0.00137629 0)
(0.0632698 0.00215373 0)
(0.0630038 0.00290768 0)
(0.062702 0.00363826 0)
(0.062366 0.00434565 0)
(0.0619971 0.00503003 0)
(0.0615969 0.00569166 0)
(0.0611668 0.00633077 0)
(0.060708 0.00694767 0)
(0.060222 0.00754268 0)
(0.05971 0.00811616 0)
(0.0591732 0.00866852 0)
(0.0586128 0.00920018 0)
(0.05803 0.00971157 0)
(0.0574259 0.0102031 0)
(0.0568014 0.0106754 0)
(0.0561577 0.0111287 0)
(0.0554956 0.0115637 0)
(0.0548162 0.0119808 0)
(0.0541202 0.0123805 0)
(0.0534087 0.0127633 0)
(0.0526822 0.0131297 0)
(0.0519418 0.0134802 0)
(0.051188 0.0138152 0)
(0.0504216 0.0141354 0)
(0.0496433 0.014441 0)
(0.0488537 0.0147327 0)
(0.0480534 0.0150109 0)
(0.0472431 0.0152761 0)
(0.0464233 0.0155287 0)
(0.0455946 0.0157692 0)
(0.0447574 0.015998 0)
(0.0439123 0.0162156 0)
(0.0430596 0.0164223 0)
(0.0421999 0.0166187 0)
(0.0413336 0.016805 0)
(0.0404611 0.0169817 0)
(0.0395827 0.0171491 0)
(0.0386988 0.0173078 0)
(0.0378098 0.0174579 0)
(0.036916 0.0175999 0)
(0.0360177 0.0177342 0)
(0.0351152 0.017861 0)
(0.0342088 0.0179807 0)
(0.0332987 0.0180935 0)
(0.0323852 0.0181999 0)
(0.0314685 0.0183002 0)
(0.0305488 0.0183944 0)
(0.0296263 0.0184831 0)
(0.0287013 0.0185664 0)
(0.027774 0.0186445 0)
(0.0268444 0.0187178 0)
(0.0259128 0.0187865 0)
(0.0249793 0.0188507 0)
(0.0240442 0.0189107 0)
(0.0231074 0.0189666 0)
(0.0221692 0.0190188 0)
(0.0212296 0.0190673 0)
(0.0202888 0.0191124 0)
(0.019347 0.0191541 0)
(0.0184041 0.0191928 0)
(0.0174604 0.0192284 0)
(0.0165158 0.0192613 0)
(0.0155705 0.0192914 0)
(0.0146246 0.019319 0)
(0.0136781 0.0193442 0)
(0.012731 0.019367 0)
(0.0117836 0.0193874 0)
(0.0108357 0.0194056 0)
(0.00988758 0.0194214 0)
(0.0089392 0.0194343 0)
(0.00799069 0.0194435 0)
(0.00704221 0.0194466 0)
(0.00609412 0.0194379 0)
(0.00514717 0.0194042 0)
(0.00420309 0.0193142 0)
(0.00326588 0.019094 0)
(0.00234469 0.0185706 0)
(0.00146055 0.0173385 0)
(0.00066536 0.0144505 0)
(9.73653e-05 0.00772049 0)
(0.0589177 -0.0179021 0)
(0.0597378 -0.0168159 0)
(0.0605009 -0.0156721 0)
(0.0611914 -0.0145097 0)
(0.0618062 -0.0133503 0)
(0.0623502 -0.0122041 0)
(0.0628269 -0.0110758 0)
(0.0632388 -0.00996803 0)
(0.0635881 -0.00888242 0)
(0.0638773 -0.00781988 0)
(0.0641085 -0.00678096 0)
(0.0642839 -0.00576594 0)
(0.0644055 -0.00477494 0)
(0.0644753 -0.00380805 0)
(0.0644952 -0.00286532 0)
(0.0644671 -0.00194681 0)
(0.0643929 -0.0010526 0)
(0.0642743 -0.000182758 0)
(0.0641132 0.000662673 0)
(0.0639113 0.00148367 0)
(0.0636704 0.00228024 0)
(0.0633921 0.0030525 0)
(0.063078 0.00380061 0)
(0.0627298 0.00452477 0)
(0.0623489 0.00522518 0)
(0.0619367 0.00590211 0)
(0.0614948 0.00655582 0)
(0.0610244 0.00718664 0)
(0.060527 0.00779491 0)
(0.0600037 0.00838104 0)
(0.059456 0.00894543 0)
(0.0588848 0.00948854 0)
(0.0582915 0.0100108 0)
(0.0576771 0.0105128 0)
(0.0570426 0.0109948 0)
(0.0563891 0.0114575 0)
(0.0557175 0.0119014 0)
(0.0550288 0.0123269 0)
(0.0543239 0.0127346 0)
(0.0536036 0.0131249 0)
(0.0528688 0.0134985 0)
(0.0521201 0.0138557 0)
(0.0513584 0.0141972 0)
(0.0505843 0.0145234 0)
(0.0497986 0.0148348 0)
(0.0490019 0.0151319 0)
(0.0481948 0.0154153 0)
(0.0473778 0.0156853 0)
(0.0465516 0.0159425 0)
(0.0457167 0.0161873 0)
(0.0448736 0.0164201 0)
(0.0440227 0.0166415 0)
(0.0431646 0.0168518 0)
(0.0422996 0.0170515 0)
(0.0414283 0.0172409 0)
(0.0405509 0.0174206 0)
(0.0396678 0.0175908 0)
(0.0387795 0.0177521 0)
(0.0378862 0.0179047 0)
(0.0369883 0.018049 0)
(0.0360861 0.0181854 0)
(0.0351799 0.0183142 0)
(0.0342699 0.0184357 0)
(0.0333563 0.0185503 0)
(0.0324396 0.0186583 0)
(0.0315197 0.01876 0)
(0.030597 0.0188557 0)
(0.0296718 0.0189457 0)
(0.028744 0.0190301 0)
(0.0278141 0.0191094 0)
(0.0268821 0.0191837 0)
(0.0259481 0.0192533 0)
(0.0250124 0.0193184 0)
(0.0240751 0.0193792 0)
(0.0231363 0.0194359 0)
(0.0221961 0.0194887 0)
(0.0212547 0.0195378 0)
(0.0203122 0.0195834 0)
(0.0193687 0.0196257 0)
(0.0184242 0.0196648 0)
(0.0174789 0.0197009 0)
(0.0165329 0.0197341 0)
(0.0155862 0.0197646 0)
(0.0146389 0.0197925 0)
(0.0136911 0.0198179 0)
(0.0127429 0.0198409 0)
(0.0117942 0.0198616 0)
(0.0108452 0.0198799 0)
(0.00989598 0.0198958 0)
(0.00894652 0.0199088 0)
(0.00799695 0.019918 0)
(0.00704743 0.019921 0)
(0.0060983 0.0199119 0)
(0.00515032 0.0198772 0)
(0.00420521 0.0197848 0)
(0.00326697 0.0195588 0)
(0.00234485 0.0190219 0)
(0.00146 0.0177585 0)
(0.000664644 0.0147983 0)
(9.70968e-05 0.00790408 0)
(0.0595269 -0.0183343 0)
(0.0603481 -0.0172158 0)
(0.0611082 -0.0160338 0)
(0.0617937 -0.0148338 0)
(0.0624021 -0.0136382 0)
(0.0629388 -0.0124574 0)
(0.0634073 -0.0112959 0)
(0.0638102 -0.0101561 0)
(0.0641499 -0.00903974 0)
(0.0644289 -0.00794754 0)
(0.0646493 -0.00688006 0)
(0.0648135 -0.00583753 0)
(0.0649235 -0.00482006 0)
(0.0649813 -0.00382767 0)
(0.064989 -0.0028604 0)
(0.0649484 -0.00191829 0)
(0.0648615 -0.0010014 0)
(0.0647301 -0.000109812 0)
(0.0645561 0.000756494 0)
(0.0643412 0.00159744 0)
(0.0640873 0.00241311 0)
(0.0637961 0.00320364 0)
(0.0634693 0.00396923 0)
(0.0631083 0.00471008 0)
(0.0627148 0.00542645 0)
(0.0622902 0.00611859 0)
(0.061836 0.0067868 0)
(0.0613536 0.00743143 0)
(0.0608443 0.00805286 0)
(0.0603094 0.00865151 0)
(0.0597502 0.00922783 0)
(0.0591679 0.00978228 0)
(0.0585637 0.0103153 0)
(0.0579386 0.0108275 0)
(0.0572937 0.0113193 0)
(0.0566301 0.0117912 0)
(0.0559487 0.0122438 0)
(0.0552504 0.0126776 0)
(0.0545362 0.0130931 0)
(0.0538069 0.0134908 0)
(0.0530633 0.0138714 0)
(0.0523061 0.0142353 0)
(0.0515362 0.014583 0)
(0.0507543 0.0149152 0)
(0.0499609 0.0152322 0)
(0.0491567 0.0155346 0)
(0.0483425 0.015823 0)
(0.0475186 0.0160977 0)
(0.0466858 0.0163593 0)
(0.0458445 0.0166083 0)
(0.0449952 0.0168451 0)
(0.0441385 0.0170701 0)
(0.0432746 0.0172839 0)
(0.0424042 0.0174868 0)
(0.0415276 0.0176794 0)
(0.0406452 0.0178619 0)
(0.0397573 0.0180348 0)
(0.0388644 0.0181986 0)
(0.0379667 0.0183535 0)
(0.0370645 0.0185 0)
(0.0361582 0.0186385 0)
(0.0352481 0.0187692 0)
(0.0343344 0.0188925 0)
(0.0334173 0.0190088 0)
(0.0324971 0.0191183 0)
(0.031574 0.0192215 0)
(0.0306482 0.0193185 0)
(0.02972 0.0194096 0)
(0.0287894 0.0194952 0)
(0.0278568 0.0195756 0)
(0.0269221 0.0196508 0)
(0.0259857 0.0197213 0)
(0.0250477 0.0197872 0)
(0.0241081 0.0198487 0)
(0.0231672 0.0199061 0)
(0.022225 0.0199596 0)
(0.0212816 0.0200092 0)
(0.0203372 0.0200554 0)
(0.0193919 0.0200981 0)
(0.0184458 0.0201376 0)
(0.0174989 0.0201741 0)
(0.0165513 0.0202076 0)
(0.0156031 0.0202384 0)
(0.0146544 0.0202665 0)
(0.0137053 0.0202922 0)
(0.0127557 0.0203154 0)
(0.0118058 0.0203362 0)
(0.0108556 0.0203547 0)
(0.00990515 0.0203707 0)
(0.00895453 0.0203838 0)
(0.00800382 0.020393 0)
(0.00705319 0.0203958 0)
(0.00610296 0.0203864 0)
(0.00515387 0.0203508 0)
(0.00420765 0.0202558 0)
(0.00326829 0.0200241 0)
(0.00234512 0.0194737 0)
(0.00145945 0.0181788 0)
(0.000663922 0.0151461 0)
(9.68336e-05 0.0080874 0)
(0.060176 -0.0187624 0)
(0.0609952 -0.01761 0)
(0.0617502 -0.0163889 0)
(0.0624293 -0.015151 0)
(0.0630305 -0.0139192 0)
(0.0635591 -0.0127036 0)
(0.0640187 -0.0115087 0)
(0.064412 -0.010337 0)
(0.0647415 -0.00918978 0)
(0.0650095 -0.00806789 0)
(0.0652186 -0.00697182 0)
(0.0653709 -0.00590177 0)
(0.0654685 -0.00485782 0)
(0.0655137 -0.00383996 0)
(0.0655085 -0.00284819 0)
(0.0654547 -0.00188252 0)
(0.0653544 -0.000942996 0)
(0.0652095 -2.97246e-05 0)
(0.0650218 0.000857374 0)
(0.0647932 0.00171821 0)
(0.0645257 0.00255289 0)
(0.0642209 0.00336159 0)
(0.0638806 0.00414453 0)
(0.0635063 0.00490195 0)
(0.0630996 0.00563414 0)
(0.062662 0.00634137 0)
(0.0621949 0.00702396 0)
(0.0616999 0.00768228 0)
(0.0611782 0.00831674 0)
(0.0606312 0.00892779 0)
(0.0600601 0.00951589 0)
(0.0594661 0.0100815 0)
(0.0588505 0.0106252 0)
(0.0582143 0.0111475 0)
(0.0575585 0.0116488 0)
(0.0568844 0.0121298 0)
(0.0561927 0.0125909 0)
(0.0554844 0.0130328 0)
(0.0547605 0.013456 0)
(0.0540218 0.0138611 0)
(0.053269 0.0142485 0)
(0.0525031 0.0146189 0)
(0.0517246 0.0149728 0)
(0.0509343 0.0153108 0)
(0.050133 0.0156333 0)
(0.0493211 0.0159409 0)
(0.0484994 0.0162341 0)
(0.0476684 0.0165134 0)
(0.0468286 0.0167793 0)
(0.0459806 0.0170323 0)
(0.0451249 0.0172729 0)
(0.044262 0.0175015 0)
(0.0433922 0.0177186 0)
(0.0425161 0.0179247 0)
(0.0416339 0.0181202 0)
(0.0407463 0.0183055 0)
(0.0398533 0.018481 0)
(0.0389555 0.0186472 0)
(0.0380532 0.0188044 0)
(0.0371466 0.018953 0)
(0.036236 0.0190934 0)
(0.0353218 0.019226 0)
(0.0344041 0.019351 0)
(0.0334832 0.0194688 0)
(0.0325594 0.0195799 0)
(0.0316329 0.0196843 0)
(0.0307038 0.0197826 0)
(0.0297724 0.0198749 0)
(0.0288389 0.0199616 0)
(0.0279034 0.0200429 0)
(0.026966 0.0201191 0)
(0.026027 0.0201904 0)
(0.0250864 0.0202571 0)
(0.0241444 0.0203193 0)
(0.0232012 0.0203773 0)
(0.0222568 0.0204313 0)
(0.0213114 0.0204815 0)
(0.020365 0.0205281 0)
(0.0194178 0.0205713 0)
(0.0184698 0.0206112 0)
(0.0175211 0.020648 0)
(0.0165719 0.0206818 0)
(0.0156221 0.0207129 0)
(0.0146718 0.0207413 0)
(0.0137212 0.0207671 0)
(0.0127702 0.0207905 0)
(0.0118188 0.0208115 0)
(0.0108673 0.0208301 0)
(0.00991555 0.0208462 0)
(0.00896366 0.0208594 0)
(0.0080117 0.0208685 0)
(0.00705984 0.0208712 0)
(0.0061084 0.0208614 0)
(0.0051581 0.0208248 0)
(0.00421064 0.0207274 0)
(0.00327006 0.0204899 0)
(0.0023457 0.0199259 0)
(0.00145903 0.0185992 0)
(0.000663366 0.0154936 0)
(9.66533e-05 0.00827055 0)
(0.0608734 -0.0191638 0)
(0.0616866 -0.017979 0)
(0.062434 -0.0167193 0)
(0.0631057 -0.0154443 0)
(0.0636989 -0.0141767 0)
(0.0642188 -0.0129269 0)
(0.0646689 -0.0116992 0)
(0.0650519 -0.010496 0)
(0.0653705 -0.00931863 0)
(0.065627 -0.00816778 0)
(0.0658239 -0.00704387 0)
(0.0659635 -0.00594709 0)
(0.0660481 -0.00487744 0)
(0.0660799 -0.0038349 0)
(0.0660608 -0.00281941 0)
(0.065993 -0.00183095 0)
(0.0658785 -0.000869534 0)
(0.0657192 6.4653e-05 0)
(0.0655169 0.000971581 0)
(0.0652737 0.00185176 0)
(0.0649918 0.00270477 0)
(0.0646728 0.00353099 0)
(0.0643182 0.00433067 0)
(0.0639299 0.00510408 0)
(0.0635092 0.00585154 0)
(0.0630579 0.00657334 0)
(0.0625773 0.00726983 0)
(0.062069 0.0079414 0)
(0.0615343 0.00858848 0)
(0.0609744 0.00921154 0)
(0.0603908 0.00981105 0)
(0.0597846 0.0103875 0)
(0.059157 0.0109415 0)
(0.058509 0.0114735 0)
(0.0578419 0.0119841 0)
(0.0571566 0.0124739 0)
(0.0564541 0.0129434 0)
(0.0557353 0.0133932 0)
(0.0550012 0.0138239 0)
(0.0542526 0.014236 0)
(0.0534902 0.0146301 0)
(0.052715 0.0150068 0)
(0.0519275 0.0153667 0)
(0.0511285 0.0157103 0)
(0.0503187 0.0160381 0)
(0.0494987 0.0163507 0)
(0.0486691 0.0166486 0)
(0.0478305 0.0169323 0)
(0.0469834 0.0172024 0)
(0.0461284 0.0174594 0)
(0.0452658 0.0177036 0)
(0.0443963 0.0179357 0)
(0.0435203 0.0181561 0)
(0.0426381 0.0183652 0)
(0.0417501 0.0185635 0)
(0.0408568 0.0187515 0)
(0.0399585 0.0189295 0)
(0.0390556 0.019098 0)
(0.0381482 0.0192574 0)
(0.0372369 0.019408 0)
(0.0363217 0.0195503 0)
(0.0354031 0.0196846 0)
(0.0344812 0.0198112 0)
(0.0335563 0.0199306 0)
(0.0326287 0.020043 0)
(0.0316984 0.0201488 0)
(0.0307658 0.0202482 0)
(0.029831 0.0203416 0)
(0.0288942 0.0204293 0)
(0.0279556 0.0205116 0)
(0.0270152 0.0205886 0)
(0.0260734 0.0206607 0)
(0.02513 0.020728 0)
(0.0241855 0.0207909 0)
(0.0232397 0.0208495 0)
(0.0222929 0.0209041 0)
(0.0213452 0.0209548 0)
(0.0203966 0.0210018 0)
(0.0194472 0.0210454 0)
(0.0184972 0.0210856 0)
(0.0175466 0.0211228 0)
(0.0165955 0.0211569 0)
(0.0156439 0.0211882 0)
(0.0146919 0.0212168 0)
(0.0137395 0.0212428 0)
(0.0127869 0.0212664 0)
(0.011834 0.0212875 0)
(0.010881 0.0213062 0)
(0.00992773 0.0213223 0)
(0.0089744 0.0213356 0)
(0.00802104 0.0213447 0)
(0.0070678 0.0213473 0)
(0.00611499 0.0213371 0)
(0.00516332 0.0212995 0)
(0.0042145 0.0211997 0)
(0.00327255 0.0209564 0)
(0.00234683 0.0203787 0)
(0.001459 0.0190201 0)
(0.000663365 0.0158411 0)
(9.67935e-05 0.00845373 0)
(0.0616184 -0.0196232 0)
(0.0624247 -0.0184058 0)
(0.0631668 -0.0171033 0)
(0.0638322 -0.0157869 0)
(0.064418 -0.0144798 0)
(0.0649292 -0.0131922 0)
(0.0653694 -0.0119282 0)
(0.0657417 -0.01069 0)
(0.0660485 -0.00947897 0)
(0.0662926 -0.00829577 0)
(0.0664764 -0.00714078 0)
(0.0666024 -0.00601413 0)
(0.0666728 -0.00491584 0)
(0.0666899 -0.00384582 0)
(0.0666559 -0.00280399 0)
(0.0665729 -0.00179029 0)
(0.0664429 -0.000804679 0)
(0.0662678 0.000152579 0)
(0.0660498 0.0010814 0)
(0.0657908 0.00198245 0)
(0.0654932 0.00285531 0)
(0.0651586 0.00370043 0)
(0.0647887 0.00451809 0)
(0.0643852 0.00530861 0)
(0.0639496 0.00607229 0)
(0.0634835 0.0068095 0)
(0.0629885 0.0075206 0)
(0.0624659 0.00820601 0)
(0.0619172 0.00886621 0)
(0.0613437 0.00950168 0)
(0.0607467 0.010113 0)
(0.0601274 0.0107006 0)
(0.0594871 0.011265 0)
(0.0588267 0.011807 0)
(0.0581475 0.012327 0)
(0.0574504 0.0128256 0)
(0.0567364 0.0133034 0)
(0.0560065 0.0137611 0)
(0.0552615 0.0141992 0)
(0.0545023 0.0146184 0)
(0.0537298 0.0150191 0)
(0.0529446 0.015402 0)
(0.0521476 0.0157678 0)
(0.0513393 0.0161168 0)
(0.0505206 0.0164498 0)
(0.0496919 0.0167673 0)
(0.0488539 0.0170698 0)
(0.0480073 0.0173578 0)
(0.0471524 0.0176319 0)
(0.0462898 0.0178926 0)
(0.0454201 0.0181404 0)
(0.0445436 0.0183758 0)
(0.0436608 0.0185992 0)
(0.0427721 0.0188113 0)
(0.041878 0.0190123 0)
(0.0409787 0.0192027 0)
(0.0400746 0.0193831 0)
(0.0391661 0.0195537 0)
(0.0382535 0.0197151 0)
(0.037337 0.0198676 0)
(0.0364169 0.0200116 0)
(0.0354936 0.0201475 0)
(0.0345672 0.0202757 0)
(0.0336379 0.0203964 0)
(0.0327061 0.0205101 0)
(0.0317718 0.020617 0)
(0.0308354 0.0207176 0)
(0.0298969 0.020812 0)
(0.0289566 0.0209006 0)
(0.0280145 0.0209836 0)
(0.0270709 0.0210614 0)
(0.0261259 0.0211341 0)
(0.0251796 0.0212021 0)
(0.0242321 0.0212656 0)
(0.0232836 0.0213247 0)
(0.0223341 0.0213797 0)
(0.0213838 0.0214308 0)
(0.0204328 0.0214782 0)
(0.0194811 0.0215221 0)
(0.0185288 0.0215626 0)
(0.017576 0.0216 0)
(0.0166227 0.0216343 0)
(0.0156691 0.0216658 0)
(0.0147152 0.0216946 0)
(0.0137609 0.0217207 0)
(0.0128064 0.0217444 0)
(0.0118518 0.0217656 0)
(0.010897 0.0217844 0)
(0.00994208 0.0218006 0)
(0.00898711 0.0218138 0)
(0.00803216 0.021823 0)
(0.00707736 0.0218254 0)
(0.00612301 0.0218148 0)
(0.00516983 0.0217761 0)
(0.00421952 0.0216739 0)
(0.00327608 0.0214248 0)
(0.00234886 0.0208333 0)
(0.00145982 0.0194426 0)
(0.000664543 0.0161901 0)
(9.76914e-05 0.00863733 0)
(-9.52914e-05 0.00833027 0)
(-0.000617012 0.0156652 0)
(-0.00134056 0.0188232 0)
(-0.00215382 0.0201482 0)
(-0.003002 0.0206905 0)
(-0.00386344 0.0209046 0)
(-0.00473007 0.0209813 0)
(-0.00559862 0.0209987 0)
(-0.00646766 0.0209887 0)
(-0.0073365 0.0209645 0)
(-0.0082048 0.0209315 0)
(-0.00907236 0.0208921 0)
(-0.00993903 0.020847 0)
(-0.0108047 0.0207968 0)
(-0.0116692 0.0207415 0)
(-0.0125324 0.020681 0)
(-0.0133943 0.0206154 0)
(-0.0142546 0.0205444 0)
(-0.0151133 0.0204681 0)
(-0.0159702 0.0203861 0)
(-0.0168252 0.0202983 0)
(-0.017678 0.0202046 0)
(-0.0185286 0.0201048 0)
(-0.0193768 0.0199986 0)
(-0.0202224 0.0198859 0)
(-0.0210651 0.0197664 0)
(-0.0219049 0.0196399 0)
(-0.0227415 0.0195062 0)
(-0.0235748 0.0193651 0)
(-0.0244044 0.0192163 0)
(-0.0252302 0.0190594 0)
(-0.0260519 0.0188943 0)
(-0.0268694 0.0187207 0)
(-0.0276822 0.0185382 0)
(-0.0284902 0.0183465 0)
(-0.0292931 0.0181454 0)
(-0.0300905 0.0179344 0)
(-0.0308821 0.0177133 0)
(-0.0316677 0.0174817 0)
(-0.0324469 0.0172392 0)
(-0.0332193 0.0169855 0)
(-0.0339845 0.0167202 0)
(-0.0347422 0.0164428 0)
(-0.0354919 0.0161531 0)
(-0.0362332 0.0158506 0)
(-0.0369657 0.0155349 0)
(-0.037689 0.0152055 0)
(-0.0384024 0.014862 0)
(-0.0391055 0.014504 0)
(-0.0397978 0.014131 0)
(-0.0404787 0.0137426 0)
(-0.0411476 0.0133384 0)
(-0.0418039 0.0129178 0)
(-0.0424469 0.0124804 0)
(-0.0430761 0.0120257 0)
(-0.0436907 0.0115533 0)
(-0.0442899 0.0110626 0)
(-0.0448731 0.0105532 0)
(-0.0454394 0.0100247 0)
(-0.0459879 0.00947644 0)
(-0.046518 0.00890807 0)
(-0.0470286 0.00831907 0)
(-0.0475188 0.00770899 0)
(-0.0479876 0.00707736 0)
(-0.0484341 0.00642373 0)
(-0.0488572 0.00574767 0)
(-0.0492559 0.00504876 0)
(-0.049629 0.00432662 0)
(-0.0499755 0.00358088 0)
(-0.0502941 0.00281123 0)
(-0.0505838 0.00201737 0)
(-0.0508439 0.00119907 0)
(-0.0510731 0.000356093 0)
(-0.0512684 -0.000511963 0)
(-0.0514278 -0.0014058 0)
(-0.0515505 -0.00232509 0)
(-0.0516353 -0.00326978 0)
(-0.0516806 -0.00423992 0)
(-0.0516848 -0.00523546 0)
(-0.0516461 -0.0062563 0)
(-0.051563 -0.00730227 0)
(-0.0514334 -0.00837313 0)
(-0.0512557 -0.00946857 0)
(-0.0510279 -0.0105882 0)
(-0.0507481 -0.0117316 0)
(-0.0504144 -0.0128984 0)
(-0.0500246 -0.014088 0)
(-0.0495769 -0.0153 0)
(-0.0490691 -0.0165338 0)
(-0.048499 -0.0177889 0)
(-0.0478647 -0.0190648 0)
(-0.0471638 -0.0203608 0)
(-0.0463944 -0.0216759 0)
(-0.0455543 -0.0230089 0)
(-0.0446415 -0.0243581 0)
(-0.0436541 -0.0257212 0)
(-0.0425901 -0.0270941 0)
(-0.0414494 -0.0284664 0)
(-0.0402393 -0.0298079 0)
(-0.0389744 -0.0310216 0)
(-9.64588e-05 0.00958978 0)
(-0.000625925 0.0180757 0)
(-0.00136138 0.0217395 0)
(-0.00218934 0.02328 0)
(-0.00305351 0.0239121 0)
(-0.00393155 0.024163 0)
(-0.00481518 0.0242542 0)
(-0.00570109 0.0242767 0)
(-0.00658783 0.0242678 0)
(-0.00747469 0.0242427 0)
(-0.00836136 0.0242079 0)
(-0.00924765 0.024166 0)
(-0.0101334 0.024118 0)
(-0.0110186 0.0240644 0)
(-0.0119031 0.0240053 0)
(-0.0127868 0.0239407 0)
(-0.0136697 0.0238705 0)
(-0.0145516 0.0237946 0)
(-0.0154324 0.0237127 0)
(-0.016312 0.0236247 0)
(-0.0171904 0.0235305 0)
(-0.0180674 0.0234298 0)
(-0.0189429 0.0233224 0)
(-0.0198168 0.0232081 0)
(-0.0206888 0.0230867 0)
(-0.0215589 0.0229579 0)
(-0.022427 0.0228214 0)
(-0.0232928 0.022677 0)
(-0.0241563 0.0225244 0)
(-0.0250171 0.0223634 0)
(-0.0258752 0.0221935 0)
(-0.0267304 0.0220146 0)
(-0.0275824 0.0218262 0)
(-0.028431 0.0216281 0)
(-0.029276 0.0214198 0)
(-0.0301172 0.021201 0)
(-0.0309542 0.0209713 0)
(-0.0317869 0.0207304 0)
(-0.032615 0.0204778 0)
(-0.033438 0.0202131 0)
(-0.0342558 0.0199359 0)
(-0.035068 0.0196458 0)
(-0.0358743 0.0193422 0)
(-0.0366742 0.0190247 0)
(-0.0374674 0.0186929 0)
(-0.0382535 0.0183463 0)
(-0.0390321 0.0179843 0)
(-0.0398026 0.0176064 0)
(-0.0405647 0.0172121 0)
(-0.0413179 0.0168009 0)
(-0.0420615 0.0163722 0)
(-0.0427951 0.0159255 0)
(-0.043518 0.0154603 0)
(-0.0442298 0.0149758 0)
(-0.0449296 0.0144716 0)
(-0.0456168 0.0139471 0)
(-0.0462908 0.0134016 0)
(-0.0469508 0.0128346 0)
(-0.047596 0.0122455 0)
(-0.0482255 0.0116335 0)
(-0.0488385 0.0109982 0)
(-0.0494342 0.010339 0)
(-0.0500114 0.00965505 0)
(-0.0505694 0.00894591 0)
(-0.0511069 0.00821093 0)
(-0.0516229 0.0074495 0)
(-0.0521163 0.00666104 0)
(-0.0525858 0.00584497 0)
(-0.0530302 0.00500074 0)
(-0.0534482 0.00412785 0)
(-0.0538384 0.0032258 0)
(-0.0541992 0.00229422 0)
(-0.0545301 0.00133291 0)
(-0.0548315 0.000341613 0)
(-0.0550992 -0.000680149 0)
(-0.055329 -0.00173365 0)
(-0.0555208 -0.00281907 0)
(-0.0556732 -0.00393644 0)
(-0.0557844 -0.00508587 0)
(-0.0558524 -0.00626742 0)
(-0.0558751 -0.00748112 0)
(-0.0558504 -0.00872692 0)
(-0.0557761 -0.0100047 0)
(-0.0556498 -0.0113143 0)
(-0.0554691 -0.0126555 0)
(-0.0552316 -0.0140281 0)
(-0.0549347 -0.0154317 0)
(-0.0545759 -0.016866 0)
(-0.0541524 -0.0183308 0)
(-0.0536616 -0.0198256 0)
(-0.0531006 -0.02135 0)
(-0.0524667 -0.0229033 0)
(-0.051757 -0.0244845 0)
(-0.0509687 -0.0260921 0)
(-0.0500992 -0.0277239 0)
(-0.0491458 -0.0293765 0)
(-0.0481054 -0.0310436 0)
(-0.0469772 -0.0327102 0)
(-0.0457723 -0.0343355 0)
(-0.0445079 -0.0358129 0)
(-9.58178e-05 0.0108662 0)
(-0.000630721 0.0205307 0)
(-0.00137793 0.0247175 0)
(-0.0022208 0.0264826 0)
(-0.00310141 0.0272091 0)
(-0.00399663 0.0274993 0)
(-0.00489789 0.0276066 0)
(-0.00580175 0.0276357 0)
(-0.00670673 0.0276291 0)
(-0.00761216 0.0276046 0)
(-0.00851775 0.0275694 0)
(-0.00942335 0.0275266 0)
(-0.0103289 0.0274774 0)
(-0.0112343 0.0274223 0)
(-0.0121394 0.0273614 0)
(-0.0130444 0.0272948 0)
(-0.0139491 0.0272223 0)
(-0.0148534 0.0271437 0)
(-0.0157573 0.0270589 0)
(-0.0166608 0.0269677 0)
(-0.0175638 0.0268699 0)
(-0.0184662 0.0267652 0)
(-0.019368 0.0266535 0)
(-0.020269 0.0265344 0)
(-0.0211691 0.0264078 0)
(-0.0220683 0.0262733 0)
(-0.0229665 0.0261307 0)
(-0.0238636 0.0259797 0)
(-0.0247593 0.0258199 0)
(-0.0256537 0.025651 0)
(-0.0265466 0.0254728 0)
(-0.0274379 0.0252847 0)
(-0.0283273 0.0250865 0)
(-0.0292147 0.0248778 0)
(-0.0300999 0.0246582 0)
(-0.0309828 0.0244272 0)
(-0.0318632 0.0241845 0)
(-0.0327407 0.0239295 0)
(-0.0336153 0.0236619 0)
(-0.0344866 0.0233811 0)
(-0.0353544 0.0230867 0)
(-0.0362184 0.0227782 0)
(-0.0370784 0.022455 0)
(-0.0379339 0.0221165 0)
(-0.0387847 0.0217624 0)
(-0.0396305 0.0213919 0)
(-0.0404708 0.0210044 0)
(-0.0413052 0.0205995 0)
(-0.0421334 0.0201764 0)
(-0.0429548 0.0197345 0)
(-0.0437691 0.0192732 0)
(-0.0445756 0.0187919 0)
(-0.0453738 0.0182898 0)
(-0.0461633 0.0177662 0)
(-0.0469433 0.0172204 0)
(-0.0477133 0.0166518 0)
(-0.0484726 0.0160595 0)
(-0.0492204 0.0154428 0)
(-0.049956 0.014801 0)
(-0.0506786 0.0141333 0)
(-0.0513874 0.0134389 0)
(-0.0520814 0.012717 0)
(-0.0527597 0.0119668 0)
(-0.0534214 0.0111875 0)
(-0.0540653 0.0103783 0)
(-0.0546903 0.00953843 0)
(-0.0552954 0.00866699 0)
(-0.0558791 0.00776322 0)
(-0.0564403 0.0068263 0)
(-0.0569775 0.00585547 0)
(-0.0574891 0.00484996 0)
(-0.0579732 0.00380904 0)
(-0.0584282 0.00273197 0)
(-0.0588522 0.00161831 0)
(-0.0592469 0.000468178 0)
(-0.0596099 -0.000719598 0)
(-0.0599357 -0.00194668 0)
(-0.0602223 -0.00321413 0)
(-0.0604684 -0.00452146 0)
(-0.0606718 -0.00586909 0)
(-0.0608302 -0.00725742 0)
(-0.060941 -0.00868678 0)
(-0.0610017 -0.0101574 0)
(-0.0610095 -0.0116695 0)
(-0.0609616 -0.0132233 0)
(-0.0608549 -0.0148188 0)
(-0.0606863 -0.016456 0)
(-0.0604526 -0.0181351 0)
(-0.0601504 -0.0198561 0)
(-0.0597762 -0.0216187 0)
(-0.0593265 -0.0234228 0)
(-0.0587976 -0.0252679 0)
(-0.0581858 -0.027153 0)
(-0.0574874 -0.0290766 0)
(-0.0566986 -0.0310363 0)
(-0.0558155 -0.0330281 0)
(-0.0548334 -0.0350437 0)
(-0.0537514 -0.0370628 0)
(-0.0525856 -0.039034 0)
(-0.0513496 -0.0408437 0)
(-9.51394e-05 0.0121482 0)
(-0.000634743 0.0230163 0)
(-0.00139337 0.0277431 0)
(-0.0022511 0.0297419 0)
(-0.00314831 0.0305673 0)
(-0.00406101 0.030899 0)
(-0.00498025 0.0310239 0)
(-0.00590247 0.0310606 0)
(-0.00682615 0.0310575 0)
(-0.00775064 0.0310348 0)
(-0.00867566 0.0310006 0)
(-0.00960111 0.0309584 0)
(-0.0105269 0.0309096 0)
(-0.0114531 0.0308549 0)
(-0.0123797 0.0307943 0)
(-0.0133066 0.0307278 0)
(-0.0142339 0.0306553 0)
(-0.0151616 0.0305766 0)
(-0.0160896 0.0304916 0)
(-0.0170179 0.0304001 0)
(-0.0179466 0.0303017 0)
(-0.0188756 0.0301964 0)
(-0.0198048 0.0300837 0)
(-0.0207343 0.0299635 0)
(-0.021664 0.0298355 0)
(-0.0225939 0.0296994 0)
(-0.0235238 0.0295548 0)
(-0.0244539 0.0294015 0)
(-0.0253839 0.029239 0)
(-0.0263139 0.0290671 0)
(-0.0272438 0.0288854 0)
(-0.0281734 0.0286934 0)
(-0.0291026 0.0284907 0)
(-0.0300315 0.0282771 0)
(-0.0309597 0.0280519 0)
(-0.0318873 0.0278147 0)
(-0.0328141 0.0275651 0)
(-0.0337399 0.0273026 0)
(-0.0346646 0.0270266 0)
(-0.0355879 0.0267367 0)
(-0.0365098 0.0264322 0)
(-0.0374299 0.0261126 0)
(-0.038348 0.0257774 0)
(-0.0392639 0.0254258 0)
(-0.0401774 0.0250573 0)
(-0.0410882 0.0246712 0)
(-0.0419959 0.0242669 0)
(-0.0429002 0.0238436 0)
(-0.0438007 0.0234006 0)
(-0.0446971 0.0229373 0)
(-0.045589 0.0224528 0)
(-0.046476 0.0219464 0)
(-0.0473574 0.0214173 0)
(-0.048233 0.0208646 0)
(-0.0491021 0.0202876 0)
(-0.0499641 0.0196852 0)
(-0.0508185 0.0190568 0)
(-0.0516646 0.0184013 0)
(-0.0525016 0.0177178 0)
(-0.0533289 0.0170055 0)
(-0.0541456 0.0162632 0)
(-0.0549509 0.0154901 0)
(-0.0557439 0.0146851 0)
(-0.0565236 0.0138471 0)
(-0.057289 0.0129753 0)
(-0.058039 0.0120684 0)
(-0.0587724 0.0111256 0)
(-0.059488 0.0101455 0)
(-0.0601844 0.00912734 0)
(-0.0608602 0.00806985 0)
(-0.0615139 0.00697201 0)
(-0.0621439 0.0058327 0)
(-0.0627482 0.0046508 0)
(-0.0633242 0.00342519 0)
(-0.0638707 0.00215461 0)
(-0.0643897 0.000838874 0)
(-0.0648806 -0.000522615 0)
(-0.0653339 -0.00193116 0)
(-0.0657457 -0.00338932 0)
(-0.066117 -0.0048974 0)
(-0.0664454 -0.00645613 0)
(-0.0667278 -0.00806629 0)
(-0.0669614 -0.00972864 0)
(-0.0671428 -0.0114439 0)
(-0.0672688 -0.0132128 0)
(-0.0673357 -0.015036 0)
(-0.0673397 -0.0169141 0)
(-0.0672771 -0.0188477 0)
(-0.0671435 -0.0208374 0)
(-0.0669347 -0.0228835 0)
(-0.0666461 -0.0249865 0)
(-0.066273 -0.0271461 0)
(-0.0658106 -0.0293618 0)
(-0.0652538 -0.0316325 0)
(-0.0645976 -0.0339557 0)
(-0.0638364 -0.0363269 0)
(-0.0629636 -0.038735 0)
(-0.0619785 -0.0411526 0)
(-0.0609004 -0.0435164 0)
(-0.0597312 -0.0457163 0)
(-9.40352e-05 0.013434 0)
(-0.00063728 0.025532 0)
(-0.00140656 0.0308172 0)
(-0.00227859 0.0330598 0)
(-0.003192 0.0339894 0)
(-0.00412186 0.0343655 0)
(-0.00505882 0.0345099 0)
(-0.00599918 0.0345557 0)
(-0.00694138 0.0345575 0)
(-0.00788476 0.034538 0)
(-0.0088291 0.0345064 0)
(-0.00977431 0.0344666 0)
(-0.0107204 0.0344202 0)
(-0.0116674 0.0343679 0)
(-0.0126154 0.0343098 0)
(-0.0135644 0.0342459 0)
(-0.0145144 0.0341761 0)
(-0.0154655 0.0341001 0)
(-0.0164178 0.0340179 0)
(-0.0173713 0.0339292 0)
(-0.018326 0.0338337 0)
(-0.019282 0.0337312 0)
(-0.0202393 0.0336214 0)
(-0.0211978 0.0335041 0)
(-0.0221577 0.0333789 0)
(-0.023119 0.0332455 0)
(-0.0240816 0.0331036 0)
(-0.0250456 0.0329528 0)
(-0.026011 0.0327927 0)
(-0.0269777 0.032623 0)
(-0.0279458 0.0324433 0)
(-0.0289153 0.0322531 0)
(-0.029886 0.0320521 0)
(-0.0308579 0.0318396 0)
(-0.0318311 0.0316154 0)
(-0.0328054 0.0313788 0)
(-0.0337809 0.0311293 0)
(-0.0347573 0.0308665 0)
(-0.0357347 0.0305896 0)
(-0.0367129 0.0302983 0)
(-0.0376918 0.0299917 0)
(-0.0386712 0.0296694 0)
(-0.0396511 0.0293307 0)
(-0.0406312 0.0289748 0)
(-0.0416114 0.0286012 0)
(-0.0425915 0.0282089 0)
(-0.0435713 0.0277974 0)
(-0.0445505 0.0273658 0)
(-0.0455288 0.0269133 0)
(-0.046506 0.0264392 0)
(-0.0474818 0.0259424 0)
(-0.0484557 0.0254222 0)
(-0.0494275 0.0248775 0)
(-0.0503967 0.0243076 0)
(-0.0513629 0.0237113 0)
(-0.0523256 0.0230878 0)
(-0.0532843 0.0224358 0)
(-0.0542385 0.0217545 0)
(-0.0551874 0.0210426 0)
(-0.0561305 0.020299 0)
(-0.0570671 0.0195226 0)
(-0.0579964 0.0187122 0)
(-0.0589176 0.0178666 0)
(-0.0598298 0.0169844 0)
(-0.060732 0.0160644 0)
(-0.0616234 0.0151053 0)
(-0.0625026 0.0141057 0)
(-0.0633687 0.0130642 0)
(-0.0642202 0.0119795 0)
(-0.0650559 0.0108501 0)
(-0.0658742 0.00967449 0)
(-0.0666734 0.00845127 0)
(-0.067452 0.00717895 0)
(-0.0682088 0.00585601 0)
(-0.0689414 0.00448077 0)
(-0.0696454 0.00305187 0)
(-0.0703194 0.00156857 0)
(-0.0709681 2.96631e-05 0)
(-0.0715865 -0.00156709 0)
(-0.0721657 -0.00322415 0)
(-0.0727051 -0.00494339 0)
(-0.0732021 -0.00672576 0)
(-0.0736535 -0.00857267 0)
(-0.0740558 -0.0104856 0)
(-0.0744052 -0.012466 0)
(-0.0746978 -0.0145154 0)
(-0.0749292 -0.0166353 0)
(-0.0750948 -0.0188271 0)
(-0.0751897 -0.0210925 0)
(-0.0752087 -0.0234327 0)
(-0.0751463 -0.0258489 0)
(-0.0749966 -0.028342 0)
(-0.0747535 -0.0309123 0)
(-0.0744104 -0.0335595 0)
(-0.0739609 -0.0362816 0)
(-0.0733973 -0.0390737 0)
(-0.0727109 -0.0419209 0)
(-0.071902 -0.0447873 0)
(-0.0709901 -0.0476013 0)
(-0.0699601 -0.0502758 0)
(-9.24308e-05 0.0147197 0)
(-0.000637751 0.028073 0)
(-0.00141629 0.0339357 0)
(-0.00230144 0.036433 0)
(-0.00323001 0.0374723 0)
(-0.0041761 0.0378958 0)
(-0.00512991 0.0380615 0)
(-0.00608755 0.0381179 0)
(-0.00704741 0.038126 0)
(-0.00800885 0.0381112 0)
(-0.00897167 0.0380838 0)
(-0.00993585 0.0380483 0)
(-0.0109014 0.0380063 0)
(-0.0118685 0.0379586 0)
(-0.0128372 0.0379054 0)
(-0.0138075 0.0378466 0)
(-0.0147797 0.0377823 0)
(-0.0157537 0.037712 0)
(-0.0167297 0.0376358 0)
(-0.0177078 0.0375533 0)
(-0.0186881 0.0374643 0)
(-0.0196707 0.0373684 0)
(-0.0206556 0.0372656 0)
(-0.021643 0.0371553 0)
(-0.022633 0.0370374 0)
(-0.0236255 0.0369114 0)
(-0.0246207 0.0367771 0)
(-0.0256187 0.036634 0)
(-0.0266196 0.0364818 0)
(-0.0276233 0.03632 0)
(-0.02863 0.0361483 0)
(-0.0296397 0.0359661 0)
(-0.0306524 0.0357731 0)
(-0.0316682 0.0355686 0)
(-0.0326871 0.0353523 0)
(-0.0337092 0.0351236 0)
(-0.0347344 0.0348818 0)
(-0.0357628 0.0346265 0)
(-0.0367944 0.0343571 0)
(-0.0378291 0.0340728 0)
(-0.0388669 0.0337731 0)
(-0.0399078 0.0334572 0)
(-0.0409518 0.0331245 0)
(-0.0419987 0.0327742 0)
(-0.0430485 0.0324056 0)
(-0.0441011 0.0320178 0)
(-0.0451564 0.03161 0)
(-0.0462143 0.0311814 0)
(-0.0472745 0.0307311 0)
(-0.048337 0.0302581 0)
(-0.0494015 0.0297615 0)
(-0.0504678 0.0292403 0)
(-0.0515356 0.0286935 0)
(-0.0526047 0.0281199 0)
(-0.0536748 0.0275186 0)
(-0.0547455 0.0268883 0)
(-0.0558164 0.0262278 0)
(-0.0568871 0.025536 0)
(-0.0579572 0.0248115 0)
(-0.0590261 0.024053 0)
(-0.0600932 0.0232592 0)
(-0.0611581 0.0224286 0)
(-0.0622198 0.0215599 0)
(-0.0632779 0.0206514 0)
(-0.0643314 0.0197017 0)
(-0.0653794 0.0187091 0)
(-0.0664211 0.017672 0)
(-0.0674554 0.0165887 0)
(-0.0684811 0.0154575 0)
(-0.0694971 0.0142765 0)
(-0.070502 0.0130439 0)
(-0.0714942 0.0117578 0)
(-0.072472 0.0104162 0)
(-0.0734335 0.00901709 0)
(-0.074377 0.00755869 0)
(-0.0753012 0.00603887 0)
(-0.0762044 0.00445501 0)
(-0.0770829 0.00280516 0)
(-0.077937 0.00108865 0)
(-0.0787661 -0.00069742 0)
(-0.079562 -0.00255623 0)
(-0.0803201 -0.0044915 0)
(-0.081039 -0.00650535 0)
(-0.0817152 -0.00859932 0)
(-0.0823448 -0.010776 0)
(-0.0829234 -0.013038 0)
(-0.0834464 -0.015388 0)
(-0.0839087 -0.017829 0)
(-0.0843048 -0.0203637 0)
(-0.0846289 -0.0229948 0)
(-0.0848744 -0.025725 0)
(-0.0850345 -0.0285567 0)
(-0.0851018 -0.0314917 0)
(-0.0850686 -0.0345311 0)
(-0.0849268 -0.037674 0)
(-0.0846667 -0.0409145 0)
(-0.0842779 -0.0442334 0)
(-0.0837622 -0.0475861 0)
(-0.0831347 -0.0509028 0)
(-0.0823557 -0.05414 0)
(-9.02101e-05 0.016 0)
(-0.000635556 0.0306327 0)
(-0.00142135 0.0370928 0)
(-0.00231774 0.0398564 0)
(-0.00325974 0.0410116 0)
(-0.00422039 0.0414859 0)
(-0.00518943 0.041675 0)
(-0.00616278 0.0417436 0)
(-0.00713875 0.0417596 0)
(-0.00811673 0.0417511 0)
(-0.00909652 0.0417297 0)
(-0.0100782 0.0417003 0)
(-0.0110617 0.0416648 0)
(-0.0120474 0.041624 0)
(-0.0130353 0.0415782 0)
(-0.0140256 0.0415273 0)
(-0.0150184 0.0414713 0)
(-0.016014 0.0414099 0)
(-0.0170124 0.041343 0)
(-0.0180139 0.0412702 0)
(-0.0190185 0.0411915 0)
(-0.0200264 0.0411063 0)
(-0.0210378 0.0410146 0)
(-0.0220529 0.0409159 0)
(-0.0230717 0.04081 0)
(-0.0240945 0.0406964 0)
(-0.0251214 0.0405749 0)
(-0.0261525 0.040445 0)
(-0.0271879 0.0403064 0)
(-0.0282279 0.0401586 0)
(-0.0292724 0.0400011 0)
(-0.0303218 0.0398336 0)
(-0.031376 0.0396555 0)
(-0.0324352 0.0394663 0)
(-0.0334996 0.0392654 0)
(-0.0345692 0.0390524 0)
(-0.0356442 0.0388266 0)
(-0.0367247 0.0385874 0)
(-0.0378107 0.0383341 0)
(-0.0389023 0.0380662 0)
(-0.0399997 0.0377829 0)
(-0.0411028 0.0374835 0)
(-0.0422118 0.0371672 0)
(-0.0433266 0.0368333 0)
(-0.0444475 0.0364809 0)
(-0.0455742 0.0361091 0)
(-0.046707 0.0357172 0)
(-0.0478457 0.0353041 0)
(-0.0489904 0.0348689 0)
(-0.050141 0.0344106 0)
(-0.0512974 0.0339282 0)
(-0.0524597 0.0334205 0)
(-0.0536276 0.0328864 0)
(-0.0548011 0.0323248 0)
(-0.0559801 0.0317344 0)
(-0.0571642 0.031114 0)
(-0.0583534 0.0304623 0)
(-0.0595473 0.0297778 0)
(-0.0607458 0.0290591 0)
(-0.0619484 0.0283047 0)
(-0.0631549 0.0275132 0)
(-0.0643648 0.0266828 0)
(-0.0655776 0.025812 0)
(-0.0667929 0.0248989 0)
(-0.0680099 0.0239418 0)
(-0.0692282 0.0229389 0)
(-0.0704469 0.021888 0)
(-0.0716654 0.0207873 0)
(-0.0728826 0.0196347 0)
(-0.0740976 0.0184279 0)
(-0.0753092 0.0171647 0)
(-0.0765164 0.0158428 0)
(-0.0777179 0.0144597 0)
(-0.0789118 0.0130128 0)
(-0.0800964 0.0114996 0)
(-0.0812702 0.00991704 0)
(-0.0824312 0.00826262 0)
(-0.083577 0.00653363 0)
(-0.0847057 0.00472686 0)
(-0.0858176 0.00283983 0)
(-0.0869143 0.000870251 0)
(-0.0879891 -0.00118538 0)
(-0.0890308 -0.00333154 0)
(-0.090037 -0.00557348 0)
(-0.0910074 -0.00791497 0)
(-0.091938 -0.0103593 0)
(-0.0928238 -0.0129107 0)
(-0.0936596 -0.0155735 0)
(-0.0944397 -0.0183523 0)
(-0.0951577 -0.0212517 0)
(-0.0958068 -0.0242764 0)
(-0.0963794 -0.027431 0)
(-0.0968672 -0.0307194 0)
(-0.0972616 -0.034145 0)
(-0.097553 -0.0377082 0)
(-0.0977305 -0.041402 0)
(-0.0977828 -0.045202 0)
(-0.0977125 -0.0490595 0)
(-0.0975255 -0.0529222 0)
(-0.0971671 -0.0568095 0)
(-8.73144e-05 0.0172686 0)
(-0.000630177 0.0332022 0)
(-0.0014206 0.0402796 0)
(-0.00232569 0.0433216 0)
(-0.00327871 0.0445992 0)
(-0.0042516 0.0451278 0)
(-0.00523358 0.0453424 0)
(-0.00622034 0.0454248 0)
(-0.00721015 0.0454503 0)
(-0.00820237 0.0454497 0)
(-0.00919687 0.0454361 0)
(-0.0101937 0.0454147 0)
(-0.011193 0.0453879 0)
(-0.0121951 0.0453564 0)
(-0.0132 0.0453205 0)
(-0.014208 0.0452802 0)
(-0.0152193 0.0452355 0)
(-0.0162342 0.0451862 0)
(-0.0172528 0.045132 0)
(-0.0182754 0.0450727 0)
(-0.0193022 0.045008 0)
(-0.0203334 0.0449377 0)
(-0.0213692 0.0448614 0)
(-0.0224098 0.044779 0)
(-0.0234555 0.0446899 0)
(-0.0245065 0.0445939 0)
(-0.025563 0.0444906 0)
(-0.0266252 0.0443796 0)
(-0.0276933 0.0442606 0)
(-0.0287676 0.044133 0)
(-0.0298483 0.0439964 0)
(-0.0309355 0.0438504 0)
(-0.0320295 0.0436944 0)
(-0.0331306 0.0435279 0)
(-0.0342389 0.0433504 0)
(-0.0353546 0.0431613 0)
(-0.036478 0.04296 0)
(-0.0376092 0.0427459 0)
(-0.0387484 0.0425183 0)
(-0.0398959 0.0422765 0)
(-0.0410518 0.0420198 0)
(-0.0422164 0.0417474 0)
(-0.0433897 0.0414586 0)
(-0.0445721 0.0411526 0)
(-0.0457636 0.0408284 0)
(-0.0469644 0.0404852 0)
(-0.0481747 0.0401221 0)
(-0.0493946 0.0397381 0)
(-0.0506243 0.0393322 0)
(-0.0518639 0.0389032 0)
(-0.0531135 0.0384502 0)
(-0.0543731 0.0379719 0)
(-0.055643 0.0374671 0)
(-0.056923 0.0369346 0)
(-0.0582134 0.036373 0)
(-0.059514 0.0357811 0)
(-0.060825 0.0351573 0)
(-0.0621462 0.0345002 0)
(-0.0634777 0.0338081 0)
(-0.0648194 0.0330796 0)
(-0.066171 0.0323128 0)
(-0.0675326 0.031506 0)
(-0.0689039 0.0306573 0)
(-0.0702846 0.0297649 0)
(-0.0716745 0.0288266 0)
(-0.0730732 0.0278404 0)
(-0.0744803 0.026804 0)
(-0.0758954 0.0257152 0)
(-0.077318 0.0245716 0)
(-0.0787474 0.0233705 0)
(-0.0801829 0.0221095 0)
(-0.0816237 0.0207857 0)
(-0.083069 0.0193963 0)
(-0.0845177 0.0179383 0)
(-0.0859687 0.0164084 0)
(-0.0874208 0.0148032 0)
(-0.0888722 0.0131194 0)
(-0.0903213 0.0113534 0)
(-0.091767 0.00950144 0)
(-0.0932051 0.00755928 0)
(-0.0946318 0.00552371 0)
(-0.0960495 0.00339147 0)
(-0.0974622 0.00115747 0)
(-0.0988636 -0.00118411 0)
(-0.100242 -0.00363883 0)
(-0.101594 -0.00621354 0)
(-0.102919 -0.00891409 0)
(-0.104211 -0.0117466 0)
(-0.105465 -0.0147174 0)
(-0.106675 -0.0178334 0)
(-0.107836 -0.0211017 0)
(-0.108939 -0.0245296 0)
(-0.109976 -0.0281242 0)
(-0.11094 -0.0318913 0)
(-0.111819 -0.0358329 0)
(-0.112603 -0.0399401 0)
(-0.113281 -0.0441849 0)
(-0.113856 -0.0485248 0)
(-0.114323 -0.0529455 0)
(-0.114608 -0.0575356 0)
(-8.36793e-05 0.0185181 0)
(-0.000621076 0.0357707 0)
(-0.00141283 0.0434854 0)
(-0.00232336 0.0468184 0)
(-0.00328425 0.0482253 0)
(-0.00426631 0.0488119 0)
(-0.00525821 0.0490543 0)
(-0.00625539 0.0491524 0)
(-0.00725605 0.0491888 0)
(-0.00825953 0.0491979 0)
(-0.00926572 0.0491938 0)
(-0.0102747 0.0491824 0)
(-0.0112868 0.0491664 0)
(-0.0123021 0.0491465 0)
(-0.013321 0.0491231 0)
(-0.0143437 0.0490963 0)
(-0.0153705 0.0490659 0)
(-0.0164017 0.0490318 0)
(-0.0174375 0.0489938 0)
(-0.0184782 0.0489516 0)
(-0.0195241 0.0489049 0)
(-0.0205754 0.0488536 0)
(-0.0216325 0.0487973 0)
(-0.0226957 0.0487357 0)
(-0.0237652 0.0486685 0)
(-0.0248414 0.0485952 0)
(-0.0259244 0.0485157 0)
(-0.0270147 0.0484294 0)
(-0.0281125 0.048336 0)
(-0.0292182 0.048235 0)
(-0.0303319 0.048126 0)
(-0.031454 0.0480085 0)
(-0.0325849 0.0478821 0)
(-0.0337248 0.0477461 0)
(-0.0348741 0.0476001 0)
(-0.036033 0.0474434 0)
(-0.0372019 0.0472755 0)
(-0.0383811 0.0470957 0)
(-0.0395708 0.0469034 0)
(-0.0407715 0.0466978 0)
(-0.0419833 0.0464783 0)
(-0.0432068 0.0462441 0)
(-0.0444421 0.0459944 0)
(-0.0456895 0.0457283 0)
(-0.0469495 0.045445 0)
(-0.0482223 0.0451435 0)
(-0.0495081 0.044823 0)
(-0.0508074 0.0444823 0)
(-0.0521204 0.0441206 0)
(-0.0534475 0.0437366 0)
(-0.0547889 0.0433292 0)
(-0.0561449 0.0428972 0)
(-0.0575158 0.0424394 0)
(-0.0589019 0.0419545 0)
(-0.0603034 0.0414411 0)
(-0.0617206 0.0408977 0)
(-0.0631538 0.0403229 0)
(-0.0646031 0.039715 0)
(-0.0660689 0.0390725 0)
(-0.0675513 0.0383936 0)
(-0.0690505 0.0376764 0)
(-0.0705666 0.0369192 0)
(-0.0720998 0.0361198 0)
(-0.0736501 0.0352763 0)
(-0.0752178 0.0343865 0)
(-0.0768027 0.033448 0)
(-0.078405 0.0324584 0)
(-0.0800245 0.0314153 0)
(-0.0816613 0.030316 0)
(-0.083315 0.0291577 0)
(-0.0849857 0.0279375 0)
(-0.086673 0.0266523 0)
(-0.0883765 0.025299 0)
(-0.0900958 0.023874 0)
(-0.0918306 0.0223739 0)
(-0.0935799 0.0207949 0)
(-0.0953423 0.019133 0)
(-0.0971176 0.0173838 0)
(-0.0989054 0.0155429 0)
(-0.100704 0.0136056 0)
(-0.102512 0.0115667 0)
(-0.104327 0.0094202 0)
(-0.106149 0.00716131 0)
(-0.107977 0.00478547 0)
(-0.109811 0.00228557 0)
(-0.111649 -0.00034547 0)
(-0.113483 -0.0031161 0)
(-0.115307 -0.0060357 0)
(-0.117119 -0.00911343 0)
(-0.118916 -0.0123585 0)
(-0.120693 -0.0157803 0)
(-0.122443 -0.0193889 0)
(-0.12416 -0.0231943 0)
(-0.125838 -0.027205 0)
(-0.127469 -0.031423 0)
(-0.129043 -0.0358376 0)
(-0.130552 -0.040422 0)
(-0.132001 -0.045155 0)
(-0.133372 -0.0500787 0)
(-0.134585 -0.0553445 0)
(-7.9231e-05 0.0197401 0)
(-0.000607756 0.0383251 0)
(-0.00139697 0.0466961 0)
(-0.00230901 0.050333 0)
(-0.00327391 0.0518766 0)
(-0.00426137 0.0525251 0)
(-0.00525943 0.0527978 0)
(-0.0062633 0.0529132 0)
(-0.00727106 0.0529622 0)
(-0.00828206 0.0529825 0)
(-0.0092962 0.0529896 0)
(-0.0103137 0.0529903 0)
(-0.0113347 0.0529871 0)
(-0.0123595 0.0529811 0)
(-0.0133886 0.0529728 0)
(-0.0144221 0.0529621 0)
(-0.0154605 0.052949 0)
(-0.016504 0.0529333 0)
(-0.0175531 0.0529148 0)
(-0.0186079 0.0528934 0)
(-0.019669 0.0528686 0)
(-0.0207365 0.0528404 0)
(-0.0218109 0.0528084 0)
(-0.0228926 0.0527723 0)
(-0.0239818 0.0527317 0)
(-0.025079 0.0526865 0)
(-0.0261845 0.0526361 0)
(-0.0272987 0.0525802 0)
(-0.028422 0.0525185 0)
(-0.0295548 0.0524506 0)
(-0.0306973 0.0523759 0)
(-0.0318501 0.052294 0)
(-0.0330136 0.0522044 0)
(-0.034188 0.0521067 0)
(-0.0353739 0.0520002 0)
(-0.0365717 0.0518845 0)
(-0.0377817 0.0517589 0)
(-0.0390044 0.0516229 0)
(-0.0402403 0.0514757 0)
(-0.0414897 0.0513166 0)
(-0.0427532 0.0511451 0)
(-0.0440311 0.0509602 0)
(-0.0453239 0.0507613 0)
(-0.0466321 0.0505474 0)
(-0.0479561 0.0503178 0)
(-0.0492965 0.0500716 0)
(-0.0506536 0.0498077 0)
(-0.052028 0.0495251 0)
(-0.0534202 0.0492229 0)
(-0.0548306 0.0489 0)
(-0.0562597 0.0485551 0)
(-0.0577081 0.0481871 0)
(-0.0591762 0.0477948 0)
(-0.0606646 0.0473767 0)
(-0.0621738 0.0469316 0)
(-0.0637042 0.0464579 0)
(-0.0652564 0.0459541 0)
(-0.0668309 0.0454187 0)
(-0.0684283 0.0448499 0)
(-0.0700489 0.044246 0)
(-0.0716934 0.0436051 0)
(-0.0733623 0.0429252 0)
(-0.075056 0.0422044 0)
(-0.076775 0.0414405 0)
(-0.0785199 0.0406312 0)
(-0.080291 0.0397741 0)
(-0.082089 0.0388667 0)
(-0.0839142 0.0379064 0)
(-0.0857671 0.0368905 0)
(-0.0876482 0.0358159 0)
(-0.0895577 0.0346797 0)
(-0.0914961 0.0334785 0)
(-0.0934638 0.032209 0)
(-0.0954611 0.0308675 0)
(-0.0974882 0.0294502 0)
(-0.0995455 0.027953 0)
(-0.101633 0.0263715 0)
(-0.103752 0.0247011 0)
(-0.1059 0.0229368 0)
(-0.108078 0.0210737 0)
(-0.110287 0.019106 0)
(-0.112526 0.0170274 0)
(-0.114794 0.0148313 0)
(-0.117092 0.0125112 0)
(-0.119417 0.0100596 0)
(-0.12177 0.00746923 0)
(-0.124157 0.00473058 0)
(-0.126575 0.00183436 0)
(-0.129018 -0.00123012 0)
(-0.131481 -0.00447498 0)
(-0.133962 -0.00791367 0)
(-0.136459 -0.0115579 0)
(-0.138972 -0.01542 0)
(-0.141498 -0.0195095 0)
(-0.144032 -0.0238262 0)
(-0.146572 -0.0283579 0)
(-0.149114 -0.0330879 0)
(-0.151663 -0.0380338 0)
(-0.154194 -0.0433028 0)
(-0.156626 -0.0490867 0)
(-7.39095e-05 0.0209252 0)
(-0.000589719 0.0408503 0)
(-0.00137187 0.049896 0)
(-0.0022808 0.05385 0)
(-0.00324519 0.0555378 0)
(-0.00423358 0.0562524 0)
(-0.00523341 0.0565578 0)
(-0.00623954 0.0566923 0)
(-0.00724997 0.0567554 0)
(-0.00826403 0.0567884 0)
(-0.00928165 0.0568085 0)
(-0.010303 0.056823 0)
(-0.0113285 0.0568347 0)
(-0.0123583 0.0568448 0)
(-0.0133929 0.0568539 0)
(-0.0144327 0.056862 0)
(-0.015478 0.056869 0)
(-0.0165291 0.0568748 0)
(-0.0175866 0.0568791 0)
(-0.0186508 0.0568819 0)
(-0.0197221 0.0568828 0)
(-0.0208009 0.0568816 0)
(-0.0218877 0.0568781 0)
(-0.0229828 0.0568719 0)
(-0.0240867 0.0568628 0)
(-0.0251997 0.0568505 0)
(-0.0263225 0.0568346 0)
(-0.0274553 0.0568148 0)
(-0.0285987 0.0567907 0)
(-0.0297531 0.0567619 0)
(-0.030919 0.056728 0)
(-0.0320969 0.0566885 0)
(-0.0332872 0.0566431 0)
(-0.0344905 0.0565912 0)
(-0.0357072 0.0565323 0)
(-0.0369379 0.0564659 0)
(-0.0381832 0.0563914 0)
(-0.0394434 0.0563083 0)
(-0.0407192 0.0562158 0)
(-0.0420112 0.0561134 0)
(-0.0433199 0.0560004 0)
(-0.0446459 0.055876 0)
(-0.0459899 0.0557396 0)
(-0.0473523 0.0555902 0)
(-0.0487338 0.0554271 0)
(-0.0501351 0.0552494 0)
(-0.0515567 0.0550562 0)
(-0.0529994 0.0548465 0)
(-0.0544638 0.0546193 0)
(-0.0559507 0.0543736 0)
(-0.0574606 0.0541082 0)
(-0.0589944 0.0538219 0)
(-0.0605527 0.0535136 0)
(-0.0621362 0.0531819 0)
(-0.0637459 0.0528256 0)
(-0.0653823 0.0524431 0)
(-0.0670464 0.0520329 0)
(-0.0687389 0.0515936 0)
(-0.0704607 0.0511233 0)
(-0.0722125 0.0506205 0)
(-0.0739953 0.0500833 0)
(-0.0758099 0.0495096 0)
(-0.0776572 0.0488976 0)
(-0.0795381 0.0482451 0)
(-0.0814536 0.0475498 0)
(-0.0834046 0.0468093 0)
(-0.0853921 0.0460213 0)
(-0.087417 0.0451829 0)
(-0.0894804 0.0442916 0)
(-0.0915833 0.0433443 0)
(-0.0937267 0.0423379 0)
(-0.0959117 0.0412692 0)
(-0.0981395 0.0401348 0)
(-0.100411 0.0389309 0)
(-0.102728 0.0376537 0)
(-0.10509 0.0362991 0)
(-0.1075 0.0348629 0)
(-0.109958 0.0333403 0)
(-0.112467 0.0317264 0)
(-0.115026 0.0300156 0)
(-0.117638 0.0282021 0)
(-0.120306 0.0262802 0)
(-0.123028 0.0242431 0)
(-0.125806 0.0220836 0)
(-0.128643 0.0197937 0)
(-0.131541 0.0173638 0)
(-0.134499 0.0147854 0)
(-0.137519 0.0120496 0)
(-0.140606 0.00914497 0)
(-0.143768 0.0060593 0)
(-0.147 0.00277988 0)
(-0.150299 -0.000708218 0)
(-0.153675 -0.00441571 0)
(-0.157129 -0.00834794 0)
(-0.160662 -0.0125023 0)
(-0.164282 -0.0168683 0)
(-0.167992 -0.0214517 0)
(-0.171802 -0.026321 0)
(-0.175691 -0.0316417 0)
(-0.179576 -0.037606 0)
(-6.76968e-05 0.0220632 0)
(-0.000566617 0.0433294 0)
(-0.00133666 0.0530666 0)
(-0.00223725 0.0573509 0)
(-0.00319593 0.0591906 0)
(-0.00418013 0.0599758 0)
(-0.00517661 0.0603164 0)
(-0.00617993 0.0604717 0)
(-0.00718793 0.0605504 0)
(-0.00819993 0.0605976 0)
(-0.00921586 0.0606322 0)
(-0.010236 0.0606621 0)
(-0.0112606 0.0606906 0)
(-0.0122901 0.060719 0)
(-0.0133249 0.0607477 0)
(-0.0143654 0.060777 0)
(-0.0154122 0.0608067 0)
(-0.0164655 0.0608367 0)
(-0.0175258 0.060867 0)
(-0.0185937 0.0608972 0)
(-0.0196695 0.0609272 0)
(-0.0207538 0.0609568 0)
(-0.0218469 0.0609857 0)
(-0.0229495 0.0610137 0)
(-0.0240619 0.0610405 0)
(-0.0251847 0.0610658 0)
(-0.0263184 0.0610893 0)
(-0.0274634 0.0611108 0)
(-0.0286204 0.0611298 0)
(-0.0297899 0.0611461 0)
(-0.0309724 0.0611591 0)
(-0.0321684 0.0611686 0)
(-0.0333787 0.0611742 0)
(-0.0346036 0.0611753 0)
(-0.035844 0.0611715 0)
(-0.0371002 0.0611624 0)
(-0.0383731 0.0611473 0)
(-0.0396632 0.0611258 0)
(-0.0409712 0.0610974 0)
(-0.0422977 0.0610613 0)
(-0.0436435 0.0610169 0)
(-0.0450093 0.0609637 0)
(-0.0463958 0.0609009 0)
(-0.0478038 0.0608277 0)
(-0.0492339 0.0607435 0)
(-0.0506871 0.0606473 0)
(-0.052164 0.0605383 0)
(-0.0536656 0.0604157 0)
(-0.0551927 0.0602785 0)
(-0.0567461 0.0601257 0)
(-0.0583268 0.0599562 0)
(-0.0599356 0.059769 0)
(-0.0615736 0.0595629 0)
(-0.0632418 0.0593367 0)
(-0.064941 0.0590892 0)
(-0.0666724 0.0588189 0)
(-0.068437 0.0585245 0)
(-0.0702359 0.0582045 0)
(-0.0720702 0.0578574 0)
(-0.0739412 0.0574814 0)
(-0.0758499 0.0570749 0)
(-0.0777977 0.056636 0)
(-0.0797858 0.0561628 0)
(-0.0818156 0.0556533 0)
(-0.0838883 0.0551054 0)
(-0.0860055 0.0545169 0)
(-0.0881685 0.0538852 0)
(-0.090379 0.0532081 0)
(-0.0926384 0.0524828 0)
(-0.0949484 0.0517066 0)
(-0.0973107 0.0508766 0)
(-0.0997271 0.0499896 0)
(-0.102199 0.0490424 0)
(-0.104729 0.0480316 0)
(-0.107319 0.0469535 0)
(-0.109971 0.0458043 0)
(-0.112687 0.0445798 0)
(-0.115469 0.0432759 0)
(-0.118321 0.0418877 0)
(-0.121244 0.0404103 0)
(-0.12424 0.0388384 0)
(-0.127314 0.0371663 0)
(-0.130467 0.035388 0)
(-0.133705 0.0334964 0)
(-0.137031 0.0314841 0)
(-0.140449 0.0293432 0)
(-0.143961 0.0270656 0)
(-0.147574 0.0246415 0)
(-0.151292 0.0220599 0)
(-0.155119 0.0193105 0)
(-0.15907 0.0163838 0)
(-0.163149 0.0132686 0)
(-0.167358 0.00995778 0)
(-0.171715 0.00645368 0)
(-0.176236 0.00276505 0)
(-0.180928 -0.00110505 0)
(-0.185799 -0.00519423 0)
(-0.190868 -0.00962064 0)
(-0.196122 -0.0145803 0)
(-0.201505 -0.0202208 0)
(-6.05831e-05 0.0231433 0)
(-0.000538133 0.0457438 0)
(-0.00129052 0.0561873 0)
(-0.00217694 0.0608149 0)
(-0.00312414 0.0628148 0)
(-0.00409844 0.0636749 0)
(-0.00508587 0.0640533 0)
(-0.00608066 0.0642312 0)
(-0.00708051 0.0643268 0)
(-0.00808468 0.0643896 0)
(-0.00909313 0.0644401 0)
(-0.0101061 0.064487 0)
(-0.011124 0.0645339 0)
(-0.0121472 0.0645823 0)
(-0.0131762 0.0646327 0)
(-0.0142114 0.0646853 0)
(-0.0152534 0.0647401 0)
(-0.0163026 0.064797 0)
(-0.0173594 0.0648558 0)
(-0.0184245 0.0649165 0)
(-0.0194983 0.0649787 0)
(-0.0205813 0.0650424 0)
(-0.0216741 0.0651073 0)
(-0.0227772 0.0651733 0)
(-0.0238911 0.06524 0)
(-0.0250165 0.0653072 0)
(-0.0261538 0.0653747 0)
(-0.0273036 0.0654422 0)
(-0.0284666 0.0655094 0)
(-0.0296434 0.065576 0)
(-0.0308346 0.0656417 0)
(-0.0320408 0.0657061 0)
(-0.0332626 0.0657688 0)
(-0.0345008 0.0658295 0)
(-0.0357561 0.0658878 0)
(-0.0370291 0.0659432 0)
(-0.0383205 0.0659952 0)
(-0.0396312 0.0660435 0)
(-0.0409618 0.0660875 0)
(-0.0423132 0.0661266 0)
(-0.0436861 0.0661604 0)
(-0.0450814 0.0661881 0)
(-0.0465 0.0662093 0)
(-0.0479427 0.0662233 0)
(-0.0494104 0.0662293 0)
(-0.0509041 0.0662267 0)
(-0.0524246 0.0662146 0)
(-0.0539731 0.0661924 0)
(-0.0555505 0.0661591 0)
(-0.0571579 0.0661139 0)
(-0.0587963 0.0660558 0)
(-0.0604669 0.0659838 0)
(-0.0621708 0.065897 0)
(-0.0639093 0.0657943 0)
(-0.0656835 0.0656744 0)
(-0.0674948 0.0655362 0)
(-0.0693444 0.0653785 0)
(-0.0712338 0.0651998 0)
(-0.0731643 0.0649988 0)
(-0.0751374 0.064774 0)
(-0.0771547 0.0645239 0)
(-0.0792176 0.0642467 0)
(-0.0813279 0.0639409 0)
(-0.0834872 0.0636044 0)
(-0.0856973 0.0632355 0)
(-0.08796 0.0628321 0)
(-0.0902773 0.0623921 0)
(-0.0926511 0.0619133 0)
(-0.0950834 0.0613933 0)
(-0.0975765 0.0608296 0)
(-0.100133 0.0602196 0)
(-0.102754 0.0595606 0)
(-0.105443 0.0588497 0)
(-0.108203 0.0580838 0)
(-0.111036 0.0572598 0)
(-0.113945 0.0563743 0)
(-0.116933 0.0554237 0)
(-0.120003 0.0544044 0)
(-0.123159 0.0533125 0)
(-0.126405 0.0521438 0)
(-0.129744 0.0508938 0)
(-0.13318 0.0495575 0)
(-0.136719 0.04813 0)
(-0.140364 0.0466057 0)
(-0.144122 0.0449789 0)
(-0.147996 0.0432433 0)
(-0.151994 0.0413919 0)
(-0.156124 0.0394177 0)
(-0.160393 0.0373127 0)
(-0.164807 0.0350687 0)
(-0.169377 0.0326791 0)
(-0.174117 0.0301424 0)
(-0.179044 0.0274612 0)
(-0.184173 0.0246469 0)
(-0.189522 0.0217122 0)
(-0.195104 0.0186434 0)
(-0.200929 0.0153665 0)
(-0.207019 0.0117306 0)
(-0.213373 0.00755402 0)
(-0.219957 0.00277982 0)
(-5.25914e-05 0.0241542 0)
(-0.000504085 0.0480734 0)
(-0.00123281 0.0592357 0)
(-0.00209873 0.0642194 0)
(-0.00302814 0.0663877 0)
(-0.00398627 0.0673274 0)
(-0.00495844 0.0677462 0)
(-0.00593848 0.0679483 0)
(-0.00692391 0.0680621 0)
(-0.00791396 0.0681415 0)
(-0.00890856 0.0682092 0)
(-0.00990798 0.0682744 0)
(-0.0109126 0.0683411 0)
(-0.011923 0.0684111 0)
(-0.0129395 0.0684849 0)
(-0.0139627 0.0685628 0)
(-0.014993 0.0686447 0)
(-0.0160311 0.0687306 0)
(-0.0170774 0.0688204 0)
(-0.0181326 0.0689139 0)
(-0.019197 0.0690111 0)
(-0.0202714 0.0691118 0)
(-0.0213562 0.0692158 0)
(-0.0224521 0.0693229 0)
(-0.0235597 0.069433 0)
(-0.0246795 0.0695459 0)
(-0.0258123 0.0696612 0)
(-0.0269585 0.0697789 0)
(-0.028119 0.0698987 0)
(-0.0292943 0.0700203 0)
(-0.0304851 0.0701435 0)
(-0.0316923 0.0702679 0)
(-0.0329163 0.0703933 0)
(-0.0341581 0.0705194 0)
(-0.0354184 0.0706458 0)
(-0.0366979 0.0707721 0)
(-0.0379975 0.070898 0)
(-0.0393179 0.0710232 0)
(-0.0406601 0.0711471 0)
(-0.042025 0.0712693 0)
(-0.0434133 0.0713895 0)
(-0.0448262 0.071507 0)
(-0.0462645 0.0716214 0)
(-0.0477291 0.0717321 0)
(-0.0492213 0.0718386 0)
(-0.0507419 0.0719402 0)
(-0.0522922 0.0720363 0)
(-0.0538732 0.0721263 0)
(-0.055486 0.0722094 0)
(-0.057132 0.0722849 0)
(-0.0588123 0.072352 0)
(-0.0605283 0.0724098 0)
(-0.0622813 0.0724576 0)
(-0.0640727 0.0724943 0)
(-0.0659039 0.0725191 0)
(-0.0677764 0.0725308 0)
(-0.0696917 0.0725285 0)
(-0.0716515 0.0725109 0)
(-0.0736575 0.0724769 0)
(-0.0757113 0.0724252 0)
(-0.0778147 0.0723546 0)
(-0.0799697 0.0722635 0)
(-0.0821781 0.0721505 0)
(-0.0844421 0.0720142 0)
(-0.0867636 0.0718528 0)
(-0.0891449 0.0716646 0)
(-0.0915883 0.0714479 0)
(-0.0940962 0.0712008 0)
(-0.096671 0.0709212 0)
(-0.0993154 0.0706072 0)
(-0.102032 0.0702565 0)
(-0.104824 0.0698667 0)
(-0.107694 0.0694356 0)
(-0.110645 0.0689606 0)
(-0.11368 0.068439 0)
(-0.116803 0.0678682 0)
(-0.120018 0.0672453 0)
(-0.123328 0.0665673 0)
(-0.126738 0.0658313 0)
(-0.13025 0.065034 0)
(-0.133871 0.064172 0)
(-0.137605 0.0632418 0)
(-0.141456 0.0622394 0)
(-0.145431 0.0611609 0)
(-0.149535 0.0600022 0)
(-0.153775 0.0587589 0)
(-0.158157 0.0574263 0)
(-0.162688 0.0560002 0)
(-0.167379 0.0544762 0)
(-0.172237 0.0528513 0)
(-0.177272 0.0511254 0)
(-0.182498 0.0493052 0)
(-0.187929 0.0474056 0)
(-0.193585 0.0454459 0)
(-0.19948 0.043431 0)
(-0.205621 0.0413219 0)
(-0.212013 0.0390143 0)
(-0.21867 0.0363556 0)
(-0.225599 0.0332212 0)
(-0.232802 0.0296705 0)
(-4.37475e-05 0.0250845 0)
(-0.000464357 0.0502972 0)
(-0.00116309 0.0621877 0)
(-0.00200178 0.0675399 0)
(-0.00290663 0.0698849 0)
(-0.00384189 0.0709091 0)
(-0.0047921 0.0713709 0)
(-0.00575068 0.0715986 0)
(-0.00671498 0.0717318 0)
(-0.00768412 0.0718289 0)
(-0.00865804 0.0719145 0)
(-0.00963701 0.0719991 0)
(-0.0106215 0.0720869 0)
(-0.0116118 0.0721797 0)
(-0.0126087 0.0722782 0)
(-0.0136125 0.0723828 0)
(-0.0146239 0.0724934 0)
(-0.0156434 0.0726101 0)
(-0.0166716 0.0727327 0)
(-0.0177089 0.0728612 0)
(-0.0187562 0.0729955 0)
(-0.0198138 0.0731355 0)
(-0.0208825 0.0732811 0)
(-0.0219628 0.0734321 0)
(-0.0230554 0.0735884 0)
(-0.024161 0.0737499 0)
(-0.0252801 0.0739163 0)
(-0.0264136 0.0740876 0)
(-0.027562 0.0742635 0)
(-0.0287262 0.0744439 0)
(-0.0299068 0.0746286 0)
(-0.0311046 0.0748173 0)
(-0.0323204 0.0750099 0)
(-0.033555 0.0752061 0)
(-0.0348092 0.0754056 0)
(-0.0360839 0.0756082 0)
(-0.0373799 0.0758136 0)
(-0.0386982 0.0760215 0)
(-0.0400396 0.0762316 0)
(-0.0414051 0.0764435 0)
(-0.0427957 0.0766569 0)
(-0.0442125 0.0768715 0)
(-0.0456564 0.0770867 0)
(-0.0471286 0.0773023 0)
(-0.0486303 0.0775177 0)
(-0.0501624 0.0777326 0)
(-0.0517264 0.0779463 0)
(-0.0533234 0.0781585 0)
(-0.0549546 0.0783685 0)
(-0.0566215 0.0785757 0)
(-0.0583255 0.0787796 0)
(-0.0600679 0.0789796 0)
(-0.0618503 0.0791748 0)
(-0.0636742 0.0793647 0)
(-0.0655412 0.0795484 0)
(-0.067453 0.0797251 0)
(-0.0694113 0.0798941 0)
(-0.071418 0.0800544 0)
(-0.0734748 0.080205 0)
(-0.0755837 0.0803451 0)
(-0.0777469 0.0804735 0)
(-0.0799663 0.0805891 0)
(-0.0822442 0.0806908 0)
(-0.0845828 0.0807774 0)
(-0.0869845 0.0808476 0)
(-0.0894519 0.0809001 0)
(-0.0919875 0.0809333 0)
(-0.094594 0.080946 0)
(-0.0972741 0.0809365 0)
(-0.100031 0.0809031 0)
(-0.102867 0.0808442 0)
(-0.105787 0.080758 0)
(-0.108792 0.0806426 0)
(-0.111888 0.080496 0)
(-0.115076 0.0803163 0)
(-0.118362 0.0801013 0)
(-0.121748 0.079849 0)
(-0.12524 0.0795571 0)
(-0.128841 0.0792234 0)
(-0.132557 0.0788456 0)
(-0.13639 0.0784211 0)
(-0.140347 0.0779474 0)
(-0.144433 0.0774219 0)
(-0.148653 0.0768418 0)
(-0.153012 0.0762044 0)
(-0.157516 0.0755068 0)
(-0.162171 0.0747462 0)
(-0.166984 0.0739201 0)
(-0.17196 0.0730271 0)
(-0.177108 0.0720688 0)
(-0.182437 0.0710518 0)
(-0.187955 0.0699908 0)
(-0.193677 0.0689062 0)
(-0.199611 0.0678121 0)
(-0.205758 0.0666907 0)
(-0.212111 0.0654695 0)
(-0.218656 0.0640243 0)
(-0.225389 0.0622262 0)
(-0.232317 0.0600263 0)
(-0.239442 0.0575764 0)
(-3.41045e-05 0.0259228 0)
(-0.000418952 0.0523933 0)
(-0.00108112 0.0650181 0)
(-0.00188551 0.0707504 0)
(-0.00275872 0.0732806 0)
(-0.00366405 0.0743941 0)
(-0.00458529 0.0749015 0)
(-0.00551539 0.0751565 0)
(-0.00645147 0.0753099 0)
(-0.00739257 0.0754253 0)
(-0.0083386 0.0755298 0)
(-0.00928982 0.0756344 0)
(-0.0102467 0.0757439 0)
(-0.0112096 0.0758604 0)
(-0.0121792 0.0759847 0)
(-0.0131561 0.076117 0)
(-0.0141406 0.0762575 0)
(-0.0151336 0.0764061 0)
(-0.0161354 0.076563 0)
(-0.0171468 0.0767279 0)
(-0.0181684 0.076901 0)
(-0.0192007 0.077082 0)
(-0.0202444 0.0772709 0)
(-0.0213002 0.0774677 0)
(-0.0223686 0.0776723 0)
(-0.0234505 0.0778846 0)
(-0.0245464 0.0781044 0)
(-0.0256572 0.0783318 0)
(-0.0267835 0.0785666 0)
(-0.0279261 0.0788086 0)
(-0.0290858 0.0790578 0)
(-0.0302634 0.079314 0)
(-0.0314596 0.0795771 0)
(-0.0326754 0.079847 0)
(-0.0339116 0.0801234 0)
(-0.0351691 0.0804063 0)
(-0.0364488 0.0806954 0)
(-0.0377517 0.0809905 0)
(-0.0390788 0.0812914 0)
(-0.040431 0.081598 0)
(-0.0418095 0.08191 0)
(-0.0432153 0.0822271 0)
(-0.0446495 0.0825491 0)
(-0.0461134 0.0828758 0)
(-0.047608 0.0832067 0)
(-0.0491347 0.0835417 0)
(-0.0506947 0.0838804 0)
(-0.0522894 0.0842224 0)
(-0.0539201 0.0845674 0)
(-0.0555883 0.084915 0)
(-0.0572955 0.0852647 0)
(-0.0590432 0.0856162 0)
(-0.0608331 0.085969 0)
(-0.0626667 0.0863226 0)
(-0.0645459 0.0866764 0)
(-0.0664724 0.0870299 0)
(-0.0684482 0.0873826 0)
(-0.070475 0.0877339 0)
(-0.0725551 0.088083 0)
(-0.0746905 0.0884293 0)
(-0.0768834 0.0887721 0)
(-0.079136 0.0891106 0)
(-0.0814509 0.089444 0)
(-0.0838304 0.0897715 0)
(-0.0862771 0.0900922 0)
(-0.0887938 0.0904051 0)
(-0.0913833 0.0907093 0)
(-0.0940485 0.0910037 0)
(-0.0967924 0.0912871 0)
(-0.0996183 0.0915586 0)
(-0.102529 0.0918168 0)
(-0.105529 0.0920604 0)
(-0.108621 0.0922882 0)
(-0.111809 0.0924987 0)
(-0.115097 0.0926904 0)
(-0.118489 0.0928619 0)
(-0.121989 0.0930117 0)
(-0.125601 0.0931382 0)
(-0.129329 0.0932397 0)
(-0.133179 0.0933144 0)
(-0.137155 0.0933606 0)
(-0.141261 0.0933764 0)
(-0.145503 0.0933597 0)
(-0.149884 0.0933084 0)
(-0.154411 0.0932202 0)
(-0.159089 0.0930927 0)
(-0.163921 0.0929238 0)
(-0.168914 0.0927118 0)
(-0.174071 0.0924569 0)
(-0.179398 0.0921634 0)
(-0.184901 0.0918424 0)
(-0.190588 0.0915115 0)
(-0.196464 0.0911862 0)
(-0.202529 0.090859 0)
(-0.208774 0.0904764 0)
(-0.215178 0.0899321 0)
(-0.221722 0.0890987 0)
(-0.228395 0.0878915 0)
(-0.235204 0.0863348 0)
(-0.242166 0.0846287 0)
(-2.37473e-05 0.0266579 0)
(-0.000368036 0.0543395 0)
(-0.000986969 0.0677008 0)
(-0.0017498 0.073824 0)
(-0.00258402 0.0765477 0)
(-0.00345214 0.0777555 0)
(-0.00433713 0.0783112 0)
(-0.00523146 0.0785947 0)
(-0.006132 0.0787691 0)
(-0.00703769 0.0789035 0)
(-0.00794837 0.079027 0)
(-0.00886431 0.0791521 0)
(-0.00978592 0.0792839 0)
(-0.0107137 0.0794246 0)
(-0.0116482 0.079575 0)
(-0.01259 0.0797357 0)
(-0.0135397 0.0799067 0)
(-0.0144978 0.080088 0)
(-0.0154649 0.0802798 0)
(-0.0164417 0.080482 0)
(-0.0174288 0.0806947 0)
(-0.0184268 0.0809177 0)
(-0.0194364 0.081151 0)
(-0.0204582 0.0813948 0)
(-0.0214929 0.0816489 0)
(-0.0225412 0.0819133 0)
(-0.0236038 0.082188 0)
(-0.0246815 0.082473 0)
(-0.0257751 0.0827682 0)
(-0.0268852 0.0830736 0)
(-0.0280127 0.0833892 0)
(-0.0291584 0.0837149 0)
(-0.0303232 0.0840507 0)
(-0.0315079 0.0843964 0)
(-0.0327134 0.0847522 0)
(-0.0339407 0.0851178 0)
(-0.0351906 0.0854933 0)
(-0.0364643 0.0858785 0)
(-0.0377627 0.0862734 0)
(-0.0390868 0.0866779 0)
(-0.0404378 0.0870918 0)
(-0.0418168 0.0875152 0)
(-0.0432249 0.0879478 0)
(-0.0446634 0.0883895 0)
(-0.0461334 0.0888403 0)
(-0.0476363 0.0893 0)
(-0.0491735 0.0897684 0)
(-0.0507463 0.0902454 0)
(-0.0523561 0.0907308 0)
(-0.0540045 0.0912245 0)
(-0.055693 0.0917261 0)
(-0.0574233 0.0922356 0)
(-0.0591969 0.0927527 0)
(-0.0610157 0.0932771 0)
(-0.0628815 0.0938086 0)
(-0.0647961 0.0943469 0)
(-0.0667615 0.0948918 0)
(-0.0687798 0.0954429 0)
(-0.0708531 0.0959999 0)
(-0.0729836 0.0965625 0)
(-0.0751736 0.0971302 0)
(-0.0774256 0.0977028 0)
(-0.0797421 0.0982797 0)
(-0.0821256 0.0988605 0)
(-0.0845789 0.0994448 0)
(-0.0871049 0.100032 0)
(-0.0897066 0.100622 0)
(-0.092387 0.101213 0)
(-0.0951494 0.101806 0)
(-0.0979972 0.102399 0)
(-0.100934 0.102993 0)
(-0.103963 0.103585 0)
(-0.107089 0.104176 0)
(-0.110314 0.104764 0)
(-0.113645 0.105349 0)
(-0.117083 0.105929 0)
(-0.120635 0.106504 0)
(-0.124304 0.107072 0)
(-0.128096 0.107632 0)
(-0.132014 0.108183 0)
(-0.136064 0.108724 0)
(-0.14025 0.109252 0)
(-0.144577 0.109766 0)
(-0.149051 0.110263 0)
(-0.153675 0.110741 0)
(-0.158455 0.111197 0)
(-0.163394 0.111628 0)
(-0.168497 0.112034 0)
(-0.173769 0.112413 0)
(-0.179213 0.112773 0)
(-0.184834 0.113126 0)
(-0.190636 0.113485 0)
(-0.196619 0.113847 0)
(-0.202776 0.114174 0)
(-0.209086 0.114375 0)
(-0.215524 0.114325 0)
(-0.22207 0.113919 0)
(-0.228712 0.113128 0)
(-0.235451 0.112034 0)
(-0.242302 0.110849 0)
(-1.27918e-05 0.0272794 0)
(-0.000311908 0.0561137 0)
(-0.000880928 0.0702093 0)
(-0.00159487 0.0767329 0)
(-0.00238266 0.0796586 0)
(-0.00320617 0.0809658 0)
(-0.00404753 0.0815724 0)
(-0.00489868 0.0818858 0)
(-0.00575624 0.0820816 0)
(-0.006619 0.0822351 0)
(-0.00748675 0.0823779 0)
(-0.00835972 0.0825235 0)
(-0.00923832 0.0826775 0)
(-0.0101231 0.0828424 0)
(-0.0110145 0.0830191 0)
(-0.0119131 0.0832082 0)
(-0.0128195 0.0834098 0)
(-0.0137343 0.083624 0)
(-0.0146582 0.0838509 0)
(-0.0155916 0.0840905 0)
(-0.0165353 0.0843429 0)
(-0.0174898 0.0846081 0)
(-0.0184558 0.0848862 0)
(-0.019434 0.0851772 0)
(-0.0204251 0.0854811 0)
(-0.0214298 0.0857981 0)
(-0.0224487 0.0861281 0)
(-0.0234827 0.0864711 0)
(-0.0245325 0.0868273 0)
(-0.0255988 0.0871966 0)
(-0.0266826 0.0875792 0)
(-0.0277845 0.0879751 0)
(-0.0289055 0.0883842 0)
(-0.0300464 0.0888067 0)
(-0.0312082 0.0892427 0)
(-0.0323918 0.0896921 0)
(-0.0335981 0.090155 0)
(-0.0348281 0.0906314 0)
(-0.0360829 0.0911214 0)
(-0.0373636 0.0916251 0)
(-0.0386712 0.0921425 0)
(-0.0400068 0.0926736 0)
(-0.0413717 0.0932184 0)
(-0.0427671 0.0937771 0)
(-0.0441943 0.0943496 0)
(-0.0456545 0.0949361 0)
(-0.0471491 0.0955364 0)
(-0.0486795 0.0961507 0)
(-0.0502472 0.096779 0)
(-0.0518538 0.0974213 0)
(-0.0535007 0.0980776 0)
(-0.0551896 0.0987481 0)
(-0.0569223 0.0994326 0)
(-0.0587005 0.100131 0)
(-0.060526 0.100844 0)
(-0.0624008 0.101571 0)
(-0.0643268 0.102312 0)
(-0.0663062 0.103068 0)
(-0.0683411 0.103837 0)
(-0.0704339 0.104621 0)
(-0.0725867 0.105419 0)
(-0.0748022 0.106231 0)
(-0.0770829 0.107058 0)
(-0.0794315 0.107898 0)
(-0.0818508 0.108753 0)
(-0.0843438 0.109622 0)
(-0.0869135 0.110505 0)
(-0.0895632 0.111402 0)
(-0.0922962 0.112313 0)
(-0.095116 0.113239 0)
(-0.0980263 0.114177 0)
(-0.101031 0.11513 0)
(-0.104134 0.116096 0)
(-0.10734 0.117074 0)
(-0.110653 0.118066 0)
(-0.114077 0.11907 0)
(-0.117618 0.120086 0)
(-0.121279 0.121113 0)
(-0.125067 0.12215 0)
(-0.128987 0.123197 0)
(-0.133043 0.124253 0)
(-0.137242 0.125315 0)
(-0.141588 0.126381 0)
(-0.146088 0.12745 0)
(-0.150747 0.128518 0)
(-0.15557 0.129581 0)
(-0.160562 0.130637 0)
(-0.165729 0.131682 0)
(-0.171077 0.132719 0)
(-0.176609 0.133753 0)
(-0.182332 0.134794 0)
(-0.188249 0.13584 0)
(-0.194354 0.136863 0)
(-0.200634 0.137785 0)
(-0.207063 0.138486 0)
(-0.213617 0.13884 0)
(-0.220274 0.138775 0)
(-0.227018 0.138308 0)
(-0.233835 0.137538 0)
(-0.240723 0.136649 0)
(-1.37256e-06 0.0277777 0)
(-0.000251002 0.0576943 0)
(-0.000763568 0.0725171 0)
(-0.00142132 0.0794495 0)
(-0.00215527 0.0825854 0)
(-0.00292676 0.0839971 0)
(-0.00371711 0.0846573 0)
(-0.00451771 0.0850016 0)
(-0.00532486 0.0852194 0)
(-0.0061372 0.0853919 0)
(-0.00695445 0.0855538 0)
(-0.0077768 0.0857195 0)
(-0.00860463 0.0858954 0)
(-0.00943842 0.086084 0)
(-0.0102787 0.0862866 0)
(-0.011126 0.0865036 0)
(-0.0119809 0.0867353 0)
(-0.012844 0.0869818 0)
(-0.0137159 0.0872433 0)
(-0.0145971 0.0875198 0)
(-0.0154884 0.0878115 0)
(-0.0163902 0.0881183 0)
(-0.0173033 0.0884406 0)
(-0.0182282 0.0887782 0)
(-0.0191658 0.0891314 0)
(-0.0201166 0.0895002 0)
(-0.0210815 0.0898848 0)
(-0.022061 0.0902853 0)
(-0.023056 0.0907018 0)
(-0.0240672 0.0911344 0)
(-0.0250955 0.0915833 0)
(-0.0261416 0.0920487 0)
(-0.0272064 0.0925306 0)
(-0.0282907 0.0930291 0)
(-0.0293955 0.0935446 0)
(-0.0305217 0.0940771 0)
(-0.0316703 0.0946267 0)
(-0.0328421 0.0951937 0)
(-0.0340383 0.0957783 0)
(-0.0352598 0.0963805 0)
(-0.0365079 0.0970006 0)
(-0.0377836 0.0976388 0)
(-0.039088 0.0982953 0)
(-0.0404224 0.0989702 0)
(-0.0417881 0.0996638 0)
(-0.0431863 0.100376 0)
(-0.0446183 0.101108 0)
(-0.0460857 0.101859 0)
(-0.0475897 0.102629 0)
(-0.049132 0.10342 0)
(-0.050714 0.10423 0)
(-0.0523374 0.105061 0)
(-0.0540039 0.105913 0)
(-0.0557152 0.106785 0)
(-0.0574732 0.107679 0)
(-0.0592797 0.108594 0)
(-0.0611367 0.109531 0)
(-0.0630463 0.11049 0)
(-0.0650106 0.111471 0)
(-0.0670318 0.112476 0)
(-0.0691124 0.113504 0)
(-0.0712546 0.114556 0)
(-0.0734612 0.115632 0)
(-0.0757348 0.116732 0)
(-0.0780781 0.117857 0)
(-0.0804942 0.119009 0)
(-0.0829861 0.120186 0)
(-0.085557 0.12139 0)
(-0.0882105 0.122621 0)
(-0.09095 0.123879 0)
(-0.0937793 0.125166 0)
(-0.0967025 0.126482 0)
(-0.0997237 0.127826 0)
(-0.102847 0.129201 0)
(-0.106078 0.130606 0)
(-0.109421 0.132041 0)
(-0.112881 0.133508 0)
(-0.116464 0.135005 0)
(-0.120176 0.136534 0)
(-0.124022 0.138093 0)
(-0.128009 0.139683 0)
(-0.132143 0.141302 0)
(-0.136433 0.142949 0)
(-0.140884 0.144621 0)
(-0.145505 0.146316 0)
(-0.150303 0.148029 0)
(-0.155287 0.149758 0)
(-0.160464 0.151502 0)
(-0.165845 0.153263 0)
(-0.171439 0.155045 0)
(-0.177255 0.15685 0)
(-0.183299 0.158657 0)
(-0.189567 0.160403 0)
(-0.19605 0.161979 0)
(-0.20273 0.163247 0)
(-0.209593 0.164093 0)
(-0.216637 0.164477 0)
(-0.223854 0.164436 0)
(-0.231229 0.164052 0)
(-0.238766 0.163445 0)
(1.03804e-05 0.0281442 0)
(-0.000185852 0.0590608 0)
(-0.000635722 0.0745986 0)
(-0.0012302 0.0819464 0)
(-0.00190303 0.0853005 0)
(-0.00261525 0.086822 0)
(-0.00334737 0.0875385 0)
(-0.00409017 0.0879147 0)
(-0.00483963 0.0881545 0)
(-0.00559423 0.0883459 0)
(-0.00635356 0.0885261 0)
(-0.00711777 0.0887114 0)
(-0.00788721 0.0889083 0)
(-0.00866232 0.0891199 0)
(-0.00944362 0.0893473 0)
(-0.0102316 0.0895913 0)
(-0.0110269 0.089852 0)
(-0.0118299 0.0901297 0)
(-0.0126414 0.0904246 0)
(-0.0134618 0.0907367 0)
(-0.0142917 0.0910663 0)
(-0.0151318 0.0914135 0)
(-0.0159826 0.0917784 0)
(-0.0168448 0.0921612 0)
(-0.0177191 0.092562 0)
(-0.018606 0.0929811 0)
(-0.0195064 0.0934187 0)
(-0.0204209 0.0938748 0)
(-0.0213502 0.0943498 0)
(-0.0222951 0.0948439 0)
(-0.0232564 0.0953571 0)
(-0.0242347 0.0958899 0)
(-0.0252311 0.0964425 0)
(-0.0262462 0.097015 0)
(-0.0272809 0.0976077 0)
(-0.0283363 0.0982209 0)
(-0.0294131 0.0988549 0)
(-0.0305123 0.09951 0)
(-0.0316349 0.100186 0)
(-0.032782 0.100885 0)
(-0.0339546 0.101605 0)
(-0.0351537 0.102347 0)
(-0.0363805 0.103112 0)
(-0.0376363 0.1039 0)
(-0.0389221 0.104712 0)
(-0.0402392 0.105547 0)
(-0.0415889 0.106407 0)
(-0.0429726 0.107291 0)
(-0.0443917 0.1082 0)
(-0.0458476 0.109135 0)
(-0.0473417 0.110095 0)
(-0.0488757 0.111082 0)
(-0.0504512 0.112096 0)
(-0.0520697 0.113138 0)
(-0.0537332 0.114207 0)
(-0.0554433 0.115306 0)
(-0.0572019 0.116433 0)
(-0.0590111 0.117591 0)
(-0.0608728 0.118779 0)
(-0.0627892 0.119998 0)
(-0.0647626 0.12125 0)
(-0.0667951 0.122535 0)
(-0.0688893 0.123853 0)
(-0.0710478 0.125207 0)
(-0.0732731 0.126596 0)
(-0.0755682 0.128021 0)
(-0.0779359 0.129485 0)
(-0.0803795 0.130988 0)
(-0.0829021 0.132531 0)
(-0.0855074 0.134116 0)
(-0.0881989 0.135743 0)
(-0.0909808 0.137415 0)
(-0.0938571 0.139132 0)
(-0.0968323 0.140897 0)
(-0.0999114 0.14271 0)
(-0.103099 0.144574 0)
(-0.106402 0.146489 0)
(-0.109825 0.148459 0)
(-0.113375 0.150483 0)
(-0.117058 0.152563 0)
(-0.120884 0.1547 0)
(-0.124858 0.156896 0)
(-0.128992 0.159149 0)
(-0.133293 0.16146 0)
(-0.137773 0.163827 0)
(-0.142443 0.166249 0)
(-0.147315 0.168725 0)
(-0.152404 0.171259 0)
(-0.157726 0.173857 0)
(-0.163298 0.176521 0)
(-0.169138 0.179243 0)
(-0.175257 0.181981 0)
(-0.181665 0.184646 0)
(-0.188364 0.187109 0)
(-0.195358 0.189236 0)
(-0.202662 0.190941 0)
(-0.210303 0.192212 0)
(-0.218301 0.193093 0)
(-0.226661 0.193627 0)
(-0.235431 0.193879 0)
(2.23857e-05 0.0283719 0)
(-0.00011704 0.0601944 0)
(-0.000498458 0.0764291 0)
(-0.0010229 0.0841973 0)
(-0.00162766 0.0877772 0)
(-0.00227365 0.0894137 0)
(-0.00294058 0.0901891 0)
(-0.00361864 0.0905983 0)
(-0.00430344 0.0908602 0)
(-0.00499323 0.0910697 0)
(-0.00568753 0.0912676 0)
(-0.00638639 0.0914712 0)
(-0.00709012 0.091688 0)
(-0.00779913 0.0919211 0)
(-0.00851389 0.092172 0)
(-0.00923489 0.0924414 0)
(-0.00996265 0.0927295 0)
(-0.0106977 0.0930367 0)
(-0.0114405 0.0933631 0)
(-0.0121917 0.0937089 0)
(-0.0129518 0.0940744 0)
(-0.0137213 0.0944596 0)
(-0.0145009 0.0948649 0)
(-0.0152912 0.0952905 0)
(-0.0160927 0.0957365 0)
(-0.0169062 0.0962032 0)
(-0.0177322 0.0966909 0)
(-0.0185714 0.0971999 0)
(-0.0194245 0.0977304 0)
(-0.0202922 0.0982827 0)
(-0.0211752 0.0988572 0)
(-0.0220743 0.099454 0)
(-0.0229903 0.100074 0)
(-0.0239239 0.100716 0)
(-0.024876 0.101383 0)
(-0.0258474 0.102073 0)
(-0.026839 0.102787 0)
(-0.0278516 0.103526 0)
(-0.0288863 0.10429 0)
(-0.029944 0.105079 0)
(-0.0310256 0.105895 0)
(-0.0321323 0.106736 0)
(-0.033265 0.107605 0)
(-0.0344249 0.108501 0)
(-0.0356131 0.109425 0)
(-0.0368308 0.110377 0)
(-0.0380792 0.111358 0)
(-0.0393596 0.112369 0)
(-0.0406732 0.11341 0)
(-0.0420214 0.114482 0)
(-0.0434056 0.115586 0)
(-0.0448273 0.116721 0)
(-0.0462879 0.11789 0)
(-0.047789 0.119092 0)
(-0.0493321 0.120329 0)
(-0.050919 0.121601 0)
(-0.0525514 0.122909 0)
(-0.054231 0.124255 0)
(-0.0559597 0.125639 0)
(-0.0577395 0.127062 0)
(-0.0595724 0.128525 0)
(-0.0614604 0.13003 0)
(-0.0634057 0.131578 0)
(-0.0654107 0.13317 0)
(-0.0674777 0.134807 0)
(-0.0696092 0.136492 0)
(-0.0718079 0.138226 0)
(-0.0740766 0.14001 0)
(-0.0764182 0.141847 0)
(-0.0788358 0.143738 0)
(-0.0813329 0.145687 0)
(-0.0839129 0.147694 0)
(-0.0865797 0.149763 0)
(-0.0893374 0.151897 0)
(-0.0921905 0.154098 0)
(-0.095144 0.156369 0)
(-0.0982031 0.158715 0)
(-0.101374 0.161138 0)
(-0.104663 0.163641 0)
(-0.108077 0.16623 0)
(-0.111624 0.168907 0)
(-0.115313 0.171677 0)
(-0.119155 0.174542 0)
(-0.123161 0.177507 0)
(-0.127344 0.180576 0)
(-0.131717 0.183752 0)
(-0.1363 0.187044 0)
(-0.141111 0.190462 0)
(-0.146175 0.19402 0)
(-0.151516 0.197724 0)
(-0.157162 0.201561 0)
(-0.163137 0.205474 0)
(-0.169466 0.209364 0)
(-0.176172 0.213109 0)
(-0.183287 0.2166 0)
(-0.19086 0.21979 0)
(-0.198947 0.222697 0)
(-0.207595 0.225358 0)
(-0.216842 0.227784 0)
(-0.226785 0.23001 0)
(3.48579e-05 0.0284557 0)
(-4.50607e-05 0.061078 0)
(-0.00035327 0.0779857 0)
(-0.000801324 0.086177 0)
(-0.00133143 0.0899899 0)
(-0.00190462 0.0917467 0)
(-0.00249984 0.0925838 0)
(-0.00310663 0.0930269 0)
(-0.00372019 0.0933106 0)
(-0.00433856 0.0935375 0)
(-0.00496113 0.0937518 0)
(-0.00558786 0.0939724 0)
(-0.006219 0.0942074 0)
(-0.00685492 0.0944604 0)
(-0.00749603 0.0947329 0)
(-0.0081428 0.0950255 0)
(-0.00879567 0.0953389 0)
(-0.00945514 0.0956731 0)
(-0.0101217 0.0960286 0)
(-0.0107958 0.0964054 0)
(-0.011478 0.0968039 0)
(-0.0121688 0.0972243 0)
(-0.0128687 0.0976669 0)
(-0.0135784 0.0981319 0)
(-0.0142983 0.0986197 0)
(-0.015029 0.0991305 0)
(-0.0157712 0.0996646 0)
(-0.0165255 0.100222 0)
(-0.0172924 0.100804 0)
(-0.0180726 0.101411 0)
(-0.0188669 0.102042 0)
(-0.0196758 0.102698 0)
(-0.0205002 0.10338 0)
(-0.0213407 0.104088 0)
(-0.0221981 0.104822 0)
(-0.0230732 0.105584 0)
(-0.0239668 0.106373 0)
(-0.0248797 0.107189 0)
(-0.0258128 0.108035 0)
(-0.0267669 0.108909 0)
(-0.0277431 0.109813 0)
(-0.0287422 0.110747 0)
(-0.0297653 0.111712 0)
(-0.0308133 0.112708 0)
(-0.0318873 0.113736 0)
(-0.0329883 0.114797 0)
(-0.0341175 0.115892 0)
(-0.0352761 0.117021 0)
(-0.0364651 0.118184 0)
(-0.0376859 0.119384 0)
(-0.0389397 0.12062 0)
(-0.0402278 0.121893 0)
(-0.0415516 0.123205 0)
(-0.0429123 0.124556 0)
(-0.0443115 0.125948 0)
(-0.0457507 0.127381 0)
(-0.0472313 0.128856 0)
(-0.0487548 0.130375 0)
(-0.050323 0.131939 0)
(-0.0519374 0.133549 0)
(-0.0535998 0.135206 0)
(-0.0553119 0.136913 0)
(-0.0570756 0.13867 0)
(-0.0588927 0.140479 0)
(-0.0607652 0.142342 0)
(-0.0626951 0.144262 0)
(-0.0646845 0.14624 0)
(-0.0667356 0.148278 0)
(-0.0688508 0.150379 0)
(-0.0710323 0.152546 0)
(-0.0732828 0.154781 0)
(-0.075605 0.157088 0)
(-0.0780019 0.159471 0)
(-0.0804764 0.161933 0)
(-0.0830321 0.164478 0)
(-0.0856727 0.167112 0)
(-0.0884022 0.16984 0)
(-0.0912253 0.172666 0)
(-0.0941471 0.175598 0)
(-0.0971735 0.178643 0)
(-0.100311 0.181808 0)
(-0.103568 0.1851 0)
(-0.106952 0.188529 0)
(-0.110475 0.192104 0)
(-0.114148 0.195837 0)
(-0.117986 0.199741 0)
(-0.122007 0.203836 0)
(-0.126232 0.208146 0)
(-0.130687 0.212697 0)
(-0.135401 0.217502 0)
(-0.140404 0.222548 0)
(-0.145731 0.227783 0)
(-0.151418 0.233118 0)
(-0.157511 0.238458 0)
(-0.164075 0.243746 0)
(-0.171198 0.248987 0)
(-0.17899 0.254237 0)
(-0.187557 0.259554 0)
(-0.19706 0.264966 0)
(-0.207802 0.270528 0)
(4.58858e-05 0.0283919 0)
(2.75333e-05 0.0616971 0)
(-0.000201619 0.0792476 0)
(-0.000567508 0.0878626 0)
(-0.00101701 0.0919152 0)
(-0.00151141 0.0937976 0)
(-0.00202894 0.0946992 0)
(-0.00255846 0.0951769 0)
(-0.00309479 0.0954821 0)
(-0.0036357 0.0957253 0)
(-0.00418041 0.0959546 0)
(-0.00472882 0.0961904 0)
(-0.00528109 0.0964417 0)
(-0.00583753 0.0967123 0)
(-0.0063985 0.0970039 0)
(-0.00696439 0.0973173 0)
(-0.00753563 0.0976531 0)
(-0.00811262 0.0980115 0)
(-0.00869581 0.0983929 0)
(-0.00928563 0.0987974 0)
(-0.00988254 0.0992255 0)
(-0.010487 0.0996774 0)
(-0.0110995 0.100153 0)
(-0.0117205 0.100654 0)
(-0.0123506 0.101179 0)
(-0.0129902 0.101729 0)
(-0.0136399 0.102305 0)
(-0.0143003 0.102907 0)
(-0.0149718 0.103535 0)
(-0.0156551 0.10419 0)
(-0.0163508 0.104872 0)
(-0.0170595 0.105582 0)
(-0.0177819 0.10632 0)
(-0.0185185 0.107087 0)
(-0.0192702 0.107883 0)
(-0.0200375 0.108708 0)
(-0.0208213 0.109565 0)
(-0.0216223 0.110452 0)
(-0.0224412 0.111371 0)
(-0.0232788 0.112322 0)
(-0.0241361 0.113306 0)
(-0.0250138 0.114323 0)
(-0.0259128 0.115375 0)
(-0.0268341 0.116462 0)
(-0.0277786 0.117585 0)
(-0.0287472 0.118745 0)
(-0.0297409 0.119942 0)
(-0.0307609 0.121177 0)
(-0.031808 0.122452 0)
(-0.0328835 0.123767 0)
(-0.0339884 0.125123 0)
(-0.0351239 0.126521 0)
(-0.0362911 0.127962 0)
(-0.0374913 0.129448 0)
(-0.0387257 0.130979 0)
(-0.0399956 0.132556 0)
(-0.0413022 0.134181 0)
(-0.0426468 0.135856 0)
(-0.0440308 0.13758 0)
(-0.0454554 0.139357 0)
(-0.0469222 0.141187 0)
(-0.0484324 0.143072 0)
(-0.0499874 0.145013 0)
(-0.0515886 0.147013 0)
(-0.0532374 0.149074 0)
(-0.0549352 0.151197 0)
(-0.0566835 0.153385 0)
(-0.0584836 0.155641 0)
(-0.0603368 0.157967 0)
(-0.0622447 0.160366 0)
(-0.0642086 0.162842 0)
(-0.0662298 0.165397 0)
(-0.0683099 0.168037 0)
(-0.0704501 0.170766 0)
(-0.072652 0.173588 0)
(-0.074917 0.17651 0)
(-0.0772469 0.179538 0)
(-0.0796434 0.18268 0)
(-0.0821084 0.185943 0)
(-0.0846444 0.189338 0)
(-0.0872538 0.192874 0)
(-0.08994 0.196564 0)
(-0.092707 0.200421 0)
(-0.0955597 0.204461 0)
(-0.0985045 0.208703 0)
(-0.10155 0.213174 0)
(-0.104707 0.217905 0)
(-0.107991 0.222938 0)
(-0.111419 0.228313 0)
(-0.115014 0.234057 0)
(-0.1188 0.240174 0)
(-0.122806 0.246632 0)
(-0.12707 0.253386 0)
(-0.131644 0.260411 0)
(-0.136604 0.267744 0)
(-0.142055 0.275502 0)
(-0.148119 0.283867 0)
(-0.154946 0.293055 0)
(-0.162811 0.303314 0)
(-0.172086 0.314952 0)
(5.59889e-05 0.0281778 0)
(9.96402e-05 0.06204 0)
(-4.58803e-05 0.0801971 0)
(-0.000323726 0.0892336 0)
(-0.000687421 0.0935319 0)
(-0.00109778 0.095545 0)
(-0.00153235 0.0965138 0)
(-0.00197935 0.0970271 0)
(-0.00243314 0.0973533 0)
(-0.00289123 0.0976116 0)
(-0.00335269 0.097854 0)
(-0.00381728 0.0981029 0)
(-0.0042851 0.0983681 0)
(-0.00475638 0.0986537 0)
(-0.00523143 0.0989617 0)
(-0.00571057 0.0992929 0)
(-0.00619416 0.0996478 0)
(-0.00668254 0.100027 0)
(-0.0071761 0.100431 0)
(-0.0076752 0.100859 0)
(-0.00818023 0.101312 0)
(-0.0086916 0.101791 0)
(-0.00920971 0.102296 0)
(-0.00973498 0.102827 0)
(-0.0102679 0.103384 0)
(-0.0108088 0.103969 0)
(-0.0113582 0.104581 0)
(-0.0119166 0.105221 0)
(-0.0124845 0.105889 0)
(-0.0130624 0.106586 0)
(-0.0136507 0.107312 0)
(-0.0142501 0.108069 0)
(-0.0148611 0.108856 0)
(-0.0154842 0.109674 0)
(-0.0161202 0.110523 0)
(-0.0167695 0.111405 0)
(-0.0174328 0.11232 0)
(-0.0181108 0.113269 0)
(-0.0188042 0.114252 0)
(-0.0195136 0.11527 0)
(-0.0202398 0.116324 0)
(-0.0209836 0.117415 0)
(-0.0217457 0.118544 0)
(-0.022527 0.11971 0)
(-0.0233282 0.120916 0)
(-0.0241503 0.122163 0)
(-0.024994 0.12345 0)
(-0.0258603 0.124779 0)
(-0.0267502 0.126151 0)
(-0.0276645 0.127568 0)
(-0.0286043 0.129029 0)
(-0.0295706 0.130537 0)
(-0.0305643 0.132092 0)
(-0.0315866 0.133695 0)
(-0.0326384 0.135348 0)
(-0.0337209 0.137052 0)
(-0.034835 0.138808 0)
(-0.0359819 0.140618 0)
(-0.0371627 0.142482 0)
(-0.0383784 0.144403 0)
(-0.0396301 0.146382 0)
(-0.0409187 0.14842 0)
(-0.0422452 0.150519 0)
(-0.0436107 0.15268 0)
(-0.0450159 0.154907 0)
(-0.0464617 0.1572 0)
(-0.0479487 0.159562 0)
(-0.0494776 0.161994 0)
(-0.0510487 0.164501 0)
(-0.0526625 0.167083 0)
(-0.0543188 0.169744 0)
(-0.0560178 0.172488 0)
(-0.0577589 0.175318 0)
(-0.0595415 0.178238 0)
(-0.0613646 0.181253 0)
(-0.063227 0.184368 0)
(-0.0651267 0.187589 0)
(-0.0670617 0.190924 0)
(-0.0690291 0.19438 0)
(-0.0710256 0.197967 0)
(-0.0730475 0.201696 0)
(-0.0750901 0.205579 0)
(-0.0771481 0.20963 0)
(-0.0792155 0.213869 0)
(-0.0812856 0.218319 0)
(-0.0833511 0.223009 0)
(-0.0854044 0.227981 0)
(-0.087437 0.233282 0)
(-0.0894385 0.238958 0)
(-0.0913956 0.245041 0)
(-0.0932902 0.25154 0)
(-0.0950997 0.25844 0)
(-0.0967975 0.265728 0)
(-0.0983559 0.273429 0)
(-0.0997489 0.281645 0)
(-0.100949 0.290566 0)
(-0.101912 0.300453 0)
(-0.10255 0.311621 0)
(-0.10281 0.324438 0)
(-0.102811 0.339339 0)
(6.61233e-05 0.0278144 0)
(0.000173364 0.0620975 0)
(0.000113654 0.0808196 0)
(-7.33433e-05 0.0902724 0)
(-0.000346679 0.0948213 0)
(-0.000668381 0.0969704 0)
(-0.00101542 0.0980092 0)
(-0.00137534 0.0985588 0)
(-0.00174205 0.0989055 0)
(-0.00211276 0.0991774 0)
(-0.00248636 0.099431 0)
(-0.00286248 0.0996907 0)
(-0.00324112 0.0999671 0)
(-0.00362243 0.100265 0)
(-0.00400664 0.100586 0)
(-0.00439402 0.100931 0)
(-0.00478482 0.101302 0)
(-0.00517935 0.101698 0)
(-0.00557789 0.102119 0)
(-0.00598076 0.102567 0)
(-0.00638826 0.103041 0)
(-0.00680072 0.103542 0)
(-0.00721847 0.10407 0)
(-0.00764185 0.104626 0)
(-0.00807121 0.10521 0)
(-0.00850692 0.105823 0)
(-0.00894936 0.106464 0)
(-0.00939891 0.107135 0)
(-0.00985598 0.107836 0)
(-0.010321 0.108568 0)
(-0.0107943 0.109331 0)
(-0.0112765 0.110126 0)
(-0.011768 0.110953 0)
(-0.0122692 0.111814 0)
(-0.0127806 0.112708 0)
(-0.0133028 0.113637 0)
(-0.0138364 0.114601 0)
(-0.0143818 0.115601 0)
(-0.0149396 0.116638 0)
(-0.0155105 0.117712 0)
(-0.016095 0.118825 0)
(-0.0166939 0.119978 0)
(-0.0173077 0.121171 0)
(-0.0179372 0.122405 0)
(-0.0185831 0.123681 0)
(-0.0192461 0.125 0)
(-0.019927 0.126364 0)
(-0.0206266 0.127772 0)
(-0.0213457 0.129228 0)
(-0.0220851 0.13073 0)
(-0.0228457 0.132281 0)
(-0.0236284 0.133882 0)
(-0.024434 0.135534 0)
(-0.0252635 0.137238 0)
(-0.0261178 0.138995 0)
(-0.0269979 0.140807 0)
(-0.0279046 0.142674 0)
(-0.0288389 0.144599 0)
(-0.0298017 0.146582 0)
(-0.030794 0.148625 0)
(-0.0318165 0.15073 0)
(-0.03287 0.152896 0)
(-0.0339554 0.155127 0)
(-0.0350733 0.157423 0)
(-0.0362242 0.159786 0)
(-0.0374086 0.162218 0)
(-0.0386267 0.164719 0)
(-0.0398787 0.167292 0)
(-0.0411643 0.169938 0)
(-0.042483 0.172658 0)
(-0.0438342 0.175456 0)
(-0.0452165 0.178332 0)
(-0.0466282 0.181289 0)
(-0.0480671 0.184329 0)
(-0.0495303 0.187455 0)
(-0.0510138 0.19067 0)
(-0.0525132 0.193976 0)
(-0.0540225 0.19738 0)
(-0.0555349 0.200883 0)
(-0.0570417 0.204493 0)
(-0.0585327 0.208216 0)
(-0.0599958 0.212057 0)
(-0.0614162 0.216028 0)
(-0.0627769 0.220139 0)
(-0.0640575 0.224407 0)
(-0.0652346 0.228855 0)
(-0.0662804 0.233515 0)
(-0.0671624 0.238419 0)
(-0.0678409 0.243595 0)
(-0.0682668 0.249048 0)
(-0.0683798 0.254757 0)
(-0.0681065 0.260675 0)
(-0.0673601 0.266761 0)
(-0.06604 0.273009 0)
(-0.0640309 0.279475 0)
(-0.0611999 0.286281 0)
(-0.0573761 0.293592 0)
(-0.0523127 0.301594 0)
(-0.0457097 0.310463 0)
(-0.0374038 0.320355 0)
(7.58899e-05 0.0273048 0)
(0.000246527 0.0618649 0)
(0.000274281 0.0811031 0)
(0.000181067 0.0909646 0)
(1.53241e-06 0.0957682 0)
(-0.000227917 0.0980581 0)
(-0.000483798 0.0991699 0)
(-0.000753045 0.0997567 0)
(-0.00102906 0.100123 0)
(-0.00130876 0.100407 0)
(-0.00159082 0.10067 0)
(-0.00187472 0.100938 0)
(-0.00216038 0.101222 0)
(-0.00244786 0.101529 0)
(-0.0027373 0.10186 0)
(-0.00302887 0.102216 0)
(-0.00332278 0.102597 0)
(-0.00361924 0.103006 0)
(-0.00391845 0.103441 0)
(-0.00422063 0.103903 0)
(-0.00452602 0.104392 0)
(-0.00483486 0.10491 0)
(-0.00514739 0.105455 0)
(-0.00546386 0.10603 0)
(-0.00578455 0.106634 0)
(-0.00610972 0.107268 0)
(-0.00643965 0.107932 0)
(-0.00677463 0.108626 0)
(-0.00711497 0.109353 0)
(-0.00746099 0.110111 0)
(-0.00781301 0.110902 0)
(-0.00817139 0.111726 0)
(-0.00853647 0.112585 0)
(-0.00890864 0.113478 0)
(-0.00928828 0.114407 0)
(-0.0096758 0.115372 0)
(-0.0100716 0.116374 0)
(-0.0104762 0.117414 0)
(-0.01089 0.118493 0)
(-0.0113134 0.119611 0)
(-0.0117471 0.120771 0)
(-0.0121915 0.121972 0)
(-0.0126472 0.123216 0)
(-0.0131148 0.124503 0)
(-0.0135949 0.125835 0)
(-0.014088 0.127213 0)
(-0.0145949 0.128638 0)
(-0.0151163 0.13011 0)
(-0.0156528 0.131633 0)
(-0.0162051 0.133205 0)
(-0.0167742 0.134829 0)
(-0.0173607 0.136506 0)
(-0.0179654 0.138238 0)
(-0.0185893 0.140024 0)
(-0.0192331 0.141867 0)
(-0.0198978 0.143769 0)
(-0.0205843 0.145729 0)
(-0.0212934 0.14775 0)
(-0.0220261 0.149832 0)
(-0.0227833 0.151978 0)
(-0.0235658 0.154187 0)
(-0.0243746 0.156462 0)
(-0.0252103 0.158804 0)
(-0.0260738 0.161213 0)
(-0.0269658 0.16369 0)
(-0.0278866 0.166237 0)
(-0.0288367 0.168854 0)
(-0.0298163 0.171542 0)
(-0.0308253 0.174301 0)
(-0.0318633 0.177132 0)
(-0.0329295 0.180035 0)
(-0.0340228 0.18301 0)
(-0.0351414 0.186057 0)
(-0.0362828 0.189175 0)
(-0.0374439 0.192364 0)
(-0.0386204 0.195622 0)
(-0.039807 0.19895 0)
(-0.040997 0.202345 0)
(-0.0421822 0.205805 0)
(-0.0433525 0.20933 0)
(-0.0444954 0.212916 0)
(-0.0455962 0.216562 0)
(-0.046637 0.220264 0)
(-0.0475966 0.224021 0)
(-0.0484502 0.227837 0)
(-0.0491687 0.231717 0)
(-0.0497182 0.235672 0)
(-0.0500588 0.239708 0)
(-0.0501427 0.243818 0)
(-0.0499121 0.247965 0)
(-0.0492983 0.252079 0)
(-0.048221 0.256065 0)
(-0.0465898 0.259833 0)
(-0.044305 0.263319 0)
(-0.041261 0.266511 0)
(-0.0373463 0.269436 0)
(-0.032434 0.27214 0)
(-0.0263616 0.274643 0)
(-0.0189381 0.276909 0)
(-0.00999211 0.278815 0)
(8.47775e-05 0.0266536 0)
(0.000317417 0.0613408 0)
(0.00043343 0.0810401 0)
(0.000436176 0.0912997 0)
(0.000352985 0.096361 0)
(0.00021842 0.0987964 0)
(5.63274e-05 0.0999841 0)
(-0.000119612 0.100609 0)
(-0.000302321 0.100995 0)
(-0.000488378 0.101289 0)
(-0.000676234 0.101558 0)
(-0.000865245 0.101832 0)
(-0.00105519 0.102121 0)
(-0.00124603 0.102433 0)
(-0.00143783 0.10277 0)
(-0.00163067 0.103132 0)
(-0.00182467 0.103521 0)
(-0.00201995 0.103937 0)
(-0.00221664 0.10438 0)
(-0.00241487 0.104851 0)
(-0.00261479 0.10535 0)
(-0.00281652 0.105878 0)
(-0.00302023 0.106435 0)
(-0.00322607 0.107022 0)
(-0.0034342 0.107638 0)
(-0.0036448 0.108286 0)
(-0.00385805 0.108964 0)
(-0.00407412 0.109674 0)
(-0.00429323 0.110417 0)
(-0.00451557 0.111193 0)
(-0.00474136 0.112003 0)
(-0.00497083 0.112847 0)
(-0.00520422 0.113726 0)
(-0.00544179 0.114641 0)
(-0.00568379 0.115593 0)
(-0.00593053 0.116583 0)
(-0.0061823 0.117611 0)
(-0.00643941 0.118679 0)
(-0.0067022 0.119787 0)
(-0.00697104 0.120936 0)
(-0.0072463 0.122128 0)
(-0.00752838 0.123364 0)
(-0.00781771 0.124644 0)
(-0.00811475 0.125969 0)
(-0.00841998 0.127342 0)
(-0.00873391 0.128762 0)
(-0.00905708 0.130232 0)
(-0.00939006 0.131752 0)
(-0.00973347 0.133324 0)
(-0.010088 0.134949 0)
(-0.0104542 0.136629 0)
(-0.0108329 0.138364 0)
(-0.011225 0.140157 0)
(-0.011631 0.142008 0)
(-0.0120521 0.143919 0)
(-0.0124889 0.145891 0)
(-0.0129426 0.147926 0)
(-0.0134141 0.150025 0)
(-0.0139045 0.15219 0)
(-0.0144148 0.154421 0)
(-0.0149461 0.156719 0)
(-0.0154997 0.159087 0)
(-0.0160766 0.161524 0)
(-0.0166782 0.164032 0)
(-0.0173055 0.166611 0)
(-0.0179598 0.169263 0)
(-0.0186421 0.171986 0)
(-0.0193536 0.174781 0)
(-0.0200951 0.177649 0)
(-0.0208675 0.180587 0)
(-0.0216713 0.183594 0)
(-0.0225069 0.18667 0)
(-0.0233741 0.189811 0)
(-0.0242725 0.193014 0)
(-0.0252008 0.196276 0)
(-0.0261574 0.199591 0)
(-0.0271395 0.202954 0)
(-0.0281432 0.206359 0)
(-0.0291634 0.209795 0)
(-0.0301932 0.213255 0)
(-0.031224 0.216725 0)
(-0.0322448 0.220193 0)
(-0.0332417 0.223644 0)
(-0.0341981 0.227063 0)
(-0.0350936 0.230435 0)
(-0.0359041 0.233749 0)
(-0.0366009 0.236992 0)
(-0.0371495 0.240144 0)
(-0.0375082 0.243159 0)
(-0.0376261 0.24596 0)
(-0.0374426 0.248433 0)
(-0.0368897 0.250443 0)
(-0.0358952 0.251866 0)
(-0.0343886 0.252613 0)
(-0.0323094 0.252649 0)
(-0.029615 0.251982 0)
(-0.026286 0.250632 0)
(-0.0223242 0.248604 0)
(-0.0177353 0.245856 0)
(-0.0125117 0.242303 0)
(9.25509e-05 0.0258677 0)
(0.000385091 0.0605277 0)
(0.000589158 0.0806273 0)
(0.000688694 0.091271 0)
(0.000703263 0.0965921 0)
(0.000665177 0.0991773 0)
(0.00059844 0.100444 0)
(0.000517347 0.101108 0)
(0.000429482 0.101512 0)
(0.000338613 0.101815 0)
(0.000246518 0.102089 0)
(0.000153995 0.102364 0)
(6.13926e-05 0.102656 0)
(-3.11586e-05 0.102969 0)
(-0.000123623 0.103308 0)
(-0.000216 0.103672 0)
(-0.000308307 0.104063 0)
(-0.000400572 0.104482 0)
(-0.000492826 0.104928 0)
(-0.000585111 0.105402 0)
(-0.000677468 0.105905 0)
(-0.00076994 0.106437 0)
(-0.000862576 0.106998 0)
(-0.000955432 0.107589 0)
(-0.00104857 0.108211 0)
(-0.00114204 0.108864 0)
(-0.00123592 0.109549 0)
(-0.00133028 0.110266 0)
(-0.00142518 0.111016 0)
(-0.00152069 0.111799 0)
(-0.00161694 0.112617 0)
(-0.00171403 0.11347 0)
(-0.00181206 0.114359 0)
(-0.00191115 0.115285 0)
(-0.00201144 0.116248 0)
(-0.00211306 0.11725 0)
(-0.00221618 0.118292 0)
(-0.00232097 0.119374 0)
(-0.00242763 0.120497 0)
(-0.00253635 0.121663 0)
(-0.00264738 0.122872 0)
(-0.00276097 0.124126 0)
(-0.00287738 0.125426 0)
(-0.00299693 0.126774 0)
(-0.00311995 0.128169 0)
(-0.00324681 0.129615 0)
(-0.00337792 0.131112 0)
(-0.00351372 0.132661 0)
(-0.0036547 0.134264 0)
(-0.00380139 0.135923 0)
(-0.0039544 0.137639 0)
(-0.00411436 0.139413 0)
(-0.00428198 0.141247 0)
(-0.00445799 0.143143 0)
(-0.00464327 0.145103 0)
(-0.0048388 0.147127 0)
(-0.00504561 0.149218 0)
(-0.00526484 0.151377 0)
(-0.00549771 0.153605 0)
(-0.00574559 0.155905 0)
(-0.00600994 0.158278 0)
(-0.00629239 0.160725 0)
(-0.00659468 0.163247 0)
(-0.00691873 0.165846 0)
(-0.00726663 0.168522 0)
(-0.00764058 0.171276 0)
(-0.00804278 0.174108 0)
(-0.00847579 0.177019 0)
(-0.00894252 0.180008 0)
(-0.00944585 0.183073 0)
(-0.00998878 0.186214 0)
(-0.0105745 0.189428 0)
(-0.0112061 0.19271 0)
(-0.0118871 0.196058 0)
(-0.0126207 0.199466 0)
(-0.0134102 0.202926 0)
(-0.0142586 0.206429 0)
(-0.0151687 0.209965 0)
(-0.0161427 0.213521 0)
(-0.0171822 0.217082 0)
(-0.0182879 0.220629 0)
(-0.0194592 0.224139 0)
(-0.020694 0.22759 0)
(-0.0219881 0.230955 0)
(-0.0233351 0.234208 0)
(-0.0247257 0.237323 0)
(-0.0261473 0.240273 0)
(-0.0275819 0.243014 0)
(-0.0290045 0.245479 0)
(-0.030381 0.247565 0)
(-0.0316668 0.249141 0)
(-0.0328091 0.250072 0)
(-0.03375 0.250267 0)
(-0.0344328 0.249711 0)
(-0.0348102 0.248492 0)
(-0.0348489 0.246812 0)
(-0.0345193 0.244965 0)
(-0.0337716 0.243241 0)
(-0.0324329 0.241649 0)
(-0.0298648 0.239626 0)
(9.90753e-05 0.0249557 0)
(0.000448402 0.0594322 0)
(0.00073912 0.079866 0)
(0.000935202 0.0908762 0)
(0.00104782 0.0964575 0)
(0.0011067 0.0991969 0)
(0.00113581 0.100545 0)
(0.00115002 0.101249 0)
(0.00115742 0.101671 0)
(0.00116213 0.101981 0)
(0.00116618 0.102257 0)
(0.00117054 0.102532 0)
(0.00117568 0.102822 0)
(0.00118185 0.103133 0)
(0.00118918 0.103469 0)
(0.00119776 0.103831 0)
(0.00120765 0.10422 0)
(0.00121895 0.104635 0)
(0.00123173 0.105079 0)
(0.00124601 0.10555 0)
(0.0012618 0.10605 0)
(0.0012793 0.106579 0)
(0.00129856 0.107138 0)
(0.00131953 0.107727 0)
(0.00134232 0.108346 0)
(0.00136697 0.108996 0)
(0.00139353 0.109678 0)
(0.00142181 0.110392 0)
(0.00145238 0.11114 0)
(0.0014853 0.111921 0)
(0.00152008 0.112736 0)
(0.00155701 0.113587 0)
(0.00159614 0.114474 0)
(0.00163748 0.115398 0)
(0.00168107 0.11636 0)
(0.00172692 0.117361 0)
(0.00177503 0.118401 0)
(0.00182539 0.119483 0)
(0.00187799 0.120606 0)
(0.00193279 0.121772 0)
(0.00198974 0.122983 0)
(0.00204878 0.124239 0)
(0.0021098 0.125542 0)
(0.00217269 0.126892 0)
(0.00223731 0.128293 0)
(0.00230349 0.129744 0)
(0.00237101 0.131248 0)
(0.00243963 0.132805 0)
(0.00250903 0.134419 0)
(0.00257885 0.136089 0)
(0.00264864 0.137819 0)
(0.0027177 0.13961 0)
(0.00278524 0.141463 0)
(0.00285203 0.143381 0)
(0.00291693 0.145366 0)
(0.00297776 0.14742 0)
(0.00303417 0.149544 0)
(0.00308508 0.151741 0)
(0.00312917 0.154013 0)
(0.00316494 0.156362 0)
(0.00319064 0.158791 0)
(0.00320432 0.161301 0)
(0.00320375 0.163894 0)
(0.00318639 0.166573 0)
(0.00314923 0.169339 0)
(0.00308569 0.172194 0)
(0.00299882 0.17514 0)
(0.00288441 0.178177 0)
(0.00273102 0.181307 0)
(0.00253668 0.18453 0)
(0.00229551 0.187845 0)
(0.00200078 0.191252 0)
(0.00164544 0.194748 0)
(0.00122109 0.198332 0)
(0.000718198 0.201998 0)
(0.000126878 0.20574 0)
(-0.000563864 0.20955 0)
(-0.00136603 0.213419 0)
(-0.00229253 0.217332 0)
(-0.00335707 0.221273 0)
(-0.00457387 0.22522 0)
(-0.00595732 0.229148 0)
(-0.00752138 0.233025 0)
(-0.00927869 0.236816 0)
(-0.0112393 0.240481 0)
(-0.0134088 0.243974 0)
(-0.0157853 0.247237 0)
(-0.0183544 0.250185 0)
(-0.0210826 0.252686 0)
(-0.023907 0.254554 0)
(-0.0267245 0.255552 0)
(-0.0293792 0.255426 0)
(-0.0316472 0.253939 0)
(-0.0332062 0.250914 0)
(-0.0335865 0.246234 0)
(-0.0322009 0.239779 0)
(-0.028765 0.231196 0)
(-0.0242057 0.219894 0)
(-0.0212124 0.205638 0)
(-0.0232002 0.188754 0)
(0.000104291 0.0239283 0)
(0.000506511 0.0580649 0)
(0.000881269 0.078762 0)
(0.00117239 0.0901175 0)
(0.00138215 0.0959581 0)
(0.00153729 0.0988554 0)
(0.00166159 0.100288 0)
(0.0017704 0.101033 0)
(0.00187232 0.101473 0)
(0.00197182 0.101788 0)
(0.00207123 0.102063 0)
(0.0021717 0.102335 0)
(0.00227378 0.10262 0)
(0.00237784 0.102925 0)
(0.00248412 0.103255 0)
(0.00259282 0.10361 0)
(0.0027041 0.103991 0)
(0.00281809 0.104398 0)
(0.00293504 0.104833 0)
(0.00305511 0.105296 0)
(0.00317837 0.105787 0)
(0.00330491 0.106307 0)
(0.00343517 0.106855 0)
(0.00356929 0.107433 0)
(0.00370723 0.108041 0)
(0.00384925 0.10868 0)
(0.00399557 0.109351 0)
(0.00414634 0.110053 0)
(0.00430177 0.110788 0)
(0.00446199 0.111556 0)
(0.00462734 0.112358 0)
(0.00479802 0.113195 0)
(0.00497402 0.114068 0)
(0.00515562 0.114977 0)
(0.00534302 0.115924 0)
(0.00553642 0.116909 0)
(0.00573601 0.117934 0)
(0.00594196 0.119 0)
(0.00615447 0.120107 0)
(0.00637369 0.121256 0)
(0.0065998 0.12245 0)
(0.00683296 0.12369 0)
(0.0070733 0.124976 0)
(0.00732094 0.12631 0)
(0.00757599 0.127694 0)
(0.00783852 0.12913 0)
(0.0081086 0.130618 0)
(0.00838623 0.13216 0)
(0.00867139 0.13376 0)
(0.00896402 0.135417 0)
(0.00926398 0.137135 0)
(0.00957106 0.138916 0)
(0.009885 0.140761 0)
(0.0102055 0.142674 0)
(0.0105321 0.144655 0)
(0.0108637 0.146709 0)
(0.0112003 0.148837 0)
(0.0115411 0.151043 0)
(0.0118844 0.153329 0)
(0.0122289 0.155698 0)
(0.0125732 0.158154 0)
(0.0129153 0.160699 0)
(0.0132531 0.163337 0)
(0.0135837 0.166073 0)
(0.0139041 0.168908 0)
(0.01421 0.171847 0)
(0.0144984 0.174895 0)
(0.0147642 0.178053 0)
(0.0150002 0.181326 0)
(0.0151999 0.184717 0)
(0.0153554 0.188231 0)
(0.0154575 0.19187 0)
(0.0154949 0.195636 0)
(0.0154551 0.199533 0)
(0.0153232 0.203561 0)
(0.0150813 0.207721 0)
(0.0147111 0.212012 0)
(0.0141895 0.216432 0)
(0.0134883 0.220974 0)
(0.0125774 0.22563 0)
(0.0114209 0.230388 0)
(0.00997783 0.235228 0)
(0.00820068 0.240127 0)
(0.00603501 0.245053 0)
(0.00341817 0.249966 0)
(0.000278347 0.254812 0)
(-0.00346647 0.259515 0)
(-0.00791038 0.26395 0)
(-0.0131617 0.267922 0)
(-0.0193451 0.271143 0)
(-0.0266045 0.273233 0)
(-0.035112 0.27374 0)
(-0.0450832 0.272154 0)
(-0.0567989 0.26781 0)
(-0.0707744 0.259895 0)
(-0.0877364 0.248925 0)
(-0.105939 0.241021 0)
(-0.117723 0.249935 0)
(-0.116645 0.288511 0)
(-0.105346 0.353987 0)
(0.000108149 0.0227979 0)
(0.00055863 0.0564401 0)
(0.00101364 0.0773256 0)
(0.00139703 0.0890019 0)
(0.00170178 0.095099 0)
(0.00195133 0.0981574 0)
(0.002169 0.0996783 0)
(0.00237057 0.100465 0)
(0.00256511 0.100922 0)
(0.00275749 0.101242 0)
(0.00295027 0.101514 0)
(0.00314477 0.101779 0)
(0.00334172 0.102055 0)
(0.00354159 0.102351 0)
(0.00374471 0.10267 0)
(0.00395136 0.103013 0)
(0.00416183 0.103382 0)
(0.00437635 0.103776 0)
(0.00459521 0.104197 0)
(0.00481865 0.104645 0)
(0.00504698 0.105121 0)
(0.00528044 0.105624 0)
(0.00551933 0.106155 0)
(0.00576395 0.106715 0)
(0.00601454 0.107304 0)
(0.00627142 0.107923 0)
(0.00653495 0.108573 0)
(0.00680544 0.109253 0)
(0.00708318 0.109965 0)
(0.0073685 0.110709 0)
(0.00766178 0.111487 0)
(0.00796337 0.112298 0)
(0.0082736 0.113144 0)
(0.00859284 0.114026 0)
(0.00892148 0.114944 0)
(0.00925991 0.115899 0)
(0.0096085 0.116893 0)
(0.00996767 0.117926 0)
(0.0103378 0.119 0)
(0.0107193 0.120116 0)
(0.0111127 0.121275 0)
(0.0115182 0.122478 0)
(0.0119363 0.123727 0)
(0.0123675 0.125023 0)
(0.0128122 0.126368 0)
(0.0132707 0.127763 0)
(0.0137435 0.129211 0)
(0.0142309 0.130713 0)
(0.0147334 0.13227 0)
(0.0152512 0.133886 0)
(0.0157846 0.135562 0)
(0.016334 0.137301 0)
(0.0168995 0.139105 0)
(0.0174814 0.140977 0)
(0.0180796 0.142919 0)
(0.0186941 0.144935 0)
(0.019325 0.147028 0)
(0.0199717 0.149202 0)
(0.0206334 0.151459 0)
(0.0213107 0.153804 0)
(0.0220029 0.156242 0)
(0.0227076 0.158776 0)
(0.0234237 0.161412 0)
(0.0241495 0.164155 0)
(0.0248828 0.16701 0)
(0.0256208 0.169984 0)
(0.02636 0.173084 0)
(0.0270963 0.176316 0)
(0.0278242 0.179688 0)
(0.0285376 0.183208 0)
(0.0292291 0.186885 0)
(0.0298893 0.190729 0)
(0.030507 0.19475 0)
(0.0310689 0.198959 0)
(0.0315589 0.203369 0)
(0.0319569 0.207993 0)
(0.0322402 0.212845 0)
(0.0323801 0.217939 0)
(0.032341 0.223293 0)
(0.0320808 0.228923 0)
(0.0315475 0.234848 0)
(0.0306773 0.241089 0)
(0.0293915 0.247667 0)
(0.0275925 0.254607 0)
(0.0251597 0.261941 0)
(0.0219417 0.269703 0)
(0.0177483 0.27793 0)
(0.012341 0.286644 0)
(0.00541723 0.295838 0)
(-0.00340409 0.305457 0)
(-0.0145975 0.315425 0)
(-0.028753 0.3257 0)
(-0.0466184 0.336439 0)
(-0.0691362 0.348444 0)
(-0.0974929 0.362677 0)
(-0.133209 0.372035 0)
(-0.176478 0.345812 0)
(-0.225684 0.247828 0)
(-0.261341 0.114945 0)
(-0.229707 -0.0022118 0)
(0.000110631 0.0215779 0)
(0.000604108 0.0545757 0)
(0.00113451 0.0755716 0)
(0.00160614 0.0875408 0)
(0.00200257 0.0938897 0)
(0.00234349 0.0971118 0)
(0.00265159 0.0987236 0)
(0.00294293 0.0995546 0)
(0.00322705 0.100028 0)
(0.0035092 0.10035 0)
(0.00379217 0.100618 0)
(0.00407749 0.100874 0)
(0.00436602 0.101138 0)
(0.00465833 0.101421 0)
(0.00495486 0.101725 0)
(0.005256 0.102052 0)
(0.00556209 0.102404 0)
(0.0058735 0.10278 0)
(0.00619058 0.103182 0)
(0.0065137 0.103609 0)
(0.0068432 0.104063 0)
(0.00717941 0.104543 0)
(0.00752286 0.10505 0)
(0.00787398 0.105584 0)
(0.00823301 0.106147 0)
(0.00860041 0.106737 0)
(0.00897666 0.107357 0)
(0.00936223 0.108006 0)
(0.00975756 0.108685 0)
(0.0101631 0.109396 0)
(0.0105794 0.110137 0)
(0.0110068 0.110911 0)
(0.0114461 0.111718 0)
(0.0118979 0.112558 0)
(0.0123624 0.113434 0)
(0.0128404 0.114345 0)
(0.0133325 0.115292 0)
(0.0138392 0.116277 0)
(0.0143613 0.117301 0)
(0.0148993 0.118364 0)
(0.0154541 0.119469 0)
(0.0160262 0.120615 0)
(0.0166164 0.121806 0)
(0.0172255 0.123041 0)
(0.0178542 0.124323 0)
(0.0185033 0.125654 0)
(0.0191736 0.127034 0)
(0.0198657 0.128466 0)
(0.0205809 0.129952 0)
(0.0213202 0.131494 0)
(0.0220839 0.133095 0)
(0.022873 0.134756 0)
(0.0236885 0.13648 0)
(0.0245312 0.13827 0)
(0.0254021 0.14013 0)
(0.0263021 0.142062 0)
(0.0272319 0.14407 0)
(0.0281923 0.146158 0)
(0.029184 0.14833 0)
(0.030208 0.150591 0)
(0.0312649 0.152946 0)
(0.0323548 0.155399 0)
(0.0334782 0.157958 0)
(0.0346354 0.160628 0)
(0.0358263 0.163418 0)
(0.0370506 0.166334 0)
(0.0383076 0.169387 0)
(0.0395963 0.172586 0)
(0.0409151 0.175941 0)
(0.0422617 0.179466 0)
(0.0436333 0.183175 0)
(0.045026 0.187082 0)
(0.0464346 0.191207 0)
(0.0478528 0.195568 0)
(0.0492724 0.20019 0)
(0.0506833 0.205099 0)
(0.052073 0.210325 0)
(0.0534255 0.215905 0)
(0.054721 0.221878 0)
(0.0559358 0.228295 0)
(0.0570402 0.235211 0)
(0.0579978 0.242696 0)
(0.058765 0.25083 0)
(0.0592885 0.259713 0)
(0.0595023 0.269467 0)
(0.0593344 0.280242 0)
(0.0586956 0.292222 0)
(0.0574787 0.305616 0)
(0.0555587 0.320658 0)
(0.0527808 0.337598 0)
(0.0489601 0.356722 0)
(0.0438815 0.37841 0)
(0.0372998 0.403249 0)
(0.0290188 0.432262 0)
(0.0188098 0.467046 0)
(0.00666032 0.506984 0)
(-0.010302 0.53579 0)
(-0.0354469 0.492591 0)
(-0.0921327 0.27687 0)
(-0.153018 0.0112091 0)
(0.00011173 0.0202831 0)
(0.000642365 0.0524929 0)
(0.00124227 0.0735191 0)
(0.00179703 0.0857501 0)
(0.00228067 0.0923443 0)
(0.00270886 0.0957319 0)
(0.00310336 0.0974374 0)
(0.0034804 0.098314 0)
(0.00384996 0.0988049 0)
(0.00421766 0.0991286 0)
(0.00458654 0.0993888 0)
(0.00495831 0.0996332 0)
(0.00533396 0.0998835 0)
(0.00571418 0.100149 0)
(0.00609949 0.100435 0)
(0.00649036 0.100742 0)
(0.00688723 0.101073 0)
(0.00729054 0.101426 0)
(0.00770074 0.101803 0)
(0.00811829 0.102205 0)
(0.00854362 0.102631 0)
(0.00897716 0.103082 0)
(0.00941953 0.103558 0)
(0.00987124 0.10406 0)
(0.0103327 0.104588 0)
(0.0108044 0.105142 0)
(0.011287 0.105724 0)
(0.0117811 0.106333 0)
(0.0122872 0.10697 0)
(0.012806 0.107636 0)
(0.0133381 0.108332 0)
(0.0138841 0.109057 0)
(0.0144448 0.109813 0)
(0.0150208 0.1106 0)
(0.015613 0.11142 0)
(0.016222 0.112272 0)
(0.0168487 0.113159 0)
(0.017494 0.11408 0)
(0.0181586 0.115037 0)
(0.0188436 0.11603 0)
(0.0195498 0.117062 0)
(0.0202783 0.118132 0)
(0.02103 0.119243 0)
(0.0218061 0.120396 0)
(0.0226077 0.121591 0)
(0.023436 0.122831 0)
(0.0242922 0.124117 0)
(0.0251776 0.125451 0)
(0.0260936 0.126834 0)
(0.0270416 0.12827 0)
(0.0280232 0.129758 0)
(0.0290397 0.131304 0)
(0.0300929 0.132907 0)
(0.0311846 0.134572 0)
(0.0323164 0.136301 0)
(0.0334904 0.138097 0)
(0.0347084 0.139964 0)
(0.0359727 0.141906 0)
(0.0372854 0.143927 0)
(0.0386489 0.14603 0)
(0.0400656 0.148222 0)
(0.041538 0.150508 0)
(0.0430691 0.152893 0)
(0.0446615 0.155385 0)
(0.0463186 0.157991 0)
(0.0480435 0.16072 0)
(0.0498398 0.16358 0)
(0.0517112 0.166583 0)
(0.0536618 0.16974 0)
(0.0556958 0.173065 0)
(0.0578183 0.176573 0)
(0.0600345 0.180281 0)
(0.06235 0.18421 0)
(0.0647709 0.188381 0)
(0.0673046 0.192821 0)
(0.0699593 0.19756 0)
(0.0727441 0.202634 0)
(0.07567 0.208083 0)
(0.0787497 0.213956 0)
(0.0819984 0.220308 0)
(0.0854347 0.227205 0)
(0.0890808 0.234725 0)
(0.0929651 0.242961 0)
(0.0971232 0.252024 0)
(0.101598 0.262044 0)
(0.106448 0.27318 0)
(0.111748 0.285622 0)
(0.117588 0.299586 0)
(0.124086 0.315316 0)
(0.131383 0.333077 0)
(0.139648 0.35315 0)
(0.149092 0.37586 0)
(0.159974 0.401615 0)
(0.172661 0.430988 0)
(0.187651 0.464821 0)
(0.205589 0.504176 0)
(0.225606 0.547809 0)
(0.242967 0.581902 0)
(0.246978 0.559969 0)
(0.192719 0.433673 0)
(0.000111512 0.0189288 0)
(0.00067307 0.0502157 0)
(0.00133569 0.071191 0)
(0.00196738 0.0836497 0)
(0.00253272 0.0904807 0)
(0.00304304 0.0940348 0)
(0.00351891 0.0958369 0)
(0.00397662 0.096761 0)
(0.0044265 0.0972695 0)
(0.00487451 0.0975941 0)
(0.00532398 0.0978458 0)
(0.00577677 0.0980764 0)
(0.00623401 0.0983096 0)
(0.00669649 0.0985558 0)
(0.00716481 0.0988199 0)
(0.00763951 0.0991039 0)
(0.00812113 0.0994089 0)
(0.00861017 0.0997355 0)
(0.00910714 0.100084 0)
(0.00961259 0.100455 0)
(0.0101271 0.100848 0)
(0.0106511 0.101265 0)
(0.0111852 0.101704 0)
(0.0117301 0.102167 0)
(0.0122864 0.102654 0)
(0.0128546 0.103166 0)
(0.0134354 0.103702 0)
(0.0140296 0.104263 0)
(0.0146378 0.10485 0)
(0.0152608 0.105463 0)
(0.0158993 0.106102 0)
(0.0165541 0.106769 0)
(0.017226 0.107464 0)
(0.017916 0.108187 0)
(0.0186248 0.108938 0)
(0.0193535 0.10972 0)
(0.0201029 0.110532 0)
(0.0208743 0.111375 0)
(0.0216686 0.11225 0)
(0.0224869 0.113158 0)
(0.0233305 0.1141 0)
(0.0242005 0.115076 0)
(0.0250984 0.116088 0)
(0.0260254 0.117137 0)
(0.026983 0.118224 0)
(0.0279728 0.11935 0)
(0.0289965 0.120517 0)
(0.0300556 0.121725 0)
(0.0311521 0.122978 0)
(0.0322878 0.124275 0)
(0.0334648 0.125619 0)
(0.0346853 0.127012 0)
(0.0359516 0.128455 0)
(0.0372663 0.129952 0)
(0.0386318 0.131504 0)
(0.0400512 0.133114 0)
(0.0415274 0.134785 0)
(0.0430637 0.13652 0)
(0.0446638 0.138322 0)
(0.0463315 0.140196 0)
(0.0480709 0.142144 0)
(0.0498865 0.144172 0)
(0.0517834 0.146284 0)
(0.053767 0.148486 0)
(0.0558432 0.150784 0)
(0.0580188 0.153185 0)
(0.060301 0.155695 0)
(0.0626981 0.158323 0)
(0.0652192 0.161079 0)
(0.0678746 0.163972 0)
(0.0706759 0.167015 0)
(0.0736365 0.170219 0)
(0.0767713 0.173599 0)
(0.0800976 0.177172 0)
(0.0836355 0.180955 0)
(0.0874081 0.184971 0)
(0.0914422 0.189241 0)
(0.0957693 0.193793 0)
(0.100427 0.198656 0)
(0.105457 0.203864 0)
(0.110914 0.209456 0)
(0.116857 0.215474 0)
(0.123361 0.221967 0)
(0.130513 0.228989 0)
(0.138418 0.236601 0)
(0.147204 0.244871 0)
(0.157024 0.253873 0)
(0.168063 0.263686 0)
(0.180544 0.274391 0)
(0.194733 0.286057 0)
(0.210946 0.298735 0)
(0.229562 0.312448 0)
(0.251035 0.327195 0)
(0.275928 0.342959 0)
(0.304954 0.359717 0)
(0.339048 0.377498 0)
(0.379338 0.396521 0)
(0.42596 0.416976 0)
(0.477323 0.436097 0)
(0.52111 0.437435 0)
(0.000110042 0.0175308 0)
(0.000696032 0.0477703 0)
(0.00141386 0.0686136 0)
(0.00211539 0.0812635 0)
(0.00275599 0.0883206 0)
(0.00334238 0.0920413 0)
(0.0038937 0.0939427 0)
(0.00442614 0.0949163 0)
(0.00495033 0.0954433 0)
(0.00547256 0.0957683 0)
(0.00599639 0.0960105 0)
(0.00652386 0.0962257 0)
(0.00705624 0.0964396 0)
(0.00759438 0.0966639 0)
(0.00813896 0.0969036 0)
(0.00869061 0.0971613 0)
(0.00924989 0.0974378 0)
(0.00981739 0.0977339 0)
(0.0103937 0.0980498 0)
(0.0109794 0.0983859 0)
(0.0115751 0.0987423 0)
(0.0121814 0.0991194 0)
(0.0127989 0.0995174 0)
(0.0134284 0.0999366 0)
(0.0140705 0.100377 0)
(0.0147259 0.100839 0)
(0.0153953 0.101324 0)
(0.0160796 0.101831 0)
(0.0167796 0.10236 0)
(0.0174959 0.102913 0)
(0.0182296 0.103489 0)
(0.0189814 0.104089 0)
(0.0197523 0.104713 0)
(0.0205434 0.105362 0)
(0.0213555 0.106037 0)
(0.0221899 0.106737 0)
(0.0230475 0.107463 0)
(0.0239297 0.108217 0)
(0.0248375 0.108998 0)
(0.0257723 0.109807 0)
(0.0267355 0.110645 0)
(0.0277284 0.111512 0)
(0.0287527 0.112409 0)
(0.0298098 0.113338 0)
(0.0309015 0.114298 0)
(0.0320296 0.115291 0)
(0.033196 0.116318 0)
(0.0344027 0.117379 0)
(0.0356518 0.118476 0)
(0.0369457 0.119609 0)
(0.0382867 0.120781 0)
(0.0396775 0.121992 0)
(0.0411209 0.123244 0)
(0.0426198 0.124537 0)
(0.0441776 0.125874 0)
(0.0457977 0.127257 0)
(0.0474839 0.128687 0)
(0.0492401 0.130166 0)
(0.0510709 0.131696 0)
(0.0529811 0.133279 0)
(0.0549758 0.134919 0)
(0.0570608 0.136617 0)
(0.0592424 0.138376 0)
(0.0615274 0.1402 0)
(0.0639235 0.142091 0)
(0.0664391 0.144053 0)
(0.0690835 0.146091 0)
(0.071867 0.148207 0)
(0.0748013 0.150406 0)
(0.0778993 0.152693 0)
(0.0811754 0.155073 0)
(0.0846459 0.15755 0)
(0.0883293 0.16013 0)
(0.0922464 0.162819 0)
(0.0964206 0.165621 0)
(0.100879 0.168543 0)
(0.105652 0.17159 0)
(0.110774 0.174767 0)
(0.116284 0.178078 0)
(0.122229 0.181526 0)
(0.128659 0.185115 0)
(0.135635 0.188842 0)
(0.143223 0.192706 0)
(0.151501 0.196699 0)
(0.160557 0.200808 0)
(0.170493 0.205011 0)
(0.181424 0.209279 0)
(0.193481 0.213567 0)
(0.206814 0.21781 0)
(0.22159 0.221918 0)
(0.237995 0.225758 0)
(0.256232 0.229145 0)
(0.276519 0.231828 0)
(0.29909 0.233472 0)
(0.324192 0.233641 0)
(0.352087 0.23178 0)
(0.383069 0.227231 0)
(0.417457 0.219414 0)
(0.455493 0.208542 0)
(0.496134 0.193818 0)
(0.000107413 0.0161049 0)
(0.000711218 0.0451846 0)
(0.00147617 0.0658161 0)
(0.00223972 0.0786184 0)
(0.00294834 0.0858889 0)
(0.003604 0.0897755 0)
(0.00422412 0.0917785 0)
(0.00482463 0.0928038 0)
(0.0054164 0.0933503 0)
(0.00600599 0.093676 0)
(0.00659721 0.0939079 0)
(0.00719227 0.0941064 0)
(0.00779254 0.0942996 0)
(0.00839894 0.0945 0)
(0.00901225 0.0947134 0)
(0.0096331 0.0949423 0)
(0.0102621 0.0951879 0)
(0.0109 0.0954507 0)
(0.0115473 0.0957311 0)
(0.0122046 0.0960293 0)
(0.0128727 0.0963455 0)
(0.0135521 0.0966798 0)
(0.0142436 0.0970324 0)
(0.014948 0.0974036 0)
(0.0156658 0.0977934 0)
(0.0163979 0.0982022 0)
(0.0171452 0.09863 0)
(0.0179083 0.0990772 0)
(0.0186882 0.099544 0)
(0.0194858 0.100031 0)
(0.0203019 0.100537 0)
(0.0211375 0.101064 0)
(0.0219936 0.101612 0)
(0.0228713 0.10218 0)
(0.0237716 0.10277 0)
(0.0246957 0.103381 0)
(0.0256448 0.104014 0)
(0.0266202 0.104669 0)
(0.0276231 0.105347 0)
(0.028655 0.106047 0)
(0.0297173 0.106771 0)
(0.0308114 0.107518 0)
(0.0319392 0.10829 0)
(0.0331022 0.109086 0)
(0.0343023 0.109907 0)
(0.0355413 0.110753 0)
(0.0368214 0.111625 0)
(0.0381447 0.112524 0)
(0.0395134 0.113449 0)
(0.04093 0.114402 0)
(0.0423972 0.115383 0)
(0.0439177 0.116392 0)
(0.0454944 0.117431 0)
(0.0471306 0.118499 0)
(0.0488298 0.119597 0)
(0.0505955 0.120727 0)
(0.0524318 0.121887 0)
(0.054343 0.123081 0)
(0.0563336 0.124307 0)
(0.0584087 0.125566 0)
(0.0605737 0.12686 0)
(0.0628346 0.128188 0)
(0.0651977 0.129551 0)
(0.0676702 0.130951 0)
(0.0702595 0.132386 0)
(0.0729743 0.133857 0)
(0.0758235 0.135364 0)
(0.0788173 0.136908 0)
(0.0819668 0.138487 0)
(0.0852843 0.140101 0)
(0.0887831 0.141748 0)
(0.092478 0.143427 0)
(0.0963855 0.145134 0)
(0.100523 0.146866 0)
(0.104912 0.148618 0)
(0.109573 0.150385 0)
(0.114531 0.152158 0)
(0.119812 0.153928 0)
(0.125447 0.155683 0)
(0.131467 0.157406 0)
(0.137909 0.159081 0)
(0.144811 0.160683 0)
(0.152216 0.162186 0)
(0.160171 0.163554 0)
(0.168725 0.164747 0)
(0.177931 0.165714 0)
(0.187848 0.166394 0)
(0.198535 0.166713 0)
(0.210056 0.166582 0)
(0.222473 0.165891 0)
(0.23585 0.164507 0)
(0.250247 0.162261 0)
(0.265713 0.158951 0)
(0.282287 0.154328 0)
(0.299988 0.148096 0)
(0.318811 0.139912 0)
(0.338712 0.129388 0)
(0.359627 0.116109 0)
(0.381479 0.0998049 0)
(0.404316 0.080068 0)
(0.000103739 0.0146663 0)
(0.000718771 0.0424874 0)
(0.00152241 0.0628295 0)
(0.00233959 0.0757439 0)
(0.0031084 0.0832134 0)
(0.0038259 0.0872636 0)
(0.00450757 0.0893703 0)
(0.00516893 0.0904497 0)
(0.00582096 0.0910174 0)
(0.00647051 0.0913443 0)
(0.0071216 0.0915657 0)
(0.00777658 0.0917469 0)
(0.00843692 0.0919182 0)
(0.00910363 0.0920935 0)
(0.0097775 0.0922791 0)
(0.0104592 0.0924777 0)
(0.0111495 0.0926906 0)
(0.0118489 0.0929183 0)
(0.0125582 0.0931612 0)
(0.013278 0.0934193 0)
(0.0140089 0.0936929 0)
(0.0147517 0.093982 0)
(0.015507 0.0942867 0)
(0.0162757 0.0946071 0)
(0.0170585 0.0949434 0)
(0.0178562 0.0952955 0)
(0.0186695 0.0956637 0)
(0.0194994 0.096048 0)
(0.0203467 0.0964485 0)
(0.0212123 0.0968653 0)
(0.0220972 0.0972986 0)
(0.0230024 0.0977485 0)
(0.0239288 0.0982151 0)
(0.0248776 0.0986984 0)
(0.0258498 0.0991987 0)
(0.0268466 0.099716 0)
(0.0278693 0.10025 0)
(0.0289191 0.100802 0)
(0.0299973 0.101371 0)
(0.0311054 0.101958 0)
(0.0322447 0.102562 0)
(0.033417 0.103183 0)
(0.0346237 0.103823 0)
(0.0358666 0.10448 0)
(0.0371475 0.105155 0)
(0.0384683 0.105848 0)
(0.039831 0.106558 0)
(0.0412377 0.107287 0)
(0.0426908 0.108034 0)
(0.0441926 0.108798 0)
(0.0457456 0.10958 0)
(0.0473525 0.11038 0)
(0.0490163 0.111197 0)
(0.05074 0.112032 0)
(0.0525268 0.112883 0)
(0.0543802 0.113751 0)
(0.0563041 0.114635 0)
(0.0583024 0.115535 0)
(0.0603793 0.116449 0)
(0.0625395 0.117378 0)
(0.0647878 0.11832 0)
(0.0671297 0.119274 0)
(0.0695707 0.120239 0)
(0.0721171 0.121212 0)
(0.0747754 0.122193 0)
(0.0775528 0.123178 0)
(0.0804569 0.124165 0)
(0.083496 0.125151 0)
(0.086679 0.126131 0)
(0.0900156 0.127102 0)
(0.0935161 0.128057 0)
(0.0971916 0.128991 0)
(0.101054 0.129896 0)
(0.105117 0.130764 0)
(0.109393 0.131584 0)
(0.113898 0.132344 0)
(0.118647 0.133031 0)
(0.123658 0.133628 0)
(0.128948 0.134118 0)
(0.134535 0.134479 0)
(0.14044 0.134686 0)
(0.146683 0.134711 0)
(0.153284 0.134523 0)
(0.160265 0.134084 0)
(0.167647 0.133353 0)
(0.17545 0.132282 0)
(0.183692 0.130816 0)
(0.192392 0.128895 0)
(0.201561 0.126448 0)
(0.211207 0.123393 0)
(0.221331 0.119638 0)
(0.231924 0.115074 0)
(0.242963 0.109576 0)
(0.254405 0.102999 0)
(0.266185 0.0951762 0)
(0.278207 0.0859238 0)
(0.290337 0.0750433 0)
(0.302393 0.0623262 0)
(0.314154 0.0475968 0)
(0.32528 0.030475 0)
(9.91676e-05 0.0132299 0)
(0.00071902 0.0397081 0)
(0.00155271 0.0596865 0)
(0.00241476 0.0726713 0)
(0.00323547 0.0803235 0)
(0.00400695 0.0845343 0)
(0.00474253 0.0867463 0)
(0.00545711 0.0878823 0)
(0.00616175 0.0884729 0)
(0.00686348 0.0888019 0)
(0.00756652 0.0890133 0)
(0.00827338 0.089177 0)
(0.00898561 0.089326 0)
(0.00970427 0.0894756 0)
(0.0104302 0.0896326 0)
(0.0111641 0.0898 0)
(0.0119067 0.0899792 0)
(0.0126586 0.0901708 0)
(0.0134205 0.090375 0)
(0.0141931 0.090592 0)
(0.0149769 0.0908218 0)
(0.0157729 0.0910644 0)
(0.0165816 0.0913199 0)
(0.0174038 0.0915882 0)
(0.0182403 0.0918694 0)
(0.0190918 0.0921634 0)
(0.0199593 0.0924704 0)
(0.0208435 0.0927902 0)
(0.0217453 0.0931229 0)
(0.0226656 0.0934684 0)
(0.0236053 0.0938267 0)
(0.0245654 0.0941979 0)
(0.0255469 0.0945817 0)
(0.0265509 0.0949783 0)
(0.0275784 0.0953876 0)
(0.0286307 0.0958094 0)
(0.0297087 0.0962437 0)
(0.0308139 0.0966904 0)
(0.0319475 0.0971493 0)
(0.0331107 0.0976204 0)
(0.0343051 0.0981034 0)
(0.0355321 0.0985981 0)
(0.0367933 0.0991044 0)
(0.0380902 0.099622 0)
(0.0394246 0.100151 0)
(0.0407982 0.10069 0)
(0.0422129 0.101239 0)
(0.0436707 0.101799 0)
(0.0451736 0.102367 0)
(0.0467238 0.102945 0)
(0.0483237 0.103531 0)
(0.0499756 0.104124 0)
(0.0516821 0.104724 0)
(0.053446 0.10533 0)
(0.05527 0.105941 0)
(0.0571571 0.106555 0)
(0.0591107 0.107172 0)
(0.061134 0.10779 0)
(0.0632306 0.108408 0)
(0.0654043 0.109022 0)
(0.0676591 0.109633 0)
(0.0699993 0.110236 0)
(0.0724293 0.11083 0)
(0.0749538 0.111411 0)
(0.0775779 0.111977 0)
(0.0803068 0.112522 0)
(0.0831462 0.113043 0)
(0.0861018 0.113536 0)
(0.0891799 0.113993 0)
(0.092387 0.114409 0)
(0.0957297 0.114776 0)
(0.0992151 0.115087 0)
(0.10285 0.115332 0)
(0.106643 0.1155 0)
(0.110602 0.11558 0)
(0.114733 0.115558 0)
(0.119045 0.115419 0)
(0.123546 0.115146 0)
(0.128244 0.11472 0)
(0.133145 0.11412 0)
(0.138257 0.113324 0)
(0.143585 0.112303 0)
(0.149133 0.111031 0)
(0.154906 0.109475 0)
(0.160902 0.107602 0)
(0.167121 0.105374 0)
(0.173556 0.10275 0)
(0.180197 0.0996858 0)
(0.187028 0.0961317 0)
(0.194025 0.0920342 0)
(0.201157 0.0873332 0)
(0.208381 0.0819614 0)
(0.215644 0.0758421 0)
(0.222877 0.0688881 0)
(0.229996 0.0610009 0)
(0.2369 0.0520723 0)
(0.243472 0.0419878 0)
(0.249575 0.0306314 0)
(0.255083 0.0179123 0)
(0.259779 0.00362791 0)
(9.3844e-05 0.0118094 0)
(0.000712423 0.0368753 0)
(0.00156757 0.0564203 0)
(0.00246555 0.0694331 0)
(0.00332963 0.07725 0)
(0.00414698 0.081617 0)
(0.00492855 0.0839357 0)
(0.00568853 0.0851307 0)
(0.00643788 0.0857463 0)
(0.00718382 0.0860789 0)
(0.00793074 0.086281 0)
(0.00868126 0.0864275 0)
(0.00943703 0.0865544 0)
(0.0101992 0.0866783 0)
(0.0109685 0.0868066 0)
(0.0117457 0.0869427 0)
(0.0125316 0.0870881 0)
(0.0133267 0.0872434 0)
(0.0141318 0.0874088 0)
(0.0149474 0.0875845 0)
(0.0157743 0.0877703 0)
(0.0166131 0.0879662 0)
(0.0174646 0.0881723 0)
(0.0183295 0.0883885 0)
(0.0192085 0.0886146 0)
(0.0201024 0.0888505 0)
(0.021012 0.0890963 0)
(0.0219381 0.0893518 0)
(0.0228815 0.0896168 0)
(0.0238432 0.0898913 0)
(0.0248239 0.0901751 0)
(0.0258247 0.090468 0)
(0.0268464 0.0907699 0)
(0.0278901 0.0910806 0)
(0.0289568 0.0913999 0)
(0.0300476 0.0917274 0)
(0.0311635 0.0920631 0)
(0.0323057 0.0924065 0)
(0.0334754 0.0927574 0)
(0.0346738 0.0931154 0)
(0.0359022 0.0934802 0)
(0.037162 0.0938512 0)
(0.0384545 0.0942281 0)
(0.0397812 0.0946104 0)
(0.0411436 0.0949974 0)
(0.0425432 0.0953886 0)
(0.0439817 0.0957832 0)
(0.0454609 0.0961805 0)
(0.0469824 0.0965797 0)
(0.0485482 0.0969799 0)
(0.0501602 0.09738 0)
(0.0518205 0.0977791 0)
(0.053531 0.0981757 0)
(0.0552941 0.0985686 0)
(0.0571121 0.0989564 0)
(0.0589873 0.0993373 0)
(0.0609222 0.0997096 0)
(0.0629195 0.100071 0)
(0.0649818 0.10042 0)
(0.067112 0.100754 0)
(0.0693129 0.101069 0)
(0.0715877 0.101364 0)
(0.0739394 0.101635 0)
(0.0763712 0.101878 0)
(0.0788864 0.102088 0)
(0.0814885 0.102263 0)
(0.0841808 0.102396 0)
(0.0869669 0.102482 0)
(0.0898503 0.102515 0)
(0.0928344 0.102489 0)
(0.0959228 0.102395 0)
(0.0991187 0.102226 0)
(0.102425 0.101972 0)
(0.105846 0.101622 0)
(0.109383 0.101167 0)
(0.113039 0.100593 0)
(0.116815 0.0998867 0)
(0.120713 0.0990334 0)
(0.124732 0.0980168 0)
(0.128873 0.0968194 0)
(0.133132 0.0954223 0)
(0.137507 0.0938054 0)
(0.141992 0.0919472 0)
(0.146579 0.0898254 0)
(0.151259 0.0874164 0)
(0.156017 0.0846962 0)
(0.160837 0.0816399 0)
(0.165698 0.0782219 0)
(0.170575 0.0744162 0)
(0.175435 0.0701956 0)
(0.180242 0.0655316 0)
(0.184951 0.0603928 0)
(0.18951 0.0547438 0)
(0.19386 0.0485434 0)
(0.197932 0.0417437 0)
(0.201649 0.0342904 0)
(0.204925 0.0261247 0)
(0.20766 0.0171869 0)
(0.209757 0.00743038 0)
(0.210999 -0.00324571 0)
(8.79023e-05 0.0104174 0)
(0.000699501 0.0340173 0)
(0.00156767 0.0530639 0)
(0.00249267 0.0660624 0)
(0.00339154 0.0740245 0)
(0.00424657 0.0785422 0)
(0.00506622 0.0809681 0)
(0.00586371 0.0822246 0)
(0.00664988 0.0828676 0)
(0.00743206 0.0832055 0)
(0.00821477 0.0833995 0)
(0.00900077 0.0835298 0)
(0.00979176 0.0836353 0)
(0.0105889 0.083734 0)
(0.011393 0.0838341 0)
(0.0122048 0.0839395 0)
(0.013025 0.0840517 0)
(0.0138542 0.0841713 0)
(0.0146931 0.0842985 0)
(0.0155422 0.0844335 0)
(0.0164023 0.0845762 0)
(0.017274 0.0847264 0)
(0.018158 0.0848841 0)
(0.019055 0.0850491 0)
(0.0199656 0.0852214 0)
(0.0208906 0.0854006 0)
(0.0218308 0.0855867 0)
(0.022787 0.0857795 0)
(0.0237598 0.0859787 0)
(0.0247501 0.0861842 0)
(0.0257587 0.0863957 0)
(0.0267866 0.0866129 0)
(0.0278345 0.0868356 0)
(0.0289033 0.0870634 0)
(0.0299941 0.087296 0)
(0.0311077 0.087533 0)
(0.0322452 0.0877741 0)
(0.0334076 0.0880188 0)
(0.0345958 0.0882667 0)
(0.0358111 0.0885172 0)
(0.0370546 0.0887698 0)
(0.0383273 0.0890239 0)
(0.0396305 0.0892788 0)
(0.0409655 0.089534 0)
(0.0423335 0.0897885 0)
(0.0437358 0.0900416 0)
(0.0451739 0.0902924 0)
(0.046649 0.0905399 0)
(0.0481627 0.090783 0)
(0.0497165 0.0910207 0)
(0.0513118 0.0912517 0)
(0.0529503 0.0914746 0)
(0.0546336 0.091688 0)
(0.0563634 0.0918902 0)
(0.0581414 0.0920796 0)
(0.0599693 0.0922542 0)
(0.061849 0.0924121 0)
(0.0637822 0.0925509 0)
(0.0657707 0.0926684 0)
(0.0678166 0.0927617 0)
(0.0699215 0.0928281 0)
(0.0720875 0.0928644 0)
(0.0743163 0.0928673 0)
(0.0766099 0.092833 0)
(0.07897 0.0927574 0)
(0.0813984 0.0926363 0)
(0.0838967 0.0924647 0)
(0.0864663 0.0922375 0)
(0.0891088 0.091949 0)
(0.0918252 0.091593 0)
(0.0946164 0.0911627 0)
(0.0974831 0.0906509 0)
(0.100425 0.0900496 0)
(0.103443 0.0893503 0)
(0.106536 0.0885438 0)
(0.109701 0.0876201 0)
(0.112938 0.0865686 0)
(0.116243 0.0853779 0)
(0.119612 0.0840361 0)
(0.12304 0.0825304 0)
(0.12652 0.080848 0)
(0.130043 0.0789752 0)
(0.133601 0.0768986 0)
(0.137181 0.0746048 0)
(0.140769 0.0720807 0)
(0.144348 0.069314 0)
(0.147899 0.0662934 0)
(0.151399 0.0630087 0)
(0.154822 0.059451 0)
(0.158138 0.0556123 0)
(0.161312 0.051485 0)
(0.164306 0.0470603 0)
(0.167075 0.0423264 0)
(0.169568 0.0372667 0)
(0.17173 0.0318576 0)
(0.173498 0.0260677 0)
(0.174805 0.0198594 0)
(0.175572 0.0131919 0)
(0.175728 0.00603145 0)
(0.175082 -0.00167502 0)
(8.15021e-05 0.00906516 0)
(0.000680929 0.0311605 0)
(0.00155405 0.0496496 0)
(0.00249736 0.0625919 0)
(0.00342252 0.0706784 0)
(0.00430712 0.0753401 0)
(0.00515696 0.0778733 0)
(0.00598421 0.0791935 0)
(0.00679945 0.0798664 0)
(0.00761005 0.0802117 0)
(0.00842066 0.0803992 0)
(0.00923414 0.0805146 0)
(0.0100522 0.0805997 0)
(0.0108761 0.0806743 0)
(0.0117066 0.0807474 0)
(0.0125445 0.0808232 0)
(0.0133904 0.0809033 0)
(0.0142449 0.0809885 0)
(0.0151086 0.081079 0)
(0.0159821 0.0811749 0)
(0.0168661 0.081276 0)
(0.0177611 0.0813823 0)
(0.0186678 0.0814936 0)
(0.0195868 0.0816096 0)
(0.0205188 0.0817303 0)
(0.0214645 0.0818553 0)
(0.0224245 0.0819844 0)
(0.0233995 0.0821174 0)
(0.0243903 0.0822541 0)
(0.0253975 0.082394 0)
(0.026422 0.0825369 0)
(0.0274645 0.0826825 0)
(0.0285257 0.0828303 0)
(0.0296065 0.08298 0)
(0.0307078 0.0831312 0)
(0.0318302 0.0832833 0)
(0.0329748 0.083436 0)
(0.0341423 0.0835886 0)
(0.0353337 0.0837407 0)
(0.03655 0.0838915 0)
(0.0377919 0.0840405 0)
(0.0390607 0.0841869 0)
(0.0403571 0.08433 0)
(0.0416823 0.084469 0)
(0.0430372 0.084603 0)
(0.044423 0.084731 0)
(0.0458406 0.084852 0)
(0.0472913 0.084965 0)
(0.0487761 0.0850689 0)
(0.0502961 0.0851623 0)
(0.0518525 0.0852438 0)
(0.0534465 0.0853122 0)
(0.0550791 0.0853658 0)
(0.0567516 0.0854029 0)
(0.0584652 0.0854218 0)
(0.0602209 0.0854205 0)
(0.06202 0.0853971 0)
(0.0638636 0.0853492 0)
(0.0657528 0.0852745 0)
(0.0676886 0.0851704 0)
(0.069672 0.0850342 0)
(0.0717041 0.084863 0)
(0.0737856 0.0846536 0)
(0.0759173 0.0844026 0)
(0.0780999 0.0841064 0)
(0.0803338 0.0837611 0)
(0.0826194 0.0833625 0)
(0.0849567 0.0829062 0)
(0.0873457 0.0823875 0)
(0.0897859 0.0818011 0)
(0.0922766 0.0811418 0)
(0.0948166 0.0804037 0)
(0.0974044 0.0795808 0)
(0.100038 0.0786666 0)
(0.102714 0.0776544 0)
(0.10543 0.0765369 0)
(0.108182 0.0753069 0)
(0.110964 0.0739566 0)
(0.113771 0.0724783 0)
(0.116596 0.0708641 0)
(0.11943 0.0691062 0)
(0.122265 0.067197 0)
(0.125089 0.0651294 0)
(0.12789 0.0628973 0)
(0.130654 0.0604952 0)
(0.133366 0.0579195 0)
(0.136007 0.0551681 0)
(0.138559 0.0522409 0)
(0.141 0.0491403 0)
(0.143305 0.0458705 0)
(0.145449 0.0424371 0)
(0.147401 0.0388459 0)
(0.14913 0.0351008 0)
(0.1506 0.0312018 0)
(0.151773 0.0271427 0)
(0.152605 0.0229104 0)
(0.153052 0.0184862 0)
(0.153063 0.0138499 0)
(0.152587 0.00898748 0)
(0.151498 0.00388694 0)
(7.47849e-05 0.00776251 0)
(0.000657403 0.0283298 0)
(0.00152788 0.0462087 0)
(0.00248112 0.0590536 0)
(0.00342434 0.0672425 0)
(0.00433062 0.0720403 0)
(0.00520305 0.0746801 0)
(0.00605256 0.0760661 0)
(0.00688938 0.0767714 0)
(0.00772088 0.0771265 0)
(0.0085518 0.0773094 0)
(0.00938509 0.0774116 0)
(0.0102225 0.0774779 0)
(0.0110653 0.0775299 0)
(0.0119143 0.0775775 0)
(0.0127702 0.0776252 0)
(0.0136336 0.077675 0)
(0.0145051 0.0777276 0)
(0.0153852 0.0777834 0)
(0.0162745 0.0778424 0)
(0.0171736 0.0779044 0)
(0.018083 0.0779692 0)
(0.0190033 0.0780368 0)
(0.0199351 0.0781067 0)
(0.020879 0.078179 0)
(0.0218356 0.0782531 0)
(0.0228055 0.0783289 0)
(0.0237894 0.0784061 0)
(0.0247878 0.0784844 0)
(0.0258015 0.0785633 0)
(0.026831 0.0786425 0)
(0.027877 0.0787217 0)
(0.0289403 0.0788003 0)
(0.0300215 0.078878 0)
(0.0311213 0.0789542 0)
(0.0322404 0.0790285 0)
(0.0333796 0.0791003 0)
(0.0345396 0.079169 0)
(0.0357211 0.0792339 0)
(0.0369249 0.0792945 0)
(0.0381518 0.0793499 0)
(0.0394026 0.0793995 0)
(0.0406779 0.0794424 0)
(0.0419788 0.0794777 0)
(0.0433058 0.0795046 0)
(0.0446599 0.0795221 0)
(0.0460419 0.079529 0)
(0.0474525 0.0795244 0)
(0.0488925 0.079507 0)
(0.0503628 0.0794756 0)
(0.0518642 0.0794287 0)
(0.0533974 0.0793651 0)
(0.0549633 0.0792832 0)
(0.0565624 0.0791814 0)
(0.0581956 0.0790579 0)
(0.0598635 0.0789111 0)
(0.0615668 0.0787388 0)
(0.063306 0.0785392 0)
(0.0650817 0.07831 0)
(0.0668942 0.0780489 0)
(0.068744 0.0777535 0)
(0.0706314 0.0774213 0)
(0.0725563 0.0770496 0)
(0.074519 0.0766354 0)
(0.0765192 0.0761758 0)
(0.0785566 0.0756675 0)
(0.0806307 0.0751072 0)
(0.0827407 0.0744915 0)
(0.0848857 0.0738165 0)
(0.0870643 0.0730785 0)
(0.0892749 0.0722735 0)
(0.0915155 0.0713973 0)
(0.0937838 0.0704455 0)
(0.0960768 0.0694138 0)
(0.0983912 0.0682977 0)
(0.100723 0.0670925 0)
(0.103068 0.0657938 0)
(0.10542 0.064397 0)
(0.107774 0.0628977 0)
(0.110124 0.0612918 0)
(0.11246 0.0595755 0)
(0.114775 0.0577456 0)
(0.11706 0.0557995 0)
(0.119303 0.0537356 0)
(0.121495 0.0515535 0)
(0.123622 0.0492544 0)
(0.125672 0.0468413 0)
(0.12763 0.0443195 0)
(0.129483 0.0416968 0)
(0.131214 0.0389834 0)
(0.132809 0.0361913 0)
(0.134248 0.0333332 0)
(0.135516 0.0304206 0)
(0.136592 0.0274611 0)
(0.137457 0.0244569 0)
(0.138091 0.0214031 0)
(0.138472 0.018289 0)
(0.138576 0.0151023 0)
(0.138382 0.0118367 0)
(0.137824 0.00849868 0)
(6.78947e-05 0.00651773 0)
(0.000629683 0.0255477 0)
(0.00149048 0.0427702 0)
(0.00244574 0.0554778 0)
(0.00339914 0.0637465 0)
(0.00431956 0.0686715 0)
(0.00520729 0.0714165 0)
(0.00607193 0.07287 0)
(0.00692324 0.0736103 0)
(0.00776854 0.0739775 0)
(0.00861264 0.0741581 0)
(0.00945854 0.0742489 0)
(0.0103081 0.0742983 0)
(0.0111624 0.0743295 0)
(0.0120225 0.0743534 0)
(0.0128889 0.0743751 0)
(0.0137622 0.0743967 0)
(0.0146429 0.0744191 0)
(0.0155316 0.0744427 0)
(0.0164288 0.0744673 0)
(0.017335 0.074493 0)
(0.0182507 0.0745195 0)
(0.0191764 0.0745466 0)
(0.0201126 0.0745741 0)
(0.0210599 0.0746016 0)
(0.0220188 0.074629 0)
(0.0229898 0.0746558 0)
(0.0239736 0.0746818 0)
(0.0249706 0.0747065 0)
(0.0259813 0.0747297 0)
(0.0270065 0.0747509 0)
(0.0280465 0.0747697 0)
(0.0291021 0.0747855 0)
(0.0301738 0.0747981 0)
(0.0312621 0.0748067 0)
(0.0323677 0.074811 0)
(0.0334912 0.0748102 0)
(0.0346331 0.0748038 0)
(0.0357941 0.0747912 0)
(0.0369747 0.0747716 0)
(0.0381756 0.0747443 0)
(0.0393974 0.0747086 0)
(0.0406406 0.0746636 0)
(0.0419059 0.0746085 0)
(0.0431939 0.0745424 0)
(0.044505 0.0744642 0)
(0.04584 0.074373 0)
(0.0471994 0.0742677 0)
(0.0485837 0.0741472 0)
(0.0499934 0.0740102 0)
(0.0514291 0.0738556 0)
(0.0528912 0.0736819 0)
(0.0543802 0.0734878 0)
(0.0558964 0.0732718 0)
(0.0574402 0.0730323 0)
(0.0590119 0.0727678 0)
(0.0606118 0.0724765 0)
(0.0622401 0.0721567 0)
(0.0638968 0.0718065 0)
(0.065582 0.0714239 0)
(0.0672956 0.0710069 0)
(0.0690374 0.0705533 0)
(0.0708072 0.0700611 0)
(0.0726044 0.0695278 0)
(0.0744285 0.068951 0)
(0.0762787 0.0683284 0)
(0.0781541 0.0676574 0)
(0.0800534 0.0669353 0)
(0.0819754 0.0661596 0)
(0.0839184 0.0653273 0)
(0.0858805 0.0644358 0)
(0.0878594 0.0634823 0)
(0.0898527 0.0624639 0)
(0.0918574 0.0613779 0)
(0.0938702 0.0602216 0)
(0.0958875 0.0589924 0)
(0.0979051 0.0576877 0)
(0.0999185 0.0563054 0)
(0.101923 0.0548434 0)
(0.103912 0.0533001 0)
(0.10588 0.0516743 0)
(0.10782 0.0499654 0)
(0.109726 0.0481733 0)
(0.11159 0.0462988 0)
(0.113403 0.0443438 0)
(0.115159 0.0423113 0)
(0.116847 0.040206 0)
(0.11846 0.0380342 0)
(0.119989 0.0358048 0)
(0.121427 0.0335283 0)
(0.122764 0.0312174 0)
(0.123994 0.0288849 0)
(0.125109 0.0265424 0)
(0.126102 0.0241977 0)
(0.126967 0.0218523 0)
(0.127699 0.0195004 0)
(0.128294 0.0171289 0)
(0.128747 0.0147212 0)
(0.129062 0.0122647 0)
(0.129212 0.00976081 0)
(6.09366e-05 0.00533758 0)
(0.000598467 0.0228345 0)
(0.00144323 0.0393612 0)
(0.00239314 0.0518935 0)
(0.00334934 0.0602186 0)
(0.0042768 0.0652605 0)
(0.00517301 0.0681085 0)
(0.0060461 0.069631 0)
(0.00690531 0.0704087 0)
(0.00775782 0.0707906 0)
(0.00860848 0.0709711 0)
(0.00946032 0.0710528 0)
(0.0103152 0.0710873 0)
(0.0111744 0.0710998 0)
(0.0120387 0.0711022 0)
(0.0129087 0.0711002 0)
(0.013785 0.071096 0)
(0.014668 0.0710908 0)
(0.0155583 0.0710848 0)
(0.0164562 0.0710782 0)
(0.0173623 0.0710707 0)
(0.018277 0.0710623 0)
(0.0192007 0.0710526 0)
(0.0201339 0.0710415 0)
(0.0210771 0.0710285 0)
(0.0220307 0.0710135 0)
(0.0229952 0.0709961 0)
(0.0239711 0.0709759 0)
(0.0249587 0.0709526 0)
(0.0259587 0.0709258 0)
(0.0269715 0.070895 0)
(0.0279975 0.0708598 0)
(0.0290372 0.0708198 0)
(0.0300912 0.0707744 0)
(0.0311598 0.0707232 0)
(0.0322435 0.0706656 0)
(0.0333429 0.0706009 0)
(0.0344584 0.0705287 0)
(0.0355904 0.0704482 0)
(0.0367395 0.0703589 0)
(0.037906 0.0702598 0)
(0.0390905 0.0701504 0)
(0.0402933 0.0700298 0)
(0.0415149 0.0698972 0)
(0.0427557 0.0697518 0)
(0.0440161 0.0695925 0)
(0.0452965 0.0694185 0)
(0.0465972 0.0692288 0)
(0.0479185 0.0690223 0)
(0.0492609 0.0687979 0)
(0.0506245 0.0685545 0)
(0.0520096 0.0682908 0)
(0.0534164 0.0680057 0)
(0.054845 0.0676978 0)
(0.0562956 0.0673658 0)
(0.0577682 0.0670083 0)
(0.0592627 0.0666238 0)
(0.0607792 0.0662109 0)
(0.0623174 0.065768 0)
(0.0638772 0.0652934 0)
(0.0654581 0.0647856 0)
(0.0670597 0.0642428 0)
(0.0686816 0.0636633 0)
(0.070323 0.0630453 0)
(0.0719831 0.0623871 0)
(0.073661 0.0616867 0)
(0.0753556 0.0609424 0)
(0.0770657 0.0601523 0)
(0.0787898 0.0593144 0)
(0.0805262 0.058427 0)
(0.0822732 0.0574882 0)
(0.0840287 0.0564962 0)
(0.0857903 0.0554493 0)
(0.0875556 0.0543459 0)
(0.0893218 0.0531846 0)
(0.0910858 0.0519639 0)
(0.0928444 0.0506828 0)
(0.0945939 0.0493403 0)
(0.0963305 0.0479359 0)
(0.0980501 0.0464694 0)
(0.0997483 0.0449407 0)
(0.101421 0.0433506 0)
(0.103062 0.0417 0)
(0.104668 0.0399906 0)
(0.106233 0.0382246 0)
(0.107753 0.0364053 0)
(0.109222 0.0345368 0)
(0.110636 0.0326246 0)
(0.111991 0.030676 0)
(0.113283 0.0286997 0)
(0.114508 0.0267053 0)
(0.115666 0.0247028 0)
(0.116755 0.0227001 0)
(0.117775 0.020701 0)
(0.118727 0.0187021 0)
(0.119615 0.0166915 0)
(0.120442 0.0146483 0)
(0.121216 0.0125449 0)
(0.121948 0.0103532 0)
(0.122632 0.00805666 0)
(5.40281e-05 0.00422731 0)
(0.000564502 0.0202078 0)
(0.00138754 0.0360064 0)
(0.0023254 0.0483272 0)
(0.00327756 0.056685 0)
(0.00420547 0.0618328 0)
(0.00510382 0.0647808 0)
(0.00597923 0.066373 0)
(0.00684027 0.0671904 0)
(0.00769395 0.0675896 0)
(0.00854512 0.0677725 0)
(0.00939687 0.0678472 0)
(0.0102511 0.067869 0)
(0.011109 0.067865 0)
(0.0119714 0.0678483 0)
(0.0128388 0.0678249 0)
(0.0137119 0.0677976 0)
(0.014591 0.0677675 0)
(0.0154765 0.0677351 0)
(0.0163689 0.0677003 0)
(0.0172685 0.0676632 0)
(0.0181758 0.0676234 0)
(0.0190911 0.0675809 0)
(0.0200148 0.0675352 0)
(0.0209474 0.0674862 0)
(0.0218892 0.0674335 0)
(0.0228406 0.0673768 0)
(0.0238019 0.0673156 0)
(0.0247737 0.0672498 0)
(0.0257563 0.0671788 0)
(0.02675 0.0671022 0)
(0.0277553 0.0670197 0)
(0.0287726 0.0669307 0)
(0.0298021 0.0668348 0)
(0.0308444 0.0667314 0)
(0.0318997 0.0666201 0)
(0.0329685 0.0665002 0)
(0.0340511 0.0663712 0)
(0.0351477 0.0662325 0)
(0.0362589 0.0660834 0)
(0.0373849 0.0659232 0)
(0.038526 0.0657512 0)
(0.0396825 0.0655667 0)
(0.0408548 0.065369 0)
(0.042043 0.0651571 0)
(0.0432475 0.0649304 0)
(0.0444684 0.0646878 0)
(0.045706 0.0644286 0)
(0.0469604 0.0641517 0)
(0.0482317 0.0638562 0)
(0.0495202 0.0635411 0)
(0.0508258 0.0632053 0)
(0.0521486 0.0628478 0)
(0.0534885 0.0624674 0)
(0.0548456 0.062063 0)
(0.0562196 0.0616334 0)
(0.0576105 0.0611774 0)
(0.0590179 0.0606938 0)
(0.0604416 0.0601813 0)
(0.0618812 0.0596386 0)
(0.0633362 0.0590645 0)
(0.0648061 0.0584575 0)
(0.0662902 0.0578164 0)
(0.0677879 0.0571398 0)
(0.0692982 0.0564263 0)
(0.0708203 0.0556747 0)
(0.072353 0.0548836 0)
(0.0738952 0.0540517 0)
(0.0754455 0.0531778 0)
(0.0770025 0.0522605 0)
(0.0785646 0.0512988 0)
(0.0801301 0.0502915 0)
(0.081697 0.0492376 0)
(0.0832634 0.0481363 0)
(0.084827 0.0469866 0)
(0.0863856 0.0457882 0)
(0.0879365 0.0445405 0)
(0.0894774 0.0432434 0)
(0.0910053 0.0418968 0)
(0.0925175 0.0405013 0)
(0.094011 0.0390573 0)
(0.0954828 0.0375658 0)
(0.0969298 0.036028 0)
(0.0983491 0.0344457 0)
(0.0997375 0.0328209 0)
(0.101092 0.0311563 0)
(0.10241 0.0294551 0)
(0.103689 0.0277218 0)
(0.104926 0.0259616 0)
(0.106119 0.024181 0)
(0.107267 0.022387 0)
(0.108368 0.0205859 0)
(0.109422 0.018782 0)
(0.110429 0.0169746 0)
(0.111388 0.0151555 0)
(0.112302 0.0133074 0)
(0.11317 0.0114025 0)
(0.113994 0.00940471 0)
(0.114776 0.00727475 0)
(0.115505 0.0049825 0)
(4.72592e-05 0.00319079 0)
(0.000528476 0.0176828 0)
(0.00132487 0.0327276 0)
(0.00224461 0.0448032 0)
(0.00318651 0.0531699 0)
(0.00410883 0.0584116 0)
(0.00500355 0.0614557 0)
(0.00587568 0.063118 0)
(0.00673308 0.0639772 0)
(0.00758251 0.064396 0)
(0.00842878 0.0645837 0)
(0.009275 0.0646538 0)
(0.0101231 0.0646651 0)
(0.0109742 0.0646469 0)
(0.0118293 0.0646134 0)
(0.0126887 0.0645713 0)
(0.0135531 0.0645235 0)
(0.0144228 0.0644714 0)
(0.0152981 0.0644155 0)
(0.0161794 0.0643559 0)
(0.0170671 0.0642926 0)
(0.0179614 0.0642253 0)
(0.0188628 0.0641538 0)
(0.0197715 0.0640778 0)
(0.020688 0.0639971 0)
(0.0216124 0.0639114 0)
(0.0225452 0.0638203 0)
(0.0234866 0.0637235 0)
(0.024437 0.0636207 0)
(0.0253967 0.0635113 0)
(0.0263661 0.0633952 0)
(0.0273453 0.0632717 0)
(0.0283348 0.0631406 0)
(0.0293347 0.0630013 0)
(0.0303455 0.0628533 0)
(0.0313673 0.0626961 0)
(0.0324005 0.0625293 0)
(0.0334453 0.0623521 0)
(0.034502 0.0621642 0)
(0.0355708 0.0619648 0)
(0.0366519 0.0617534 0)
(0.0377455 0.0615293 0)
(0.0388519 0.0612918 0)
(0.0399711 0.0610402 0)
(0.0411035 0.0607738 0)
(0.042249 0.0604919 0)
(0.0434078 0.0601936 0)
(0.04458 0.0598782 0)
(0.0457656 0.0595448 0)
(0.0469647 0.0591926 0)
(0.0481772 0.0588207 0)
(0.0494032 0.0584282 0)
(0.0506425 0.0580141 0)
(0.0518949 0.0575777 0)
(0.0531604 0.0571178 0)
(0.0544388 0.0566335 0)
(0.0557297 0.0561238 0)
(0.0570328 0.0555877 0)
(0.0583478 0.0550242 0)
(0.0596742 0.0544323 0)
(0.0610115 0.0538109 0)
(0.0623591 0.053159 0)
(0.0637165 0.0524756 0)
(0.0650828 0.0517597 0)
(0.0664574 0.0510103 0)
(0.0678392 0.0502263 0)
(0.0692274 0.049407 0)
(0.070621 0.0485513 0)
(0.0720187 0.0476584 0)
(0.0734193 0.0467275 0)
(0.0748217 0.0457577 0)
(0.0762242 0.0447485 0)
(0.0776256 0.0436993 0)
(0.0790241 0.0426094 0)
(0.0804182 0.0414786 0)
(0.081806 0.0403067 0)
(0.0831859 0.0390934 0)
(0.084556 0.037839 0)
(0.0859144 0.0365437 0)
(0.0872591 0.035208 0)
(0.0885883 0.0338326 0)
(0.0899 0.0324184 0)
(0.0911922 0.0309667 0)
(0.0924631 0.0294789 0)
(0.0937108 0.027957 0)
(0.0949335 0.0264031 0)
(0.0961293 0.0248203 0)
(0.0972965 0.0232124 0)
(0.0984333 0.0215839 0)
(0.0995383 0.0199405 0)
(0.10061 0.0182879 0)
(0.101646 0.0166316 0)
(0.102646 0.0149743 0)
(0.103607 0.0133145 0)
(0.10453 0.0116435 0)
(0.10541 0.00994388 0)
(0.106247 0.00818852 0)
(0.107036 0.0063424 0)
(0.107775 0.00436727 0)
(0.108445 0.00223389 0)
(4.07112e-05 0.00223059 0)
(0.000491046 0.015272 0)
(0.00125658 0.0295443 0)
(0.00215289 0.0413435 0)
(0.00307891 0.0496952 0)
(0.00399019 0.055018 0)
(0.00487607 0.0581535 0)
(0.00573991 0.0598857 0)
(0.00658877 0.0607883 0)
(0.00742913 0.061229 0)
(0.00826571 0.0614239 0)
(0.00910163 0.0614917 0)
(0.00993882 0.0614948 0)
(0.0107785 0.0614647 0)
(0.0116214 0.0614168 0)
(0.0124681 0.0613584 0)
(0.0133191 0.0612928 0)
(0.0141746 0.0612216 0)
(0.0150349 0.0611454 0)
(0.0159005 0.0610642 0)
(0.0167715 0.0609781 0)
(0.0176483 0.0608869 0)
(0.0185311 0.0607903 0)
(0.0194202 0.0606882 0)
(0.0203159 0.0605802 0)
(0.0212184 0.0604661 0)
(0.0221281 0.0603455 0)
(0.0230451 0.0602181 0)
(0.0239697 0.0600836 0)
(0.0249022 0.0599416 0)
(0.0258429 0.0597917 0)
(0.0267919 0.0596336 0)
(0.0277494 0.0594667 0)
(0.0287158 0.0592908 0)
(0.0296912 0.0591052 0)
(0.0306758 0.0589097 0)
(0.0316699 0.0587036 0)
(0.0326735 0.0584864 0)
(0.0336868 0.0582577 0)
(0.0347101 0.0580169 0)
(0.0357435 0.0577634 0)
(0.0367871 0.0574965 0)
(0.0378409 0.0572159 0)
(0.0389051 0.0569207 0)
(0.0399798 0.0566103 0)
(0.0410649 0.0562841 0)
(0.0421606 0.0559414 0)
(0.0432668 0.0555815 0)
(0.0443834 0.0552037 0)
(0.0455105 0.0548072 0)
(0.046648 0.0543912 0)
(0.0477957 0.0539551 0)
(0.0489534 0.053498 0)
(0.050121 0.0530192 0)
(0.0512983 0.0525178 0)
(0.052485 0.0519931 0)
(0.0536807 0.0514441 0)
(0.0548852 0.0508702 0)
(0.0560979 0.0502705 0)
(0.0573186 0.0496442 0)
(0.0585466 0.0489904 0)
(0.0597814 0.0483084 0)
(0.0610225 0.0475973 0)
(0.0622691 0.0468565 0)
(0.0635206 0.0460852 0)
(0.0647762 0.0452826 0)
(0.066035 0.044448 0)
(0.0672961 0.0435809 0)
(0.0685587 0.0426806 0)
(0.0698217 0.0417465 0)
(0.0710841 0.0407781 0)
(0.0723448 0.039775 0)
(0.0736026 0.0387368 0)
(0.0748563 0.0376633 0)
(0.0761048 0.0365541 0)
(0.0773466 0.0354094 0)
(0.0785806 0.034229 0)
(0.0798054 0.0330131 0)
(0.0810197 0.0317621 0)
(0.0822222 0.0304765 0)
(0.0834116 0.0291568 0)
(0.0845866 0.0278039 0)
(0.085746 0.026419 0)
(0.0868886 0.0250033 0)
(0.0880132 0.0235586 0)
(0.0891187 0.0220871 0)
(0.0902041 0.0205917 0)
(0.0912682 0.0190761 0)
(0.0923101 0.0175451 0)
(0.0933289 0.0160041 0)
(0.0943234 0.0144594 0)
(0.0952929 0.0129165 0)
(0.0962362 0.011379 0)
(0.0971522 0.00984629 0)
(0.0980394 0.00831179 0)
(0.0988957 0.0067607 0)
(0.0997185 0.00516966 0)
(0.100503 0.00350806 0)
(0.101246 0.00174244 0)
(0.101932 -0.000152828 0)
(3.44415e-05 0.00134803 0)
(0.000452791 0.0129855 0)
(0.00118398 0.0264728 0)
(0.00205221 0.0379673 0)
(0.00295739 0.0462806 0)
(0.00385279 0.0516708 0)
(0.00472522 0.0548923 0)
(0.00557636 0.0566935 0)
(0.00641241 0.0576408 0)
(0.00723947 0.0581056 0)
(0.0080622 0.0583098 0)
(0.00888368 0.0583775 0)
(0.00970587 0.0583747 0)
(0.01053 0.058335 0)
(0.0113567 0.058275 0)
(0.0121866 0.0582027 0)
(0.0130201 0.058122 0)
(0.0138574 0.0580345 0)
(0.0146988 0.0579409 0)
(0.0155447 0.0578413 0)
(0.0163951 0.0577358 0)
(0.0172504 0.0576242 0)
(0.0181108 0.0575064 0)
(0.0189765 0.057382 0)
(0.0198477 0.0572509 0)
(0.0207247 0.0571128 0)
(0.0216076 0.0569673 0)
(0.0224966 0.0568142 0)
(0.023392 0.0566531 0)
(0.024294 0.0564837 0)
(0.0252026 0.0563057 0)
(0.0261182 0.0561187 0)
(0.0270408 0.0559222 0)
(0.0279706 0.0557159 0)
(0.0289079 0.0554995 0)
(0.0298526 0.0552723 0)
(0.030805 0.0550341 0)
(0.0317651 0.0547843 0)
(0.0327331 0.0545225 0)
(0.033709 0.0542481 0)
(0.0346929 0.0539607 0)
(0.035685 0.0536597 0)
(0.0366851 0.0533446 0)
(0.0376934 0.0530148 0)
(0.0387098 0.0526698 0)
(0.0397344 0.052309 0)
(0.0407671 0.0519318 0)
(0.0418077 0.0515375 0)
(0.0428564 0.0511256 0)
(0.0439128 0.0506955 0)
(0.0449769 0.0502464 0)
(0.0460486 0.0497777 0)
(0.0471276 0.0492888 0)
(0.0482137 0.0487791 0)
(0.0493067 0.0482478 0)
(0.0504062 0.0476942 0)
(0.051512 0.0471178 0)
(0.0526236 0.0465179 0)
(0.0537407 0.0458937 0)
(0.0548628 0.0452447 0)
(0.0559895 0.0445701 0)
(0.0571203 0.0438694 0)
(0.0582545 0.0431419 0)
(0.0593917 0.0423871 0)
(0.0605311 0.0416044 0)
(0.0616722 0.0407932 0)
(0.0628142 0.0399529 0)
(0.0639564 0.0390832 0)
(0.0650981 0.0381835 0)
(0.0662383 0.0372535 0)
(0.0673763 0.0362928 0)
(0.0685112 0.0353011 0)
(0.0696421 0.034278 0)
(0.0707681 0.0332235 0)
(0.0718883 0.0321375 0)
(0.0730017 0.0310197 0)
(0.0741074 0.0298704 0)
(0.0752046 0.0286897 0)
(0.0762922 0.0274778 0)
(0.0773695 0.0262352 0)
(0.0784354 0.0249623 0)
(0.0794893 0.0236598 0)
(0.0805305 0.0223287 0)
(0.0815581 0.02097 0)
(0.0825717 0.0195853 0)
(0.0835708 0.0181765 0)
(0.084555 0.0167463 0)
(0.0855243 0.015298 0)
(0.0864786 0.013836 0)
(0.0874181 0.0123658 0)
(0.0883434 0.0108933 0)
(0.0892551 0.00942401 0)
(0.0901539 0.00796208 0)
(0.0910405 0.00650806 0)
(0.0919156 0.00505706 0)
(0.0927791 0.00359706 0)
(0.0936305 0.00210828 0)
(0.0944678 0.000564226 0)
(0.095289 -0.00106437 0)
(0.0960763 -0.00280138 0)
(2.84654e-05 0.000543325 0)
(0.000414211 0.0108308 0)
(0.0011083 0.023527 0)
(0.00194452 0.0346913 0)
(0.00282456 0.0429432 0)
(0.00369982 0.0483869 0)
(0.00455475 0.0516878 0)
(0.00538935 0.0535566 0)
(0.00620887 0.0545495 0)
(0.00701904 0.0550402 0)
(0.00782436 0.0552559 0)
(0.00862789 0.0553257 0)
(0.00943157 0.055319 0)
(0.0102366 0.0552718 0)
(0.0110437 0.055202 0)
(0.0118534 0.0551183 0)
(0.012666 0.055025 0)
(0.0134819 0.0549238 0)
(0.0143011 0.0548156 0)
(0.0151239 0.0547006 0)
(0.0159506 0.0545789 0)
(0.0167813 0.0544503 0)
(0.0176161 0.0543148 0)
(0.0184554 0.0541719 0)
(0.0192992 0.0540217 0)
(0.0201476 0.0538636 0)
(0.021001 0.0536976 0)
(0.0218593 0.0535233 0)
(0.0227229 0.0533404 0)
(0.0235917 0.0531486 0)
(0.0244659 0.0529476 0)
(0.0253458 0.052737 0)
(0.0262312 0.0525165 0)
(0.0271225 0.0522857 0)
(0.0280196 0.0520443 0)
(0.0289228 0.0517918 0)
(0.0298319 0.0515279 0)
(0.0307471 0.0512521 0)
(0.0316685 0.0509641 0)
(0.0325961 0.0506633 0)
(0.0335298 0.0503493 0)
(0.0344698 0.0500217 0)
(0.035416 0.0496799 0)
(0.0363684 0.0493236 0)
(0.0373269 0.0489521 0)
(0.0382915 0.048565 0)
(0.039262 0.0481618 0)
(0.0402384 0.0477419 0)
(0.0412206 0.0473049 0)
(0.0422085 0.0468501 0)
(0.0432017 0.046377 0)
(0.0442002 0.0458852 0)
(0.0452037 0.0453739 0)
(0.046212 0.0448427 0)
(0.0472248 0.0442911 0)
(0.0482418 0.0437183 0)
(0.0492627 0.0431241 0)
(0.0502872 0.0425076 0)
(0.0513148 0.0418685 0)
(0.0523451 0.0412061 0)
(0.0533777 0.0405201 0)
(0.0544121 0.0398097 0)
(0.0554479 0.0390747 0)
(0.0564845 0.0383144 0)
(0.0575214 0.0375284 0)
(0.058558 0.0367163 0)
(0.0595936 0.0358776 0)
(0.0606277 0.0350121 0)
(0.0616596 0.0341193 0)
(0.0626887 0.0331988 0)
(0.0637143 0.0322505 0)
(0.0647358 0.031274 0)
(0.0657523 0.0302692 0)
(0.0667632 0.0292358 0)
(0.0677679 0.0281738 0)
(0.0687655 0.0270832 0)
(0.0697555 0.0259638 0)
(0.0707372 0.0248159 0)
(0.0717098 0.0236396 0)
(0.072673 0.0224351 0)
(0.073626 0.0212028 0)
(0.0745683 0.0199431 0)
(0.0754997 0.0186566 0)
(0.0764197 0.0173441 0)
(0.0773282 0.0160066 0)
(0.0782251 0.0146455 0)
(0.0791106 0.0132625 0)
(0.0799852 0.0118603 0)
(0.0808496 0.0104421 0)
(0.081705 0.00901209 0)
(0.0825529 0.00757501 0)
(0.0833953 0.00613548 0)
(0.0842346 0.00469688 0)
(0.0850734 0.00325974 0)
(0.0859145 0.00181993 0)
(0.0867603 0.00036698 0)
(0.0876133 -0.00111683 0)
(0.088475 -0.00265574 0)
(0.089347 -0.00427744 0)
(0.0902222 -0.00600663 0)
(2.27681e-05 -0.000184498 0)
(0.000375705 0.00881342 0)
(0.00103066 0.0207181 0)
(0.00183166 0.0315298 0)
(0.00268288 0.039698 0)
(0.00353434 0.0451805 0)
(0.0043683 0.048554 0)
(0.00518305 0.0504881 0)
(0.0059829 0.0515272 0)
(0.00677311 0.0520453 0)
(0.00755802 0.0522743 0)
(0.00834065 0.0523481 0)
(0.00912293 0.0523396 0)
(0.00990605 0.0522869 0)
(0.0106907 0.0522094 0)
(0.0114774 0.0521166 0)
(0.0122664 0.052013 0)
(0.013058 0.0519006 0)
(0.0138524 0.0517806 0)
(0.0146496 0.051653 0)
(0.0154499 0.0515181 0)
(0.0162535 0.0513757 0)
(0.0170604 0.0512257 0)
(0.0178708 0.0510679 0)
(0.0186849 0.0509021 0)
(0.0195027 0.0507281 0)
(0.0203243 0.0505455 0)
(0.02115 0.0503541 0)
(0.0219797 0.0501538 0)
(0.0228135 0.0499441 0)
(0.0236517 0.0497247 0)
(0.0244942 0.0494955 0)
(0.0253411 0.049256 0)
(0.0261924 0.049006 0)
(0.0270483 0.048745 0)
(0.0279088 0.0484728 0)
(0.0287739 0.048189 0)
(0.0296436 0.0478932 0)
(0.0305179 0.0475851 0)
(0.0313969 0.0472642 0)
(0.0322804 0.0469301 0)
(0.0331685 0.0465825 0)
(0.0340612 0.0462209 0)
(0.0349583 0.045845 0)
(0.0358598 0.0454541 0)
(0.0367656 0.045048 0)
(0.0376755 0.0446262 0)
(0.0385894 0.0441883 0)
(0.0395073 0.0437337 0)
(0.0404288 0.043262 0)
(0.0413539 0.0427728 0)
(0.0422823 0.0422655 0)
(0.0432138 0.0417398 0)
(0.0441481 0.0411952 0)
(0.045085 0.0406311 0)
(0.046024 0.0400472 0)
(0.0469651 0.0394429 0)
(0.0479077 0.0388179 0)
(0.0488515 0.0381716 0)
(0.0497961 0.0375037 0)
(0.0507412 0.0368136 0)
(0.0516863 0.0361011 0)
(0.0526309 0.0353655 0)
(0.0535746 0.0346067 0)
(0.0545168 0.0338241 0)
(0.0554571 0.0330174 0)
(0.056395 0.0321863 0)
(0.0573299 0.0313304 0)
(0.0582613 0.0304495 0)
(0.0591885 0.0295432 0)
(0.0601111 0.0286113 0)
(0.0610285 0.0276536 0)
(0.0619401 0.0266697 0)
(0.0628454 0.0256597 0)
(0.0637437 0.0246232 0)
(0.0646346 0.0235603 0)
(0.0655176 0.0224708 0)
(0.0663921 0.0213548 0)
(0.0672576 0.0202121 0)
(0.0681139 0.019043 0)
(0.0689605 0.0178476 0)
(0.0697971 0.0166259 0)
(0.0706235 0.0153783 0)
(0.0714397 0.014105 0)
(0.0722456 0.0128064 0)
(0.0730416 0.011483 0)
(0.073828 0.0101358 0)
(0.0746056 0.00876584 0)
(0.0753755 0.00737503 0)
(0.0761393 0.00596567 0)
(0.076899 0.00454054 0)
(0.0776572 0.00310239 0)
(0.0784169 0.00165333 0)
(0.0791814 0.000192625 0)
(0.0799542 -0.0012844 0)
(0.0807382 -0.00278783 0)
(0.0815367 -0.00433417 0)
(0.0823534 -0.00594651 0)
(0.0831925 -0.00765287 0)
(0.08405 -0.0094818 0)
(1.79771e-05 -0.000836481 0)
(0.000338606 0.00693691 0)
(0.000952571 0.018055 0)
(0.00171559 0.0284946 0)
(0.00253483 0.0365579 0)
(0.00335932 0.0420643 0)
(0.0041693 0.0455025 0)
(0.00496142 0.0474993 0)
(0.00573896 0.0485844 0)
(0.00650669 0.0491311 0)
(0.00726874 0.0493752 0)
(0.00802806 0.0494549 0)
(0.00878657 0.0494463 0)
(0.00954544 0.0493901 0)
(0.0103054 0.0493069 0)
(0.0110668 0.0492069 0)
(0.01183 0.0490952 0)
(0.0125952 0.0489741 0)
(0.0133626 0.0488446 0)
(0.0141322 0.0487071 0)
(0.0149042 0.0485617 0)
(0.0156787 0.0484084 0)
(0.0164559 0.0482471 0)
(0.0172357 0.0480775 0)
(0.0180183 0.0478995 0)
(0.0188038 0.0477129 0)
(0.0195923 0.0475174 0)
(0.0203838 0.0473129 0)
(0.0211783 0.047099 0)
(0.0219761 0.0468755 0)
(0.022777 0.0466421 0)
(0.0235812 0.0463986 0)
(0.0243887 0.0461447 0)
(0.0251995 0.0458801 0)
(0.0260136 0.0456045 0)
(0.0268311 0.0453176 0)
(0.0276518 0.0450191 0)
(0.0284759 0.0447085 0)
(0.0293033 0.0443857 0)
(0.030134 0.0440503 0)
(0.0309678 0.0437018 0)
(0.0318047 0.0433401 0)
(0.0326448 0.0429646 0)
(0.0334877 0.042575 0)
(0.0343335 0.042171 0)
(0.0351821 0.0417522 0)
(0.0360333 0.0413181 0)
(0.0368869 0.0408685 0)
(0.0377428 0.0404029 0)
(0.0386007 0.0399209 0)
(0.0394606 0.0394222 0)
(0.0403221 0.0389063 0)
(0.0411851 0.0383728 0)
(0.0420492 0.0378214 0)
(0.0429141 0.0372517 0)
(0.0437797 0.0366633 0)
(0.0446456 0.0360558 0)
(0.0455113 0.0354288 0)
(0.0463767 0.0347819 0)
(0.0472413 0.0341148 0)
(0.0481048 0.0334271 0)
(0.0489666 0.0327185 0)
(0.0498265 0.0319885 0)
(0.0506839 0.031237 0)
(0.0515384 0.0304635 0)
(0.0523896 0.0296677 0)
(0.053237 0.0288493 0)
(0.0540801 0.0280081 0)
(0.0549184 0.0271437 0)
(0.0557513 0.0262559 0)
(0.0565785 0.0253445 0)
(0.0573993 0.0244091 0)
(0.0582134 0.0234496 0)
(0.0590201 0.0224657 0)
(0.0598191 0.0214573 0)
(0.0606097 0.0204241 0)
(0.0613917 0.019366 0)
(0.0621645 0.0182829 0)
(0.0629277 0.0171746 0)
(0.0636811 0.016041 0)
(0.0644242 0.014882 0)
(0.0651569 0.0136975 0)
(0.0658789 0.0124873 0)
(0.0665901 0.0112513 0)
(0.0672905 0.00998938 0)
(0.0679802 0.00870134 0)
(0.0686593 0.00738715 0)
(0.0693284 0.00604693 0)
(0.069988 0.00468109 0)
(0.0706391 0.00329041 0)
(0.071283 0.00187616 0)
(0.0719227 0.000439216 0)
(0.0725592 -0.00102087 0)
(0.0731923 -0.002506 0)
(0.0738242 -0.00402112 0)
(0.0744583 -0.00557564 0)
(0.0750967 -0.00718479 0)
(0.0757387 -0.00887031 0)
(0.0763832 -0.0106595 0)
(0.0770243 -0.0125827 0)
(1.33085e-05 -0.00141478 0)
(0.000302086 0.00520301 0)
(0.000874328 0.0155443 0)
(0.00159746 0.0255955 0)
(0.00238227 0.0335334 0)
(0.00317725 0.0390487 0)
(0.00396083 0.0425432 0)
(0.00472804 0.0445993 0)
(0.00548113 0.0457299 0)
(0.00622435 0.0463062 0)
(0.00696158 0.0465668 0)
(0.00769569 0.0466538 0)
(0.00842857 0.046647 0)
(0.00916138 0.046589 0)
(0.0098948 0.0465018 0)
(0.0106293 0.0463967 0)
(0.011365 0.0462789 0)
(0.0121022 0.0461511 0)
(0.012841 0.0460144 0)
(0.0135814 0.0458694 0)
(0.0143236 0.0457161 0)
(0.0150677 0.0455545 0)
(0.0158137 0.0453846 0)
(0.0165617 0.0452061 0)
(0.0173118 0.045019 0)
(0.0180639 0.044823 0)
(0.0188182 0.0446179 0)
(0.0195746 0.0444036 0)
(0.0203333 0.0441797 0)
(0.0210942 0.0439461 0)
(0.0218574 0.0437025 0)
(0.0226229 0.0434487 0)
(0.0233906 0.0431845 0)
(0.0241607 0.0429095 0)
(0.0249329 0.0426235 0)
(0.0257075 0.0423263 0)
(0.0264842 0.0420176 0)
(0.0272631 0.041697 0)
(0.0280441 0.0413643 0)
(0.0288271 0.0410191 0)
(0.0296122 0.0406613 0)
(0.0303991 0.0402904 0)
(0.0311877 0.0399062 0)
(0.0319781 0.0395083 0)
(0.03277 0.0390965 0)
(0.0335632 0.0386703 0)
(0.0343578 0.0382295 0)
(0.0351533 0.0377738 0)
(0.0359498 0.0373028 0)
(0.036747 0.0368162 0)
(0.0375447 0.0363136 0)
(0.0383426 0.0357947 0)
(0.0391405 0.0352593 0)
(0.0399382 0.0347069 0)
(0.0407353 0.0341372 0)
(0.0415316 0.03355 0)
(0.0423268 0.0329449 0)
(0.0431205 0.0323215 0)
(0.0439123 0.0316796 0)
(0.044702 0.0310189 0)
(0.0454892 0.0303391 0)
(0.0462735 0.0296398 0)
(0.0470544 0.0289207 0)
(0.0478315 0.0281817 0)
(0.0486045 0.0274223 0)
(0.0493728 0.0266424 0)
(0.0501361 0.0258416 0)
(0.0508938 0.0250197 0)
(0.0516455 0.0241765 0)
(0.0523906 0.0233116 0)
(0.0531288 0.0224249 0)
(0.0538595 0.0215161 0)
(0.0545822 0.0205849 0)
(0.0552965 0.0196311 0)
(0.0560018 0.0186544 0)
(0.0566977 0.0176547 0)
(0.0573837 0.0166317 0)
(0.0580593 0.0155851 0)
(0.0587241 0.0145147 0)
(0.0593777 0.0134202 0)
(0.0600197 0.0123014 0)
(0.0606497 0.011158 0)
(0.0612674 0.00998957 0)
(0.0618724 0.00879578 0)
(0.0624646 0.00757618 0)
(0.0630438 0.0063303 0)
(0.0636096 0.00505771 0)
(0.0641622 0.00375806 0)
(0.0647016 0.00243128 0)
(0.0652292 0.00107824 0)
(0.0657449 -0.000301707 0)
(0.0662456 -0.0017087 0)
(0.066731 -0.0031436 0)
(0.0672038 -0.00460777 0)
(0.0676646 -0.00610499 0)
(0.0681132 -0.0076429 0)
(0.0685481 -0.00923423 0)
(0.0689669 -0.0108972 0)
(0.0693673 -0.0126549 0)
(0.0697408 -0.0145356 0)
(8.94558e-06 -0.00192284 0)
(0.000266653 0.00361116 0)
(0.000796833 0.0131901 0)
(0.0014787 0.0228395 0)
(0.00222714 0.0306329 0)
(0.00299056 0.0361421 0)
(0.00374577 0.0396841 0)
(0.00448625 0.0417955 0)
(0.00521323 0.0429707 0)
(0.00593036 0.043577 0)
(0.00664126 0.0438553 0)
(0.00734871 0.0439512 0)
(0.00805455 0.0439477 0)
(0.00875991 0.0438894 0)
(0.00946549 0.0438 0)
(0.0101717 0.0436914 0)
(0.0108787 0.0435693 0)
(0.0115867 0.0434368 0)
(0.0122957 0.043295 0)
(0.013006 0.0431445 0)
(0.0137174 0.0429856 0)
(0.0144301 0.0428181 0)
(0.0151442 0.0426421 0)
(0.0158595 0.0424574 0)
(0.0165763 0.0422638 0)
(0.0172944 0.0420613 0)
(0.018014 0.0418495 0)
(0.0187349 0.0416284 0)
(0.0194574 0.0413978 0)
(0.0201812 0.0411573 0)
(0.0209065 0.0409069 0)
(0.0216333 0.0406463 0)
(0.0223614 0.0403753 0)
(0.0230909 0.0400936 0)
(0.0238217 0.0398011 0)
(0.0245538 0.0394975 0)
(0.0252871 0.0391825 0)
(0.0260216 0.0388559 0)
(0.0267571 0.0385175 0)
(0.0274937 0.038167 0)
(0.0282311 0.037804 0)
(0.0289694 0.0374285 0)
(0.0297083 0.03704 0)
(0.0304478 0.0366384 0)
(0.0311876 0.0362233 0)
(0.0319278 0.0357945 0)
(0.032668 0.0353517 0)
(0.033408 0.0348947 0)
(0.0341479 0.034423 0)
(0.0348872 0.0339366 0)
(0.0356257 0.0334351 0)
(0.0363633 0.0329181 0)
(0.0370998 0.0323856 0)
(0.0378347 0.0318371 0)
(0.0385679 0.0312724 0)
(0.039299 0.0306913 0)
(0.0400278 0.0300935 0)
(0.040754 0.0294787 0)
(0.0414771 0.0288466 0)
(0.0421968 0.0281971 0)
(0.0429128 0.0275299 0)
(0.0436247 0.0268446 0)
(0.044332 0.0261412 0)
(0.0450344 0.0254193 0)
(0.0457315 0.0246787 0)
(0.0464228 0.0239192 0)
(0.0471079 0.0231406 0)
(0.0477862 0.0223425 0)
(0.0484574 0.0215249 0)
(0.0491209 0.0206875 0)
(0.0497763 0.0198301 0)
(0.050423 0.0189523 0)
(0.0510605 0.0180541 0)
(0.0516882 0.0171352 0)
(0.0523058 0.0161952 0)
(0.0529125 0.0152341 0)
(0.0535079 0.0142515 0)
(0.0540915 0.0132471 0)
(0.0546626 0.0122207 0)
(0.0552208 0.011172 0)
(0.0557653 0.0101007 0)
(0.0562958 0.00900643 0)
(0.0568116 0.00788883 0)
(0.0573121 0.00674748 0)
(0.0577968 0.00558196 0)
(0.058265 0.0043918 0)
(0.0587163 0.00317663 0)
(0.0591504 0.00193623 0)
(0.0595696 0.000671075 0)
(0.0599695 -0.000620165 0)
(0.0603447 -0.00193742 0)
(0.060698 -0.00328043 0)
(0.0610301 -0.00464848 0)
(0.0613402 -0.00604231 0)
(0.0616264 -0.00746466 0)
(0.0618864 -0.00892113 0)
(0.0621177 -0.0104211 0)
(0.0623163 -0.0119784 0)
(0.0624772 -0.0136121 0)
(0.0625898 -0.0153475 0)
(5.06896e-06 -0.00236379 0)
(0.000232876 0.00215973 0)
(0.000721017 0.0109945 0)
(0.00136069 0.020232 0)
(0.00207131 0.0278632 0)
(0.00280152 0.0333513 0)
(0.0035268 0.0369315 0)
(0.00423915 0.0390936 0)
(0.00493872 0.040312 0)
(0.00562858 0.0409486 0)
(0.00631205 0.0412456 0)
(0.00699177 0.0413517 0)
(0.00766955 0.0413527 0)
(0.0083465 0.0412957 0)
(0.00902329 0.0412055 0)
(0.0097003 0.0410949 0)
(0.0103777 0.0409703 0)
(0.0110557 0.0408347 0)
(0.0117344 0.0406897 0)
(0.0124137 0.0405357 0)
(0.0130938 0.0403731 0)
(0.0137746 0.0402019 0)
(0.0144562 0.040022 0)
(0.0151385 0.0398333 0)
(0.0158216 0.0396358 0)
(0.0165055 0.0394292 0)
(0.0171902 0.0392134 0)
(0.0178757 0.0389882 0)
(0.0185619 0.0387536 0)
(0.0192488 0.0385092 0)
(0.0199365 0.0382549 0)
(0.0206248 0.0379905 0)
(0.0213137 0.0377159 0)
(0.0220032 0.0374308 0)
(0.0226932 0.037135 0)
(0.0233837 0.0368284 0)
(0.0240745 0.0365106 0)
(0.0247656 0.0361816 0)
(0.025457 0.0358411 0)
(0.0261484 0.0354888 0)
(0.0268398 0.0351246 0)
(0.027531 0.0347482 0)
(0.028222 0.0343593 0)
(0.0289126 0.0339579 0)
(0.0296025 0.0335435 0)
(0.0302918 0.0331161 0)
(0.0309801 0.0326754 0)
(0.0316673 0.0322211 0)
(0.0323532 0.031753 0)
(0.0330376 0.0312709 0)
(0.0337203 0.0307746 0)
(0.034401 0.0302638 0)
(0.0350794 0.0297383 0)
(0.0357553 0.029198 0)
(0.0364285 0.0286425 0)
(0.0370985 0.0280717 0)
(0.0377652 0.0274854 0)
(0.0384282 0.0268833 0)
(0.0390871 0.0262653 0)
(0.0397417 0.0256311 0)
(0.0403914 0.0249806 0)
(0.0410361 0.0243136 0)
(0.0416752 0.0236299 0)
(0.0423084 0.0229293 0)
(0.0429353 0.0222116 0)
(0.0435553 0.0214767 0)
(0.0441681 0.0207243 0)
(0.0447732 0.0199543 0)
(0.0453701 0.0191666 0)
(0.0459583 0.0183609 0)
(0.0465372 0.0175371 0)
(0.0471065 0.016695 0)
(0.0476654 0.0158344 0)
(0.0482135 0.0149551 0)
(0.0487502 0.014057 0)
(0.0492748 0.0131399 0)
(0.0497868 0.0122035 0)
(0.0502854 0.0112476 0)
(0.0507701 0.0102721 0)
(0.0512402 0.00927666 0)
(0.0516949 0.00826112 0)
(0.0521335 0.0072252 0)
(0.0525552 0.00616866 0)
(0.0529592 0.00509121 0)
(0.0533447 0.00399259 0)
(0.0537109 0.00287257 0)
(0.0540571 0.00173107 0)
(0.0543847 0.000568319 0)
(0.0546866 -0.000616604 0)
(0.05496 -0.00182415 0)
(0.055209 -0.00305265 0)
(0.0554316 -0.00430088 0)
(0.0556262 -0.00556807 0)
(0.0557903 -0.00685414 0)
(0.0559217 -0.00816014 0)
(0.0560174 -0.00948906 0)
(0.0560741 -0.0108468 0)
(0.0560869 -0.0122431 0)
(0.0560497 -0.0136918 0)
(0.0559515 -0.0152148 0)
(1.58475e-06 -0.0027412 0)
(0.000200759 0.000845932 0)
(0.000647348 0.00895841 0)
(0.00124445 0.0177765 0)
(0.00191626 0.0252291 0)
(0.00261209 0.0306815 0)
(0.00330628 0.0342902 0)
(0.00398943 0.0364982 0)
(0.00466067 0.0377579 0)
(0.00532243 0.0384246 0)
(0.00597772 0.038741 0)
(0.00662902 0.0388584 0)
(0.00727808 0.0388652 0)
(0.00792601 0.0388107 0)
(0.00857344 0.038721 0)
(0.00922075 0.0386099 0)
(0.00986814 0.0384842 0)
(0.0105157 0.0383471 0)
(0.0111636 0.0382004 0)
(0.0118117 0.0380446 0)
(0.0124601 0.0378802 0)
(0.0131087 0.037707 0)
(0.0137577 0.0375252 0)
(0.0144069 0.0373347 0)
(0.0150564 0.0371352 0)
(0.0157062 0.0369268 0)
(0.0163562 0.0367092 0)
(0.0170063 0.0364824 0)
(0.0176567 0.0362461 0)
(0.0183071 0.0360003 0)
(0.0189576 0.0357447 0)
(0.0196082 0.0354793 0)
(0.0202586 0.0352037 0)
(0.020909 0.034918 0)
(0.0215592 0.0346219 0)
(0.0222091 0.0343151 0)
(0.0228587 0.0339977 0)
(0.0235077 0.0336693 0)
(0.0241563 0.0333297 0)
(0.0248041 0.0329789 0)
(0.0254511 0.0326166 0)
(0.0260972 0.0322426 0)
(0.0267422 0.0318567 0)
(0.027386 0.0314588 0)
(0.0280283 0.0310486 0)
(0.0286691 0.030626 0)
(0.0293082 0.0301907 0)
(0.0299452 0.0297427 0)
(0.0305801 0.0292816 0)
(0.0312127 0.0288074 0)
(0.0318426 0.0283198 0)
(0.0324697 0.0278187 0)
(0.0330937 0.0273039 0)
(0.0337143 0.0267752 0)
(0.0343312 0.0262325 0)
(0.0349442 0.0256756 0)
(0.035553 0.0251043 0)
(0.0361573 0.0245185 0)
(0.0367566 0.023918 0)
(0.0373507 0.0233028 0)
(0.0379392 0.0226726 0)
(0.0385218 0.0220273 0)
(0.039098 0.0213667 0)
(0.0396674 0.0206909 0)
(0.0402297 0.0199996 0)
(0.0407844 0.0192927 0)
(0.041331 0.0185701 0)
(0.0418691 0.0178317 0)
(0.0423982 0.0170774 0)
(0.0429178 0.016307 0)
(0.0434274 0.0155206 0)
(0.0439263 0.0147179 0)
(0.0444141 0.0138989 0)
(0.0448902 0.0130635 0)
(0.045354 0.0122116 0)
(0.0458047 0.011343 0)
(0.0462418 0.0104578 0)
(0.0466645 0.00955574 0)
(0.0470721 0.00863681 0)
(0.0474638 0.00770093 0)
(0.0478388 0.00674802 0)
(0.0481962 0.00577803 0)
(0.048535 0.0047909 0)
(0.0488544 0.00378659 0)
(0.0491532 0.0027651 0)
(0.0494309 0.00172652 0)
(0.049687 0.000671082 0)
(0.0499162 -0.00040153 0)
(0.0501164 -0.00149173 0)
(0.0502905 -0.00259722 0)
(0.0504363 -0.0037171 0)
(0.0505515 -0.00485005 0)
(0.0506341 -0.00599463 0)
(0.0506819 -0.00714951 0)
(0.0506927 -0.00831401 0)
(0.0506633 -0.00948877 0)
(0.0505904 -0.0106766 0)
(0.0504694 -0.0118831 0)
(0.0502947 -0.013118 0)
(0.0500564 -0.0143993 0)
(-1.40545e-06 -0.00305916 0)
(0.000170592 -0.000334623 0)
(0.000576334 0.00708035 0)
(0.00113088 0.0154747 0)
(0.00176334 0.0227338 0)
(0.00242401 0.0281363 0)
(0.00308629 0.0317637 0)
(0.00373953 0.0340121 0)
(0.00438184 0.0353109 0)
(0.005015 0.0360074 0)
(0.00564165 0.0363437 0)
(0.00626414 0.0364732 0)
(0.00688414 0.0364869 0)
(0.00750272 0.036436 0)
(0.00812052 0.0363481 0)
(0.00873789 0.0362377 0)
(0.00935505 0.0361121 0)
(0.00997206 0.0359749 0)
(0.010589 0.0358279 0)
(0.0112058 0.0356718 0)
(0.0118226 0.0355071 0)
(0.0124392 0.0353337 0)
(0.0130557 0.0351517 0)
(0.0136721 0.034961 0)
(0.0142882 0.0347615 0)
(0.0149042 0.0345531 0)
(0.0155199 0.0343358 0)
(0.0161353 0.0341093 0)
(0.0167503 0.0338735 0)
(0.017365 0.0336284 0)
(0.0179791 0.0333738 0)
(0.0185927 0.0331096 0)
(0.0192057 0.0328355 0)
(0.019818 0.0325515 0)
(0.0204295 0.0322575 0)
(0.0210402 0.0319532 0)
(0.0216498 0.0316385 0)
(0.0222584 0.0313133 0)
(0.0228657 0.0309775 0)
(0.0234717 0.0306308 0)
(0.0240762 0.0302731 0)
(0.0246791 0.0299043 0)
(0.0252803 0.0295242 0)
(0.0258795 0.0291326 0)
(0.0264766 0.0287295 0)
(0.0270715 0.0283145 0)
(0.0276639 0.0278877 0)
(0.0282536 0.0274488 0)
(0.0288405 0.0269978 0)
(0.0294242 0.0265344 0)
(0.0300047 0.0260585 0)
(0.0305815 0.0255701 0)
(0.0311546 0.0250688 0)
(0.0317236 0.0245548 0)
(0.0322883 0.0240277 0)
(0.0328483 0.0234876 0)
(0.0334034 0.0229342 0)
(0.0339533 0.0223676 0)
(0.0344976 0.0217875 0)
(0.035036 0.021194 0)
(0.0355682 0.0205868 0)
(0.0360938 0.019966 0)
(0.0366123 0.0193314 0)
(0.0371236 0.018683 0)
(0.037627 0.0180208 0)
(0.0381223 0.0173446 0)
(0.0386089 0.0166544 0)
(0.0390865 0.0159502 0)
(0.0395545 0.0152319 0)
(0.0400125 0.0144996 0)
(0.0404599 0.0137531 0)
(0.0408962 0.0129926 0)
(0.0413209 0.0122179 0)
(0.0417334 0.0114291 0)
(0.042133 0.0106262 0)
(0.0425191 0.00980918 0)
(0.0428911 0.00897816 0)
(0.0432482 0.00813318 0)
(0.0435897 0.00727431 0)
(0.0439148 0.00640167 0)
(0.0442227 0.0055154 0)
(0.0445125 0.00461564 0)
(0.0447832 0.00370262 0)
(0.0450339 0.00277655 0)
(0.0452639 0.00183775 0)
(0.0454722 0.000886606 0)
(0.0456556 -7.6288e-05 0)
(0.0458118 -0.00105136 0)
(0.0459419 -0.00203669 0)
(0.0460446 -0.00303129 0)
(0.0461183 -0.00403374 0)
(0.0461609 -0.00504222 0)
(0.0461707 -0.00605453 0)
(0.0461455 -0.00706839 0)
(0.0460832 -0.00808178 0)
(0.045981 -0.00909346 0)
(0.045836 -0.0101037 0)
(0.0456442 -0.011115 0)
(0.0454007 -0.0121337 0)
(0.0450971 -0.0131755 0)
(-4.17124e-06 -0.0033215 0)
(0.000142511 -0.00138636 0)
(0.000508972 0.00535834 0)
(0.00102121 0.013327 0)
(0.00161399 0.0203795 0)
(0.00223893 0.0257183 0)
(0.00286875 0.0293544 0)
(0.00349163 0.0316374 0)
(0.00410466 0.0329726 0)
(0.00470895 0.0336982 0)
(0.00530679 0.0340547 0)
(0.00590033 0.0341971 0)
(0.00649117 0.0342186 0)
(0.00708036 0.0341723 0)
(0.00766851 0.0340872 0)
(0.00825599 0.0339785 0)
(0.00884297 0.0338542 0)
(0.00942953 0.033718 0)
(0.0100157 0.033572 0)
(0.0106015 0.0334169 0)
(0.0111868 0.0332531 0)
(0.0117717 0.0330809 0)
(0.0123562 0.0329001 0)
(0.0129401 0.0327108 0)
(0.0135234 0.0325128 0)
(0.0141062 0.0323062 0)
(0.0146882 0.0320907 0)
(0.0152696 0.0318663 0)
(0.0158501 0.0316329 0)
(0.0164298 0.0313904 0)
(0.0170086 0.0311386 0)
(0.0175864 0.0308775 0)
(0.018163 0.0306069 0)
(0.0187385 0.0303268 0)
(0.0193127 0.0300369 0)
(0.0198854 0.0297372 0)
(0.0204567 0.0294275 0)
(0.0210263 0.0291077 0)
(0.0215942 0.0287778 0)
(0.0221603 0.0284375 0)
(0.0227242 0.0280867 0)
(0.0232861 0.0277254 0)
(0.0238456 0.0273534 0)
(0.0244026 0.0269706 0)
(0.0249569 0.0265768 0)
(0.0255084 0.026172 0)
(0.0260569 0.025756 0)
(0.0266021 0.0253287 0)
(0.0271439 0.02489 0)
(0.027682 0.0244399 0)
(0.0282162 0.0239781 0)
(0.0287464 0.0235047 0)
(0.0292721 0.0230194 0)
(0.0297932 0.0225223 0)
(0.0303095 0.0220133 0)
(0.0308205 0.0214922 0)
(0.0313262 0.0209591 0)
(0.031826 0.0204138 0)
(0.0323199 0.0198563 0)
(0.0328073 0.0192866 0)
(0.033288 0.0187046 0)
(0.0337617 0.0181102 0)
(0.034228 0.0175036 0)
(0.0346866 0.0168846 0)
(0.035137 0.0162532 0)
(0.0355788 0.0156094 0)
(0.0360117 0.0149533 0)
(0.0364352 0.0142849 0)
(0.0368489 0.0136042 0)
(0.0372523 0.0129113 0)
(0.0376449 0.0122062 0)
(0.0380263 0.011489 0)
(0.0383959 0.0107598 0)
(0.0387532 0.0100186 0)
(0.0390976 0.00926573 0)
(0.0394285 0.00850119 0)
(0.0397453 0.0077252 0)
(0.0400474 0.00693796 0)
(0.0403339 0.0061397 0)
(0.0406043 0.00533071 0)
(0.0408576 0.0045113 0)
(0.0410932 0.00368184 0)
(0.0413101 0.00284274 0)
(0.0415077 0.0019945 0)
(0.041685 0.00113771 0)
(0.0418417 0.000273095 0)
(0.0419743 -0.000599641 0)
(0.042081 -0.00147878 0)
(0.0421633 -0.00236305 0)
(0.0422198 -0.0032511 0)
(0.0422488 -0.00414116 0)
(0.0422488 -0.00503097 0)
(0.0422181 -0.00591785 0)
(0.0421552 -0.00679876 0)
(0.042058 -0.00767063 0)
(0.0419244 -0.00853079 0)
(0.0417519 -0.00937765 0)
(0.0415375 -0.0102115 0)
(0.0412771 -0.0110366 0)
(0.0409643 -0.0118668 0)
(-6.43684e-06 -0.00353246 0)
(0.000116349 -0.00231487 0)
(0.00044458 0.00378891 0)
(0.000915335 0.0113324 0)
(0.00146867 0.0181667 0)
(0.00205778 0.0234287 0)
(0.00265494 0.0270636 0)
(0.0032473 0.0293751 0)
(0.00383097 0.0307438 0)
(0.00440641 0.0314974 0)
(0.00497551 0.0318741 0)
(0.00554023 0.03203 0)
(0.00610208 0.0320601 0)
(0.00666206 0.0320192 0)
(0.00722079 0.0319378 0)
(0.00777862 0.0318318 0)
(0.00833572 0.0317096 0)
(0.00889216 0.0315755 0)
(0.00944795 0.0314314 0)
(0.0100031 0.0312784 0)
(0.0105575 0.0311168 0)
(0.0111112 0.0309469 0)
(0.0116642 0.0307686 0)
(0.0122163 0.030582 0)
(0.0127675 0.0303869 0)
(0.0133178 0.0301833 0)
(0.0138671 0.0299712 0)
(0.0144153 0.0297504 0)
(0.0149623 0.0295208 0)
(0.0155081 0.0292825 0)
(0.0160526 0.0290351 0)
(0.0165957 0.0287788 0)
(0.0171373 0.0285134 0)
(0.0176772 0.0282387 0)
(0.0182155 0.0279547 0)
(0.018752 0.0276613 0)
(0.0192865 0.0273584 0)
(0.0198189 0.0270459 0)
(0.0203492 0.0267237 0)
(0.0208771 0.0263917 0)
(0.0214026 0.0260497 0)
(0.0219255 0.0256978 0)
(0.0224456 0.0253358 0)
(0.0229627 0.0249636 0)
(0.0234768 0.0245811 0)
(0.0239875 0.0241883 0)
(0.0244948 0.023785 0)
(0.0249983 0.0233712 0)
(0.025498 0.0229468 0)
(0.0259936 0.0225118 0)
(0.0264849 0.022066 0)
(0.0269716 0.0216094 0)
(0.0274536 0.0211419 0)
(0.0279305 0.0206636 0)
(0.0284022 0.0201743 0)
(0.0288683 0.019674 0)
(0.0293286 0.0191627 0)
(0.0297828 0.0186404 0)
(0.0302306 0.018107 0)
(0.0306718 0.0175625 0)
(0.0311059 0.017007 0)
(0.0315328 0.0164405 0)
(0.031952 0.0158629 0)
(0.0323633 0.0152743 0)
(0.0327663 0.0146748 0)
(0.0331605 0.0140644 0)
(0.0335458 0.0134431 0)
(0.0339215 0.0128111 0)
(0.0342875 0.0121684 0)
(0.0346432 0.0115152 0)
(0.0349882 0.0108516 0)
(0.035322 0.0101776 0)
(0.0356443 0.00949365 0)
(0.0359546 0.00879975 0)
(0.0362522 0.00809618 0)
(0.0365367 0.00738317 0)
(0.0368076 0.00666101 0)
(0.0370642 0.00593002 0)
(0.0373061 0.00519056 0)
(0.0375324 0.00444303 0)
(0.0377426 0.00368789 0)
(0.0379361 0.00292565 0)
(0.0381122 0.00215691 0)
(0.0382703 0.00138232 0)
(0.0384103 0.000602664 0)
(0.038528 -0.000181717 0)
(0.0386231 -0.000970216 0)
(0.0386982 -0.00176094 0)
(0.0387512 -0.0025526 0)
(0.0387807 -0.00334359 0)
(0.0387856 -0.00413187 0)
(0.0387648 -0.00491486 0)
(0.0387172 -0.00568944 0)
(0.0386416 -0.00645205 0)
(0.0385365 -0.0071989 0)
(0.0384006 -0.00792642 0)
(0.0382323 -0.00863176 0)
(0.0380295 -0.00931385 0)
(0.0377896 -0.00997548 0)
(0.0375082 -0.0106293 0)
(-8.36112e-06 -0.00369651 0)
(9.23269e-05 -0.00312686 0)
(0.000383962 0.00236713 0)
(0.000814163 0.00948873 0)
(0.00132843 0.0160949 0)
(0.00188179 0.0212677 0)
(0.0024463 0.0248914 0)
(0.00300815 0.0272251 0)
(0.00356257 0.028624 0)
(0.00410934 0.0294043 0)
(0.00464995 0.0298011 0)
(0.00518615 0.0299708 0)
(0.00571934 0.0300101 0)
(0.00625051 0.0299755 0)
(0.00678025 0.0298985 0)
(0.00730888 0.029796 0)
(0.00783659 0.0296768 0)
(0.00836342 0.0295456 0)
(0.0088894 0.0294044 0)
(0.0094145 0.0292544 0)
(0.00993869 0.0290959 0)
(0.0104619 0.0289293 0)
(0.0109841 0.0287546 0)
(0.0115052 0.0285717 0)
(0.0120252 0.0283806 0)
(0.0125439 0.0281813 0)
(0.0130614 0.0279737 0)
(0.0135774 0.0277577 0)
(0.014092 0.0275333 0)
(0.0146051 0.0273003 0)
(0.0151165 0.0270588 0)
(0.0156262 0.0268086 0)
(0.0161341 0.0265496 0)
(0.01664 0.0262819 0)
(0.0171439 0.0260052 0)
(0.0176456 0.0257196 0)
(0.0181451 0.0254249 0)
(0.0186421 0.0251211 0)
(0.0191366 0.0248081 0)
(0.0196285 0.0244859 0)
(0.0201175 0.0241542 0)
(0.0206035 0.0238132 0)
(0.0210865 0.0234627 0)
(0.0215661 0.0231026 0)
(0.0220423 0.0227329 0)
(0.0225148 0.0223536 0)
(0.0229835 0.0219645 0)
(0.0234482 0.0215656 0)
(0.0239087 0.0211569 0)
(0.0243648 0.0207383 0)
(0.0248162 0.0203098 0)
(0.0252629 0.0198714 0)
(0.0257045 0.019423 0)
(0.0261408 0.0189646 0)
(0.0265716 0.0184962 0)
(0.0269966 0.0180178 0)
(0.0274156 0.0175293 0)
(0.0278283 0.0170309 0)
(0.0282344 0.0165225 0)
(0.0286338 0.0160041 0)
(0.029026 0.0154758 0)
(0.0294108 0.0149376 0)
(0.029788 0.0143896 0)
(0.0301572 0.0138318 0)
(0.030518 0.0132644 0)
(0.0308703 0.0126873 0)
(0.0312136 0.0121008 0)
(0.0315475 0.0115049 0)
(0.0318719 0.0108997 0)
(0.0321862 0.0102856 0)
(0.0324901 0.00966254 0)
(0.0327833 0.00903084 0)
(0.0330653 0.00839073 0)
(0.0333357 0.00774245 0)
(0.0335942 0.0070863 0)
(0.0338401 0.0064226 0)
(0.0340732 0.0057517 0)
(0.0342929 0.00507402 0)
(0.0344987 0.00438998 0)
(0.0346901 0.00370008 0)
(0.0348666 0.00300486 0)
(0.0350277 0.00230493 0)
(0.035173 0.00160098 0)
(0.035302 0.00089375 0)
(0.0354127 0.000183884 0)
(0.035504 -0.000528282 0)
(0.0355771 -0.00124066 0)
(0.0356319 -0.00195235 0)
(0.0356669 -0.00266202 0)
(0.0356815 -0.00336793 0)
(0.0356749 -0.00406787 0)
(0.0356464 -0.00475914 0)
(0.0355953 -0.00543847 0)
(0.035521 -0.00610212 0)
(0.0354228 -0.00674605 0)
(0.0353 -0.00736624 0)
(0.035152 -0.00795932 0)
(0.0349779 -0.00852351 0)
(0.0347763 -0.0090609 0)
(0.0345445 -0.00958305 0)
(-9.99436e-06 -0.00381764 0)
(7.02939e-05 -0.00382855 0)
(0.000327088 0.00108797 0)
(0.000717928 0.00779293 0)
(0.00119378 0.0141627 0)
(0.0017117 0.0192348 0)
(0.00224374 0.0228376 0)
(0.00277531 0.025187 0)
(0.00330076 0.0266124 0)
(0.00381923 0.0274179 0)
(0.00433178 0.0278344 0)
(0.00483994 0.0280181 0)
(0.00534501 0.0280672 0)
(0.00584791 0.0280394 0)
(0.00634922 0.0279674 0)
(0.00684928 0.027869 0)
(0.00734824 0.0277536 0)
(0.00784616 0.0276259 0)
(0.00834305 0.0274884 0)
(0.00883888 0.0273421 0)
(0.00933361 0.0271876 0)
(0.00982717 0.0270252 0)
(0.0103195 0.0268548 0)
(0.0108105 0.0266766 0)
(0.0113002 0.0264904 0)
(0.0117884 0.0262963 0)
(0.0122751 0.0260942 0)
(0.0127602 0.025884 0)
(0.0132435 0.0256658 0)
(0.0137251 0.0254393 0)
(0.0142048 0.0252046 0)
(0.0146825 0.0249617 0)
(0.0151581 0.0247103 0)
(0.0156316 0.0244506 0)
(0.0161026 0.0241824 0)
(0.0165713 0.0239057 0)
(0.0170374 0.0236205 0)
(0.0175008 0.0233265 0)
(0.0179615 0.0230239 0)
(0.0184191 0.0227126 0)
(0.0188737 0.0223924 0)
(0.0193251 0.0220634 0)
(0.0197731 0.0217255 0)
(0.0202175 0.0213787 0)
(0.0206582 0.0210229 0)
(0.021095 0.020658 0)
(0.0215277 0.0202842 0)
(0.0219563 0.0199012 0)
(0.0223804 0.0195092 0)
(0.0227999 0.019108 0)
(0.0232146 0.0186977 0)
(0.0236243 0.0182783 0)
(0.0240287 0.0178497 0)
(0.0244277 0.017412 0)
(0.0248211 0.0169651 0)
(0.0252086 0.0165091 0)
(0.02559 0.0160441 0)
(0.0259651 0.01557 0)
(0.0263336 0.0150868 0)
(0.0266952 0.0145947 0)
(0.0270498 0.0140937 0)
(0.0273971 0.0135838 0)
(0.0277367 0.0130652 0)
(0.0280685 0.012538 0)
(0.0283921 0.0120021 0)
(0.0287073 0.0114578 0)
(0.0290138 0.0109053 0)
(0.0293113 0.0103445 0)
(0.0295995 0.00977582 0)
(0.0298781 0.00919935 0)
(0.0301467 0.00861533 0)
(0.0304052 0.00802401 0)
(0.030653 0.00742567 0)
(0.0308899 0.0068206 0)
(0.0311156 0.00620916 0)
(0.0313297 0.00559171 0)
(0.0315317 0.00496866 0)
(0.0317214 0.00434046 0)
(0.0318983 0.00370761 0)
(0.0320621 0.00307064 0)
(0.0322124 0.00243016 0)
(0.0323489 0.00178686 0)
(0.0324711 0.00114143 0)
(0.0325783 0.000494583 0)
(0.0326688 -0.000153223 0)
(0.0327431 -0.000800598 0)
(0.0328023 -0.00144636 0)
(0.032845 -0.00208946 0)
(0.0328707 -0.00272851 0)
(0.032879 -0.00336181 0)
(0.0328695 -0.00398727 0)
(0.0328419 -0.00460235 0)
(0.0327959 -0.005204 0)
(0.0327314 -0.00578871 0)
(0.0326485 -0.00635265 0)
(0.0325471 -0.00689198 0)
(0.0324276 -0.00740335 0)
(0.0322901 -0.00788482 0)
(0.0321346 -0.00833813 0)
(0.0319598 -0.00877346 0)
(-1.13549e-05 -0.00389994 0)
(5.02442e-05 -0.00442687 0)
(0.000274079 -5.46333e-05 0)
(0.000626951 0.006241 0)
(0.00106525 0.0123679 0)
(0.00154825 0.0173286 0)
(0.00204819 0.0209009 0)
(0.00254982 0.0232595 0)
(0.00304671 0.0247076 0)
(0.00353735 0.0255364 0)
(0.00402241 0.0259719 0)
(0.00450315 0.0261698 0)
(0.00498075 0.0262289 0)
(0.00545608 0.0262084 0)
(0.00592969 0.0261421 0)
(0.00640192 0.0260484 0)
(0.00687291 0.0259372 0)
(0.00734272 0.0258137 0)
(0.00781136 0.0256804 0)
(0.0082788 0.0255385 0)
(0.00874498 0.0253886 0)
(0.00920984 0.025231 0)
(0.0096733 0.0250658 0)
(0.0101353 0.0248929 0)
(0.0105958 0.0247124 0)
(0.0110546 0.0245243 0)
(0.0115117 0.0243285 0)
(0.011967 0.024125 0)
(0.0124204 0.0239137 0)
(0.0128718 0.0236945 0)
(0.0133211 0.0234676 0)
(0.0137682 0.0232327 0)
(0.0142131 0.0229899 0)
(0.0146555 0.0227391 0)
(0.0150954 0.0224802 0)
(0.0155327 0.0222133 0)
(0.0159672 0.0219383 0)
(0.0163988 0.0216552 0)
(0.0168274 0.0213638 0)
(0.0172529 0.0210642 0)
(0.0176751 0.0207564 0)
(0.0180939 0.0204403 0)
(0.0185091 0.0201158 0)
(0.0189205 0.019783 0)
(0.0193281 0.0194419 0)
(0.0197316 0.0190923 0)
(0.0201309 0.0187344 0)
(0.0205259 0.018368 0)
(0.0209163 0.0179932 0)
(0.0213019 0.0176101 0)
(0.0216827 0.0172185 0)
(0.0220583 0.0168185 0)
(0.0224287 0.0164101 0)
(0.0227936 0.0159933 0)
(0.0231528 0.0155682 0)
(0.0235061 0.0151349 0)
(0.0238533 0.0146932 0)
(0.0241942 0.0142434 0)
(0.0245286 0.0137854 0)
(0.0248563 0.0133193 0)
(0.025177 0.0128452 0)
(0.0254906 0.0123632 0)
(0.0257967 0.0118733 0)
(0.0260952 0.0113758 0)
(0.0263858 0.0108706 0)
(0.0266683 0.010358 0)
(0.0269425 0.00983813 0)
(0.027208 0.00931111 0)
(0.0274647 0.00877717 0)
(0.0277123 0.00823653 0)
(0.0279505 0.00768941 0)
(0.0281791 0.0071361 0)
(0.0283978 0.00657689 0)
(0.0286064 0.00601211 0)
(0.0288046 0.00544212 0)
(0.0289921 0.00486731 0)
(0.0291686 0.00428813 0)
(0.0293339 0.00370505 0)
(0.0294877 0.00311859 0)
(0.0296297 0.00252932 0)
(0.0297597 0.00193788 0)
(0.0298775 0.00134494 0)
(0.0299827 0.000751181 0)
(0.0300739 0.000157209 0)
(0.0301511 -0.000436179 0)
(0.0302156 -0.00102759 0)
(0.0302667 -0.00161621 0)
(0.0303038 -0.00220094 0)
(0.0303267 -0.0027805 0)
(0.0303353 -0.00335336 0)
(0.0303294 -0.00391773 0)
(0.0303091 -0.00447142 0)
(0.0302744 -0.00501187 0)
(0.0302257 -0.00553612 0)
(0.0301634 -0.00604094 0)
(0.0300881 -0.00652306 0)
(0.0300006 -0.00697957 0)
(0.029902 -0.00740878 0)
(0.0297926 -0.00781224 0)
(0.0296726 -0.00819859 0)
(-1.24549e-05 -0.00394732 0)
(3.2163e-05 -0.00492876 0)
(0.000224992 -0.00106705 0)
(0.000541414 0.00482843 0)
(0.000943196 0.0107076 0)
(0.00139195 0.0155473 0)
(0.00186031 0.0190799 0)
(0.00233251 0.0214408 0)
(0.00280138 0.0229076 0)
(0.0032648 0.0237576 0)
(0.00372302 0.0242113 0)
(0.00417705 0.0244231 0)
(0.00462793 0.0244925 0)
(0.00507649 0.0244797 0)
(0.00552323 0.0244194 0)
(0.00596848 0.0243309 0)
(0.00641239 0.0242245 0)
(0.00685502 0.0241056 0)
(0.00729636 0.023977 0)
(0.00773638 0.02384 0)
(0.00817502 0.0236952 0)
(0.00861221 0.023543 0)
(0.00904788 0.0233834 0)
(0.00948194 0.0232165 0)
(0.00991431 0.0230423 0)
(0.0103449 0.0228608 0)
(0.0107737 0.0226719 0)
(0.0112005 0.0224756 0)
(0.0116252 0.0222719 0)
(0.0120478 0.0220608 0)
(0.0124682 0.0218422 0)
(0.0128863 0.0216161 0)
(0.0133018 0.0213824 0)
(0.0137148 0.0211412 0)
(0.0141252 0.0208924 0)
(0.0145327 0.020636 0)
(0.0149374 0.0203719 0)
(0.015339 0.0201001 0)
(0.0157375 0.0198206 0)
(0.0161327 0.0195335 0)
(0.0165244 0.0192385 0)
(0.0169126 0.0189359 0)
(0.0172971 0.0186254 0)
(0.0176778 0.0183072 0)
(0.0180545 0.0179811 0)
(0.018427 0.0176473 0)
(0.0187952 0.0173057 0)
(0.019159 0.0169563 0)
(0.0195182 0.0165992 0)
(0.0198726 0.0162342 0)
(0.0202221 0.0158615 0)
(0.0205664 0.0154811 0)
(0.0209054 0.015093 0)
(0.021239 0.0146973 0)
(0.0215669 0.0142939 0)
(0.0218891 0.0138829 0)
(0.0222052 0.0134645 0)
(0.0225151 0.0130385 0)
(0.0228186 0.0126052 0)
(0.0231155 0.0121646 0)
(0.0234057 0.0117167 0)
(0.023689 0.0112618 0)
(0.023965 0.0107998 0)
(0.0242337 0.0103308 0)
(0.0244949 0.00985516 0)
(0.0247483 0.00937286 0)
(0.0249938 0.00888408 0)
(0.0252311 0.00838903 0)
(0.0254601 0.00788789 0)
(0.0256805 0.0073809 0)
(0.0258922 0.00686829 0)
(0.026095 0.00635035 0)
(0.0262886 0.00582737 0)
(0.0264728 0.00529969 0)
(0.0266476 0.00476767 0)
(0.0268126 0.00423171 0)
(0.0269678 0.00369224 0)
(0.0271128 0.00314974 0)
(0.0272476 0.00260472 0)
(0.0273721 0.00205775 0)
(0.0274861 0.00150944 0)
(0.0275893 0.000960387 0)
(0.0276812 0.000411257 0)
(0.0277612 -0.000137386 0)
(0.0278302 -0.00068436 0)
(0.0278885 -0.00122885 0)
(0.0279356 -0.00177001 0)
(0.0279713 -0.00230684 0)
(0.0279957 -0.00283821 0)
(0.0280087 -0.00336285 0)
(0.0280105 -0.0038793 0)
(0.0280013 -0.00438584 0)
(0.0279814 -0.00488048 0)
(0.0279514 -0.00536092 0)
(0.0279119 -0.00582468 0)
(0.0278638 -0.00626917 0)
(0.0278081 -0.00669204 0)
(0.027746 -0.00709191 0)
(0.0276782 -0.00747008 0)
(0.0276052 -0.00783336 0)
(-1.3471e-05 -0.00396362 0)
(1.57867e-05 -0.00534113 0)
(0.000179767 -0.00195596 0)
(0.000461402 0.0035502 0)
(0.000827833 0.00917843 0)
(0.00124315 0.0138883 0)
(0.00168055 0.0173724 0)
(0.0021239 0.0197289 0)
(0.00256539 0.02121 0)
(0.00300231 0.0220789 0)
(0.00343447 0.0225497 0)
(0.00386261 0.0227752 0)
(0.00428765 0.0228549 0)
(0.00471032 0.02285 0)
(0.00513113 0.0227961 0)
(0.00555035 0.0227131 0)
(0.00596816 0.0226118 0)
(0.00638459 0.022498 0)
(0.00679964 0.0223745 0)
(0.00721328 0.0222428 0)
(0.00762545 0.0221035 0)
(0.00803607 0.0219571 0)
(0.00844508 0.0218036 0)
(0.00885237 0.021643 0)
(0.00925787 0.0214756 0)
(0.0096615 0.0213011 0)
(0.0100632 0.0211196 0)
(0.0104628 0.020931 0)
(0.0108602 0.0207354 0)
(0.0112554 0.0205328 0)
(0.0116483 0.020323 0)
(0.0120387 0.0201062 0)
(0.0124265 0.0198822 0)
(0.0128117 0.019651 0)
(0.013194 0.0194127 0)
(0.0135735 0.0191672 0)
(0.01395 0.0189145 0)
(0.0143234 0.0186546 0)
(0.0146935 0.0183874 0)
(0.0150602 0.0181131 0)
(0.0154235 0.0178314 0)
(0.0157831 0.0175426 0)
(0.0161389 0.0172464 0)
(0.0164908 0.0169431 0)
(0.0168387 0.0166324 0)
(0.0171824 0.0163146 0)
(0.0175218 0.0159895 0)
(0.0178567 0.0156572 0)
(0.0181869 0.0153178 0)
(0.0185125 0.0149711 0)
(0.018833 0.0146173 0)
(0.0191485 0.0142564 0)
(0.0194588 0.0138885 0)
(0.0197636 0.0135135 0)
(0.0200629 0.0131315 0)
(0.0203565 0.0127426 0)
(0.0206442 0.0123469 0)
(0.0209259 0.0119443 0)
(0.0212013 0.011535 0)
(0.0214704 0.0111191 0)
(0.0217329 0.0106966 0)
(0.0219888 0.0102677 0)
(0.0222377 0.00983242 0)
(0.0224796 0.0093909 0)
(0.0227144 0.00894329 0)
(0.0229417 0.00848973 0)
(0.0231616 0.00803037 0)
(0.0233737 0.00756539 0)
(0.0235781 0.00709499 0)
(0.0237745 0.00661937 0)
(0.0239627 0.00613878 0)
(0.0241427 0.00565348 0)
(0.0243142 0.00516375 0)
(0.0244772 0.00466992 0)
(0.0246315 0.00417233 0)
(0.0247771 0.00367135 0)
(0.0249137 0.00316741 0)
(0.0250413 0.00266094 0)
(0.0251599 0.00215243 0)
(0.0252693 0.00164241 0)
(0.0253695 0.00113141 0)
(0.0254604 0.000619959 0)
(0.0255414 0.000108546 0)
(0.0256127 -0.000401982 0)
(0.0256752 -0.000910725 0)
(0.0257286 -0.00141705 0)
(0.0257728 -0.00192015 0)
(0.025808 -0.00241916 0)
(0.0258342 -0.00291313 0)
(0.0258517 -0.00340103 0)
(0.0258608 -0.00388171 0)
(0.0258617 -0.00435385 0)
(0.0258548 -0.00481596 0)
(0.0258409 -0.00526635 0)
(0.0258205 -0.00570311 0)
(0.0257945 -0.00612424 0)
(0.025764 -0.00652783 0)
(0.0257298 -0.00691269 0)
(0.0256927 -0.0072797 0)
(0.0256532 -0.00763378 0)
(-1.37386e-05 -0.00395232 0)
(1.70446e-06 -0.00567105 0)
(0.000138262 -0.00272859 0)
(0.00038686 0.00240049 0)
(0.000719286 0.00777605 0)
(0.00110215 0.0123485 0)
(0.00150937 0.0157758 0)
(0.00192458 0.0181213 0)
(0.0023394 0.0196122 0)
(0.00275057 0.0204974 0)
(0.00315749 0.0209841 0)
(0.00356063 0.0212227 0)
(0.00396076 0.0213127 0)
(0.0043585 0.0213158 0)
(0.00475434 0.0212685 0)
(0.00514855 0.0211912 0)
(0.00554127 0.0210954 0)
(0.00593256 0.0209869 0)
(0.00632241 0.0208687 0)
(0.00671077 0.0207426 0)
(0.00709758 0.0206092 0)
(0.00748278 0.0204688 0)
(0.00786627 0.0203217 0)
(0.00824799 0.020168 0)
(0.00862785 0.0200075 0)
(0.00900576 0.0198404 0)
(0.00938163 0.0196667 0)
(0.00975536 0.0194862 0)
(0.0101269 0.0192991 0)
(0.010496 0.0191053 0)
(0.0108628 0.0189047 0)
(0.011227 0.0186974 0)
(0.0115886 0.0184834 0)
(0.0119474 0.0182627 0)
(0.0123034 0.0180352 0)
(0.0126564 0.0178009 0)
(0.0130064 0.0175599 0)
(0.0133532 0.0173121 0)
(0.0136967 0.0170575 0)
(0.0140367 0.0167961 0)
(0.0143732 0.016528 0)
(0.0147061 0.0162531 0)
(0.0150351 0.0159715 0)
(0.0153602 0.0156831 0)
(0.0156813 0.015388 0)
(0.0159982 0.0150862 0)
(0.0163108 0.0147776 0)
(0.0166189 0.0144624 0)
(0.0169224 0.0141406 0)
(0.0172212 0.0138121 0)
(0.0175151 0.013477 0)
(0.017804 0.0131354 0)
(0.0180878 0.0127873 0)
(0.0183663 0.0124327 0)
(0.0186393 0.0120717 0)
(0.0189067 0.0117044 0)
(0.0191684 0.0113308 0)
(0.0194243 0.0109509 0)
(0.0196741 0.0105649 0)
(0.0199178 0.0101728 0)
(0.0201552 0.00977476 0)
(0.0203861 0.00937081 0)
(0.0206105 0.00896107 0)
(0.0208281 0.00854566 0)
(0.0210389 0.0081247 0)
(0.0212428 0.00769832 0)
(0.0214395 0.00726668 0)
(0.021629 0.00682994 0)
(0.0218111 0.00638827 0)
(0.0219858 0.00594187 0)
(0.0221528 0.00549097 0)
(0.0223122 0.00503579 0)
(0.0224638 0.0045766 0)
(0.0226076 0.00411369 0)
(0.0227434 0.00364736 0)
(0.0228712 0.00317796 0)
(0.022991 0.00270586 0)
(0.0231027 0.00223145 0)
(0.0232064 0.00175518 0)
(0.023302 0.00127748 0)
(0.0233894 0.000798789 0)
(0.023468 0.000319577 0)
(0.0235384 -0.000159703 0)
(0.0236011 -0.000638169 0)
(0.0236563 -0.00111529 0)
(0.0237038 -0.00159043 0)
(0.0237438 -0.00206291 0)
(0.0237763 -0.00253198 0)
(0.0238018 -0.00299686 0)
(0.0238204 -0.00345673 0)
(0.0238325 -0.00391067 0)
(0.0238384 -0.00435768 0)
(0.0238386 -0.00479662 0)
(0.0238336 -0.00522618 0)
(0.023824 -0.00564486 0)
(0.0238106 -0.00605101 0)
(0.023794 -0.00644296 0)
(0.023775 -0.00681953 0)
(0.0237542 -0.00718107 0)
(0.0237315 -0.00753063 0)
(-1.38604e-05 -0.0039166 0)
(-1.06176e-05 -0.00592538 0)
(0.000100575 -0.00339207 0)
(0.000317924 0.00137345 0)
(0.000617752 0.00649612 0)
(0.000969224 0.0109246 0)
(0.00134712 0.0142872 0)
(0.00173496 0.0166151 0)
(0.0021239 0.0181114 0)
(0.00251015 0.01901 0)
(0.0028927 0.0195111 0)
(0.00327175 0.0197621 0)
(0.00364791 0.0198621 0)
(0.00402173 0.0198733 0)
(0.00439364 0.0198327 0)
(0.00476388 0.0197614 0)
(0.00513259 0.0196712 0)
(0.00549982 0.0195682 0)
(0.00586556 0.0194557 0)
(0.00622976 0.0193353 0)
(0.00659237 0.0192079 0)
(0.00695332 0.0190739 0)
(0.00731251 0.0189335 0)
(0.00766988 0.0187867 0)
(0.00802533 0.0186335 0)
(0.00837877 0.0184741 0)
(0.00873013 0.0183083 0)
(0.0090793 0.0181362 0)
(0.00942619 0.0179577 0)
(0.0097707 0.0177729 0)
(0.0101127 0.0175818 0)
(0.0104522 0.0173843 0)
(0.010789 0.0171805 0)
(0.011123 0.0169704 0)
(0.0114541 0.0167539 0)
(0.0117822 0.016531 0)
(0.0121073 0.0163018 0)
(0.0124291 0.0160662 0)
(0.0127476 0.0158244 0)
(0.0130627 0.0155761 0)
(0.0133742 0.0153216 0)
(0.013682 0.0150608 0)
(0.0139861 0.0147937 0)
(0.0142862 0.0145202 0)
(0.0145823 0.0142406 0)
(0.0148743 0.0139547 0)
(0.015162 0.0136626 0)
(0.0154452 0.0133643 0)
(0.015724 0.0130598 0)
(0.0159981 0.0127493 0)
(0.0162674 0.0124326 0)
(0.0165318 0.0121099 0)
(0.0167911 0.0117812 0)
(0.0170453 0.0114466 0)
(0.0172941 0.011106 0)
(0.0175376 0.0107597 0)
(0.0177755 0.0104075 0)
(0.0180077 0.0100496 0)
(0.0182341 0.00968605 0)
(0.0184545 0.00931693 0)
(0.0186689 0.00894231 0)
(0.0188771 0.00856229 0)
(0.019079 0.00817697 0)
(0.0192745 0.00778643 0)
(0.0194635 0.00739079 0)
(0.0196458 0.00699018 0)
(0.0198214 0.00658472 0)
(0.0199902 0.00617456 0)
(0.020152 0.00575987 0)
(0.0203068 0.0053408 0)
(0.0204545 0.00491756 0)
(0.020595 0.00449035 0)
(0.0207283 0.0040594 0)
(0.0208542 0.00362496 0)
(0.0209728 0.0031873 0)
(0.021084 0.00274672 0)
(0.0211878 0.00230352 0)
(0.0212843 0.00185805 0)
(0.0213734 0.00141067 0)
(0.0214551 0.00096171 0)
(0.0215292 0.000511491 0)
(0.0215957 6.05417e-05 0)
(0.0216551 -0.000390597 0)
(0.0217078 -0.000841456 0)
(0.0217537 -0.00129158 0)
(0.0217929 -0.00174043 0)
(0.0218255 -0.0021874 0)
(0.0218519 -0.0026319 0)
(0.0218722 -0.00307327 0)
(0.0218868 -0.00351082 0)
(0.021896 -0.00394381 0)
(0.0219 -0.00437143 0)
(0.0218994 -0.00479271 0)
(0.0218946 -0.00520654 0)
(0.0218859 -0.00561159 0)
(0.021874 -0.00600635 0)
(0.0218593 -0.00638919 0)
(0.0218422 -0.00675873 0)
(0.0218229 -0.00711477 0)
(0.0218013 -0.00745863 0)
(-1.41199e-05 -0.00385976 0)
(-2.16796e-05 -0.00611073 0)
(6.64237e-05 -0.00395358 0)
(0.000254394 0.000462902 0)
(0.000523161 0.00533384 0)
(0.000844417 0.00961276 0)
(0.00119393 0.0129034 0)
(0.00155527 0.0152074 0)
(0.00191917 0.0167043 0)
(0.00228138 0.0176135 0)
(0.00264048 0.0181273 0)
(0.00299642 0.0183899 0)
(0.00334962 0.0184996 0)
(0.00370054 0.0185188 0)
(0.00404955 0.0184849 0)
(0.0043969 0.0184196 0)
(0.00474269 0.0183351 0)
(0.00508698 0.0182377 0)
(0.00542974 0.018131 0)
(0.00577093 0.0180166 0)
(0.0061105 0.0178954 0)
(0.00644837 0.0177679 0)
(0.00678446 0.0176343 0)
(0.00711869 0.0174946 0)
(0.00745098 0.0173489 0)
(0.00778123 0.0171972 0)
(0.00810936 0.0170395 0)
(0.00843526 0.0168759 0)
(0.00875886 0.0167062 0)
(0.00908005 0.0165306 0)
(0.00939876 0.0163491 0)
(0.00971487 0.0161615 0)
(0.0100283 0.015968 0)
(0.0103389 0.0157685 0)
(0.0106467 0.0155631 0)
(0.0109514 0.0153517 0)
(0.011253 0.0151344 0)
(0.0115514 0.0149111 0)
(0.0118465 0.0146819 0)
(0.0121382 0.0144469 0)
(0.0124264 0.0142059 0)
(0.0127109 0.013959 0)
(0.0129917 0.0137063 0)
(0.0132685 0.0134477 0)
(0.0135414 0.0131834 0)
(0.0138102 0.0129132 0)
(0.0140748 0.0126373 0)
(0.014335 0.0123557 0)
(0.0145908 0.0120683 0)
(0.0148421 0.0117753 0)
(0.0150886 0.0114767 0)
(0.0153304 0.0111725 0)
(0.0155672 0.0108628 0)
(0.015799 0.0105475 0)
(0.0160256 0.0102269 0)
(0.016247 0.00990081 0)
(0.0164629 0.00956943 0)
(0.0166734 0.00923277 0)
(0.0168783 0.00889091 0)
(0.0170774 0.0085439 0)
(0.0172707 0.00819183 0)
(0.017458 0.00783477 0)
(0.0176393 0.0074728 0)
(0.0178145 0.00710603 0)
(0.0179834 0.00673453 0)
(0.0181459 0.00635844 0)
(0.018302 0.00597785 0)
(0.0184516 0.00559289 0)
(0.0185945 0.0052037 0)
(0.0187308 0.00481042 0)
(0.0188603 0.00441322 0)
(0.0189831 0.00401227 0)
(0.019099 0.00360776 0)
(0.0192079 0.00319991 0)
(0.01931 0.00278894 0)
(0.0194051 0.0023751 0)
(0.0194933 0.00195864 0)
(0.0195746 0.00153986 0)
(0.0196489 0.00111901 0)
(0.0197161 0.000696359 0)
(0.0197765 0.000272263 0)
(0.0198302 -0.000152976 0)
(0.0198772 -0.000578812 0)
(0.0199177 -0.00100494 0)
(0.0199519 -0.00143094 0)
(0.01998 -0.00185635 0)
(0.020002 -0.00228069 0)
(0.0200182 -0.00270346 0)
(0.0200288 -0.0031241 0)
(0.0200341 -0.00354204 0)
(0.0200344 -0.00395665 0)
(0.0200298 -0.00436718 0)
(0.0200209 -0.00477277 0)
(0.0200078 -0.00517237 0)
(0.0199909 -0.00556467 0)
(0.0199705 -0.0059481 0)
(0.019947 -0.0063209 0)
(0.0199204 -0.00668138 0)
(0.0198908 -0.00702858 0)
(0.0198576 -0.00736217 0)
(-1.43383e-05 -0.00378476 0)
(-3.12404e-05 -0.00623367 0)
(3.58485e-05 -0.00442067 0)
(0.000196183 -0.000337892 0)
(0.000435495 0.00428376 0)
(0.000727829 0.0084087 0)
(0.00105002 0.0116208 0)
(0.00138577 0.0138947 0)
(0.00172552 0.0153877 0)
(0.00206457 0.0163044 0)
(0.00240117 0.016829 0)
(0.00273497 0.0171023 0)
(0.00306622 0.0172212 0)
(0.00339529 0.0172481 0)
(0.00372249 0.0172209 0)
(0.00404803 0.0171618 0)
(0.004372 0.017083 0)
(0.00469446 0.0169914 0)
(0.00501538 0.0168905 0)
(0.00533471 0.0167821 0)
(0.0056524 0.0166673 0)
(0.00596838 0.0165463 0)
(0.00628255 0.0164196 0)
(0.00659486 0.0162871 0)
(0.0069052 0.0161489 0)
(0.0072135 0.0160051 0)
(0.00751967 0.0158556 0)
(0.00782361 0.0157005 0)
(0.00812524 0.0155397 0)
(0.00842446 0.0153733 0)
(0.00872118 0.0152014 0)
(0.0090153 0.0150238 0)
(0.00930674 0.0148406 0)
(0.00959539 0.0146518 0)
(0.00988117 0.0144574 0)
(0.010164 0.0142574 0)
(0.0104437 0.0140519 0)
(0.0107202 0.0138409 0)
(0.0109934 0.0136243 0)
(0.0112633 0.0134022 0)
(0.0115296 0.0131747 0)
(0.0117924 0.0129416 0)
(0.0120514 0.0127031 0)
(0.0123067 0.0124592 0)
(0.012558 0.0122099 0)
(0.0128053 0.0119552 0)
(0.0130485 0.0116952 0)
(0.0132874 0.0114299 0)
(0.013522 0.0111593 0)
(0.0137521 0.0108835 0)
(0.0139776 0.0106025 0)
(0.0141985 0.0103163 0)
(0.0144145 0.0100251 0)
(0.0146257 0.00972872 0)
(0.0148318 0.00942735 0)
(0.0150329 0.00912102 0)
(0.0152287 0.00880976 0)
(0.0154192 0.00849365 0)
(0.0156042 0.00817273 0)
(0.0157837 0.00784707 0)
(0.0159575 0.00751673 0)
(0.0161256 0.00718179 0)
(0.0162879 0.00684231 0)
(0.0164443 0.00649837 0)
(0.0165946 0.00615006 0)
(0.0167388 0.00579747 0)
(0.0168768 0.0054407 0)
(0.0170086 0.00507985 0)
(0.017134 0.00471505 0)
(0.017253 0.00434641 0)
(0.0173655 0.00397406 0)
(0.0174715 0.00359817 0)
(0.0175709 0.00321887 0)
(0.0176636 0.00283635 0)
(0.0177498 0.00245079 0)
(0.0178293 0.00206238 0)
(0.0179021 0.00167134 0)
(0.0179683 0.00127788 0)
(0.0180277 0.000882206 0)
(0.0180804 0.000484558 0)
(0.0181262 8.53047e-05 0)
(0.0181655 -0.000315362 0)
(0.0181987 -0.000717086 0)
(0.0182256 -0.00111956 0)
(0.0182463 -0.00152243 0)
(0.0182608 -0.00192533 0)
(0.0182693 -0.00232785 0)
(0.0182719 -0.00272955 0)
(0.0182689 -0.00312997 0)
(0.0182604 -0.00352859 0)
(0.0182467 -0.00392482 0)
(0.0182278 -0.00431798 0)
(0.018204 -0.0047072 0)
(0.0181756 -0.00509141 0)
(0.0181426 -0.00546925 0)
(0.0181054 -0.005839 0)
(0.0180639 -0.00619865 0)
(0.0180182 -0.00654604 0)
(0.017968 -0.00687933 0)
(0.0179127 -0.00719649 0)
(-1.44019e-05 -0.00369425 0)
(-3.94405e-05 -0.00630031 0)
(8.67862e-06 -0.00480056 0)
(0.000143383 -0.00103553 0)
(0.000354808 0.00334046 0)
(0.000619547 0.00730802 0)
(0.000915524 0.0104356 0)
(0.00122667 0.0126737 0)
(0.0015432 0.0141582 0)
(0.00186004 0.0150792 0)
(0.00217508 0.0156128 0)
(0.00248772 0.0158955 0)
(0.00279804 0.016023 0)
(0.00310629 0.0160574 0)
(0.00341274 0.0160368 0)
(0.00371755 0.0159837 0)
(0.0040208 0.0159107 0)
(0.00432254 0.0158249 0)
(0.00462273 0.0157299 0)
(0.00492134 0.0156276 0)
(0.0052183 0.0155191 0)
(0.00551355 0.0154047 0)
(0.005807 0.0152849 0)
(0.00609858 0.0151596 0)
(0.0063882 0.015029 0)
(0.00667577 0.014893 0)
(0.00696121 0.0147517 0)
(0.00724444 0.0146051 0)
(0.00752537 0.0144532 0)
(0.00780391 0.014296 0)
(0.00807996 0.0141336 0)
(0.00835345 0.0139659 0)
(0.00862426 0.0137929 0)
(0.00889232 0.0136148 0)
(0.00915752 0.0134313 0)
(0.00941977 0.0132427 0)
(0.00967899 0.0130489 0)
(0.00993506 0.0128499 0)
(0.0101879 0.0126458 0)
(0.0104374 0.0124366 0)
(0.0106835 0.0122222 0)
(0.010926 0.0120028 0)
(0.0111649 0.0117783 0)
(0.0114 0.0115487 0)
(0.0116314 0.0113142 0)
(0.0118587 0.0110747 0)
(0.0120821 0.0108302 0)
(0.0123013 0.0105809 0)
(0.0125162 0.0103267 0)
(0.0127268 0.0100676 0)
(0.012933 0.00980375 0)
(0.0131345 0.00953514 0)
(0.0133315 0.00926181 0)
(0.0135236 0.00898382 0)
(0.0137109 0.00870119 0)
(0.0138932 0.00841399 0)
(0.0140705 0.00812226 0)
(0.0142426 0.00782604 0)
(0.0144094 0.0075254 0)
(0.0145709 0.00722039 0)
(0.0147268 0.00691106 0)
(0.0148773 0.00659749 0)
(0.015022 0.00627973 0)
(0.0151611 0.00595785 0)
(0.0152943 0.00563192 0)
(0.0154216 0.00530203 0)
(0.0155429 0.00496825 0)
(0.0156581 0.00463068 0)
(0.0157671 0.00428941 0)
(0.01587 0.00394454 0)
(0.0159665 0.00359618 0)
(0.0160567 0.00324447 0)
(0.0161405 0.00288953 0)
(0.0162179 0.0025315 0)
(0.0162887 0.00217055 0)
(0.016353 0.00180682 0)
(0.0164108 0.00144048 0)
(0.016462 0.00107171 0)
(0.0165065 0.000700676 0)
(0.0165445 0.000327606 0)
(0.016576 -4.7333e-05 0)
(0.0166008 -0.00042377 0)
(0.0166191 -0.000801526 0)
(0.016631 -0.00118033 0)
(0.0166365 -0.00155987 0)
(0.0166357 -0.00193982 0)
(0.0166285 -0.0023198 0)
(0.0166151 -0.00269942 0)
(0.0165955 -0.00307825 0)
(0.0165699 -0.00345582 0)
(0.0165382 -0.00383155 0)
(0.0165007 -0.00420478 0)
(0.0164573 -0.00457463 0)
(0.0164082 -0.00493997 0)
(0.0163534 -0.00529935 0)
(0.016293 -0.00565086 0)
(0.016227 -0.00599218 0)
(0.0161552 -0.00632065 0)
(0.0160772 -0.00663356 0)
(0.0159923 -0.00692738 0)
(-1.43137e-05 -0.00359085 0)
(-4.67127e-05 -0.00631684 0)
(-1.58372e-05 -0.00510048 0)
(9.56079e-05 -0.00163683 0)
(0.000280901 0.0024982 0)
(0.000519437 0.00630598 0)
(0.000790363 0.00934382 0)
(0.00107793 0.0115405 0)
(0.0013722 0.0130121 0)
(0.0016678 0.0139344 0)
(0.00196226 0.0144748 0)
(0.00225474 0.0147658 0)
(0.00254515 0.0149012 0)
(0.00283363 0.0149427 0)
(0.00312038 0.0149285 0)
(0.00340554 0.0148814 0)
(0.00368916 0.0148141 0)
(0.00397128 0.014734 0)
(0.00425187 0.0146449 0)
(0.00453088 0.0145487 0)
(0.00480825 0.0144464 0)
(0.00508391 0.0143387 0)
(0.00535779 0.0142257 0)
(0.00562981 0.0141077 0)
(0.00589989 0.0139845 0)
(0.00616794 0.0138563 0)
(0.00643388 0.0137232 0)
(0.00669764 0.0135851 0)
(0.00695911 0.0134419 0)
(0.00721822 0.0132939 0)
(0.00747489 0.0131409 0)
(0.00772902 0.012983 0)
(0.00798052 0.0128201 0)
(0.0082293 0.0126524 0)
(0.00847528 0.0124798 0)
(0.00871836 0.0123023 0)
(0.00895845 0.01212 0)
(0.00919545 0.0119329 0)
(0.00942928 0.011741 0)
(0.00965985 0.0115444 0)
(0.00988705 0.011343 0)
(0.0101108 0.0111368 0)
(0.010331 0.010926 0)
(0.0105476 0.0107106 0)
(0.0107604 0.0104905 0)
(0.0109693 0.0102658 0)
(0.0111743 0.0100365 0)
(0.0113753 0.0098027 0)
(0.0115721 0.00956442 0)
(0.0117648 0.00932167 0)
(0.011953 0.00907451 0)
(0.0121369 0.00882296 0)
(0.0123162 0.00856708 0)
(0.0124909 0.0083069 0)
(0.0126609 0.00804247 0)
(0.0128261 0.00777383 0)
(0.0129863 0.00750104 0)
(0.0131416 0.00722412 0)
(0.0132917 0.00694315 0)
(0.0134366 0.00665815 0)
(0.0135762 0.0063692 0)
(0.0137105 0.00607634 0)
(0.0138392 0.00577964 0)
(0.0139624 0.00547914 0)
(0.0140799 0.00517493 0)
(0.0141917 0.00486707 0)
(0.0142976 0.00455562 0)
(0.0143976 0.00424068 0)
(0.0144917 0.00392232 0)
(0.0145796 0.00360063 0)
(0.0146614 0.0032757 0)
(0.014737 0.00294765 0)
(0.0148063 0.00261659 0)
(0.0148693 0.00228263 0)
(0.0149258 0.00194591 0)
(0.014976 0.00160656 0)
(0.0150196 0.00126473 0)
(0.0150566 0.00092055 0)
(0.0150869 0.000574185 0)
(0.0151104 0.000225847 0)
(0.0151272 -0.000124329 0)
(0.0151376 -0.000476061 0)
(0.0151414 -0.000829125 0)
(0.0151383 -0.00118326 0)
(0.0151286 -0.00153818 0)
(0.015112 -0.00189356 0)
(0.0150886 -0.00224905 0)
(0.0150584 -0.00260427 0)
(0.0150213 -0.00295881 0)
(0.0149773 -0.0033122 0)
(0.0149264 -0.0036639 0)
(0.0148686 -0.0040132 0)
(0.0148038 -0.00435924 0)
(0.014732 -0.00470084 0)
(0.0146532 -0.00503643 0)
(0.0145674 -0.00536398 0)
(0.0144744 -0.00568087 0)
(0.0143741 -0.00598401 0)
(0.0142661 -0.00626998 0)
(0.0141497 -0.00653411 0)
(-1.4123e-05 -0.00347684 0)
(-5.2718e-05 -0.00628918 0)
(-3.73579e-05 -0.00532758 0)
(5.27212e-05 -0.00214871 0)
(0.000213724 0.00175097 0)
(0.000427533 0.00539757 0)
(0.000674628 0.00834111 0)
(0.000939683 0.0104914 0)
(0.00121268 0.0119458 0)
(0.00148798 0.0128662 0)
(0.00176283 0.0134115 0)
(0.00203614 0.0137094 0)
(0.00230764 0.013852 0)
(0.00257738 0.0139001 0)
(0.00284546 0.0138921 0)
(0.00311201 0.0138507 0)
(0.00337706 0.0137892 0)
(0.00364063 0.0137147 0)
(0.0039027 0.0136314 0)
(0.00416321 0.0135412 0)
(0.0044221 0.0134452 0)
(0.0046793 0.013344 0)
(0.00493474 0.0132378 0)
(0.00518834 0.0131268 0)
(0.00544003 0.0130111 0)
(0.00568973 0.0128907 0)
(0.00593735 0.0127655 0)
(0.00618282 0.0126357 0)
(0.00642605 0.0125013 0)
(0.00666695 0.0123622 0)
(0.00690545 0.0122185 0)
(0.00714147 0.0120701 0)
(0.00737491 0.0119172 0)
(0.00760569 0.0117598 0)
(0.00783373 0.0115978 0)
(0.00805894 0.0114313 0)
(0.00828123 0.0112602 0)
(0.00850051 0.0110848 0)
(0.00871669 0.0109048 0)
(0.00892968 0.0107205 0)
(0.00913939 0.0105317 0)
(0.00934574 0.0103386 0)
(0.00954862 0.0101411 0)
(0.00974796 0.00993933 0)
(0.00994366 0.00973328 0)
(0.0101356 0.00952299 0)
(0.0103238 0.00930849 0)
(0.010508 0.00908982 0)
(0.0106882 0.00886702 0)
(0.0108643 0.00864011 0)
(0.0110362 0.00840915 0)
(0.0112038 0.00817417 0)
(0.011367 0.00793521 0)
(0.0115257 0.00769231 0)
(0.0116799 0.00744552 0)
(0.0118294 0.00719487 0)
(0.0119742 0.00694042 0)
(0.012114 0.00668221 0)
(0.012249 0.00642028 0)
(0.0123789 0.0061547 0)
(0.0125036 0.0058855 0)
(0.0126232 0.00561275 0)
(0.0127374 0.00533648 0)
(0.0128462 0.00505677 0)
(0.0129495 0.00477367 0)
(0.0130472 0.00448724 0)
(0.0131393 0.00419756 0)
(0.0132255 0.00390468 0)
(0.013306 0.0036087 0)
(0.0133805 0.00330969 0)
(0.0134489 0.00300775 0)
(0.0135112 0.00270296 0)
(0.0135674 0.00239543 0)
(0.0136173 0.00208528 0)
(0.0136608 0.00177261 0)
(0.0136979 0.00145755 0)
(0.0137285 0.00114021 0)
(0.0137524 0.000820733 0)
(0.0137697 0.000499276 0)
(0.0137802 0.000176013 0)
(0.013784 -0.000148778 0)
(0.013781 -0.000474948 0)
(0.013771 -0.000802261 0)
(0.013754 -0.00113044 0)
(0.0137299 -0.00145916 0)
(0.0136985 -0.00178811 0)
(0.0136598 -0.0021169 0)
(0.0136137 -0.00244515 0)
(0.01356 -0.00277243 0)
(0.0134987 -0.00309827 0)
(0.0134295 -0.00342213 0)
(0.0133524 -0.00374331 0)
(0.0132673 -0.00406094 0)
(0.013174 -0.00437387 0)
(0.0130724 -0.0046805 0)
(0.0129625 -0.00497876 0)
(0.012844 -0.00526588 0)
(0.012717 -0.00553853 0)
(0.0125811 -0.00579272 0)
(0.0124358 -0.00602296 0)
(-1.38311e-05 -0.00335424 0)
(-5.75154e-05 -0.00622262 0)
(-5.59314e-05 -0.00548873 0)
(1.45505e-05 -0.00257798 0)
(0.000152933 0.00109278 0)
(0.000343498 0.00457772 0)
(0.000568041 0.00742316 0)
(0.000811711 0.00952252 0)
(0.00106448 0.0109556 0)
(0.00132048 0.011871 0)
(0.00157669 0.012419 0)
(0.00183181 0.0127226 0)
(0.00208539 0.0128715 0)
(0.00233739 0.0129258 0)
(0.00258784 0.0129236 0)
(0.00283681 0.0128878 0)
(0.00308434 0.0128318 0)
(0.00333041 0.0127629 0)
(0.00357501 0.0126853 0)
(0.00381807 0.012601 0)
(0.00405956 0.0125112 0)
(0.00429938 0.0124164 0)
(0.00453748 0.0123169 0)
(0.00477378 0.0122129 0)
(0.00500821 0.0121045 0)
(0.00524068 0.0119916 0)
(0.00547111 0.0118743 0)
(0.00569944 0.0117527 0)
(0.00592559 0.0116267 0)
(0.00614946 0.0114964 0)
(0.00637099 0.0113617 0)
(0.00659009 0.0112228 0)
(0.00680669 0.0110796 0)
(0.00702069 0.0109322 0)
(0.00723202 0.0107806 0)
(0.0074406 0.0106247 0)
(0.00764634 0.0104647 0)
(0.00784915 0.0103005 0)
(0.00804896 0.0101322 0)
(0.00824567 0.00995979 0)
(0.0084392 0.00978333 0)
(0.00862947 0.00960283 0)
(0.00881638 0.00941833 0)
(0.00899985 0.00922986 0)
(0.00917979 0.00903745 0)
(0.00935612 0.00884114 0)
(0.00952875 0.00864096 0)
(0.00969759 0.00843694 0)
(0.00986255 0.00822913 0)
(0.0100235 0.00801756 0)
(0.0101805 0.00780227 0)
(0.0103332 0.00758331 0)
(0.0104818 0.00736072 0)
(0.010626 0.00713453 0)
(0.0107658 0.00690479 0)
(0.0109011 0.00667155 0)
(0.0110318 0.00643485 0)
(0.0111578 0.00619473 0)
(0.011279 0.00595125 0)
(0.0113953 0.00570445 0)
(0.0115067 0.00545438 0)
(0.0116131 0.00520109 0)
(0.0117143 0.00494465 0)
(0.0118102 0.0046851 0)
(0.0119008 0.0044225 0)
(0.011986 0.00415692 0)
(0.0120657 0.00388842 0)
(0.0121398 0.00361707 0)
(0.0122082 0.00334295 0)
(0.0122707 0.00306614 0)
(0.0123274 0.00278673 0)
(0.0123781 0.0025048 0)
(0.0124228 0.00222047 0)
(0.0124612 0.00193384 0)
(0.0124934 0.00164502 0)
(0.0125192 0.00135415 0)
(0.0125385 0.00106133 0)
(0.0125512 0.00076672 0)
(0.0125572 0.000470502 0)
(0.0125565 0.000172831 0)
(0.0125491 -0.000126087 0)
(0.0125346 -0.000426003 0)
(0.0125131 -0.000726648 0)
(0.0124843 -0.00102771 0)
(0.0124482 -0.00132885 0)
(0.0124046 -0.00162969 0)
(0.0123533 -0.00192983 0)
(0.0122942 -0.00222886 0)
(0.0122271 -0.00252633 0)
(0.0121518 -0.00282174 0)
(0.0120682 -0.00311453 0)
(0.0119759 -0.00340403 0)
(0.011875 -0.00368935 0)
(0.0117651 -0.00396939 0)
(0.0116462 -0.00424263 0)
(0.011518 -0.00450705 0)
(0.0113806 -0.00475997 0)
(0.0112339 -0.00499798 0)
(0.0110775 -0.00521681 0)
(0.0109112 -0.00541048 0)
(-1.34842e-05 -0.00322501 0)
(-6.13188e-05 -0.0061224 0)
(-7.18587e-05 -0.0055907 0)
(-1.91018e-05 -0.00293159 0)
(9.84611e-05 0.000517393 0)
(0.000267313 0.00384111 0)
(0.000470576 0.00658541 0)
(0.000693969 0.00862971 0)
(0.000927529 0.0100378 0)
(0.0011652 0.0109452 0)
(0.00140375 0.0114938 0)
(0.00164164 0.0118017 0)
(0.00187828 0.011956 0)
(0.0021135 0.012016 0)
(0.0023473 0.0120193 0)
(0.00257969 0.0119889 0)
(0.00281069 0.0119382 0)
(0.00304029 0.0118748 0)
(0.00326844 0.0118027 0)
(0.0034951 0.0117242 0)
(0.00372021 0.0116404 0)
(0.0039437 0.0115519 0)
(0.00416551 0.011459 0)
(0.00438557 0.0113618 0)
(0.00460381 0.0112604 0)
(0.00482013 0.0111549 0)
(0.00503449 0.0110453 0)
(0.00524679 0.0109317 0)
(0.00545696 0.0108139 0)
(0.00566494 0.0106921 0)
(0.00587064 0.0105664 0)
(0.00607398 0.0104366 0)
(0.00627489 0.0103028 0)
(0.00647329 0.0101651 0)
(0.00666909 0.0100235 0)
(0.00686223 0.00987802 0)
(0.00705262 0.00972865 0)
(0.00724018 0.00957544 0)
(0.00742484 0.00941842 0)
(0.0076065 0.00925761 0)
(0.0077851 0.00909306 0)
(0.00796055 0.00892478 0)
(0.00813276 0.00875282 0)
(0.00830165 0.00857721 0)
(0.00846714 0.00839797 0)
(0.00862914 0.00821516 0)
(0.00878758 0.0080288 0)
(0.00894236 0.00783892 0)
(0.0090934 0.00764558 0)
(0.00924062 0.0074488 0)
(0.00938394 0.00724864 0)
(0.00952326 0.00704513 0)
(0.00965851 0.00683831 0)
(0.0097896 0.00662823 0)
(0.00991644 0.00641493 0)
(0.0100389 0.00619846 0)
(0.010157 0.00597887 0)
(0.0102706 0.0057562 0)
(0.0103796 0.0055305 0)
(0.0104838 0.00530182 0)
(0.0105833 0.00507021 0)
(0.010678 0.00483574 0)
(0.0107677 0.00459844 0)
(0.0108523 0.00435838 0)
(0.0109318 0.00411563 0)
(0.0110061 0.00387024 0)
(0.011075 0.0036223 0)
(0.0111385 0.00337186 0)
(0.0111965 0.00311901 0)
(0.0112488 0.00286384 0)
(0.0112955 0.00260643 0)
(0.0113363 0.00234688 0)
(0.0113712 0.0020853 0)
(0.0114 0.0018218 0)
(0.0114228 0.00155648 0)
(0.0114393 0.00128948 0)
(0.0114494 0.00102093 0)
(0.0114532 0.000750978 0)
(0.0114503 0.000479813 0)
(0.0114408 0.000207665 0)
(0.0114244 -6.52789e-05 0)
(0.0114012 -0.00033874 0)
(0.0113709 -0.000612413 0)
(0.0113335 -0.000885952 0)
(0.0112887 -0.00115898 0)
(0.0112364 -0.00143108 0)
(0.0111764 -0.00170183 0)
(0.0111085 -0.00197077 0)
(0.0110326 -0.00223741 0)
(0.0109485 -0.00250125 0)
(0.0108559 -0.00276168 0)
(0.0107548 -0.00301804 0)
(0.0106449 -0.00326951 0)
(0.010526 -0.00351505 0)
(0.0103981 -0.00375327 0)
(0.010261 -0.0039823 0)
(0.0101146 -0.00419955 0)
(0.00995884 -0.00440158 0)
(0.00979351 -0.00458387 0)
(0.00961814 -0.00473996 0)
(-1.30898e-05 -0.00309086 0)
(-6.42082e-05 -0.0059933 0)
(-8.53307e-05 -0.00563984 0)
(-4.85945e-05 -0.00321594 0)
(4.9999e-05 1.90338e-05 0)
(0.000198818 0.00318268 0)
(0.000382065 0.00582343 0)
(0.000586284 0.00780903 0)
(0.000801633 0.00918852 0)
(0.00102194 0.0100852 0)
(0.00124374 0.0106324 0)
(0.00146534 0.0109431 0)
(0.00168598 0.011102 0)
(0.00190539 0.011167 0)
(0.0021235 0.0111755 0)
(0.00234028 0.0111502 0)
(0.00255573 0.0111047 0)
(0.00276982 0.0110465 0)
(0.00298251 0.0109799 0)
(0.00319376 0.010907 0)
(0.00340351 0.010829 0)
(0.00361169 0.0107466 0)
(0.00381824 0.0106601 0)
(0.00402309 0.0105695 0)
(0.00422616 0.0104751 0)
(0.0044274 0.0103767 0)
(0.00462672 0.0102746 0)
(0.00482405 0.0101686 0)
(0.00501932 0.0100589 0)
(0.00521247 0.00994538 0)
(0.00540342 0.00982815 0)
(0.00559209 0.00970721 0)
(0.00577842 0.00958258 0)
(0.00596233 0.0094543 0)
(0.00614374 0.00932239 0)
(0.00632258 0.00918687 0)
(0.00649878 0.00904778 0)
(0.00667226 0.00890515 0)
(0.00684294 0.008759 0)
(0.00701074 0.00860936 0)
(0.0071756 0.00845627 0)
(0.00733742 0.00829976 0)
(0.00749614 0.00813987 0)
(0.00765166 0.00797662 0)
(0.00780393 0.00781006 0)
(0.00795285 0.00764022 0)
(0.00809834 0.00746714 0)
(0.00824034 0.00729085 0)
(0.00837875 0.0071114 0)
(0.00851351 0.00692884 0)
(0.00864452 0.00674319 0)
(0.00877172 0.00655451 0)
(0.00889501 0.00636283 0)
(0.00901432 0.00616821 0)
(0.00912956 0.00597068 0)
(0.00924065 0.00577031 0)
(0.00934752 0.00556712 0)
(0.00945007 0.00536119 0)
(0.00954821 0.00515255 0)
(0.00964188 0.00494126 0)
(0.00973097 0.00472738 0)
(0.0098154 0.00451096 0)
(0.00989508 0.00429207 0)
(0.00996993 0.00407075 0)
(0.0100399 0.00384708 0)
(0.0101048 0.00362114 0)
(0.0101645 0.00339298 0)
(0.0102191 0.00316269 0)
(0.0102684 0.00293036 0)
(0.0103123 0.00269607 0)
(0.0103507 0.00245992 0)
(0.0103834 0.00222202 0)
(0.0104105 0.00198247 0)
(0.0104318 0.0017414 0)
(0.0104471 0.00149892 0)
(0.0104564 0.00125516 0)
(0.0104595 0.00101026 0)
(0.0104565 0.000764384 0)
(0.0104471 0.000517727 0)
(0.0104314 0.0002705 0)
(0.010409 2.29787e-05 0)
(0.01038 -0.000224553 0)
(0.0103441 -0.00047176 0)
(0.0103013 -0.000718269 0)
(0.0102513 -0.000963676 0)
(0.0101942 -0.00120756 0)
(0.0101296 -0.00144946 0)
(0.0100575 -0.00168893 0)
(0.00997781 -0.00192548 0)
(0.0098903 -0.00215857 0)
(0.00979487 -0.00238764 0)
(0.00969138 -0.00261202 0)
(0.00957973 -0.00283094 0)
(0.0094598 -0.00304345 0)
(0.00933152 -0.00324827 0)
(0.00919479 -0.0034436 0)
(0.00904954 -0.0036268 0)
(0.00889557 -0.00379411 0)
(0.00873246 -0.00394044 0)
(0.00855957 -0.00405874 0)
(-1.26197e-05 -0.0029535 0)
(-6.61274e-05 -0.00584005 0)
(-9.62062e-05 -0.0056426 0)
(-7.36004e-05 -0.00343786 0)
(7.28949e-06 -0.00040878 0)
(0.000137154 0.00259682 0)
(0.000301849 0.00513243 0)
(0.000488156 0.00705625 0)
(0.0006864 0.008404 0)
(0.000890334 0.0092873 0)
(0.00109636 0.00983107 0)
(0.00130259 0.0101434 0)
(0.00150815 0.0103059 0)
(0.00171268 0.0103754 0)
(0.00191602 0.0103886 0)
(0.00211813 0.0103682 0)
(0.00231896 0.0103276 0)
(0.0025185 0.0102745 0)
(0.00271669 0.0102131 0)
(0.00291349 0.0101456 0)
(0.00310884 0.0100734 0)
(0.00330268 0.00999689 0)
(0.00349494 0.00991649 0)
(0.00368555 0.00983235 0)
(0.00387445 0.00974455 0)
(0.00406158 0.00965314 0)
(0.00424686 0.00955816 0)
(0.00443024 0.00945964 0)
(0.00461164 0.0093576 0)
(0.00479099 0.00925207 0)
(0.00496823 0.00914307 0)
(0.00514329 0.00903064 0)
(0.00531609 0.00891479 0)
(0.00548657 0.00879556 0)
(0.00565466 0.00867297 0)
(0.00582029 0.00854705 0)
(0.00598339 0.00841783 0)
(0.00614388 0.00828534 0)
(0.0063017 0.00814962 0)
(0.00645676 0.00801069 0)
(0.006609 0.00786859 0)
(0.00675835 0.00772335 0)
(0.00690472 0.00757501 0)
(0.00704805 0.0074236 0)
(0.00718827 0.00726916 0)
(0.0073253 0.00711173 0)
(0.00745906 0.00695134 0)
(0.00758949 0.00678804 0)
(0.0077165 0.00662187 0)
(0.00784003 0.00645288 0)
(0.00795999 0.00628109 0)
(0.00807632 0.00610656 0)
(0.00818893 0.00592934 0)
(0.00829775 0.00574947 0)
(0.0084027 0.005567 0)
(0.00850371 0.00538198 0)
(0.00860069 0.00519446 0)
(0.00869357 0.00500449 0)
(0.00878227 0.00481213 0)
(0.0088667 0.00461743 0)
(0.00894679 0.00442046 0)
(0.00902245 0.00422128 0)
(0.00909359 0.00401994 0)
(0.00916013 0.00381651 0)
(0.00922198 0.00361107 0)
(0.00927905 0.0034037 0)
(0.00933126 0.00319446 0)
(0.00937851 0.00298344 0)
(0.00942072 0.00277073 0)
(0.00945779 0.00255643 0)
(0.00948963 0.00234064 0)
(0.00951615 0.00212345 0)
(0.00953726 0.001905 0)
(0.00955285 0.00168538 0)
(0.00956282 0.00146473 0)
(0.00956706 0.00124319 0)
(0.00956549 0.0010209 0)
(0.00955802 0.000798058 0)
(0.00954452 0.000574851 0)
(0.0095249 0.000351508 0)
(0.00949911 0.000128307 0)
(0.00946703 -9.44468e-05 0)
(0.00942851 -0.000316408 0)
(0.00938345 -0.000537206 0)
(0.00933174 -0.00075645 0)
(0.00927329 -0.000973731 0)
(0.009208 -0.00118863 0)
(0.0091358 -0.00140069 0)
(0.00905662 -0.00160945 0)
(0.00897038 -0.0018144 0)
(0.00887702 -0.00201498 0)
(0.00877648 -0.00221057 0)
(0.00866872 -0.00240042 0)
(0.00855372 -0.00258365 0)
(0.00843142 -0.00275897 0)
(0.00830174 -0.00292448 0)
(0.00816458 -0.00307719 0)
(0.0080196 -0.00321273 0)
(0.0078662 -0.00332514 0)
(0.00770356 -0.00340669 0)
(-1.21533e-05 -0.00281437 0)
(-6.74115e-05 -0.00566694 0)
(-0.00010516 -0.00560492 0)
(-9.51388e-05 -0.00360373 0)
(-2.98967e-05 -0.000772086 0)
(8.28902e-05 0.00207821 0)
(0.000230191 0.00450774 0)
(0.000399613 0.00636727 0)
(0.000581711 0.00768047 0)
(0.000770201 0.00854792 0)
(0.00096134 0.00908644 0)
(0.0011531 0.00939897 0)
(0.00134447 0.00956434 0)
(0.00153498 0.00963773 0)
(0.00172445 0.00965526 0)
(0.00191277 0.0096394 0)
(0.00209989 0.0096035 0)
(0.00228577 0.00955524 0)
(0.00247037 0.00949887 0)
(0.00265362 0.00943667 0)
(0.00283548 0.00936986 0)
(0.00301589 0.00929906 0)
(0.00319478 0.00922458 0)
(0.00337209 0.0091466 0)
(0.00354776 0.0090652 0)
(0.00372173 0.00898044 0)
(0.00389394 0.00889236 0)
(0.00406432 0.00880098 0)
(0.00423281 0.00870633 0)
(0.00439935 0.00860845 0)
(0.00456387 0.00850734 0)
(0.0047263 0.00840305 0)
(0.00488658 0.0082956 0)
(0.00504465 0.00818502 0)
(0.00520043 0.00807134 0)
(0.00535387 0.00795459 0)
(0.00550489 0.00783479 0)
(0.00565343 0.00771199 0)
(0.00579943 0.00758622 0)
(0.00594281 0.0074575 0)
(0.00608351 0.00732586 0)
(0.00622146 0.00719136 0)
(0.00635658 0.00705402 0)
(0.00648882 0.00691387 0)
(0.0066181 0.00677096 0)
(0.00674435 0.00662533 0)
(0.00686752 0.00647701 0)
(0.00698752 0.00632606 0)
(0.00710429 0.0061725 0)
(0.00721776 0.00601638 0)
(0.00732785 0.00585775 0)
(0.00743451 0.00569666 0)
(0.00753765 0.00553315 0)
(0.00763721 0.00536726 0)
(0.00773311 0.00519906 0)
(0.00782528 0.00502859 0)
(0.00791365 0.00485591 0)
(0.00799814 0.00468107 0)
(0.00807868 0.00450414 0)
(0.0081552 0.00432516 0)
(0.00822761 0.0041442 0)
(0.00829584 0.00396134 0)
(0.00835981 0.00377663 0)
(0.00841943 0.00359014 0)
(0.00847464 0.00340196 0)
(0.00852534 0.00321216 0)
(0.00857146 0.00302082 0)
(0.00861291 0.00282803 0)
(0.0086496 0.00263389 0)
(0.00868146 0.00243849 0)
(0.0087084 0.00224193 0)
(0.00873034 0.00204433 0)
(0.00874719 0.00184578 0)
(0.00875885 0.00164641 0)
(0.00876525 0.00144634 0)
(0.00876631 0.00124571 0)
(0.00876193 0.00104467 0)
(0.00875205 0.000843423 0)
(0.00873662 0.000642161 0)
(0.00871552 0.000441131 0)
(0.00868863 0.000240609 0)
(0.00865587 4.08969e-05 0)
(0.00861718 -0.000157676 0)
(0.00857248 -0.000354762 0)
(0.00852171 -0.000550002 0)
(0.00846481 -0.000743024 0)
(0.00840173 -0.000933442 0)
(0.00833245 -0.00112084 0)
(0.00825692 -0.00130479 0)
(0.00817514 -0.0014848 0)
(0.00808708 -0.00166035 0)
(0.00799275 -0.00183083 0)
(0.00789213 -0.00199552 0)
(0.00778521 -0.0021535 0)
(0.00767194 -0.00230336 0)
(0.00755223 -0.00244289 0)
(0.00742587 -0.00256856 0)
(0.00729244 -0.00267518 0)
(0.00715126 -0.00275584 0)
(0.00700148 -0.00280226 0)
(-1.16414e-05 -0.00267469 0)
(-6.79516e-05 -0.00547783 0)
(-0.000111996 -0.00553231 0)
(-0.000112902 -0.00371953 0)
(-6.18798e-05 -0.00107646 0)
(3.51294e-05 0.00162176 0)
(0.000166401 0.00394491 0)
(0.000320129 0.00573811 0)
(0.000487117 0.0070143 0)
(0.000661107 0.00786368 0)
(0.000838261 0.00839522 0)
(0.00101642 0.00870672 0)
(0.00119445 0.00887401 0)
(0.0013718 0.0089507 0)
(0.00154823 0.00897216 0)
(0.00172359 0.00896054 0)
(0.00189784 0.00892909 0)
(0.00207093 0.00888546 0)
(0.00224279 0.0088339 0)
(0.00241337 0.00877672 0)
(0.00258261 0.00871513 0)
(0.00275046 0.00864978 0)
(0.00291686 0.00858097 0)
(0.00308176 0.00850889 0)
(0.0032451 0.00843361 0)
(0.00340682 0.00835521 0)
(0.00356686 0.0082737 0)
(0.00372516 0.00818914 0)
(0.00388165 0.00810154 0)
(0.00403628 0.00801094 0)
(0.00418899 0.00791735 0)
(0.00433973 0.00782081 0)
(0.00448842 0.00772135 0)
(0.00463502 0.007619 0)
(0.00477946 0.00751378 0)
(0.00492167 0.00740573 0)
(0.0050616 0.00729489 0)
(0.00519917 0.00718128 0)
(0.00533432 0.00706493 0)
(0.00546701 0.00694589 0)
(0.00559716 0.00682417 0)
(0.00572471 0.00669983 0)
(0.00584961 0.0065729 0)
(0.00597178 0.00644341 0)
(0.00609117 0.00631141 0)
(0.00620771 0.00617693 0)
(0.00632134 0.00604002 0)
(0.00643199 0.00590071 0)
(0.0065396 0.00575906 0)
(0.0066441 0.0056151 0)
(0.00674544 0.00546888 0)
(0.00684353 0.00532045 0)
(0.00693833 0.00516986 0)
(0.00702976 0.00501716 0)
(0.00711776 0.0048624 0)
(0.00720225 0.00470563 0)
(0.00728318 0.00454692 0)
(0.00736047 0.00438632 0)
(0.00743405 0.00422389 0)
(0.00750386 0.00405969 0)
(0.00756982 0.0038938 0)
(0.00763186 0.00372627 0)
(0.00768991 0.00355719 0)
(0.0077439 0.00338662 0)
(0.00779376 0.00321464 0)
(0.00783941 0.00304134 0)
(0.00788078 0.0028668 0)
(0.0079178 0.0026911 0)
(0.0079504 0.00251435 0)
(0.00797849 0.00233663 0)
(0.00800201 0.00215805 0)
(0.00802087 0.00197871 0)
(0.00803501 0.00179873 0)
(0.00804435 0.00161822 0)
(0.00804884 0.00143729 0)
(0.00804839 0.0012561 0)
(0.00804295 0.0010748 0)
(0.00803245 0.000893567 0)
(0.00801679 0.000712614 0)
(0.0079959 0.000532174 0)
(0.00796976 0.000352524 0)
(0.0079383 0.000173955 0)
(0.00790144 -3.23256e-06 0)
(0.00785914 -0.000178728 0)
(0.00781136 -0.000352212 0)
(0.00775806 -0.000523356 0)
(0.00769923 -0.000691814 0)
(0.00763486 -0.000857212 0)
(0.00756495 -0.00101914 0)
(0.00748948 -0.00117715 0)
(0.00740848 -0.00133073 0)
(0.00732194 -0.00147927 0)
(0.00722988 -0.00162205 0)
(0.00713225 -0.00175803 0)
(0.00702901 -0.0018856 0)
(0.00692006 -0.0020022 0)
(0.00680515 -0.00210376 0)
(0.00668391 -0.0021844 0)
(0.00655583 -0.00223663 0)
(0.00642031 -0.00225212 0)
(-1.1128e-05 -0.00253563 0)
(-6.79169e-05 -0.00527645 0)
(-0.000117065 -0.00543021 0)
(-0.000127435 -0.00379132 0)
(-8.89673e-05 -0.00132782 0)
(-6.17288e-06 0.0012222 0)
(0.000110317 0.00343934 0)
(0.000249441 0.00516474 0)
(0.000402301 0.00640185 0)
(0.000562687 0.00723118 0)
(0.000726692 0.00775415 0)
(0.000892054 0.00806344 0)
(0.00105755 0.00823183 0)
(0.00122255 0.00831123 0)
(0.00138675 0.0083362 0)
(0.00154998 0.0083285 0)
(0.00171218 0.00830123 0)
(0.00187326 0.00826199 0)
(0.00203319 0.00821501 0)
(0.00219191 0.00816261 0)
(0.00234936 0.00810601 0)
(0.00250549 0.00804584 0)
(0.00266023 0.00798244 0)
(0.00281355 0.00791597 0)
(0.00296539 0.00784652 0)
(0.00311569 0.00777416 0)
(0.00326441 0.00769891 0)
(0.00341148 0.00762081 0)
(0.00355684 0.0075399 0)
(0.00370044 0.00745619 0)
(0.00384223 0.00736972 0)
(0.00398214 0.00728052 0)
(0.00412013 0.00718862 0)
(0.00425614 0.00709405 0)
(0.00439011 0.00699683 0)
(0.00452199 0.00689701 0)
(0.00465171 0.0067946 0)
(0.00477923 0.00668965 0)
(0.00490447 0.00658219 0)
(0.0050274 0.00647225 0)
(0.00514794 0.00635988 0)
(0.00526604 0.0062451 0)
(0.00538165 0.00612796 0)
(0.00549472 0.00600849 0)
(0.00560518 0.00588673 0)
(0.00571298 0.00576272 0)
(0.00581805 0.00563651 0)
(0.00592034 0.00550813 0)
(0.00601978 0.00537764 0)
(0.00611632 0.00524507 0)
(0.0062099 0.00511048 0)
(0.00630046 0.00497391 0)
(0.00638794 0.00483541 0)
(0.00647228 0.00469504 0)
(0.00655342 0.00455284 0)
(0.0066313 0.00440889 0)
(0.00670586 0.00426323 0)
(0.00677703 0.00411593 0)
(0.00684475 0.00396704 0)
(0.00690896 0.00381664 0)
(0.0069696 0.0036648 0)
(0.00702659 0.00351158 0)
(0.00707988 0.00335705 0)
(0.00712941 0.0032013 0)
(0.00717511 0.00304439 0)
(0.00721692 0.00288642 0)
(0.00725477 0.00272747 0)
(0.0072886 0.00256763 0)
(0.00731835 0.00240697 0)
(0.00734395 0.00224561 0)
(0.00736535 0.00208363 0)
(0.00738247 0.00192115 0)
(0.00739527 0.00175825 0)
(0.00740368 0.00159506 0)
(0.00740764 0.00143169 0)
(0.00740711 0.00126829 0)
(0.00740204 0.00110501 0)
(0.00739232 0.000942022 0)
(0.00737794 0.000779545 0)
(0.00735888 0.000617818 0)
(0.00733507 0.000457085 0)
(0.00730647 0.00029761 0)
(0.00727303 0.000139664 0)
(0.00723473 -1.64715e-05 0)
(0.00719155 -0.000170512 0)
(0.00714348 -0.00032215 0)
(0.00709052 -0.00047106 0)
(0.00703268 -0.000616887 0)
(0.00696995 -0.000759235 0)
(0.00690236 -0.000897654 0)
(0.00682991 -0.00103162 0)
(0.0067526 -0.00116052 0)
(0.00667045 -0.00128353 0)
(0.00658342 -0.00139948 0)
(0.00649146 -0.00150657 0)
(0.00639444 -0.0016019 0)
(0.00629217 -0.00168101 0)
(0.00618434 -0.00173767 0)
(0.00607055 -0.00176426 0)
(0.00595055 -0.00175283 0)
(-1.05996e-05 -0.00239817 0)
(-6.73282e-05 -0.00506606 0)
(-0.000120413 -0.00530346 0)
(-0.000138763 -0.00382459 0)
(-0.000111379 -0.00153151 0)
(-4.14615e-05 0.000874633 0)
(6.14671e-05 0.00298668 0)
(0.000187063 0.00464333 0)
(0.000326765 0.00583967 0)
(0.000474443 0.00664724 0)
(0.000626139 0.00716018 0)
(0.000779499 0.00746616 0)
(0.000933218 0.00763485 0)
(0.00108661 0.00771642 0)
(0.00123934 0.00774449 0)
(0.00139121 0.00774038 0)
(0.00154212 0.00771701 0)
(0.00169199 0.00768189 0)
(0.00184076 0.00763925 0)
(0.00198838 0.00759137 0)
(0.00213479 0.00753949 0)
(0.00227997 0.00748424 0)
(0.00242385 0.00742595 0)
(0.00256639 0.00736479 0)
(0.00270753 0.00730085 0)
(0.00284722 0.00723419 0)
(0.0029854 0.00716485 0)
(0.00312203 0.00709287 0)
(0.00325705 0.00701826 0)
(0.00339042 0.00694106 0)
(0.0035221 0.00686129 0)
(0.00365202 0.006779 0)
(0.00378013 0.0066942 0)
(0.00390638 0.00660694 0)
(0.00403071 0.00651723 0)
(0.00415308 0.00642512 0)
(0.00427344 0.00633063 0)
(0.00439173 0.0062338 0)
(0.00450791 0.00613466 0)
(0.00462193 0.00603325 0)
(0.00473373 0.0059296 0)
(0.00484325 0.00582376 0)
(0.00495046 0.00571576 0)
(0.00505529 0.00560563 0)
(0.00515769 0.00549343 0)
(0.00525761 0.00537919 0)
(0.00535501 0.00526294 0)
(0.00544982 0.00514474 0)
(0.005542 0.00502464 0)
(0.00563148 0.00490267 0)
(0.00571822 0.00477888 0)
(0.00580217 0.00465333 0)
(0.00588326 0.00452607 0)
(0.00596144 0.00439716 0)
(0.00603666 0.00426663 0)
(0.00610887 0.00413457 0)
(0.00617801 0.00400102 0)
(0.00624402 0.00386604 0)
(0.00630685 0.00372971 0)
(0.00636644 0.00359208 0)
(0.00642274 0.00345322 0)
(0.00647569 0.00331322 0)
(0.00652524 0.00317213 0)
(0.00657133 0.00303004 0)
(0.00661391 0.00288702 0)
(0.00665292 0.00274316 0)
(0.00668832 0.00259853 0)
(0.00672003 0.00245323 0)
(0.00674802 0.00230733 0)
(0.00677223 0.00216092 0)
(0.0067926 0.00201411 0)
(0.0068091 0.00186698 0)
(0.00682168 0.00171964 0)
(0.00683028 0.00157219 0)
(0.00683488 0.00142475 0)
(0.00683542 0.00127745 0)
(0.00683185 0.00113044 0)
(0.00682416 0.00098391 0)
(0.0068123 0.00083806 0)
(0.00679624 0.000693105 0)
(0.00677594 0.000549272 0)
(0.00675139 0.000406797 0)
(0.00672257 0.000265924 0)
(0.00668945 0.000126899 0)
(0.00665207 -1.00165e-05 0)
(0.00661046 -0.00014456 0)
(0.00656466 -0.00027644 0)
(0.00651468 -0.000405329 0)
(0.00646061 -0.000530858 0)
(0.00640249 -0.000652599 0)
(0.00634039 -0.000770049 0)
(0.00627441 -0.000882574 0)
(0.00620463 -0.000989331 0)
(0.00613113 -0.00108908 0)
(0.00605398 -0.0011799 0)
(0.0059732 -0.00125873 0)
(0.00588879 -0.00132094 0)
(0.0058007 -0.00136027 0)
(0.00570887 -0.00136932 0)
(0.00561323 -0.00134083 0)
(-1.00522e-05 -0.00226322 0)
(-6.6236e-05 -0.00484976 0)
(-0.000122228 -0.00515671 0)
(-0.000147229 -0.00382467 0)
(-0.000129518 -0.00169285 0)
(-7.11266e-05 0.00057419 0)
(1.94629e-05 0.00258263 0)
(0.000132594 0.00417008 0)
(0.000260056 0.00532436 0)
(0.000395849 0.00610872 0)
(0.000536013 0.00661036 0)
(0.000678131 0.00691203 0)
(0.000820826 0.00708027 0)
(0.00096335 0.00716345 0)
(0.00110532 0.00719421 0)
(0.00124652 0.00719338 0)
(0.00138684 0.00717363 0)
(0.0015262 0.00714238 0)
(0.00166454 0.0071038 0)
(0.00180179 0.00706018 0)
(0.00193793 0.00701275 0)
(0.00207289 0.00696213 0)
(0.00220663 0.00690865 0)
(0.00233912 0.00685249 0)
(0.00247029 0.00679373 0)
(0.00260011 0.00673244 0)
(0.00272852 0.00666864 0)
(0.00285546 0.00660238 0)
(0.00298091 0.00653368 0)
(0.0031048 0.00646258 0)
(0.0032271 0.0063891 0)
(0.00334777 0.00631327 0)
(0.00346675 0.00623512 0)
(0.00358401 0.00615468 0)
(0.00369948 0.00607199 0)
(0.00381312 0.00598706 0)
(0.00392489 0.00589995 0)
(0.00403474 0.00581068 0)
(0.00414263 0.00571929 0)
(0.0042485 0.00562581 0)
(0.00435232 0.00553027 0)
(0.00445404 0.00543273 0)
(0.00455362 0.00533321 0)
(0.004651 0.00523175 0)
(0.00474614 0.0051284 0)
(0.00483899 0.00502319 0)
(0.0049295 0.00491617 0)
(0.00501763 0.00480738 0)
(0.00510333 0.00469688 0)
(0.00518656 0.00458469 0)
(0.00526726 0.00447089 0)
(0.00534539 0.00435551 0)
(0.00542091 0.0042386 0)
(0.00549376 0.00412023 0)
(0.00556389 0.00400045 0)
(0.00563126 0.00387931 0)
(0.00569582 0.00375689 0)
(0.00575752 0.00363323 0)
(0.00581631 0.00350841 0)
(0.00587214 0.00338249 0)
(0.00592498 0.00325554 0)
(0.00597477 0.00312763 0)
(0.00602147 0.00299883 0)
(0.00606502 0.00286922 0)
(0.00610539 0.00273887 0)
(0.00614252 0.00260786 0)
(0.00617638 0.00247626 0)
(0.00620691 0.00234416 0)
(0.00623408 0.00221164 0)
(0.00625784 0.00207879 0)
(0.00627815 0.00194568 0)
(0.00629497 0.00181243 0)
(0.00630828 0.0016791 0)
(0.00631802 0.00154582 0)
(0.00632416 0.00141269 0)
(0.00632667 0.00127984 0)
(0.00632551 0.00114742 0)
(0.00632068 0.0010156 0)
(0.00631214 0.000884568 0)
(0.00629988 0.000754517 0)
(0.00628387 0.000625648 0)
(0.0062641 0.000498167 0)
(0.00624059 0.000372278 0)
(0.00621337 0.00024819 0)
(0.00618244 0.000126124 0)
(0.00614784 6.3029e-06 0)
(0.00610964 -0.000111039 0)
(0.00606795 -0.000225655 0)
(0.00602286 -0.000337171 0)
(0.00597447 -0.0004452 0)
(0.00592293 -0.00054927 0)
(0.00586838 -0.000648764 0)
(0.005811 -0.000742815 0)
(0.00575093 -0.000830114 0)
(0.0056883 -0.000908581 0)
(0.00562322 -0.000974923 0)
(0.00555567 -0.00102425 0)
(0.0054855 -0.00105006 0)
(0.00541244 -0.00104487 0)
(0.00533647 -0.00100163 0)
(-9.49728e-06 -0.0021316 0)
(-6.46996e-05 -0.00463039 0)
(-0.000122634 -0.00499437 0)
(-0.000153053 -0.00379668 0)
(-0.000143716 -0.00181696 0)
(-9.55967e-05 0.000316165 0)
(-1.61836e-05 0.00222301 0)
(8.55253e-05 0.0037413 0)
(0.000201665 0.00485263 0)
(0.000326379 0.0056126 0)
(0.000455735 0.00610184 0)
(0.000587297 0.0063983 0)
(0.000719646 0.00656543 0)
(0.000851992 0.0066497 0)
(0.000983898 0.00668275 0)
(0.00111513 0.00668486 0)
(0.00124554 0.00666845 0)
(0.00137506 0.00664079 0)
(0.00150363 0.00660602 0)
(0.0016312 0.0065664 0)
(0.00175772 0.00652313 0)
(0.00188316 0.00647685 0)
(0.00200746 0.00642788 0)
(0.00213057 0.00637639 0)
(0.00225246 0.00632248 0)
(0.00237307 0.0062662 0)
(0.00249238 0.00620758 0)
(0.00261033 0.00614667 0)
(0.0027269 0.00608348 0)
(0.00284203 0.00601806 0)
(0.00295568 0.00595042 0)
(0.0030678 0.00588061 0)
(0.00317834 0.00580864 0)
(0.00328728 0.00573454 0)
(0.00339457 0.00565836 0)
(0.00350017 0.00558011 0)
(0.00360405 0.00549983 0)
(0.00370616 0.00541756 0)
(0.00380646 0.00533333 0)
(0.00390491 0.00524718 0)
(0.00400146 0.00515915 0)
(0.00409607 0.00506926 0)
(0.0041887 0.00497756 0)
(0.00427932 0.00488409 0)
(0.00436788 0.00478888 0)
(0.00445435 0.00469198 0)
(0.00453868 0.00459343 0)
(0.00462082 0.00449328 0)
(0.00470075 0.00439157 0)
(0.00477841 0.00428835 0)
(0.00485377 0.00418367 0)
(0.00492678 0.00407759 0)
(0.00499741 0.00397015 0)
(0.00506562 0.00386141 0)
(0.00513136 0.00375142 0)
(0.0051946 0.00364025 0)
(0.00525529 0.00352795 0)
(0.0053134 0.00341459 0)
(0.00536888 0.00330023 0)
(0.0054217 0.00318493 0)
(0.00547181 0.00306877 0)
(0.00551917 0.0029518 0)
(0.00556376 0.00283411 0)
(0.00560552 0.00271576 0)
(0.00564441 0.00259683 0)
(0.00568041 0.00247738 0)
(0.00571347 0.0023575 0)
(0.00574357 0.00223726 0)
(0.00577065 0.00211674 0)
(0.0057947 0.00199602 0)
(0.00581568 0.00187518 0)
(0.00583356 0.0017543 0)
(0.00584831 0.00163348 0)
(0.00585989 0.00151281 0)
(0.00586828 0.0013924 0)
(0.00587346 0.00127237 0)
(0.00587538 0.00115288 0)
(0.00587404 0.00103406 0)
(0.00586942 0.000916083 0)
(0.00586149 0.000799114 0)
(0.00585027 0.000683312 0)
(0.00583575 0.000568833 0)
(0.00581796 0.000455822 0)
(0.00579694 0.00034442 0)
(0.00577277 0.000234759 0)
(0.00574544 0.000126984 0)
(0.00571493 2.12594e-05 0)
(0.00568162 -8.22055e-05 0)
(0.00564578 -0.000183247 0)
(0.00560744 -0.000281647 0)
(0.00556684 -0.000377104 0)
(0.00552427 -0.000469152 0)
(0.00548006 -0.000557061 0)
(0.00543455 -0.000639603 0)
(0.00538808 -0.000714677 0)
(0.00534096 -0.000778846 0)
(0.00529333 -0.000826945 0)
(0.00524526 -0.000852109 0)
(0.00519663 -0.000846591 0)
(0.0051467 -0.000803315 0)
(-8.95397e-06 -0.00200398 0)
(-6.28255e-05 -0.00441045 0)
(-0.000121842 -0.00482037 0)
(-0.000156512 -0.00374527 0)
(-0.00015427 -0.00190859 0)
(-0.000115167 9.61366e-05 0)
(-4.58413e-05 0.00190388 0)
(4.53585e-05 0.00335353 0)
(0.000151009 0.00442137 0)
(0.000265426 0.00515605 0)
(0.000384713 0.00563197 0)
(0.000506409 0.00592244 0)
(0.000629058 0.00608782 0)
(0.000751836 0.00617272 0)
(0.000874288 0.00620769 0)
(0.00099616 0.00621243 0)
(0.0011173 0.00619906 0)
(0.00123762 0.00617472 0)
(0.00135706 0.00614348 0)
(0.00147557 0.00610758 0)
(0.00159311 0.00606819 0)
(0.00170964 0.00602595 0)
(0.00182512 0.00598117 0)
(0.0019395 0.00593403 0)
(0.00205273 0.00588462 0)
(0.00216479 0.00583299 0)
(0.00227563 0.00577918 0)
(0.00238522 0.00572323 0)
(0.00249352 0.00566516 0)
(0.00260049 0.005605 0)
(0.00270611 0.00554278 0)
(0.00281031 0.00547852 0)
(0.00291307 0.00541226 0)
(0.00301435 0.00534402 0)
(0.0031141 0.00527384 0)
(0.0032123 0.00520175 0)
(0.00330891 0.00512779 0)
(0.00340389 0.00505197 0)
(0.00349722 0.00497434 0)
(0.00358885 0.00489492 0)
(0.00367875 0.00481376 0)
(0.00376687 0.00473089 0)
(0.00385319 0.00464635 0)
(0.00393766 0.00456018 0)
(0.00402025 0.00447241 0)
(0.00410093 0.0043831 0)
(0.00417967 0.00429228 0)
(0.00425642 0.0042 0)
(0.00433117 0.00410629 0)
(0.00440388 0.00401122 0)
(0.0044745 0.00391483 0)
(0.00454301 0.00381717 0)
(0.00460937 0.00371829 0)
(0.00467354 0.00361825 0)
(0.0047355 0.00351711 0)
(0.00479521 0.00341492 0)
(0.00485263 0.00331174 0)
(0.00490775 0.00320763 0)
(0.00496052 0.00310265 0)
(0.00501091 0.00299688 0)
(0.00505891 0.00289036 0)
(0.00510446 0.00278318 0)
(0.00514755 0.00267539 0)
(0.00518813 0.00256707 0)
(0.00522618 0.0024583 0)
(0.00526167 0.00234913 0)
(0.00529456 0.00223966 0)
(0.00532484 0.00212994 0)
(0.00535247 0.00202006 0)
(0.00537743 0.0019101 0)
(0.00539968 0.00180013 0)
(0.00541921 0.00169023 0)
(0.00543598 0.00158051 0)
(0.00544995 0.00147104 0)
(0.0054611 0.00136195 0)
(0.0054694 0.00125336 0)
(0.00547481 0.00114541 0)
(0.00547731 0.00103823 0)
(0.00547686 0.00093198 0)
(0.00547343 0.000826798 0)
(0.00546701 0.000722818 0)
(0.00545756 0.000620164 0)
(0.00544508 0.00051895 0)
(0.00542955 0.000419279 0)
(0.00541099 0.000321253 0)
(0.00538948 0.000224973 0)
(0.00536519 0.000130548 0)
(0.005338 3.80634e-05 0)
(0.00530773 -5.24886e-05 0)
(0.00527449 -0.000140986 0)
(0.00523849 -0.000227167 0)
(0.00519991 -0.000310386 0)
(0.00515881 -0.000389841 0)
(0.00511528 -0.000464148 0)
(0.00506932 -0.000530871 0)
(0.00502088 -0.000585979 0)
(0.00496972 -0.000623459 0)
(0.00491532 -0.000635411 0)
(0.00485693 -0.000613092 0)
(0.00479442 -0.000548834 0)
(-8.40175e-06 -0.00188096 0)
(-6.06149e-05 -0.00419219 0)
(-0.000119949 -0.0046383 0)
(-0.00015782 -0.00367475 0)
(-0.000161495 -0.00197214 0)
(-0.000130285 -9.00375e-05 0)
(-7.00132e-05 0.0016215 0)
(1.16037e-05 0.00300345 0)
(0.000107545 0.00402765 0)
(0.000212353 0.00473641 0)
(0.000322222 0.00519826 0)
(0.000434697 0.00548206 0)
(0.000548284 0.00564514 0)
(0.000662116 0.00573022 0)
(0.000775708 0.00576673 0)
(0.000888794 0.00577379 0)
(0.00100123 0.00576318 0)
(0.00111293 0.0057419 0)
(0.00122382 0.00571392 0)
(0.00133387 0.00568145 0)
(0.00144301 0.00564565 0)
(0.0015512 0.00560714 0)
(0.00165842 0.00556625 0)
(0.00176462 0.00552313 0)
(0.00186978 0.00547788 0)
(0.00197385 0.00543055 0)
(0.00207682 0.00538119 0)
(0.00217863 0.00532981 0)
(0.00227925 0.00527646 0)
(0.00237865 0.00522116 0)
(0.00247678 0.00516392 0)
(0.00257362 0.00510479 0)
(0.00266915 0.00504379 0)
(0.00276332 0.00498093 0)
(0.00285611 0.00491627 0)
(0.00294748 0.00484982 0)
(0.0030374 0.00478162 0)
(0.00312582 0.0047117 0)
(0.00321272 0.00464009 0)
(0.00329807 0.00456683 0)
(0.00338184 0.00449194 0)
(0.003464 0.00441546 0)
(0.00354453 0.00433743 0)
(0.00362339 0.0042579 0)
(0.00370055 0.00417689 0)
(0.00377599 0.00409445 0)
(0.00384967 0.00401062 0)
(0.00392156 0.00392544 0)
(0.00399164 0.00383897 0)
(0.00405989 0.00375124 0)
(0.00412628 0.0036623 0)
(0.00419077 0.00357221 0)
(0.00425336 0.00348101 0)
(0.004314 0.00338876 0)
(0.00437267 0.00329551 0)
(0.00442934 0.00320132 0)
(0.00448399 0.00310625 0)
(0.0045366 0.00301035 0)
(0.00458715 0.0029137 0)
(0.0046356 0.00281634 0)
(0.00468195 0.00271835 0)
(0.00472616 0.00261979 0)
(0.00476822 0.00252073 0)
(0.0048081 0.00242123 0)
(0.00484578 0.00232136 0)
(0.00488124 0.00222121 0)
(0.00491446 0.00212083 0)
(0.00494542 0.0020203 0)
(0.00497409 0.00191971 0)
(0.00500046 0.00181912 0)
(0.00502451 0.00171863 0)
(0.00504621 0.0016183 0)
(0.00506554 0.00151825 0)
(0.00508246 0.00141856 0)
(0.00509695 0.00131936 0)
(0.00510897 0.00122076 0)
(0.0051185 0.0011229 0)
(0.00512551 0.00102591 0)
(0.00512996 0.00092991 0)
(0.00513184 0.000835012 0)
(0.00513111 0.000741306 0)
(0.00512779 0.000648858 0)
(0.00512184 0.00055771 0)
(0.00511329 0.000467885 0)
(0.00510215 0.000379365 0)
(0.00508837 0.000292109 0)
(0.00507171 0.000206073 0)
(0.00505184 0.000121241 0)
(0.00502879 3.7689e-05 0)
(0.00500294 -4.44504e-05 0)
(0.00497533 -0.000124975 0)
(0.00494614 -0.00020366 0)
(0.00491456 -0.000279737 0)
(0.00488034 -0.000352218 0)
(0.00484328 -0.000418563 0)
(0.00480302 -0.000474263 0)
(0.00475896 -0.000512474 0)
(0.00471024 -0.000524217 0)
(0.00465556 -0.000499538 0)
(0.00459242 -0.000429495 0)
(-7.85768e-06 -0.00176303 0)
(-5.81202e-05 -0.00397762 0)
(-0.000117047 -0.00445147 0)
(-0.000157143 -0.00358916 0)
(-0.00016568 -0.00201183 0)
(-0.000141384 -0.000246369 0)
(-8.92555e-05 0.00137228 0)
(-1.63343e-05 0.00268788 0)
(7.07054e-05 0.00366864 0)
(0.000166617 0.00435111 0)
(0.000267691 0.00479835 0)
(0.000371506 0.00507494 0)
(0.000476569 0.00523524 0)
(0.000582 0.00532009 0)
(0.000687291 0.0053578 0)
(0.000792156 0.00536687 0)
(0.000896435 0.00535875 0)
(0.00100004 0.00534026 0)
(0.00110291 0.00531527 0)
(0.001205 0.00528595 0)
(0.00130626 0.00525345 0)
(0.00140666 0.00521838 0)
(0.00150616 0.00518105 0)
(0.00160473 0.00514163 0)
(0.00170233 0.00510021 0)
(0.00179894 0.00505684 0)
(0.00189453 0.00501156 0)
(0.00198907 0.00496439 0)
(0.00208253 0.00491536 0)
(0.00217487 0.0048645 0)
(0.00226605 0.00481183 0)
(0.00235606 0.00475738 0)
(0.00244485 0.00470118 0)
(0.0025324 0.00464325 0)
(0.0026187 0.00458361 0)
(0.00270371 0.00452231 0)
(0.0027874 0.00445937 0)
(0.00286974 0.0043948 0)
(0.0029507 0.00432866 0)
(0.00303026 0.00426097 0)
(0.0031084 0.00419176 0)
(0.00318507 0.00412107 0)
(0.00326027 0.00404893 0)
(0.00333398 0.00397538 0)
(0.00340616 0.00390046 0)
(0.0034768 0.0038242 0)
(0.00354587 0.00374664 0)
(0.00361335 0.00366783 0)
(0.00367921 0.00358781 0)
(0.00374344 0.00350663 0)
(0.00380601 0.00342432 0)
(0.00386691 0.00334095 0)
(0.00392612 0.00325655 0)
(0.00398362 0.00317118 0)
(0.00403939 0.0030849 0)
(0.00409343 0.00299774 0)
(0.0041457 0.00290978 0)
(0.0041962 0.00282106 0)
(0.0042449 0.00273166 0)
(0.0042918 0.00264162 0)
(0.00433689 0.00255101 0)
(0.00438014 0.00245991 0)
(0.00442154 0.00236836 0)
(0.00446109 0.00227644 0)
(0.00449877 0.00218423 0)
(0.00453457 0.00209178 0)
(0.00456848 0.00199918 0)
(0.00460049 0.00190651 0)
(0.00463059 0.00181383 0)
(0.00465876 0.00172124 0)
(0.00468499 0.00162883 0)
(0.00470924 0.00153669 0)
(0.00473151 0.00144493 0)
(0.00475175 0.00135367 0)
(0.00476993 0.00126306 0)
(0.00478601 0.00117324 0)
(0.00479992 0.00108437 0)
(0.00481161 0.000996617 0)
(0.00482099 0.000910145 0)
(0.00482798 0.000825122 0)
(0.00483244 0.000741709 0)
(0.00483425 0.000660073 0)
(0.00483325 0.000580377 0)
(0.00482921 0.00050279 0)
(0.00482186 0.000427505 0)
(0.00481106 0.000354715 0)
(0.00479691 0.000284611 0)
(0.00477944 0.000217441 0)
(0.00475855 0.000153488 0)
(0.00473399 9.29977e-05 0)
(0.00470481 3.61953e-05 0)
(0.00467054 -1.68181e-05 0)
(0.00462918 -6.53065e-05 0)
(0.00457917 -0.00010713 0)
(0.00452133 -0.000138717 0)
(0.00445559 -0.000154842 0)
(0.00438179 -0.000148343 0)
(0.00430008 -0.000109895 0)
(0.00421176 -2.98397e-05 0)
(0.00411496 9.9048e-05 0)
(-7.33432e-06 -0.00165061 0)
(-5.54453e-05 -0.00376849 0)
(-0.000113365 -0.00426279 0)
(-0.000154796 -0.0034921 0)
(-0.000167187 -0.00203145 0)
(-0.000148778 -0.000376481 0)
(-0.000103875 0.00115295 0)
(-3.88886e-05 0.00240395 0)
(3.99426e-05 0.00334178 0)
(0.000127607 0.00399783 0)
(0.000220498 0.00443006 0)
(0.000316218 0.00469897 0)
(0.000413274 0.00485607 0)
(0.000510784 0.00494032 0)
(0.000608242 0.00497893 0)
(0.000705364 0.00498973 0)
(0.000801983 0.00498383 0)
(0.000897997 0.00496785 0)
(0.000993336 0.0049456 0)
(0.00108795 0.00491917 0)
(0.00118181 0.00488969 0)
(0.00127488 0.00485777 0)
(0.00136714 0.00482372 0)
(0.00145855 0.00478768 0)
(0.00154909 0.00474976 0)
(0.00163872 0.00471001 0)
(0.00172741 0.00466845 0)
(0.00181513 0.00462512 0)
(0.00190186 0.00458004 0)
(0.00198757 0.00453323 0)
(0.00207224 0.00448471 0)
(0.00215585 0.00443452 0)
(0.00223837 0.00438268 0)
(0.00231977 0.00432921 0)
(0.00240002 0.00427414 0)
(0.0024791 0.00421749 0)
(0.00255698 0.0041593 0)
(0.00263364 0.00409959 0)
(0.00270907 0.00403838 0)
(0.00278324 0.00397571 0)
(0.00285613 0.00391162 0)
(0.00292773 0.00384612 0)
(0.002998 0.00377926 0)
(0.00306694 0.00371107 0)
(0.00313451 0.00364158 0)
(0.0032007 0.00357083 0)
(0.00326551 0.00349886 0)
(0.00332891 0.00342571 0)
(0.00339089 0.00335141 0)
(0.00345143 0.00327601 0)
(0.00351053 0.00319955 0)
(0.00356816 0.00312208 0)
(0.00362431 0.00304364 0)
(0.00367898 0.00296428 0)
(0.00373215 0.00288405 0)
(0.00378381 0.00280301 0)
(0.00383396 0.00272119 0)
(0.0038826 0.00263867 0)
(0.00392971 0.00255549 0)
(0.0039753 0.0024717 0)
(0.00401936 0.00238738 0)
(0.00406189 0.00230258 0)
(0.00410289 0.00221737 0)
(0.00414235 0.00213181 0)
(0.00418029 0.00204597 0)
(0.00421669 0.00195992 0)
(0.00425157 0.00187374 0)
(0.00428493 0.0017875 0)
(0.00431677 0.00170128 0)
(0.00434711 0.00161517 0)
(0.00437593 0.00152926 0)
(0.00440326 0.00144367 0)
(0.00442908 0.0013585 0)
(0.00445339 0.00127388 0)
(0.00447621 0.00118997 0)
(0.00449754 0.0011069 0)
(0.00451739 0.00102485 0)
(0.00453579 0.00094396 0)
(0.00455275 0.000864383 0)
(0.00456832 0.000786262 0)
(0.00458255 0.00070973 0)
(0.00459549 0.000634915 0)
(0.00460716 0.000561933 0)
(0.00461769 0.000490897 0)
(0.00462714 0.000421933 0)
(0.00463536 0.000355186 0)
(0.00464214 0.000290815 0)
(0.00464722 0.000228936 0)
(0.00465013 0.000169732 0)
(0.00465011 0.000113499 0)
(0.00464598 6.07265e-05 0)
(0.00463673 1.2412e-05 0)
(0.00462373 -3.00606e-05 0)
(0.00460837 -6.38146e-05 0)
(0.00458885 -8.52589e-05 0)
(0.00456183 -8.89278e-05 0)
(0.00452623 -6.72953e-05 0)
(0.00448228 -1.20455e-05 0)
(0.00442792 8.43924e-05 0)
(0.00436486 0.000226174 0)
(-6.80547e-06 -0.00154406 0)
(-5.25466e-05 -0.00356636 0)
(-0.000108918 -0.00407496 0)
(-0.000150926 -0.00338693 0)
(-0.000166305 -0.00203457 0)
(-0.000152901 -0.000483795 0)
(-0.000114372 0.000960362 0)
(-5.65578e-05 0.00214884 0)
(1.47205e-05 0.00304458 0)
(9.47072e-05 0.00367433 0)
(0.000179926 0.00409133 0)
(0.000268054 0.00435223 0)
(0.000357609 0.00450576 0)
(0.000447699 0.00458908 0)
(0.000537807 0.00462829 0)
(0.000627641 0.00464056 0)
(0.000717038 0.00463663 0)
(0.000805897 0.00462293 0)
(0.000894152 0.00460316 0)
(0.000981751 0.00457936 0)
(0.00106865 0.00455265 0)
(0.00115483 0.00452361 0)
(0.00124027 0.00449254 0)
(0.00132493 0.0044596 0)
(0.0014088 0.00442488 0)
(0.00149186 0.00438841 0)
(0.00157406 0.00435024 0)
(0.00165539 0.00431039 0)
(0.00173581 0.00426888 0)
(0.0018153 0.00422575 0)
(0.00189385 0.00418101 0)
(0.00197144 0.00413468 0)
(0.00204804 0.00408678 0)
(0.00212364 0.00403734 0)
(0.00219821 0.00398637 0)
(0.00227173 0.00393392 0)
(0.00234417 0.00387999 0)
(0.00241552 0.00382462 0)
(0.00248575 0.00376784 0)
(0.00255486 0.00370967 0)
(0.00262284 0.00365014 0)
(0.00268966 0.00358928 0)
(0.00275532 0.00352711 0)
(0.0028198 0.00346367 0)
(0.00288307 0.003399 0)
(0.00294514 0.00333312 0)
(0.00300597 0.00326607 0)
(0.00306558 0.00319788 0)
(0.00312393 0.00312859 0)
(0.00318104 0.00305825 0)
(0.00323689 0.00298688 0)
(0.00329148 0.00291452 0)
(0.00334481 0.00284122 0)
(0.00339686 0.00276703 0)
(0.00344764 0.00269198 0)
(0.00349715 0.00261612 0)
(0.00354538 0.00253951 0)
(0.00359233 0.00246218 0)
(0.00363802 0.0023842 0)
(0.00368244 0.00230562 0)
(0.00372561 0.00222649 0)
(0.00376753 0.00214687 0)
(0.00380822 0.00206681 0)
(0.0038477 0.00198637 0)
(0.00388596 0.00190563 0)
(0.00392303 0.00182465 0)
(0.00395892 0.00174351 0)
(0.00399364 0.00166227 0)
(0.00402722 0.00158102 0)
(0.00405967 0.00149986 0)
(0.00409101 0.00141889 0)
(0.00412124 0.00133822 0)
(0.00415037 0.00125799 0)
(0.0041784 0.00117835 0)
(0.00420533 0.00109947 0)
(0.00423114 0.00102153 0)
(0.00425581 0.000944718 0)
(0.00427929 0.000869244 0)
(0.00430152 0.000795318 0)
(0.00432243 0.000723165 0)
(0.0043419 0.000653021 0)
(0.00435979 0.00058515 0)
(0.00437591 0.000519844 0)
(0.00439007 0.00045743 0)
(0.00440207 0.000398244 0)
(0.00441182 0.000342661 0)
(0.00441916 0.00029108 0)
(0.00442399 0.000243922 0)
(0.0044264 0.000201679 0)
(0.00442648 0.000165346 0)
(0.00442433 0.00013613 0)
(0.00441992 0.000115601 0)
(0.00441314 0.000105843 0)
(0.00440245 0.000109258 0)
(0.00438665 0.000129464 0)
(0.00436672 0.000171946 0)
(0.00434178 0.000244053 0)
(0.00431015 0.000353397 0)
(0.00427249 0.000506286 0)
(0.00423165 0.000705331 0)
(-6.29259e-06 -0.00144361 0)
(-4.9497e-05 -0.00337252 0)
(-0.000103838 -0.00389025 0)
(-0.000145742 -0.00327662 0)
(-0.000163312 -0.00202438 0)
(-0.000154052 -0.000571423 0)
(-0.000121082 0.000791683 0)
(-6.97192e-05 0.00192001 0)
(-5.36734e-06 0.00277476 0)
(6.74842e-05 0.00337855 0)
(0.000145522 0.00378025 0)
(0.000226496 0.0040329 0)
(0.000308969 0.00418259 0)
(0.000392062 0.00426472 0)
(0.000475252 0.00430426 0)
(0.000558233 0.00431774 0)
(0.000640827 0.00431555 0)
(0.00072293 0.0043039 0)
(0.000804481 0.00428637 0)
(0.000885439 0.00426497 0)
(0.000965776 0.00424078 0)
(0.00104546 0.00421436 0)
(0.00112447 0.00418601 0)
(0.00120278 0.00415589 0)
(0.00128036 0.00412406 0)
(0.00135718 0.00409059 0)
(0.00143324 0.0040555 0)
(0.00150851 0.00401881 0)
(0.00158297 0.00398054 0)
(0.0016566 0.00394073 0)
(0.00172938 0.00389938 0)
(0.00180129 0.00385652 0)
(0.0018723 0.00381216 0)
(0.0019424 0.00376634 0)
(0.00201157 0.00371907 0)
(0.0020798 0.00367037 0)
(0.00214709 0.00362026 0)
(0.00221341 0.00356877 0)
(0.00227874 0.00351593 0)
(0.00234308 0.00346175 0)
(0.00240641 0.00340627 0)
(0.00246871 0.00334951 0)
(0.00252998 0.0032915 0)
(0.00259021 0.00323226 0)
(0.00264938 0.00317182 0)
(0.00270751 0.0031102 0)
(0.00276457 0.00304745 0)
(0.00282057 0.00298358 0)
(0.00287549 0.00291864 0)
(0.00292932 0.00285265 0)
(0.00298208 0.00278566 0)
(0.00303375 0.00271769 0)
(0.00308434 0.00264878 0)
(0.00313386 0.00257897 0)
(0.00318232 0.00250829 0)
(0.00322972 0.00243679 0)
(0.00327607 0.00236451 0)
(0.00332137 0.00229149 0)
(0.00336565 0.00221778 0)
(0.00340892 0.00214341 0)
(0.00345119 0.00206845 0)
(0.00349248 0.00199293 0)
(0.00353282 0.00191691 0)
(0.00357222 0.00184044 0)
(0.00361073 0.00176358 0)
(0.00364837 0.00168639 0)
(0.00368519 0.00160893 0)
(0.00372121 0.00153126 0)
(0.00375649 0.00145346 0)
(0.00379108 0.00137562 0)
(0.00382502 0.00129783 0)
(0.00385838 0.00122021 0)
(0.00389122 0.00114286 0)
(0.00392362 0.00106593 0)
(0.00395569 0.000989571 0)
(0.00398753 0.000913933 0)
(0.00401928 0.000839178 0)
(0.00405108 0.000765475 0)
(0.00408313 0.000692997 0)
(0.00411563 0.000621929 0)
(0.00414884 0.000552478 0)
(0.00418305 0.000484869 0)
(0.00421858 0.000419376 0)
(0.00425571 0.000356332 0)
(0.00429466 0.000296191 0)
(0.00433548 0.000239497 0)
(0.00437806 0.000186694 0)
(0.00442233 0.000138343 0)
(0.0044697 9.51494e-05 0)
(0.00452155 5.75327e-05 0)
(0.00457767 2.60903e-05 0)
(0.00463813 1.66174e-06 0)
(0.00470335 -1.45008e-05 0)
(0.00477403 -2.0568e-05 0)
(0.00485112 -1.34362e-05 0)
(0.00493596 1.08902e-05 0)
(0.00503018 5.70069e-05 0)
(0.00513578 0.000129697 0)
(0.00525523 0.000231786 0)
(0.00538981 0.000361695 0)
(-5.78993e-06 -0.0013495 0)
(-4.63368e-05 -0.00318808 0)
(-9.82428e-05 -0.00371071 0)
(-0.000139393 -0.00316379 0)
(-0.000158381 -0.00200375 0)
(-0.000152515 -0.000642181 0)
(-0.000124421 0.000644314 0)
(-7.88887e-05 0.00171516 0)
(-2.08963e-05 0.00253028 0)
(4.53505e-05 0.00310863 0)
(0.0001167 0.00349512 0)
(0.00019098 0.00373939 0)
(0.00026679 0.00388502 0)
(0.000343267 0.0039657 0)
(0.000419901 0.00400535 0)
(0.00049639 0.00401983 0)
(0.000572553 0.00401915 0)
(0.000648282 0.00400933 0)
(0.00072351 0.00399384 0)
(0.000798195 0.00397462 0)
(0.000872311 0.00395272 0)
(0.000945837 0.00392869 0)
(0.00101875 0.00390281 0)
(0.00109103 0.00387524 0)
(0.00116265 0.00384605 0)
(0.00123358 0.00381529 0)
(0.00130381 0.00378298 0)
(0.00137332 0.00374915 0)
(0.00144209 0.00371381 0)
(0.00151012 0.00367699 0)
(0.00157739 0.0036387 0)
(0.00164388 0.00359896 0)
(0.00170957 0.00355779 0)
(0.00177445 0.0035152 0)
(0.0018385 0.00347122 0)
(0.0019017 0.00342587 0)
(0.00196406 0.00337917 0)
(0.00202556 0.00333113 0)
(0.00208619 0.00328178 0)
(0.00214595 0.00323113 0)
(0.00220481 0.00317922 0)
(0.00226278 0.00312606 0)
(0.00231984 0.00307167 0)
(0.00237599 0.00301608 0)
(0.00243123 0.00295932 0)
(0.00248554 0.0029014 0)
(0.00253893 0.00284236 0)
(0.00259141 0.00278221 0)
(0.00264297 0.00272099 0)
(0.00269361 0.00265871 0)
(0.00274334 0.00259542 0)
(0.00279216 0.00253114 0)
(0.00284008 0.00246589 0)
(0.0028871 0.00239972 0)
(0.00293323 0.00233266 0)
(0.00297849 0.00226473 0)
(0.00302289 0.00219596 0)
(0.00306646 0.0021264 0)
(0.0031092 0.00205608 0)
(0.00315115 0.00198503 0)
(0.00319232 0.00191328 0)
(0.00323275 0.00184089 0)
(0.00327247 0.00176788 0)
(0.0033115 0.00169431 0)
(0.00334988 0.00162021 0)
(0.00338764 0.00154563 0)
(0.00342483 0.00147062 0)
(0.0034615 0.00139524 0)
(0.00349769 0.00131954 0)
(0.00353347 0.00124359 0)
(0.00356888 0.00116747 0)
(0.00360399 0.00109127 0)
(0.00363885 0.00101509 0)
(0.00367354 0.000939035 0)
(0.00370812 0.000863211 0)
(0.00374265 0.000787732 0)
(0.00377722 0.000712706 0)
(0.00381189 0.000638244 0)
(0.00384675 0.000564454 0)
(0.00388191 0.000491445 0)
(0.00391746 0.000419316 0)
(0.00395355 0.000348179 0)
(0.00399041 0.000278094 0)
(0.00402854 0.000209101 0)
(0.00406855 0.000141461 0)
(0.00411028 7.53169e-05 0)
(0.00415363 1.10811e-05 0)
(0.00419945 -5.06928e-05 0)
(0.00424724 -0.000109404 0)
(0.00429644 -0.000164716 0)
(0.00434814 -0.000216124 0)
(0.00440344 -0.000262845 0)
(0.00446347 -0.000303794 0)
(0.0045296 -0.00033743 0)
(0.0046036 -0.000361639 0)
(0.00468779 -0.000373736 0)
(0.00478505 -0.000370914 0)
(0.00489892 -0.000351243 0)
(0.00503418 -0.00031546 0)
(0.00519881 -0.00026908 0)
(-5.29813e-06 -0.00126191 0)
(-4.30663e-05 -0.0030141 0)
(-9.21714e-05 -0.00353824 0)
(-0.000132015 -0.00305096 0)
(-0.00015175 -0.00197547 0)
(-0.000148563 -0.000698816 0)
(-0.000124652 0.000515707 0)
(-8.43286e-05 0.00153199 0)
(-3.21661e-05 0.00230909 0)
(2.79294e-05 0.00286277 0)
(9.29996e-05 0.0032343 0)
(0.00016098 0.00347017 0)
(0.000230515 0.00361159 0)
(0.000300756 0.00369065 0)
(0.000371192 0.0037302 0)
(0.000441523 0.00374549 0)
(0.000511574 0.00374614 0)
(0.000581244 0.00373796 0)
(0.00065047 0.00372431 0)
(0.000719209 0.00370707 0)
(0.000787429 0.00368725 0)
(0.000855104 0.00366539 0)
(0.000922211 0.00364177 0)
(0.000988734 0.00361652 0)
(0.00105466 0.00358972 0)
(0.00111996 0.00356141 0)
(0.00118464 0.00353162 0)
(0.00124867 0.00350036 0)
(0.00131203 0.00346767 0)
(0.00137472 0.00343355 0)
(0.00143671 0.00339802 0)
(0.00149799 0.00336108 0)
(0.00155856 0.00332277 0)
(0.00161839 0.00328308 0)
(0.0016775 0.00324204 0)
(0.00173586 0.00319967 0)
(0.00179347 0.00315599 0)
(0.00185031 0.003111 0)
(0.00190637 0.00306474 0)
(0.00196166 0.00301721 0)
(0.00201616 0.00296843 0)
(0.00206987 0.00291843 0)
(0.00212279 0.00286721 0)
(0.00217492 0.0028148 0)
(0.00222626 0.00276122 0)
(0.0022768 0.0027065 0)
(0.00232655 0.00265064 0)
(0.0023755 0.00259368 0)
(0.00242366 0.00253563 0)
(0.00247104 0.00247652 0)
(0.00251764 0.00241636 0)
(0.00256348 0.00235518 0)
(0.00260857 0.00229301 0)
(0.00265292 0.00222986 0)
(0.00269655 0.00216575 0)
(0.00273946 0.00210073 0)
(0.00278168 0.00203481 0)
(0.00282321 0.00196801 0)
(0.0028641 0.00190037 0)
(0.00290435 0.0018319 0)
(0.00294401 0.00176264 0)
(0.00298311 0.00169261 0)
(0.00302168 0.00162183 0)
(0.00305976 0.00155034 0)
(0.00309741 0.00147816 0)
(0.00313465 0.00140532 0)
(0.00317154 0.00133186 0)
(0.00320814 0.00125781 0)
(0.00324452 0.00118321 0)
(0.00328074 0.00110811 0)
(0.00331688 0.00103257 0)
(0.00335304 0.000956638 0)
(0.00338933 0.000880387 0)
(0.00342585 0.000803876 0)
(0.00346275 0.000727166 0)
(0.00350018 0.000650312 0)
(0.00353834 0.000573365 0)
(0.00357746 0.000496367 0)
(0.00361777 0.000419362 0)
(0.00365951 0.000342398 0)
(0.003703 0.000265539 0)
(0.00374841 0.000188853 0)
(0.0037958 0.000112431 0)
(0.00384623 3.63886e-05 0)
(0.00390029 -3.94589e-05 0)
(0.00395863 -0.000115191 0)
(0.00402272 -0.00019073 0)
(0.00409326 -0.000266053 0)
(0.00417092 -0.000341254 0)
(0.00425671 -0.000416124 0)
(0.00435191 -0.000490536 0)
(0.00445803 -0.000564436 0)
(0.00457681 -0.000637734 0)
(0.00471028 -0.000710212 0)
(0.00486079 -0.000781467 0)
(0.00503116 -0.000851023 0)
(0.0052248 -0.000918827 0)
(0.00544606 -0.000986333 0)
(0.00570018 -0.00105817 0)
(0.00599171 -0.00114402 0)
(-4.82373e-06 -0.00118097 0)
(-3.97163e-05 -0.0028514 0)
(-8.56769e-05 -0.00337446 0)
(-0.00012369 -0.00294032 0)
(-0.000143555 -0.00194196 0)
(-0.000142417 -0.000743761 0)
(-0.000122081 0.000403597 0)
(-8.63956e-05 0.00136848 0)
(-3.95372e-05 0.0021094 0)
(1.48764e-05 0.00263935 0)
(7.40755e-05 0.0029963 0)
(0.000136112 0.00322386 0)
(0.0001997 0.00336102 0)
(0.000264022 0.00343832 0)
(0.000328579 0.00347762 0)
(0.000393069 0.00349354 0)
(0.000457315 0.00349535 0)
(0.000521215 0.00348864 0)
(0.000584711 0.00347666 0)
(0.000647766 0.00346123 0)
(0.000710352 0.00344331 0)
(0.000772442 0.00342343 0)
(0.000834015 0.00340186 0)
(0.000895048 0.00337873 0)
(0.000955528 0.0033541 0)
(0.00101544 0.00332803 0)
(0.00107479 0.00330054 0)
(0.00113354 0.00327163 0)
(0.0011917 0.00324133 0)
(0.00124925 0.00320964 0)
(0.00130616 0.00317659 0)
(0.00136243 0.00314218 0)
(0.00141804 0.00310643 0)
(0.001473 0.00306934 0)
(0.0015273 0.00303094 0)
(0.00158093 0.00299124 0)
(0.0016339 0.00295024 0)
(0.00168618 0.00290796 0)
(0.00173778 0.00286442 0)
(0.00178868 0.00281964 0)
(0.00183888 0.00277362 0)
(0.00188838 0.00272637 0)
(0.00193719 0.00267793 0)
(0.00198531 0.00262829 0)
(0.00203274 0.00257748 0)
(0.00207948 0.00252551 0)
(0.00212553 0.0024724 0)
(0.00217091 0.00241815 0)
(0.0022156 0.00236279 0)
(0.00225962 0.00230634 0)
(0.00230299 0.00224882 0)
(0.0023457 0.00219023 0)
(0.00238779 0.0021306 0)
(0.00242926 0.00206994 0)
(0.00247012 0.00200827 0)
(0.00251041 0.0019456 0)
(0.00255012 0.00188196 0)
(0.00258929 0.00181735 0)
(0.00262794 0.00175179 0)
(0.0026661 0.00168531 0)
(0.00270378 0.00161792 0)
(0.00274102 0.00154963 0)
(0.00277786 0.00148045 0)
(0.00281433 0.00141041 0)
(0.00285047 0.00133952 0)
(0.00288631 0.00126778 0)
(0.00292191 0.00119522 0)
(0.00295732 0.00112186 0)
(0.00299258 0.0010477 0)
(0.00302775 0.000972785 0)
(0.00306289 0.000897132 0)
(0.00309805 0.000820767 0)
(0.00313332 0.000743708 0)
(0.00316875 0.000665963 0)
(0.00320443 0.000587525 0)
(0.00324045 0.000508367 0)
(0.0032769 0.000428446 0)
(0.00331392 0.00034769 0)
(0.00335165 0.000266001 0)
(0.00339031 0.000183253 0)
(0.00343013 9.93388e-05 0)
(0.00347134 1.40886e-05 0)
(0.00351439 -7.26003e-05 0)
(0.00355873 -0.000160847 0)
(0.00360425 -0.000251009 0)
(0.00365186 -0.000343316 0)
(0.00370192 -0.000438236 0)
(0.00375481 -0.000536341 0)
(0.00381095 -0.000638252 0)
(0.00387089 -0.000744703 0)
(0.0039353 -0.000856576 0)
(0.00400503 -0.000974914 0)
(0.00408115 -0.0011009 0)
(0.00416498 -0.00123579 0)
(0.00425819 -0.00138096 0)
(0.00436282 -0.00153803 0)
(0.00448129 -0.00170948 0)
(0.00461631 -0.00189974 0)
(0.00477107 -0.00211679 0)
(0.00495121 -0.0023737 0)
(-4.35231e-06 -0.00110679 0)
(-3.62905e-05 -0.00270076 0)
(-7.88322e-05 -0.00322086 0)
(-0.00011455 -0.00283389 0)
(-0.000133966 -0.00190552 0)
(-0.000134264 -0.000779333 0)
(-0.000116925 0.000305812 0)
(-8.53577e-05 0.00122266 0)
(-4.33378e-05 0.00192948 0)
(5.8172e-06 0.00243684 0)
(5.95337e-05 0.00277975 0)
(0.000115982 0.00299919 0)
(0.000173941 0.00313209 0)
(0.000232633 0.00320755 0)
(0.000291581 0.00324647 0)
(0.000350497 0.00326289 0)
(0.000409209 0.00326572 0)
(0.000467616 0.00326033 0)
(0.000525654 0.00324988 0)
(0.000583284 0.00323609 0)
(0.000640478 0.00321992 0)
(0.000697214 0.00320186 0)
(0.000753473 0.00318217 0)
(0.000809242 0.00316098 0)
(0.000864505 0.00313835 0)
(0.000919249 0.00311433 0)
(0.000973462 0.00308892 0)
(0.00102713 0.00306216 0)
(0.00108024 0.00303404 0)
(0.00113279 0.00300457 0)
(0.00118477 0.00297377 0)
(0.00123617 0.00294165 0)
(0.00128698 0.00290822 0)
(0.00133719 0.00287348 0)
(0.00138679 0.00283746 0)
(0.00143579 0.00280015 0)
(0.00148418 0.00276157 0)
(0.00153194 0.00272173 0)
(0.00157909 0.00268063 0)
(0.00162562 0.00263829 0)
(0.00167153 0.00259472 0)
(0.00171682 0.00254993 0)
(0.00176149 0.00250393 0)
(0.00180554 0.00245673 0)
(0.00184897 0.00240834 0)
(0.00189179 0.00235878 0)
(0.001934 0.00230806 0)
(0.00197562 0.00225618 0)
(0.00201665 0.00220316 0)
(0.0020571 0.002149 0)
(0.00209699 0.00209373 0)
(0.00213632 0.00203735 0)
(0.00217511 0.00197987 0)
(0.00221337 0.00192131 0)
(0.00225111 0.00186167 0)
(0.00228835 0.00180097 0)
(0.00232511 0.00173922 0)
(0.00236142 0.00167642 0)
(0.00239728 0.00161259 0)
(0.00243275 0.00154772 0)
(0.00246783 0.00148184 0)
(0.00250256 0.00141495 0)
(0.00253696 0.00134705 0)
(0.00257107 0.00127814 0)
(0.00260491 0.00120825 0)
(0.00263852 0.00113736 0)
(0.00267193 0.00106549 0)
(0.00270519 0.000992651 0)
(0.00273833 0.000918846 0)
(0.00277141 0.000844088 0)
(0.00280447 0.000768387 0)
(0.00283756 0.000691747 0)
(0.00287074 0.00061416 0)
(0.00290408 0.000535607 0)
(0.00293763 0.000456049 0)
(0.00297149 0.00037543 0)
(0.00300574 0.000293671 0)
(0.00304048 0.000210676 0)
(0.00307578 0.000126329 0)
(0.00311186 4.04933e-05 0)
(0.00314891 -4.70432e-05 0)
(0.00318711 -0.0001365 0)
(0.00322672 -0.000228155 0)
(0.00326786 -0.00032236 0)
(0.00331076 -0.000419284 0)
(0.00335575 -0.000519311 0)
(0.00340317 -0.000622929 0)
(0.00345342 -0.000730738 0)
(0.00350692 -0.000843484 0)
(0.00356415 -0.000962085 0)
(0.00362563 -0.00108767 0)
(0.00369186 -0.00122158 0)
(0.00376338 -0.00136533 0)
(0.00384067 -0.00152058 0)
(0.00392408 -0.00168915 0)
(0.00401379 -0.00187322 0)
(0.00410984 -0.00207596 0)
(0.00421227 -0.00230271 0)
(0.00432096 -0.00256262 0)
(0.00443355 -0.00287005 0)
(-3.88928e-06 -0.00103944 0)
(-3.27859e-05 -0.00256284 0)
(-7.16329e-05 -0.00307877 0)
(-0.00010464 -0.00273351 0)
(-0.000123094 -0.00186825 0)
(-0.000124274 -0.000807659 0)
(-0.000109382 0.00022034 0)
(-8.14272e-05 0.00109271 0)
(-4.38068e-05 0.0017677 0)
(4.65374e-07 0.00225378 0)
(4.90332e-05 0.00258336 0)
(0.000100204 0.00279497 0)
(0.000152835 0.0029237 0)
(0.000206186 0.00299728 0)
(0.000259797 0.00303575 0)
(0.000313393 0.00305257 0)
(0.00036681 0.0030563 0)
(0.000419953 0.00305212 0)
(0.000472761 0.00304306 0)
(0.000525194 0.0030308 0)
(0.00057722 0.00301624 0)
(0.000628816 0.00299986 0)
(0.000679967 0.00298192 0)
(0.000730662 0.00296252 0)
(0.000780891 0.00294174 0)
(0.000830642 0.0029196 0)
(0.000879903 0.00289613 0)
(0.000928658 0.00287133 0)
(0.000976896 0.00284522 0)
(0.00102461 0.0028178 0)
(0.00107178 0.00278908 0)
(0.00111842 0.00275906 0)
(0.00116452 0.00272776 0)
(0.00121008 0.00269518 0)
(0.00125508 0.00266132 0)
(0.00129952 0.00262619 0)
(0.0013434 0.0025898 0)
(0.0013867 0.00255216 0)
(0.00142943 0.00251327 0)
(0.0014716 0.00247315 0)
(0.0015132 0.00243178 0)
(0.00155424 0.0023892 0)
(0.00159472 0.00234539 0)
(0.00163465 0.00230036 0)
(0.00167403 0.00225413 0)
(0.00171286 0.0022067 0)
(0.00175115 0.00215808 0)
(0.0017889 0.00210828 0)
(0.00182612 0.0020573 0)
(0.00186283 0.00200515 0)
(0.00189905 0.00195183 0)
(0.00193478 0.00189736 0)
(0.00197004 0.00184173 0)
(0.00200484 0.00178496 0)
(0.0020392 0.00172705 0)
(0.00207313 0.00166801 0)
(0.00210665 0.00160784 0)
(0.00213977 0.00154655 0)
(0.00217251 0.00148415 0)
(0.0022049 0.00142064 0)
(0.00223696 0.00135602 0)
(0.00226871 0.0012903 0)
(0.00230017 0.00122347 0)
(0.00233136 0.00115554 0)
(0.00236231 0.00108651 0)
(0.00239303 0.00101638 0)
(0.00242353 0.00094516 0)
(0.00245385 0.000872854 0)
(0.002484 0.00079947 0)
(0.00251399 0.000725018 0)
(0.00254383 0.000649497 0)
(0.00257354 0.000572904 0)
(0.00260312 0.000495217 0)
(0.00263259 0.0004164 0)
(0.00266196 0.000336397 0)
(0.00269123 0.00025513 0)
(0.00272043 0.000172498 0)
(0.00274956 8.83739e-05 0)
(0.00277867 2.62442e-06 0)
(0.00280763 -8.49068e-05 0)
(0.00283634 -0.000174437 0)
(0.00286482 -0.000266192 0)
(0.00289299 -0.000360464 0)
(0.00292075 -0.000457575 0)
(0.00294794 -0.000557896 0)
(0.00297435 -0.000661874 0)
(0.00299974 -0.000770049 0)
(0.00302381 -0.000883074 0)
(0.00304616 -0.00100173 0)
(0.00306626 -0.00112694 0)
(0.00308344 -0.00125975 0)
(0.00309678 -0.00140123 0)
(0.00310508 -0.00155243 0)
(0.00310668 -0.00171415 0)
(0.0030993 -0.00188693 0)
(0.00307992 -0.00207121 0)
(0.00304454 -0.002268 0)
(0.00298782 -0.00248021 0)
(0.00290328 -0.00271447 0)
(0.00278506 -0.00298259 0)
(-3.44715e-06 -0.000979037 0)
(-2.9252e-05 -0.00243827 0)
(-6.41678e-05 -0.00294942 0)
(-9.40796e-05 -0.00264089 0)
(-0.000111096 -0.00183212 0)
(-0.000112648 -0.000830767 0)
(-9.96991e-05 0.000145247 0)
(-7.48868e-05 0.000976874 0)
(-4.12406e-05 0.00162248 0)
(-1.47162e-06 0.00208878 0)
(4.22824e-05 0.00240584 0)
(8.84733e-05 0.00261005 0)
(0.000136045 0.00273477 0)
(0.000184309 0.00280652 0)
(0.000232835 0.0028445 0)
(0.000281357 0.00286163 0)
(0.000329721 0.00286617 0)
(0.000377829 0.00286311 0)
(0.000425622 0.00285534 0)
(0.000473061 0.00284449 0)
(0.00052012 0.00283143 0)
(0.00056678 0.00281663 0)
(0.000613025 0.00280031 0)
(0.000658841 0.00278259 0)
(0.000704214 0.00276354 0)
(0.000749132 0.00274317 0)
(0.000793585 0.00272151 0)
(0.000837563 0.00269855 0)
(0.00088106 0.00267431 0)
(0.000924066 0.0026488 0)
(0.000966574 0.00262201 0)
(0.00100857 0.00259396 0)
(0.00105006 0.00256464 0)
(0.00109102 0.00253406 0)
(0.00113145 0.00250222 0)
(0.00117137 0.00246912 0)
(0.00121075 0.00243477 0)
(0.00124961 0.00239917 0)
(0.00128794 0.00236233 0)
(0.00132574 0.00232424 0)
(0.001363 0.00228492 0)
(0.00139973 0.00224436 0)
(0.00143594 0.00220256 0)
(0.00147163 0.00215954 0)
(0.00150681 0.00211529 0)
(0.00154148 0.0020698 0)
(0.00157566 0.0020231 0)
(0.00160935 0.00197517 0)
(0.00164255 0.00192603 0)
(0.00167528 0.00187568 0)
(0.00170755 0.00182412 0)
(0.00173937 0.00177136 0)
(0.00177076 0.00171739 0)
(0.00180173 0.00166222 0)
(0.0018323 0.00160586 0)
(0.00186248 0.0015483 0)
(0.0018923 0.00148956 0)
(0.00192176 0.00142962 0)
(0.0019509 0.00136851 0)
(0.00197971 0.00130622 0)
(0.00200822 0.00124275 0)
(0.00203644 0.00117811 0)
(0.00206439 0.00111231 0)
(0.00209208 0.00104534 0)
(0.00211952 0.000977217 0)
(0.00214672 0.000907946 0)
(0.00217369 0.000837541 0)
(0.00220044 0.000766017 0)
(0.00222696 0.000693391 0)
(0.00225326 0.000619681 0)
(0.00227934 0.000544897 0)
(0.00230519 0.000469045 0)
(0.0023308 0.000392116 0)
(0.00235616 0.000314088 0)
(0.00238125 0.000234927 0)
(0.00240606 0.000154583 0)
(0.00243053 7.29918e-05 0)
(0.00245467 -9.91478e-06 0)
(0.00247846 -9.42386e-05 0)
(0.00250181 -0.000180088 0)
(0.00252465 -0.000267547 0)
(0.00254689 -0.000356723 0)
(0.00256842 -0.000447736 0)
(0.0025891 -0.000540717 0)
(0.00260876 -0.000635805 0)
(0.00262719 -0.000733149 0)
(0.0026441 -0.000832903 0)
(0.00265914 -0.000935217 0)
(0.00267185 -0.00104021 0)
(0.00268159 -0.0011479 0)
(0.00268751 -0.00125808 0)
(0.0026884 -0.00137015 0)
(0.00268258 -0.00148282 0)
(0.00266771 -0.00159382 0)
(0.00264056 -0.0016997 0)
(0.0025968 -0.00179603 0)
(0.00253087 -0.00187814 0)
(0.00243597 -0.00194271 0)
(0.00230403 -0.00198972 0)
(0.00212476 -0.00202423 0)
(-3.00613e-06 -0.000925606 0)
(-2.56634e-05 -0.00232751 0)
(-5.64597e-05 -0.00283381 0)
(-8.29445e-05 -0.00255746 0)
(-9.80881e-05 -0.00179881 0)
(-9.95326e-05 -0.000850366 0)
(-8.805e-05 7.89097e-05 0)
(-6.59412e-05 0.000873669 0)
(-3.58786e-05 0.00149252 0)
(-2.5799e-07 0.00194067 0)
(3.90055e-05 0.00224617 0)
(8.0509e-05 0.00244349 0)
(0.000123288 0.00256446 0)
(0.000166709 0.00263447 0)
(0.000210376 0.00267196 0)
(0.000254046 0.00268938 0)
(0.000297571 0.00269467 0)
(0.000340857 0.00269265 0)
(0.000383844 0.0026861 0)
(0.000426492 0.00267658 0)
(0.000468776 0.00266494 0)
(0.00051068 0.00265162 0)
(0.000552192 0.00263685 0)
(0.000593298 0.00262072 0)
(0.000633984 0.00260329 0)
(0.000674235 0.0025846 0)
(0.000714036 0.00256464 0)
(0.00075338 0.00254344 0)
(0.00079226 0.00252098 0)
(0.000830672 0.00249728 0)
(0.00086861 0.00247233 0)
(0.000906067 0.00244613 0)
(0.000943032 0.0024187 0)
(0.000979496 0.00239001 0)
(0.00101545 0.00236009 0)
(0.0010509 0.00232892 0)
(0.00108584 0.00229651 0)
(0.00112028 0.00226285 0)
(0.0011542 0.00222795 0)
(0.00118762 0.0021918 0)
(0.00122054 0.0021544 0)
(0.00125294 0.00211575 0)
(0.00128485 0.00207584 0)
(0.00131625 0.00203469 0)
(0.00134716 0.00199228 0)
(0.00137758 0.00194862 0)
(0.00140754 0.0019037 0)
(0.00143702 0.00185752 0)
(0.00146606 0.00181008 0)
(0.00149466 0.00176138 0)
(0.00152284 0.00171142 0)
(0.0015506 0.0016602 0)
(0.00157796 0.00160773 0)
(0.00160493 0.00155399 0)
(0.00163154 0.00149901 0)
(0.00165779 0.00144277 0)
(0.0016837 0.00138529 0)
(0.0017093 0.00132656 0)
(0.00173459 0.0012666 0)
(0.00175961 0.0012054 0)
(0.00178435 0.00114297 0)
(0.00180884 0.00107933 0)
(0.00183308 0.00101448 0)
(0.00185707 0.00094844 0)
(0.00188083 0.000881225 0)
(0.00190434 0.000812857 0)
(0.0019276 0.00074336 0)
(0.00195061 0.000672762 0)
(0.00197335 0.000601092 0)
(0.00199582 0.000528378 0)
(0.00201799 0.000454643 0)
(0.00203985 0.000379904 0)
(0.00206136 0.000304164 0)
(0.00208249 0.00022742 0)
(0.00210322 0.000149651 0)
(0.0021235 7.08354e-05 0)
(0.00214331 -9.06453e-06 0)
(0.00216255 -9.00807e-05 0)
(0.00218112 -0.000172265 0)
(0.00219896 -0.00025566 0)
(0.00221597 -0.000340307 0)
(0.00223203 -0.000426243 0)
(0.00224698 -0.000513504 0)
(0.00226064 -0.000602113 0)
(0.0022728 -0.00069208 0)
(0.0022832 -0.000783387 0)
(0.00229153 -0.000875967 0)
(0.00229736 -0.000969651 0)
(0.00230017 -0.0010641 0)
(0.00229927 -0.00115864 0)
(0.00229371 -0.00125209 0)
(0.0022822 -0.00134237 0)
(0.00226293 -0.00142617 0)
(0.00223345 -0.00149855 0)
(0.00219053 -0.00155271 0)
(0.00213004 -0.00158039 0)
(0.00204687 -0.0015729 0)
(0.00193509 -0.00152313 0)
(0.0017882 -0.00142804 0)
(0.00160027 -0.0012906 0)
(-2.55649e-06 -0.000879276 0)
(-2.20047e-05 -0.00223117 0)
(-4.84909e-05 -0.0027331 0)
(-7.12415e-05 -0.00248484 0)
(-8.41272e-05 -0.00177018 0)
(-8.50474e-05 -0.000868449 0)
(-7.46287e-05 1.93633e-05 0)
(-5.48334e-05 0.000781245 0)
(-2.79726e-05 0.0013761 0)
(3.84865e-06 0.0018079 0)
(3.89365e-05 0.00210291 0)
(7.60386e-05 0.00229395 0)
(0.00011429 0.00241146 0)
(0.000153122 0.00247987 0)
(0.000192176 0.00251692 0)
(0.000231224 0.00253462 0)
(0.000270125 0.00254062 0)
(0.000308789 0.00253958 0)
(0.00034716 0.00253418 0)
(0.000385207 0.00252594 0)
(0.000422909 0.00251565 0)
(0.000460249 0.00250376 0)
(0.000497208 0.00249045 0)
(0.00053377 0.00247585 0)
(0.000569918 0.00245999 0)
(0.000605643 0.00244291 0)
(0.000640935 0.0024246 0)
(0.000675789 0.00240508 0)
(0.000710197 0.00238434 0)
(0.000744148 0.00236239 0)
(0.000777629 0.00233922 0)
(0.000810631 0.00231484 0)
(0.000843146 0.00228924 0)
(0.00087517 0.0022624 0)
(0.000906699 0.00223435 0)
(0.000937731 0.00220506 0)
(0.000968263 0.00217453 0)
(0.000998288 0.00214277 0)
(0.0010278 0.00210977 0)
(0.0010568 0.00207552 0)
(0.00108529 0.00204001 0)
(0.00111328 0.00200325 0)
(0.00114076 0.00196521 0)
(0.00116775 0.0019259 0)
(0.00119425 0.00188531 0)
(0.00122027 0.00184344 0)
(0.0012458 0.00180028 0)
(0.00127087 0.00175583 0)
(0.00129549 0.00171008 0)
(0.00131966 0.00166302 0)
(0.0013434 0.00161465 0)
(0.00136674 0.00156496 0)
(0.0013897 0.00151396 0)
(0.00141228 0.00146164 0)
(0.00143452 0.001408 0)
(0.00145643 0.00135305 0)
(0.00147802 0.00129678 0)
(0.00149931 0.00123922 0)
(0.00152034 0.00118036 0)
(0.00154111 0.00112021 0)
(0.00156164 0.00105879 0)
(0.00158196 0.000996119 0)
(0.00160207 0.00093221 0)
(0.00162196 0.000867091 0)
(0.00164164 0.000800792 0)
(0.0016611 0.000733348 0)
(0.00168031 0.000664798 0)
(0.00169927 0.000595184 0)
(0.00171796 0.00052455 0)
(0.00173635 0.000452936 0)
(0.00175441 0.000380379 0)
(0.00177212 0.000306909 0)
(0.00178946 0.000232543 0)
(0.00180639 0.000157301 0)
(0.00182286 8.1192e-05 0)
(0.00183885 4.21025e-06 0)
(0.00185429 -7.3629e-05 0)
(0.00186916 -0.000152339 0)
(0.00188342 -0.000231914 0)
(0.001897 -0.000312346 0)
(0.00190984 -0.000393622 0)
(0.00192187 -0.000475711 0)
(0.00193303 -0.000558562 0)
(0.00194322 -0.000642093 0)
(0.00195234 -0.000726173 0)
(0.00196027 -0.000810596 0)
(0.00196684 -0.000895031 0)
(0.00197183 -0.000978929 0)
(0.00197494 -0.00106139 0)
(0.00197569 -0.00114093 0)
(0.00197338 -0.00121517 0)
(0.00196697 -0.00128041 0)
(0.00195494 -0.00133117 0)
(0.00193515 -0.00135978 0)
(0.00190477 -0.00135643 0)
(0.00186017 -0.00130973 0)
(0.00179709 -0.0012084 0)
(0.00171088 -0.00104375 0)
(0.00159679 -0.000812636 0)
(0.0014499 -0.000519697 0)
(-2.15227e-06 -0.000839908 0)
(-1.83997e-05 -0.00214927 0)
(-4.0451e-05 -0.00264761 0)
(-5.9203e-05 -0.00242359 0)
(-6.94662e-05 -0.00174696 0)
(-6.9442e-05 -0.000885723 0)
(-5.96482e-05 -3.40035e-05 0)
(-4.17477e-05 0.000699118 0)
(-1.77146e-05 0.00127288 0)
(1.06397e-05 0.00169023 0)
(4.18499e-05 0.00197594 0)
(7.48225e-05 0.00216139 0)
(0.000108798 0.00227584 0)
(0.000143277 0.00234284 0)
(0.000177939 0.00237954 0)
(0.000212583 0.00239754 0)
(0.000247075 0.00240426 0)
(0.000281331 0.00240417 0)
(0.000315297 0.0023999 0)
(0.000348942 0.0023929 0)
(0.000382247 0.00238394 0)
(0.000415197 0.00237343 0)
(0.000447775 0.00236157 0)
(0.000479964 0.00234846 0)
(0.000511747 0.00233414 0)
(0.000543111 0.00231863 0)
(0.00057405 0.00230195 0)
(0.000604555 0.00228409 0)
(0.00063462 0.00226505 0)
(0.000664231 0.00224483 0)
(0.000693376 0.00222343 0)
(0.000722041 0.00220083 0)
(0.000750215 0.00217704 0)
(0.000777894 0.00215205 0)
(0.000805075 0.00212585 0)
(0.000831755 0.00209843 0)
(0.00085793 0.00206979 0)
(0.000883594 0.00203992 0)
(0.00090874 0.00200881 0)
(0.000933362 0.00197644 0)
(0.000957458 0.00194282 0)
(0.000981031 0.00190792 0)
(0.00100409 0.00187173 0)
(0.00102663 0.00183425 0)
(0.00104867 0.00179546 0)
(0.00107022 0.00175535 0)
(0.00109127 0.0017139 0)
(0.00111185 0.0016711 0)
(0.00113195 0.00162694 0)
(0.0011516 0.00158141 0)
(0.0011708 0.0015345 0)
(0.00118959 0.00148619 0)
(0.00120799 0.00143648 0)
(0.00122602 0.00138536 0)
(0.00124371 0.00133284 0)
(0.00126108 0.00127889 0)
(0.00127817 0.00122354 0)
(0.00129501 0.0011668 0)
(0.00131161 0.00110867 0)
(0.00132801 0.00104919 0)
(0.00134423 0.00098838 0)
(0.00136029 0.000926293 0)
(0.00137619 0.000862971 0)
(0.00139193 0.000798469 0)
(0.00140751 0.000732844 0)
(0.00142291 0.000666158 0)
(0.0014381 0.000598471 0)
(0.00145305 0.000529843 0)
(0.00146773 0.000460328 0)
(0.00148213 0.000389975 0)
(0.0014962 0.000318826 0)
(0.0015099 0.000246916 0)
(0.00152322 0.000174273 0)
(0.00153616 0.000100895 0)
(0.00154866 2.6827e-05 0)
(0.00156074 -4.79898e-05 0)
(0.00157236 -0.000123566 0)
(0.00158342 -0.000199896 0)
(0.00159391 -0.000276972 0)
(0.00160379 -0.000354783 0)
(0.00161305 -0.000433311 0)
(0.00162167 -0.000512525 0)
(0.00162964 -0.00059237 0)
(0.00163694 -0.000672756 0)
(0.00164358 -0.000753526 0)
(0.00164951 -0.000834413 0)
(0.00165472 -0.000914956 0)
(0.0016591 -0.000994367 0)
(0.00166252 -0.00107133 0)
(0.00166465 -0.00114367 0)
(0.00166496 -0.00120795 0)
(0.00166255 -0.00125897 0)
(0.00165608 -0.00128924 0)
(0.00164359 -0.00128869 0)
(0.00162247 -0.00124491 0)
(0.00158942 -0.00114422 0)
(0.00154073 -0.00097381 0)
(0.00147248 -0.000724815 0)
(0.00138117 -0.000395631 0)
(0.0012646 5.62614e-06 0)
(-1.66716e-06 -0.000808104 0)
(-1.45669e-05 -0.00208331 0)
(-3.19406e-05 -0.0025796 0)
(-4.64084e-05 -0.00237663 0)
(-5.37287e-05 -0.00173255 0)
(-5.24381e-05 -0.000905927 0)
(-4.29833e-05 -8.5117e-05 0)
(-2.66912e-05 0.000623339 0)
(-5.16494e-06 0.00117896 0)
(2.0037e-05 0.00158383 0)
(4.7659e-05 0.0018615 0)
(7.67777e-05 0.0020421 0)
(0.00010675 0.00215393 0)
(0.00013714 0.00221976 0)
(0.00016766 0.00225622 0)
(0.000198124 0.00227458 0)
(0.000228412 0.00228202 0)
(0.000258456 0.0022829 0)
(0.000288216 0.00227974 0)
(0.000317665 0.00227395 0)
(0.00034678 0.00226629 0)
(0.000375538 0.00225714 0)
(0.000403917 0.0022467 0)
(0.0004319 0.00223506 0)
(0.000459476 0.00222227 0)
(0.000486639 0.00220834 0)
(0.000513381 0.00219328 0)
(0.00053969 0.00217708 0)
(0.000565552 0.00215975 0)
(0.00059095 0.00214129 0)
(0.000615868 0.00212167 0)
(0.000640295 0.0021009 0)
(0.000664223 0.00207897 0)
(0.000687644 0.00205588 0)
(0.000710551 0.00203161 0)
(0.000732934 0.00200616 0)
(0.000754782 0.00197951 0)
(0.000776086 0.00195165 0)
(0.000796835 0.00192257 0)
(0.000817026 0.00189225 0)
(0.000836655 0.00186069 0)
(0.000855723 0.00182786 0)
(0.000874228 0.00179375 0)
(0.00089217 0.00175835 0)
(0.00090955 0.00172164 0)
(0.000926367 0.00168359 0)
(0.000942629 0.0016442 0)
(0.000958345 0.00160343 0)
(0.00097353 0.00156128 0)
(0.000988203 0.00151771 0)
(0.00100239 0.00147271 0)
(0.0010161 0.00142626 0)
(0.00102938 0.00137834 0)
(0.00104226 0.00132894 0)
(0.00105476 0.00127804 0)
(0.00106695 0.00122562 0)
(0.00107887 0.00117168 0)
(0.00109058 0.00111622 0)
(0.00110216 0.00105925 0)
(0.00111367 0.0010008 0)
(0.00112517 0.000940909 0)
(0.00113669 0.000879643 0)
(0.00114826 0.00081708 0)
(0.00115987 0.00075331 0)
(0.00117147 0.000688425 0)
(0.00118303 0.00062251 0)
(0.00119446 0.000555643 0)
(0.00120569 0.000487884 0)
(0.00121666 0.00041928 0)
(0.00122731 0.000349872 0)
(0.0012376 0.000279688 0)
(0.0012475 0.000208756 0)
(0.00125691 0.000137112 0)
(0.0012659 6.47683e-05 0)
(0.0012743 -8.34576e-06 0)
(0.00128191 -8.20526e-05 0)
(0.00128895 -0.000156349 0)
(0.00129549 -0.000231254 0)
(0.00130153 -0.000306792 0)
(0.00130706 -0.000382992 0)
(0.0013121 -0.000459875 0)
(0.00131666 -0.000537453 0)
(0.00132077 -0.000615714 0)
(0.00132447 -0.000694605 0)
(0.00132783 -0.000773988 0)
(0.00133089 -0.000853577 0)
(0.0013337 -0.000932824 0)
(0.00133627 -0.00101073 0)
(0.00133857 -0.00108558 0)
(0.00134039 -0.00115452 0)
(0.00134138 -0.00121307 0)
(0.00134083 -0.0012545 0)
(0.00133765 -0.00126939 0)
(0.00133024 -0.00124544 0)
(0.00131647 -0.00116797 0)
(0.00129377 -0.00102153 0)
(0.00125934 -0.000792565 0)
(0.00121044 -0.000472961 0)
(0.0011443 -6.35471e-05 0)
(0.00105946 0.000423771 0)
(-1.41414e-06 -0.000782432 0)
(-1.11927e-05 -0.00203057 0)
(-2.39701e-05 -0.00252575 0)
(-3.40295e-05 -0.00234023 0)
(-3.81194e-05 -0.00172279 0)
(-3.51151e-05 -0.000924427 0)
(-2.53626e-05 -0.000128887 0)
(-1.00406e-05 0.00055926 0)
(9.44546e-06 0.00109986 0)
(3.18746e-05 0.00149439 0)
(5.62528e-05 0.00176539 0)
(8.18282e-05 0.00194203 0)
(0.000108072 0.00205176 0)
(0.000134624 0.00211675 0)
(0.000161243 0.00215318 0)
(0.000187768 0.00217202 0)
(0.000214095 0.00218025 0)
(0.000240161 0.00218214 0)
(0.000265933 0.00218012 0)
(0.00029139 0.00217557 0)
(0.000316512 0.00216922 0)
(0.00034128 0.00216145 0)
(0.000365675 0.00215243 0)
(0.000389679 0.00214227 0)
(0.000413279 0.002131 0)
(0.000436465 0.00211863 0)
(0.000459227 0.00210519 0)
(0.000481551 0.00209066 0)
(0.00050342 0.00207504 0)
(0.000524816 0.00205832 0)
(0.000545725 0.0020405 0)
(0.000566134 0.00202156 0)
(0.000586034 0.0020015 0)
(0.000605415 0.00198031 0)
(0.000624267 0.00195797 0)
(0.000642574 0.00193448 0)
(0.000660322 0.0019098 0)
(0.000677497 0.00188394 0)
(0.000694086 0.00185686 0)
(0.000710084 0.00182855 0)
(0.000725486 0.001799 0)
(0.000740292 0.00176817 0)
(0.000754498 0.00173604 0)
(0.000768099 0.00170258 0)
(0.000781088 0.00166778 0)
(0.000793461 0.00163158 0)
(0.000805215 0.00159397 0)
(0.000816354 0.0015549 0)
(0.000826888 0.00151433 0)
(0.000836833 0.00147222 0)
(0.000846208 0.00142853 0)
(0.000855036 0.0013832 0)
(0.000863345 0.00133619 0)
(0.000871165 0.00128745 0)
(0.000878539 0.00123694 0)
(0.000885518 0.00118461 0)
(0.000892174 0.00113045 0)
(0.000898596 0.00107443 0)
(0.000904893 0.00101658 0)
(0.000911188 0.00095696 0)
(0.000917599 0.000895697 0)
(0.000924222 0.000832972 0)
(0.000931106 0.000769019 0)
(0.000938237 0.000704099 0)
(0.000945538 0.000638467 0)
(0.000952878 0.000572335 0)
(0.000960098 0.000505849 0)
(0.00096703 0.000439069 0)
(0.000973549 0.000371982 0)
(0.000979577 0.000304538 0)
(0.000985072 0.00023669 0)
(0.000990066 0.000168404 0)
(0.000994563 9.96556e-05 0)
(0.000998242 3.04615e-05 0)
(0.00100174 -3.91284e-05 0)
(0.00100541 -0.000109343 0)
(0.00100858 -0.000180276 0)
(0.00101109 -0.000251977 0)
(0.00101292 -0.000324489 0)
(0.00101408 -0.000397854 0)
(0.00101459 -0.000472117 0)
(0.00101447 -0.000547316 0)
(0.00101373 -0.000623468 0)
(0.00101241 -0.000700541 0)
(0.0010105 -0.000778409 0)
(0.00100801 -0.000856764 0)
(0.00100493 -0.000934976 0)
(0.00100118 -0.00101186 0)
(0.000996637 -0.00108535 0)
(0.000991067 -0.00115201 0)
(0.000984075 -0.00120644 0)
(0.000975037 -0.00124071 0)
(0.000963039 -0.00124384 0)
(0.000946846 -0.00120185 0)
(0.000924947 -0.00109858 0)
(0.000895655 -0.000917664 0)
(0.00085729 -0.000645717 0)
(0.00080853 -0.000276176 0)
(0.000749054 0.000187161 0)
(0.000678603 0.000728459 0)
(-6.00648e-07 -0.000766598 0)
(-6.52614e-06 -0.00199902 0)
(-1.40173e-05 -0.00249691 0)
(-1.912e-05 -0.00232753 0)
(-1.94838e-05 -0.00173282 0)
(-1.44057e-05 -0.000958071 0)
(-4.37136e-06 -0.000183399 0)
(9.8699e-06 0.000488248 0)
(2.74981e-05 0.00101677 0)
(4.74792e-05 0.00140304 0)
(6.89617e-05 0.00166877 0)
(9.13381e-05 0.00184234 0)
(0.000114182 0.00195053 0)
(0.000137198 0.00201502 0)
(0.000160192 0.00205161 0)
(0.000183041 0.00207104 0)
(0.000205674 0.00208015 0)
(0.000228047 0.00208307 0)
(0.00025013 0.00208222 0)
(0.000271899 0.00207893 0)
(0.000293332 0.0020739 0)
(0.000314412 0.00206751 0)
(0.000335124 0.00205994 0)
(0.000355458 0.00205128 0)
(0.000375405 0.00204158 0)
(0.000394951 0.00203085 0)
(0.000414078 0.00201911 0)
(0.000432766 0.00200634 0)
(0.000450994 0.00199255 0)
(0.000468741 0.00197774 0)
(0.000485992 0.00196189 0)
(0.000502732 0.00194501 0)
(0.000518946 0.00192707 0)
(0.000534618 0.00190808 0)
(0.000549729 0.00188801 0)
(0.00056426 0.00186686 0)
(0.00057819 0.00184461 0)
(0.0005915 0.00182125 0)
(0.000604174 0.00179675 0)
(0.000616197 0.00177111 0)
(0.000627555 0.00174432 0)
(0.000638233 0.00171634 0)
(0.000648214 0.00168716 0)
(0.000657479 0.00165675 0)
(0.00066601 0.0016251 0)
(0.000673789 0.00159216 0)
(0.0006808 0.00155791 0)
(0.00068703 0.00152232 0)
(0.00069247 0.00148534 0)
(0.000697116 0.00144693 0)
(0.000700971 0.00140702 0)
(0.000704049 0.00136557 0)
(0.000706374 0.00132248 0)
(0.000707992 0.00127767 0)
(0.000708973 0.001231 0)
(0.000709423 0.00118234 0)
(0.000709493 0.00113154 0)
(0.000709388 0.00107843 0)
(0.000709375 0.0010229 0)
(0.000709771 0.000964897 0)
(0.000710902 0.000904544 0)
(0.000713045 0.00084213 0)
(0.00071635 0.000778114 0)
(0.000720792 0.000713036 0)
(0.000726158 0.00064741 0)
(0.000732055 0.000581649 0)
(0.000737956 0.00051598 0)
(0.000743309 0.000450362 0)
(0.000747695 0.000384521 0)
(0.000750947 0.000318148 0)
(0.00075309 0.000251063 0)
(0.000754205 0.000183215 0)
(0.000754461 0.000114621 0)
(0.000754329 4.53328e-05 0)
(0.000752844 -2.45846e-05 0)
(0.000749422 -9.52126e-05 0)
(0.000745083 -0.000166262 0)
(0.000740207 -0.000237745 0)
(0.000734889 -0.000309699 0)
(0.000729138 -0.000382191 0)
(0.000722922 -0.000455294 0)
(0.000716179 -0.000529067 0)
(0.000708825 -0.000603529 0)
(0.000700745 -0.000678629 0)
(0.000691794 -0.000754193 0)
(0.000681788 -0.000829834 0)
(0.0006705 -0.000904795 0)
(0.00065765 -0.000977702 0)
(0.000642897 -0.00104619 0)
(0.00062583 -0.00110643 0)
(0.00060596 -0.00115249 0)
(0.000582728 -0.00117578 0)
(0.000555527 -0.00116465 0)
(0.000523763 -0.00110457 0)
(0.000486956 -0.000979182 0)
(0.000444882 -0.000772562 0)
(0.000397729 -0.000472535 0)
(0.00034617 -7.44703e-05 0)
(0.000291365 0.000415314 0)
(0.000234908 0.000978136 0)
(-1.01183e-06 -0.000752222 0)
(-4.3297e-06 -0.00197065 0)
(-7.73443e-06 -0.002469 0)
(-8.35988e-06 -0.00231015 0)
(-4.58922e-06 -0.00173054 0)
(3.98814e-06 -0.000971104 0)
(1.67399e-05 -0.00020967 0)
(3.24429e-05 0.000451099 0)
(5.00127e-05 0.000971242 0)
(6.88849e-05 0.00135177 0)
(8.85593e-05 0.00161394 0)
(0.000108672 0.00178555 0)
(0.00012896 0.00189291 0)
(0.00014925 0.00195731 0)
(0.000169428 0.00199429 0)
(0.000189426 0.00201441 0)
(0.000209202 0.0020244 0)
(0.000228737 0.00202832 0)
(0.000248014 0.00202853 0)
(0.000267023 0.00202635 0)
(0.000285748 0.00202247 0)
(0.000304176 0.00201726 0)
(0.000322296 0.00201091 0)
(0.000340098 0.00200351 0)
(0.000357571 0.00199511 0)
(0.0003747 0.00198572 0)
(0.000391469 0.00197536 0)
(0.000407857 0.00196402 0)
(0.000423845 0.0019517 0)
(0.000439414 0.0019384 0)
(0.000454547 0.00192411 0)
(0.00046923 0.00190882 0)
(0.000483445 0.00189252 0)
(0.000497176 0.00187519 0)
(0.000510404 0.0018568 0)
(0.000523113 0.00183735 0)
(0.000535286 0.00181681 0)
(0.000546911 0.00179515 0)
(0.000557976 0.00177236 0)
(0.000568469 0.00174841 0)
(0.000578378 0.00172327 0)
(0.000587685 0.00169691 0)
(0.000596371 0.00166931 0)
(0.000604413 0.00164042 0)
(0.000611785 0.0016102 0)
(0.000618462 0.00157861 0)
(0.000624419 0.00154558 0)
(0.000629628 0.00151107 0)
(0.00063406 0.00147498 0)
(0.000637678 0.00143724 0)
(0.000640426 0.00139773 0)
(0.000642232 0.00135634 0)
(0.000643005 0.00131292 0)
(0.000642648 0.00126728 0)
(0.000641057 0.00121921 0)
(0.000638149 0.00116841 0)
(0.000633877 0.00111453 0)
(0.00062828 0.00105717 0)
(0.000621519 0.000995977 0)
(0.000613894 0.000930811 0)
(0.000605817 0.000861972 0)
(0.00059771 0.000790341 0)
(0.000589897 0.000717317 0)
(0.000582551 0.000644548 0)
(0.000575693 0.000573624 0)
(0.000569139 0.000505894 0)
(0.000562351 0.000442145 0)
(0.0005546 0.000382 0)
(0.000545471 0.000323936 0)
(0.000535141 0.000266251 0)
(0.000524083 0.000207886 0)
(0.000512743 0.000148379 0)
(0.000501379 8.76018e-05 0)
(0.000489932 2.56366e-05 0)
(0.000478733 -3.74607e-05 0)
(0.000469213 -0.000101159 0)
(0.000461141 -0.000165772 0)
(0.000453263 -0.000231513 0)
(0.000445399 -0.000298297 0)
(0.000437348 -0.000366033 0)
(0.000428945 -0.000434617 0)
(0.000420031 -0.000503905 0)
(0.000410417 -0.000573694 0)
(0.000399873 -0.000643688 0)
(0.000388111 -0.000713457 0)
(0.000374779 -0.000782338 0)
(0.000359455 -0.000849298 0)
(0.000341652 -0.000912688 0)
(0.000320831 -0.000969901 0)
(0.000296417 -0.00101692 0)
(0.00026784 -0.00104777 0)
(0.00023461 -0.00105405 0)
(0.000196418 -0.00102462 0)
(0.000153265 -0.000945938 0)
(0.0001056 -0.000803166 0)
(5.45164e-05 -0.000582406 0)
(2.08032e-06 -0.000273779 0)
(-4.93402e-05 0.000125834 0)
(-9.73168e-05 0.000609541 0)
(-0.000139705 0.00115834 0)
(1.18906e-06 -0.000761888 0)
(4.47246e-06 -0.00198675 0)
(8.1661e-06 -0.00249435 0)
(1.37915e-05 -0.00235445 0)
(2.29148e-05 -0.00179874 0)
(3.5554e-05 -0.00106019 0)
(5.00537e-05 -0.00031105 0)
(6.76345e-05 0.000340842 0)
(8.50797e-05 0.000852921 0)
(0.00010394 0.00122981 0)
(0.000123322 0.00149052 0)
(0.000142836 0.00166174 0)
(0.00016234 0.00176931 0)
(0.000181775 0.00183428 0)
(0.000201101 0.00187206 0)
(0.000220293 0.00189312 0)
(0.000239332 0.00190414 0)
(0.000258206 0.00190916 0)
(0.000276905 0.00191051 0)
(0.000295422 0.00190952 0)
(0.000313747 0.00190689 0)
(0.000331873 0.00190299 0)
(0.000349793 0.00189802 0)
(0.000367494 0.00189208 0)
(0.000384963 0.00188523 0)
(0.000402184 0.0018775 0)
(0.000419138 0.0018689 0)
(0.000435806 0.00185945 0)
(0.000452167 0.00184915 0)
(0.000468202 0.001838 0)
(0.00048389 0.00182601 0)
(0.00049921 0.00181315 0)
(0.000514138 0.00179942 0)
(0.00052865 0.00178481 0)
(0.000542719 0.00176931 0)
(0.000556317 0.00175289 0)
(0.000569415 0.00173555 0)
(0.000581983 0.00171729 0)
(0.000593987 0.0016981 0)
(0.000605391 0.00167797 0)
(0.000616151 0.00165692 0)
(0.000626221 0.00163494 0)
(0.000635546 0.00161205 0)
(0.000644063 0.00158826 0)
(0.000651701 0.00156358 0)
(0.00065838 0.00153804 0)
(0.00066401 0.00151163 0)
(0.000668487 0.00148439 0)
(0.000671691 0.0014563 0)
(0.000673492 0.00142737 0)
(0.000673754 0.0013976 0)
(0.000672338 0.00136697 0)
(0.000669096 0.00133543 0)
(0.000663873 0.00130288 0)
(0.000656512 0.00126911 0)
(0.000646867 0.0012337 0)
(0.000634822 0.00119598 0)
(0.000620328 0.00115494 0)
(0.000603439 0.00110941 0)
(0.000584342 0.00105833 0)
(0.000563343 0.00100128 0)
(0.000540818 0.00093884 0)
(0.000517172 0.000872436 0)
(0.00049283 0.000803787 0)
(0.0004682 0.000734695 0)
(0.000443485 0.000667618 0)
(0.000418615 0.000605205 0)
(0.000393589 0.000547215 0)
(0.00036847 0.000489652 0)
(0.000343601 0.00042846 0)
(0.0003194 0.000362848 0)
(0.000296712 0.000293417 0)
(0.000275759 0.000220795 0)
(0.000256777 0.000146388 0)
(0.000240437 7.04732e-05 0)
(0.000223966 -3.04083e-06 0)
(0.000209462 -7.5639e-05 0)
(0.000195435 -0.000150741 0)
(0.000182775 -0.000225233 0)
(0.000171323 -0.000298913 0)
(0.000160825 -0.000371706 0)
(0.000151012 -0.00044345 0)
(0.000141604 -0.000513871 0)
(0.00013231 -0.000582562 0)
(0.000122824 -0.000648937 0)
(0.000112821 -0.000712158 0)
(0.000101956 -0.000771007 0)
(8.98629e-05 -0.000823684 0)
(7.61615e-05 -0.000867524 0)
(6.04748e-05 -0.000898624 0)
(4.24575e-05 -0.000911422 0)
(2.18448e-05 -0.000898325 0)
(-1.48607e-06 -0.000849551 0)
(-2.74546e-05 -0.000753449 0)
(-5.56877e-05 -0.000597681 0)
(-8.52327e-05 -0.000371956 0)
(-0.000113513 -7.36201e-05 0)
(-0.00014204 0.000305143 0)
(-0.000165913 0.000762304 0)
(-0.000185487 0.00127621 0)
(-0.0379458 -0.0316756 0)
(-0.0372624 -0.0322365 0)
(-0.0365617 -0.0328768 0)
(-0.0358388 -0.0335367 0)
(-0.0350947 -0.034201 0)
(-0.0343294 -0.0348632 0)
(-0.0335431 -0.0355206 0)
(-0.0327355 -0.0361719 0)
(-0.0319067 -0.0368161 0)
(-0.0310567 -0.0374525 0)
(-0.0301856 -0.0380807 0)
(-0.0292936 -0.0386999 0)
(-0.0283809 -0.0393098 0)
(-0.0274474 -0.0399097 0)
(-0.0264935 -0.0404992 0)
(-0.0255194 -0.0410777 0)
(-0.0245253 -0.0416446 0)
(-0.0235113 -0.0421996 0)
(-0.0224779 -0.042742 0)
(-0.0214254 -0.0432713 0)
(-0.0203539 -0.043787 0)
(-0.019264 -0.0442884 0)
(-0.0181559 -0.0447752 0)
(-0.0170301 -0.0452466 0)
(-0.0158871 -0.0457022 0)
(-0.0147273 -0.0461414 0)
(-0.0135511 -0.0465635 0)
(-0.0123592 -0.0469682 0)
(-0.0111521 -0.0473547 0)
(-0.00993041 -0.0477226 0)
(-0.0086947 -0.0480713 0)
(-0.00744565 -0.0484004 0)
(-0.00618396 -0.0487092 0)
(-0.00491032 -0.0489973 0)
(-0.00362549 -0.0492642 0)
(-0.00233023 -0.0495091 0)
(-0.00102533 -0.0497307 0)
(0.000288712 -0.0499254 0)
(0.00161105 -0.0500916 0)
(0.00294063 -0.0502315 0)
(0.00427637 -0.0503464 0)
(0.00561722 -0.0504366 0)
(0.00696219 -0.0505023 0)
(0.00831032 -0.0505434 0)
(0.00966067 -0.0505598 0)
(0.0110123 -0.0505513 0)
(0.0123641 -0.0505179 0)
(0.0137153 -0.0504596 0)
(0.0150649 -0.0503762 0)
(0.0164118 -0.0502679 0)
(0.0177551 -0.0501347 0)
(0.0190939 -0.0499768 0)
(0.0204272 -0.0497941 0)
(0.021754 -0.049587 0)
(0.0230735 -0.0493556 0)
(0.0243845 -0.0491002 0)
(0.0256864 -0.048821 0)
(0.0269781 -0.0485185 0)
(0.0282588 -0.048193 0)
(0.0295276 -0.0478449 0)
(0.0307837 -0.0474746 0)
(0.0320263 -0.0470826 0)
(0.0332545 -0.0466693 0)
(0.0344677 -0.0462354 0)
(0.0356651 -0.0457814 0)
(0.0368461 -0.0453077 0)
(0.0380098 -0.0448151 0)
(0.0391558 -0.0443042 0)
(0.0402834 -0.0437755 0)
(0.041392 -0.0432298 0)
(0.0424811 -0.0426676 0)
(0.0435503 -0.0420897 0)
(0.0445989 -0.0414967 0)
(0.0456267 -0.0408893 0)
(0.0466331 -0.0402682 0)
(0.0476178 -0.0396341 0)
(0.0485805 -0.0389876 0)
(0.0495208 -0.0383293 0)
(0.0504386 -0.0376601 0)
(0.0513335 -0.0369804 0)
(0.0522053 -0.036291 0)
(0.0530539 -0.0355924 0)
(0.053879 -0.0348854 0)
(0.0546806 -0.0341703 0)
(0.0554584 -0.0334479 0)
(0.0562126 -0.0327188 0)
(0.0569429 -0.0319834 0)
(0.0576493 -0.0312423 0)
(0.0583318 -0.0304959 0)
(0.0589904 -0.0297449 0)
(0.0596251 -0.0289898 0)
(0.0602359 -0.0282309 0)
(0.0608229 -0.0274688 0)
(0.0613861 -0.0267041 0)
(0.0619258 -0.0259373 0)
(0.062442 -0.0251692 0)
(0.0629351 -0.0244016 0)
(0.063405 -0.0236386 0)
(0.0638495 -0.0228928 0)
(0.0642738 -0.0222266 0)
(-0.0434332 -0.0366793 0)
(-0.0427301 -0.037392 0)
(-0.0420055 -0.0381885 0)
(-0.0412519 -0.0390097 0)
(-0.0404729 -0.0398382 0)
(-0.039669 -0.0406664 0)
(-0.0388399 -0.0414906 0)
(-0.0379856 -0.0423091 0)
(-0.0371058 -0.0431205 0)
(-0.0362004 -0.043924 0)
(-0.0352696 -0.0447188 0)
(-0.0343131 -0.045504 0)
(-0.033331 -0.0462789 0)
(-0.0323235 -0.0470429 0)
(-0.0312905 -0.0477952 0)
(-0.0302321 -0.0485352 0)
(-0.0291486 -0.049262 0)
(-0.0280402 -0.049975 0)
(-0.0269069 -0.0506735 0)
(-0.0257492 -0.0513565 0)
(-0.0245673 -0.0520235 0)
(-0.0233615 -0.0526736 0)
(-0.0221322 -0.053306 0)
(-0.0208798 -0.0539199 0)
(-0.0196048 -0.0545145 0)
(-0.0183077 -0.055089 0)
(-0.0169891 -0.0556425 0)
(-0.0156495 -0.0561742 0)
(-0.0142897 -0.0566834 0)
(-0.0129102 -0.0571691 0)
(-0.0115119 -0.0576306 0)
(-0.0100956 -0.0580671 0)
(-0.00866195 -0.0584778 0)
(-0.007212 -0.0588619 0)
(-0.00574662 -0.0592187 0)
(-0.00426678 -0.0595473 0)
(-0.00277346 -0.0598467 0)
(-0.00126761 -0.0601152 0)
(0.000250004 -0.0603492 0)
(0.00177806 -0.060547 0)
(0.00331528 -0.0607106 0)
(0.00486029 -0.060841 0)
(0.00641171 -0.0609387 0)
(0.00796821 -0.0610037 0)
(0.00952848 -0.061036 0)
(0.0110912 -0.0610354 0)
(0.0126551 -0.0610018 0)
(0.0142187 -0.0609351 0)
(0.0157809 -0.0608353 0)
(0.0173402 -0.0607024 0)
(0.0188953 -0.0605365 0)
(0.0204449 -0.0603377 0)
(0.0219877 -0.0601062 0)
(0.0235223 -0.0598423 0)
(0.0250475 -0.0595462 0)
(0.026562 -0.0592185 0)
(0.0280644 -0.0588595 0)
(0.0295537 -0.0584696 0)
(0.0310286 -0.0580495 0)
(0.0324879 -0.0575998 0)
(0.0339306 -0.0571211 0)
(0.0353555 -0.0566141 0)
(0.0367615 -0.0560795 0)
(0.0381478 -0.0555181 0)
(0.0395133 -0.0549308 0)
(0.0408572 -0.0543184 0)
(0.0421786 -0.0536817 0)
(0.0434766 -0.0530217 0)
(0.0447506 -0.0523393 0)
(0.0459999 -0.0516355 0)
(0.0472238 -0.0509111 0)
(0.0484217 -0.0501673 0)
(0.049593 -0.0494049 0)
(0.0507374 -0.0486249 0)
(0.0518544 -0.0478283 0)
(0.0529436 -0.0470161 0)
(0.0540046 -0.0461893 0)
(0.0550372 -0.0453487 0)
(0.0560412 -0.0444953 0)
(0.0570163 -0.04363 0)
(0.0579624 -0.0427538 0)
(0.0588795 -0.0418674 0)
(0.0597673 -0.0409718 0)
(0.060626 -0.0400677 0)
(0.0614556 -0.0391559 0)
(0.062256 -0.0382372 0)
(0.0630274 -0.0373124 0)
(0.0637699 -0.036382 0)
(0.0644836 -0.0354469 0)
(0.0651687 -0.0345077 0)
(0.0658254 -0.033565 0)
(0.0664539 -0.0326196 0)
(0.0670546 -0.031672 0)
(0.0676276 -0.0307231 0)
(0.0681733 -0.0297737 0)
(0.0686921 -0.0288252 0)
(0.0691843 -0.0278799 0)
(0.0696494 -0.0269432 0)
(0.0700839 -0.0260294 0)
(0.0704919 -0.0251955 0)
(-0.0502598 -0.0419854 0)
(-0.0495493 -0.0428897 0)
(-0.0488113 -0.0438822 0)
(-0.0480379 -0.044905 0)
(-0.0472339 -0.0459387 0)
(-0.0463998 -0.0469748 0)
(-0.0455351 -0.048009 0)
(-0.0446394 -0.049039 0)
(-0.0437125 -0.0500634 0)
(-0.042754 -0.051081 0)
(-0.0417638 -0.0520906 0)
(-0.0407416 -0.0530913 0)
(-0.0396874 -0.0540821 0)
(-0.0386008 -0.055062 0)
(-0.0374819 -0.05603 0)
(-0.0363306 -0.0569851 0)
(-0.035147 -0.0579263 0)
(-0.033931 -0.0588526 0)
(-0.0326828 -0.0597627 0)
(-0.0314025 -0.0606557 0)
(-0.0300903 -0.0615304 0)
(-0.0287465 -0.0623855 0)
(-0.0273715 -0.06322 0)
(-0.0259655 -0.0640327 0)
(-0.0245291 -0.0648222 0)
(-0.0230627 -0.0655873 0)
(-0.021567 -0.0663269 0)
(-0.0200426 -0.0670395 0)
(-0.0184902 -0.067724 0)
(-0.0169107 -0.0683791 0)
(-0.0153049 -0.0690035 0)
(-0.0136738 -0.069596 0)
(-0.0120185 -0.0701554 0)
(-0.0103399 -0.0706804 0)
(-0.00863939 -0.0711699 0)
(-0.00691811 -0.0716227 0)
(-0.0051774 -0.0720375 0)
(-0.00341864 -0.0724127 0)
(-0.00164317 -0.0727462 0)
(0.00014786 -0.0730345 0)
(0.00195266 -0.0732755 0)
(0.00376948 -0.0734705 0)
(0.00559645 -0.0736207 0)
(0.00743161 -0.0737263 0)
(0.00927309 -0.0737873 0)
(0.011119 -0.0738036 0)
(0.0129674 -0.0737751 0)
(0.0148165 -0.0737016 0)
(0.0166643 -0.073583 0)
(0.018509 -0.0734194 0)
(0.0203486 -0.0732109 0)
(0.0221812 -0.0729577 0)
(0.0240049 -0.0726602 0)
(0.0258178 -0.0723187 0)
(0.0276181 -0.0719338 0)
(0.029404 -0.0715061 0)
(0.0311737 -0.0710362 0)
(0.0329254 -0.0705251 0)
(0.0346576 -0.0699735 0)
(0.0363684 -0.0693824 0)
(0.0380565 -0.0687528 0)
(0.0397203 -0.0680859 0)
(0.0413584 -0.0673828 0)
(0.0429694 -0.0666447 0)
(0.044552 -0.0658729 0)
(0.0461052 -0.0650687 0)
(0.0476277 -0.0642335 0)
(0.0491186 -0.0633686 0)
(0.050577 -0.0624755 0)
(0.0520019 -0.0615556 0)
(0.0533927 -0.0606103 0)
(0.0547486 -0.0596411 0)
(0.0560691 -0.0586494 0)
(0.0573537 -0.0576366 0)
(0.0586019 -0.0566042 0)
(0.0598133 -0.0555536 0)
(0.0609878 -0.0544862 0)
(0.0621251 -0.0534034 0)
(0.0632251 -0.0523065 0)
(0.0642877 -0.0511967 0)
(0.0653129 -0.0500754 0)
(0.0663009 -0.0489438 0)
(0.0672516 -0.0478031 0)
(0.0681654 -0.0466543 0)
(0.0690424 -0.0454987 0)
(0.0698828 -0.0443373 0)
(0.0706871 -0.0431711 0)
(0.0714555 -0.042001 0)
(0.0721886 -0.0408281 0)
(0.0728866 -0.0396532 0)
(0.0735501 -0.0384772 0)
(0.0741796 -0.037301 0)
(0.0747756 -0.0361256 0)
(0.0753387 -0.0349518 0)
(0.0758694 -0.0337808 0)
(0.0763685 -0.0326142 0)
(0.0768367 -0.0314548 0)
(0.0772733 -0.0303089 0)
(0.0776742 -0.0291916 0)
(0.0780433 -0.0281521 0)
(-0.0586717 -0.0472024 0)
(-0.0579782 -0.048339 0)
(-0.0572495 -0.0495663 0)
(-0.056479 -0.0508304 0)
(-0.0556715 -0.0521105 0)
(-0.0548272 -0.0533971 0)
(-0.0539454 -0.0546855 0)
(-0.0530255 -0.0559731 0)
(-0.0520668 -0.0572582 0)
(-0.0510688 -0.0585392 0)
(-0.0500309 -0.0598148 0)
(-0.0489526 -0.0610838 0)
(-0.0478334 -0.0623449 0)
(-0.0466729 -0.0635969 0)
(-0.0454707 -0.0648384 0)
(-0.0442265 -0.0660681 0)
(-0.0429399 -0.0672845 0)
(-0.0416108 -0.0684861 0)
(-0.0402389 -0.0696716 0)
(-0.0388242 -0.0708392 0)
(-0.0373667 -0.0719874 0)
(-0.0358663 -0.0731146 0)
(-0.0343233 -0.0742188 0)
(-0.0327378 -0.0752985 0)
(-0.0311102 -0.0763517 0)
(-0.0294408 -0.0773766 0)
(-0.0277304 -0.0783713 0)
(-0.0259793 -0.0793338 0)
(-0.0241885 -0.0802623 0)
(-0.0223588 -0.0811547 0)
(-0.0204911 -0.0820091 0)
(-0.0185867 -0.0828236 0)
(-0.0166466 -0.0835961 0)
(-0.0146724 -0.0843248 0)
(-0.0126656 -0.0850077 0)
(-0.0106276 -0.0856429 0)
(-0.00856039 -0.0862287 0)
(-0.00646572 -0.0867628 0)
(-0.0043456 -0.087243 0)
(-0.0022021 -0.0876665 0)
(-3.70278e-05 -0.0880286 0)
(0.00214695 -0.0883266 0)
(0.00434705 -0.0885618 0)
(0.00656052 -0.0887353 0)
(0.00878449 -0.0888473 0)
(0.0110162 -0.0888977 0)
(0.0132527 -0.0888862 0)
(0.0154913 -0.0888125 0)
(0.0177291 -0.0886765 0)
(0.0199631 -0.0884782 0)
(0.0221907 -0.0882178 0)
(0.0244088 -0.0878955 0)
(0.0266147 -0.0875119 0)
(0.0288055 -0.0870676 0)
(0.0309785 -0.0865635 0)
(0.033131 -0.0860005 0)
(0.0352604 -0.0853797 0)
(0.0373642 -0.0847026 0)
(0.0394399 -0.0839704 0)
(0.0414852 -0.0831848 0)
(0.0434979 -0.0823475 0)
(0.0454759 -0.0814603 0)
(0.0474173 -0.080525 0)
(0.0493203 -0.0795436 0)
(0.051183 -0.0785183 0)
(0.0530042 -0.077451 0)
(0.0547822 -0.0763439 0)
(0.056516 -0.0751992 0)
(0.0582043 -0.0740192 0)
(0.0598462 -0.072806 0)
(0.061441 -0.0715619 0)
(0.0629878 -0.0702891 0)
(0.0644861 -0.0689898 0)
(0.0659356 -0.0676661 0)
(0.0673358 -0.0663202 0)
(0.0686866 -0.0649542 0)
(0.0699879 -0.0635701 0)
(0.0712397 -0.0621699 0)
(0.0724422 -0.0607556 0)
(0.0735955 -0.059329 0)
(0.0747 -0.0578918 0)
(0.0757561 -0.0564459 0)
(0.0767641 -0.0549929 0)
(0.0777246 -0.0535343 0)
(0.0786381 -0.0520717 0)
(0.0795054 -0.0506065 0)
(0.0803271 -0.04914 0)
(0.0811039 -0.0476736 0)
(0.0818366 -0.0462084 0)
(0.082526 -0.0447457 0)
(0.083173 -0.0432865 0)
(0.0837783 -0.041832 0)
(0.0843429 -0.0403833 0)
(0.0848676 -0.0389414 0)
(0.0853534 -0.0375077 0)
(0.0858012 -0.0360839 0)
(0.0862121 -0.0346732 0)
(0.0865856 -0.0332821 0)
(0.0869191 -0.0319255 0)
(0.0872137 -0.0306433 0)
(-0.068989 -0.0522073 0)
(-0.0683465 -0.0536324 0)
(-0.0676609 -0.0551464 0)
(-0.0669265 -0.0567039 0)
(-0.0661481 -0.0582842 0)
(-0.0653254 -0.0598774 0)
(-0.0644573 -0.0614787 0)
(-0.0635427 -0.0630852 0)
(-0.0625805 -0.0646949 0)
(-0.0615695 -0.066306 0)
(-0.0605088 -0.0679172 0)
(-0.0593972 -0.0695268 0)
(-0.0582338 -0.0711333 0)
(-0.0570176 -0.0727352 0)
(-0.0557477 -0.0743308 0)
(-0.0544232 -0.0759183 0)
(-0.0530433 -0.0774959 0)
(-0.0516071 -0.0790615 0)
(-0.0501141 -0.0806133 0)
(-0.0485635 -0.082149 0)
(-0.0469548 -0.0836663 0)
(-0.0452877 -0.085163 0)
(-0.0435618 -0.0866365 0)
(-0.0417769 -0.0880843 0)
(-0.0399329 -0.0895037 0)
(-0.0380299 -0.090892 0)
(-0.0360681 -0.0922463 0)
(-0.034048 -0.0935637 0)
(-0.03197 -0.0948412 0)
(-0.029835 -0.0960759 0)
(-0.0276439 -0.0972645 0)
(-0.0253979 -0.0984039 0)
(-0.0230983 -0.0994911 0)
(-0.0207467 -0.100523 0)
(-0.018345 -0.101496 0)
(-0.0158952 -0.102407 0)
(-0.0133997 -0.103254 0)
(-0.0108609 -0.104033 0)
(-0.00828171 -0.10474 0)
(-0.005665 -0.105373 0)
(-0.00301409 -0.105926 0)
(-0.000331806 -0.106393 0)
(0.00237777 -0.10677 0)
(0.00511019 -0.107058 0)
(0.00786127 -0.107258 0)
(0.0106266 -0.107371 0)
(0.0134017 -0.107397 0)
(0.0161822 -0.107335 0)
(0.0189635 -0.107183 0)
(0.0217412 -0.106944 0)
(0.0245105 -0.106615 0)
(0.0272671 -0.106199 0)
(0.0300064 -0.105695 0)
(0.032724 -0.105104 0)
(0.0354155 -0.104429 0)
(0.0380766 -0.10367 0)
(0.0407033 -0.10283 0)
(0.0432917 -0.101911 0)
(0.0458381 -0.100915 0)
(0.048339 -0.0998456 0)
(0.050791 -0.0987047 0)
(0.0531913 -0.0974959 0)
(0.0555369 -0.0962223 0)
(0.0578254 -0.0948873 0)
(0.0600545 -0.0934944 0)
(0.0622223 -0.092047 0)
(0.0643269 -0.0905488 0)
(0.0663669 -0.0890034 0)
(0.0683411 -0.0874144 0)
(0.0702484 -0.0857854 0)
(0.0720882 -0.0841199 0)
(0.0738598 -0.0824214 0)
(0.075563 -0.0806934 0)
(0.0771976 -0.0789391 0)
(0.0787637 -0.0771619 0)
(0.0802615 -0.0753649 0)
(0.0816915 -0.0735511 0)
(0.0830541 -0.0717235 0)
(0.08435 -0.0698847 0)
(0.0855801 -0.0680374 0)
(0.0867453 -0.0661842 0)
(0.0878465 -0.0643274 0)
(0.0888849 -0.0624692 0)
(0.0898617 -0.0606118 0)
(0.090778 -0.0587571 0)
(0.0916353 -0.0569069 0)
(0.0924349 -0.0550629 0)
(0.0931781 -0.0532268 0)
(0.0938665 -0.0514 0)
(0.0945014 -0.0495838 0)
(0.0950843 -0.0477796 0)
(0.0956168 -0.0459885 0)
(0.0961003 -0.0442118 0)
(0.0965363 -0.0424505 0)
(0.0969264 -0.0407061 0)
(0.0972721 -0.0389803 0)
(0.0975748 -0.0372761 0)
(0.0978348 -0.0355997 0)
(0.0980499 -0.0339641 0)
(0.0982202 -0.0324014 0)
(-0.081574 -0.0565971 0)
(-0.0810421 -0.0583625 0)
(-0.0804583 -0.0602155 0)
(-0.0798204 -0.0621198 0)
(-0.0791307 -0.0640566 0)
(-0.0783887 -0.0660165 0)
(-0.0775926 -0.0679948 0)
(-0.0767406 -0.0699888 0)
(-0.0758309 -0.0719963 0)
(-0.0748616 -0.0740158 0)
(-0.0738308 -0.0760456 0)
(-0.0727368 -0.0780842 0)
(-0.0715777 -0.0801298 0)
(-0.0703515 -0.0821807 0)
(-0.0690565 -0.0842349 0)
(-0.0676909 -0.0862903 0)
(-0.0662528 -0.0883446 0)
(-0.0647406 -0.0903955 0)
(-0.0631525 -0.0924402 0)
(-0.061487 -0.094476 0)
(-0.0597426 -0.0964999 0)
(-0.0579178 -0.0985087 0)
(-0.0560113 -0.100499 0)
(-0.0540221 -0.102467 0)
(-0.0519492 -0.104409 0)
(-0.0497917 -0.106321 0)
(-0.0475491 -0.108199 0)
(-0.045221 -0.110038 0)
(-0.0428073 -0.111834 0)
(-0.0403082 -0.113582 0)
(-0.0377242 -0.115276 0)
(-0.0350561 -0.116913 0)
(-0.032305 -0.118485 0)
(-0.0294726 -0.11999 0)
(-0.0265607 -0.12142 0)
(-0.0235718 -0.12277 0)
(-0.0205088 -0.124035 0)
(-0.0173748 -0.12521 0)
(-0.0141736 -0.126289 0)
(-0.0109096 -0.127265 0)
(-0.00758723 -0.128134 0)
(-0.00421198 -0.128887 0)
(-0.000788442 -0.129515 0)
(0.00267689 -0.130011 0)
(0.00617655 -0.130375 0)
(0.00970387 -0.130611 0)
(0.0132516 -0.130716 0)
(0.0168121 -0.130691 0)
(0.0203779 -0.130535 0)
(0.0239413 -0.130246 0)
(0.0274947 -0.129826 0)
(0.0310302 -0.129274 0)
(0.0345401 -0.128592 0)
(0.0380171 -0.127781 0)
(0.0414536 -0.126845 0)
(0.0448427 -0.125787 0)
(0.0481774 -0.12461 0)
(0.0514514 -0.123318 0)
(0.0546587 -0.121916 0)
(0.0577937 -0.120409 0)
(0.0608514 -0.118802 0)
(0.0638272 -0.117101 0)
(0.0667171 -0.115313 0)
(0.0695175 -0.113442 0)
(0.0722254 -0.111496 0)
(0.0748384 -0.109479 0)
(0.0773545 -0.1074 0)
(0.0797722 -0.105263 0)
(0.0820905 -0.103075 0)
(0.0843088 -0.100841 0)
(0.086427 -0.0985683 0)
(0.0884452 -0.0962612 0)
(0.0903639 -0.0939253 0)
(0.0921841 -0.0915658 0)
(0.0939068 -0.0891876 0)
(0.0955334 -0.0867952 0)
(0.0970656 -0.084393 0)
(0.098505 -0.0819851 0)
(0.0998536 -0.0795753 0)
(0.101114 -0.0771672 0)
(0.102287 -0.074764 0)
(0.103376 -0.0723689 0)
(0.104384 -0.0699846 0)
(0.105312 -0.0676137 0)
(0.106163 -0.0652586 0)
(0.10694 -0.0629213 0)
(0.107645 -0.060604 0)
(0.10828 -0.0583082 0)
(0.108848 -0.0560355 0)
(0.109352 -0.0537874 0)
(0.109794 -0.0515651 0)
(0.110176 -0.0493697 0)
(0.1105 -0.0472022 0)
(0.11077 -0.0450638 0)
(0.110987 -0.0429554 0)
(0.111154 -0.0408787 0)
(0.111272 -0.0388363 0)
(0.111343 -0.0368331 0)
(0.111365 -0.0348796 0)
(0.111337 -0.0329969 0)
(-0.0966901 -0.0598794 0)
(-0.096357 -0.0620342 0)
(-0.0959668 -0.0642741 0)
(-0.0955169 -0.0665753 0)
(-0.0950099 -0.0689225 0)
(-0.0944442 -0.0713078 0)
(-0.0938174 -0.0737274 0)
(-0.0931266 -0.0761791 0)
(-0.0923689 -0.0786612 0)
(-0.0915414 -0.0811726 0)
(-0.0906411 -0.0837119 0)
(-0.089665 -0.0862778 0)
(-0.0886098 -0.0888687 0)
(-0.0874723 -0.0914832 0)
(-0.0862492 -0.0941193 0)
(-0.0849371 -0.0967749 0)
(-0.0835326 -0.0994476 0)
(-0.0820323 -0.102135 0)
(-0.0804327 -0.104834 0)
(-0.0787304 -0.107541 0)
(-0.076922 -0.110253 0)
(-0.0750042 -0.112966 0)
(-0.0729736 -0.115676 0)
(-0.070827 -0.118377 0)
(-0.0685614 -0.121065 0)
(-0.0661739 -0.123734 0)
(-0.0636619 -0.126379 0)
(-0.061023 -0.128992 0)
(-0.0582551 -0.131566 0)
(-0.0553567 -0.134095 0)
(-0.0523263 -0.136571 0)
(-0.0491633 -0.138985 0)
(-0.0458674 -0.141328 0)
(-0.0424393 -0.143591 0)
(-0.03888 -0.145765 0)
(-0.0351914 -0.14784 0)
(-0.0313765 -0.149806 0)
(-0.0274388 -0.151653 0)
(-0.023383 -0.153369 0)
(-0.0192147 -0.154945 0)
(-0.0149406 -0.156369 0)
(-0.0105683 -0.15763 0)
(-0.00610699 -0.158715 0)
(-0.00156544 -0.159608 0)
(0.00304497 -0.160298 0)
(0.00771084 -0.160784 0)
(0.0124204 -0.161066 0)
(0.01716 -0.161143 0)
(0.0219154 -0.161013 0)
(0.0266726 -0.160674 0)
(0.0314175 -0.160126 0)
(0.036136 -0.159371 0)
(0.0408136 -0.15841 0)
(0.0454367 -0.157248 0)
(0.0499915 -0.155889 0)
(0.0544653 -0.15434 0)
(0.0588459 -0.15261 0)
(0.0631222 -0.150706 0)
(0.0672841 -0.148638 0)
(0.0713222 -0.146416 0)
(0.0752286 -0.144051 0)
(0.0789964 -0.141554 0)
(0.0826201 -0.138938 0)
(0.0860952 -0.136212 0)
(0.0894185 -0.13339 0)
(0.0925876 -0.130482 0)
(0.0956012 -0.127499 0)
(0.0984591 -0.124453 0)
(0.101162 -0.121353 0)
(0.10371 -0.118209 0)
(0.106106 -0.115032 0)
(0.108353 -0.111828 0)
(0.110452 -0.108608 0)
(0.112408 -0.105377 0)
(0.114225 -0.102144 0)
(0.115906 -0.0989141 0)
(0.117455 -0.0956941 0)
(0.118877 -0.092489 0)
(0.120177 -0.0893038 0)
(0.121358 -0.086143 0)
(0.122426 -0.0830104 0)
(0.123385 -0.0799098 0)
(0.124239 -0.0768441 0)
(0.124993 -0.0738161 0)
(0.125652 -0.0708283 0)
(0.12622 -0.0678827 0)
(0.126701 -0.064981 0)
(0.127099 -0.0621248 0)
(0.127418 -0.0593153 0)
(0.127663 -0.0565535 0)
(0.127836 -0.0538401 0)
(0.127943 -0.0511758 0)
(0.127985 -0.048561 0)
(0.127967 -0.0459962 0)
(0.127892 -0.0434817 0)
(0.127762 -0.0410184 0)
(0.127582 -0.0386076 0)
(0.127353 -0.0362527 0)
(0.127072 -0.0339597 0)
(0.126738 -0.03174 0)
(-0.114619 -0.0612588 0)
(-0.11461 -0.0638277 0)
(-0.114542 -0.0664816 0)
(-0.114414 -0.0692108 0)
(-0.114227 -0.0720048 0)
(-0.11398 -0.0748586 0)
(-0.113668 -0.0777698 0)
(-0.113288 -0.0807374 0)
(-0.112837 -0.0837611 0)
(-0.112309 -0.0868406 0)
(-0.111701 -0.0899757 0)
(-0.111007 -0.093166 0)
(-0.110224 -0.0964111 0)
(-0.109346 -0.0997101 0)
(-0.108368 -0.103062 0)
(-0.107283 -0.106466 0)
(-0.106088 -0.10992 0)
(-0.104775 -0.113422 0)
(-0.103338 -0.11697 0)
(-0.101771 -0.120561 0)
(-0.100068 -0.124192 0)
(-0.0982209 -0.127859 0)
(-0.0962235 -0.131557 0)
(-0.0940686 -0.135282 0)
(-0.0917491 -0.139026 0)
(-0.0892576 -0.142785 0)
(-0.086587 -0.14655 0)
(-0.0837303 -0.150312 0)
(-0.0806805 -0.154064 0)
(-0.077431 -0.157793 0)
(-0.0739757 -0.161488 0)
(-0.0703088 -0.165138 0)
(-0.0664254 -0.168726 0)
(-0.0623212 -0.172239 0)
(-0.0579932 -0.17566 0)
(-0.0534392 -0.178971 0)
(-0.0486588 -0.182153 0)
(-0.0436532 -0.185187 0)
(-0.0384253 -0.188052 0)
(-0.0329809 -0.190727 0)
(-0.0273286 -0.193189 0)
(-0.0214804 -0.195415 0)
(-0.0154514 -0.19738 0)
(-0.00925999 -0.199058 0)
(-0.00292489 -0.20042 0)
(0.00353203 -0.201445 0)
(0.0100833 -0.202121 0)
(0.016705 -0.202449 0)
(0.0233691 -0.202427 0)
(0.030047 -0.202052 0)
(0.0367108 -0.201325 0)
(0.0433325 -0.200244 0)
(0.049884 -0.198815 0)
(0.056338 -0.197044 0)
(0.0626675 -0.194946 0)
(0.0688473 -0.192533 0)
(0.0748541 -0.189824 0)
(0.0806671 -0.186837 0)
(0.0862676 -0.183594 0)
(0.0916393 -0.180116 0)
(0.0967687 -0.176429 0)
(0.101645 -0.172557 0)
(0.106261 -0.168525 0)
(0.110611 -0.164357 0)
(0.114696 -0.160075 0)
(0.118517 -0.155702 0)
(0.122076 -0.151258 0)
(0.125379 -0.146763 0)
(0.128431 -0.142233 0)
(0.131241 -0.137685 0)
(0.133816 -0.133134 0)
(0.136164 -0.128593 0)
(0.138294 -0.124074 0)
(0.140216 -0.119587 0)
(0.141939 -0.115141 0)
(0.143473 -0.110744 0)
(0.144827 -0.106403 0)
(0.146011 -0.102124 0)
(0.147033 -0.0979121 0)
(0.147903 -0.0937707 0)
(0.148629 -0.0897037 0)
(0.14922 -0.0857139 0)
(0.149684 -0.0818034 0)
(0.150029 -0.077974 0)
(0.150261 -0.0742267 0)
(0.150389 -0.0705624 0)
(0.15042 -0.0669815 0)
(0.150358 -0.0634839 0)
(0.150212 -0.0600695 0)
(0.149987 -0.0567377 0)
(0.149687 -0.0534879 0)
(0.149319 -0.0503191 0)
(0.148888 -0.0472304 0)
(0.148397 -0.0442207 0)
(0.147852 -0.041289 0)
(0.147257 -0.0384344 0)
(0.146615 -0.0356568 0)
(0.14593 -0.0329568 0)
(0.145198 -0.0303359 0)
(0.144415 -0.0277902 0)
(-0.135302 -0.0596874 0)
(-0.135783 -0.0626428 0)
(-0.136211 -0.0656856 0)
(-0.136587 -0.0688214 0)
(-0.136913 -0.0720461 0)
(-0.137186 -0.0753582 0)
(-0.137403 -0.0787579 0)
(-0.137557 -0.0822467 0)
(-0.137646 -0.0858262 0)
(-0.137662 -0.0894984 0)
(-0.137601 -0.0932654 0)
(-0.137457 -0.0971291 0)
(-0.137223 -0.101091 0)
(-0.136892 -0.105154 0)
(-0.136457 -0.109319 0)
(-0.13591 -0.113587 0)
(-0.135242 -0.11796 0)
(-0.134443 -0.122438 0)
(-0.133506 -0.127021 0)
(-0.132418 -0.13171 0)
(-0.131168 -0.136503 0)
(-0.129746 -0.1414 0)
(-0.128138 -0.146399 0)
(-0.126331 -0.151496 0)
(-0.124311 -0.156688 0)
(-0.122062 -0.16197 0)
(-0.11957 -0.167335 0)
(-0.116817 -0.172774 0)
(-0.113786 -0.17828 0)
(-0.110459 -0.183839 0)
(-0.106818 -0.189438 0)
(-0.102841 -0.195061 0)
(-0.0985103 -0.200688 0)
(-0.0938041 -0.206299 0)
(-0.0887025 -0.21187 0)
(-0.0831873 -0.217372 0)
(-0.0772446 -0.222773 0)
(-0.0708675 -0.228037 0)
(-0.0640549 -0.233122 0)
(-0.0568087 -0.237974 0)
(-0.0491414 -0.242535 0)
(-0.0410786 -0.246743 0)
(-0.0326431 -0.250544 0)
(-0.0238547 -0.253882 0)
(-0.014743 -0.256704 0)
(-0.00534549 -0.258954 0)
(0.00429658 -0.260574 0)
(0.0141229 -0.261525 0)
(0.0240852 -0.261818 0)
(0.0341209 -0.261459 0)
(0.0441471 -0.260449 0)
(0.0540877 -0.258789 0)
(0.0638744 -0.256491 0)
(0.0734492 -0.253568 0)
(0.0827603 -0.250046 0)
(0.0917598 -0.245963 0)
(0.100404 -0.241365 0)
(0.108651 -0.236293 0)
(0.116467 -0.230797 0)
(0.123833 -0.22493 0)
(0.130735 -0.218747 0)
(0.137156 -0.212306 0)
(0.143079 -0.20567 0)
(0.148504 -0.198901 0)
(0.153431 -0.192051 0)
(0.157872 -0.185164 0)
(0.161845 -0.178276 0)
(0.165375 -0.171419 0)
(0.168489 -0.164618 0)
(0.171214 -0.157895 0)
(0.173576 -0.151267 0)
(0.175601 -0.144751 0)
(0.177313 -0.138359 0)
(0.178737 -0.132101 0)
(0.179893 -0.125986 0)
(0.180802 -0.120019 0)
(0.181483 -0.114204 0)
(0.181955 -0.108545 0)
(0.182236 -0.103042 0)
(0.18234 -0.0976964 0)
(0.182282 -0.0925068 0)
(0.182078 -0.0874724 0)
(0.181739 -0.0825913 0)
(0.181277 -0.0778612 0)
(0.180704 -0.0732793 0)
(0.18003 -0.0688426 0)
(0.179264 -0.0645479 0)
(0.178415 -0.0603916 0)
(0.177491 -0.0563701 0)
(0.1765 -0.0524798 0)
(0.175448 -0.0487168 0)
(0.174342 -0.0450773 0)
(0.173187 -0.0415576 0)
(0.171988 -0.0381539 0)
(0.170751 -0.0348626 0)
(0.169481 -0.0316804 0)
(0.16818 -0.0286045 0)
(0.166852 -0.0256324 0)
(0.165494 -0.0227599 0)
(0.164097 -0.0199655 0)
(-0.158295 -0.0539146 0)
(-0.159447 -0.0571505 0)
(-0.160564 -0.060474 0)
(-0.161652 -0.0639092 0)
(-0.162715 -0.0674584 0)
(-0.163748 -0.0711243 0)
(-0.16475 -0.0749106 0)
(-0.165716 -0.0788216 0)
(-0.166641 -0.0828625 0)
(-0.16752 -0.0870387 0)
(-0.168348 -0.0913559 0)
(-0.169119 -0.09582 0)
(-0.169825 -0.100437 0)
(-0.17046 -0.105214 0)
(-0.171015 -0.110157 0)
(-0.17148 -0.115274 0)
(-0.171846 -0.12057 0)
(-0.172101 -0.126054 0)
(-0.172233 -0.131732 0)
(-0.172228 -0.137613 0)
(-0.17207 -0.143702 0)
(-0.171743 -0.150008 0)
(-0.171227 -0.156537 0)
(-0.170502 -0.163296 0)
(-0.169544 -0.170292 0)
(-0.168327 -0.177531 0)
(-0.166822 -0.185017 0)
(-0.164996 -0.192756 0)
(-0.162813 -0.200751 0)
(-0.160233 -0.209005 0)
(-0.157209 -0.217522 0)
(-0.153693 -0.226302 0)
(-0.149633 -0.235342 0)
(-0.144977 -0.244633 0)
(-0.139673 -0.254151 0)
(-0.133677 -0.263845 0)
(-0.126949 -0.273629 0)
(-0.119471 -0.283385 0)
(-0.111229 -0.293027 0)
(-0.102197 -0.302459 0)
(-0.0923223 -0.31146 0)
(-0.0815367 -0.319881 0)
(-0.0697474 -0.327746 0)
(-0.0568728 -0.334964 0)
(-0.0429364 -0.341315 0)
(-0.0280313 -0.346644 0)
(-0.0122853 -0.350814 0)
(0.00420727 -0.353696 0)
(0.0212596 -0.355221 0)
(0.0386123 -0.355193 0)
(0.0559673 -0.353555 0)
(0.0730484 -0.350456 0)
(0.08964 -0.346059 0)
(0.105562 -0.340514 0)
(0.120685 -0.333879 0)
(0.134918 -0.326212 0)
(0.148166 -0.317582 0)
(0.160333 -0.308053 0)
(0.171335 -0.297814 0)
(0.181174 -0.287093 0)
(0.189932 -0.275914 0)
(0.197693 -0.264346 0)
(0.204529 -0.252572 0)
(0.21048 -0.240731 0)
(0.215588 -0.228944 0)
(0.219888 -0.217356 0)
(0.223427 -0.20607 0)
(0.226265 -0.195151 0)
(0.228458 -0.184628 0)
(0.230072 -0.174511 0)
(0.231169 -0.164795 0)
(0.23181 -0.15547 0)
(0.232051 -0.146527 0)
(0.231943 -0.137953 0)
(0.231528 -0.129737 0)
(0.230847 -0.121867 0)
(0.229931 -0.11433 0)
(0.228813 -0.107115 0)
(0.227518 -0.100209 0)
(0.226069 -0.0936003 0)
(0.224487 -0.0872761 0)
(0.222791 -0.0812244 0)
(0.220997 -0.0754333 0)
(0.219118 -0.0698911 0)
(0.217169 -0.0645865 0)
(0.215161 -0.0595087 0)
(0.213103 -0.0546471 0)
(0.211004 -0.0499916 0)
(0.208873 -0.0455326 0)
(0.206717 -0.0412606 0)
(0.204542 -0.037167 0)
(0.202353 -0.0332432 0)
(0.200157 -0.0294812 0)
(0.197956 -0.0258734 0)
(0.195755 -0.0224125 0)
(0.193558 -0.0190919 0)
(0.191368 -0.0159056 0)
(0.189186 -0.0128473 0)
(0.187009 -0.00990702 0)
(0.184821 -0.00704255 0)
(-0.182417 -0.0425948 0)
(-0.184396 -0.045885 0)
(-0.186375 -0.049257 0)
(-0.188366 -0.0527513 0)
(-0.190374 -0.0563763 0)
(-0.192399 -0.0601383 0)
(-0.19444 -0.0640443 0)
(-0.196495 -0.0681019 0)
(-0.198563 -0.0723198 0)
(-0.200643 -0.0767073 0)
(-0.202731 -0.0812743 0)
(-0.204825 -0.0860318 0)
(-0.206921 -0.0909914 0)
(-0.209017 -0.0961657 0)
(-0.211107 -0.101569 0)
(-0.213186 -0.107214 0)
(-0.215247 -0.11312 0)
(-0.217284 -0.119301 0)
(-0.219288 -0.125778 0)
(-0.221248 -0.132571 0)
(-0.223152 -0.139702 0)
(-0.224988 -0.147196 0)
(-0.226737 -0.15508 0)
(-0.228382 -0.163383 0)
(-0.229899 -0.172138 0)
(-0.231263 -0.181382 0)
(-0.232442 -0.191157 0)
(-0.233403 -0.201508 0)
(-0.234105 -0.212487 0)
(-0.234509 -0.224146 0)
(-0.234571 -0.236535 0)
(-0.234253 -0.249691 0)
(-0.233522 -0.263624 0)
(-0.232353 -0.278301 0)
(-0.230715 -0.293638 0)
(-0.228515 -0.309508 0)
(-0.225506 -0.325797 0)
(-0.221276 -0.342247 0)
(-0.215459 -0.358732 0)
(-0.20772 -0.375569 0)
(-0.197264 -0.393219 0)
(-0.18299 -0.411703 0)
(-0.164576 -0.431051 0)
(-0.142304 -0.450403 0)
(-0.116587 -0.468324 0)
(-0.0880389 -0.48391 0)
(-0.0575705 -0.497015 0)
(-0.0257845 -0.507575 0)
(0.00731151 -0.5145 0)
(0.0410464 -0.516406 0)
(0.0748087 -0.513 0)
(0.107443 -0.505566 0)
(0.138713 -0.494625 0)
(0.168843 -0.480951 0)
(0.197795 -0.46521 0)
(0.225099 -0.447624 0)
(0.250131 -0.427926 0)
(0.27237 -0.406272 0)
(0.2914 -0.383579 0)
(0.306394 -0.360842 0)
(0.316863 -0.338962 0)
(0.323427 -0.318211 0)
(0.327082 -0.297992 0)
(0.328371 -0.278319 0)
(0.327965 -0.259277 0)
(0.326601 -0.24098 0)
(0.324717 -0.223414 0)
(0.322449 -0.206711 0)
(0.319843 -0.190983 0)
(0.316923 -0.176283 0)
(0.313717 -0.1626 0)
(0.31026 -0.149884 0)
(0.306592 -0.138065 0)
(0.302753 -0.127065 0)
(0.298783 -0.116812 0)
(0.294718 -0.107235 0)
(0.290587 -0.0982753 0)
(0.286418 -0.0898798 0)
(0.282232 -0.0820019 0)
(0.278046 -0.0745999 0)
(0.273875 -0.067637 0)
(0.26973 -0.0610797 0)
(0.265622 -0.0548979 0)
(0.261558 -0.0490642 0)
(0.257545 -0.0435538 0)
(0.253586 -0.0383438 0)
(0.249687 -0.0334135 0)
(0.245849 -0.0287441 0)
(0.242075 -0.0243181 0)
(0.238367 -0.0201195 0)
(0.234725 -0.0161335 0)
(0.23115 -0.0123468 0)
(0.227641 -0.00874672 0)
(0.224198 -0.00532146 0)
(0.220822 -0.00206066 0)
(0.21751 0.00104531 0)
(0.214263 0.00400578 0)
(0.211081 0.00682933 0)
(0.207956 0.00953028 0)
(0.204867 0.0121709 0)
(-0.205565 -0.0249244 0)
(-0.208416 -0.0279345 0)
(-0.211311 -0.0309996 0)
(-0.214272 -0.0341749 0)
(-0.217307 -0.0374716 0)
(-0.220421 -0.0408956 0)
(-0.223619 -0.0444562 0)
(-0.226905 -0.048162 0)
(-0.230283 -0.0520221 0)
(-0.233758 -0.056047 0)
(-0.237336 -0.0602477 0)
(-0.241022 -0.0646366 0)
(-0.244824 -0.0692273 0)
(-0.248747 -0.0740347 0)
(-0.2528 -0.0790754 0)
(-0.256989 -0.0843678 0)
(-0.261325 -0.0899323 0)
(-0.265816 -0.0957914 0)
(-0.270473 -0.10197 0)
(-0.275307 -0.108498 0)
(-0.280331 -0.115405 0)
(-0.285559 -0.122728 0)
(-0.291006 -0.130507 0)
(-0.29669 -0.138788 0)
(-0.302631 -0.147622 0)
(-0.308853 -0.157065 0)
(-0.315388 -0.167174 0)
(-0.322279 -0.178 0)
(-0.329582 -0.189578 0)
(-0.337371 -0.201908 0)
(-0.34574 -0.214938 0)
(-0.354783 -0.228564 0)
(-0.364558 -0.242663 0)
(-0.374983 -0.257206 0)
(-0.38575 -0.272465 0)
(-0.396351 -0.289471 0)
(-0.405491 -0.310725 0)
(-0.409599 -0.339101 0)
(-0.406568 -0.376119 0)
(-0.395361 -0.416925 0)
(-0.374919 -0.471311 0)
(-0.344162 -0.538671 0)
(-0.304478 -0.60575 0)
(-0.259962 -0.667648 0)
(-0.211013 -0.72277 0)
(-0.160325 -0.764537 0)
(-0.111052 -0.792461 0)
(-0.0640672 -0.814985 0)
(-0.0177629 -0.830545 0)
(0.0309202 -0.840096 0)
(0.0808408 -0.831256 0)
(0.127686 -0.810253 0)
(0.171306 -0.788209 0)
(0.21516 -0.765523 0)
(0.262357 -0.735873 0)
(0.311798 -0.696652 0)
(0.361174 -0.647403 0)
(0.408477 -0.590386 0)
(0.453733 -0.525115 0)
(0.493381 -0.446588 0)
(0.522584 -0.373241 0)
(0.540228 -0.313687 0)
(0.545282 -0.259536 0)
(0.538604 -0.221535 0)
(0.523564 -0.19629 0)
(0.506057 -0.178129 0)
(0.48812 -0.163 0)
(0.470537 -0.149085 0)
(0.453913 -0.13578 0)
(0.438519 -0.122904 0)
(0.424351 -0.110547 0)
(0.411273 -0.0988474 0)
(0.39913 -0.0879044 0)
(0.387789 -0.0777524 0)
(0.37714 -0.0683739 0)
(0.367101 -0.0597204 0)
(0.357603 -0.0517308 0)
(0.348593 -0.0443429 0)
(0.340027 -0.0374983 0)
(0.331868 -0.0311449 0)
(0.324082 -0.0252368 0)
(0.316641 -0.0197323 0)
(0.309519 -0.0145942 0)
(0.302693 -0.00979171 0)
(0.296143 -0.00529557 0)
(0.28985 -0.00108003 0)
(0.283798 0.00287777 0)
(0.277971 0.00659865 0)
(0.272357 0.0101011 0)
(0.266942 0.0134019 0)
(0.261714 0.0165161 0)
(0.256665 0.0194573 0)
(0.251784 0.0222378 0)
(0.247062 0.0248682 0)
(0.24249 0.027359 0)
(0.238063 0.0297195 0)
(0.233774 0.0319584 0)
(0.229612 0.0340841 0)
(0.22557 0.0361123 0)
(0.22162 0.0381188 0)
(-0.225017 -0.00113389 0)
(-0.228562 -0.00350751 0)
(-0.232189 -0.00588717 0)
(-0.235924 -0.00833622 0)
(-0.239764 -0.0108645 0)
(-0.243733 -0.0134772 0)
(-0.247853 -0.0161764 0)
(-0.25212 -0.018966 0)
(-0.256543 -0.0218494 0)
(-0.261134 -0.0248313 0)
(-0.265907 -0.0279166 0)
(-0.270875 -0.0311099 0)
(-0.276054 -0.0344154 0)
(-0.281464 -0.0378383 0)
(-0.287124 -0.0413846 0)
(-0.293057 -0.0450597 0)
(-0.299289 -0.0488683 0)
(-0.305849 -0.0528146 0)
(-0.312768 -0.0569039 0)
(-0.320083 -0.0611416 0)
(-0.327835 -0.065533 0)
(-0.33607 -0.0700824 0)
(-0.344841 -0.0747921 0)
(-0.354209 -0.0796582 0)
(-0.364247 -0.0846644 0)
(-0.375043 -0.0897708 0)
(-0.3867 -0.0949003 0)
(-0.399334 -0.0999264 0)
(-0.413055 -0.104677 0)
(-0.427931 -0.108978 0)
(-0.44393 -0.112782 0)
(-0.460801 -0.116437 0)
(-0.477851 -0.121111 0)
(-0.493658 -0.129621 0)
(-0.506906 -0.147109 0)
(-0.51642 -0.180683 0)
(-0.518739 -0.240606 0)
(-0.509312 -0.333526 0)
(-0.488031 -0.485042 0)
(-0.443686 -0.648061 0)
(-0.385487 -0.823944 0)
(-0.327381 -0.995373 0)
(-0.271212 -1.10783 0)
(-0.223459 -1.19455 0)
(-0.17629 -1.26822 0)
(-0.133245 -1.28511 0)
(-0.095423 -1.24598 0)
(-0.0609843 -1.22672 0)
(-0.0295266 -1.2596 0)
(0.00540224 -1.31871 0)
(0.0386641 -1.29376 0)
(0.0725483 -1.19982 0)
(0.105036 -1.15799 0)
(0.138303 -1.19764 0)
(0.177386 -1.23919 0)
(0.222129 -1.23729 0)
(0.271113 -1.20524 0)
(0.31825 -1.16398 0)
(0.373853 -1.09494 0)
(0.442147 -0.952035 0)
(0.512264 -0.743259 0)
(0.561374 -0.508728 0)
(0.584837 -0.283331 0)
(0.600227 -0.149375 0)
(0.600492 -0.0592838 0)
(0.592306 -0.00701687 0)
(0.579594 0.0203637 0)
(0.562657 0.0310378 0)
(0.542245 0.0332535 0)
(0.521062 0.0324336 0)
(0.50045 0.0312051 0)
(0.48101 0.0306282 0)
(0.462916 0.0308829 0)
(0.446151 0.0318233 0)
(0.430618 0.0332289 0)
(0.416193 0.0349062 0)
(0.402757 0.0367204 0)
(0.390205 0.0385895 0)
(0.378444 0.0404677 0)
(0.367397 0.0423324 0)
(0.356999 0.0441706 0)
(0.347194 0.0459726 0)
(0.337931 0.0477305 0)
(0.329161 0.0494419 0)
(0.320844 0.0511021 0)
(0.312941 0.0527088 0)
(0.305419 0.0542607 0)
(0.298247 0.0557566 0)
(0.291397 0.0571963 0)
(0.284846 0.0585799 0)
(0.278572 0.059908 0)
(0.272554 0.0611814 0)
(0.266776 0.062401 0)
(0.261221 0.0635681 0)
(0.255874 0.064684 0)
(0.250722 0.0657501 0)
(0.245754 0.0667676 0)
(0.240959 0.0677391 0)
(0.236325 0.0686755 0)
(0.231825 0.0696601 0)
(-0.238377 0.0268654 0)
(-0.242255 0.0253499 0)
(-0.246226 0.0238894 0)
(-0.250313 0.02242 0)
(-0.254532 0.0209373 0)
(-0.258879 0.0194415 0)
(-0.263349 0.0179383 0)
(-0.267958 0.0164331 0)
(-0.272715 0.0149293 0)
(-0.277636 0.013432 0)
(-0.282725 0.0119494 0)
(-0.287982 0.0104873 0)
(-0.293418 0.00905137 0)
(-0.299052 0.00765026 0)
(-0.304893 0.00629612 0)
(-0.310937 0.00500038 0)
(-0.317179 0.0037732 0)
(-0.323633 0.00262417 0)
(-0.330314 0.00156895 0)
(-0.337226 0.000624517 0)
(-0.344371 -0.000187883 0)
(-0.351752 -0.000837751 0)
(-0.359372 -0.00127734 0)
(-0.36724 -0.00143112 0)
(-0.375362 -0.0011874 0)
(-0.383737 -0.000402923 0)
(-0.392328 0.00105734 0)
(-0.401001 0.00320331 0)
(-0.409448 0.00566325 0)
(-0.417103 0.00724529 0)
(-0.423048 0.00535948 0)
(-0.425679 -0.00460162 0)
(-0.422909 -0.0293433 0)
(-0.412629 -0.0769203 0)
(-0.39242 -0.154838 0)
(-0.360714 -0.266834 0)
(-0.312978 -0.416258 0)
(-0.262417 -0.598763 0)
(-0.20313 -0.850481 0)
(-0.161329 -1.1859 0)
(-0.120358 -1.31548 0)
(-0.0820133 -1.30515 0)
(-0.0565998 -1.28965 0)
(-0.0473383 -1.37367 0)
(-0.0364384 -1.50359 0)
(-0.0213952 -1.51573 0)
(-0.012947 -1.35255 0)
(-0.012874 -1.24479 0)
(-0.0172616 -1.33995 0)
(0.000394386 -1.50068 0)
(0.0107373 -1.45609 0)
(0.0177493 -1.21086 0)
(0.0124778 -1.15608 0)
(0.0141517 -1.34397 0)
(0.0244891 -1.46013 0)
(0.0394646 -1.44378 0)
(0.0506665 -1.40596 0)
(0.0600675 -1.35636 0)
(0.0779183 -1.30958 0)
(0.103787 -1.34143 0)
(0.134419 -1.25204 0)
(0.179485 -0.92899 0)
(0.244549 -0.587532 0)
(0.277692 -0.370198 0)
(0.332571 -0.200972 0)
(0.374924 -0.0684575 0)
(0.403797 0.0339164 0)
(0.419982 0.10321 0)
(0.427437 0.142679 0)
(0.428662 0.159902 0)
(0.425454 0.163023 0)
(0.419495 0.158952 0)
(0.412011 0.15225 0)
(0.403833 0.145373 0)
(0.395429 0.139314 0)
(0.387024 0.134269 0)
(0.378705 0.130111 0)
(0.370505 0.126639 0)
(0.362437 0.123682 0)
(0.354516 0.121123 0)
(0.346752 0.11889 0)
(0.339154 0.116931 0)
(0.331729 0.115211 0)
(0.324487 0.113698 0)
(0.317433 0.11237 0)
(0.31057 0.111202 0)
(0.303899 0.110175 0)
(0.297419 0.10927 0)
(0.291128 0.108472 0)
(0.285023 0.107767 0)
(0.279101 0.107141 0)
(0.273356 0.106585 0)
(0.267783 0.106088 0)
(0.262378 0.105642 0)
(0.257136 0.105239 0)
(0.25205 0.104872 0)
(0.247115 0.104537 0)
(0.242326 0.104228 0)
(0.23768 0.103952 0)
(0.233163 0.103792 0)
(-0.244933 0.0557374 0)
(-0.248694 0.0549333 0)
(-0.252515 0.0542138 0)
(-0.256405 0.0535163 0)
(-0.260364 0.052838 0)
(-0.264393 0.052184 0)
(-0.26849 0.051557 0)
(-0.272659 0.050963 0)
(-0.2769 0.0504056 0)
(-0.281205 0.0498895 0)
(-0.28558 0.0494225 0)
(-0.290032 0.0490094 0)
(-0.294558 0.0486533 0)
(-0.299145 0.0483585 0)
(-0.303793 0.0481318 0)
(-0.308517 0.047979 0)
(-0.313328 0.0479028 0)
(-0.318218 0.0479043 0)
(-0.323182 0.0479905 0)
(-0.328228 0.0481757 0)
(-0.333372 0.0484897 0)
(-0.338635 0.0489834 0)
(-0.344035 0.0497295 0)
(-0.349587 0.0508005 0)
(-0.35526 0.052196 0)
(-0.360916 0.0536775 0)
(-0.366214 0.0544658 0)
(-0.370591 0.0527921 0)
(-0.373244 0.045389 0)
(-0.372711 0.027064 0)
(-0.366667 -0.00917678 0)
(-0.352929 -0.0707196 0)
(-0.330231 -0.164006 0)
(-0.297471 -0.293161 0)
(-0.253025 -0.460197 0)
(-0.195991 -0.667383 0)
(-0.130495 -0.916244 0)
(-0.053331 -1.1388 0)
(0.00116563 -1.27326 0)
(0.0323164 -1.3827 0)
(0.0418225 -1.42945 0)
(0.0518994 -1.4243 0)
(0.0623314 -1.38446 0)
(0.0649579 -1.32136 0)
(0.0509522 -1.27868 0)
(0.0255672 -1.27352 0)
(0.00814603 -1.26494 0)
(0.0182042 -1.26972 0)
(0.0219772 -1.29155 0)
(0.0131535 -1.29885 0)
(-0.0246472 -1.29535 0)
(-0.0212641 -1.27163 0)
(-0.00508922 -1.25849 0)
(0.00517034 -1.27085 0)
(-0.0152156 -1.26906 0)
(-0.0354536 -1.25597 0)
(-0.0494933 -1.2887 0)
(-0.0547211 -1.36253 0)
(-0.0494283 -1.41385 0)
(-0.0392566 -1.42723 0)
(-0.029939 -1.38448 0)
(-0.0030442 -1.25193 0)
(0.0506036 -1.02446 0)
(0.122348 -0.882832 0)
(0.182508 -0.613147 0)
(0.23761 -0.392279 0)
(0.279582 -0.214538 0)
(0.310476 -0.0727763 0)
(0.332533 0.0339626 0)
(0.347027 0.106781 0)
(0.355178 0.151396 0)
(0.358226 0.175231 0)
(0.357526 0.185343 0)
(0.354452 0.187494 0)
(0.35008 0.185744 0)
(0.345085 0.182543 0)
(0.339837 0.179116 0)
(0.334514 0.175928 0)
(0.329186 0.173059 0)
(0.323867 0.170449 0)
(0.318554 0.168021 0)
(0.313245 0.165716 0)
(0.307944 0.163504 0)
(0.302658 0.161371 0)
(0.297395 0.159313 0)
(0.292165 0.15733 0)
(0.286977 0.155421 0)
(0.281841 0.153587 0)
(0.276764 0.151826 0)
(0.271752 0.150134 0)
(0.266813 0.14851 0)
(0.26195 0.14695 0)
(0.257169 0.145451 0)
(0.252472 0.144011 0)
(0.247862 0.142626 0)
(0.243341 0.141292 0)
(0.238911 0.140007 0)
(0.234572 0.138769 0)
(0.230326 0.137584 0)
(0.226181 0.136539 0)
(-0.247541 0.0834085 0)
(-0.25118 0.0830226 0)
(-0.254869 0.0827173 0)
(-0.258608 0.0824322 0)
(-0.262397 0.0821636 0)
(-0.266236 0.0819144 0)
(-0.270128 0.0816879 0)
(-0.274074 0.0814876 0)
(-0.278078 0.0813176 0)
(-0.282143 0.0811817 0)
(-0.286271 0.0810837 0)
(-0.290467 0.0810287 0)
(-0.294739 0.0810217 0)
(-0.299094 0.0810662 0)
(-0.303538 0.0811666 0)
(-0.308079 0.0813313 0)
(-0.31273 0.0815747 0)
(-0.31751 0.0819199 0)
(-0.32244 0.0824035 0)
(-0.327543 0.0830815 0)
(-0.332839 0.0840231 0)
(-0.338331 0.0852742 0)
(-0.343974 0.0867631 0)
(-0.349615 0.0881123 0)
(-0.354923 0.0883233 0)
(-0.359314 0.0853507 0)
(-0.361876 0.0756662 0)
(-0.361202 0.0540169 0)
(-0.355576 0.0136356 0)
(-0.343829 -0.0527624 0)
(-0.325685 -0.151455 0)
(-0.301367 -0.28648 0)
(-0.270462 -0.460178 0)
(-0.231587 -0.672222 0)
(-0.185935 -0.912596 0)
(-0.139351 -1.17244 0)
(-0.0949694 -1.44068 0)
(-0.0492273 -1.63878 0)
(-0.0206762 -1.55696 0)
(-0.00451108 -1.5309 0)
(0.00940273 -1.50964 0)
(0.0171498 -1.47726 0)
(0.0227341 -1.41916 0)
(0.0263578 -1.34394 0)
(0.0271157 -1.27275 0)
(0.0254452 -1.22937 0)
(0.018864 -1.21879 0)
(0.0120064 -1.23286 0)
(-0.0046826 -1.25167 0)
(-0.00236799 -1.26235 0)
(0.0013721 -1.2637 0)
(0.00389306 -1.2534 0)
(-0.00826546 -1.23798 0)
(-0.0124792 -1.22895 0)
(-0.0165206 -1.23007 0)
(-0.0196439 -1.24986 0)
(-0.0188227 -1.31255 0)
(-0.0144953 -1.39442 0)
(-0.00907166 -1.46387 0)
(-0.00195166 -1.50735 0)
(0.0119831 -1.52992 0)
(0.029601 -1.53255 0)
(0.060555 -1.59043 0)
(0.111543 -1.39847 0)
(0.151739 -1.08648 0)
(0.189471 -0.796159 0)
(0.228083 -0.546157 0)
(0.26246 -0.337009 0)
(0.291083 -0.166696 0)
(0.313492 -0.0328568 0)
(0.329208 0.0667086 0)
(0.338284 0.135121 0)
(0.341857 0.177783 0)
(0.341347 0.201279 0)
(0.338042 0.212 0)
(0.333044 0.215194 0)
(0.327187 0.214561 0)
(0.321017 0.212355 0)
(0.314836 0.209733 0)
(0.308782 0.207164 0)
(0.3029 0.204761 0)
(0.29719 0.202495 0)
(0.291636 0.200306 0)
(0.286223 0.19815 0)
(0.280939 0.196005 0)
(0.275775 0.193863 0)
(0.270725 0.191726 0)
(0.265785 0.189599 0)
(0.26095 0.187486 0)
(0.256218 0.185393 0)
(0.251585 0.183323 0)
(0.24705 0.18128 0)
(0.24261 0.179267 0)
(0.238263 0.177285 0)
(0.234007 0.175337 0)
(0.22984 0.173425 0)
(0.225762 0.171548 0)
(0.221769 0.169709 0)
(0.217865 0.16792 0)
(0.214059 0.166267 0)
(-0.247568 0.110039 0)
(-0.251073 0.109913 0)
(-0.254606 0.109856 0)
(-0.258155 0.109813 0)
(-0.261716 0.109781 0)
(-0.265284 0.109762 0)
(-0.268854 0.109763 0)
(-0.272421 0.109788 0)
(-0.275979 0.109844 0)
(-0.279521 0.109936 0)
(-0.283039 0.110073 0)
(-0.286525 0.110263 0)
(-0.28997 0.110516 0)
(-0.293363 0.110847 0)
(-0.296696 0.111273 0)
(-0.299959 0.111825 0)
(-0.303142 0.112546 0)
(-0.306236 0.113497 0)
(-0.309222 0.114739 0)
(-0.312062 0.116293 0)
(-0.314665 0.118034 0)
(-0.316849 0.119505 0)
(-0.318272 0.119636 0)
(-0.318384 0.116391 0)
(-0.316375 0.106451 0)
(-0.311175 0.0851099 0)
(-0.301575 0.0466131 0)
(-0.286532 -0.0149445 0)
(-0.265564 -0.103462 0)
(-0.23879 -0.219493 0)
(-0.207801 -0.360081 0)
(-0.17735 -0.519893 0)
(-0.151307 -0.698607 0)
(-0.127863 -0.951221 0)
(-0.102541 -1.22524 0)
(-0.0748948 -1.44051 0)
(-0.0474763 -1.59684 0)
(-0.0450379 -1.68261 0)
(-0.0392053 -1.6319 0)
(-0.0315566 -1.58887 0)
(-0.0249545 -1.55127 0)
(-0.0215225 -1.50568 0)
(-0.0176872 -1.43913 0)
(-0.0126104 -1.36342 0)
(-0.00797791 -1.29118 0)
(-0.00546985 -1.2362 0)
(-0.00643902 -1.21581 0)
(-0.00268679 -1.22792 0)
(0.00105556 -1.24874 0)
(0.00418501 -1.25812 0)
(-0.000108658 -1.2575 0)
(0.00189722 -1.25171 0)
(0.00594482 -1.23497 0)
(0.00830731 -1.22105 0)
(0.00850712 -1.23432 0)
(0.0118945 -1.27773 0)
(0.0182335 -1.34815 0)
(0.0251745 -1.42832 0)
(0.0307459 -1.50141 0)
(0.0348405 -1.55315 0)
(0.0405624 -1.59366 0)
(0.0471318 -1.62926 0)
(0.0539187 -1.66451 0)
(0.0586785 -1.51333 0)
(0.0790181 -1.28908 0)
(0.101952 -1.04085 0)
(0.130367 -0.799117 0)
(0.162524 -0.577244 0)
(0.194839 -0.378169 0)
(0.22447 -0.205157 0)
(0.249799 -0.0610356 0)
(0.269794 0.0525506 0)
(0.28387 0.135864 0)
(0.292381 0.192213 0)
(0.296258 0.226655 0)
(0.296628 0.244936 0)
(0.294581 0.252516 0)
(0.29104 0.253824 0)
(0.286688 0.251968 0)
(0.281967 0.248831 0)
(0.277123 0.245378 0)
(0.272279 0.241996 0)
(0.267483 0.238781 0)
(0.262751 0.235711 0)
(0.258088 0.232738 0)
(0.253494 0.229827 0)
(0.248972 0.226957 0)
(0.244525 0.224122 0)
(0.240157 0.221319 0)
(0.235869 0.21855 0)
(0.231664 0.215819 0)
(0.227544 0.213126 0)
(0.223508 0.210474 0)
(0.219557 0.207864 0)
(0.215691 0.205297 0)
(0.211909 0.202775 0)
(0.208209 0.200298 0)
(0.204592 0.197868 0)
(0.201059 0.195498 0)
(0.197626 0.193272 0)
(-0.246003 0.136015 0)
(-0.249482 0.135943 0)
(-0.252969 0.1359 0)
(-0.256444 0.135828 0)
(-0.259898 0.135719 0)
(-0.263319 0.135571 0)
(-0.266699 0.135384 0)
(-0.270025 0.135157 0)
(-0.273284 0.134887 0)
(-0.276463 0.134573 0)
(-0.279546 0.134214 0)
(-0.282517 0.13381 0)
(-0.285361 0.133366 0)
(-0.288059 0.132894 0)
(-0.290597 0.132414 0)
(-0.292954 0.131954 0)
(-0.295102 0.131537 0)
(-0.296991 0.131133 0)
(-0.29852 0.130576 0)
(-0.299505 0.1294 0)
(-0.299627 0.126612 0)
(-0.298376 0.120421 0)
(-0.29502 0.107996 0)
(-0.288713 0.0853776 0)
(-0.278662 0.0476863 0)
(-0.263791 -0.0100781 0)
(-0.243308 -0.0910887 0)
(-0.217548 -0.195334 0)
(-0.186782 -0.319848 0)
(-0.151835 -0.457193 0)
(-0.116013 -0.592261 0)
(-0.0871765 -0.694201 0)
(-0.0708341 -0.774579 0)
(-0.0652233 -0.997727 0)
(-0.0640615 -1.29667 0)
(-0.0658847 -1.49477 0)
(-0.061335 -1.63064 0)
(-0.0713895 -1.69934 0)
(-0.0628663 -1.64489 0)
(-0.0564208 -1.6113 0)
(-0.0515265 -1.57409 0)
(-0.0480233 -1.52871 0)
(-0.0434275 -1.46339 0)
(-0.0380977 -1.39091 0)
(-0.0320958 -1.32651 0)
(-0.0248835 -1.28048 0)
(-0.0176161 -1.26066 0)
(-0.0112683 -1.26722 0)
(-0.00776259 -1.28395 0)
(-0.00209779 -1.29316 0)
(0.00451534 -1.29188 0)
(0.00993759 -1.2834 0)
(0.013799 -1.26762 0)
(0.0196124 -1.25808 0)
(0.0268054 -1.27735 0)
(0.0347477 -1.32628 0)
(0.0427392 -1.39182 0)
(0.0495029 -1.46484 0)
(0.054534 -1.53262 0)
(0.0580226 -1.57688 0)
(0.0617936 -1.61076 0)
(0.066082 -1.6407 0)
(0.0722332 -1.6603 0)
(0.0640129 -1.5261 0)
(0.0695317 -1.34795 0)
(0.0772246 -1.14589 0)
(0.0872412 -0.946127 0)
(0.105078 -0.776068 0)
(0.130249 -0.596888 0)
(0.157956 -0.417643 0)
(0.184681 -0.249199 0)
(0.208618 -0.0995145 0)
(0.228327 0.0256271 0)
(0.242952 0.122449 0)
(0.252467 0.191785 0)
(0.257434 0.237341 0)
(0.258796 0.264193 0)
(0.257587 0.277696 0)
(0.25473 0.282618 0)
(0.250944 0.282634 0)
(0.246718 0.280223 0)
(0.242347 0.27683 0)
(0.237983 0.273168 0)
(0.23369 0.269517 0)
(0.229489 0.265943 0)
(0.225381 0.262434 0)
(0.221364 0.258965 0)
(0.217433 0.255521 0)
(0.213589 0.252099 0)
(0.209828 0.2487 0)
(0.206152 0.245332 0)
(0.202559 0.242 0)
(0.199048 0.238711 0)
(0.195619 0.23547 0)
(0.19227 0.23228 0)
(0.188999 0.229144 0)
(0.185805 0.226066 0)
(0.182687 0.223047 0)
(0.179647 0.220103 0)
(0.176703 0.217316 0)
(-0.244594 0.162898 0)
(-0.248459 0.162813 0)
(-0.25236 0.162697 0)
(-0.256278 0.162485 0)
(-0.260205 0.162161 0)
(-0.264133 0.161717 0)
(-0.268054 0.161141 0)
(-0.27196 0.160423 0)
(-0.275841 0.159555 0)
(-0.279688 0.158528 0)
(-0.283492 0.157336 0)
(-0.287248 0.155982 0)
(-0.290946 0.154475 0)
(-0.294577 0.152828 0)
(-0.298124 0.151042 0)
(-0.301547 0.149063 0)
(-0.304754 0.146699 0)
(-0.307572 0.14348 0)
(-0.309707 0.138462 0)
(-0.310714 0.130013 0)
(-0.309981 0.115621 0)
(-0.30678 0.0918662 0)
(-0.3004 0.0546361 0)
(-0.290172 -0.000245307 0)
(-0.275486 -0.0757862 0)
(-0.256614 -0.172776 0)
(-0.234383 -0.290621 0)
(-0.208871 -0.427253 0)
(-0.179861 -0.578798 0)
(-0.149886 -0.734937 0)
(-0.121752 -0.844668 0)
(-0.0940137 -0.872086 0)
(-0.072556 -0.86999 0)
(-0.0617222 -0.980136 0)
(-0.0665027 -1.19438 0)
(-0.0813947 -1.38529 0)
(-0.0947441 -1.62045 0)
(-0.101886 -1.73928 0)
(-0.0861126 -1.68308 0)
(-0.0745473 -1.65445 0)
(-0.0668277 -1.61025 0)
(-0.0616475 -1.56866 0)
(-0.0541055 -1.51129 0)
(-0.0449126 -1.44455 0)
(-0.0362774 -1.38221 0)
(-0.0282922 -1.34003 0)
(-0.0207075 -1.32248 0)
(-0.0136574 -1.32248 0)
(-0.00749825 -1.33191 0)
(-0.00225838 -1.33818 0)
(0.00186632 -1.33519 0)
(0.00692037 -1.3289 0)
(0.013462 -1.32347 0)
(0.021731 -1.32574 0)
(0.0314058 -1.34974 0)
(0.0419457 -1.39639 0)
(0.0520756 -1.45225 0)
(0.0607406 -1.51008 0)
(0.0658946 -1.56573 0)
(0.0678241 -1.6047 0)
(0.0729973 -1.64307 0)
(0.0825288 -1.66352 0)
(0.0932539 -1.69218 0)
(0.0875738 -1.53064 0)
(0.079341 -1.32048 0)
(0.0773719 -1.16337 0)
(0.082405 -1.02024 0)
(0.0942394 -0.914503 0)
(0.110458 -0.775611 0)
(0.130016 -0.610144 0)
(0.150504 -0.438615 0)
(0.17033 -0.271805 0)
(0.188496 -0.118315 0)
(0.203629 0.0147744 0)
(0.214828 0.121702 0)
(0.221788 0.200851 0)
(0.22489 0.254538 0)
(0.22491 0.287351 0)
(0.222736 0.304697 0)
(0.219189 0.311684 0)
(0.214922 0.312443 0)
(0.210386 0.309905 0)
(0.205855 0.305888 0)
(0.201467 0.301368 0)
(0.197276 0.296783 0)
(0.193288 0.29228 0)
(0.189491 0.287881 0)
(0.185868 0.283569 0)
(0.182403 0.279327 0)
(0.179079 0.275147 0)
(0.175886 0.271029 0)
(0.172813 0.266976 0)
(0.169851 0.262993 0)
(0.166992 0.259084 0)
(0.164228 0.255253 0)
(0.161553 0.251502 0)
(0.158961 0.247834 0)
(0.156447 0.24425 0)
(0.154013 0.240766 0)
(0.15167 0.237461 0)
(-0.242375 0.193934 0)
(-0.24704 0.194207 0)
(-0.251815 0.194421 0)
(-0.256689 0.194502 0)
(-0.261653 0.19443 0)
(-0.266702 0.194192 0)
(-0.271829 0.193773 0)
(-0.277027 0.193161 0)
(-0.282285 0.192348 0)
(-0.287593 0.191329 0)
(-0.292935 0.190108 0)
(-0.298289 0.188685 0)
(-0.303614 0.187043 0)
(-0.308836 0.185096 0)
(-0.313818 0.182615 0)
(-0.318336 0.179091 0)
(-0.322064 0.173546 0)
(-0.324547 0.164353 0)
(-0.325203 0.149219 0)
(-0.323356 0.125374 0)
(-0.31836 0.0897466 0)
(-0.309764 0.0393466 0)
(-0.297627 -0.028037 0)
(-0.282505 -0.11316 0)
(-0.265083 -0.215437 0)
(-0.246412 -0.33401 0)
(-0.227394 -0.468443 0)
(-0.208236 -0.618922 0)
(-0.189438 -0.784809 0)
(-0.171431 -0.947146 0)
(-0.153338 -1.04702 0)
(-0.130055 -1.06363 0)
(-0.110055 -1.00398 0)
(-0.0985906 -1.02068 0)
(-0.0987147 -1.12989 0)
(-0.103316 -1.31315 0)
(-0.117953 -1.60455 0)
(-0.11312 -1.80316 0)
(-0.0963774 -1.79753 0)
(-0.0780042 -1.75424 0)
(-0.067451 -1.66479 0)
(-0.0626486 -1.61797 0)
(-0.0543342 -1.57983 0)
(-0.0455526 -1.51615 0)
(-0.0390454 -1.4454 0)
(-0.03192 -1.39505 0)
(-0.0247754 -1.37091 0)
(-0.0185982 -1.36077 0)
(-0.0119528 -1.36492 0)
(-0.00507035 -1.37061 0)
(0.00119893 -1.36772 0)
(0.0073497 -1.36583 0)
(0.0128195 -1.37386 0)
(0.0206545 -1.39234 0)
(0.0308575 -1.42923 0)
(0.0413558 -1.48134 0)
(0.0524012 -1.52821 0)
(0.0637476 -1.56202 0)
(0.0672399 -1.58153 0)
(0.060596 -1.62447 0)
(0.0625049 -1.72352 0)
(0.0799697 -1.75465 0)
(0.0924227 -1.73263 0)
(0.0955471 -1.50792 0)
(0.0836061 -1.28517 0)
(0.0829125 -1.16796 0)
(0.0886864 -1.0794 0)
(0.096115 -0.998298 0)
(0.103407 -0.878444 0)
(0.111322 -0.723297 0)
(0.120562 -0.558251 0)
(0.130746 -0.392057 0)
(0.141348 -0.230925 0)
(0.151592 -0.0817149 0)
(0.160409 0.0489534 0)
(0.166912 0.155186 0)
(0.170783 0.234402 0)
(0.172169 0.288062 0)
(0.171553 0.320396 0)
(0.169526 0.336773 0)
(0.166644 0.342397 0)
(0.163356 0.341537 0)
(0.159967 0.33725 0)
(0.156663 0.331464 0)
(0.15353 0.325239 0)
(0.150598 0.319065 0)
(0.147862 0.313113 0)
(0.145304 0.307411 0)
(0.142904 0.301936 0)
(0.140641 0.296658 0)
(0.138498 0.291555 0)
(0.13646 0.286613 0)
(0.134516 0.281824 0)
(0.132654 0.277182 0)
(0.130867 0.272683 0)
(0.129144 0.268322 0)
(0.12748 0.264095 0)
(0.125869 0.26 0)
(0.124313 0.256049 0)
(0.122822 0.252313 0)
(-0.234804 0.231589 0)
(-0.240255 0.232846 0)
(-0.245908 0.234021 0)
(-0.251753 0.235028 0)
(-0.257785 0.235833 0)
(-0.264003 0.236404 0)
(-0.270406 0.236711 0)
(-0.276988 0.236725 0)
(-0.283742 0.236412 0)
(-0.290651 0.235726 0)
(-0.297685 0.234577 0)
(-0.304785 0.232779 0)
(-0.311836 0.22995 0)
(-0.318606 0.225394 0)
(-0.324683 0.217976 0)
(-0.32964 0.206113 0)
(-0.333118 0.187905 0)
(-0.334117 0.161239 0)
(-0.330263 0.123836 0)
(-0.319582 0.0733463 0)
(-0.30257 0.00903694 0)
(-0.281784 -0.0674454 0)
(-0.259279 -0.153997 0)
(-0.235853 -0.249248 0)
(-0.212621 -0.352379 0)
(-0.190781 -0.462138 0)
(-0.171521 -0.580895 0)
(-0.155156 -0.713531 0)
(-0.14172 -0.864425 0)
(-0.134209 -1.01629 0)
(-0.127945 -1.15336 0)
(-0.11199 -1.23616 0)
(-0.0928158 -1.1388 0)
(-0.0659882 -1.11519 0)
(-0.0460529 -1.19096 0)
(-0.0303576 -1.34885 0)
(-0.0237934 -1.56496 0)
(-0.0120857 -1.79459 0)
(-0.0327939 -1.96483 0)
(-0.0397729 -1.8806 0)
(-0.0413902 -1.71306 0)
(-0.0479413 -1.66063 0)
(-0.0523137 -1.64648 0)
(-0.0602776 -1.57072 0)
(-0.0641375 -1.4994 0)
(-0.0590514 -1.45358 0)
(-0.04972 -1.42128 0)
(-0.0363202 -1.40882 0)
(-0.0175324 -1.42029 0)
(-0.00209625 -1.4232 0)
(0.00861525 -1.41869 0)
(0.0195884 -1.41323 0)
(0.0258837 -1.4245 0)
(0.0326537 -1.46006 0)
(0.0405537 -1.50395 0)
(0.0422807 -1.55549 0)
(0.0413806 -1.6083 0)
(0.0461279 -1.61557 0)
(0.0464626 -1.5412 0)
(0.0282314 -1.56641 0)
(0.0127861 -1.81473 0)
(0.00761627 -1.89203 0)
(-0.00850323 -1.70057 0)
(-0.00281221 -1.48509 0)
(0.000601675 -1.33037 0)
(0.0132028 -1.23049 0)
(0.0209928 -1.14731 0)
(0.028108 -1.0412 0)
(0.0310478 -0.913513 0)
(0.032471 -0.76351 0)
(0.0387443 -0.605799 0)
(0.0451279 -0.446877 0)
(0.0520025 -0.290313 0)
(0.059487 -0.141092 0)
(0.0672228 -0.00525629 0)
(0.074436 0.111516 0)
(0.0804514 0.204448 0)
(0.0851336 0.272011 0)
(0.0885457 0.31623 0)
(0.0908451 0.341441 0)
(0.0922777 0.352776 0)
(0.0931033 0.355006 0)
(0.0935418 0.351916 0)
(0.0937536 0.346141 0)
(0.0938426 0.339303 0)
(0.0938676 0.33227 0)
(0.0938568 0.325432 0)
(0.0938208 0.318917 0)
(0.0937614 0.312737 0)
(0.0936771 0.306859 0)
(0.0935661 0.301249 0)
(0.0934268 0.295878 0)
(0.0932582 0.290725 0)
(0.0930602 0.285774 0)
(0.0928326 0.281012 0)
(0.0925756 0.276429 0)
(0.092289 0.272015 0)
(0.0919754 0.267764 0)
(0.0916451 0.263686 0)
(0.0913078 0.259842 0)
(-0.216916 0.274871 0)
(-0.223359 0.278061 0)
(-0.230254 0.281275 0)
(-0.237644 0.284431 0)
(-0.245577 0.287493 0)
(-0.254116 0.290432 0)
(-0.263333 0.293211 0)
(-0.273306 0.295782 0)
(-0.284106 0.298069 0)
(-0.295751 0.299913 0)
(-0.308146 0.300981 0)
(-0.320971 0.300597 0)
(-0.333604 0.297575 0)
(-0.345029 0.290062 0)
(-0.353607 0.275617 0)
(-0.35699 0.251776 0)
(-0.353492 0.215278 0)
(-0.344132 0.165379 0)
(-0.330259 0.0783287 0)
(-0.310529 -0.0595427 0)
(-0.284736 -0.183327 0)
(-0.255806 -0.274105 0)
(-0.226308 -0.358865 0)
(-0.196802 -0.444584 0)
(-0.168444 -0.537228 0)
(-0.141545 -0.627092 0)
(-0.117497 -0.718424 0)
(-0.0957659 -0.81639 0)
(-0.0770493 -0.932565 0)
(-0.0625857 -1.03544 0)
(-0.0574454 -1.15701 0)
(-0.0645553 -1.29819 0)
(-0.0554348 -1.29042 0)
(-0.0382943 -1.29389 0)
(-0.0213506 -1.35319 0)
(-0.00795306 -1.44566 0)
(-0.00408692 -1.54885 0)
(-0.0135447 -1.65907 0)
(-0.0387026 -1.77601 0)
(-0.0684544 -1.70942 0)
(-0.08294 -1.61441 0)
(-0.0859244 -1.5938 0)
(-0.0837832 -1.53531 0)
(-0.0735975 -1.47428 0)
(-0.0565225 -1.50084 0)
(-0.0389937 -1.52704 0)
(-0.0227244 -1.5349 0)
(-0.0108969 -1.59008 0)
(-0.00245638 -1.61162 0)
(0.00867643 -1.54872 0)
(0.022714 -1.545 0)
(0.0366977 -1.52225 0)
(0.0497966 -1.48708 0)
(0.0599585 -1.52572 0)
(0.0641368 -1.53046 0)
(0.0650258 -1.50554 0)
(0.0599387 -1.57364 0)
(0.0446923 -1.61945 0)
(0.0364644 -1.46729 0)
(0.0410167 -1.40086 0)
(0.0291463 -1.62915 0)
(-0.000835606 -1.70728 0)
(-0.0277416 -1.56026 0)
(-0.0410664 -1.44987 0)
(-0.0465814 -1.3597 0)
(-0.0474859 -1.27309 0)
(-0.0483806 -1.17009 0)
(-0.0487583 -1.03527 0)
(-0.0537938 -0.906062 0)
(-0.0538216 -0.767938 0)
(-0.0513131 -0.621304 0)
(-0.0475304 -0.471293 0)
(-0.042518 -0.322392 0)
(-0.0364046 -0.179568 0)
(-0.0297479 -0.0482432 0)
(-0.0220885 0.066402 0)
(-0.0140951 0.160333 0)
(-0.00633803 0.231594 0)
(0.000983279 0.28102 0)
(0.00766724 0.311776 0)
(0.0136751 0.328175 0)
(0.0190315 0.33459 0)
(0.0238027 0.334735 0)
(0.0280693 0.331374 0)
(0.0319076 0.326333 0)
(0.0353809 0.320686 0)
(0.0385376 0.314982 0)
(0.0414134 0.309456 0)
(0.0440351 0.304177 0)
(0.0464234 0.299145 0)
(0.0485962 0.294335 0)
(0.0505691 0.289722 0)
(0.0523566 0.285287 0)
(0.053972 0.281013 0)
(0.0554278 0.276891 0)
(0.0567352 0.272911 0)
(0.0579045 0.269066 0)
(0.0589477 0.265354 0)
(0.0598848 0.261787 0)
(0.0607287 0.258417 0)
(-0.180069 0.324868 0)
(-0.185689 0.332258 0)
(-0.191817 0.340189 0)
(-0.198514 0.348652 0)
(-0.205842 0.357718 0)
(-0.213876 0.367481 0)
(-0.222703 0.378015 0)
(-0.232414 0.389243 0)
(-0.243085 0.400674 0)
(-0.254739 0.410993 0)
(-0.267252 0.417596 0)
(-0.280271 0.416269 0)
(-0.293184 0.401097 0)
(-0.304712 0.364612 0)
(-0.31193 0.29872 0)
(-0.312468 0.197592 0)
(-0.308334 0.0755677 0)
(-0.296379 -0.046924 0)
(-0.279326 -0.172497 0)
(-0.2628 -0.307366 0)
(-0.248265 -0.422922 0)
(-0.236439 -0.510974 0)
(-0.22504 -0.60194 0)
(-0.206564 -0.691714 0)
(-0.188439 -0.76896 0)
(-0.169177 -0.849938 0)
(-0.149475 -0.934857 0)
(-0.129489 -1.01905 0)
(-0.11046 -1.1012 0)
(-0.0950478 -1.15564 0)
(-0.0838794 -1.20662 0)
(-0.0797995 -1.28272 0)
(-0.0793831 -1.34495 0)
(-0.0748531 -1.39528 0)
(-0.0683023 -1.45109 0)
(-0.064464 -1.50312 0)
(-0.0646854 -1.54435 0)
(-0.0712367 -1.56836 0)
(-0.0838589 -1.56527 0)
(-0.0947018 -1.55453 0)
(-0.096437 -1.56674 0)
(-0.0930569 -1.59908 0)
(-0.0875765 -1.62346 0)
(-0.0770694 -1.63948 0)
(-0.0619988 -1.6585 0)
(-0.0453616 -1.66578 0)
(-0.0279351 -1.65416 0)
(-0.0108151 -1.64597 0)
(0.00267968 -1.64477 0)
(0.0113886 -1.63597 0)
(0.0186367 -1.62145 0)
(0.0280602 -1.5991 0)
(0.0385488 -1.57446 0)
(0.0460799 -1.54912 0)
(0.0486857 -1.51154 0)
(0.0465568 -1.47773 0)
(0.0381163 -1.4744 0)
(0.0239787 -1.47403 0)
(0.0149089 -1.44382 0)
(0.012722 -1.43614 0)
(0.00125272 -1.46155 0)
(-0.0226369 -1.45858 0)
(-0.0435626 -1.42296 0)
(-0.0579264 -1.37086 0)
(-0.0693878 -1.30616 0)
(-0.0806497 -1.2211 0)
(-0.0910982 -1.10893 0)
(-0.0997712 -0.98505 0)
(-0.106156 -0.878521 0)
(-0.109509 -0.762115 0)
(-0.109813 -0.631958 0)
(-0.107624 -0.493803 0)
(-0.103434 -0.354871 0)
(-0.0977247 -0.221235 0)
(-0.0908316 -0.0982241 0)
(-0.0829178 0.00971941 0)
(-0.0742239 0.0991902 0)
(-0.0651125 0.168892 0)
(-0.055989 0.219483 0)
(-0.0471628 0.253388 0)
(-0.0388503 0.274047 0)
(-0.0311448 0.285093 0)
(-0.0240644 0.28975 0)
(-0.0175825 0.290526 0)
(-0.0116522 0.289172 0)
(-0.00622101 0.286785 0)
(-0.00123859 0.283983 0)
(0.00333665 0.28107 0)
(0.00753991 0.278173 0)
(0.0114009 0.27533 0)
(0.0149456 0.272542 0)
(0.0181973 0.269801 0)
(0.0211777 0.267099 0)
(0.0239071 0.264432 0)
(0.0264039 0.261797 0)
(0.0286851 0.259196 0)
(0.0307664 0.25663 0)
(0.032665 0.254106 0)
(0.0344055 0.251642 0)
(0.0359992 0.249285 0)
(-0.102777 0.352276 0)
(-0.102512 0.361931 0)
(-0.102137 0.37243 0)
(-0.101607 0.383777 0)
(-0.100889 0.396052 0)
(-0.0999552 0.409347 0)
(-0.0987733 0.423688 0)
(-0.097305 0.438899 0)
(-0.0955164 0.454319 0)
(-0.0933799 0.468346 0)
(-0.0909206 0.477795 0)
(-0.0884093 0.477196 0)
(-0.0862932 0.458373 0)
(-0.083822 0.410996 0)
(-0.0790871 0.325218 0)
(-0.0803352 0.199166 0)
(-0.0882384 0.0630391 0)
(-0.0877115 -0.0566423 0)
(-0.0951101 -0.165024 0)
(-0.104905 -0.279261 0)
(-0.111192 -0.399547 0)
(-0.121227 -0.497061 0)
(-0.129742 -0.627106 0)
(-0.128716 -0.766136 0)
(-0.131595 -0.862639 0)
(-0.131521 -0.950508 0)
(-0.12663 -1.04655 0)
(-0.121233 -1.1409 0)
(-0.11391 -1.22291 0)
(-0.10799 -1.26458 0)
(-0.10337 -1.29284 0)
(-0.0987492 -1.32165 0)
(-0.0970557 -1.35957 0)
(-0.0981243 -1.40218 0)
(-0.100998 -1.4426 0)
(-0.104726 -1.4812 0)
(-0.108724 -1.51234 0)
(-0.11236 -1.53481 0)
(-0.11351 -1.55636 0)
(-0.110473 -1.58823 0)
(-0.104448 -1.62497 0)
(-0.0973003 -1.66141 0)
(-0.0897902 -1.70107 0)
(-0.082423 -1.74104 0)
(-0.0753261 -1.76911 0)
(-0.067596 -1.7818 0)
(-0.0583462 -1.78076 0)
(-0.0473849 -1.76324 0)
(-0.0352378 -1.73483 0)
(-0.0232043 -1.70681 0)
(-0.0131094 -1.68357 0)
(-0.00657219 -1.66156 0)
(-0.00360289 -1.62773 0)
(-0.00275918 -1.57506 0)
(-0.00295137 -1.51376 0)
(-0.00489451 -1.4564 0)
(-0.00949543 -1.4134 0)
(-0.0157805 -1.39151 0)
(-0.0223724 -1.38877 0)
(-0.0305462 -1.38391 0)
(-0.0422556 -1.36201 0)
(-0.0559012 -1.33888 0)
(-0.0697146 -1.31394 0)
(-0.0829731 -1.27655 0)
(-0.0947995 -1.22242 0)
(-0.105345 -1.13933 0)
(-0.114339 -1.03155 0)
(-0.121761 -0.92404 0)
(-0.126957 -0.837317 0)
(-0.129986 -0.745668 0)
(-0.130238 -0.64007 0)
(-0.127688 -0.521156 0)
(-0.122462 -0.397415 0)
(-0.115384 -0.27513 0)
(-0.106957 -0.160797 0)
(-0.0975709 -0.058959 0)
(-0.0880309 0.0270496 0)
(-0.0784961 0.0959101 0)
(-0.0692271 0.148036 0)
(-0.0604632 0.185287 0)
(-0.0523388 0.21039 0)
(-0.0449003 0.226325 0)
(-0.038132 0.235839 0)
(-0.0319744 0.241169 0)
(-0.0263564 0.243954 0)
(-0.0212098 0.245288 0)
(-0.0164755 0.245834 0)
(-0.012114 0.245958 0)
(-0.00809063 0.24584 0)
(-0.00437192 0.245557 0)
(-0.000937271 0.245137 0)
(0.00223303 0.24459 0)
(0.00515751 0.243922 0)
(0.0078536 0.24314 0)
(0.0103375 0.242253 0)
(0.0126241 0.24127 0)
(0.0147272 0.240204 0)
(0.0166626 0.239072 0)
(0.0184525 0.237897 0)
(0.0201006 0.236722 0)
(-0.0300992 0.328617 0)
(-0.0244681 0.33469 0)
(-0.0181731 0.341219 0)
(-0.0111121 0.348139 0)
(-0.00318238 0.355446 0)
(0.00571614 0.363144 0)
(0.0156899 0.371203 0)
(0.0268395 0.379488 0)
(0.0392509 0.38763 0)
(0.0529521 0.394815 0)
(0.0678408 0.399477 0)
(0.0835702 0.398949 0)
(0.0993842 0.389242 0)
(0.1142 0.365387 0)
(0.127025 0.322547 0)
(0.134399 0.255166 0)
(0.132485 0.158103 0)
(0.128059 0.0742142 0)
(0.121736 -0.0134799 0)
(0.106048 -0.112344 0)
(0.0985637 -0.267351 0)
(0.0903165 -0.340114 0)
(0.0705699 -0.394779 0)
(0.0490915 -0.599484 0)
(0.0332404 -0.762297 0)
(0.0176966 -0.852745 0)
(0.00297755 -0.954958 0)
(-0.0112818 -1.05619 0)
(-0.0256187 -1.15854 0)
(-0.0412997 -1.21172 0)
(-0.0554202 -1.24767 0)
(-0.0673698 -1.2803 0)
(-0.0784164 -1.31214 0)
(-0.0888868 -1.345 0)
(-0.0982132 -1.38564 0)
(-0.10618 -1.43393 0)
(-0.112069 -1.47919 0)
(-0.115688 -1.52301 0)
(-0.116693 -1.57005 0)
(-0.115394 -1.6213 0)
(-0.112471 -1.66821 0)
(-0.108509 -1.70809 0)
(-0.104023 -1.74138 0)
(-0.0999049 -1.76881 0)
(-0.0964643 -1.79077 0)
(-0.093377 -1.80671 0)
(-0.0901747 -1.81485 0)
(-0.0862969 -1.81423 0)
(-0.0812572 -1.80209 0)
(-0.0753103 -1.77588 0)
(-0.0694982 -1.73484 0)
(-0.0649661 -1.68237 0)
(-0.0621603 -1.62461 0)
(-0.0604468 -1.56528 0)
(-0.0588578 -1.50388 0)
(-0.0571169 -1.4421 0)
(-0.0557342 -1.394 0)
(-0.0558568 -1.36033 0)
(-0.0592848 -1.33231 0)
(-0.0665677 -1.30224 0)
(-0.0759174 -1.27142 0)
(-0.0865271 -1.24134 0)
(-0.0985958 -1.20931 0)
(-0.111479 -1.17335 0)
(-0.124354 -1.13032 0)
(-0.135383 -1.07176 0)
(-0.139272 -0.993931 0)
(-0.138783 -0.909238 0)
(-0.135535 -0.829068 0)
(-0.132174 -0.742185 0)
(-0.127244 -0.654667 0)
(-0.120597 -0.559476 0)
(-0.110924 -0.455905 0)
(-0.0996437 -0.343858 0)
(-0.0882946 -0.236233 0)
(-0.0771148 -0.137144 0)
(-0.0663735 -0.0500834 0)
(-0.0566199 0.0225439 0)
(-0.0478024 0.080114 0)
(-0.0400287 0.123603 0)
(-0.0333446 0.15502 0)
(-0.0276815 0.176852 0)
(-0.0228932 0.191578 0)
(-0.0188087 0.201359 0)
(-0.0152708 0.207888 0)
(-0.0121507 0.212378 0)
(-0.00935292 0.215628 0)
(-0.00680354 0.218118 0)
(-0.00445666 0.220118 0)
(-0.00228738 0.221764 0)
(-0.000273629 0.223121 0)
(0.00159885 0.224222 0)
(0.00334095 0.225086 0)
(0.00496187 0.225727 0)
(0.00646985 0.226161 0)
(0.00787225 0.226407 0)
(0.00917615 0.226482 0)
(0.0103905 0.22641 0)
(0.0115296 0.226218 0)
(0.0125868 0.225945 0)
(-0.00214313 0.279889 0)
(0.00375012 0.280527 0)
(0.0101802 0.281011 0)
(0.0171522 0.281246 0)
(0.0247151 0.281156 0)
(0.0329147 0.280675 0)
(0.0418013 0.279729 0)
(0.051429 0.278201 0)
(0.0618429 0.275888 0)
(0.0730573 0.272439 0)
(0.0850224 0.267256 0)
(0.0975764 0.259383 0)
(0.110375 0.247414 0)
(0.122819 0.229523 0)
(0.134041 0.203658 0)
(0.143049 0.167688 0)
(0.148772 0.12042 0)
(0.151665 0.0669224 0)
(0.152544 -0.00488471 0)
(0.150245 -0.104615 0)
(0.140799 -0.247751 0)
(0.127767 -0.320445 0)
(0.123187 -0.340876 0)
(0.117698 -0.44844 0)
(0.0961834 -0.604053 0)
(0.0696824 -0.703136 0)
(0.0473248 -0.803483 0)
(0.0256865 -0.894872 0)
(0.000799701 -0.979602 0)
(-0.0258097 -1.0389 0)
(-0.0497369 -1.08993 0)
(-0.0706102 -1.14069 0)
(-0.089096 -1.19136 0)
(-0.104509 -1.24359 0)
(-0.116627 -1.30793 0)
(-0.126639 -1.3735 0)
(-0.134734 -1.4349 0)
(-0.140971 -1.4936 0)
(-0.145826 -1.5512 0)
(-0.149209 -1.61543 0)
(-0.151054 -1.67206 0)
(-0.151747 -1.72061 0)
(-0.151212 -1.76098 0)
(-0.149449 -1.79244 0)
(-0.146622 -1.81471 0)
(-0.14304 -1.82784 0)
(-0.139075 -1.83203 0)
(-0.135071 -1.82746 0)
(-0.131213 -1.81384 0)
(-0.127311 -1.79018 0)
(-0.122817 -1.7557 0)
(-0.117248 -1.71083 0)
(-0.110697 -1.658 0)
(-0.103683 -1.60006 0)
(-0.0965207 -1.53833 0)
(-0.0893036 -1.47438 0)
(-0.0826851 -1.41574 0)
(-0.0780384 -1.36053 0)
(-0.0758915 -1.30668 0)
(-0.0760724 -1.25597 0)
(-0.0783705 -1.20864 0)
(-0.0826604 -1.16349 0)
(-0.088699 -1.1203 0)
(-0.0960817 -1.08012 0)
(-0.104221 -1.04446 0)
(-0.111864 -1.0127 0)
(-0.117088 -0.979859 0)
(-0.117166 -0.936529 0)
(-0.11178 -0.884594 0)
(-0.102083 -0.812755 0)
(-0.0907545 -0.724522 0)
(-0.0783528 -0.638559 0)
(-0.0649649 -0.549448 0)
(-0.0494636 -0.439902 0)
(-0.0358394 -0.323918 0)
(-0.0241394 -0.217397 0)
(-0.0145848 -0.122949 0)
(-0.00665917 -0.0417235 0)
(-0.000355235 0.0254423 0)
(0.00449827 0.078765 0)
(0.00783793 0.119208 0)
(0.00996638 0.14865 0)
(0.0111332 0.169354 0)
(0.0115993 0.18356 0)
(0.0116097 0.193212 0)
(0.0113649 0.199837 0)
(0.011009 0.204533 0)
(0.0106345 0.208027 0)
(0.0102935 0.210763 0)
(0.0100102 0.212994 0)
(0.0097921 0.214855 0)
(0.00963748 0.216413 0)
(0.00954025 0.217703 0)
(0.00949305 0.218749 0)
(0.00948865 0.219567 0)
(0.00952029 0.220177 0)
(0.00958238 0.220599 0)
(0.00967192 0.220855 0)
(0.00979129 0.220973 0)
(0.0099216 0.220984 0)
(-0.008336 0.239065 0)
(-0.00540731 0.236754 0)
(-0.00232801 0.234256 0)
(0.000903341 0.231488 0)
(0.00432087 0.228328 0)
(0.00796626 0.224596 0)
(0.0118144 0.220144 0)
(0.0158063 0.214921 0)
(0.0199204 0.208871 0)
(0.0241407 0.201862 0)
(0.0284477 0.19363 0)
(0.0328149 0.183714 0)
(0.037204 0.171376 0)
(0.0415334 0.155575 0)
(0.0456254 0.135008 0)
(0.0492331 0.108237 0)
(0.0521385 0.0737748 0)
(0.0542159 0.0301532 0)
(0.0552627 -0.0234214 0)
(0.0551621 -0.0861811 0)
(0.0515416 -0.157073 0)
(0.0436585 -0.234155 0)
(0.033664 -0.313338 0)
(0.021861 -0.37888 0)
(0.00642794 -0.461878 0)
(-0.0108111 -0.561486 0)
(-0.0300654 -0.660012 0)
(-0.0508106 -0.73859 0)
(-0.072645 -0.802757 0)
(-0.0938824 -0.865887 0)
(-0.113051 -0.933358 0)
(-0.130037 -1.00308 0)
(-0.145031 -1.0727 0)
(-0.157003 -1.14771 0)
(-0.167062 -1.23006 0)
(-0.176615 -1.30586 0)
(-0.185067 -1.37757 0)
(-0.192504 -1.44639 0)
(-0.198619 -1.5128 0)
(-0.203622 -1.58557 0)
(-0.20778 -1.6511 0)
(-0.210798 -1.70901 0)
(-0.212514 -1.76078 0)
(-0.212575 -1.80511 0)
(-0.210844 -1.84021 0)
(-0.20723 -1.86392 0)
(-0.201876 -1.87519 0)
(-0.195059 -1.87429 0)
(-0.187135 -1.86245 0)
(-0.17844 -1.84119 0)
(-0.169163 -1.81156 0)
(-0.159339 -1.77384 0)
(-0.149027 -1.72813 0)
(-0.13816 -1.67441 0)
(-0.126949 -1.6138 0)
(-0.115566 -1.549 0)
(-0.104283 -1.48336 0)
(-0.093626 -1.41786 0)
(-0.0838124 -1.35346 0)
(-0.074734 -1.29066 0)
(-0.066854 -1.22998 0)
(-0.0602682 -1.17187 0)
(-0.054984 -1.11712 0)
(-0.0509008 -1.0668 0)
(-0.0479485 -1.0224 0)
(-0.0463011 -0.986506 0)
(-0.0461269 -0.961606 0)
(-0.0466913 -0.948036 0)
(-0.0454308 -0.937649 0)
(-0.0394775 -0.9113 0)
(-0.0312246 -0.833814 0)
(-0.0208552 -0.757258 0)
(-0.00756124 -0.686463 0)
(0.00681484 -0.581748 0)
(0.0192099 -0.435451 0)
(0.0278579 -0.299273 0)
(0.0342228 -0.184554 0)
(0.0387602 -0.0882545 0)
(0.0421982 -0.00776163 0)
(0.0441909 0.0579934 0)
(0.0445872 0.109716 0)
(0.0436099 0.148439 0)
(0.0415705 0.175957 0)
(0.0387855 0.194533 0)
(0.0355648 0.206477 0)
(0.0321813 0.213829 0)
(0.0288436 0.218198 0)
(0.0256897 0.220744 0)
(0.0227967 0.222232 0)
(0.0201958 0.223128 0)
(0.0178883 0.223689 0)
(0.0158582 0.224047 0)
(0.0140812 0.224259 0)
(0.0125305 0.22435 0)
(0.0111802 0.224329 0)
(0.0100061 0.224202 0)
(0.00898722 0.223977 0)
(0.00810706 0.223665 0)
(0.00735556 0.223282 0)
(0.00669921 0.222847 0)
(-0.0263731 0.237143 0)
(-0.023301 0.234908 0)
(-0.0202494 0.232161 0)
(-0.0179164 0.228821 0)
(-0.0170415 0.224593 0)
(-0.0176146 0.219686 0)
(-0.0184423 0.215214 0)
(-0.0185888 0.210783 0)
(-0.0179551 0.205958 0)
(-0.0167878 0.2003 0)
(-0.0155809 0.193259 0)
(-0.0151572 0.184159 0)
(-0.0163119 0.172102 0)
(-0.0191077 0.156206 0)
(-0.0224774 0.135809 0)
(-0.0251188 0.109313 0)
(-0.0267764 0.074704 0)
(-0.0280227 0.0312091 0)
(-0.0293317 -0.0220814 0)
(-0.0314958 -0.07929 0)
(-0.0359217 -0.130832 0)
(-0.0444158 -0.170473 0)
(-0.056255 -0.226697 0)
(-0.0669548 -0.282152 0)
(-0.0782367 -0.352109 0)
(-0.0940133 -0.430387 0)
(-0.11254 -0.502872 0)
(-0.131611 -0.573123 0)
(-0.149251 -0.647649 0)
(-0.164617 -0.729008 0)
(-0.177753 -0.815921 0)
(-0.189058 -0.904767 0)
(-0.198295 -0.989548 0)
(-0.206107 -1.07673 0)
(-0.213514 -1.16104 0)
(-0.221409 -1.24049 0)
(-0.228717 -1.31824 0)
(-0.23546 -1.39462 0)
(-0.241402 -1.46986 0)
(-0.246726 -1.54743 0)
(-0.251717 -1.62083 0)
(-0.255688 -1.6882 0)
(-0.258864 -1.75091 0)
(-0.260725 -1.80747 0)
(-0.261082 -1.85731 0)
(-0.25951 -1.89754 0)
(-0.255754 -1.92569 0)
(-0.249704 -1.94034 0)
(-0.24145 -1.94071 0)
(-0.231327 -1.92713 0)
(-0.21983 -1.90108 0)
(-0.207498 -1.86467 0)
(-0.19471 -1.8199 0)
(-0.181596 -1.76797 0)
(-0.168339 -1.71018 0)
(-0.154828 -1.64824 0)
(-0.141158 -1.58375 0)
(-0.127571 -1.51808 0)
(-0.114063 -1.45276 0)
(-0.100655 -1.38737 0)
(-0.0876105 -1.32241 0)
(-0.075106 -1.25855 0)
(-0.0633187 -1.1972 0)
(-0.0521266 -1.14128 0)
(-0.0413163 -1.0885 0)
(-0.0313386 -1.03806 0)
(-0.0231823 -0.991541 0)
(-0.0178947 -0.955651 0)
(-0.0153301 -0.93482 0)
(-0.0165753 -0.919651 0)
(-0.0194701 -0.865598 0)
(-0.0194048 -0.81669 0)
(-0.0152359 -0.766195 0)
(-0.0119855 -0.680156 0)
(-0.00566746 -0.51729 0)
(-0.0012289 -0.362089 0)
(0.00560961 -0.232408 0)
(0.0113773 -0.124359 0)
(0.0161672 -0.033327 0)
(0.0199767 0.0430469 0)
(0.0226672 0.105652 0)
(0.0241304 0.154749 0)
(0.0243857 0.191014 0)
(0.0236171 0.215961 0)
(0.0220736 0.231734 0)
(0.0200162 0.240668 0)
(0.0176841 0.244902 0)
(0.0152687 0.246165 0)
(0.012905 0.245715 0)
(0.0106771 0.244388 0)
(0.00862908 0.242688 0)
(0.00677667 0.240888 0)
(0.00511831 0.239117 0)
(0.00364291 0.237424 0)
(0.00233515 0.235814 0)
(0.00117849 0.234279 0)
(0.000157631 0.232807 0)
(-0.000739173 0.23139 0)
(-0.00151805 0.230025 0)
(-0.00221069 0.228709 0)
(-0.0294865 0.176948 0)
(-0.0333721 0.173583 0)
(-0.0348886 0.176778 0)
(-0.0355275 0.191814 0)
(-0.0377005 0.221665 0)
(-0.0433156 0.256825 0)
(-0.047514 0.227723 0)
(-0.0465082 0.205382 0)
(-0.0445048 0.189005 0)
(-0.0439844 0.1787 0)
(-0.0452048 0.178702 0)
(-0.0475504 0.19266 0)
(-0.0529505 0.227248 0)
(-0.0611184 0.231259 0)
(-0.0683127 0.200754 0)
(-0.0734886 0.146814 0)
(-0.0788667 0.102675 0)
(-0.0859362 0.0564861 0)
(-0.0943734 0.0144055 0)
(-0.104828 -0.0305888 0)
(-0.116313 -0.0601269 0)
(-0.127112 -0.0923822 0)
(-0.138573 -0.130505 0)
(-0.152049 -0.180987 0)
(-0.165235 -0.236881 0)
(-0.176703 -0.306467 0)
(-0.186622 -0.382268 0)
(-0.195184 -0.467511 0)
(-0.202302 -0.558772 0)
(-0.207939 -0.655346 0)
(-0.212936 -0.757604 0)
(-0.217254 -0.857366 0)
(-0.22032 -0.948753 0)
(-0.22347 -1.03646 0)
(-0.22656 -1.1166 0)
(-0.230217 -1.19544 0)
(-0.234039 -1.27614 0)
(-0.23782 -1.35516 0)
(-0.241654 -1.4338 0)
(-0.245584 -1.51166 0)
(-0.249913 -1.58746 0)
(-0.25447 -1.65833 0)
(-0.259189 -1.72726 0)
(-0.263452 -1.79171 0)
(-0.267104 -1.85259 0)
(-0.269649 -1.90681 0)
(-0.270473 -1.95123 0)
(-0.269139 -1.98373 0)
(-0.265319 -2.00208 0)
(-0.258911 -2.0047 0)
(-0.250114 -1.99136 0)
(-0.239389 -1.96315 0)
(-0.227276 -1.92234 0)
(-0.214369 -1.87181 0)
(-0.201273 -1.81432 0)
(-0.18813 -1.75212 0)
(-0.175177 -1.68688 0)
(-0.162635 -1.62044 0)
(-0.150272 -1.55388 0)
(-0.138285 -1.48689 0)
(-0.126713 -1.41936 0)
(-0.115663 -1.35131 0)
(-0.105514 -1.28399 0)
(-0.0958339 -1.22837 0)
(-0.0861121 -1.17516 0)
(-0.0766348 -1.1193 0)
(-0.0685218 -1.05693 0)
(-0.062975 -0.998959 0)
(-0.0598373 -0.953704 0)
(-0.0584365 -0.904497 0)
(-0.058144 -0.850794 0)
(-0.0602137 -0.794563 0)
(-0.0659696 -0.723796 0)
(-0.0748754 -0.633573 0)
(-0.0820023 -0.49268 0)
(-0.0800951 -0.368891 0)
(-0.0745937 -0.256646 0)
(-0.0677457 -0.154527 0)
(-0.0605191 -0.0629003 0)
(-0.0533815 0.0171657 0)
(-0.0466774 0.0846914 0)
(-0.0406264 0.139629 0)
(-0.0354198 0.182221 0)
(-0.0311322 0.213262 0)
(-0.0277576 0.234229 0)
(-0.025188 0.24707 0)
(-0.0232844 0.25385 0)
(-0.0219012 0.256456 0)
(-0.0209006 0.256419 0)
(-0.020171 0.25487 0)
(-0.0196307 0.252567 0)
(-0.0192223 0.249975 0)
(-0.0189046 0.247351 0)
(-0.0186521 0.244817 0)
(-0.0184494 0.242418 0)
(-0.0182865 0.24016 0)
(-0.0181558 0.238033 0)
(-0.018049 0.236026 0)
(-0.0179532 0.234125 0)
(-0.0178768 0.232315 0)
(-0.093623 0.371321 0)
(-0.0844809 0.33898 0)
(-0.0729598 0.26274 0)
(-0.0666197 0.284301 0)
(-0.0714015 0.290359 0)
(-0.0726321 0.28193 0)
(-0.0744773 0.229459 0)
(-0.0744776 0.205131 0)
(-0.0775188 0.202894 0)
(-0.0826134 0.244304 0)
(-0.0942075 0.247376 0)
(-0.107726 0.240915 0)
(-0.113956 0.247626 0)
(-0.118452 0.240554 0)
(-0.12437 0.198094 0)
(-0.13391 0.188658 0)
(-0.144688 0.19138 0)
(-0.159506 0.161577 0)
(-0.17305 0.113562 0)
(-0.183933 0.0723888 0)
(-0.191396 0.0514833 0)
(-0.198241 0.0109205 0)
(-0.2023 -0.037568 0)
(-0.203189 -0.111511 0)
(-0.2029 -0.193965 0)
(-0.203407 -0.279015 0)
(-0.19987 -0.374517 0)
(-0.195263 -0.467319 0)
(-0.190715 -0.562604 0)
(-0.186021 -0.659286 0)
(-0.182566 -0.758342 0)
(-0.180305 -0.857153 0)
(-0.178257 -0.948744 0)
(-0.176844 -1.03475 0)
(-0.175605 -1.11446 0)
(-0.174167 -1.19135 0)
(-0.1734 -1.27058 0)
(-0.172436 -1.34582 0)
(-0.172589 -1.4195 0)
(-0.173771 -1.49001 0)
(-0.17603 -1.55881 0)
(-0.179733 -1.62387 0)
(-0.18483 -1.68829 0)
(-0.190994 -1.75101 0)
(-0.197961 -1.81375 0)
(-0.205326 -1.87467 0)
(-0.21206 -1.93136 0)
(-0.217343 -1.98064 0)
(-0.220465 -2.01871 0)
(-0.221094 -2.04199 0)
(-0.219048 -2.04809 0)
(-0.214381 -2.03595 0)
(-0.207522 -2.00624 0)
(-0.199024 -1.96138 0)
(-0.189608 -1.90521 0)
(-0.179937 -1.84169 0)
(-0.170484 -1.77295 0)
(-0.161592 -1.70212 0)
(-0.153149 -1.63098 0)
(-0.145293 -1.55934 0)
(-0.138257 -1.48675 0)
(-0.131479 -1.41329 0)
(-0.125181 -1.33917 0)
(-0.119841 -1.2783 0)
(-0.115566 -1.22225 0)
(-0.111757 -1.16152 0)
(-0.10842 -1.08562 0)
(-0.106325 -1.01395 0)
(-0.106389 -0.956899 0)
(-0.108261 -0.896799 0)
(-0.111776 -0.826924 0)
(-0.117613 -0.738424 0)
(-0.126105 -0.637975 0)
(-0.135849 -0.539369 0)
(-0.142354 -0.458638 0)
(-0.144237 -0.3905 0)
(-0.138163 -0.305194 0)
(-0.129976 -0.215074 0)
(-0.120626 -0.12727 0)
(-0.111136 -0.0463692 0)
(-0.101953 0.0249462 0)
(-0.0932675 0.0848299 0)
(-0.085033 0.133236 0)
(-0.0775113 0.170624 0)
(-0.0708392 0.198024 0)
(-0.0650375 0.216936 0)
(-0.0600579 0.229099 0)
(-0.0558146 0.23624 0)
(-0.0522047 0.239883 0)
(-0.0491257 0.241248 0)
(-0.0464856 0.241232 0)
(-0.0442075 0.240444 0)
(-0.04223 0.239264 0)
(-0.0405059 0.237912 0)
(-0.0389987 0.2365 0)
(-0.03768 0.235082 0)
(-0.0365265 0.233679 0)
(-0.035516 0.232295 0)
(-0.0346241 0.230928 0)
(-0.033839 0.229567 0)
(-0.175765 -0.053901 0)
(-0.146956 -0.0427651 0)
(-0.134341 0.00386235 0)
(-0.119094 0.149261 0)
(-0.113635 0.245907 0)
(-0.114657 0.267824 0)
(-0.118047 0.244545 0)
(-0.129255 0.209313 0)
(-0.134176 0.202745 0)
(-0.133729 0.262254 0)
(-0.136455 0.299874 0)
(-0.14337 0.320428 0)
(-0.14837 0.330515 0)
(-0.158821 0.330111 0)
(-0.170908 0.296208 0)
(-0.178046 0.291175 0)
(-0.180657 0.263954 0)
(-0.179479 0.214182 0)
(-0.176614 0.153199 0)
(-0.17198 0.0962797 0)
(-0.163991 0.0385112 0)
(-0.15335 -0.0287921 0)
(-0.140607 -0.102363 0)
(-0.126716 -0.177109 0)
(-0.114139 -0.258086 0)
(-0.105173 -0.339817 0)
(-0.0911782 -0.452431 0)
(-0.0790904 -0.534448 0)
(-0.0690907 -0.621056 0)
(-0.0605134 -0.720217 0)
(-0.0520994 -0.802506 0)
(-0.0451196 -0.889546 0)
(-0.039249 -0.977011 0)
(-0.0345539 -1.0611 0)
(-0.0305937 -1.1407 0)
(-0.0276182 -1.21504 0)
(-0.02619 -1.28887 0)
(-0.0245708 -1.35891 0)
(-0.0243272 -1.42371 0)
(-0.0264315 -1.48275 0)
(-0.0286748 -1.54129 0)
(-0.0325156 -1.59421 0)
(-0.0377619 -1.64366 0)
(-0.0446739 -1.69312 0)
(-0.0539767 -1.74618 0)
(-0.0645567 -1.80258 0)
(-0.0758341 -1.86174 0)
(-0.0874738 -1.92046 0)
(-0.0973872 -1.97365 0)
(-0.105293 -2.0157 0)
(-0.111264 -2.04252 0)
(-0.114809 -2.0507 0)
(-0.115973 -2.03836 0)
(-0.115155 -2.00591 0)
(-0.112891 -1.95617 0)
(-0.109458 -1.89397 0)
(-0.106308 -1.8236 0)
(-0.10344 -1.74818 0)
(-0.101049 -1.67216 0)
(-0.0988453 -1.59565 0)
(-0.0973057 -1.51855 0)
(-0.0952478 -1.44302 0)
(-0.0934749 -1.36801 0)
(-0.0914331 -1.29871 0)
(-0.0901192 -1.23413 0)
(-0.0901255 -1.16691 0)
(-0.0902591 -1.08672 0)
(-0.0904131 -1.00565 0)
(-0.0919424 -0.931733 0)
(-0.095353 -0.857656 0)
(-0.100472 -0.778046 0)
(-0.106117 -0.687713 0)
(-0.110954 -0.591183 0)
(-0.112927 -0.505116 0)
(-0.113094 -0.452132 0)
(-0.11379 -0.409169 0)
(-0.114857 -0.346694 0)
(-0.112914 -0.274543 0)
(-0.108366 -0.195185 0)
(-0.102186 -0.1162 0)
(-0.0951406 -0.0438272 0)
(-0.0882869 0.0195003 0)
(-0.0818979 0.0727013 0)
(-0.0760565 0.115743 0)
(-0.070833 0.14923 0)
(-0.0662739 0.174249 0)
(-0.0623686 0.192187 0)
(-0.0590651 0.204529 0)
(-0.05629 0.212686 0)
(-0.0539627 0.217872 0)
(-0.0520055 0.221048 0)
(-0.0503498 0.222921 0)
(-0.0489388 0.223974 0)
(-0.0477281 0.224518 0)
(-0.0466833 0.22474 0)
(-0.0457785 0.224747 0)
(-0.0449932 0.224596 0)
(-0.0443083 0.224319 0)
(-0.0437041 0.223927 0)
(-0.0431769 0.223418 0)
(-0.187022 -0.10033 0)
(-0.214909 -0.0156328 0)
(-0.23079 0.108847 0)
(-0.24247 0.20488 0)
(-0.246559 0.278348 0)
(-0.242571 0.290091 0)
(-0.234386 0.322811 0)
(-0.229494 0.336757 0)
(-0.231258 0.33912 0)
(-0.211941 0.293152 0)
(-0.185664 0.322182 0)
(-0.159016 0.355956 0)
(-0.132028 0.373032 0)
(-0.108052 0.386919 0)
(-0.0864491 0.365726 0)
(-0.0668372 0.336459 0)
(-0.0486028 0.262203 0)
(-0.0238728 0.162738 0)
(-0.00207974 0.0965826 0)
(0.0190371 0.0136795 0)
(0.0405403 -0.0813585 0)
(0.0590644 -0.148596 0)
(0.0797675 -0.210854 0)
(0.0954487 -0.276508 0)
(0.107756 -0.359634 0)
(0.118894 -0.431935 0)
(0.134428 -0.536567 0)
(0.139087 -0.618248 0)
(0.14904 -0.697283 0)
(0.159868 -0.798495 0)
(0.166358 -0.882316 0)
(0.173922 -0.94973 0)
(0.179211 -1.0202 0)
(0.183192 -1.09404 0)
(0.186725 -1.16502 0)
(0.187524 -1.22985 0)
(0.185248 -1.29245 0)
(0.182112 -1.35354 0)
(0.177086 -1.41054 0)
(0.171239 -1.46181 0)
(0.164171 -1.51098 0)
(0.155465 -1.55449 0)
(0.145523 -1.59261 0)
(0.135418 -1.62708 0)
(0.123682 -1.6634 0)
(0.110561 -1.70746 0)
(0.0970339 -1.76083 0)
(0.0825656 -1.82058 0)
(0.068301 -1.88129 0)
(0.0562062 -1.93475 0)
(0.0448628 -1.97594 0)
(0.0347489 -2.00034 0)
(0.0261049 -2.00421 0)
(0.0187819 -1.98576 0)
(0.0124385 -1.94612 0)
(0.00754272 -1.88923 0)
(0.00309727 -1.82164 0)
(-0.00144573 -1.74561 0)
(-0.00596852 -1.66799 0)
(-0.0101979 -1.58987 0)
(-0.014366 -1.51276 0)
(-0.0173566 -1.44005 0)
(-0.0203096 -1.37037 0)
(-0.0222954 -1.30127 0)
(-0.0239306 -1.232 0)
(-0.0257751 -1.1604 0)
(-0.0269244 -1.08502 0)
(-0.027769 -1.00295 0)
(-0.0288666 -0.917839 0)
(-0.0306604 -0.833888 0)
(-0.0335883 -0.747605 0)
(-0.0374508 -0.666443 0)
(-0.0405704 -0.583326 0)
(-0.0433696 -0.508871 0)
(-0.0439328 -0.451227 0)
(-0.0476164 -0.381816 0)
(-0.0530634 -0.326367 0)
(-0.0566237 -0.279671 0)
(-0.0594448 -0.221802 0)
(-0.0588581 -0.154562 0)
(-0.0567092 -0.087136 0)
(-0.053522 -0.023227 0)
(-0.0501547 0.0332203 0)
(-0.0472702 0.0805746 0)
(-0.0450901 0.118793 0)
(-0.0435987 0.148541 0)
(-0.0427265 0.170906 0)
(-0.0423652 0.187192 0)
(-0.0423813 0.198726 0)
(-0.0426417 0.206713 0)
(-0.0430393 0.212151 0)
(-0.0435021 0.215818 0)
(-0.0439857 0.218282 0)
(-0.0444653 0.219935 0)
(-0.0449287 0.221036 0)
(-0.0453706 0.221744 0)
(-0.0457885 0.222157 0)
(-0.0461779 0.222333 0)
(-0.0465332 0.222298 0)
(-0.0468803 0.222053 0)
(0.155089 0.328104 0)
(0.118046 0.298962 0)
(0.0903479 0.277985 0)
(0.0698619 0.257832 0)
(0.060721 0.239464 0)
(0.0570823 0.210687 0)
(0.0562644 0.173339 0)
(0.0529147 0.0957507 0)
(0.0637409 -0.00818082 0)
(0.0783504 -0.0962023 0)
(0.0929329 -0.0872274 0)
(0.11306 -0.0547755 0)
(0.129051 -0.0452425 0)
(0.142207 -0.0476123 0)
(0.170979 -0.0655994 0)
(0.203375 -0.0861937 0)
(0.230736 -0.115856 0)
(0.261036 -0.159662 0)
(0.282005 -0.20189 0)
(0.302742 -0.243061 0)
(0.330148 -0.298171 0)
(0.352115 -0.347966 0)
(0.366385 -0.384648 0)
(0.384383 -0.42626 0)
(0.403056 -0.477381 0)
(0.418805 -0.537863 0)
(0.429459 -0.611976 0)
(0.437157 -0.684368 0)
(0.441916 -0.757301 0)
(0.445272 -0.834555 0)
(0.44564 -0.91523 0)
(0.443905 -0.987097 0)
(0.443373 -1.04713 0)
(0.44037 -1.10279 0)
(0.434149 -1.15232 0)
(0.426523 -1.19902 0)
(0.416443 -1.24515 0)
(0.404579 -1.28971 0)
(0.389612 -1.33242 0)
(0.373554 -1.3739 0)
(0.356314 -1.41351 0)
(0.337968 -1.45114 0)
(0.319205 -1.4868 0)
(0.300857 -1.51962 0)
(0.283843 -1.55278 0)
(0.267385 -1.59417 0)
(0.252016 -1.64572 0)
(0.237317 -1.70634 0)
(0.222459 -1.77077 0)
(0.209014 -1.82971 0)
(0.195765 -1.87682 0)
(0.182506 -1.90759 0)
(0.169328 -1.91823 0)
(0.156193 -1.90651 0)
(0.14316 -1.87293 0)
(0.130569 -1.82136 0)
(0.118425 -1.75758 0)
(0.106259 -1.68532 0)
(0.0946472 -1.6102 0)
(0.0837042 -1.53493 0)
(0.0739627 -1.46418 0)
(0.0659231 -1.40025 0)
(0.0593913 -1.3405 0)
(0.0545064 -1.2805 0)
(0.0510012 -1.21786 0)
(0.0486669 -1.15013 0)
(0.0474635 -1.08332 0)
(0.0470098 -1.00856 0)
(0.0472828 -0.924251 0)
(0.0477851 -0.837543 0)
(0.0474615 -0.740439 0)
(0.0460672 -0.648731 0)
(0.043049 -0.563368 0)
(0.0394706 -0.480384 0)
(0.0317404 -0.411477 0)
(0.0222374 -0.342011 0)
(0.0184934 -0.297909 0)
(0.0140922 -0.232738 0)
(0.00578454 -0.177051 0)
(-0.000953339 -0.128098 0)
(-0.0069804 -0.0858082 0)
(-0.0107023 -0.0351166 0)
(-0.0125367 0.0207213 0)
(-0.0135994 0.0723594 0)
(-0.0145921 0.116198 0)
(-0.0159724 0.151293 0)
(-0.017828 0.17801 0)
(-0.0200928 0.197297 0)
(-0.0227371 0.21038 0)
(-0.0257477 0.218678 0)
(-0.0290355 0.223627 0)
(-0.0324424 0.226405 0)
(-0.0358109 0.227847 0)
(-0.0390151 0.228504 0)
(-0.0419691 0.228697 0)
(-0.044635 0.228598 0)
(-0.0470063 0.228302 0)
(-0.049088 0.227848 0)
(-0.0508959 0.227242 0)
(-0.052485 0.226454 0)
(0.547859 0.429103 0)
(0.561229 0.41884 0)
(0.570909 0.400754 0)
(0.580511 0.379263 0)
(0.591035 0.345662 0)
(0.602809 0.326942 0)
(0.614638 0.285962 0)
(0.620639 0.273113 0)
(0.629074 0.215814 0)
(0.625543 0.137352 0)
(0.617333 0.0933913 0)
(0.617242 0.0772015 0)
(0.621847 0.0717241 0)
(0.627241 0.0554322 0)
(0.634136 0.0185845 0)
(0.642784 -0.033935 0)
(0.652373 -0.103824 0)
(0.661725 -0.167922 0)
(0.671538 -0.223963 0)
(0.678733 -0.293266 0)
(0.684946 -0.357211 0)
(0.691484 -0.409639 0)
(0.697675 -0.459825 0)
(0.702546 -0.508105 0)
(0.705978 -0.551283 0)
(0.707594 -0.589507 0)
(0.706562 -0.625899 0)
(0.703723 -0.668375 0)
(0.698826 -0.72861 0)
(0.691913 -0.788983 0)
(0.681221 -0.852688 0)
(0.665827 -0.9131 0)
(0.648228 -0.963458 0)
(0.628745 -1.00565 0)
(0.607545 -1.04117 0)
(0.584969 -1.07432 0)
(0.561578 -1.10778 0)
(0.537402 -1.13961 0)
(0.512225 -1.16783 0)
(0.48643 -1.19815 0)
(0.460494 -1.23037 0)
(0.434897 -1.26644 0)
(0.410467 -1.30684 0)
(0.388108 -1.35108 0)
(0.36857 -1.40203 0)
(0.352129 -1.46091 0)
(0.337818 -1.52609 0)
(0.324909 -1.59552 0)
(0.312357 -1.66394 0)
(0.299699 -1.72397 0)
(0.286274 -1.76979 0)
(0.271676 -1.79721 0)
(0.25578 -1.80349 0)
(0.238586 -1.78772 0)
(0.220499 -1.75182 0)
(0.201958 -1.70056 0)
(0.183429 -1.63908 0)
(0.165502 -1.57193 0)
(0.148516 -1.50276 0)
(0.132707 -1.4361 0)
(0.118757 -1.37752 0)
(0.106947 -1.32843 0)
(0.0972177 -1.28346 0)
(0.0895238 -1.2373 0)
(0.0835904 -1.18687 0)
(0.0792017 -1.12915 0)
(0.0755605 -1.06783 0)
(0.0719532 -0.997095 0)
(0.0686263 -0.916753 0)
(0.0654348 -0.829696 0)
(0.0623616 -0.730395 0)
(0.0591019 -0.624192 0)
(0.0553652 -0.537787 0)
(0.0529218 -0.448159 0)
(0.0511274 -0.355675 0)
(0.047333 -0.278178 0)
(0.037963 -0.234858 0)
(0.0264826 -0.168083 0)
(0.0204407 -0.144135 0)
(0.0181631 -0.0804971 0)
(0.0122658 -0.0112904 0)
(0.00590066 0.0168428 0)
(0.00116494 0.0505304 0)
(-0.00372387 0.0916249 0)
(-0.00958467 0.132976 0)
(-0.0156889 0.169633 0)
(-0.0220756 0.198644 0)
(-0.0286159 0.220617 0)
(-0.0349109 0.237665 0)
(-0.0405223 0.250656 0)
(-0.0451295 0.259436 0)
(-0.0486344 0.264209 0)
(-0.0511558 0.265613 0)
(-0.0530997 0.264432 0)
(-0.0549067 0.261647 0)
(-0.0567196 0.258138 0)
(-0.0585091 0.254353 0)
(-0.0602457 0.250548 0)
(-0.0618919 0.24684 0)
(-0.0634749 0.243255 0)
(0.527846 0.18204 0)
(0.549712 0.172316 0)
(0.571377 0.16045 0)
(0.592383 0.145803 0)
(0.61246 0.127955 0)
(0.631351 0.105497 0)
(0.648744 0.0788916 0)
(0.665253 0.0568871 0)
(0.681763 0.0301242 0)
(0.695919 -0.00677332 0)
(0.70643 -0.0413915 0)
(0.715941 -0.0641306 0)
(0.726918 -0.0904549 0)
(0.739071 -0.125033 0)
(0.750345 -0.172683 0)
(0.759573 -0.219168 0)
(0.76649 -0.258524 0)
(0.770737 -0.290227 0)
(0.77278 -0.317639 0)
(0.772587 -0.351471 0)
(0.769281 -0.392342 0)
(0.763347 -0.426682 0)
(0.755979 -0.458255 0)
(0.747478 -0.487916 0)
(0.737721 -0.517778 0)
(0.726906 -0.550197 0)
(0.715408 -0.585898 0)
(0.702803 -0.625767 0)
(0.687665 -0.669368 0)
(0.669959 -0.699234 0)
(0.650207 -0.725249 0)
(0.627996 -0.749623 0)
(0.603537 -0.774677 0)
(0.577622 -0.800714 0)
(0.550997 -0.827936 0)
(0.524201 -0.857432 0)
(0.497338 -0.890694 0)
(0.470598 -0.924178 0)
(0.444879 -0.955212 0)
(0.420922 -0.989012 0)
(0.398504 -1.02778 0)
(0.378778 -1.07916 0)
(0.36204 -1.13874 0)
(0.348167 -1.20596 0)
(0.336933 -1.28391 0)
(0.328445 -1.36558 0)
(0.321063 -1.44487 0)
(0.313577 -1.51971 0)
(0.305191 -1.58533 0)
(0.295108 -1.63661 0)
(0.282798 -1.66983 0)
(0.268059 -1.68271 0)
(0.250986 -1.67442 0)
(0.231769 -1.64636 0)
(0.211224 -1.60277 0)
(0.190076 -1.54859 0)
(0.168861 -1.48865 0)
(0.148212 -1.42668 0)
(0.128269 -1.36635 0)
(0.10956 -1.31511 0)
(0.0946534 -1.27633 0)
(0.0821308 -1.24664 0)
(0.0718058 -1.21886 0)
(0.0634611 -1.18869 0)
(0.0568483 -1.1508 0)
(0.0509888 -1.10145 0)
(0.045268 -1.04108 0)
(0.0394149 -0.969018 0)
(0.0332159 -0.888223 0)
(0.0270355 -0.803663 0)
(0.0218054 -0.707804 0)
(0.0186058 -0.606496 0)
(0.0158828 -0.530063 0)
(0.0126486 -0.445423 0)
(0.00952951 -0.347151 0)
(0.00619694 -0.248953 0)
(0.00316784 -0.180778 0)
(0.00226114 -0.114992 0)
(-0.00509396 -0.0927547 0)
(-0.0121796 -0.0397537 0)
(-0.0173244 -0.0121525 0)
(-0.0179166 0.0287068 0)
(-0.0215918 0.0905202 0)
(-0.0317679 0.160008 0)
(-0.04086 0.206908 0)
(-0.052931 0.246677 0)
(-0.0683129 0.277618 0)
(-0.0826723 0.295795 0)
(-0.0903776 0.301206 0)
(-0.0915982 0.295261 0)
(-0.0908295 0.283413 0)
(-0.0925835 0.269811 0)
(-0.0974862 0.258932 0)
(-0.102407 0.254628 0)
(-0.105125 0.254456 0)
(-0.106128 0.254135 0)
(-0.106258 0.253457 0)
(-0.105782 0.252243 0)
(-0.104892 0.250325 0)
(-0.103756 0.247681 0)
(0.421744 0.0641141 0)
(0.433372 0.0524976 0)
(0.444977 0.0402048 0)
(0.456484 0.0270503 0)
(0.467781 0.0130334 0)
(0.478635 -0.0019137 0)
(0.488749 -0.0177571 0)
(0.498055 -0.0344145 0)
(0.50633 -0.051947 0)
(0.513577 -0.0705556 0)
(0.519582 -0.0899672 0)
(0.524489 -0.109963 0)
(0.528782 -0.130714 0)
(0.532406 -0.152366 0)
(0.534576 -0.175005 0)
(0.534624 -0.198635 0)
(0.532653 -0.223185 0)
(0.529268 -0.248285 0)
(0.525076 -0.273326 0)
(0.520169 -0.298339 0)
(0.514125 -0.323357 0)
(0.506638 -0.348504 0)
(0.497886 -0.373876 0)
(0.488253 -0.39935 0)
(0.477857 -0.424474 0)
(0.466575 -0.448746 0)
(0.454194 -0.472024 0)
(0.440508 -0.494526 0)
(0.425346 -0.51679 0)
(0.408844 -0.539214 0)
(0.391521 -0.561928 0)
(0.373934 -0.58496 0)
(0.35634 -0.60857 0)
(0.338897 -0.633512 0)
(0.321809 -0.661191 0)
(0.305354 -0.692253 0)
(0.289747 -0.727309 0)
(0.275727 -0.76781 0)
(0.263184 -0.814893 0)
(0.253546 -0.867206 0)
(0.246789 -0.929942 0)
(0.242378 -1.00853 0)
(0.240419 -1.09107 0)
(0.239908 -1.17739 0)
(0.239871 -1.26836 0)
(0.239491 -1.35093 0)
(0.237734 -1.42365 0)
(0.233952 -1.48537 0)
(0.227554 -1.53259 0)
(0.218202 -1.56203 0)
(0.205736 -1.57202 0)
(0.190384 -1.56262 0)
(0.172417 -1.53504 0)
(0.152345 -1.49332 0)
(0.13148 -1.4414 0)
(0.109917 -1.38404 0)
(0.0880594 -1.3247 0)
(0.0667873 -1.26719 0)
(0.0451408 -1.21792 0)
(0.0258831 -1.1849 0)
(0.0100386 -1.16903 0)
(-0.00526462 -1.15667 0)
(-0.0185909 -1.14326 0)
(-0.0302235 -1.1237 0)
(-0.0408471 -1.09205 0)
(-0.052103 -1.04547 0)
(-0.0614272 -0.985112 0)
(-0.0703793 -0.912575 0)
(-0.0786453 -0.832955 0)
(-0.0859812 -0.751475 0)
(-0.0915885 -0.672959 0)
(-0.0946919 -0.594088 0)
(-0.0975591 -0.516548 0)
(-0.101079 -0.426999 0)
(-0.102945 -0.337265 0)
(-0.104683 -0.26287 0)
(-0.108879 -0.200822 0)
(-0.112014 -0.133958 0)
(-0.115755 -0.0587248 0)
(-0.125025 0.0104294 0)
(-0.134754 0.0238336 0)
(-0.13929 0.0738733 0)
(-0.146228 0.145902 0)
(-0.150735 0.208301 0)
(-0.152488 0.273532 0)
(-0.157037 0.366791 0)
(-0.167575 0.448299 0)
(-0.187899 0.437049 0)
(-0.196283 0.286521 0)
(-0.183763 0.224101 0)
(-0.163155 0.224437 0)
(-0.146213 0.313326 0)
(-0.142246 0.37368 0)
(-0.144051 0.344519 0)
(-0.142154 0.288118 0)
(-0.138065 0.263772 0)
(-0.134708 0.248402 0)
(-0.132268 0.23751 0)
(-0.130558 0.229112 0)
(-0.129125 0.223102 0)
(0.333099 0.016682 0)
(0.337821 0.00676205 0)
(0.342264 -0.00364371 0)
(0.34641 -0.0145958 0)
(0.350193 -0.0261067 0)
(0.353566 -0.0382118 0)
(0.356505 -0.0509108 0)
(0.358965 -0.0641859 0)
(0.360905 -0.0780338 0)
(0.362282 -0.0924309 0)
(0.363048 -0.107342 0)
(0.363172 -0.122714 0)
(0.362633 -0.138542 0)
(0.361405 -0.154855 0)
(0.359444 -0.171613 0)
(0.356703 -0.188696 0)
(0.353134 -0.205976 0)
(0.3487 -0.223387 0)
(0.343393 -0.240906 0)
(0.337225 -0.258522 0)
(0.33021 -0.276179 0)
(0.322341 -0.293793 0)
(0.313601 -0.311316 0)
(0.303977 -0.328787 0)
(0.293484 -0.34627 0)
(0.282174 -0.363805 0)
(0.270145 -0.381405 0)
(0.257516 -0.399117 0)
(0.24443 -0.417129 0)
(0.231067 -0.435873 0)
(0.21769 -0.45611 0)
(0.204666 -0.47895 0)
(0.192379 -0.505316 0)
(0.181185 -0.535675 0)
(0.171322 -0.570324 0)
(0.16281 -0.612099 0)
(0.155905 -0.658651 0)
(0.151419 -0.719082 0)
(0.149587 -0.788511 0)
(0.150716 -0.866169 0)
(0.153449 -0.94448 0)
(0.156093 -1.0321 0)
(0.158473 -1.11698 0)
(0.160018 -1.19941 0)
(0.159905 -1.2772 0)
(0.157898 -1.3438 0)
(0.15399 -1.39927 0)
(0.147735 -1.44054 0)
(0.138821 -1.46467 0)
(0.12708 -1.47008 0)
(0.112707 -1.45749 0)
(0.0961691 -1.4289 0)
(0.0775755 -1.38679 0)
(0.0576621 -1.33492 0)
(0.0373895 -1.2763 0)
(0.015876 -1.21452 0)
(-0.00581506 -1.15395 0)
(-0.0279258 -1.09778 0)
(-0.0514366 -1.05462 0)
(-0.0732333 -1.03281 0)
(-0.094939 -1.02587 0)
(-0.117692 -1.01965 0)
(-0.139857 -1.01155 0)
(-0.160943 -0.996588 0)
(-0.181579 -0.970444 0)
(-0.201006 -0.933006 0)
(-0.217244 -0.876124 0)
(-0.232513 -0.80451 0)
(-0.247361 -0.728576 0)
(-0.260499 -0.659195 0)
(-0.270959 -0.599187 0)
(-0.280044 -0.523212 0)
(-0.288505 -0.433428 0)
(-0.295903 -0.340477 0)
(-0.301577 -0.249671 0)
(-0.306553 -0.158848 0)
(-0.310913 -0.0742629 0)
(-0.313815 -0.00691905 0)
(-0.31499 0.0492172 0)
(-0.31457 0.0943058 0)
(-0.311778 0.115705 0)
(-0.307216 0.139115 0)
(-0.298553 0.174996 0)
(-0.284536 0.217031 0)
(-0.266206 0.307129 0)
(-0.238568 0.406999 0)
(-0.202532 0.457559 0)
(-0.167764 0.424919 0)
(-0.140333 0.262691 0)
(-0.132179 0.137817 0)
(-0.124073 0.0391114 0)
(-0.1104 0.124342 0)
(-0.0936635 0.189951 0)
(-0.0743357 0.207865 0)
(-0.0630816 0.197692 0)
(-0.0655091 0.212624 0)
(-0.0715872 0.225902 0)
(-0.0758332 0.236392 0)
(-0.0817245 0.240911 0)
(-0.0878662 0.240246 0)
(0.262843 -0.00768567 0)
(0.264514 -0.0155999 0)
(0.26594 -0.0237699 0)
(0.267079 -0.0322314 0)
(0.267891 -0.0409893 0)
(0.268345 -0.0500384 0)
(0.268415 -0.0593751 0)
(0.268077 -0.0689925 0)
(0.267301 -0.0788831 0)
(0.266059 -0.0890402 0)
(0.264323 -0.0994581 0)
(0.262069 -0.110131 0)
(0.259274 -0.121056 0)
(0.255917 -0.132225 0)
(0.251971 -0.143629 0)
(0.247418 -0.15525 0)
(0.242242 -0.167062 0)
(0.236434 -0.179028 0)
(0.229989 -0.191109 0)
(0.222899 -0.203264 0)
(0.215161 -0.215459 0)
(0.206777 -0.227665 0)
(0.197758 -0.239869 0)
(0.188127 -0.252091 0)
(0.177924 -0.264416 0)
(0.167222 -0.277036 0)
(0.156155 -0.290313 0)
(0.144947 -0.304863 0)
(0.133928 -0.321634 0)
(0.123519 -0.341932 0)
(0.114179 -0.367272 0)
(0.106267 -0.398832 0)
(0.0997656 -0.435122 0)
(0.0946195 -0.478202 0)
(0.0907525 -0.520165 0)
(0.0887441 -0.583168 0)
(0.0889915 -0.649984 0)
(0.0912939 -0.728224 0)
(0.0935883 -0.806413 0)
(0.0947434 -0.888134 0)
(0.0955189 -0.963749 0)
(0.0964254 -1.04456 0)
(0.0963616 -1.12048 0)
(0.0950734 -1.19119 0)
(0.0925194 -1.25491 0)
(0.0882164 -1.30858 0)
(0.0820615 -1.34857 0)
(0.0739088 -1.37199 0)
(0.0636252 -1.37738 0)
(0.0512605 -1.36491 0)
(0.0370937 -1.33682 0)
(0.0214395 -1.29622 0)
(0.00445598 -1.24597 0)
(-0.0130158 -1.18855 0)
(-0.0306325 -1.12468 0)
(-0.0489784 -1.05881 0)
(-0.0677233 -0.993372 0)
(-0.0876872 -0.931146 0)
(-0.108801 -0.881829 0)
(-0.130563 -0.855878 0)
(-0.154243 -0.839754 0)
(-0.180081 -0.829106 0)
(-0.206669 -0.822339 0)
(-0.232979 -0.81619 0)
(-0.258451 -0.806936 0)
(-0.282199 -0.789455 0)
(-0.303249 -0.743927 0)
(-0.321711 -0.685328 0)
(-0.336944 -0.632842 0)
(-0.348464 -0.590565 0)
(-0.357979 -0.546011 0)
(-0.364342 -0.484978 0)
(-0.36746 -0.406014 0)
(-0.368361 -0.328529 0)
(-0.365581 -0.272306 0)
(-0.357657 -0.21925 0)
(-0.346031 -0.164083 0)
(-0.332168 -0.109356 0)
(-0.317163 -0.06116 0)
(-0.301305 -0.0258582 0)
(-0.285117 -0.0141482 0)
(-0.268579 -0.0205699 0)
(-0.252489 -0.0301886 0)
(-0.234783 -0.0508577 0)
(-0.210564 -0.0705401 0)
(-0.176932 -0.0990975 0)
(-0.144956 -0.04465 0)
(-0.122855 0.0227235 0)
(-0.107398 0.00599791 0)
(-0.0974183 0.00264667 0)
(-0.100154 0.0524339 0)
(-0.113755 0.121808 0)
(-0.123981 0.150844 0)
(-0.131222 0.202597 0)
(-0.136843 0.252996 0)
(-0.143627 0.288098 0)
(-0.148651 0.308068 0)
(-0.150848 0.312506 0)
(-0.152749 0.308062 0)
(-0.154024 0.298722 0)
(0.211393 -0.0116368 0)
(0.211271 -0.0174176 0)
(0.210905 -0.02332 0)
(0.210276 -0.0293679 0)
(0.20935 -0.0355678 0)
(0.2081 -0.0419218 0)
(0.206511 -0.0484295 0)
(0.204566 -0.0550877 0)
(0.202251 -0.0618921 0)
(0.199546 -0.068839 0)
(0.196436 -0.0759257 0)
(0.192905 -0.0831493 0)
(0.188936 -0.0905058 0)
(0.184513 -0.0979872 0)
(0.179619 -0.10558 0)
(0.174236 -0.113266 0)
(0.168347 -0.121022 0)
(0.161937 -0.128823 0)
(0.154991 -0.136648 0)
(0.1475 -0.144486 0)
(0.139461 -0.152346 0)
(0.130885 -0.160279 0)
(0.121802 -0.168403 0)
(0.11228 -0.17696 0)
(0.102442 -0.186387 0)
(0.0924948 -0.197416 0)
(0.0827536 -0.211172 0)
(0.0736548 -0.229186 0)
(0.0657332 -0.253179 0)
(0.0595153 -0.284478 0)
(0.0553545 -0.323119 0)
(0.0528203 -0.366213 0)
(0.0508322 -0.408649 0)
(0.0506706 -0.472687 0)
(0.0532883 -0.53089 0)
(0.0568329 -0.599652 0)
(0.058391 -0.668044 0)
(0.0582844 -0.739975 0)
(0.0578838 -0.811815 0)
(0.0577761 -0.885367 0)
(0.057296 -0.961282 0)
(0.0560548 -1.03699 0)
(0.0540797 -1.10636 0)
(0.0514219 -1.16964 0)
(0.047718 -1.22365 0)
(0.0427676 -1.26564 0)
(0.036418 -1.29276 0)
(0.0285846 -1.30294 0)
(0.0192941 -1.2957 0)
(0.00871452 -1.27214 0)
(-0.00289914 -1.23496 0)
(-0.0153277 -1.18776 0)
(-0.0283411 -1.13345 0)
(-0.0415881 -1.0739 0)
(-0.0550751 -1.00701 0)
(-0.0688902 -0.938164 0)
(-0.0828208 -0.868128 0)
(-0.0971356 -0.797902 0)
(-0.11248 -0.734854 0)
(-0.129755 -0.69111 0)
(-0.149769 -0.654889 0)
(-0.172773 -0.630262 0)
(-0.197974 -0.616205 0)
(-0.224565 -0.610578 0)
(-0.251996 -0.608512 0)
(-0.280118 -0.603258 0)
(-0.30657 -0.580117 0)
(-0.328759 -0.55202 0)
(-0.347162 -0.529888 0)
(-0.363091 -0.509225 0)
(-0.377641 -0.48524 0)
(-0.389932 -0.454696 0)
(-0.397637 -0.410153 0)
(-0.400679 -0.370663 0)
(-0.400263 -0.347955 0)
(-0.397608 -0.318687 0)
(-0.392143 -0.282528 0)
(-0.384587 -0.240672 0)
(-0.374991 -0.205047 0)
(-0.363542 -0.178825 0)
(-0.352932 -0.152054 0)
(-0.345505 -0.12953 0)
(-0.339648 -0.111176 0)
(-0.334737 -0.109989 0)
(-0.335755 -0.111917 0)
(-0.346752 -0.0736483 0)
(-0.353867 0.0581336 0)
(-0.348617 0.108479 0)
(-0.352717 0.0704823 0)
(-0.361053 0.110452 0)
(-0.359581 0.203505 0)
(-0.361127 0.235168 0)
(-0.356904 0.251003 0)
(-0.349282 0.264116 0)
(-0.340313 0.27503 0)
(-0.329137 0.279359 0)
(-0.316775 0.277358 0)
(-0.304012 0.27122 0)
(-0.291599 0.263097 0)
(-0.279784 0.254427 0)
(0.174137 -0.00766782 0)
(0.173224 -0.011713 0)
(0.172112 -0.0157655 0)
(0.17077 -0.019839 0)
(0.169175 -0.0239392 0)
(0.16731 -0.0280693 0)
(0.165162 -0.0322311 0)
(0.162721 -0.0364242 0)
(0.159974 -0.0406464 0)
(0.156907 -0.0448947 0)
(0.153506 -0.0491649 0)
(0.149757 -0.0534512 0)
(0.145645 -0.0577448 0)
(0.141156 -0.0620331 0)
(0.136272 -0.0662997 0)
(0.130976 -0.070526 0)
(0.125253 -0.0746949 0)
(0.119088 -0.0787971 0)
(0.112471 -0.0828417 0)
(0.105398 -0.0868741 0)
(0.0978792 -0.0910063 0)
(0.0899469 -0.0954662 0)
(0.0816692 -0.100673 0)
(0.07317 -0.107346 0)
(0.0646517 -0.116623 0)
(0.0564157 -0.130155 0)
(0.048872 -0.150055 0)
(0.0425192 -0.178545 0)
(0.037873 -0.217141 0)
(0.03532 -0.265571 0)
(0.0350977 -0.320514 0)
(0.0366372 -0.371824 0)
(0.0397798 -0.424304 0)
(0.0430459 -0.494092 0)
(0.0445393 -0.555452 0)
(0.0442915 -0.607508 0)
(0.0434727 -0.66502 0)
(0.0424553 -0.729886 0)
(0.0412713 -0.804661 0)
(0.0400145 -0.87966 0)
(0.0384265 -0.952061 0)
(0.0362703 -1.02139 0)
(0.0334908 -1.08585 0)
(0.0300012 -1.1429 0)
(0.0257681 -1.18991 0)
(0.0206685 -1.22383 0)
(0.0145822 -1.24218 0)
(0.00746699 -1.24359 0)
(-0.000611683 -1.22844 0)
(-0.0094998 -1.19835 0)
(-0.0190217 -1.15617 0)
(-0.0290029 -1.10541 0)
(-0.0392579 -1.04901 0)
(-0.0497454 -0.987529 0)
(-0.060372 -0.919478 0)
(-0.070914 -0.850352 0)
(-0.0813808 -0.780579 0)
(-0.0914811 -0.709702 0)
(-0.101459 -0.638993 0)
(-0.112498 -0.577683 0)
(-0.125196 -0.52203 0)
(-0.140324 -0.472953 0)
(-0.158246 -0.436253 0)
(-0.179053 -0.412402 0)
(-0.202328 -0.398568 0)
(-0.22698 -0.390494 0)
(-0.251473 -0.384644 0)
(-0.274819 -0.378594 0)
(-0.296922 -0.370802 0)
(-0.317897 -0.360918 0)
(-0.337808 -0.34857 0)
(-0.356462 -0.332596 0)
(-0.372794 -0.310305 0)
(-0.386532 -0.29272 0)
(-0.399006 -0.279965 0)
(-0.410778 -0.263153 0)
(-0.421304 -0.24039 0)
(-0.429722 -0.211206 0)
(-0.436045 -0.184041 0)
(-0.441487 -0.158553 0)
(-0.446189 -0.126315 0)
(-0.449299 -0.0954098 0)
(-0.45107 -0.070413 0)
(-0.453452 -0.0518484 0)
(-0.457443 -0.032559 0)
(-0.459614 -0.00726456 0)
(-0.455745 0.0235149 0)
(-0.448553 0.042417 0)
(-0.442656 0.0513844 0)
(-0.435519 0.0690815 0)
(-0.424587 0.0886552 0)
(-0.411672 0.102053 0)
(-0.398064 0.111819 0)
(-0.383949 0.119515 0)
(-0.369445 0.125662 0)
(-0.354806 0.130329 0)
(-0.340521 0.133808 0)
(-0.326855 0.136477 0)
(-0.313898 0.138512 0)
(-0.30182 0.140092 0)
(0.150309 2.08305e-05 0)
(0.149295 -0.0025042 0)
(0.148141 -0.00495453 0)
(0.146825 -0.00734004 0)
(0.145319 -0.00966309 0)
(0.143611 -0.0119285 0)
(0.141696 -0.0141416 0)
(0.139566 -0.0163046 0)
(0.137213 -0.0184155 0)
(0.134628 -0.0204678 0)
(0.131803 -0.0224517 0)
(0.128727 -0.0243542 0)
(0.125391 -0.0261595 0)
(0.121782 -0.0278493 0)
(0.11789 -0.029405 0)
(0.113703 -0.0308111 0)
(0.109211 -0.0320631 0)
(0.104405 -0.0331795 0)
(0.0992842 -0.0342238 0)
(0.0938523 -0.0353391 0)
(0.0881286 -0.036803 0)
(0.0821525 -0.0391078 0)
(0.0759927 -0.0430651 0)
(0.0697552 -0.0499181 0)
(0.0635884 -0.0614214 0)
(0.0576808 -0.0798121 0)
(0.0522466 -0.107579 0)
(0.0474962 -0.146976 0)
(0.0436522 -0.199362 0)
(0.0410308 -0.264413 0)
(0.0404863 -0.338131 0)
(0.0423915 -0.401441 0)
(0.0447599 -0.451504 0)
(0.0450261 -0.502442 0)
(0.043736 -0.551355 0)
(0.0426252 -0.601913 0)
(0.0421217 -0.66232 0)
(0.0413237 -0.723861 0)
(0.0394843 -0.794486 0)
(0.0370179 -0.866909 0)
(0.0344052 -0.935196 0)
(0.0313321 -1.00031 0)
(0.0277258 -1.06048 0)
(0.0236225 -1.11317 0)
(0.0189389 -1.15509 0)
(0.0135718 -1.18316 0)
(0.00745441 -1.19525 0)
(0.000587934 -1.19061 0)
(-0.00695105 -1.17024 0)
(-0.0150165 -1.1361 0)
(-0.0234121 -1.09117 0)
(-0.0319564 -1.03875 0)
(-0.0405753 -0.981414 0)
(-0.0492331 -0.918929 0)
(-0.0576715 -0.852924 0)
(-0.0656969 -0.785976 0)
(-0.0733146 -0.719371 0)
(-0.0804916 -0.653178 0)
(-0.0874256 -0.583854 0)
(-0.0944594 -0.51639 0)
(-0.102248 -0.451539 0)
(-0.11111 -0.386922 0)
(-0.121033 -0.331165 0)
(-0.13251 -0.286907 0)
(-0.145696 -0.255435 0)
(-0.160413 -0.235613 0)
(-0.176215 -0.224473 0)
(-0.192588 -0.218437 0)
(-0.209081 -0.214456 0)
(-0.225372 -0.210642 0)
(-0.241187 -0.206228 0)
(-0.256109 -0.201028 0)
(-0.269845 -0.194882 0)
(-0.282595 -0.187499 0)
(-0.294699 -0.178742 0)
(-0.306096 -0.168845 0)
(-0.316367 -0.158347 0)
(-0.325248 -0.147536 0)
(-0.332799 -0.136529 0)
(-0.339027 -0.125302 0)
(-0.343663 -0.113796 0)
(-0.346643 -0.101996 0)
(-0.34844 -0.0899737 0)
(-0.349567 -0.0778447 0)
(-0.349983 -0.0654415 0)
(-0.349103 -0.0525547 0)
(-0.3467 -0.0394779 0)
(-0.343364 -0.0268924 0)
(-0.339537 -0.014921 0)
(-0.334963 -0.00340767 0)
(-0.329412 0.00734447 0)
(-0.323158 0.0173145 0)
(-0.316558 0.026508 0)
(-0.309743 0.0349555 0)
(-0.302793 0.042693 0)
(-0.295808 0.0497702 0)
(-0.288866 0.0562123 0)
(-0.282021 0.0620254 0)
(-0.275275 0.0672176 0)
(-0.268669 0.0718314 0)
(0.137189 0.00604321 0)
(0.136628 0.00450856 0)
(0.135971 0.00309333 0)
(0.135217 0.00178902 0)
(0.134373 0.000594598 0)
(0.133432 -0.000495028 0)
(0.132389 -0.00148646 0)
(0.131245 -0.00238289 0)
(0.129998 -0.00318155 0)
(0.128646 -0.00387374 0)
(0.12719 -0.00444617 0)
(0.125628 -0.00488232 0)
(0.123961 -0.00516166 0)
(0.122188 -0.00526402 0)
(0.12031 -0.00517103 0)
(0.118329 -0.00487244 0)
(0.116247 -0.00437706 0)
(0.114067 -0.00372941 0)
(0.111797 -0.00303799 0)
(0.109443 -0.00251734 0)
(0.107018 -0.00254579 0)
(0.104533 -0.00373836 0)
(0.101997 -0.00702487 0)
(0.0994073 -0.0137158 0)
(0.0967292 -0.0255231 0)
(0.0938919 -0.0445246 0)
(0.0907848 -0.0730224 0)
(0.0872457 -0.113262 0)
(0.0831107 -0.167174 0)
(0.0781238 -0.235925 0)
(0.0732571 -0.319999 0)
(0.0693838 -0.403679 0)
(0.0662186 -0.450169 0)
(0.0634123 -0.49233 0)
(0.0608081 -0.53917 0)
(0.0579024 -0.592296 0)
(0.0545554 -0.650776 0)
(0.0511561 -0.709259 0)
(0.0476277 -0.773132 0)
(0.0436349 -0.84262 0)
(0.0392315 -0.90899 0)
(0.0347041 -0.971395 0)
(0.0298928 -1.02849 0)
(0.0245626 -1.07725 0)
(0.0186302 -1.11459 0)
(0.0120383 -1.13758 0)
(0.00475584 -1.14444 0)
(-0.00319152 -1.13494 0)
(-0.0117074 -1.1105 0)
(-0.0206156 -1.07367 0)
(-0.0296936 -1.02754 0)
(-0.0387662 -0.97504 0)
(-0.0477199 -0.918239 0)
(-0.0563207 -0.857602 0)
(-0.0643793 -0.794833 0)
(-0.0719708 -0.730941 0)
(-0.0792628 -0.666926 0)
(-0.0866923 -0.600627 0)
(-0.0943318 -0.53172 0)
(-0.102059 -0.462468 0)
(-0.109797 -0.394646 0)
(-0.117138 -0.331111 0)
(-0.124068 -0.274306 0)
(-0.130844 -0.226186 0)
(-0.137772 -0.188237 0)
(-0.145112 -0.160685 0)
(-0.152977 -0.142315 0)
(-0.161319 -0.130935 0)
(-0.169973 -0.12414 0)
(-0.178732 -0.119898 0)
(-0.187412 -0.116768 0)
(-0.195885 -0.11386 0)
(-0.204068 -0.11071 0)
(-0.211893 -0.107123 0)
(-0.219283 -0.103021 0)
(-0.22617 -0.0983698 0)
(-0.232518 -0.0931797 0)
(-0.238317 -0.0874997 0)
(-0.243573 -0.0813942 0)
(-0.248288 -0.0749231 0)
(-0.252455 -0.0681682 0)
(-0.256064 -0.0612503 0)
(-0.259111 -0.0542787 0)
(-0.261598 -0.0473067 0)
(-0.263515 -0.0403444 0)
(-0.264836 -0.0334258 0)
(-0.265547 -0.026646 0)
(-0.265683 -0.020086 0)
(-0.265308 -0.0137501 0)
(-0.264471 -0.00762039 0)
(-0.263181 -0.00171784 0)
(-0.261445 0.00397181 0)
(-0.259316 0.00946023 0)
(-0.256857 0.0147364 0)
(-0.254121 0.0197845 0)
(-0.251151 0.0245889 0)
(-0.247984 0.0291371 0)
(-0.24467 0.0334214 0)
(-0.241233 0.0374394 0)
(-0.23767 0.0412073 0)
(0.129251 0.00792881 0)
(0.129225 0.00679815 0)
(0.129174 0.00577697 0)
(0.129105 0.00485869 0)
(0.12902 0.00403944 0)
(0.128923 0.00331101 0)
(0.128819 0.00266142 0)
(0.128712 0.00208216 0)
(0.128609 0.00157018 0)
(0.128512 0.00112846 0)
(0.128425 0.00076532 0)
(0.128365 0.000492685 0)
(0.128348 0.000322767 0)
(0.128381 0.000268221 0)
(0.128483 0.000337634 0)
(0.128665 0.000530228 0)
(0.128941 0.000827515 0)
(0.129331 0.0011792 0)
(0.129853 0.00148242 0)
(0.130524 0.0015528 0)
(0.131352 0.00108572 0)
(0.132332 -0.000390264 0)
(0.133431 -0.00356505 0)
(0.13458 -0.00939875 0)
(0.135656 -0.0191585 0)
(0.136466 -0.0344095 0)
(0.136727 -0.0569437 0)
(0.136081 -0.0886714 0)
(0.134116 -0.131633 0)
(0.130417 -0.188457 0)
(0.124932 -0.262967 0)
(0.117595 -0.353145 0)
(0.109115 -0.404238 0)
(0.100715 -0.449716 0)
(0.0929666 -0.498028 0)
(0.0852834 -0.549894 0)
(0.0775709 -0.605399 0)
(0.0701441 -0.66698 0)
(0.0631169 -0.732295 0)
(0.0564348 -0.800741 0)
(0.0497051 -0.86646 0)
(0.0427732 -0.927381 0)
(0.0354962 -0.98153 0)
(0.0277129 -1.02636 0)
(0.019343 -1.05915 0)
(0.0103497 -1.07732 0)
(0.000729654 -1.07941 0)
(-0.00945187 -1.06578 0)
(-0.0200371 -1.03834 0)
(-0.0308184 -1.00006 0)
(-0.0415898 -0.954061 0)
(-0.052169 -0.902953 0)
(-0.0623731 -0.848897 0)
(-0.0719698 -0.792488 0)
(-0.0808905 -0.734032 0)
(-0.0892143 -0.674306 0)
(-0.0974046 -0.609124 0)
(-0.106114 -0.538873 0)
(-0.115177 -0.467646 0)
(-0.124169 -0.398561 0)
(-0.132281 -0.335041 0)
(-0.139427 -0.276911 0)
(-0.14561 -0.2251 0)
(-0.150955 -0.180925 0)
(-0.155679 -0.145363 0)
(-0.160034 -0.118631 0)
(-0.16425 -0.100013 0)
(-0.168477 -0.0880479 0)
(-0.17277 -0.0809261 0)
(-0.177118 -0.0769189 0)
(-0.181472 -0.0746462 0)
(-0.185773 -0.0731521 0)
(-0.189965 -0.0718497 0)
(-0.194002 -0.0704161 0)
(-0.197848 -0.0686966 0)
(-0.201476 -0.0666351 0)
(-0.204863 -0.0642288 0)
(-0.207987 -0.061501 0)
(-0.210834 -0.0584863 0)
(-0.213389 -0.0552216 0)
(-0.215641 -0.0517435 0)
(-0.217586 -0.0480869 0)
(-0.219224 -0.0442839 0)
(-0.220559 -0.0403634 0)
(-0.221596 -0.0363518 0)
(-0.222338 -0.0322753 0)
(-0.222794 -0.0281616 0)
(-0.222977 -0.0240376 0)
(-0.222901 -0.0199254 0)
(-0.222579 -0.0158421 0)
(-0.222021 -0.0118032 0)
(-0.221236 -0.00782542 0)
(-0.220238 -0.00392375 0)
(-0.219043 -0.000111954 0)
(-0.217668 0.00360067 0)
(-0.216131 0.00720487 0)
(-0.214443 0.0106932 0)
(-0.212618 0.0140601 0)
(-0.210668 0.0173032 0)
(-0.20863 0.0204358 0)
(0.12315 0.00631951 0)
(0.123477 0.00520515 0)
(0.123807 0.00415649 0)
(0.124151 0.00316388 0)
(0.124513 0.00222138 0)
(0.12489 0.00131911 0)
(0.125288 0.000444123 0)
(0.125724 -0.00041823 0)
(0.126206 -0.0012801 0)
(0.126743 -0.00214945 0)
(0.127348 -0.00302968 0)
(0.128022 -0.00392095 0)
(0.128774 -0.00482385 0)
(0.129622 -0.00573871 0)
(0.130576 -0.00667 0)
(0.131654 -0.00763012 0)
(0.132874 -0.00864475 0)
(0.134254 -0.0097625 0)
(0.135807 -0.0110671 0)
(0.137543 -0.0126943 0)
(0.139464 -0.014853 0)
(0.14156 -0.0178499 0)
(0.143799 -0.0221164 0)
(0.146114 -0.0282357 0)
(0.148396 -0.036964 0)
(0.150485 -0.0492414 0)
(0.15215 -0.066179 0)
(0.153092 -0.0890311 0)
(0.152923 -0.119226 0)
(0.151166 -0.158685 0)
(0.147038 -0.210692 0)
(0.13895 -0.276368 0)
(0.128451 -0.326194 0)
(0.118666 -0.37466 0)
(0.109353 -0.425363 0)
(0.100066 -0.478585 0)
(0.090888 -0.535962 0)
(0.0817222 -0.599615 0)
(0.0725595 -0.668495 0)
(0.0634294 -0.737987 0)
(0.054072 -0.802856 0)
(0.0443257 -0.861505 0)
(0.0341083 -0.912445 0)
(0.0233785 -0.953512 0)
(0.0121204 -0.982199 0)
(0.000343374 -0.996151 0)
(-0.0119262 -0.994335 0)
(-0.0245731 -0.977739 0)
(-0.0374168 -0.94878 0)
(-0.0502543 -0.910615 0)
(-0.0628941 -0.866206 0)
(-0.0751797 -0.817968 0)
(-0.086972 -0.767952 0)
(-0.0981028 -0.716648 0)
(-0.108573 -0.663934 0)
(-0.118316 -0.608077 0)
(-0.127988 -0.537866 0)
(-0.137964 -0.464753 0)
(-0.147548 -0.395749 0)
(-0.155777 -0.334807 0)
(-0.162768 -0.280003 0)
(-0.16849 -0.230956 0)
(-0.172957 -0.187545 0)
(-0.176302 -0.150411 0)
(-0.178734 -0.120003 0)
(-0.180509 -0.0963587 0)
(-0.181885 -0.0790073 0)
(-0.183076 -0.0670342 0)
(-0.184232 -0.0592667 0)
(-0.185433 -0.0544996 0)
(-0.186706 -0.0516743 0)
(-0.188042 -0.049969 0)
(-0.189417 -0.0488094 0)
(-0.190803 -0.0478304 0)
(-0.192169 -0.0468207 0)
(-0.193491 -0.0456713 0)
(-0.194748 -0.0443358 0)
(-0.195921 -0.0428041 0)
(-0.196998 -0.0410853 0)
(-0.197965 -0.039198 0)
(-0.198813 -0.0371649 0)
(-0.199535 -0.0350095 0)
(-0.200125 -0.0327541 0)
(-0.200577 -0.0304189 0)
(-0.200889 -0.0280218 0)
(-0.201057 -0.0255787 0)
(-0.20108 -0.0231034 0)
(-0.20096 -0.0206079 0)
(-0.200696 -0.0181017 0)
(-0.200292 -0.0155928 0)
(-0.199752 -0.0130873 0)
(-0.19908 -0.0105908 0)
(-0.198286 -0.00810802 0)
(-0.197378 -0.0056431 0)
(-0.196352 -0.00320081 0)
(-0.195209 -0.000784188 0)
(-0.193959 0.00160297 0)
(-0.192624 0.00395575 0)
(-0.191202 0.00627178 0)
(-0.189692 0.00856284 0)
(0.116068 0.00319277 0)
(0.116431 0.00200327 0)
(0.116795 0.000839725 0)
(0.117163 -0.000307929 0)
(0.117541 -0.00144628 0)
(0.117939 -0.00258379 0)
(0.118356 -0.00373129 0)
(0.118784 -0.00490331 0)
(0.119226 -0.0061149 0)
(0.119687 -0.00737974 0)
(0.120168 -0.00870948 0)
(0.120675 -0.0101137 0)
(0.121208 -0.0115994 0)
(0.121772 -0.0131749 0)
(0.122369 -0.0148507 0)
(0.123004 -0.0166433 0)
(0.123681 -0.0185795 0)
(0.124403 -0.0207027 0)
(0.125171 -0.0230807 0)
(0.125984 -0.0258167 0)
(0.126834 -0.0290625 0)
(0.127709 -0.0330344 0)
(0.128583 -0.0380291 0)
(0.129418 -0.0444378 0)
(0.130152 -0.0527565 0)
(0.1307 -0.0635876 0)
(0.130941 -0.0776285 0)
(0.130713 -0.0956424 0)
(0.129802 -0.1184 0)
(0.127925 -0.146536 0)
(0.124656 -0.180191 0)
(0.119527 -0.218664 0)
(0.11259 -0.260798 0)
(0.104562 -0.306207 0)
(0.0960156 -0.354934 0)
(0.0873884 -0.408384 0)
(0.0785726 -0.465963 0)
(0.0697181 -0.529584 0)
(0.0607179 -0.598105 0)
(0.0511403 -0.664616 0)
(0.0407672 -0.725631 0)
(0.0295827 -0.779935 0)
(0.017668 -0.826335 0)
(0.00511064 -0.863061 0)
(-0.00798939 -0.887702 0)
(-0.0215207 -0.897946 0)
(-0.0353792 -0.893183 0)
(-0.0494196 -0.874836 0)
(-0.0634671 -0.84569 0)
(-0.0773514 -0.808849 0)
(-0.0909137 -0.766867 0)
(-0.104074 -0.721944 0)
(-0.116731 -0.675981 0)
(-0.128743 -0.629952 0)
(-0.140215 -0.582697 0)
(-0.151157 -0.529095 0)
(-0.161358 -0.456528 0)
(-0.170792 -0.389588 0)
(-0.1786 -0.332655 0)
(-0.184841 -0.282539 0)
(-0.189751 -0.237877 0)
(-0.193413 -0.198803 0)
(-0.195917 -0.164774 0)
(-0.197378 -0.135918 0)
(-0.197961 -0.112239 0)
(-0.197873 -0.0935543 0)
(-0.197323 -0.0794188 0)
(-0.196506 -0.0691647 0)
(-0.195576 -0.0620023 0)
(-0.194641 -0.0571373 0)
(-0.193765 -0.0538624 0)
(-0.192977 -0.0516071 0)
(-0.192283 -0.0499477 0)
(-0.191674 -0.0485921 0)
(-0.191137 -0.047352 0)
(-0.190656 -0.0461147 0)
(-0.190213 -0.0448183 0)
(-0.189794 -0.0434337 0)
(-0.189387 -0.0419518 0)
(-0.188981 -0.0403751 0)
(-0.188565 -0.0387122 0)
(-0.188131 -0.0369748 0)
(-0.187672 -0.0351753 0)
(-0.187182 -0.0333258 0)
(-0.186657 -0.0314373 0)
(-0.18609 -0.0295193 0)
(-0.18548 -0.0275798 0)
(-0.184823 -0.0256249 0)
(-0.184116 -0.0236593 0)
(-0.183359 -0.0216859 0)
(-0.18255 -0.0197068 0)
(-0.181689 -0.0177235 0)
(-0.180777 -0.0157373 0)
(-0.179814 -0.0137498 0)
(-0.178801 -0.0117633 0)
(-0.177737 -0.00978192 0)
(-0.176624 -0.00780932 0)
(-0.175462 -0.00584827 0)
(-0.174256 -0.00389837 0)
(-0.173019 -0.00194802 0)
(0.108947 0.000553651 0)
(0.109258 -0.000571188 0)
(0.109559 -0.00168181 0)
(0.109849 -0.00278665 0)
(0.110129 -0.00389039 0)
(0.110399 -0.004998 0)
(0.110656 -0.00611749 0)
(0.1109 -0.00725819 0)
(0.111126 -0.00843113 0)
(0.111334 -0.00964778 0)
(0.111519 -0.0109186 0)
(0.111679 -0.0122524 0)
(0.111809 -0.0136565 0)
(0.111906 -0.0151377 0)
(0.111965 -0.0167043 0)
(0.111981 -0.0183688 0)
(0.11195 -0.0201513 0)
(0.111865 -0.0220846 0)
(0.111717 -0.0242208 0)
(0.111497 -0.0266403 0)
(0.111191 -0.0294628 0)
(0.110782 -0.0328601 0)
(0.110247 -0.0370694 0)
(0.109558 -0.0424052 0)
(0.108678 -0.0492669 0)
(0.107558 -0.0581375 0)
(0.10614 -0.069567 0)
(0.104348 -0.0841318 0)
(0.102089 -0.102358 0)
(0.0992507 -0.124621 0)
(0.0957126 -0.151092 0)
(0.0913844 -0.181802 0)
(0.086247 -0.216806 0)
(0.0803387 -0.256405 0)
(0.074007 -0.301344 0)
(0.0673473 -0.352455 0)
(0.0604464 -0.409162 0)
(0.0534274 -0.470312 0)
(0.0453092 -0.531734 0)
(0.0356468 -0.589362 0)
(0.0246797 -0.642335 0)
(0.0125977 -0.68972 0)
(-0.000374595 -0.730345 0)
(-0.0140214 -0.76248 0)
(-0.028125 -0.783621 0)
(-0.0424783 -0.791399 0)
(-0.0569035 -0.785303 0)
(-0.0712542 -0.766831 0)
(-0.0854055 -0.738789 0)
(-0.099244 -0.704072 0)
(-0.112659 -0.664911 0)
(-0.125612 -0.622946 0)
(-0.138085 -0.580431 0)
(-0.150088 -0.538713 0)
(-0.161727 -0.496771 0)
(-0.172511 -0.450253 0)
(-0.181218 -0.387981 0)
(-0.187841 -0.336241 0)
(-0.192891 -0.291777 0)
(-0.196613 -0.25178 0)
(-0.199258 -0.215852 0)
(-0.200951 -0.184734 0)
(-0.201772 -0.157945 0)
(-0.201812 -0.135271 0)
(-0.201201 -0.11652 0)
(-0.200089 -0.10141 0)
(-0.19863 -0.0895446 0)
(-0.196964 -0.080434 0)
(-0.195205 -0.0735469 0)
(-0.193439 -0.0683653 0)
(-0.191722 -0.0644272 0)
(-0.190086 -0.0613516 0)
(-0.188545 -0.0588434 0)
(-0.187101 -0.0566877 0)
(-0.185748 -0.0547359 0)
(-0.184479 -0.0528907 0)
(-0.183282 -0.0510919 0)
(-0.182146 -0.0493055 0)
(-0.181062 -0.0475143 0)
(-0.180021 -0.0457118 0)
(-0.179012 -0.0438984 0)
(-0.178029 -0.0420777 0)
(-0.177065 -0.0402548 0)
(-0.176112 -0.0384353 0)
(-0.175166 -0.0366239 0)
(-0.174222 -0.0348244 0)
(-0.173274 -0.033039 0)
(-0.172321 -0.0312684 0)
(-0.171358 -0.0295122 0)
(-0.170384 -0.0277685 0)
(-0.169395 -0.0260349 0)
(-0.168391 -0.024309 0)
(-0.16737 -0.0225889 0)
(-0.166331 -0.0208739 0)
(-0.165273 -0.0191647 0)
(-0.164195 -0.0174623 0)
(-0.163097 -0.0157677 0)
(-0.161982 -0.0140808 0)
(-0.160847 -0.0123999 0)
(-0.159692 -0.0107116 0)
(0.102439 -0.00165134 0)
(0.102745 -0.00265278 0)
(0.103039 -0.0036388 0)
(0.103319 -0.00461437 0)
(0.103587 -0.00558082 0)
(0.10384 -0.00653862 0)
(0.104075 -0.00748935 0)
(0.104291 -0.0084367 0)
(0.104485 -0.00938653 0)
(0.104654 -0.0103459 0)
(0.104793 -0.0113214 0)
(0.104899 -0.0123188 0)
(0.104966 -0.0133421 0)
(0.10499 -0.0143947 0)
(0.104967 -0.0154806 0)
(0.104891 -0.0166066 0)
(0.104754 -0.0177854 0)
(0.104552 -0.0190401 0)
(0.104274 -0.0204108 0)
(0.103911 -0.021962 0)
(0.10345 -0.0237938 0)
(0.102875 -0.026054 0)
(0.102165 -0.028951 0)
(0.101295 -0.032766 0)
(0.100231 -0.03786 0)
(0.0989343 -0.0446719 0)
(0.0973554 -0.053701 0)
(0.0954389 -0.0654726 0)
(0.0931243 -0.0804871 0)
(0.0903529 -0.0991638 0)
(0.087078 -0.121804 0)
(0.0832722 -0.14862 0)
(0.078926 -0.179866 0)
(0.0740302 -0.216072 0)
(0.0686858 -0.258131 0)
(0.0629581 -0.307156 0)
(0.0567796 -0.362729 0)
(0.0502195 -0.417711 0)
(0.042105 -0.465015 0)
(0.0319416 -0.510369 0)
(0.0204366 -0.553596 0)
(0.00777243 -0.593331 0)
(-0.0057626 -0.628261 0)
(-0.0198755 -0.656615 0)
(-0.0342793 -0.675908 0)
(-0.0486733 -0.683648 0)
(-0.0628128 -0.678838 0)
(-0.0765565 -0.662584 0)
(-0.089832 -0.63747 0)
(-0.102589 -0.606299 0)
(-0.114753 -0.571216 0)
(-0.126264 -0.533164 0)
(-0.137123 -0.494317 0)
(-0.147383 -0.456343 0)
(-0.157246 -0.419198 0)
(-0.166606 -0.381054 0)
(-0.174321 -0.338568 0)
(-0.179883 -0.300248 0)
(-0.18405 -0.266041 0)
(-0.187083 -0.234174 0)
(-0.18911 -0.205056 0)
(-0.190296 -0.179914 0)
(-0.190756 -0.158438 0)
(-0.190593 -0.140327 0)
(-0.189917 -0.125269 0)
(-0.188842 -0.112925 0)
(-0.187477 -0.102929 0)
(-0.185924 -0.0948969 0)
(-0.184264 -0.0884504 0)
(-0.182563 -0.0832392 0)
(-0.180868 -0.078958 0)
(-0.179208 -0.0753542 0)
(-0.177602 -0.0722293 0)
(-0.176058 -0.069434 0)
(-0.174578 -0.0668611 0)
(-0.173161 -0.0644367 0)
(-0.171802 -0.0621121 0)
(-0.170497 -0.0598574 0)
(-0.169239 -0.0576549 0)
(-0.168023 -0.0554959 0)
(-0.166843 -0.0533767 0)
(-0.165695 -0.0512967 0)
(-0.164572 -0.0492566 0)
(-0.163472 -0.0472575 0)
(-0.16239 -0.0452999 0)
(-0.161322 -0.0433832 0)
(-0.160266 -0.041506 0)
(-0.159219 -0.0396656 0)
(-0.158179 -0.0378583 0)
(-0.157145 -0.0360797 0)
(-0.156113 -0.0343252 0)
(-0.155084 -0.0325906 0)
(-0.154055 -0.0308725 0)
(-0.153025 -0.029169 0)
(-0.151994 -0.0274795 0)
(-0.15096 -0.0258046 0)
(-0.149923 -0.0241443 0)
(-0.148885 -0.0224977 0)
(-0.147841 -0.0208621 0)
(-0.146793 -0.0192266 0)
(0.0966737 -0.00418099 0)
(0.097054 -0.00510441 0)
(0.0974305 -0.00601396 0)
(0.097804 -0.00691085 0)
(0.0981764 -0.00779337 0)
(0.0985461 -0.00865885 0)
(0.0989124 -0.00950528 0)
(0.0992749 -0.0103325 0)
(0.0996327 -0.0111427 0)
(0.0999847 -0.0119396 0)
(0.10033 -0.0127275 0)
(0.100666 -0.0135103 0)
(0.100991 -0.0142911 0)
(0.101306 -0.0150721 0)
(0.101606 -0.0158554 0)
(0.101892 -0.0166446 0)
(0.102162 -0.0174469 0)
(0.102413 -0.0182773 0)
(0.102642 -0.0191631 0)
(0.102843 -0.0201508 0)
(0.103009 -0.0213147 0)
(0.103128 -0.0227669 0)
(0.103182 -0.0246684 0)
(0.103147 -0.0272406 0)
(0.102988 -0.0307742 0)
(0.10266 -0.0356333 0)
(0.102105 -0.042251 0)
(0.101253 -0.0511113 0)
(0.100025 -0.062717 0)
(0.098335 -0.0775469 0)
(0.0960972 -0.0960191 0)
(0.0932309 -0.118488 0)
(0.0896581 -0.145303 0)
(0.0852878 -0.176938 0)
(0.0799851 -0.21421 0)
(0.0737518 -0.258447 0)
(0.0669646 -0.31119 0)
(0.0593734 -0.361309 0)
(0.0504857 -0.394883 0)
(0.0401927 -0.42817 0)
(0.0287006 -0.461635 0)
(0.0160717 -0.493943 0)
(0.00260723 -0.523661 0)
(-0.0113942 -0.549098 0)
(-0.0256203 -0.567945 0)
(-0.0397374 -0.577527 0)
(-0.0534606 -0.576102 0)
(-0.06662 -0.56397 0)
(-0.0791624 -0.543273 0)
(-0.0910883 -0.51681 0)
(-0.102378 -0.486907 0)
(-0.112922 -0.454531 0)
(-0.122662 -0.420968 0)
(-0.131673 -0.38779 0)
(-0.139969 -0.355227 0)
(-0.147316 -0.323698 0)
(-0.15346 -0.293995 0)
(-0.158429 -0.266287 0)
(-0.162393 -0.240428 0)
(-0.165425 -0.215684 0)
(-0.167582 -0.193052 0)
(-0.16899 -0.173443 0)
(-0.169733 -0.156667 0)
(-0.169928 -0.14244 0)
(-0.169682 -0.130472 0)
(-0.169092 -0.120473 0)
(-0.168246 -0.112147 0)
(-0.167221 -0.105205 0)
(-0.16608 -0.0993779 0)
(-0.164871 -0.0944262 0)
(-0.163632 -0.0901453 0)
(-0.162389 -0.0863685 0)
(-0.161158 -0.0829651 0)
(-0.15995 -0.0798359 0)
(-0.15877 -0.076909 0)
(-0.157621 -0.0741337 0)
(-0.156502 -0.0714761 0)
(-0.155412 -0.0689142 0)
(-0.154348 -0.0664347 0)
(-0.153307 -0.0640302 0)
(-0.152287 -0.0616966 0)
(-0.151285 -0.0594316 0)
(-0.150298 -0.0572337 0)
(-0.149325 -0.0551014 0)
(-0.148362 -0.0530322 0)
(-0.147408 -0.0510228 0)
(-0.146462 -0.0490693 0)
(-0.145522 -0.0471666 0)
(-0.144588 -0.0453092 0)
(-0.143659 -0.0434912 0)
(-0.142733 -0.0417068 0)
(-0.141809 -0.0399507 0)
(-0.140889 -0.0382187 0)
(-0.139969 -0.0365078 0)
(-0.139051 -0.0348168 0)
(-0.138134 -0.0331453 0)
(-0.137217 -0.0314933 0)
(-0.136302 -0.02986 0)
(-0.135387 -0.0282429 0)
(-0.13447 -0.0266342 0)
(0.0909108 -0.00739081 0)
(0.0913662 -0.00832764 0)
(0.0918281 -0.00926091 0)
(0.0922991 -0.0101891 0)
(0.0927824 -0.0111091 0)
(0.0932778 -0.0120173 0)
(0.0937862 -0.0129112 0)
(0.0943094 -0.0137896 0)
(0.0948488 -0.0146539 0)
(0.0954058 -0.015507 0)
(0.0959819 -0.0163532 0)
(0.0965787 -0.0171972 0)
(0.0971978 -0.0180436 0)
(0.0978415 -0.0188966 0)
(0.0985121 -0.0197601 0)
(0.0992124 -0.0206386 0)
(0.0999455 -0.0215382 0)
(0.100714 -0.02247 0)
(0.101521 -0.0234526 0)
(0.102368 -0.0245177 0)
(0.103253 -0.025716 0)
(0.104172 -0.0271247 0)
(0.105116 -0.0288557 0)
(0.106067 -0.0310653 0)
(0.107 -0.033961 0)
(0.107873 -0.0378069 0)
(0.108633 -0.0429218 0)
(0.109208 -0.0496689 0)
(0.109508 -0.0584351 0)
(0.109428 -0.0696016 0)
(0.108848 -0.0835152 0)
(0.107642 -0.100475 0)
(0.105673 -0.120763 0)
(0.102795 -0.144761 0)
(0.0988347 -0.173217 0)
(0.0935489 -0.207763 0)
(0.0869428 -0.251336 0)
(0.0783397 -0.293199 0)
(0.0680557 -0.318004 0)
(0.0571443 -0.34247 0)
(0.0454696 -0.368328 0)
(0.0330012 -0.394553 0)
(0.019917 -0.419923 0)
(0.00642712 -0.442988 0)
(-0.00720889 -0.461819 0)
(-0.020705 -0.473758 0)
(-0.0337866 -0.47649 0)
(-0.0462599 -0.469361 0)
(-0.0580494 -0.453754 0)
(-0.069167 -0.432258 0)
(-0.0796411 -0.407433 0)
(-0.0894459 -0.380985 0)
(-0.0984819 -0.353835 0)
(-0.106692 -0.327074 0)
(-0.114061 -0.301193 0)
(-0.120566 -0.276591 0)
(-0.126219 -0.253571 0)
(-0.131067 -0.232319 0)
(-0.135152 -0.212835 0)
(-0.13845 -0.194704 0)
(-0.140946 -0.178282 0)
(-0.142733 -0.163943 0)
(-0.143943 -0.151523 0)
(-0.14468 -0.14083 0)
(-0.145035 -0.131663 0)
(-0.145089 -0.123815 0)
(-0.144912 -0.117082 0)
(-0.144561 -0.111268 0)
(-0.144087 -0.106196 0)
(-0.143524 -0.101713 0)
(-0.142904 -0.0976888 0)
(-0.142245 -0.0940182 0)
(-0.141564 -0.0906196 0)
(-0.14087 -0.0874315 0)
(-0.140169 -0.0844091 0)
(-0.139465 -0.081521 0)
(-0.138761 -0.0787459 0)
(-0.138057 -0.0760702 0)
(-0.137354 -0.0734854 0)
(-0.13665 -0.0709862 0)
(-0.135946 -0.0685695 0)
(-0.135241 -0.0662327 0)
(-0.134535 -0.0639732 0)
(-0.133826 -0.0617881 0)
(-0.133115 -0.0596735 0)
(-0.132402 -0.0576247 0)
(-0.131687 -0.0556366 0)
(-0.130968 -0.0537031 0)
(-0.130248 -0.0518184 0)
(-0.129525 -0.0499761 0)
(-0.128799 -0.0481703 0)
(-0.128071 -0.0463954 0)
(-0.12734 -0.044647 0)
(-0.126607 -0.0429216 0)
(-0.125872 -0.0412174 0)
(-0.125134 -0.0395338 0)
(-0.124394 -0.0378711 0)
(-0.123655 -0.0362291 0)
(-0.122912 -0.034607 0)
(-0.122168 -0.0330003 0)
(0.084731 -0.010963 0)
(0.0851857 -0.0119809 0)
(0.0856498 -0.0130106 0)
(0.0861261 -0.0140489 0)
(0.0866177 -0.0150929 0)
(0.0871249 -0.0161397 0)
(0.0876488 -0.0171877 0)
(0.0881915 -0.018237 0)
(0.0887549 -0.0192896 0)
(0.0893411 -0.0203491 0)
(0.089952 -0.0214207 0)
(0.0905897 -0.0225105 0)
(0.0912564 -0.0236254 0)
(0.0919545 -0.0247724 0)
(0.0926865 -0.0259586 0)
(0.0934553 -0.0271916 0)
(0.0942638 -0.0284797 0)
(0.0951152 -0.0298333 0)
(0.0960123 -0.031267 0)
(0.096957 -0.0328021 0)
(0.0979499 -0.0344704 0)
(0.0989888 -0.0363184 0)
(0.100067 -0.0384123 0)
(0.101174 -0.0408432 0)
(0.102287 -0.0437323 0)
(0.103377 -0.047234 0)
(0.104399 -0.0515374 0)
(0.105292 -0.0568636 0)
(0.10598 -0.0634583 0)
(0.10637 -0.071578 0)
(0.106352 -0.0814737 0)
(0.105806 -0.0933747 0)
(0.1046 -0.107489 0)
(0.102594 -0.124045 0)
(0.0996095 -0.143384 0)
(0.09538 -0.166134 0)
(0.0893085 -0.193352 0)
(0.0810102 -0.220025 0)
(0.0715881 -0.240074 0)
(0.0619647 -0.260366 0)
(0.0518929 -0.281767 0)
(0.0412418 -0.303797 0)
(0.0301162 -0.325832 0)
(0.018668 -0.346912 0)
(0.00706172 -0.365434 0)
(-0.00450727 -0.379038 0)
(-0.015828 -0.385244 0)
(-0.0266983 -0.382775 0)
(-0.0369911 -0.372206 0)
(-0.0466715 -0.355587 0)
(-0.0557567 -0.335448 0)
(-0.0642589 -0.313928 0)
(-0.0721579 -0.292379 0)
(-0.0794117 -0.271491 0)
(-0.085984 -0.251629 0)
(-0.0918597 -0.23299 0)
(-0.0970468 -0.215711 0)
(-0.101572 -0.199878 0)
(-0.105463 -0.185533 0)
(-0.10874 -0.172668 0)
(-0.111439 -0.161224 0)
(-0.113624 -0.151098 0)
(-0.115364 -0.142185 0)
(-0.11673 -0.134372 0)
(-0.117782 -0.12753 0)
(-0.118577 -0.121529 0)
(-0.119164 -0.116236 0)
(-0.119583 -0.111528 0)
(-0.119868 -0.107293 0)
(-0.120047 -0.103438 0)
(-0.12014 -0.0998811 0)
(-0.120165 -0.0965604 0)
(-0.120133 -0.0934267 0)
(-0.120054 -0.0904438 0)
(-0.119935 -0.0875859 0)
(-0.119779 -0.0848351 0)
(-0.119591 -0.0821797 0)
(-0.119374 -0.0796123 0)
(-0.11913 -0.0771284 0)
(-0.118859 -0.0747251 0)
(-0.118565 -0.0724002 0)
(-0.118248 -0.0701516 0)
(-0.11791 -0.0679767 0)
(-0.117552 -0.0658722 0)
(-0.117175 -0.063834 0)
(-0.11678 -0.0618574 0)
(-0.11637 -0.0599371 0)
(-0.115944 -0.0580675 0)
(-0.115504 -0.0562427 0)
(-0.11505 -0.054457 0)
(-0.114584 -0.0527048 0)
(-0.114107 -0.0509807 0)
(-0.113618 -0.0492803 0)
(-0.11312 -0.0475998 0)
(-0.112611 -0.0459373 0)
(-0.112093 -0.0442919 0)
(-0.111568 -0.0426642 0)
(-0.111036 -0.0410553 0)
(-0.110497 -0.0394657 0)
(-0.109951 -0.0378945 0)
(0.0775297 -0.0141502 0)
(0.0778649 -0.0152369 0)
(0.0782035 -0.0163466 0)
(0.0785453 -0.0174745 0)
(0.0788923 -0.0186176 0)
(0.079244 -0.0197738 0)
(0.0796007 -0.0209426 0)
(0.0799633 -0.0221251 0)
(0.0803326 -0.023324 0)
(0.0807094 -0.0245435 0)
(0.0810944 -0.0257886 0)
(0.0814881 -0.0270656 0)
(0.0818912 -0.0283813 0)
(0.0823039 -0.0297434 0)
(0.0827267 -0.0311595 0)
(0.0831597 -0.032638 0)
(0.0836031 -0.0341873 0)
(0.084057 -0.0358173 0)
(0.084521 -0.0375393 0)
(0.0849943 -0.0393681 0)
(0.0854748 -0.0413238 0)
(0.0859589 -0.0434335 0)
(0.0864407 -0.0457349 0)
(0.0869103 -0.0482782 0)
(0.0873531 -0.0511295 0)
(0.0877478 -0.0543723 0)
(0.0880653 -0.058108 0)
(0.0882665 -0.0624553 0)
(0.0883011 -0.0675454 0)
(0.0881071 -0.0735166 0)
(0.0876105 -0.0805048 0)
(0.0867259 -0.0886335 0)
(0.0853581 -0.0980028 0)
(0.0834002 -0.108674 0)
(0.0807274 -0.120641 0)
(0.0771909 -0.133781 0)
(0.0726107 -0.14786 0)
(0.0669087 -0.162772 0)
(0.0602922 -0.17854 0)
(0.0530682 -0.195203 0)
(0.0453886 -0.21288 0)
(0.0372948 -0.231596 0)
(0.02886 -0.251038 0)
(0.0201818 -0.270431 0)
(0.0113502 -0.288251 0)
(0.00246067 -0.3023 0)
(-0.00635338 -0.310338 0)
(-0.0149315 -0.310986 0)
(-0.0231199 -0.304367 0)
(-0.0308309 -0.291941 0)
(-0.0380467 -0.275856 0)
(-0.0447909 -0.258196 0)
(-0.0510898 -0.240499 0)
(-0.0569508 -0.22366 0)
(-0.0623618 -0.208071 0)
(-0.0673073 -0.193837 0)
(-0.0717796 -0.180961 0)
(-0.0757828 -0.169391 0)
(-0.079334 -0.159057 0)
(-0.0824609 -0.149878 0)
(-0.0851979 -0.141765 0)
(-0.0875815 -0.134619 0)
(-0.0896491 -0.128334 0)
(-0.0914377 -0.122799 0)
(-0.0929834 -0.117905 0)
(-0.0943195 -0.113549 0)
(-0.0954761 -0.109635 0)
(-0.0964791 -0.106077 0)
(-0.0973509 -0.102804 0)
(-0.0981098 -0.099754 0)
(-0.0987708 -0.09688 0)
(-0.099346 -0.0941446 0)
(-0.099845 -0.0915205 0)
(-0.100276 -0.0889883 0)
(-0.100644 -0.086535 0)
(-0.100955 -0.0841524 0)
(-0.101212 -0.0818356 0)
(-0.10142 -0.0795822 0)
(-0.101582 -0.0773908 0)
(-0.1017 -0.0752607 0)
(-0.101777 -0.0731912 0)
(-0.101816 -0.0711811 0)
(-0.101819 -0.0692286 0)
(-0.101789 -0.0673313 0)
(-0.101727 -0.0654858 0)
(-0.101636 -0.0636884 0)
(-0.101518 -0.0619347 0)
(-0.101374 -0.0602201 0)
(-0.101207 -0.0585401 0)
(-0.101017 -0.0568897 0)
(-0.100806 -0.0552643 0)
(-0.100575 -0.0536594 0)
(-0.100326 -0.0520707 0)
(-0.100059 -0.0504949 0)
(-0.0997749 -0.0489298 0)
(-0.0994752 -0.0473748 0)
(-0.0991612 -0.0458308 0)
(-0.098835 -0.0442995 0)
(-0.0984961 -0.0427833 0)
(-0.0981459 -0.0412842 0)
(0.0700172 -0.0160673 0)
(0.0701871 -0.0171302 0)
(0.07035 -0.0182167 0)
(0.0705051 -0.0193208 0)
(0.0706528 -0.0204388 0)
(0.0707919 -0.0215688 0)
(0.0709216 -0.0227106 0)
(0.0710415 -0.0238654 0)
(0.0711512 -0.0250357 0)
(0.07125 -0.0262247 0)
(0.0713371 -0.0274365 0)
(0.0714117 -0.0286758 0)
(0.0714725 -0.0299476 0)
(0.071518 -0.0312576 0)
(0.0715463 -0.0326117 0)
(0.0715556 -0.0340161 0)
(0.0715433 -0.0354772 0)
(0.0715067 -0.0370019 0)
(0.0714426 -0.0385976 0)
(0.0713472 -0.0402733 0)
(0.0712158 -0.0420404 0)
(0.0710427 -0.043914 0)
(0.0708205 -0.0459141 0)
(0.0705395 -0.0480676 0)
(0.0701873 -0.0504096 0)
(0.0697478 -0.0529851 0)
(0.0692003 -0.0558491 0)
(0.068519 -0.0590668 0)
(0.0676725 -0.0627112 0)
(0.0666234 -0.0668603 0)
(0.0653285 -0.071591 0)
(0.0637405 -0.0769719 0)
(0.0618088 -0.0830553 0)
(0.0594828 -0.089874 0)
(0.0567158 -0.0974484 0)
(0.0534732 -0.105813 0)
(0.0497442 -0.115051 0)
(0.0455437 -0.125304 0)
(0.0409069 -0.13677 0)
(0.0358868 -0.149692 0)
(0.0305468 -0.164284 0)
(0.0249441 -0.180584 0)
(0.0191228 -0.198201 0)
(0.0131132 -0.216199 0)
(0.00693734 -0.232979 0)
(0.000636124 -0.246546 0)
(-0.00570684 -0.254988 0)
(-0.0119641 -0.257168 0)
(-0.0179941 -0.253071 0)
(-0.0236919 -0.24373 0)
(-0.0290123 -0.230825 0)
(-0.0339637 -0.216147 0)
(-0.0385813 -0.20118 0)
(-0.0429002 -0.18692 0)
(-0.0469428 -0.173894 0)
(-0.0507157 -0.162272 0)
(-0.0542179 -0.152048 0)
(-0.0574492 -0.143112 0)
(-0.0604132 -0.135332 0)
(-0.0631184 -0.128572 0)
(-0.065578 -0.122702 0)
(-0.0678088 -0.117603 0)
(-0.06983 -0.113161 0)
(-0.0716612 -0.10927 0)
(-0.0733218 -0.105833 0)
(-0.07483 -0.102761 0)
(-0.0762024 -0.099977 0)
(-0.0774537 -0.0974156 0)
(-0.0785965 -0.0950232 0)
(-0.0796416 -0.0927577 0)
(-0.080598 -0.0905874 0)
(-0.081473 -0.0884893 0)
(-0.082273 -0.0864475 0)
(-0.0830031 -0.0844521 0)
(-0.0836677 -0.0824972 0)
(-0.0842706 -0.0805799 0)
(-0.0848153 -0.0786992 0)
(-0.0853049 -0.0768554 0)
(-0.0857422 -0.0750492 0)
(-0.0861302 -0.073281 0)
(-0.0864716 -0.0715512 0)
(-0.0867689 -0.0698597 0)
(-0.087025 -0.0682055 0)
(-0.0872421 -0.0665871 0)
(-0.0874227 -0.0650025 0)
(-0.087569 -0.063449 0)
(-0.0876831 -0.0619237 0)
(-0.0877668 -0.0604234 0)
(-0.0878219 -0.0589447 0)
(-0.0878499 -0.0574841 0)
(-0.0878522 -0.0560379 0)
(-0.0878301 -0.0546024 0)
(-0.0877847 -0.0531741 0)
(-0.0877173 -0.0517498 0)
(-0.0876289 -0.0503274 0)
(-0.0875203 -0.0489063 0)
(-0.0873931 -0.0474877 0)
(-0.0872492 -0.0460739 0)
(-0.0870887 -0.0446684 0)
(-0.0869136 -0.0432756 0)
(0.0626481 -0.0167566 0)
(0.0626649 -0.0177311 0)
(0.0626672 -0.0187238 0)
(0.0626537 -0.0197275 0)
(0.0626238 -0.0207384 0)
(0.0625758 -0.0217544 0)
(0.0625083 -0.0227752 0)
(0.0624206 -0.0238016 0)
(0.0623113 -0.0248353 0)
(0.0621794 -0.0258787 0)
(0.0620234 -0.0269341 0)
(0.0618417 -0.0280043 0)
(0.0616324 -0.0290922 0)
(0.0613936 -0.0302012 0)
(0.0611226 -0.0313348 0)
(0.0608169 -0.0324963 0)
(0.0604734 -0.0336894 0)
(0.0600887 -0.0349176 0)
(0.059659 -0.0361844 0)
(0.0591802 -0.037494 0)
(0.0586474 -0.0388512 0)
(0.0580552 -0.0402626 0)
(0.057397 -0.0417371 0)
(0.056665 -0.0432872 0)
(0.05585 -0.0449299 0)
(0.0549405 -0.046688 0)
(0.0539228 -0.0485909 0)
(0.0527804 -0.0506754 0)
(0.0514941 -0.0529865 0)
(0.0500423 -0.0555766 0)
(0.0484014 -0.0585061 0)
(0.0465473 -0.0618434 0)
(0.044458 -0.0656662 0)
(0.042116 -0.0700651 0)
(0.0395121 -0.07515 0)
(0.0366482 -0.0810592 0)
(0.0335371 -0.087971 0)
(0.0302007 -0.096113 0)
(0.0266663 -0.105753 0)
(0.022961 -0.117152 0)
(0.019104 -0.13046 0)
(0.0151001 -0.145574 0)
(0.0109393 -0.161982 0)
(0.00660332 -0.178686 0)
(0.00208907 -0.194225 0)
(-0.00257438 -0.206928 0)
(-0.00730783 -0.215239 0)
(-0.0119883 -0.218253 0)
(-0.0164966 -0.215867 0)
(-0.0207402 -0.208809 0)
(-0.0246745 -0.198362 0)
(-0.0283028 -0.186001 0)
(-0.0316583 -0.173067 0)
(-0.0347839 -0.160558 0)
(-0.0377173 -0.14908 0)
(-0.0404837 -0.138914 0)
(-0.0430965 -0.130112 0)
(-0.0455605 -0.122594 0)
(-0.0478773 -0.116227 0)
(-0.0500484 -0.110852 0)
(-0.0520772 -0.106317 0)
(-0.0539692 -0.102479 0)
(-0.0557316 -0.0992102 0)
(-0.0573734 -0.0963976 0)
(-0.0589036 -0.0939436 0)
(-0.0603314 -0.0917651 0)
(-0.0616655 -0.0897932 0)
(-0.0629133 -0.0879721 0)
(-0.0640816 -0.0862584 0)
(-0.065176 -0.0846194 0)
(-0.0662013 -0.0830315 0)
(-0.0671614 -0.0814789 0)
(-0.0680597 -0.0799512 0)
(-0.0688991 -0.0784428 0)
(-0.069682 -0.076951 0)
(-0.0704107 -0.075475 0)
(-0.0710874 -0.0740154 0)
(-0.0717141 -0.0725731 0)
(-0.0722928 -0.0711491 0)
(-0.0728256 -0.0697442 0)
(-0.0733145 -0.0683591 0)
(-0.0737616 -0.0669936 0)
(-0.0741691 -0.0656474 0)
(-0.0745389 -0.0643195 0)
(-0.074873 -0.0630089 0)
(-0.0751733 -0.061714 0)
(-0.0754416 -0.0604329 0)
(-0.0756794 -0.0591639 0)
(-0.0758882 -0.0579045 0)
(-0.0760694 -0.0566526 0)
(-0.0762242 -0.0554053 0)
(-0.0763537 -0.0541597 0)
(-0.0764589 -0.0529129 0)
(-0.0765407 -0.0516619 0)
(-0.0766001 -0.050405 0)
(-0.0766378 -0.0491413 0)
(-0.0766551 -0.0478719 0)
(-0.0766537 -0.0465996 0)
(-0.0766339 -0.0453284 0)
(-0.0765972 -0.0440643 0)
(0.0558392 -0.0164434 0)
(0.0557402 -0.0172873 0)
(0.0556232 -0.0181408 0)
(0.0554864 -0.0189966 0)
(0.0553288 -0.0198505 0)
(0.0551488 -0.0207005 0)
(0.0549452 -0.0215462 0)
(0.0547168 -0.0223883 0)
(0.0544625 -0.023228 0)
(0.0541811 -0.0240667 0)
(0.0538711 -0.0249057 0)
(0.0535311 -0.0257463 0)
(0.0531594 -0.0265897 0)
(0.052754 -0.0274373 0)
(0.052313 -0.0282904 0)
(0.051834 -0.0291504 0)
(0.0513145 -0.0300186 0)
(0.0507518 -0.0308963 0)
(0.0501428 -0.0317846 0)
(0.0494846 -0.0326847 0)
(0.0487735 -0.0335979 0)
(0.0480057 -0.0345262 0)
(0.0471771 -0.0354727 0)
(0.0462828 -0.0364424 0)
(0.045317 -0.037443 0)
(0.0442732 -0.038486 0)
(0.0431436 -0.0395885 0)
(0.0419196 -0.0407746 0)
(0.040591 -0.0420779 0)
(0.0391471 -0.0435436 0)
(0.0375769 -0.0452319 0)
(0.0358698 -0.0472216 0)
(0.034017 -0.049615 0)
(0.0320125 -0.0525429 0)
(0.0298543 -0.05617 0)
(0.0275451 -0.0606978 0)
(0.0250916 -0.0663623 0)
(0.0225028 -0.0734193 0)
(0.0197854 -0.0821131 0)
(0.0169393 -0.092622 0)
(0.0139537 -0.104979 0)
(0.0108078 -0.118981 0)
(0.00747804 -0.134097 0)
(0.00395162 -0.149423 0)
(0.000242377 -0.163751 0)
(-0.0035982 -0.175718 0)
(-0.00748214 -0.184045 0)
(-0.011299 -0.187923 0)
(-0.0149423 -0.187131 0)
(-0.0183329 -0.182133 0)
(-0.0214321 -0.173879 0)
(-0.0242428 -0.163568 0)
(-0.026797 -0.152389 0)
(-0.0291408 -0.141304 0)
(-0.0313192 -0.130974 0)
(-0.0333685 -0.121766 0)
(-0.0353134 -0.113816 0)
(-0.037168 -0.107104 0)
(-0.0389398 -0.101525 0)
(-0.040632 -0.0969303 0)
(-0.0422464 -0.0931618 0)
(-0.0437847 -0.0900675 0)
(-0.0452489 -0.0875096 0)
(-0.0466417 -0.0853684 0)
(-0.0479664 -0.0835427 0)
(-0.0492264 -0.0819496 0)
(-0.0504252 -0.0805228 0)
(-0.051566 -0.0792109 0)
(-0.0526518 -0.0779753 0)
(-0.0536849 -0.0767881 0)
(-0.0546678 -0.0756301 0)
(-0.0556021 -0.0744889 0)
(-0.0564894 -0.0733571 0)
(-0.0573311 -0.072231 0)
(-0.0581285 -0.0711093 0)
(-0.0588827 -0.0699918 0)
(-0.0595948 -0.0688795 0)
(-0.060266 -0.0677731 0)
(-0.0608974 -0.0666734 0)
(-0.0614903 -0.0655808 0)
(-0.062046 -0.0644954 0)
(-0.0625658 -0.0634168 0)
(-0.063051 -0.0623445 0)
(-0.0635031 -0.0612778 0)
(-0.0639235 -0.0602159 0)
(-0.0643135 -0.0591577 0)
(-0.0646745 -0.0581024 0)
(-0.0650076 -0.0570489 0)
(-0.065314 -0.0559959 0)
(-0.0655947 -0.0549418 0)
(-0.0658506 -0.0538847 0)
(-0.0660826 -0.0528225 0)
(-0.0662915 -0.0517524 0)
(-0.066478 -0.0506722 0)
(-0.0666428 -0.0495798 0)
(-0.0667863 -0.0484745 0)
(-0.0669096 -0.0473571 0)
(-0.067014 -0.0462303 0)
(-0.0670997 -0.0450985 0)
(-0.0671684 -0.0439682 0)
(0.0498341 -0.0154246 0)
(0.0496618 -0.0161225 0)
(0.049471 -0.0168217 0)
(0.0492598 -0.0175147 0)
(0.0490273 -0.0181974 0)
(0.0487724 -0.0188677 0)
(0.0484938 -0.0195253 0)
(0.0481907 -0.0201706 0)
(0.0478621 -0.0208046 0)
(0.0475068 -0.0214281 0)
(0.0471237 -0.0220418 0)
(0.0467115 -0.022646 0)
(0.046269 -0.023241 0)
(0.0457947 -0.0238271 0)
(0.0452872 -0.0244043 0)
(0.0447447 -0.0249731 0)
(0.0441657 -0.0255337 0)
(0.0435483 -0.0260865 0)
(0.0428906 -0.0266316 0)
(0.0421909 -0.0271693 0)
(0.041447 -0.0276998 0)
(0.040657 -0.0282235 0)
(0.0398187 -0.0287414 0)
(0.0389296 -0.0292555 0)
(0.0379872 -0.02977 0)
(0.0369886 -0.0302925 0)
(0.0359304 -0.0308356 0)
(0.0348092 -0.0314193 0)
(0.033621 -0.0320743 0)
(0.0323616 -0.0328449 0)
(0.0310267 -0.0337938 0)
(0.0296122 -0.035006 0)
(0.0281142 -0.0365938 0)
(0.0265286 -0.0386997 0)
(0.0248517 -0.0414982 0)
(0.0230784 -0.045193 0)
(0.0212018 -0.0500086 0)
(0.0192111 -0.0561719 0)
(0.0170908 -0.0638826 0)
(0.0148201 -0.0732688 0)
(0.0123747 -0.0843295 0)
(0.00973098 -0.0968691 0)
(0.00687363 -0.110439 0)
(0.00380504 -0.124304 0)
(0.000554439 -0.137489 0)
(-0.00281869 -0.148867 0)
(-0.00622557 -0.157354 0)
(-0.00956207 -0.162167 0)
(-0.0127283 -0.162989 0)
(-0.0156462 -0.160037 0)
(-0.0182751 -0.153964 0)
(-0.0206132 -0.145708 0)
(-0.0226891 -0.136285 0)
(-0.0245484 -0.126597 0)
(-0.02624 -0.117326 0)
(-0.0278075 -0.108908 0)
(-0.0292847 -0.101562 0)
(-0.030695 -0.0953398 0)
(-0.032053 -0.0901875 0)
(-0.0333669 -0.0859905 0)
(-0.0346408 -0.0826084 0)
(-0.0358764 -0.0798964 0)
(-0.0370743 -0.077718 0)
(-0.0382348 -0.0759521 0)
(-0.0393579 -0.0744952 0)
(-0.0404437 -0.0732626 0)
(-0.0414924 -0.0721866 0)
(-0.0425043 -0.0712157 0)
(-0.0434799 -0.0703114 0)
(-0.0444195 -0.0694466 0)
(-0.0453235 -0.068603 0)
(-0.0461925 -0.067769 0)
(-0.0470267 -0.0669381 0)
(-0.0478266 -0.0661068 0)
(-0.0485926 -0.0652741 0)
(-0.0493253 -0.0644401 0)
(-0.0500251 -0.0636054 0)
(-0.0506927 -0.0627705 0)
(-0.0513285 -0.061936 0)
(-0.0519333 -0.0611017 0)
(-0.0525078 -0.0602673 0)
(-0.0530527 -0.059432 0)
(-0.0535688 -0.0585951 0)
(-0.054057 -0.0577555 0)
(-0.0545181 -0.0569123 0)
(-0.0549531 -0.0560648 0)
(-0.0553626 -0.0552122 0)
(-0.0557477 -0.0543539 0)
(-0.0561091 -0.0534891 0)
(-0.0564475 -0.0526168 0)
(-0.0567637 -0.0517357 0)
(-0.0570583 -0.0508441 0)
(-0.0573319 -0.0499398 0)
(-0.0575851 -0.0490207 0)
(-0.0578184 -0.0480851 0)
(-0.0580321 -0.0471322 0)
(-0.0582269 -0.0461626 0)
(-0.0584038 -0.0451788 0)
(-0.058563 -0.0441852 0)
(-0.0587058 -0.0431883 0)
(0.0448259 -0.0140018 0)
(0.0446234 -0.0145583 0)
(0.0444038 -0.0151093 0)
(0.0441654 -0.0156477 0)
(0.0439077 -0.0161692 0)
(0.0436298 -0.0166719 0)
(0.0433307 -0.0171552 0)
(0.0430099 -0.0176194 0)
(0.0426663 -0.0180651 0)
(0.0422994 -0.018493 0)
(0.0419081 -0.0189035 0)
(0.0414916 -0.0192964 0)
(0.041049 -0.0196717 0)
(0.0405796 -0.0200291 0)
(0.0400822 -0.0203686 0)
(0.0395561 -0.0206901 0)
(0.0390003 -0.0209937 0)
(0.0384139 -0.0212797 0)
(0.0377959 -0.0215483 0)
(0.0371454 -0.0217996 0)
(0.0364616 -0.0220338 0)
(0.0357436 -0.0222513 0)
(0.0349905 -0.0224528 0)
(0.0342016 -0.0226402 0)
(0.0333758 -0.0228172 0)
(0.0325125 -0.0229906 0)
(0.0316106 -0.0231724 0)
(0.030669 -0.0233815 0)
(0.0296865 -0.0236474 0)
(0.0286612 -0.0240128 0)
(0.027591 -0.0245379 0)
(0.0264726 -0.0253037 0)
(0.0253016 -0.0264153 0)
(0.0240718 -0.0280038 0)
(0.0227743 -0.0302257 0)
(0.021397 -0.0332597 0)
(0.0199241 -0.0372978 0)
(0.0183353 -0.0425316 0)
(0.0166066 -0.049129 0)
(0.0147116 -0.0572023 0)
(0.0126244 -0.0667648 0)
(0.0103245 -0.0776799 0)
(0.00780217 -0.0896111 0)
(0.00506558 -0.101991 0)
(0.00214707 -0.11405 0)
(-0.000893329 -0.124857 0)
(-0.00397267 -0.133483 0)
(-0.00699427 -0.13917 0)
(-0.00986373 -0.14152 0)
(-0.0125061 -0.140537 0)
(-0.014876 -0.136617 0)
(-0.0169607 -0.13045 0)
(-0.0187783 -0.122857 0)
(-0.0203675 -0.114656 0)
(-0.0217756 -0.106512 0)
(-0.0230493 -0.0989087 0)
(-0.0242281 -0.0921332 0)
(-0.0253421 -0.0863123 0)
(-0.0264122 -0.0814532 0)
(-0.0274516 -0.0774871 0)
(-0.0284678 -0.0743037 0)
(-0.0294646 -0.0717771 0)
(-0.0304433 -0.0697816 0)
(-0.0314041 -0.0682015 0)
(-0.0323464 -0.066936 0)
(-0.0332691 -0.0659007 0)
(-0.0341711 -0.0650277 0)
(-0.0350516 -0.0642645 0)
(-0.0359096 -0.0635718 0)
(-0.0367444 -0.0629213 0)
(-0.0375552 -0.0622938 0)
(-0.0383418 -0.0616769 0)
(-0.0391037 -0.0610632 0)
(-0.0398407 -0.0604487 0)
(-0.0405527 -0.0598316 0)
(-0.0412398 -0.0592116 0)
(-0.041902 -0.0585885 0)
(-0.0425395 -0.0579628 0)
(-0.0431526 -0.0573342 0)
(-0.0437414 -0.0567025 0)
(-0.0443064 -0.056067 0)
(-0.0448478 -0.0554267 0)
(-0.0453661 -0.0547805 0)
(-0.0458617 -0.0541273 0)
(-0.0463349 -0.0534658 0)
(-0.0467863 -0.0527953 0)
(-0.0472164 -0.0521148 0)
(-0.0476255 -0.0514238 0)
(-0.0480143 -0.0507215 0)
(-0.0483832 -0.0500072 0)
(-0.0487327 -0.0492797 0)
(-0.0490632 -0.0485376 0)
(-0.0493753 -0.0477792 0)
(-0.0496694 -0.0470026 0)
(-0.0499457 -0.0462063 0)
(-0.0502047 -0.0453895 0)
(-0.0504467 -0.044553 0)
(-0.0506725 -0.043699 0)
(-0.0508821 -0.0428317 0)
(-0.0510768 -0.0419575 0)
(0.0406922 -0.0125184 0)
(0.0404935 -0.0129519 0)
(0.0402804 -0.0133749 0)
(0.0400515 -0.0137804 0)
(0.0398064 -0.0141645 0)
(0.0395446 -0.0145249 0)
(0.0392654 -0.0148609 0)
(0.0389684 -0.0151726 0)
(0.0386528 -0.0154606 0)
(0.0383182 -0.0157255 0)
(0.0379641 -0.0159677 0)
(0.0375899 -0.0161875 0)
(0.0371953 -0.0163848 0)
(0.0367797 -0.0165597 0)
(0.0363429 -0.0167121 0)
(0.0358844 -0.0168421 0)
(0.0354039 -0.0169501 0)
(0.0349011 -0.0170363 0)
(0.0343757 -0.0171011 0)
(0.0338275 -0.017145 0)
(0.0332561 -0.0171684 0)
(0.0326616 -0.0171723 0)
(0.0320436 -0.0171577 0)
(0.0314021 -0.0171268 0)
(0.0307371 -0.0170837 0)
(0.0300485 -0.0170349 0)
(0.0293359 -0.0169915 0)
(0.0285989 -0.0169707 0)
(0.0278366 -0.0169984 0)
(0.0270474 -0.0171121 0)
(0.0262285 -0.0173634 0)
(0.0253758 -0.0178214 0)
(0.0244833 -0.018575 0)
(0.0235422 -0.019734 0)
(0.0225408 -0.0214296 0)
(0.0214639 -0.0238116 0)
(0.0202929 -0.0270434 0)
(0.0190055 -0.0312913 0)
(0.0175772 -0.0367081 0)
(0.0159822 -0.0434083 0)
(0.0141965 -0.0514336 0)
(0.0122011 -0.0607108 0)
(0.00998668 -0.0710082 0)
(0.00755972 -0.0819075 0)
(0.00494683 -0.0928131 0)
(0.00219828 -0.102981 0)
(-0.000614842 -0.111597 0)
(-0.00340575 -0.117977 0)
(-0.00608386 -0.121644 0)
(-0.00857196 -0.122445 0)
(-0.0108161 -0.120562 0)
(-0.0127919 -0.116455 0)
(-0.0145037 -0.110749 0)
(-0.0159796 -0.104131 0)
(-0.0172612 -0.0972239 0)
(-0.0183933 -0.0905226 0)
(-0.0194175 -0.0843695 0)
(-0.0203681 -0.0789587 0)
(-0.0212709 -0.0743632 0)
(-0.0221435 -0.0705681 0)
(-0.0229971 -0.0675035 0)
(-0.0238378 -0.0650704 0)
(-0.0246686 -0.0631604 0)
(-0.0254903 -0.0616675 0)
(-0.0263024 -0.0604961 0)
(-0.0271039 -0.0595642 0)
(-0.0278935 -0.0588046 0)
(-0.0286698 -0.0581643 0)
(-0.0294316 -0.0576031 0)
(-0.0301778 -0.0570917 0)
(-0.0309075 -0.0566096 0)
(-0.0316198 -0.0561432 0)
(-0.0323142 -0.0556838 0)
(-0.0329902 -0.0552265 0)
(-0.0336475 -0.0547684 0)
(-0.034286 -0.0543084 0)
(-0.0349054 -0.0538457 0)
(-0.0355058 -0.05338 0)
(-0.0360871 -0.0529107 0)
(-0.0366496 -0.0524373 0)
(-0.0371932 -0.0519587 0)
(-0.0377181 -0.0514739 0)
(-0.0382245 -0.0509813 0)
(-0.0387126 -0.0504799 0)
(-0.0391824 -0.0499681 0)
(-0.0396343 -0.0494451 0)
(-0.0400684 -0.0489097 0)
(-0.0404849 -0.0483611 0)
(-0.0408842 -0.0477985 0)
(-0.0412665 -0.0472211 0)
(-0.0416322 -0.0466276 0)
(-0.0419815 -0.0460167 0)
(-0.0423148 -0.0453866 0)
(-0.0426323 -0.0447358 0)
(-0.0429344 -0.0440627 0)
(-0.0432214 -0.0433669 0)
(-0.0434935 -0.0426491 0)
(-0.0437513 -0.0419114 0)
(-0.0439948 -0.0411579 0)
(-0.044225 -0.0403949 0)
(0.0372664 -0.0111363 0)
(0.0370918 -0.0114687 0)
(0.0369058 -0.0117872 0)
(0.0367075 -0.0120851 0)
(0.0364967 -0.0123583 0)
(0.0362729 -0.0126046 0)
(0.0360359 -0.0128232 0)
(0.0357852 -0.0130141 0)
(0.0355205 -0.0131782 0)
(0.0352415 -0.0133165 0)
(0.034948 -0.0134296 0)
(0.0346399 -0.0135182 0)
(0.0343169 -0.0135827 0)
(0.033979 -0.0136234 0)
(0.0336262 -0.0136406 0)
(0.0332585 -0.0136346 0)
(0.0328759 -0.0136059 0)
(0.0324784 -0.0135551 0)
(0.0320661 -0.0134827 0)
(0.031639 -0.0133896 0)
(0.0311974 -0.0132766 0)
(0.0307414 -0.0131447 0)
(0.030271 -0.0129953 0)
(0.0297865 -0.0128307 0)
(0.0292878 -0.0126544 0)
(0.0287751 -0.012472 0)
(0.0282479 -0.0122927 0)
(0.0277058 -0.0121305 0)
(0.0271476 -0.012006 0)
(0.0265713 -0.011949 0)
(0.0259739 -0.0120008 0)
(0.0253507 -0.0122164 0)
(0.0246952 -0.0126671 0)
(0.0239984 -0.0134421 0)
(0.0232488 -0.0146492 0)
(0.0224318 -0.0164138 0)
(0.0215298 -0.018876 0)
(0.0205223 -0.0221826 0)
(0.0193865 -0.0264753 0)
(0.0180983 -0.0318702 0)
(0.0166343 -0.0384301 0)
(0.014974 -0.0461308 0)
(0.0131046 -0.0548247 0)
(0.0110251 -0.0642163 0)
(0.0087509 -0.0738544 0)
(0.00631685 -0.0831596 0)
(0.00377928 -0.0914547 0)
(0.00121348 -0.0981614 0)
(-0.00129701 -0.102783 0)
(-0.00367361 -0.105053 0)
(-0.00585491 -0.104975 0)
(-0.00780424 -0.102798 0)
(-0.00951127 -0.0989527 0)
(-0.010989 -0.0939745 0)
(-0.0122672 -0.0884085 0)
(-0.0133836 -0.0827331 0)
(-0.0143771 -0.0773164 0)
(-0.0152823 -0.072404 0)
(-0.0161276 -0.0681282 0)
(-0.0169341 -0.0645297 0)
(-0.0177161 -0.0615844 0)
(-0.0184829 -0.0592278 0)
(-0.0192394 -0.0573747 0)
(-0.0199879 -0.0559344 0)
(-0.020729 -0.0548197 0)
(-0.0214621 -0.0539529 0)
(-0.0221862 -0.0532684 0)
(-0.0229 -0.052713 0)
(-0.0236024 -0.0522459 0)
(-0.0242923 -0.0518365 0)
(-0.0249687 -0.0514628 0)
(-0.025631 -0.0511101 0)
(-0.0262785 -0.0507685 0)
(-0.026911 -0.0504318 0)
(-0.027528 -0.0500966 0)
(-0.0281294 -0.0497608 0)
(-0.0287151 -0.049423 0)
(-0.0292852 -0.0490825 0)
(-0.0298395 -0.0487385 0)
(-0.0303783 -0.04839 0)
(-0.0309015 -0.0480359 0)
(-0.0314093 -0.0476749 0)
(-0.0319017 -0.0473058 0)
(-0.0323788 -0.046927 0)
(-0.0328407 -0.0465371 0)
(-0.0332875 -0.0461351 0)
(-0.0337194 -0.0457197 0)
(-0.0341363 -0.0452899 0)
(-0.0345386 -0.0448447 0)
(-0.0349263 -0.0443831 0)
(-0.0352996 -0.0439036 0)
(-0.0356588 -0.0434049 0)
(-0.036004 -0.042885 0)
(-0.0363356 -0.0423424 0)
(-0.0366538 -0.0417756 0)
(-0.0369587 -0.0411841 0)
(-0.0372506 -0.0405687 0)
(-0.0375301 -0.0399316 0)
(-0.0377971 -0.0392768 0)
(-0.0380523 -0.0386105 0)
(0.0343485 -0.00998231 0)
(0.0342087 -0.01024 0)
(0.034061 -0.0104815 0)
(0.0339046 -0.0107004 0)
(0.0337394 -0.0108927 0)
(0.0335653 -0.011056 0)
(0.0333819 -0.0111896 0)
(0.0331892 -0.0112938 0)
(0.0329869 -0.0113697 0)
(0.032775 -0.0114186 0)
(0.0325534 -0.0114416 0)
(0.0323221 -0.01144 0)
(0.0320812 -0.0114143 0)
(0.0318309 -0.0113654 0)
(0.0315713 -0.0112937 0)
(0.0313025 -0.0111999 0)
(0.0310248 -0.0110846 0)
(0.0307384 -0.0109483 0)
(0.0304435 -0.010792 0)
(0.0301404 -0.0106164 0)
(0.0298292 -0.0104223 0)
(0.0295102 -0.0102106 0)
(0.0291834 -0.00998258 0)
(0.0288491 -0.00973996 0)
(0.0285072 -0.00948546 0)
(0.0281577 -0.00922337 0)
(0.0278002 -0.00896051 0)
(0.0274342 -0.00870735 0)
(0.0270586 -0.00847958 0)
(0.0266714 -0.00829991 0)
(0.0262699 -0.00820016 0)
(0.02585 -0.00822347 0)
(0.0254061 -0.00842647 0)
(0.0249305 -0.00888119 0)
(0.0244133 -0.00967613 0)
(0.023842 -0.0109161 0)
(0.0232013 -0.01272 0)
(0.0224729 -0.0152151 0)
(0.0216358 -0.0185271 0)
(0.020667 -0.0227647 0)
(0.0195424 -0.0279979 0)
(0.0182395 -0.0342319 0)
(0.0167404 -0.0413801 0)
(0.0150361 -0.0492418 0)
(0.013131 -0.0574915 0)
(0.0110473 -0.0656985 0)
(0.00882843 -0.0733475 0)
(0.00653325 -0.0799434 0)
(0.00423022 -0.0850355 0)
(0.00199131 -0.0883063 0)
(-0.000120005 -0.0896272 0)
(-0.00205775 -0.0890735 0)
(-0.00379744 -0.0869028 0)
(-0.00533556 -0.0834956 0)
(-0.00668603 -0.0792926 0)
(-0.00787448 -0.074722 0)
(-0.0089317 -0.0701481 0)
(-0.00988827 -0.0658443 0)
(-0.0107711 -0.0619864 0)
(-0.0116021 -0.0586632 0)
(-0.0123972 -0.0558944 0)
(-0.0131678 -0.0536515 0)
(-0.013921 -0.0518769 0)
(-0.0146609 -0.0504988 0)
(-0.0153897 -0.0494424 0)
(-0.0161077 -0.0486374 0)
(-0.016815 -0.0480217 0)
(-0.0175109 -0.0475435 0)
(-0.0181946 -0.0471616 0)
(-0.0188653 -0.0468444 0)
(-0.0195225 -0.0465688 0)
(-0.0201656 -0.0463186 0)
(-0.0207943 -0.0460828 0)
(-0.0214084 -0.0458541 0)
(-0.0220077 -0.0456281 0)
(-0.0225922 -0.0454021 0)
(-0.023162 -0.0451743 0)
(-0.0237173 -0.0449434 0)
(-0.024258 -0.0447085 0)
(-0.0247845 -0.0444685 0)
(-0.0252969 -0.0442222 0)
(-0.0257953 -0.0439683 0)
(-0.0262799 -0.0437056 0)
(-0.0267509 -0.0434327 0)
(-0.0272082 -0.0431481 0)
(-0.0276521 -0.0428506 0)
(-0.0280827 -0.042539 0)
(-0.0285 -0.0422122 0)
(-0.0289043 -0.0418691 0)
(-0.0292955 -0.0415084 0)
(-0.029674 -0.0411287 0)
(-0.0300397 -0.0407282 0)
(-0.0303931 -0.0403052 0)
(-0.0307341 -0.0398577 0)
(-0.0310631 -0.0393845 0)
(-0.0313802 -0.0388848 0)
(-0.0316857 -0.0383594 0)
(-0.03198 -0.0378106 0)
(-0.0322632 -0.0372424 0)
(-0.0325359 -0.0366609 0)
(0.0318145 -0.00910164 0)
(0.0317125 -0.00931028 0)
(0.0316056 -0.00950159 0)
(0.0314933 -0.0096693 0)
(0.0313757 -0.00980931 0)
(0.0312528 -0.00991938 0)
(0.0311244 -0.00999878 0)
(0.0309905 -0.0100481 0)
(0.0308511 -0.0100686 0)
(0.0307061 -0.0100621 0)
(0.0305557 -0.0100302 0)
(0.0303999 -0.00997455 0)
(0.030239 -0.00989626 0)
(0.0300731 -0.0097963 0)
(0.0299026 -0.00967548 0)
(0.0297277 -0.0095345 0)
(0.0295488 -0.00937404 0)
(0.0293661 -0.00919472 0)
(0.0291799 -0.0089972 0)
(0.0289905 -0.00878207 0)
(0.0287981 -0.00854999 0)
(0.028603 -0.00830168 0)
(0.0284052 -0.00803803 0)
(0.0282051 -0.00776036 0)
(0.0280025 -0.00747065 0)
(0.0277977 -0.00717207 0)
(0.0275903 -0.0068696 0)
(0.0273801 -0.00657102 0)
(0.0271663 -0.00628808 0)
(0.0269476 -0.00603796 0)
(0.0267221 -0.0058451 0)
(0.0264868 -0.00574303 0)
(0.0262374 -0.00577632 0)
(0.025968 -0.00600229 0)
(0.0256707 -0.00649204 0)
(0.025335 -0.00733047 0)
(0.0249478 -0.00861445 0)
(0.0244929 -0.0104486 0)
(0.0239509 -0.0129376 0)
(0.0232997 -0.0161749 0)
(0.0225154 -0.0202271 0)
(0.0215739 -0.0251153 0)
(0.0204542 -0.0307958 0)
(0.0191413 -0.0371428 0)
(0.0176312 -0.0439381 0)
(0.015933 -0.0508746 0)
(0.0140715 -0.0575807 0)
(0.0120885 -0.0636504 0)
(0.0100381 -0.0687017 0)
(0.00798038 -0.0724177 0)
(0.00597438 -0.074604 0)
(0.00407027 -0.0752179 0)
(0.00230359 -0.0743742 0)
(0.000692724 -0.0723161 0)
(-0.000760225 -0.0693705 0)
(-0.00206606 -0.065892 0)
(-0.00324366 -0.0622123 0)
(-0.00431533 -0.0586057 0)
(-0.00530306 -0.0552708 0)
(-0.00622613 -0.0523293 0)
(-0.00710011 -0.0498359 0)
(-0.00793675 -0.0477936 0)
(-0.00874437 -0.0461703 0)
(-0.00952858 -0.0449138 0)
(-0.0102929 -0.0439632 0)
(-0.0110393 -0.0432573 0)
(-0.0117689 -0.0427396 0)
(-0.0124823 -0.0423613 0)
(-0.0131795 -0.0420824 0)
(-0.0138605 -0.0418716 0)
(-0.0145253 -0.0417052 0)
(-0.015174 -0.041566 0)
(-0.0158064 -0.0414423 0)
(-0.0164228 -0.0413261 0)
(-0.0170234 -0.0412121 0)
(-0.0176083 -0.0410972 0)
(-0.0181779 -0.040979 0)
(-0.0187325 -0.0408562 0)
(-0.0192724 -0.0407275 0)
(-0.019798 -0.0405919 0)
(-0.0203097 -0.0404483 0)
(-0.0208076 -0.0402955 0)
(-0.0212922 -0.0401325 0)
(-0.0217636 -0.0399579 0)
(-0.0222221 -0.0397707 0)
(-0.0226679 -0.0395696 0)
(-0.023101 -0.0393535 0)
(-0.0235217 -0.0391213 0)
(-0.02393 -0.0388718 0)
(-0.0243262 -0.0386036 0)
(-0.0247103 -0.0383153 0)
(-0.0250825 -0.0380051 0)
(-0.0254429 -0.0376709 0)
(-0.0257917 -0.0373108 0)
(-0.0261291 -0.0369233 0)
(-0.0264554 -0.0365078 0)
(-0.0267706 -0.0360647 0)
(-0.0270754 -0.0355963 0)
(-0.0273696 -0.0351066 0)
(-0.0276541 -0.0346016 0)
(0.0295745 -0.00848668 0)
(0.0295067 -0.00866798 0)
(0.0294363 -0.00883171 0)
(0.029363 -0.0089717 0)
(0.029287 -0.00908384 0)
(0.0292084 -0.00916589 0)
(0.0291271 -0.00921718 0)
(0.0290432 -0.00923839 0)
(0.0289568 -0.00923112 0)
(0.0288679 -0.00919743 0)
(0.0287768 -0.00913942 0)
(0.0286836 -0.009059 0)
(0.0285885 -0.00895776 0)
(0.0284918 -0.008837 0)
(0.0283939 -0.00869772 0)
(0.028295 -0.00854074 0)
(0.0281955 -0.00836671 0)
(0.0280958 -0.00817619 0)
(0.027996 -0.00796967 0)
(0.0278964 -0.00774758 0)
(0.0277973 -0.0075104 0)
(0.0276989 -0.00725868 0)
(0.0276014 -0.00699313 0)
(0.027505 -0.00671482 0)
(0.0274098 -0.00642536 0)
(0.027316 -0.00612727 0)
(0.0272235 -0.00582448 0)
(0.0271324 -0.00552307 0)
(0.0270421 -0.00523214 0)
(0.0269521 -0.00496503 0)
(0.026861 -0.00474065 0)
(0.026767 -0.00458501 0)
(0.0266668 -0.00453267 0)
(0.0265562 -0.00462809 0)
(0.0264288 -0.00492632 0)
(0.0262763 -0.00549305 0)
(0.0260875 -0.00640311 0)
(0.0258487 -0.00773736 0)
(0.0255428 -0.00957728 0)
(0.0251499 -0.0119969 0)
(0.0246481 -0.0150525 0)
(0.0240146 -0.0187696 0)
(0.0232277 -0.0231301 0)
(0.0222698 -0.0280592 0)
(0.0211299 -0.0334149 0)
(0.0198066 -0.0389801 0)
(0.0183117 -0.0445029 0)
(0.0166705 -0.049685 0)
(0.0149199 -0.0542197 0)
(0.0131054 -0.0578284 0)
(0.0112762 -0.060307 0)
(0.00947968 -0.0615522 0)
(0.0077556 -0.0615828 0)
(0.00613215 -0.0605302 0)
(0.00462453 -0.058615 0)
(0.00323585 -0.0561078 0)
(0.00195986 -0.0532877 0)
(0.000784474 -0.0504058 0)
(-0.000305019 -0.0476608 0)
(-0.00132327 -0.0451896 0)
(-0.00228322 -0.0430683 0)
(-0.00319559 -0.0413226 0)
(-0.00406865 -0.0399411 0)
(-0.0049085 -0.0388879 0)
(-0.00571955 -0.0381149 0)
(-0.00650487 -0.0375697 0)
(-0.00726662 -0.0372021 0)
(-0.00800631 -0.0369673 0)
(-0.00872502 -0.0368276 0)
(-0.00942357 -0.0367529 0)
(-0.0101026 -0.0367202 0)
(-0.0107628 -0.0367126 0)
(-0.0114045 -0.0367181 0)
(-0.0120284 -0.0367284 0)
(-0.0126349 -0.0367382 0)
(-0.0132246 -0.0367439 0)
(-0.0137979 -0.0367433 0)
(-0.0143555 -0.0367346 0)
(-0.0148977 -0.0367168 0)
(-0.0154252 -0.0366887 0)
(-0.0159385 -0.0366496 0)
(-0.0164379 -0.0365985 0)
(-0.0169239 -0.0365345 0)
(-0.0173968 -0.0364569 0)
(-0.0178571 -0.0363647 0)
(-0.018305 -0.0362572 0)
(-0.0187406 -0.0361333 0)
(-0.0191643 -0.0359923 0)
(-0.019576 -0.0358331 0)
(-0.0199761 -0.0356542 0)
(-0.0203645 -0.0354542 0)
(-0.0207414 -0.0352313 0)
(-0.021107 -0.0349832 0)
(-0.0214612 -0.034708 0)
(-0.0218045 -0.0344039 0)
(-0.0221368 -0.0340701 0)
(-0.0224584 -0.0337069 0)
(-0.0227696 -0.0333163 0)
(-0.0230707 -0.0329022 0)
(-0.0233622 -0.0324706 0)
(0.0275463 -0.00810195 0)
(0.0275063 -0.00827005 0)
(0.0274651 -0.0084207 0)
(0.0274224 -0.00854793 0)
(0.0273786 -0.00864774 0)
(0.0273336 -0.00871798 0)
(0.0272877 -0.00875809 0)
(0.0272409 -0.0087689 0)
(0.0271934 -0.00875226 0)
(0.0271453 -0.00871048 0)
(0.027097 -0.00864596 0)
(0.0270485 -0.00856093 0)
(0.0270004 -0.00845723 0)
(0.0269527 -0.00833631 0)
(0.0269059 -0.00819929 0)
(0.0268603 -0.00804693 0)
(0.0268161 -0.00787979 0)
(0.0267736 -0.00769826 0)
(0.026733 -0.00750263 0)
(0.0266946 -0.00729317 0)
(0.0266585 -0.00707018 0)
(0.0266249 -0.00683412 0)
(0.0265939 -0.00658561 0)
(0.0265657 -0.00632563 0)
(0.0265404 -0.00605565 0)
(0.026518 -0.00577787 0)
(0.0264987 -0.00549562 0)
(0.0264824 -0.00521388 0)
(0.0264689 -0.00493994 0)
(0.0264576 -0.00468427 0)
(0.0264476 -0.00446153 0)
(0.0264375 -0.00429167 0)
(0.0264247 -0.00420095 0)
(0.0264058 -0.00422291 0)
(0.0263756 -0.0043988 0)
(0.0263274 -0.00477754 0)
(0.026252 -0.00541461 0)
(0.0261379 -0.00636986 0)
(0.0259711 -0.00770373 0)
(0.0257352 -0.00947189 0)
(0.0254116 -0.0117182 0)
(0.0249809 -0.0144665 0)
(0.024424 -0.017711 0)
(0.0237237 -0.0214079 0)
(0.0228676 -0.0254656 0)
(0.0218507 -0.0297418 0)
(0.0206767 -0.0340644 0)
(0.0193577 -0.0382179 0)
(0.017916 -0.0419709 0)
(0.0163825 -0.0451005 0)
(0.0147939 -0.0474256 0)
(0.0131887 -0.0488303 0)
(0.0116033 -0.0492852 0)
(0.0100679 -0.0488499 0)
(0.00860446 -0.0476632 0)
(0.00722561 -0.0459193 0)
(0.00593535 -0.0438363 0)
(0.00473099 -0.0416256 0)
(0.00360547 -0.0394674 0)
(0.00254964 -0.0374958 0)
(0.001554 -0.035795 0)
(0.000609889 -0.0344037 0)
(-0.000290134 -0.0333239 0)
(-0.00115199 -0.0325323 0)
(-0.00198024 -0.0319906 0)
(-0.00277843 -0.0316543 0)
(-0.00354928 -0.0314788 0)
(-0.00429486 -0.0314233 0)
(-0.00501681 -0.0314529 0)
(-0.00571645 -0.0315394 0)
(-0.00639488 -0.031661 0)
(-0.00705307 -0.0318015 0)
(-0.00769185 -0.0319496 0)
(-0.00831199 -0.0320974 0)
(-0.00891421 -0.0322398 0)
(-0.00949917 -0.0323734 0)
(-0.0100675 -0.032496 0)
(-0.0106199 -0.0326061 0)
(-0.0111569 -0.0327026 0)
(-0.0116791 -0.0327848 0)
(-0.012187 -0.0328518 0)
(-0.0126812 -0.0329031 0)
(-0.0131622 -0.0329381 0)
(-0.0136304 -0.0329563 0)
(-0.0140863 -0.0329574 0)
(-0.0145302 -0.0329408 0)
(-0.0149623 -0.0329063 0)
(-0.0153831 -0.0328531 0)
(-0.0157925 -0.0327805 0)
(-0.0161909 -0.0326874 0)
(-0.0165783 -0.0325725 0)
(-0.0169548 -0.0324338 0)
(-0.0173204 -0.0322692 0)
(-0.0176754 -0.0320765 0)
(-0.0180197 -0.0318539 0)
(-0.0183536 -0.0316002 0)
(-0.0186771 -0.0313155 0)
(-0.0189905 -0.0310016 0)
(-0.019294 -0.0306619 0)
(-0.0195881 -0.0303023 0)
(0.0256211 -0.00789344 0)
(0.0255998 -0.00805538 0)
(0.0255778 -0.00820008 0)
(0.0255549 -0.00832184 0)
(0.0255316 -0.00841691 0)
(0.0255078 -0.00848332 0)
(0.0254837 -0.0085207 0)
(0.0254594 -0.00853011 0)
(0.0254353 -0.00851359 0)
(0.0254114 -0.00847371 0)
(0.025388 -0.0084131 0)
(0.0253655 -0.00833416 0)
(0.0253441 -0.00823886 0)
(0.025324 -0.0081287 0)
(0.0253056 -0.00800468 0)
(0.0252891 -0.00786744 0)
(0.0252747 -0.00771728 0)
(0.0252626 -0.00755435 0)
(0.0252529 -0.00737866 0)
(0.0252458 -0.00719027 0)
(0.0252414 -0.00698933 0)
(0.0252396 -0.00677616 0)
(0.0252405 -0.00655133 0)
(0.0252443 -0.00631575 0)
(0.0252508 -0.00607073 0)
(0.0252602 -0.00581824 0)
(0.0252722 -0.00556106 0)
(0.0252869 -0.00530323 0)
(0.0253038 -0.0050505 0)
(0.0253224 -0.00481091 0)
(0.0253417 -0.00459557 0)
(0.0253604 -0.00441939 0)
(0.0253763 -0.00430184 0)
(0.0253863 -0.00426754 0)
(0.0253862 -0.00434665 0)
(0.0253703 -0.00457472 0)
(0.0253314 -0.00499201 0)
(0.0252602 -0.00564192 0)
(0.0251457 -0.00656852 0)
(0.0249753 -0.00781297 0)
(0.0247347 -0.00940883 0)
(0.0244089 -0.0113765 0)
(0.0239829 -0.0137166 0)
(0.0234433 -0.0164042 0)
(0.0227792 -0.0193825 0)
(0.0219843 -0.0225609 0)
(0.0210577 -0.0258142 0)
(0.0200053 -0.0289891 0)
(0.0188397 -0.0319152 0)
(0.0175805 -0.0344232 0)
(0.0162528 -0.0363644 0)
(0.0148849 -0.0376338 0)
(0.0135058 -0.0381883 0)
(0.0121423 -0.0380512 0)
(0.0108168 -0.0373096 0)
(0.00954549 -0.0361004 0)
(0.00833793 -0.0345878 0)
(0.00719767 -0.0329399 0)
(0.00612349 -0.0313073 0)
(0.00511096 -0.0298088 0)
(0.00415402 -0.0285241 0)
(0.00324614 -0.0274949 0)
(0.00238116 -0.0267304 0)
(0.00155368 -0.0262153 0)
(0.000759249 -0.0259194 0)
(-5.73737e-06 -0.0258047 0)
(-0.000744124 -0.0258317 0)
(-0.00145813 -0.0259636 0)
(-0.00214953 -0.0261683 0)
(-0.00281975 -0.0264199 0)
(-0.00346996 -0.026698 0)
(-0.00410112 -0.0269877 0)
(-0.0047141 -0.0272783 0)
(-0.00530964 -0.0275627 0)
(-0.00588842 -0.0278361 0)
(-0.00645106 -0.0280956 0)
(-0.00699815 -0.0283392 0)
(-0.00753026 -0.0285656 0)
(-0.00804792 -0.028774 0)
(-0.00855166 -0.0289637 0)
(-0.00904199 -0.0291342 0)
(-0.00951941 -0.0292849 0)
(-0.00998438 -0.0294157 0)
(-0.0104374 -0.0295263 0)
(-0.0108788 -0.0296165 0)
(-0.011309 -0.0296865 0)
(-0.0117284 -0.0297362 0)
(-0.0121372 -0.0297653 0)
(-0.0125357 -0.0297736 0)
(-0.0129241 -0.0297604 0)
(-0.0133024 -0.0297244 0)
(-0.0136708 -0.029664 0)
(-0.0140294 -0.0295773 0)
(-0.0143781 -0.029462 0)
(-0.0147171 -0.0293162 0)
(-0.0150463 -0.0291385 0)
(-0.015366 -0.0289287 0)
(-0.0156762 -0.0286882 0)
(-0.015977 -0.0284201 0)
(-0.016269 -0.0281298 0)
(0.0237124 -0.00778464 0)
(0.0236998 -0.00794247 0)
(0.0236866 -0.00808319 0)
(0.0236726 -0.00820147 0)
(0.0236581 -0.00829383 0)
(0.0236433 -0.00835857 0)
(0.0236283 -0.00839556 0)
(0.0236133 -0.00840604 0)
(0.0235985 -0.00839223 0)
(0.0235841 -0.00835685 0)
(0.0235703 -0.00830264 0)
(0.0235573 -0.00823206 0)
(0.0235454 -0.00814707 0)
(0.0235348 -0.00804906 0)
(0.0235255 -0.00793885 0)
(0.0235177 -0.00781681 0)
(0.0235115 -0.00768297 0)
(0.023507 -0.00753716 0)
(0.0235042 -0.00737915 0)
(0.0235031 -0.00720877 0)
(0.0235036 -0.00702599 0)
(0.0235057 -0.00683098 0)
(0.0235093 -0.0066242 0)
(0.0235144 -0.00640638 0)
(0.0235208 -0.00617865 0)
(0.0235283 -0.00594259 0)
(0.0235368 -0.0057004 0)
(0.023546 -0.00545517 0)
(0.0235554 -0.00521117 0)
(0.0235642 -0.00497433 0)
(0.0235715 -0.00475272 0)
(0.0235758 -0.00455713 0)
(0.0235752 -0.00440162 0)
(0.0235669 -0.00430398 0)
(0.0235475 -0.00428604 0)
(0.0235123 -0.00437365 0)
(0.0234558 -0.00459628 0)
(0.023371 -0.00498606 0)
(0.0232498 -0.00557611 0)
(0.0230832 -0.00639817 0)
(0.0228611 -0.00747934 0)
(0.022573 -0.00883798 0)
(0.0222087 -0.010479 0)
(0.0217584 -0.0123888 0)
(0.0212144 -0.0145309 0)
(0.0205711 -0.0168425 0)
(0.0198265 -0.0192346 0)
(0.018983 -0.0215947 0)
(0.0180476 -0.0237963 0)
(0.0170321 -0.0257105 0)
(0.015953 -0.0272194 0)
(0.0148297 -0.028238 0)
(0.0136838 -0.028726 0)
(0.0125365 -0.0286926 0)
(0.0114068 -0.0281963 0)
(0.0103102 -0.0273359 0)
(0.00925754 -0.0262349 0)
(0.00825479 -0.0250235 0)
(0.00730386 -0.0238223 0)
(0.00640334 -0.022729 0)
(0.00554966 -0.0218123 0)
(0.00473812 -0.02111 0)
(0.00396379 -0.0206326 0)
(0.00322197 -0.0203696 0)
(0.00250859 -0.0202962 0)
(0.00182025 -0.0203802 0)
(0.00115424 -0.0205869 0)
(0.000508424 -0.0208837 0)
(-0.000118846 -0.0212417 0)
(-0.000728846 -0.0216371 0)
(-0.00132256 -0.0220515 0)
(-0.00190077 -0.0224711 0)
(-0.0024641 -0.0228864 0)
(-0.0030131 -0.0232906 0)
(-0.00354822 -0.0236796 0)
(-0.00406987 -0.0240507 0)
(-0.00457843 -0.0244022 0)
(-0.00507425 -0.024733 0)
(-0.00555771 -0.0250421 0)
(-0.00602915 -0.0253292 0)
(-0.00648892 -0.0255936 0)
(-0.00693739 -0.0258349 0)
(-0.00737492 -0.026053 0)
(-0.00780187 -0.0262479 0)
(-0.00821858 -0.0264195 0)
(-0.00862539 -0.0265681 0)
(-0.0090226 -0.026694 0)
(-0.00941048 -0.0267975 0)
(-0.00978927 -0.0268784 0)
(-0.0101591 -0.0269366 0)
(-0.0105202 -0.0269711 0)
(-0.0108726 -0.0269807 0)
(-0.0112163 -0.0269636 0)
(-0.0115514 -0.0269177 0)
(-0.0118778 -0.0268411 0)
(-0.0121956 -0.0267323 0)
(-0.0125048 -0.0265909 0)
(-0.0128055 -0.0264179 0)
(-0.0130977 -0.026216 0)
(-0.0133817 -0.0259902 0)
(0.0217825 -0.00770581 0)
(0.0217698 -0.00785866 0)
(0.0217562 -0.00799447 0)
(0.0217416 -0.00810838 0)
(0.0217263 -0.00819723 0)
(0.0217103 -0.00825961 0)
(0.0216939 -0.00829556 0)
(0.0216772 -0.00830644 0)
(0.0216603 -0.0082945 0)
(0.0216435 -0.00826242 0)
(0.0216269 -0.00821285 0)
(0.0216107 -0.00814811 0)
(0.0215949 -0.00806996 0)
(0.0215796 -0.00797955 0)
(0.0215649 -0.00787745 0)
(0.0215506 -0.00776375 0)
(0.0215369 -0.00763824 0)
(0.0215235 -0.00750051 0)
(0.0215104 -0.00735013 0)
(0.0214974 -0.00718677 0)
(0.0214845 -0.00701025 0)
(0.0214715 -0.00682063 0)
(0.0214581 -0.00661821 0)
(0.0214443 -0.00640355 0)
(0.0214297 -0.00617748 0)
(0.0214142 -0.00594114 0)
(0.0213975 -0.00569608 0)
(0.021379 -0.00544443 0)
(0.0213584 -0.00518912 0)
(0.0213347 -0.00493421 0)
(0.021307 -0.00468526 0)
(0.0212741 -0.00444987 0)
(0.0212341 -0.00423805 0)
(0.0211849 -0.00406277 0)
(0.0211237 -0.0039402 0)
(0.0210472 -0.00388994 0)
(0.0209512 -0.00393481 0)
(0.0208311 -0.00410028 0)
(0.0206813 -0.00441331 0)
(0.020496 -0.00490061 0)
(0.0202686 -0.00558596 0)
(0.0199924 -0.00648695 0)
(0.0196607 -0.00761101 0)
(0.0192672 -0.00895112 0)
(0.0188065 -0.010482 0)
(0.0182745 -0.0121573 0)
(0.0176693 -0.0139096 0)
(0.0169915 -0.0156528 0)
(0.0162447 -0.017289 0)
(0.015436 -0.0187186 0)
(0.0145761 -0.0198505 0)
(0.0136784 -0.0206194 0)
(0.0127581 -0.0209932 0)
(0.0118312 -0.0209777 0)
(0.0109123 -0.0206164 0)
(0.0100143 -0.0199839 0)
(0.00914664 -0.0191748 0)
(0.00831545 -0.0182899 0)
(0.00752345 -0.0174238 0)
(0.00677052 -0.0166543 0)
(0.00605448 -0.0160368 0)
(0.00537188 -0.0156025 0)
(0.00471873 -0.0153605 0)
(0.00409108 -0.0153025 0)
(0.00348535 -0.0154075 0)
(0.0028985 -0.0156478 0)
(0.00232808 -0.0159936 0)
(0.00177221 -0.0164159 0)
(0.0012295 -0.0168893 0)
(0.000698902 -0.0173925 0)
(0.000179701 -0.0179091 0)
(-0.00032863 -0.0184265 0)
(-0.00082645 -0.0189362 0)
(-0.00131402 -0.0194322 0)
(-0.00179153 -0.0199107 0)
(-0.00225912 -0.0203694 0)
(-0.00271693 -0.0208065 0)
(-0.00316506 -0.0212212 0)
(-0.00360365 -0.0216124 0)
(-0.00403282 -0.0219797 0)
(-0.00445272 -0.0223223 0)
(-0.00486352 -0.0226398 0)
(-0.0052654 -0.0229319 0)
(-0.00565857 -0.0231986 0)
(-0.00604324 -0.0234398 0)
(-0.00641964 -0.023656 0)
(-0.00678799 -0.0238475 0)
(-0.0071485 -0.0240148 0)
(-0.00750134 -0.0241582 0)
(-0.00784665 -0.0242777 0)
(-0.00818455 -0.0243728 0)
(-0.00851509 -0.0244425 0)
(-0.00883828 -0.0244855 0)
(-0.00915412 -0.0244997 0)
(-0.00946255 -0.0244833 0)
(-0.00976351 -0.0244349 0)
(-0.010057 -0.0243538 0)
(-0.010343 -0.0242407 0)
(-0.0106215 -0.0240979 0)
(-0.0108928 -0.0239298 0)
(0.019829 -0.00759854 0)
(0.0198092 -0.00774351 0)
(0.0197882 -0.00787133 0)
(0.0197656 -0.0079776 0)
(0.0197418 -0.00805957 0)
(0.0197169 -0.00811607 0)
(0.0196909 -0.00814735 0)
(0.019664 -0.00815481 0)
(0.0196365 -0.00814065 0)
(0.0196084 -0.00810741 0)
(0.0195798 -0.0080575 0)
(0.0195507 -0.00799295 0)
(0.0195212 -0.0079152 0)
(0.0194913 -0.00782506 0)
(0.0194609 -0.00772279 0)
(0.0194298 -0.00760819 0)
(0.0193979 -0.00748082 0)
(0.0193651 -0.00734008 0)
(0.019331 -0.00718542 0)
(0.0192957 -0.00701641 0)
(0.0192588 -0.00683283 0)
(0.0192201 -0.00663467 0)
(0.0191796 -0.00642211 0)
(0.0191368 -0.00619556 0)
(0.0190917 -0.00595559 0)
(0.019044 -0.00570294 0)
(0.0189933 -0.00543859 0)
(0.0189392 -0.00516386 0)
(0.0188813 -0.00488058 0)
(0.0188188 -0.00459139 0)
(0.0187512 -0.00430009 0)
(0.0186772 -0.00401206 0)
(0.0185957 -0.00373474 0)
(0.0185051 -0.0034781 0)
(0.0184036 -0.00325503 0)
(0.018289 -0.00308161 0)
(0.0181587 -0.00297706 0)
(0.0180097 -0.00296333 0)
(0.0178387 -0.00306415 0)
(0.0176421 -0.00330346 0)
(0.0174159 -0.00370306 0)
(0.0171559 -0.00427965 0)
(0.0168578 -0.00504133 0)
(0.0165175 -0.00598387 0)
(0.016131 -0.00708763 0)
(0.0156952 -0.00831551 0)
(0.0152084 -0.00961311 0)
(0.0146702 -0.0109114 0)
(0.0140826 -0.0121327 0)
(0.01345 -0.0131983 0)
(0.0127795 -0.0140394 0)
(0.0120801 -0.0146058 0)
(0.0113627 -0.0148742 0)
(0.0106386 -0.014851 0)
(0.00991871 -0.0145715 0)
(0.00921274 -0.0140949 0)
(0.00852818 -0.0134951 0)
(0.00787002 -0.0128512 0)
(0.0072407 -0.0122369 0)
(0.00664041 -0.0117133 0)
(0.00606762 -0.0113239 0)
(0.00551966 -0.0110932 0)
(0.00499331 -0.0110279 0)
(0.00448526 -0.0111204 0)
(0.00399247 -0.0113528 0)
(0.00351232 -0.0117015 0)
(0.00304272 -0.0121407 0)
(0.00258208 -0.0126451 0)
(0.00212926 -0.0131925 0)
(0.00168348 -0.0137642 0)
(0.00124428 -0.0143456 0)
(0.000811362 -0.0149256 0)
(0.000384615 -0.0154965 0)
(-3.59952e-05 -0.0160531 0)
(-0.000450432 -0.0165919 0)
(-0.000858621 -0.0171107 0)
(-0.00126047 -0.0176081 0)
(-0.0016559 -0.0180829 0)
(-0.00204481 -0.0185343 0)
(-0.00242715 -0.0189614 0)
(-0.00280286 -0.0193636 0)
(-0.00317192 -0.0197401 0)
(-0.00353435 -0.0200903 0)
(-0.00389018 -0.0204141 0)
(-0.00423949 -0.0207114 0)
(-0.00458237 -0.0209824 0)
(-0.00491892 -0.0212276 0)
(-0.00524927 -0.0214473 0)
(-0.00557352 -0.0216421 0)
(-0.00589175 -0.0218123 0)
(-0.00620403 -0.0219576 0)
(-0.00651037 -0.0220774 0)
(-0.00681076 -0.0221705 0)
(-0.00710512 -0.0222353 0)
(-0.00739337 -0.0222701 0)
(-0.00767538 -0.0222734 0)
(-0.00795107 -0.0222443 0)
(-0.00822037 -0.0221834 0)
(-0.00848317 -0.0220925 0)
(-0.0087396 -0.0219754 0)
(0.0178662 -0.00741687 0)
(0.017834 -0.00755027 0)
(0.0178 -0.00766619 0)
(0.017764 -0.00776069 0)
(0.0177264 -0.00783143 0)
(0.0176871 -0.00787754 0)
(0.0176463 -0.0078994 0)
(0.0176042 -0.00789847 0)
(0.0175609 -0.00787682 0)
(0.0175163 -0.00783677 0)
(0.0174707 -0.0077804 0)
(0.017424 -0.00770939 0)
(0.0173762 -0.00762478 0)
(0.0173271 -0.00752703 0)
(0.0172766 -0.00741611 0)
(0.0172245 -0.00729157 0)
(0.0171707 -0.00715279 0)
(0.0171149 -0.00699913 0)
(0.0170569 -0.00682998 0)
(0.0169966 -0.00664495 0)
(0.0169337 -0.00644384 0)
(0.0168681 -0.00622665 0)
(0.0167996 -0.00599357 0)
(0.0167281 -0.00574493 0)
(0.0166534 -0.00548113 0)
(0.0165753 -0.00520267 0)
(0.0164936 -0.00491016 0)
(0.016408 -0.00460439 0)
(0.0163183 -0.00428652 0)
(0.016224 -0.00395835 0)
(0.0161247 -0.00362264 0)
(0.0160197 -0.00328355 0)
(0.0159084 -0.00294712 0)
(0.0157899 -0.00262175 0)
(0.0156631 -0.0023186 0)
(0.0155268 -0.0020519 0)
(0.0153796 -0.0018389 0)
(0.0152199 -0.00169951 0)
(0.0150456 -0.00165535 0)
(0.0148548 -0.00172828 0)
(0.014645 -0.00193819 0)
(0.0144134 -0.00230021 0)
(0.0141574 -0.00282168 0)
(0.0138738 -0.00349896 0)
(0.0135599 -0.00431499 0)
(0.0132131 -0.005238 0)
(0.012832 -0.00622205 0)
(0.0124157 -0.00720993 0)
(0.0119655 -0.0081383 0)
(0.0114839 -0.0089447 0)
(0.0109756 -0.00957533 0)
(0.0104469 -0.00999255 0)
(0.00990507 -0.0101804 0)
(0.00935816 -0.0101466 0)
(0.00881387 -0.00992167 0)
(0.00827904 -0.00955417 0)
(0.00775906 -0.00910381 0)
(0.00725758 -0.00863348 0)
(0.00677638 -0.00820162 0)
(0.00631562 -0.00785621 0)
(0.00587413 -0.00763115 0)
(0.00544984 -0.00754512 0)
(0.00504022 -0.00760254 0)
(0.00464265 -0.00779614 0)
(0.00425466 -0.00811031 0)
(0.00387411 -0.00852456 0)
(0.00349929 -0.00901661 0)
(0.00312891 -0.00956479 0)
(0.00276205 -0.0101497 0)
(0.00239815 -0.010755 0)
(0.00203687 -0.011368 0)
(0.0016781 -0.0119788 0)
(0.00132185 -0.0125807 0)
(0.000968224 -0.0131691 0)
(0.000617387 -0.0137408 0)
(0.000269536 -0.0142938 0)
(-7.51199e-05 -0.0148267 0)
(-0.000416366 -0.0153383 0)
(-0.000753995 -0.0158278 0)
(-0.00108781 -0.0162941 0)
(-0.00141765 -0.0167362 0)
(-0.00174336 -0.0171533 0)
(-0.00206481 -0.0175446 0)
(-0.00238193 -0.0179096 0)
(-0.00269466 -0.018248 0)
(-0.00300297 -0.0185598 0)
(-0.00330687 -0.0188453 0)
(-0.00360637 -0.0191049 0)
(-0.00390149 -0.0193391 0)
(-0.00419227 -0.0195483 0)
(-0.0044787 -0.0197325 0)
(-0.00476075 -0.0198914 0)
(-0.00503834 -0.0200242 0)
(-0.00531138 -0.0201294 0)
(-0.00557971 -0.0202056 0)
(-0.00584314 -0.0202514 0)
(-0.00610152 -0.0202659 0)
(-0.00635468 -0.0202492 0)
(-0.00660244 -0.0202029 0)
(-0.00684479 -0.02013 0)
(0.0159226 -0.00712676 0)
(0.0158743 -0.0072454 0)
(0.015824 -0.00734637 0)
(0.0157714 -0.00742621 0)
(0.0157168 -0.00748298 0)
(0.0156603 -0.00751604 0)
(0.0156021 -0.0075259 0)
(0.0155423 -0.00751393 0)
(0.0154809 -0.007482 0)
(0.0154182 -0.00743204 0)
(0.0153541 -0.00736578 0)
(0.0152887 -0.00728443 0)
(0.0152217 -0.00718868 0)
(0.0151532 -0.00707867 0)
(0.0150829 -0.00695412 0)
(0.0150106 -0.00681447 0)
(0.0149363 -0.00665908 0)
(0.0148596 -0.00648731 0)
(0.0147805 -0.00629868 0)
(0.0146987 -0.00609291 0)
(0.0146143 -0.00586993 0)
(0.014527 -0.00562987 0)
(0.0144367 -0.00537298 0)
(0.0143435 -0.00509964 0)
(0.0142473 -0.00481023 0)
(0.0141479 -0.00450516 0)
(0.0140453 -0.00418486 0)
(0.0139394 -0.00384991 0)
(0.0138301 -0.00350114 0)
(0.0137172 -0.00313995 0)
(0.0136006 -0.00276859 0)
(0.0134799 -0.00239063 0)
(0.0133549 -0.00201142 0)
(0.0132253 -0.00163855 0)
(0.0130905 -0.00128228 0)
(0.01295 -0.000955758 0)
(0.0128031 -0.000675025 0)
(0.0126491 -0.000458562 0)
(0.012487 -0.000326361 0)
(0.0123155 -0.000298436 0)
(0.0121332 -0.000392736 0)
(0.0119386 -0.000622603 0)
(0.0117296 -0.000993997 0)
(0.0115041 -0.00150289 0)
(0.0112601 -0.00213336 0)
(0.0109956 -0.00285684 0)
(0.0107091 -0.00363312 0)
(0.0104 -0.00441326 0)
(0.0100687 -0.00514423 0)
(0.00971697 -0.00577487 0)
(0.00934786 -0.00626219 0)
(0.00896556 -0.00657715 0)
(0.0085749 -0.00670925 0)
(0.00818089 -0.00666724 0)
(0.00778845 -0.00647837 0)
(0.00740191 -0.00618421 0)
(0.00702475 -0.00583472 0)
(0.00665926 -0.00548177 0)
(0.00630656 -0.00517304 0)
(0.00596664 -0.00494727 0)
(0.00563862 -0.00483141 0)
(0.005321 -0.00483976 0)
(0.00501196 -0.00497482 0)
(0.00470958 -0.00522943 0)
(0.0044121 -0.00558952 0)
(0.00411794 -0.00603699 0)
(0.00382586 -0.00655226 0)
(0.00353492 -0.00711638 0)
(0.00324445 -0.00771234 0)
(0.00295407 -0.00832588 0)
(0.00266355 -0.00894571 0)
(0.00237287 -0.00956337 0)
(0.00208207 -0.0101728 0)
(0.00179131 -0.0107699 0)
(0.00150077 -0.011352 0)
(0.00121068 -0.0119171 0)
(0.000921259 -0.012464 0)
(0.000632755 -0.0129915 0)
(0.000345401 -0.0134986 0)
(5.94193e-05 -0.0139841 0)
(-0.000224977 -0.0144471 0)
(-0.000507593 -0.0148864 0)
(-0.000788254 -0.015301 0)
(-0.00106681 -0.0156903 0)
(-0.00134312 -0.0160537 0)
(-0.0016171 -0.0163909 0)
(-0.00188866 -0.0167021 0)
(-0.00215774 -0.0169876 0)
(-0.00242428 -0.0172478 0)
(-0.00268824 -0.0174832 0)
(-0.00294955 -0.0176939 0)
(-0.00320814 -0.0178799 0)
(-0.00346388 -0.0180405 0)
(-0.00371662 -0.0181749 0)
(-0.00396615 -0.0182816 0)
(-0.00421224 -0.0183595 0)
(-0.00445466 -0.0184078 0)
(-0.00469316 -0.0184262 0)
(-0.00492748 -0.0184161 0)
(-0.00515749 -0.0183799 0)
(0.0140554 -0.00670835 0)
(0.0139904 -0.00680981 0)
(0.0139231 -0.00689369 0)
(0.0138535 -0.00695705 0)
(0.0137817 -0.00699829 0)
(0.0137078 -0.00701701 0)
(0.0136321 -0.00701376 0)
(0.0135548 -0.00698978 0)
(0.0134759 -0.00694665 0)
(0.0133956 -0.00688592 0)
(0.0133139 -0.00680888 0)
(0.0132309 -0.00671635 0)
(0.0131464 -0.00660864 0)
(0.0130605 -0.00648565 0)
(0.0129729 -0.00634694 0)
(0.0128835 -0.00619191 0)
(0.0127923 -0.00601994 0)
(0.0126991 -0.00583054 0)
(0.0126039 -0.00562337 0)
(0.0125065 -0.00539832 0)
(0.0124069 -0.00515551 0)
(0.0123052 -0.00489522 0)
(0.0122012 -0.00461785 0)
(0.0120949 -0.00432385 0)
(0.0119865 -0.00401367 0)
(0.0118759 -0.00368772 0)
(0.0117631 -0.00334641 0)
(0.0116482 -0.00299023 0)
(0.0115311 -0.0026199 0)
(0.0114119 -0.00223665 0)
(0.0112906 -0.00184255 0)
(0.0111671 -0.00144095 0)
(0.0110414 -0.00103692 0)
(0.0109134 -0.000637764 0)
(0.0107832 -0.000253337 0)
(0.0106505 0.00010371 0)
(0.0105153 0.000418033 0)
(0.0103773 0.00067209 0)
(0.0102364 0.000847108 0)
(0.0100919 0.000924618 0)
(0.00994319 0.000888481 0)
(0.00978913 0.000727271 0)
(0.00962851 0.000436742 0)
(0.00945981 2.20044e-05 0)
(0.00928141 -0.000501069 0)
(0.00909172 -0.00110564 0)
(0.00888936 -0.00175523 0)
(0.00867343 -0.00240671 0)
(0.00844389 -0.00301464 0)
(0.00820172 -0.00353634 0)
(0.00794939 -0.00393883 0)
(0.00769024 -0.00419655 0)
(0.00742689 -0.00429661 0)
(0.00716159 -0.00424917 0)
(0.00689681 -0.00408011 0)
(0.00663489 -0.00382721 0)
(0.00637768 -0.00353472 0)
(0.0061264 -0.00324787 0)
(0.00588153 -0.00300776 0)
(0.0056429 -0.00284742 0)
(0.0054098 -0.00278953 0)
(0.00518121 -0.00284573 0)
(0.0049559 -0.00301742 0)
(0.00473263 -0.00329761 0)
(0.00451028 -0.00367331 0)
(0.00428788 -0.00412804 0)
(0.00406467 -0.00464408 0)
(0.0038401 -0.0052043 0)
(0.00361382 -0.00579331 0)
(0.00338562 -0.00639824 0)
(0.00315544 -0.00700888 0)
(0.0029233 -0.0076176 0)
(0.0026893 -0.00821894 0)
(0.00245359 -0.00880919 0)
(0.00221634 -0.00938584 0)
(0.00197776 -0.0099472 0)
(0.00173803 -0.010492 0)
(0.00149739 -0.0110191 0)
(0.00125602 -0.0115274 0)
(0.00101412 -0.0120159 0)
(0.000771898 -0.0124833 0)
(0.000529527 -0.0129284 0)
(0.000287179 -0.0133502 0)
(4.50132e-05 -0.0137477 0)
(-0.000196822 -0.0141204 0)
(-0.000438189 -0.0144679 0)
(-0.000678965 -0.0147902 0)
(-0.00091903 -0.0150874 0)
(-0.00115827 -0.01536 0)
(-0.00139658 -0.0156084 0)
(-0.00163382 -0.0158329 0)
(-0.00186985 -0.0160337 0)
(-0.00210452 -0.0162103 0)
(-0.0023376 -0.0163621 0)
(-0.00256886 -0.0164882 0)
(-0.00279803 -0.0165873 0)
(-0.00302483 -0.0166589 0)
(-0.00324896 -0.0167027 0)
(-0.0034701 -0.0167197 0)
(-0.00368802 -0.0167119 0)
(0.0123193 -0.00616978 0)
(0.0122394 -0.00625289 0)
(0.0121572 -0.0063188 0)
(0.0120725 -0.00636503 0)
(0.0119857 -0.00639034 0)
(0.0118968 -0.00639451 0)
(0.0118062 -0.00637811 0)
(0.011714 -0.00634226 0)
(0.0116203 -0.00628829 0)
(0.0115255 -0.00621742 0)
(0.0114294 -0.00613058 0)
(0.0113322 -0.00602826 0)
(0.0112339 -0.00591049 0)
(0.0111345 -0.00577699 0)
(0.0110339 -0.0056272 0)
(0.0109322 -0.00546051 0)
(0.0108294 -0.00527636 0)
(0.0107253 -0.00507433 0)
(0.0106199 -0.00485422 0)
(0.0105134 -0.00461606 0)
(0.0104056 -0.00436011 0)
(0.0102967 -0.00408679 0)
(0.0101866 -0.0037966 0)
(0.0100755 -0.00349008 0)
(0.00996332 -0.00316774 0)
(0.00985026 -0.00283004 0)
(0.00973635 -0.0024774 0)
(0.00962166 -0.00211029 0)
(0.00950629 -0.00172946 0)
(0.00939033 -0.00133612 0)
(0.00927387 -0.000932403 0)
(0.00915704 -0.000521708 0)
(0.00903999 -0.000109214 0)
(0.0089229 0.000297696 0)
(0.00880602 0.000689097 0)
(0.00868958 0.00105239 0)
(0.00857387 0.00137249 0)
(0.00845903 0.0016324 0)
(0.00834512 0.0018143 0)
(0.00823213 0.00190112 0)
(0.00811985 0.00187856 0)
(0.00800775 0.0017373 0)
(0.00789501 0.00147526 0)
(0.00778053 0.00109934 0)
(0.00766297 0.000626412 0)
(0.00754087 8.2993e-05 0)
(0.00741288 -0.000496433 0)
(0.00727787 -0.00107262 0)
(0.00713504 -0.00160591 0)
(0.0069841 -0.00206152 0)
(0.00682734 -0.00242882 0)
(0.00666687 -0.00266238 0)
(0.00650276 -0.00274538 0)
(0.00633603 -0.00269182 0)
(0.00616823 -0.00252825 0)
(0.00600079 -0.00229105 0)
(0.00583478 -0.00202151 0)
(0.00567079 -0.00176115 0)
(0.00550891 -0.00154734 0)
(0.00534885 -0.00140996 0)
(0.00518997 -0.0013694 0)
(0.00503148 -0.00143607 0)
(0.00487252 -0.00161107 0)
(0.00471225 -0.00188786 0)
(0.00454997 -0.00225439 0)
(0.0043851 -0.00269539 0)
(0.00421723 -0.0031944 0)
(0.00404611 -0.00373542 0)
(0.0038716 -0.0043041 0)
(0.00369366 -0.00488835 0)
(0.00351235 -0.00547858 0)
(0.00332775 -0.00606758 0)
(0.00314001 -0.00665022 0)
(0.00294929 -0.00722295 0)
(0.00275575 -0.00778341 0)
(0.00255958 -0.00832996 0)
(0.00236097 -0.00886134 0)
(0.0021601 -0.00937644 0)
(0.00195716 -0.00987415 0)
(0.00175233 -0.0103533 0)
(0.00154579 -0.0108126 0)
(0.00133771 -0.011251 0)
(0.00112826 -0.0116672 0)
(0.000917594 -0.0120603 0)
(0.000705872 -0.0124296 0)
(0.000493248 -0.0127748 0)
(0.000279874 -0.0130957 0)
(6.5905e-05 -0.0133927 0)
(-0.000148498 -0.0136661 0)
(-0.000363165 -0.0139165 0)
(-0.000577914 -0.0141442 0)
(-0.000792543 -0.0143495 0)
(-0.00100683 -0.0145323 0)
(-0.00122053 -0.0146921 0)
(-0.00143336 -0.0148282 0)
(-0.00164503 -0.0149396 0)
(-0.00185523 -0.0150258 0)
(-0.00206367 -0.0150865 0)
(-0.00227 -0.0151224 0)
(-0.00247395 -0.0151353 0)
(0.0107787 -0.00552892 0)
(0.0106881 -0.00559343 0)
(0.0105952 -0.00564143 0)
(0.0104997 -0.00567087 0)
(0.0104022 -0.00568081 0)
(0.0103027 -0.00567119 0)
(0.0102014 -0.00564262 0)
(0.0100987 -0.00559612 0)
(0.00999468 -0.00553281 0)
(0.00988958 -0.0054537 0)
(0.00978354 -0.00535943 0)
(0.0096767 -0.00525026 0)
(0.00956916 -0.00512602 0)
(0.009461 -0.00498628 0)
(0.00935231 -0.0048304 0)
(0.00924313 -0.00465773 0)
(0.00913352 -0.00446772 0)
(0.00902355 -0.00426 0)
(0.00891327 -0.00403445 0)
(0.00880275 -0.00379119 0)
(0.00869208 -0.00353056 0)
(0.00858134 -0.00325306 0)
(0.00847064 -0.00295928 0)
(0.00836008 -0.00264982 0)
(0.00824977 -0.00232524 0)
(0.00813983 -0.00198602 0)
(0.00803035 -0.00163262 0)
(0.00792148 -0.00126559 0)
(0.00781332 -0.000885723 0)
(0.00770603 -0.000494415 0)
(0.00759977 -9.39857e-05 0)
(0.00749477 0.000311865 0)
(0.00739131 0.000717603 0)
(0.00728972 0.00111546 0)
(0.00719038 0.00149517 0)
(0.00709371 0.00184388 0)
(0.00700018 0.00214651 0)
(0.00691023 0.00238642 0)
(0.00682422 0.00254661 0)
(0.00674237 0.00261134 0)
(0.0066647 0.0025681 0)
(0.00659095 0.00240976 0)
(0.00652057 0.00213648 0)
(0.00645271 0.00175726 0)
(0.00638628 0.00129043 0)
(0.00632003 0.000763155 0)
(0.00625266 0.00020947 0)
(0.00618305 -0.000332922 0)
(0.0061104 -0.000826741 0)
(0.00603416 -0.00124027 0)
(0.00595184 -0.00156285 0)
(0.00586173 -0.00175363 0)
(0.00576595 -0.00180501 0)
(0.00566688 -0.00173175 0)
(0.00556607 -0.00155895 0)
(0.00546462 -0.00132052 0)
(0.00536318 -0.00105461 0)
(0.005262 -0.000799463 0)
(0.00516093 -0.000589461 0)
(0.00505947 -0.000452188 0)
(0.00495692 -0.000406603 0)
(0.00485248 -0.000462513 0)
(0.00474533 -0.000621176 0)
(0.00463478 -0.000876739 0)
(0.00452024 -0.00121815 0)
(0.00440128 -0.00163122 0)
(0.00427765 -0.00210055 0)
(0.00414922 -0.00261106 0)
(0.00401596 -0.00314911 0)
(0.00387793 -0.00370315 0)
(0.00373524 -0.00426396 0)
(0.00358805 -0.00482457 0)
(0.00343653 -0.00538001 0)
(0.00328087 -0.00592682 0)
(0.00312126 -0.0064627 0)
(0.0029579 -0.00698604 0)
(0.002791 -0.0074956 0)
(0.00262077 -0.00799027 0)
(0.00244743 -0.00846894 0)
(0.00227119 -0.0089304 0)
(0.00209228 -0.00937342 0)
(0.00191089 -0.00979672 0)
(0.00172724 -0.0101991 0)
(0.00154154 -0.0105797 0)
(0.00135398 -0.0109378 0)
(0.00116475 -0.0112729 0)
(0.000974061 -0.0115851 0)
(0.000782101 -0.0118746 0)
(0.000589079 -0.012142 0)
(0.000395209 -0.0123878 0)
(0.000200719 -0.0126126 0)
(5.85375e-06 -0.0128169 0)
(-0.000189125 -0.0130005 0)
(-0.000383935 -0.0131632 0)
(-0.000578282 -0.0133044 0)
(-0.000771855 -0.0134233 0)
(-0.000964352 -0.0135192 0)
(-0.00115548 -0.013592 0)
(-0.00134492 -0.013642 0)
(-0.00153242 -0.0136708 0)
(0.00947873 -0.00482957 0)
(0.00938345 -0.00487526 0)
(0.00928571 -0.00490521 0)
(0.00918547 -0.00491777 0)
(0.00908298 -0.00491231 0)
(0.00897849 -0.00488897 0)
(0.00887224 -0.00484846 0)
(0.00876445 -0.00479179 0)
(0.00865536 -0.00471999 0)
(0.00854521 -0.00463392 0)
(0.00843424 -0.00453406 0)
(0.00832263 -0.00442049 0)
(0.00821059 -0.0042929 0)
(0.00809825 -0.00415072 0)
(0.00798576 -0.00399323 0)
(0.00787326 -0.00381971 0)
(0.00776088 -0.00362959 0)
(0.00764874 -0.00342251 0)
(0.00753698 -0.00319837 0)
(0.00742574 -0.00295733 0)
(0.00731515 -0.00269978 0)
(0.00720535 -0.00242625 0)
(0.0070965 -0.00213736 0)
(0.00698874 -0.00183374 0)
(0.00688221 -0.00151593 0)
(0.00677704 -0.00118444 0)
(0.00667338 -0.000839746 0)
(0.00657137 -0.000482439 0)
(0.00647115 -0.000113455 0)
(0.00637289 0.000265623 0)
(0.00627682 0.000652172 0)
(0.0061832 0.0010421 0)
(0.00609231 0.00142939 0)
(0.00600453 0.00180577 0)
(0.00592031 0.0021605 0)
(0.00584012 0.00248045 0)
(0.00576446 0.00275048 0)
(0.00569381 0.0029543 0)
(0.00562854 0.00307572 0)
(0.00556887 0.00310032 0)
(0.0055148 0.00301738 0)
(0.00546607 0.00282184 0)
(0.00542215 0.00251606 0)
(0.00538221 0.002111 0)
(0.00534525 0.00162648 0)
(0.00531013 0.00109048 0)
(0.00527574 0.000537116 0)
(0.00524093 3.72225e-06 0)
(0.00520492 -0.000473182 0)
(0.00516699 -0.000861271 0)
(0.00512599 -0.00113234 0)
(0.0050815 -0.00127703 0)
(0.00503443 -0.00129694 0)
(0.00498589 -0.00120423 0)
(0.00493681 -0.001021 0)
(0.00488777 -0.000777848 0)
(0.00483896 -0.000509572 0)
(0.00479014 -0.000251248 0)
(0.00474076 -3.4682e-05 0)
(0.00468998 0.000114362 0)
(0.00463687 0.000177871 0)
(0.00458042 0.000146163 0)
(0.00451966 1.74454e-05 0)
(0.00445385 -0.000203409 0)
(0.00438241 -0.000506568 0)
(0.00430487 -0.000879088 0)
(0.00422099 -0.00130668 0)
(0.00413068 -0.00177519 0)
(0.00403396 -0.00227167 0)
(0.00393095 -0.00278505 0)
(0.0038218 -0.00330642 0)
(0.00370674 -0.00382902 0)
(0.00358597 -0.00434795 0)
(0.00345973 -0.00485986 0)
(0.00332827 -0.00536249 0)
(0.00319184 -0.00585428 0)
(0.0030507 -0.00633405 0)
(0.00290514 -0.00680075 0)
(0.00275545 -0.0072533 0)
(0.00260192 -0.00769053 0)
(0.00244487 -0.00811119 0)
(0.00228459 -0.00851399 0)
(0.0021214 -0.00889774 0)
(0.0019556 -0.00926142 0)
(0.00178748 -0.00960429 0)
(0.00161733 -0.00992596 0)
(0.00144541 -0.0102264 0)
(0.00127199 -0.0105058 0)
(0.00109733 -0.0107649 0)
(0.000921696 -0.0110042 0)
(0.000745352 -0.0112244 0)
(0.000568571 -0.011426 0)
(0.000391635 -0.0116092 0)
(0.000214838 -0.0117737 0)
(3.84814e-05 -0.0119189 0)
(-0.000137128 -0.0120442 0)
(-0.000311699 -0.0121488 0)
(-0.000484958 -0.0122323 0)
(-0.000656619 -0.0122948 0)
(-0.000826455 -0.0123375 0)
(0.008422 -0.00411875 0)
(0.00832786 -0.0041449 0)
(0.0082312 -0.00415592 0)
(0.00813199 -0.00415059 0)
(0.00803042 -0.00412865 0)
(0.00792673 -0.00409052 0)
(0.00782115 -0.0040371 0)
(0.00771393 -0.00396946 0)
(0.00760533 -0.00388865 0)
(0.0074956 -0.00379545 0)
(0.00738499 -0.00369022 0)
(0.00727372 -0.0035729 0)
(0.00716201 -0.00344307 0)
(0.00705005 -0.00330003 0)
(0.00693803 -0.00314297 0)
(0.00682613 -0.00297112 0)
(0.00671455 -0.00278388 0)
(0.00660347 -0.00258088 0)
(0.00649308 -0.00236205 0)
(0.0063836 -0.00212756 0)
(0.00627521 -0.00187782 0)
(0.00616814 -0.00161338 0)
(0.00606258 -0.00133484 0)
(0.00595873 -0.00104279 0)
(0.00585677 -0.000737726 0)
(0.00575689 -0.000420117 0)
(0.00565925 -9.04217e-05 0)
(0.00556403 0.000250734 0)
(0.00547141 0.000602309 0)
(0.0053816 0.000962514 0)
(0.00529478 0.00132842 0)
(0.00521122 0.00169551 0)
(0.00513124 0.00205734 0)
(0.00505518 0.00240516 0)
(0.00498345 0.00272789 0)
(0.00491646 0.00301222 0)
(0.0048546 0.00324319 0)
(0.00479816 0.00340508 0)
(0.00474733 0.00348275 0)
(0.00470209 0.00346327 0)
(0.00466221 0.00333777 0)
(0.00462717 0.00310323 0)
(0.00459626 0.00276394 0)
(0.00456855 0.0023324 0)
(0.00454303 0.00182937 0)
(0.00451872 0.00128286 0)
(0.00449479 0.000726152 0)
(0.00447072 0.000194949 0)
(0.00444632 -0.000276481 0)
(0.00442185 -0.000658002 0)
(0.00439826 -0.000922761 0)
(0.00437628 -0.00106462 0)
(0.00435623 -0.00108594 0)
(0.0043385 -0.000998081 0)
(0.0043233 -0.000821833 0)
(0.00431061 -0.000585528 0)
(0.00430007 -0.000321441 0)
(0.00429095 -6.22585e-05 0)
(0.00428223 0.000162133 0)
(0.00427265 0.000327175 0)
(0.00426087 0.00041525 0)
(0.00424557 0.000416297 0)
(0.00422554 0.000327534 0)
(0.00419968 0.000152443 0)
(0.00416714 -0.000100713 0)
(0.00412738 -0.000420532 0)
(0.00408005 -0.000794095 0)
(0.00402495 -0.00120836 0)
(0.00396209 -0.0016512 0)
(0.00389155 -0.00211213 0)
(0.00381349 -0.0025826 0)
(0.00372814 -0.00305605 0)
(0.00363572 -0.00352774 0)
(0.00353652 -0.00399439 0)
(0.0034308 -0.00445385 0)
(0.00331886 -0.00490466 0)
(0.00320102 -0.00534578 0)
(0.00307762 -0.00577626 0)
(0.00294902 -0.00619517 0)
(0.00281561 -0.00660142 0)
(0.00267779 -0.00699383 0)
(0.00253598 -0.00737114 0)
(0.00239059 -0.00773214 0)
(0.00224204 -0.00807573 0)
(0.00209074 -0.00840109 0)
(0.00193707 -0.0087077 0)
(0.00178142 -0.0089954 0)
(0.00162413 -0.00926439 0)
(0.00146552 -0.00951515 0)
(0.00130593 -0.00974832 0)
(0.00114564 -0.00996453 0)
(0.000984952 -0.0101643 0)
(0.000824165 -0.0103478 0)
(0.000663571 -0.0105148 0)
(0.000503465 -0.0106649 0)
(0.000344144 -0.0107972 0)
(0.000185886 -0.0109109 0)
(2.89486e-05 -0.0110053 0)
(-0.000126406 -0.0110804 0)
(-0.000279964 -0.0111368 0)
(0.00757388 -0.00343733 0)
(0.00748503 -0.00344391 0)
(0.00739367 -0.0034358 0)
(0.00729979 -0.00341226 0)
(0.00720359 -0.00337342 0)
(0.00710524 -0.00332 0)
(0.00700495 -0.00325307 0)
(0.00690297 -0.00317381 0)
(0.00679954 -0.00308328 0)
(0.00669488 -0.00298218 0)
(0.00658923 -0.00287081 0)
(0.00648277 -0.00274902 0)
(0.00637574 -0.00261629 0)
(0.00626833 -0.00247188 0)
(0.00616078 -0.00231497 0)
(0.00605331 -0.00214482 0)
(0.00594616 -0.00196088 0)
(0.00583959 -0.00176285 0)
(0.00573386 -0.00155072 0)
(0.00562924 -0.00132473 0)
(0.00552603 -0.00108531 0)
(0.0054245 -0.000832999 0)
(0.00532493 -0.000568346 0)
(0.00522756 -0.000291855 0)
(0.00513264 -3.94028e-06 0)
(0.00504039 0.000295043 0)
(0.00495106 0.000604704 0)
(0.00486486 0.000924428 0)
(0.00478195 0.00125311 0)
(0.00470251 0.00158882 0)
(0.00462678 0.00192839 0)
(0.00455498 0.00226705 0)
(0.00448735 0.00259805 0)
(0.00442416 0.00291249 0)
(0.00436565 0.00319923 0)
(0.00431203 0.00344522 0)
(0.00426339 0.00363609 0)
(0.00421971 0.00375711 0)
(0.00418079 0.00379451 0)
(0.0041462 0.00373701 0)
(0.00411527 0.00357753 0)
(0.00408715 0.00331467 0)
(0.00406082 0.00295395 0)
(0.00403523 0.00250838 0)
(0.00400936 0.00199831 0)
(0.00398245 0.00145026 0)
(0.00395407 0.000895044 0)
(0.00392427 0.000365059 0)
(0.00389366 -0.000108952 0)
(0.00386352 -0.000500677 0)
(0.00383701 -0.000792401 0)
(0.00381643 -0.000962521 0)
(0.00380201 -0.00101418 0)
(0.00379395 -0.000957795 0)
(0.00379219 -0.0008126 0)
(0.00379642 -0.0006045 0)
(0.00380599 -0.000363073 0)
(0.00381983 -0.000118474 0)
(0.00383656 0.000101411 0)
(0.00385456 0.000273243 0)
(0.00387205 0.000379744 0)
(0.00388732 0.000410346 0)
(0.00389882 0.000361046 0)
(0.00390509 0.000233635 0)
(0.00390501 3.44719e-05 0)
(0.00389768 -0.000226955 0)
(0.0038825 -0.00053947 0)
(0.00385908 -0.000891485 0)
(0.00382724 -0.00127202 0)
(0.00378697 -0.00167139 0)
(0.00373833 -0.00208161 0)
(0.00368147 -0.00249649 0)
(0.00361661 -0.0029115 0)
(0.00354396 -0.00332356 0)
(0.00346379 -0.00373066 0)
(0.0033764 -0.00413152 0)
(0.00328208 -0.0045253 0)
(0.0031812 -0.00491129 0)
(0.00307414 -0.00528874 0)
(0.00296131 -0.00565678 0)
(0.00284317 -0.00601438 0)
(0.00272018 -0.00636039 0)
(0.00259285 -0.00669362 0)
(0.00246165 -0.00701295 0)
(0.0023271 -0.00731744 0)
(0.00218966 -0.00760644 0)
(0.0020498 -0.0078796 0)
(0.00190793 -0.0081369 0)
(0.00176447 -0.00837864 0)
(0.00161978 -0.00860528 0)
(0.0014742 -0.00881732 0)
(0.00132806 -0.00901519 0)
(0.00118167 -0.00919902 0)
(0.00103533 -0.00936861 0)
(0.000889332 -0.00952341 0)
(0.000743968 -0.00966256 0)
(0.000599515 -0.00978512 0)
(0.00045623 -0.00989026 0)
(0.000314375 -0.00997756 0)
(0.000174172 -0.0100473 0)
(0.00688211 -0.00280458 0)
(0.00680039 -0.00279222 0)
(0.00671639 -0.00276555 0)
(0.0066301 -0.00272425 0)
(0.0065417 -0.00266879 0)
(0.00645136 -0.00260013 0)
(0.00635927 -0.00251949 0)
(0.00626563 -0.00242812 0)
(0.00617063 -0.00232707 0)
(0.00607448 -0.00221703 0)
(0.00597736 -0.00209828 0)
(0.00587949 -0.00197066 0)
(0.00578106 -0.0018337 0)
(0.00568232 -0.00168673 0)
(0.00558352 -0.00152908 0)
(0.00548491 -0.00136013 0)
(0.00538681 -0.00117949 0)
(0.00528953 -0.000987017 0)
(0.00519341 -0.000782805 0)
(0.0050988 -0.000567164 0)
(0.00500603 -0.000340531 0)
(0.00491547 -0.000103388 0)
(0.00482742 0.000143819 0)
(0.00474221 0.00040074 0)
(0.00466011 0.000667131 0)
(0.00458137 0.000942812 0)
(0.00450616 0.00122754 0)
(0.00443465 0.0015208 0)
(0.00436704 0.00182153 0)
(0.00430348 0.00212781 0)
(0.0042441 0.00243645 0)
(0.00418904 0.00274265 0)
(0.0041384 0.00303975 0)
(0.00409224 0.00331905 0)
(0.00405052 0.00356991 0)
(0.00401313 0.00378003 0)
(0.00397975 0.00393616 0)
(0.0039499 0.00402499 0)
(0.00392287 0.00403436 0)
(0.00389773 0.00395469 0)
(0.00387334 0.0037804 0)
(0.00384842 0.00351114 0)
(0.00382165 0.00315276 0)
(0.00379181 0.00271764 0)
(0.00375788 0.00222439 0)
(0.00371929 0.00169674 0)
(0.00367598 0.00116175 0)
(0.00362848 0.000647432 0)
(0.00357785 0.000179967 0)
(0.00352571 -0.000218795 0)
(0.00347876 -0.00057089 0)
(0.00344239 -0.000801405 0)
(0.00341618 -0.000915173 0)
(0.00339992 -0.000921302 0)
(0.00339337 -0.000837093 0)
(0.00339611 -0.000685699 0)
(0.00340734 -0.000493681 0)
(0.00342588 -0.000288362 0)
(0.00345019 -9.53592e-05 0)
(0.00347849 6.34397e-05 0)
(0.0035089 0.000171259 0)
(0.00353939 0.000217118 0)
(0.00356808 0.000195826 0)
(0.00359333 0.000107423 0)
(0.0036137 -4.38011e-05 0)
(0.00362807 -0.00025051 0)
(0.00363556 -0.000503558 0)
(0.00363558 -0.000793135 0)
(0.00362774 -0.00110971 0)
(0.00361182 -0.00144471 0)
(0.00358773 -0.00179095 0)
(0.00355549 -0.00214279 0)
(0.00351518 -0.0024961 0)
(0.00346692 -0.00284808 0)
(0.00341088 -0.00319696 0)
(0.00334727 -0.00354173 0)
(0.00327631 -0.00388178 0)
(0.00319828 -0.00421671 0)
(0.0031135 -0.00454606 0)
(0.00302234 -0.00486926 0)
(0.00292521 -0.00518553 0)
(0.00282254 -0.00549393 0)
(0.00271483 -0.00579341 0)
(0.00260257 -0.00608289 0)
(0.00248628 -0.00636141 0)
(0.00236645 -0.00662818 0)
(0.00224358 -0.00688269 0)
(0.00211816 -0.00712469 0)
(0.00199062 -0.00735423 0)
(0.00186138 -0.00757153 0)
(0.00173081 -0.00777687 0)
(0.00159928 -0.0079705 0)
(0.0014671 -0.00815243 0)
(0.0013346 -0.00832238 0)
(0.00120207 -0.00847974 0)
(0.00106981 -0.00862361 0)
(0.0009381 -0.00875296 0)
(0.000807208 -0.0088668 0)
(0.000677404 -0.00896447 0)
(0.000548937 -0.00904592 0)
(0.00631254 -0.00223019 0)
(0.00623885 -0.00220184 0)
(0.0061633 -0.00215971 0)
(0.00608592 -0.00210381 0)
(0.00600691 -0.00203485 0)
(0.00592645 -0.00195395 0)
(0.00584471 -0.00186241 0)
(0.00576186 -0.00176152 0)
(0.00567806 -0.00165234 0)
(0.0055935 -0.00153556 0)
(0.00550836 -0.00141151 0)
(0.00542286 -0.00128014 0)
(0.00533722 -0.00114111 0)
(0.00525169 -0.000993981 0)
(0.00516654 -0.000838259 0)
(0.00508209 -0.000673571 0)
(0.00499866 -0.00049971 0)
(0.0049166 -0.000316684 0)
(0.00483624 -0.000124682 0)
(0.00475799 7.59809e-05 0)
(0.00468225 0.000284926 0)
(0.00460936 0.000501802 0)
(0.00453961 0.000726362 0)
(0.00447329 0.000958499 0)
(0.00441062 0.00119824 0)
(0.0043518 0.00144567 0)
(0.004297 0.00170081 0)
(0.00424635 0.00196336 0)
(0.00419993 0.00223248 0)
(0.00415781 0.00250644 0)
(0.00412002 0.00278229 0)
(0.00408655 0.00305557 0)
(0.00405731 0.00332008 0)
(0.00403215 0.00356784 0)
(0.00401078 0.00378917 0)
(0.00399275 0.00397304 0)
(0.00397743 0.00410771 0)
(0.00396398 0.00418155 0)
(0.00395134 0.00418413 0)
(0.00393826 0.00410737 0)
(0.00392337 0.00394671 0)
(0.00390524 0.00370211 0)
(0.00388256 0.00337872 0)
(0.0038542 0.00298708 0)
(0.00381945 0.00254274 0)
(0.00377804 0.00206521 0)
(0.00373015 0.00157645 0)
(0.00367603 0.00109879 0)
(0.0036156 0.000652521 0)
(0.00354809 0.000253187 0)
(0.00347779 -0.000188733 0)
(0.00341131 -0.000507758 0)
(0.00335186 -0.000708269 0)
(0.00330184 -0.000799365 0)
(0.00326287 -0.000797055 0)
(0.00323554 -0.000722241 0)
(0.00321954 -0.000598842 0)
(0.0032139 -0.00045161 0)
(0.00321719 -0.000304002 0)
(0.00322767 -0.000176445 0)
(0.00324344 -8.5061e-05 0)
(0.00326258 -4.10231e-05 0)
(0.00328326 -5.04563e-05 0)
(0.00330375 -0.000114829 0)
(0.00332247 -0.000231753 0)
(0.00333809 -0.000395949 0)
(0.00334951 -0.000600246 0)
(0.00335592 -0.00083661 0)
(0.00335671 -0.00109701 0)
(0.00335144 -0.00137408 0)
(0.00333983 -0.00166152 0)
(0.00332169 -0.00195436 0)
(0.0032969 -0.00224893 0)
(0.0032654 -0.00254279 0)
(0.00322719 -0.00283446 0)
(0.00318227 -0.00312321 0)
(0.00313073 -0.00340874 0)
(0.00307266 -0.00369097 0)
(0.00300823 -0.00396983 0)
(0.00293764 -0.00424508 0)
(0.00286117 -0.00451633 0)
(0.00277911 -0.00478294 0)
(0.00269185 -0.00504414 0)
(0.00259979 -0.00529902 0)
(0.00250336 -0.00554673 0)
(0.00240301 -0.00578647 0)
(0.0022992 -0.00601764 0)
(0.0021924 -0.00623986 0)
(0.00208302 -0.00645294 0)
(0.0019715 -0.00665689 0)
(0.00185821 -0.00685175 0)
(0.00174352 -0.00703754 0)
(0.00162777 -0.0072141 0)
(0.00151127 -0.00738104 0)
(0.00139431 -0.00753764 0)
(0.0012772 -0.00768293 0)
(0.00116021 -0.0078158 0)
(0.00104359 -0.00793516 0)
(0.000927617 -0.00804015 0)
(0.000812543 -0.00813046 0)
(0.0058562 -0.00171067 0)
(0.00579225 -0.00166938 0)
(0.00572708 -0.0016151 0)
(0.00566065 -0.00154808 0)
(0.00559314 -0.00146915 0)
(0.00552475 -0.00137951 0)
(0.00545563 -0.00128051 0)
(0.00538595 -0.00117343 0)
(0.00531589 -0.00105935 0)
(0.00524562 -0.000939028 0)
(0.00517534 -0.000812904 0)
(0.00510526 -0.000681091 0)
(0.00503563 -0.000543485 0)
(0.00496671 -0.00039989 0)
(0.00489882 -0.000250053 0)
(0.00483233 -9.38061e-05 0)
(0.00476755 6.88859e-05 0)
(0.00470479 0.000237936 0)
(0.00464446 0.000413149 0)
(0.00458691 0.000594282 0)
(0.00453237 0.000781114 0)
(0.00448115 0.000973523 0)
(0.00443353 0.00117154 0)
(0.00438976 0.00137535 0)
(0.00435004 0.0015853 0)
(0.00431453 0.00180178 0)
(0.00428336 0.00202507 0)
(0.00425665 0.00225514 0)
(0.0042345 0.00249137 0)
(0.00421702 0.0027323 0)
(0.00420424 0.00297532 0)
(0.0041962 0.00321641 0)
(0.00419286 0.00345002 0)
(0.00419408 0.003669 0)
(0.00419961 0.00386478 0)
(0.00420907 0.00402766 0)
(0.00422188 0.00414733 0)
(0.00423727 0.00421366 0)
(0.0042543 0.00421751 0)
(0.00427184 0.00415169 0)
(0.00428867 0.00401188 0)
(0.00430351 0.0037974 0)
(0.00431511 0.00351176 0)
(0.00432225 0.00316293 0)
(0.00432379 0.00276342 0)
(0.00431859 0.00233033 0)
(0.00430534 0.00188591 0)
(0.00428216 0.00145892 0)
(0.00424541 0.00108658 0)
(0.00418701 0.000814703 0)
(0.0041013 0.000469649 0)
(0.00399368 0.000200911 0)
(0.00387683 -2.65379e-05 0)
(0.00376105 -0.000189181 0)
(0.0036514 -0.00027997 0)
(0.0035508 -0.000305555 0)
(0.00346108 -0.000280996 0)
(0.00338311 -0.000225395 0)
(0.00331687 -0.000158548 0)
(0.00326177 -9.85717e-05 0)
(0.00321681 -6.04124e-05 0)
(0.00318052 -5.49947e-05 0)
(0.00315135 -8.89682e-05 0)
(0.00312752 -0.000164942 0)
(0.00310712 -0.000282 0)
(0.00308888 -0.00043649 0)
(0.0030719 -0.000622979 0)
(0.00305518 -0.000835032 0)
(0.00303782 -0.00106603 0)
(0.00301908 -0.00130979 0)
(0.00299835 -0.00156094 0)
(0.00297513 -0.00181521 0)
(0.00294897 -0.00206946 0)
(0.00291952 -0.00232166 0)
(0.00288644 -0.00257068 0)
(0.00284947 -0.00281612 0)
(0.00280838 -0.00305803 0)
(0.00276299 -0.00329671 0)
(0.00271317 -0.0035325 0)
(0.00265886 -0.00376562 0)
(0.00260005 -0.00399613 0)
(0.00253682 -0.00422385 0)
(0.00246929 -0.00444839 0)
(0.00239765 -0.00466921 0)
(0.00232213 -0.00488571 0)
(0.00224303 -0.00509728 0)
(0.00216065 -0.00530342 0)
(0.00207532 -0.00550372 0)
(0.00198739 -0.00569794 0)
(0.00189719 -0.00588593 0)
(0.00180504 -0.00606758 0)
(0.00171127 -0.00624273 0)
(0.00161616 -0.00641106 0)
(0.00151999 -0.00657202 0)
(0.00142304 -0.00672479 0)
(0.00132555 -0.00686832 0)
(0.00122777 -0.0070014 0)
(0.00112993 -0.00712284 0)
(0.00103226 -0.00723163 0)
(0.000935004 -0.00732725 0)
(0.00553795 -0.00128709 0)
(0.00548672 -0.00123881 0)
(0.00543461 -0.0011784 0)
(0.00538179 -0.00110628 0)
(0.00532844 -0.00102338 0)
(0.00527467 -0.000930966 0)
(0.00522063 -0.000830413 0)
(0.00516648 -0.000723046 0)
(0.00511237 -0.000610009 0)
(0.00505848 -0.000492173 0)
(0.00500496 -0.000370101 0)
(0.00495197 -0.000244058 0)
(0.00489951 -0.000114143 0)
(0.00484793 1.97054e-05 0)
(0.00479773 0.000157545 0)
(0.00474907 0.000299415 0)
(0.00470225 0.000445289 0)
(0.00465756 0.000595087 0)
(0.00461524 0.000748692 0)
(0.00457553 0.000905997 0)
(0.00453866 0.00106698 0)
(0.00450482 0.00123174 0)
(0.00447418 0.00140055 0)
(0.0044469 0.00157384 0)
(0.0044231 0.00175212 0)
(0.00440294 0.00193595 0)
(0.00438652 0.00212571 0)
(0.004374 0.00232145 0)
(0.00436551 0.00252263 0)
(0.00436119 0.00272789 0)
(0.00436118 0.00293479 0)
(0.00436559 0.00313966 0)
(0.00437451 0.00333747 0)
(0.00438791 0.00352181 0)
(0.00440569 0.00368509 0)
(0.00442758 0.00381882 0)
(0.00445311 0.00391407 0)
(0.00448161 0.00396213 0)
(0.00451215 0.00395526 0)
(0.00454354 0.00388751 0)
(0.00457432 0.00375561 0)
(0.00460273 0.00355983 0)
(0.00462672 0.00330475 0)
(0.00464388 0.00299994 0)
(0.00465146 0.00266052 0)
(0.00464629 0.00230744 0)
(0.00462492 0.00196756 0)
(0.00458411 0.00167318 0)
(0.00452236 0.00146065 0)
(0.00444412 0.00136597 0)
(0.0043463 0.00126052 0)
(0.00423648 0.0010645 0)
(0.0041229 0.00090367 0)
(0.00399842 0.000778688 0)
(0.00386512 0.000687897 0)
(0.0037281 0.000626754 0)
(0.0035925 0.000588894 0)
(0.00346236 0.0005654 0)
(0.00334049 0.000545665 0)
(0.00322847 0.000518783 0)
(0.00312678 0.00047491 0)
(0.00303538 0.000406373 0)
(0.00295359 0.000308304 0)
(0.00288061 0.00017876 0)
(0.00281574 1.85344e-05 0)
(0.00275766 -0.000169367 0)
(0.00270522 -0.000380426 0)
(0.00265754 -0.000609327 0)
(0.00261355 -0.000850506 0)
(0.00257241 -0.00109869 0)
(0.00253344 -0.0013493 0)
(0.00249604 -0.00159867 0)
(0.00245965 -0.00184416 0)
(0.00242379 -0.0020841 0)
(0.00238798 -0.00231771 0)
(0.00235177 -0.00254488 0)
(0.00231477 -0.00276599 0)
(0.00227658 -0.00298171 0)
(0.00223686 -0.00319278 0)
(0.0021953 -0.0033999 0)
(0.00215164 -0.0036036 0)
(0.00210571 -0.00380422 0)
(0.00205734 -0.00400188 0)
(0.00200648 -0.00419653 0)
(0.0019531 -0.00438796 0)
(0.00189724 -0.00457595 0)
(0.00183897 -0.00476025 0)
(0.00177843 -0.00494066 0)
(0.00171575 -0.00511704 0)
(0.0016511 -0.00528928 0)
(0.00158466 -0.00545724 0)
(0.00151662 -0.00562072 0)
(0.00144715 -0.00577931 0)
(0.00137644 -0.00593238 0)
(0.00130466 -0.00607903 0)
(0.001232 -0.00621813 0)
(0.00115862 -0.00634841 0)
(0.00108468 -0.00646859 0)
(0.00101036 -0.00657754 0)
(0.000935809 -0.00667454 0)
(0.00527868 -0.000937077 0)
(0.00524043 -0.000882117 0)
(0.00520189 -0.000815757 0)
(0.00516286 -0.000738516 0)
(0.00512345 -0.000651416 0)
(0.00508374 -0.000555765 0)
(0.00504384 -0.000452967 0)
(0.00500384 -0.00034439 0)
(0.00496384 -0.000231275 0)
(0.00492402 -0.000114579 0)
(0.00488469 5.04225e-06 0)
(0.00484579 0.000127173 0)
(0.00480736 0.000251648 0)
(0.00476946 0.000378452 0)
(0.00473199 0.000507595 0)
(0.00469514 0.000639099 0)
(0.00465905 0.000772973 0)
(0.00462385 0.000909192 0)
(0.00458967 0.00104773 0)
(0.0045566 0.00118862 0)
(0.00452474 0.00133194 0)
(0.00449418 0.00147791 0)
(0.00446501 0.00162688 0)
(0.00443734 0.00177929 0)
(0.00441127 0.00193565 0)
(0.00438696 0.0020964 0)
(0.00436458 0.0022618 0)
(0.00434435 0.00243168 0)
(0.00432655 0.00260535 0)
(0.00431149 0.00278129 0)
(0.00429952 0.00295703 0)
(0.00429102 0.00312901 0)
(0.00428634 0.00329253 0)
(0.00428582 0.0034418 0)
(0.00428972 0.00357014 0)
(0.00429819 0.00367032 0)
(0.00431119 0.00373502 0)
(0.00432848 0.00375751 0)
(0.00434954 0.00373238 0)
(0.00437353 0.00365637 0)
(0.00439926 0.00352929 0)
(0.00442512 0.00335483 0)
(0.00444908 0.00314129 0)
(0.00446875 0.00290193 0)
(0.00448138 0.00265491 0)
(0.00448414 0.0024222 0)
(0.00447431 0.00222722 0)
(0.00444963 0.00209072 0)
(0.00440754 0.0020295 0)
(0.00434543 0.00203619 0)
(0.00425856 0.00209464 0)
(0.00414212 0.00197234 0)
(0.004002 0.00191038 0)
(0.003849 0.00188064 0)
(0.0036888 0.00185984 0)
(0.00352568 0.00183394 0)
(0.00336369 0.00179604 0)
(0.00320649 0.00174184 0)
(0.00305703 0.00166772 0)
(0.00291735 0.00157032 0)
(0.00278867 0.00144687 0)
(0.00267143 0.0012956 0)
(0.00256544 0.00111612 0)
(0.0024701 0.000909605 0)
(0.00238452 0.000678645 0)
(0.00230777 0.000427039 0)
(0.00223854 0.000159463 0)
(0.00217567 -0.000119022 0)
(0.00211842 -0.000403357 0)
(0.00206604 -0.000688886 0)
(0.00201786 -0.000971596 0)
(0.0019733 -0.0012483 0)
(0.00193187 -0.0015167 0)
(0.00189312 -0.0017754 0)
(0.00185664 -0.00202379 0)
(0.00182204 -0.00226191 0)
(0.00178896 -0.00249029 0)
(0.00175701 -0.00270975 0)
(0.00172585 -0.00292125 0)
(0.00169511 -0.00312575 0)
(0.00166448 -0.00332414 0)
(0.00163364 -0.00351711 0)
(0.00160232 -0.0037052 0)
(0.00157028 -0.00388879 0)
(0.00153731 -0.0040681 0)
(0.00150327 -0.00424331 0)
(0.00146802 -0.00441451 0)
(0.00143147 -0.00458184 0)
(0.00139357 -0.0047454 0)
(0.00135429 -0.00490528 0)
(0.00131363 -0.00506149 0)
(0.00127158 -0.00521391 0)
(0.00122818 -0.00536223 0)
(0.00118346 -0.00550584 0)
(0.00113748 -0.0056439 0)
(0.0010903 -0.00577528 0)
(0.00104198 -0.00589873 0)
(0.000992586 -0.00601293 0)
(0.000942218 -0.0061167 0)
(0.000891024 -0.00620924 0)
(0.00510538 -0.000739075 0)
(0.00507618 -0.000684447 0)
(0.00504591 -0.000618543 0)
(0.00501486 -0.000541958 0)
(0.00498306 -0.00045575 0)
(0.00495047 -0.000361212 0)
(0.00491701 -0.000259672 0)
(0.0048823 -0.000152492 0)
(0.00484631 -4.08109e-05 0)
(0.00480945 7.4448e-05 0)
(0.00477171 0.000192594 0)
(0.00473319 0.000313181 0)
(0.00469405 0.000436022 0)
(0.00465417 0.00056104 0)
(0.00461351 0.000688271 0)
(0.00457202 0.000817761 0)
(0.00452966 0.000949543 0)
(0.00448642 0.00108363 0)
(0.00444226 0.00122002 0)
(0.00439717 0.00135874 0)
(0.00435116 0.00149985 0)
(0.00430421 0.00164348 0)
(0.00425636 0.00178983 0)
(0.00420765 0.00193913 0)
(0.00415816 0.00209157 0)
(0.00410798 0.00224722 0)
(0.00405729 0.00240589 0)
(0.00400628 0.00256695 0)
(0.00395518 0.00272919 0)
(0.00390428 0.00289065 0)
(0.00385388 0.00304852 0)
(0.00380427 0.003199 0)
(0.00375573 0.00333739 0)
(0.0037085 0.00345814 0)
(0.00366272 0.00355513 0)
(0.00361842 0.00362206 0)
(0.00357551 0.00365293 0)
(0.00353372 0.00364273 0)
(0.00349261 0.00358817 0)
(0.00345159 0.0034885 0)
(0.00340995 0.00334625 0)
(0.00336691 0.00316783 0)
(0.00332175 0.00296388 0)
(0.00327389 0.00274922 0)
(0.00322306 0.00254233 0)
(0.00316944 0.00236442 0)
(0.00311362 0.00223823 0)
(0.00305627 0.0021866 0)
(0.0029944 0.00225782 0)
(0.00292078 0.00245402 0)
(0.00282048 0.00282816 0)
(0.00269887 0.00295078 0)
(0.002578 0.00301382 0)
(0.00246338 0.00304414 0)
(0.00235491 0.00303975 0)
(0.00225336 0.00299799 0)
(0.00216038 0.00292025 0)
(0.00207716 0.00280776 0)
(0.00200414 0.00266186 0)
(0.00194108 0.00248432 0)
(0.00188727 0.00227736 0)
(0.00184167 0.00204363 0)
(0.00180307 0.00178624 0)
(0.00177016 0.0015087 0)
(0.00174169 0.00121488 0)
(0.0017165 0.000908948 0)
(0.00169359 0.000595058 0)
(0.00167222 0.0002774 0)
(0.00165172 -4.00743e-05 0)
(0.00163157 -0.000353826 0)
(0.00161156 -0.000660873 0)
(0.00159159 -0.000958864 0)
(0.00157166 -0.00124613 0)
(0.00155179 -0.00152168 0)
(0.00153204 -0.00178511 0)
(0.00151248 -0.00203654 0)
(0.00149316 -0.00227648 0)
(0.00147411 -0.00250567 0)
(0.00145533 -0.00272501 0)
(0.00143678 -0.00293541 0)
(0.00141839 -0.00313771 0)
(0.00140007 -0.00333266 0)
(0.00138171 -0.00352087 0)
(0.00136319 -0.00370284 0)
(0.00134438 -0.00387895 0)
(0.00132514 -0.00404954 0)
(0.00130534 -0.00421493 0)
(0.00128484 -0.00437539 0)
(0.00126354 -0.00453123 0)
(0.00124131 -0.00468271 0)
(0.00121804 -0.00482999 0)
(0.00119363 -0.0049731 0)
(0.001168 -0.00511186 0)
(0.00114108 -0.00524582 0)
(0.00111282 -0.00537423 0)
(0.00108317 -0.0054961 0)
(0.00105212 -0.00561026 0)
(0.00101966 -0.00571548 0)
(0.000985792 -0.00581063 0)
(0.000950435 -0.00589487 0)
(0.00474697 -0.000465948 0)
(0.00471561 -0.000398226 0)
(0.00468346 -0.000318847 0)
(0.00464994 -0.000228481 0)
(0.00461519 -0.000128225 0)
(0.00457964 -1.94432e-05 0)
(0.00454289 9.63981e-05 0)
(0.00450463 0.000218009 0)
(0.00446498 0.000344303 0)
(0.00442348 0.000474398 0)
(0.00437993 0.000607658 0)
(0.0043344 0.000743714 0)
(0.00428697 0.00088236 0)
(0.0042376 0.00102353 0)
(0.00418624 0.00116724 0)
(0.00413283 0.00131351 0)
(0.00407729 0.00146233 0)
(0.00401953 0.00161369 0)
(0.00395944 0.00176755 0)
(0.00389689 0.00192385 0)
(0.00383174 0.00208257 0)
(0.0037638 0.00224374 0)
(0.0036929 0.0024074 0)
(0.00361882 0.00257359 0)
(0.0035413 0.00274232 0)
(0.00346008 0.00291345 0)
(0.00337485 0.00308657 0)
(0.00328524 0.00326092 0)
(0.00319085 0.0034352 0)
(0.00309119 0.00360749 0)
(0.00298566 0.00377514 0)
(0.00287357 0.00393473 0)
(0.00275407 0.00408211 0)
(0.00262618 0.0042125 0)
(0.00248874 0.00432068 0)
(0.00234048 0.00440133 0)
(0.00218 0.00444944 0)
(0.00200588 0.00446076 0)
(0.00181681 0.00443236 0)
(0.00161179 0.0043631 0)
(0.00139036 0.00425417 0)
(0.00115299 0.00410941 0)
(0.000901431 0.00393562 0)
(0.000639085 0.00374269 0)
(0.000371315 0.0035438 0)
(0.000105647 0.00335577 0)
(-0.000148065 0.00319961 0)
(-0.000378005 0.00310223 0)
(-0.000575319 0.00316139 0)
(-0.000741766 0.00341149 0)
(-0.000879347 0.00389368 0)
(-0.000947751 0.00372112 0)
(-0.000920106 0.00358052 0)
(-0.00082722 0.0035034 0)
(-0.000692675 0.00342147 0)
(-0.000526192 0.00328636 0)
(-0.000335817 0.0031126 0)
(-0.000130759 0.00291029 0)
(8.04658e-05 0.00268649 0)
(0.000290919 0.00244595 0)
(0.000495288 0.00219184 0)
(0.000689669 0.00192637 0)
(0.000871345 0.00165123 0)
(0.00103859 0.001368 0)
(0.00119056 0.00107831 0)
(0.00132623 0.000783977 0)
(0.00144521 0.000487135 0)
(0.0015483 0.000189957 0)
(0.00163643 -0.000105415 0)
(0.00171052 -0.000396916 0)
(0.00177147 -0.00068271 0)
(0.00182028 -0.000961295 0)
(0.00185797 -0.00123155 0)
(0.00188563 -0.00149274 0)
(0.00190427 -0.0017445 0)
(0.00191491 -0.00198679 0)
(0.00191847 -0.00221983 0)
(0.00191583 -0.00244401 0)
(0.00190777 -0.00265982 0)
(0.00189501 -0.00286775 0)
(0.00187819 -0.00306826 0)
(0.00185789 -0.00326175 0)
(0.00183461 -0.0034485 0)
(0.0018088 -0.00362874 0)
(0.00178082 -0.00380264 0)
(0.00175102 -0.00397035 0)
(0.00171965 -0.00413202 0)
(0.00168694 -0.00428782 0)
(0.00165306 -0.00443798 0)
(0.00161815 -0.0045827 0)
(0.00158231 -0.00472213 0)
(0.00154561 -0.00485633 0)
(0.00150808 -0.00498518 0)
(0.00146975 -0.00510831 0)
(0.00143064 -0.0052251 0)
(0.00139076 -0.00533471 0)
(0.0013501 -0.00543608 0)
(0.00130864 -0.00552809 0)
(0.00126642 -0.00560971 0)
(0.00122377 -0.00568015 0)
(0.00453403 -0.000339819 0)
(0.00449034 -0.00026689 0)
(0.00444314 -0.000181553 0)
(0.00439382 -8.46148e-05 0)
(0.00434224 2.26839e-05 0)
(0.00428781 0.000138895 0)
(0.00423086 0.000262524 0)
(0.004172 0.000392265 0)
(0.00411111 0.000526969 0)
(0.00404817 0.000665775 0)
(0.0039832 0.000808134 0)
(0.00391628 0.000953752 0)
(0.00384751 0.00110253 0)
(0.003777 0.00125453 0)
(0.00370489 0.00140989 0)
(0.0036313 0.00156879 0)
(0.00355635 0.00173145 0)
(0.00348013 0.00189808 0)
(0.00340273 0.00206893 0)
(0.00332419 0.00224429 0)
(0.0032445 0.00242454 0)
(0.00316365 0.00261013 0)
(0.00308155 0.0028016 0)
(0.00299807 0.00299957 0)
(0.00291301 0.00320466 0)
(0.00282613 0.00341747 0)
(0.00273711 0.00363841 0)
(0.00264557 0.00386768 0)
(0.00255103 0.00410509 0)
(0.00245294 0.00434999 0)
(0.00235063 0.00460112 0)
(0.00224335 0.00485663 0)
(0.00213024 0.00511397 0)
(0.00201034 0.00536992 0)
(0.00188259 0.0056206 0)
(0.00174585 0.00586157 0)
(0.00159894 0.0060878 0)
(0.00144061 0.0062937 0)
(0.00126956 0.00647301 0)
(0.00108442 0.00661855 0)
(0.000883752 0.00672191 0)
(0.000666001 0.00677308 0)
(0.000429566 0.00676038 0)
(0.000173026 0.00667115 0)
(-0.00010426 0.00649409 0)
(-0.000400725 0.00622388 0)
(-0.000711494 0.00586864 0)
(-0.00102258 0.00541552 0)
(-0.00130674 0.00492871 0)
(-0.00154706 0.00460874 0)
(-0.00172962 0.00437841 0)
(-0.00185533 0.00334996 0)
(-0.00186618 0.00202475 0)
(-0.00173964 0.00129675 0)
(-0.00152902 0.000677896 0)
(-0.0012561 0.000200933 0)
(-0.000949236 -0.000153297 0)
(-0.000627216 -0.000405888 0)
(-0.000303012 -0.000578691 0)
(1.49699e-05 -0.000693049 0)
(0.000321434 -0.000768378 0)
(0.000613193 -0.000821048 0)
(0.000888438 -0.000863907 0)
(0.00114619 -0.000906355 0)
(0.00138586 -0.000954732 0)
(0.00160793 -0.00101286 0)
(0.00181285 -0.00108256 0)
(0.00200026 -0.00116416 0)
(0.00217019 -0.00125703 0)
(0.00232287 -0.00135998 0)
(0.00245859 -0.00147153 0)
(0.0025777 -0.00159017 0)
(0.00268063 -0.00171451 0)
(0.00276782 -0.00184336 0)
(0.00283982 -0.00197581 0)
(0.00289722 -0.00211115 0)
(0.00294068 -0.00224891 0)
(0.00297089 -0.00238875 0)
(0.00298863 -0.0025304 0)
(0.00299468 -0.00267365 0)
(0.00298988 -0.00281822 0)
(0.00297508 -0.00296379 0)
(0.00295115 -0.00310999 0)
(0.00291897 -0.00325635 0)
(0.0028794 -0.00340238 0)
(0.0028333 -0.00354759 0)
(0.00278148 -0.00369149 0)
(0.00272474 -0.00383367 0)
(0.00266381 -0.00397373 0)
(0.00259939 -0.00411134 0)
(0.00253211 -0.00424617 0)
(0.00246254 -0.0043778 0)
(0.00239119 -0.00450575 0)
(0.00231852 -0.00462932 0)
(0.00224493 -0.00474765 0)
(0.00217077 -0.00485968 0)
(0.00209638 -0.0049642 0)
(0.00202206 -0.00505996 0)
(0.00194801 -0.00514579 0)
(0.00187383 -0.00522079 0)
(0.00403673 0.000235159 0)
(0.00398371 0.000339607 0)
(0.0039293 0.000456779 0)
(0.00387245 0.00058552 0)
(0.0038135 0.000724264 0)
(0.00375302 0.00087129 0)
(0.00369158 0.00102491 0)
(0.00362975 0.00118346 0)
(0.0035681 0.00134551 0)
(0.00350723 0.0015099 0)
(0.00344777 0.00167577 0)
(0.00339039 0.00184257 0)
(0.00333579 0.00200996 0)
(0.0032847 0.00217783 0)
(0.00323784 0.00234617 0)
(0.00319594 0.00251511 0)
(0.00315968 0.00268484 0)
(0.00312974 0.00285562 0)
(0.00310671 0.00302781 0)
(0.00309114 0.00320184 0)
(0.00308348 0.00337828 0)
(0.00308411 0.00355779 0)
(0.0030933 0.00374112 0)
(0.0031112 0.00392913 0)
(0.00313787 0.00412264 0)
(0.00317322 0.00432244 0)
(0.00321703 0.00452914 0)
(0.00326897 0.00474309 0)
(0.00332854 0.00496424 0)
(0.00339511 0.005192 0)
(0.00346795 0.00542517 0)
(0.00354617 0.00566183 0)
(0.00362884 0.00589931 0)
(0.00371497 0.00613424 0)
(0.00380355 0.00636263 0)
(0.00389363 0.0065802 0)
(0.00398425 0.00678276 0)
(0.00407445 0.00696679 0)
(0.00416309 0.00713017 0)
(0.00424864 0.00727285 0)
(0.00432875 0.00739739 0)
(0.0043999 0.00750865 0)
(0.00445697 0.00761214 0)
(0.00449303 0.00770999 0)
(0.00449918 0.00779383 0)
(0.00446614 0.00783443 0)
(0.00438942 0.00777508 0)
(0.00429882 0.00732446 0)
(0.00420933 0.00682445 0)
(0.00410144 0.00648891 0)
(0.00396197 0.00621531 0)
(0.00380923 0.00500797 0)
(0.00369797 0.00269644 0)
(0.00365676 0.00118205 0)
(0.00366683 -1.23414e-05 0)
(0.00368957 -0.000838406 0)
(0.00371425 -0.00138787 0)
(0.00373983 -0.00174091 0)
(0.00376784 -0.00195852 0)
(0.00379933 -0.00208938 0)
(0.00383536 -0.00216917 0)
(0.0038768 -0.00222215 0)
(0.0039242 -0.00226353 0)
(0.0039776 -0.00230202 0)
(0.00403655 -0.00234188 0)
(0.00410016 -0.00238455 0)
(0.00416714 -0.00242992 0)
(0.00423589 -0.00247693 0)
(0.00430463 -0.00252421 0)
(0.00437146 -0.00257045 0)
(0.0044345 -0.00261462 0)
(0.00449198 -0.00265611 0)
(0.00454224 -0.00269478 0)
(0.00458383 -0.00273092 0)
(0.00461553 -0.00276521 0)
(0.00463635 -0.0027986 0)
(0.00464553 -0.00283224 0)
(0.00464258 -0.00286736 0)
(0.0046272 -0.00290514 0)
(0.00459935 -0.0029467 0)
(0.00455915 -0.00299294 0)
(0.00450696 -0.00304459 0)
(0.00444326 -0.00310211 0)
(0.0043687 -0.00316576 0)
(0.00428406 -0.00323555 0)
(0.00419024 -0.00331133 0)
(0.00408817 -0.00339279 0)
(0.00397889 -0.00347953 0)
(0.00386344 -0.00357101 0)
(0.00374287 -0.00366666 0)
(0.00361822 -0.00376577 0)
(0.00349049 -0.00386754 0)
(0.00336063 -0.00397099 0)
(0.00322953 -0.00407495 0)
(0.00309801 -0.00417806 0)
(0.00296681 -0.00427876 0)
(0.00283656 -0.00437535 0)
(0.00270773 -0.0044661 0)
(0.0025809 -0.00454935 0)
(0.00245748 -0.00462369 0)
(0.00431194 0.00036617 0)
(0.0042749 0.00047029 0)
(0.00423654 0.000583473 0)
(0.00419738 0.000704053 0)
(0.00415789 0.000829982 0)
(0.00411861 0.000959009 0)
(0.00408012 0.00108887 0)
(0.00404306 0.00121742 0)
(0.00400813 0.00134275 0)
(0.00397609 0.00146327 0)
(0.0039477 0.00157776 0)
(0.00392374 0.00168538 0)
(0.00390495 0.00178565 0)
(0.00389204 0.00187841 0)
(0.00388566 0.00196381 0)
(0.00388636 0.00204228 0)
(0.00389456 0.00211448 0)
(0.00391054 0.00218133 0)
(0.0039344 0.00224399 0)
(0.00396606 0.00230385 0)
(0.0040052 0.0023626 0)
(0.00405127 0.00242213 0)
(0.00410345 0.0024846 0)
(0.00416065 0.00255232 0)
(0.00422144 0.00262779 0)
(0.00428413 0.00271353 0)
(0.00434663 0.00281201 0)
(0.00440655 0.00292551 0)
(0.0044611 0.00305594 0)
(0.00450715 0.00320467 0)
(0.00454125 0.00337225 0)
(0.00455961 0.00355828 0)
(0.00455822 0.00376117 0)
(0.00453294 0.00397805 0)
(0.00447963 0.00420487 0)
(0.00439435 0.0044367 0)
(0.00427364 0.00466838 0)
(0.00411485 0.00489558 0)
(0.0039166 0.00511617 0)
(0.00367919 0.00533175 0)
(0.00340516 0.00554868 0)
(0.00309971 0.00577809 0)
(0.00277109 0.00603339 0)
(0.00243085 0.00632446 0)
(0.00209379 0.00664725 0)
(0.00177597 0.00696921 0)
(0.00148778 0.00722839 0)
(0.00121473 0.00703545 0)
(0.000958051 0.00673388 0)
(0.000735654 0.00665918 0)
(0.000584292 0.00650909 0)
(0.000513639 0.00532773 0)
(0.000440791 0.00300666 0)
(0.000328631 0.001339 0)
(0.000194695 0.000348572 0)
(3.6523e-05 -0.000246537 0)
(-9.82697e-05 -0.000638747 0)
(-0.000120685 -0.000921234 0)
(-1.65976e-05 -0.00112309 0)
(0.000168716 -0.00127851 0)
(0.000409728 -0.00140945 0)
(0.000688992 -0.00152837 0)
(0.000993802 -0.00164236 0)
(0.00131409 -0.0017539 0)
(0.0016418 -0.00186237 0)
(0.0019705 -0.00196531 0)
(0.00229505 -0.00205944 0)
(0.00261125 -0.00214143 0)
(0.00291563 -0.00220848 0)
(0.00320529 -0.00225868 0)
(0.00347785 -0.00229114 0)
(0.00373134 -0.00230603 0)
(0.00396419 -0.00230442 0)
(0.00417519 -0.00228818 0)
(0.00436346 -0.00225975 0)
(0.0045284 -0.00222196 0)
(0.00466964 -0.00217788 0)
(0.00478709 -0.00213062 0)
(0.00488083 -0.00208324 0)
(0.00495116 -0.00203862 0)
(0.00499855 -0.0019994 0)
(0.00502366 -0.00196791 0)
(0.00502732 -0.0019461 0)
(0.00501051 -0.0019356 0)
(0.00497437 -0.00193762 0)
(0.00492017 -0.00195302 0)
(0.00484932 -0.00198234 0)
(0.00476328 -0.00202575 0)
(0.00466364 -0.00208313 0)
(0.00455201 -0.00215406 0)
(0.00443002 -0.00223781 0)
(0.00429931 -0.00233334 0)
(0.00416147 -0.00243929 0)
(0.00401805 -0.00255396 0)
(0.00387053 -0.00267535 0)
(0.00372029 -0.0028012 0)
(0.00356867 -0.00292904 0)
(0.00341693 -0.00305634 0)
(0.00326605 -0.00318061 0)
(0.00311565 -0.00329963 0)
(0.0042043 0.000885305 0)
(0.00418928 0.00101418 0)
(0.0041767 0.0011498 0)
(0.00416668 0.00129 0)
(0.00415997 0.00143225 0)
(0.00415741 0.00157388 0)
(0.00415985 0.00171229 0)
(0.00416818 0.00184509 0)
(0.00418332 0.00197025 0)
(0.00420624 0.00208619 0)
(0.00423789 0.00219185 0)
(0.00427926 0.00228674 0)
(0.00433128 0.00237097 0)
(0.00439486 0.00244523 0)
(0.00447083 0.00251075 0)
(0.00455992 0.00256921 0)
(0.00466276 0.0026228 0)
(0.00477986 0.00267416 0)
(0.00491161 0.0027264 0)
(0.00505821 0.00278306 0)
(0.00521976 0.00284811 0)
(0.00539617 0.00292596 0)
(0.0055872 0.00302138 0)
(0.00579243 0.00313951 0)
(0.00601126 0.00328578 0)
(0.00624291 0.00346579 0)
(0.00648638 0.00368525 0)
(0.00674051 0.00394972 0)
(0.00700388 0.00426443 0)
(0.00727482 0.00463397 0)
(0.00755138 0.00506192 0)
(0.0078312 0.00555038 0)
(0.00811152 0.00609948 0)
(0.00838914 0.00670684 0)
(0.00866036 0.00736699 0)
(0.00892096 0.008071 0)
(0.0091663 0.00880496 0)
(0.00939164 0.00954976 0)
(0.00959256 0.0102811 0)
(0.00976537 0.0109698 0)
(0.00990765 0.0115818 0)
(0.0100188 0.012079 0)
(0.0101006 0.012421 0)
(0.0101571 0.0125679 0)
(0.0101938 0.0124841 0)
(0.0102161 0.0121439 0)
(0.0102282 0.0115472 0)
(0.0102261 0.0105247 0)
(0.0101247 0.00990972 0)
(0.00992272 0.00894063 0)
(0.0097607 0.00760146 0)
(0.00974475 0.00528727 0)
(0.00958304 0.00456285 0)
(0.00906011 0.00338483 0)
(0.00836798 0.00239687 0)
(0.00762337 0.00165195 0)
(0.00685265 0.000361837 0)
(0.00614718 -0.00232575 0)
(0.00553225 -0.00391124 0)
(0.00496373 -0.0050515 0)
(0.00445871 -0.00587228 0)
(0.00402549 -0.0064489 0)
(0.00366408 -0.00683824 0)
(0.00337643 -0.00708436 0)
(0.00315894 -0.00722016 0)
(0.00300433 -0.00726913 0)
(0.00290394 -0.00724776 0)
(0.00284903 -0.00716776 0)
(0.00283134 -0.00703752 0)
(0.00284322 -0.00686366 0)
(0.0028778 -0.00665241 0)
(0.00292912 -0.00640974 0)
(0.00299206 -0.00614144 0)
(0.00306222 -0.00585311 0)
(0.00313585 -0.00555016 0)
(0.00320974 -0.00523778 0)
(0.00328116 -0.00492094 0)
(0.0033478 -0.00460432 0)
(0.0034077 -0.00429229 0)
(0.00345921 -0.00398894 0)
(0.00350099 -0.00369802 0)
(0.00353195 -0.00342292 0)
(0.0035513 -0.00316668 0)
(0.00355847 -0.00293193 0)
(0.00355317 -0.00272092 0)
(0.00353532 -0.00253545 0)
(0.00350509 -0.00237689 0)
(0.00346285 -0.00224616 0)
(0.00340918 -0.00214369 0)
(0.00334481 -0.00206943 0)
(0.00327062 -0.0020228 0)
(0.0031876 -0.00200275 0)
(0.0030968 -0.00200764 0)
(0.00299934 -0.00203537 0)
(0.00289634 -0.00208333 0)
(0.0027889 -0.00214853 0)
(0.00267804 -0.00222764 0)
(0.00256466 -0.00231721 0)
(0.00244983 -0.00241373 0)
(0.00233583 -0.00251396 0)
(0.0055054 0.000474182 0)
(0.0055902 0.000551708 0)
(0.00568271 0.000629224 0)
(0.00578405 0.000704032 0)
(0.00589516 0.000773117 0)
(0.00601691 0.000833375 0)
(0.00615021 0.000881808 0)
(0.00629599 0.000915681 0)
(0.00645515 0.000932667 0)
(0.00662858 0.000930961 0)
(0.0068171 0.000909371 0)
(0.00702179 0.00086736 0)
(0.00724401 0.000805029 0)
(0.0074845 0.000723084 0)
(0.00774347 0.000622895 0)
(0.00802127 0.00050643 0)
(0.00831821 0.000376191 0)
(0.00863448 0.000235165 0)
(0.00897016 8.67753e-05 0)
(0.00932517 -6.51638e-05 0)
(0.00969934 -0.000216492 0)
(0.0100923 -0.000362739 0)
(0.0105036 -0.000499159 0)
(0.0109327 -0.000620757 0)
(0.0113787 -0.000722311 0)
(0.0118407 -0.000798392 0)
(0.0123177 -0.00084338 0)
(0.0128085 -0.000851487 0)
(0.0133115 -0.000816798 0)
(0.0138251 -0.000733338 0)
(0.0143475 -0.00059519 0)
(0.0148767 -0.000396675 0)
(0.0154108 -0.000132608 0)
(0.0159484 0.000201336 0)
(0.0164899 0.000608128 0)
(0.0170295 0.0010889 0)
(0.0175554 0.00164273 0)
(0.0180611 0.00226409 0)
(0.0185431 0.00294362 0)
(0.018998 0.00366816 0)
(0.0194209 0.0044207 0)
(0.0198057 0.00518102 0)
(0.0201457 0.005927 0)
(0.0204343 0.00663871 0)
(0.0206632 0.00730467 0)
(0.0208198 0.00792874 0)
(0.0208805 0.00857539 0)
(0.0207832 0.00929901 0)
(0.0205176 0.0106201 0)
(0.0201127 0.0109961 0)
(0.0197667 0.00849556 0)
(0.0195204 0.00600569 0)
(0.0191432 0.00798251 0)
(0.0184647 0.0102549 0)
(0.0176124 0.00986984 0)
(0.0168565 0.00949928 0)
(0.0161834 0.00873455 0)
(0.0153365 0.00783447 0)
(0.0142232 0.0071523 0)
(0.0130515 0.00626733 0)
(0.0118982 0.00517422 0)
(0.010805 0.00397299 0)
(0.00979816 0.00276028 0)
(0.00888516 0.0016069 0)
(0.00806702 0.000557815 0)
(0.00734018 -0.000362736 0)
(0.006698 -0.00114534 0)
(0.00613573 -0.00179021 0)
(0.00565236 -0.00230402 0)
(0.00524082 -0.00269701 0)
(0.00489005 -0.00298177 0)
(0.0045914 -0.00317129 0)
(0.00433795 -0.00327805 0)
(0.00412359 -0.0033138 0)
(0.00394281 -0.00328946 0)
(0.00379066 -0.00321509 0)
(0.00366266 -0.00309991 0)
(0.00355481 -0.00295236 0)
(0.0034635 -0.00278019 0)
(0.00338551 -0.00259056 0)
(0.00331795 -0.00239006 0)
(0.00325826 -0.00218482 0)
(0.00320417 -0.00198049 0)
(0.00315367 -0.00178225 0)
(0.00310504 -0.00159482 0)
(0.00305683 -0.00142242 0)
(0.00300782 -0.00126873 0)
(0.00295704 -0.00113682 0)
(0.00290376 -0.00102917 0)
(0.00284743 -0.000947556 0)
(0.0027877 -0.00089303 0)
(0.00272441 -0.000865896 0)
(0.00265751 -0.000865685 0)
(0.00258712 -0.000891169 0)
(0.00251345 -0.000940405 0)
(0.00243682 -0.00101082 0)
(0.00235767 -0.00109934 0)
(0.00227657 -0.00120254 0)
(0.0021939 -0.00131683 0)
(0.00210887 -0.00143871 0)
(0.00535149 -0.000235233 0)
(0.00546328 -0.000216659 0)
(0.00558549 -0.000204753 0)
(0.00571876 -0.000202394 0)
(0.005864 -0.000212636 0)
(0.00602226 -0.000238503 0)
(0.00619454 -0.000282788 0)
(0.00638178 -0.000347899 0)
(0.00658491 -0.000435701 0)
(0.00680482 -0.000547407 0)
(0.00704233 -0.00068349 0)
(0.00729794 -0.000843645 0)
(0.00757173 -0.00102681 0)
(0.00786421 -0.00123121 0)
(0.00817628 -0.00145429 0)
(0.00850849 -0.00169284 0)
(0.00886119 -0.00194299 0)
(0.00923461 -0.00220032 0)
(0.00962879 -0.00245987 0)
(0.0100436 -0.00271617 0)
(0.0104787 -0.00296327 0)
(0.0109335 -0.00319476 0)
(0.011407 -0.00340373 0)
(0.0118978 -0.00358284 0)
(0.012404 -0.00372429 0)
(0.0129232 -0.0038199 0)
(0.0134523 -0.00386119 0)
(0.0139873 -0.0038395 0)
(0.0145235 -0.00374622 0)
(0.0150551 -0.00357305 0)
(0.0155756 -0.00331235 0)
(0.0160774 -0.00295757 0)
(0.0165521 -0.00250386 0)
(0.0169894 -0.00194878 0)
(0.0173767 -0.00129326 0)
(0.0177066 -0.000542871 0)
(0.0179763 0.00029311 0)
(0.0181881 0.0012038 0)
(0.0183529 0.00217104 0)
(0.0184792 0.00317049 0)
(0.0185695 0.00417556 0)
(0.0186144 0.00516004 0)
(0.0185965 0.00608737 0)
(0.0185003 0.00692211 0)
(0.0183114 0.0076978 0)
(0.0180057 0.00848301 0)
(0.0175786 0.00937002 0)
(0.0170699 0.010573 0)
(0.0165354 0.011915 0)
(0.0159617 0.0131643 0)
(0.015083 0.0115444 0)
(0.0137722 0.010952 0)
(0.0123186 0.0135044 0)
(0.0110473 0.0163058 0)
(0.00979169 0.0160651 0)
(0.00838277 0.0154918 0)
(0.00688279 0.0149533 0)
(0.00544093 0.0152751 0)
(0.00416667 0.0147155 0)
(0.00301712 0.0136139 0)
(0.00197502 0.0121209 0)
(0.00103782 0.0104026 0)
(0.000207015 0.00860492 0)
(-0.000517041 0.00683416 0)
(-0.00113525 0.0051627 0)
(-0.00164972 0.00363607 0)
(-0.00206385 0.00227791 0)
(-0.00238505 0.00109619 0)
(-0.00262478 8.72165e-05 0)
(-0.00279738 -0.000757213 0)
(-0.00291558 -0.00144852 0)
(-0.00298346 -0.00199986 0)
(-0.00300504 -0.00242513 0)
(-0.00298635 -0.00273826 0)
(-0.00293379 -0.00295274 0)
(-0.00285333 -0.00308144 0)
(-0.00275031 -0.00313651 0)
(-0.00262948 -0.00312931 0)
(-0.00249501 -0.00307046 0)
(-0.00235056 -0.00296979 0)
(-0.00219927 -0.00283643 0)
(-0.00204389 -0.00267885 0)
(-0.00188677 -0.00250486 0)
(-0.00172994 -0.00232167 0)
(-0.00157516 -0.00213591 0)
(-0.00142394 -0.00195358 0)
(-0.00127756 -0.00178005 0)
(-0.00113709 -0.00162003 0)
(-0.00100343 -0.00147752 0)
(-0.000877289 -0.00135574 0)
(-0.000759202 -0.0012571 0)
(-0.000649554 -0.00118312 0)
(-0.000548572 -0.00113448 0)
(-0.000456348 -0.00111095 0)
(-0.000372847 -0.00111149 0)
(-0.000297933 -0.00113433 0)
(-0.000231431 -0.00117706 0)
(-0.000173142 -0.00123683 0)
(-0.000122588 -0.00131051 0)
(-7.80686e-05 -0.00139494 0)
(0.00623706 -0.00123076 0)
(0.00641069 -0.00129971 0)
(0.00659655 -0.00138199 0)
(0.00679683 -0.00148048 0)
(0.00701265 -0.00159819 0)
(0.00724496 -0.00173801 0)
(0.00749471 -0.00190254 0)
(0.00776286 -0.0020939 0)
(0.00805037 -0.00231368 0)
(0.00835816 -0.00256274 0)
(0.0086871 -0.00284124 0)
(0.00903804 -0.00314853 0)
(0.0094118 -0.00348312 0)
(0.00980919 -0.00384272 0)
(0.010231 -0.00422428 0)
(0.010678 -0.00462405 0)
(0.011151 -0.00503753 0)
(0.0116506 -0.00545947 0)
(0.0121774 -0.0058838 0)
(0.0127318 -0.00630355 0)
(0.0133141 -0.00671073 0)
(0.0139238 -0.0070962 0)
(0.0145604 -0.00744951 0)
(0.0152222 -0.0077588 0)
(0.015907 -0.00801071 0)
(0.0166112 -0.00819043 0)
(0.01733 -0.00828185 0)
(0.0180574 -0.00826792 0)
(0.0187855 -0.00813114 0)
(0.0195051 -0.00785434 0)
(0.0202057 -0.00742135 0)
(0.0208758 -0.00681737 0)
(0.021503 -0.00603086 0)
(0.0220743 -0.00505654 0)
(0.0225753 -0.00389637 0)
(0.0229948 -0.00257803 0)
(0.0233373 -0.00114537 0)
(0.0235898 0.000397395 0)
(0.0237055 0.00199414 0)
(0.0236544 0.00361446 0)
(0.0234416 0.00512511 0)
(0.0230409 0.00689662 0)
(0.0223717 0.00889175 0)
(0.0213332 0.0110626 0)
(0.0198632 0.013386 0)
(0.0179532 0.0161185 0)
(0.0156847 0.0185272 0)
(0.0131833 0.0208326 0)
(0.0105614 0.0225668 0)
(0.0080479 0.0235648 0)
(0.00564406 0.0245435 0)
(0.00320237 0.0258038 0)
(0.00105094 0.0261838 0)
(-0.000683869 0.0271666 0)
(-0.00225617 0.0277006 0)
(-0.00369472 0.0273443 0)
(-0.0049605 0.0264976 0)
(-0.00604296 0.0248495 0)
(-0.00691779 0.0228367 0)
(-0.00756009 0.0205228 0)
(-0.00799558 0.017981 0)
(-0.00828519 0.0153714 0)
(-0.00847484 0.0127649 0)
(-0.00857437 0.0102253 0)
(-0.00857863 0.00781186 0)
(-0.00849427 0.00558388 0)
(-0.00834158 0.00357342 0)
(-0.00814218 0.00179583 0)
(-0.00789966 0.000254726 0)
(-0.00760465 -0.00105508 0)
(-0.00726859 -0.00214285 0)
(-0.00690634 -0.00302282 0)
(-0.00652985 -0.00371278 0)
(-0.0061472 -0.00423241 0)
(-0.00576447 -0.00460198 0)
(-0.00538652 -0.0048414 0)
(-0.00501715 -0.00496968 0)
(-0.00465919 -0.00500454 0)
(-0.00431464 -0.00496217 0)
(-0.00398479 -0.00485724 0)
(-0.00367038 -0.00470287 0)
(-0.00337172 -0.00451077 0)
(-0.00308879 -0.00429136 0)
(-0.00282136 -0.00405387 0)
(-0.00256909 -0.00380654 0)
(-0.00233154 -0.00355664 0)
(-0.00210827 -0.00331064 0)
(-0.00189883 -0.00307414 0)
(-0.0017028 -0.00285199 0)
(-0.00151979 -0.00264821 0)
(-0.00134943 -0.00246596 0)
(-0.00119135 -0.00230757 0)
(-0.00104522 -0.00217445 0)
(-0.000910675 -0.00206715 0)
(-0.000787349 -0.00198533 0)
(-0.00067484 -0.00192791 0)
(-0.000572668 -0.0018931 0)
(-0.00048026 -0.0018786 0)
(-0.000397225 -0.00188173 0)
(-0.000324349 -0.00189968 0)
(0.00511815 -0.00261046 0)
(0.00524298 -0.00278814 0)
(0.00537886 -0.00298807 0)
(0.00552542 -0.00321346 0)
(0.0056835 -0.00346752 0)
(0.00585411 -0.00375332 0)
(0.00603825 -0.00407359 0)
(0.00623689 -0.00443061 0)
(0.00645108 -0.00482611 0)
(0.00668188 -0.00526118 0)
(0.00693048 -0.00573624 0)
(0.00719812 -0.00625104 0)
(0.00748618 -0.0068046 0)
(0.00779614 -0.00739523 0)
(0.00812959 -0.00802049 0)
(0.00848823 -0.00867715 0)
(0.00887386 -0.009361 0)
(0.00928829 -0.0100668 0)
(0.0097333 -0.0107877 0)
(0.0102105 -0.0115155 0)
(0.0107213 -0.0122397 0)
(0.0112665 -0.0129473 0)
(0.0118461 -0.0136224 0)
(0.0124594 -0.0142458 0)
(0.013104 -0.0147949 0)
(0.013776 -0.0152435 0)
(0.0144691 -0.0155621 0)
(0.0151743 -0.0157189 0)
(0.0158786 -0.0156811 0)
(0.0165645 -0.0154169 0)
(0.0172105 -0.0148997 0)
(0.0177941 -0.0141053 0)
(0.0182923 -0.0129941 0)
(0.0186748 -0.0115809 0)
(0.0188831 -0.00975372 0)
(0.0188239 -0.00761645 0)
(0.0184009 -0.00550226 0)
(0.0176016 -0.00266701 0)
(0.0166023 0.00033807 0)
(0.0158755 0.00315171 0)
(0.0155176 0.00622877 0)
(0.0149013 0.0103228 0)
(0.0138204 0.0157454 0)
(0.0124843 0.0230825 0)
(0.0108272 0.0303795 0)
(0.00865874 0.0374794 0)
(0.00606929 0.0420277 0)
(0.00340443 0.0456925 0)
(0.000862755 0.0479031 0)
(-0.00147516 0.0482718 0)
(-0.00364522 0.0490855 0)
(-0.00563343 0.0484424 0)
(-0.00750362 0.0455696 0)
(-0.00907922 0.0435259 0)
(-0.0100126 0.0417417 0)
(-0.0103841 0.0393361 0)
(-0.0106515 0.0368069 0)
(-0.0113451 0.0337991 0)
(-0.0123353 0.0287774 0)
(-0.0131312 0.0236904 0)
(-0.0135929 0.0194239 0)
(-0.0138877 0.0160335 0)
(-0.0141085 0.0127282 0)
(-0.0141505 0.00940582 0)
(-0.0139691 0.00598991 0)
(-0.0136102 0.0030876 0)
(-0.0131588 0.000560479 0)
(-0.01266 -0.00158104 0)
(-0.0121498 -0.00335374 0)
(-0.0116367 -0.00480105 0)
(-0.0111052 -0.00595331 0)
(-0.0105603 -0.00683841 0)
(-0.0100102 -0.00748423 0)
(-0.00946294 -0.00791975 0)
(-0.00892461 -0.00817373 0)
(-0.00839998 -0.00827397 0)
(-0.00789272 -0.00824668 0)
(-0.00740561 -0.008116 0)
(-0.00694054 -0.00790369 0)
(-0.00649865 -0.00762895 0)
(-0.00608037 -0.00730842 0)
(-0.00568561 -0.00695634 0)
(-0.00531382 -0.00658473 0)
(-0.00496417 -0.00620367 0)
(-0.00463563 -0.0058216 0)
(-0.00432707 -0.00544553 0)
(-0.00403736 -0.00508133 0)
(-0.0037654 -0.00473387 0)
(-0.00351015 -0.00440714 0)
(-0.00327069 -0.00410435 0)
(-0.00304616 -0.00382792 0)
(-0.00283582 -0.00357957 0)
(-0.00263899 -0.00336021 0)
(-0.00245507 -0.00317005 0)
(-0.00228347 -0.00300857 0)
(-0.00212366 -0.00287457 0)
(-0.00197518 -0.00276627 0)
(-0.00183762 -0.00268143 0)
(-0.00171037 -0.00261747 0)
(-0.00159156 -0.00257168 0)
(0.00451104 -0.00315139 0)
(0.00455904 -0.00336131 0)
(0.00460568 -0.00359608 0)
(0.00465192 -0.00385897 0)
(0.00469756 -0.0041533 0)
(0.00474217 -0.00448225 0)
(0.00478533 -0.00484872 0)
(0.00482664 -0.00525525 0)
(0.00486567 -0.00570391 0)
(0.00490195 -0.00619627 0)
(0.00493502 -0.00673338 0)
(0.00496435 -0.0073157 0)
(0.00498945 -0.00794307 0)
(0.00500977 -0.00861467 0)
(0.00502475 -0.00932883 0)
(0.0050338 -0.0100829 0)
(0.0050362 -0.0108728 0)
(0.00503114 -0.011693 0)
(0.00501757 -0.0125354 0)
(0.00499418 -0.0133892 0)
(0.00495928 -0.0142402 0)
(0.00491071 -0.0150697 0)
(0.0048457 -0.0158536 0)
(0.00476087 -0.0165621 0)
(0.00465204 -0.0171582 0)
(0.00451428 -0.0175972 0)
(0.00434189 -0.0178252 0)
(0.00412869 -0.0177767 0)
(0.00386754 -0.0173704 0)
(0.00354627 -0.0165002 0)
(0.00314045 -0.015048 0)
(0.00265654 -0.0133707 0)
(0.00208443 -0.0109658 0)
(0.00137576 -0.00777139 0)
(0.000511488 -0.00335463 0)
(-0.000557473 0.00242013 0)
(-0.00203728 0.0100936 0)
(-0.00401513 0.0169012 0)
(-0.0062453 0.0200729 0)
(-0.00761244 0.0107204 0)
(-0.00790832 0.0109668 0)
(-0.00925595 0.026259 0)
(-0.011718 0.0322235 0)
(-0.013058 0.0329477 0)
(-0.0130308 0.0401385 0)
(-0.0131972 0.0543284 0)
(-0.014083 0.0606951 0)
(-0.015022 0.0622294 0)
(-0.0159364 0.0615676 0)
(-0.0162542 0.0537172 0)
(-0.0156354 0.0501858 0)
(-0.0147828 0.0487427 0)
(-0.0144918 0.0495562 0)
(-0.0147305 0.0449837 0)
(-0.0141531 0.0336249 0)
(-0.0121055 0.0252021 0)
(-0.00928875 0.0262874 0)
(-0.00728494 0.0356501 0)
(-0.00661478 0.035234 0)
(-0.006447 0.0293369 0)
(-0.00597409 0.0200481 0)
(-0.00557945 0.0194089 0)
(-0.00554864 0.0137708 0)
(-0.00538062 0.00748339 0)
(-0.00511578 0.00199542 0)
(-0.00487001 -0.00166505 0)
(-0.00464397 -0.00453135 0)
(-0.004412 -0.00671569 0)
(-0.00421854 -0.00821313 0)
(-0.00404484 -0.0099589 0)
(-0.00386578 -0.0112827 0)
(-0.0036947 -0.0122279 0)
(-0.00353178 -0.0128469 0)
(-0.00337341 -0.0131907 0)
(-0.00321701 -0.013304 0)
(-0.00306183 -0.0132261 0)
(-0.00290828 -0.0129922 0)
(-0.00275732 -0.0126346 0)
(-0.00261008 -0.0121823 0)
(-0.00246764 -0.011661 0)
(-0.0023309 -0.0110932 0)
(-0.00220049 -0.0104979 0)
(-0.00207672 -0.00989073 0)
(-0.00195969 -0.0092845 0)
(-0.00184926 -0.00868931 0)
(-0.00174515 -0.00811302 0)
(-0.00164697 -0.00756167 0)
(-0.00155431 -0.00703976 0)
(-0.00146675 -0.00655061 0)
(-0.00138388 -0.00609653 0)
(-0.00130535 -0.00567901 0)
(-0.00123085 -0.00529881 0)
(-0.00116014 -0.00495601 0)
(-0.00109301 -0.00465007 0)
(-0.00102932 -0.00437983 0)
(-0.000968949 -0.00414361 0)
(-0.000911754 -0.00393922 0)
(-0.000857537 -0.00376409 0)
(-0.000806309 -0.00361538 0)
(-0.000759242 -0.00349013 0)
(0.00267123 -0.00322194 0)
(0.0025859 -0.00339837 0)
(0.00248818 -0.00359402 0)
(0.00237563 -0.00381175 0)
(0.00224672 -0.00405443 0)
(0.00209999 -0.00432472 0)
(0.00193386 -0.00462501 0)
(0.00174658 -0.00495727 0)
(0.00153629 -0.00532299 0)
(0.00130101 -0.00572315 0)
(0.00103862 -0.00615815 0)
(0.000746899 -0.00662779 0)
(0.000423461 -0.00713116 0)
(6.57966e-05 -0.00766655 0)
(-0.00032874 -0.00823129 0)
(-0.000762926 -0.00882148 0)
(-0.00123964 -0.00943165 0)
(-0.00176183 -0.0100544 0)
(-0.00233242 -0.0106798 0)
(-0.00295425 -0.0112951 0)
(-0.00362986 -0.0118839 0)
(-0.00436127 -0.012426 0)
(-0.0051497 -0.0128968 0)
(-0.00599506 -0.0132674 0)
(-0.00689546 -0.0135042 0)
(-0.00784643 -0.0135698 0)
(-0.00884028 -0.0134231 0)
(-0.00986534 -0.0130194 0)
(-0.0109031 -0.0123107 0)
(-0.0119172 -0.0112444 0)
(-0.0128444 -0.00975213 0)
(-0.0137108 -0.00761623 0)
(-0.014533 -0.00472959 0)
(-0.0152445 -0.000955898 0)
(-0.0157687 0.00373015 0)
(-0.0159274 0.00940535 0)
(-0.0154298 0.0164639 0)
(-0.0141225 0.0216411 0)
(-0.0122805 0.0234153 0)
(-0.0112619 0.0151305 0)
(-0.0115803 0.0184873 0)
(-0.0115165 0.0367881 0)
(-0.010638 0.0408798 0)
(-0.0101248 0.0361798 0)
(-0.00969514 0.0357135 0)
(-0.00795933 0.0452536 0)
(-0.00522485 0.0513486 0)
(-0.00271951 0.0538482 0)
(-0.000485086 0.0559121 0)
(4.6472e-05 0.0519207 0)
(-0.00122789 0.0483339 0)
(-0.00228676 0.0472625 0)
(-0.00251317 0.0479433 0)
(-0.00151206 0.0422625 0)
(-0.000318594 0.0267383 0)
(-6.30903e-06 0.0118985 0)
(0.000650195 0.0032083 0)
(0.00259914 0.0159288 0)
(0.00518807 0.0208158 0)
(0.00777859 0.019482 0)
(0.00979611 0.0123599 0)
(0.011493 0.0123311 0)
(0.0130558 0.0104766 0)
(0.0137846 0.00734917 0)
(0.0138243 0.00365787 0)
(0.0135057 0.000918656 0)
(0.0130096 -0.00156271 0)
(0.0124076 -0.00360847 0)
(0.0118096 -0.00524855 0)
(0.0111751 -0.00645398 0)
(0.010422 -0.00742287 0)
(0.0096123 -0.00823109 0)
(0.00878982 -0.00887944 0)
(0.00797792 -0.00936403 0)
(0.0071908 -0.00968589 0)
(0.00643846 -0.00985259 0)
(0.00572773 -0.00987784 0)
(0.00506272 -0.00977955 0)
(0.0044454 -0.0095779 0)
(0.00387615 -0.00929367 0)
(0.00335417 -0.00894697 0)
(0.00287784 -0.00855623 0)
(0.00244505 -0.00813769 0)
(0.00205335 -0.00770515 0)
(0.00170013 -0.00726996 0)
(0.00138274 -0.00684124 0)
(0.00109857 -0.0064261 0)
(0.000845067 -0.00602999 0)
(0.000619784 -0.00565695 0)
(0.000420394 -0.00530988 0)
(0.000244688 -0.00499073 0)
(9.05838e-05 -0.00470064 0)
(-4.38728e-05 -0.00444006 0)
(-0.000160512 -0.00420876 0)
(-0.000261041 -0.00400596 0)
(-0.000347063 -0.00383032 0)
(-0.000420118 -0.00368006 0)
(-0.000481709 -0.00355303 0)
(-0.000533028 -0.00344679 0)
(-0.000573998 -0.00335882 0)
(0.00194078 -0.00204886 0)
(0.00179833 -0.00206772 0)
(0.00163665 -0.002091 0)
(0.00145472 -0.00212062 0)
(0.00125086 -0.00215844 0)
(0.00102322 -0.00220605 0)
(0.000769871 -0.00226463 0)
(0.000488819 -0.00233488 0)
(0.000177958 -0.00241695 0)
(-0.000164948 -0.00251032 0)
(-0.000542271 -0.00261382 0)
(-0.000956527 -0.00272559 0)
(-0.00141038 -0.00284307 0)
(-0.00190663 -0.002963 0)
(-0.00244819 -0.00308138 0)
(-0.00303805 -0.0031934 0)
(-0.00367921 -0.00329341 0)
(-0.00437461 -0.00337485 0)
(-0.00512695 -0.00343025 0)
(-0.00593858 -0.00345128 0)
(-0.00681125 -0.00342899 0)
(-0.00774578 -0.00335418 0)
(-0.00874142 -0.00321806 0)
(-0.00979528 -0.00301328 0)
(-0.0109043 -0.00273529 0)
(-0.0120653 -0.00238368 0)
(-0.0132708 -0.00196444 0)
(-0.0145077 -0.00149451 0)
(-0.0157591 -0.00100798 0)
(-0.017009 -0.000562444 0)
(-0.0182448 -0.000183777 0)
(-0.0194005 0.000653792 0)
(-0.0204029 0.00145935 0)
(-0.0212006 0.00219788 0)
(-0.0217262 0.00259258 0)
(-0.0218947 0.00250834 0)
(-0.0215769 0.00185509 0)
(-0.0207188 0.0009808 0)
(-0.0194924 0.00126966 0)
(-0.0183792 0.00485086 0)
(-0.0174403 0.0125221 0)
(-0.0159418 0.0203513 0)
(-0.0137804 0.0228232 0)
(-0.0113787 0.0215054 0)
(-0.00886332 0.0178269 0)
(-0.00639029 0.0204423 0)
(-0.00416536 0.0278341 0)
(-0.0024285 0.0366196 0)
(-0.00121085 0.0456981 0)
(-0.000312628 0.0551544 0)
(0.000244199 0.0562873 0)
(0.00112322 0.0506642 0)
(0.00292328 0.0409107 0)
(0.00551061 0.0272192 0)
(0.00836648 0.0145611 0)
(0.0103716 0.0105084 0)
(0.0107255 0.00530136 0)
(0.0107239 0.00386633 0)
(0.0117539 4.00953e-05 0)
(0.0134785 -0.00609415 0)
(0.0151177 -0.00646614 0)
(0.0161219 -0.00557913 0)
(0.0167427 -0.00173758 0)
(0.0171301 0.00136061 0)
(0.0172395 0.00265506 0)
(0.01706 0.00299787 0)
(0.016656 0.00254825 0)
(0.0160815 0.00173645 0)
(0.0153656 0.000604612 0)
(0.014576 0.000203203 0)
(0.0137779 -0.000196969 0)
(0.0129676 -0.000678517 0)
(0.0121471 -0.00120815 0)
(0.011326 -0.00173959 0)
(0.0105148 -0.00223602 0)
(0.00972025 -0.00267391 0)
(0.00894788 -0.0030407 0)
(0.008204 -0.00333209 0)
(0.00749338 -0.00354952 0)
(0.00681923 -0.00369829 0)
(0.00618356 -0.00378609 0)
(0.00558737 -0.00382184 0)
(0.00503082 -0.00381487 0)
(0.00451344 -0.00377427 0)
(0.0040342 -0.00370852 0)
(0.00359177 -0.00362526 0)
(0.00318452 -0.0035311 0)
(0.0028107 -0.00343169 0)
(0.00246848 -0.00333185 0)
(0.00215601 -0.00323553 0)
(0.00187147 -0.00314594 0)
(0.00161309 -0.00306551 0)
(0.00137914 -0.00299599 0)
(0.00116798 -0.00293843 0)
(0.000978003 -0.00289323 0)
(0.000807702 -0.0028602 0)
(0.000655659 -0.0028386 0)
(0.000520588 -0.00282724 0)
(0.000401097 -0.00282461 0)
(0.000294686 -0.002829 0)
(0.00142613 -0.0011628 0)
(0.00129812 -0.00107148 0)
(0.00115694 -0.00097592 0)
(0.00100149 -0.000877981 0)
(0.000831222 -0.000779452 0)
(0.000645847 -0.000681847 0)
(0.000444747 -0.00058626 0)
(0.000227204 -0.000493195 0)
(-7.09109e-06 -0.000402532 0)
(-0.000258372 -0.000313476 0)
(-0.000526809 -0.000224554 0)
(-0.000812523 -0.000133625 0)
(-0.00111557 -3.79236e-05 0)
(-0.00143592 6.58953e-05 0)
(-0.00177344 0.0001817 0)
(-0.00212784 0.000313828 0)
(-0.00249865 0.000467034 0)
(-0.00288518 0.000646426 0)
(-0.00328644 0.000857396 0)
(-0.00370111 0.00110551 0)
(-0.00412748 0.00139632 0)
(-0.00456347 0.00173516 0)
(-0.00500698 0.0021267 0)
(-0.0054561 0.00257442 0)
(-0.00590686 0.00307977 0)
(-0.00635311 0.00364153 0)
(-0.00678985 0.00425462 0)
(-0.00721457 0.00490842 0)
(-0.00762619 0.00558513 0)
(-0.00802556 0.00625839 0)
(-0.00841317 0.00689305 0)
(-0.00878105 0.0074456 0)
(-0.00911474 0.00784315 0)
(-0.00940874 0.00799499 0)
(-0.00967185 0.00778687 0)
(-0.00992709 0.00702981 0)
(-0.0102236 0.00553381 0)
(-0.0106377 0.0033732 0)
(-0.0111794 0.00161963 0)
(-0.0116364 0.00186204 0)
(-0.011632 0.00451099 0)
(-0.0110173 0.00619664 0)
(-0.0100613 0.00627531 0)
(-0.00917893 0.00475839 0)
(-0.00866711 0.00417885 0)
(-0.00822903 0.0089672 0)
(-0.00734739 0.0173826 0)
(-0.00588599 0.0265228 0)
(-0.00386299 0.0342823 0)
(-0.00120113 0.0397198 0)
(0.00188668 0.0386879 0)
(0.00480961 0.030276 0)
(0.00719303 0.0191277 0)
(0.00876879 0.00562607 0)
(0.0094362 -0.0041837 0)
(0.00970352 -0.00227223 0)
(0.0100227 0.00301793 0)
(0.0102708 0.00203047 0)
(0.0102113 -0.000788725 0)
(0.00962818 -0.00532174 0)
(0.00877137 -0.0035284 0)
(0.00805468 -0.000565054 0)
(0.00756861 0.00225709 0)
(0.00732019 0.00422693 0)
(0.00720984 0.00543231 0)
(0.00715256 0.00604198 0)
(0.00709402 0.0062054 0)
(0.00700131 0.00605466 0)
(0.00686144 0.0056953 0)
(0.00668542 0.00521732 0)
(0.00649161 0.00466878 0)
(0.00628235 0.00408729 0)
(0.00605451 0.00350308 0)
(0.00580554 0.00293869 0)
(0.00553531 0.0024094 0)
(0.00524815 0.00192437 0)
(0.0049486 0.00148857 0)
(0.00463998 0.00110317 0)
(0.00432584 0.00076665 0)
(0.00400987 0.000475704 0)
(0.00369546 0.000225999 0)
(0.00338554 1.26652e-05 0)
(0.00308251 -0.000169347 0)
(0.00278827 -0.000325027 0)
(0.00250413 -0.000459159 0)
(0.00223209 -0.000576213 0)
(0.00197388 -0.000680447 0)
(0.00172971 -0.00077576 0)
(0.00149964 -0.000865626 0)
(0.00128379 -0.000953063 0)
(0.00108218 -0.0010406 0)
(0.000894745 -0.00113024 0)
(0.000721313 -0.00122341 0)
(0.000561646 -0.00132093 0)
(0.000415422 -0.00142296 0)
(0.000282243 -0.00152932 0)
(0.000161629 -0.00163921 0)
(5.2986e-05 -0.00175143 0)
(-4.41761e-05 -0.00186443 0)
(-0.000129393 -0.00197651 0)
(0.00130999 -0.00026336 0)
(0.00120612 -8.36131e-05 0)
(0.00109244 0.000102209 0)
(0.000969014 0.000291404 0)
(0.000835796 0.000481299 0)
(0.000692682 0.000669435 0)
(0.000540078 0.000853717 0)
(0.000378666 0.0010326 0)
(0.000208904 0.00120514 0)
(3.1357e-05 0.00137098 0)
(-0.000153287 0.0015304 0)
(-0.000344197 0.00168424 0)
(-0.000540399 0.00183389 0)
(-0.000740771 0.00198113 0)
(-0.000944041 0.00212811 0)
(-0.00114877 0.00227724 0)
(-0.00135331 0.00243108 0)
(-0.00155584 0.00259228 0)
(-0.00175426 0.00276349 0)
(-0.00194624 0.00294732 0)
(-0.00212913 0.0031462 0)
(-0.00230003 0.00336235 0)
(-0.0024557 0.00359762 0)
(-0.00259269 0.0038534 0)
(-0.00270731 0.00413045 0)
(-0.0027958 0.00442826 0)
(-0.00285455 0.00474489 0)
(-0.00288041 0.00507683 0)
(-0.00287108 0.00541884 0)
(-0.00282552 0.00576383 0)
(-0.00274454 0.00610292 0)
(-0.0026313 0.00642532 0)
(-0.00249233 0.006719 0)
(-0.00233943 0.00697283 0)
(-0.00219213 0.00717943 0)
(-0.00208073 0.00733788 0)
(-0.00204565 0.00746191 0)
(-0.00212492 0.00758963 0)
(-0.00232075 0.00775727 0)
(-0.00257215 0.00799068 0)
(-0.00275323 0.00823088 0)
(-0.002814 0.00841561 0)
(-0.00283367 0.0085415 0)
(-0.00291133 0.00853616 0)
(-0.00306655 0.00859956 0)
(-0.0031252 0.00920199 0)
(-0.00280018 0.0108677 0)
(-0.00189867 0.0129693 0)
(-0.000415694 0.0146383 0)
(0.0015096 0.0153633 0)
(0.00358257 0.014611 0)
(0.00535474 0.0122975 0)
(0.00649069 0.00960089 0)
(0.00683188 0.00688074 0)
(0.00640993 0.00504725 0)
(0.00574885 0.00457515 0)
(0.00535596 0.00441598 0)
(0.00514209 0.00427159 0)
(0.00484602 0.00401391 0)
(0.00431853 0.00374149 0)
(0.00370929 0.00361415 0)
(0.00327455 0.00361153 0)
(0.00304512 0.00367965 0)
(0.00297802 0.0037551 0)
(0.00301837 0.00379618 0)
(0.00312036 0.00378194 0)
(0.00324952 0.00370709 0)
(0.00338147 0.00357677 0)
(0.00350003 0.00340214 0)
(0.00359555 0.00319632 0)
(0.00366279 0.00297142 0)
(0.00369921 0.0027374 0)
(0.00370418 0.00250229 0)
(0.00367867 0.00227241 0)
(0.00362475 0.00205244 0)
(0.00354524 0.00184556 0)
(0.00344335 0.00165329 0)
(0.00332242 0.00147608 0)
(0.00318571 0.00131353 0)
(0.00303636 0.00116464 0)
(0.00287724 0.001028 0)
(0.002711 0.000901846 0)
(0.00254002 0.000784244 0)
(0.00236648 0.00067311 0)
(0.00219243 0.000566293 0)
(0.00201864 0.000461637 0)
(0.00184567 0.00035686 0)
(0.00167512 0.000249847 0)
(0.00150841 0.000138698 0)
(0.00134661 2.17763e-05 0)
(0.00119062 -0.000102218 0)
(0.00104129 -0.000234172 0)
(0.000899443 -0.000374497 0)
(0.000766165 -0.000523089 0)
(0.000640937 -0.000679364 0)
(0.000523188 -0.00084205 0)
(0.000413812 -0.00100946 0)
(0.000313273 -0.00117954 0)
(0.000221658 -0.0013499 0)
(0.000138151 -0.00151804 0)
(0.00115815 0.000347441 0)
(0.00108082 0.000584754 0)
(0.000996782 0.000828049 0)
(0.000906146 0.00107388 0)
(0.000809196 0.0013188 0)
(0.000706307 0.00155964 0)
(0.000597925 0.00179364 0)
(0.000484558 0.00201851 0)
(0.000366778 0.00223259 0)
(0.000245216 0.00243485 0)
(0.000120564 0.00262492 0)
(-6.43415e-06 0.002803 0)
(-0.000134978 0.0029698 0)
(-0.000264222 0.00312648 0)
(-0.000393273 0.00327449 0)
(-0.000521192 0.00341547 0)
(-0.000646992 0.00355116 0)
(-0.000769632 0.0036833 0)
(-0.000888019 0.0038135 0)
(-0.00100099 0.00394325 0)
(-0.00110734 0.00407376 0)
(-0.00120577 0.00420597 0)
(-0.00129493 0.00434048 0)
(-0.00137344 0.00447754 0)
(-0.00143988 0.00461697 0)
(-0.00149286 0.00475817 0)
(-0.00153107 0.00490009 0)
(-0.0015534 0.00504125 0)
(-0.00155899 0.00517977 0)
(-0.00154741 0.00531349 0)
(-0.00151875 0.00544014 0)
(-0.00147375 0.00555758 0)
(-0.00141394 0.00566423 0)
(-0.00134164 0.00575948 0)
(-0.00125986 0.00584436 0)
(-0.00117198 0.00592214 0)
(-0.00108104 0.00599876 0)
(-0.000988488 0.00608226 0)
(-0.000892894 0.00618019 0)
(-0.000789973 0.00629685 0)
(-0.000674701 0.00643136 0)
(-0.000546684 0.0065823 0)
(-0.000411052 0.00675038 0)
(-0.000272831 0.00693793 0)
(-0.000125909 0.00715085 0)
(5.74636e-05 0.00739304 0)
(0.000323757 0.00765189 0)
(0.000713521 0.00787989 0)
(0.00122958 0.00801093 0)
(0.00182872 0.00799673 0)
(0.00243093 0.00781358 0)
(0.0029414 0.00747493 0)
(0.00329363 0.00703748 0)
(0.00347131 0.00656463 0)
(0.00350617 0.00612308 0)
(0.00346559 0.00575757 0)
(0.00340453 0.00545444 0)
(0.00333984 0.00519156 0)
(0.00326889 0.00496072 0)
(0.00318749 0.00476637 0)
(0.00310122 0.00462052 0)
(0.003021 0.00451652 0)
(0.00295354 0.00444062 0)
(0.00290079 0.00437917 0)
(0.00286102 0.00432112 0)
(0.00283054 0.0042587 0)
(0.00280494 0.00418728 0)
(0.00277997 0.00410477 0)
(0.00275201 0.00401094 0)
(0.00271829 0.00390687 0)
(0.00267692 0.00379429 0)
(0.00262676 0.00367523 0)
(0.00256734 0.00355175 0)
(0.00249862 0.00342573 0)
(0.00242097 0.00329875 0)
(0.002335 0.00317206 0)
(0.00224152 0.00304654 0)
(0.00214139 0.00292266 0)
(0.00203553 0.00280057 0)
(0.00192486 0.00268003 0)
(0.00181028 0.00256052 0)
(0.00169267 0.00244122 0)
(0.00157285 0.00232104 0)
(0.00145163 0.00219867 0)
(0.00132977 0.00207263 0)
(0.00120801 0.0019413 0)
(0.00108702 0.00180314 0)
(0.000967469 0.00165666 0)
(0.000850006 0.00150045 0)
(0.000735239 0.00133333 0)
(0.00062373 0.00115448 0)
(0.000515972 0.000963479 0)
(0.000412313 0.000760417 0)
(0.000312691 0.000545937 0)
(0.00021846 0.00032122 0)
(0.00013075 8.82551e-05 0)
(4.89276e-05 -0.000150529 0)
(-2.65527e-05 -0.000392302 0)
(-9.51046e-05 -0.000634014 0)
(-0.000156432 -0.000872518 0)
(0.000981801 0.000830466 0)
(0.000925463 0.0011099 0)
(0.00086492 0.00139355 0)
(0.000800518 0.00167734 0)
(0.000732632 0.00195728 0)
(0.000661685 0.00222965 0)
(0.000588145 0.00249123 0)
(0.000512514 0.00273936 0)
(0.000435326 0.00297208 0)
(0.000357133 0.00318811 0)
(0.000278501 0.0033869 0)
(0.000200002 0.0035685 0)
(0.000122214 0.00373356 0)
(4.57082e-05 0.00388317 0)
(-2.89421e-05 0.00401877 0)
(-0.000101172 0.00414201 0)
(-0.000170424 0.0042547 0)
(-0.000236147 0.00435863 0)
(-0.000297801 0.00445557 0)
(-0.000354859 0.00454714 0)
(-0.000406811 0.00463478 0)
(-0.000453173 0.00471973 0)
(-0.000493486 0.00480299 0)
(-0.000527335 0.00488532 0)
(-0.000554358 0.00496725 0)
(-0.000574258 0.00504904 0)
(-0.000586826 0.00513077 0)
(-0.000591954 0.00521231 0)
(-0.000589663 0.00529339 0)
(-0.00058011 0.0053736 0)
(-0.000563605 0.00545249 0)
(-0.000540606 0.00552958 0)
(-0.000511695 0.00560446 0)
(-0.000477537 0.00567682 0)
(-0.000438781 0.00574648 0)
(-0.000395942 0.00581343 0)
(-0.000349233 0.00587778 0)
(-0.000298421 0.00593962 0)
(-0.000242794 0.00599894 0)
(-0.000181307 0.00605539 0)
(-0.000112837 0.00610839 0)
(-3.62447e-05 0.00615716 0)
(4.97233e-05 0.00620096 0)
(0.000146527 0.00623914 0)
(0.000255991 0.00627068 0)
(0.00038029 0.00629352 0)
(0.000521375 0.00630388 0)
(0.000679345 0.0062965 0)
(0.000850626 0.00626583 0)
(0.00102767 0.00620769 0)
(0.00120033 0.00612075 0)
(0.0013582 0.00600725 0)
(0.00149326 0.00587261 0)
(0.00160159 0.00572471 0)
(0.00168357 0.00557132 0)
(0.00174274 0.00541854 0)
(0.00178355 0.0052697 0)
(0.00180983 0.00512601 0)
(0.00182448 0.00498814 0)
(0.00182993 0.00485671 0)
(0.00182871 0.0047323 0)
(0.00182331 0.00461478 0)
(0.00181586 0.00450348 0)
(0.00180768 0.00439736 0)
(0.00179934 0.00429528 0)
(0.00179074 0.00419618 0)
(0.00178141 0.00409922 0)
(0.00177063 0.00400383 0)
(0.00175766 0.00390969 0)
(0.00174177 0.00381668 0)
(0.00172234 0.00372482 0)
(0.00169888 0.00363424 0)
(0.00167105 0.00354506 0)
(0.00163864 0.00345739 0)
(0.00160155 0.00337127 0)
(0.00155981 0.0032866 0)
(0.00151353 0.00320316 0)
(0.0014629 0.00312055 0)
(0.00140815 0.00303818 0)
(0.00134957 0.00295529 0)
(0.00128751 0.00287089 0)
(0.00122229 0.00278378 0)
(0.00115431 0.00269261 0)
(0.00108397 0.00259582 0)
(0.00101166 0.00249176 0)
(0.000937816 0.00237867 0)
(0.00086288 0.00225482 0)
(0.000787303 0.00211852 0)
(0.000711548 0.0019683 0)
(0.000636085 0.00180292 0)
(0.000561386 0.00162157 0)
(0.00048792 0.00142392 0)
(0.000416147 0.00121024 0)
(0.00034652 0.000981424 0)
(0.000279515 0.000739113 0)
(0.00021569 0.000485404 0)
(0.000155709 0.000223047 0)
(9.94528e-05 -4.4678e-05 0)
(4.66866e-05 -0.000314288 0)
(-2.55481e-06 -0.00058211 0)
(0.000618671 0.00117255 0)
(0.000576939 0.00147509 0)
(0.000533481 0.00177962 0)
(0.000488528 0.00208168 0)
(0.000442401 0.00237695 0)
(0.000395437 0.00266149 0)
(0.000347974 0.00293189 0)
(0.000300344 0.00318542 0)
(0.000252871 0.00342007 0)
(0.000205869 0.00363457 0)
(0.000159632 0.0038284 0)
(0.00011444 0.00400168 0)
(7.05602e-05 0.00415512 0)
(2.82431e-05 0.00428988 0)
(-1.22696e-05 0.00440749 0)
(-5.07457e-05 0.00450968 0)
(-8.69606e-05 0.00459832 0)
(-0.000120695 0.00467528 0)
(-0.000151732 0.00474239 0)
(-0.000179859 0.00480135 0)
(-0.000204867 0.0048537 0)
(-0.000226553 0.00490079 0)
(-0.000244722 0.00494377 0)
(-0.000259189 0.00498358 0)
(-0.000269789 0.00502097 0)
(-0.000276374 0.00505649 0)
(-0.000278821 0.00509054 0)
(-0.000277037 0.00512338 0)
(-0.000270957 0.00515516 0)
(-0.000260553 0.00518593 0)
(-0.000245828 0.00521569 0)
(-0.000226818 0.00524439 0)
(-0.000203582 0.00527195 0)
(-0.000176201 0.0052983 0)
(-0.000144757 0.00532337 0)
(-0.00010933 0.00534711 0)
(-6.99789e-05 0.00536943 0)
(-2.67376e-05 0.00539024 0)
(2.03814e-05 0.0054094 0)
(7.13727e-05 0.00542666 0)
(0.000126218 0.00544171 0)
(0.000184875 0.00545411 0)
(0.000247274 0.00546335 0)
(0.000313304 0.00546884 0)
(0.00038279 0.00546989 0)
(0.000455421 0.00546572 0)
(0.000530669 0.00545547 0)
(0.000607702 0.00543824 0)
(0.000685348 0.00541327 0)
(0.000762146 0.00538009 0)
(0.000836485 0.00533866 0)
(0.000906787 0.00528946 0)
(0.000971691 0.00523342 0)
(0.00103021 0.00517183 0)
(0.00108181 0.00510609 0)
(0.0011264 0.00503754 0)
(0.0011642 0.00496732 0)
(0.0011956 0.00489634 0)
(0.00122107 0.00482534 0)
(0.00124111 0.0047549 0)
(0.00125624 0.00468546 0)
(0.00126695 0.00461726 0)
(0.00127372 0.00455038 0)
(0.00127692 0.0044848 0)
(0.00127684 0.00442038 0)
(0.0012737 0.00435699 0)
(0.00126761 0.00429447 0)
(0.00125866 0.00423272 0)
(0.00124689 0.00417163 0)
(0.0012323 0.00411113 0)
(0.00121494 0.00405117 0)
(0.00119481 0.00399167 0)
(0.00117197 0.00393257 0)
(0.00114646 0.00387372 0)
(0.00111837 0.00381492 0)
(0.00108779 0.00375589 0)
(0.00105483 0.00369622 0)
(0.00101964 0.00363537 0)
(0.000982335 0.00357265 0)
(0.000943085 0.00350718 0)
(0.000902045 0.00343791 0)
(0.000859385 0.00336362 0)
(0.000815277 0.00328287 0)
(0.000769899 0.0031941 0)
(0.000723436 0.00309559 0)
(0.000676073 0.00298557 0)
(0.000628001 0.00286224 0)
(0.000579419 0.00272388 0)
(0.000530528 0.00256896 0)
(0.000481538 0.00239623 0)
(0.000432666 0.00220481 0)
(0.000384137 0.00199437 0)
(0.000336183 0.00176513 0)
(0.000289047 0.00151802 0)
(0.000242976 0.00125463 0)
(0.000198211 0.00097727 0)
(0.000154961 0.000688835 0)
(0.000113381 0.00039275 0)
(7.37063e-05 9.2917e-05 0)
(3.64888e-05 -0.000206544 0)
(0.000192639 0.00143312 0)
(0.0001648 0.00174081 0)
(0.000137539 0.00204837 0)
(0.000111104 0.00235132 0)
(8.56851e-05 0.00264543 0)
(6.14329e-05 0.00292689 0)
(3.84676e-05 0.00319248 0)
(1.68783e-05 0.00343965 0)
(-3.27713e-06 0.00366661 0)
(-2.19702e-05 0.00387231 0)
(-3.91959e-05 0.00405641 0)
(-5.49666e-05 0.0042192 0)
(-6.9305e-05 0.00436153 0)
(-8.22383e-05 0.00448465 0)
(-9.37933e-05 0.00459016 0)
(-0.000103992 0.00467984 0)
(-0.000112849 0.00475555 0)
(-0.000120368 0.00481919 0)
(-0.00012654 0.00487256 0)
(-0.000131346 0.00491735 0)
(-0.000134754 0.00495509 0)
(-0.000136726 0.00498713 0)
(-0.000137213 0.00501462 0)
(-0.000136164 0.00503853 0)
(-0.000133529 0.00505963 0)
(-0.000129257 0.00507854 0)
(-0.000123301 0.00509572 0)
(-0.000115622 0.00511152 0)
(-0.000106189 0.00512615 0)
(-9.49797e-05 0.00513974 0)
(-8.19826e-05 0.00515235 0)
(-6.71954e-05 0.00516397 0)
(-5.06244e-05 0.00517455 0)
(-3.2283e-05 0.005184 0)
(-1.21898e-05 0.00519222 0)
(9.63322e-06 0.00519906 0)
(3.31596e-05 0.00520439 0)
(5.8362e-05 0.00520804 0)
(8.52098e-05 0.00520985 0)
(0.000113663 0.00520962 0)
(0.000143667 0.00520717 0)
(0.00017515 0.00520232 0)
(0.000208014 0.00519484 0)
(0.000242129 0.00518456 0)
(0.000277329 0.00517127 0)
(0.000313402 0.00515479 0)
(0.000350083 0.00513494 0)
(0.000387051 0.00511158 0)
(0.000423936 0.00508462 0)
(0.000460324 0.00505404 0)
(0.00049579 0.00501993 0)
(0.000529916 0.00498247 0)
(0.000562327 0.00494193 0)
(0.000592715 0.00489867 0)
(0.00062085 0.00485307 0)
(0.000646585 0.00480554 0)
(0.000669849 0.00475644 0)
(0.000690631 0.00470615 0)
(0.000708968 0.00465497 0)
(0.000724933 0.00460319 0)
(0.000738621 0.00455108 0)
(0.000750144 0.00449884 0)
(0.000759618 0.00444667 0)
(0.000767153 0.0043947 0)
(0.000772849 0.00434307 0)
(0.000776794 0.00429188 0)
(0.000779063 0.0042412 0)
(0.000779719 0.0041911 0)
(0.000778817 0.00414161 0)
(0.000776407 0.00409276 0)
(0.000772537 0.00404452 0)
(0.000767257 0.00399684 0)
(0.000760616 0.00394961 0)
(0.000752671 0.00390265 0)
(0.000743479 0.00385571 0)
(0.000733105 0.00380844 0)
(0.000721617 0.00376036 0)
(0.000709085 0.00371087 0)
(0.000695582 0.00365924 0)
(0.00068118 0.00360453 0)
(0.000665948 0.00354566 0)
(0.000649954 0.00348136 0)
(0.000633259 0.00341019 0)
(0.000615915 0.00333056 0)
(0.000597968 0.00324073 0)
(0.000579453 0.0031389 0)
(0.000560398 0.00302327 0)
(0.000540819 0.00289209 0)
(0.000520727 0.00274377 0)
(0.000500125 0.00257701 0)
(0.000479015 0.00239087 0)
(0.000457401 0.00218493 0)
(0.000435291 0.00195932 0)
(0.000412704 0.00171486 0)
(0.000389669 0.00145305 0)
(0.000366233 0.00117608 0)
(0.000342466 0.000886812 0)
(0.000318478 0.000588664 0)
(0.000294394 0.000285502 0)
(0.00027016 -1.85572e-05 0)
(-0.000166195 0.00159732 0)
(-0.000181829 0.0018929 0)
(-0.000195269 0.00218723 0)
(-0.000206426 0.00247616 0)
(-0.000215285 0.00275579 0)
(-0.000221887 0.00302264 0)
(-0.000226318 0.0032738 0)
(-0.000228708 0.00350703 0)
(-0.000229225 0.00372075 0)
(-0.000228062 0.00391407 0)
(-0.000225425 0.00408678 0)
(-0.000221521 0.0042392 0)
(-0.000216552 0.00437217 0)
(-0.000210707 0.00448688 0)
(-0.000204157 0.00458482 0)
(-0.00019705 0.00466762 0)
(-0.000189511 0.004737 0)
(-0.000181637 0.00479468 0)
(-0.000173501 0.0048423 0)
(-0.000165148 0.0048814 0)
(-0.0001566 0.00491337 0)
(-0.000147857 0.00493942 0)
(-0.000138902 0.00496064 0)
(-0.000129702 0.00497791 0)
(-0.000120214 0.00499197 0)
(-0.000110391 0.00500344 0)
(-0.000100179 0.00501277 0)
(-8.95256e-05 0.00502034 0)
(-7.83794e-05 0.00502642 0)
(-6.66936e-05 0.00503119 0)
(-5.44267e-05 0.00503479 0)
(-4.15441e-05 0.0050373 0)
(-2.80189e-05 0.00503874 0)
(-1.38321e-05 0.00503912 0)
(1.02708e-06 0.00503842 0)
(1.65606e-05 0.0050366 0)
(3.2762e-05 0.00503361 0)
(4.96162e-05 0.00502939 0)
(6.70987e-05 0.00502385 0)
(8.51753e-05 0.00501694 0)
(0.000103801 0.00500857 0)
(0.000122921 0.00499866 0)
(0.000142468 0.00498713 0)
(0.000162361 0.00497391 0)
(0.00018251 0.00495894 0)
(0.000202809 0.00494216 0)
(0.000223143 0.00492352 0)
(0.000243381 0.004903 0)
(0.000263389 0.00488058 0)
(0.000283022 0.00485628 0)
(0.00030214 0.00483014 0)
(0.000320606 0.00480224 0)
(0.000338294 0.00477267 0)
(0.000355096 0.00474154 0)
(0.000370923 0.00470898 0)
(0.000385708 0.00467514 0)
(0.000399404 0.00464016 0)
(0.000411983 0.0046042 0)
(0.000423434 0.00456738 0)
(0.000433762 0.00452985 0)
(0.000442984 0.00449173 0)
(0.000451126 0.00445315 0)
(0.000458224 0.0044142 0)
(0.00046432 0.004375 0)
(0.00046946 0.00433561 0)
(0.000473697 0.00429611 0)
(0.000477083 0.00425655 0)
(0.000479677 0.00421697 0)
(0.00048154 0.00417739 0)
(0.000482734 0.00413778 0)
(0.000483327 0.00409811 0)
(0.000483387 0.00405829 0)
(0.000482989 0.0040182 0)
(0.000482205 0.00397762 0)
(0.000481111 0.0039363 0)
(0.000479784 0.00389389 0)
(0.000478298 0.00384991 0)
(0.000476724 0.00380379 0)
(0.000475128 0.00375482 0)
(0.000473567 0.00370214 0)
(0.000472089 0.00364474 0)
(0.000470725 0.00358145 0)
(0.000469493 0.00351093 0)
(0.000468388 0.00343172 0)
(0.000467386 0.00334225 0)
(0.000466437 0.00324088 0)
(0.000465465 0.00312593 0)
(0.000464371 0.00299582 0)
(0.000463032 0.00284911 0)
(0.000461304 0.00268458 0)
(0.000459027 0.00250139 0)
(0.000456035 0.00229914 0)
(0.000452159 0.00207794 0)
(0.000447241 0.00183854 0)
(0.000441141 0.00158233 0)
(0.000433746 0.00131135 0)
(0.000424972 0.00102828 0)
(0.000414766 0.000736343 0)
(0.000403137 0.000439221 0)
(0.000390311 0.000140882 0)
(-0.000195824 0.00168467 0)
(-0.000201137 0.0019591 0)
(-0.000204948 0.00223195 0)
(-0.000207289 0.0024996 0)
(-0.000208189 0.00275861 0)
(-0.000207702 0.00300595 0)
(-0.000205912 0.00323908 0)
(-0.000202928 0.00345601 0)
(-0.000198876 0.00365539 0)
(-0.000193893 0.00383645 0)
(-0.000188119 0.003999 0)
(-0.000181696 0.00414333 0)
(-0.000174761 0.00427018 0)
(-0.000167442 0.00438058 0)
(-0.000159855 0.00447581 0)
(-0.000152102 0.00455729 0)
(-0.000144272 0.00462651 0)
(-0.000136435 0.00468492 0)
(-0.000128645 0.00473395 0)
(-0.000120943 0.00477491 0)
(-0.000113353 0.004809 0)
(-0.000105888 0.00483729 0)
(-9.855e-05 0.00486068 0)
(-9.13334e-05 0.00487998 0)
(-8.42251e-05 0.00489584 0)
(-7.72074e-05 0.00490879 0)
(-7.02595e-05 0.00491927 0)
(-6.33585e-05 0.00492763 0)
(-5.64811e-05 0.00493412 0)
(-4.96042e-05 0.00493896 0)
(-4.27058e-05 0.0049423 0)
(-3.57656e-05 0.00494422 0)
(-2.87657e-05 0.00494481 0)
(-2.16906e-05 0.00494411 0)
(-1.45278e-05 0.00494214 0)
(-7.26768e-06 0.0049389 0)
(9.61887e-08 0.00493438 0)
(7.56691e-06 0.00492857 0)
(1.51443e-05 0.00492145 0)
(2.2825e-05 0.00491298 0)
(3.06019e-05 0.00490315 0)
(3.84648e-05 0.00489192 0)
(4.63997e-05 0.00487927 0)
(5.43895e-05 0.00486517 0)
(6.24136e-05 0.00484962 0)
(7.04483e-05 0.00483259 0)
(7.84671e-05 0.00481409 0)
(8.64413e-05 0.00479412 0)
(9.43402e-05 0.00477269 0)
(0.000102133 0.00474982 0)
(0.000109787 0.00472556 0)
(0.000117273 0.00469995 0)
(0.000124563 0.00467303 0)
(0.000131633 0.00464489 0)
(0.000138462 0.00461558 0)
(0.000145032 0.00458518 0)
(0.000151333 0.00455378 0)
(0.000157356 0.00452145 0)
(0.000163098 0.00448829 0)
(0.000168559 0.00445436 0)
(0.000173745 0.00441975 0)
(0.000178662 0.00438453 0)
(0.00018332 0.00434876 0)
(0.000187734 0.00431252 0)
(0.000191919 0.00427585 0)
(0.000195892 0.00423879 0)
(0.000199672 0.00420138 0)
(0.000203283 0.00416361 0)
(0.000206747 0.00412549 0)
(0.000210089 0.00408698 0)
(0.000213335 0.00404801 0)
(0.000216516 0.00400849 0)
(0.000219658 0.00396827 0)
(0.000222794 0.00392715 0)
(0.000225951 0.00388486 0)
(0.000229162 0.00384107 0)
(0.000232452 0.00379534 0)
(0.000235848 0.00374714 0)
(0.000239372 0.00369581 0)
(0.000243039 0.0036406 0)
(0.00024686 0.0035806 0)
(0.000250836 0.00351477 0)
(0.000254957 0.00344194 0)
(0.000259202 0.00336084 0)
(0.000263538 0.00327009 0)
(0.000267915 0.00316826 0)
(0.000272269 0.00305392 0)
(0.000276523 0.00292569 0)
(0.000280583 0.00278232 0)
(0.000284344 0.00262277 0)
(0.000287691 0.0024463 0)
(0.000290506 0.00225252 0)
(0.000292669 0.00204153 0)
(0.000294068 0.00181391 0)
(0.000294602 0.00157082 0)
(0.000294185 0.001314 0)
(0.000292765 0.00104579 0)
(0.000290389 0.000768958 0)
(0.000287205 0.000486316 0)
(0.000283272 0.000200069 0)
(0.0649258 -0.0214663 0)
(0.0656696 -0.0201252 0)
(0.0663601 -0.0186595 0)
(0.0669827 -0.0171726 0)
(0.0675281 -0.015698 0)
(0.0679959 -0.0142481 0)
(0.0683896 -0.0128276 0)
(0.068712 -0.0114389 0)
(0.0689659 -0.0100832 0)
(0.069154 -0.00876116 0)
(0.0692793 -0.00747316 0)
(0.0693444 -0.0062192 0)
(0.0693521 -0.00499918 0)
(0.0693049 -0.00381287 0)
(0.0692056 -0.00266007 0)
(0.0690564 -0.00154058 0)
(0.0688593 -0.000454421 0)
(0.0686162 0.000598506 0)
(0.0683294 0.0016189 0)
(0.0680026 0.00260686 0)
(0.0676385 0.00356285 0)
(0.0672383 0.00448717 0)
(0.0668032 0.00538017 0)
(0.066335 0.00624221 0)
(0.0658357 0.00707375 0)
(0.0653068 0.00787527 0)
(0.0647501 0.00864732 0)
(0.064167 0.00939044 0)
(0.0635589 0.0101052 0)
(0.0629272 0.0107923 0)
(0.0622732 0.0114524 0)
(0.0615982 0.0120861 0)
(0.0609034 0.0126941 0)
(0.0601899 0.0132771 0)
(0.0594589 0.0138358 0)
(0.0587114 0.014371 0)
(0.0579484 0.0148832 0)
(0.0571708 0.0153732 0)
(0.0563796 0.0158417 0)
(0.0555754 0.0162895 0)
(0.0547593 0.0167171 0)
(0.0539318 0.0171252 0)
(0.0530939 0.0175146 0)
(0.052246 0.0178859 0)
(0.0513889 0.0182396 0)
(0.0505232 0.0185766 0)
(0.0496495 0.0188972 0)
(0.0487682 0.0192023 0)
(0.04788 0.0194923 0)
(0.0469853 0.0197678 0)
(0.0460845 0.0200295 0)
(0.0451782 0.0202778 0)
(0.0442666 0.0205132 0)
(0.0433502 0.0207364 0)
(0.0424294 0.0209477 0)
(0.0415044 0.0211478 0)
(0.0405757 0.0213371 0)
(0.0396434 0.0215159 0)
(0.0387079 0.0216849 0)
(0.0377695 0.0218444 0)
(0.0368283 0.0219949 0)
(0.0358847 0.0221367 0)
(0.0349389 0.0222703 0)
(0.0339909 0.0223961 0)
(0.0330411 0.0225143 0)
(0.0320896 0.0226254 0)
(0.0311366 0.0227298 0)
(0.0301823 0.0228276 0)
(0.0292267 0.0229193 0)
(0.02827 0.0230052 0)
(0.0273123 0.0230855 0)
(0.0263538 0.0231605 0)
(0.0253945 0.0232305 0)
(0.0244346 0.0232958 0)
(0.0234742 0.0233565 0)
(0.0225132 0.0234129 0)
(0.0215519 0.0234652 0)
(0.0205903 0.0235137 0)
(0.0196283 0.0235585 0)
(0.0186662 0.0235997 0)
(0.0177039 0.0236377 0)
(0.0167415 0.0236726 0)
(0.0157791 0.0237045 0)
(0.0148166 0.0237335 0)
(0.0138542 0.0237599 0)
(0.0128917 0.0237837 0)
(0.0119293 0.023805 0)
(0.0109671 0.0238238 0)
(0.0100049 0.02384 0)
(0.00904284 0.0238531 0)
(0.008081 0.0238619 0)
(0.00711947 0.0238635 0)
(0.00615857 0.023851 0)
(0.00519901 0.0238078 0)
(0.00424248 0.023695 0)
(0.00329281 0.0234208 0)
(0.00235936 0.0227703 0)
(0.00146637 0.0212427 0)
(0.000673891 0.0176765 0)
(0.000103683 0.00941408 0)
(0.0711293 -0.0241833 0)
(0.071795 -0.0225757 0)
(0.0723974 -0.0208308 0)
(0.0729309 -0.019053 0)
(0.0733807 -0.017289 0)
(0.0737456 -0.0155569 0)
(0.0740303 -0.013864 0)
(0.0742382 -0.0122135 0)
(0.0743728 -0.0106072 0)
(0.0744375 -0.00904583 0)
(0.0744358 -0.00752963 0)
(0.074371 -0.00605844 0)
(0.0742464 -0.00463189 0)
(0.0740652 -0.00324948 0)
(0.0738303 -0.00191068 0)
(0.0735437 -0.000615384 0)
(0.0732079 0.000637402 0)
(0.0728281 0.00184901 0)
(0.072408 0.00301999 0)
(0.0719486 0.00415104 0)
(0.0714519 0.00524241 0)
(0.0709202 0.00629462 0)
(0.0703557 0.00730833 0)
(0.0697604 0.00828429 0)
(0.0691362 0.00922325 0)
(0.0684848 0.010126 0)
(0.0678078 0.0109933 0)
(0.067107 0.0118262 0)
(0.0663839 0.0126253 0)
(0.06564 0.0133917 0)
(0.0648767 0.0141262 0)
(0.0640953 0.0148298 0)
(0.0632971 0.0155033 0)
(0.0624832 0.0161478 0)
(0.0616548 0.0167641 0)
(0.0608128 0.017353 0)
(0.0599582 0.0179156 0)
(0.059092 0.0184528 0)
(0.0582151 0.0189653 0)
(0.0573282 0.019454 0)
(0.0564322 0.0199199 0)
(0.0555276 0.0203636 0)
(0.0546153 0.0207862 0)
(0.0536958 0.0211883 0)
(0.0527697 0.0215707 0)
(0.0518376 0.0219341 0)
(0.0509 0.0222794 0)
(0.0499574 0.0226073 0)
(0.0490103 0.0229183 0)
(0.0480589 0.0232133 0)
(0.0471039 0.0234929 0)
(0.0461454 0.0237576 0)
(0.0451839 0.0240082 0)
(0.0442197 0.0242453 0)
(0.043253 0.0244694 0)
(0.0422842 0.0246811 0)
(0.0413135 0.0248809 0)
(0.0403412 0.0250694 0)
(0.0393674 0.0252471 0)
(0.0383923 0.0254145 0)
(0.0374162 0.0255721 0)
(0.0364392 0.0257203 0)
(0.0354615 0.0258596 0)
(0.0344832 0.0259903 0)
(0.0335044 0.026113 0)
(0.0325253 0.0262281 0)
(0.031546 0.0263358 0)
(0.0305666 0.0264366 0)
(0.0295872 0.0265308 0)
(0.0286078 0.0266187 0)
(0.0276286 0.0267007 0)
(0.0266496 0.0267772 0)
(0.0256709 0.0268482 0)
(0.0246925 0.0269143 0)
(0.0237144 0.0269755 0)
(0.0227367 0.0270323 0)
(0.0217595 0.0270847 0)
(0.0207827 0.0271331 0)
(0.0198064 0.0271776 0)
(0.0188306 0.0272185 0)
(0.0178553 0.027256 0)
(0.0168805 0.0272903 0)
(0.0159062 0.0273214 0)
(0.0149325 0.0273497 0)
(0.0139592 0.0273753 0)
(0.0129865 0.0273982 0)
(0.0120143 0.0274185 0)
(0.0110426 0.0274364 0)
(0.0100714 0.0274515 0)
(0.00910067 0.0274634 0)
(0.0081305 0.0274707 0)
(0.00716098 0.02747 0)
(0.0061924 0.0274533 0)
(0.0052255 0.0274013 0)
(0.00426197 0.0272688 0)
(0.00330571 0.026949 0)
(0.00236622 0.026193 0)
(0.00146836 0.0244218 0)
(0.000673308 0.0202974 0)
(0.000102959 0.0107786 0)
(0.0786267 -0.0268165 0)
(0.0791772 -0.0248761 0)
(0.0796508 -0.0228013 0)
(0.0800509 -0.0206862 0)
(0.0803597 -0.018589 0)
(0.0805748 -0.0165353 0)
(0.0807024 -0.0145352 0)
(0.0807478 -0.0125924 0)
(0.0807154 -0.0107087 0)
(0.0806096 -0.00888471 0)
(0.0804348 -0.0071203 0)
(0.080195 -0.00541488 0)
(0.0798943 -0.00376759 0)
(0.0795364 -0.00217742 0)
(0.0791233 -0.00064406 0)
(0.0786599 0.000834309 0)
(0.0781536 0.00225936 0)
(0.0776057 0.00363254 0)
(0.0770173 0.00495466 0)
(0.0763917 0.00622704 0)
(0.0757313 0.00745058 0)
(0.0750387 0.00862616 0)
(0.0743163 0.00975496 0)
(0.0735662 0.0108382 0)
(0.0727907 0.0118771 0)
(0.0719917 0.0128729 0)
(0.0711711 0.0138267 0)
(0.0703306 0.0147397 0)
(0.0694717 0.0156133 0)
(0.068596 0.0164486 0)
(0.0677049 0.017247 0)
(0.0667997 0.0180095 0)
(0.0658816 0.0187376 0)
(0.0649518 0.0194322 0)
(0.0640113 0.0200947 0)
(0.0630612 0.0207262 0)
(0.0621022 0.0213277 0)
(0.0611354 0.0219006 0)
(0.0601615 0.0224457 0)
(0.0591812 0.0229643 0)
(0.0581952 0.0234573 0)
(0.0572042 0.0239257 0)
(0.0562088 0.0243705 0)
(0.0552094 0.0247927 0)
(0.0542067 0.0251933 0)
(0.0532011 0.025573 0)
(0.052193 0.0259328 0)
(0.0511828 0.0262735 0)
(0.0501709 0.026596 0)
(0.0491575 0.0269009 0)
(0.0481432 0.0271892 0)
(0.047128 0.0274615 0)
(0.0461122 0.0277185 0)
(0.0450962 0.027961 0)
(0.0440801 0.0281895 0)
(0.043064 0.0284049 0)
(0.0420483 0.0286075 0)
(0.041033 0.0287981 0)
(0.0400183 0.0289773 0)
(0.0390043 0.0291455 0)
(0.0379911 0.0293034 0)
(0.0369788 0.0294514 0)
(0.0359676 0.02959 0)
(0.0349574 0.0297198 0)
(0.0339484 0.0298411 0)
(0.0329406 0.0299543 0)
(0.031934 0.03006 0)
(0.0309288 0.0301585 0)
(0.0299249 0.0302502 0)
(0.0289224 0.0303355 0)
(0.0279212 0.0304146 0)
(0.0269214 0.0304881 0)
(0.025923 0.030556 0)
(0.024926 0.0306189 0)
(0.0239304 0.0306769 0)
(0.0229361 0.0307303 0)
(0.0219432 0.0307794 0)
(0.0209516 0.0308245 0)
(0.0199614 0.0308657 0)
(0.0189724 0.0309034 0)
(0.0179846 0.0309376 0)
(0.016998 0.0309687 0)
(0.0160126 0.0309968 0)
(0.0150284 0.031022 0)
(0.0140452 0.0310446 0)
(0.013063 0.0310647 0)
(0.0120819 0.0310823 0)
(0.0111017 0.0310974 0)
(0.0101224 0.0311099 0)
(0.00914398 0.0311191 0)
(0.00816643 0.0311235 0)
(0.00718984 0.0311192 0)
(0.00621447 0.031097 0)
(0.00524104 0.031035 0)
(0.00427128 0.030881 0)
(0.0033092 0.0305132 0)
(0.00236462 0.0296474 0)
(0.00146309 0.0276242 0)
(0.000666915 0.022928 0)
(0.000100103 0.0121382 0)
(0.087668 -0.0289213 0)
(0.0880481 -0.0265839 0)
(0.0883224 -0.0241425 0)
(0.088518 -0.021661 0)
(0.0886164 -0.0192036 0)
(0.0886141 -0.0168045 0)
(0.0885187 -0.0144776 0)
(0.0883372 -0.0122277 0)
(0.0880754 -0.0100562 0)
(0.0877388 -0.00796303 0)
(0.0873328 -0.00594744 0)
(0.0868627 -0.00400816 0)
(0.086333 -0.00214383 0)
(0.0857452 -0.000352982 0)
(0.0851059 0.0013675 0)
(0.0844228 0.00302037 0)
(0.0836985 0.00460777 0)
(0.0829364 0.00613095 0)
(0.0821404 0.00759153 0)
(0.0813124 0.00899107 0)
(0.0804533 0.0103315 0)
(0.0795666 0.0116145 0)
(0.0786558 0.012842 0)
(0.0777231 0.0140157 0)
(0.0767702 0.0151372 0)
(0.0757991 0.0162084 0)
(0.0748116 0.0172309 0)
(0.0738095 0.0182064 0)
(0.0727945 0.0191367 0)
(0.0717679 0.0200234 0)
(0.0707311 0.0208681 0)
(0.0696854 0.0216724 0)
(0.0686319 0.0224379 0)
(0.0675716 0.023166 0)
(0.0665055 0.0238582 0)
(0.0654345 0.024516 0)
(0.0643595 0.0251408 0)
(0.063281 0.0257339 0)
(0.0622 0.0262966 0)
(0.0611168 0.0268303 0)
(0.0600322 0.0273361 0)
(0.0589467 0.0278152 0)
(0.0578606 0.0282688 0)
(0.0567745 0.0286981 0)
(0.0556887 0.029104 0)
(0.0546036 0.0294876 0)
(0.0535194 0.02985 0)
(0.0524365 0.030192 0)
(0.0513551 0.0305147 0)
(0.0502755 0.0308188 0)
(0.0491978 0.0311053 0)
(0.0481222 0.0313751 0)
(0.0470488 0.0316288 0)
(0.0459779 0.0318673 0)
(0.0449095 0.0320913 0)
(0.0438436 0.0323015 0)
(0.0427805 0.0324986 0)
(0.0417201 0.0326832 0)
(0.0406626 0.032856 0)
(0.0396079 0.0330177 0)
(0.038556 0.0331686 0)
(0.0375071 0.0333096 0)
(0.0364611 0.0334409 0)
(0.035418 0.0335632 0)
(0.0343777 0.033677 0)
(0.0333404 0.0337827 0)
(0.0323059 0.0338808 0)
(0.0312743 0.0339717 0)
(0.0302454 0.0340558 0)
(0.0292193 0.0341335 0)
(0.0281959 0.0342051 0)
(0.0271752 0.0342711 0)
(0.026157 0.0343317 0)
(0.0251414 0.0343874 0)
(0.0241283 0.0344383 0)
(0.0231176 0.0344848 0)
(0.0221092 0.0345272 0)
(0.0211031 0.0345657 0)
(0.0200991 0.0346005 0)
(0.0190973 0.034632 0)
(0.0180975 0.0346603 0)
(0.0170997 0.0346856 0)
(0.0161037 0.0347082 0)
(0.0151095 0.0347282 0)
(0.0141169 0.0347457 0)
(0.013126 0.034761 0)
(0.0121366 0.034774 0)
(0.0111486 0.0347848 0)
(0.010162 0.0347932 0)
(0.00917659 0.0347985 0)
(0.00819245 0.0347988 0)
(0.0072096 0.0347899 0)
(0.00622826 0.0347613 0)
(0.00524914 0.0346881 0)
(0.00427403 0.0345115 0)
(0.00330707 0.0340937 0)
(0.00235845 0.0331138 0)
(0.00145448 0.0308305 0)
(0.00065865 0.0255494 0)
(9.70481e-05 0.0134783 0)
(0.0984796 -0.0302412 0)
(0.0985887 -0.0274301 0)
(0.0985687 -0.0245791 0)
(0.0984624 -0.0217056 0)
(0.0982568 -0.018867 0)
(0.097947 -0.0161052 0)
(0.0975418 -0.0134394 0)
(0.0970503 -0.0108755 0)
(0.0964793 -0.00841419 0)
(0.0958358 -0.00605436 0)
(0.0951258 -0.00379405 0)
(0.0943544 -0.00163215 0)
(0.093526 0.000435403 0)
(0.0926505 0.00241335 0)
(0.0917353 0.00430584 0)
(0.0907833 0.0061156 0)
(0.0897977 0.0078451 0)
(0.0887792 0.00949689 0)
(0.0877307 0.0110737 0)
(0.0866564 0.0125779 0)
(0.0855608 0.0140122 0)
(0.084446 0.0153794 0)
(0.0833142 0.0166819 0)
(0.0821675 0.0179223 0)
(0.0810082 0.0191028 0)
(0.0798384 0.0202258 0)
(0.0786598 0.0212937 0)
(0.0774738 0.0223087 0)
(0.076282 0.023273 0)
(0.0750856 0.0241887 0)
(0.0738857 0.0250578 0)
(0.0726835 0.0258823 0)
(0.0714798 0.0266642 0)
(0.0702755 0.0274052 0)
(0.0690715 0.0281072 0)
(0.0678684 0.0287719 0)
(0.0666668 0.029401 0)
(0.0654673 0.029996 0)
(0.0642704 0.0305585 0)
(0.0630765 0.03109 0)
(0.061886 0.0315919 0)
(0.0606993 0.0320656 0)
(0.0595166 0.0325124 0)
(0.0583383 0.0329335 0)
(0.0571645 0.0333303 0)
(0.0559955 0.0337037 0)
(0.0548313 0.034055 0)
(0.0536721 0.0343853 0)
(0.0525181 0.0346955 0)
(0.0513693 0.0349867 0)
(0.0502258 0.0352598 0)
(0.0490876 0.0355157 0)
(0.0479547 0.0357553 0)
(0.0468272 0.0359793 0)
(0.045705 0.0361887 0)
(0.0445882 0.0363842 0)
(0.0434767 0.0365665 0)
(0.0423704 0.0367363 0)
(0.0412693 0.0368942 0)
(0.0401734 0.037041 0)
(0.0390826 0.0371773 0)
(0.0379968 0.0373036 0)
(0.036916 0.0374205 0)
(0.0358399 0.0375285 0)
(0.0347686 0.0376281 0)
(0.033702 0.0377199 0)
(0.0326399 0.0378043 0)
(0.0315823 0.0378818 0)
(0.030529 0.0379528 0)
(0.0294799 0.0380176 0)
(0.0284349 0.0380767 0)
(0.0273939 0.0381305 0)
(0.0263568 0.0381792 0)
(0.0253234 0.0382233 0)
(0.0242936 0.038263 0)
(0.0232674 0.0382987 0)
(0.0222445 0.0383306 0)
(0.0212248 0.038359 0)
(0.0202083 0.0383842 0)
(0.0191947 0.0384064 0)
(0.018184 0.0384258 0)
(0.017176 0.0384426 0)
(0.0161705 0.0384571 0)
(0.0151675 0.0384693 0)
(0.0141669 0.0384796 0)
(0.0131684 0.038488 0)
(0.0121719 0.0384946 0)
(0.0111774 0.0384994 0)
(0.0101846 0.038502 0)
(0.0091936 0.0385019 0)
(0.00820416 0.0384968 0)
(0.00721633 0.0384821 0)
(0.00623034 0.0384459 0)
(0.0052469 0.0383603 0)
(0.00426782 0.0381594 0)
(0.00329742 0.0376887 0)
(0.00234631 0.0365897 0)
(0.00144158 0.0340373 0)
(0.00064792 0.0281573 0)
(9.33975e-05 0.0147952 0)
(0.111296 -0.0303297 0)
(0.11099 -0.0269748 0)
(0.11054 -0.0236758 0)
(0.109997 -0.0203972 0)
(0.10936 -0.0171752 0)
(0.108623 -0.0140534 0)
(0.107795 -0.011056 0)
(0.106888 -0.00819073 0)
(0.10591 -0.00545735 0)
(0.104867 -0.00285387 0)
(0.103762 -0.000375946 0)
(0.102606 0.00198286 0)
(0.101416 0.00422837 0)
(0.100193 0.0063656 0)
(0.0989396 0.00839841 0)
(0.0976572 0.010331 0)
(0.0963488 0.0121672 0)
(0.0950196 0.0139114 0)
(0.0936739 0.0155679 0)
(0.0923143 0.0171407 0)
(0.0909438 0.0186336 0)
(0.0895648 0.0200499 0)
(0.0881796 0.021393 0)
(0.0867903 0.0226663 0)
(0.0853987 0.0238729 0)
(0.0840063 0.0250158 0)
(0.0826147 0.026098 0)
(0.0812249 0.0271222 0)
(0.0798381 0.028091 0)
(0.0784553 0.0290072 0)
(0.0770773 0.0298731 0)
(0.075705 0.0306911 0)
(0.0743389 0.0314636 0)
(0.0729796 0.0321926 0)
(0.0716277 0.0328803 0)
(0.0702835 0.0335287 0)
(0.0689474 0.0341396 0)
(0.0676197 0.034715 0)
(0.0663007 0.0352565 0)
(0.0649904 0.0357659 0)
(0.0636892 0.0362447 0)
(0.0623971 0.0366945 0)
(0.0611141 0.0371167 0)
(0.0598403 0.0375127 0)
(0.0585758 0.0378839 0)
(0.0573205 0.0382315 0)
(0.0560744 0.0385567 0)
(0.0548374 0.0388607 0)
(0.0536095 0.0391446 0)
(0.0523906 0.0394095 0)
(0.0511805 0.0396564 0)
(0.0499793 0.0398862 0)
(0.0487867 0.0400999 0)
(0.0476026 0.0402983 0)
(0.0464269 0.0404823 0)
(0.0452594 0.0406527 0)
(0.0441 0.0408103 0)
(0.0429485 0.0409558 0)
(0.0418047 0.0410898 0)
(0.0406686 0.0412132 0)
(0.0395398 0.0413264 0)
(0.0384182 0.0414301 0)
(0.0373037 0.0415249 0)
(0.036196 0.0416114 0)
(0.0350949 0.04169 0)
(0.0340004 0.0417613 0)
(0.0329122 0.0418257 0)
(0.03183 0.0418838 0)
(0.0307538 0.0419359 0)
(0.0296833 0.0419824 0)
(0.0286184 0.0420238 0)
(0.0275588 0.0420603 0)
(0.0265044 0.0420925 0)
(0.0254549 0.0421206 0)
(0.0244103 0.0421449 0)
(0.0233702 0.0421657 0)
(0.0223346 0.0421834 0)
(0.0213032 0.0421981 0)
(0.0202759 0.0422102 0)
(0.0192524 0.0422199 0)
(0.0182325 0.0422274 0)
(0.0172162 0.0422329 0)
(0.0162032 0.0422366 0)
(0.0151933 0.0422387 0)
(0.0141863 0.0422395 0)
(0.0131821 0.0422389 0)
(0.0121806 0.042237 0)
(0.0111814 0.042234 0)
(0.0101845 0.0422293 0)
(0.00918965 0.0422222 0)
(0.0081968 0.0422105 0)
(0.00720591 0.0421887 0)
(0.00621717 0.0421437 0)
(0.00523129 0.0420445 0)
(0.00425016 0.0418176 0)
(0.00327829 0.0412912 0)
(0.00232671 0.0400679 0)
(0.00142341 0.0372368 0)
(0.000634218 0.0307436 0)
(8.90829e-05 0.0160829 0)
(0.126246 -0.0285505 0)
(0.12533 -0.0246085 0)
(0.124263 -0.020846 0)
(0.123113 -0.0171795 0)
(0.121884 -0.0136082 0)
(0.120572 -0.010166 0)
(0.119187 -0.00687968 0)
(0.117739 -0.00376118 0)
(0.116234 -0.000808432 0)
(0.114681 0.00198638 0)
(0.113096 0.00463163 0)
(0.11149 0.00713687 0)
(0.109861 0.00950716 0)
(0.108212 0.0117473 0)
(0.106546 0.0138645 0)
(0.10487 0.0158652 0)
(0.103187 0.0177556 0)
(0.101501 0.0195413 0)
(0.0998146 0.021228 0)
(0.0981301 0.0228209 0)
(0.0964498 0.0243247 0)
(0.0947757 0.0257441 0)
(0.0931093 0.0270832 0)
(0.0914522 0.0283464 0)
(0.0898056 0.0295374 0)
(0.0881704 0.0306599 0)
(0.0865477 0.0317174 0)
(0.084938 0.0327133 0)
(0.0833422 0.0336508 0)
(0.0817606 0.0345329 0)
(0.0801937 0.0353624 0)
(0.0786418 0.0361422 0)
(0.0771051 0.0368747 0)
(0.0755838 0.0375625 0)
(0.0740779 0.038208 0)
(0.0725875 0.0388132 0)
(0.0711127 0.0393805 0)
(0.0696533 0.0399117 0)
(0.0682092 0.0404088 0)
(0.0667804 0.0408736 0)
(0.0653667 0.0413079 0)
(0.0639679 0.0417132 0)
(0.0625839 0.0420913 0)
(0.0612143 0.0424434 0)
(0.0598591 0.0427711 0)
(0.0585178 0.0430757 0)
(0.0571904 0.0433585 0)
(0.0558765 0.0436206 0)
(0.0545758 0.0438633 0)
(0.0532881 0.0440877 0)
(0.0520131 0.0442947 0)
(0.0507505 0.0444854 0)
(0.0494999 0.0446608 0)
(0.0482612 0.0448217 0)
(0.047034 0.044969 0)
(0.045818 0.0451036 0)
(0.0446129 0.0452261 0)
(0.0434185 0.0453374 0)
(0.0422344 0.0454381 0)
(0.0410603 0.045529 0)
(0.039896 0.0456106 0)
(0.0387412 0.0456836 0)
(0.0375955 0.0457485 0)
(0.0364587 0.045806 0)
(0.0353306 0.0458564 0)
(0.0342107 0.0459004 0)
(0.0330989 0.0459385 0)
(0.0319949 0.0459709 0)
(0.0308984 0.0459983 0)
(0.0298092 0.046021 0)
(0.0287269 0.0460393 0)
(0.0276514 0.0460537 0)
(0.0265823 0.0460646 0)
(0.0255194 0.0460721 0)
(0.0244624 0.0460767 0)
(0.0234112 0.0460786 0)
(0.0223654 0.0460782 0)
(0.0213249 0.0460757 0)
(0.0202893 0.0460713 0)
(0.0192584 0.0460652 0)
(0.0182321 0.0460578 0)
(0.01721 0.0460492 0)
(0.0161919 0.0460395 0)
(0.0151776 0.0460291 0)
(0.0141669 0.046018 0)
(0.0131595 0.0460063 0)
(0.0121553 0.0459941 0)
(0.011154 0.0459814 0)
(0.0101554 0.0459678 0)
(0.00915923 0.0459524 0)
(0.00816546 0.0459326 0)
(0.00717398 0.0459024 0)
(0.00618497 0.0458475 0)
(0.00519915 0.0457332 0)
(0.00421846 0.0454784 0)
(0.00324765 0.0448934 0)
(0.00229821 0.0435399 0)
(0.00139905 0.0404197 0)
(0.000617127 0.0332989 0)
(8.40507e-05 0.0173345 0)
(0.143287 -0.0240717 0)
(0.14151 -0.0195634 0)
(0.139607 -0.0153822 0)
(0.137644 -0.0114013 0)
(0.135639 -0.00757289 0)
(0.133585 -0.00390941 0)
(0.131481 -0.000433538 0)
(0.129342 0.00284853 0)
(0.127193 0.00593896 0)
(0.125043 0.00884577 0)
(0.122896 0.0115777 0)
(0.120747 0.014143 0)
(0.118594 0.0165503 0)
(0.116447 0.0188103 0)
(0.114314 0.020932 0)
(0.112194 0.022924 0)
(0.11009 0.0247945 0)
(0.108004 0.0265508 0)
(0.105941 0.0281997 0)
(0.103899 0.0297473 0)
(0.101881 0.0311998 0)
(0.0998866 0.0325627 0)
(0.0979176 0.0338411 0)
(0.0959744 0.03504 0)
(0.0940571 0.0361638 0)
(0.0921661 0.0372167 0)
(0.0903012 0.0382029 0)
(0.0884627 0.0391261 0)
(0.0866504 0.0399899 0)
(0.0848641 0.0407976 0)
(0.0831035 0.0415526 0)
(0.0813685 0.0422577 0)
(0.0796587 0.0429157 0)
(0.0779736 0.0435295 0)
(0.076313 0.0441014 0)
(0.0746763 0.0446338 0)
(0.0730631 0.0451291 0)
(0.071473 0.0455892 0)
(0.0699055 0.0460164 0)
(0.0683601 0.0464124 0)
(0.0668362 0.046779 0)
(0.0653334 0.047118 0)
(0.0638512 0.0474309 0)
(0.0623889 0.0477193 0)
(0.0609463 0.0479846 0)
(0.0595226 0.0482282 0)
(0.0581175 0.0484514 0)
(0.0567304 0.0486554 0)
(0.0553608 0.0488414 0)
(0.0540082 0.0490104 0)
(0.0526722 0.0491635 0)
(0.0513522 0.0493018 0)
(0.0500479 0.0494261 0)
(0.0487586 0.0495374 0)
(0.047484 0.0496364 0)
(0.0462236 0.0497241 0)
(0.044977 0.0498011 0)
(0.0437437 0.0498682 0)
(0.0425233 0.0499261 0)
(0.0413155 0.0499754 0)
(0.0401197 0.0500168 0)
(0.0389355 0.0500509 0)
(0.0377627 0.0500782 0)
(0.0366008 0.0500992 0)
(0.0354493 0.0501145 0)
(0.034308 0.0501245 0)
(0.0331765 0.0501297 0)
(0.0320544 0.0501306 0)
(0.0309414 0.0501274 0)
(0.029837 0.0501208 0)
(0.0287411 0.0501109 0)
(0.0276532 0.0500982 0)
(0.026573 0.050083 0)
(0.0255002 0.0500656 0)
(0.0244345 0.0500463 0)
(0.0233756 0.0500254 0)
(0.0223231 0.0500031 0)
(0.0212767 0.0499798 0)
(0.0202363 0.0499556 0)
(0.0192014 0.0499307 0)
(0.0181718 0.0499054 0)
(0.0171471 0.0498799 0)
(0.0161272 0.0498544 0)
(0.0151118 0.0498289 0)
(0.0141005 0.0498037 0)
(0.0130931 0.0497789 0)
(0.0120893 0.0497545 0)
(0.011089 0.0497305 0)
(0.0100917 0.0497064 0)
(0.00909733 0.0496811 0)
(0.00810567 0.049652 0)
(0.00711662 0.0496123 0)
(0.00613036 0.0495462 0)
(0.0051476 0.0494156 0)
(0.00417039 0.049131 0)
(0.00320369 0.0484839 0)
(0.00225953 0.0469942 0)
(0.00136775 0.0435744 0)
(0.000596346 0.0358116 0)
(7.82845e-05 0.0185424 0)
(0.162083 -0.0158183 0)
(0.159168 -0.0108719 0)
(0.156165 -0.0064098 0)
(0.153154 -0.00227221 0)
(0.150155 0.00164482 0)
(0.14717 0.00536459 0)
(0.144223 0.00887696 0)
(0.141317 0.0121734 0)
(0.138439 0.0152543 0)
(0.135588 0.0181274 0)
(0.132768 0.020804 0)
(0.129983 0.0232967 0)
(0.127242 0.025619 0)
(0.124547 0.0277835 0)
(0.121897 0.029801 0)
(0.119293 0.0316815 0)
(0.116737 0.0334347 0)
(0.114228 0.0350694 0)
(0.111764 0.0365936 0)
(0.109348 0.0380145 0)
(0.106977 0.0393389 0)
(0.104653 0.0405731 0)
(0.102374 0.0417228 0)
(0.100139 0.0427933 0)
(0.0979472 0.0437896 0)
(0.0957981 0.0447162 0)
(0.0936907 0.0455775 0)
(0.0916239 0.0463776 0)
(0.0895968 0.0471202 0)
(0.0876086 0.0478089 0)
(0.085658 0.048447 0)
(0.0837442 0.0490376 0)
(0.0818661 0.0495835 0)
(0.0800227 0.0500877 0)
(0.0782131 0.0505525 0)
(0.0764362 0.0509804 0)
(0.0746912 0.0513738 0)
(0.0729771 0.0517346 0)
(0.0712929 0.052065 0)
(0.0696377 0.0523668 0)
(0.0680107 0.0526419 0)
(0.066411 0.0528918 0)
(0.0648376 0.0531181 0)
(0.0632899 0.0533225 0)
(0.0617669 0.0535061 0)
(0.0602679 0.0536705 0)
(0.0587921 0.0538168 0)
(0.0573387 0.0539462 0)
(0.0559071 0.0540598 0)
(0.0544964 0.0541588 0)
(0.0531061 0.054244 0)
(0.0517354 0.0543165 0)
(0.0503836 0.0543771 0)
(0.0490502 0.0544267 0)
(0.0477345 0.0544661 0)
(0.0464359 0.054496 0)
(0.0451539 0.0545173 0)
(0.0438877 0.0545304 0)
(0.0426369 0.0545362 0)
(0.041401 0.0545352 0)
(0.0401793 0.054528 0)
(0.0389715 0.0545152 0)
(0.0377769 0.0544972 0)
(0.0365951 0.0544747 0)
(0.0354257 0.0544479 0)
(0.0342681 0.0544175 0)
(0.0331219 0.0543837 0)
(0.0319866 0.0543471 0)
(0.0308619 0.054308 0)
(0.0297472 0.0542668 0)
(0.0286423 0.0542237 0)
(0.0275466 0.0541792 0)
(0.0264599 0.0541335 0)
(0.0253816 0.0540869 0)
(0.0243115 0.0540397 0)
(0.0232491 0.0539922 0)
(0.0221941 0.0539446 0)
(0.0211462 0.053897 0)
(0.0201049 0.0538499 0)
(0.01907 0.0538032 0)
(0.0180411 0.0537573 0)
(0.0170179 0.0537123 0)
(0.0160001 0.0536684 0)
(0.0149873 0.0536257 0)
(0.0139792 0.0535844 0)
(0.0129755 0.0535445 0)
(0.011976 0.0535061 0)
(0.0109802 0.0534691 0)
(0.00998795 0.053433 0)
(0.00899895 0.0533966 0)
(0.00801298 0.0533568 0)
(0.00702993 0.0533065 0)
(0.00604993 0.0532281 0)
(0.00507376 0.0530798 0)
(0.00410355 0.0527634 0)
(0.00314453 0.0520507 0)
(0.00220929 0.0504184 0)
(0.00132864 0.0466878 0)
(0.000571494 0.0382692 0)
(7.17385e-05 0.0196985 0)
(0.18168 -0.00269677 0)
(0.177343 0.00242103 0)
(0.173018 0.00691208 0)
(0.168789 0.0109519 0)
(0.164677 0.014697 0)
(0.160669 0.0182168 0)
(0.156761 0.0215217 0)
(0.152947 0.0246012 0)
(0.149228 0.0274559 0)
(0.145604 0.0300953 0)
(0.142074 0.0325336 0)
(0.138636 0.0347863 0)
(0.135287 0.0368685 0)
(0.132025 0.038793 0)
(0.128847 0.0405719 0)
(0.125753 0.0422166 0)
(0.122739 0.0437372 0)
(0.119803 0.0451431 0)
(0.116943 0.0464426 0)
(0.114157 0.0476438 0)
(0.111441 0.0487536 0)
(0.108794 0.0497784 0)
(0.106214 0.0507241 0)
(0.103697 0.0515961 0)
(0.101243 0.0523993 0)
(0.0988481 0.0531384 0)
(0.0965109 0.0538177 0)
(0.0942292 0.0544412 0)
(0.0920011 0.0550126 0)
(0.0898245 0.0555354 0)
(0.0876978 0.0560127 0)
(0.085619 0.0564477 0)
(0.0835864 0.056843 0)
(0.0815984 0.0572013 0)
(0.0796534 0.057525 0)
(0.0777498 0.0578165 0)
(0.0758861 0.0580778 0)
(0.0740609 0.0583111 0)
(0.0722728 0.0585181 0)
(0.0705203 0.0587007 0)
(0.0688024 0.0588605 0)
(0.0671176 0.058999 0)
(0.0654649 0.0591178 0)
(0.0638429 0.0592182 0)
(0.0622507 0.0593015 0)
(0.0606872 0.0593689 0)
(0.0591512 0.0594216 0)
(0.0576419 0.0594606 0)
(0.0561582 0.059487 0)
(0.0546993 0.0595017 0)
(0.0532641 0.0595057 0)
(0.0518519 0.0594997 0)
(0.0504618 0.0594846 0)
(0.049093 0.0594612 0)
(0.0477447 0.0594302 0)
(0.0464162 0.0593922 0)
(0.0451067 0.059348 0)
(0.0438155 0.059298 0)
(0.042542 0.059243 0)
(0.0412854 0.0591834 0)
(0.0400452 0.0591198 0)
(0.0388207 0.0590527 0)
(0.0376112 0.0589825 0)
(0.0364163 0.0589096 0)
(0.0352354 0.0588345 0)
(0.0340678 0.0587576 0)
(0.0329131 0.0586792 0)
(0.0317708 0.0585998 0)
(0.0306403 0.0585195 0)
(0.0295211 0.0584388 0)
(0.0284129 0.058358 0)
(0.027315 0.0582773 0)
(0.0262271 0.0581971 0)
(0.0251486 0.0581174 0)
(0.0240793 0.0580387 0)
(0.0230186 0.0579611 0)
(0.0219661 0.0578848 0)
(0.0209214 0.0578101 0)
(0.0198842 0.0577371 0)
(0.018854 0.057666 0)
(0.0178305 0.0575969 0)
(0.0168133 0.0575301 0)
(0.015802 0.0574656 0)
(0.0147963 0.0574037 0)
(0.0137958 0.0573443 0)
(0.0128002 0.0572876 0)
(0.0118091 0.0572336 0)
(0.0108221 0.0571821 0)
(0.00983908 0.0571327 0)
(0.00885959 0.0570839 0)
(0.00788342 0.0570325 0)
(0.00691042 0.0569705 0)
(0.00594076 0.0568786 0)
(0.0049752 0.0567113 0)
(0.00401601 0.0563611 0)
(0.00306871 0.0555791 0)
(0.00214649 0.0537974 0)
(0.00128115 0.0497448 0)
(0.000542365 0.0406575 0)
(6.44165e-05 0.020794 0)
(0.200458 0.0163157 0)
(0.1946 0.0211411 0)
(0.188862 0.0252491 0)
(0.18333 0.0288037 0)
(0.178024 0.0320042 0)
(0.172923 0.0349663 0)
(0.168015 0.0377278 0)
(0.163292 0.0402927 0)
(0.158745 0.0426598 0)
(0.154364 0.0448333 0)
(0.150139 0.0468235 0)
(0.146061 0.0486438 0)
(0.142125 0.050308 0)
(0.138321 0.0518298 0)
(0.134644 0.0532213 0)
(0.131089 0.0544932 0)
(0.127649 0.0556555 0)
(0.12432 0.0567172 0)
(0.121095 0.0576865 0)
(0.117971 0.0585704 0)
(0.114943 0.0593755 0)
(0.112006 0.0601078 0)
(0.109156 0.0607726 0)
(0.106389 0.0613748 0)
(0.103702 0.0619191 0)
(0.10109 0.0624095 0)
(0.0985518 0.06285 0)
(0.0960827 0.0632441 0)
(0.0936801 0.0635952 0)
(0.0913411 0.0639063 0)
(0.0890631 0.0641802 0)
(0.0868435 0.0644198 0)
(0.0846798 0.0646272 0)
(0.0825697 0.064805 0)
(0.0805111 0.0649552 0)
(0.0785017 0.0650799 0)
(0.0765396 0.0651808 0)
(0.0746228 0.0652598 0)
(0.0727496 0.0653185 0)
(0.0709181 0.0653584 0)
(0.0691267 0.0653809 0)
(0.0673738 0.0653874 0)
(0.0656579 0.0653792 0)
(0.0639776 0.0653573 0)
(0.0623313 0.065323 0)
(0.0607178 0.0652773 0)
(0.0591359 0.065221 0)
(0.0575841 0.0651553 0)
(0.0560615 0.0650808 0)
(0.0545669 0.0649984 0)
(0.0530992 0.064909 0)
(0.0516573 0.0648131 0)
(0.0502402 0.0647115 0)
(0.048847 0.0646048 0)
(0.0474768 0.0644937 0)
(0.0461287 0.0643787 0)
(0.0448017 0.0642603 0)
(0.0434951 0.0641391 0)
(0.0422082 0.0640155 0)
(0.04094 0.06389 0)
(0.0396899 0.063763 0)
(0.0384572 0.063635 0)
(0.0372412 0.0635062 0)
(0.0360411 0.0633772 0)
(0.0348564 0.0632481 0)
(0.0336865 0.0631194 0)
(0.0325306 0.0629914 0)
(0.0313883 0.0628644 0)
(0.030259 0.0627385 0)
(0.0291421 0.0626142 0)
(0.028037 0.0624915 0)
(0.0269433 0.0623709 0)
(0.0258605 0.0622524 0)
(0.024788 0.0621363 0)
(0.0237253 0.0620229 0)
(0.0226721 0.0619122 0)
(0.0216278 0.0618044 0)
(0.020592 0.0616998 0)
(0.0195643 0.0615985 0)
(0.0185442 0.0615005 0)
(0.0175314 0.0614061 0)
(0.0165253 0.0613154 0)
(0.0155256 0.0612285 0)
(0.014532 0.0611455 0)
(0.013544 0.0610664 0)
(0.0125612 0.0609914 0)
(0.0115833 0.0609204 0)
(0.0106099 0.0608532 0)
(0.00964065 0.0607893 0)
(0.00867525 0.0607271 0)
(0.00771341 0.060663 0)
(0.00675497 0.0605884 0)
(0.0058001 0.0604821 0)
(0.00484961 0.0602943 0)
(0.0039059 0.0599082 0)
(0.00297481 0.0590532 0)
(0.00207017 0.057115 0)
(0.00122476 0.0527291 0)
(0.000508784 0.0429615 0)
(5.6328e-05 0.0218198 0)
(0.215981 0.0414841 0)
(0.208677 0.0453921 0)
(0.201654 0.048606 0)
(0.194951 0.0512271 0)
(0.188583 0.0534701 0)
(0.182517 0.0554906 0)
(0.176736 0.0573607 0)
(0.171227 0.0590978 0)
(0.165969 0.0606975 0)
(0.160941 0.0621557 0)
(0.156126 0.0634753 0)
(0.151509 0.0646643 0)
(0.147079 0.0657328 0)
(0.142825 0.0666914 0)
(0.138735 0.0675499 0)
(0.1348 0.0683171 0)
(0.131011 0.0690012 0)
(0.12736 0.0696092 0)
(0.12384 0.0701478 0)
(0.120442 0.0706226 0)
(0.117161 0.071039 0)
(0.113991 0.0714014 0)
(0.110926 0.0717143 0)
(0.107961 0.0719815 0)
(0.10509 0.0722065 0)
(0.102308 0.0723926 0)
(0.0996125 0.0725428 0)
(0.096998 0.0726599 0)
(0.0944609 0.0727466 0)
(0.0919976 0.0728052 0)
(0.0896046 0.0728378 0)
(0.0872786 0.0728467 0)
(0.0850167 0.0728336 0)
(0.0828158 0.0728004 0)
(0.0806733 0.0727487 0)
(0.0785866 0.07268 0)
(0.0765532 0.0725958 0)
(0.0745708 0.0724974 0)
(0.0726371 0.0723861 0)
(0.0707502 0.0722631 0)
(0.068908 0.0721295 0)
(0.0671085 0.0719862 0)
(0.0653501 0.0718343 0)
(0.063631 0.0716746 0)
(0.0619496 0.071508 0)
(0.0603043 0.0713353 0)
(0.0586936 0.0711572 0)
(0.0571162 0.0709744 0)
(0.0555706 0.0707876 0)
(0.0540556 0.0705973 0)
(0.05257 0.0704042 0)
(0.0511125 0.0702088 0)
(0.0496821 0.0700116 0)
(0.0482776 0.0698132 0)
(0.046898 0.0696138 0)
(0.0455423 0.0694141 0)
(0.0442095 0.0692143 0)
(0.0428988 0.069015 0)
(0.0416092 0.0688164 0)
(0.0403399 0.0686188 0)
(0.0390901 0.0684227 0)
(0.0378589 0.0682283 0)
(0.0366457 0.0680358 0)
(0.0354496 0.0678457 0)
(0.03427 0.0676581 0)
(0.0331061 0.0674732 0)
(0.0319574 0.0672914 0)
(0.0308232 0.0671128 0)
(0.0297028 0.0669376 0)
(0.0285957 0.0667661 0)
(0.0275012 0.0665983 0)
(0.0264188 0.0664346 0)
(0.025348 0.066275 0)
(0.0242882 0.0661197 0)
(0.023239 0.0659688 0)
(0.0221997 0.0658226 0)
(0.0211699 0.065681 0)
(0.0201491 0.0655443 0)
(0.0191369 0.0654126 0)
(0.0181327 0.0652859 0)
(0.0171363 0.0651644 0)
(0.016147 0.0650481 0)
(0.0151645 0.0649372 0)
(0.0141884 0.0648317 0)
(0.0132182 0.0647316 0)
(0.0122536 0.064637 0)
(0.0112941 0.0645479 0)
(0.0103393 0.0644639 0)
(0.00938897 0.0643845 0)
(0.00844265 0.0643081 0)
(0.00750007 0.0642306 0)
(0.00656107 0.0641425 0)
(0.00562583 0.0640209 0)
(0.00469523 0.0638116 0)
(0.00377182 0.0633874 0)
(0.00286179 0.0624554 0)
(0.00197963 0.0603535 0)
(0.00115909 0.0556229 0)
(0.000470659 0.0451649 0)
(4.75027e-05 0.0227665 0)
(0.225373 0.0717114 0)
(0.217135 0.0741084 0)
(0.209293 0.0759592 0)
(0.201846 0.0772708 0)
(0.194788 0.0782276 0)
(0.18809 0.0790039 0)
(0.181733 0.0797012 0)
(0.1757 0.0803532 0)
(0.169966 0.080956 0)
(0.164505 0.0814964 0)
(0.159294 0.081966 0)
(0.154317 0.0823636 0)
(0.149557 0.0826926 0)
(0.144999 0.0829584 0)
(0.140632 0.0831665 0)
(0.136442 0.0833226 0)
(0.13242 0.0834316 0)
(0.128555 0.0834978 0)
(0.124838 0.0835253 0)
(0.12126 0.0835175 0)
(0.117814 0.0834778 0)
(0.114492 0.0834089 0)
(0.111287 0.0833134 0)
(0.108194 0.0831936 0)
(0.105205 0.0830516 0)
(0.102316 0.0828895 0)
(0.0995221 0.082709 0)
(0.0968174 0.0825118 0)
(0.0941978 0.0822996 0)
(0.091659 0.0820737 0)
(0.089197 0.0818355 0)
(0.0868082 0.0815863 0)
(0.0844891 0.0813272 0)
(0.0822363 0.0810594 0)
(0.0800468 0.0807837 0)
(0.0779175 0.0805013 0)
(0.0758458 0.0802129 0)
(0.073829 0.0799194 0)
(0.0718647 0.0796216 0)
(0.0699505 0.0793201 0)
(0.0680842 0.0790158 0)
(0.0662637 0.0787092 0)
(0.0644871 0.0784009 0)
(0.0627523 0.0780915 0)
(0.0610578 0.0777814 0)
(0.0594016 0.0774713 0)
(0.0577823 0.0771614 0)
(0.0561983 0.0768523 0)
(0.0546481 0.0765444 0)
(0.0531302 0.0762381 0)
(0.0516434 0.0759336 0)
(0.0501864 0.0756314 0)
(0.0487579 0.0753318 0)
(0.0473568 0.075035 0)
(0.0459819 0.0747414 0)
(0.0446323 0.0744512 0)
(0.0433067 0.0741646 0)
(0.0420044 0.073882 0)
(0.0407242 0.0736034 0)
(0.0394654 0.0733293 0)
(0.0382269 0.0730596 0)
(0.0370081 0.0727947 0)
(0.035808 0.0725347 0)
(0.0346259 0.0722798 0)
(0.0334611 0.0720301 0)
(0.0323127 0.0717858 0)
(0.0311802 0.0715471 0)
(0.0300628 0.071314 0)
(0.0289598 0.0710867 0)
(0.0278707 0.0708654 0)
(0.0267948 0.0706501 0)
(0.0257315 0.0704409 0)
(0.0246803 0.0702379 0)
(0.0236405 0.0700413 0)
(0.0226117 0.0698512 0)
(0.0215933 0.0696675 0)
(0.0205848 0.0694904 0)
(0.0195856 0.06932 0)
(0.0185954 0.0691564 0)
(0.0176135 0.0689995 0)
(0.0166396 0.0688495 0)
(0.0156732 0.0687064 0)
(0.0147138 0.0685703 0)
(0.0137609 0.0684412 0)
(0.0128143 0.0683192 0)
(0.0118734 0.0682042 0)
(0.0109379 0.0680961 0)
(0.0100072 0.0679946 0)
(0.00908112 0.0678991 0)
(0.00815918 0.0678078 0)
(0.00724112 0.0677162 0)
(0.00632677 0.0676141 0)
(0.00541632 0.0674764 0)
(0.00451074 0.0672443 0)
(0.00361273 0.0667799 0)
(0.00272888 0.0657668 0)
(0.00187438 0.0634937 0)
(0.00108391 0.0584073 0)
(0.00042797 0.0472509 0)
(3.79783e-05 0.0236251 0)
(0.226603 0.104303 0)
(0.218278 0.104942 0)
(0.210346 0.105251 0)
(0.20278 0.105128 0)
(0.195572 0.104693 0)
(0.18871 0.104116 0)
(0.182183 0.103521 0)
(0.17598 0.102965 0)
(0.170084 0.102454 0)
(0.164471 0.101969 0)
(0.159118 0.101492 0)
(0.154008 0.101011 0)
(0.149125 0.100521 0)
(0.144453 0.100021 0)
(0.139981 0.0995114 0)
(0.135695 0.0989947 0)
(0.131585 0.0984719 0)
(0.127639 0.0979442 0)
(0.123849 0.0974128 0)
(0.120205 0.0968785 0)
(0.116699 0.0963422 0)
(0.113323 0.0958046 0)
(0.11007 0.0952663 0)
(0.106933 0.0947278 0)
(0.103906 0.0941897 0)
(0.100984 0.0936523 0)
(0.0981596 0.0931161 0)
(0.095429 0.0925816 0)
(0.0927872 0.0920491 0)
(0.0902295 0.091519 0)
(0.0877518 0.0909917 0)
(0.0853501 0.0904675 0)
(0.0830208 0.0899468 0)
(0.0807603 0.0894297 0)
(0.0785655 0.0889165 0)
(0.076433 0.0884077 0)
(0.0743602 0.0879033 0)
(0.0723442 0.0874037 0)
(0.0703824 0.0869091 0)
(0.0684725 0.0864198 0)
(0.066612 0.0859358 0)
(0.0647987 0.0854575 0)
(0.0630307 0.084985 0)
(0.0613059 0.0845185 0)
(0.0596224 0.0840581 0)
(0.0579785 0.083604 0)
(0.0563725 0.0831564 0)
(0.0548028 0.0827154 0)
(0.0532678 0.082281 0)
(0.0517661 0.0818535 0)
(0.0502963 0.0814329 0)
(0.0488571 0.0810194 0)
(0.0474472 0.0806131 0)
(0.0460653 0.080214 0)
(0.0447104 0.0798223 0)
(0.0433814 0.079438 0)
(0.042077 0.0790612 0)
(0.0407964 0.0786921 0)
(0.0395386 0.0783307 0)
(0.0383026 0.077977 0)
(0.0370875 0.0776312 0)
(0.0358925 0.0772932 0)
(0.0347166 0.0769632 0)
(0.0335592 0.0766413 0)
(0.0324194 0.0763274 0)
(0.0312964 0.0760216 0)
(0.0301896 0.075724 0)
(0.0290983 0.0754346 0)
(0.0280218 0.0751535 0)
(0.0269594 0.0748807 0)
(0.0259104 0.0746162 0)
(0.0248744 0.0743602 0)
(0.0238507 0.0741125 0)
(0.0228387 0.0738733 0)
(0.0218378 0.0736426 0)
(0.0208476 0.0734204 0)
(0.0198674 0.0732068 0)
(0.0188968 0.0730016 0)
(0.0179353 0.0728051 0)
(0.0169823 0.0726172 0)
(0.0160374 0.0724379 0)
(0.0151001 0.0722673 0)
(0.01417 0.0721053 0)
(0.0132467 0.071952 0)
(0.0123295 0.0718074 0)
(0.0114182 0.0716714 0)
(0.0105124 0.0715439 0)
(0.0096115 0.0714245 0)
(0.00871522 0.0713125 0)
(0.00782319 0.0712058 0)
(0.00693511 0.0710999 0)
(0.00605082 0.0709833 0)
(0.00517054 0.0708289 0)
(0.0042953 0.0705729 0)
(0.00342803 0.0700661 0)
(0.00257571 0.0689676 0)
(0.00175426 0.0665158 0)
(0.000999248 0.0610628 0)
(0.000380851 0.0492026 0)
(2.78313e-05 0.0243863 0)
(0.220076 0.135786 0)
(0.212333 0.134926 0)
(0.204903 0.133911 0)
(0.197747 0.132557 0)
(0.190865 0.130912 0)
(0.184264 0.129121 0)
(0.177949 0.127327 0)
(0.17192 0.125617 0)
(0.166171 0.124019 0)
(0.160685 0.122523 0)
(0.155444 0.121105 0)
(0.150434 0.119747 0)
(0.14564 0.118436 0)
(0.14105 0.117166 0)
(0.136651 0.115933 0)
(0.132434 0.114736 0)
(0.128387 0.113573 0)
(0.124502 0.112443 0)
(0.120769 0.111343 0)
(0.117179 0.110273 0)
(0.113725 0.109231 0)
(0.110399 0.108217 0)
(0.107195 0.107227 0)
(0.104105 0.106262 0)
(0.101124 0.10532 0)
(0.0982461 0.104401 0)
(0.0954658 0.103502 0)
(0.0927781 0.102624 0)
(0.0901783 0.101766 0)
(0.0876621 0.100926 0)
(0.0852251 0.100105 0)
(0.0828637 0.099301 0)
(0.0805741 0.0985141 0)
(0.0783529 0.0977436 0)
(0.0761969 0.0969892 0)
(0.0741029 0.0962503 0)
(0.0720682 0.0955266 0)
(0.07009 0.0948178 0)
(0.0681658 0.0941235 0)
(0.0662931 0.0934433 0)
(0.0644697 0.0927772 0)
(0.0626934 0.0921247 0)
(0.060962 0.0914856 0)
(0.0592737 0.0908598 0)
(0.0576267 0.090247 0)
(0.0560191 0.089647 0)
(0.0544493 0.0890597 0)
(0.0529156 0.0884848 0)
(0.0514166 0.0879223 0)
(0.0499509 0.0873721 0)
(0.048517 0.0868338 0)
(0.0471136 0.0863076 0)
(0.0457394 0.0857931 0)
(0.0443933 0.0852904 0)
(0.0430741 0.0847994 0)
(0.0417807 0.0843199 0)
(0.0405121 0.0838518 0)
(0.0392671 0.0833951 0)
(0.0380449 0.0829497 0)
(0.0368445 0.0825156 0)
(0.0356651 0.0820926 0)
(0.0345056 0.0816807 0)
(0.0333654 0.0812799 0)
(0.0322436 0.0808901 0)
(0.0311394 0.0805112 0)
(0.0300521 0.0801432 0)
(0.0289809 0.0797861 0)
(0.0279252 0.0794398 0)
(0.0268843 0.0791043 0)
(0.0258576 0.0787794 0)
(0.0248443 0.0784653 0)
(0.0238439 0.0781618 0)
(0.0228559 0.077869 0)
(0.0218795 0.0775868 0)
(0.0209143 0.0773151 0)
(0.0199597 0.0770539 0)
(0.0190152 0.0768033 0)
(0.0180802 0.0765632 0)
(0.0171543 0.0763335 0)
(0.016237 0.0761143 0)
(0.0153278 0.0759054 0)
(0.0144261 0.075707 0)
(0.0135317 0.075519 0)
(0.0126439 0.0753412 0)
(0.0117624 0.0751738 0)
(0.0108867 0.0750166 0)
(0.0100165 0.0748695 0)
(0.00915116 0.0747321 0)
(0.00829046 0.0746034 0)
(0.00743399 0.0744814 0)
(0.00658146 0.0743609 0)
(0.00573274 0.0742296 0)
(0.00488808 0.0740581 0)
(0.00404864 0.0737771 0)
(0.00321753 0.0732257 0)
(0.0024022 0.0720375 0)
(0.00161933 0.0693993 0)
(0.000905282 0.0635694 0)
(0.000329529 0.0510026 0)
(1.71659e-05 0.0250418 0)
(0.208409 0.164576 0)
(0.201303 0.162555 0)
(0.194493 0.160486 0)
(0.187917 0.158154 0)
(0.181565 0.155546 0)
(0.175449 0.152765 0)
(0.169572 0.149958 0)
(0.163941 0.147238 0)
(0.158554 0.144665 0)
(0.153403 0.142246 0)
(0.148474 0.139961 0)
(0.143752 0.137789 0)
(0.139227 0.135713 0)
(0.134887 0.133721 0)
(0.130722 0.131807 0)
(0.126723 0.129967 0)
(0.12288 0.128197 0)
(0.119186 0.126493 0)
(0.115633 0.124851 0)
(0.112212 0.123268 0)
(0.108918 0.121742 0)
(0.105743 0.120269 0)
(0.102681 0.118845 0)
(0.0997257 0.11747 0)
(0.0968727 0.116138 0)
(0.0941163 0.114849 0)
(0.0914517 0.113601 0)
(0.0888744 0.11239 0)
(0.0863799 0.111216 0)
(0.0839644 0.110076 0)
(0.081624 0.108968 0)
(0.0793551 0.107893 0)
(0.0771544 0.106847 0)
(0.0750188 0.10583 0)
(0.0729453 0.10484 0)
(0.070931 0.103877 0)
(0.0689732 0.102939 0)
(0.0670695 0.102026 0)
(0.0652175 0.101136 0)
(0.0634149 0.100269 0)
(0.0616596 0.0994249 0)
(0.0599495 0.0986017 0)
(0.0582828 0.0977994 0)
(0.0566575 0.0970173 0)
(0.055072 0.0962549 0)
(0.0535245 0.0955116 0)
(0.0520136 0.094787 0)
(0.0505377 0.0940807 0)
(0.0490953 0.0933921 0)
(0.0476851 0.092721 0)
(0.0463058 0.0920669 0)
(0.0449562 0.0914296 0)
(0.0436349 0.0908086 0)
(0.042341 0.0902037 0)
(0.0410731 0.0896146 0)
(0.0398305 0.0890411 0)
(0.0386119 0.0884829 0)
(0.0374164 0.0879397 0)
(0.0362431 0.0874114 0)
(0.0350911 0.0868977 0)
(0.0339596 0.0863985 0)
(0.0328476 0.0859135 0)
(0.0317543 0.0854427 0)
(0.0306791 0.0849857 0)
(0.0296211 0.0845425 0)
(0.0285796 0.084113 0)
(0.027554 0.0836969 0)
(0.0265434 0.0832942 0)
(0.0255474 0.0829048 0)
(0.0245652 0.0825285 0)
(0.0235962 0.0821651 0)
(0.0226399 0.0818147 0)
(0.0216956 0.0814771 0)
(0.0207629 0.0811522 0)
(0.019841 0.08084 0)
(0.0189296 0.0805403 0)
(0.018028 0.080253 0)
(0.0171359 0.0799782 0)
(0.0162526 0.0797156 0)
(0.0153777 0.0794654 0)
(0.0145107 0.0792273 0)
(0.0136512 0.0790013 0)
(0.0127988 0.0787874 0)
(0.0119528 0.0785856 0)
(0.0111131 0.0783956 0)
(0.010279 0.0782175 0)
(0.00945024 0.078051 0)
(0.00862636 0.0778957 0)
(0.00780699 0.0777507 0)
(0.00699176 0.0776134 0)
(0.0061804 0.0774784 0)
(0.0053728 0.0773323 0)
(0.00456928 0.0771433 0)
(0.00377109 0.0768364 0)
(0.00298161 0.0762383 0)
(0.00220876 0.0749558 0)
(0.00146999 0.0721235 0)
(0.000802386 0.0659073 0)
(0.000274296 0.0526344 0)
(6.07295e-06 0.0255835 0)
(0.19247 0.190678 0)
(0.186047 0.18756 0)
(0.17993 0.184519 0)
(0.174035 0.181325 0)
(0.168343 0.177902 0)
(0.162859 0.174302 0)
(0.157581 0.170647 0)
(0.152514 0.167069 0)
(0.147656 0.163651 0)
(0.143003 0.160421 0)
(0.138543 0.157372 0)
(0.134265 0.154481 0)
(0.130157 0.151728 0)
(0.126209 0.149096 0)
(0.122413 0.146578 0)
(0.118761 0.144165 0)
(0.115244 0.141851 0)
(0.111856 0.139633 0)
(0.10859 0.137504 0)
(0.10544 0.13546 0)
(0.102401 0.133496 0)
(0.0994662 0.131607 0)
(0.0966309 0.12979 0)
(0.0938902 0.128039 0)
(0.0912396 0.126353 0)
(0.0886747 0.124726 0)
(0.0861914 0.123156 0)
(0.0837861 0.121639 0)
(0.0814549 0.120173 0)
(0.0791947 0.118756 0)
(0.0770021 0.117384 0)
(0.0748742 0.116056 0)
(0.072808 0.11477 0)
(0.0708009 0.113523 0)
(0.0688504 0.112313 0)
(0.0669539 0.11114 0)
(0.0651093 0.110002 0)
(0.0633143 0.108897 0)
(0.0615669 0.107823 0)
(0.0598651 0.106781 0)
(0.0582069 0.105768 0)
(0.0565907 0.104783 0)
(0.0550148 0.103827 0)
(0.0534774 0.102896 0)
(0.0519771 0.101992 0)
(0.0505124 0.101112 0)
(0.0490819 0.100257 0)
(0.0476842 0.099425 0)
(0.0463181 0.0986161 0)
(0.0449822 0.0978294 0)
(0.0436754 0.0970644 0)
(0.0423965 0.0963206 0)
(0.0411446 0.0955974 0)
(0.0399184 0.0948945 0)
(0.038717 0.0942112 0)
(0.0375394 0.0935472 0)
(0.0363848 0.0929022 0)
(0.0352521 0.0922757 0)
(0.0341405 0.0916674 0)
(0.0330492 0.091077 0)
(0.0319774 0.0905042 0)
(0.0309243 0.0899486 0)
(0.0298891 0.08941 0)
(0.028871 0.0888881 0)
(0.0278695 0.0883827 0)
(0.0268838 0.0878935 0)
(0.0259132 0.0874203 0)
(0.0249572 0.086963 0)
(0.024015 0.0865213 0)
(0.0230861 0.086095 0)
(0.0221699 0.0856839 0)
(0.0212658 0.085288 0)
(0.0203733 0.0849069 0)
(0.0194919 0.0845406 0)
(0.0186209 0.0841889 0)
(0.01776 0.0838518 0)
(0.0169086 0.0835289 0)
(0.0160662 0.0832204 0)
(0.0152323 0.0829259 0)
(0.0144065 0.0826455 0)
(0.0135884 0.082379 0)
(0.0127774 0.0821263 0)
(0.0119731 0.0818873 0)
(0.0111752 0.0816619 0)
(0.0103832 0.0814501 0)
(0.00959669 0.0812517 0)
(0.00881525 0.0810664 0)
(0.00803851 0.0808938 0)
(0.0072661 0.0807328 0)
(0.00649769 0.0805807 0)
(0.00573301 0.0804316 0)
(0.004972 0.0802709 0)
(0.00421504 0.0800641 0)
(0.00346351 0.0797304 0)
(0.00272108 0.0790832 0)
(0.00199614 0.077702 0)
(0.00130694 0.0746679 0)
(0.000691173 0.0680566 0)
(0.000215571 0.0540817 0)
(-5.33352e-06 0.0260045 0)
(0.172248 0.213822 0)
(0.166738 0.209619 0)
(0.161519 0.20563 0)
(0.156494 0.201621 0)
(0.151642 0.197472 0)
(0.146963 0.193175 0)
(0.142452 0.18882 0)
(0.138109 0.184529 0)
(0.133934 0.180403 0)
(0.129925 0.17649 0)
(0.126074 0.172796 0)
(0.122371 0.169299 0)
(0.118805 0.165977 0)
(0.115369 0.16281 0)
(0.112054 0.159786 0)
(0.108854 0.156894 0)
(0.105763 0.154126 0)
(0.102776 0.151476 0)
(0.0998875 0.148937 0)
(0.0970927 0.146503 0)
(0.0943873 0.144168 0)
(0.0917672 0.141927 0)
(0.0892286 0.139773 0)
(0.0867678 0.137703 0)
(0.0843814 0.13571 0)
(0.0820662 0.133792 0)
(0.0798192 0.131944 0)
(0.0776376 0.130161 0)
(0.0755186 0.128442 0)
(0.0734596 0.126781 0)
(0.0714583 0.125177 0)
(0.0695123 0.123626 0)
(0.0676195 0.122126 0)
(0.0657777 0.120675 0)
(0.063985 0.11927 0)
(0.0622394 0.117909 0)
(0.0605392 0.11659 0)
(0.0588827 0.115312 0)
(0.0572681 0.114073 0)
(0.0556939 0.112871 0)
(0.0541585 0.111705 0)
(0.0526606 0.110574 0)
(0.0511986 0.109475 0)
(0.0497713 0.108409 0)
(0.0483775 0.107374 0)
(0.0470157 0.106369 0)
(0.0456849 0.105393 0)
(0.044384 0.104446 0)
(0.0431117 0.103525 0)
(0.041867 0.102631 0)
(0.040649 0.101763 0)
(0.0394566 0.10092 0)
(0.0382889 0.100102 0)
(0.0371449 0.099307 0)
(0.0360238 0.0985356 0)
(0.0349247 0.0977869 0)
(0.0338468 0.0970604 0)
(0.0327893 0.0963556 0)
(0.0317513 0.0956721 0)
(0.0307322 0.0950094 0)
(0.0297312 0.0943671 0)
(0.0287476 0.0937448 0)
(0.0277808 0.0931422 0)
(0.02683 0.0925589 0)
(0.0258946 0.0919946 0)
(0.024974 0.091449 0)
(0.0240676 0.0909217 0)
(0.0231748 0.0904126 0)
(0.022295 0.0899212 0)
(0.0214277 0.0894475 0)
(0.0205723 0.0889911 0)
(0.0197283 0.0885518 0)
(0.0188952 0.0881294 0)
(0.0180725 0.0877237 0)
(0.0172597 0.0873345 0)
(0.0164563 0.0869617 0)
(0.0156618 0.086605 0)
(0.0148759 0.0862643 0)
(0.014098 0.0859395 0)
(0.0133277 0.0856303 0)
(0.0125646 0.0853367 0)
(0.0118083 0.0850585 0)
(0.0110583 0.0847957 0)
(0.0103143 0.084548 0)
(0.00957588 0.0843153 0)
(0.00884262 0.0840975 0)
(0.00811415 0.0838943 0)
(0.00739011 0.0837052 0)
(0.00667015 0.083529 0)
(0.00595395 0.0833628 0)
(0.00524129 0.0832 0)
(0.00453215 0.083025 0)
(0.003827 0.0828005 0)
(0.00312738 0.0824391 0)
(0.00243723 0.0817405 0)
(0.00176549 0.0802558 0)
(0.00113117 0.0770123 0)
(0.000572435 0.0699985 0)
(0.000153858 0.0553296 0)
(-1.69364e-05 0.026299 0)
(0.148096 0.233141 0)
(0.143742 0.227939 0)
(0.139653 0.223093 0)
(0.135717 0.218369 0)
(0.13191 0.213613 0)
(0.128229 0.208766 0)
(0.124665 0.203875 0)
(0.121213 0.199045 0)
(0.117875 0.194381 0)
(0.114651 0.189945 0)
(0.111538 0.185754 0)
(0.108527 0.181794 0)
(0.105612 0.17804 0)
(0.102786 0.174468 0)
(0.100044 0.171061 0)
(0.0973819 0.167805 0)
(0.0947957 0.164693 0)
(0.0922823 0.161714 0)
(0.0898388 0.158861 0)
(0.0874623 0.156126 0)
(0.0851504 0.153504 0)
(0.0829007 0.150987 0)
(0.0807111 0.14857 0)
(0.0785793 0.146246 0)
(0.0765036 0.144011 0)
(0.0744819 0.141859 0)
(0.0725124 0.139786 0)
(0.0705936 0.137788 0)
(0.0687237 0.135861 0)
(0.0669011 0.134 0)
(0.0651244 0.132203 0)
(0.0633921 0.130467 0)
(0.0617027 0.128789 0)
(0.060055 0.127165 0)
(0.0584474 0.125594 0)
(0.0568789 0.124073 0)
(0.0553481 0.1226 0)
(0.0538538 0.121173 0)
(0.0523949 0.11979 0)
(0.0509701 0.11845 0)
(0.0495784 0.11715 0)
(0.0482188 0.11589 0)
(0.0468901 0.114667 0)
(0.0455914 0.113481 0)
(0.0443217 0.11233 0)
(0.0430799 0.111214 0)
(0.0418653 0.11013 0)
(0.0406768 0.109079 0)
(0.0395136 0.108058 0)
(0.0383749 0.107068 0)
(0.0372597 0.106107 0)
(0.0361674 0.105174 0)
(0.0350971 0.104269 0)
(0.034048 0.103391 0)
(0.0330194 0.102539 0)
(0.0320105 0.101713 0)
(0.0310208 0.100912 0)
(0.0300494 0.100136 0)
(0.0290958 0.0993834 0)
(0.0281592 0.0986543 0)
(0.027239 0.0979481 0)
(0.0263347 0.0972644 0)
(0.0254456 0.0966028 0)
(0.0245711 0.0959628 0)
(0.0237107 0.095344 0)
(0.0228639 0.0947461 0)
(0.02203 0.0941687 0)
(0.0212085 0.0936115 0)
(0.020399 0.0930741 0)
(0.0196009 0.0925563 0)
(0.0188138 0.0920577 0)
(0.0180372 0.0915782 0)
(0.0172705 0.0911173 0)
(0.0165135 0.090675 0)
(0.0157655 0.0902509 0)
(0.0150262 0.0898448 0)
(0.0142952 0.0894565 0)
(0.013572 0.0890858 0)
(0.0128562 0.0887326 0)
(0.0121475 0.0883967 0)
(0.0114453 0.0880778 0)
(0.0107495 0.0877758 0)
(0.0100595 0.0874906 0)
(0.00937494 0.0872221 0)
(0.00869556 0.08697 0)
(0.00802096 0.0867342 0)
(0.00735078 0.0865143 0)
(0.00668469 0.0863098 0)
(0.00602235 0.0861193 0)
(0.0053635 0.0859399 0)
(0.00470794 0.0857643 0)
(0.00405572 0.0855754 0)
(0.00340739 0.0853331 0)
(0.00276466 0.0849432 0)
(0.00213178 0.0841909 0)
(0.00151826 0.0825979 0)
(0.000943863 0.0791376 0)
(0.000447082 0.071715 0)
(8.95893e-05 0.0563644 0)
(-2.87366e-05 0.0264622 0)
(0.120475 0.24732 0)
(0.117657 0.24134 0)
(0.115016 0.23586 0)
(0.112439 0.230646 0)
(0.109905 0.225509 0)
(0.107418 0.220346 0)
(0.104968 0.21516 0)
(0.102554 0.210032 0)
(0.10018 0.20506 0)
(0.0978517 0.200316 0)
(0.0955714 0.195829 0)
(0.093337 0.19159 0)
(0.091146 0.187575 0)
(0.0889962 0.183759 0)
(0.0868858 0.180119 0)
(0.0848139 0.176641 0)
(0.0827801 0.173313 0)
(0.0807841 0.170126 0)
(0.0788257 0.167071 0)
(0.0769046 0.16414 0)
(0.0750207 0.161326 0)
(0.0731737 0.158623 0)
(0.0713634 0.156024 0)
(0.0695895 0.153524 0)
(0.0678516 0.151116 0)
(0.0661493 0.148796 0)
(0.0644823 0.146559 0)
(0.0628501 0.144402 0)
(0.0612522 0.142318 0)
(0.0596881 0.140306 0)
(0.0581573 0.138362 0)
(0.0566591 0.136482 0)
(0.0551931 0.134663 0)
(0.0537585 0.132903 0)
(0.0523548 0.131199 0)
(0.0509813 0.129549 0)
(0.0496373 0.127951 0)
(0.0483222 0.126402 0)
(0.0470353 0.124901 0)
(0.045776 0.123446 0)
(0.0445435 0.122035 0)
(0.0433372 0.120666 0)
(0.0421563 0.119339 0)
(0.0410004 0.118051 0)
(0.0398685 0.116801 0)
(0.0387601 0.115589 0)
(0.0376746 0.114413 0)
(0.0366112 0.113272 0)
(0.0355694 0.112164 0)
(0.0345484 0.11109 0)
(0.0335477 0.110047 0)
(0.0325666 0.109036 0)
(0.0316046 0.108055 0)
(0.0306609 0.107103 0)
(0.0297352 0.106181 0)
(0.0288266 0.105286 0)
(0.0279348 0.104419 0)
(0.0270591 0.103578 0)
(0.0261989 0.102764 0)
(0.0253538 0.101976 0)
(0.0245233 0.101212 0)
(0.0237067 0.100474 0)
(0.0229036 0.0997588 0)
(0.0221135 0.0990677 0)
(0.0213359 0.0983998 0)
(0.0205704 0.0977546 0)
(0.0198165 0.0971319 0)
(0.0190736 0.0965312 0)
(0.0183415 0.0959521 0)
(0.0176195 0.0953943 0)
(0.0169074 0.0948575 0)
(0.0162047 0.0943413 0)
(0.015511 0.0938455 0)
(0.0148258 0.0933697 0)
(0.0141489 0.0929138 0)
(0.0134797 0.0924774 0)
(0.012818 0.0920604 0)
(0.0121633 0.0916624 0)
(0.0115153 0.0912833 0)
(0.0108736 0.0909229 0)
(0.0102379 0.090581 0)
(0.00960782 0.0902573 0)
(0.00898302 0.0899518 0)
(0.00836318 0.0896642 0)
(0.00774795 0.0893944 0)
(0.00713702 0.0891422 0)
(0.00653007 0.0889071 0)
(0.00592679 0.0886885 0)
(0.0053269 0.0884851 0)
(0.00473016 0.0882935 0)
(0.00413644 0.0881059 0)
(0.00354583 0.0879038 0)
(0.00295898 0.0876438 0)
(0.00237782 0.0872245 0)
(0.00180691 0.086416 0)
(0.00125633 0.0847098 0)
(0.000746639 0.0810256 0)
(0.000316464 0.0731895 0)
(2.28304e-05 0.0571739 0)
(-4.13102e-05 0.0264916 0)
(0.0905817 0.254642 0)
(0.0897376 0.248444 0)
(0.0888735 0.24283 0)
(0.0879009 0.237567 0)
(0.0868275 0.232447 0)
(0.0856728 0.227335 0)
(0.0844421 0.222199 0)
(0.0831437 0.217095 0)
(0.0817927 0.212114 0)
(0.0804041 0.207333 0)
(0.0789889 0.202794 0)
(0.0775539 0.198497 0)
(0.0761036 0.194422 0)
(0.0746415 0.190544 0)
(0.0731711 0.18684 0)
(0.0716959 0.183293 0)
(0.0702194 0.179891 0)
(0.0687449 0.176624 0)
(0.0672754 0.173485 0)
(0.0658134 0.170467 0)
(0.0643614 0.167562 0)
(0.0629213 0.164765 0)
(0.061495 0.16207 0)
(0.060084 0.15947 0)
(0.0586896 0.156963 0)
(0.057313 0.154542 0)
(0.0559551 0.152203 0)
(0.0546167 0.149942 0)
(0.0532984 0.147756 0)
(0.0520008 0.145642 0)
(0.0507242 0.143595 0)
(0.0494689 0.141614 0)
(0.0482351 0.139695 0)
(0.0470229 0.137835 0)
(0.0458323 0.136033 0)
(0.0446633 0.134287 0)
(0.0435158 0.132593 0)
(0.0423896 0.13095 0)
(0.0412846 0.129357 0)
(0.0402004 0.127811 0)
(0.0391369 0.126312 0)
(0.0380936 0.124857 0)
(0.0370704 0.123444 0)
(0.0360667 0.122074 0)
(0.0350823 0.120744 0)
(0.0341168 0.119453 0)
(0.0331697 0.1182 0)
(0.0322407 0.116984 0)
(0.0313293 0.115803 0)
(0.0304351 0.114658 0)
(0.0295577 0.113547 0)
(0.0286966 0.112469 0)
(0.0278514 0.111423 0)
(0.0270217 0.110409 0)
(0.026207 0.109425 0)
(0.0254068 0.108471 0)
(0.0246208 0.107547 0)
(0.0238485 0.106651 0)
(0.0230895 0.105784 0)
(0.0223434 0.104943 0)
(0.0216097 0.10413 0)
(0.020888 0.103343 0)
(0.020178 0.102582 0)
(0.0194791 0.101846 0)
(0.0187911 0.101135 0)
(0.0181135 0.100448 0)
(0.0174459 0.0997855 0)
(0.016788 0.0991464 0)
(0.0161394 0.0985305 0)
(0.0154997 0.0979374 0)
(0.0148685 0.0973667 0)
(0.0142455 0.0968181 0)
(0.0136303 0.0962913 0)
(0.0130227 0.095786 0)
(0.0124222 0.0953018 0)
(0.0118285 0.0948386 0)
(0.0112413 0.094396 0)
(0.0106603 0.0939737 0)
(0.0100851 0.0935717 0)
(0.00951545 0.0931895 0)
(0.00895105 0.0928271 0)
(0.00839158 0.0924842 0)
(0.00783673 0.0921606 0)
(0.00728622 0.0918561 0)
(0.00673975 0.0915705 0)
(0.00619703 0.0913036 0)
(0.00565779 0.091055 0)
(0.00512177 0.090824 0)
(0.00458871 0.0906091 0)
(0.00405841 0.0904065 0)
(0.0035308 0.090208 0)
(0.00300605 0.0899934 0)
(0.00248494 0.0897157 0)
(0.00196956 0.0892662 0)
(0.00146486 0.0883989 0)
(0.000981511 0.0865746 0)
(0.000540766 0.0826596 0)
(0.000181389 0.0744069 0)
(-4.21635e-05 0.0577483 0)
(-5.07894e-05 0.026385 0)
(0.0616645 0.253815 0)
(0.0628037 0.248322 0)
(0.0636828 0.243352 0)
(0.0642575 0.238695 0)
(0.0645711 0.234147 0)
(0.0646668 0.229566 0)
(0.0645683 0.224904 0)
(0.0642989 0.220202 0)
(0.0638859 0.215549 0)
(0.0633552 0.211031 0)
(0.0627279 0.206703 0)
(0.0620199 0.20258 0)
(0.0612431 0.198653 0)
(0.0604072 0.194898 0)
(0.0595205 0.191296 0)
(0.0585911 0.18783 0)
(0.057626 0.18449 0)
(0.0566318 0.181268 0)
(0.0556144 0.178158 0)
(0.0545791 0.175154 0)
(0.0535304 0.172252 0)
(0.0524723 0.169446 0)
(0.0514083 0.166733 0)
(0.0503417 0.164107 0)
(0.049275 0.161566 0)
(0.0482107 0.159105 0)
(0.0471508 0.156721 0)
(0.0460972 0.154411 0)
(0.0450514 0.152171 0)
(0.0440147 0.15 0)
(0.0429884 0.147894 0)
(0.0419734 0.145851 0)
(0.0409704 0.143868 0)
(0.0399803 0.141944 0)
(0.0390035 0.140076 0)
(0.0380405 0.138263 0)
(0.0370917 0.136502 0)
(0.0361573 0.134793 0)
(0.0352376 0.133132 0)
(0.0343325 0.13152 0)
(0.0334423 0.129954 0)
(0.0325669 0.128433 0)
(0.0317063 0.126956 0)
(0.0308604 0.125522 0)
(0.030029 0.124128 0)
(0.0292121 0.122775 0)
(0.0284094 0.121461 0)
(0.0276207 0.120186 0)
(0.0268459 0.118947 0)
(0.0260846 0.117744 0)
(0.0253367 0.116577 0)
(0.0246019 0.115444 0)
(0.0238798 0.114345 0)
(0.0231701 0.113279 0)
(0.0224727 0.112245 0)
(0.0217871 0.111242 0)
(0.0211131 0.11027 0)
(0.0204503 0.109328 0)
(0.0197985 0.108416 0)
(0.0191572 0.107532 0)
(0.0185263 0.106676 0)
(0.0179054 0.105849 0)
(0.0172941 0.105048 0)
(0.0166921 0.104274 0)
(0.0160992 0.103526 0)
(0.015515 0.102804 0)
(0.0149392 0.102108 0)
(0.0143715 0.101436 0)
(0.0138115 0.100788 0)
(0.0132591 0.100165 0)
(0.0127139 0.099565 0)
(0.0121756 0.0989886 0)
(0.0116439 0.0984352 0)
(0.0111185 0.0979044 0)
(0.0105992 0.0973959 0)
(0.0100856 0.0969095 0)
(0.00957751 0.0964449 0)
(0.00907465 0.0960018 0)
(0.00857674 0.0955799 0)
(0.00808351 0.095179 0)
(0.0075947 0.0947989 0)
(0.00711005 0.0944394 0)
(0.00662932 0.0941002 0)
(0.00615224 0.0937811 0)
(0.00567858 0.093482 0)
(0.00520808 0.0932026 0)
(0.00474052 0.0929424 0)
(0.00427567 0.0927007 0)
(0.00381332 0.0924757 0)
(0.00335332 0.0922637 0)
(0.00289564 0.0920553 0)
(0.00244055 0.091829 0)
(0.00198893 0.0915339 0)
(0.00154311 0.0910532 0)
(0.00110842 0.0901245 0)
(0.000696104 0.0881772 0)
(0.000328121 0.084025 0)
(4.42309e-05 0.0753548 0)
(-0.000106947 0.0580794 0)
(-6.0422e-05 0.026141 0)
(0.0380147 0.246025 0)
(0.0404487 0.24208 0)
(0.042468 0.238456 0)
(0.0440688 0.234983 0)
(0.0453169 0.231491 0)
(0.046267 0.227851 0)
(0.0469538 0.224017 0)
(0.0474092 0.220029 0)
(0.0476668 0.215979 0)
(0.0477589 0.211963 0)
(0.0477126 0.208056 0)
(0.0475491 0.20429 0)
(0.047285 0.20067 0)
(0.0469333 0.197181 0)
(0.0465054 0.193809 0)
(0.0460113 0.19054 0)
(0.0454604 0.187366 0)
(0.0448609 0.184283 0)
(0.0442202 0.181288 0)
(0.043545 0.178378 0)
(0.042841 0.17555 0)
(0.0421134 0.172802 0)
(0.0413666 0.170132 0)
(0.0406047 0.167538 0)
(0.0398312 0.165016 0)
(0.039049 0.162564 0)
(0.0382611 0.160181 0)
(0.0374697 0.157864 0)
(0.0366769 0.155611 0)
(0.0358846 0.15342 0)
(0.0350944 0.151289 0)
(0.0343077 0.149218 0)
(0.0335257 0.147203 0)
(0.0327495 0.145243 0)
(0.0319799 0.143337 0)
(0.0312178 0.141484 0)
(0.0304638 0.139681 0)
(0.0297184 0.137928 0)
(0.0289821 0.136223 0)
(0.0282553 0.134565 0)
(0.0275382 0.132953 0)
(0.0268312 0.131386 0)
(0.0261343 0.129862 0)
(0.0254478 0.128381 0)
(0.0247716 0.126941 0)
(0.0241058 0.125541 0)
(0.0234504 0.124182 0)
(0.0228053 0.12286 0)
(0.0221705 0.121577 0)
(0.0215458 0.12033 0)
(0.0209313 0.119119 0)
(0.0203266 0.117944 0)
(0.0197318 0.116803 0)
(0.0191465 0.115695 0)
(0.0185707 0.114621 0)
(0.0180041 0.113579 0)
(0.0174465 0.112569 0)
(0.0168977 0.111589 0)
(0.0163576 0.110641 0)
(0.0158257 0.109722 0)
(0.0153021 0.108832 0)
(0.0147863 0.107971 0)
(0.0142783 0.107138 0)
(0.0137777 0.106333 0)
(0.0132843 0.105555 0)
(0.0127978 0.104804 0)
(0.0123181 0.10408 0)
(0.0118449 0.103381 0)
(0.011378 0.102707 0)
(0.0109171 0.102059 0)
(0.010462 0.101435 0)
(0.0100124 0.100836 0)
(0.00956818 0.10026 0)
(0.00912907 0.0997084 0)
(0.00869483 0.0991799 0)
(0.00826525 0.0986743 0)
(0.00784011 0.0981915 0)
(0.00741919 0.097731 0)
(0.00700226 0.0972927 0)
(0.00658911 0.0968763 0)
(0.00617953 0.0964816 0)
(0.00577331 0.0961083 0)
(0.00537024 0.0957562 0)
(0.00497012 0.0954251 0)
(0.00457273 0.0951148 0)
(0.0041779 0.094825 0)
(0.00378541 0.0945553 0)
(0.0033951 0.0943047 0)
(0.0030068 0.0940715 0)
(0.00262042 0.0938514 0)
(0.00223598 0.0936345 0)
(0.00185383 0.0933972 0)
(0.00147502 0.0930849 0)
(0.0011021 0.0925721 0)
(0.000740783 0.0915792 0)
(0.000402923 0.0895037 0)
(0.000111115 0.0851087 0)
(-9.57199e-05 0.0760222 0)
(-0.000172953 0.058161 0)
(-6.98639e-05 0.0257621 0)
(0.0222441 0.235049 0)
(0.0248571 0.232932 0)
(0.0270614 0.230884 0)
(0.0288788 0.228787 0)
(0.0303706 0.226509 0)
(0.0315841 0.223946 0)
(0.0325488 0.221063 0)
(0.0332922 0.217901 0)
(0.0338441 0.214555 0)
(0.0342337 0.211135 0)
(0.0344864 0.207731 0)
(0.0346224 0.204396 0)
(0.0346575 0.201148 0)
(0.0346039 0.197985 0)
(0.034472 0.194898 0)
(0.034271 0.191878 0)
(0.0340093 0.18892 0)
(0.0336948 0.186023 0)
(0.0333345 0.183187 0)
(0.0329346 0.180412 0)
(0.0325007 0.177698 0)
(0.0320378 0.175046 0)
(0.0315503 0.172456 0)
(0.0310421 0.169926 0)
(0.0305167 0.167455 0)
(0.0299772 0.165044 0)
(0.0294263 0.162692 0)
(0.0288666 0.160396 0)
(0.0283001 0.158157 0)
(0.0277287 0.155973 0)
(0.0271543 0.153844 0)
(0.0265782 0.151767 0)
(0.0260019 0.149744 0)
(0.0254264 0.147771 0)
(0.0248528 0.145848 0)
(0.024282 0.143975 0)
(0.0237147 0.14215 0)
(0.0231517 0.140373 0)
(0.0225934 0.138642 0)
(0.0220405 0.136956 0)
(0.0214932 0.135315 0)
(0.020952 0.133717 0)
(0.0204172 0.132162 0)
(0.0198889 0.130649 0)
(0.0193674 0.129177 0)
(0.0188528 0.127746 0)
(0.0183452 0.126353 0)
(0.0178447 0.124999 0)
(0.0173512 0.123683 0)
(0.0168649 0.122404 0)
(0.0163856 0.121162 0)
(0.0159134 0.119954 0)
(0.0154482 0.118782 0)
(0.0149899 0.117644 0)
(0.0145384 0.116539 0)
(0.0140937 0.115468 0)
(0.0136555 0.114428 0)
(0.0132238 0.113421 0)
(0.0127985 0.112444 0)
(0.0123793 0.111498 0)
(0.0119662 0.110582 0)
(0.0115589 0.109696 0)
(0.0111574 0.108838 0)
(0.0107615 0.108009 0)
(0.0103709 0.107208 0)
(0.00998562 0.106434 0)
(0.00960537 0.105688 0)
(0.00923 0.104968 0)
(0.00885935 0.104274 0)
(0.00849324 0.103606 0)
(0.0081315 0.102963 0)
(0.00777397 0.102346 0)
(0.00742046 0.101753 0)
(0.0070708 0.101185 0)
(0.00672483 0.10064 0)
(0.00638237 0.10012 0)
(0.00604327 0.0996227 0)
(0.00570733 0.0991487 0)
(0.00537442 0.0986975 0)
(0.00504435 0.098269 0)
(0.00471697 0.0978628 0)
(0.0043921 0.0974787 0)
(0.00406961 0.0971166 0)
(0.00374931 0.0967762 0)
(0.00343107 0.0964572 0)
(0.00311472 0.0961593 0)
(0.00280011 0.0958821 0)
(0.00248712 0.0956247 0)
(0.00217562 0.095385 0)
(0.00186558 0.0951585 0)
(0.0015571 0.0949342 0)
(0.00125061 0.0946869 0)
(0.000947329 0.0943573 0)
(0.000650051 0.0938113 0)
(0.000364892 0.0927512 0)
(0.000104274 0.0905427 0)
(-0.000108673 0.0858997 0)
(-0.000235898 0.0764004 0)
(-0.00023799 0.0579901 0)
(-7.89465e-05 0.0252515 0)
(0.0139631 0.225486 0)
(0.0157162 0.224779 0)
(0.0172222 0.223953 0)
(0.0185024 0.222934 0)
(0.0195935 0.22162 0)
(0.0205179 0.219927 0)
(0.0212861 0.217826 0)
(0.0219089 0.215354 0)
(0.0224022 0.212606 0)
(0.022784 0.209696 0)
(0.0230704 0.206727 0)
(0.0232747 0.203766 0)
(0.0234067 0.200846 0)
(0.0234741 0.197973 0)
(0.0234826 0.195145 0)
(0.0234379 0.192355 0)
(0.0233452 0.1896 0)
(0.0232094 0.186882 0)
(0.0230355 0.184202 0)
(0.0228278 0.181563 0)
(0.0225904 0.178968 0)
(0.022327 0.176417 0)
(0.0220409 0.173914 0)
(0.021735 0.171458 0)
(0.0214122 0.169051 0)
(0.0210749 0.166693 0)
(0.0207253 0.164383 0)
(0.0203654 0.162123 0)
(0.0199971 0.159911 0)
(0.0196218 0.157748 0)
(0.0192412 0.155634 0)
(0.0188565 0.153568 0)
(0.0184687 0.151549 0)
(0.0180791 0.149578 0)
(0.0176885 0.147654 0)
(0.0172977 0.145775 0)
(0.0169074 0.143942 0)
(0.0165183 0.142154 0)
(0.016131 0.140411 0)
(0.0157458 0.138711 0)
(0.0153633 0.137054 0)
(0.0149838 0.135439 0)
(0.0146076 0.133866 0)
(0.0142349 0.132334 0)
(0.0138661 0.130842 0)
(0.0135012 0.12939 0)
(0.0131404 0.127977 0)
(0.0127839 0.126602 0)
(0.0124317 0.125264 0)
(0.0120839 0.123964 0)
(0.0117405 0.1227 0)
(0.0114016 0.121471 0)
(0.0110671 0.120277 0)
(0.010737 0.119118 0)
(0.0104114 0.117993 0)
(0.0100901 0.1169 0)
(0.0097732 0.115841 0)
(0.0094605 0.114813 0)
(0.00915199 0.113817 0)
(0.00884758 0.112852 0)
(0.00854719 0.111917 0)
(0.00825072 0.111012 0)
(0.00795807 0.110137 0)
(0.00766915 0.10929 0)
(0.00738385 0.108473 0)
(0.00710205 0.107683 0)
(0.00682365 0.10692 0)
(0.00654855 0.106185 0)
(0.00627662 0.105477 0)
(0.00600775 0.104795 0)
(0.00574183 0.104139 0)
(0.00547873 0.103508 0)
(0.00521835 0.102903 0)
(0.00496056 0.102323 0)
(0.00470525 0.101767 0)
(0.00445229 0.101236 0)
(0.00420157 0.100728 0)
(0.00395297 0.100245 0)
(0.00370639 0.0997843 0)
(0.0034617 0.099347 0)
(0.00321879 0.0989327 0)
(0.00297756 0.098541 0)
(0.00273788 0.0981717 0)
(0.00249965 0.0978246 0)
(0.00226275 0.0974994 0)
(0.00202707 0.0971959 0)
(0.00179252 0.0969135 0)
(0.00155901 0.0966513 0)
(0.00132646 0.0964069 0)
(0.00109491 0.0961756 0)
(0.000864522 0.0959453 0)
(0.000635841 0.0956887 0)
(0.000410225 0.095342 0)
(0.000190753 0.0947614 0)
(-1.60497e-05 0.0936312 0)
(-0.000197194 0.0912849 0)
(-0.000329119 0.0863897 0)
(-0.000375133 0.0764831 0)
(-0.000301366 0.0575658 0)
(-8.72959e-05 0.0246137 0)
(0.0100608 0.220899 0)
(0.010407 0.220651 0)
(0.0107515 0.220247 0)
(0.0110973 0.219632 0)
(0.0114443 0.218718 0)
(0.0117811 0.217423 0)
(0.0120917 0.215711 0)
(0.0123652 0.213605 0)
(0.0125987 0.211187 0)
(0.0127944 0.208566 0)
(0.0129563 0.205847 0)
(0.0130875 0.203107 0)
(0.01319 0.200385 0)
(0.0132645 0.197695 0)
(0.0133112 0.195035 0)
(0.0133307 0.1924 0)
(0.0133239 0.189788 0)
(0.0132922 0.187199 0)
(0.0132373 0.184635 0)
(0.0131611 0.1821 0)
(0.0130654 0.179597 0)
(0.0129519 0.177129 0)
(0.0128225 0.174698 0)
(0.0126788 0.172306 0)
(0.0125223 0.169954 0)
(0.0123545 0.167644 0)
(0.0121768 0.165375 0)
(0.0119904 0.16315 0)
(0.0117964 0.160968 0)
(0.011596 0.15883 0)
(0.0113902 0.156736 0)
(0.0111798 0.154685 0)
(0.0109656 0.152679 0)
(0.0107484 0.150717 0)
(0.0105289 0.148798 0)
(0.0103076 0.146923 0)
(0.0100851 0.145092 0)
(0.00986179 0.143303 0)
(0.00963821 0.141556 0)
(0.00941471 0.139852 0)
(0.00919161 0.138189 0)
(0.00896921 0.136567 0)
(0.00874778 0.134986 0)
(0.00852754 0.133445 0)
(0.00830868 0.131944 0)
(0.00809138 0.130481 0)
(0.00787577 0.129057 0)
(0.00766199 0.127671 0)
(0.00745012 0.126321 0)
(0.00724025 0.125009 0)
(0.00703245 0.123732 0)
(0.00682677 0.122491 0)
(0.00662323 0.121285 0)
(0.00642186 0.120114 0)
(0.00622267 0.118976 0)
(0.00602565 0.117872 0)
(0.00583082 0.1168 0)
(0.00563814 0.11576 0)
(0.0054476 0.114752 0)
(0.00525916 0.113776 0)
(0.0050728 0.112829 0)
(0.00488847 0.111914 0)
(0.00470612 0.111027 0)
(0.0045257 0.11017 0)
(0.00434716 0.109342 0)
(0.00417045 0.108543 0)
(0.00399551 0.107771 0)
(0.00382228 0.107026 0)
(0.00365071 0.106309 0)
(0.00348072 0.105618 0)
(0.00331226 0.104954 0)
(0.00314526 0.104316 0)
(0.00297965 0.103703 0)
(0.00281536 0.103115 0)
(0.00265234 0.102553 0)
(0.00249052 0.102015 0)
(0.00232983 0.101501 0)
(0.0021702 0.101011 0)
(0.00201158 0.100545 0)
(0.00185389 0.100103 0)
(0.00169707 0.0996839 0)
(0.00154106 0.0992876 0)
(0.00138578 0.0989142 0)
(0.00123118 0.0985633 0)
(0.00107719 0.0982346 0)
(0.00092374 0.0979279 0)
(0.000770787 0.0976425 0)
(0.000618288 0.0973775 0)
(0.000466237 0.0971304 0)
(0.000314706 0.0968958 0)
(0.000163945 0.0966608 0)
(1.46048e-05 0.0963957 0)
(-0.000131789 0.0960318 0)
(-0.000271887 0.0954155 0)
(-0.000398733 0.094212 0)
(-0.000498771 0.0917231 0)
(-0.000548132 0.086572 0)
(-0.000511786 0.0762669 0)
(-0.000362051 0.0568899 0)
(-9.47024e-05 0.0238546 0)
(0.00576921 0.222157 0)
(0.00492533 0.221287 0)
(0.00430161 0.220413 0)
(0.00386812 0.21946 0)
(0.00358978 0.218327 0)
(0.00342678 0.216916 0)
(0.00334132 0.215163 0)
(0.00330525 0.213065 0)
(0.00330114 0.21068 0)
(0.00331913 0.208101 0)
(0.00335342 0.205426 0)
(0.00339977 0.20273 0)
(0.00345418 0.200057 0)
(0.00351254 0.197421 0)
(0.00357098 0.19482 0)
(0.00362628 0.192248 0)
(0.00367612 0.1897 0)
(0.00371904 0.187173 0)
(0.0037542 0.18467 0)
(0.00378123 0.182192 0)
(0.00380004 0.179742 0)
(0.00381078 0.177323 0)
(0.00381368 0.174937 0)
(0.00380913 0.172586 0)
(0.00379752 0.170272 0)
(0.00377934 0.167995 0)
(0.00375504 0.165757 0)
(0.00372511 0.163559 0)
(0.00369003 0.161401 0)
(0.00365024 0.159284 0)
(0.00360619 0.157208 0)
(0.00355829 0.155174 0)
(0.00350694 0.153181 0)
(0.00345249 0.15123 0)
(0.0033953 0.149321 0)
(0.00333566 0.147454 0)
(0.00327387 0.145628 0)
(0.00321019 0.143844 0)
(0.00314486 0.142102 0)
(0.00307809 0.1404 0)
(0.00301009 0.138739 0)
(0.00294103 0.137117 0)
(0.00287109 0.135536 0)
(0.00280041 0.133994 0)
(0.00272912 0.132491 0)
(0.00265734 0.131027 0)
(0.00258517 0.1296 0)
(0.00251271 0.12821 0)
(0.00244004 0.126858 0)
(0.00236725 0.125542 0)
(0.00229438 0.124262 0)
(0.00222147 0.123017 0)
(0.00214854 0.121807 0)
(0.00207567 0.120631 0)
(0.00200291 0.119489 0)
(0.00193028 0.11838 0)
(0.0018578 0.117304 0)
(0.00178549 0.11626 0)
(0.00171336 0.115248 0)
(0.00164143 0.114267 0)
(0.00156968 0.113316 0)
(0.00149812 0.112396 0)
(0.00142676 0.111506 0)
(0.00135558 0.110645 0)
(0.00128458 0.109813 0)
(0.00121377 0.109009 0)
(0.00114312 0.108234 0)
(0.00107263 0.107486 0)
(0.0010023 0.106765 0)
(0.000932095 0.106071 0)
(0.000862012 0.105404 0)
(0.000792022 0.104763 0)
(0.000722107 0.104147 0)
(0.000652264 0.103557 0)
(0.000582477 0.102992 0)
(0.000512729 0.102452 0)
(0.000443005 0.101936 0)
(0.000373288 0.101444 0)
(0.000303561 0.100976 0)
(0.000233804 0.100532 0)
(0.000164002 0.100112 0)
(9.41339e-05 0.0997141 0)
(2.41812e-05 0.0993394 0)
(-4.58747e-05 0.0989875 0)
(-0.000116047 0.0986579 0)
(-0.000186355 0.0983504 0)
(-0.000256805 0.0980644 0)
(-0.000327386 0.0977987 0)
(-0.000398049 0.0975508 0)
(-0.000468657 0.0973146 0)
(-0.000538888 0.0970762 0)
(-0.000607976 0.0968032 0)
(-0.000674213 0.0964221 0)
(-0.000733957 0.0957685 0)
(-0.000779815 0.0944886 0)
(-0.000797693 0.0918523 0)
(-0.000763574 0.086443 0)
(-0.000644395 0.0757509 0)
(-0.000419303 0.0559667 0)
(-0.000101037 0.0229814 0)
(-0.00323161 0.226827 0)
(-0.00420042 0.224717 0)
(-0.0049405 0.222874 0)
(-0.00548526 0.221171 0)
(-0.00586631 0.219472 0)
(-0.00611998 0.217646 0)
(-0.00628283 0.215598 0)
(-0.00638005 0.213293 0)
(-0.00642867 0.210758 0)
(-0.0064391 0.208066 0)
(-0.00641782 0.2053 0)
(-0.00636949 0.202532 0)
(-0.00629831 0.199803 0)
(-0.00620856 0.197128 0)
(-0.00610451 0.194504 0)
(-0.00598998 0.191921 0)
(-0.00586817 0.189372 0)
(-0.00574154 0.186851 0)
(-0.00561197 0.184357 0)
(-0.00548086 0.181893 0)
(-0.00534929 0.179458 0)
(-0.00521808 0.177056 0)
(-0.00508787 0.174688 0)
(-0.00495916 0.172355 0)
(-0.00483232 0.170058 0)
(-0.00470763 0.167798 0)
(-0.0045853 0.165577 0)
(-0.00446547 0.163394 0)
(-0.00434828 0.161251 0)
(-0.0042338 0.159149 0)
(-0.00412209 0.157086 0)
(-0.00401318 0.155065 0)
(-0.00390705 0.153084 0)
(-0.00380371 0.151145 0)
(-0.00370315 0.149246 0)
(-0.00360535 0.147389 0)
(-0.00351029 0.145573 0)
(-0.00341795 0.143798 0)
(-0.00332829 0.142063 0)
(-0.00324126 0.140369 0)
(-0.00315682 0.138715 0)
(-0.00307493 0.137101 0)
(-0.00299553 0.135526 0)
(-0.00291857 0.13399 0)
(-0.00284401 0.132492 0)
(-0.0027718 0.131033 0)
(-0.00270189 0.129611 0)
(-0.00263423 0.128227 0)
(-0.00256875 0.126879 0)
(-0.00250534 0.125567 0)
(-0.00244337 0.124291 0)
(-0.00238404 0.123049 0)
(-0.00232753 0.121843 0)
(-0.00227245 0.12067 0)
(-0.00221911 0.119532 0)
(-0.00216763 0.118426 0)
(-0.00211795 0.117353 0)
(-0.00207003 0.116312 0)
(-0.00202383 0.115302 0)
(-0.00197931 0.114324 0)
(-0.00193645 0.113376 0)
(-0.00189519 0.112459 0)
(-0.0018555 0.111571 0)
(-0.00181734 0.110712 0)
(-0.00178067 0.109883 0)
(-0.00174545 0.109081 0)
(-0.00171165 0.108308 0)
(-0.00167923 0.107562 0)
(-0.00164816 0.106844 0)
(-0.00161838 0.106152 0)
(-0.00158971 0.105487 0)
(-0.00156247 0.104847 0)
(-0.00153663 0.104234 0)
(-0.00151179 0.103646 0)
(-0.00148809 0.103083 0)
(-0.00146549 0.102544 0)
(-0.00144399 0.10203 0)
(-0.00142352 0.101541 0)
(-0.00140408 0.101075 0)
(-0.00138567 0.100633 0)
(-0.0013682 0.100214 0)
(-0.00135166 0.099818 0)
(-0.00133603 0.0994452 0)
(-0.00132128 0.099095 0)
(-0.00130736 0.0987672 0)
(-0.00129426 0.0984614 0)
(-0.00128192 0.0981771 0)
(-0.00127031 0.0979128 0)
(-0.00125932 0.0976659 0)
(-0.00124874 0.0974297 0)
(-0.00123817 0.097189 0)
(-0.00122672 0.096909 0)
(-0.00121249 0.0965103 0)
(-0.00119153 0.0958179 0)
(-0.00115601 0.0944581 0)
(-0.00109131 0.0916701 0)
(-0.000973453 0.0860014 0)
(-0.000771721 0.074937 0)
(-0.000472551 0.0548028 0)
(-0.000106218 0.0220028 0)
(-0.017875 0.229752 0)
(-0.0177145 0.226921 0)
(-0.0175922 0.224489 0)
(-0.0174898 0.222305 0)
(-0.0173895 0.220224 0)
(-0.0172828 0.218103 0)
(-0.0171687 0.215832 0)
(-0.0170495 0.213358 0)
(-0.0169244 0.21069 0)
(-0.0167911 0.207885 0)
(-0.0166466 0.20502 0)
(-0.0164883 0.202162 0)
(-0.0163147 0.199354 0)
(-0.0161257 0.196611 0)
(-0.0159222 0.19393 0)
(-0.0157059 0.191302 0)
(-0.0154785 0.188717 0)
(-0.0152417 0.186169 0)
(-0.0149968 0.183655 0)
(-0.0147452 0.181175 0)
(-0.0144882 0.17873 0)
(-0.0142267 0.176321 0)
(-0.0139616 0.173948 0)
(-0.013694 0.171614 0)
(-0.0134245 0.169318 0)
(-0.013154 0.167061 0)
(-0.012883 0.164844 0)
(-0.012612 0.162668 0)
(-0.0123416 0.160532 0)
(-0.0120726 0.158437 0)
(-0.0118055 0.156383 0)
(-0.0115401 0.154371 0)
(-0.011277 0.152401 0)
(-0.0110166 0.150472 0)
(-0.0107591 0.148585 0)
(-0.0105048 0.146739 0)
(-0.0102538 0.144935 0)
(-0.0100064 0.143172 0)
(-0.00976277 0.14145 0)
(-0.00952293 0.139768 0)
(-0.00928702 0.138126 0)
(-0.00905512 0.136524 0)
(-0.0088273 0.134962 0)
(-0.00860361 0.133438 0)
(-0.00838406 0.131953 0)
(-0.00816869 0.130505 0)
(-0.00795749 0.129096 0)
(-0.00775044 0.127723 0)
(-0.00754755 0.126387 0)
(-0.00734877 0.125086 0)
(-0.00715405 0.123822 0)
(-0.00696343 0.122591 0)
(-0.00677678 0.121396 0)
(-0.00659358 0.120234 0)
(-0.00641484 0.119106 0)
(-0.00624042 0.118011 0)
(-0.00606923 0.116948 0)
(-0.00590166 0.115917 0)
(-0.00573771 0.114917 0)
(-0.00557731 0.113949 0)
(-0.00542038 0.11301 0)
(-0.00526684 0.112102 0)
(-0.00511661 0.111223 0)
(-0.00496962 0.110373 0)
(-0.00482578 0.109552 0)
(-0.00468502 0.108759 0)
(-0.00454724 0.107994 0)
(-0.00441238 0.107256 0)
(-0.00428032 0.106545 0)
(-0.004151 0.105861 0)
(-0.00402439 0.105203 0)
(-0.00390041 0.10457 0)
(-0.00377891 0.103964 0)
(-0.00365981 0.103382 0)
(-0.00354306 0.102825 0)
(-0.00342856 0.102293 0)
(-0.00331625 0.101785 0)
(-0.00320604 0.101301 0)
(-0.00309788 0.100841 0)
(-0.00299168 0.100404 0)
(-0.00288734 0.0999905 0)
(-0.00278479 0.0995997 0)
(-0.00268397 0.0992317 0)
(-0.00258481 0.0988861 0)
(-0.0024872 0.0985627 0)
(-0.00239108 0.0982611 0)
(-0.00229635 0.0979806 0)
(-0.00220291 0.0977198 0)
(-0.00211061 0.0974757 0)
(-0.00201919 0.0972411 0)
(-0.00192815 0.0969995 0)
(-0.00183648 0.0967129 0)
(-0.00174206 0.0962963 0)
(-0.00164064 0.0955632 0)
(-0.00152393 0.0941201 0)
(-0.0013769 0.0911764 0)
(-0.00117575 0.0852484 0)
(-0.000892395 0.0738298 0)
(-0.000521193 0.0534075 0)
(-0.000110219 0.0209283 0)
(-0.0328596 0.227557 0)
(-0.0316123 0.225278 0)
(-0.0306609 0.223213 0)
(-0.0299255 0.221261 0)
(-0.0293385 0.219323 0)
(-0.0288537 0.217289 0)
(-0.0284417 0.215071 0)
(-0.0280817 0.212625 0)
(-0.0277565 0.209963 0)
(-0.0274517 0.207144 0)
(-0.0271555 0.204246 0)
(-0.0268589 0.201341 0)
(-0.0265552 0.198477 0)
(-0.0262403 0.195675 0)
(-0.0259123 0.192937 0)
(-0.0255708 0.190256 0)
(-0.0252159 0.187624 0)
(-0.0248487 0.185034 0)
(-0.0244701 0.182484 0)
(-0.0240813 0.179973 0)
(-0.0236834 0.177501 0)
(-0.0232778 0.17507 0)
(-0.0228653 0.17268 0)
(-0.0224467 0.170331 0)
(-0.0220246 0.168025 0)
(-0.0215998 0.165761 0)
(-0.0211721 0.163541 0)
(-0.0207429 0.161363 0)
(-0.0203133 0.159229 0)
(-0.0198841 0.157138 0)
(-0.0194561 0.15509 0)
(-0.0190299 0.153086 0)
(-0.0186061 0.151126 0)
(-0.0181853 0.149208 0)
(-0.0177681 0.147334 0)
(-0.0173547 0.145502 0)
(-0.0169458 0.143713 0)
(-0.0165417 0.141965 0)
(-0.0161427 0.14026 0)
(-0.015749 0.138595 0)
(-0.0153607 0.136971 0)
(-0.0149781 0.135388 0)
(-0.0146015 0.133844 0)
(-0.0142308 0.132339 0)
(-0.0138661 0.130873 0)
(-0.0135077 0.129445 0)
(-0.0131553 0.128054 0)
(-0.0128092 0.126701 0)
(-0.0124694 0.125384 0)
(-0.0121357 0.124103 0)
(-0.0118081 0.122857 0)
(-0.0114867 0.121646 0)
(-0.0111712 0.120469 0)
(-0.0108618 0.119326 0)
(-0.0105585 0.118215 0)
(-0.010261 0.117138 0)
(-0.00996917 0.116092 0)
(-0.00968295 0.115079 0)
(-0.00940227 0.114096 0)
(-0.00912702 0.113144 0)
(-0.00885707 0.112221 0)
(-0.00859232 0.111329 0)
(-0.00833264 0.110465 0)
(-0.00807792 0.109631 0)
(-0.00782802 0.108824 0)
(-0.0075828 0.108045 0)
(-0.00734215 0.107294 0)
(-0.00710598 0.10657 0)
(-0.00687416 0.105872 0)
(-0.00664648 0.1052 0)
(-0.00642286 0.104554 0)
(-0.00620316 0.103934 0)
(-0.00598726 0.103339 0)
(-0.00577501 0.102769 0)
(-0.00556626 0.102223 0)
(-0.00536097 0.101701 0)
(-0.005159 0.101203 0)
(-0.00496015 0.100729 0)
(-0.00476432 0.100278 0)
(-0.00457139 0.0998495 0)
(-0.00438124 0.0994444 0)
(-0.00419375 0.0990617 0)
(-0.00400878 0.0987014 0)
(-0.00382622 0.0983632 0)
(-0.00364594 0.0980468 0)
(-0.00346782 0.0977518 0)
(-0.00329172 0.0974775 0)
(-0.00311748 0.0972223 0)
(-0.0029449 0.0969828 0)
(-0.00277363 0.0967513 0)
(-0.0026031 0.0965098 0)
(-0.00243215 0.0962172 0)
(-0.00225845 0.0957822 0)
(-0.00207743 0.0950065 0)
(-0.00188036 0.0934767 0)
(-0.00165186 0.0903735 0)
(-0.00136852 0.0841881 0)
(-0.00100529 0.0724366 0)
(-0.000564808 0.0517922 0)
(-0.000113022 0.0197686 0)
(-0.042521 0.222492 0)
(-0.0416146 0.221365 0)
(-0.0409262 0.220149 0)
(-0.0403739 0.218809 0)
(-0.0399081 0.217303 0)
(-0.0394962 0.21557 0)
(-0.0391189 0.213558 0)
(-0.0387616 0.211245 0)
(-0.0384124 0.208661 0)
(-0.0380615 0.205875 0)
(-0.0377007 0.202974 0)
(-0.0373235 0.200038 0)
(-0.0369256 0.197124 0)
(-0.0365048 0.194262 0)
(-0.0360605 0.19146 0)
(-0.0355935 0.188715 0)
(-0.0351053 0.186022 0)
(-0.0345976 0.183377 0)
(-0.0340725 0.180777 0)
(-0.033532 0.178221 0)
(-0.0329781 0.175711 0)
(-0.0324127 0.173246 0)
(-0.0318376 0.170829 0)
(-0.0312544 0.168458 0)
(-0.0306651 0.166133 0)
(-0.0300712 0.163857 0)
(-0.0294739 0.161627 0)
(-0.0288746 0.159445 0)
(-0.0282748 0.157311 0)
(-0.0276754 0.155223 0)
(-0.0270776 0.153181 0)
(-0.0264822 0.151187 0)
(-0.0258902 0.149238 0)
(-0.0253025 0.147335 0)
(-0.0247195 0.145477 0)
(-0.024142 0.143663 0)
(-0.0235706 0.141894 0)
(-0.0230058 0.140168 0)
(-0.0224479 0.138485 0)
(-0.0218973 0.136844 0)
(-0.0213543 0.135245 0)
(-0.0208192 0.133687 0)
(-0.020292 0.132169 0)
(-0.0197732 0.130691 0)
(-0.0192626 0.129251 0)
(-0.0187605 0.12785 0)
(-0.0182667 0.126487 0)
(-0.0177811 0.125161 0)
(-0.0173045 0.123871 0)
(-0.0168367 0.122617 0)
(-0.016377 0.121398 0)
(-0.0159255 0.120214 0)
(-0.0154823 0.119064 0)
(-0.0150474 0.117947 0)
(-0.0146205 0.116862 0)
(-0.0142015 0.11581 0)
(-0.0137904 0.11479 0)
(-0.0133869 0.113801 0)
(-0.012991 0.112842 0)
(-0.0126024 0.111913 0)
(-0.012221 0.111014 0)
(-0.0118467 0.110144 0)
(-0.0114793 0.109303 0)
(-0.0111186 0.10849 0)
(-0.0107644 0.107704 0)
(-0.0104165 0.106945 0)
(-0.0100748 0.106214 0)
(-0.00973913 0.105509 0)
(-0.00940925 0.10483 0)
(-0.00908497 0.104176 0)
(-0.00876614 0.103548 0)
(-0.00845258 0.102944 0)
(-0.00814411 0.102365 0)
(-0.00784054 0.101811 0)
(-0.00754167 0.10128 0)
(-0.00724736 0.100773 0)
(-0.00695741 0.100289 0)
(-0.00667167 0.0998278 0)
(-0.00638996 0.0993896 0)
(-0.00611207 0.098974 0)
(-0.00583785 0.0985805 0)
(-0.00556712 0.0982091 0)
(-0.00529972 0.0978595 0)
(-0.00503546 0.0975314 0)
(-0.00477419 0.0972246 0)
(-0.00451574 0.0969386 0)
(-0.00425991 0.0966726 0)
(-0.00400651 0.096425 0)
(-0.00375526 0.096192 0)
(-0.00350577 0.0959651 0)
(-0.00325734 0.0957247 0)
(-0.00300869 0.0954264 0)
(-0.00275725 0.0949723 0)
(-0.00249813 0.094152 0)
(-0.00222217 0.092532 0)
(-0.00191371 0.0892664 0)
(-0.00154998 0.082827 0)
(-0.00110931 0.0707673 0)
(-0.000602958 0.0499708 0)
(-0.000114605 0.0185351 0)
(-0.0474358 0.221386 0)
(-0.0479494 0.220512 0)
(-0.048418 0.219424 0)
(-0.0487709 0.218118 0)
(-0.0490025 0.216581 0)
(-0.0491188 0.214775 0)
(-0.0491303 0.212663 0)
(-0.0490472 0.210236 0)
(-0.0488783 0.207529 0)
(-0.0486312 0.204612 0)
(-0.0483121 0.201575 0)
(-0.0479268 0.198501 0)
(-0.0474809 0.19545 0)
(-0.0469802 0.192457 0)
(-0.0464306 0.189533 0)
(-0.0458381 0.186678 0)
(-0.0452084 0.183886 0)
(-0.0445467 0.181154 0)
(-0.0438579 0.178478 0)
(-0.0431461 0.175858 0)
(-0.0424153 0.173293 0)
(-0.0416687 0.170783 0)
(-0.0409096 0.168328 0)
(-0.0401406 0.165927 0)
(-0.0393642 0.163581 0)
(-0.0385826 0.161289 0)
(-0.0377978 0.15905 0)
(-0.0370118 0.156864 0)
(-0.0362261 0.154731 0)
(-0.0354424 0.152649 0)
(-0.0346618 0.150618 0)
(-0.0338856 0.148637 0)
(-0.0331148 0.146706 0)
(-0.0323504 0.144823 0)
(-0.0315933 0.142988 0)
(-0.0308444 0.141201 0)
(-0.0301039 0.139459 0)
(-0.0293727 0.137763 0)
(-0.0286511 0.136111 0)
(-0.0279395 0.134503 0)
(-0.0272382 0.132937 0)
(-0.0265475 0.131413 0)
(-0.0258678 0.129931 0)
(-0.0251991 0.128488 0)
(-0.0245414 0.127085 0)
(-0.0238948 0.12572 0)
(-0.0232594 0.124394 0)
(-0.022635 0.123104 0)
(-0.0220218 0.12185 0)
(-0.0214198 0.120632 0)
(-0.0208286 0.119449 0)
(-0.0202483 0.118301 0)
(-0.0196787 0.117185 0)
(-0.0191196 0.116103 0)
(-0.018571 0.115053 0)
(-0.0180325 0.114034 0)
(-0.017504 0.113047 0)
(-0.0169854 0.11209 0)
(-0.0164764 0.111163 0)
(-0.0159767 0.110265 0)
(-0.0154862 0.109396 0)
(-0.0150047 0.108556 0)
(-0.0145319 0.107743 0)
(-0.0140676 0.106958 0)
(-0.0136116 0.106199 0)
(-0.0131636 0.105467 0)
(-0.0127233 0.104761 0)
(-0.0122906 0.104081 0)
(-0.0118653 0.103426 0)
(-0.0114469 0.102796 0)
(-0.0110354 0.10219 0)
(-0.0106305 0.101608 0)
(-0.010232 0.101051 0)
(-0.00983961 0.100516 0)
(-0.00945312 0.100005 0)
(-0.00907228 0.0995163 0)
(-0.00869687 0.0990504 0)
(-0.00832669 0.0986067 0)
(-0.00796151 0.098185 0)
(-0.00760107 0.0977851 0)
(-0.00724517 0.0974067 0)
(-0.0068936 0.0970496 0)
(-0.00654613 0.0967135 0)
(-0.00620255 0.0963983 0)
(-0.00586264 0.0961036 0)
(-0.00552618 0.0958289 0)
(-0.00519294 0.0955734 0)
(-0.00486267 0.0953353 0)
(-0.00453501 0.0951105 0)
(-0.00420951 0.0948896 0)
(-0.00388539 0.0946512 0)
(-0.00356119 0.0943475 0)
(-0.00323415 0.0938735 0)
(-0.00289902 0.0930064 0)
(-0.00254626 0.0912929 0)
(-0.00216003 0.0878624 0)
(-0.00171839 0.0811745 0)
(-0.00120347 0.0688347 0)
(-0.000635339 0.0479591 0)
(-0.000115005 0.0172398 0)
(-0.0545588 0.225026 0)
(-0.0564995 0.22332 0)
(-0.0579994 0.221503 0)
(-0.0590829 0.219552 0)
(-0.059823 0.217439 0)
(-0.0602822 0.215118 0)
(-0.0605112 0.212544 0)
(-0.060548 0.209702 0)
(-0.060422 0.206622 0)
(-0.0601568 0.203368 0)
(-0.0597712 0.200028 0)
(-0.0592812 0.19668 0)
(-0.0587007 0.193384 0)
(-0.0580422 0.190172 0)
(-0.0573169 0.187057 0)
(-0.0565348 0.184036 0)
(-0.055705 0.181103 0)
(-0.0548357 0.178251 0)
(-0.0539337 0.175475 0)
(-0.0530053 0.172772 0)
(-0.0520557 0.17014 0)
(-0.0510896 0.167576 0)
(-0.0501111 0.16508 0)
(-0.0491237 0.162648 0)
(-0.0481304 0.160281 0)
(-0.0471342 0.157977 0)
(-0.0461374 0.155734 0)
(-0.0451422 0.15355 0)
(-0.0441504 0.151426 0)
(-0.0431639 0.149359 0)
(-0.0421841 0.147347 0)
(-0.0412124 0.145391 0)
(-0.0402498 0.143487 0)
(-0.0392973 0.141636 0)
(-0.038356 0.139836 0)
(-0.0374265 0.138085 0)
(-0.0365093 0.136383 0)
(-0.0356052 0.134728 0)
(-0.0347143 0.133119 0)
(-0.0338372 0.131555 0)
(-0.032974 0.130035 0)
(-0.032125 0.128557 0)
(-0.0312904 0.127121 0)
(-0.0304702 0.125726 0)
(-0.0296644 0.12437 0)
(-0.0288729 0.123052 0)
(-0.0280959 0.121773 0)
(-0.027333 0.12053 0)
(-0.0265843 0.119323 0)
(-0.0258495 0.118152 0)
(-0.0251285 0.117014 0)
(-0.0244211 0.115911 0)
(-0.0237271 0.11484 0)
(-0.0230462 0.113801 0)
(-0.0223782 0.112794 0)
(-0.0217228 0.111818 0)
(-0.0210798 0.110872 0)
(-0.0204489 0.109955 0)
(-0.0198297 0.109068 0)
(-0.0192221 0.108208 0)
(-0.0186257 0.107377 0)
(-0.0180401 0.106573 0)
(-0.0174652 0.105796 0)
(-0.0169006 0.105045 0)
(-0.016346 0.104321 0)
(-0.0158012 0.103621 0)
(-0.0152657 0.102947 0)
(-0.0147393 0.102298 0)
(-0.0142217 0.101672 0)
(-0.0137127 0.101071 0)
(-0.0132118 0.100493 0)
(-0.0127189 0.0999377 0)
(-0.0122336 0.0994055 0)
(-0.0117556 0.0988958 0)
(-0.0112847 0.0984083 0)
(-0.0108206 0.0979426 0)
(-0.0103629 0.0974986 0)
(-0.0099115 0.0970758 0)
(-0.00946597 0.0966741 0)
(-0.00902609 0.0962933 0)
(-0.00859161 0.0959331 0)
(-0.00816224 0.0955932 0)
(-0.00773774 0.0952735 0)
(-0.00731782 0.0949737 0)
(-0.00690225 0.0946935 0)
(-0.00649074 0.0944324 0)
(-0.00608301 0.0941896 0)
(-0.00567875 0.0939629 0)
(-0.00527758 0.0937478 0)
(-0.00487894 0.0935342 0)
(-0.00448194 0.0932988 0)
(-0.00408499 0.0929897 0)
(-0.00368508 0.0924949 0)
(-0.00327663 0.0915786 0)
(-0.00284976 0.0897683 0)
(-0.00238855 0.0861714 0)
(-0.00187217 0.0792423 0)
(-0.00128687 0.0666538 0)
(-0.000661674 0.0457746 0)
(-0.000114248 0.0158953 0)
(-0.0658439 0.238253 0)
(-0.0684602 0.232978 0)
(-0.0704722 0.228457 0)
(-0.0719029 0.224404 0)
(-0.0728582 0.220628 0)
(-0.0734243 0.216974 0)
(-0.0736678 0.21332 0)
(-0.0736421 0.209595 0)
(-0.0733918 0.205786 0)
(-0.0729535 0.201927 0)
(-0.0723578 0.19808 0)
(-0.0716303 0.194306 0)
(-0.0707931 0.190653 0)
(-0.0698648 0.187142 0)
(-0.0688615 0.183777 0)
(-0.0677968 0.180549 0)
(-0.0666827 0.177447 0)
(-0.0655291 0.174457 0)
(-0.0643449 0.171572 0)
(-0.0631372 0.168783 0)
(-0.0619124 0.166086 0)
(-0.0606757 0.163474 0)
(-0.0594318 0.160944 0)
(-0.0581846 0.158493 0)
(-0.0569374 0.156118 0)
(-0.0556931 0.153815 0)
(-0.0544543 0.151583 0)
(-0.0532232 0.149418 0)
(-0.0520018 0.147318 0)
(-0.0507917 0.145282 0)
(-0.0495943 0.143308 0)
(-0.0484107 0.141392 0)
(-0.0472423 0.139534 0)
(-0.0460897 0.137731 0)
(-0.0449537 0.135983 0)
(-0.0438349 0.134286 0)
(-0.0427337 0.132639 0)
(-0.0416506 0.131042 0)
(-0.0405857 0.129491 0)
(-0.0395393 0.127987 0)
(-0.0385115 0.126527 0)
(-0.0375024 0.12511 0)
(-0.0365118 0.123734 0)
(-0.0355397 0.1224 0)
(-0.034586 0.121105 0)
(-0.0336505 0.119848 0)
(-0.032733 0.118628 0)
(-0.0318333 0.117444 0)
(-0.0309512 0.116296 0)
(-0.0300862 0.115182 0)
(-0.0292382 0.114101 0)
(-0.0284067 0.113054 0)
(-0.0275915 0.112037 0)
(-0.0267922 0.111053 0)
(-0.0260085 0.110098 0)
(-0.02524 0.109173 0)
(-0.0244863 0.108277 0)
(-0.023747 0.107409 0)
(-0.0230217 0.106569 0)
(-0.0223102 0.105757 0)
(-0.0216119 0.104971 0)
(-0.0209265 0.104211 0)
(-0.0202537 0.103476 0)
(-0.019593 0.102767 0)
(-0.0189441 0.102082 0)
(-0.0183065 0.101422 0)
(-0.01768 0.100786 0)
(-0.0170641 0.100172 0)
(-0.0164586 0.099582 0)
(-0.0158629 0.0990144 0)
(-0.0152768 0.0984691 0)
(-0.0146999 0.0979456 0)
(-0.0141319 0.0974438 0)
(-0.0135724 0.0969632 0)
(-0.0130211 0.0965037 0)
(-0.0124776 0.0960648 0)
(-0.0119415 0.0956464 0)
(-0.0114127 0.0952482 0)
(-0.0108907 0.0948699 0)
(-0.0103751 0.0945114 0)
(-0.00986584 0.0941723 0)
(-0.00936242 0.0938526 0)
(-0.00886457 0.0935519 0)
(-0.00837199 0.0932701 0)
(-0.00788435 0.0930068 0)
(-0.00740135 0.0927615 0)
(-0.00692267 0.0925331 0)
(-0.00644793 0.0923196 0)
(-0.0059767 0.0921159 0)
(-0.00550835 0.0919107 0)
(-0.00504191 0.0916789 0)
(-0.0045756 0.0913644 0)
(-0.00410616 0.0908476 0)
(-0.00362769 0.0898798 0)
(-0.00313001 0.0879698 0)
(-0.00259725 0.0842058 0)
(-0.00200995 0.077045 0)
(-0.0013588 0.0642424 0)
(-0.000681812 0.0434367 0)
(-0.000112387 0.0145141 0)
(-0.101995 0.242962 0)
(-0.0995365 0.236769 0)
(-0.0975452 0.23098 0)
(-0.0958986 0.225743 0)
(-0.0944839 0.220946 0)
(-0.0931998 0.216415 0)
(-0.091976 0.212001 0)
(-0.090764 0.207615 0)
(-0.0895326 0.20323 0)
(-0.0882636 0.198874 0)
(-0.0869488 0.194601 0)
(-0.0855863 0.190466 0)
(-0.0841784 0.186508 0)
(-0.0827295 0.182744 0)
(-0.0812453 0.179169 0)
(-0.0797318 0.175772 0)
(-0.0781954 0.172535 0)
(-0.076642 0.169442 0)
(-0.0750773 0.16648 0)
(-0.0735065 0.163638 0)
(-0.0719342 0.160906 0)
(-0.0703644 0.158277 0)
(-0.0688007 0.155746 0)
(-0.0672462 0.153305 0)
(-0.0657036 0.150952 0)
(-0.0641753 0.14868 0)
(-0.0626632 0.146488 0)
(-0.061169 0.14437 0)
(-0.0596943 0.142324 0)
(-0.0582403 0.140346 0)
(-0.056808 0.138435 0)
(-0.0553982 0.136586 0)
(-0.0540116 0.134798 0)
(-0.0526488 0.133069 0)
(-0.0513099 0.131394 0)
(-0.0499953 0.129774 0)
(-0.0487051 0.128205 0)
(-0.0474394 0.126686 0)
(-0.0461981 0.125214 0)
(-0.0449812 0.123788 0)
(-0.0437884 0.122407 0)
(-0.0426194 0.121068 0)
(-0.041474 0.119771 0)
(-0.0403519 0.118514 0)
(-0.0392527 0.117294 0)
(-0.038176 0.116113 0)
(-0.0371215 0.114967 0)
(-0.0360886 0.113856 0)
(-0.0350769 0.11278 0)
(-0.034086 0.111736 0)
(-0.0331154 0.110724 0)
(-0.0321646 0.109743 0)
(-0.0312331 0.108793 0)
(-0.0303204 0.107872 0)
(-0.029426 0.10698 0)
(-0.0285494 0.106116 0)
(-0.0276902 0.105279 0)
(-0.0268479 0.104469 0)
(-0.0260218 0.103686 0)
(-0.0252116 0.102927 0)
(-0.0244168 0.102194 0)
(-0.0236369 0.101486 0)
(-0.0228714 0.100801 0)
(-0.0221199 0.10014 0)
(-0.0213819 0.099502 0)
(-0.0206569 0.0988866 0)
(-0.0199445 0.0982936 0)
(-0.0192443 0.0977224 0)
(-0.0185558 0.0971727 0)
(-0.0178785 0.0966441 0)
(-0.0172122 0.0961363 0)
(-0.0165562 0.0956491 0)
(-0.0159104 0.095182 0)
(-0.0152741 0.0947348 0)
(-0.0146471 0.0943072 0)
(-0.0140289 0.0938989 0)
(-0.0134191 0.0935098 0)
(-0.0128174 0.0931395 0)
(-0.0122234 0.0927879 0)
(-0.0116368 0.0924547 0)
(-0.0110571 0.0921397 0)
(-0.0104839 0.0918428 0)
(-0.00991708 0.0915637 0)
(-0.00935609 0.0913022 0)
(-0.00880064 0.0910579 0)
(-0.00825036 0.0908304 0)
(-0.00770488 0.0906185 0)
(-0.00716378 0.0904198 0)
(-0.00662657 0.0902287 0)
(-0.00609255 0.0900331 0)
(-0.00556062 0.0898053 0)
(-0.00502885 0.0894852 0)
(-0.00449375 0.0889451 0)
(-0.00394912 0.0879235 0)
(-0.0033845 0.085911 0)
(-0.00278424 0.0819802 0)
(-0.0021305 0.0745994 0)
(-0.00141869 0.0616201 0)
(-0.000695692 0.0409662 0)
(-0.0001095 0.0131092 0)
(-0.126844 0.217869 0)
(-0.123242 0.215487 0)
(-0.120046 0.214162 0)
(-0.117218 0.212474 0)
(-0.11471 0.21019 0)
(-0.112422 0.207355 0)
(-0.110273 0.204044 0)
(-0.108201 0.200342 0)
(-0.106167 0.196359 0)
(-0.104144 0.19222 0)
(-0.102122 0.188048 0)
(-0.100096 0.183948 0)
(-0.0980633 0.179987 0)
(-0.0960269 0.176201 0)
(-0.0939887 0.172601 0)
(-0.0919521 0.16918 0)
(-0.0899207 0.165928 0)
(-0.0878983 0.162832 0)
(-0.0858887 0.159879 0)
(-0.0838954 0.157058 0)
(-0.0819217 0.154361 0)
(-0.0799703 0.151778 0)
(-0.0780436 0.149301 0)
(-0.0761437 0.146926 0)
(-0.0742724 0.144644 0)
(-0.072431 0.142453 0)
(-0.0706207 0.140345 0)
(-0.0688424 0.138318 0)
(-0.0670968 0.136366 0)
(-0.0653844 0.134486 0)
(-0.0637054 0.132675 0)
(-0.0620601 0.130929 0)
(-0.0604483 0.129244 0)
(-0.05887 0.127619 0)
(-0.0573249 0.12605 0)
(-0.0558127 0.124534 0)
(-0.0543331 0.12307 0)
(-0.0528855 0.121654 0)
(-0.0514695 0.120286 0)
(-0.0500845 0.118962 0)
(-0.04873 0.117681 0)
(-0.0474052 0.116441 0)
(-0.0461096 0.115241 0)
(-0.0448426 0.114079 0)
(-0.0436034 0.112954 0)
(-0.0423913 0.111864 0)
(-0.0412057 0.110808 0)
(-0.040046 0.109784 0)
(-0.0389113 0.108793 0)
(-0.0378011 0.107833 0)
(-0.0367146 0.106902 0)
(-0.0356512 0.106001 0)
(-0.0346102 0.105128 0)
(-0.033591 0.104282 0)
(-0.0325929 0.103462 0)
(-0.0316152 0.102669 0)
(-0.0306574 0.101901 0)
(-0.0297187 0.101158 0)
(-0.0287987 0.100439 0)
(-0.0278966 0.0997429 0)
(-0.027012 0.0990702 0)
(-0.0261441 0.0984202 0)
(-0.0252926 0.0977922 0)
(-0.0244567 0.0971858 0)
(-0.0236359 0.0966007 0)
(-0.0228298 0.0960364 0)
(-0.0220377 0.0954925 0)
(-0.0212593 0.0949687 0)
(-0.0204938 0.0944646 0)
(-0.019741 0.09398 0)
(-0.0190002 0.0935145 0)
(-0.018271 0.0930678 0)
(-0.0175529 0.0926396 0)
(-0.0168455 0.0922297 0)
(-0.0161483 0.0918379 0)
(-0.0154609 0.0914638 0)
(-0.0147828 0.0911073 0)
(-0.0141136 0.0907682 0)
(-0.0134529 0.0904462 0)
(-0.0128002 0.0901412 0)
(-0.0121551 0.0898529 0)
(-0.0115173 0.0895813 0)
(-0.0108864 0.0893261 0)
(-0.0102619 0.089087 0)
(-0.00964343 0.0888639 0)
(-0.00903063 0.088656 0)
(-0.00842307 0.0884622 0)
(-0.0078203 0.0882797 0)
(-0.00722174 0.0881026 0)
(-0.00662664 0.0879173 0)
(-0.00603376 0.0876939 0)
(-0.00544101 0.0873678 0)
(-0.00484466 0.086803 0)
(-0.00423823 0.085725 0)
(-0.00361109 0.0836078 0)
(-0.00294793 0.0795118 0)
(-0.00223282 0.0719248 0)
(-0.00146612 0.0588088 0)
(-0.000703325 0.0383849 0)
(-0.000105664 0.0116932 0)
(-0.0969027 0.234754 0)
(-0.10673 0.226437 0)
(-0.11323 0.220065 0)
(-0.11742 0.214806 0)
(-0.119883 0.209923 0)
(-0.121022 0.205111 0)
(-0.121143 0.200257 0)
(-0.120493 0.195344 0)
(-0.119264 0.190415 0)
(-0.117612 0.185554 0)
(-0.115656 0.180845 0)
(-0.113489 0.176354 0)
(-0.111179 0.172118 0)
(-0.108776 0.168146 0)
(-0.106319 0.164428 0)
(-0.103835 0.160946 0)
(-0.101344 0.157676 0)
(-0.0988623 0.154599 0)
(-0.0964011 0.151694 0)
(-0.0939692 0.148945 0)
(-0.0915731 0.146338 0)
(-0.0892174 0.14386 0)
(-0.0869056 0.141501 0)
(-0.0846398 0.139251 0)
(-0.0824215 0.137104 0)
(-0.0802517 0.13505 0)
(-0.0781308 0.133085 0)
(-0.0760587 0.131202 0)
(-0.0740352 0.129397 0)
(-0.0720599 0.127664 0)
(-0.0701319 0.125999 0)
(-0.0682506 0.124399 0)
(-0.0664151 0.122859 0)
(-0.0646243 0.121377 0)
(-0.0628772 0.119948 0)
(-0.0611727 0.118571 0)
(-0.0595098 0.117243 0)
(-0.0578874 0.115961 0)
(-0.0563043 0.114722 0)
(-0.0547595 0.113526 0)
(-0.0532519 0.11237 0)
(-0.0517803 0.111251 0)
(-0.0503437 0.110169 0)
(-0.048941 0.109122 0)
(-0.0475712 0.108109 0)
(-0.0462334 0.107128 0)
(-0.0449264 0.106178 0)
(-0.0436493 0.105258 0)
(-0.0424012 0.104367 0)
(-0.0411812 0.103503 0)
(-0.0399883 0.102667 0)
(-0.0388217 0.101856 0)
(-0.0376805 0.101071 0)
(-0.0365639 0.100311 0)
(-0.0354711 0.0995747 0)
(-0.0344012 0.0988616 0)
(-0.0333535 0.0981712 0)
(-0.0323272 0.097503 0)
(-0.0313216 0.0968564 0)
(-0.030336 0.0962309 0)
(-0.0293696 0.095626 0)
(-0.0284219 0.0950413 0)
(-0.0274921 0.0944764 0)
(-0.0265796 0.093931 0)
(-0.0256837 0.0934045 0)
(-0.0248038 0.0928967 0)
(-0.0239394 0.0924073 0)
(-0.0230899 0.0919359 0)
(-0.0222545 0.0914822 0)
(-0.0214329 0.091046 0)
(-0.0206245 0.090627 0)
(-0.0198287 0.0902249 0)
(-0.0190449 0.0898395 0)
(-0.0182728 0.0894705 0)
(-0.0175117 0.0891178 0)
(-0.0167612 0.0887811 0)
(-0.0160208 0.0884603 0)
(-0.01529 0.0881551 0)
(-0.0145684 0.0878655 0)
(-0.0138555 0.0875912 0)
(-0.0131509 0.0873321 0)
(-0.012454 0.0870879 0)
(-0.0117645 0.0868587 0)
(-0.0110819 0.0866441 0)
(-0.0104058 0.0864437 0)
(-0.00973585 0.0862571 0)
(-0.00907146 0.0860828 0)
(-0.00841218 0.0859178 0)
(-0.0077574 0.0857556 0)
(-0.00710627 0.0855813 0)
(-0.00645745 0.0853625 0)
(-0.00580868 0.0850298 0)
(-0.005156 0.0844387 0)
(-0.00449267 0.083302 0)
(-0.00380795 0.0810782 0)
(-0.00308706 0.0768197 0)
(-0.00231621 0.0690426 0)
(-0.00150087 0.0558322 0)
(-0.00070484 0.0357154 0)
(-0.000100982 0.0102784 0)
(-0.155203 0.281993 0)
(-0.155837 0.261086 0)
(-0.155213 0.244127 0)
(-0.153923 0.230302 0)
(-0.152009 0.218658 0)
(-0.149583 0.20859 0)
(-0.146751 0.199702 0)
(-0.143621 0.191747 0)
(-0.140289 0.184576 0)
(-0.136836 0.178103 0)
(-0.133327 0.172268 0)
(-0.129807 0.167017 0)
(-0.12631 0.162289 0)
(-0.122859 0.158021 0)
(-0.119467 0.154151 0)
(-0.116146 0.150624 0)
(-0.112902 0.147388 0)
(-0.109738 0.144402 0)
(-0.106658 0.141632 0)
(-0.103662 0.139048 0)
(-0.10075 0.136628 0)
(-0.0979215 0.134352 0)
(-0.095175 0.132204 0)
(-0.0925089 0.130171 0)
(-0.0899209 0.128243 0)
(-0.087409 0.126409 0)
(-0.0849707 0.124662 0)
(-0.0826036 0.122995 0)
(-0.0803054 0.121401 0)
(-0.0780735 0.119876 0)
(-0.0759056 0.118414 0)
(-0.0737993 0.117011 0)
(-0.0717524 0.115663 0)
(-0.0697626 0.114368 0)
(-0.0678277 0.11312 0)
(-0.0659458 0.111919 0)
(-0.0641148 0.110761 0)
(-0.0623328 0.109643 0)
(-0.0605981 0.108564 0)
(-0.0589088 0.107522 0)
(-0.0572633 0.106515 0)
(-0.0556599 0.105541 0)
(-0.0540971 0.104599 0)
(-0.0525734 0.103687 0)
(-0.0510874 0.102804 0)
(-0.0496378 0.101949 0)
(-0.0482231 0.101121 0)
(-0.0468423 0.100319 0)
(-0.0454939 0.099541 0)
(-0.0441769 0.0987874 0)
(-0.0428902 0.0980571 0)
(-0.0416325 0.0973493 0)
(-0.040403 0.0966633 0)
(-0.0392006 0.0959985 0)
(-0.0380243 0.0953543 0)
(-0.0368731 0.0947303 0)
(-0.0357463 0.0941258 0)
(-0.0346428 0.0935404 0)
(-0.0335618 0.0929736 0)
(-0.0325026 0.0924252 0)
(-0.0314642 0.0918945 0)
(-0.030446 0.0913814 0)
(-0.0294471 0.0908855 0)
(-0.0284669 0.0904064 0)
(-0.0275047 0.0899438 0)
(-0.0265596 0.0894974 0)
(-0.0256312 0.0890671 0)
(-0.0247187 0.0886525 0)
(-0.0238214 0.0882533 0)
(-0.0229389 0.0878694 0)
(-0.0220704 0.0875006 0)
(-0.0212153 0.0871465 0)
(-0.0203732 0.0868072 0)
(-0.0195434 0.0864822 0)
(-0.0187255 0.0861716 0)
(-0.0179188 0.0858751 0)
(-0.0171228 0.0855926 0)
(-0.016337 0.0853239 0)
(-0.015561 0.0850688 0)
(-0.0147942 0.0848274 0)
(-0.0140361 0.0845994 0)
(-0.0132863 0.0843847 0)
(-0.0125443 0.0841831 0)
(-0.0118097 0.0839945 0)
(-0.0110819 0.0838185 0)
(-0.0103605 0.0836544 0)
(-0.00964504 0.0835008 0)
(-0.00893493 0.0833544 0)
(-0.00822951 0.0832078 0)
(-0.00752785 0.083045 0)
(-0.00682853 0.0828307 0)
(-0.00612911 0.0824904 0)
(-0.00542543 0.0818713 0)
(-0.00471051 0.0806736 0)
(-0.00397361 0.0783419 0)
(-0.00320064 0.0739251 0)
(-0.00238018 0.065976 0)
(-0.00152292 0.0527152 0)
(-0.000700455 0.032981 0)
(-9.55662e-05 0.00887683 0)
(-0.263504 0.24201 0)
(-0.244458 0.227243 0)
(-0.228455 0.214599 0)
(-0.214752 0.203661 0)
(-0.202842 0.194049 0)
(-0.192347 0.18551 0)
(-0.182993 0.177866 0)
(-0.174583 0.171002 0)
(-0.166965 0.164838 0)
(-0.160022 0.159313 0)
(-0.153656 0.154371 0)
(-0.147787 0.149953 0)
(-0.142344 0.145997 0)
(-0.13727 0.142441 0)
(-0.132516 0.13923 0)
(-0.128042 0.136313 0)
(-0.123816 0.133646 0)
(-0.119808 0.131191 0)
(-0.115998 0.12892 0)
(-0.112365 0.126806 0)
(-0.108894 0.124829 0)
(-0.105572 0.122972 0)
(-0.102386 0.121221 0)
(-0.0993258 0.119566 0)
(-0.0963835 0.117995 0)
(-0.0935508 0.116502 0)
(-0.0908206 0.115078 0)
(-0.0881867 0.113719 0)
(-0.0856434 0.112419 0)
(-0.0831855 0.111174 0)
(-0.0808084 0.109979 0)
(-0.0785077 0.108831 0)
(-0.0762795 0.107727 0)
(-0.0741201 0.106664 0)
(-0.0720261 0.10564 0)
(-0.0699944 0.104651 0)
(-0.0680221 0.103697 0)
(-0.0661064 0.102775 0)
(-0.0642448 0.101884 0)
(-0.0624348 0.101022 0)
(-0.0606744 0.100187 0)
(-0.0589613 0.0993791 0)
(-0.0572935 0.098596 0)
(-0.0556692 0.097837 0)
(-0.0540866 0.0971011 0)
(-0.052544 0.0963874 0)
(-0.0510398 0.0956951 0)
(-0.0495725 0.0950235 0)
(-0.0481406 0.0943717 0)
(-0.0467428 0.0937393 0)
(-0.0453777 0.0931255 0)
(-0.0440441 0.0925299 0)
(-0.0427407 0.0919519 0)
(-0.0414664 0.0913912 0)
(-0.0402201 0.0908472 0)
(-0.0390008 0.0903195 0)
(-0.0378073 0.0898078 0)
(-0.0366388 0.0893118 0)
(-0.0354943 0.0888311 0)
(-0.0343728 0.0883654 0)
(-0.0332735 0.0879144 0)
(-0.0321955 0.0874779 0)
(-0.031138 0.0870557 0)
(-0.0301002 0.0866474 0)
(-0.0290814 0.086253 0)
(-0.0280807 0.0858721 0)
(-0.0270975 0.0855046 0)
(-0.026131 0.0851503 0)
(-0.0251806 0.084809 0)
(-0.0242456 0.0844806 0)
(-0.0233254 0.0841649 0)
(-0.0224193 0.0838617 0)
(-0.0215268 0.083571 0)
(-0.0206472 0.0832926 0)
(-0.0197799 0.0830264 0)
(-0.0189244 0.0827723 0)
(-0.0180801 0.0825301 0)
(-0.0172465 0.0822998 0)
(-0.016423 0.0820813 0)
(-0.0156092 0.0818744 0)
(-0.0148044 0.0816791 0)
(-0.0140083 0.0814952 0)
(-0.0132203 0.0813227 0)
(-0.01244 0.0811614 0)
(-0.0116667 0.0810109 0)
(-0.0109002 0.0808705 0)
(-0.0101397 0.0807385 0)
(-0.0093848 0.0806113 0)
(-0.00863471 0.0804809 0)
(-0.00788844 0.0803296 0)
(-0.00714444 0.0801194 0)
(-0.00640014 0.0797705 0)
(-0.00565115 0.0791216 0)
(-0.00489035 0.0778607 0)
(-0.00410704 0.0754204 0)
(-0.00328805 0.0708508 0)
(-0.00242452 0.0627499 0)
(-0.00153239 0.0494841 0)
(-0.000690451 0.0302047 0)
(-8.95283e-05 0.0074995 0)
(-0.285595 0.141731 0)
(-0.26662 0.142938 0)
(-0.24996 0.142882 0)
(-0.235132 0.141977 0)
(-0.221885 0.140467 0)
(-0.209989 0.138554 0)
(-0.199264 0.136399 0)
(-0.189559 0.134128 0)
(-0.180745 0.131834 0)
(-0.172709 0.129585 0)
(-0.165353 0.12742 0)
(-0.15859 0.125361 0)
(-0.152343 0.123414 0)
(-0.146547 0.121578 0)
(-0.141146 0.119846 0)
(-0.136093 0.11821 0)
(-0.131347 0.116661 0)
(-0.126873 0.115191 0)
(-0.122644 0.113793 0)
(-0.118635 0.112459 0)
(-0.114824 0.111184 0)
(-0.111194 0.109963 0)
(-0.107728 0.108792 0)
(-0.104414 0.107668 0)
(-0.10124 0.106586 0)
(-0.0981943 0.105545 0)
(-0.0952683 0.104542 0)
(-0.0924536 0.103575 0)
(-0.0897429 0.10264 0)
(-0.0871294 0.101738 0)
(-0.0846072 0.100865 0)
(-0.0821708 0.100021 0)
(-0.0798152 0.099203 0)
(-0.077536 0.0984108 0)
(-0.0753289 0.0976427 0)
(-0.0731901 0.0968978 0)
(-0.0711163 0.0961749 0)
(-0.069104 0.095473 0)
(-0.0671503 0.0947912 0)
(-0.0652524 0.0941288 0)
(-0.0634077 0.0934848 0)
(-0.0616137 0.0928588 0)
(-0.0598683 0.0922499 0)
(-0.0581691 0.0916575 0)
(-0.0565143 0.0910812 0)
(-0.0549019 0.0905205 0)
(-0.0533302 0.0899748 0)
(-0.0517974 0.0894437 0)
(-0.050302 0.0889269 0)
(-0.0488423 0.0884239 0)
(-0.047417 0.0879345 0)
(-0.0460248 0.0874584 0)
(-0.0446642 0.0869952 0)
(-0.043334 0.0865447 0)
(-0.0420331 0.0861067 0)
(-0.0407602 0.0856809 0)
(-0.0395144 0.0852671 0)
(-0.0382944 0.0848652 0)
(-0.0370994 0.084475 0)
(-0.0359283 0.0840962 0)
(-0.0347802 0.0837288 0)
(-0.0336543 0.0833727 0)
(-0.0325495 0.0830276 0)
(-0.0314651 0.0826934 0)
(-0.0304003 0.0823701 0)
(-0.0293543 0.0820576 0)
(-0.0283264 0.0817556 0)
(-0.0273157 0.0814642 0)
(-0.0263216 0.0811832 0)
(-0.0253434 0.0809125 0)
(-0.0243804 0.0806521 0)
(-0.0234319 0.0804018 0)
(-0.0224974 0.0801617 0)
(-0.0215761 0.0799316 0)
(-0.0206676 0.0797115 0)
(-0.0197711 0.0795013 0)
(-0.0188862 0.0793009 0)
(-0.0180123 0.0791104 0)
(-0.0171488 0.0789296 0)
(-0.0162951 0.0787584 0)
(-0.0154508 0.0785969 0)
(-0.0146153 0.078445 0)
(-0.0137882 0.0783026 0)
(-0.0129689 0.0781694 0)
(-0.0121568 0.0780451 0)
(-0.0113516 0.077929 0)
(-0.0105526 0.0778191 0)
(-0.00975918 0.0777116 0)
(-0.00897066 0.0775976 0)
(-0.00818595 0.0774578 0)
(-0.00740338 0.077251 0)
(-0.00662024 0.0768923 0)
(-0.00583196 0.0762116 0)
(-0.00503127 0.0748855 0)
(-0.0042077 0.0723368 0)
(-0.00334909 0.0676212 0)
(-0.00244935 0.0593904 0)
(-0.00152963 0.0461657 0)
(-0.000675222 0.0274097 0)
(-8.29978e-05 0.00615682 0)
(-0.259072 0.077746 0)
(-0.246985 0.084251 0)
(-0.23558 0.0891604 0)
(-0.224862 0.0928452 0)
(-0.214821 0.0955474 0)
(-0.205431 0.0974792 0)
(-0.196662 0.0988154 0)
(-0.188478 0.099697 0)
(-0.180837 0.100234 0)
(-0.173699 0.100512 0)
(-0.16702 0.100593 0)
(-0.160759 0.100525 0)
(-0.154878 0.10034 0)
(-0.149342 0.100066 0)
(-0.144118 0.0997206 0)
(-0.139179 0.09932 0)
(-0.134498 0.0988759 0)
(-0.130054 0.0983979 0)
(-0.125826 0.0978938 0)
(-0.121798 0.0973703 0)
(-0.117954 0.0968326 0)
(-0.11428 0.0962852 0)
(-0.110763 0.0957319 0)
(-0.107392 0.0951756 0)
(-0.104158 0.0946188 0)
(-0.10105 0.0940636 0)
(-0.0980616 0.0935117 0)
(-0.0951839 0.0929644 0)
(-0.0924104 0.0924227 0)
(-0.089735 0.0918874 0)
(-0.0871518 0.0913592 0)
(-0.0846555 0.0908387 0)
(-0.0822413 0.0903261 0)
(-0.0799048 0.0898218 0)
(-0.0776418 0.089326 0)
(-0.0754485 0.0888387 0)
(-0.0733214 0.0883601 0)
(-0.0712571 0.0878902 0)
(-0.0692527 0.087429 0)
(-0.0673052 0.0869764 0)
(-0.0654121 0.0865324 0)
(-0.0635707 0.0860971 0)
(-0.0617789 0.0856702 0)
(-0.0600343 0.0852518 0)
(-0.0583349 0.0848419 0)
(-0.0566788 0.0844402 0)
(-0.0550642 0.0840468 0)
(-0.0534892 0.0836617 0)
(-0.0519522 0.0832847 0)
(-0.0504517 0.0829159 0)
(-0.0489862 0.0825551 0)
(-0.0475543 0.0822023 0)
(-0.0461546 0.0818576 0)
(-0.0447858 0.0815208 0)
(-0.0434467 0.081192 0)
(-0.0421362 0.0808711 0)
(-0.040853 0.0805581 0)
(-0.0395962 0.0802529 0)
(-0.0383646 0.0799556 0)
(-0.0371574 0.0796662 0)
(-0.0359734 0.0793845 0)
(-0.0348119 0.0791107 0)
(-0.0336718 0.0788447 0)
(-0.0325525 0.0785864 0)
(-0.031453 0.078336 0)
(-0.0303725 0.0780933 0)
(-0.0293102 0.0778584 0)
(-0.0282655 0.0776312 0)
(-0.0272375 0.0774118 0)
(-0.0262256 0.0772001 0)
(-0.0252291 0.0769961 0)
(-0.0242473 0.0767999 0)
(-0.0232796 0.0766113 0)
(-0.0223254 0.0764305 0)
(-0.0213839 0.0762574 0)
(-0.0204547 0.076092 0)
(-0.0195372 0.0759342 0)
(-0.0186307 0.0757841 0)
(-0.0177347 0.0756418 0)
(-0.0168487 0.075507 0)
(-0.0159722 0.0753799 0)
(-0.0151046 0.0752604 0)
(-0.0142453 0.0751485 0)
(-0.0133939 0.0750439 0)
(-0.0125499 0.0749463 0)
(-0.0117127 0.0748547 0)
(-0.0108818 0.0747673 0)
(-0.0100565 0.0746796 0)
(-0.009236 0.0745818 0)
(-0.00841921 0.074453 0)
(-0.00760437 0.0742488 0)
(-0.00678862 0.0738787 0)
(-0.00596724 0.0731643 0)
(-0.0051329 0.0717714 0)
(-0.00427543 0.069115 0)
(-0.00338387 0.0642617 0)
(-0.00245504 0.0559246 0)
(-0.00151517 0.0427872 0)
(-0.000655212 0.0246183 0)
(-7.60987e-05 0.00485816 0)
(-0.23202 0.0463734 0)
(-0.224367 0.0524666 0)
(-0.216712 0.0576017 0)
(-0.209191 0.0619371 0)
(-0.201866 0.0655837 0)
(-0.194782 0.0686482 0)
(-0.187967 0.0712238 0)
(-0.181432 0.0733892 0)
(-0.175182 0.0752096 0)
(-0.169211 0.0767382 0)
(-0.16351 0.0780185 0)
(-0.158069 0.0790861 0)
(-0.152873 0.0799707 0)
(-0.147909 0.0806973 0)
(-0.143164 0.0812873 0)
(-0.138624 0.0817589 0)
(-0.134277 0.0821281 0)
(-0.130112 0.0824087 0)
(-0.126117 0.0826126 0)
(-0.122284 0.0827501 0)
(-0.118601 0.0828303 0)
(-0.115061 0.0828609 0)
(-0.111655 0.0828487 0)
(-0.108376 0.0827997 0)
(-0.105217 0.0827189 0)
(-0.102171 0.0826107 0)
(-0.0992316 0.0824791 0)
(-0.0963934 0.0823274 0)
(-0.093651 0.0821586 0)
(-0.0909993 0.0819751 0)
(-0.0884336 0.0817792 0)
(-0.0859496 0.081573 0)
(-0.0835432 0.0813579 0)
(-0.0812106 0.0811356 0)
(-0.0789481 0.0809074 0)
(-0.0767525 0.0806742 0)
(-0.0746205 0.0804373 0)
(-0.0725493 0.0801973 0)
(-0.070536 0.0799551 0)
(-0.068578 0.0797113 0)
(-0.0666729 0.0794666 0)
(-0.0648184 0.0792215 0)
(-0.0630122 0.0789764 0)
(-0.0612523 0.0787318 0)
(-0.0595368 0.0784882 0)
(-0.0578638 0.0782457 0)
(-0.0562315 0.0780049 0)
(-0.0546382 0.0777658 0)
(-0.0530825 0.077529 0)
(-0.0515627 0.0772945 0)
(-0.0500774 0.0770626 0)
(-0.0486252 0.0768336 0)
(-0.0472049 0.0766076 0)
(-0.0458152 0.0763849 0)
(-0.0444549 0.0761656 0)
(-0.0431228 0.0759498 0)
(-0.0418179 0.0757378 0)
(-0.040539 0.0755297 0)
(-0.0392852 0.0753256 0)
(-0.0380554 0.0751257 0)
(-0.0368488 0.07493 0)
(-0.0356644 0.0747388 0)
(-0.0345014 0.0745521 0)
(-0.0333588 0.07437 0)
(-0.032236 0.0741926 0)
(-0.031132 0.07402 0)
(-0.0300461 0.0738523 0)
(-0.0289777 0.0736895 0)
(-0.0279259 0.0735318 0)
(-0.02689 0.0733793 0)
(-0.0258695 0.0732319 0)
(-0.0248635 0.0730898 0)
(-0.0238716 0.072953 0)
(-0.022893 0.0728215 0)
(-0.0219271 0.0726955 0)
(-0.0209735 0.0725749 0)
(-0.0200314 0.0724599 0)
(-0.0191003 0.0723504 0)
(-0.0181796 0.0722465 0)
(-0.0172689 0.0721482 0)
(-0.0163675 0.0720556 0)
(-0.015475 0.0719686 0)
(-0.0145908 0.0718871 0)
(-0.0137144 0.0718111 0)
(-0.0128453 0.0717401 0)
(-0.011983 0.0716731 0)
(-0.0111269 0.071608 0)
(-0.0102763 0.0715397 0)
(-0.00943036 0.0714578 0)
(-0.00858798 0.0713393 0)
(-0.00774727 0.0711366 0)
(-0.00690525 0.0707535 0)
(-0.0060571 0.0700033 0)
(-0.00519547 0.0685422 0)
(-0.00431061 0.0657799 0)
(-0.00339294 0.0607986 0)
(-0.00244226 0.0523801 0)
(-0.00148965 0.0393754 0)
(-0.000630914 0.0218521 0)
(-6.89483e-05 0.00361183 0)
(-0.205406 0.0248885 0)
(-0.200935 0.0303337 0)
(-0.196166 0.0351788 0)
(-0.191244 0.0394991 0)
(-0.186234 0.0433479 0)
(-0.181198 0.0467784 0)
(-0.176181 0.0498379 0)
(-0.171221 0.0525673 0)
(-0.166342 0.0550021 0)
(-0.161564 0.057173 0)
(-0.156901 0.0591067 0)
(-0.15236 0.0608272 0)
(-0.147948 0.062356 0)
(-0.143665 0.0637128 0)
(-0.139514 0.0649153 0)
(-0.135494 0.0659796 0)
(-0.131601 0.0669202 0)
(-0.127834 0.0677502 0)
(-0.124189 0.068481 0)
(-0.120663 0.0691233 0)
(-0.117251 0.069686 0)
(-0.11395 0.0701777 0)
(-0.110755 0.0706055 0)
(-0.107663 0.070976 0)
(-0.104668 0.0712952 0)
(-0.101768 0.0715682 0)
(-0.0989579 0.0717998 0)
(-0.0962342 0.0719942 0)
(-0.0935933 0.0721551 0)
(-0.0910315 0.0722858 0)
(-0.0885456 0.0723896 0)
(-0.0861322 0.0724689 0)
(-0.0837882 0.0725264 0)
(-0.0815108 0.0725641 0)
(-0.0792971 0.072584 0)
(-0.0771445 0.072588 0)
(-0.0750503 0.0725776 0)
(-0.0730121 0.0725542 0)
(-0.0710276 0.0725192 0)
(-0.0690947 0.0724737 0)
(-0.0672112 0.0724188 0)
(-0.0653751 0.0723554 0)
(-0.0635845 0.0722846 0)
(-0.0618376 0.072207 0)
(-0.0601327 0.0721234 0)
(-0.0584681 0.0720346 0)
(-0.0568422 0.0719411 0)
(-0.0552536 0.0718436 0)
(-0.0537008 0.0717427 0)
(-0.0521824 0.0716387 0)
(-0.0506971 0.0715322 0)
(-0.0492436 0.0714236 0)
(-0.0478208 0.0713134 0)
(-0.0464274 0.0712019 0)
(-0.0450623 0.0710896 0)
(-0.0437245 0.0709766 0)
(-0.0424129 0.0708634 0)
(-0.0411265 0.0707503 0)
(-0.0398643 0.0706375 0)
(-0.0386256 0.0705254 0)
(-0.0374092 0.0704141 0)
(-0.0362145 0.0703039 0)
(-0.0350404 0.070195 0)
(-0.0338864 0.0700877 0)
(-0.0327514 0.0699821 0)
(-0.0316348 0.0698784 0)
(-0.0305359 0.0697768 0)
(-0.029454 0.0696775 0)
(-0.0283882 0.0695805 0)
(-0.0273381 0.0694862 0)
(-0.0263028 0.0693945 0)
(-0.0252818 0.0693057 0)
(-0.0242745 0.0692199 0)
(-0.0232802 0.0691371 0)
(-0.0222984 0.0690574 0)
(-0.0213285 0.0689811 0)
(-0.0203698 0.0689081 0)
(-0.019422 0.0688386 0)
(-0.0184843 0.0687726 0)
(-0.0175563 0.0687103 0)
(-0.0166375 0.0686516 0)
(-0.0157274 0.0685966 0)
(-0.0148254 0.0685452 0)
(-0.013931 0.0684974 0)
(-0.0130438 0.0684526 0)
(-0.0121631 0.0684097 0)
(-0.0112885 0.0683663 0)
(-0.0104192 0.068317 0)
(-0.00955439 0.0682501 0)
(-0.00869287 0.0681409 0)
(-0.0078327 0.0679383 0)
(-0.00697078 0.0675405 0)
(-0.00610221 0.0667528 0)
(-0.00521973 0.0652224 0)
(-0.00431408 0.0623567 0)
(-0.00337719 0.0572584 0)
(-0.00241192 0.0487844 0)
(-0.00145393 0.035957 0)
(-0.00060288 0.0191313 0)
(-6.16711e-05 0.00242502 0)
(-0.187221 0.0119216 0)
(-0.183751 0.0161746 0)
(-0.18008 0.0201453 0)
(-0.176291 0.0238537 0)
(-0.172418 0.0273118 0)
(-0.168494 0.0305332 0)
(-0.164547 0.0335299 0)
(-0.160598 0.0363128 0)
(-0.156668 0.0388919 0)
(-0.152771 0.0412769 0)
(-0.148921 0.0434777 0)
(-0.145128 0.0455045 0)
(-0.141399 0.047368 0)
(-0.137741 0.0490789 0)
(-0.134158 0.0506481 0)
(-0.130655 0.0520861 0)
(-0.127232 0.0534029 0)
(-0.123892 0.054608 0)
(-0.120635 0.0557104 0)
(-0.117461 0.0567184 0)
(-0.114369 0.0576396 0)
(-0.111358 0.058481 0)
(-0.108427 0.0592492 0)
(-0.105574 0.0599502 0)
(-0.102798 0.0605894 0)
(-0.100096 0.061172 0)
(-0.0974665 0.0617025 0)
(-0.0949072 0.0621852 0)
(-0.092416 0.062624 0)
(-0.0899907 0.0630224 0)
(-0.0876293 0.0633837 0)
(-0.0853295 0.0637109 0)
(-0.0830893 0.0640068 0)
(-0.0809065 0.0642738 0)
(-0.0787793 0.0645142 0)
(-0.0767056 0.0647301 0)
(-0.0746835 0.0649234 0)
(-0.0727111 0.0650959 0)
(-0.0707867 0.0652492 0)
(-0.0689086 0.0653848 0)
(-0.0670751 0.065504 0)
(-0.0652845 0.0656082 0)
(-0.0635354 0.0656984 0)
(-0.0618262 0.0657758 0)
(-0.0601555 0.0658413 0)
(-0.0585218 0.065896 0)
(-0.056924 0.0659406 0)
(-0.0553606 0.065976 0)
(-0.0538304 0.066003 0)
(-0.0523323 0.0660221 0)
(-0.050865 0.0660342 0)
(-0.0494275 0.0660398 0)
(-0.0480187 0.0660395 0)
(-0.0466376 0.0660338 0)
(-0.0452831 0.0660233 0)
(-0.0439544 0.0660084 0)
(-0.0426503 0.0659896 0)
(-0.0413702 0.0659674 0)
(-0.040113 0.065942 0)
(-0.0388779 0.065914 0)
(-0.0376641 0.0658837 0)
(-0.0364709 0.0658513 0)
(-0.0352973 0.0658173 0)
(-0.0341428 0.065782 0)
(-0.0330065 0.0657455 0)
(-0.0318878 0.0657083 0)
(-0.030786 0.0656705 0)
(-0.0297003 0.0656324 0)
(-0.0286302 0.0655941 0)
(-0.027575 0.0655561 0)
(-0.0265341 0.0655183 0)
(-0.0255069 0.065481 0)
(-0.0244928 0.0654445 0)
(-0.0234912 0.0654088 0)
(-0.0225016 0.0653741 0)
(-0.0215234 0.0653407 0)
(-0.0205561 0.0653085 0)
(-0.0195991 0.0652777 0)
(-0.018652 0.0652486 0)
(-0.0177142 0.065221 0)
(-0.0167851 0.0651953 0)
(-0.0158645 0.0651713 0)
(-0.0149516 0.0651492 0)
(-0.0140461 0.0651286 0)
(-0.0131474 0.0651091 0)
(-0.0122551 0.0650895 0)
(-0.0113685 0.0650671 0)
(-0.0104871 0.0650358 0)
(-0.00960983 0.0649831 0)
(-0.00873553 0.0648819 0)
(-0.00786219 0.064678 0)
(-0.00698663 0.0642636 0)
(-0.00610393 0.0634364 0)
(-0.00520695 0.0618364 0)
(-0.00428708 0.0588708 0)
(-0.00333784 0.0536677 0)
(-0.00236515 0.0451647 0)
(-0.00140889 0.0325575 0)
(-0.000571628 0.0164747 0)
(-5.43476e-05 0.00130373 0)
(-0.171067 0.000940309 0)
(-0.168386 0.00463001 0)
(-0.165536 0.00812677 0)
(-0.162573 0.0114501 0)
(-0.159516 0.0146113 0)
(-0.15639 0.0176193 0)
(-0.153215 0.0204797 0)
(-0.15001 0.0231952 0)
(-0.14679 0.0257678 0)
(-0.143569 0.0281989 0)
(-0.140359 0.0304908 0)
(-0.13717 0.0326467 0)
(-0.13401 0.0346706 0)
(-0.130887 0.0365676 0)
(-0.127805 0.0383432 0)
(-0.124769 0.0400035 0)
(-0.121783 0.0415545 0)
(-0.118849 0.0430025 0)
(-0.11597 0.0443535 0)
(-0.113148 0.0456134 0)
(-0.110382 0.0467879 0)
(-0.107674 0.0478824 0)
(-0.105024 0.048902 0)
(-0.102432 0.0498516 0)
(-0.0998967 0.0507358 0)
(-0.0974185 0.051559 0)
(-0.0949963 0.0523253 0)
(-0.0926292 0.0530385 0)
(-0.0903161 0.0537021 0)
(-0.088056 0.0543195 0)
(-0.0858476 0.0548938 0)
(-0.0836898 0.055428 0)
(-0.0815813 0.0559247 0)
(-0.0795207 0.0563864 0)
(-0.0775068 0.0568155 0)
(-0.0755383 0.0572142 0)
(-0.0736138 0.0575844 0)
(-0.0717321 0.057928 0)
(-0.0698919 0.0582468 0)
(-0.0680919 0.0585424 0)
(-0.0663309 0.0588163 0)
(-0.0646076 0.0590699 0)
(-0.0629209 0.0593046 0)
(-0.0612697 0.0595215 0)
(-0.0596527 0.0597219 0)
(-0.058069 0.0599067 0)
(-0.0565173 0.060077 0)
(-0.0549967 0.0602338 0)
(-0.0535061 0.060378 0)
(-0.0520446 0.0605103 0)
(-0.0506112 0.0606316 0)
(-0.049205 0.0607426 0)
(-0.047825 0.0608441 0)
(-0.0464703 0.0609366 0)
(-0.0451402 0.0610208 0)
(-0.0438337 0.0610973 0)
(-0.0425501 0.0611667 0)
(-0.0412886 0.0612294 0)
(-0.0400483 0.061286 0)
(-0.0388286 0.061337 0)
(-0.0376287 0.0613827 0)
(-0.0364479 0.0614237 0)
(-0.0352855 0.0614603 0)
(-0.0341409 0.0614928 0)
(-0.0330133 0.0615217 0)
(-0.0319022 0.0615473 0)
(-0.0308069 0.0615699 0)
(-0.0297268 0.0615897 0)
(-0.0286613 0.0616072 0)
(-0.0276099 0.0616225 0)
(-0.0265719 0.061636 0)
(-0.0255468 0.0616478 0)
(-0.024534 0.0616581 0)
(-0.0235331 0.0616673 0)
(-0.0225435 0.0616754 0)
(-0.0215646 0.0616828 0)
(-0.0205961 0.0616895 0)
(-0.0196373 0.0616957 0)
(-0.0186879 0.0617017 0)
(-0.0177472 0.0617074 0)
(-0.0168149 0.0617131 0)
(-0.0158905 0.0617188 0)
(-0.0149735 0.0617245 0)
(-0.0140634 0.0617299 0)
(-0.0131599 0.0617346 0)
(-0.0122623 0.0617372 0)
(-0.0113702 0.0617346 0)
(-0.0104828 0.0617203 0)
(-0.00959932 0.0616803 0)
(-0.00871839 0.0615859 0)
(-0.00783801 0.0613788 0)
(-0.00695494 0.0609461 0)
(-0.00606423 0.060078 0)
(-0.00515899 0.0584082 0)
(-0.00423131 0.0553472 0)
(-0.00327643 0.0500525 0)
(-0.00230325 0.0415475 0)
(-0.00135545 0.0292008 0)
(-0.000537483 0.013899 0)
(-4.69043e-05 0.00025224 0)
(-0.157892 -0.00819435 0)
(-0.155464 -0.00494776 0)
(-0.152948 -0.00182442 0)
(-0.150381 0.00119111 0)
(-0.147769 0.00410682 0)
(-0.145119 0.00692659 0)
(-0.142441 0.00965059 0)
(-0.139743 0.0122766 0)
(-0.137033 0.0148017 0)
(-0.134318 0.0172227 0)
(-0.131604 0.0195374 0)
(-0.128898 0.0217448 0)
(-0.126205 0.0238452 0)
(-0.123531 0.0258401 0)
(-0.120879 0.0277318 0)
(-0.118253 0.0295235 0)
(-0.115658 0.0312187 0)
(-0.113095 0.0328213 0)
(-0.110567 0.0343352 0)
(-0.108076 0.0357645 0)
(-0.105624 0.0371134 0)
(-0.103211 0.0383857 0)
(-0.100839 0.0395855 0)
(-0.0985084 0.0407165 0)
(-0.0962195 0.0417824 0)
(-0.0939726 0.0427867 0)
(-0.0917676 0.043733 0)
(-0.0896045 0.0446243 0)
(-0.087483 0.0454639 0)
(-0.0854026 0.0462547 0)
(-0.083363 0.0469995 0)
(-0.0813634 0.0477008 0)
(-0.0794034 0.0483613 0)
(-0.0774822 0.0489832 0)
(-0.075599 0.0495688 0)
(-0.0737532 0.0501201 0)
(-0.0719438 0.0506392 0)
(-0.0701701 0.0511278 0)
(-0.0684312 0.0515877 0)
(-0.0667262 0.0520205 0)
(-0.0650544 0.0524278 0)
(-0.0634149 0.0528111 0)
(-0.0618068 0.0531716 0)
(-0.0602292 0.0535107 0)
(-0.0586814 0.0538295 0)
(-0.0571625 0.0541293 0)
(-0.0556717 0.0544112 0)
(-0.0542082 0.054676 0)
(-0.0527712 0.0549248 0)
(-0.0513599 0.0551586 0)
(-0.0499735 0.0553781 0)
(-0.0486113 0.0555842 0)
(-0.0472726 0.0557777 0)
(-0.0459566 0.0559593 0)
(-0.0446627 0.0561296 0)
(-0.04339 0.0562894 0)
(-0.042138 0.0564393 0)
(-0.040906 0.0565799 0)
(-0.0396933 0.0567116 0)
(-0.0384992 0.0568352 0)
(-0.0373232 0.056951 0)
(-0.0361647 0.0570595 0)
(-0.035023 0.0571613 0)
(-0.0338976 0.0572567 0)
(-0.0327878 0.0573461 0)
(-0.0316931 0.05743 0)
(-0.030613 0.0575087 0)
(-0.0295469 0.0575825 0)
(-0.0284942 0.0576519 0)
(-0.0274546 0.057717 0)
(-0.0264273 0.0577782 0)
(-0.0254121 0.0578358 0)
(-0.0244082 0.05789 0)
(-0.0234154 0.0579411 0)
(-0.022433 0.0579894 0)
(-0.0214606 0.058035 0)
(-0.0204978 0.0580782 0)
(-0.0195441 0.0581191 0)
(-0.018599 0.058158 0)
(-0.0176622 0.058195 0)
(-0.0167331 0.0582302 0)
(-0.0158114 0.0582637 0)
(-0.0148966 0.0582956 0)
(-0.0139883 0.0583255 0)
(-0.013086 0.0583528 0)
(-0.0121893 0.0583761 0)
(-0.0112976 0.0583919 0)
(-0.0104103 0.0583932 0)
(-0.00952642 0.0583647 0)
(-0.00864475 0.0582753 0)
(-0.00776318 0.0580634 0)
(-0.00687846 0.0576106 0)
(-0.00598568 0.0567003 0)
(-0.00507822 0.0549616 0)
(-0.00414902 0.0518104 0)
(-0.00319507 0.0464383 0)
(-0.0022282 0.0379582 0)
(-0.00129546 0.0259099 0)
(-0.000502211 0.0114197 0)
(-4.01586e-05 -0.000725186 0)
(-0.145189 -0.0167988 0)
(-0.143072 -0.0136763 0)
(-0.140903 -0.0106738 0)
(-0.138704 -0.00777214 0)
(-0.136479 -0.00495859 0)
(-0.134232 -0.00222618 0)
(-0.131968 0.000427567 0)
(-0.129688 0.00300176 0)
(-0.127396 0.00549345 0)
(-0.125097 0.00789932 0)
(-0.122795 0.0102166 0)
(-0.120494 0.0124435 0)
(-0.118197 0.0145792 0)
(-0.115908 0.016624 0)
(-0.11363 0.0185791 0)
(-0.111365 0.0204462 0)
(-0.109118 0.0222276 0)
(-0.106889 0.0239257 0)
(-0.104681 0.0255434 0)
(-0.102497 0.0270835 0)
(-0.100338 0.028549 0)
(-0.0982043 0.0299429 0)
(-0.0960985 0.031268 0)
(-0.0940211 0.0325275 0)
(-0.091973 0.0337241 0)
(-0.0899547 0.0348608 0)
(-0.0879668 0.0359404 0)
(-0.0860096 0.0369654 0)
(-0.0840832 0.0379386 0)
(-0.0821878 0.0388625 0)
(-0.0803233 0.0397395 0)
(-0.0784897 0.0405719 0)
(-0.0766867 0.0413619 0)
(-0.0749141 0.0421117 0)
(-0.0731716 0.0428232 0)
(-0.0714588 0.0434984 0)
(-0.0697752 0.0441391 0)
(-0.0681206 0.044747 0)
(-0.0664943 0.0453238 0)
(-0.0648959 0.0458711 0)
(-0.0633249 0.0463903 0)
(-0.0617806 0.0468829 0)
(-0.0602626 0.0473502 0)
(-0.0587703 0.0477934 0)
(-0.0573031 0.0482139 0)
(-0.0558605 0.0486126 0)
(-0.0544417 0.0489908 0)
(-0.0530464 0.0493494 0)
(-0.0516738 0.0496895 0)
(-0.0503234 0.050012 0)
(-0.0489946 0.0503178 0)
(-0.0476869 0.0506076 0)
(-0.0463996 0.0508824 0)
(-0.0451323 0.0511429 0)
(-0.0438843 0.0513899 0)
(-0.0426551 0.051624 0)
(-0.0414441 0.0518458 0)
(-0.0402508 0.0520561 0)
(-0.0390746 0.0522554 0)
(-0.0379151 0.0524442 0)
(-0.0367717 0.0526233 0)
(-0.0356439 0.0527929 0)
(-0.0345312 0.0529537 0)
(-0.0334331 0.0531061 0)
(-0.032349 0.0532506 0)
(-0.0312786 0.0533876 0)
(-0.0302213 0.0535174 0)
(-0.0291767 0.0536405 0)
(-0.0281443 0.0537572 0)
(-0.0271236 0.0538679 0)
(-0.0261143 0.0539729 0)
(-0.0251158 0.0540725 0)
(-0.0241277 0.054167 0)
(-0.0231496 0.0542567 0)
(-0.022181 0.0543419 0)
(-0.0212216 0.0544227 0)
(-0.020271 0.0544995 0)
(-0.0193286 0.0545724 0)
(-0.0183942 0.0546417 0)
(-0.0174673 0.0547076 0)
(-0.0165475 0.0547701 0)
(-0.0156344 0.0548293 0)
(-0.0147277 0.0548853 0)
(-0.0138269 0.0549378 0)
(-0.0129316 0.054986 0)
(-0.0120414 0.0550283 0)
(-0.0111558 0.0550611 0)
(-0.0102741 0.0550763 0)
(-0.00939551 0.0550576 0)
(-0.00851861 0.0549717 0)
(-0.00764135 0.0547533 0)
(-0.00676048 0.0542786 0)
(-0.00587118 0.0533252 0)
(-0.0049672 0.0515188 0)
(-0.00404235 0.0482838 0)
(-0.00309542 0.0428494 0)
(-0.00214102 0.0344207 0)
(-0.00122903 0.0227053 0)
(-0.000464734 0.00904992 0)
(-3.31928e-05 -0.00162611 0)
(-0.133068 -0.0242567 0)
(-0.131229 -0.0212086 0)
(-0.129362 -0.0182761 0)
(-0.127483 -0.0154396 0)
(-0.125591 -0.0126859 0)
(-0.123688 -0.0100068 0)
(-0.121773 -0.00739932 0)
(-0.119847 -0.00486365 0)
(-0.117913 -0.00240202 0)
(-0.115971 -1.69251e-05 0)
(-0.114023 0.00228934 0)
(-0.112072 0.00451519 0)
(-0.110119 0.00665991 0)
(-0.108167 0.00872366 0)
(-0.106217 0.0107073 0)
(-0.104274 0.012612 0)
(-0.102337 0.0144396 0)
(-0.10041 0.0161919 0)
(-0.0984947 0.0178709 0)
(-0.096592 0.0194788 0)
(-0.0947038 0.0210178 0)
(-0.0928315 0.0224903 0)
(-0.0909764 0.0238985 0)
(-0.0891396 0.0252448 0)
(-0.087322 0.0265315 0)
(-0.0855244 0.0277608 0)
(-0.0837477 0.0289351 0)
(-0.0819923 0.0300566 0)
(-0.0802588 0.0311275 0)
(-0.0785474 0.0321499 0)
(-0.0768586 0.0331259 0)
(-0.0751925 0.0340574 0)
(-0.0735492 0.0349465 0)
(-0.0719287 0.0357949 0)
(-0.0703312 0.0366045 0)
(-0.0687565 0.037377 0)
(-0.0672045 0.038114 0)
(-0.0656751 0.0388172 0)
(-0.064168 0.039488 0)
(-0.0626831 0.0401279 0)
(-0.06122 0.0407383 0)
(-0.0597785 0.0413205 0)
(-0.0583583 0.0418758 0)
(-0.0569591 0.0424055 0)
(-0.0555804 0.0429106 0)
(-0.054222 0.0433923 0)
(-0.0528834 0.0438516 0)
(-0.0515643 0.0442896 0)
(-0.0502642 0.0447072 0)
(-0.0489828 0.0451054 0)
(-0.0477197 0.045485 0)
(-0.0464744 0.045847 0)
(-0.0452465 0.046192 0)
(-0.0440357 0.0465208 0)
(-0.0428414 0.0468343 0)
(-0.0416633 0.0471331 0)
(-0.0405009 0.0474178 0)
(-0.0393539 0.0476892 0)
(-0.0382218 0.0479478 0)
(-0.0371041 0.0481943 0)
(-0.0360005 0.0484291 0)
(-0.0349106 0.0486529 0)
(-0.0338338 0.0488661 0)
(-0.03277 0.0490692 0)
(-0.0317185 0.0492626 0)
(-0.030679 0.049447 0)
(-0.0296512 0.0496225 0)
(-0.0286346 0.0497897 0)
(-0.0276289 0.049949 0)
(-0.0266335 0.0501006 0)
(-0.0256483 0.050245 0)
(-0.0246727 0.0503824 0)
(-0.0237064 0.0505133 0)
(-0.022749 0.0506378 0)
(-0.0218002 0.0507563 0)
(-0.0208596 0.050869 0)
(-0.0199268 0.0509762 0)
(-0.0190015 0.0510781 0)
(-0.0180833 0.051175 0)
(-0.0171718 0.0512669 0)
(-0.0162668 0.0513542 0)
(-0.0153678 0.0514368 0)
(-0.0144745 0.0515147 0)
(-0.0135865 0.0515877 0)
(-0.0127035 0.0516548 0)
(-0.0118251 0.0517144 0)
(-0.0109507 0.0517622 0)
(-0.0100799 0.0517897 0)
(-0.00921158 0.0517791 0)
(-0.00834456 0.051695 0)
(-0.00747673 0.0514683 0)
(-0.00660485 0.0509703 0)
(-0.00572426 0.0499734 0)
(-0.00482909 0.0481012 0)
(-0.00391416 0.0447893 0)
(-0.00298006 0.0393082 0)
(-0.00204401 0.0309568 0)
(-0.00115826 0.0196055 0)
(-0.000427233 0.00680054 0)
(-2.70884e-05 -0.00244944 0)
(-0.121029 -0.030636 0)
(-0.119535 -0.0276177 0)
(-0.118013 -0.0247175 0)
(-0.116475 -0.0219153 0)
(-0.114922 -0.0191971 0)
(-0.113355 -0.0165542 0)
(-0.111773 -0.0139825 0)
(-0.110179 -0.0114814 0)
(-0.108572 -0.00905133 0)
(-0.106954 -0.00669391 0)
(-0.105326 -0.00441037 0)
(-0.10369 -0.00220149 0)
(-0.102046 -6.72382e-05 0)
(-0.100397 0.00199283 0)
(-0.0987451 0.00397962 0)
(-0.0970915 0.00589443 0)
(-0.095438 0.0077388 0)
(-0.0937863 0.0095144 0)
(-0.0921381 0.0112228 0)
(-0.0904948 0.0128658 0)
(-0.0888579 0.0144451 0)
(-0.0872286 0.0159628 0)
(-0.0856083 0.0174205 0)
(-0.083998 0.0188203 0)
(-0.0823988 0.020164 0)
(-0.0808115 0.0214535 0)
(-0.0792371 0.0226907 0)
(-0.0776763 0.0238774 0)
(-0.0761296 0.0250155 0)
(-0.0745977 0.0261069 0)
(-0.073081 0.0271531 0)
(-0.0715801 0.0281561 0)
(-0.0700951 0.0291174 0)
(-0.0686264 0.0300386 0)
(-0.0671742 0.0309214 0)
(-0.0657387 0.0317672 0)
(-0.06432 0.0325776 0)
(-0.0629181 0.0333539 0)
(-0.0615331 0.0340976 0)
(-0.0601649 0.0348098 0)
(-0.0588136 0.035492 0)
(-0.057479 0.0361453 0)
(-0.056161 0.0367709 0)
(-0.0548594 0.03737 0)
(-0.0535742 0.0379435 0)
(-0.0523052 0.0384927 0)
(-0.051052 0.0390184 0)
(-0.0498146 0.0395216 0)
(-0.0485926 0.0400033 0)
(-0.0473859 0.0404644 0)
(-0.0461942 0.0409056 0)
(-0.0450171 0.0413278 0)
(-0.0438545 0.0417319 0)
(-0.0427061 0.0421185 0)
(-0.0415714 0.0424883 0)
(-0.0404504 0.0428421 0)
(-0.0393425 0.0431806 0)
(-0.0382476 0.0435043 0)
(-0.0371654 0.0438138 0)
(-0.0360954 0.0441098 0)
(-0.0350374 0.0443929 0)
(-0.0339911 0.0446635 0)
(-0.0329561 0.0449221 0)
(-0.0319321 0.0451693 0)
(-0.0309189 0.0454055 0)
(-0.029916 0.0456312 0)
(-0.0289232 0.0458468 0)
(-0.0279401 0.0460527 0)
(-0.0269664 0.0462493 0)
(-0.0260018 0.046437 0)
(-0.025046 0.0466161 0)
(-0.0240986 0.0467869 0)
(-0.0231594 0.0469499 0)
(-0.022228 0.0471052 0)
(-0.021304 0.0472533 0)
(-0.0203873 0.0473943 0)
(-0.0194774 0.0475285 0)
(-0.0185742 0.0476562 0)
(-0.0176771 0.0477775 0)
(-0.0167861 0.0478928 0)
(-0.0159007 0.048002 0)
(-0.0150206 0.0481054 0)
(-0.0141455 0.0482029 0)
(-0.0132752 0.0482941 0)
(-0.0124093 0.0483781 0)
(-0.0115473 0.0484528 0)
(-0.0106889 0.0485139 0)
(-0.00983346 0.0485519 0)
(-0.00898016 0.0485477 0)
(-0.00812766 0.0484636 0)
(-0.00727389 0.048227 0)
(-0.00641568 0.0477044 0)
(-0.00554853 0.0466637 0)
(-0.00466707 0.0447283 0)
(-0.00376712 0.0413475 0)
(-0.00285104 0.0358355 0)
(-0.0019385 0.0275864 0)
(-0.00108355 0.0166266 0)
(-0.000388805 0.00468051 0)
(-2.09918e-05 -0.0031946 0)
(-0.109104 -0.0355874 0)
(-0.107984 -0.032648 0)
(-0.106824 -0.0298206 0)
(-0.105639 -0.0270863 0)
(-0.104429 -0.0244326 0)
(-0.103197 -0.0218514 0)
(-0.101943 -0.0193389 0)
(-0.100669 -0.0168939 0)
(-0.0993754 -0.0145165 0)
(-0.0980641 -0.0122076 0)
(-0.0967362 -0.00996771 0)
(-0.0953935 -0.00779707 0)
(-0.0940377 -0.00569546 0)
(-0.0926704 -0.00366219 0)
(-0.0912928 -0.00169625 0)
(-0.0899064 0.000203717 0)
(-0.088513 0.00203905 0)
(-0.0871149 0.00381115 0)
(-0.085714 0.0055217 0)
(-0.084311 0.00717224 0)
(-0.0829074 0.00876418 0)
(-0.0815044 0.0102991 0)
(-0.0801034 0.0117785 0)
(-0.0787055 0.013204 0)
(-0.0773117 0.0145771 0)
(-0.0759232 0.0158995 0)
(-0.0745407 0.0171727 0)
(-0.0731651 0.0183982 0)
(-0.0717972 0.0195777 0)
(-0.0704377 0.0207126 0)
(-0.0690873 0.0218044 0)
(-0.0677464 0.0228547 0)
(-0.0664156 0.0238648 0)
(-0.0650953 0.0248361 0)
(-0.0637859 0.0257701 0)
(-0.0624877 0.026668 0)
(-0.0612011 0.0275311 0)
(-0.0599262 0.0283607 0)
(-0.0586632 0.029158 0)
(-0.0574124 0.0299241 0)
(-0.0561737 0.0306603 0)
(-0.0549474 0.0313675 0)
(-0.0537334 0.032047 0)
(-0.0525317 0.0326996 0)
(-0.0513424 0.0333265 0)
(-0.0501654 0.0339285 0)
(-0.0490007 0.0345066 0)
(-0.0478482 0.0350616 0)
(-0.0467077 0.0355945 0)
(-0.0455793 0.0361061 0)
(-0.0444626 0.0365971 0)
(-0.0433577 0.0370683 0)
(-0.0422644 0.0375206 0)
(-0.0411824 0.0379545 0)
(-0.0401116 0.0383707 0)
(-0.0390518 0.03877 0)
(-0.0380028 0.039153 0)
(-0.0369644 0.0395203 0)
(-0.0359364 0.0398725 0)
(-0.0349185 0.0402101 0)
(-0.0339106 0.0405337 0)
(-0.0329124 0.0408438 0)
(-0.0319237 0.0411409 0)
(-0.0309442 0.0414256 0)
(-0.0299736 0.0416982 0)
(-0.0290118 0.0419592 0)
(-0.0280585 0.042209 0)
(-0.0271134 0.0424481 0)
(-0.0261763 0.0426767 0)
(-0.0252469 0.0428954 0)
(-0.024325 0.0431045 0)
(-0.0234103 0.0433042 0)
(-0.0225025 0.0434949 0)
(-0.0216014 0.043677 0)
(-0.0207067 0.0438507 0)
(-0.0198183 0.0440162 0)
(-0.0189357 0.0441739 0)
(-0.0180588 0.044324 0)
(-0.0171873 0.0444667 0)
(-0.0163209 0.0446022 0)
(-0.0154594 0.0447307 0)
(-0.0146025 0.0448522 0)
(-0.0137499 0.0449667 0)
(-0.0129014 0.0450738 0)
(-0.0120567 0.0451724 0)
(-0.0112154 0.0452604 0)
(-0.0103771 0.0453327 0)
(-0.0095413 0.0453793 0)
(-0.00870714 0.0453798 0)
(-0.00787331 0.045294 0)
(-0.00703777 0.0450459 0)
(-0.00619743 0.0444978 0)
(-0.00534802 0.0434135 0)
(-0.00448468 0.0414181 0)
(-0.00360429 0.0379767 0)
(-0.00271098 0.0324499 0)
(-0.00182662 0.0243269 0)
(-0.00100659 0.0137821 0)
(-0.000350923 0.00269637 0)
(-1.55326e-05 -0.00386248 0)
(-0.0975845 -0.0390827 0)
(-0.0968246 -0.0362796 0)
(-0.0960124 -0.0335761 0)
(-0.0951625 -0.0309556 0)
(-0.094277 -0.0284078 0)
(-0.0933592 -0.0259259 0)
(-0.0924109 -0.0235069 0)
(-0.0914341 -0.0211498 0)
(-0.0904306 -0.0188547 0)
(-0.089402 -0.0166222 0)
(-0.0883503 -0.0144526 0)
(-0.0872772 -0.0123459 0)
(-0.0861847 -0.010302 0)
(-0.0850744 -0.00831988 0)
(-0.0839483 -0.00639875 0)
(-0.0828082 -0.00453759 0)
(-0.0816557 -0.00273528 0)
(-0.0804913 -0.000990638 0)
(-0.0793165 0.00069784 0)
(-0.0781342 0.00233144 0)
(-0.0769457 0.00391151 0)
(-0.075752 0.0054396 0)
(-0.0745544 0.00691693 0)
(-0.0733541 0.00834449 0)
(-0.0721521 0.00972361 0)
(-0.0709496 0.0110556 0)
(-0.0697475 0.0123419 0)
(-0.0685466 0.0135836 0)
(-0.0673479 0.0147822 0)
(-0.0661522 0.015939 0)
(-0.0649601 0.0170551 0)
(-0.0637724 0.0181318 0)
(-0.0625896 0.0191703 0)
(-0.0614124 0.0201719 0)
(-0.0602411 0.0211378 0)
(-0.0590764 0.0220689 0)
(-0.0579185 0.0229665 0)
(-0.0567679 0.0238317 0)
(-0.0556248 0.0246655 0)
(-0.0544896 0.025469 0)
(-0.0533625 0.026243 0)
(-0.0522437 0.0269888 0)
(-0.0511334 0.027707 0)
(-0.0500317 0.0283988 0)
(-0.0489387 0.029065 0)
(-0.0478545 0.0297064 0)
(-0.0467793 0.0303238 0)
(-0.045713 0.0309182 0)
(-0.0446556 0.0314902 0)
(-0.0436072 0.0320407 0)
(-0.0425677 0.0325703 0)
(-0.0415371 0.0330798 0)
(-0.0405153 0.0335698 0)
(-0.0395023 0.0340411 0)
(-0.038498 0.0344943 0)
(-0.0375022 0.03493 0)
(-0.036515 0.0353487 0)
(-0.0355361 0.0357511 0)
(-0.0345654 0.0361378 0)
(-0.0336028 0.0365092 0)
(-0.0326482 0.036866 0)
(-0.0317014 0.0372085 0)
(-0.0307622 0.0375372 0)
(-0.0298305 0.0378528 0)
(-0.0289061 0.0381555 0)
(-0.0279888 0.0384458 0)
(-0.0270785 0.0387241 0)
(-0.026175 0.0389909 0)
(-0.025278 0.0392464 0)
(-0.0243873 0.0394911 0)
(-0.0235029 0.0397253 0)
(-0.0226244 0.0399493 0)
(-0.0217517 0.0401635 0)
(-0.0208846 0.0403681 0)
(-0.0200228 0.0405635 0)
(-0.0191663 0.0407498 0)
(-0.0183146 0.0409275 0)
(-0.0174677 0.0410966 0)
(-0.0166254 0.0412575 0)
(-0.0157873 0.0414103 0)
(-0.0149533 0.0415551 0)
(-0.0141232 0.0416921 0)
(-0.0132968 0.0418211 0)
(-0.0124738 0.0419417 0)
(-0.0116539 0.0420527 0)
(-0.0108369 0.0421517 0)
(-0.0100224 0.0422334 0)
(-0.00920985 0.0422868 0)
(-0.00839846 0.0422901 0)
(-0.00758694 0.0422009 0)
(-0.0067733 0.0419399 0)
(-0.00595451 0.0413653 0)
(-0.00512658 0.0402381 0)
(-0.00428522 0.0381863 0)
(-0.00342838 0.0346933 0)
(-0.0025619 0.0291679 0)
(-0.00170959 0.0211932 0)
(-0.000927584 0.0110832 0)
(-0.000312684 0.000852767 0)
(-1.00368e-05 -0.00445447 0)
(-0.0866118 -0.0412261 0)
(-0.086181 -0.0386132 0)
(-0.0856877 -0.0360825 0)
(-0.0851458 -0.03362 0)
(-0.0845586 -0.0312177 0)
(-0.0839298 -0.0288714 0)
(-0.0832619 -0.0265791 0)
(-0.0825576 -0.0243405 0)
(-0.0818192 -0.0221561 0)
(-0.0810489 -0.0200267 0)
(-0.0802489 -0.0179527 0)
(-0.0794214 -0.0159344 0)
(-0.0785686 -0.0139715 0)
(-0.0776923 -0.0120634 0)
(-0.0767946 -0.0102096 0)
(-0.0758774 -0.00840914 0)
(-0.0749426 -0.00666098 0)
(-0.0739916 -0.0049642 0)
(-0.0730259 -0.00331811 0)
(-0.0720465 -0.00172172 0)
(-0.0710539 -0.000173796 0)
(-0.0700504 0.00132655 0)
(-0.0690394 0.00278039 0)
(-0.0680219 0.00418916 0)
(-0.0669976 0.00555401 0)
(-0.0659678 0.00687576 0)
(-0.0649336 0.00815545 0)
(-0.0638959 0.00939415 0)
(-0.0628557 0.0105929 0)
(-0.0618138 0.0117528 0)
(-0.0607711 0.0128748 0)
(-0.0597282 0.0139601 0)
(-0.0586859 0.0150096 0)
(-0.0576448 0.0160242 0)
(-0.0566056 0.0170051 0)
(-0.0555687 0.0179532 0)
(-0.0545347 0.0188693 0)
(-0.053504 0.0197545 0)
(-0.052477 0.0206097 0)
(-0.0514541 0.0214357 0)
(-0.0504357 0.0222334 0)
(-0.049422 0.0230036 0)
(-0.0484134 0.0237472 0)
(-0.0474101 0.024465 0)
(-0.0464122 0.0251578 0)
(-0.04542 0.0258263 0)
(-0.0444337 0.0264713 0)
(-0.0434534 0.0270934 0)
(-0.0424791 0.0276935 0)
(-0.041511 0.0282721 0)
(-0.0405491 0.02883 0)
(-0.0395936 0.0293678 0)
(-0.0386443 0.029886 0)
(-0.0377014 0.0303854 0)
(-0.0367649 0.0308665 0)
(-0.0358346 0.0313299 0)
(-0.0349107 0.0317761 0)
(-0.033993 0.0322056 0)
(-0.0330816 0.0326191 0)
(-0.0321763 0.033017 0)
(-0.031277 0.0333997 0)
(-0.0303838 0.0337677 0)
(-0.0294965 0.0341216 0)
(-0.028615 0.0344617 0)
(-0.0277391 0.0347884 0)
(-0.0268689 0.0351023 0)
(-0.0260041 0.0354035 0)
(-0.0251447 0.0356926 0)
(-0.0242905 0.0359699 0)
(-0.0234413 0.0362357 0)
(-0.0225971 0.0364904 0)
(-0.0217577 0.0367343 0)
(-0.020923 0.0369677 0)
(-0.0200927 0.0371908 0)
(-0.0192667 0.037404 0)
(-0.018445 0.0376075 0)
(-0.0176272 0.0378015 0)
(-0.0168133 0.0379864 0)
(-0.0160031 0.0381623 0)
(-0.0151963 0.0383293 0)
(-0.0143929 0.0384877 0)
(-0.0135927 0.0386375 0)
(-0.0127955 0.0387785 0)
(-0.012001 0.0389102 0)
(-0.0112091 0.0390315 0)
(-0.0104195 0.0391395 0)
(-0.00963184 0.0392286 0)
(-0.00884566 0.0392869 0)
(-0.00806015 0.0392912 0)
(-0.00727406 0.039197 0)
(-0.00648544 0.0389217 0)
(-0.00569142 0.03832 0)
(-0.00488825 0.0371509 0)
(-0.00407226 0.0350468 0)
(-0.00324249 0.0315113 0)
(-0.0024064 0.0260031 0)
(-0.00158951 0.0181973 0)
(-0.000848241 0.00853765 0)
(-0.000275735 -0.000848453 0)
(-5.26582e-06 -0.00497307 0)
(-0.076501 -0.0421982 0)
(-0.076331 -0.0398128 0)
(-0.0760946 -0.0374909 0)
(-0.075804 -0.0352204 0)
(-0.075463 -0.0329957 0)
(-0.0750754 -0.0308146 0)
(-0.0746439 -0.0286766 0)
(-0.0741713 -0.0265822 0)
(-0.0736601 -0.0245325 0)
(-0.0731127 -0.0225289 0)
(-0.0725313 -0.020572 0)
(-0.0719183 -0.0186624 0)
(-0.0712757 -0.0168003 0)
(-0.0706057 -0.0149855 0)
(-0.0699101 -0.0132177 0)
(-0.0691908 -0.0114963 0)
(-0.0684495 -0.00982071 0)
(-0.0676883 -0.00819029 0)
(-0.0669088 -0.00660433 0)
(-0.0661122 -0.00506215 0)
(-0.0653004 -0.00356319 0)
(-0.0644749 -0.00210701 0)
(-0.0636347 -0.000692726 0)
(-0.062781 0.000680821 0)
(-0.0619174 0.00201441 0)
(-0.0610456 0.00330927 0)
(-0.0601656 0.00456627 0)
(-0.0592783 0.00578591 0)
(-0.0583847 0.00696902 0)
(-0.0574857 0.00811644 0)
(-0.0565821 0.00922903 0)
(-0.0556746 0.0103076 0)
(-0.0547641 0.011353 0)
(-0.0538511 0.0123661 0)
(-0.0529365 0.0133477 0)
(-0.0520206 0.0142985 0)
(-0.0511042 0.0152194 0)
(-0.0501877 0.016111 0)
(-0.0492717 0.0169743 0)
(-0.0483565 0.01781 0)
(-0.0474426 0.0186187 0)
(-0.0465304 0.0194012 0)
(-0.0456202 0.0201582 0)
(-0.0447123 0.0208904 0)
(-0.0438071 0.0215984 0)
(-0.0429047 0.022283 0)
(-0.0420054 0.0229448 0)
(-0.0411095 0.0235844 0)
(-0.0402171 0.0242024 0)
(-0.0393283 0.0247995 0)
(-0.0384434 0.0253762 0)
(-0.0375624 0.025933 0)
(-0.0366854 0.0264706 0)
(-0.0358126 0.0269895 0)
(-0.034944 0.0274903 0)
(-0.0340796 0.0279733 0)
(-0.0332195 0.0284393 0)
(-0.0323638 0.0288885 0)
(-0.0315124 0.0293216 0)
(-0.0306653 0.0297389 0)
(-0.0298226 0.0301409 0)
(-0.0289841 0.0305281 0)
(-0.02815 0.0309008 0)
(-0.0273201 0.0312595 0)
(-0.0264944 0.0316046 0)
(-0.0256728 0.0319364 0)
(-0.0248553 0.0322553 0)
(-0.0240419 0.0325617 0)
(-0.0232323 0.0328559 0)
(-0.0224266 0.0331381 0)
(-0.0216246 0.0334088 0)
(-0.0208263 0.0336683 0)
(-0.0200316 0.0339167 0)
(-0.0192403 0.0341544 0)
(-0.0184524 0.0343817 0)
(-0.0176677 0.0345988 0)
(-0.0168861 0.0348059 0)
(-0.0161075 0.0350033 0)
(-0.0153317 0.0351912 0)
(-0.0145587 0.0353696 0)
(-0.0137884 0.0355389 0)
(-0.0130204 0.0356989 0)
(-0.0122549 0.0358494 0)
(-0.0114915 0.0359901 0)
(-0.0107301 0.0361194 0)
(-0.00997042 0.0362344 0)
(-0.00921223 0.0363289 0)
(-0.00845501 0.0363904 0)
(-0.007698 0.0363941 0)
(-0.00693998 0.0362932 0)
(-0.00617905 0.0360024 0)
(-0.00541248 0.0353731 0)
(-0.00463686 0.0341634 0)
(-0.00384916 0.0320116 0)
(-0.0030495 0.0284434 0)
(-0.0022469 0.022968 0)
(-0.00146836 0.01535 0)
(-0.000770132 0.0061527 0)
(-0.000240388 -0.00240531 0)
(-8.69409e-07 -0.0054203 0)
(-0.0672333 -0.0422932 0)
(-0.0672727 -0.0401447 0)
(-0.0672446 -0.0380424 0)
(-0.0671595 -0.0359756 0)
(-0.0670215 -0.0339409 0)
(-0.0668341 -0.0319376 0)
(-0.0666002 -0.0299665 0)
(-0.0663226 -0.0280289 0)
(-0.0660038 -0.0261267 0)
(-0.0656462 -0.0242613 0)
(-0.0652521 -0.0224342 0)
(-0.0648236 -0.0206461 0)
(-0.064363 -0.0188977 0)
(-0.0638722 -0.017189 0)
(-0.063353 -0.0155202 0)
(-0.0628073 -0.013891 0)
(-0.0622369 -0.0123012 0)
(-0.0616435 -0.0107504 0)
(-0.0610284 -0.0092383 0)
(-0.0603935 -0.00776432 0)
(-0.0597403 -0.00632809 0)
(-0.05907 -0.00492888 0)
(-0.0583838 -0.00356625 0)
(-0.057683 -0.00224 0)
(-0.056967 -0.000949732 0)
(-0.0562367 0.000305372 0)
(-0.0554961 0.00152597 0)
(-0.0547465 0.00271303 0)
(-0.0539875 0.0038673 0)
(-0.05322 0.00498928 0)
(-0.0524448 0.00607958 0)
(-0.0516626 0.00713885 0)
(-0.0508744 0.00816774 0)
(-0.0500808 0.00916689 0)
(-0.0492824 0.0101369 0)
(-0.04848 0.0110786 0)
(-0.0476741 0.0119924 0)
(-0.0468652 0.012879 0)
(-0.046054 0.013739 0)
(-0.045241 0.0145732 0)
(-0.0444264 0.015382 0)
(-0.0436109 0.0161661 0)
(-0.0427949 0.016926 0)
(-0.0419785 0.0176624 0)
(-0.0411623 0.0183758 0)
(-0.0403465 0.0190668 0)
(-0.0395315 0.0197359 0)
(-0.0387174 0.0203837 0)
(-0.0379046 0.0210107 0)
(-0.0370932 0.0216175 0)
(-0.0362835 0.0222045 0)
(-0.0354756 0.0227722 0)
(-0.0346697 0.0233211 0)
(-0.033866 0.0238518 0)
(-0.0330645 0.0243646 0)
(-0.0322654 0.0248601 0)
(-0.0314688 0.0253387 0)
(-0.0306747 0.0258008 0)
(-0.0298833 0.0262468 0)
(-0.0290945 0.0266772 0)
(-0.0283085 0.0270923 0)
(-0.0275253 0.0274927 0)
(-0.0267448 0.0278785 0)
(-0.0259672 0.0282503 0)
(-0.0251923 0.0286084 0)
(-0.0244203 0.028953 0)
(-0.023651 0.0292846 0)
(-0.0228845 0.0296035 0)
(-0.0221207 0.0299099 0)
(-0.0213597 0.0302043 0)
(-0.0206013 0.0304868 0)
(-0.0198454 0.0307577 0)
(-0.0190922 0.0310174 0)
(-0.0183414 0.0312661 0)
(-0.017593 0.0315039 0)
(-0.016847 0.0317313 0)
(-0.0161032 0.0319482 0)
(-0.0153617 0.0321551 0)
(-0.0146222 0.032352 0)
(-0.0138848 0.0325392 0)
(-0.0131493 0.0327166 0)
(-0.0124156 0.0328844 0)
(-0.0116836 0.0330423 0)
(-0.0109533 0.0331896 0)
(-0.0102243 0.033325 0)
(-0.00949667 0.0334451 0)
(-0.00876995 0.0335432 0)
(-0.00804375 0.033606 0)
(-0.00731732 0.0336074 0)
(-0.00658948 0.0334985 0)
(-0.00585838 0.033191 0)
(-0.00512145 0.0325341 0)
(-0.00437563 0.0312855 0)
(-0.00361853 0.0290909 0)
(-0.00285138 0.0254997 0)
(-0.00208461 0.0200722 0)
(-0.00134641 0.0126591 0)
(-0.000692435 0.00393256 0)
(-0.000206115 -0.00381852 0)
(3.01361e-06 -0.00579953 0)
(-0.0588843 -0.0417049 0)
(-0.0590728 -0.039794 0)
(-0.0591972 -0.0379136 0)
(-0.0592662 -0.0360541 0)
(-0.0592836 -0.0342136 0)
(-0.0592522 -0.0323928 0)
(-0.0591748 -0.0305935 0)
(-0.0590537 -0.028818 0)
(-0.0588912 -0.0270688 0)
(-0.0586895 -0.0253478 0)
(-0.0584507 -0.0236569 0)
(-0.0581767 -0.0219972 0)
(-0.0578695 -0.0203695 0)
(-0.0575308 -0.0187746 0)
(-0.0571625 -0.0172126 0)
(-0.0567662 -0.0156837 0)
(-0.0563435 -0.014188 0)
(-0.0558958 -0.0127255 0)
(-0.0554249 -0.011296 0)
(-0.0549321 -0.00989929 0)
(-0.0544186 -0.00853522 0)
(-0.0538857 -0.00720343 0)
(-0.0533344 -0.00590364 0)
(-0.0527665 -0.00463544 0)
(-0.0521836 -0.00339847 0)
(-0.0515865 -0.00219279 0)
(-0.0509742 -0.001018 0)
(-0.0503475 0.00012675 0)
(-0.0497092 0.00124192 0)
(-0.0490608 0.00232814 0)
(-0.0484025 0.00338598 0)
(-0.047735 0.00441581 0)
(-0.047059 0.00541806 0)
(-0.0463753 0.00639324 0)
(-0.0456845 0.00734184 0)
(-0.0449872 0.00826437 0)
(-0.0442841 0.00916131 0)
(-0.0435757 0.0100332 0)
(-0.0428626 0.0108805 0)
(-0.0421454 0.0117037 0)
(-0.0414244 0.0125033 0)
(-0.0407002 0.0132799 0)
(-0.0399732 0.0140338 0)
(-0.0392437 0.0147656 0)
(-0.0385123 0.0154757 0)
(-0.0377791 0.0161646 0)
(-0.0370446 0.0168328 0)
(-0.036309 0.0174807 0)
(-0.0355727 0.0181088 0)
(-0.034836 0.0187175 0)
(-0.0340989 0.0193073 0)
(-0.0333619 0.0198785 0)
(-0.032625 0.0204317 0)
(-0.0318885 0.0209672 0)
(-0.0311526 0.0214853 0)
(-0.0304174 0.0219867 0)
(-0.029683 0.0224715 0)
(-0.0289497 0.0229403 0)
(-0.0282174 0.0233933 0)
(-0.0274863 0.023831 0)
(-0.0267565 0.0242536 0)
(-0.0260281 0.0246617 0)
(-0.0253011 0.0250554 0)
(-0.0245757 0.0254352 0)
(-0.0238517 0.0258013 0)
(-0.0231293 0.026154 0)
(-0.0224086 0.0264938 0)
(-0.0216895 0.0268208 0)
(-0.020972 0.0271353 0)
(-0.0202561 0.0274376 0)
(-0.0195419 0.027728 0)
(-0.0188293 0.0280068 0)
(-0.0181184 0.0282741 0)
(-0.017409 0.0285302 0)
(-0.0167012 0.0287754 0)
(-0.0159949 0.0290098 0)
(-0.0152901 0.0292337 0)
(-0.0145867 0.0294472 0)
(-0.0138848 0.0296505 0)
(-0.0131842 0.0298437 0)
(-0.0124848 0.030027 0)
(-0.0117868 0.0302003 0)
(-0.0110898 0.0303633 0)
(-0.0103939 0.0305153 0)
(-0.00969896 0.0306548 0)
(-0.00900477 0.0307781 0)
(-0.00831108 0.0308782 0)
(-0.00761747 0.0309407 0)
(-0.00692321 0.0309382 0)
(-0.00622716 0.0308198 0)
(-0.00552756 0.0304948 0)
(-0.00482201 0.0298103 0)
(-0.0041078 0.0285247 0)
(-0.00338323 0.0262926 0)
(-0.00265059 0.0226884 0)
(-0.00192163 0.0173232 0)
(-0.00122547 0.0101301 0)
(-0.000616738 0.00187886 0)
(-0.000173587 -0.00509078 0)
(6.48674e-06 -0.00611469 0)
(-0.0513382 -0.0406512 0)
(-0.0516389 -0.0389613 0)
(-0.0518801 -0.0372898 0)
(-0.0520689 -0.0356273 0)
(-0.0522082 -0.0339731 0)
(-0.0523008 -0.0323287 0)
(-0.0523488 -0.0306969 0)
(-0.0523543 -0.0290804 0)
(-0.0523194 -0.0274823 0)
(-0.0522459 -0.0259049 0)
(-0.0521357 -0.0243502 0)
(-0.0519904 -0.0228199 0)
(-0.0518118 -0.0213151 0)
(-0.0516016 -0.0198366 0)
(-0.0513612 -0.0183849 0)
(-0.0510922 -0.0169605 0)
(-0.050796 -0.0155635 0)
(-0.0504741 -0.0141943 0)
(-0.0501277 -0.0128529 0)
(-0.0497583 -0.0115393 0)
(-0.049367 -0.0102536 0)
(-0.048955 -0.00899562 0)
(-0.0485235 -0.0077653 0)
(-0.0480737 -0.00656251 0)
(-0.0476066 -0.00538696 0)
(-0.0471232 -0.00423829 0)
(-0.0466241 -0.00311626 0)
(-0.0461108 -0.00202097 0)
(-0.0455834 -0.000952169 0)
(-0.0450422 9.06229e-05 0)
(-0.0444892 0.00110784 0)
(-0.0439258 0.0021001 0)
(-0.0433522 0.00306772 0)
(-0.0427689 0.00401091 0)
(-0.0421767 0.00493003 0)
(-0.0415761 0.00582544 0)
(-0.0409678 0.00669754 0)
(-0.0403523 0.00754671 0)
(-0.0397302 0.00837332 0)
(-0.039102 0.00917778 0)
(-0.0384683 0.00996047 0)
(-0.0378294 0.0107218 0)
(-0.0371858 0.0114621 0)
(-0.036538 0.0121818 0)
(-0.0358863 0.0128813 0)
(-0.0352312 0.0135609 0)
(-0.034573 0.014221 0)
(-0.033912 0.0148621 0)
(-0.0332486 0.0154844 0)
(-0.0325829 0.0160884 0)
(-0.0319154 0.0166744 0)
(-0.0312463 0.0172427 0)
(-0.0305758 0.0177938 0)
(-0.0299042 0.018328 0)
(-0.0292316 0.0188456 0)
(-0.0285582 0.0193469 0)
(-0.0278843 0.0198324 0)
(-0.02721 0.0203023 0)
(-0.0265354 0.020757 0)
(-0.0258607 0.0211967 0)
(-0.025186 0.0216219 0)
(-0.0245115 0.0220328 0)
(-0.0238372 0.0224296 0)
(-0.0231632 0.0228128 0)
(-0.0224896 0.0231825 0)
(-0.0218165 0.0235391 0)
(-0.021144 0.0238829 0)
(-0.020472 0.024214 0)
(-0.0198007 0.0245327 0)
(-0.0191301 0.0248394 0)
(-0.0184602 0.0251341 0)
(-0.0177911 0.0254173 0)
(-0.0171227 0.025689 0)
(-0.0164551 0.0259494 0)
(-0.0157883 0.0261989 0)
(-0.0151222 0.0264375 0)
(-0.014457 0.0266655 0)
(-0.0137925 0.026883 0)
(-0.0131288 0.0270902 0)
(-0.0124658 0.0272872 0)
(-0.0118034 0.027474 0)
(-0.0111418 0.0276507 0)
(-0.0104808 0.0278169 0)
(-0.00982034 0.0279717 0)
(-0.00916036 0.0281135 0)
(-0.0085007 0.0282384 0)
(-0.00784113 0.0283387 0)
(-0.00718123 0.0283994 0)
(-0.0065203 0.0283916 0)
(-0.00585723 0.0282625 0)
(-0.00519035 0.0279193 0)
(-0.00451745 0.0272074 0)
(-0.00383622 0.0258872 0)
(-0.00314565 0.0236233 0)
(-0.00244904 0.0200158 0)
(-0.00175934 0.0147268 0)
(-0.00110633 0.00776681 0)
(-0.000543311 -7.79568e-06 0)
(-0.000142937 -0.00622511 0)
(9.46197e-06 -0.00636951 0)
(-0.0445438 -0.0392501 0)
(-0.0449243 -0.0377628 0)
(-0.0452515 -0.0362848 0)
(-0.0455307 -0.0348067 0)
(-0.0457643 -0.0333282 0)
(-0.0459541 -0.0318516 0)
(-0.0461018 -0.0303799 0)
(-0.0462092 -0.0289166 0)
(-0.0462777 -0.0274648 0)
(-0.046309 -0.0260273 0)
(-0.0463046 -0.0246063 0)
(-0.0462661 -0.0232036 0)
(-0.0461947 -0.0218207 0)
(-0.0460921 -0.0204583 0)
(-0.0459595 -0.0191175 0)
(-0.0457983 -0.0177986 0)
(-0.0456097 -0.0165021 0)
(-0.0453951 -0.0152285 0)
(-0.0451557 -0.0139779 0)
(-0.0448926 -0.0127506 0)
(-0.044607 -0.0115468 0)
(-0.0442999 -0.0103664 0)
(-0.0439726 -0.00920956 0)
(-0.0436259 -0.00807628 0)
(-0.0432609 -0.00696649 0)
(-0.0428786 -0.00588009 0)
(-0.04248 -0.00481698 0)
(-0.0420657 -0.00377704 0)
(-0.0416365 -0.00276003 0)
(-0.0411933 -0.00176592 0)
(-0.0407356 -0.000794734 0)
(-0.0402646 0.000153834 0)
(-0.0397826 0.00108026 0)
(-0.0392902 0.00198502 0)
(-0.0387874 0.00286831 0)
(-0.0382748 0.00373026 0)
(-0.037753 0.00457113 0)
(-0.0372225 0.0053912 0)
(-0.0366839 0.00619075 0)
(-0.0361377 0.00697009 0)
(-0.0355844 0.00772949 0)
(-0.0350245 0.00846925 0)
(-0.0344584 0.00918968 0)
(-0.0338866 0.00989108 0)
(-0.0333094 0.0105737 0)
(-0.0327273 0.011238 0)
(-0.0321406 0.0118841 0)
(-0.0315498 0.0125124 0)
(-0.030955 0.0131231 0)
(-0.0303567 0.0137166 0)
(-0.0297551 0.0142932 0)
(-0.0291505 0.0148532 0)
(-0.0285432 0.0153968 0)
(-0.0279335 0.0159244 0)
(-0.0273215 0.0164362 0)
(-0.0267075 0.0169326 0)
(-0.0260918 0.0174138 0)
(-0.0254744 0.01788 0)
(-0.0248555 0.0183317 0)
(-0.0242355 0.018769 0)
(-0.0236143 0.0191922 0)
(-0.0229921 0.0196016 0)
(-0.0223692 0.0199974 0)
(-0.0217455 0.0203799 0)
(-0.0211212 0.0207494 0)
(-0.0204965 0.021106 0)
(-0.0198714 0.02145 0)
(-0.0192459 0.0217817 0)
(-0.0186203 0.0221013 0)
(-0.0179944 0.0224089 0)
(-0.0173685 0.0227048 0)
(-0.0167426 0.0229892 0)
(-0.0161166 0.0232623 0)
(-0.0154907 0.0235243 0)
(-0.0148648 0.0237753 0)
(-0.0142391 0.0240155 0)
(-0.0136136 0.0242451 0)
(-0.0129881 0.0244643 0)
(-0.0123629 0.0246731 0)
(-0.0117378 0.0248717 0)
(-0.0111129 0.0250601 0)
(-0.0104881 0.0252383 0)
(-0.0098635 0.0254057 0)
(-0.009239 0.0255617 0)
(-0.00861455 0.0257042 0)
(-0.00799002 0.025829 0)
(-0.0073652 0.0259281 0)
(-0.00673969 0.0259855 0)
(-0.00611281 0.0259711 0)
(-0.00548349 0.0258303 0)
(-0.00485016 0.0254684 0)
(-0.00421083 0.0247298 0)
(-0.00356359 0.0233778 0)
(-0.00290811 0.0210879 0)
(-0.0022487 0.0174871 0)
(-0.00159935 0.0122872 0)
(-0.00099025 0.00557151 0)
(-0.000472871 -0.00172831 0)
(-0.000114113 -0.00722554 0)
(1.21285e-05 -0.00656792 0)
(-0.0384131 -0.0376068 0)
(-0.0388541 -0.0362982 0)
(-0.0392478 -0.0349932 0)
(-0.0395981 -0.0336826 0)
(-0.0399066 -0.0323659 0)
(-0.0401745 -0.0310455 0)
(-0.0404029 -0.0297247 0)
(-0.0405932 -0.0284068 0)
(-0.0407464 -0.027095 0)
(-0.0408638 -0.0257923 0)
(-0.0409468 -0.0245008 0)
(-0.0409965 -0.0232226 0)
(-0.0410143 -0.021959 0)
(-0.0410015 -0.0207111 0)
(-0.0409591 -0.0194798 0)
(-0.0408885 -0.0182658 0)
(-0.0407909 -0.0170697 0)
(-0.0406673 -0.015892 0)
(-0.0405188 -0.0147331 0)
(-0.0403464 -0.0135933 0)
(-0.0401514 -0.012473 0)
(-0.0399347 -0.0113723 0)
(-0.0396973 -0.0102913 0)
(-0.0394401 -0.0092303 0)
(-0.039164 -0.0081893 0)
(-0.0388699 -0.00716834 0)
(-0.0385586 -0.00616741 0)
(-0.0382308 -0.00518649 0)
(-0.0378873 -0.00422558 0)
(-0.0375293 -0.00328458 0)
(-0.037158 -0.0023634 0)
(-0.0367729 -0.00146224 0)
(-0.0363734 -0.000580935 0)
(-0.0359611 0.000280836 0)
(-0.035538 0.00112328 0)
(-0.0351047 0.00194672 0)
(-0.034661 0.00275151 0)
(-0.0342076 0.00353757 0)
(-0.033745 0.00430509 0)
(-0.0332736 0.00505429 0)
(-0.032794 0.00578538 0)
(-0.0323065 0.00649857 0)
(-0.0318118 0.00719411 0)
(-0.03131 0.0078722 0)
(-0.0308018 0.00853307 0)
(-0.0302875 0.00917697 0)
(-0.0297674 0.00980412 0)
(-0.0292419 0.0104148 0)
(-0.0287114 0.0110091 0)
(-0.0281761 0.0115874 0)
(-0.0276365 0.01215 0)
(-0.0270928 0.0126969 0)
(-0.0265452 0.0132285 0)
(-0.0259941 0.0137451 0)
(-0.0254397 0.0142468 0)
(-0.0248822 0.0147338 0)
(-0.0243219 0.0152065 0)
(-0.0237589 0.015665 0)
(-0.0231935 0.0161096 0)
(-0.0226259 0.0165405 0)
(-0.0220562 0.0169579 0)
(-0.0214847 0.0173621 0)
(-0.0209113 0.0177532 0)
(-0.0203364 0.0181316 0)
(-0.0197601 0.0184973 0)
(-0.0191824 0.0188506 0)
(-0.0186035 0.0191917 0)
(-0.0180235 0.0195208 0)
(-0.0174425 0.0198381 0)
(-0.0168606 0.0201437 0)
(-0.0162779 0.020438 0)
(-0.0156944 0.0207209 0)
(-0.0151103 0.0209928 0)
(-0.0145256 0.0212537 0)
(-0.0139403 0.0215039 0)
(-0.0133546 0.0217434 0)
(-0.0127684 0.0219724 0)
(-0.0121818 0.0221911 0)
(-0.0115949 0.0223995 0)
(-0.0110076 0.0225978 0)
(-0.0104201 0.022786 0)
(-0.00983221 0.0229638 0)
(-0.00924409 0.023131 0)
(-0.00865568 0.0232864 0)
(-0.00806693 0.0234281 0)
(-0.00747775 0.0235516 0)
(-0.00688793 0.0236481 0)
(-0.00629708 0.0237009 0)
(-0.00570456 0.0236787 0)
(-0.00510935 0.0235254 0)
(-0.00451 0.0231445 0)
(-0.00390474 0.0223803 0)
(-0.00329209 0.0209995 0)
(-0.00267241 0.0186898 0)
(-0.0020509 0.0151055 0)
(-0.00144248 0.0100066 0)
(-0.000877455 0.00354449 0)
(-0.000405378 -0.00328539 0)
(-8.7328e-05 -0.00809732 0)
(1.43348e-05 -0.00671408 0)
(-0.0329258 -0.0357811 0)
(-0.0334095 -0.0346297 0)
(-0.0338514 -0.0334788 0)
(-0.0342543 -0.0323195 0)
(-0.0346193 -0.0311512 0)
(-0.034947 -0.0299757 0)
(-0.0352381 -0.0287963 0)
(-0.0354932 -0.027616 0)
(-0.0357135 -0.0264378 0)
(-0.0358996 -0.0252645 0)
(-0.0360528 -0.0240981 0)
(-0.036174 -0.0229406 0)
(-0.0362644 -0.0217932 0)
(-0.036325 -0.0206571 0)
(-0.036357 -0.0195333 0)
(-0.0363614 -0.0184226 0)
(-0.0363393 -0.0173257 0)
(-0.0362918 -0.016243 0)
(-0.0362198 -0.0151753 0)
(-0.0361243 -0.0141228 0)
(-0.0360062 -0.0130861 0)
(-0.0358665 -0.0120656 0)
(-0.035706 -0.0110613 0)
(-0.0355256 -0.0100738 0)
(-0.035326 -0.00910299 0)
(-0.0351082 -0.00814917 0)
(-0.034873 -0.00721242 0)
(-0.0346212 -0.00629282 0)
(-0.0343534 -0.00539046 0)
(-0.0340702 -0.00450539 0)
(-0.0337722 -0.00363751 0)
(-0.0334604 -0.00278667 0)
(-0.0331352 -0.0019531 0)
(-0.0327973 -0.00113701 0)
(-0.0324463 -0.000338177 0)
(-0.0320826 0.000443742 0)
(-0.0317081 0.00120865 0)
(-0.0313241 0.00195696 0)
(-0.0309301 0.00268871 0)
(-0.0305264 0.003404 0)
(-0.0301136 0.00410297 0)
(-0.0296922 0.00478576 0)
(-0.0292625 0.00545253 0)
(-0.028825 0.00610344 0)
(-0.02838 0.00673864 0)
(-0.0279281 0.00735831 0)
(-0.0274695 0.00796262 0)
(-0.0270046 0.00855174 0)
(-0.0265337 0.00912586 0)
(-0.0260572 0.00968514 0)
(-0.0255754 0.0102298 0)
(-0.0250886 0.0107599 0)
(-0.024597 0.0112758 0)
(-0.0241011 0.0117776 0)
(-0.0236009 0.0122655 0)
(-0.0230968 0.0127397 0)
(-0.0225889 0.0132003 0)
(-0.0220776 0.0136476 0)
(-0.0215631 0.0140817 0)
(-0.0210454 0.0145029 0)
(-0.020525 0.0149113 0)
(-0.0200018 0.015307 0)
(-0.0194761 0.0156903 0)
(-0.0189481 0.0160614 0)
(-0.0184179 0.0164204 0)
(-0.0178856 0.0167675 0)
(-0.0173514 0.0171029 0)
(-0.0168154 0.0174267 0)
(-0.0162778 0.0177391 0)
(-0.0157386 0.0180402 0)
(-0.015198 0.0183303 0)
(-0.0146561 0.0186094 0)
(-0.0141128 0.0188777 0)
(-0.0135685 0.0191353 0)
(-0.013023 0.0193825 0)
(-0.0124766 0.0196192 0)
(-0.0119292 0.0198457 0)
(-0.0113809 0.020062 0)
(-0.0108318 0.0202683 0)
(-0.0102819 0.0204646 0)
(-0.00973131 0.0206508 0)
(-0.00918004 0.0208268 0)
(-0.00862813 0.0209922 0)
(-0.00807558 0.0211458 0)
(-0.00752236 0.0212853 0)
(-0.00696839 0.0214061 0)
(-0.00641347 0.0214989 0)
(-0.00585723 0.0215461 0)
(-0.00529907 0.0215152 0)
(-0.00473803 0.0213487 0)
(-0.00417279 0.020949 0)
(-0.00360183 0.0201605 0)
(-0.0030241 0.0187542 0)
(-0.00244062 0.0164311 0)
(-0.00185747 0.0128728 0)
(-0.0012903 0.00788622 0)
(-0.000769351 0.00168475 0)
(-0.000341812 -0.00468272 0)
(-6.26401e-05 -0.0088461 0)
(1.62567e-05 -0.00681218 0)
(-0.0280637 -0.0338332 0)
(-0.0285758 -0.032822 0)
(-0.0290501 -0.031809 0)
(-0.0294888 -0.0307864 0)
(-0.0298926 -0.0297532 0)
(-0.0302622 -0.0287112 0)
(-0.0305978 -0.0276631 0)
(-0.0309001 -0.0266117 0)
(-0.0311697 -0.0255596 0)
(-0.0314073 -0.024509 0)
(-0.0316138 -0.0234618 0)
(-0.03179 -0.0224196 0)
(-0.031937 -0.0213838 0)
(-0.0320556 -0.0203555 0)
(-0.0321469 -0.0193355 0)
(-0.0322117 -0.0183249 0)
(-0.032251 -0.0173243 0)
(-0.0322656 -0.0163345 0)
(-0.0322566 -0.0153561 0)
(-0.0322246 -0.0143896 0)
(-0.0321706 -0.0134355 0)
(-0.0320954 -0.0124942 0)
(-0.0319997 -0.0115662 0)
(-0.0318845 -0.0106518 0)
(-0.0317503 -0.00975136 0)
(-0.0315978 -0.00886503 0)
(-0.0314279 -0.00799308 0)
(-0.0312412 -0.00713564 0)
(-0.0310384 -0.00629283 0)
(-0.03082 -0.00546479 0)
(-0.0305867 -0.00465163 0)
(-0.0303393 -0.0038534 0)
(-0.0300786 -0.0030701 0)
(-0.0298045 -0.00230173 0)
(-0.0295171 -0.00154835 0)
(-0.0292181 -0.000810109 0)
(-0.0289071 -8.70641e-05 0)
(-0.0285844 0.000621094 0)
(-0.0282514 0.00131452 0)
(-0.0279085 0.00199333 0)
(-0.0275559 0.00265753 0)
(-0.0271941 0.00330718 0)
(-0.0268234 0.00394237 0)
(-0.0264443 0.00456323 0)
(-0.0260571 0.00516984 0)
(-0.0256622 0.00576234 0)
(-0.02526 0.00634082 0)
(-0.0248508 0.00690543 0)
(-0.024435 0.00745628 0)
(-0.0240128 0.00799351 0)
(-0.0235846 0.00851724 0)
(-0.0231506 0.00902761 0)
(-0.0227113 0.00952477 0)
(-0.0222668 0.0100088 0)
(-0.0218174 0.01048 0)
(-0.0213633 0.0109383 0)
(-0.0209048 0.011384 0)
(-0.0204422 0.0118173 0)
(-0.0199757 0.0122381 0)
(-0.0195054 0.0126467 0)
(-0.0190315 0.0130433 0)
(-0.0185544 0.013428 0)
(-0.0180741 0.0138009 0)
(-0.0175908 0.0141621 0)
(-0.0171047 0.0145119 0)
(-0.0166159 0.0148503 0)
(-0.0161247 0.0151776 0)
(-0.015631 0.0154937 0)
(-0.0151352 0.0157989 0)
(-0.0146373 0.0160934 0)
(-0.0141374 0.0163771 0)
(-0.0136356 0.0166503 0)
(-0.0131321 0.0169131 0)
(-0.0126269 0.0171655 0)
(-0.0121202 0.0174078 0)
(-0.011612 0.01764 0)
(-0.0111025 0.0178622 0)
(-0.0105916 0.0180746 0)
(-0.0100796 0.0182771 0)
(-0.00956639 0.0184698 0)
(-0.00905212 0.0186527 0)
(-0.00853682 0.0188256 0)
(-0.00802056 0.0189879 0)
(-0.00750334 0.0191384 0)
(-0.00698515 0.0192746 0)
(-0.00646593 0.0193916 0)
(-0.00594549 0.0194796 0)
(-0.0054235 0.0195202 0)
(-0.00489938 0.01948 0)
(-0.00437225 0.0193 0)
(-0.00384093 0.0188818 0)
(-0.00330415 0.0180707 0)
(-0.0027613 0.0166428 0)
(-0.00221404 0.0143126 0)
(-0.00166923 0.0107897 0)
(-0.00114312 0.00592552 0)
(-0.00066563 -9.92677e-06 0)
(-0.000281524 -0.00592499 0)
(-3.97908e-05 -0.00947818 0)
(1.78915e-05 -0.00686632 0)
(-0.0237834 -0.031808 0)
(-0.0243118 -0.0309282 0)
(-0.0248048 -0.0300431 0)
(-0.0252646 -0.0291466 0)
(-0.025692 -0.028238 0)
(-0.0260877 -0.0273192 0)
(-0.0264521 -0.0263925 0)
(-0.0267856 -0.0254604 0)
(-0.0270889 -0.0245253 0)
(-0.0273625 -0.0235889 0)
(-0.0276074 -0.0226531 0)
(-0.027824 -0.0217191 0)
(-0.0280134 -0.0207883 0)
(-0.0281762 -0.0198617 0)
(-0.0283132 -0.0189402 0)
(-0.0284253 -0.0180248 0)
(-0.0285131 -0.0171163 0)
(-0.0285776 -0.0162154 0)
(-0.0286194 -0.0153228 0)
(-0.0286393 -0.0144392 0)
(-0.028638 -0.0135651 0)
(-0.0286162 -0.0127011 0)
(-0.0285746 -0.0118476 0)
(-0.0285138 -0.0110051 0)
(-0.0284346 -0.0101738 0)
(-0.0283377 -0.00935419 0)
(-0.0282235 -0.00854646 0)
(-0.0280927 -0.0077509 0)
(-0.0279459 -0.0069677 0)
(-0.0277838 -0.00619704 0)
(-0.0276068 -0.00543907 0)
(-0.0274155 -0.00469394 0)
(-0.0272104 -0.0039617 0)
(-0.026992 -0.00324236 0)
(-0.026761 -0.0025361 0)
(-0.0265176 -0.00184307 0)
(-0.0262622 -0.00116304 0)
(-0.0259952 -0.000496248 0)
(-0.0257167 0.000157361 0)
(-0.0254279 0.00079788 0)
(-0.0251293 0.00142547 0)
(-0.0248212 0.00204011 0)
(-0.0245038 0.00264179 0)
(-0.0241776 0.00323057 0)
(-0.0238428 0.00380651 0)
(-0.0234998 0.00436968 0)
(-0.023149 0.00492016 0)
(-0.0227908 0.00545801 0)
(-0.0224253 0.00598334 0)
(-0.022053 0.00649622 0)
(-0.0216742 0.00699674 0)
(-0.0212891 0.007485 0)
(-0.0208981 0.0079611 0)
(-0.0205013 0.00842513 0)
(-0.0200991 0.0088772 0)
(-0.0196917 0.00931742 0)
(-0.0192793 0.00974588 0)
(-0.0188623 0.0101627 0)
(-0.0184408 0.010568 0)
(-0.018015 0.0109619 0)
(-0.0175851 0.0113444 0)
(-0.0171514 0.0117158 0)
(-0.016714 0.0120761 0)
(-0.0162731 0.0124254 0)
(-0.0158289 0.0127639 0)
(-0.0153816 0.0130916 0)
(-0.0149313 0.0134087 0)
(-0.0144781 0.0137153 0)
(-0.0140223 0.0140115 0)
(-0.0135639 0.0142973 0)
(-0.0131031 0.014573 0)
(-0.01264 0.0148385 0)
(-0.0121747 0.0150941 0)
(-0.0117074 0.0153397 0)
(-0.0112381 0.0155756 0)
(-0.010767 0.0158017 0)
(-0.0102942 0.0160182 0)
(-0.00981971 0.0162251 0)
(-0.00934368 0.0164225 0)
(-0.00886618 0.0166105 0)
(-0.0083873 0.0167888 0)
(-0.0079071 0.0169573 0)
(-0.00742565 0.0171154 0)
(-0.00694298 0.0172618 0)
(-0.00645909 0.0173937 0)
(-0.00597392 0.017506 0)
(-0.00548731 0.0175884 0)
(-0.00499895 0.0176217 0)
(-0.00450832 0.0175715 0)
(-0.0040146 0.0173779 0)
(-0.00351678 0.0169419 0)
(-0.00301385 0.0161101 0)
(-0.00250563 0.0146645 0)
(-0.0019944 0.0123339 0)
(-0.00148771 0.00885523 0)
(-0.00100227 0.00412248 0)
(-0.000567495 -0.00154355 0)
(-0.000225482 -0.00701835 0)
(-1.8705e-05 -0.0100005 0)
(1.96263e-05 -0.00688095 0)
(-0.0200141 -0.0297431 0)
(-0.0205495 -0.0289897 0)
(-0.0210514 -0.028226 0)
(-0.0215218 -0.0274479 0)
(-0.021962 -0.0266556 0)
(-0.0223726 -0.025851 0)
(-0.0227542 -0.0250364 0)
(-0.0231073 -0.0242144 0)
(-0.0234326 -0.0233869 0)
(-0.0237307 -0.0225558 0)
(-0.0240021 -0.0217227 0)
(-0.0242476 -0.0208889 0)
(-0.0244679 -0.0200555 0)
(-0.0246635 -0.0192237 0)
(-0.0248352 -0.0183944 0)
(-0.0249835 -0.0175684 0)
(-0.0251092 -0.0167466 0)
(-0.0252129 -0.0159299 0)
(-0.0252951 -0.0151189 0)
(-0.0253566 -0.0143144 0)
(-0.025398 -0.0135169 0)
(-0.0254198 -0.0127271 0)
(-0.0254227 -0.0119454 0)
(-0.0254072 -0.0111723 0)
(-0.0253739 -0.0104082 0)
(-0.0253233 -0.00965351 0)
(-0.0252561 -0.00890855 0)
(-0.0251727 -0.00817362 0)
(-0.0250737 -0.00744899 0)
(-0.0249595 -0.00673487 0)
(-0.0248307 -0.00603147 0)
(-0.0246879 -0.00533895 0)
(-0.0245314 -0.00465747 0)
(-0.0243618 -0.00398717 0)
(-0.0241797 -0.00332812 0)
(-0.0239852 -0.0026804 0)
(-0.0237785 -0.00204416 0)
(-0.0235603 -0.00141944 0)
(-0.0233311 -0.000806326 0)
(-0.0230907 -0.000204907 0)
(-0.0228398 0.000384887 0)
(-0.0225795 0.000963165 0)
(-0.0223099 0.00153002 0)
(-0.0220312 0.00208537 0)
(-0.0217437 0.00262923 0)
(-0.0214477 0.00316161 0)
(-0.0211435 0.00368255 0)
(-0.0208316 0.0041921 0)
(-0.0205121 0.00469029 0)
(-0.0201854 0.00517717 0)
(-0.0198518 0.0056528 0)
(-0.0195115 0.00611724 0)
(-0.0191649 0.00657054 0)
(-0.0188122 0.00701278 0)
(-0.0184536 0.00744401 0)
(-0.0180895 0.00786432 0)
(-0.01772 0.00827377 0)
(-0.0173454 0.00867243 0)
(-0.0169659 0.0090604 0)
(-0.0165817 0.00943775 0)
(-0.0161931 0.00980456 0)
(-0.0158001 0.0101609 0)
(-0.0154031 0.0105069 0)
(-0.0150022 0.0108426 0)
(-0.0145976 0.0111681 0)
(-0.0141895 0.0114835 0)
(-0.013778 0.0117888 0)
(-0.0133632 0.0120842 0)
(-0.0129454 0.0123698 0)
(-0.0125247 0.0126455 0)
(-0.0121012 0.0129116 0)
(-0.0116751 0.0131681 0)
(-0.0112465 0.013415 0)
(-0.0108154 0.0136525 0)
(-0.0103821 0.0138806 0)
(-0.0099467 0.0140994 0)
(-0.00950922 0.0143089 0)
(-0.0090698 0.0145092 0)
(-0.00862856 0.0147004 0)
(-0.00818559 0.0148824 0)
(-0.00774097 0.0150552 0)
(-0.00729479 0.0152184 0)
(-0.00684713 0.0153713 0)
(-0.00639801 0.0155127 0)
(-0.00594746 0.0156395 0)
(-0.00549543 0.0157463 0)
(-0.00504179 0.0158223 0)
(-0.00458625 0.0158478 0)
(-0.00412833 0.0157874 0)
(-0.00366731 0.0155803 0)
(-0.00320233 0.0151275 0)
(-0.00273265 0.0142772 0)
(-0.00225853 0.012818 0)
(-0.0017828 0.0104936 0)
(-0.00131366 0.00706765 0)
(-0.000868101 0.00247432 0)
(-0.000474833 -0.00292056 0)
(-0.000173195 -0.00796902 0)
(-6.72486e-07 -0.0104199 0)
(1.99004e-05 -0.00685971 0)
(-0.0166928 -0.0276702 0)
(-0.0172268 -0.0270379 0)
(-0.0177293 -0.0263891 0)
(-0.0182025 -0.0257223 0)
(-0.0186476 -0.0250384 0)
(-0.0190653 -0.0243397 0)
(-0.0194563 -0.0236288 0)
(-0.0198211 -0.0229081 0)
(-0.0201602 -0.0221797 0)
(-0.0204743 -0.0214454 0)
(-0.0207639 -0.0207068 0)
(-0.0210297 -0.0199652 0)
(-0.0212721 -0.0192218 0)
(-0.0214918 -0.0184776 0)
(-0.0216893 -0.0177337 0)
(-0.0218651 -0.016991 0)
(-0.0220198 -0.0162503 0)
(-0.0221539 -0.0155125 0)
(-0.022268 -0.0147783 0)
(-0.0223625 -0.0140484 0)
(-0.022438 -0.0133235 0)
(-0.022495 -0.0126042 0)
(-0.0225341 -0.0118909 0)
(-0.0225556 -0.0111843 0)
(-0.0225601 -0.0104847 0)
(-0.0225481 -0.00979264 0)
(-0.0225201 -0.00910838 0)
(-0.0224765 -0.00843228 0)
(-0.0224177 -0.00776465 0)
(-0.0223444 -0.00710577 0)
(-0.0222568 -0.00645588 0)
(-0.0221555 -0.00581518 0)
(-0.0220408 -0.00518385 0)
(-0.0219131 -0.00456205 0)
(-0.0217729 -0.00394992 0)
(-0.0216207 -0.00334755 0)
(-0.021457 -0.00275508 0)
(-0.0212818 -0.00217262 0)
(-0.0210955 -0.00160022 0)
(-0.0208987 -0.00103797 0)
(-0.0206913 -0.000486034 0)
(-0.0204733 5.56066e-05 0)
(-0.0202457 0.000586964 0)
(-0.0200093 0.00110824 0)
(-0.0197641 0.0016193 0)
(-0.0195102 0.00212009 0)
(-0.0192481 0.00261062 0)
(-0.018978 0.00309089 0)
(-0.0187002 0.00356092 0)
(-0.0184149 0.00402072 0)
(-0.0181225 0.00447033 0)
(-0.0178232 0.00490976 0)
(-0.0175173 0.00533906 0)
(-0.0172051 0.00575825 0)
(-0.0168867 0.00616738 0)
(-0.0165625 0.00656649 0)
(-0.0162326 0.00695562 0)
(-0.0158973 0.00733483 0)
(-0.0155568 0.00770415 0)
(-0.0152113 0.00806365 0)
(-0.0148611 0.00841337 0)
(-0.0145062 0.00875338 0)
(-0.014147 0.00908374 0)
(-0.0137836 0.0094045 0)
(-0.0134162 0.00971572 0)
(-0.0130449 0.0100175 0)
(-0.01267 0.0103098 0)
(-0.0122916 0.0105928 0)
(-0.0119098 0.0108665 0)
(-0.0115248 0.011131 0)
(-0.0111367 0.0113863 0)
(-0.0107457 0.0116325 0)
(-0.0103519 0.0118697 0)
(-0.00995553 0.0120978 0)
(-0.00955659 0.0123171 0)
(-0.00915525 0.0125275 0)
(-0.00875164 0.0127291 0)
(-0.00834585 0.0129219 0)
(-0.00793802 0.0131059 0)
(-0.00752823 0.0132811 0)
(-0.00711658 0.0134474 0)
(-0.00670318 0.0136045 0)
(-0.00628808 0.0137515 0)
(-0.00587136 0.0138871 0)
(-0.00545303 0.0140082 0)
(-0.00503307 0.0141088 0)
(-0.00461136 0.014178 0)
(-0.00418764 0.0141953 0)
(-0.00376149 0.0141245 0)
(-0.00333228 0.0139043 0)
(-0.0028993 0.0134356 0)
(-0.00246209 0.0125694 0)
(-0.00202131 0.011101 0)
(-0.00158036 0.00878918 0)
(-0.00114795 0.00542389 0)
(-0.000741247 0.000976795 0)
(-0.000388104 -0.00414693 0)
(-0.000125091 -0.00878463 0)
(1.55189e-05 -0.010744 0)
(2.01628e-05 -0.00680629 0)
(-0.013795 -0.0256236 0)
(-0.0143173 -0.025104 0)
(-0.0148108 -0.0245616 0)
(-0.0152778 -0.0239975 0)
(-0.0157192 -0.0234133 0)
(-0.0161359 -0.022812 0)
(-0.0165284 -0.0221962 0)
(-0.0168971 -0.0215685 0)
(-0.0172425 -0.020931 0)
(-0.0175651 -0.0202856 0)
(-0.0178655 -0.0196338 0)
(-0.018144 -0.0189771 0)
(-0.0184012 -0.0183166 0)
(-0.0186374 -0.0176535 0)
(-0.0188532 -0.0169887 0)
(-0.0190491 -0.0163233 0)
(-0.0192253 -0.015658 0)
(-0.0193825 -0.0149938 0)
(-0.0195209 -0.0143314 0)
(-0.0196412 -0.0136716 0)
(-0.0197436 -0.013015 0)
(-0.0198286 -0.0123621 0)
(-0.0198967 -0.0117137 0)
(-0.0199483 -0.0110702 0)
(-0.0199837 -0.010432 0)
(-0.0200035 -0.00979963 0)
(-0.0200079 -0.00917345 0)
(-0.0199975 -0.00855381 0)
(-0.0199726 -0.00794106 0)
(-0.0199337 -0.00733547 0)
(-0.019881 -0.00673733 0)
(-0.019815 -0.00614687 0)
(-0.019736 -0.00556432 0)
(-0.0196444 -0.00498986 0)
(-0.0195408 -0.00442366 0)
(-0.0194253 -0.00386586 0)
(-0.0192982 -0.00331655 0)
(-0.0191599 -0.00277586 0)
(-0.0190108 -0.00224393 0)
(-0.0188512 -0.00172083 0)
(-0.0186816 -0.00120659 0)
(-0.0185022 -0.000701333 0)
(-0.0183125 -0.000205251 0)
(-0.0181132 0.000281614 0)
(-0.0179057 0.000759481 0)
(-0.0176897 0.00122829 0)
(-0.0174653 0.00168795 0)
(-0.0172329 0.00213844 0)
(-0.0169927 0.00257975 0)
(-0.0167449 0.00301187 0)
(-0.0164899 0.00343479 0)
(-0.0162279 0.00384852 0)
(-0.0159591 0.00425307 0)
(-0.0156838 0.00464843 0)
(-0.0154022 0.00503463 0)
(-0.0151146 0.00541169 0)
(-0.0148211 0.00577962 0)
(-0.014522 0.00613845 0)
(-0.0142176 0.0064882 0)
(-0.0139079 0.00682891 0)
(-0.0135933 0.0071606 0)
(-0.0132739 0.0074833 0)
(-0.0129499 0.00779706 0)
(-0.0126215 0.00810191 0)
(-0.0122888 0.00839789 0)
(-0.0119521 0.00868503 0)
(-0.0116115 0.00896339 0)
(-0.0112672 0.009233 0)
(-0.0109193 0.00949391 0)
(-0.0105679 0.00974616 0)
(-0.0102133 0.00998979 0)
(-0.00985558 0.0102248 0)
(-0.00949486 0.0104514 0)
(-0.00913127 0.0106694 0)
(-0.00876497 0.010879 0)
(-0.00839608 0.0110802 0)
(-0.00802473 0.0112731 0)
(-0.00765102 0.0114575 0)
(-0.00727508 0.0116337 0)
(-0.00689701 0.0118014 0)
(-0.00651693 0.0119605 0)
(-0.00613491 0.0121108 0)
(-0.00575107 0.0122513 0)
(-0.00536545 0.0123805 0)
(-0.00497809 0.0124953 0)
(-0.00458899 0.0125893 0)
(-0.00419803 0.0126512 0)
(-0.00380501 0.01266 0)
(-0.00340953 0.0125789 0)
(-0.00301107 0.0123461 0)
(-0.00260907 0.011863 0)
(-0.00220337 0.0109835 0)
(-0.00179501 0.00951027 0)
(-0.00138791 0.0072173 0)
(-0.000991206 0.00392008 0)
(-0.000622114 -0.000375022 0)
(-0.000307486 -0.00522906 0)
(-8.111e-05 -0.0094728 0)
(3.0072e-05 -0.0109801 0)
(2.04805e-05 -0.00672471 0)
(-0.0112884 -0.0236468 0)
(-0.0117901 -0.0232288 0)
(-0.0122662 -0.0227817 0)
(-0.0127186 -0.022309 0)
(-0.0131485 -0.0218139 0)
(-0.0135565 -0.0212994 0)
(-0.013943 -0.0207687 0)
(-0.0143084 -0.0202244 0)
(-0.0146531 -0.0196687 0)
(-0.0149774 -0.0191036 0)
(-0.0152817 -0.0185305 0)
(-0.0155663 -0.017951 0)
(-0.0158317 -0.0173662 0)
(-0.016078 -0.0167772 0)
(-0.0163057 -0.0161851 0)
(-0.0165151 -0.0155908 0)
(-0.0167065 -0.0149953 0)
(-0.0168803 -0.0143993 0)
(-0.0170369 -0.0138037 0)
(-0.0171765 -0.0132092 0)
(-0.0172996 -0.0126164 0)
(-0.0174064 -0.0120259 0)
(-0.0174974 -0.0114384 0)
(-0.0175729 -0.0108543 0)
(-0.0176332 -0.0102742 0)
(-0.0176786 -0.00969845 0)
(-0.0177096 -0.0091275 0)
(-0.0177265 -0.00856172 0)
(-0.0177295 -0.00800145 0)
(-0.0177191 -0.00744698 0)
(-0.0176956 -0.00689859 0)
(-0.0176594 -0.00635655 0)
(-0.0176108 -0.00582107 0)
(-0.01755 -0.00529239 0)
(-0.0174774 -0.00477068 0)
(-0.0173933 -0.00425609 0)
(-0.0172982 -0.00374877 0)
(-0.0171923 -0.00324889 0)
(-0.0170758 -0.00275657 0)
(-0.016949 -0.00227188 0)
(-0.0168121 -0.00179495 0)
(-0.0166655 -0.00132587 0)
(-0.01651 -0.000864661 0)
(-0.016345 -0.000411603 0)
(-0.0161704 3.32785e-05 0)
(-0.0159875 0.000470115 0)
(-0.0157967 0.000898887 0)
(-0.0155979 0.00131954 0)
(-0.0153914 0.001732 0)
(-0.0151773 0.00213624 0)
(-0.014956 0.00253224 0)
(-0.0147276 0.00291996 0)
(-0.0144924 0.0032994 0)
(-0.0142507 0.00367055 0)
(-0.0140026 0.00403339 0)
(-0.0137484 0.00438792 0)
(-0.0134883 0.00473414 0)
(-0.0132225 0.00507205 0)
(-0.0129512 0.00540166 0)
(-0.0126746 0.00572298 0)
(-0.0123928 0.00603601 0)
(-0.0121062 0.00634077 0)
(-0.0118148 0.00663728 0)
(-0.0115189 0.00692555 0)
(-0.0112186 0.00720561 0)
(-0.0109141 0.00747747 0)
(-0.0106055 0.00774117 0)
(-0.0102931 0.00799672 0)
(-0.00997691 0.00824416 0)
(-0.00965718 0.0084835 0)
(-0.00933402 0.00871478 0)
(-0.00900758 0.00893803 0)
(-0.008678 0.00915327 0)
(-0.00834542 0.00936053 0)
(-0.00800998 0.00955983 0)
(-0.00767181 0.00975121 0)
(-0.00733102 0.00993468 0)
(-0.00698775 0.0101103 0)
(-0.00664211 0.0102779 0)
(-0.00629422 0.0104376 0)
(-0.00594419 0.0105891 0)
(-0.00559212 0.010732 0)
(-0.00523809 0.0108656 0)
(-0.0048822 0.010988 0)
(-0.00452447 0.011096 0)
(-0.00416491 0.0111831 0)
(-0.00380343 0.0112375 0)
(-0.00343983 0.0112376 0)
(-0.00307381 0.0111464 0)
(-0.00270491 0.0109016 0)
(-0.00233277 0.0104057 0)
(-0.00195747 0.00951557 0)
(-0.00158045 0.00804195 0)
(-0.00120608 0.00577392 0)
(-0.000843867 0.00255153 0)
(-0.00051095 -0.00158693 0)
(-0.000233066 -0.00617417 0)
(-4.14488e-05 -0.0100417 0)
(4.27546e-05 -0.0111355 0)
(2.07862e-05 -0.00661849 0)
(-0.00911448 -0.0217668 0)
(-0.00959132 -0.021439 0)
(-0.0100456 -0.021076 0)
(-0.010479 -0.0206837 0)
(-0.0108926 -0.0202664 0)
(-0.0112872 -0.0198279 0)
(-0.0116629 -0.0193718 0)
(-0.0120202 -0.0189008 0)
(-0.0123592 -0.0184173 0)
(-0.0126803 -0.0179233 0)
(-0.0129836 -0.0174204 0)
(-0.0132694 -0.0169099 0)
(-0.0135378 -0.0163932 0)
(-0.0137892 -0.0158712 0)
(-0.0140237 -0.0153451 0)
(-0.0142416 -0.0148157 0)
(-0.0144431 -0.0142839 0)
(-0.0146285 -0.0137506 0)
(-0.0147979 -0.0132166 0)
(-0.0149518 -0.0126824 0)
(-0.0150904 -0.0121488 0)
(-0.0152139 -0.0116164 0)
(-0.0153226 -0.0110858 0)
(-0.0154168 -0.0105575 0)
(-0.0154968 -0.0100319 0)
(-0.0155629 -0.00950956 0)
(-0.0156153 -0.00899081 0)
(-0.0156544 -0.00847604 0)
(-0.0156805 -0.00796559 0)
(-0.0156938 -0.00745978 0)
(-0.0156947 -0.00695891 0)
(-0.0156833 -0.00646324 0)
(-0.01566 -0.00597298 0)
(-0.0156251 -0.00548837 0)
(-0.0155789 -0.00500959 0)
(-0.0155217 -0.00453684 0)
(-0.0154538 -0.00407028 0)
(-0.0153754 -0.00361003 0)
(-0.0152867 -0.00315623 0)
(-0.0151881 -0.002709 0)
(-0.01508 -0.00226848 0)
(-0.0149625 -0.0018348 0)
(-0.0148357 -0.00140799 0)
(-0.0147003 -0.000988033 0)
(-0.0145562 -0.000575256 0)
(-0.0144031 -0.000169693 0)
(-0.0142418 0.000228664 0)
(-0.0140729 0.00061979 0)
(-0.0138964 0.00100367 0)
(-0.0137124 0.00138023 0)
(-0.0135213 0.00174942 0)
(-0.0133233 0.0021112 0)
(-0.0131184 0.00246554 0)
(-0.0129071 0.00281241 0)
(-0.0126894 0.00315178 0)
(-0.0124656 0.00348363 0)
(-0.0122358 0.00380795 0)
(-0.0120003 0.00412471 0)
(-0.0117593 0.00443391 0)
(-0.011513 0.00473553 0)
(-0.0112615 0.00502958 0)
(-0.011005 0.00531605 0)
(-0.0107438 0.00559493 0)
(-0.0104779 0.00586624 0)
(-0.0102075 0.00612997 0)
(-0.00993291 0.00638613 0)
(-0.00965414 0.00663474 0)
(-0.0093714 0.00687579 0)
(-0.00908484 0.0071093 0)
(-0.00879461 0.00733528 0)
(-0.00850087 0.00755375 0)
(-0.00820375 0.00776473 0)
(-0.00790341 0.00796821 0)
(-0.00759997 0.00816423 0)
(-0.00729357 0.0083528 0)
(-0.00698434 0.00853392 0)
(-0.0066724 0.00870761 0)
(-0.00635789 0.00887386 0)
(-0.00604091 0.00903264 0)
(-0.00572159 0.00918386 0)
(-0.00540004 0.00932732 0)
(-0.00507637 0.0094626 0)
(-0.00475067 0.00958878 0)
(-0.00442303 0.00970409 0)
(-0.0040935 0.00980503 0)
(-0.00376208 0.00988497 0)
(-0.0034287 0.00993169 0)
(-0.0030932 0.00992332 0)
(-0.00275531 0.00982224 0)
(-0.00241471 0.00956641 0)
(-0.00207117 0.0090593 0)
(-0.00172506 0.00816139 0)
(-0.00137818 0.00669171 0)
(-0.00103529 0.00445441 0)
(-0.000706197 0.00131297 0)
(-0.000407859 -0.00266527 0)
(-0.00016484 -0.00698982 0)
(-5.54062e-06 -0.0104998 0)
(5.404e-05 -0.0112175 0)
(2.09712e-05 -0.00649098 0)
(-0.00720006 -0.0199865 0)
(-0.00765379 -0.0197383 0)
(-0.00808759 -0.0194496 0)
(-0.00850298 -0.019128 0)
(-0.00890092 -0.0187788 0)
(-0.00928195 -0.0184068 0)
(-0.00964637 -0.0180158 0)
(-0.00999441 -0.0176091 0)
(-0.0103263 -0.0171891 0)
(-0.0106421 -0.016758 0)
(-0.0109421 -0.0163173 0)
(-0.0112263 -0.0158685 0)
(-0.0114948 -0.0154128 0)
(-0.011748 -0.0149512 0)
(-0.0119858 -0.0144848 0)
(-0.0122084 -0.0140144 0)
(-0.0124161 -0.0135408 0)
(-0.012609 -0.0130649 0)
(-0.0127873 -0.0125874 0)
(-0.0129512 -0.012109 0)
(-0.013101 -0.0116302 0)
(-0.0132367 -0.0111517 0)
(-0.0133588 -0.0106741 0)
(-0.0134673 -0.0101977 0)
(-0.0135626 -0.00972323 0)
(-0.0136448 -0.00925094 0)
(-0.0137142 -0.00878129 0)
(-0.0137711 -0.00831463 0)
(-0.0138156 -0.00785129 0)
(-0.0138481 -0.00739159 0)
(-0.0138689 -0.00693579 0)
(-0.013878 -0.00648416 0)
(-0.0138759 -0.00603695 0)
(-0.0138628 -0.00559438 0)
(-0.0138389 -0.00515665 0)
(-0.0138044 -0.00472394 0)
(-0.0137596 -0.00429643 0)
(-0.0137048 -0.00387427 0)
(-0.0136402 -0.00345759 0)
(-0.0135661 -0.00304656 0)
(-0.0134827 -0.00264128 0)
(-0.0133901 -0.00224184 0)
(-0.0132886 -0.00184839 0)
(-0.0131785 -0.00146104 0)
(-0.0130601 -0.00107976 0)
(-0.0129336 -0.00070478 0)
(-0.0127991 -0.000336186 0)
(-0.0126566 2.60289e-05 0)
(-0.0125066 0.000381825 0)
(-0.0123496 0.000731153 0)
(-0.0121855 0.00107394 0)
(-0.0120145 0.00141011 0)
(-0.011837 0.00173963 0)
(-0.0116529 0.00206244 0)
(-0.0114627 0.0023785 0)
(-0.0112663 0.0026878 0)
(-0.0110641 0.00299028 0)
(-0.0108562 0.00328592 0)
(-0.0106429 0.0035747 0)
(-0.0104242 0.0038566 0)
(-0.0102003 0.00413159 0)
(-0.00997151 0.00439965 0)
(-0.00973789 0.00466078 0)
(-0.00949964 0.00491497 0)
(-0.00925691 0.00516219 0)
(-0.00900986 0.00540246 0)
(-0.00875866 0.00563575 0)
(-0.00850345 0.00586207 0)
(-0.00824439 0.00608142 0)
(-0.00798161 0.00629379 0)
(-0.00771528 0.00649919 0)
(-0.00744552 0.00669763 0)
(-0.00717247 0.00688909 0)
(-0.00689628 0.00707359 0)
(-0.00661708 0.00725114 0)
(-0.00633499 0.00742173 0)
(-0.00605015 0.00758536 0)
(-0.00576267 0.00774202 0)
(-0.00547268 0.00789166 0)
(-0.00518029 0.00803417 0)
(-0.00488562 0.00816935 0)
(-0.00458879 0.00829672 0)
(-0.00428988 0.00841533 0)
(-0.00398898 0.00852331 0)
(-0.00368615 0.00861704 0)
(-0.0033814 0.00868967 0)
(-0.00307468 0.0087287 0)
(-0.00276586 0.00871193 0)
(-0.00245473 0.00860146 0)
(-0.00214107 0.00833549 0)
(-0.00182483 0.00781891 0)
(-0.00150662 0.00691617 0)
(-0.00118859 0.00545469 0)
(-0.000875848 0.00325358 0)
(-0.000578384 0.000198538 0)
(-0.00031288 -0.00361693 0)
(-0.00010267 -0.00768403 0)
(2.69789e-05 -0.0108554 0)
(6.41148e-05 -0.0112335 0)
(2.10094e-05 -0.00634541 0)
(-0.00549588 -0.0182915 0)
(-0.00593046 -0.0181124 0)
(-0.0063478 -0.017889 0)
(-0.0067489 -0.0176299 0)
(-0.00713441 -0.0173415 0)
(-0.00750466 -0.0170289 0)
(-0.0078598 -0.0166964 0)
(-0.00819998 -0.0163475 0)
(-0.00852533 -0.0159848 0)
(-0.00883597 -0.0156104 0)
(-0.00913201 -0.0152262 0)
(-0.00941356 -0.0148334 0)
(-0.00968073 -0.0144332 0)
(-0.00993365 -0.0140268 0)
(-0.0101725 -0.0136149 0)
(-0.0103973 -0.0131985 0)
(-0.0106083 -0.0127785 0)
(-0.0108057 -0.0123554 0)
(-0.0109895 -0.01193 0)
(-0.01116 -0.011503 0)
(-0.0113174 -0.0110751 0)
(-0.0114618 -0.0106466 0)
(-0.0115935 -0.0102182 0)
(-0.0117125 -0.0097904 0)
(-0.0118192 -0.00936358 0)
(-0.0119137 -0.00893817 0)
(-0.0119961 -0.00851454 0)
(-0.0120669 -0.00809307 0)
(-0.0121261 -0.00767405 0)
(-0.0121739 -0.00725781 0)
(-0.0122106 -0.00684461 0)
(-0.0122364 -0.00643471 0)
(-0.0122515 -0.00602834 0)
(-0.0122562 -0.00562572 0)
(-0.0122506 -0.00522704 0)
(-0.0122349 -0.0048325 0)
(-0.0122096 -0.00444227 0)
(-0.0121746 -0.00405651 0)
(-0.0121303 -0.00367538 0)
(-0.0120769 -0.00329901 0)
(-0.0120146 -0.00292751 0)
(-0.0119437 -0.00256103 0)
(-0.0118644 -0.00219969 0)
(-0.0117768 -0.00184359 0)
(-0.0116811 -0.00149282 0)
(-0.0115775 -0.00114749 0)
(-0.011466 -0.000807671 0)
(-0.0113468 -0.000473515 0)
(-0.0112204 -0.000145131 0)
(-0.0110869 0.000177488 0)
(-0.0109468 0.000494384 0)
(-0.0108001 0.00080545 0)
(-0.0106469 0.00111059 0)
(-0.0104873 0.00140976 0)
(-0.0103217 0.0017029 0)
(-0.0101501 0.00198995 0)
(-0.0099728 0.00227089 0)
(-0.00978989 0.00254566 0)
(-0.00960155 0.00281423 0)
(-0.00940797 0.00307656 0)
(-0.00920932 0.00333263 0)
(-0.00900574 0.0035824 0)
(-0.0087974 0.00382585 0)
(-0.00858447 0.00406296 0)
(-0.00836709 0.0042937 0)
(-0.00814542 0.00451806 0)
(-0.00791961 0.00473602 0)
(-0.00768981 0.00494756 0)
(-0.00745616 0.00515269 0)
(-0.00721881 0.00535138 0)
(-0.0069779 0.00554362 0)
(-0.00673355 0.00572942 0)
(-0.00648592 0.00590875 0)
(-0.00623512 0.00608163 0)
(-0.00598129 0.00624803 0)
(-0.00572455 0.00640796 0)
(-0.00546504 0.0065614 0)
(-0.00520287 0.00670833 0)
(-0.00493817 0.00684869 0)
(-0.00467106 0.00698236 0)
(-0.00440165 0.00710911 0)
(-0.00413005 0.00722845 0)
(-0.00385636 0.00733937 0)
(-0.00358066 0.00743993 0)
(-0.00330302 0.00752638 0)
(-0.00302344 0.00759169 0)
(-0.00274191 0.0076231 0)
(-0.00245832 0.00759816 0)
(-0.00217253 0.00747885 0)
(-0.0018844 0.00720379 0)
(-0.00159408 0.00667956 0)
(-0.00130241 0.00577488 0)
(-0.00101184 0.00432577 0)
(-0.000727806 0.00216596 0)
(-0.000460451 -0.000797907 0)
(-0.000226064 -0.00444902 0)
(-4.65598e-05 -0.00826486 0)
(5.57174e-05 -0.011117 0)
(7.25696e-05 -0.0111905 0)
(2.08829e-05 -0.0061847 0)
(-0.0040099 -0.0166674 0)
(-0.00442593 -0.0165461 0)
(-0.00482752 -0.0163791 0)
(-0.00521505 -0.0161757 0)
(-0.00558875 -0.0159423 0)
(-0.00594861 -0.0156843 0)
(-0.00629458 -0.015406 0)
(-0.00662666 -0.0151109 0)
(-0.0069449 -0.0148017 0)
(-0.00724938 -0.0144804 0)
(-0.0075402 -0.0141488 0)
(-0.00781747 -0.0138082 0)
(-0.00808133 -0.0134598 0)
(-0.0083319 -0.0131046 0)
(-0.00856933 -0.0127435 0)
(-0.00879376 -0.0123773 0)
(-0.00900535 -0.0120068 0)
(-0.00920425 -0.0116328 0)
(-0.00939062 -0.0112559 0)
(-0.00956462 -0.0108767 0)
(-0.0097264 -0.0104959 0)
(-0.00987614 -0.010114 0)
(-0.010014 -0.00973152 0)
(-0.0101401 -0.00934889 0)
(-0.0102548 -0.00896656 0)
(-0.010358 -0.00858494 0)
(-0.0104501 -0.00820439 0)
(-0.0105312 -0.00782524 0)
(-0.0106014 -0.00744782 0)
(-0.010661 -0.0070724 0)
(-0.0107102 -0.00669926 0)
(-0.0107492 -0.00632865 0)
(-0.0107781 -0.0059608 0)
(-0.0107972 -0.00559592 0)
(-0.0108066 -0.00523421 0)
(-0.0108066 -0.00487587 0)
(-0.0107973 -0.00452106 0)
(-0.010779 -0.00416996 0)
(-0.0107518 -0.00382269 0)
(-0.010716 -0.00347942 0)
(-0.0106716 -0.00314028 0)
(-0.010619 -0.00280538 0)
(-0.0105582 -0.00247484 0)
(-0.0104896 -0.00214876 0)
(-0.0104133 -0.00182727 0)
(-0.0103296 -0.00151044 0)
(-0.0102385 -0.00119841 0)
(-0.0101405 -0.000891315 0)
(-0.0100353 -0.000589202 0)
(-0.00992284 -0.000292141 0)
(-0.0098035 -2.70955e-07 0)
(-0.00967801 0.000286405 0)
(-0.00954638 0.000567849 0)
(-0.00940867 0.000844033 0)
(-0.00926503 0.00111484 0)
(-0.00911563 0.0013802 0)
(-0.00896062 0.00164008 0)
(-0.00880017 0.00189442 0)
(-0.00863444 0.00214317 0)
(-0.00846358 0.0023863 0)
(-0.00828775 0.00262376 0)
(-0.00810711 0.00285552 0)
(-0.0079218 0.00308154 0)
(-0.00773198 0.00330179 0)
(-0.00753778 0.00351623 0)
(-0.00733937 0.00372485 0)
(-0.00713687 0.00392762 0)
(-0.00693042 0.00412451 0)
(-0.00672018 0.0043155 0)
(-0.00650627 0.00450058 0)
(-0.00628883 0.00467972 0)
(-0.006068 0.00485292 0)
(-0.0058439 0.00502016 0)
(-0.00561666 0.00518142 0)
(-0.00538641 0.00533669 0)
(-0.00515327 0.00548596 0)
(-0.00491736 0.0056292 0)
(-0.0046788 0.00576638 0)
(-0.00443772 0.00589744 0)
(-0.00419423 0.00602225 0)
(-0.00394844 0.00614054 0)
(-0.00370047 0.00625181 0)
(-0.00345041 0.00635502 0)
(-0.00319835 0.00644815 0)
(-0.00294434 0.00652732 0)
(-0.00268843 0.00658537 0)
(-0.0024306 0.00660932 0)
(-0.00217077 0.00657654 0)
(-0.00190887 0.00644903 0)
(-0.00164487 0.00616602 0)
(-0.00137906 0.00563603 0)
(-0.00111252 0.00473232 0)
(-0.000847983 0.00329958 0)
(-0.000591153 0.00118577 0)
(-0.000352244 -0.00168283 0)
(-0.000147083 -0.00516891 0)
(3.83838e-06 -0.0087406 0)
(8.09524e-05 -0.0112929 0)
(7.95584e-05 -0.0110952 0)
(2.06125e-05 -0.00601158 0)
(-0.00277617 -0.0151239 0)
(-0.00316904 -0.0150486 0)
(-0.00355013 -0.0149285 0)
(-0.00391946 -0.014773 0)
(-0.00427689 -0.0145884 0)
(-0.00462216 -0.0143799 0)
(-0.00495499 -0.0141516 0)
(-0.00527522 -0.0139066 0)
(-0.00558278 -0.0136473 0)
(-0.00587768 -0.0133758 0)
(-0.00615996 -0.0130935 0)
(-0.00642973 -0.0128018 0)
(-0.0066871 -0.0125017 0)
(-0.0069322 -0.0121943 0)
(-0.00716516 -0.0118805 0)
(-0.00738611 -0.011561 0)
(-0.00759521 -0.0112367 0)
(-0.00779259 -0.0109082 0)
(-0.00797839 -0.0105763 0)
(-0.00815276 -0.0102415 0)
(-0.00831585 -0.00990447 0)
(-0.00846781 -0.00956578 0)
(-0.00860877 -0.0092259 0)
(-0.00873889 -0.00888529 0)
(-0.00885832 -0.00854437 0)
(-0.0089672 -0.00820354 0)
(-0.0090657 -0.00786315 0)
(-0.00915398 -0.00752351 0)
(-0.00923221 -0.00718494 0)
(-0.00930053 -0.00684771 0)
(-0.00935913 -0.00651209 0)
(-0.00940817 -0.00617831 0)
(-0.00944781 -0.00584661 0)
(-0.00947823 -0.00551718 0)
(-0.00949961 -0.00519023 0)
(-0.00951212 -0.00486594 0)
(-0.00951593 -0.00454449 0)
(-0.0095112 -0.00422605 0)
(-0.0094981 -0.00391076 0)
(-0.00947683 -0.00359879 0)
(-0.00944755 -0.00329025 0)
(-0.00941045 -0.00298529 0)
(-0.00936572 -0.00268403 0)
(-0.0093135 -0.0023866 0)
(-0.00925396 -0.00209311 0)
(-0.00918725 -0.00180362 0)
(-0.00911355 -0.00151826 0)
(-0.00903291 -0.00123708 0)
(-0.00894541 -0.000960173 0)
(-0.00885162 -0.000687704 0)
(-0.00875166 -0.000419841 0)
(-0.00864522 -0.000156588 0)
(-0.00853251 0.00010202 0)
(-0.008414 0.000355895 0)
(-0.00829 0.000605047 0)
(-0.00816043 0.000849378 0)
(-0.00802544 0.00108882 0)
(-0.00788518 0.00132331 0)
(-0.00773979 0.00155279 0)
(-0.00758943 0.00177721 0)
(-0.00743424 0.00199653 0)
(-0.00727437 0.0022107 0)
(-0.00710996 0.00241968 0)
(-0.00694114 0.00262343 0)
(-0.00676807 0.00282191 0)
(-0.00659087 0.0030151 0)
(-0.00640968 0.00320295 0)
(-0.00622464 0.00338543 0)
(-0.00603588 0.00356253 0)
(-0.00584352 0.0037342 0)
(-0.00564769 0.00390044 0)
(-0.00544853 0.00406121 0)
(-0.00524615 0.0042165 0)
(-0.00504068 0.00436628 0)
(-0.00483225 0.00451053 0)
(-0.00462097 0.00464924 0)
(-0.00440696 0.00478238 0)
(-0.00419034 0.00490989 0)
(-0.00397123 0.00503172 0)
(-0.00374973 0.00514772 0)
(-0.00352597 0.00525763 0)
(-0.00330004 0.00536089 0)
(-0.00307204 0.00545643 0)
(-0.00284206 0.00554218 0)
(-0.00261017 0.00561416 0)
(-0.00237639 0.00566507 0)
(-0.00214075 0.00568178 0)
(-0.00190321 0.00564156 0)
(-0.00166374 0.00550655 0)
(-0.00142242 0.00521677 0)
(-0.0011797 0.00468294 0)
(-0.000936866 0.00378305 0)
(-0.000696922 0.00237047 0)
(-0.000465746 0.000306973 0)
(-0.00025357 -0.00246296 0)
(-7.57253e-05 -0.00578422 0)
(4.87443e-05 -0.00911958 0)
(0.000102909 -0.0113913 0)
(8.52578e-05 -0.0109539 0)
(2.02452e-05 -0.00582854 0)
(-0.00181064 -0.0136853 0)
(-0.00217337 -0.0136466 0)
(-0.00252641 -0.0135648 0)
(-0.00286981 -0.013449 0)
(-0.0032034 -0.0133058 0)
(-0.00352686 -0.0131401 0)
(-0.00383981 -0.0129556 0)
(-0.00414198 -0.0127552 0)
(-0.00443317 -0.0125408 0)
(-0.00471328 -0.0123142 0)
(-0.00498227 -0.0120767 0)
(-0.00524016 -0.0118295 0)
(-0.00548698 -0.0115736 0)
(-0.00572279 -0.01131 0)
(-0.00594768 -0.0110394 0)
(-0.00616173 -0.0107627 0)
(-0.00636503 -0.0104806 0)
(-0.00655769 -0.0101939 0)
(-0.00673982 -0.00990328 0)
(-0.00691152 -0.00960932 0)
(-0.00707292 -0.00931261 0)
(-0.00722414 -0.00901371 0)
(-0.00736529 -0.00871311 0)
(-0.00749649 -0.00841125 0)
(-0.00761787 -0.00810856 0)
(-0.00772956 -0.00780541 0)
(-0.00783168 -0.00750215 0)
(-0.00792436 -0.00719911 0)
(-0.00800775 -0.00689656 0)
(-0.00808198 -0.00659478 0)
(-0.0081472 -0.00629401 0)
(-0.00820354 -0.00599451 0)
(-0.00825116 -0.00569648 0)
(-0.0082902 -0.00540013 0)
(-0.00832082 -0.00510566 0)
(-0.00834316 -0.00481326 0)
(-0.00835738 -0.00452309 0)
(-0.00836364 -0.00423533 0)
(-0.00836208 -0.00395012 0)
(-0.00835285 -0.00366762 0)
(-0.0083361 -0.00338797 0)
(-0.008312 -0.0031113 0)
(-0.00828068 -0.00283772 0)
(-0.00824228 -0.00256736 0)
(-0.00819692 -0.00230033 0)
(-0.00814474 -0.00203673 0)
(-0.00808591 -0.00177667 0)
(-0.00802066 -0.00152025 0)
(-0.00794923 -0.0012676 0)
(-0.00787166 -0.00101882 0)
(-0.00778789 -0.000773921 0)
(-0.00769809 -0.000533031 0)
(-0.00760258 -0.000296252 0)
(-0.00750126 -6.36588e-05 0)
(-0.00739432 0.000164709 0)
(-0.00728223 0.000388811 0)
(-0.00716499 0.000608577 0)
(-0.0070427 0.000823931 0)
(-0.00691551 0.00103481 0)
(-0.00678353 0.00124117 0)
(-0.00664691 0.00144294 0)
(-0.00650577 0.00164008 0)
(-0.00636024 0.00183254 0)
(-0.00621046 0.00202027 0)
(-0.00605655 0.00220325 0)
(-0.00589864 0.00238141 0)
(-0.00573687 0.00255474 0)
(-0.00557135 0.00272318 0)
(-0.00540222 0.00288672 0)
(-0.00522959 0.00304531 0)
(-0.00505359 0.00319892 0)
(-0.00487434 0.00334754 0)
(-0.00469195 0.00349113 0)
(-0.00450654 0.00362966 0)
(-0.00431823 0.00376311 0)
(-0.00412714 0.00389145 0)
(-0.00393338 0.00401465 0)
(-0.00373706 0.00413267 0)
(-0.00353831 0.00424541 0)
(-0.00333722 0.00435275 0)
(-0.0031339 0.00445438 0)
(-0.00292846 0.00454976 0)
(-0.00272099 0.00463776 0)
(-0.00251158 0.00471626 0)
(-0.00230029 0.0047812 0)
(-0.00208718 0.00482517 0)
(-0.00187226 0.00483494 0)
(-0.00165554 0.00478774 0)
(-0.00143706 0.004646 0)
(-0.001217 0.0043507 0)
(-0.000995933 0.00381496 0)
(-0.000775376 0.00292166 0)
(-0.000558546 0.00153286 0)
(-0.000351491 -0.000476433 0)
(-0.000164324 -0.00314496 0)
(-1.18328e-05 -0.00630245 0)
(8.8303e-05 -0.00940987 0)
(0.000121674 -0.0114201 0)
(8.97052e-05 -0.0107728 0)
(1.97785e-05 -0.00563781 0)
(-0.0010784 -0.0123745 0)
(-0.00140694 -0.012367 0)
(-0.00172709 -0.0123167 0)
(-0.0020392 -0.0122331 0)
(-0.0023434 -0.0121232 0)
(-0.00263951 -0.0119921 0)
(-0.0029272 -0.0118436 0)
(-0.0032062 -0.0116801 0)
(-0.00347623 -0.0115035 0)
(-0.00373711 -0.0113152 0)
(-0.0039887 -0.0111162 0)
(-0.00423088 -0.0109076 0)
(-0.00446359 -0.0106902 0)
(-0.00468679 -0.0104651 0)
(-0.00490045 -0.0102328 0)
(-0.0051046 -0.00999428 0)
(-0.00529925 -0.00975013 0)
(-0.00548444 -0.00950105 0)
(-0.00566022 -0.0092477 0)
(-0.00582665 -0.00899067 0)
(-0.00598381 -0.00873053 0)
(-0.00613177 -0.00846782 0)
(-0.00627062 -0.00820301 0)
(-0.00640044 -0.00793654 0)
(-0.00652134 -0.00766882 0)
(-0.0066334 -0.00740021 0)
(-0.00673674 -0.00713105 0)
(-0.00683145 -0.00686165 0)
(-0.00691765 -0.00659227 0)
(-0.00699544 -0.00632319 0)
(-0.00706495 -0.00605464 0)
(-0.00712628 -0.00578686 0)
(-0.00717957 -0.00552005 0)
(-0.00722493 -0.00525441 0)
(-0.0072625 -0.00499015 0)
(-0.0072924 -0.00472743 0)
(-0.00731475 -0.00446643 0)
(-0.00732968 -0.00420731 0)
(-0.00733732 -0.00395023 0)
(-0.0073378 -0.00369532 0)
(-0.00733125 -0.00344272 0)
(-0.0073178 -0.00319257 0)
(-0.00729756 -0.002945 0)
(-0.00727068 -0.00270012 0)
(-0.00723729 -0.00245805 0)
(-0.00719751 -0.00221891 0)
(-0.00715152 -0.0019828 0)
(-0.00709945 -0.00174984 0)
(-0.00704136 -0.00152009 0)
(-0.00697742 -0.00129363 0)
(-0.0069078 -0.00107055 0)
(-0.00683259 -0.000850948 0)
(-0.00675174 -0.000634917 0)
(-0.00666553 -0.000422547 0)
(-0.00657412 -0.000213979 0)
(-0.00647754 -9.2269e-06 0)
(-0.00637607 0.000191658 0)
(-0.00626982 0.000388625 0)
(-0.00615888 0.000581674 0)
(-0.00604336 0.00077068 0)
(-0.00592339 0.000955584 0)
(-0.00579909 0.00113634 0)
(-0.00567058 0.00131289 0)
(-0.00553798 0.00148519 0)
(-0.00540141 0.00165319 0)
(-0.00526099 0.00181685 0)
(-0.00511685 0.00197613 0)
(-0.0049691 0.00213099 0)
(-0.00481785 0.00228138 0)
(-0.00466323 0.00242728 0)
(-0.00450535 0.00256866 0)
(-0.00434432 0.00270546 0)
(-0.00418025 0.00283768 0)
(-0.00401326 0.00296527 0)
(-0.00384346 0.0030882 0)
(-0.00367096 0.00320645 0)
(-0.00349586 0.00331997 0)
(-0.00331828 0.00342872 0)
(-0.00313832 0.0035326 0)
(-0.00295608 0.00363147 0)
(-0.00277168 0.00372502 0)
(-0.00258521 0.00381269 0)
(-0.00239676 0.00389332 0)
(-0.00220642 0.00396473 0)
(-0.00201426 0.00402283 0)
(-0.00182034 0.0040601 0)
(-0.0016247 0.00406327 0)
(-0.00142737 0.00400963 0)
(-0.00122845 0.00386197 0)
(-0.00102821 0.00356243 0)
(-0.000827376 0.00302669 0)
(-0.000627629 0.00214267 0)
(-0.000432384 0.000780972 0)
(-0.00024787 -0.0011707 0)
(-8.41518e-05 -0.00373575 0)
(4.47509e-05 -0.00673124 0)
(0.000122667 -0.00961952 0)
(0.00013742 -0.011387 0)
(9.30188e-05 -0.0105575 0)
(1.92375e-05 -0.00544154 0)
(-0.000507542 -0.0111955 0)
(-0.000803874 -0.0112168 0)
(-0.00109246 -0.0111939 0)
(-0.00137394 -0.011137 0)
(-0.00164877 -0.0110538 0)
(-0.00191702 -0.0109499 0)
(-0.00217856 -0.0108295 0)
(-0.00243317 -0.0106952 0)
(-0.00268061 -0.0105487 0)
(-0.00292066 -0.0103912 0)
(-0.00315311 -0.0102238 0)
(-0.00337779 -0.0100473 0)
(-0.00359454 -0.00986252 0)
(-0.00380325 -0.00967019 0)
(-0.00400382 -0.009471 0)
(-0.00419619 -0.00926562 0)
(-0.0043803 -0.00905468 0)
(-0.00455614 -0.00883878 0)
(-0.00472369 -0.0086185 0)
(-0.00488296 -0.0083944 0)
(-0.00503398 -0.00816699 0)
(-0.00517678 -0.00793677 0)
(-0.00531142 -0.00770419 0)
(-0.00543796 -0.00746967 0)
(-0.00555645 -0.00723359 0)
(-0.00566696 -0.00699631 0)
(-0.00576957 -0.00675814 0)
(-0.00586436 -0.00651937 0)
(-0.00595139 -0.00628027 0)
(-0.00603076 -0.00604109 0)
(-0.00610255 -0.00580206 0)
(-0.00616687 -0.00556339 0)
(-0.00622379 -0.00532529 0)
(-0.00627343 -0.00508795 0)
(-0.00631589 -0.00485156 0)
(-0.00635127 -0.00461627 0)
(-0.00637969 -0.00438227 0)
(-0.00640123 -0.0041497 0)
(-0.00641603 -0.00391871 0)
(-0.00642417 -0.00368946 0)
(-0.00642578 -0.00346207 0)
(-0.00642099 -0.00323667 0)
(-0.0064099 -0.00301339 0)
(-0.0063926 -0.00279235 0)
(-0.0063692 -0.00257368 0)
(-0.00633986 -0.00235748 0)
(-0.00630469 -0.00214385 0)
(-0.00626376 -0.00193288 0)
(-0.00621724 -0.00172468 0)
(-0.00616519 -0.00151933 0)
(-0.00610764 -0.00131693 0)
(-0.00604482 -0.00111754 0)
(-0.00597699 -0.000921265 0)
(-0.00590422 -0.00072821 0)
(-0.00582642 -0.000538422 0)
(-0.0057437 -0.000352005 0)
(-0.00565623 -0.000169009 0)
(-0.00556391 1.05213e-05 0)
(-0.00546715 0.000186475 0)
(-0.00536629 0.000358854 0)
(-0.0052612 0.000527612 0)
(-0.00515197 0.000692673 0)
(-0.00503871 0.000853979 0)
(-0.00492156 0.00101148 0)
(-0.00480061 0.00116512 0)
(-0.00467598 0.00131486 0)
(-0.00454779 0.00146064 0)
(-0.00441613 0.00160243 0)
(-0.00428113 0.00174019 0)
(-0.00414288 0.00187387 0)
(-0.0040015 0.00200344 0)
(-0.00385709 0.00212886 0)
(-0.00370977 0.00225009 0)
(-0.00355963 0.00236711 0)
(-0.00340678 0.00247988 0)
(-0.00325133 0.00258836 0)
(-0.00309337 0.0026925 0)
(-0.00293302 0.00279227 0)
(-0.00277037 0.00288756 0)
(-0.00260553 0.00297821 0)
(-0.00243858 0.00306393 0)
(-0.00226962 0.00314411 0)
(-0.00209875 0.00321759 0)
(-0.00192605 0.00328215 0)
(-0.0017516 0.00333363 0)
(-0.00157546 0.00336449 0)
(-0.0013977 0.00336144 0)
(-0.00121837 0.0033019 0)
(-0.00103763 0.00314917 0)
(-0.000855839 0.00284666 0)
(-0.000673867 0.00231279 0)
(-0.00049356 0.00144057 0)
(-0.000318464 0.000109044 0)
(-0.000154923 -0.00178208 0)
(-1.2795e-05 -0.00424224 0)
(9.45624e-05 -0.00707815 0)
(0.000152299 -0.00975648 0)
(0.000150452 -0.0112994 0)
(9.5356e-05 -0.0103136 0)
(1.86534e-05 -0.00524167 0)
(-3.35791e-05 -0.0101271 0)
(-0.00030389 -0.0101761 0)
(-0.000566806 -0.0101792 0)
(-0.00082302 -0.0101463 0)
(-0.00107311 -0.010086 0)
(-0.00131735 -0.0100049 0)
(-0.00155579 -0.00990743 0)
(-0.00178836 -0.00979672 0)
(-0.0020149 -0.00967462 0)
(-0.00223523 -0.0095424 0)
(-0.00244918 -0.00940101 0)
(-0.00265658 -0.00925122 0)
(-0.00285727 -0.00909374 0)
(-0.00305111 -0.00892921 0)
(-0.00323799 -0.00875823 0)
(-0.00341781 -0.0085814 0)
(-0.00359047 -0.00839925 0)
(-0.00375592 -0.0082123 0)
(-0.00391412 -0.00802107 0)
(-0.00406505 -0.00782602 0)
(-0.00420868 -0.00762763 0)
(-0.00434504 -0.00742632 0)
(-0.00447414 -0.00722252 0)
(-0.004596 -0.00701662 0)
(-0.00471066 -0.00680897 0)
(-0.00481815 -0.0065999 0)
(-0.00491853 -0.00638972 0)
(-0.00501184 -0.00617869 0)
(-0.00509814 -0.00596708 0)
(-0.0051775 -0.00575511 0)
(-0.00524999 -0.005543 0)
(-0.00531566 -0.00533095 0)
(-0.0053746 -0.00511915 0)
(-0.00542689 -0.00490777 0)
(-0.0054726 -0.00469699 0)
(-0.00551181 -0.00448698 0)
(-0.00554461 -0.00427788 0)
(-0.00557109 -0.00406986 0)
(-0.00559133 -0.00386304 0)
(-0.00560543 -0.00365758 0)
(-0.00561347 -0.0034536 0)
(-0.00561556 -0.00325123 0)
(-0.00561179 -0.00305059 0)
(-0.0056023 -0.00285179 0)
(-0.00558716 -0.00265496 0)
(-0.00556646 -0.00246018 0)
(-0.00554029 -0.00226758 0)
(-0.00550876 -0.00207723 0)
(-0.00547198 -0.00188925 0)
(-0.00543003 -0.00170371 0)
(-0.00538305 -0.00152072 0)
(-0.00533113 -0.00134037 0)
(-0.00527436 -0.00116273 0)
(-0.00521285 -0.000987846 0)
(-0.00514671 -0.000815795 0)
(-0.00507601 -0.000646673 0)
(-0.00500079 -0.00048055 0)
(-0.0049214 -0.000317487 0)
(-0.00483774 -0.000157634 0)
(-0.00474968 -9.67917e-07 0)
(-0.00465764 0.000152475 0)
(-0.00456178 0.000302629 0)
(-0.00446214 0.00044944 0)
(-0.00435879 0.000592862 0)
(-0.00425186 0.000732826 0)
(-0.00414143 0.000869284 0)
(-0.0040276 0.00100219 0)
(-0.00391048 0.0011315 0)
(-0.00379017 0.00125717 0)
(-0.00366677 0.00137915 0)
(-0.00354037 0.00149742 0)
(-0.00341109 0.00161192 0)
(-0.00327901 0.00172262 0)
(-0.00314424 0.00182948 0)
(-0.00300688 0.00193248 0)
(-0.00286702 0.00203156 0)
(-0.00272477 0.00212669 0)
(-0.00258021 0.00221781 0)
(-0.00243344 0.00230482 0)
(-0.00228455 0.00238756 0)
(-0.00213365 0.00246571 0)
(-0.00198082 0.00253868 0)
(-0.00182614 0.00260526 0)
(-0.00166971 0.00266323 0)
(-0.00151161 0.00270839 0)
(-0.00135189 0.00273317 0)
(-0.00119064 0.00272432 0)
(-0.00102796 0.00265947 0)
(-0.000864057 0.00250255 0)
(-0.000699375 0.00219836 0)
(-0.000534904 0.00166819 0)
(-0.000372637 0.000810185 0)
(-0.000216251 -0.000488375 0)
(-7.21243e-05 -0.00231647 0)
(5.00898e-05 -0.00467095 0)
(0.000137725 -0.00735034 0)
(0.000177298 -0.00982829 0)
(0.000160852 -0.0111643 0)
(9.67427e-05 -0.0100461 0)
(1.8012e-05 -0.00503991 0)
(0.000358361 -0.00914465 0)
(0.000110033 -0.00921975 0)
(-0.0001315 -0.0092477 0)
(-0.000366701 -0.00923807 0)
(-0.000596065 -0.00919963 0)
(-0.000819902 -0.00913951 0)
(-0.00103835 -0.00906288 0)
(-0.00125145 -0.00897312 0)
(-0.00145916 -0.00887237 0)
(-0.00166139 -0.00876201 0)
(-0.00185805 -0.00864304 0)
(-0.002049 -0.00851623 0)
(-0.00223414 -0.00838224 0)
(-0.00241336 -0.00824167 0)
(-0.00258655 -0.00809508 0)
(-0.00275361 -0.00794297 0)
(-0.00291447 -0.00778584 0)
(-0.00306905 -0.00762415 0)
(-0.0032173 -0.00745833 0)
(-0.00335918 -0.00728882 0)
(-0.00349467 -0.00711602 0)
(-0.00362373 -0.00694033 0)
(-0.00374637 -0.00676211 0)
(-0.00386259 -0.00658173 0)
(-0.00397239 -0.0063995 0)
(-0.00407579 -0.00621574 0)
(-0.00417282 -0.00603073 0)
(-0.00426351 -0.00584472 0)
(-0.00434789 -0.00565795 0)
(-0.00442601 -0.00547063 0)
(-0.00449791 -0.00528296 0)
(-0.00456364 -0.00509512 0)
(-0.00462325 -0.00490728 0)
(-0.00467679 -0.00471961 0)
(-0.00472433 -0.00453228 0)
(-0.00476593 -0.00434542 0)
(-0.00480166 -0.00415918 0)
(-0.00483158 -0.00397371 0)
(-0.00485579 -0.00378915 0)
(-0.00487435 -0.00360561 0)
(-0.00488734 -0.00342323 0)
(-0.00489485 -0.00324214 0)
(-0.00489695 -0.00306244 0)
(-0.00489371 -0.00288426 0)
(-0.00488524 -0.00270769 0)
(-0.00487161 -0.00253284 0)
(-0.00485293 -0.00235981 0)
(-0.00482926 -0.00218869 0)
(-0.00480072 -0.00201959 0)
(-0.0047674 -0.00185257 0)
(-0.00472936 -0.00168774 0)
(-0.00468668 -0.00152516 0)
(-0.00463948 -0.00136492 0)
(-0.00458783 -0.00120708 0)
(-0.00453183 -0.00105172 0)
(-0.00447159 -0.000898892 0)
(-0.00440712 -0.000748698 0)
(-0.00433862 -0.000601217 0)
(-0.00426619 -0.000456442 0)
(-0.00418975 -0.000314501 0)
(-0.00410947 -0.000175493 0)
(-0.00402553 -3.94314e-05 0)
(-0.00393796 9.36379e-05 0)
(-0.00384694 0.000223655 0)
(-0.00375257 0.000350591 0)
(-0.00365489 0.000474455 0)
(-0.00355399 0.000595134 0)
(-0.00344997 0.00071258 0)
(-0.00334292 0.000826752 0)
(-0.00323293 0.000937607 0)
(-0.00312011 0.0010451 0)
(-0.00300454 0.00114919 0)
(-0.00288631 0.00124985 0)
(-0.00276553 0.00134702 0)
(-0.00264227 0.00144068 0)
(-0.00251663 0.00153078 0)
(-0.0023887 0.00161728 0)
(-0.00225857 0.00170012 0)
(-0.00212633 0.0017792 0)
(-0.00199206 0.00185435 0)
(-0.00185587 0.00192526 0)
(-0.00171783 0.0019913 0)
(-0.00157804 0.00205128 0)
(-0.00143656 0.00210293 0)
(-0.00129349 0.00214206 0)
(-0.0011489 0.00216111 0)
(-0.00100287 0.00214691 0)
(-0.000855538 0.00207736 0)
(-0.000707163 0.0019171 0)
(-0.000558277 0.00161245 0)
(-0.000409972 0.00108768 0)
(-0.000264366 0.000246076 0)
(-0.000125371 -0.0010171 0)
(7.50892e-07 -0.00278017 0)
(0.00010474 -0.00502877 0)
(0.000174516 -0.00755522 0)
(0.000197912 -0.00984249 0)
(0.000168815 -0.0109885 0)
(9.72848e-05 -0.00975973 0)
(1.73344e-05 -0.00483788 0)
(0.000641421 -0.00824424 0)
(0.000417508 -0.0083417 0)
(0.000199184 -0.00839215 0)
(-1.37216e-05 -0.00840422 0)
(-0.000221533 -0.00838647 0)
(-0.000424469 -0.00834623 0)
(-0.00062266 -0.00828901 0)
(-0.000816169 -0.0082185 0)
(-0.001005 -0.00813707 0)
(-0.00118912 -0.00804624 0)
(-0.00136847 -0.00794707 0)
(-0.00154295 -0.0078404 0)
(-0.00171247 -0.00772689 0)
(-0.00187695 -0.00760714 0)
(-0.00203628 -0.00748169 0)
(-0.00219037 -0.00735104 0)
(-0.00233914 -0.00721563 0)
(-0.00248252 -0.0070759 0)
(-0.00262043 -0.00693226 0)
(-0.00275282 -0.00678508 0)
(-0.00287963 -0.00663475 0)
(-0.00300082 -0.0064816 0)
(-0.00311637 -0.00632599 0)
(-0.00322625 -0.00616821 0)
(-0.00333046 -0.00600859 0)
(-0.00342899 -0.00584739 0)
(-0.00352186 -0.00568487 0)
(-0.00360906 -0.00552127 0)
(-0.00369061 -0.00535681 0)
(-0.00376654 -0.00519167 0)
(-0.00383686 -0.00502605 0)
(-0.00390161 -0.00486011 0)
(-0.00396082 -0.004694 0)
(-0.00401454 -0.00452787 0)
(-0.0040628 -0.00436188 0)
(-0.00410565 -0.00419615 0)
(-0.00414316 -0.00403081 0)
(-0.00417536 -0.00386601 0)
(-0.00420234 -0.00370185 0)
(-0.00422413 -0.00353847 0)
(-0.00424081 -0.00337597 0)
(-0.00425245 -0.00321448 0)
(-0.0042591 -0.00305411 0)
(-0.00426085 -0.00289495 0)
(-0.00425777 -0.00273712 0)
(-0.00424993 -0.00258072 0)
(-0.00423739 -0.00242583 0)
(-0.00422023 -0.00227255 0)
(-0.00419854 -0.00212097 0)
(-0.00417238 -0.00197116 0)
(-0.00414183 -0.0018232 0)
(-0.00410699 -0.00167719 0)
(-0.00406794 -0.0015332 0)
(-0.0040247 -0.00139128 0)
(-0.00397739 -0.00125153 0)
(-0.00392616 -0.00111401 0)
(-0.00387111 -0.000978768 0)
(-0.00381222 -0.000845896 0)
(-0.00374956 -0.000715416 0)
(-0.0036834 -0.000587418 0)
(-0.00361371 -0.00046198 0)
(-0.00354046 -0.000339132 0)
(-0.00346385 -0.000218914 0)
(-0.0033839 -0.000101408 0)
(-0.00330045 1.33446e-05 0)
(-0.00321391 0.000125239 0)
(-0.0031246 0.000234304 0)
(-0.00303234 0.000340482 0)
(-0.00293721 0.000443774 0)
(-0.00283932 0.000544087 0)
(-0.00273874 0.000641373 0)
(-0.00263556 0.000735592 0)
(-0.00252988 0.000826705 0)
(-0.00242177 0.000914674 0)
(-0.00231132 0.000999461 0)
(-0.00219861 0.00108102 0)
(-0.00208373 0.00115931 0)
(-0.00196675 0.00123427 0)
(-0.00184777 0.00130579 0)
(-0.00172686 0.00137371 0)
(-0.00160412 0.00143769 0)
(-0.00147962 0.00149713 0)
(-0.00135345 0.00155081 0)
(-0.00122568 0.00159646 0)
(-0.00109641 0.00162989 0)
(-0.000965697 0.00164357 0)
(-0.000833662 0.00162446 0)
(-0.000700464 0.00155082 0)
(-0.000566407 0.00138806 0)
(-0.0004321 0.00108415 0)
(-0.000298733 0.000566378 0)
(-0.000168514 -0.000256839 0)
(-4.53804e-05 -0.00148256 0)
(6.43726e-05 -0.0031791 0)
(0.000151736 -0.00532218 0)
(0.000205421 -0.00769983 0)
(0.000214516 -0.00980622 0)
(0.000174571 -0.0107785 0)
(9.70789e-05 -0.00945896 0)
(1.66291e-05 -0.00463698 0)
(0.000789868 -0.00745082 0)
(0.000598618 -0.00756426 0)
(0.000410933 -0.00763175 0)
(0.000226775 -0.00766085 0)
(4.59671e-05 -0.00765968 0)
(-0.000131581 -0.00763557 0)
(-0.000305892 -0.00759418 0)
(-0.00047695 -0.0075394 0)
(-0.000644685 -0.00747377 0)
(-0.000808992 -0.00739895 0)
(-0.000969746 -0.00731608 0)
(-0.00112681 -0.00722602 0)
(-0.00128003 -0.00712948 0)
(-0.00142927 -0.00702707 0)
(-0.0015744 -0.00691934 0)
(-0.00171526 -0.00680676 0)
(-0.00185174 -0.00668977 0)
(-0.00198372 -0.00656877 0)
(-0.0021111 -0.00644414 0)
(-0.00223379 -0.00631623 0)
(-0.00235169 -0.00618537 0)
(-0.00246474 -0.00605187 0)
(-0.00257288 -0.00591604 0)
(-0.00267608 -0.00577817 0)
(-0.00277429 -0.0056385 0)
(-0.0028675 -0.0054973 0)
(-0.00295568 -0.0053548 0)
(-0.00303884 -0.0052112 0)
(-0.00311696 -0.0050667 0)
(-0.00319004 -0.00492147 0)
(-0.0032581 -0.00477569 0)
(-0.00332114 -0.00462949 0)
(-0.00337918 -0.00448301 0)
(-0.00343225 -0.0043364 0)
(-0.00348038 -0.00418977 0)
(-0.00352361 -0.00404325 0)
(-0.00356196 -0.00389696 0)
(-0.00359547 -0.00375101 0)
(-0.0036242 -0.00360551 0)
(-0.00364819 -0.00346058 0)
(-0.0036675 -0.00331633 0)
(-0.00368217 -0.00317285 0)
(-0.00369228 -0.00303025 0)
(-0.00369788 -0.00288863 0)
(-0.00369903 -0.00274808 0)
(-0.00369578 -0.0026087 0)
(-0.00368821 -0.00247057 0)
(-0.00367637 -0.00233378 0)
(-0.00366033 -0.00219841 0)
(-0.00364017 -0.00206455 0)
(-0.003616 -0.00193228 0)
(-0.00358784 -0.00180165 0)
(-0.00355573 -0.00167275 0)
(-0.0035198 -0.00154565 0)
(-0.00348013 -0.00142043 0)
(-0.00343675 -0.00129713 0)
(-0.00338974 -0.00117583 0)
(-0.00333913 -0.00105656 0)
(-0.00328509 -0.000939439 0)
(-0.00322773 -0.000824485 0)
(-0.00316697 -0.000711717 0)
(-0.00310286 -0.000601241 0)
(-0.00303562 -0.000493125 0)
(-0.00296542 -0.000387377 0)
(-0.00289245 -0.000284051 0)
(-0.00281647 -0.000183279 0)
(-0.00273741 -8.50535e-05 0)
(-0.00265545 1.05961e-05 0)
(-0.00257081 0.000103577 0)
(-0.00248378 0.000193891 0)
(-0.00239425 0.000281509 0)
(-0.00230225 0.00036639 0)
(-0.00220789 0.000448484 0)
(-0.00211123 0.000527748 0)
(-0.00201236 0.000604138 0)
(-0.00191136 0.000677614 0)
(-0.00180831 0.000748126 0)
(-0.00170328 0.00081561 0)
(-0.00159636 0.000879967 0)
(-0.00148763 0.000941023 0)
(-0.00137716 0.00099845 0)
(-0.00126502 0.00105162 0)
(-0.0011513 0.00109933 0)
(-0.00103607 0.00113931 0)
(-0.000919405 0.00116738 0)
(-0.000801402 0.00117608 0)
(-0.00068218 0.00115253 0)
(-0.00056193 0.00107539 0)
(-0.000441005 0.000910959 0)
(-0.000320077 0.000608911 0)
(-0.000200378 9.96179e-05 0)
(-8.43018e-05 -0.000703457 0)
(2.41672e-05 -0.00188996 0)
(0.000118937 -0.00351897 0)
(0.000191303 -0.00555747 0)
(0.000230671 -0.00779089 0)
(0.000227306 -0.00972626 0)
(0.000178261 -0.0105401 0)
(9.61952e-05 -0.00914783 0)
(1.59079e-05 -0.00443847 0)
(0.000823651 -0.00680171 0)
(0.000673453 -0.00692231 0)
(0.000523878 -0.00699792 0)
(0.000374924 -0.00703533 0)
(0.000226508 -0.00704241 0)
(7.86764e-05 -0.00702658 0)
(-6.84117e-05 -0.00699368 0)
(-0.000214534 -0.0069478 0)
(-0.000359414 -0.00689164 0)
(-0.000502748 -0.00682696 0)
(-0.000644224 -0.00675495 0)
(-0.000783538 -0.00667648 0)
(-0.000920403 -0.00659226 0)
(-0.00105455 -0.00650286 0)
(-0.00118573 -0.0064088 0)
(-0.0013137 -0.00631051 0)
(-0.00143827 -0.00620839 0)
(-0.00155923 -0.00610277 0)
(-0.00167643 -0.00599398 0)
(-0.00178971 -0.00588232 0)
(-0.00189896 -0.00576806 0)
(-0.00200407 -0.00565146 0)
(-0.00210495 -0.00553278 0)
(-0.00220153 -0.00541224 0)
(-0.00229374 -0.00529009 0)
(-0.00238153 -0.00516652 0)
(-0.00246488 -0.00504174 0)
(-0.00254375 -0.00491592 0)
(-0.00261812 -0.00478924 0)
(-0.00268799 -0.00466185 0)
(-0.00275334 -0.00453387 0)
(-0.00281417 -0.00440545 0)
(-0.0028705 -0.00427671 0)
(-0.00292232 -0.00414775 0)
(-0.00296967 -0.00401869 0)
(-0.00301257 -0.00388963 0)
(-0.00305103 -0.00376067 0)
(-0.00308509 -0.00363191 0)
(-0.00311479 -0.00350346 0)
(-0.00314016 -0.00337541 0)
(-0.00316125 -0.00324787 0)
(-0.0031781 -0.00312091 0)
(-0.00319076 -0.00299463 0)
(-0.00319928 -0.00286913 0)
(-0.00320371 -0.00274449 0)
(-0.00320409 -0.00262079 0)
(-0.00320049 -0.00249811 0)
(-0.00319296 -0.00237655 0)
(-0.00318157 -0.00225617 0)
(-0.00316637 -0.00213705 0)
(-0.00314741 -0.00201926 0)
(-0.00312475 -0.00190287 0)
(-0.0030985 -0.00178796 0)
(-0.00306871 -0.00167459 0)
(-0.00303542 -0.00156281 0)
(-0.00299869 -0.0014527 0)
(-0.00295864 -0.00134431 0)
(-0.00291537 -0.00123771 0)
(-0.00286887 -0.00113296 0)
(-0.00281912 -0.00103009 0)
(-0.00276634 -0.000929175 0)
(-0.0027107 -0.000830271 0)
(-0.00265204 -0.00073345 0)
(-0.00259031 -0.000638753 0)
(-0.0025258 -0.000546231 0)
(-0.00245871 -0.000455856 0)
(-0.00238894 -0.000367755 0)
(-0.00231671 -0.000281947 0)
(-0.00224196 -0.000198547 0)
(-0.00216456 -0.000117539 0)
(-0.00208474 -3.89342e-05 0)
(-0.00200267 3.71913e-05 0)
(-0.00191843 0.000110803 0)
(-0.00183208 0.000181864 0)
(-0.00174366 0.000250341 0)
(-0.00165324 0.000316191 0)
(-0.00156089 0.000379366 0)
(-0.00146669 0.000439799 0)
(-0.0013707 0.000497394 0)
(-0.00127301 0.00055197 0)
(-0.00117368 0.000603201 0)
(-0.00107278 0.000650459 0)
(-0.000970398 0.000692542 0)
(-0.000866592 0.000727189 0)
(-0.000761448 0.00075025 0)
(-0.000655058 0.000754345 0)
(-0.000547556 0.000726803 0)
(-0.000439156 0.000646751 0)
(-0.000330242 0.000481401 0)
(-0.000221537 0.000182254 0)
(-0.000114426 -0.000317244 0)
(-1.12944e-05 -0.00109868 0)
(8.39169e-05 -0.00224459 0)
(0.000165134 -0.00380552 0)
(0.000224009 -0.00574088 0)
(0.000250694 -0.00783503 0)
(0.000236595 -0.00960913 0)
(0.000180078 -0.0102791 0)
(9.47058e-05 -0.00883008 0)
(1.51709e-05 -0.00424345 0)
(0.000813173 -0.00633056 0)
(0.000706094 -0.00644493 0)
(0.00059608 -0.00651507 0)
(0.000483148 -0.00654746 0)
(0.000367187 -0.00655011 0)
(0.000248474 -0.00653071 0)
(0.000127627 -0.00649546 0)
(5.07853e-06 -0.00644873 0)
(-0.000118595 -0.00639336 0)
(-0.000242788 -0.00633114 0)
(-0.000366926 -0.00626319 0)
(-0.00049047 -0.00619031 0)
(-0.000612927 -0.00611308 0)
(-0.000733857 -0.00603196 0)
(-0.000852869 -0.00594732 0)
(-0.000969613 -0.00585949 0)
(-0.00108378 -0.00576874 0)
(-0.00119511 -0.00567531 0)
(-0.00130337 -0.00557941 0)
(-0.00140836 -0.00548126 0)
(-0.00150991 -0.00538103 0)
(-0.00160789 -0.00527891 0)
(-0.00170217 -0.00517508 0)
(-0.00179267 -0.0050697 0)
(-0.0018793 -0.00496294 0)
(-0.001962 -0.00485496 0)
(-0.0020407 -0.00474593 0)
(-0.00211539 -0.00463597 0)
(-0.00218601 -0.00452524 0)
(-0.00225257 -0.00441385 0)
(-0.00231505 -0.00430191 0)
(-0.00237343 -0.00418954 0)
(-0.00242772 -0.00407683 0)
(-0.00247793 -0.00396387 0)
(-0.00252406 -0.00385075 0)
(-0.00256612 -0.00373757 0)
(-0.00260415 -0.0036244 0)
(-0.00263816 -0.00351133 0)
(-0.00266819 -0.00339844 0)
(-0.00269426 -0.00328583 0)
(-0.00271641 -0.00317357 0)
(-0.00273468 -0.00306175 0)
(-0.0027491 -0.00295044 0)
(-0.00275972 -0.00283973 0)
(-0.00276658 -0.00272969 0)
(-0.00276973 -0.00262041 0)
(-0.00276923 -0.00251195 0)
(-0.00276513 -0.0024044 0)
(-0.00275748 -0.00229781 0)
(-0.00274632 -0.00219227 0)
(-0.00273172 -0.00208784 0)
(-0.00271374 -0.0019846 0)
(-0.00269245 -0.0018826 0)
(-0.00266786 -0.00178191 0)
(-0.00264005 -0.0016826 0)
(-0.00260908 -0.00158472 0)
(-0.002575 -0.00148834 0)
(-0.00253788 -0.0013935 0)
(-0.00249777 -0.00130024 0)
(-0.00245477 -0.00120863 0)
(-0.00240891 -0.00111873 0)
(-0.00236023 -0.00103059 0)
(-0.0023089 -0.000944229 0)
(-0.00225499 -0.000859718 0)
(-0.00219844 -0.000777127 0)
(-0.00213929 -0.000696487 0)
(-0.00207762 -0.00061784 0)
(-0.00201358 -0.000541265 0)
(-0.00194725 -0.000466736 0)
(-0.00187852 -0.000394323 0)
(-0.00180763 -0.000324131 0)
(-0.00173469 -0.000256173 0)
(-0.00165964 -0.000190471 0)
(-0.00158255 -0.00012706 0)
(-0.0015035 -6.59769e-05 0)
(-0.00142259 -7.2648e-06 0)
(-0.00133987 4.9027e-05 0)
(-0.00125542 0.000102833 0)
(-0.00116932 0.000154054 0)
(-0.00108163 0.000202529 0)
(-0.000992403 0.000247925 0)
(-0.000901704 0.00028961 0)
(-0.000809601 0.000326407 0)
(-0.000716166 0.000356047 0)
(-0.000621488 0.000374476 0)
(-0.000525677 0.000374375 0)
(-0.00042888 0.000343325 0)
(-0.000331335 0.000260953 0)
(-0.000233316 9.54732e-05 0)
(-0.000135708 -0.000199864 0)
(-4.00916e-05 -0.000688449 0)
(5.1243e-05 -0.00144699 0)
(0.000134377 -0.00255133 0)
(0.000203372 -0.0040441 0)
(0.00025026 -0.00587827 0)
(0.000265882 -0.00783844 0)
(0.000242689 -0.00946097 0)
(0.000180211 -0.0100006 0)
(9.26888e-05 -0.00850919 0)
(1.44274e-05 -0.00405298 0)
(0.000894692 -0.0060041 0)
(0.000813587 -0.00610224 0)
(0.000727449 -0.00615588 0)
(0.000636307 -0.00617192 0)
(0.000540177 -0.00615905 0)
(0.000439399 -0.00612566 0)
(0.000334572 -0.00607857 0)
(0.000226431 -0.00602255 0)
(0.00011578 -0.00596058 0)
(3.41753e-06 -0.00589442 0)
(-0.000109888 -0.00582505 0)
(-0.000223424 -0.00575305 0)
(-0.000336567 -0.00567875 0)
(-0.000448764 -0.00560238 0)
(-0.000559539 -0.0055241 0)
(-0.000668482 -0.00544401 0)
(-0.000775245 -0.00536221 0)
(-0.000879531 -0.00527877 0)
(-0.000981085 -0.00519376 0)
(-0.00107969 -0.00510724 0)
(-0.00117518 -0.00501929 0)
(-0.00126739 -0.00492998 0)
(-0.00135621 -0.00483938 0)
(-0.00144155 -0.0047476 0)
(-0.00152332 -0.00465472 0)
(-0.00160148 -0.00456085 0)
(-0.00167597 -0.00446609 0)
(-0.00174675 -0.00437055 0)
(-0.00181381 -0.00427432 0)
(-0.00187713 -0.0041775 0)
(-0.00193669 -0.00408017 0)
(-0.0019925 -0.00398243 0)
(-0.00204455 -0.00388434 0)
(-0.00209286 -0.00378598 0)
(-0.00213743 -0.00368743 0)
(-0.00217829 -0.00358874 0)
(-0.00221545 -0.00349 0)
(-0.00224893 -0.00339127 0)
(-0.00227876 -0.00329262 0)
(-0.00230497 -0.00319413 0)
(-0.0023276 -0.00309586 0)
(-0.00234668 -0.00299789 0)
(-0.00236223 -0.00290029 0)
(-0.00237431 -0.00280313 0)
(-0.00238294 -0.00270648 0)
(-0.00238818 -0.00261042 0)
(-0.00239004 -0.002515 0)
(-0.0023886 -0.00242031 0)
(-0.00238389 -0.0023264 0)
(-0.00237597 -0.00223334 0)
(-0.00236489 -0.00214121 0)
(-0.00235071 -0.00205005 0)
(-0.00233347 -0.00195992 0)
(-0.00231324 -0.00187089 0)
(-0.00229004 -0.00178302 0)
(-0.00226393 -0.00169637 0)
(-0.00223498 -0.00161098 0)
(-0.00220321 -0.00152693 0)
(-0.00216867 -0.00144425 0)
(-0.00213143 -0.00136303 0)
(-0.00209161 -0.00128329 0)
(-0.00204921 -0.00120508 0)
(-0.00200421 -0.00112846 0)
(-0.00195672 -0.00105347 0)
(-0.00190686 -0.000980153 0)
(-0.00185472 -0.000908561 0)
(-0.00180039 -0.000838729 0)
(-0.00174381 -0.000770709 0)
(-0.00168491 -0.000704528 0)
(-0.00162401 -0.000640254 0)
(-0.00156116 -0.000577938 0)
(-0.00149619 -0.000517584 0)
(-0.00142927 -0.000459237 0)
(-0.00136049 -0.000402939 0)
(-0.00128992 -0.000348725 0)
(-0.00121761 -0.00029664 0)
(-0.00114363 -0.00024673 0)
(-0.00106804 -0.000199062 0)
(-0.000990852 -0.000153734 0)
(-0.000912143 -0.000110921 0)
(-0.000832054 -7.09422e-05 0)
(-0.000750538 -3.44162e-05 0)
(-0.000667728 -2.52649e-06 0)
(-0.000583581 2.24992e-05 0)
(-0.000498261 3.65636e-05 0)
(-0.000412037 3.2578e-05 0)
(-0.000324905 -1.5965e-06 0)
(-0.000237133 -8.58096e-05 0)
(-0.00014929 -0.000250808 0)
(-6.21204e-05 -0.000541491 0)
(2.30806e-05 -0.00101815 0)
(0.000103757 -0.00175279 0)
(0.000176013 -0.00281486 0)
(0.00023412 -0.00423982 0)
(0.000270454 -0.00597516 0)
(0.000276539 -0.00780694 0)
(0.000245796 -0.00928742 0)
(0.000178777 -0.00970956 0)
(9.01817e-05 -0.00818821 0)
(1.36751e-05 -0.0038679 0)
(0.00116015 -0.00576842 0)
(0.00107419 -0.00583926 0)
(0.00098436 -0.00586644 0)
(0.000890152 -0.00585723 0)
(0.000791665 -0.00582097 0)
(0.000689256 -0.00576684 0)
(0.0005835 -0.00570226 0)
(0.000475051 -0.00563234 0)
(0.00036468 -0.00556012 0)
(0.000253203 -0.0054872 0)
(0.000141334 -0.00541426 0)
(2.97366e-05 -0.00534152 0)
(-8.09829e-05 -0.00526894 0)
(-0.000190328 -0.00519639 0)
(-0.000297877 -0.00512371 0)
(-0.000403277 -0.00505075 0)
(-0.000506237 -0.00497734 0)
(-0.000606517 -0.00490334 0)
(-0.000703921 -0.00482866 0)
(-0.000798287 -0.0047532 0)
(-0.000889485 -0.0046769 0)
(-0.000977408 -0.00459971 0)
(-0.00106198 -0.00452163 0)
(-0.00114313 -0.00444266 0)
(-0.00122082 -0.00436283 0)
(-0.00129503 -0.00428219 0)
(-0.00136573 -0.00420079 0)
(-0.00143291 -0.00411868 0)
(-0.00149658 -0.00403595 0)
(-0.00155672 -0.00395265 0)
(-0.00161336 -0.00386885 0)
(-0.00166649 -0.00378462 0)
(-0.00171614 -0.00370002 0)
(-0.00176231 -0.00361511 0)
(-0.00180504 -0.00352994 0)
(-0.00184433 -0.00344458 0)
(-0.00188023 -0.00335908 0)
(-0.00191274 -0.0032735 0)
(-0.00194191 -0.0031879 0)
(-0.00196775 -0.00310235 0)
(-0.00199031 -0.00301689 0)
(-0.0020096 -0.00293161 0)
(-0.00202568 -0.00284656 0)
(-0.00203857 -0.0027618 0)
(-0.00204831 -0.0026774 0)
(-0.00205496 -0.00259343 0)
(-0.00205853 -0.00250995 0)
(-0.00205909 -0.00242703 0)
(-0.00205666 -0.00234473 0)
(-0.00205129 -0.00226311 0)
(-0.00204302 -0.00218224 0)
(-0.00203189 -0.00210217 0)
(-0.00201795 -0.00202296 0)
(-0.00200126 -0.00194467 0)
(-0.00198187 -0.00186734 0)
(-0.0019598 -0.00179105 0)
(-0.00193509 -0.00171583 0)
(-0.00190784 -0.00164174 0)
(-0.0018781 -0.00156883 0)
(-0.00184591 -0.00149716 0)
(-0.00181125 -0.00142679 0)
(-0.0017742 -0.00135773 0)
(-0.00173489 -0.00129006 0)
(-0.00169336 -0.00122383 0)
(-0.0016496 -0.00115909 0)
(-0.00160361 -0.00109586 0)
(-0.00155544 -0.00103418 0)
(-0.00150522 -0.000974086 0)
(-0.00145309 -0.000915632 0)
(-0.00139903 -0.000858881 0)
(-0.00134302 -0.000803813 0)
(-0.00128516 -0.000750495 0)
(-0.00122552 -0.000698972 0)
(-0.00116412 -0.000649281 0)
(-0.00110103 -0.000601459 0)
(-0.00103634 -0.000555543 0)
(-0.000970112 -0.000511579 0)
(-0.000902394 -0.000469625 0)
(-0.000833253 -0.000429776 0)
(-0.000762726 -0.000392215 0)
(-0.000690835 -0.000357259 0)
(-0.000617633 -0.000325521 0)
(-0.000543222 -0.000298201 0)
(-0.000467864 -0.000277464 0)
(-0.000391414 -0.000267343 0)
(-0.000313744 -0.000274802 0)
(-0.000235333 -0.000311712 0)
(-0.000156504 -0.000397302 0)
(-7.76459e-05 -0.000561256 0)
(3.90878e-07 -0.000846523 0)
(7.61703e-05 -0.0013104 0)
(0.00014724 -0.00202035 0)
(0.000209737 -0.00303983 0)
(0.000258095 -0.00439772 0)
(0.000285139 -0.00603701 0)
(0.000283082 -0.00774619 0)
(0.000246223 -0.00909392 0)
(0.000175961 -0.00941039 0)
(8.72499e-05 -0.00787001 0)
(1.2914e-05 -0.00368901 0)
(0.00176054 -0.00531599 0)
(0.00160712 -0.00539378 0)
(0.00145795 -0.00542483 0)
(0.0013134 -0.00541686 0)
(0.00117269 -0.00538011 0)
(0.00103521 -0.00532479 0)
(0.000900633 -0.00525931 0)
(0.00076885 -0.00518951 0)
(0.000639869 -0.0051189 0)
(0.000513787 -0.00504923 0)
(0.000390734 -0.00498118 0)
(0.000270839 -0.00491481 0)
(0.000154229 -0.00484994 0)
(4.10018e-05 -0.00478623 0)
(-6.87649e-05 -0.00472333 0)
(-0.000175004 -0.0046609 0)
(-0.000277676 -0.00459867 0)
(-0.000376754 -0.00453636 0)
(-0.000472225 -0.00447375 0)
(-0.000564086 -0.00441068 0)
(-0.000652343 -0.00434701 0)
(-0.000737007 -0.00428263 0)
(-0.000818096 -0.00421747 0)
(-0.000895631 -0.00415149 0)
(-0.000969634 -0.0040847 0)
(-0.00104014 -0.00401708 0)
(-0.00110717 -0.00394869 0)
(-0.00117076 -0.00387955 0)
(-0.00123096 -0.00380973 0)
(-0.00128778 -0.00373927 0)
(-0.00134128 -0.00366823 0)
(-0.00139148 -0.00359668 0)
(-0.00143842 -0.00352467 0)
(-0.00148213 -0.00345226 0)
(-0.00152264 -0.0033795 0)
(-0.00155998 -0.00330643 0)
(-0.00159418 -0.00323313 0)
(-0.00162528 -0.00315963 0)
(-0.00165331 -0.003086 0)
(-0.0016783 -0.00301229 0)
(-0.00170028 -0.00293856 0)
(-0.00171928 -0.00286487 0)
(-0.00173534 -0.00279128 0)
(-0.0017485 -0.00271786 0)
(-0.0017588 -0.00264466 0)
(-0.00176627 -0.00257175 0)
(-0.00177095 -0.00249919 0)
(-0.00177287 -0.00242703 0)
(-0.00177208 -0.00235534 0)
(-0.00176861 -0.00228418 0)
(-0.00176251 -0.0022136 0)
(-0.00175381 -0.00214367 0)
(-0.00174254 -0.00207444 0)
(-0.00172875 -0.00200596 0)
(-0.00171249 -0.00193829 0)
(-0.00169377 -0.00187148 0)
(-0.00167264 -0.00180559 0)
(-0.00164917 -0.00174066 0)
(-0.0016234 -0.00167675 0)
(-0.00159538 -0.00161389 0)
(-0.00156513 -0.00155213 0)
(-0.00153272 -0.00149153 0)
(-0.0014982 -0.00143213 0)
(-0.00146159 -0.00137396 0)
(-0.00142294 -0.00131706 0)
(-0.0013823 -0.00126148 0)
(-0.00133975 -0.00120727 0)
(-0.0012953 -0.00115447 0)
(-0.00124901 -0.00110312 0)
(-0.00120092 -0.00105323 0)
(-0.00115104 -0.00100488 0)
(-0.00109949 -0.000958077 0)
(-0.0010463 -0.000912865 0)
(-0.000991525 -0.000869283 0)
(-0.00093521 -0.000827379 0)
(-0.000877402 -0.000787187 0)
(-0.000818149 -0.000748747 0)
(-0.000757493 -0.000712114 0)
(-0.000695488 -0.000677378 0)
(-0.000632201 -0.000644706 0)
(-0.000567698 -0.000614424 0)
(-0.000502043 -0.00058715 0)
(-0.000435278 -0.000564066 0)
(-0.000367446 -0.000547305 0)
(-0.000298671 -0.000540731 0)
(-0.000229074 -0.000551243 0)
(-0.000158758 -0.000590418 0)
(-8.79906e-05 -0.000676844 0)
(-1.73198e-05 -0.000839108 0)
(5.24023e-05 -0.00111829 0)
(0.000119734 -0.0015687 0)
(0.000182184 -0.00225346 0)
(0.000235957 -0.00323037 0)
(0.000275747 -0.00452236 0)
(0.000294783 -0.00606875 0)
(0.000285911 -0.0076613 0)
(0.000244253 -0.00888535 0)
(0.000171932 -0.00910714 0)
(8.39779e-05 -0.00755711 0)
(1.21647e-05 -0.00351697 0)
(0.00228107 -0.00472036 0)
(0.00206594 -0.00480646 0)
(0.00186301 -0.00484947 0)
(0.0016708 -0.00485488 0)
(0.00148906 -0.00483173 0)
(0.00131719 -0.00478988 0)
(0.00115434 -0.0047378 0)
(0.000999703 -0.00468154 0)
(0.00085258 -0.00462475 0)
(0.000712414 -0.00456928 0)
(0.000578777 -0.00451579 0)
(0.000451163 -0.00446426 0)
(0.000329227 -0.0044144 0)
(0.000212766 -0.00436578 0)
(0.000101467 -0.00431796 0)
(-4.9275e-06 -0.00427055 0)
(-0.000106629 -0.00422318 0)
(-0.000203823 -0.00417556 0)
(-0.000296685 -0.00412747 0)
(-0.000385373 -0.00407871 0)
(-0.000470028 -0.00402913 0)
(-0.000550779 -0.00397862 0)
(-0.000627745 -0.00392713 0)
(-0.000701029 -0.0038746 0)
(-0.000770727 -0.00382104 0)
(-0.000836927 -0.00376645 0)
(-0.000899708 -0.00371088 0)
(-0.000959146 -0.00365436 0)
(-0.00101531 -0.00359696 0)
(-0.00106827 -0.00353876 0)
(-0.00111809 -0.0034798 0)
(-0.00116482 -0.00342017 0)
(-0.00120851 -0.00335992 0)
(-0.00124922 -0.00329912 0)
(-0.00128698 -0.00323782 0)
(-0.00132183 -0.00317609 0)
(-0.00135382 -0.00311398 0)
(-0.00138297 -0.00305155 0)
(-0.00140933 -0.00298885 0)
(-0.00143292 -0.00292595 0)
(-0.00145379 -0.00286291 0)
(-0.00147196 -0.00279977 0)
(-0.00148747 -0.00273662 0)
(-0.00150036 -0.0026735 0)
(-0.00151066 -0.00261047 0)
(-0.00151839 -0.0025476 0)
(-0.0015236 -0.00248495 0)
(-0.00152631 -0.00242256 0)
(-0.00152657 -0.00236051 0)
(-0.00152439 -0.00229885 0)
(-0.00151982 -0.00223764 0)
(-0.0015129 -0.00217692 0)
(-0.00150364 -0.00211676 0)
(-0.0014921 -0.0020572 0)
(-0.00147831 -0.00199831 0)
(-0.00146231 -0.00194012 0)
(-0.00144415 -0.0018827 0)
(-0.00142386 -0.00182609 0)
(-0.00140145 -0.00177034 0)
(-0.00137697 -0.00171549 0)
(-0.00135048 -0.00166159 0)
(-0.00132202 -0.00160869 0)
(-0.00129163 -0.00155681 0)
(-0.00125932 -0.00150601 0)
(-0.00122513 -0.00145633 0)
(-0.00118911 -0.0014078 0)
(-0.00115133 -0.00136047 0)
(-0.00111181 -0.00131438 0)
(-0.0010706 -0.00126956 0)
(-0.00102779 -0.00122605 0)
(-0.000983387 -0.00118388 0)
(-0.000937382 -0.00114309 0)
(-0.000889867 -0.00110372 0)
(-0.000840939 -0.0010658 0)
(-0.000790609 -0.00102936 0)
(-0.000738888 -0.000994433 0)
(-0.000685818 -0.000961065 0)
(-0.000631449 -0.000929319 0)
(-0.000575838 -0.000899296 0)
(-0.000519062 -0.000871169 0)
(-0.000461179 -0.000845243 0)
(-0.000402296 -0.000822117 0)
(-0.000342388 -0.000802928 0)
(-0.000281468 -0.000789794 0)
(-0.000219686 -0.000786525 0)
(-0.000157206 -0.000799794 0)
(-9.41078e-05 -0.000840807 0)
(-3.06162e-05 -0.000927592 0)
(3.27371e-05 -0.00108762 0)
(9.5019e-05 -0.00136015 0)
(0.000154633 -0.00179658 0)
(0.000209265 -0.00245583 0)
(0.000255307 -0.00339045 0)
(0.000287614 -0.00461802 0)
(0.000299805 -0.00607496 0)
(0.00028535 -0.00755699 0)
(0.000240118 -0.00866617 0)
(0.000166821 -0.00880342 0)
(8.03973e-05 -0.00725165 0)
(1.14179e-05 -0.0033523 0)
(0.00288759 -0.00346734 0)
(0.00258493 -0.00365234 0)
(0.00230033 -0.00379278 0)
(0.00203705 -0.00389031 0)
(0.00179466 -0.00395166 0)
(0.00157198 -0.00398565 0)
(0.00136761 -0.00400069 0)
(0.00117993 -0.00400342 0)
(0.00100723 -0.00399836 0)
(0.000847892 -0.0039883 0)
(0.000700392 -0.0039748 0)
(0.000563388 -0.0039587 0)
(0.000435702 -0.00394038 0)
(0.000316327 -0.00392004 0)
(0.000204391 -0.00389777 0)
(9.91528e-05 -0.00387361 0)
(-1.51873e-08 -0.00384757 0)
(-9.36414e-05 -0.00381967 0)
(-0.00018217 -0.00378992 0)
(-0.000265975 -0.00375835 0)
(-0.000345372 -0.00372498 0)
(-0.000420627 -0.00368986 0)
(-0.000491969 -0.00365303 0)
(-0.000559593 -0.00361454 0)
(-0.000623669 -0.00357448 0)
(-0.000684346 -0.00353292 0)
(-0.000741752 -0.00348994 0)
(-0.000795999 -0.00344565 0)
(-0.000847187 -0.00340014 0)
(-0.000895404 -0.00335352 0)
(-0.000940727 -0.00330589 0)
(-0.000983226 -0.00325733 0)
(-0.00102296 -0.00320794 0)
(-0.00105999 -0.0031578 0)
(-0.00109436 -0.00310699 0)
(-0.00112612 -0.00305557 0)
(-0.0011553 -0.00300363 0)
(-0.00118194 -0.00295122 0)
(-0.00120608 -0.00289842 0)
(-0.00122775 -0.00284528 0)
(-0.00124698 -0.00279187 0)
(-0.0012638 -0.00273826 0)
(-0.00127824 -0.0026845 0)
(-0.00129033 -0.00263066 0)
(-0.00130009 -0.0025768 0)
(-0.00130756 -0.00252298 0)
(-0.00131276 -0.00246926 0)
(-0.00131573 -0.00241569 0)
(-0.00131649 -0.00236234 0)
(-0.00131507 -0.00230926 0)
(-0.00131151 -0.0022565 0)
(-0.00130581 -0.00220413 0)
(-0.00129803 -0.00215218 0)
(-0.00128819 -0.00210071 0)
(-0.00127631 -0.00204978 0)
(-0.00126244 -0.00199943 0)
(-0.0012466 -0.0019497 0)
(-0.00122883 -0.00190065 0)
(-0.00120917 -0.00185231 0)
(-0.00118763 -0.00180475 0)
(-0.00116427 -0.001758 0)
(-0.00113911 -0.00171209 0)
(-0.00111218 -0.00166707 0)
(-0.00108353 -0.00162298 0)
(-0.00105321 -0.00157986 0)
(-0.00102125 -0.00153776 0)
(-0.000987671 -0.0014967 0)
(-0.000952537 -0.00145672 0)
(-0.000915849 -0.00141787 0)
(-0.000877636 -0.00138017 0)
(-0.00083797 -0.00134365 0)
(-0.000796912 -0.00130836 0)
(-0.000754478 -0.00127432 0)
(-0.000710684 -0.00124157 0)
(-0.00066559 -0.00121014 0)
(-0.000619242 -0.00118005 0)
(-0.000571689 -0.00115135 0)
(-0.00052299 -0.0011241 0)
(-0.000473202 -0.0010984 0)
(-0.000422319 -0.00107442 0)
(-0.000370367 -0.00105246 0)
(-0.000317441 -0.00103311 0)
(-0.000263576 -0.00101746 0)
(-0.000208789 -0.00100761 0)
(-0.000153209 -0.00100729 0)
(-9.69773e-05 -0.00102297 0)
(-4.02327e-05 -0.00106549 0)
(1.67485e-05 -0.00115226 0)
(7.33764e-05 -0.00130966 0)
(0.000128776 -0.00157513 0)
(0.000181549 -0.00199722 0)
(0.000229302 -0.0026309 0)
(0.000268498 -0.00352381 0)
(0.000294269 -0.0046888 0)
(0.000300665 -0.00606003 0)
(0.000281749 -0.00743772 0)
(0.000234058 -0.00844054 0)
(0.000160764 -0.00850257 0)
(7.65629e-05 -0.00695566 0)
(1.06812e-05 -0.00319547 0)
(0.0021713 -0.00266538 0)
(0.00196842 -0.00285402 0)
(0.0017745 -0.00301629 0)
(0.00158988 -0.00314715 0)
(0.00141599 -0.00324795 0)
(0.00125329 -0.00332361 0)
(0.00110135 -0.00338 0)
(0.000959402 -0.00342227 0)
(0.000826574 -0.00345421 0)
(0.000702016 -0.00347836 0)
(0.000584939 -0.00349631 0)
(0.000474648 -0.00350901 0)
(0.000370546 -0.00351709 0)
(0.000272115 -0.00352098 0)
(0.000178911 -0.00352101 0)
(9.05522e-05 -0.00351744 0)
(6.70371e-06 -0.00351049 0)
(-7.29252e-05 -0.00350036 0)
(-0.000148588 -0.00348723 0)
(-0.000220507 -0.00347128 0)
(-0.000288874 -0.00345265 0)
(-0.000353859 -0.00343149 0)
(-0.00041561 -0.00340795 0)
(-0.000474259 -0.00338216 0)
(-0.000529924 -0.00335428 0)
(-0.000582714 -0.00332443 0)
(-0.000632724 -0.00329277 0)
(-0.000680043 -0.00325942 0)
(-0.000724747 -0.00322452 0)
(-0.000766905 -0.00318822 0)
(-0.000806577 -0.00315064 0)
(-0.000843817 -0.00311191 0)
(-0.000878674 -0.00307213 0)
(-0.00091119 -0.00303142 0)
(-0.000941406 -0.00298988 0)
(-0.000969357 -0.00294758 0)
(-0.000995076 -0.00290462 0)
(-0.00101859 -0.00286107 0)
(-0.00103993 -0.002817 0)
(-0.00105911 -0.0027725 0)
(-0.00107615 -0.00272762 0)
(-0.00109109 -0.00268243 0)
(-0.00110395 -0.002637 0)
(-0.00111473 -0.00259139 0)
(-0.00112348 -0.00254567 0)
(-0.0011302 -0.00249989 0)
(-0.00113492 -0.00245411 0)
(-0.00113767 -0.00240839 0)
(-0.00113845 -0.00236279 0)
(-0.0011373 -0.00231736 0)
(-0.00113423 -0.00227216 0)
(-0.00112928 -0.00222724 0)
(-0.00112246 -0.00218265 0)
(-0.0011138 -0.00213843 0)
(-0.00110333 -0.00209464 0)
(-0.00109107 -0.00205133 0)
(-0.00107706 -0.00200853 0)
(-0.00106133 -0.0019663 0)
(-0.00104391 -0.00192466 0)
(-0.00102482 -0.00188368 0)
(-0.00100406 -0.00184338 0)
(-0.000981689 -0.00180381 0)
(-0.00095773 -0.00176501 0)
(-0.000932219 -0.00172701 0)
(-0.000905188 -0.00168986 0)
(-0.000876664 -0.00165358 0)
(-0.00084667 -0.00161821 0)
(-0.000815245 -0.00158379 0)
(-0.00078244 -0.00155035 0)
(-0.000748288 -0.00151792 0)
(-0.000712815 -0.00148654 0)
(-0.000676061 -0.00145623 0)
(-0.000638061 -0.00142703 0)
(-0.000598846 -0.00139896 0)
(-0.000558441 -0.00137206 0)
(-0.000516869 -0.00134637 0)
(-0.000474181 -0.00132193 0)
(-0.000430441 -0.00129879 0)
(-0.000385687 -0.00127704 0)
(-0.000339966 -0.00125682 0)
(-0.000293312 -0.00123844 0)
(-0.000245748 -0.0012225 0)
(-0.000197331 -0.00121008 0)
(-0.000148141 -0.00120319 0)
(-9.82271e-05 -0.00120549 0)
(-4.76718e-05 -0.00122326 0)
(3.30799e-06 -0.001267 0)
(5.43652e-05 -0.00135345 0)
(0.000105021 -0.00150789 0)
(0.000154424 -0.00176593 0)
(0.000201096 -0.00217347 0)
(0.000242739 -0.00278173 0)
(0.000275958 -0.00363384 0)
(0.000296144 -0.00473838 0)
(0.000297764 -0.00602791 0)
(0.000275445 -0.00730752 0)
(0.000226321 -0.00821222 0)
(0.000153907 -0.00820755 0)
(7.25283e-05 -0.00667084 0)
(9.95756e-06 -0.0030469 0)
(0.00197452 -0.00162796 0)
(0.0017833 -0.00187882 0)
(0.00159594 -0.00211074 0)
(0.00141716 -0.00231417 0)
(0.00124859 -0.0024867 0)
(0.00109106 -0.00263048 0)
(0.000944901 -0.00274962 0)
(0.000809916 -0.00284843 0)
(0.000685498 -0.00293055 0)
(0.000570815 -0.00299879 0)
(0.000464936 -0.00305528 0)
(0.000366925 -0.00310163 0)
(0.000275891 -0.00313915 0)
(0.000191023 -0.00316888 0)
(0.000111608 -0.00319173 0)
(3.70352e-05 -0.00320845 0)
(-3.32121e-05 -0.00321971 0)
(-9.95635e-05 -0.00322605 0)
(-0.000162375 -0.00322796 0)
(-0.00022194 -0.00322585 0)
(-0.000278501 -0.00322007 0)
(-0.000332255 -0.00321095 0)
(-0.000383364 -0.00319875 0)
(-0.00043196 -0.00318374 0)
(-0.000478154 -0.00316613 0)
(-0.000522035 -0.00314614 0)
(-0.000563681 -0.00312397 0)
(-0.000603159 -0.00309981 0)
(-0.000640525 -0.00307384 0)
(-0.000675829 -0.00304622 0)
(-0.000709113 -0.00301712 0)
(-0.000740415 -0.00298669 0)
(-0.000769764 -0.00295505 0)
(-0.000797188 -0.00292234 0)
(-0.000822709 -0.00288868 0)
(-0.000846347 -0.00285415 0)
(-0.00086812 -0.00281887 0)
(-0.000888043 -0.00278291 0)
(-0.000906128 -0.00274636 0)
(-0.000922389 -0.0027093 0)
(-0.000936835 -0.00267179 0)
(-0.00094948 -0.0026339 0)
(-0.000960334 -0.00259571 0)
(-0.00096941 -0.00255727 0)
(-0.000976721 -0.00251865 0)
(-0.000982283 -0.00247991 0)
(-0.00098611 -0.00244111 0)
(-0.000988221 -0.00240229 0)
(-0.000988632 -0.00236352 0)
(-0.000987357 -0.00232484 0)
(-0.000984409 -0.00228632 0)
(-0.000979804 -0.00224799 0)
(-0.00097356 -0.00220992 0)
(-0.000965696 -0.00217214 0)
(-0.000956235 -0.0021347 0)
(-0.000945194 -0.00209764 0)
(-0.00093259 -0.00206102 0)
(-0.000918444 -0.00202486 0)
(-0.000902782 -0.00198921 0)
(-0.000885636 -0.00195411 0)
(-0.000867032 -0.00191959 0)
(-0.000846984 -0.0018857 0)
(-0.000825512 -0.00185247 0)
(-0.000802653 -0.00181993 0)
(-0.000778433 -0.00178813 0)
(-0.000752873 -0.00175708 0)
(-0.000726003 -0.00172683 0)
(-0.000697861 -0.00169741 0)
(-0.000668468 -0.00166885 0)
(-0.00063784 -0.00164118 0)
(-0.000606017 -0.00161444 0)
(-0.000573031 -0.00158864 0)
(-0.000538899 -0.00156382 0)
(-0.000503664 -0.00154001 0)
(-0.000467387 -0.00151724 0)
(-0.000430112 -0.00149553 0)
(-0.000391835 -0.00147494 0)
(-0.000352558 -0.00145551 0)
(-0.000312328 -0.00143735 0)
(-0.00027119 -0.0014206 0)
(-0.000229203 -0.00140555 0)
(-0.000186427 -0.00139276 0)
(-0.000142868 -0.00138331 0)
(-9.8605e-05 -0.00137915 0)
(-5.37301e-05 -0.0013838 0)
(-8.3314e-06 -0.00140337 0)
(3.74316e-05 -0.00144799 0)
(8.32683e-05 -0.00153376 0)
(0.000128641 -0.00168487 0)
(0.000172657 -0.00193524 0)
(0.000213881 -0.00232815 0)
(0.000250116 -0.00291134 0)
(0.000278131 -0.00372377 0)
(0.000293589 -0.00477028 0)
(0.000291367 -0.00598231 0)
(0.000266622 -0.00717014 0)
(0.000217014 -0.0079846 0)
(0.000146295 -0.00792101 0)
(6.8296e-05 -0.00639871 0)
(9.23992e-06 -0.00290688 0)
(-1.59651e-05 -0.00153303 0)
(5.2926e-05 -0.00173002 0)
(0.000101941 -0.00192194 0)
(0.000133146 -0.00209779 0)
(0.000149734 -0.00225287 0)
(0.000154458 -0.00238688 0)
(0.000149412 -0.00250173 0)
(0.000136275 -0.0026 0)
(0.000116462 -0.00268409 0)
(9.12004e-05 -0.00275597 0)
(6.15636e-05 -0.00281719 0)
(2.84908e-05 -0.002869 0)
(-7.19713e-06 -0.00291245 0)
(-4.47905e-05 -0.00294843 0)
(-8.36835e-05 -0.00297772 0)
(-0.000123363 -0.00300103 0)
(-0.000163399 -0.00301893 0)
(-0.000203434 -0.00303197 0)
(-0.000243173 -0.0030406 0)
(-0.000282377 -0.00304522 0)
(-0.000320852 -0.00304616 0)
(-0.000358443 -0.00304375 0)
(-0.000395026 -0.00303825 0)
(-0.000430502 -0.0030299 0)
(-0.00046479 -0.00301893 0)
(-0.000497824 -0.00300554 0)
(-0.000529554 -0.00298994 0)
(-0.000559938 -0.0029723 0)
(-0.000588943 -0.0029528 0)
(-0.000616548 -0.00293163 0)
(-0.000642733 -0.00290893 0)
(-0.000667486 -0.00288485 0)
(-0.000690797 -0.00285955 0)
(-0.000712657 -0.00283314 0)
(-0.000733058 -0.00280575 0)
(-0.000751994 -0.00277748 0)
(-0.00076946 -0.00274842 0)
(-0.00078545 -0.00271867 0)
(-0.000799962 -0.00268831 0)
(-0.000812991 -0.00265741 0)
(-0.000824538 -0.00262604 0)
(-0.0008346 -0.00259427 0)
(-0.000843177 -0.00256217 0)
(-0.000850271 -0.00252981 0)
(-0.000855883 -0.00249723 0)
(-0.000860017 -0.00246449 0)
(-0.000862677 -0.00243166 0)
(-0.000863869 -0.00239879 0)
(-0.000863602 -0.00236591 0)
(-0.000861885 -0.00233309 0)
(-0.000858729 -0.00230037 0)
(-0.000854145 -0.00226779 0)
(-0.000848144 -0.00223541 0)
(-0.00084074 -0.00220326 0)
(-0.000831944 -0.00217138 0)
(-0.000821771 -0.00213982 0)
(-0.000810234 -0.00210862 0)
(-0.00079735 -0.00207782 0)
(-0.000783134 -0.00204745 0)
(-0.000767603 -0.00201756 0)
(-0.000750776 -0.00198817 0)
(-0.000732676 -0.00195932 0)
(-0.000713318 -0.00193105 0)
(-0.000692715 -0.00190338 0)
(-0.000670888 -0.00187635 0)
(-0.000647858 -0.00184999 0)
(-0.000623654 -0.00182434 0)
(-0.000598313 -0.00179942 0)
(-0.000571862 -0.00177526 0)
(-0.000544318 -0.00175188 0)
(-0.000515698 -0.00172933 0)
(-0.000486035 -0.00170761 0)
(-0.000455373 -0.00168677 0)
(-0.000423722 -0.00166682 0)
(-0.000391089 -0.0016478 0)
(-0.000357514 -0.00162974 0)
(-0.000323054 -0.00161265 0)
(-0.000287747 -0.00159661 0)
(-0.000251618 -0.00158169 0)
(-0.000214678 -0.00156806 0)
(-0.000176929 -0.001556 0)
(-0.000138417 -0.00154605 0)
(-9.92287e-05 -0.00153925 0)
(-5.94017e-05 -0.00153751 0)
(-1.89812e-05 -0.00154423 0)
(2.19174e-05 -0.0015653 0)
(6.31119e-05 -0.00161051 0)
(0.000104269 -0.00169533 0)
(0.000144858 -0.00184289 0)
(0.000184051 -0.00208544 0)
(0.000220477 -0.00246383 0)
(0.000252004 -0.0030225 0)
(0.000275562 -0.00379663 0)
(0.000287093 -0.00478777 0)
(0.000281886 -0.00592671 0)
(0.000255602 -0.00702902 0)
(0.000206361 -0.00776082 0)
(0.00013805 -0.00764535 0)
(6.39045e-05 -0.00614059 0)
(8.52803e-06 -0.00277569 0)
(-0.000233599 -0.00194458 0)
(-0.000155108 -0.0020352 0)
(-0.000101654 -0.00213803 0)
(-6.7152e-05 -0.00224065 0)
(-4.79058e-05 -0.00233641 0)
(-4.07478e-05 -0.00242283 0)
(-4.28268e-05 -0.00249979 0)
(-5.18113e-05 -0.00256807 0)
(-6.59029e-05 -0.00262857 0)
(-8.37486e-05 -0.00268202 0)
(-0.000104343 -0.00272896 0)
(-0.000126945 -0.00276985 0)
(-0.000151008 -0.00280509 0)
(-0.000176128 -0.00283508 0)
(-0.000201998 -0.00286018 0)
(-0.000228383 -0.00288077 0)
(-0.000255091 -0.00289718 0)
(-0.00028196 -0.00290975 0)
(-0.000308847 -0.00291876 0)
(-0.000335624 -0.00292448 0)
(-0.000362171 -0.00292714 0)
(-0.000388378 -0.00292695 0)
(-0.000414144 -0.00292411 0)
(-0.000439378 -0.00291879 0)
(-0.000463999 -0.00291117 0)
(-0.000487933 -0.0029014 0)
(-0.000511114 -0.00288963 0)
(-0.000533485 -0.00287601 0)
(-0.000554994 -0.0028607 0)
(-0.000575594 -0.00284384 0)
(-0.000595244 -0.00282556 0)
(-0.00061391 -0.00280601 0)
(-0.000631558 -0.00278531 0)
(-0.00064816 -0.00276358 0)
(-0.000663691 -0.00274092 0)
(-0.000678126 -0.00271744 0)
(-0.000691445 -0.00269323 0)
(-0.000703629 -0.00266838 0)
(-0.000714661 -0.00264294 0)
(-0.000724526 -0.002617 0)
(-0.000733212 -0.00259063 0)
(-0.000740706 -0.00256387 0)
(-0.000746999 -0.0025368 0)
(-0.000752083 -0.00250947 0)
(-0.00075595 -0.00248193 0)
(-0.000758595 -0.00245423 0)
(-0.000760012 -0.00242643 0)
(-0.000760201 -0.00239857 0)
(-0.00075916 -0.0023707 0)
(-0.000756892 -0.00234287 0)
(-0.000753401 -0.00231511 0)
(-0.000748691 -0.00228747 0)
(-0.000742768 -0.00226 0)
(-0.000735637 -0.00223272 0)
(-0.000727307 -0.00220569 0)
(-0.000717786 -0.00217892 0)
(-0.000707084 -0.00215247 0)
(-0.00069521 -0.00212637 0)
(-0.000682177 -0.00210064 0)
(-0.000667992 -0.00207532 0)
(-0.000652667 -0.00205045 0)
(-0.000636218 -0.00202606 0)
(-0.00061866 -0.00200217 0)
(-0.000600009 -0.00197882 0)
(-0.000580286 -0.00195603 0)
(-0.000559514 -0.00193385 0)
(-0.000537708 -0.00191229 0)
(-0.000514875 -0.00189138 0)
(-0.000491029 -0.00187115 0)
(-0.0004662 -0.00185162 0)
(-0.000440413 -0.00183282 0)
(-0.000413689 -0.00181477 0)
(-0.000386049 -0.0017975 0)
(-0.000357522 -0.00178102 0)
(-0.000328136 -0.00176537 0)
(-0.000297914 -0.00175057 0)
(-0.00026688 -0.00173667 0)
(-0.000235058 -0.0017237 0)
(-0.000202474 -0.00171174 0)
(-0.000169159 -0.00170094 0)
(-0.00013515 -0.00169157 0)
(-0.000100475 -0.00168418 0)
(-6.51638e-05 -0.00167976 0)
(-2.92642e-05 -0.00168015 0)
(7.15114e-06 -0.00168867 0)
(4.3962e-05 -0.001711 0)
(8.09729e-05 -0.00175656 0)
(0.000117902 -0.0018402 0)
(0.000154263 -0.00198403 0)
(0.000189204 -0.00221873 0)
(0.000221393 -0.00258282 0)
(0.000248809 -0.00311772 0)
(0.000268577 -0.00385518 0)
(0.000276933 -0.00479385 0)
(0.000269558 -0.00586426 0)
(0.000242573 -0.00688731 0)
(0.000194493 -0.00754371 0)
(0.000129252 -0.00738271 0)
(5.93937e-05 -0.00589768 0)
(7.83258e-06 -0.00265356 0)
(-0.00142157 -0.00252638 0)
(-0.00121777 -0.00251109 0)
(-0.00104405 -0.00252238 0)
(-0.000898591 -0.0025469 0)
(-0.000777733 -0.00257664 0)
(-0.000678129 -0.00260757 0)
(-0.000597014 -0.00263802 0)
(-0.000531965 -0.0026674 0)
(-0.000480789 -0.00269539 0)
(-0.000441509 -0.00272172 0)
(-0.000412356 -0.00274607 0)
(-0.000391763 -0.00276818 0)
(-0.000378358 -0.00278786 0)
(-0.000370942 -0.00280501 0)
(-0.000368483 -0.0028196 0)
(-0.000370094 -0.00283166 0)
(-0.000375022 -0.00284125 0)
(-0.000382628 -0.00284846 0)
(-0.000392372 -0.00285337 0)
(-0.000403794 -0.00285608 0)
(-0.000416508 -0.00285668 0)
(-0.00043018 -0.00285526 0)
(-0.00044453 -0.0028519 0)
(-0.000459316 -0.00284668 0)
(-0.000474335 -0.0028397 0)
(-0.000489415 -0.00283104 0)
(-0.00050441 -0.00282079 0)
(-0.000519195 -0.00280905 0)
(-0.000533664 -0.00279591 0)
(-0.000547725 -0.00278148 0)
(-0.000561299 -0.00276586 0)
(-0.000574316 -0.00274916 0)
(-0.000586715 -0.00273149 0)
(-0.000598444 -0.00271294 0)
(-0.000609457 -0.0026936 0)
(-0.000619715 -0.00267357 0)
(-0.000629182 -0.00265291 0)
(-0.000637826 -0.0026317 0)
(-0.00064562 -0.00261001 0)
(-0.000652535 -0.00258789 0)
(-0.000658548 -0.0025654 0)
(-0.000663636 -0.0025426 0)
(-0.000667778 -0.00251954 0)
(-0.000670958 -0.00249625 0)
(-0.000673159 -0.0024728 0)
(-0.000674372 -0.00244922 0)
(-0.000674585 -0.00242556 0)
(-0.000673792 -0.00240186 0)
(-0.000671985 -0.00237817 0)
(-0.000669159 -0.00235451 0)
(-0.000665311 -0.00233094 0)
(-0.000660438 -0.00230748 0)
(-0.00065454 -0.00228418 0)
(-0.000647614 -0.00226107 0)
(-0.000639664 -0.00223818 0)
(-0.00063069 -0.00221554 0)
(-0.000620697 -0.00219319 0)
(-0.000609687 -0.00217116 0)
(-0.000597669 -0.00214947 0)
(-0.000584648 -0.00212816 0)
(-0.000570632 -0.00210725 0)
(-0.00055563 -0.00208677 0)
(-0.000539652 -0.00206674 0)
(-0.000522714 -0.00204721 0)
(-0.000504829 -0.00202818 0)
(-0.000486007 -0.0020097 0)
(-0.00046626 -0.00199176 0)
(-0.000445605 -0.00197442 0)
(-0.00042406 -0.00195768 0)
(-0.00040164 -0.00194157 0)
(-0.000378365 -0.00192611 0)
(-0.000354253 -0.00191133 0)
(-0.000329318 -0.00189725 0)
(-0.000303585 -0.00188389 0)
(-0.000277083 -0.00187127 0)
(-0.000249831 -0.00185941 0)
(-0.000221848 -0.00184834 0)
(-0.000193156 -0.00183812 0)
(-0.000163781 -0.00182881 0)
(-0.000133749 -0.00182056 0)
(-0.000103078 -0.00181364 0)
(-7.17914e-05 -0.00180856 0)
(-3.99343e-05 -0.00180628 0)
(-7.56079e-06 -0.0018086 0)
(2.52663e-05 -0.0018187 0)
(5.84421e-05 -0.00184209 0)
(9.17792e-05 -0.0018878 0)
(0.00012498 -0.00197009 0)
(0.000157562 -0.0021101 0)
(0.000188723 -0.00233701 0)
(0.000217198 -0.0026872 0)
(0.00024108 -0.00319929 0)
(0.000257685 -0.00390191 0)
(0.000263539 -0.00479125 0)
(0.000254716 -0.00579781 0)
(0.000227775 -0.00674784 0)
(0.000181565 -0.00733578 0)
(0.000119976 -0.00713495 0)
(5.47836e-05 -0.00567093 0)
(7.1522e-06 -0.00254061 0)
(-0.000698842 -0.00333318 0)
(-0.000640745 -0.00318793 0)
(-0.000592062 -0.00308643 0)
(-0.000550394 -0.00301357 0)
(-0.00051539 -0.0029596 0)
(-0.000486613 -0.00291891 0)
(-0.000463353 -0.0028884 0)
(-0.000444884 -0.00286617 0)
(-0.000430549 -0.0028507 0)
(-0.000419772 -0.00284059 0)
(-0.000412059 -0.0028345 0)
(-0.000406997 -0.00283125 0)
(-0.00040424 -0.00282984 0)
(-0.000403502 -0.00282949 0)
(-0.000404541 -0.00282957 0)
(-0.000407143 -0.00282965 0)
(-0.000411115 -0.00282938 0)
(-0.000416281 -0.00282852 0)
(-0.000422479 -0.00282688 0)
(-0.000429555 -0.00282435 0)
(-0.000437366 -0.00282082 0)
(-0.00044578 -0.00281622 0)
(-0.000454669 -0.00281052 0)
(-0.000463915 -0.00280369 0)
(-0.000473404 -0.00279571 0)
(-0.000483033 -0.00278661 0)
(-0.000492703 -0.00277638 0)
(-0.000502327 -0.00276508 0)
(-0.000511826 -0.00275275 0)
(-0.000521126 -0.00273944 0)
(-0.000530162 -0.00272523 0)
(-0.000538877 -0.00271017 0)
(-0.000547214 -0.00269436 0)
(-0.000555126 -0.00267786 0)
(-0.000562567 -0.00266075 0)
(-0.000569495 -0.0026431 0)
(-0.00057587 -0.00262497 0)
(-0.000581657 -0.00260642 0)
(-0.000586824 -0.00258751 0)
(-0.000591339 -0.00256828 0)
(-0.000595173 -0.00254878 0)
(-0.0005983 -0.00252905 0)
(-0.000600694 -0.00250913 0)
(-0.000602332 -0.00248907 0)
(-0.000603195 -0.0024689 0)
(-0.000603263 -0.00244866 0)
(-0.000602523 -0.00242838 0)
(-0.000600962 -0.00240811 0)
(-0.000598569 -0.00238788 0)
(-0.000595334 -0.00236771 0)
(-0.00059125 -0.00234765 0)
(-0.000586309 -0.00232772 0)
(-0.000580503 -0.00230796 0)
(-0.000573826 -0.00228839 0)
(-0.000566272 -0.00226904 0)
(-0.000557837 -0.00224994 0)
(-0.000548519 -0.00223111 0)
(-0.000538319 -0.00221259 0)
(-0.000527241 -0.0021944 0)
(-0.00051529 -0.00217656 0)
(-0.000502473 -0.00215911 0)
(-0.000488795 -0.00214205 0)
(-0.000474261 -0.00212542 0)
(-0.000458877 -0.00210924 0)
(-0.000442651 -0.00209353 0)
(-0.000425594 -0.00207831 0)
(-0.000407719 -0.00206361 0)
(-0.000389037 -0.00204944 0)
(-0.00036956 -0.00203582 0)
(-0.000349301 -0.00202277 0)
(-0.000328269 -0.00201032 0)
(-0.000306485 -0.00199847 0)
(-0.000283975 -0.00198726 0)
(-0.000260749 -0.00197669 0)
(-0.000236813 -0.0019668 0)
(-0.00021219 -0.00195759 0)
(-0.000186908 -0.0019491 0)
(-0.000160992 -0.00194137 0)
(-0.000134463 -0.00193447 0)
(-0.00010734 -0.00192853 0)
(-7.96425e-05 -0.00192381 0)
(-5.14037e-05 -0.00192081 0)
(-2.26541e-05 -0.00192046 0)
(6.56302e-06 -0.00192449 0)
(3.61755e-05 -0.00193598 0)
(6.6076e-05 -0.00196021 0)
(9.60975e-05 -0.0020059 0)
(0.000125954 -0.00208673 0)
(0.000155176 -0.0022229 0)
(0.000183008 -0.0024422 0)
(0.000208257 -0.00277903 0)
(0.000229142 -0.00326943 0)
(0.000243174 -0.00393925 0)
(0.000247171 -0.00478257 0)
(0.000237583 -0.00573011 0)
(0.000211375 -0.00661327 0)
(0.000167676 -0.00713935 0)
(0.000110263 -0.00690378 0)
(5.00659e-05 -0.00546125 0)
(6.47235e-06 -0.00243702 0)
(-0.000617133 -0.00325051 0)
(-0.000636657 -0.00315338 0)
(-0.000637902 -0.00308572 0)
(-0.000628082 -0.00303528 0)
(-0.000611303 -0.00299476 0)
(-0.000590703 -0.00296074 0)
(-0.000568786 -0.002932 0)
(-0.000547328 -0.00290816 0)
(-0.000527445 -0.00288892 0)
(-0.000509758 -0.00287377 0)
(-0.000494539 -0.00286199 0)
(-0.000481836 -0.0028528 0)
(-0.000471562 -0.0028455 0)
(-0.000463554 -0.00283944 0)
(-0.000457617 -0.00283415 0)
(-0.000453542 -0.00282923 0)
(-0.000451121 -0.00282439 0)
(-0.000450156 -0.00281941 0)
(-0.000450457 -0.00281412 0)
(-0.000451852 -0.00280839 0)
(-0.00045418 -0.00280211 0)
(-0.000457296 -0.00279521 0)
(-0.00046107 -0.00278763 0)
(-0.000465378 -0.00277933 0)
(-0.00047011 -0.00277026 0)
(-0.000475162 -0.00276042 0)
(-0.000480438 -0.00274979 0)
(-0.000485852 -0.00273839 0)
(-0.000491324 -0.00272623 0)
(-0.000496784 -0.00271336 0)
(-0.000502169 -0.0026998 0)
(-0.000507421 -0.00268562 0)
(-0.000512488 -0.00267088 0)
(-0.000517323 -0.00265563 0)
(-0.000521881 -0.00263994 0)
(-0.000526119 -0.00262386 0)
(-0.000529998 -0.00260745 0)
(-0.000533481 -0.00259075 0)
(-0.000536533 -0.00257381 0)
(-0.000539119 -0.00255668 0)
(-0.00054121 -0.00253938 0)
(-0.000542775 -0.00252196 0)
(-0.000543788 -0.00250445 0)
(-0.000544222 -0.00248688 0)
(-0.000544054 -0.00246928 0)
(-0.000543262 -0.00245168 0)
(-0.000541825 -0.00243412 0)
(-0.000539726 -0.00241663 0)
(-0.000536948 -0.00239923 0)
(-0.000533476 -0.00238194 0)
(-0.000529295 -0.0023648 0)
(-0.000524394 -0.00234782 0)
(-0.000518761 -0.00233104 0)
(-0.000512387 -0.00231447 0)
(-0.000505266 -0.00229815 0)
(-0.000497392 -0.00228208 0)
(-0.000488759 -0.0022663 0)
(-0.000479366 -0.00225083 0)
(-0.00046921 -0.00223569 0)
(-0.00045829 -0.0022209 0)
(-0.000446607 -0.00220648 0)
(-0.000434161 -0.00219244 0)
(-0.000420959 -0.00217881 0)
(-0.000407004 -0.00216561 0)
(-0.000392302 -0.00215284 0)
(-0.000376859 -0.00214054 0)
(-0.000360684 -0.00212871 0)
(-0.000343778 -0.00211737 0)
(-0.000326153 -0.00210654 0)
(-0.00030783 -0.00209624 0)
(-0.000288826 -0.00208648 0)
(-0.000269148 -0.00207728 0)
(-0.000248805 -0.00206864 0)
(-0.000227814 -0.0020606 0)
(-0.000206198 -0.00205316 0)
(-0.000183971 -0.00204634 0)
(-0.000161144 -0.00204017 0)
(-0.00013773 -0.00203469 0)
(-0.000113748 -0.00202996 0)
(-8.92205e-05 -0.00202611 0)
(-6.41733e-05 -0.00202338 0)
(-3.86335e-05 -0.00202226 0)
(-1.26314e-05 -0.00202364 0)
(1.37838e-05 -0.00202919 0)
(4.05417e-05 -0.00204188 0)
(6.75453e-05 -0.0020668 0)
(9.46366e-05 -0.00211235 0)
(0.000121541 -0.00219164 0)
(0.000147806 -0.00232403 0)
(0.000172719 -0.00253599 0)
(0.000195175 -0.0028601 0)
(0.000213538 -0.00333011 0)
(0.000225525 -0.00396937 0)
(0.000228242 -0.00477013 0)
(0.000218505 -0.00566356 0)
(0.00019365 -0.00648595 0)
(0.000153031 -0.00695649 0)
(0.000100242 -0.00669071 0)
(4.53138e-05 -0.00526942 0)
(5.81701e-06 -0.00234292 0)
(0.000149068 -0.00284352 0)
(-9.35716e-06 -0.00287373 0)
(-0.000129599 -0.00290296 0)
(-0.000219146 -0.00292391 0)
(-0.000284477 -0.00293402 0)
(-0.000331456 -0.00293431 0)
(-0.000364748 -0.00292757 0)
(-0.000388005 -0.00291682 0)
(-0.000404038 -0.0029045 0)
(-0.000414955 -0.00289216 0)
(-0.000422302 -0.00288057 0)
(-0.000427199 -0.00286997 0)
(-0.000430453 -0.00286033 0)
(-0.000432643 -0.00285145 0)
(-0.00043419 -0.00284312 0)
(-0.000435397 -0.00283513 0)
(-0.000436483 -0.0028273 0)
(-0.000437603 -0.00281947 0)
(-0.000438864 -0.00281154 0)
(-0.000440334 -0.00280338 0)
(-0.00044205 -0.00279493 0)
(-0.000444025 -0.00278613 0)
(-0.000446258 -0.0027769 0)
(-0.000448729 -0.00276721 0)
(-0.000451415 -0.00275702 0)
(-0.00045428 -0.00274631 0)
(-0.000457288 -0.00273505 0)
(-0.000460398 -0.00272325 0)
(-0.00046357 -0.00271091 0)
(-0.000466762 -0.00269805 0)
(-0.000469936 -0.0026847 0)
(-0.000473053 -0.00267091 0)
(-0.000476076 -0.00265672 0)
(-0.000478968 -0.00264218 0)
(-0.000481695 -0.00262734 0)
(-0.000484219 -0.00261227 0)
(-0.000486507 -0.002597 0)
(-0.000488524 -0.00258157 0)
(-0.000490237 -0.00256604 0)
(-0.000491617 -0.00255042 0)
(-0.000492633 -0.00253477 0)
(-0.000493259 -0.00251909 0)
(-0.000493468 -0.00250344 0)
(-0.000493232 -0.00248781 0)
(-0.000492526 -0.00247226 0)
(-0.000491325 -0.00245679 0)
(-0.000489603 -0.00244143 0)
(-0.000487338 -0.0024262 0)
(-0.000484508 -0.00241114 0)
(-0.000481094 -0.00239625 0)
(-0.00047708 -0.00238156 0)
(-0.000472452 -0.00236708 0)
(-0.000467197 -0.00235285 0)
(-0.000461304 -0.00233886 0)
(-0.000454763 -0.00232515 0)
(-0.000447567 -0.00231173 0)
(-0.000439707 -0.00229862 0)
(-0.000431179 -0.00228583 0)
(-0.000421976 -0.00227337 0)
(-0.000412095 -0.00226127 0)
(-0.000401533 -0.00224953 0)
(-0.00039029 -0.00223818 0)
(-0.000378365 -0.00222722 0)
(-0.000365761 -0.00221667 0)
(-0.00035248 -0.00220655 0)
(-0.000338528 -0.00219686 0)
(-0.000323916 -0.00218762 0)
(-0.000308655 -0.00217884 0)
(-0.000292753 -0.00217054 0)
(-0.000276215 -0.00216272 0)
(-0.000259049 -0.0021554 0)
(-0.000241266 -0.00214859 0)
(-0.000222879 -0.0021423 0)
(-0.000203901 -0.00213655 0)
(-0.000184347 -0.00213134 0)
(-0.000164231 -0.00212669 0)
(-0.000143567 -0.00212263 0)
(-0.000122368 -0.00211918 0)
(-0.000100655 -0.0021164 0)
(-7.84484e-05 -0.00211443 0)
(-5.57693e-05 -0.0021135 0)
(-3.26451e-05 -0.00211406 0)
(-9.10978e-06 -0.002117 0)
(1.47946e-05 -0.0021239 0)
(3.90071e-05 -0.00213763 0)
(6.34304e-05 -0.00216311 0)
(8.7909e-05 -0.00220841 0)
(0.00011219 -0.00228615 0)
(0.000135857 -0.00241488 0)
(0.000158246 -0.00261988 0)
(0.000178334 -0.00293207 0)
(0.000194621 -0.00338313 0)
(0.000205039 -0.00399422 0)
(0.00020699 -0.00475607 0)
(0.000197646 -0.00560035 0)
(0.000174692 -0.00636797 0)
(0.000137661 -0.00678899 0)
(8.9902e-05 -0.006497 0)
(4.04902e-05 -0.00509604 0)
(5.16364e-06 -0.00225834 0)
(-0.000236665 -0.00214055 0)
(-0.000333074 -0.00233783 0)
(-0.000399354 -0.0025037 0)
(-0.000442757 -0.00263338 0)
(-0.000468632 -0.00272762 0)
(-0.000481688 -0.00279117 0)
(-0.000485987 -0.0028307 0)
(-0.000484734 -0.00285295 0)
(-0.000480271 -0.00286363 0)
(-0.000474216 -0.00286699 0)
(-0.000467615 -0.00286592 0)
(-0.000461109 -0.00286219 0)
(-0.000455055 -0.00285688 0)
(-0.000449632 -0.00285056 0)
(-0.000444912 -0.00284356 0)
(-0.000440901 -0.00283604 0)
(-0.000437578 -0.00282809 0)
(-0.000434904 -0.00281976 0)
(-0.000432833 -0.00281106 0)
(-0.00043132 -0.00280201 0)
(-0.000430315 -0.00279258 0)
(-0.00042977 -0.00278279 0)
(-0.000429634 -0.00277261 0)
(-0.000429858 -0.00276205 0)
(-0.000430395 -0.00275107 0)
(-0.0004312 -0.00273969 0)
(-0.000432229 -0.00272789 0)
(-0.000433441 -0.00271568 0)
(-0.000434798 -0.00270306 0)
(-0.000436262 -0.00269006 0)
(-0.000437796 -0.0026767 0)
(-0.000439366 -0.00266302 0)
(-0.000440936 -0.00264906 0)
(-0.000442473 -0.00263488 0)
(-0.000443942 -0.00262053 0)
(-0.000445314 -0.00260604 0)
(-0.000446556 -0.00259149 0)
(-0.000447638 -0.00257689 0)
(-0.00044853 -0.00256231 0)
(-0.0004492 -0.00254776 0)
(-0.000449618 -0.00253328 0)
(-0.000449753 -0.0025189 0)
(-0.000449576 -0.00250463 0)
(-0.000449057 -0.00249051 0)
(-0.000448169 -0.00247654 0)
(-0.000446885 -0.00246276 0)
(-0.00044518 -0.00244918 0)
(-0.00044303 -0.00243581 0)
(-0.000440412 -0.00242267 0)
(-0.000437303 -0.00240978 0)
(-0.000433683 -0.00239716 0)
(-0.000429532 -0.00238481 0)
(-0.000424833 -0.00237276 0)
(-0.000419573 -0.00236101 0)
(-0.000413739 -0.00234957 0)
(-0.000407319 -0.00233846 0)
(-0.000400304 -0.00232769 0)
(-0.000392687 -0.00231727 0)
(-0.000384462 -0.0023072 0)
(-0.000375625 -0.00229749 0)
(-0.000366173 -0.00228816 0)
(-0.000356102 -0.00227922 0)
(-0.000345414 -0.00227066 0)
(-0.000334108 -0.00226251 0)
(-0.000322186 -0.00225477 0)
(-0.000309652 -0.00224745 0)
(-0.00029651 -0.00224055 0)
(-0.000282767 -0.0022341 0)
(-0.000268429 -0.00222809 0)
(-0.000253505 -0.00222253 0)
(-0.000238004 -0.00221743 0)
(-0.000221938 -0.0022128 0)
(-0.000205316 -0.00220864 0)
(-0.000188149 -0.00220498 0)
(-0.000170449 -0.0022018 0)
(-0.000152227 -0.00219914 0)
(-0.000133493 -0.00219699 0)
(-0.000114266 -0.00219541 0)
(-9.4565e-05 -0.00219445 0)
(-7.44155e-05 -0.00219421 0)
(-5.38394e-05 -0.00219493 0)
(-3.28589e-05 -0.00219705 0)
(-1.15014e-05 -0.0022014 0)
(1.01971e-05 -0.00220953 0)
(3.21763e-05 -0.0022242 0)
(5.43371e-05 -0.00225016 0)
(7.65294e-05 -0.00229517 0)
(9.85205e-05 -0.00237141 0)
(0.000119932 -0.00249668 0)
(0.000140153 -0.00269519 0)
(0.000158249 -0.00299637 0)
(0.000172863 -0.00343007 0)
(0.000182147 -0.00401555 0)
(0.000183799 -0.00474223 0)
(0.000175338 -0.00554238 0)
(0.000154765 -0.00626117 0)
(0.000121749 -0.0066384 0)
(7.93465e-05 -0.00632372 0)
(3.56383e-05 -0.00494162 0)
(4.52175e-06 -0.00218335 0)
(2.19484e-05 -0.00176337 0)
(-0.000107569 -0.00205909 0)
(-0.000206894 -0.00230964 0)
(-0.000279621 -0.00250831 0)
(-0.000330689 -0.00265564 0)
(-0.000364962 -0.00275764 0)
(-0.000386746 -0.00282322 0)
(-0.000399652 -0.00286177 0)
(-0.000406528 -0.00288161 0)
(-0.000409493 -0.00288924 0)
(-0.00041004 -0.00288931 0)
(-0.000409178 -0.00288487 0)
(-0.000407566 -0.00287784 0)
(-0.000405621 -0.00286933 0)
(-0.000403603 -0.00285998 0)
(-0.000401667 -0.00285013 0)
(-0.000399905 -0.00283996 0)
(-0.000398366 -0.00282954 0)
(-0.000397077 -0.00281891 0)
(-0.000396047 -0.00280807 0)
(-0.000395277 -0.00279702 0)
(-0.000394764 -0.00278575 0)
(-0.000394499 -0.00277424 0)
(-0.000394468 -0.00276247 0)
(-0.000394657 -0.00275042 0)
(-0.000395044 -0.0027381 0)
(-0.00039561 -0.0027255 0)
(-0.00039633 -0.00271261 0)
(-0.000397181 -0.00269944 0)
(-0.00039814 -0.00268602 0)
(-0.000399183 -0.00267235 0)
(-0.000400288 -0.00265849 0)
(-0.00040143 -0.00264446 0)
(-0.000402585 -0.00263032 0)
(-0.000403726 -0.00261612 0)
(-0.000404826 -0.0026019 0)
(-0.00040586 -0.00258773 0)
(-0.000406799 -0.00257364 0)
(-0.000407616 -0.00255967 0)
(-0.000408282 -0.00254586 0)
(-0.000408771 -0.00253224 0)
(-0.000409051 -0.00251883 0)
(-0.000409092 -0.00250566 0)
(-0.000408864 -0.00249274 0)
(-0.000408335 -0.00248008 0)
(-0.000407476 -0.00246772 0)
(-0.000406257 -0.00245565 0)
(-0.000404651 -0.00244389 0)
(-0.000402634 -0.00243246 0)
(-0.000400182 -0.00242135 0)
(-0.000397273 -0.00241059 0)
(-0.000393889 -0.00240016 0)
(-0.00039001 -0.00239009 0)
(-0.000385618 -0.00238038 0)
(-0.000380699 -0.00237103 0)
(-0.000375237 -0.00236205 0)
(-0.000369221 -0.00235343 0)
(-0.000362642 -0.0023452 0)
(-0.000355491 -0.00233734 0)
(-0.000347765 -0.00232986 0)
(-0.00033946 -0.00232277 0)
(-0.000330575 -0.00231607 0)
(-0.000321111 -0.00230977 0)
(-0.000311068 -0.00230386 0)
(-0.000300451 -0.00229835 0)
(-0.000289264 -0.00229325 0)
(-0.000277509 -0.00228855 0)
(-0.000265191 -0.00228427 0)
(-0.000252314 -0.0022804 0)
(-0.000238886 -0.00227696 0)
(-0.000224917 -0.00227394 0)
(-0.000210414 -0.00227135 0)
(-0.000195386 -0.00226919 0)
(-0.000179844 -0.00226747 0)
(-0.000163802 -0.0022662 0)
(-0.000147274 -0.00226538 0)
(-0.000130279 -0.00226503 0)
(-0.000112833 -0.00226518 0)
(-9.49474e-05 -0.00226588 0)
(-7.66343e-05 -0.00226723 0)
(-5.79144e-05 -0.00226946 0)
(-3.88163e-05 -0.00227299 0)
(-1.93724e-05 -0.00227862 0)
(3.80259e-07 -0.00228784 0)
(2.03905e-05 -0.00230332 0)
(4.05743e-05 -0.00232965 0)
(6.0792e-05 -0.00237434 0)
(8.08202e-05 -0.00244911 0)
(0.000100306 -0.00257114 0)
(0.000118698 -0.00276366 0)
(0.000135162 -0.0030548 0)
(0.000148492 -0.0034728 0)
(0.000157059 -0.00403527 0)
(0.000158851 -0.00473058 0)
(0.00015172 -0.00549161 0)
(0.000133964 -0.00616734 0)
(0.000105351 -0.00650621 0)
(6.86007e-05 -0.00617193 0)
(3.07667e-05 -0.00480667 0)
(3.88922e-06 -0.00211801 0)
(-0.000235978 -0.00122072 0)
(-0.000311788 -0.00164122 0)
(-0.000365043 -0.00200046 0)
(-0.000399842 -0.00228967 0)
(-0.000419773 -0.00250898 0)
(-0.00042843 -0.00266546 0)
(-0.000429201 -0.00277022 0)
(-0.000424968 -0.0028355 0)
(-0.000417966 -0.00287256 0)
(-0.000409789 -0.00289057 0)
(-0.000401478 -0.00289635 0)
(-0.000393647 -0.00289462 0)
(-0.000386608 -0.00288846 0)
(-0.000380479 -0.00287975 0)
(-0.000375261 -0.00286964 0)
(-0.000370898 -0.00285874 0)
(-0.000367303 -0.00284742 0)
(-0.000364382 -0.00283583 0)
(-0.000362045 -0.00282408 0)
(-0.000360211 -0.00281217 0)
(-0.000358809 -0.00280013 0)
(-0.000357783 -0.00278794 0)
(-0.000357086 -0.00277558 0)
(-0.000356682 -0.00276303 0)
(-0.00035654 -0.00275029 0)
(-0.000356633 -0.00273733 0)
(-0.000356939 -0.00272416 0)
(-0.000357435 -0.00271077 0)
(-0.000358099 -0.00269718 0)
(-0.000358911 -0.0026834 0)
(-0.000359851 -0.00266945 0)
(-0.000360898 -0.00265538 0)
(-0.000362032 -0.00264122 0)
(-0.000363235 -0.00262703 0)
(-0.000364484 -0.00261285 0)
(-0.000365759 -0.00259875 0)
(-0.000367035 -0.00258477 0)
(-0.000368287 -0.00257096 0)
(-0.000369485 -0.00255737 0)
(-0.000370602 -0.00254403 0)
(-0.000371605 -0.00253099 0)
(-0.000372463 -0.00251826 0)
(-0.000373143 -0.00250587 0)
(-0.000373611 -0.00249384 0)
(-0.000373833 -0.00248219 0)
(-0.000373775 -0.00247093 0)
(-0.000373404 -0.00246008 0)
(-0.000372686 -0.00244964 0)
(-0.000371591 -0.00243963 0)
(-0.000370089 -0.00243003 0)
(-0.000368154 -0.00242087 0)
(-0.000365761 -0.00241213 0)
(-0.00036289 -0.00240381 0)
(-0.000359523 -0.00239592 0)
(-0.000355645 -0.00238844 0)
(-0.000351245 -0.00238139 0)
(-0.000346312 -0.00237474 0)
(-0.000340838 -0.00236851 0)
(-0.000334819 -0.00236268 0)
(-0.000328247 -0.00235726 0)
(-0.000321118 -0.00235224 0)
(-0.000313431 -0.00234763 0)
(-0.000305184 -0.00234341 0)
(-0.000296378 -0.00233958 0)
(-0.000287016 -0.00233615 0)
(-0.000277101 -0.00233312 0)
(-0.000266637 -0.00233048 0)
(-0.00025563 -0.00232822 0)
(-0.000244086 -0.00232636 0)
(-0.000232013 -0.0023249 0)
(-0.000219419 -0.00232382 0)
(-0.000206314 -0.00232314 0)
(-0.000192709 -0.00232285 0)
(-0.000178614 -0.00232296 0)
(-0.000164041 -0.00232347 0)
(-0.000149001 -0.00232439 0)
(-0.000133506 -0.00232572 0)
(-0.000117573 -0.0023275 0)
(-0.000101219 -0.00232977 0)
(-8.44644e-05 -0.00233263 0)
(-6.73298e-05 -0.00233628 0)
(-4.98381e-05 -0.00234114 0)
(-3.20158e-05 -0.00234797 0)
(-1.38979e-05 -0.00235822 0)
(4.46374e-06 -0.00237448 0)
(2.29862e-05 -0.00240117 0)
(4.15359e-05 -0.00244558 0)
(5.99074e-05 -0.00251906 0)
(7.77826e-05 -0.00263818 0)
(9.46693e-05 -0.00282536 0)
(0.000109833 -0.00310758 0)
(0.000122226 -0.0035117 0)
(0.000130435 -0.00405394 0)
(0.000132736 -0.00472182 0)
(0.0001273 -0.0054488 0)
(0.000112699 -0.00608722 0)
(8.87712e-05 -0.006393 0)
(5.78603e-05 -0.00604187 0)
(2.59689e-05 -0.00469111 0)
(3.29662e-06 -0.00206209 0)
(-7.21028e-05 -0.000975685 0)
(-0.000150785 -0.00145784 0)
(-0.000211809 -0.00187514 0)
(-0.00025609 -0.00221493 0)
(-0.000286061 -0.00247495 0)
(-0.000304634 -0.00266155 0)
(-0.000314706 -0.00278648 0)
(-0.000318889 -0.00286355 0)
(-0.000319336 -0.002906 0)
(-0.00031768 -0.00292496 0)
(-0.000315061 -0.00292895 0)
(-0.000312209 -0.00292393 0)
(-0.000309547 -0.00291387 0)
(-0.000307288 -0.0029012 0)
(-0.000305511 -0.00288736 0)
(-0.000304218 -0.00287311 0)
(-0.000303372 -0.00285884 0)
(-0.000302916 -0.00284473 0)
(-0.000302792 -0.0028308 0)
(-0.000302944 -0.00281703 0)
(-0.000303324 -0.00280338 0)
(-0.000303894 -0.00278978 0)
(-0.000304627 -0.00277618 0)
(-0.000305504 -0.00276251 0)
(-0.000306513 -0.00274875 0)
(-0.000307646 -0.00273485 0)
(-0.000308899 -0.0027208 0)
(-0.000310268 -0.0027066 0)
(-0.000311749 -0.00269225 0)
(-0.000313338 -0.00267779 0)
(-0.000315027 -0.00266323 0)
(-0.000316809 -0.00264861 0)
(-0.000318675 -0.002634 0)
(-0.000320615 -0.00261944 0)
(-0.000322616 -0.00260498 0)
(-0.000324665 -0.0025907 0)
(-0.000326747 -0.00257664 0)
(-0.000328844 -0.00256288 0)
(-0.000330936 -0.00254945 0)
(-0.000333002 -0.00253642 0)
(-0.000335015 -0.00252382 0)
(-0.000336946 -0.00251168 0)
(-0.000338759 -0.00250004 0)
(-0.000340418 -0.00248893 0)
(-0.000341881 -0.00247834 0)
(-0.000343105 -0.00246831 0)
(-0.000344048 -0.00245882 0)
(-0.000344667 -0.00244988 0)
(-0.000344924 -0.00244149 0)
(-0.000344781 -0.00243362 0)
(-0.000344206 -0.00242628 0)
(-0.000343168 -0.00241945 0)
(-0.000341643 -0.00241312 0)
(-0.000339609 -0.00240727 0)
(-0.000337049 -0.00240189 0)
(-0.000333949 -0.00239696 0)
(-0.000330301 -0.00239248 0)
(-0.000326097 -0.00238843 0)
(-0.000321333 -0.0023848 0)
(-0.000316006 -0.00238158 0)
(-0.000310115 -0.00237876 0)
(-0.000303662 -0.00237633 0)
(-0.000296647 -0.00237429 0)
(-0.000289073 -0.00237263 0)
(-0.000280944 -0.00237134 0)
(-0.000272265 -0.00237043 0)
(-0.000263041 -0.00236988 0)
(-0.00025328 -0.00236969 0)
(-0.00024299 -0.00236986 0)
(-0.00023218 -0.00237038 0)
(-0.000220857 -0.00237126 0)
(-0.000209031 -0.00237249 0)
(-0.000196714 -0.00237407 0)
(-0.000183918 -0.002376 0)
(-0.000170656 -0.00237827 0)
(-0.000156942 -0.0023809 0)
(-0.000142791 -0.0023839 0)
(-0.000128218 -0.00238727 0)
(-0.000113235 -0.00239107 0)
(-9.78604e-05 -0.00239539 0)
(-8.21098e-05 -0.00240043 0)
(-6.60031e-05 -0.00240656 0)
(-4.95672e-05 -0.00241453 0)
(-3.28419e-05 -0.00242575 0)
(-1.58819e-05 -0.00244271 0)
(1.23692e-06 -0.00246971 0)
(1.83995e-05 -0.00251382 0)
(3.54228e-05 -0.00258605 0)
(5.20201e-05 -0.00270248 0)
(6.77572e-05 -0.00288479 0)
(8.19945e-05 -0.00315902 0)
(9.38302e-05 -0.00355087 0)
(0.000102069 -0.00407542 0)
(0.00010526 -0.00471952 0)
(0.000101885 -0.00541716 0)
(9.07665e-05 -0.0060236 0)
(7.17884e-05 -0.00630101 0)
(4.69028e-05 -0.00593521 0)
(2.10678e-05 -0.00459596 0)
(2.64674e-06 -0.002016 0)
(-1.44098e-05 -0.000648894 0)
(-6.96016e-05 -0.00119593 0)
(-0.000114257 -0.00167437 0)
(-0.000149122 -0.00206862 0)
(-0.000175091 -0.00237433 0)
(-0.000193476 -0.00259693 0)
(-0.00020586 -0.00274841 0)
(-0.000213834 -0.00284368 0)
(-0.000218815 -0.0028976 0)
(-0.000221944 -0.00292304 0)
(-0.000224061 -0.00293005 0)
(-0.000225735 -0.00292591 0)
(-0.000227317 -0.00291549 0)
(-0.000228999 -0.00290187 0)
(-0.000230864 -0.00288689 0)
(-0.000232932 -0.00287154 0)
(-0.000235184 -0.00285634 0)
(-0.000237587 -0.00284148 0)
(-0.000240103 -0.00282703 0)
(-0.000242692 -0.00281293 0)
(-0.000245321 -0.00279911 0)
(-0.000247967 -0.00278547 0)
(-0.000250613 -0.00277189 0)
(-0.000253254 -0.00275829 0)
(-0.000255895 -0.00274461 0)
(-0.000258549 -0.00273078 0)
(-0.000261232 -0.00271678 0)
(-0.000263961 -0.0027026 0)
(-0.000266749 -0.00268826 0)
(-0.000269606 -0.00267378 0)
(-0.000272535 -0.0026592 0)
(-0.000275536 -0.00264456 0)
(-0.000278607 -0.00262991 0)
(-0.000281749 -0.00261529 0)
(-0.00028496 -0.00260076 0)
(-0.000288243 -0.00258639 0)
(-0.000291596 -0.00257224 0)
(-0.000295015 -0.00255836 0)
(-0.000298494 -0.00254483 0)
(-0.000302017 -0.00253172 0)
(-0.000305561 -0.00251909 0)
(-0.000309094 -0.00250701 0)
(-0.000312572 -0.00249552 0)
(-0.000315939 -0.00248468 0)
(-0.000319133 -0.00247453 0)
(-0.000322087 -0.00246507 0)
(-0.000324739 -0.00245633 0)
(-0.00032703 -0.00244828 0)
(-0.000328907 -0.00244091 0)
(-0.000330328 -0.00243421 0)
(-0.000331253 -0.00242816 0)
(-0.000331654 -0.00242273 0)
(-0.000331504 -0.00241789 0)
(-0.000330785 -0.00241363 0)
(-0.000329486 -0.00240991 0)
(-0.000327599 -0.00240671 0)
(-0.000325122 -0.002404 0)
(-0.000322054 -0.00240176 0)
(-0.000318398 -0.00239998 0)
(-0.000314158 -0.00239863 0)
(-0.000309337 -0.0023977 0)
(-0.000303939 -0.00239717 0)
(-0.00029797 -0.00239703 0)
(-0.000291436 -0.00239726 0)
(-0.000284342 -0.00239786 0)
(-0.000276696 -0.00239881 0)
(-0.000268502 -0.00240012 0)
(-0.00025977 -0.00240177 0)
(-0.000250507 -0.00240375 0)
(-0.000240725 -0.00240606 0)
(-0.000230434 -0.0024087 0)
(-0.000219646 -0.00241167 0)
(-0.00020837 -0.00241494 0)
(-0.000196619 -0.00241854 0)
(-0.000184406 -0.00242244 0)
(-0.000171742 -0.00242666 0)
(-0.000158642 -0.00243119 0)
(-0.000145115 -0.00243606 0)
(-0.000131172 -0.0024413 0)
(-0.000116825 -0.00244701 0)
(-0.000102087 -0.00245336 0)
(-8.69754e-05 -0.00246074 0)
(-7.15156e-05 -0.00246987 0)
(-5.57423e-05 -0.00248209 0)
(-3.97053e-05 -0.00249985 0)
(-2.34784e-05 -0.00252731 0)
(-7.17282e-06 -0.00257138 0)
(9.04035e-06 -0.00264275 0)
(2.49017e-05 -0.00275709 0)
(4.00263e-05 -0.00293548 0)
(5.38587e-05 -0.00320315 0)
(6.56283e-05 -0.00358488 0)
(7.43276e-05 -0.00409482 0)
(7.87515e-05 -0.00471927 0)
(7.76545e-05 -0.00539275 0)
(7.00899e-05 -0.00597288 0)
(5.5978e-05 -0.00622694 0)
(3.68872e-05 -0.00584888 0)
(1.67466e-05 -0.00451866 0)
(2.20671e-06 -0.00197837 0)
(0.000232986 -0.000469718 0)
(0.000182292 -0.00103372 0)
(0.000133878 -0.00153315 0)
(8.94281e-05 -0.00195023 0)
(4.97677e-05 -0.00227835 0)
(1.52066e-05 -0.00252113 0)
(-1.43578e-05 -0.00268947 0)
(-3.93478e-05 -0.0027979 0)
(-6.03725e-05 -0.00286147 0)
(-7.81011e-05 -0.00289358 0)
(-9.31749e-05 -0.00290497 0)
(-0.00010616 -0.00290354 0)
(-0.000117528 -0.00289473 0)
(-0.000127662 -0.002882 0)
(-0.000136859 -0.00286748 0)
(-0.000145348 -0.00285234 0)
(-0.000153298 -0.00283723 0)
(-0.000160832 -0.00282242 0)
(-0.000168035 -0.00280799 0)
(-0.000174968 -0.00279392 0)
(-0.000181674 -0.00278011 0)
(-0.000188187 -0.00276644 0)
(-0.000194533 -0.00275279 0)
(-0.000200735 -0.00273904 0)
(-0.000206818 -0.00272508 0)
(-0.000212801 -0.00271086 0)
(-0.000218701 -0.00269635 0)
(-0.000224528 -0.00268157 0)
(-0.000230283 -0.00266656 0)
(-0.000235958 -0.00265138 0)
(-0.000241538 -0.00263609 0)
(-0.000247004 -0.00262076 0)
(-0.000252339 -0.00260545 0)
(-0.000257535 -0.00259021 0)
(-0.000262597 -0.00257509 0)
(-0.000267538 -0.00256017 0)
(-0.000272385 -0.00254552 0)
(-0.000277168 -0.00253124 0)
(-0.000281925 -0.00251742 0)
(-0.000286691 -0.00250416 0)
(-0.000291491 -0.00249159 0)
(-0.000296333 -0.00247981 0)
(-0.000301197 -0.00246895 0)
(-0.000306028 -0.00245909 0)
(-0.000310747 -0.00245029 0)
(-0.000315261 -0.00244256 0)
(-0.000319479 -0.00243587 0)
(-0.000323321 -0.00243016 0)
(-0.000326718 -0.00242538 0)
(-0.000329617 -0.00242144 0)
(-0.000331973 -0.00241829 0)
(-0.000333748 -0.00241587 0)
(-0.000334913 -0.0024141 0)
(-0.000335443 -0.00241294 0)
(-0.000335325 -0.00241232 0)
(-0.000334551 -0.0024122 0)
(-0.000333121 -0.00241254 0)
(-0.000331042 -0.00241329 0)
(-0.000328321 -0.00241445 0)
(-0.000324968 -0.00241597 0)
(-0.000320993 -0.00241785 0)
(-0.000316405 -0.00242007 0)
(-0.000311219 -0.00242262 0)
(-0.000305449 -0.00242547 0)
(-0.000299108 -0.00242863 0)
(-0.000292209 -0.00243208 0)
(-0.000284764 -0.00243582 0)
(-0.000276784 -0.00243984 0)
(-0.000268279 -0.00244413 0)
(-0.000259259 -0.0024487 0)
(-0.000249733 -0.00245353 0)
(-0.000239711 -0.00245862 0)
(-0.000229204 -0.00246397 0)
(-0.000218224 -0.00246958 0)
(-0.000206784 -0.00247544 0)
(-0.000194898 -0.00248155 0)
(-0.000182577 -0.00248792 0)
(-0.000169836 -0.00249457 0)
(-0.000156686 -0.00250154 0)
(-0.000143141 -0.0025089 0)
(-0.00012921 -0.00251683 0)
(-0.000114907 -0.00252568 0)
(-0.000100245 -0.00253615 0)
(-8.52479e-05 -0.00254955 0)
(-6.99499e-05 -0.00256822 0)
(-5.44046e-05 -0.00259624 0)
(-3.86957e-05 -0.00264031 0)
(-2.29559e-05 -0.00271088 0)
(-7.39315e-06 -0.00282323 0)
(7.67475e-06 -0.00299789 0)
(2.17772e-05 -0.00325943 0)
(3.42533e-05 -0.00363184 0)
(4.42259e-05 -0.00412858 0)
(5.06248e-05 -0.0047356 0)
(5.23354e-05 -0.00538795 0)
(4.85277e-05 -0.00594531 0)
(3.91914e-05 -0.00617908 0)
(2.5762e-05 -0.00578949 0)
(1.14914e-05 -0.00446402 0)
(1.37721e-06 -0.00195144 0)
(0.000369636 -0.000302187 0)
(0.000336025 -0.000858437 0)
(0.000296159 -0.00135653 0)
(0.000253219 -0.00177884 0)
(0.000209722 -0.00211763 0)
(0.000167641 -0.0023748 0)
(0.000128392 -0.00255941 0)
(9.28567e-05 -0.00268443 0)
(6.14149e-05 -0.00276369 0)
(3.40495e-05 -0.00280986 0)
(1.047e-05 -0.00283335 0)
(-9.76993e-06 -0.00284202 0)
(-2.71802e-05 -0.00284144 0)
(-4.22729e-05 -0.00283531 0)
(-5.55261e-05 -0.00282602 0)
(-6.73641e-05 -0.00281502 0)
(-7.81504e-05 -0.00280316 0)
(-8.81871e-05 -0.00279096 0)
(-9.77195e-05 -0.00277866 0)
(-0.000106943 -0.0027664 0)
(-0.000116012 -0.00275419 0)
(-0.00012505 -0.00274199 0)
(-0.000134155 -0.00272975 0)
(-0.000143411 -0.00271736 0)
(-0.000152883 -0.00270476 0)
(-0.000162625 -0.00269191 0)
(-0.000172671 -0.00267881 0)
(-0.000183036 -0.00266551 0)
(-0.000193711 -0.00265209 0)
(-0.000204666 -0.00263864 0)
(-0.000215848 -0.00262521 0)
(-0.00022719 -0.00261185 0)
(-0.000238618 -0.00259854 0)
(-0.000250058 -0.00258525 0)
(-0.000261438 -0.00257194 0)
(-0.00027269 -0.00255858 0)
(-0.00028375 -0.00254518 0)
(-0.000294559 -0.00253176 0)
(-0.000305068 -0.00251838 0)
(-0.000315243 -0.00250512 0)
(-0.000325059 -0.00249217 0)
(-0.000334484 -0.00247975 0)
(-0.000343467 -0.00246814 0)
(-0.000351922 -0.00245761 0)
(-0.000359741 -0.00244835 0)
(-0.000366812 -0.00244041 0)
(-0.000373046 -0.00243379 0)
(-0.000378389 -0.00242837 0)
(-0.000382819 -0.00242407 0)
(-0.000386337 -0.00242078 0)
(-0.000388957 -0.00241843 0)
(-0.000390697 -0.00241694 0)
(-0.000391577 -0.00241622 0)
(-0.000391621 -0.0024162 0)
(-0.000390858 -0.00241678 0)
(-0.000389322 -0.00241789 0)
(-0.000387056 -0.00241945 0)
(-0.000384102 -0.00242142 0)
(-0.000380498 -0.00242378 0)
(-0.000376268 -0.00242653 0)
(-0.000371431 -0.00242963 0)
(-0.000366006 -0.00243308 0)
(-0.00036001 -0.00243685 0)
(-0.000353464 -0.00244092 0)
(-0.000346386 -0.00244529 0)
(-0.000338794 -0.00244996 0)
(-0.000330701 -0.00245492 0)
(-0.000322118 -0.00246016 0)
(-0.000313056 -0.00246567 0)
(-0.000303529 -0.00247144 0)
(-0.000293547 -0.00247748 0)
(-0.000283119 -0.00248378 0)
(-0.000272249 -0.00249033 0)
(-0.000260948 -0.00249711 0)
(-0.000249228 -0.00250412 0)
(-0.0002371 -0.00251137 0)
(-0.000224571 -0.00251888 0)
(-0.000211638 -0.00252666 0)
(-0.000198293 -0.00253477 0)
(-0.000184524 -0.00254329 0)
(-0.000170325 -0.00255238 0)
(-0.000155687 -0.00256239 0)
(-0.000140602 -0.00257399 0)
(-0.000125062 -0.00258847 0)
(-0.000109066 -0.00260813 0)
(-9.26243e-05 -0.00263697 0)
(-7.57661e-05 -0.0026816 0)
(-5.85529e-05 -0.00275228 0)
(-4.11097e-05 -0.00286402 0)
(-2.36751e-05 -0.00303695 0)
(-6.67074e-06 -0.00329509 0)
(9.19441e-06 -0.00366168 0)
(2.2837e-05 -0.00414937 0)
(3.28179e-05 -0.00474349 0)
(3.75851e-05 -0.00537936 0)
(3.60914e-05 -0.00591859 0)
(2.86837e-05 -0.00613682 0)
(1.77216e-05 -0.00574013 0)
(7.04527e-06 -0.00442132 0)
(1.10966e-06 -0.00193168 0)
(0.000271613 -0.000214489 0)
(0.000255319 -0.00071901 0)
(0.000231489 -0.00118867 0)
(0.000204788 -0.00159671 0)
(0.000177244 -0.0019316 0)
(0.000150111 -0.00219331 0)
(0.000124325 -0.0023889 0)
(0.000100575 -0.00252907 0)
(7.92544e-05 -0.00262548 0)
(6.04832e-05 -0.00268903 0)
(4.41683e-05 -0.00272882 0)
(3.00784e-05 -0.00275195 0)
(1.79086e-05 -0.00276361 0)
(7.32952e-06 -0.00276744 0)
(-1.98031e-06 -0.00276589 0)
(-1.03192e-05 -0.00276064 0)
(-1.79528e-05 -0.00275276 0)
(-2.51122e-05 -0.00274299 0)
(-3.19972e-05 -0.00273182 0)
(-3.87789e-05 -0.00271956 0)
(-4.56028e-05 -0.00270642 0)
(-5.25919e-05 -0.0026925 0)
(-5.98497e-05 -0.00267785 0)
(-6.74636e-05 -0.0026625 0)
(-7.55067e-05 -0.00264647 0)
(-8.40389e-05 -0.00262983 0)
(-9.31059e-05 -0.00261268 0)
(-0.000102738 -0.00259521 0)
(-0.000112946 -0.00257761 0)
(-0.000123722 -0.00256014 0)
(-0.000135036 -0.00254298 0)
(-0.000146841 -0.00252631 0)
(-0.000159072 -0.00251023 0)
(-0.000171649 -0.00249479 0)
(-0.000184482 -0.00248005 0)
(-0.00019747 -0.00246604 0)
(-0.000210504 -0.00245282 0)
(-0.000223467 -0.00244041 0)
(-0.000236246 -0.00242884 0)
(-0.000248735 -0.00241811 0)
(-0.00026084 -0.00240834 0)
(-0.000272471 -0.00239975 0)
(-0.000283533 -0.00239265 0)
(-0.000293927 -0.00238736 0)
(-0.000303552 -0.00238401 0)
(-0.00031232 -0.00238254 0)
(-0.000320167 -0.00238271 0)
(-0.000327063 -0.0023842 0)
(-0.000333006 -0.00238674 0)
(-0.000338011 -0.00239011 0)
(-0.000342103 -0.00239419 0)
(-0.000345311 -0.00239889 0)
(-0.000347665 -0.00240411 0)
(-0.000349193 -0.00240978 0)
(-0.000349925 -0.00241579 0)
(-0.000349895 -0.00242203 0)
(-0.00034914 -0.00242844 0)
(-0.000347695 -0.00243499 0)
(-0.000345592 -0.00244172 0)
(-0.000342857 -0.00244866 0)
(-0.00033951 -0.00245581 0)
(-0.000335574 -0.00246314 0)
(-0.000331073 -0.00247063 0)
(-0.000326033 -0.00247825 0)
(-0.000320479 -0.00248601 0)
(-0.000314432 -0.00249392 0)
(-0.000307912 -0.00250199 0)
(-0.000300938 -0.00251022 0)
(-0.000293526 -0.0025186 0)
(-0.000285696 -0.00252713 0)
(-0.000277463 -0.00253582 0)
(-0.000268838 -0.0025447 0)
(-0.000259834 -0.00255377 0)
(-0.000250461 -0.002563 0)
(-0.000240731 -0.00257236 0)
(-0.000230658 -0.0025819 0)
(-0.000220248 -0.00259167 0)
(-0.000209502 -0.00260174 0)
(-0.000198413 -0.00261218 0)
(-0.000186974 -0.00262309 0)
(-0.000175169 -0.00263465 0)
(-0.000162978 -0.00264724 0)
(-0.000150377 -0.00266157 0)
(-0.000137335 -0.00267894 0)
(-0.000123818 -0.00270164 0)
(-0.000109792 -0.00273366 0)
(-9.52326e-05 -0.00278147 0)
(-8.01377e-05 -0.00285514 0)
(-6.45581e-05 -0.00296917 0)
(-4.86483e-05 -0.0031428 0)
(-3.27449e-05 -0.00339858 0)
(-1.74683e-05 -0.00375762 0)
(-3.78189e-06 -0.00422999 0)
(6.76577e-06 -0.00479917 0)
(1.24551e-05 -0.00540142 0)
(1.2217e-05 -0.00590496 0)
(6.61663e-06 -0.00609835 0)
(-1.14288e-06 -0.00570133 0)
(-5.50316e-06 -0.0044076 0)
(-2.54893e-06 -0.00194279 0)
)
;
boundaryField
{
leftWall
{
type fixedValue;
value uniform (0 0 0);
}
rightWall
{
type fixedValue;
value uniform (0 0 0);
}
lowerWall
{
type fixedValue;
value uniform (0 0 0);
}
atmosphere
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
300
(
(0 -0.000761888 0)
(0 -0.00198675 0)
(0 -0.00249435 0)
(0 -0.00235445 0)
(0 -0.00179874 0)
(0 -0.00106019 0)
(0 -0.00031105 0)
(6.76345e-05 0.000340842 0)
(8.50797e-05 0.000852921 0)
(0.00010394 0.00122981 0)
(0.000123322 0.00149052 0)
(0.000142836 0.00166174 0)
(0.00016234 0.00176931 0)
(0.000181775 0.00183428 0)
(0.000201101 0.00187206 0)
(0.000220293 0.00189312 0)
(0.000239332 0.00190414 0)
(0.000258206 0.00190916 0)
(0.000276905 0.00191051 0)
(0.000295422 0.00190952 0)
(0.000313747 0.00190689 0)
(0.000331873 0.00190299 0)
(0.000349793 0.00189802 0)
(0.000367494 0.00189208 0)
(0.000384963 0.00188523 0)
(0.000402184 0.0018775 0)
(0.000419138 0.0018689 0)
(0.000435806 0.00185945 0)
(0.000452167 0.00184915 0)
(0.000468202 0.001838 0)
(0.00048389 0.00182601 0)
(0.00049921 0.00181315 0)
(0.000514138 0.00179942 0)
(0.00052865 0.00178481 0)
(0.000542719 0.00176931 0)
(0.000556317 0.00175289 0)
(0.000569415 0.00173555 0)
(0.000581983 0.00171729 0)
(0.000593987 0.0016981 0)
(0.000605391 0.00167797 0)
(0.000616151 0.00165692 0)
(0.000626221 0.00163494 0)
(0.000635546 0.00161205 0)
(0.000644063 0.00158826 0)
(0.000651701 0.00156358 0)
(0.00065838 0.00153804 0)
(0.00066401 0.00151163 0)
(0.000668487 0.00148439 0)
(0.000671691 0.0014563 0)
(0.000673492 0.00142737 0)
(0.000673754 0.0013976 0)
(0.000672338 0.00136697 0)
(0.000669096 0.00133543 0)
(0.000663873 0.00130288 0)
(0.000656512 0.00126911 0)
(0.000646867 0.0012337 0)
(0.000634822 0.00119598 0)
(0.000620328 0.00115494 0)
(0.000603439 0.00110941 0)
(0.000584342 0.00105833 0)
(0.000563343 0.00100128 0)
(0.000540818 0.00093884 0)
(0.000517172 0.000872436 0)
(0.00049283 0.000803787 0)
(0.0004682 0.000734695 0)
(0.000443485 0.000667618 0)
(0.000418615 0.000605205 0)
(0.000393589 0.000547215 0)
(0.00036847 0.000489652 0)
(0.000343601 0.00042846 0)
(0.0003194 0.000362848 0)
(0.000296712 0.000293417 0)
(0.000275759 0.000220795 0)
(0.000256777 0.000146388 0)
(0.000240437 7.04732e-05 0)
(0 -3.04083e-06 0)
(0 -7.5639e-05 0)
(0 -0.000150741 0)
(0 -0.000225233 0)
(0 -0.000298913 0)
(0 -0.000371706 0)
(0 -0.00044345 0)
(0 -0.000513871 0)
(0 -0.000582562 0)
(0 -0.000648937 0)
(0 -0.000712158 0)
(0 -0.000771007 0)
(0 -0.000823684 0)
(0 -0.000867524 0)
(0 -0.000898624 0)
(0 -0.000911422 0)
(0 -0.000898325 0)
(0 -0.000849551 0)
(0 -0.000753449 0)
(0 -0.000597681 0)
(0 -0.000371956 0)
(0 -7.36201e-05 0)
(-0.00014204 0.000305143 0)
(-0.000165913 0.000762304 0)
(-0.000185487 0.00127621 0)
(-0.000195824 0.00168467 0)
(-0.000201137 0.0019591 0)
(-0.000204948 0.00223195 0)
(-0.000207289 0.0024996 0)
(-0.000208189 0.00275861 0)
(-0.000207702 0.00300595 0)
(-0.000205912 0.00323908 0)
(-0.000202928 0.00345601 0)
(-0.000198876 0.00365539 0)
(-0.000193893 0.00383645 0)
(-0.000188119 0.003999 0)
(-0.000181696 0.00414333 0)
(-0.000174761 0.00427018 0)
(-0.000167442 0.00438058 0)
(-0.000159855 0.00447581 0)
(-0.000152102 0.00455729 0)
(-0.000144272 0.00462651 0)
(-0.000136435 0.00468492 0)
(-0.000128645 0.00473395 0)
(-0.000120943 0.00477491 0)
(-0.000113353 0.004809 0)
(-0.000105888 0.00483729 0)
(-9.855e-05 0.00486068 0)
(-9.13334e-05 0.00487998 0)
(-8.42251e-05 0.00489584 0)
(-7.72074e-05 0.00490879 0)
(-7.02595e-05 0.00491927 0)
(-6.33585e-05 0.00492763 0)
(-5.64811e-05 0.00493412 0)
(-4.96042e-05 0.00493896 0)
(-4.27058e-05 0.0049423 0)
(-3.57656e-05 0.00494422 0)
(-2.87657e-05 0.00494481 0)
(-2.16906e-05 0.00494411 0)
(-1.45278e-05 0.00494214 0)
(-7.26768e-06 0.0049389 0)
(9.61887e-08 0.00493438 0)
(7.56691e-06 0.00492857 0)
(1.51443e-05 0.00492145 0)
(2.2825e-05 0.00491298 0)
(3.06019e-05 0.00490315 0)
(3.84648e-05 0.00489192 0)
(4.63997e-05 0.00487927 0)
(5.43895e-05 0.00486517 0)
(6.24136e-05 0.00484962 0)
(7.04483e-05 0.00483259 0)
(7.84671e-05 0.00481409 0)
(8.64413e-05 0.00479412 0)
(9.43402e-05 0.00477269 0)
(0.000102133 0.00474982 0)
(0.000109787 0.00472556 0)
(0.000117273 0.00469995 0)
(0.000124563 0.00467303 0)
(0.000131633 0.00464489 0)
(0.000138462 0.00461558 0)
(0.000145032 0.00458518 0)
(0.000151333 0.00455378 0)
(0.000157356 0.00452145 0)
(0.000163098 0.00448829 0)
(0.000168559 0.00445436 0)
(0.000173745 0.00441975 0)
(0.000178662 0.00438453 0)
(0.00018332 0.00434876 0)
(0.000187734 0.00431252 0)
(0.000191919 0.00427585 0)
(0.000195892 0.00423879 0)
(0.000199672 0.00420138 0)
(0.000203283 0.00416361 0)
(0.000206747 0.00412549 0)
(0.000210089 0.00408698 0)
(0.000213335 0.00404801 0)
(0.000216516 0.00400849 0)
(0.000219658 0.00396827 0)
(0.000222794 0.00392715 0)
(0.000225951 0.00388486 0)
(0.000229162 0.00384107 0)
(0.000232452 0.00379534 0)
(0.000235848 0.00374714 0)
(0.000239372 0.00369581 0)
(0.000243039 0.0036406 0)
(0.00024686 0.0035806 0)
(0.000250836 0.00351477 0)
(0.000254957 0.00344194 0)
(0.000259202 0.00336084 0)
(0.000263538 0.00327009 0)
(0.000267915 0.00316826 0)
(0.000272269 0.00305392 0)
(0.000276523 0.00292569 0)
(0.000280583 0.00278232 0)
(0.000284344 0.00262277 0)
(0.000287691 0.0024463 0)
(0.000290506 0.00225252 0)
(0.000292669 0.00204153 0)
(0.000294068 0.00181391 0)
(0.000294602 0.00157082 0)
(0.000294185 0.001314 0)
(0.000292765 0.00104579 0)
(0.000290389 0.000768958 0)
(0.000287205 0.000486316 0)
(0.000283272 0.000200069 0)
(0 -0.000214489 0)
(0 -0.00071901 0)
(0 -0.00118867 0)
(0 -0.00159671 0)
(0 -0.0019316 0)
(0 -0.00219331 0)
(0 -0.0023889 0)
(0 -0.00252907 0)
(0 -0.00262548 0)
(0 -0.00268903 0)
(0 -0.00272882 0)
(0 -0.00275195 0)
(0 -0.00276361 0)
(0 -0.00276744 0)
(0 -0.00276589 0)
(0 -0.00276064 0)
(0 -0.00275276 0)
(0 -0.00274299 0)
(0 -0.00273182 0)
(0 -0.00271956 0)
(0 -0.00270642 0)
(0 -0.0026925 0)
(0 -0.00267785 0)
(0 -0.0026625 0)
(0 -0.00264647 0)
(0 -0.00262983 0)
(0 -0.00261268 0)
(0 -0.00259521 0)
(0 -0.00257761 0)
(0 -0.00256014 0)
(0 -0.00254298 0)
(0 -0.00252631 0)
(0 -0.00251023 0)
(0 -0.00249479 0)
(0 -0.00248005 0)
(0 -0.00246604 0)
(0 -0.00245282 0)
(0 -0.00244041 0)
(0 -0.00242884 0)
(0 -0.00241811 0)
(0 -0.00240834 0)
(0 -0.00239975 0)
(0 -0.00239265 0)
(0 -0.00238736 0)
(0 -0.00238401 0)
(0 -0.00238254 0)
(0 -0.00238271 0)
(0 -0.0023842 0)
(0 -0.00238674 0)
(0 -0.00239011 0)
(0 -0.00239419 0)
(0 -0.00239889 0)
(0 -0.00240411 0)
(0 -0.00240978 0)
(0 -0.00241579 0)
(0 -0.00242203 0)
(0 -0.00242844 0)
(0 -0.00243499 0)
(0 -0.00244172 0)
(0 -0.00244866 0)
(0 -0.00245581 0)
(0 -0.00246314 0)
(0 -0.00247063 0)
(0 -0.00247825 0)
(0 -0.00248601 0)
(0 -0.00249392 0)
(0 -0.00250199 0)
(0 -0.00251022 0)
(0 -0.0025186 0)
(0 -0.00252713 0)
(0 -0.00253582 0)
(0 -0.0025447 0)
(0 -0.00255377 0)
(0 -0.002563 0)
(0 -0.00257236 0)
(0 -0.0025819 0)
(0 -0.00259167 0)
(0 -0.00260174 0)
(0 -0.00261218 0)
(0 -0.00262309 0)
(0 -0.00263465 0)
(0 -0.00264724 0)
(0 -0.00266157 0)
(0 -0.00267894 0)
(0 -0.00270164 0)
(0 -0.00273366 0)
(0 -0.00278147 0)
(0 -0.00285514 0)
(0 -0.00296917 0)
(0 -0.0031428 0)
(0 -0.00339858 0)
(0 -0.00375762 0)
(0 -0.00422999 0)
(0 -0.00479917 0)
(0 -0.00540142 0)
(0 -0.00590496 0)
(0 -0.00609835 0)
(0 -0.00570133 0)
(0 -0.0044076 0)
(0 -0.00194279 0)
)
;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"stig.m.nilsen@gmail.com"
] | stig.m.nilsen@gmail.com | |
93dc0437e0199ed8a58fc9e536d153b3c0827158 | d77b008ef5748b47a972ced48965ad5e828d811e | /Medium/Backtracking/Word Search/Solution.cpp | 10b50918cea38d5f844def9241d3accd299ac44f | [] | no_license | fatin99/Leetcode | 5020c180baadc37e22bc0307b1b961c2f695b7ff | b2da57910ab8e12c8cfe8b74d282271f8f28544c | refs/heads/main | 2023-08-25T14:29:11.064127 | 2021-09-30T12:15:58 | 2021-09-30T12:15:58 | 398,154,725 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,656 | cpp | #include <bits/stdc++.h>
using namespace std;
class Solution {
public:
vector<vector<char>> board;
string word;
bool found;
int m;
int n;
bool exist2(vector<vector<char>>& board, string word) {
this->board = board;
this->word = word;
this->found = false;
vector<tuple<int, int>> startIndexes;
unordered_map<int, unordered_map<int, bool>> visited;
for (int i = 0; i < board.size(); i ++) {
for (int j = 0; j < board[i].size(); j ++) {
visited[i][j] = false;
if (board[i][j] == word[0]) {
startIndexes.push_back(make_tuple(i,j));
}
}
}
for (int i = 0; i < startIndexes.size(); i ++) {
int row = get<0>(startIndexes[i]);
int col = get<1>(startIndexes[i]);
string::iterator current = next(word.begin());
if (backtrack(current, row, col, 1, 0, visited)) {
return true;
}
}
return false;
}
bool exist(vector<vector<char> > &board, string word) {
m = board.size();
n = board[0].size();
for(int x = 0; x < m; x++) {
for(int y = 0; y < n; y++) {
if(isFound(board,word.c_str(), x, y)) {
return true;
}
}
}
return false;
}
bool isFound(vector<vector<char> > &board, const char* w, int x, int y) {
if(x < 0 || y < 0 || x >= m || y >= n || board[x][y] == '\0' || *w != board[x][y])
return false;
if(*(w+1) == '\0')
return true;
char t = board[x][y];
board[x][y] = '\0';
if(isFound(board, w + 1 , x - 1, y) ||
isFound(board, w + 1 , x + 1, y) ||
isFound(board, w + 1 , x , y - 1) ||
isFound(board, w + 1 , x , y + 1))
return true;
board[x][y] = t;
return false;
}
bool backtrack(string::iterator current, int row, int col, int count, int prev, unordered_map<int, unordered_map<int, bool>> visited) {
visited[row][col] = true;
if (count == word.length()) {
found = true;
return true;
}
char left = '0';
char right = '0';
char up = '0';
char down = '0';
if (col > 0) {
if (!visited[row][col-1]) {
left = board[row][col-1];
}
}
if (col < board[row].size()-1) {
if (!visited[row][col+1]) {
right = board[row][col+1];
}
}
if (row > 0) {
if (!visited[row-1][col]) {
up = board[row-1][col];
}
}
if (row < board.size()-1) {
if (!visited[row+1][col]) {
down = board[row+1][col];
}
}
if (left == *current && prev != 2) backtrack(next(current), row, col-1, count+1, 1, visited);
if (right == *current && prev != 1) backtrack(next(current), row, col+1, count+1, 2, visited);
if (up == *current && prev != 4) backtrack(next(current), row-1, col, count+1, 3, visited);
if (down == *current && prev != 3) backtrack(next(current), row+1, col, count+1, 4, visited);
if (found) return true;
else return false;
}
};
int main() {
Solution solution;
vector<vector<char>> board = {{'A','A'},
{'A','A'},
{'A','A'}};
string word = "AAAAAAA";
cout << solution.exist(board, word);
return 0;
} | [
"fatinnbs@gmail.com"
] | fatinnbs@gmail.com |
d8fa2412acbac8ed1163896ec080d97898f24bb2 | bfa0562c391fa4019fcd49f0b0aafb4611b696a9 | /net/Epoll.h | 9f0d11b9db68282dc4ff8d4451b36a88c7cc70e2 | [] | no_license | Th824/MySimpleWebServer | 193ffb56097c0f86f031dfa9cf04d2452b2dd460 | bf6d373a8208db8f88c7cdf73abf11c8857f08ee | refs/heads/master | 2021-04-17T07:18:09.570288 | 2020-05-12T09:41:05 | 2020-05-12T09:41:05 | 249,424,255 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 644 | h | #pragma once
#include <sys/epoll.h>
#include <memory>
#include <unordered_map>
#include <vector>
#include "Channel.h"
#include "base/noncopyable.h"
class Epoll : noncopyable {
public:
Epoll();
~Epoll();
// 往epoll中添加关注的事件
void epoll_add(Channel* request, int timeout);
// 修改epoll中的事件
void epoll_mod(Channel* request, int timeout);
// 删除epoll中的事件
void epoll_del(Channel* request);
std::vector<Channel*> poll();
private:
static const int MAXFDS = 100000;
int epollFd_;
std::vector<epoll_event> events_;
std::unordered_map<int, Channel*> fd2chan_;
// TODO,定时器
}; | [
"wuzihui64@gmail.com"
] | wuzihui64@gmail.com |
23b19121129f86c4c8b3733f7cee2ab8a3fe5264 | 673058dceba4e81adeaf1ebfd979df0cc5902a2c | /bin/Debug/Grent/CPP/PB/PublicStructWraper.h | a23f3d1276842981dc42518ab9af67fe646fa70c | [] | no_license | qipa/RpcCoder_SY | c0dbe6e87ad2053d85df1d6d74c9f7058c042e15 | 2a8a196fec927afbb27d35ee1b9bddd9a6591634 | refs/heads/master | 2021-05-14T05:58:12.335735 | 2017-12-11T03:58:28 | 2017-12-11T03:58:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,931 | h | /********************************************************************************************
* Copyright (C), 2011-2025, Ambition. Co., Ltd.
* FileName: PubWraperClass.h
* Author: 郭晓波
* Description: 公共数据结构的类封装
* Version: 1.0
* History:
* <author> <time> <version > <desc>
*
********************************************************************************************/
#ifndef __PUB_WRAPER_CLASS_H
#define __PUB_WRAPER_CLASS_H
#include "BASE.h"
#include "PublicStruct.pb.h"
#include "DataWraperInterface.h"
//v3封装类
class V3Wraper : public DataWraperInterface
{
public:
//构造函数
V3Wraper()
{
m_X = -1;
m_Y = -1;
m_Z = -1;
}
//赋值构造函数
V3Wraper(const V3& v){ Init(v); }
//等号重载函数
void operator = (const V3& v){ Init(v); }
//转化成Protobuffer类型函数
V3 ToPB() const
{
V3 v;
v.set_x( m_X );
v.set_y( m_Y );
v.set_z( m_Z );
return v;
}
//获取Protobuffer序列化后大小函数
int ByteSize() const { return ToPB().ByteSize();}
//Protobuffer序列化到缓冲区
bool SerializeToArray( void* data, int size ) const
{
return ToPB().SerializeToArray(data,size);
}
//Protobuffer序列化到字符串
string SerializeAsString() const
{
return ToPB().SerializeAsString();
}
//Protobuffer从字符串进行反序列化
bool ParseFromString(const string& v)
{
return ParseFromArray(v.data(),v.size());
}
//Protobuffer从缓冲区进行反序列化
bool ParseFromArray(const void* data, int size)
{
V3 pb;
if(!pb.ParseFromArray(data,size)){return false;}
Init(pb);
return true;
}
string HtmlDescHeader()
{
string htmlBuff = "<div style=\"padding-left:30px\">\r\n";
htmlBuff += "</div>\r\n";
return htmlBuff;
}
string ToHtml()
{
string htmlBuff = "<div style=\"padding-left:30px\">\r\n";
TStr tmpLine;
tmpLine.Fmt("<li>X:%.2ff</li>\r\n",m_X);
tmpLine.Fmt("<li>Y:%.2ff</li>\r\n",m_Y);
tmpLine.Fmt("<li>Z:%.2ff</li>\r\n",m_Z);
htmlBuff += "</div>\r\n";
return htmlBuff;
}
private:
//从Protobuffer类型初始化
void Init(const V3& v)
{
m_X = v.x();
m_Y = v.y();
m_Z = v.z();
}
private:
//x
float m_X;
public:
void SetX( float v)
{
m_X=v;
}
float GetX()
{
return m_X;
}
float GetX() const
{
return m_X;
}
private:
//y
float m_Y;
public:
void SetY( float v)
{
m_Y=v;
}
float GetY()
{
return m_Y;
}
float GetY() const
{
return m_Y;
}
private:
//z
float m_Z;
public:
void SetZ( float v)
{
m_Z=v;
}
float GetZ()
{
return m_Z;
}
float GetZ() const
{
return m_Z;
}
};
//角色信息封装类
class CharacterInfoWraper : public DataWraperInterface
{
public:
//构造函数
CharacterInfoWraper()
{
m_RoleId = 0;
m_Nickname = "";
m_ConfigId = -1;
}
//赋值构造函数
CharacterInfoWraper(const CharacterInfo& v){ Init(v); }
//等号重载函数
void operator = (const CharacterInfo& v){ Init(v); }
//转化成Protobuffer类型函数
CharacterInfo ToPB() const
{
CharacterInfo v;
v.set_roleid( m_RoleId );
v.set_nickname( m_Nickname );
v.set_configid( m_ConfigId );
return v;
}
//获取Protobuffer序列化后大小函数
int ByteSize() const { return ToPB().ByteSize();}
//Protobuffer序列化到缓冲区
bool SerializeToArray( void* data, int size ) const
{
return ToPB().SerializeToArray(data,size);
}
//Protobuffer序列化到字符串
string SerializeAsString() const
{
return ToPB().SerializeAsString();
}
//Protobuffer从字符串进行反序列化
bool ParseFromString(const string& v)
{
return ParseFromArray(v.data(),v.size());
}
//Protobuffer从缓冲区进行反序列化
bool ParseFromArray(const void* data, int size)
{
CharacterInfo pb;
if(!pb.ParseFromArray(data,size)){return false;}
Init(pb);
return true;
}
string HtmlDescHeader()
{
string htmlBuff = "<div style=\"padding-left:30px\">\r\n";
htmlBuff += "</div>\r\n";
return htmlBuff;
}
string ToHtml()
{
string htmlBuff = "<div style=\"padding-left:30px\">\r\n";
TStr tmpLine;
htmlBuff += "</div>\r\n";
return htmlBuff;
}
private:
//从Protobuffer类型初始化
void Init(const CharacterInfo& v)
{
m_RoleId = v.roleid();
m_Nickname = v.nickname();
m_ConfigId = v.configid();
}
private:
//roleID
uint64_t m_RoleId;
public:
void SetRoleId( uint64_t v)
{
m_RoleId=v;
}
uint64_t GetRoleId()
{
return m_RoleId;
}
uint64_t GetRoleId() const
{
return m_RoleId;
}
private:
//昵称
string m_Nickname;
public:
void SetNickname( const string& v)
{
m_Nickname=v;
}
string GetNickname()
{
return m_Nickname;
}
string GetNickname() const
{
return m_Nickname;
}
private:
//配置表id
INT32 m_ConfigId;
public:
void SetConfigId( INT32 v)
{
m_ConfigId=v;
}
INT32 GetConfigId()
{
return m_ConfigId;
}
INT32 GetConfigId() const
{
return m_ConfigId;
}
};
#endif
| [
"ambitiongxb@foxmail.com"
] | ambitiongxb@foxmail.com |
cd74921a4da6904e75ffe8e1adf77bad2ad099d7 | 777a7527317e5d265536701a7a8f24f3cd6b5ada | /programing/15_box_it.cc | 662542aa66736d771e10cc2edc32ff8bef2a729c | [] | no_license | ThanhChinhBK/interview-programing-questions | 22d0906ae2e315af4e48f56fe2296a4ac26ff62e | b58d716348301e9b62c57e98ed34a2fb9c34d033 | refs/heads/master | 2022-05-14T02:29:03.879809 | 2022-04-09T14:32:26 | 2022-04-09T14:32:26 | 116,651,413 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,449 | cc | #include <iostream>
using namespace std;
class Box{
private:
int l=0;
int b=0;
int h=0;
public:
int getLength(){ return l;}
int getBreadth(){ return b;}
int getHeight(){return h;}
long long CalculateVolume() { return (long long) l*b*h;}
Box(int length, int breadth, int height){
l=length;
b=breadth;
h=height;
}
Box(Box& B){
l=B.getLength();
b=B.getBreadth();
h=B.getHeight();
}
Box(){}
~Box(){
}
bool operator<(Box &B){
int ll=B.getLength();
int bb=B.getBreadth();
int hh=B.getHeight();
if(l < ll || (b < bb && l==ll) || (h < hh && b==bb && l==ll))
return true;
else
return false;
}
};
ostream& operator<<(ostream& out, Box B){
return out<<B.getLength()<<' '<<B.getBreadth()<<' '<<B.getHeight();
}
void check2(){
int n;
cin>>n;
Box temp;
for(int i=0;i<n;i++){
int type;
cin>>type;
if(type ==1){
cout<<temp<<endl;
}
if(type == 2){
int l,b,h;
cin>>l>>b>>h;
Box NewBox(l,b,h);
temp=NewBox;
cout<<temp<<endl;
}
if(type==3){
int l,b,h;
cin>>l>>b>>h;
Box NewBox(l,b,h);
if(NewBox<temp){
cout<<"Lesser\n";
}
else{
cout<<"Greater\n";
}
}
if(type==4){
cout<<temp.CalculateVolume()<<endl;
}
if(type==5){
Box NewBox(temp);
cout<<NewBox<<endl;
}
}
}
int main(){
check2();
}
| [
"nguyenthanhchinh96@gmail.com"
] | nguyenthanhchinh96@gmail.com |
b511442c25acf02a9a9f364ef621d85e31aea3da | c38e416f985fe0a9adb8d9915759076620db3f65 | /review/test_2_8/test_2_8/test.cpp | a58473cc3ca668d2c9df0a97a6a343b0c9901746 | [] | no_license | Missingrakan/C- | d46ef9dba065ab022833b61507524e91b8f9f192 | ae6532bc1c3e3e3d0f78f67292716d800d0cc4e2 | refs/heads/master | 2021-06-19T21:15:17.993858 | 2021-06-15T13:13:49 | 2021-06-15T13:13:49 | 223,600,885 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 6,731 | cpp | #define _CRT_SECURE_NO_WARNINGS 1
#include <iostream>
#include <vector>
#include <string>
using namespace std;
//给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。
//如果数组中不存在目标值 target,返回?[-1, -1]。
class Solution {
private:
int findFitstPosition(vector<int> &nums, int target) {
int size = nums.size();
int left = 0;
int right = size - 1;
while (left < right)
{
int mid = left + (right - left) / 2;
if (nums[mid] < target)
left = mid + 1;
else if (nums[mid] == target)
right = mid;
else
// nums[mid] > target
right = mid - 1;
}
if (nums[left] != target)
return -1;
return left;
}
int findLastPosition(vector<int> &nums, int target) {
int size = nums.size();
int left = 0;
int right = size - 1;
while (left < right) {
int mid = left + (right - left + 1) / 2;
if (nums[mid] > target) {
right = mid - 1;
}
else if (nums[mid] == target){
left = mid;
}
else {
// nums[mid] < target
left = mid + 1;
}
}
if (nums[left] != target) {
return -1;
}
return left;
}
public:
vector<int> searchRange(vector<int> &nums, int target) {
int size = nums.size();
if (size == 0) {
return{ -1, -1 };
}
int fitstPosition = findFitstPosition(nums, target);
if (fitstPosition == -1) {
return{ -1, -1 };
}
int lastPosition = findLastPosition(nums, target);
return{ fitstPosition, lastPosition };
}
};
void main()
{
vector<int> v = { 5, 7, 7, 8, 8, 10 };
Solution s;
s.searchRange(v, 8);
}
/*
class Solution {
public:
int binarySearch(vector<int>& nums, int target, bool lower) {
int left = 0, right = (int)nums.size() - 1, ans = (int)nums.size();
while (left <= right)
{
int mid = (left + right) / 2;
if (nums[mid] > target || (lower && nums[mid] >= target))
{
right = mid - 1;
ans = mid;
}
else {
left = mid + 1;
}
}
return ans;
}
vector<int> searchRange(vector<int>& nums, int target) {
int leftIdx = binarySearch(nums, target, true);
int rightIdx = binarySearch(nums, target, false) - 1;
if (leftIdx <= rightIdx && rightIdx < nums.size() && nums[leftIdx] == target && nums[rightIdx] == target) {
return vector<int>{leftIdx, rightIdx};
}
return vector<int>{-1, -1};
}
};
*/
/*
//请你来实现一个?myAtoi(string s)?函数,使其能将字符串转换成一个 32 位有符号整数(类似 C / C++ 中的 atoi 函数)。
//函数?myAtoi(string s) 的算法如下:
//
//读入字符串并丢弃无用的前导空格
//检查第一个字符(假设还未到字符末尾)为正还是负号,读取该字符(如果有)。 确定最终结果是负数还是正数。 如果两者都不存在,则假定结果为正。
//读入下一个字符,直到到达下一个非数字字符或到达输入的结尾。字符串的其余部分将被忽略。
//将前面步骤读入的这些数字转换为整数(即,"123" -> 123, "0032" -> 32)。如果没有读入数字,则整数为 0 。必要时更改符号(从步骤 2 开始)。
//如果整数数超过 32 位有符号整数范围[?231, 231?? 1] ,需要截断这个整数,使其保持在这个范围内。具体来说,小于 ?231 的整数应该被固定为 ?231 ,大于 231?? 1 的整数应该被固定为 231?? 1 。
//返回整数作为最终结果。
//注意:
//本题中的空白字符只包括空格字符 ' ' 。
//除前导空格或数字后的其余字符串外,请勿忽略 任何其他字符。
//
//示例?1:
//
//输入:s = "42"
//输出:42
//解释:加粗的字符串为已经读入的字符,插入符号是当前读取的字符。
//第 1 步:"42"(当前没有读入字符,因为没有前导空格)
//^
//第 2 步:"42"(当前没有读入字符,因为这里不存在 '-' 或者 '+')
//^
//第 3 步:"42"(读入 "42")
//^
//解析得到整数 42 。
//由于 "42" 在范围[-231, 231 - 1] 内,最终结果为 42 。
//示例?2:
//
//输入:s = " -42"
//输出: - 42
//解释:
//第 1 步:" -42"(读入前导空格,但忽视掉)
//^
//第 2 步:" -42"(读入 '-' 字符,所以结果应该是负数)
//^
//第 3 步:" -42"(读入 "42")
//^
//解析得到整数 - 42 。
//由于 "-42" 在范围[-231, 231 - 1] 内,最终结果为 - 42 。
//示例?3:
//
//输入:s = "4193 with words"
//输出:4193
//解释:
//第 1 步:"4193 with words"(当前没有读入字符,因为没有前导空格)
// ^
//第 2 步:"4193 with words"(当前没有读入字符,因为这里不存在 '-' 或者 '+')
// ^
//第 3 步:"4193 with words"(读入 "4193";由于下一个字符不是一个数字,所以读入停止)
// ^
//解析得到整数 4193 。
//由于 "4193" 在范围[-231, 231 - 1] 内,最终结果为 4193 。
//示例?4:
//
//输入:s = "words and 987"
//输出:0
//解释:
//第 1 步:"words and 987"(当前没有读入字符,因为没有前导空格)
// ^
//第 2 步:"words and 987"(当前没有读入字符,因为这里不存在 '-' 或者 '+')
// ^
//第 3 步:"words and 987"(由于当前字符 'w' 不是一个数字,所以读入停止)
// ^
//解析得到整数 0 ,因为没有读入任何数字。
//由于 0 在范围[-231, 231 - 1] 内,最终结果为 0 。
//示例?5:
//
//输入:s = "-91283472332"
//输出: - 2147483648
//解释:
//第 1 步:"-91283472332"(当前没有读入字符,因为没有前导空格)
//^
//第 2 步:"-91283472332"(读入 '-' 字符,所以结果应该是负数)
//^
//第 3 步:"-91283472332"(读入 "91283472332")
//^
//解析得到整数 - 91283472332 。
//由于 - 91283472332 小于范围[-231, 231 - 1] 的下界,最终结果被截断为 - 231 = -2147483648 。
class Solution {
public:
int myAtoi(string s) {
//跳过空格
size_t i = 0;
while (i < s.size() && s[i] == ' ')
i++;
if (i == s.size())
return 0;
//判断有无符号
int flag = 1;
if (s[i] == '-')
{
flag = -1;
i++;
}
else if (s[i] == '+')
i++;
//不是符号也不是数字,直接返回
else if (!isdigit(s[i]))
return 0;
//到计算有效数字了
int num = 0;
while (isdigit(s[i]) && (i < s.size()))
{
//INT_MAX < 10*num + (s[i]-'0') 这个判断不行,因为此时计算后num作为int无法保存结果(即产生了溢出),所以小技巧就是进行移项,INT_MAX:2147483647
if ((INT_MAX - (s[i] - '0')) / 10 < num)
{
return flag == -1 ? flag*INT_MAX - 1 : INT_MAX;
}
num = 10 * num + (s[i] - '0');
i++;
}
return flag*num;
}
};
*/ | [
"3047451493@qq.com"
] | 3047451493@qq.com |
ddae0b2533fd8a546fb96d245d04fe7e5f9763b7 | 5d76e0896431662fd6f59b51df92831a0df8d963 | /fizz_buzz.cpp | ee38a32efdb5b25f8e3b22af39c720988386fd9e | [] | no_license | magmine/LeetCodeConcurrency- | 088a6b1521624b16cb6176c181dbee85a6cf7031 | 573e99d429f4a6a818d8aba8d7c7899ae4551f19 | refs/heads/master | 2022-12-12T11:28:26.658223 | 2020-09-04T22:59:41 | 2020-09-04T22:59:41 | 292,839,954 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,321 | cpp | #include <mutex>
#include <condition_variable>
#include <iostream>
#include <functional>
#include <thread>
#include <chrono>
using namespace std;
class FizzBuzz {
private:
int n;
int it = 1;
std::mutex mtx;
std::condition_variable cond_var;
public:
FizzBuzz(int n) {
this->n = n;
cond_var.notify_all();
}
void fizz(function<void()> printFizz) {
while (true) {
std::unique_lock<std::mutex> lk(mtx);
cond_var.wait(lk, [this] {
return ((it % 5 != 0) && (it % 3 == 0)) || it > n;
});
if (it <= n) {
printFizz();
it++;
lk.unlock();
cond_var.notify_all();
} else {
lk.unlock();
cond_var.notify_all();
return;
}
}
}
void buzz(function<void()> printBuzz) {
while(true) {
std::unique_lock<std::mutex> lk(mtx);
cond_var.wait(lk, [this] {
return (((it % 5 == 0) && (it % 3 != 0)) || it > n);
});
if (it <= n) {
printBuzz();
it++;
lk.unlock();
cond_var.notify_all();
} else {
lk.unlock();
cond_var.notify_all();
return;
}
}
}
void fizzbuzz(function<void()> printFizzBuzz) {
while (true){
std::unique_lock<std::mutex> lk(mtx);
cond_var.wait(lk, [this] {
return ((it % 5 == 0) && (it % 3 == 0)) || it > n;
});
if (it <= n) {
printFizzBuzz();
it++;
lk.unlock();
cond_var.notify_all();
} else {
lk.unlock();
cond_var.notify_all();
return;
}
}
}
void number(function<void(int)> printNumber) {
while (true) {
std::unique_lock<std::mutex> lk(mtx);
cond_var.wait(lk, [this] {
return ((it % 5 != 0) && (it % 3 != 0)) || it > n;
});
if (it <= n) {
printNumber(it);
it++;
lk.unlock();
cond_var.notify_all();
} else {
lk.unlock();
cond_var.notify_all();
return;
}
}
}
};
int main() {
FizzBuzz fizzbuzz(15);
std::function<void(void)> printFizz = [&] {
std::cout<<"Fizz"<<"\n";
};
std::function<void(void)> printBuzz = [&] {
std::cout<<"Buzz"<<"\n";
};
std::function<void(void)> printFizzBuzz = [&] {
std::cout<<"FizzBuzz"<<"\n";
};
std::function<void(int32_t)> printNumber = [&] (int32_t n) {
std::cout<<n<<"\n";
};
std::thread t1 = std::thread(&FizzBuzz::fizz, std::ref(fizzbuzz), printFizz);
std::thread t2 = std::thread(&FizzBuzz::buzz, std::ref(fizzbuzz), printBuzz);
std::thread t3 = std::thread(&FizzBuzz::fizzbuzz, std::ref(fizzbuzz), printFizzBuzz);
std::thread t4 = std::thread(&FizzBuzz::number, std::ref(fizzbuzz), printNumber);
t1.join();
t2.join();
t3.join();
t4.join();
} | [
"aminemag96@gmail.com"
] | aminemag96@gmail.com |
2be266c99103bcf6e3932301344008363afbde7f | c58443dc526e74322ee23784e57c50e318fa6879 | /MUSICAL_ROBOTS.ino | 0df40bfd17a2e047f8dd24e4f535e237b3c91a9b | [] | no_license | mtderryberry/Musical-Robotics | 56e990487b7182c212f517e8d96570b5ff6c5b97 | 2480613366f8e0f5bfc2ba0806d63ef2e3788f07 | refs/heads/master | 2016-09-06T12:06:23.713226 | 2014-06-04T16:04:48 | 2014-06-04T16:04:48 | 6,464,824 | 0 | 1 | null | 2012-11-10T09:43:08 | 2012-10-30T21:31:43 | C++ | UTF-8 | C++ | false | false | 86 | ino | #include <Scheduler.h>
//#include <EEPROM.h>
#include "MusicalRobots.h"
//LEAVE BLANK | [
"ecstipan@bamboo.wifi.wpi.edu"
] | ecstipan@bamboo.wifi.wpi.edu |
eb21ff38e345a7a2e40a735f2a82a0ccd20797b3 | cbdc2ea2ba1157ff806f4afcba3e30c16a463cb9 | /config/DiodeFexConfig.cc | a1abe64249f073f68780a20317f23f8d5d6f0ee7 | [] | no_license | lcls-l2daq/pdsapp | b4587751e21f019beb64051e3d953795d650d93d | 302ea9273778f38ee17d917c3ef97c4295d9f898 | refs/heads/master | 2021-01-18T23:46:48.052766 | 2017-10-10T20:41:05 | 2017-10-10T20:41:05 | 87,125,560 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 820 | cc | #include "pdsapp/config/DiodeFexConfig.hh"
#include "pdsapp/config/DiodeFexTable.hh"
#include "pds/config/DiodeFexConfigType.hh"
#include <new>
using namespace Pds_ConfigDb;
typedef DiodeFexConfigType T;
// limit to 8 ranges
static const int NRANGES=8;
DiodeFexConfig::DiodeFexConfig() :
Serializer("DiodeFexConfig"),
_table( new DiodeFexTable(NRANGES) )
{
_table->insert(pList);
}
int DiodeFexConfig::readParameters (void* from) {
T& c = *new(from) T;
_table->pull(const_cast<float*>(c.base ().data()),
const_cast<float*>(c.scale().data()));
return sizeof(c);
}
int DiodeFexConfig::writeParameters(void* to) {
float b[T::NRANGES];
float s[T::NRANGES];
_table->push(b,s);
*new(to) T(b,s);
return sizeof(T);
}
int DiodeFexConfig::dataSize() const {
return sizeof(T);
}
| [
"none@example.com"
] | none@example.com |
9b2babf32c7e557d252d1f7f712f4db58011b453 | 21b7d8820a0fbf8350d2d195f711c35ce9865a21 | /Alena's Schedule.cpp | fe72662930e86e0c5aea1f7c5a20101ca1481112 | [] | no_license | HarshitCd/Codeforces-Solutions | 16e20619971c08e036bb19186473e3c77b9c4634 | d8966129b391875ecf93bc3c03fc7b0832a2a542 | refs/heads/master | 2022-12-25T22:00:17.077890 | 2020-10-12T16:18:20 | 2020-10-12T16:18:20 | 286,409,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 577 | cpp |
#include <bits/stdc++.h>
using namespace std;
int main (void) {
int n, state = 0, a, count = 0;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a;
switch (state) {
case 0:
if (a == 1) {
count++;
state = 1;
}
break;
case 1:
if (a == 1) {
count++;
} else {
count++;
state = 2;
}
break;
case 2:
if (a == 1) {
count++;
state = 1;
} else {
count--;
state = 0;
}
break;
}
}
if (state == 2) {
cout << count - 1 << endl;
} else {
cout << count << endl;
}
return 0;
}
| [
"harshitcd@gmail.com"
] | harshitcd@gmail.com |
bd72ed4a3e407c9d6d597fd2fc0f2989a57183f4 | 53180c7fcf5de9110a0eecfd1046d61a463de7cc | /vista/about.h | d1a9f3f93ab8186259c41b8fccb5a17f7af4a3d6 | [
"MIT"
] | permissive | Eduardserban/MediaQllection | 8650403b7b4b4290c38a1f36571a1da742bef504 | 9501b051726c694622642b5ab1c1872efafb91f6 | refs/heads/master | 2022-11-17T13:32:10.248590 | 2020-07-18T08:31:59 | 2020-07-18T08:31:59 | 280,614,048 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 211 | h | #ifndef ABOUT_H
#define ABOUT_H
#include <QDialog>
#include <QLabel>
#include <QLayout>
class About: public QDialog
{
Q_OBJECT
public:
explicit About(QWidget *parent = nullptr);
};
#endif // ABOUT_H
| [
"sg_eduard@yahoo.it"
] | sg_eduard@yahoo.it |
35878497a3c0cf271aca392e57b7fb8fea2259ab | d7a70833f2d3573d9eab615f69106de75ff644f1 | /CS530-code/code.09.29/ppc.cpp | c6b1ff561b196db24f2076a795da0bcc09b08280 | [] | no_license | JingxianFan/InteractiveCG | 8c3ffd01f3ff813a7b133b69df232a13a48d55f9 | 019fcfbe548d937b2b0b7d012270482b33bfc234 | refs/heads/master | 2021-01-21T21:19:35.970790 | 2017-06-19T20:49:42 | 2017-06-19T20:49:42 | 94,819,292 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,987 | cpp | #include "ppc.h"
#include "m33.h"
PPC::PPC(float hfov, int _w, int _h) {
w = _w;
h = _h;
a = V3(1.0f, 0.0f, 0.0f);
b = V3(0.0f, -1.0f, 0.0f);
float hfovRadians = hfov / 180.0f * 3.1415f;
c = V3((float)-w/2.0f, (float)h/2.0f, -(float)w/(2.0f*tan(hfovRadians/2.0f)));
C = V3(0.0f, 0.0f, 0.0f);
}
// projects given point, returns false if point behind head
bool PPC::Project(V3 P, V3& projP) {
// flag that projection did not succeed
projP[0] = FLT_MAX;
M33 abc;
abc.SetColumn(a, 0);
abc.SetColumn(b, 1);
abc.SetColumn(c, 2);
V3 q = abc.Inverted()*(P-C);
if (q[2] <= 0.0f)
return false;
projP[0] = q[0] / q[2]; // u coordinate of projected point
projP[1] = q[1] / q[2]; // v coordinate of projected point
projP[2] = 1.0f / q[2]; // 1/w of projected point, to be used later for visibility
return true;
}
void PPC::Translate(V3 translation) {
C = C + translation;
}
void PPC::Pan(float theta) {
V3 aDir = (b*-1.0f).UnitVector();
a = a.RotateThisVectorAboutAxis(aDir, theta);
// b = b.RotateThisVectorAboutAxis(aDir, theta);
c = c.RotateThisVectorAboutAxis(aDir, theta);
}
// draw camera frustum in wireframe, adapt focal length to visF
void PPC::VisualizeCamera(PPC *visCam, FrameBuffer *fb, float visF) {
float scf = visF / GetF();
V3 c0(1.0f, 1.0f, 0.0f), c1(0.0f, 0.0f, 0.0f);
fb->Draw3DSegment(C+c*scf, c1,
C+(c+a*(float)w)*scf, c1, visCam);
fb->Draw3DSegment(C+(c+a*(float)w)*scf, c1,
C+(c+a*(float)w+b*(float)h)*scf, c1, visCam);
fb->Draw3DSegment(C+(c+a*(float)w+b*(float)h)*scf, c1,
C+(c+b*(float)h)*scf, c1, visCam);
fb->Draw3DSegment(C+(c+b*(float)h)*scf, c1,
C+c*scf, c1, visCam);
fb->Draw3DSegment(C, c0, C+c*scf, c1, visCam);
fb->Draw3DSegment(C, c0, C+(c+a*(float)w)*scf, c1, visCam);
fb->Draw3DSegment(C, c0, C+(c+a*(float)w+b*(float)h)*scf, c1, visCam);
fb->Draw3DSegment(C, c0, C+(c+b*(float)h)*scf, c1, visCam);
}
float PPC::GetF() {
return GetVD()*c;
}
V3 PPC::GetVD() {
return (a^b).UnitVector();
}
void PPC::PositionAndOrient(V3 newC, V3 lookAtPoint, V3 vInVPlane) {
// we need to compute the camera elements for the new position and orientation
V3 newa, newb, newc; // newC is given
V3 newVD = (lookAtPoint - newC).UnitVector();
newa = (newVD ^ vInVPlane).UnitVector()*a.Length();
newb = (newVD ^ newa).UnitVector()*b.Length();
newc = newVD*GetF() -newa*(float)w/2.0f -newb*(float)h/2.0f;
// commit new values
C = newC;
a = newa;
b = newb;
c = newc;
}
void PPC::SetInterpolated(PPC *ppc0, PPC *ppc1, int stepi, int stepsN) {
cerr << "INFO: not yet implemented" << endl;
// compute newC and newVD by interpolating between C0 and C1, and vd0 and vd1
// compute vInVPlane by interpolating between b0 and b1, and multiplying by -1
// call position and orient function we have developed in class
} | [
"jingxian0317@gmail.com"
] | jingxian0317@gmail.com |
7872322c993a34bba2d78ae53207d1f1bf180575 | c4c579a029cb839d126181fc0d16255ee357f54d | /cpplog/include/internal/FileLoggingBackend.hpp | 4d6b1a0896576eb94e01e5578be60c6f045148d4 | [
"MIT"
] | permissive | engelphi/cpplog | f5d3456123f3cd56310a969106861d6ccca782d3 | 89216f534912cda0baf6d94d659cd90d01e7009a | refs/heads/master | 2021-09-16T13:58:34.985582 | 2018-06-21T13:59:40 | 2018-06-21T13:59:40 | 116,581,614 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 378 | hpp | #pragma once
#include "../ILoggingBackend.hpp"
#include <fstream>
#include <mutex>
namespace cpplog::internal {
class FileLoggingBackend : public ILoggingBackend {
public:
FileLoggingBackend(const std::string &file_path);
void write(const std::string &msg) override;
private:
std::ofstream m_stream;
std::mutex m_mutex;
};
} // namespace cpplog::internal
| [
"philipp.engel.1990@googlemail.com"
] | philipp.engel.1990@googlemail.com |
ed49cd89b103b740419dbe0ac88aa0720fd4a305 | 56ca291048e226509d5d259efc5bfe03a43445ac | /chromeos/services/secure_channel/pending_connection_manager_impl.cc | f3f948b20ee514ff69a72ae53d9c879eb96fce2f | [
"BSD-3-Clause"
] | permissive | Scootkali14001/chromium | 7a5259716eb124a72a3b689c9ba552b1e48fa882 | b922abbb37d7651bc553bfd8dda3fb7c1071950d | refs/heads/master | 2023-03-04T09:35:05.533934 | 2018-06-06T14:10:32 | 2018-06-06T14:10:32 | 136,340,614 | 1 | 0 | null | 2018-06-06T14:28:21 | 2018-06-06T14:28:21 | null | UTF-8 | C++ | false | false | 1,677 | cc | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/services/secure_channel/pending_connection_manager_impl.h"
#include "base/memory/ptr_util.h"
#include "base/no_destructor.h"
namespace chromeos {
namespace secure_channel {
// static
PendingConnectionManagerImpl::Factory*
PendingConnectionManagerImpl::Factory::test_factory_ = nullptr;
// static
PendingConnectionManagerImpl::Factory*
PendingConnectionManagerImpl::Factory::Get() {
if (test_factory_)
return test_factory_;
static base::NoDestructor<Factory> factory;
return factory.get();
}
// static
void PendingConnectionManagerImpl::Factory::SetFactoryForTesting(
Factory* test_factory) {
test_factory_ = test_factory;
}
PendingConnectionManagerImpl::Factory::~Factory() = default;
std::unique_ptr<PendingConnectionManager>
PendingConnectionManagerImpl::Factory::BuildInstance(Delegate* delegate) {
return base::WrapUnique(new PendingConnectionManagerImpl(delegate));
}
PendingConnectionManagerImpl::PendingConnectionManagerImpl(Delegate* delegate)
: PendingConnectionManager(delegate) {}
PendingConnectionManagerImpl::~PendingConnectionManagerImpl() = default;
void PendingConnectionManagerImpl::HandleConnectionRequest(
const ConnectionDetails& connection_details,
const std::string& local_device_id,
std::unique_ptr<ClientConnectionParameters> client_connection_parameters,
ConnectionRole connection_role,
ConnectionPriority connection_priority) {
NOTIMPLEMENTED();
}
} // namespace secure_channel
} // namespace chromeos
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
69eebdd17f264a9b8f3d850a1b432c56edfd471a | 6aff274b5cdce8651c19a6f26c59b22466e2782a | /client/fenclient.h | 2513e605e507a16cabf646fb2f51741e0de02ba9 | [] | no_license | nathanlatino/qt_basic_chat | d26c518270d7a5487b74a7430403f4b6bc1dc9d2 | 72d481eafe50a749585a57c77156fa78692fdd33 | refs/heads/master | 2020-05-16T09:31:02.710322 | 2019-04-23T06:46:40 | 2019-04-23T06:46:40 | 182,950,966 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 562 | h | #pragma once
#include <QtWidgets>
#include <QtNetwork>
#include "ui_fenclient.h"
#include <QDebug>
class QTcpSocket;
class FenClient : public QWidget, Ui::FenClient
{
Q_OBJECT
public:
FenClient(QWidget *parent = 0);
private slots:
void on_btnConnect_clicked();
void on_btnSend_clicked();
void on_ledMessage_returnPressed();
void receiveData();
void connectChat();
void disconnectChat();
void errorSocket(QAbstractSocket::SocketError);
private:
QString readData();
void connectSloSig();
QTcpSocket *socket;
};
| [
"nathan.latino@he-arc.ch"
] | nathan.latino@he-arc.ch |
8e93336c803da9b6f23cb146eda6c11d91d4cf26 | e31427aedcca2e42f2bfe6e1c3233ca1cb87de00 | /trabalho_3/daniel_nesvera/mainwindow.cpp | ff7d5b462a7d3b75ed85a55845a9ba04d81bbd7a | [] | no_license | nesvera/computer_graphics | 5cb9b381b759d1e7348c561af1669e64b2d01a03 | b7d0484964048dba01d50f064890780494b18fde | refs/heads/master | 2020-03-27T06:14:56.512683 | 2018-08-25T12:44:07 | 2018-08-25T12:44:07 | 146,092,201 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,446 | cpp | /****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
****************************************************************************/
//Baseado no demo C:\Qt\Qt5.5.1\Examples\Qt-5.5\opengl\qopenglwidget
#include "mainwindow.h"
#include <QApplication>
#include <QMenuBar>
#include <QStatusBar>
#include <QGroupBox>
#include <QSlider>
#include <QLabel>
#include <QCheckBox>
#include <QSpinBox>
#include <QScrollArea>
#include <QMessageBox>
#include <QResizeEvent>
#include <QListWidget>
#include <QGridLayout>
#include <QFormLayout>
#include <QDebug>
#include <QDoubleSpinBox>
Canvas2D *canvas;
MainWindow::MainWindow()
{
//****************************************************
//cria os Widgets
//****************************************************
// Barra de ferramentas lateral
QCheckBox *virabrequimCheckBox = new QCheckBox("Virabrequim", this);
QCheckBox *blocoCheckBox = new QCheckBox("Bloco", this);
QCheckBox *camisaCheckBox = new QCheckBox("Camisa", this);
QCheckBox *pistaoCheckBox = new QCheckBox("Pistão", this);
QCheckBox *bielaCheckBox = new QCheckBox("Biela", this);
QDoubleSpinBox *rpmSpinBox = new QDoubleSpinBox(this);
rpmSpinBox->setSuffix(" rps");
rpmSpinBox->setValue(0);
rpmSpinBox->setSingleStep(0.1);
rpmSpinBox->setMaximum(10);
rpmSpinBox->setToolTip("Altera rotação do motor");
QFormLayout *toolsLayout = new QFormLayout;
toolsLayout->addRow(new QLabel(tr("Habilitar Visualização")));
toolsLayout->addRow(virabrequimCheckBox);
toolsLayout->addRow(blocoCheckBox);
toolsLayout->addRow(camisaCheckBox);
toolsLayout->addRow(pistaoCheckBox);
toolsLayout->addRow(bielaCheckBox);
toolsLayout->addRow(new QLabel(tr("")));
toolsLayout->addRow(new QLabel(tr("Rotação por segundo")));
toolsLayout->addRow(rpmSpinBox);
toolsLayout->setAlignment(rpmSpinBox, Qt::AlignCenter);
QGroupBox *toolsGroupBox = new QGroupBox(this);
toolsGroupBox->setLayout(toolsLayout);
//toolsGroupBox->setTitle("Ferramentas");
toolsGroupBox->setAlignment(Qt::AlignHCenter);
// Canvas2D
canvas = new Canvas2D(this);
//****************************************************
//cria os Layouts
//****************************************************
QGridLayout *gridLayout = new QGridLayout;
gridLayout->addWidget(toolsGroupBox, 0, 0, 1, 1); //row, column, rowSpan, colSpan
gridLayout->addWidget(canvas, 0, 1, 1, 4);
QGroupBox * groupBox = new QGroupBox(this);
groupBox->setLayout(gridLayout);
setCentralWidget(groupBox);
//****************************************************
//cria menu
//****************************************************
QMenu *fileMenu = menuBar()->addMenu("&File");
QAction *actExit = new QAction("E&xit", fileMenu);
fileMenu->addAction(actExit);
QMenu *fileHelp = menuBar()->addMenu("&Help");
QAction *actAbout = new QAction("&About", fileHelp);
fileHelp->addAction(actAbout);
//o timer eh usado para controlar o refresh de tela, via SLOT(update()) abaixo. Ele nao faz controle de FPS
m_timer = new QTimer(this);
m_timer->setInterval(20);
m_timer->start();
//****************************************************
// Tratamento de eventos de menu, checkbox
//****************************************************
connect(m_timer, SIGNAL(timeout()), canvas, SLOT(update()));
connect(actExit, SIGNAL(triggered(bool)), this, SLOT(close()) );
connect(actAbout, SIGNAL(triggered(bool)), this, SLOT(aboutHandler()) );
connect(virabrequimCheckBox, SIGNAL(clicked(bool)), canvas, SLOT(virabrequimCheckBoxChanged(bool)));
connect(blocoCheckBox, SIGNAL(clicked(bool)), canvas, SLOT(blocoCheckBoxChanged(bool)));
connect(camisaCheckBox, SIGNAL(clicked(bool)), canvas, SLOT(camisaCheckBoxChanged(bool)));
connect(pistaoCheckBox, SIGNAL(clicked(bool)), canvas, SLOT(pistaoCheckBoxChanged(bool)));
connect(bielaCheckBox, SIGNAL(clicked(bool)), canvas, SLOT(bielaCheckBoxChanged(bool)));
connect(rpmSpinBox, SIGNAL(valueChanged(double)), canvas, SLOT(rpmSpinBoxChanged(double)));
//exemplo
//connect(buttonPreenchimento, SIGNAL(released()) , canvas, SLOT(btnPreenchimentoHandler()) );
}
void MainWindow::checkBoxChanged(bool enabled)
{
qDebug("Checkbox: %d", enabled );
if (enabled) {
m_timer->start();
} else {
m_timer->stop();
}
refreshRate->setEnabled(enabled);
}
void MainWindow::sliderChanged(int i)
{
qDebug("Slider: %d", i );
}
void MainWindow::showMsg()
{
QMessageBox* msg = new QMessageBox(this);
msg->setText("Msg MainWindow\n Metodo showMsg()");
msg->show();
}
void MainWindow::aboutHandler(){
QMessageBox* msg = new QMessageBox(this);
msg->setText("about");
msg->show();
}
void MainWindow::updateIntervalChanged(int value)
{
m_timer->setInterval(value);
if (m_timer->isActive())
m_timer->start();
}
void MainWindow::resizeEvent(QResizeEvent *e)
{
//qDebug("janela redimensionada %d", e-> );
//qDebug() << e->size();
canvas->setWindowSize(e->size().width(), e->size().height());
}
| [
"daniel.nesvera@ecomp.ufsm.br"
] | daniel.nesvera@ecomp.ufsm.br |
4f62c1530daacc73eebc1076eb1a967f7a56e44d | ef9ad586a8e5b456d7812c10cbade65dec2ba86a | /T3DCHAP13/demo13_1_16b.cpp | 3ef4c89b8701397bfc6c11fb0a5d73a40a14f972 | [] | no_license | klobodnf/windows-game-source-code | 2ec82e75cd350838c871193b8b6572fc07f1f8c7 | a891c384e0b0192813c679599b319fe89a44af93 | refs/heads/master | 2016-09-05T22:06:06.538157 | 2012-05-24T08:44:43 | 2012-05-24T08:44:43 | 4,430,435 | 6 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 11,437 | cpp | // DEMO13_1_16b.CPP - constant velocity demo
// 16-bit version. make sure your desktop is in 16-bit mode!
// to compile make sure to include DDRAW.LIB, DSOUND.LIB,
// DINPUT.LIB, WINMM.LIB, and of course the T3DLIB files
// INCLUDES ///////////////////////////////////////////////
#define INITGUID
#define WIN32_LEAN_AND_MEAN
#include <windows.h> // include important windows stuff
#include <windowsx.h>
#include <mmsystem.h>
#include <iostream.h> // include important C/C++ stuff
#include <conio.h>
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <math.h>
#include <io.h>
#include <fcntl.h>
#include <ddraw.h> // directX includes
#include <dsound.h>
#include <dmksctrl.h>
#include <dmusici.h>
#include <dmusicc.h>
#include <dmusicf.h>
#include <dinput.h>
#include "T3DLIB1.h" // game library includes
#include "T3DLIB2.h"
#include "T3DLIB3.h"
// DEFINES ////////////////////////////////////////////////
// defines for windows
#define WINDOW_CLASS_NAME "WINXCLASS" // class name
// setup a 640x480 16-bit windowed mode example
#define WINDOW_TITLE "16-Bit Constant Velocity Demo"
#define WINDOW_WIDTH 640 // size of window
#define WINDOW_HEIGHT 480
#define WINDOW_BPP 16 // bitdepth of window (8,16,24 etc.)
// note: if windowed and not
// fullscreen then bitdepth must
// be same as system bitdepth
// also if 8-bit the a pallete
// is created and attached
#define WINDOWED_APP 1 // 0 not windowed, 1 windowed
#define NUM_CHOPPERS 24 // number of choppers in simulation
// PROTOTYPES /////////////////////////////////////////////
// game console
int Game_Init(void *parms=NULL);
int Game_Shutdown(void *parms=NULL);
int Game_Main(void *parms=NULL);
// GLOBALS ////////////////////////////////////////////////
HWND main_window_handle = NULL; // save the window handle
HINSTANCE main_instance = NULL; // save the instance
char buffer[80]; // used to print text
BITMAP_IMAGE background_bmp; // holds the background
BOB chopper[NUM_CHOPPERS]; // the fleet
int sound_id = -1; // general sound
// FUNCTIONS //////////////////////////////////////////////
LRESULT CALLBACK WindowProc(HWND hwnd,
UINT msg,
WPARAM wparam,
LPARAM lparam)
{
// this is the main message handler of the system
PAINTSTRUCT ps; // used in WM_PAINT
HDC hdc; // handle to a device context
// what is the message
switch(msg)
{
case WM_CREATE:
{
// do initialization stuff here
return(0);
} break;
case WM_PAINT:
{
// start painting
hdc = BeginPaint(hwnd,&ps);
// end painting
EndPaint(hwnd,&ps);
return(0);
} break;
case WM_DESTROY:
{
// kill the application
PostQuitMessage(0);
return(0);
} break;
default:break;
} // end switch
// process any messages that we didn't take care of
return (DefWindowProc(hwnd, msg, wparam, lparam));
} // end WinProc
// WINMAIN ////////////////////////////////////////////////
int WINAPI WinMain( HINSTANCE hinstance,
HINSTANCE hprevinstance,
LPSTR lpcmdline,
int ncmdshow)
{
// this is the winmain function
WNDCLASSEX winclass; // this will hold the class we create
HWND hwnd; // generic window handle
MSG msg; // generic message
HDC hdc; // graphics device context
// first fill in the window class stucture
winclass.cbSize = sizeof(WNDCLASSEX);
winclass.style = CS_DBLCLKS | CS_OWNDC |
CS_HREDRAW | CS_VREDRAW;
winclass.lpfnWndProc = WindowProc;
winclass.cbClsExtra = 0;
winclass.cbWndExtra = 0;
winclass.hInstance = hinstance;
winclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
winclass.hCursor = LoadCursor(NULL, IDC_ARROW);
winclass.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
winclass.lpszMenuName = NULL;
winclass.lpszClassName = WINDOW_CLASS_NAME;
winclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
// save hinstance in global
main_instance = hinstance;
// register the window class
if (!RegisterClassEx(&winclass))
return(0);
// create the window
if (!(hwnd = CreateWindowEx(NULL, // extended style
WINDOW_CLASS_NAME, // class
WINDOW_TITLE, // title
(WINDOWED_APP ? (WS_OVERLAPPED | WS_SYSMENU | WS_CAPTION) : (WS_POPUP | WS_VISIBLE)),
0,0, // initial x,y
WINDOW_WIDTH,WINDOW_HEIGHT, // initial width, height
NULL, // handle to parent
NULL, // handle to menu
hinstance,// instance of this application
NULL))) // extra creation parms
return(0);
// save main window handle
main_window_handle = hwnd;
if (WINDOWED_APP)
{
// now resize the window, so the client area is the actual size requested
// since there may be borders and controls if this is going to be a windowed app
// if the app is not windowed then it won't matter
RECT window_rect = {0,0,WINDOW_WIDTH-1,WINDOW_HEIGHT-1};
// make the call to adjust window_rect
AdjustWindowRectEx(&window_rect,
GetWindowStyle(main_window_handle),
GetMenu(main_window_handle) != NULL,
GetWindowExStyle(main_window_handle));
// save the global client offsets, they are needed in DDraw_Flip()
window_client_x0 = -window_rect.left;
window_client_y0 = -window_rect.top;
// now resize the window with a call to MoveWindow()
MoveWindow(main_window_handle,
0, // x position
0, // y position
window_rect.right - window_rect.left, // width
window_rect.bottom - window_rect.top, // height
TRUE);
// show the window, so there's no garbage on first render
ShowWindow(main_window_handle, SW_SHOW);
} // end if windowed
// perform all game console specific initialization
Game_Init();
// enter main event loop
while(1)
{
if (PeekMessage(&msg,NULL,0,0,PM_REMOVE))
{
// test if this is a quit
if (msg.message == WM_QUIT)
break;
// translate any accelerator keys
TranslateMessage(&msg);
// send the message to the window proc
DispatchMessage(&msg);
} // end if
// main game processing goes here
Game_Main();
} // end while
// shutdown game and release all resources
Game_Shutdown();
// return to Windows like this
return(msg.wParam);
} // end WinMain
// WIN T3D GAME PROGRAMMING CONSOLE FUNCTIONS ////////////////
int Game_Init(void *parms)
{
// this function is where you do all the initialization
// for your game
int index; // looping varsIable
char filename[80]; // used to build up filenames
// seed random number generate
srand(Start_Clock());
// initialize directdraw, very important that in the call
// to setcooperativelevel that the flag DDSCL_MULTITHREADED is used
// which increases the response of directX graphics to
// take the global critical section more frequently
DDraw_Init(WINDOW_WIDTH, WINDOW_HEIGHT, WINDOW_BPP, WINDOWED_APP);
// load background image
Load_Bitmap_File(&bitmap16bit, "SKYSCROLL24.BMP");
Create_Bitmap(&background_bmp,0,0,640,480,16);
Load_Image_Bitmap16(&background_bmp, &bitmap16bit,0,0,BITMAP_EXTRACT_MODE_ABS);
Unload_Bitmap_File(&bitmap16bit);
// load the bitmaps
Load_Bitmap_File(&bitmap16bit, "CHOP24.BMP");
// create bob
Create_BOB(&chopper[0],0,120,200,64,3,BOB_ATTR_MULTI_FRAME | BOB_ATTR_VISIBLE, DDSCAPS_SYSTEMMEMORY,0,16);
// set animation speed
Set_Anim_Speed_BOB(&chopper[0], 1);
// set motion speed
Set_Vel_BOB(&chopper[0],2+rand()%6,0);
// set position
Set_Pos_BOB(&chopper[0], rand()%SCREEN_WIDTH, rand()%SCREEN_HEIGHT);
// load the bob in
for (index=0; index < 3; index++)
Load_Frame_BOB16(&chopper[0], &bitmap16bit, index, 0, index, BITMAP_EXTRACT_MODE_CELL);
// now make the remaining 15 clones
for (index=1; index < NUM_CHOPPERS; index++)
{
// clone the bob
Clone_BOB(&chopper[0], &chopper[index]);
// set new position and velocity
Set_Vel_BOB(&chopper[index],2+rand()%6,0);
Set_Pos_BOB(&chopper[index], rand()%SCREEN_WIDTH, rand()%SCREEN_HEIGHT);
// now here the tricky part, alter the size of the bob, but make sure
// to keep the aspect ratio the same, so it doesn't look scrunched
float width = 200 - 10 * index;
float height = (float)width*((float)64/(float)200);
// store new width and height in varsIable cache positions 0,1
chopper[index].varsI[0] = width;
chopper[index].varsI[1] = height;
} // end for index
// unload bitmap image
Unload_Bitmap_File(&bitmap16bit);
// initialize directinput
DInput_Init();
// acquire the keyboard only
DInput_Init_Keyboard();
// initilize DirectSound
DSound_Init();
// load background sounds
sound_id = DSound_Load_WAV("CHOP.WAV");
// start the sounds
DSound_Play(sound_id, DSBPLAY_LOOPING);
// hide the mouse
if (!WINDOWED_APP)
ShowCursor(FALSE);
// return success
return(1);
} // end Game_Init
///////////////////////////////////////////////////////////
int Game_Shutdown(void *parms)
{
// this function is where you shutdown your game and
// release all resources that you allocated
// shut everything down
// kill all the bobs
for (int index=0; index < NUM_CHOPPERS; index++)
Destroy_BOB(&chopper[index]);
// shutdown directdraw last
DDraw_Shutdown();
// now directsound
DSound_Stop_All_Sounds();
DSound_Shutdown();
// shut down directinput
DInput_Shutdown();
// return success
return(1);
} // end Game_Shutdown
//////////////////////////////////////////////////////////
int Game_Main(void *parms)
{
// this is the workhorse of your game it will be called
// continuously in real-time this is like main() in C
// all the calls for you game go here!
int index; // looping var
// start the timing clock
Start_Clock();
// clear the drawing surface
DDraw_Fill_Surface(lpddsback, 0);
// lock back buffer and copy background into it
DDraw_Lock_Back_Surface();
// draw background
Draw_Bitmap16(&background_bmp, back_buffer, back_lpitch,0);
// unlock back surface
DDraw_Unlock_Back_Surface();
// scroll the background
Scroll_Bitmap(&background_bmp, -1);
// read keyboard
DInput_Read_Keyboard();
// move and animate the fleet
for (index=0; index<NUM_CHOPPERS; index++)
{
// move the chopper
Move_BOB(&chopper[index]);
// test for off the screen wrap around
if (chopper[index].x > SCREEN_WIDTH)
chopper[index].x = -chopper[index].width;
// animate the bat
Animate_BOB(&chopper[index]);
} // end for index
// draw the choppers
for (index=NUM_CHOPPERS-1; index>=0; index--)
Draw_Scaled_BOB16(&chopper[index], chopper[index].varsI[0], chopper[index].varsI[1],lpddsback);
// draw the title
Draw_Text_GDI("(16-Bit Version) CONSTANT VELOCITY DEMO",10, 10,RGB(0,200,200), lpddsback);
// flip the surfaces
DDraw_Flip();
// sync to 30 fps = 1/30sec = 33 ms
Wait_Clock(33);
// check of user is trying to exit
if (KEY_DOWN(VK_ESCAPE) || keyboard_state[DIK_ESCAPE])
{
PostMessage(main_window_handle, WM_DESTROY,0,0);
// stop all sounds
DSound_Stop_All_Sounds();
} // end if
// return success
return(1);
} // end Game_Main
////////////////////////////////////////////////////////// | [
"Administrator@20120503-1024.(none)"
] | Administrator@20120503-1024.(none) |
fc843dfa86d3495cf9e8e0194a32d2b44117cb21 | da9c382285c273fc67882eb33d61bc12c256dd92 | /aoa_server/game/GameStatus.h | 3dda3f8ac1f25640a0847a0418426feac139fa72 | [] | no_license | OndrejPittl/All-Over-Again | 3bd423f114691778348a11937c0810dd5ee6f23c | fe89b4dde0333fc4f7be5e75ca654b15879dad51 | refs/heads/master | 2021-03-16T07:58:35.973059 | 2017-01-24T15:37:59 | 2017-01-24T15:37:59 | 70,334,011 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 706 | h | #ifndef GAME_STATUS_H
#define GAME_STATUS_H
enum class GameStatus {
/**
* Players getting connected.
*/
CONNECTING,
/**
* All players got connected.
*/
READY,
/**
* A game is getting started.
*/
STARTED,
/**
* A game has started and a game is in a progress;
*/
PLAYING,
/**
* Waiting on a player who got lost.
*/
WAITING,
/**
* Game is over, we've got a winner.
*/
FINISHED,
/**
* Game is over, wanna replay.
*/
FINISHED_REPLAY,
/**
* Game is over, wanna end.
*/
FINISHED_END,
ENDED
};
std::string translateGameStatus(GameStatus s);
#endif
| [
"ondrej.pittl@gmail.com"
] | ondrej.pittl@gmail.com |
ffbfa02e264a78067840bdf5f978774c4b574556 | 85eb8a0f7c8c3bbb9711f1bcc08aa0f7a9215541 | /poco-lib/src/main.cc | 03aac9b6a04d0ed9981ed79638aea43437e285c1 | [] | no_license | voldyman/playground | a25e0bae77c7f9707a4b66c8ec900147f7e00054 | 7a455b474b44c2f9e67c9a879ec3860e3bad4265 | refs/heads/master | 2021-01-10T01:32:33.861486 | 2016-01-03T14:37:13 | 2016-01-03T14:37:13 | 48,104,688 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,517 | cc | #include "Poco/Net/HTTPClientSession.h"
#include "Poco/Net/HTTPRequest.h"
#include "Poco/Net/HTTPResponse.h"
#include "Poco/URI.h"
#include "Poco/JSON/Parser.h"
#include <iostream>
#include <iterator>
#include <algorithm> //for copy
#include <sstream>
std::string
parse_json(std::string str) {
Poco::JSON::Parser parser;
auto result= parser.parse(str);
auto obj = result.extract<Poco::JSON::Object::Ptr>();
auto ipprop = obj->get("ip_addr");
return ipprop.convert<std::string>();
}
int main() {
try {
Poco::URI uri("http://ifconfig.me/all.json"); // same as http://ifconfig.me/all.json
std::string path(uri.getPathAndQuery());
Poco::Net::HTTPClientSession session(uri.getHost(), uri.getPort());
Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_GET,
path,
Poco::Net::HTTPMessage::HTTP_1_1);
request.set("Connection", "close");
request.set("User-agent", "ninja");
Poco::Net::HTTPResponse res;
session.sendRequest(request);
std::istream& is = session.receiveResponse(res);
std::stringstream ss;
std::copy(std::istream_iterator<char>(is),
std::istream_iterator<char>(),
std::ostream_iterator<char>(ss));
std::cout << "ip: " << parse_json(ss.str()) << std::endl;
} catch (Poco::Exception& ex) {
std::cerr << ex.what() << std::endl;
}
return 0;
}
| [
"voldyman666@gmail.com"
] | voldyman666@gmail.com |
edfc3e2648fa4e11d4b0db03dba854356cd94fe0 | c8a2cc98d283552f10e0730ee937d96241434e6f | /source/lib/eagine/file_contents.cpp | a03f1901742563f4e43837b408caf1d30d406e36 | [
"BSL-1.0"
] | permissive | lineCode/oglplu2 | f144e76e9f952a9b971604517f9f882fe5dbb9a9 | fcaf775d85038e40be4f552dbe2bef8952dcc6d6 | refs/heads/master | 2022-11-21T17:09:02.789613 | 2020-07-18T21:17:50 | 2020-07-18T21:17:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 422 | cpp | /**
* .file lib/eagine/file_contents.cpp
*
* Copyright Matus Chochlik.
* Distributed under the Boost Software License, Version 1.0.
* See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt
*/
// clang-format off
#include "prologue.inl"
#include <eagine/system_info.hpp>
#include "implement.inl"
#include <eagine/file_contents.hpp>
#include "epilogue.inl"
// clang-format on
| [
"chochlik@gmail.com"
] | chochlik@gmail.com |
a156d0fe960cdbe2857ce9c361a38a06503f3389 | ad08926aa7ba9a9ee7da028b13c6f59e6cef9aa5 | /src/tetris.h | b3740315254893ee0c8c2489f3d2c755c2f01478 | [
"WTFPL"
] | permissive | wilkie/omgwtfadd | 5efebacf9f99ea564489aa890ee072a6a1b751ba | 470007ea4cf7c2f534d101250301cc42bbb46a46 | refs/heads/master | 2021-01-23T11:56:09.076621 | 2013-11-09T10:05:09 | 2013-11-09T10:05:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,293 | h | #ifndef TETRIS_INCLUDED
#define TETRIS_INCLUDED
#include "game.h"
#include "context.h"
class Tetris : public Game {
public:
// conventions:
void update(game_info* gi, float deltatime);
void draw(Context* context, game_info* gi);
void drawOrtho(Context* context, game_info* gi);
void keyDown(game_info* gi, Uint32 key);
void keyUp(game_info* gi, Uint32 key);
void keyRepeat(game_info* gi);
void attack(game_info* gi, int severity);
void mouseMovement(game_info* gi, Uint32 x, Uint32 y);
void mouseDown(game_info* gi);
void initGame(game_info* gi);
// stuffs:
void getNewPiece(game_info* gi);
void drawBoard(Context* context, game_info* gi);
void drawPiece(Context* context, game_info* gi, double x, double y, int texture);
void drawBackgroundBlock(Context* context, game_info* gi, double x, double y);
void drawBlock(Context*,
int type, game_info* gi, double x, double y, bool hasLeft,
bool hasRight,
bool hasTop,
bool hasBottom);
float determineDropPosition(game_info* gi);
void addPiece(game_info* gi);
void addPiece(game_info* gi, int start_x, int start_y);
void addBlock(game_info* gi, int i, int j, int type);
void dropPiece(game_info* gi);
int clearLines(game_info* gi);
void pushUp(game_info* gi, int num);
void dropLine(game_info* gi, int lineIndex);
bool testGameOver(game_info* gi);
bool testCollisionBlock(game_info* gi, double x, double y);
bool testCollision(game_info* gi);
bool testCollision(game_info* gi, double x, double y);
double testSideCollision(game_info* gi, double x, double y);
// materials:
// board posts:
static GLfloat board_piece_amb[4];
static GLfloat board_piece_diff[4];
static GLfloat board_piece_spec[4];
static GLfloat board_piece_shine;
static GLfloat board_piece_emi[4];
// block materials
static GLfloat tet_piece_amb[4];
static GLfloat tet_piece_diff[6][4];
static GLfloat tet_piece_spec[4];
static GLfloat tet_piece_emi[4];
static GLfloat tet_piece_shine;
};
#endif
| [
"wilkie05@gmail.com"
] | wilkie05@gmail.com |
c2391bad01af28a1d3226841aedb6f52d2f51246 | 9ce979a65fcddb0295b1d7587cdbe19139987757 | /Merge Sort for Linked List.cpp | 20a4bbad26a28bcca5badcb15ecea51131a8642d | [] | no_license | YogeshKumarYadav/GeeksForGeeks-aditional-problems | 7028952c2058b658dfb28daeeed9e094c6390e2d | c0b325928c2209ef193ee2f8744ac07be6c14f04 | refs/heads/main | 2023-06-11T18:53:00.280355 | 2021-06-29T05:40:20 | 2021-06-29T05:40:20 | 381,250,519 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,444 | cpp | // { Driver Code Starts
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <bits/stdc++.h>
using namespace std;
struct Node {
int data;
struct Node* next;
Node(int x) {
data = x;
next = NULL;
}
};
// } Driver Code Ends
/* Structure of the linked list node is as
struct Node
{
int data;
struct Node* next;
Node(int x) { data = x; next = NULL; }
};
*/
class Solution{
public:
//Function to sort the given linked list using Merge Sort.
Node* merge(Node* l, Node* r)
{
Node *temp=NULL;
if(l==NULL)
return r;
else if(r==NULL)
return l;
else
{
if(l->data < r->data)
{ temp=l;
temp->next=merge(l->next,r);
}
else
{ temp=r;
temp->next=merge(l,r->next);
}
}
return temp;
}
void split(Node **l, Node **r, Node *head)
{
Node *fast=head,*slow=head;
while(fast->next!=NULL && fast->next->next!=NULL)
{
fast=fast->next->next;
slow=slow->next;
}
*l=head;
*r=slow->next;
slow->next=NULL;
}
void _mergesort(Node** head)
{
Node *l,*r,*h=*head;
if(h==NULL || h->next==NULL)
return;
split(&l,&r,h);
_mergesort(&l);
_mergesort(&r);
*head=merge(l,r);
}
Node* mergeSort(Node* head) {
// your code here
_mergesort(&head);
return head;
}
};
// { Driver Code Starts.
void printList(Node* node) {
while (node != NULL) {
printf("%d ", node->data);
node = node->next;
}
printf("\n");
}
void push(struct Node** head_ref, int new_data) {
Node* new_node = new Node(new_data);
new_node->next = (*head_ref);
(*head_ref) = new_node;
}
int main() {
long test;
cin >> test;
while (test--) {
struct Node* a = NULL;
long n, tmp;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> tmp;
push(&a, tmp);
}
Solution obj;
a = obj.mergeSort(a);
printList(a);
}
return 0;
} // } Driver Code Ends | [
"noreply@github.com"
] | noreply@github.com |
b8b94e315f2ad352bbf27137160f8862a9d7a134 | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_5/ISA2+dmb.ld+po+dmb.sy.c.cbmc.cpp | df0685f7392a8468cb5727fde4af277c75ef528f | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 43,022 | cpp | // Global variabls:
// 0:vars:3
// 3:atom_1_X0_1:1
// 4:atom_2_X0_1:1
// 5:atom_2_X2_0:1
// Local global variabls:
// 0:thr0:1
// 1:thr1:1
// 2:thr2:1
#define ADDRSIZE 6
#define LOCALADDRSIZE 3
#define NTHREAD 4
#define NCONTEXT 5
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define max(a,b) (a>b?a:b)
char __get_rng();
char get_rng( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
char get_rng_th( char from, char to ) {
char ret = __get_rng();
ASSUME(ret >= from && ret <= to);
return ret;
}
int main(int argc, char **argv) {
// Declare arrays for intial value version in contexts
int local_mem[LOCALADDRSIZE];
// Dumping initializations
local_mem[0+0] = 0;
local_mem[1+0] = 0;
local_mem[2+0] = 0;
int cstart[NTHREAD];
int creturn[NTHREAD];
// declare arrays for contexts activity
int active[NCONTEXT];
int ctx_used[NCONTEXT];
// declare arrays for intial value version in contexts
int meminit_[ADDRSIZE*NCONTEXT];
#define meminit(x,k) meminit_[(x)*NCONTEXT+k]
int coinit_[ADDRSIZE*NCONTEXT];
#define coinit(x,k) coinit_[(x)*NCONTEXT+k]
int deltainit_[ADDRSIZE*NCONTEXT];
#define deltainit(x,k) deltainit_[(x)*NCONTEXT+k]
// declare arrays for running value version in contexts
int mem_[ADDRSIZE*NCONTEXT];
#define mem(x,k) mem_[(x)*NCONTEXT+k]
int co_[ADDRSIZE*NCONTEXT];
#define co(x,k) co_[(x)*NCONTEXT+k]
int delta_[ADDRSIZE*NCONTEXT];
#define delta(x,k) delta_[(x)*NCONTEXT+k]
// declare arrays for local buffer and observed writes
int buff_[NTHREAD*ADDRSIZE];
#define buff(x,k) buff_[(x)*ADDRSIZE+k]
int pw_[NTHREAD*ADDRSIZE];
#define pw(x,k) pw_[(x)*ADDRSIZE+k]
// declare arrays for context stamps
char cr_[NTHREAD*ADDRSIZE];
#define cr(x,k) cr_[(x)*ADDRSIZE+k]
char iw_[NTHREAD*ADDRSIZE];
#define iw(x,k) iw_[(x)*ADDRSIZE+k]
char cw_[NTHREAD*ADDRSIZE];
#define cw(x,k) cw_[(x)*ADDRSIZE+k]
char cx_[NTHREAD*ADDRSIZE];
#define cx(x,k) cx_[(x)*ADDRSIZE+k]
char is_[NTHREAD*ADDRSIZE];
#define is(x,k) is_[(x)*ADDRSIZE+k]
char cs_[NTHREAD*ADDRSIZE];
#define cs(x,k) cs_[(x)*ADDRSIZE+k]
char crmax_[NTHREAD*ADDRSIZE];
#define crmax(x,k) crmax_[(x)*ADDRSIZE+k]
char sforbid_[ADDRSIZE*NCONTEXT];
#define sforbid(x,k) sforbid_[(x)*NCONTEXT+k]
// declare arrays for synchronizations
int cl[NTHREAD];
int cdy[NTHREAD];
int cds[NTHREAD];
int cdl[NTHREAD];
int cisb[NTHREAD];
int caddr[NTHREAD];
int cctrl[NTHREAD];
__LOCALS__
buff(0,0) = 0;
pw(0,0) = 0;
cr(0,0) = 0;
iw(0,0) = 0;
cw(0,0) = 0;
cx(0,0) = 0;
is(0,0) = 0;
cs(0,0) = 0;
crmax(0,0) = 0;
buff(0,1) = 0;
pw(0,1) = 0;
cr(0,1) = 0;
iw(0,1) = 0;
cw(0,1) = 0;
cx(0,1) = 0;
is(0,1) = 0;
cs(0,1) = 0;
crmax(0,1) = 0;
buff(0,2) = 0;
pw(0,2) = 0;
cr(0,2) = 0;
iw(0,2) = 0;
cw(0,2) = 0;
cx(0,2) = 0;
is(0,2) = 0;
cs(0,2) = 0;
crmax(0,2) = 0;
buff(0,3) = 0;
pw(0,3) = 0;
cr(0,3) = 0;
iw(0,3) = 0;
cw(0,3) = 0;
cx(0,3) = 0;
is(0,3) = 0;
cs(0,3) = 0;
crmax(0,3) = 0;
buff(0,4) = 0;
pw(0,4) = 0;
cr(0,4) = 0;
iw(0,4) = 0;
cw(0,4) = 0;
cx(0,4) = 0;
is(0,4) = 0;
cs(0,4) = 0;
crmax(0,4) = 0;
buff(0,5) = 0;
pw(0,5) = 0;
cr(0,5) = 0;
iw(0,5) = 0;
cw(0,5) = 0;
cx(0,5) = 0;
is(0,5) = 0;
cs(0,5) = 0;
crmax(0,5) = 0;
cl[0] = 0;
cdy[0] = 0;
cds[0] = 0;
cdl[0] = 0;
cisb[0] = 0;
caddr[0] = 0;
cctrl[0] = 0;
cstart[0] = get_rng(0,NCONTEXT-1);
creturn[0] = get_rng(0,NCONTEXT-1);
buff(1,0) = 0;
pw(1,0) = 0;
cr(1,0) = 0;
iw(1,0) = 0;
cw(1,0) = 0;
cx(1,0) = 0;
is(1,0) = 0;
cs(1,0) = 0;
crmax(1,0) = 0;
buff(1,1) = 0;
pw(1,1) = 0;
cr(1,1) = 0;
iw(1,1) = 0;
cw(1,1) = 0;
cx(1,1) = 0;
is(1,1) = 0;
cs(1,1) = 0;
crmax(1,1) = 0;
buff(1,2) = 0;
pw(1,2) = 0;
cr(1,2) = 0;
iw(1,2) = 0;
cw(1,2) = 0;
cx(1,2) = 0;
is(1,2) = 0;
cs(1,2) = 0;
crmax(1,2) = 0;
buff(1,3) = 0;
pw(1,3) = 0;
cr(1,3) = 0;
iw(1,3) = 0;
cw(1,3) = 0;
cx(1,3) = 0;
is(1,3) = 0;
cs(1,3) = 0;
crmax(1,3) = 0;
buff(1,4) = 0;
pw(1,4) = 0;
cr(1,4) = 0;
iw(1,4) = 0;
cw(1,4) = 0;
cx(1,4) = 0;
is(1,4) = 0;
cs(1,4) = 0;
crmax(1,4) = 0;
buff(1,5) = 0;
pw(1,5) = 0;
cr(1,5) = 0;
iw(1,5) = 0;
cw(1,5) = 0;
cx(1,5) = 0;
is(1,5) = 0;
cs(1,5) = 0;
crmax(1,5) = 0;
cl[1] = 0;
cdy[1] = 0;
cds[1] = 0;
cdl[1] = 0;
cisb[1] = 0;
caddr[1] = 0;
cctrl[1] = 0;
cstart[1] = get_rng(0,NCONTEXT-1);
creturn[1] = get_rng(0,NCONTEXT-1);
buff(2,0) = 0;
pw(2,0) = 0;
cr(2,0) = 0;
iw(2,0) = 0;
cw(2,0) = 0;
cx(2,0) = 0;
is(2,0) = 0;
cs(2,0) = 0;
crmax(2,0) = 0;
buff(2,1) = 0;
pw(2,1) = 0;
cr(2,1) = 0;
iw(2,1) = 0;
cw(2,1) = 0;
cx(2,1) = 0;
is(2,1) = 0;
cs(2,1) = 0;
crmax(2,1) = 0;
buff(2,2) = 0;
pw(2,2) = 0;
cr(2,2) = 0;
iw(2,2) = 0;
cw(2,2) = 0;
cx(2,2) = 0;
is(2,2) = 0;
cs(2,2) = 0;
crmax(2,2) = 0;
buff(2,3) = 0;
pw(2,3) = 0;
cr(2,3) = 0;
iw(2,3) = 0;
cw(2,3) = 0;
cx(2,3) = 0;
is(2,3) = 0;
cs(2,3) = 0;
crmax(2,3) = 0;
buff(2,4) = 0;
pw(2,4) = 0;
cr(2,4) = 0;
iw(2,4) = 0;
cw(2,4) = 0;
cx(2,4) = 0;
is(2,4) = 0;
cs(2,4) = 0;
crmax(2,4) = 0;
buff(2,5) = 0;
pw(2,5) = 0;
cr(2,5) = 0;
iw(2,5) = 0;
cw(2,5) = 0;
cx(2,5) = 0;
is(2,5) = 0;
cs(2,5) = 0;
crmax(2,5) = 0;
cl[2] = 0;
cdy[2] = 0;
cds[2] = 0;
cdl[2] = 0;
cisb[2] = 0;
caddr[2] = 0;
cctrl[2] = 0;
cstart[2] = get_rng(0,NCONTEXT-1);
creturn[2] = get_rng(0,NCONTEXT-1);
buff(3,0) = 0;
pw(3,0) = 0;
cr(3,0) = 0;
iw(3,0) = 0;
cw(3,0) = 0;
cx(3,0) = 0;
is(3,0) = 0;
cs(3,0) = 0;
crmax(3,0) = 0;
buff(3,1) = 0;
pw(3,1) = 0;
cr(3,1) = 0;
iw(3,1) = 0;
cw(3,1) = 0;
cx(3,1) = 0;
is(3,1) = 0;
cs(3,1) = 0;
crmax(3,1) = 0;
buff(3,2) = 0;
pw(3,2) = 0;
cr(3,2) = 0;
iw(3,2) = 0;
cw(3,2) = 0;
cx(3,2) = 0;
is(3,2) = 0;
cs(3,2) = 0;
crmax(3,2) = 0;
buff(3,3) = 0;
pw(3,3) = 0;
cr(3,3) = 0;
iw(3,3) = 0;
cw(3,3) = 0;
cx(3,3) = 0;
is(3,3) = 0;
cs(3,3) = 0;
crmax(3,3) = 0;
buff(3,4) = 0;
pw(3,4) = 0;
cr(3,4) = 0;
iw(3,4) = 0;
cw(3,4) = 0;
cx(3,4) = 0;
is(3,4) = 0;
cs(3,4) = 0;
crmax(3,4) = 0;
buff(3,5) = 0;
pw(3,5) = 0;
cr(3,5) = 0;
iw(3,5) = 0;
cw(3,5) = 0;
cx(3,5) = 0;
is(3,5) = 0;
cs(3,5) = 0;
crmax(3,5) = 0;
cl[3] = 0;
cdy[3] = 0;
cds[3] = 0;
cdl[3] = 0;
cisb[3] = 0;
caddr[3] = 0;
cctrl[3] = 0;
cstart[3] = get_rng(0,NCONTEXT-1);
creturn[3] = get_rng(0,NCONTEXT-1);
// Dumping initializations
mem(0+0,0) = 0;
mem(0+1,0) = 0;
mem(0+2,0) = 0;
mem(3+0,0) = 0;
mem(4+0,0) = 0;
mem(5+0,0) = 0;
// Dumping context matching equalities
co(0,0) = 0;
delta(0,0) = -1;
mem(0,1) = meminit(0,1);
co(0,1) = coinit(0,1);
delta(0,1) = deltainit(0,1);
mem(0,2) = meminit(0,2);
co(0,2) = coinit(0,2);
delta(0,2) = deltainit(0,2);
mem(0,3) = meminit(0,3);
co(0,3) = coinit(0,3);
delta(0,3) = deltainit(0,3);
mem(0,4) = meminit(0,4);
co(0,4) = coinit(0,4);
delta(0,4) = deltainit(0,4);
co(1,0) = 0;
delta(1,0) = -1;
mem(1,1) = meminit(1,1);
co(1,1) = coinit(1,1);
delta(1,1) = deltainit(1,1);
mem(1,2) = meminit(1,2);
co(1,2) = coinit(1,2);
delta(1,2) = deltainit(1,2);
mem(1,3) = meminit(1,3);
co(1,3) = coinit(1,3);
delta(1,3) = deltainit(1,3);
mem(1,4) = meminit(1,4);
co(1,4) = coinit(1,4);
delta(1,4) = deltainit(1,4);
co(2,0) = 0;
delta(2,0) = -1;
mem(2,1) = meminit(2,1);
co(2,1) = coinit(2,1);
delta(2,1) = deltainit(2,1);
mem(2,2) = meminit(2,2);
co(2,2) = coinit(2,2);
delta(2,2) = deltainit(2,2);
mem(2,3) = meminit(2,3);
co(2,3) = coinit(2,3);
delta(2,3) = deltainit(2,3);
mem(2,4) = meminit(2,4);
co(2,4) = coinit(2,4);
delta(2,4) = deltainit(2,4);
co(3,0) = 0;
delta(3,0) = -1;
mem(3,1) = meminit(3,1);
co(3,1) = coinit(3,1);
delta(3,1) = deltainit(3,1);
mem(3,2) = meminit(3,2);
co(3,2) = coinit(3,2);
delta(3,2) = deltainit(3,2);
mem(3,3) = meminit(3,3);
co(3,3) = coinit(3,3);
delta(3,3) = deltainit(3,3);
mem(3,4) = meminit(3,4);
co(3,4) = coinit(3,4);
delta(3,4) = deltainit(3,4);
co(4,0) = 0;
delta(4,0) = -1;
mem(4,1) = meminit(4,1);
co(4,1) = coinit(4,1);
delta(4,1) = deltainit(4,1);
mem(4,2) = meminit(4,2);
co(4,2) = coinit(4,2);
delta(4,2) = deltainit(4,2);
mem(4,3) = meminit(4,3);
co(4,3) = coinit(4,3);
delta(4,3) = deltainit(4,3);
mem(4,4) = meminit(4,4);
co(4,4) = coinit(4,4);
delta(4,4) = deltainit(4,4);
co(5,0) = 0;
delta(5,0) = -1;
mem(5,1) = meminit(5,1);
co(5,1) = coinit(5,1);
delta(5,1) = deltainit(5,1);
mem(5,2) = meminit(5,2);
co(5,2) = coinit(5,2);
delta(5,2) = deltainit(5,2);
mem(5,3) = meminit(5,3);
co(5,3) = coinit(5,3);
delta(5,3) = deltainit(5,3);
mem(5,4) = meminit(5,4);
co(5,4) = coinit(5,4);
delta(5,4) = deltainit(5,4);
// Dumping thread 1
int ret_thread_1 = 0;
cdy[1] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[1] >= cstart[1]);
T1BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !38, metadata !DIExpression()), !dbg !47
// br label %label_1, !dbg !48
goto T1BLOCK1;
T1BLOCK1:
// call void @llvm.dbg.label(metadata !46), !dbg !49
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !39, metadata !DIExpression()), !dbg !50
// call void @llvm.dbg.value(metadata i64 1, metadata !42, metadata !DIExpression()), !dbg !50
// store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !51
// ST: Guess
iw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l21_c3
old_cw = cw(1,0);
cw(1,0) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l21_c3
// Check
ASSUME(active[iw(1,0)] == 1);
ASSUME(active[cw(1,0)] == 1);
ASSUME(sforbid(0,cw(1,0))== 0);
ASSUME(iw(1,0) >= 0);
ASSUME(iw(1,0) >= 0);
ASSUME(cw(1,0) >= iw(1,0));
ASSUME(cw(1,0) >= old_cw);
ASSUME(cw(1,0) >= cr(1,0));
ASSUME(cw(1,0) >= cl[1]);
ASSUME(cw(1,0) >= cisb[1]);
ASSUME(cw(1,0) >= cdy[1]);
ASSUME(cw(1,0) >= cdl[1]);
ASSUME(cw(1,0) >= cds[1]);
ASSUME(cw(1,0) >= cctrl[1]);
ASSUME(cw(1,0) >= caddr[1]);
// Update
caddr[1] = max(caddr[1],0);
buff(1,0) = 1;
mem(0,cw(1,0)) = 1;
co(0,cw(1,0))+=1;
delta(0,cw(1,0)) = -1;
ASSUME(creturn[1] >= cw(1,0));
// call void (...) @dmbld(), !dbg !52
// dumbld: Guess
cdl[1] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdl[1] >= cdy[1]);
ASSUME(cdl[1] >= cr(1,0+0));
ASSUME(cdl[1] >= cr(1,0+1));
ASSUME(cdl[1] >= cr(1,0+2));
ASSUME(cdl[1] >= cr(1,3+0));
ASSUME(cdl[1] >= cr(1,4+0));
ASSUME(cdl[1] >= cr(1,5+0));
ASSUME(creturn[1] >= cdl[1]);
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !43, metadata !DIExpression()), !dbg !53
// call void @llvm.dbg.value(metadata i64 1, metadata !45, metadata !DIExpression()), !dbg !53
// store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !54
// ST: Guess
iw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STIW _l23_c3
old_cw = cw(1,0+1*1);
cw(1,0+1*1) = get_rng(0,NCONTEXT-1);// 1 ASSIGN STCOM _l23_c3
// Check
ASSUME(active[iw(1,0+1*1)] == 1);
ASSUME(active[cw(1,0+1*1)] == 1);
ASSUME(sforbid(0+1*1,cw(1,0+1*1))== 0);
ASSUME(iw(1,0+1*1) >= 0);
ASSUME(iw(1,0+1*1) >= 0);
ASSUME(cw(1,0+1*1) >= iw(1,0+1*1));
ASSUME(cw(1,0+1*1) >= old_cw);
ASSUME(cw(1,0+1*1) >= cr(1,0+1*1));
ASSUME(cw(1,0+1*1) >= cl[1]);
ASSUME(cw(1,0+1*1) >= cisb[1]);
ASSUME(cw(1,0+1*1) >= cdy[1]);
ASSUME(cw(1,0+1*1) >= cdl[1]);
ASSUME(cw(1,0+1*1) >= cds[1]);
ASSUME(cw(1,0+1*1) >= cctrl[1]);
ASSUME(cw(1,0+1*1) >= caddr[1]);
// Update
caddr[1] = max(caddr[1],0);
buff(1,0+1*1) = 1;
mem(0+1*1,cw(1,0+1*1)) = 1;
co(0+1*1,cw(1,0+1*1))+=1;
delta(0+1*1,cw(1,0+1*1)) = -1;
ASSUME(creturn[1] >= cw(1,0+1*1));
// ret i8* null, !dbg !55
ret_thread_1 = (- 1);
goto T1BLOCK_END;
T1BLOCK_END:
// Dumping thread 2
int ret_thread_2 = 0;
cdy[2] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[2] >= cstart[2]);
T2BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !58, metadata !DIExpression()), !dbg !68
// br label %label_2, !dbg !50
goto T2BLOCK1;
T2BLOCK1:
// call void @llvm.dbg.label(metadata !67), !dbg !70
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !60, metadata !DIExpression()), !dbg !71
// %0 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !53
// LD: Guess
old_cr = cr(2,0+1*1);
cr(2,0+1*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN LDCOM _l29_c15
// Check
ASSUME(active[cr(2,0+1*1)] == 2);
ASSUME(cr(2,0+1*1) >= iw(2,0+1*1));
ASSUME(cr(2,0+1*1) >= 0);
ASSUME(cr(2,0+1*1) >= cdy[2]);
ASSUME(cr(2,0+1*1) >= cisb[2]);
ASSUME(cr(2,0+1*1) >= cdl[2]);
ASSUME(cr(2,0+1*1) >= cl[2]);
// Update
creg_r0 = cr(2,0+1*1);
crmax(2,0+1*1) = max(crmax(2,0+1*1),cr(2,0+1*1));
caddr[2] = max(caddr[2],0);
if(cr(2,0+1*1) < cw(2,0+1*1)) {
r0 = buff(2,0+1*1);
ASSUME((!(( (cw(2,0+1*1) < 1) && (1 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,1)> 0));
ASSUME((!(( (cw(2,0+1*1) < 2) && (2 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,2)> 0));
ASSUME((!(( (cw(2,0+1*1) < 3) && (3 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,3)> 0));
ASSUME((!(( (cw(2,0+1*1) < 4) && (4 < crmax(2,0+1*1)) )))||(sforbid(0+1*1,4)> 0));
} else {
if(pw(2,0+1*1) != co(0+1*1,cr(2,0+1*1))) {
ASSUME(cr(2,0+1*1) >= old_cr);
}
pw(2,0+1*1) = co(0+1*1,cr(2,0+1*1));
r0 = mem(0+1*1,cr(2,0+1*1));
}
ASSUME(creturn[2] >= cr(2,0+1*1));
// call void @llvm.dbg.value(metadata i64 %0, metadata !62, metadata !DIExpression()), !dbg !71
// %conv = trunc i64 %0 to i32, !dbg !54
// call void @llvm.dbg.value(metadata i32 %conv, metadata !59, metadata !DIExpression()), !dbg !68
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !63, metadata !DIExpression()), !dbg !74
// call void @llvm.dbg.value(metadata i64 1, metadata !65, metadata !DIExpression()), !dbg !74
// store atomic i64 1, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !56
// ST: Guess
iw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l30_c3
old_cw = cw(2,0+2*1);
cw(2,0+2*1) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l30_c3
// Check
ASSUME(active[iw(2,0+2*1)] == 2);
ASSUME(active[cw(2,0+2*1)] == 2);
ASSUME(sforbid(0+2*1,cw(2,0+2*1))== 0);
ASSUME(iw(2,0+2*1) >= 0);
ASSUME(iw(2,0+2*1) >= 0);
ASSUME(cw(2,0+2*1) >= iw(2,0+2*1));
ASSUME(cw(2,0+2*1) >= old_cw);
ASSUME(cw(2,0+2*1) >= cr(2,0+2*1));
ASSUME(cw(2,0+2*1) >= cl[2]);
ASSUME(cw(2,0+2*1) >= cisb[2]);
ASSUME(cw(2,0+2*1) >= cdy[2]);
ASSUME(cw(2,0+2*1) >= cdl[2]);
ASSUME(cw(2,0+2*1) >= cds[2]);
ASSUME(cw(2,0+2*1) >= cctrl[2]);
ASSUME(cw(2,0+2*1) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,0+2*1) = 1;
mem(0+2*1,cw(2,0+2*1)) = 1;
co(0+2*1,cw(2,0+2*1))+=1;
delta(0+2*1,cw(2,0+2*1)) = -1;
ASSUME(creturn[2] >= cw(2,0+2*1));
// %cmp = icmp eq i32 %conv, 1, !dbg !57
creg__r0__1_ = max(0,creg_r0);
// %conv1 = zext i1 %cmp to i32, !dbg !57
// call void @llvm.dbg.value(metadata i32 %conv1, metadata !66, metadata !DIExpression()), !dbg !68
// store i32 %conv1, i32* @atom_1_X0_1, align 4, !dbg !58, !tbaa !59
// ST: Guess
iw(2,3) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STIW _l32_c15
old_cw = cw(2,3);
cw(2,3) = get_rng(0,NCONTEXT-1);// 2 ASSIGN STCOM _l32_c15
// Check
ASSUME(active[iw(2,3)] == 2);
ASSUME(active[cw(2,3)] == 2);
ASSUME(sforbid(3,cw(2,3))== 0);
ASSUME(iw(2,3) >= creg__r0__1_);
ASSUME(iw(2,3) >= 0);
ASSUME(cw(2,3) >= iw(2,3));
ASSUME(cw(2,3) >= old_cw);
ASSUME(cw(2,3) >= cr(2,3));
ASSUME(cw(2,3) >= cl[2]);
ASSUME(cw(2,3) >= cisb[2]);
ASSUME(cw(2,3) >= cdy[2]);
ASSUME(cw(2,3) >= cdl[2]);
ASSUME(cw(2,3) >= cds[2]);
ASSUME(cw(2,3) >= cctrl[2]);
ASSUME(cw(2,3) >= caddr[2]);
// Update
caddr[2] = max(caddr[2],0);
buff(2,3) = (r0==1);
mem(3,cw(2,3)) = (r0==1);
co(3,cw(2,3))+=1;
delta(3,cw(2,3)) = -1;
ASSUME(creturn[2] >= cw(2,3));
// ret i8* null, !dbg !63
ret_thread_2 = (- 1);
goto T2BLOCK_END;
T2BLOCK_END:
// Dumping thread 3
int ret_thread_3 = 0;
cdy[3] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[3] >= cstart[3]);
T3BLOCK0:
// call void @llvm.dbg.value(metadata i8* %arg, metadata !85, metadata !DIExpression()), !dbg !97
// br label %label_3, !dbg !52
goto T3BLOCK1;
T3BLOCK1:
// call void @llvm.dbg.label(metadata !96), !dbg !99
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !87, metadata !DIExpression()), !dbg !100
// %0 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !55
// LD: Guess
old_cr = cr(3,0+2*1);
cr(3,0+2*1) = get_rng(0,NCONTEXT-1);// 3 ASSIGN LDCOM _l38_c15
// Check
ASSUME(active[cr(3,0+2*1)] == 3);
ASSUME(cr(3,0+2*1) >= iw(3,0+2*1));
ASSUME(cr(3,0+2*1) >= 0);
ASSUME(cr(3,0+2*1) >= cdy[3]);
ASSUME(cr(3,0+2*1) >= cisb[3]);
ASSUME(cr(3,0+2*1) >= cdl[3]);
ASSUME(cr(3,0+2*1) >= cl[3]);
// Update
creg_r1 = cr(3,0+2*1);
crmax(3,0+2*1) = max(crmax(3,0+2*1),cr(3,0+2*1));
caddr[3] = max(caddr[3],0);
if(cr(3,0+2*1) < cw(3,0+2*1)) {
r1 = buff(3,0+2*1);
ASSUME((!(( (cw(3,0+2*1) < 1) && (1 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,1)> 0));
ASSUME((!(( (cw(3,0+2*1) < 2) && (2 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,2)> 0));
ASSUME((!(( (cw(3,0+2*1) < 3) && (3 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,3)> 0));
ASSUME((!(( (cw(3,0+2*1) < 4) && (4 < crmax(3,0+2*1)) )))||(sforbid(0+2*1,4)> 0));
} else {
if(pw(3,0+2*1) != co(0+2*1,cr(3,0+2*1))) {
ASSUME(cr(3,0+2*1) >= old_cr);
}
pw(3,0+2*1) = co(0+2*1,cr(3,0+2*1));
r1 = mem(0+2*1,cr(3,0+2*1));
}
ASSUME(creturn[3] >= cr(3,0+2*1));
// call void @llvm.dbg.value(metadata i64 %0, metadata !89, metadata !DIExpression()), !dbg !100
// %conv = trunc i64 %0 to i32, !dbg !56
// call void @llvm.dbg.value(metadata i32 %conv, metadata !86, metadata !DIExpression()), !dbg !97
// call void (...) @dmbsy(), !dbg !57
// dumbsy: Guess
old_cdy = cdy[3];
cdy[3] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[3] >= old_cdy);
ASSUME(cdy[3] >= cisb[3]);
ASSUME(cdy[3] >= cdl[3]);
ASSUME(cdy[3] >= cds[3]);
ASSUME(cdy[3] >= cctrl[3]);
ASSUME(cdy[3] >= cw(3,0+0));
ASSUME(cdy[3] >= cw(3,0+1));
ASSUME(cdy[3] >= cw(3,0+2));
ASSUME(cdy[3] >= cw(3,3+0));
ASSUME(cdy[3] >= cw(3,4+0));
ASSUME(cdy[3] >= cw(3,5+0));
ASSUME(cdy[3] >= cr(3,0+0));
ASSUME(cdy[3] >= cr(3,0+1));
ASSUME(cdy[3] >= cr(3,0+2));
ASSUME(cdy[3] >= cr(3,3+0));
ASSUME(cdy[3] >= cr(3,4+0));
ASSUME(cdy[3] >= cr(3,5+0));
ASSUME(creturn[3] >= cdy[3]);
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !91, metadata !DIExpression()), !dbg !104
// %1 = load atomic i64, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !59
// LD: Guess
old_cr = cr(3,0);
cr(3,0) = get_rng(0,NCONTEXT-1);// 3 ASSIGN LDCOM _l40_c15
// Check
ASSUME(active[cr(3,0)] == 3);
ASSUME(cr(3,0) >= iw(3,0));
ASSUME(cr(3,0) >= 0);
ASSUME(cr(3,0) >= cdy[3]);
ASSUME(cr(3,0) >= cisb[3]);
ASSUME(cr(3,0) >= cdl[3]);
ASSUME(cr(3,0) >= cl[3]);
// Update
creg_r2 = cr(3,0);
crmax(3,0) = max(crmax(3,0),cr(3,0));
caddr[3] = max(caddr[3],0);
if(cr(3,0) < cw(3,0)) {
r2 = buff(3,0);
ASSUME((!(( (cw(3,0) < 1) && (1 < crmax(3,0)) )))||(sforbid(0,1)> 0));
ASSUME((!(( (cw(3,0) < 2) && (2 < crmax(3,0)) )))||(sforbid(0,2)> 0));
ASSUME((!(( (cw(3,0) < 3) && (3 < crmax(3,0)) )))||(sforbid(0,3)> 0));
ASSUME((!(( (cw(3,0) < 4) && (4 < crmax(3,0)) )))||(sforbid(0,4)> 0));
} else {
if(pw(3,0) != co(0,cr(3,0))) {
ASSUME(cr(3,0) >= old_cr);
}
pw(3,0) = co(0,cr(3,0));
r2 = mem(0,cr(3,0));
}
ASSUME(creturn[3] >= cr(3,0));
// call void @llvm.dbg.value(metadata i64 %1, metadata !93, metadata !DIExpression()), !dbg !104
// %conv4 = trunc i64 %1 to i32, !dbg !60
// call void @llvm.dbg.value(metadata i32 %conv4, metadata !90, metadata !DIExpression()), !dbg !97
// %cmp = icmp eq i32 %conv, 1, !dbg !61
creg__r1__1_ = max(0,creg_r1);
// %conv5 = zext i1 %cmp to i32, !dbg !61
// call void @llvm.dbg.value(metadata i32 %conv5, metadata !94, metadata !DIExpression()), !dbg !97
// store i32 %conv5, i32* @atom_2_X0_1, align 4, !dbg !62, !tbaa !63
// ST: Guess
iw(3,4) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW _l42_c15
old_cw = cw(3,4);
cw(3,4) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM _l42_c15
// Check
ASSUME(active[iw(3,4)] == 3);
ASSUME(active[cw(3,4)] == 3);
ASSUME(sforbid(4,cw(3,4))== 0);
ASSUME(iw(3,4) >= creg__r1__1_);
ASSUME(iw(3,4) >= 0);
ASSUME(cw(3,4) >= iw(3,4));
ASSUME(cw(3,4) >= old_cw);
ASSUME(cw(3,4) >= cr(3,4));
ASSUME(cw(3,4) >= cl[3]);
ASSUME(cw(3,4) >= cisb[3]);
ASSUME(cw(3,4) >= cdy[3]);
ASSUME(cw(3,4) >= cdl[3]);
ASSUME(cw(3,4) >= cds[3]);
ASSUME(cw(3,4) >= cctrl[3]);
ASSUME(cw(3,4) >= caddr[3]);
// Update
caddr[3] = max(caddr[3],0);
buff(3,4) = (r1==1);
mem(4,cw(3,4)) = (r1==1);
co(4,cw(3,4))+=1;
delta(4,cw(3,4)) = -1;
ASSUME(creturn[3] >= cw(3,4));
// %cmp6 = icmp eq i32 %conv4, 0, !dbg !67
creg__r2__0_ = max(0,creg_r2);
// %conv7 = zext i1 %cmp6 to i32, !dbg !67
// call void @llvm.dbg.value(metadata i32 %conv7, metadata !95, metadata !DIExpression()), !dbg !97
// store i32 %conv7, i32* @atom_2_X2_0, align 4, !dbg !68, !tbaa !63
// ST: Guess
iw(3,5) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STIW _l44_c15
old_cw = cw(3,5);
cw(3,5) = get_rng(0,NCONTEXT-1);// 3 ASSIGN STCOM _l44_c15
// Check
ASSUME(active[iw(3,5)] == 3);
ASSUME(active[cw(3,5)] == 3);
ASSUME(sforbid(5,cw(3,5))== 0);
ASSUME(iw(3,5) >= creg__r2__0_);
ASSUME(iw(3,5) >= 0);
ASSUME(cw(3,5) >= iw(3,5));
ASSUME(cw(3,5) >= old_cw);
ASSUME(cw(3,5) >= cr(3,5));
ASSUME(cw(3,5) >= cl[3]);
ASSUME(cw(3,5) >= cisb[3]);
ASSUME(cw(3,5) >= cdy[3]);
ASSUME(cw(3,5) >= cdl[3]);
ASSUME(cw(3,5) >= cds[3]);
ASSUME(cw(3,5) >= cctrl[3]);
ASSUME(cw(3,5) >= caddr[3]);
// Update
caddr[3] = max(caddr[3],0);
buff(3,5) = (r2==0);
mem(5,cw(3,5)) = (r2==0);
co(5,cw(3,5))+=1;
delta(5,cw(3,5)) = -1;
ASSUME(creturn[3] >= cw(3,5));
// ret i8* null, !dbg !69
ret_thread_3 = (- 1);
goto T3BLOCK_END;
T3BLOCK_END:
// Dumping thread 0
int ret_thread_0 = 0;
cdy[0] = get_rng(0,NCONTEXT-1);
ASSUME(cdy[0] >= cstart[0]);
T0BLOCK0:
// %thr0 = alloca i64, align 8
// %thr1 = alloca i64, align 8
// %thr2 = alloca i64, align 8
// call void @llvm.dbg.value(metadata i32 %argc, metadata !119, metadata !DIExpression()), !dbg !141
// call void @llvm.dbg.value(metadata i8** %argv, metadata !120, metadata !DIExpression()), !dbg !141
// %0 = bitcast i64* %thr0 to i8*, !dbg !65
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %0) #7, !dbg !65
// call void @llvm.dbg.declare(metadata i64* %thr0, metadata !121, metadata !DIExpression()), !dbg !143
// %1 = bitcast i64* %thr1 to i8*, !dbg !67
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %1) #7, !dbg !67
// call void @llvm.dbg.declare(metadata i64* %thr1, metadata !125, metadata !DIExpression()), !dbg !145
// %2 = bitcast i64* %thr2 to i8*, !dbg !69
// call void @llvm.lifetime.start.p0i8(i64 8, i8* %2) #7, !dbg !69
// call void @llvm.dbg.declare(metadata i64* %thr2, metadata !126, metadata !DIExpression()), !dbg !147
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2), metadata !127, metadata !DIExpression()), !dbg !148
// call void @llvm.dbg.value(metadata i64 0, metadata !129, metadata !DIExpression()), !dbg !148
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 2) monotonic, align 8, !dbg !72
// ST: Guess
iw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l53_c3
old_cw = cw(0,0+2*1);
cw(0,0+2*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l53_c3
// Check
ASSUME(active[iw(0,0+2*1)] == 0);
ASSUME(active[cw(0,0+2*1)] == 0);
ASSUME(sforbid(0+2*1,cw(0,0+2*1))== 0);
ASSUME(iw(0,0+2*1) >= 0);
ASSUME(iw(0,0+2*1) >= 0);
ASSUME(cw(0,0+2*1) >= iw(0,0+2*1));
ASSUME(cw(0,0+2*1) >= old_cw);
ASSUME(cw(0,0+2*1) >= cr(0,0+2*1));
ASSUME(cw(0,0+2*1) >= cl[0]);
ASSUME(cw(0,0+2*1) >= cisb[0]);
ASSUME(cw(0,0+2*1) >= cdy[0]);
ASSUME(cw(0,0+2*1) >= cdl[0]);
ASSUME(cw(0,0+2*1) >= cds[0]);
ASSUME(cw(0,0+2*1) >= cctrl[0]);
ASSUME(cw(0,0+2*1) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0+2*1) = 0;
mem(0+2*1,cw(0,0+2*1)) = 0;
co(0+2*1,cw(0,0+2*1))+=1;
delta(0+2*1,cw(0,0+2*1)) = -1;
ASSUME(creturn[0] >= cw(0,0+2*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1), metadata !130, metadata !DIExpression()), !dbg !150
// call void @llvm.dbg.value(metadata i64 0, metadata !132, metadata !DIExpression()), !dbg !150
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 1) monotonic, align 8, !dbg !74
// ST: Guess
iw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l54_c3
old_cw = cw(0,0+1*1);
cw(0,0+1*1) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l54_c3
// Check
ASSUME(active[iw(0,0+1*1)] == 0);
ASSUME(active[cw(0,0+1*1)] == 0);
ASSUME(sforbid(0+1*1,cw(0,0+1*1))== 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(iw(0,0+1*1) >= 0);
ASSUME(cw(0,0+1*1) >= iw(0,0+1*1));
ASSUME(cw(0,0+1*1) >= old_cw);
ASSUME(cw(0,0+1*1) >= cr(0,0+1*1));
ASSUME(cw(0,0+1*1) >= cl[0]);
ASSUME(cw(0,0+1*1) >= cisb[0]);
ASSUME(cw(0,0+1*1) >= cdy[0]);
ASSUME(cw(0,0+1*1) >= cdl[0]);
ASSUME(cw(0,0+1*1) >= cds[0]);
ASSUME(cw(0,0+1*1) >= cctrl[0]);
ASSUME(cw(0,0+1*1) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0+1*1) = 0;
mem(0+1*1,cw(0,0+1*1)) = 0;
co(0+1*1,cw(0,0+1*1))+=1;
delta(0+1*1,cw(0,0+1*1)) = -1;
ASSUME(creturn[0] >= cw(0,0+1*1));
// call void @llvm.dbg.value(metadata i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0), metadata !133, metadata !DIExpression()), !dbg !152
// call void @llvm.dbg.value(metadata i64 0, metadata !135, metadata !DIExpression()), !dbg !152
// store atomic i64 0, i64* getelementptr inbounds ([3 x i64], [3 x i64]* @vars, i64 0, i64 0) monotonic, align 8, !dbg !76
// ST: Guess
iw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l55_c3
old_cw = cw(0,0);
cw(0,0) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l55_c3
// Check
ASSUME(active[iw(0,0)] == 0);
ASSUME(active[cw(0,0)] == 0);
ASSUME(sforbid(0,cw(0,0))== 0);
ASSUME(iw(0,0) >= 0);
ASSUME(iw(0,0) >= 0);
ASSUME(cw(0,0) >= iw(0,0));
ASSUME(cw(0,0) >= old_cw);
ASSUME(cw(0,0) >= cr(0,0));
ASSUME(cw(0,0) >= cl[0]);
ASSUME(cw(0,0) >= cisb[0]);
ASSUME(cw(0,0) >= cdy[0]);
ASSUME(cw(0,0) >= cdl[0]);
ASSUME(cw(0,0) >= cds[0]);
ASSUME(cw(0,0) >= cctrl[0]);
ASSUME(cw(0,0) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,0) = 0;
mem(0,cw(0,0)) = 0;
co(0,cw(0,0))+=1;
delta(0,cw(0,0)) = -1;
ASSUME(creturn[0] >= cw(0,0));
// store i32 0, i32* @atom_1_X0_1, align 4, !dbg !77, !tbaa !78
// ST: Guess
iw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l56_c15
old_cw = cw(0,3);
cw(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l56_c15
// Check
ASSUME(active[iw(0,3)] == 0);
ASSUME(active[cw(0,3)] == 0);
ASSUME(sforbid(3,cw(0,3))== 0);
ASSUME(iw(0,3) >= 0);
ASSUME(iw(0,3) >= 0);
ASSUME(cw(0,3) >= iw(0,3));
ASSUME(cw(0,3) >= old_cw);
ASSUME(cw(0,3) >= cr(0,3));
ASSUME(cw(0,3) >= cl[0]);
ASSUME(cw(0,3) >= cisb[0]);
ASSUME(cw(0,3) >= cdy[0]);
ASSUME(cw(0,3) >= cdl[0]);
ASSUME(cw(0,3) >= cds[0]);
ASSUME(cw(0,3) >= cctrl[0]);
ASSUME(cw(0,3) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,3) = 0;
mem(3,cw(0,3)) = 0;
co(3,cw(0,3))+=1;
delta(3,cw(0,3)) = -1;
ASSUME(creturn[0] >= cw(0,3));
// store i32 0, i32* @atom_2_X0_1, align 4, !dbg !82, !tbaa !78
// ST: Guess
iw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l57_c15
old_cw = cw(0,4);
cw(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l57_c15
// Check
ASSUME(active[iw(0,4)] == 0);
ASSUME(active[cw(0,4)] == 0);
ASSUME(sforbid(4,cw(0,4))== 0);
ASSUME(iw(0,4) >= 0);
ASSUME(iw(0,4) >= 0);
ASSUME(cw(0,4) >= iw(0,4));
ASSUME(cw(0,4) >= old_cw);
ASSUME(cw(0,4) >= cr(0,4));
ASSUME(cw(0,4) >= cl[0]);
ASSUME(cw(0,4) >= cisb[0]);
ASSUME(cw(0,4) >= cdy[0]);
ASSUME(cw(0,4) >= cdl[0]);
ASSUME(cw(0,4) >= cds[0]);
ASSUME(cw(0,4) >= cctrl[0]);
ASSUME(cw(0,4) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,4) = 0;
mem(4,cw(0,4)) = 0;
co(4,cw(0,4))+=1;
delta(4,cw(0,4)) = -1;
ASSUME(creturn[0] >= cw(0,4));
// store i32 0, i32* @atom_2_X2_0, align 4, !dbg !83, !tbaa !78
// ST: Guess
iw(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STIW _l58_c15
old_cw = cw(0,5);
cw(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN STCOM _l58_c15
// Check
ASSUME(active[iw(0,5)] == 0);
ASSUME(active[cw(0,5)] == 0);
ASSUME(sforbid(5,cw(0,5))== 0);
ASSUME(iw(0,5) >= 0);
ASSUME(iw(0,5) >= 0);
ASSUME(cw(0,5) >= iw(0,5));
ASSUME(cw(0,5) >= old_cw);
ASSUME(cw(0,5) >= cr(0,5));
ASSUME(cw(0,5) >= cl[0]);
ASSUME(cw(0,5) >= cisb[0]);
ASSUME(cw(0,5) >= cdy[0]);
ASSUME(cw(0,5) >= cdl[0]);
ASSUME(cw(0,5) >= cds[0]);
ASSUME(cw(0,5) >= cctrl[0]);
ASSUME(cw(0,5) >= caddr[0]);
// Update
caddr[0] = max(caddr[0],0);
buff(0,5) = 0;
mem(5,cw(0,5)) = 0;
co(5,cw(0,5))+=1;
delta(5,cw(0,5)) = -1;
ASSUME(creturn[0] >= cw(0,5));
// %call = call i32 @pthread_create(i64* noundef %thr0, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t0, i8* noundef null) #7, !dbg !84
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[1] >= cdy[0]);
// %call5 = call i32 @pthread_create(i64* noundef %thr1, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t1, i8* noundef null) #7, !dbg !85
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[2] >= cdy[0]);
// %call6 = call i32 @pthread_create(i64* noundef %thr2, %union.pthread_attr_t* noundef null, i8* (i8*)* noundef @t2, i8* noundef null) #7, !dbg !86
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cstart[3] >= cdy[0]);
// %3 = load i64, i64* %thr0, align 8, !dbg !87, !tbaa !88
r4 = local_mem[0];
// %call7 = call i32 @pthread_join(i64 noundef %3, i8** noundef null), !dbg !90
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[1]);
// %4 = load i64, i64* %thr1, align 8, !dbg !91, !tbaa !88
r5 = local_mem[1];
// %call8 = call i32 @pthread_join(i64 noundef %4, i8** noundef null), !dbg !92
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[2]);
// %5 = load i64, i64* %thr2, align 8, !dbg !93, !tbaa !88
r6 = local_mem[2];
// %call9 = call i32 @pthread_join(i64 noundef %5, i8** noundef null), !dbg !94
// dumbsy: Guess
old_cdy = cdy[0];
cdy[0] = get_rng(0,NCONTEXT-1);
// Check
ASSUME(cdy[0] >= old_cdy);
ASSUME(cdy[0] >= cisb[0]);
ASSUME(cdy[0] >= cdl[0]);
ASSUME(cdy[0] >= cds[0]);
ASSUME(cdy[0] >= cctrl[0]);
ASSUME(cdy[0] >= cw(0,0+0));
ASSUME(cdy[0] >= cw(0,0+1));
ASSUME(cdy[0] >= cw(0,0+2));
ASSUME(cdy[0] >= cw(0,3+0));
ASSUME(cdy[0] >= cw(0,4+0));
ASSUME(cdy[0] >= cw(0,5+0));
ASSUME(cdy[0] >= cr(0,0+0));
ASSUME(cdy[0] >= cr(0,0+1));
ASSUME(cdy[0] >= cr(0,0+2));
ASSUME(cdy[0] >= cr(0,3+0));
ASSUME(cdy[0] >= cr(0,4+0));
ASSUME(cdy[0] >= cr(0,5+0));
ASSUME(creturn[0] >= cdy[0]);
ASSUME(cdy[0] >= creturn[3]);
// %6 = load i32, i32* @atom_1_X0_1, align 4, !dbg !95, !tbaa !78
// LD: Guess
old_cr = cr(0,3);
cr(0,3) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l68_c13
// Check
ASSUME(active[cr(0,3)] == 0);
ASSUME(cr(0,3) >= iw(0,3));
ASSUME(cr(0,3) >= 0);
ASSUME(cr(0,3) >= cdy[0]);
ASSUME(cr(0,3) >= cisb[0]);
ASSUME(cr(0,3) >= cdl[0]);
ASSUME(cr(0,3) >= cl[0]);
// Update
creg_r7 = cr(0,3);
crmax(0,3) = max(crmax(0,3),cr(0,3));
caddr[0] = max(caddr[0],0);
if(cr(0,3) < cw(0,3)) {
r7 = buff(0,3);
ASSUME((!(( (cw(0,3) < 1) && (1 < crmax(0,3)) )))||(sforbid(3,1)> 0));
ASSUME((!(( (cw(0,3) < 2) && (2 < crmax(0,3)) )))||(sforbid(3,2)> 0));
ASSUME((!(( (cw(0,3) < 3) && (3 < crmax(0,3)) )))||(sforbid(3,3)> 0));
ASSUME((!(( (cw(0,3) < 4) && (4 < crmax(0,3)) )))||(sforbid(3,4)> 0));
} else {
if(pw(0,3) != co(3,cr(0,3))) {
ASSUME(cr(0,3) >= old_cr);
}
pw(0,3) = co(3,cr(0,3));
r7 = mem(3,cr(0,3));
}
ASSUME(creturn[0] >= cr(0,3));
// call void @llvm.dbg.value(metadata i32 %6, metadata !136, metadata !DIExpression()), !dbg !141
// %7 = load i32, i32* @atom_2_X0_1, align 4, !dbg !96, !tbaa !78
// LD: Guess
old_cr = cr(0,4);
cr(0,4) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l69_c13
// Check
ASSUME(active[cr(0,4)] == 0);
ASSUME(cr(0,4) >= iw(0,4));
ASSUME(cr(0,4) >= 0);
ASSUME(cr(0,4) >= cdy[0]);
ASSUME(cr(0,4) >= cisb[0]);
ASSUME(cr(0,4) >= cdl[0]);
ASSUME(cr(0,4) >= cl[0]);
// Update
creg_r8 = cr(0,4);
crmax(0,4) = max(crmax(0,4),cr(0,4));
caddr[0] = max(caddr[0],0);
if(cr(0,4) < cw(0,4)) {
r8 = buff(0,4);
ASSUME((!(( (cw(0,4) < 1) && (1 < crmax(0,4)) )))||(sforbid(4,1)> 0));
ASSUME((!(( (cw(0,4) < 2) && (2 < crmax(0,4)) )))||(sforbid(4,2)> 0));
ASSUME((!(( (cw(0,4) < 3) && (3 < crmax(0,4)) )))||(sforbid(4,3)> 0));
ASSUME((!(( (cw(0,4) < 4) && (4 < crmax(0,4)) )))||(sforbid(4,4)> 0));
} else {
if(pw(0,4) != co(4,cr(0,4))) {
ASSUME(cr(0,4) >= old_cr);
}
pw(0,4) = co(4,cr(0,4));
r8 = mem(4,cr(0,4));
}
ASSUME(creturn[0] >= cr(0,4));
// call void @llvm.dbg.value(metadata i32 %7, metadata !137, metadata !DIExpression()), !dbg !141
// %8 = load i32, i32* @atom_2_X2_0, align 4, !dbg !97, !tbaa !78
// LD: Guess
old_cr = cr(0,5);
cr(0,5) = get_rng(0,NCONTEXT-1);// 0 ASSIGN LDCOM _l70_c13
// Check
ASSUME(active[cr(0,5)] == 0);
ASSUME(cr(0,5) >= iw(0,5));
ASSUME(cr(0,5) >= 0);
ASSUME(cr(0,5) >= cdy[0]);
ASSUME(cr(0,5) >= cisb[0]);
ASSUME(cr(0,5) >= cdl[0]);
ASSUME(cr(0,5) >= cl[0]);
// Update
creg_r9 = cr(0,5);
crmax(0,5) = max(crmax(0,5),cr(0,5));
caddr[0] = max(caddr[0],0);
if(cr(0,5) < cw(0,5)) {
r9 = buff(0,5);
ASSUME((!(( (cw(0,5) < 1) && (1 < crmax(0,5)) )))||(sforbid(5,1)> 0));
ASSUME((!(( (cw(0,5) < 2) && (2 < crmax(0,5)) )))||(sforbid(5,2)> 0));
ASSUME((!(( (cw(0,5) < 3) && (3 < crmax(0,5)) )))||(sforbid(5,3)> 0));
ASSUME((!(( (cw(0,5) < 4) && (4 < crmax(0,5)) )))||(sforbid(5,4)> 0));
} else {
if(pw(0,5) != co(5,cr(0,5))) {
ASSUME(cr(0,5) >= old_cr);
}
pw(0,5) = co(5,cr(0,5));
r9 = mem(5,cr(0,5));
}
ASSUME(creturn[0] >= cr(0,5));
// call void @llvm.dbg.value(metadata i32 %8, metadata !138, metadata !DIExpression()), !dbg !141
// %and = and i32 %7, %8, !dbg !98
creg_r10 = max(creg_r8,creg_r9);
r10 = r8 & r9;
// call void @llvm.dbg.value(metadata i32 %and, metadata !139, metadata !DIExpression()), !dbg !141
// %and10 = and i32 %6, %and, !dbg !99
creg_r11 = max(creg_r10,creg_r7);
r11 = r7 & r10;
// call void @llvm.dbg.value(metadata i32 %and10, metadata !140, metadata !DIExpression()), !dbg !141
// %cmp = icmp eq i32 %and10, 1, !dbg !100
creg__r11__1_ = max(0,creg_r11);
// br i1 %cmp, label %if.then, label %if.end, !dbg !102
old_cctrl = cctrl[0];
cctrl[0] = get_rng(0,NCONTEXT-1);
ASSUME(cctrl[0] >= old_cctrl);
ASSUME(cctrl[0] >= creg__r11__1_);
if((r11==1)) {
goto T0BLOCK1;
} else {
goto T0BLOCK2;
}
T0BLOCK1:
// call void @__assert_fail(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0), i8* noundef getelementptr inbounds ([106 x i8], [106 x i8]* @.str.1, i64 0, i64 0), i32 noundef 73, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @__PRETTY_FUNCTION__.main, i64 0, i64 0)) #8, !dbg !103
// unreachable, !dbg !103
r12 = 1;
goto T0BLOCK_END;
T0BLOCK2:
// %9 = bitcast i64* %thr2 to i8*, !dbg !106
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %9) #7, !dbg !106
// %10 = bitcast i64* %thr1 to i8*, !dbg !106
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %10) #7, !dbg !106
// %11 = bitcast i64* %thr0 to i8*, !dbg !106
// call void @llvm.lifetime.end.p0i8(i64 8, i8* %11) #7, !dbg !106
// ret i32 0, !dbg !107
ret_thread_0 = 0;
goto T0BLOCK_END;
T0BLOCK_END:
ASSUME(meminit(0,1) == mem(0,0));
ASSUME(coinit(0,1) == co(0,0));
ASSUME(deltainit(0,1) == delta(0,0));
ASSUME(meminit(0,2) == mem(0,1));
ASSUME(coinit(0,2) == co(0,1));
ASSUME(deltainit(0,2) == delta(0,1));
ASSUME(meminit(0,3) == mem(0,2));
ASSUME(coinit(0,3) == co(0,2));
ASSUME(deltainit(0,3) == delta(0,2));
ASSUME(meminit(0,4) == mem(0,3));
ASSUME(coinit(0,4) == co(0,3));
ASSUME(deltainit(0,4) == delta(0,3));
ASSUME(meminit(1,1) == mem(1,0));
ASSUME(coinit(1,1) == co(1,0));
ASSUME(deltainit(1,1) == delta(1,0));
ASSUME(meminit(1,2) == mem(1,1));
ASSUME(coinit(1,2) == co(1,1));
ASSUME(deltainit(1,2) == delta(1,1));
ASSUME(meminit(1,3) == mem(1,2));
ASSUME(coinit(1,3) == co(1,2));
ASSUME(deltainit(1,3) == delta(1,2));
ASSUME(meminit(1,4) == mem(1,3));
ASSUME(coinit(1,4) == co(1,3));
ASSUME(deltainit(1,4) == delta(1,3));
ASSUME(meminit(2,1) == mem(2,0));
ASSUME(coinit(2,1) == co(2,0));
ASSUME(deltainit(2,1) == delta(2,0));
ASSUME(meminit(2,2) == mem(2,1));
ASSUME(coinit(2,2) == co(2,1));
ASSUME(deltainit(2,2) == delta(2,1));
ASSUME(meminit(2,3) == mem(2,2));
ASSUME(coinit(2,3) == co(2,2));
ASSUME(deltainit(2,3) == delta(2,2));
ASSUME(meminit(2,4) == mem(2,3));
ASSUME(coinit(2,4) == co(2,3));
ASSUME(deltainit(2,4) == delta(2,3));
ASSUME(meminit(3,1) == mem(3,0));
ASSUME(coinit(3,1) == co(3,0));
ASSUME(deltainit(3,1) == delta(3,0));
ASSUME(meminit(3,2) == mem(3,1));
ASSUME(coinit(3,2) == co(3,1));
ASSUME(deltainit(3,2) == delta(3,1));
ASSUME(meminit(3,3) == mem(3,2));
ASSUME(coinit(3,3) == co(3,2));
ASSUME(deltainit(3,3) == delta(3,2));
ASSUME(meminit(3,4) == mem(3,3));
ASSUME(coinit(3,4) == co(3,3));
ASSUME(deltainit(3,4) == delta(3,3));
ASSUME(meminit(4,1) == mem(4,0));
ASSUME(coinit(4,1) == co(4,0));
ASSUME(deltainit(4,1) == delta(4,0));
ASSUME(meminit(4,2) == mem(4,1));
ASSUME(coinit(4,2) == co(4,1));
ASSUME(deltainit(4,2) == delta(4,1));
ASSUME(meminit(4,3) == mem(4,2));
ASSUME(coinit(4,3) == co(4,2));
ASSUME(deltainit(4,3) == delta(4,2));
ASSUME(meminit(4,4) == mem(4,3));
ASSUME(coinit(4,4) == co(4,3));
ASSUME(deltainit(4,4) == delta(4,3));
ASSUME(meminit(5,1) == mem(5,0));
ASSUME(coinit(5,1) == co(5,0));
ASSUME(deltainit(5,1) == delta(5,0));
ASSUME(meminit(5,2) == mem(5,1));
ASSUME(coinit(5,2) == co(5,1));
ASSUME(deltainit(5,2) == delta(5,1));
ASSUME(meminit(5,3) == mem(5,2));
ASSUME(coinit(5,3) == co(5,2));
ASSUME(deltainit(5,3) == delta(5,2));
ASSUME(meminit(5,4) == mem(5,3));
ASSUME(coinit(5,4) == co(5,3));
ASSUME(deltainit(5,4) == delta(5,3));
ASSERT(r12== 0);
}
| [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
e8b1e973be5dcde9f31fe6fdf9ca94af98b99e42 | ff9a922503059975d98236bca7efd371c6fb5167 | /src/qt/transactiondesc.cpp | 03245377961e04767e14e40a8f72c1b063ef987e | [
"MIT"
] | permissive | jaimenurbina/blessingcoin | 7925c780f0783e91800b032cba68826306126222 | ff4e2d9b3d01cebb140d1130b64465e5d9b6c247 | refs/heads/master | 2020-12-24T02:53:23.201075 | 2020-02-01T20:55:03 | 2020-02-01T20:55:03 | 237,356,284 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,760 | cpp | // Copyright (c) 2011-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2019 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "transactiondesc.h"
#include "bitcoinunits.h"
#include "guiutil.h"
#include "paymentserver.h"
#include "transactionrecord.h"
#include "base58.h"
#include "db.h"
#include "main.h"
#include "script/script.h"
#include "timedata.h"
#include "guiinterface.h"
#include "util.h"
#include "wallet/wallet.h"
#include <stdint.h>
#include <string>
using namespace std;
QString TransactionDesc::FormatTxStatus(const CWalletTx& wtx)
{
AssertLockHeld(cs_main);
if (!IsFinalTx(wtx, chainActive.Height() + 1)) {
if (wtx.nLockTime < LOCKTIME_THRESHOLD)
return tr("Open for %n more block(s)", "", wtx.nLockTime - chainActive.Height());
else
return tr("Open until %1").arg(GUIUtil::dateTimeStr(wtx.nLockTime));
} else {
int signatures = wtx.GetTransactionLockSignatures();
QString strUsingIX = "";
if (signatures >= 0) {
if (signatures >= SWIFTTX_SIGNATURES_REQUIRED) {
int nDepth = wtx.GetDepthInMainChain();
if (nDepth < 0)
return tr("conflicted");
else if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0)
return tr("%1/offline (verified via SwiftX)").arg(nDepth);
else if (nDepth < 6)
return tr("%1/confirmed (verified via SwiftX)").arg(nDepth);
else
return tr("%1 confirmations (verified via SwiftX)").arg(nDepth);
} else {
if (!wtx.IsTransactionLockTimedOut()) {
int nDepth = wtx.GetDepthInMainChain();
if (nDepth < 0)
return tr("conflicted");
else if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0)
return tr("%1/offline (SwiftX verification in progress - %2 of %3 signatures)").arg(nDepth).arg(signatures).arg(SWIFTTX_SIGNATURES_TOTAL);
else if (nDepth < 6)
return tr("%1/confirmed (SwiftX verification in progress - %2 of %3 signatures )").arg(nDepth).arg(signatures).arg(SWIFTTX_SIGNATURES_TOTAL);
else
return tr("%1 confirmations (SwiftX verification in progress - %2 of %3 signatures)").arg(nDepth).arg(signatures).arg(SWIFTTX_SIGNATURES_TOTAL);
} else {
int nDepth = wtx.GetDepthInMainChain();
if (nDepth < 0)
return tr("conflicted");
else if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0)
return tr("%1/offline (SwiftX verification failed)").arg(nDepth);
else if (nDepth < 6)
return tr("%1/confirmed (SwiftX verification failed)").arg(nDepth);
else
return tr("%1 confirmations").arg(nDepth);
}
}
} else {
int nDepth = wtx.GetDepthInMainChain();
if (nDepth < 0)
return tr("conflicted");
else if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0)
return tr("%1/offline").arg(nDepth);
else if (nDepth < 6)
return tr("%1/unconfirmed").arg(nDepth);
else
return tr("%1 confirmations").arg(nDepth);
}
}
}
QString TransactionDesc::toHTML(CWallet* wallet, CWalletTx& wtx, TransactionRecord* rec, int unit)
{
QString strHTML;
LOCK2(cs_main, wallet->cs_wallet);
strHTML.reserve(4000);
strHTML += "<html><font face='verdana, arial, helvetica, sans-serif'>";
CAmount nNet = rec->credit + rec->debit;
strHTML += "<b>" + tr("Status") + ":</b> " + FormatTxStatus(wtx);
int nRequests = wtx.GetRequestCount();
if (nRequests != -1) {
if (nRequests == 0)
strHTML += tr(", has not been successfully broadcast yet");
else if (nRequests > 0)
strHTML += tr(", broadcast through %n node(s)", "", nRequests);
}
strHTML += "<br>";
strHTML += "<b>" + tr("Date") + ":</b> " + (rec->time ? GUIUtil::dateTimeStr(rec->time) : "") + "<br>";
//
// From
//
if (wtx.IsCoinBase()) {
strHTML += "<b>" + tr("Source") + ":</b> " + tr("Generated") + "<br>";
} else if (wtx.mapValue.count("from") && !wtx.mapValue["from"].empty()) {
// Online transaction
strHTML += "<b>" + tr("From") + ":</b> " + GUIUtil::HtmlEscape(wtx.mapValue["from"]) + "<br>";
} else {
// Offline transaction
if (nNet > 0) {
// Credit
if (CBitcoinAddress(rec->address).IsValid()) {
CTxDestination address = CBitcoinAddress(rec->address).Get();
if (wallet->mapAddressBook.count(address)) {
strHTML += "<b>" + tr("From") + ":</b> " + tr("unknown") + "<br>";
strHTML += "<b>" + tr("To") + ":</b> ";
strHTML += GUIUtil::HtmlEscape(rec->address);
QString addressOwned = (::IsMine(*wallet, address) == ISMINE_SPENDABLE) ? tr("own address") : tr("watch-only");
if (!wallet->mapAddressBook[address].name.empty())
strHTML += " (" + addressOwned + ", " + tr("label") + ": " + GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + ")";
else
strHTML += " (" + addressOwned + ")";
strHTML += "<br>";
}
}
}
}
//
// To
//
if (wtx.mapValue.count("to") && !wtx.mapValue["to"].empty()) {
// Online transaction
std::string strAddress = wtx.mapValue["to"];
strHTML += "<b>" + tr("To") + ":</b> ";
CTxDestination dest = CBitcoinAddress(strAddress).Get();
if (wallet->mapAddressBook.count(dest) && !wallet->mapAddressBook[dest].name.empty())
strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[dest].name) + " ";
strHTML += GUIUtil::HtmlEscape(strAddress) + "<br>";
}
//
// Amount
//
if (wtx.IsCoinBase() && rec->credit == 0) {
//
// Coinbase
//
CAmount nUnmatured = 0;
for (const CTxOut& txout : wtx.vout)
nUnmatured += wallet->GetCredit(txout, ISMINE_ALL);
strHTML += "<b>" + tr("Credit") + ":</b> ";
if (wtx.IsInMainChain())
strHTML += BitcoinUnits::formatHtmlWithUnit(unit, nUnmatured) + " (" + tr("matures in %n more block(s)", "", wtx.GetBlocksToMaturity()) + ")";
else
strHTML += "(" + tr("not accepted") + ")";
strHTML += "<br>";
} else if (nNet > 0) {
//
// Credit
//
strHTML += "<b>" + tr("Credit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, nNet) + "<br>";
} else {
isminetype fAllFromMe = ISMINE_SPENDABLE;
for (const CTxIn& txin : wtx.vin) {
isminetype mine = wallet->IsMine(txin);
if (fAllFromMe > mine) fAllFromMe = mine;
}
isminetype fAllToMe = ISMINE_SPENDABLE;
for (const CTxOut& txout : wtx.vout) {
isminetype mine = wallet->IsMine(txout);
if (fAllToMe > mine) fAllToMe = mine;
}
if (fAllFromMe) {
if (fAllFromMe == ISMINE_WATCH_ONLY)
strHTML += "<b>" + tr("From") + ":</b> " + tr("watch-only") + "<br>";
//
// Debit
//
for (const CTxOut& txout : wtx.vout) {
// Ignore change
isminetype toSelf = wallet->IsMine(txout);
if ((toSelf == ISMINE_SPENDABLE) && (fAllFromMe == ISMINE_SPENDABLE))
continue;
if (!wtx.mapValue.count("to") || wtx.mapValue["to"].empty()) {
// Offline transaction
CTxDestination address;
if (ExtractDestination(txout.scriptPubKey, address)) {
strHTML += "<b>" + tr("To") + ":</b> ";
if (wallet->mapAddressBook.count(address) && !wallet->mapAddressBook[address].name.empty())
strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + " ";
strHTML += GUIUtil::HtmlEscape(CBitcoinAddress(address).ToString());
if (toSelf == ISMINE_SPENDABLE)
strHTML += " (own address)";
else if (toSelf == ISMINE_WATCH_ONLY)
strHTML += " (watch-only)";
strHTML += "<br>";
}
}
strHTML += "<b>" + tr("Debit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, -txout.nValue) + "<br>";
if (toSelf)
strHTML += "<b>" + tr("Credit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, txout.nValue) + "<br>";
}
if (fAllToMe) {
// Payment to self
CAmount nChange = wtx.GetChange();
CAmount nValue = rec->credit - nChange;
strHTML += "<b>" + tr("Total debit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, -nValue) + "<br>";
strHTML += "<b>" + tr("Total credit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, nValue) + "<br>";
}
CAmount nTxFee = rec->debit - wtx.GetValueOut();
if (nTxFee > 0)
strHTML += "<b>" + tr("Transaction fee") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, -nTxFee) + "<br>";
} else {
//
// Mixed debit transaction
//
for (const CTxIn& txin : wtx.vin)
if (wallet->IsMine(txin))
strHTML += "<b>" + tr("Debit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, -wallet->GetDebit(txin, ISMINE_ALL)) + "<br>";
for (const CTxOut& txout : wtx.vout)
if (wallet->IsMine(txout))
strHTML += "<b>" + tr("Credit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, wallet->GetCredit(txout, ISMINE_ALL)) + "<br>";
}
}
strHTML += "<b>" + tr("Net amount") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, nNet, true) + "<br>";
//
// Message
//
if (wtx.mapValue.count("message") && !wtx.mapValue["message"].empty())
strHTML += "<br><b>" + tr("Message") + ":</b><br>" + GUIUtil::HtmlEscape(wtx.mapValue["message"], true) + "<br>";
if (wtx.mapValue.count("comment") && !wtx.mapValue["comment"].empty())
strHTML += "<br><b>" + tr("Comment") + ":</b><br>" + GUIUtil::HtmlEscape(wtx.mapValue["comment"], true) + "<br>";
strHTML += "<b>" + tr("Transaction ID") + ":</b> " + rec->getTxID() + "<br>";
strHTML += "<b>" + tr("Output index") + ":</b> " + QString::number(rec->getOutputIndex()) + "<br>";
// Message from normal blessing:URI (blessing:XyZ...?message=example)
foreach (const PAIRTYPE(string, string) & r, wtx.vOrderForm)
if (r.first == "Message")
strHTML += "<br><b>" + tr("Message") + ":</b><br>" + GUIUtil::HtmlEscape(r.second, true) + "<br>";
//
// PaymentRequest info:
//
foreach (const PAIRTYPE(string, string) & r, wtx.vOrderForm) {
if (r.first == "PaymentRequest") {
PaymentRequestPlus req;
req.parse(QByteArray::fromRawData(r.second.data(), r.second.size()));
QString merchant;
if (req.getMerchant(PaymentServer::getCertStore(), merchant))
strHTML += "<b>" + tr("Merchant") + ":</b> " + GUIUtil::HtmlEscape(merchant) + "<br>";
}
}
if (wtx.IsCoinBase()) {
quint32 numBlocksToMaturity = Params().COINBASE_MATURITY() + 1;
strHTML += "<br>" + tr("Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to \"not accepted\" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours.").arg(QString::number(numBlocksToMaturity)) + "<br>";
}
//
// Debug view
//
if (fDebug) {
strHTML += "<hr><br>" + tr("Debug information") + "<br><br>";
for (const CTxIn& txin : wtx.vin)
if (wallet->IsMine(txin))
strHTML += "<b>" + tr("Debit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, -wallet->GetDebit(txin, ISMINE_ALL)) + "<br>";
for (const CTxOut& txout : wtx.vout)
if (wallet->IsMine(txout))
strHTML += "<b>" + tr("Credit") + ":</b> " + BitcoinUnits::formatHtmlWithUnit(unit, wallet->GetCredit(txout, ISMINE_ALL)) + "<br>";
strHTML += "<br><b>" + tr("Transaction") + ":</b><br>";
strHTML += GUIUtil::HtmlEscape(wtx.ToString(), true);
strHTML += "<br><b>" + tr("Inputs") + ":</b>";
strHTML += "<ul>";
for (const CTxIn& txin : wtx.vin) {
COutPoint prevout = txin.prevout;
CCoins prev;
if (pcoinsTip->GetCoins(prevout.hash, prev)) {
if (prevout.n < prev.vout.size()) {
strHTML += "<li>";
const CTxOut& vout = prev.vout[prevout.n];
CTxDestination address;
if (ExtractDestination(vout.scriptPubKey, address)) {
if (wallet->mapAddressBook.count(address) && !wallet->mapAddressBook[address].name.empty())
strHTML += GUIUtil::HtmlEscape(wallet->mapAddressBook[address].name) + " ";
strHTML += QString::fromStdString(CBitcoinAddress(address).ToString());
}
strHTML = strHTML + " " + tr("Amount") + "=" + BitcoinUnits::formatHtmlWithUnit(unit, vout.nValue);
strHTML = strHTML + " IsMine=" + (wallet->IsMine(vout) & ISMINE_SPENDABLE ? tr("true") : tr("false"));
strHTML = strHTML + " IsWatchOnly=" + (wallet->IsMine(vout) & ISMINE_WATCH_ONLY ? tr("true") : tr("false")) + "</li>";
}
}
}
strHTML += "</ul>";
}
strHTML += "</font></html>";
return strHTML;
}
| [
"32083500+jaimenurbina@users.noreply.github.com"
] | 32083500+jaimenurbina@users.noreply.github.com |
0876a971ceb4debd3daac4865800727c97e683c0 | d99e3a8b8a442062df49c031b13c900fc14aed2b | /11sourcebk/bsadmin/orderquery.cpp | 9b1ff5a06b940d97e82964eea42171b9c3e8a7a1 | [] | no_license | pengge/jiaocai_new | 1ce79aaded807285c61625e590777bfdb5ce208b | 982bcc7ee55cc1fc3860ced9305271e9fb9571d6 | refs/heads/master | 2022-01-31T03:53:58.434184 | 2016-11-12T12:02:03 | 2016-11-12T12:02:03 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 6,491 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "orderquery.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "MDIChild"
#pragma link "DBCtrlsEh"
#pragma link "DBGridEh"
#pragma link "GridsEh"
#pragma resource "*.dfm"
Tfrmorderquery *frmorderquery;
//---------------------------------------------------------------------------
__fastcall Tfrmorderquery::Tfrmorderquery(TComponent* Owner)
: TfrmMDIChild(Owner)
{
dtstart->Value = Date();
dtend->Value = Date();
this->WindowState = wsMaximized ;
}
//---------------------------------------------------------------------------
void Tfrmorderquery::Init(LandInfo* li)
{
TfrmMDIChild::Init(li);
linfo.app = li->app ;
linfo.con = li->con ;
linfo.userID = li->userID ;
linfo.UserName = li->UserName ;
linfo.storageID = li->storageID ;
linfo.FormatStr = li->FormatStr ;
aq->Connection = m_con ;
aq1->Connection = m_con ;
aq2->Connection = m_con ;
AnsiString sql;
sql = "select ID,Name from CUST_CustomerInfo where type = 2";
aq->Close();
aq->SQL->Clear();
aq->SQL->Add(sql);
aq->Open();
while (!aq->Eof )
{
cbsupplier->AddItem(aq->FieldByName("Name")->AsAnsiString ,(TObject *)aq->FieldByName("ID")->AsInteger );
aq->Next();
}
}
//---------------------------------------------------------------------------
void __fastcall Tfrmorderquery::edqueryKeyPress(TObject *Sender, wchar_t &Key)
{
if (Key == '\r') {
AnsiString sql;
sql = "select ID,Name from CUST_CustomerInfo where type = 2 and Name like '%" + edquery->Text + "%'";
aq->Close();
aq->SQL->Clear();
aq->SQL->Add(sql);
aq->Open();
cbsupplier->Clear();
while (!aq->Eof )
{
cbsupplier->AddItem(aq->FieldByName("Name")->AsAnsiString ,(TObject *)aq->FieldByName("ID")->AsInteger );
aq->Next();
}
aq->First();
cbsupplier->SetFocus();
cbsupplier->ItemIndex = cbsupplier->Items->IndexOfObject((TObject *)aq->FieldByName("ID")->AsInteger );
}
}
//---------------------------------------------------------------------------
void __fastcall Tfrmorderquery::SpeedButton1Click(TObject *Sender)
{
AnsiString sql,sqlwhere;
sql = "select OrderNtCode,HdTime,Name from BS_OrderNoteHeader left join CUST_CustomerInfo on BS_OrderNoteHeader.VendorID = CUST_CustomerInfo.id ";
if (chprocure->Checked ) {
sqlwhere = " where OrderNtCode = " + edprocurecode->Text ;
}
if (chsupplier->Checked ) {
if (sqlwhere == "") {
sqlwhere = " where CUST_CustomerInfo.Name like '%" + cbsupplier->Text + "%'";
}
else
{
sqlwhere = sqlwhere + " and CUST_CustomerInfo.Name like '%" + cbsupplier->Text + "%'";
}
}
if (chstart->Checked) {
if (sqlwhere == "") {
sqlwhere = " where BS_OrderNoteHeader.HdTime >= '" + DateToStr(dtstart->Value) + "'";
}
else
{
sqlwhere = sqlwhere + " and BS_OrderNoteHeader.HdTime >= '" + DateToStr(dtstart->Value) + "'";
}
}
if (chend->Checked ) {
if (sqlwhere == "") {
sqlwhere = " where BS_OrderNoteHeader.HdTime <= '" + DateToStr(dtend->Value) + "'";
}
else
{
sqlwhere = sqlwhere + " and BS_OrderNoteHeader.HdTime <= '" + DateToStr(dtend->Value) + "'";
}
}
sql = sql + sqlwhere;
aq1->Close();
aq1->SQL->Clear();
aq1->SQL->Add(sql);
aq1->Open();
}
//---------------------------------------------------------------------------
void __fastcall Tfrmorderquery::DBGridEh1CellClick(TColumnEh *Column)
{
if (aq1->IsEmpty() ) {
return;
}
AnsiString sql;
sql = "select BS_OrderNote.id,BS_OrderNote.Amount,BS_OrderNote.FixedPrice,BS_OrderNote.Discount,BS_OrderNote.DiscountedPrice,BS_OrderNoteHeader.VendorID,"
"BS_OrderNote.BkcatalogID,BS_BookCatalog.ISBN,BS_BookCatalog.Price,BS_BookCatalog.Name,BS_PressInfo.AbbreviatedName "
" from BS_OrderNoteHeader left join BS_OrderNote on BS_OrderNoteHeader.id = BS_OrderNote.OrderNtHeaderID "
" left join BS_BookCatalog on BS_OrderNote.BkcatalogID = BS_BookCatalog.id "
" left join BS_PressInfo on BS_BookCatalog.PressID = BS_PressInfo.id where BS_OrderNoteHeader.OrderNtCode = " + aq1->FieldByName("OrderNtCode")->AsString ;
aq2->Close();
aq2->SQL->Clear();
aq2->SQL->Add(sql);
aq2->Open();
}
//---------------------------------------------------------------------------
void __fastcall Tfrmorderquery::SpeedButton2Click(TObject *Sender)
{
//转入入库
if (aq2->IsEmpty() ) {
return;
}
int supplierid;
if (ZNStorage->dsetNote->IsEmpty() )
{
supplierid = aq2->FieldByName("SupplierID")->AsInteger;
}
else
{
supplierid = ZNStorage->dsetNtHeader->FieldByName("SupplierID")->AsInteger;
}
if (DBGrid1->SelectedRows->Count > 0) {
for (int i =0; i < DBGrid1->SelectedRows->Count ; i++) {
aq2->GotoBookmark(DBGrid1->SelectedRows->Items[i]);
if (ZNStorage->dsetNote->RecordCount > 0 && supplierid != aq2->FieldByName("SupplierID")->AsInteger) {
MessageBox(0,"入库供应商不一致!","智能发货" ,MB_OK);
return;
}
ZNStorage->AddNote(supplierid,aq2->FieldByName("BkcatalogID")->AsInteger);
ZNStorage->dsetNote->Edit();
ZNStorage->dsetNote->FieldByName("Amount")->AsInteger = aq2->FieldByName("Amount")->AsInteger ;
ZNStorage->dsetNote->FieldByName("Discount")->AsFloat = aq2->FieldByName("Discount")->AsFloat ;
ZNStorage->UpdateNote();
supplierid = aq2->FieldByName("SupplierID")->AsInteger;
}
}
else
{
if (ZNStorage->dsetNote->RecordCount > 0 && supplierid != aq2->FieldByName("SupplierID")->AsInteger) {
MessageBox(0,"入库供应商不一致!","智能入库" ,MB_OK);
return;
}
ZNStorage->AddNote(supplierid,aq2->FieldByName("BkcatalogID")->AsInteger);
ZNStorage->dsetNote->Edit();
ZNStorage->dsetNote->FieldByName("Amount")->AsInteger = aq2->FieldByName("Amount")->AsInteger ;
ZNStorage->dsetNote->FieldByName("Discount")->AsFloat = aq2->FieldByName("Discount")->AsFloat ;
ZNStorage->UpdateNote();
}
if (ZNStorage->dsetNote->IsEmpty() ) {
ZNStorage->dsetNtHeader->Edit();
ZNStorage->dsetNtHeader->FieldByName("SupplierID")->AsInteger = supplierid;
ZNStorage->UpdateNtHeader();
}
}
//---------------------------------------------------------------------------
void __fastcall Tfrmorderquery::N1Click(TObject *Sender)
{
for (int i = 1; i <= aq2->RecordCount; i++) {
DBGrid1->DataSource->DataSet->RecNo = i;
DBGrid1->SelectedRows->CurrentRowSelected = true;
}
}
//---------------------------------------------------------------------------
| [
"legendbin@gmail.com"
] | legendbin@gmail.com |
b107f53804cdb1be1ddbaac090692e2e7b4d9412 | 290e24157e886390a6eb57beed815493f1c15b99 | /Calc_Func_DLL.h | 6b52e61ba0b8ee4966b6e32fcbf20177008dd660 | [] | no_license | Loner0822/DataAnalysis | 7c1324e159277c93e67bb3f996824a32d4c04e90 | ccb41a3e4ea0f2e28cdf758b13865b83b567769c | refs/heads/master | 2022-11-26T14:57:28.915631 | 2020-08-10T06:27:48 | 2020-08-10T06:27:48 | 278,573,388 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,054 | h | // 下列 ifdef 块是创建使从 DLL 导出更简单的
// 宏的标准方法。此 DLL 中的所有文件都是用命令行上定义的 CALCFUNCDLL_EXPORTS
// 符号编译的。在使用此 DLL 的
// 任何项目上不应定义此符号。这样,源文件中包含此文件的任何其他项目都会将
// CALCFUNCDLL_API 函数视为是从 DLL 导入的,而此 DLL 则将用此宏定义的
// 符号视为是被导出的。
#ifdef CALCFUNCDLL_EXPORTS
#define CALCFUNCDLL_API __declspec(dllexport)
#else
#define CALCFUNCDLL_API __declspec(dllimport)
#endif
#include <string>
#include <vector>
#include <cmath>
//// 此类是从 dll 导出的
//class CALCFUNCDLL_API CCalcFuncDLL {
//public:
// CCalcFuncDLL(void);
// // TODO: 在此处添加方法。
//};
//
//extern CALCFUNCDLL_API int nCalcFuncDLL;
//
//CALCFUNCDLL_API int fnCalcFuncDLL(void);
class CALCFUNCDLL_API CalcUnit {
public:
int Calc_Id;
std::string Const_str;
std::vector <double> Const_Nums;
CalcUnit();
double Calculate_Result(double input, const int& bit_len);
};
| [
"Loner0822@users.noreply.github.com"
] | Loner0822@users.noreply.github.com |
fe69aada83caee17fbbdf7d0608bb647cacfe1ad | f56f68a4563dbd0dc49cd273f9103e64e4196d38 | /trunk/include/boost/log/filters/attr.hpp | 3423a433a46bc3bb6b248139e640ffef59b43749 | [] | no_license | christianpenya/videojoc | eab08f91e903dbcd47f25aa8e0c33ada0f85dd6f | 2a9f2812df6f9100746b3d35a525157063552be1 | refs/heads/master | 2020-06-22T01:00:35.909303 | 2017-11-10T05:51:12 | 2017-11-10T05:51:12 | 74,768,346 | 1 | 3 | null | 2017-11-10T04:03:10 | 2016-11-25T15:14:19 | C++ | UTF-8 | C++ | false | false | 15,875 | hpp | /*
* Copyright Andrey Semashev 2007 - 2010.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
/*!
* \file filters/attr.hpp
* \author Andrey Semashev
* \date 22.04.2007
*
* The header contains implementation of a generic attribute placeholder in filters.
*/
#if (defined(_MSC_VER) && _MSC_VER > 1000)
#pragma once
#endif // _MSC_VER > 1000
#ifndef BOOST_LOG_FILTERS_ATTR_HPP_INCLUDED_
#define BOOST_LOG_FILTERS_ATTR_HPP_INCLUDED_
#include <new> // std::nothrow
#include <string>
#include <utility>
#include <boost/mpl/at.hpp>
#include <boost/mpl/size.hpp>
#include <boost/mpl/bool.hpp>
#include <boost/mpl/int.hpp>
#include <boost/mpl/if.hpp>
#include <boost/mpl/eval_if.hpp>
#include <boost/mpl/equal_to.hpp>
#include <boost/mpl/identity.hpp>
#include <boost/mpl/is_sequence.hpp>
#include <boost/utility/addressof.hpp>
#include <boost/log/detail/prologue.hpp>
#include <boost/log/detail/functional.hpp>
#include <boost/log/detail/embedded_string_type.hpp>
#include <boost/log/filters/basic_filters.hpp>
#include <boost/log/filters/exception_policies.hpp>
#include <boost/log/attributes/attribute_values_view.hpp>
#include <boost/log/utility/attribute_value_extractor.hpp>
namespace boost {
namespace BOOST_LOG_NAMESPACE {
namespace filters {
namespace aux {
//! Function adapter that saves the checker function result into a referenced variable
template< typename PredicateT >
struct predicate_wrapper
{
typedef void result_type;
predicate_wrapper(PredicateT const& fun, bool& res) : m_Fun(fun), m_Result(res) {}
template< typename T >
void operator() (T const& arg) const
{
m_Result = m_Fun(arg);
}
private:
PredicateT const& m_Fun;
bool& m_Result;
predicate_wrapper& operator=(const predicate_wrapper&);
};
} // namespace aux
/*!
* \brief The filter checks that the attribute value satisfies the predicate \c FunT
*
* The \c flt_attr filter extracts stored attribute value and applies the predicate
* to it. The result of the predicate is returned as a result of filtering. If the
* attribute value is not found a \c missing_attribute_value exception is thrown.
*
* One should not resort to direct usage of this class. The filter is constructed
* with the \c attr helper function and lambda expression. See "Advanced features ->
* Filters -> Generic attribute placeholder" section of the library documentation.
*/
template<
typename CharT,
typename FunT,
typename AttributeValueTypesT,
typename ExceptionPolicyT
>
class flt_attr :
public basic_filter< CharT, flt_attr< CharT, FunT, AttributeValueTypesT, ExceptionPolicyT > >
{
//! Base type
typedef basic_filter< CharT, flt_attr< CharT, FunT, AttributeValueTypesT, ExceptionPolicyT > > base_type;
//! Attribute value extractor type
typedef attribute_value_extractor< CharT, AttributeValueTypesT > extractor;
public:
//! String type
typedef typename base_type::string_type string_type;
//! Attribute values container type
typedef typename base_type::values_view_type values_view_type;
//! Predicate functor type
typedef FunT checker_type;
private:
//! Attribute value extractor
extractor m_Extractor;
//! Attribute value checker
checker_type m_Checker;
public:
/*!
* Constructs the filter
*
* \param name The attribute name
* \param checker A predicate that is applied to the attribute value
*/
flt_attr(string_type const& name, checker_type const& checker)
: m_Extractor(name), m_Checker(checker)
{
}
/*!
* Applies the filter
*
* \param values A set of attribute values of a single log record
* \return true if the log record passed the filter, false otherwise
*/
bool operator() (values_view_type const& values) const
{
bool result = false;
aux::predicate_wrapper< checker_type > receiver(m_Checker, result);
if (!m_Extractor(values, receiver))
ExceptionPolicyT::on_attribute_value_not_found(__FILE__, __LINE__);
return result;
}
};
#ifndef BOOST_LOG_DOXYGEN_PASS
namespace aux {
//! The base class for attr filter generator
template< typename CharT, typename AttributeValueTypesT, typename ExceptionPolicyT, bool >
class flt_attr_gen_base;
//! Specialization for non-string attribute value types
template< typename CharT, typename AttributeValueTypesT, typename ExceptionPolicyT >
class flt_attr_gen_base< CharT, AttributeValueTypesT, ExceptionPolicyT, false >
{
public:
//! Char type
typedef CharT char_type;
//! String type
typedef std::basic_string< char_type > string_type;
//! Attribute values container type
typedef basic_attribute_values_view< char_type > values_view_type;
//! Size type
typedef typename values_view_type::size_type size_type;
//! Supported attribute value types
typedef AttributeValueTypesT attribute_value_types;
protected:
//! Attribute name
string_type m_AttributeName;
public:
explicit flt_attr_gen_base(string_type const& name) : m_AttributeName(name) {}
#define BOOST_LOG_FILTER_ATTR_MEMBER(member, fun)\
template< typename T >\
flt_attr<\
char_type,\
boost::log::aux::binder2nd< fun, typename boost::log::aux::make_embedded_string_type< T >::type >,\
attribute_value_types,\
ExceptionPolicyT\
> member (T const& arg) const\
{\
typedef typename boost::log::aux::make_embedded_string_type< T >::type arg_type;\
typedef boost::log::aux::binder2nd< fun, arg_type > binder_t;\
typedef flt_attr< char_type, binder_t, attribute_value_types, ExceptionPolicyT > flt_attr_t;\
return flt_attr_t(this->m_AttributeName, binder_t(fun(), arg_type(arg)));\
}
BOOST_LOG_FILTER_ATTR_MEMBER(operator ==, boost::log::aux::equal_to)
BOOST_LOG_FILTER_ATTR_MEMBER(operator !=, boost::log::aux::not_equal_to)
BOOST_LOG_FILTER_ATTR_MEMBER(operator >, boost::log::aux::greater)
BOOST_LOG_FILTER_ATTR_MEMBER(operator <, boost::log::aux::less)
BOOST_LOG_FILTER_ATTR_MEMBER(operator >=, boost::log::aux::greater_equal)
BOOST_LOG_FILTER_ATTR_MEMBER(operator <=, boost::log::aux::less_equal)
//! Filter generator for checking whether the attribute value lies within a specific range
template< typename T >
flt_attr<
char_type,
boost::log::aux::binder2nd<
boost::log::aux::in_range_fun,
std::pair<
typename boost::log::aux::make_embedded_string_type< T >::type,
typename boost::log::aux::make_embedded_string_type< T >::type
>
>,
attribute_value_types,
ExceptionPolicyT
> is_in_range(T const& lower, T const& upper) const
{
typedef typename boost::log::aux::make_embedded_string_type< T >::type arg_type;
typedef boost::log::aux::binder2nd< boost::log::aux::in_range_fun, std::pair< arg_type, arg_type > > binder_t;
typedef flt_attr< char_type, binder_t, attribute_value_types, ExceptionPolicyT > flt_attr_t;
return flt_attr_t(
this->m_AttributeName,
binder_t(boost::log::aux::in_range_fun(), std::make_pair(arg_type(lower), arg_type(upper))));
}
//! Filter generator for user-provided predicate function
template< typename UnaryFunT >
flt_attr<
char_type,
UnaryFunT,
attribute_value_types,
ExceptionPolicyT
> satisfies(UnaryFunT const& fun) const
{
typedef flt_attr<
char_type,
UnaryFunT,
attribute_value_types,
ExceptionPolicyT
> flt_attr_t;
return flt_attr_t(this->m_AttributeName, fun);
}
};
//! Specialization for string attribute value types
template< typename CharT, typename AttributeValueTypesT, typename ExceptionPolicyT >
class flt_attr_gen_base< CharT, AttributeValueTypesT, ExceptionPolicyT, true > :
public flt_attr_gen_base< CharT, AttributeValueTypesT, ExceptionPolicyT, false >
{
typedef flt_attr_gen_base< CharT, AttributeValueTypesT, ExceptionPolicyT, false > base_type;
public:
//! Char type
typedef typename base_type::char_type char_type;
//! String type
typedef typename base_type::string_type string_type;
//! Supported attribute value types (actually, a single string type in this specialization)
typedef typename base_type::attribute_value_types attribute_value_types;
private:
//! The attribute value character type
typedef typename attribute_value_types::value_type attribute_value_char_type;
public:
explicit flt_attr_gen_base(string_type const& name) : base_type(name) {}
BOOST_LOG_FILTER_ATTR_MEMBER(begins_with, boost::log::aux::begins_with_fun)
BOOST_LOG_FILTER_ATTR_MEMBER(ends_with, boost::log::aux::ends_with_fun)
BOOST_LOG_FILTER_ATTR_MEMBER(contains, boost::log::aux::contains_fun)
#undef BOOST_LOG_FILTER_ATTR_MEMBER
//! Filter generator for checking whether the attribute value matches a regex
template< typename ExpressionT >
flt_attr<
char_type,
boost::log::aux::binder2nd< boost::log::aux::matches_fun, ExpressionT >,
attribute_value_types,
ExceptionPolicyT
> matches(ExpressionT const& expr) const
{
typedef boost::log::aux::binder2nd<
boost::log::aux::matches_fun,
ExpressionT
> binder_t;
typedef flt_attr< char_type, binder_t, attribute_value_types, ExceptionPolicyT > flt_attr_t;
return flt_attr_t(this->m_AttributeName, binder_t(boost::log::aux::matches_fun(), expr));
}
//! Filter generator for checking whether the attribute value matches a regex
template< typename ExpressionT, typename ArgT >
flt_attr<
char_type,
boost::log::aux::binder2nd< boost::log::aux::binder3rd< boost::log::aux::matches_fun, ArgT >, ExpressionT >,
attribute_value_types,
ExceptionPolicyT
> matches(ExpressionT const& expr, ArgT const& arg) const
{
typedef boost::log::aux::binder3rd< boost::log::aux::matches_fun, ArgT > binder3rd_t;
typedef boost::log::aux::binder2nd< binder3rd_t, ExpressionT > binder2nd_t;
typedef flt_attr< char_type, binder2nd_t, attribute_value_types, ExceptionPolicyT > flt_attr_t;
return flt_attr_t(this->m_AttributeName, binder2nd_t(binder3rd_t(boost::log::aux::matches_fun(), arg), expr));
}
};
//! The MPL predicate detects if the type is STL string
template< typename T >
struct is_string : mpl::false_ {};
template< typename CharT, typename TraitsT, typename AllocatorT >
struct is_string< std::basic_string< CharT, TraitsT, AllocatorT > > : mpl::true_ {};
//! The metafunction replaces 1-sized MPL sequences with a single equivalent type
template< typename TypesT, bool = mpl::is_sequence< TypesT >::value >
struct simplify_type_sequence;
template< typename TypesT >
struct simplify_type_sequence< TypesT, false >
{
typedef TypesT type;
enum { is_only_string = is_string< TypesT >::value };
};
template< typename TypesT >
struct simplify_type_sequence< TypesT, true >
{
private:
typedef typename mpl::eval_if<
mpl::equal_to< mpl::size< TypesT >, mpl::int_< 1 > >,
mpl::at_c< TypesT, 0 >,
mpl::identity< TypesT >
>::type actual_types;
public:
typedef actual_types type;
enum { is_only_string = is_string< actual_types >::value };
};
//! Attribute filter generator
template< typename CharT, typename AttributeValueTypesT, typename ExceptionPolicyT >
class flt_attr_gen :
public flt_attr_gen_base<
CharT,
typename simplify_type_sequence< AttributeValueTypesT >::type,
ExceptionPolicyT,
simplify_type_sequence< AttributeValueTypesT >::is_only_string
>
{
typedef flt_attr_gen_base<
CharT,
typename simplify_type_sequence< AttributeValueTypesT >::type,
ExceptionPolicyT,
simplify_type_sequence< AttributeValueTypesT >::is_only_string
> base_type;
public:
//! String type
typedef typename base_type::string_type string_type;
public:
explicit flt_attr_gen(string_type const& name) : base_type(name) {}
};
} // namespace aux
#endif // BOOST_LOG_DOXYGEN_PASS
/*!
* The function generates an attribute placeholder in filter expressions
*
* \param name Attribute name. Must point to a zero-terminated string, must not be NULL.
* \return An object that will, upon applying a corresponding operation to it, construct the filter.
*/
template< typename AttributeValueTypesT, typename CharT >
inline
#ifndef BOOST_LOG_DOXYGEN_PASS
aux::flt_attr_gen< CharT, AttributeValueTypesT, throw_policy >
#else
implementation_defined
#endif
attr(const CharT* name)
{
return aux::flt_attr_gen< CharT, AttributeValueTypesT, throw_policy >(name);
}
/*!
* The function generates an attribute placeholder in filter expressions
*
* \param name Attribute name.
* \return An object that will, upon applying a corresponding operation to it, construct the filter.
*/
template< typename AttributeValueTypesT, typename CharT >
inline
#ifndef BOOST_LOG_DOXYGEN_PASS
aux::flt_attr_gen< CharT, AttributeValueTypesT, throw_policy >
#else
implementation_defined
#endif
attr(std::basic_string< CharT > const& name)
{
return aux::flt_attr_gen< CharT, AttributeValueTypesT, throw_policy >(name);
}
/*!
* The function generates an attribute placeholder in filter expressions.
* The filter will not throw if the attribute value is not found in the record being filtered.
* Instead, a negative result will be returned.
*
* \param name Attribute name. Must point to a zero-terminated string, must not be NULL.
* \return An object that will, upon applying a corresponding operation to it, construct the filter.
*/
template< typename AttributeValueTypesT, typename CharT >
inline
#ifndef BOOST_LOG_DOXYGEN_PASS
aux::flt_attr_gen< CharT, AttributeValueTypesT, no_throw_policy >
#else
implementation_defined
#endif
attr(const CharT* name, std::nothrow_t const&)
{
return aux::flt_attr_gen< CharT, AttributeValueTypesT, no_throw_policy >(name);
}
/*!
* The function generates an attribute placeholder in filter expressions.
* The filter will not throw if the attribute value is not found in the record being filtered.
* Instead, a negative result will be returned.
*
* \param name Attribute name.
* \return An object that will, upon applying a corresponding operation to it, construct the filter.
*/
template< typename AttributeValueTypesT, typename CharT >
inline
#ifndef BOOST_LOG_DOXYGEN_PASS
aux::flt_attr_gen< CharT, AttributeValueTypesT, no_throw_policy >
#else
implementation_defined
#endif
attr(std::basic_string< CharT > const& name, std::nothrow_t const&)
{
return aux::flt_attr_gen< CharT, AttributeValueTypesT, no_throw_policy >(name);
}
} // namespace filters
} // namespace log
} // namespace boost
#endif // BOOST_LOG_FILTERS_ATTR_HPP_INCLUDED_
| [
"eloibuisan@gmail.com"
] | eloibuisan@gmail.com |
2a3554d494f2a4cac9c48daf31ddb4d17e7a7020 | b44250e01cf3528f79e4b0969cf598bee6341840 | /src/include/cutlass-ori/gemm/thread/mma_sm61.h | 81430d986ac87371fda4a9c77e86086dbdd5d654 | [] | no_license | xzgz/cuda-study | c821322ba3101883766fe8d256ba8137ecdf609f | 37a88d80be6a3bf121cd4d769e6f1dc37c3ae038 | refs/heads/master | 2023-08-05T22:16:54.191302 | 2023-07-24T10:04:48 | 2023-07-24T10:04:48 | 211,104,935 | 0 | 0 | null | 2023-05-03T10:27:26 | 2019-09-26T14:09:26 | C++ | UTF-8 | C++ | false | false | 8,095 | h | /***************************************************************************************************
* Copyright (c) 2017-2021, NVIDIA CORPORATION. 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 the NVIDIA CORPORATION 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 NVIDIA CORPORATION 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 TOR (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
**************************************************************************************************/
/*! \file
\brief Templates exposing architecture support for multiply-add operations
*/
#pragma once
#include "cutlass/cutlass.h"
#include "cutlass/tensor_ref.h"
#include "cutlass/layout/matrix.h"
#include "cutlass/gemm/gemm.h"
#include "cutlass/gemm/thread/mma.h"
/////////////////////////////////////////////////////////////////////////////////////////////////
namespace cutlass {
namespace gemm {
namespace thread {
/////////////////////////////////////////////////////////////////////////////////////////////////
/// Gemplate that handles conventional layouts for IDP4A
template <
/// Size of the Gemm problem - concept: gemm::GemmShape<>
typename Shape_,
/// Layout of C matrix (concept: MatrixLayout)
typename LayoutC_
>
struct Mma<
Shape_,
int8_t,
layout::RowMajor,
int8_t,
layout::ColumnMajor,
int32_t,
LayoutC_,
arch::OpMultiplyAdd,
bool> {
/// Size of the Gemm problem - concept: gemm::GemmShape<>
using Shape = Shape_;
/// Data type of operand A
using ElementA = int8_t;
/// Layout of A matrix (concept: layout::MapFunc)
using LayoutA = layout::RowMajor;
/// Data type of operand B
using ElementB = int8_t;
/// Layout of B matrix (concept: layout::MapFunc)
using LayoutB = layout::ColumnMajor;
/// Element type of operand C
using ElementC = int32_t;
/// Layout of C matrix (concept: layout::MapFunc)
using LayoutC = LayoutC_;
/// Underlying mathematical operator
using Operator = arch::OpMultiplyAdd;
/// A operand storage
using FragmentA = Array<ElementA, Shape::kMK>;
/// B operand storage
using FragmentB = Array<ElementB, Shape::kKN>;
/// C operand storage
using FragmentC = Array<ElementC, Shape::kMN>;
/// Underlying matrix multiply operator (concept: arch::Mma)
// Use 1x1x4 IDP4A sequence for bulk of computation
using ArchMmaOperator = arch::Mma<
gemm::GemmShape<1,1,4>,
1,
ElementA,
LayoutA,
ElementB,
LayoutB,
ElementC,
LayoutC,
arch::OpMultiplyAdd>;
//
// Methods
//
/// Computes a matrix product D = A * B + C
CUTLASS_HOST_DEVICE
void operator()(
FragmentC & D,
FragmentA const & A,
FragmentB const & B,
FragmentC const & C) {
TensorRef<ElementC, LayoutC> d(
reinterpret_cast<ElementC *>(&D), LayoutC::packed({ Shape::kM, Shape::kN }));
// Copy accumulators
D = C;
/// Use 1x1x4 IDP4A sequence for bulk of computation
ArchMmaOperator mma;
// Compute matrix product
CUTLASS_PRAGMA_UNROLL
for (int k = 0; k < Shape::kK / ArchMmaOperator::Shape::kK; ++k) {
CUTLASS_PRAGMA_UNROLL
for (int n = 0; n < Shape::kN; ++n) {
CUTLASS_PRAGMA_UNROLL
for (int m = 0; m < Shape::kM; ++m) {
MatrixCoord mn(m, n);
Array<int8_t, 4> const *ptr_A = reinterpret_cast<Array<int8_t, 4> const *>(&A);
Array<int8_t, 4> const *ptr_B = reinterpret_cast<Array<int8_t, 4> const *>(&B);
Array<int32_t, 1> tmp = reinterpret_cast<Array<int32_t, 1> &>(d.at(mn));
mma(
tmp,
ptr_A[m * Shape::kK / ArchMmaOperator::Shape::kK + k],
ptr_B[n * Shape::kK / ArchMmaOperator::Shape::kK + k],
tmp);
d.at(mn) = reinterpret_cast<int32_t &>(tmp);
}
}
}
}
};
/////////////////////////////////////////////////////////////////////////////////////////////////
/// Gemplate that handles conventional layouts for IDP4A
template <
/// Size of the Gemm problem - concept: gemm::GemmShape<>
typename Shape_,
/// Layout of C matrix (concept: MatrixLayout)
typename LayoutC_
>
struct Mma<
Shape_,
int8_t,
layout::ColumnMajor,
int8_t,
layout::RowMajor,
int32_t,
LayoutC_,
arch::OpMultiplyAdd,
int8_t> {
/// Size of the Gemm problem - concept: gemm::GemmShape<>
using Shape = Shape_;
/// Data type of operand A
using ElementA = int8_t;
/// Layout of A matrix (concept: layout::MapFunc)
using LayoutA = layout::ColumnMajor;
/// Data type of operand B
using ElementB = int8_t;
/// Layout of B matrix (concept: layout::MapFunc)
using LayoutB = layout::RowMajor;
/// Element type of operand C
using ElementC = int32_t;
/// Layout of C matrix (concept: layout::MapFunc)
using LayoutC = LayoutC_;
/// Underlying mathematical operator
using Operator = arch::OpMultiplyAdd;
/// A operand storage
using FragmentA = Array<ElementA, Shape::kMK>;
/// B operand storage
using FragmentB = Array<ElementB, Shape::kKN>;
/// C operand storage
using FragmentC = Array<ElementC, Shape::kMN>;
/// Underlying matrix multiply operator (concept: arch::Mma)
/// Use 1x1x4 IDP4A sequence for bulk of computation
using ArchMmaOperator = arch::Mma<
gemm::GemmShape<1,1,4>,
1,
ElementA,
LayoutA,
ElementB,
LayoutB,
ElementC,
LayoutC,
arch::OpMultiplyAdd>;
//
// Methods
//
/// Computes a matrix product D = A * B + C
CUTLASS_HOST_DEVICE
void operator()(
FragmentC & D,
FragmentA const & A,
FragmentB const & B,
FragmentC const & C) {
TensorRef<ElementC, LayoutC> d(
reinterpret_cast<ElementC *>(&D), LayoutC::packed({ Shape::kM, Shape::kN }));
// Copy accumulators
D = C;
/// Underlying matrix multiply operator
ArchMmaOperator mma;
Array<int8_t, 4> const *ptr_A = reinterpret_cast<Array<int8_t, 4> const *>(&A);
Array<int8_t, 4> const *ptr_B = reinterpret_cast<Array<int8_t, 4> const *>(&B);
// Compute matrix product
CUTLASS_PRAGMA_UNROLL
for (int k = 0; k < Shape::kK / ArchMmaOperator::Shape::kK; ++k) {
CUTLASS_PRAGMA_UNROLL
for (int n = 0; n < Shape::kN; ++n) {
CUTLASS_PRAGMA_UNROLL
for (int m = 0; m < Shape::kM; ++m) {
MatrixCoord mn(m, n);
Array<int32_t, 1> tmp = reinterpret_cast<Array<int32_t, 1> &>(d.at(mn));
mma(
tmp,
ptr_A[m + k * Shape::kM],
ptr_B[n + k * Shape::kN],
tmp);
d.at(mn) = reinterpret_cast<int32_t &>(tmp);
}
}
}
}
};
} // namespace thread
} // namespace gemm
} // namespace cutlass
/////////////////////////////////////////////////////////////////////////////////////////////////
| [
"hungryhe@tencent.com"
] | hungryhe@tencent.com |
e371508d221755260ed69e3962be5c4625f7ee56 | b8ab0fef656f9dea709043cca45fff32c023b1f5 | /CSE_241_17_19_Fall/HW3/main.cpp | 616ec1e923bd5befc0c380d26886f048d24af7c5 | [] | no_license | AlpErdemm/GTU-HW-and-Projects | 7a8a5ce8b50b057fd370c294a53c906830f1a85e | 19e8c1e800e26fb515af6f09dc773706226a1587 | refs/heads/master | 2022-12-18T08:57:47.190673 | 2020-09-22T15:53:24 | 2020-09-22T15:53:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,694 | cpp | #include <iostream>
#include <vector>
#include <string>
#include <fstream>
using namespace std;
class ConnectFour{
public:
ConnectFour(); //ConnectFour constructor #1
ConnectFour(const int a); //ConnectFour constructor #2
int playGame(); // Standart Play game
int playGameM(); // PlayGame for multiple objects
int playM(); // Play for multiple objects
int play(); // Standart play
static int getCells(); // Getter for living cell counter
static void setCells(); // Setter for living cell counter
static int alive; // The actual counter
inline int getHeight() const{ // Inline getter for board height
return height;
}
void setHeight(int newHeight); // Setter for the board height
int getWidth() const; // Width getter
void setWidth(int newWidth); // Width setter
int getType() const; // Getter for game type C or P
void setType(int gameType); // Setter
int getTurn() const; // Who's turn? Getter
void setTurn(int newTurn); // Setter
void fillBoard(); // Board init
void drawBoard(); // Board print
int playerOne(); // Player one makes a move
int playerTwo(); // Player two makes a move
int winControl(char term, int &last_i, int &last_j); // Is there a winner?
int cont_left(char term, int coord_i, int coord_j); // Helper functions from HW2
int cont_bottom_left(char term, int coord_i, int coord_j);
int cont_bottom(char term, int coord_i, int coord_j);
int cont_bottom_right(char term, int coord_i, int coord_j);
int cont_right(char term, int coord_i, int coord_j);
void game_over(int term, int last_i, int last_j); // End-game procedures
int filledBoard(); // Board is filled, game is draw
void decider(); // Computer AI
int legality(int coord_i, int coord_j); // Move legality checker
void fileSave(); // Save a board
void fileLoad(); // Load a board
private:
int height; //Board height
int width; //Board width
int gameType; // P or C
int turn; // Who's turn?
int winStyle; // How did the winner win the game, left? right? right-diagonal? vertical?
class Cell{
public:
Cell(); //Getter and Setters
char getPosition() const;
int getRow() const;
char getInside() const;
void setPosition(char newPosition);
void setRow(int newRow);
void setInside(char newInside);
private:
char position; // a,b,c?
int row; // 0,1,2?
char inside; // X, O or .
};
vector<vector<Cell>> gameCells;
};
int ConnectFour::alive = 0;
// GETTER AND SETTERS
char ConnectFour::Cell::getPosition() const{
return position;
}
int ConnectFour::Cell::getRow() const{
return row;
}
char ConnectFour::Cell::getInside() const{
return inside;
}
void ConnectFour::Cell::setPosition(char newPosition){
position = newPosition;
}
void ConnectFour::Cell::setRow(int newRow){
row = newRow;
}
void ConnectFour::Cell::setInside(char newInside){
inside = newInside;
}
ConnectFour::Cell::Cell(){
//blank
}
ConnectFour::ConnectFour(){
setHeight(0);
}
ConnectFour::ConnectFour(const int a){
setHeight(a);
}
void ConnectFour::setHeight(int newHeight){
height = newHeight;
}
int ConnectFour::getWidth() const{
return width;
}
void ConnectFour::setWidth(int newWidth){
width = newWidth;
}
int ConnectFour::getType() const{
return gameType;
}
void ConnectFour::setType(int newType){
gameType = newType;
}
int ConnectFour::getTurn() const{
return turn;
}
void ConnectFour::setTurn(int newTurn){
turn = newTurn;
}
///////////////////////////////////////
int main(){
char mo;
int obj;
ConnectFour M0, M1, M2, M3, M4;
cout << "Welcome to Connect Four! Choose your Game Mode! M for MultiObject, S for SingleObject!" << endl;
cin >> mo;
if(mo == 'S' || mo == 's'){
M0.playGame();
}
else if(mo == 'M' || mo == 'm'){
cout << "1.object >> \n";
M0.playGameM();
cout << "2.object >> \n";
M1.playGameM();
cout << "3.object >> \n";
M2.playGameM();
cout << "4.object >> \n";
M3.playGameM();
cout << "5.object >> \n";
M4.playGameM();
while(1){
cout << "Which object?" << endl;
cin >> obj;
switch(obj){
case 1:
M0.playM();
break;
case 2:
M1.playM();
break;
case 3:
M2.playM();
break;
case 4:
M3.playM();
break;
case 5:
M4.playM();
break;
default:
cout << "Something went wrong. Try again." << endl;
break;
}
}
}
else{
cout << "Well sorry about that..." << endl;
}
return 0;
}
int ConnectFour::getCells(){
return alive;
}
void ConnectFour::setCells(){
alive = alive + 1;
}
int ConnectFour::playGame(){
int height = 0, width = 0, turn = 1, control = 0;
char game_type;
cout << "Hello, to start the game; please enter the height of the board.";
cin >> height;
while(height < 4){ /* This condition checks for board size errors */
cerr << "You entered a size out of bounds...The board size should be an integer bigger than 4, Try again!" << endl;
cin >> height;
}
setHeight(height);
cout << "Please enter the width of the board.";
cin >> width;
while(width < 4){ /* This condition checks for board size errors */
cerr << "You entered a size out of bounds...The board size should be an integer bigger than 4, Try again!" << endl;
cin >> width;
}
setWidth(width);
cout << "Please type C for versus computer; P for two player game.";
cin >> game_type;
while(game_type != 'P' && game_type != 'C' && game_type != 'c' && game_type != 'p'){ /* This condition checks for game type errors */
cerr << "You entered a wrong game type, Please type C for versus computer; P for two player game!" << endl;
cin >> game_type;
}
setType(game_type);
fillBoard();
control = play();
while(control ==-2){ // Player requested a load.
fileLoad();
control = play();
}
return 0;
}
int ConnectFour::playGameM(){
int height = 0, width = 0, turn = 1, control = 0;
cout << "Please enter the height of the board.";
cin >> height;
while(height < 4){ /* This condition checks for board size errors */
cerr << "You entered a size out of bounds...The board size should be an integer bigger than 4, Try again!" << endl;
cin >> height;
}
setHeight(height);
cout << "Please enter the width of the board.";
cin >> width;
while(width < 4){ /* This condition checks for board size errors */
cerr << "You entered a size out of bounds...The board size should be an integer bigger than 4, Try again!" << endl;
cin >> width;
}
setWidth(width);
}
int ConnectFour::playM(){
char game_type = getType();
if(game_type != 'C' && game_type != 'c' && game_type != 'p' && game_type != 'P'){
cout << "Please type C for versus computer; P for two player game.";
cin >> game_type;
while(game_type != 'P' && game_type != 'C' && game_type != 'c' && game_type != 'p'){ /* This condition checks for game type errors */
cerr << "You entered a wrong game type, Please type C for versus computer; P for two player game!" << endl;
cin >> game_type;
}
setType(game_type);
fillBoard();
}
int winner_1 = 0, winner_2 = 0, last_i = 0, last_j = 0, turn = 1, coord_i = 0;
if(gameType == 'P' || gameType == 'p') /* If game type is 1, then the game will be versus computer */
{
if(turn == 1){
drawBoard();
coord_i = playerOne(); /* player_2 function is for player 2... it takes a character from the user with cin and makes a move */
drawBoard();
while(coord_i == -3 || coord_i == -4)
coord_i = playerOne();
while(coord_i == -1){ // Player requested a load.
fileLoad();
coord_i = playerOne();
}
setCells();
winner_1 = winControl('X', last_i, last_j); /* Called win_control for player 2 */
if(winner_1 == 1){
game_over('X', last_i, last_j); /* End-game procedures */
cout << "\nPlayer One VICTORY, the game will be closed. To play again, restart the game." << endl;
return 0;
}
else{
if(filledBoard()){ /* Checked if the board is filled with X and O's */
cout << "There is no winner, this match is DRAW.";
return 0;
}
}
}
turn = 2;
if(turn == 2){
drawBoard();
coord_i = playerTwo();
drawBoard();
while(coord_i == -1){
fileLoad();
coord_i = playerTwo();
}
setCells();
winner_2 = winControl('O', last_i, last_j); /* Win control for player 2 */
if(winner_2 == 1){
game_over('O', last_i, last_j); /* End-game procedures */
cout << "\nPlayer Two Victory, the game will be closed. To play again, restart the game." << endl; /* End-game procedures */
return 0;
}
if(filledBoard()){
cout << "There is no winner, this match is DRAW.";
return 0;
}
}
cout << "The current living Cells --> " << getCells() << endl;
}
else{
if(turn == 1){
drawBoard();
coord_i = playerOne(); /* player_2 function is for player 2... it takes a character from the user with cin and makes a move */
drawBoard();
while(coord_i == -3 || coord_i == -4)
coord_i = playerOne();
while(coord_i == -1){ // Player requested a load.
fileLoad();
coord_i = playerOne();
}
drawBoard();
setCells();
winner_1 = winControl('X', last_i, last_j); /* Called win_control for player 2 */
if(winner_1 == 1){
game_over('X', last_i, last_j); /* End-game procedures */
cout << "\nPlayer One VICTORY, the game will be closed. To play again, restart the game." << "The current living Cells --> " << getCells() << endl;
return 0;
}
else{
if(filledBoard()){ /* Checked if the board is filled with X and O's */
cout << "There is no winner, this match is DRAW.";
return 0;
}
}
}
turn = 2;
if(turn == 2){
drawBoard();
decider(); /* This function contains everything the computer needs. It returns the decided coordinates.(coord_i and coord_j) */
/* This function takes the coordinates that decide_mech_block4 created and makes its move */
drawBoard();
cout << endl << "Computer made its move." << endl << endl;
setCells();
winner_2 = winControl('O', last_i, last_j); /* win_control function checks the board for a winner, I used it for every player */
if(winner_2 == 1){
game_over('O', last_i, last_j); /* If there is a winner then I call game_over function, it does the end-game procedures */
cout << "\nComputer VICTORY, the game will be closed. To play again, restart the game." << "The current living Cells --> " << getCells() << endl;
return 0;
}
if(filledBoard()){ /* I need to check the board after every move with board_is_filled function. It does what it says in its name */
cout << "There is no winner, this match is DRAW.";
return 0;
}
}
cout << "The current living Cells --> " << getCells() << endl;
}
return 0;
}
int ConnectFour::play(){
int winner_1 = 0, winner_2 = 0, last_i = 0, last_j = 0, turn = 1, coord_i = 0, alive = 0;
if(gameType == 'P' || gameType == 'p') /* If game type is 1, then the game will be versus computer */
{
while(1){
if(turn == 1){
drawBoard();
coord_i = playerOne(); /* player_2 function is for player 2... it takes a character from the user with cin and makes a move */
while(coord_i == -3 || coord_i == -4)
coord_i = playerOne();
if(coord_i == -1) return -2;
setCells();
winner_1 = winControl('X', last_i, last_j); /* Called win_control for player 2 */
if(winner_1 == 1){
game_over('X', last_i, last_j); /* End-game procedures */
cout << "\nPlayer One VICTORY, the game will be closed. To play again, restart the game." << "The current living Cells --> " << getCells() << endl;
drawBoard();
return 0;
}
else{
if(filledBoard()){ /* Checked if the board is filled with X and O's */
cout << "There is no winner, this match is DRAW.";
return 0;
}
}
}
turn = 2;
if(turn == 2){
drawBoard();
coord_i = playerTwo();
if(coord_i == -1) return -2;
setCells();
winner_2 = winControl('O', last_i, last_j); /* Win control for player 2 */
if(winner_2 == 1){
game_over('O', last_i, last_j); /* End-game procedures */
cout << "\nPlayer Two Victory, the game will be closed. To play again, restart the game." << "The current living Cells --> " << getCells() << endl; /* End-game procedures */
drawBoard();
break;
}
if(filledBoard()){
cout << "There is no winner, this match is DRAW.";
break;
}
}
turn = 1;
cout << "The current living Cells --> " << getCells() << endl;
}
}
else{
while(1){
if(turn == 1){
drawBoard();
coord_i = playerOne(); /* player_2 function is for player 2... it takes a character from the user with cin and makes a move */
while(coord_i == -3 || coord_i == -4)
coord_i = playerOne();
if(coord_i == -1) return -2;
setCells();
winner_1 = winControl('X', last_i, last_j); /* Called win_control for player 2 */
if(winner_1 == 1){
game_over('X', last_i, last_j); /* End-game procedures */
cout << "\nPlayer One VICTORY, the game will be closed. To play again, restart the game." << "The current living Cells --> " << getCells() << endl;
drawBoard();
return 0;
}
else{
if(filledBoard()){ /* Checked if the board is filled with X and O's */
cout << "There is no winner, this match is DRAW.";
return 0;
}
}
}
turn = 2;
if(turn == 2){
drawBoard();
decider(); /* This function contains everything the computer needs. It returns the decided coordinates.(coord_i and coord_j) */
/* This function takes the coordinates that decide_mech_block4 created and makes its move */
cout << endl << "Computer made its move." << endl << endl;
winner_2 = winControl('O', last_i, last_j); /* win_control function checks the board for a winner, I used it for every player */
setCells();
if(winner_2 == 1){
game_over('O', last_i, last_j); /* If there is a winner then I call game_over function, it does the end-game procedures */
cout << "\nComputer VICTORY, the game will be closed. To play again, restart the game." << "The current living Cells --> " << getCells() << endl;
drawBoard();
return 0;
}
if(filledBoard()){ /* I need to check the board after every move with board_is_filled function. It does what it says in its name */
cout << "There is no winner, this match is DRAW.";
break;
}
}
turn = 1;
cout << "The current living Cells --> " << getCells() << endl;
}
}
return 0;
}
void ConnectFour::fillBoard(){
int i, j;
gameCells.resize(height);
for(i = 0; i < height; ++i)
gameCells[i].resize(width);
for(i = 0; i < height; ++i){
for(j = 0; j < width; ++j){
gameCells[i][j].setRow(i);
gameCells[i][j].setPosition('a'+j);
gameCells[i][j].setInside('.');
}
}
}
void ConnectFour::drawBoard(){
int i, j;
for(i = 0; i < width; i++)
cout << (char)('A'+i) << " ";
cout << endl;
for(i = 0; i < height; ++i){
for(j = 0; j < width; ++j){
cout << gameCells[i][j].getInside() << " ";;
}
cout << endl;
}
}
int ConnectFour::playerOne(){
int i = 0, j = 0, counter = 0, real_loc = 0, coord_i = 1;
string locate;
cout << "Player One! Make your move!\n";
cin >> locate;
if(locate == "SAVE"){
fileSave();
return coord_i;
}
else if(locate == "LOAD"){
return -1;
}
else{
real_loc = locate[0] - 'a'; /* The location trasformed to use in array, like a = 0, b = 1 */
if(real_loc < 0 || real_loc > 26){ /* Checks for Caps and turnes them into lower case. User friendly. */
real_loc += 'a' - 'A';
}
if(gameCells[0][real_loc].getInside() != '.'){
cerr << "That column is full. Please choose another one." << endl;
return -3;
}
for(i = height-1; i >= 0; --i)
{
if(gameCells[i][real_loc].getInside() == '.' && counter == 0) /* Scans the selected column bottom to top and puts an X to the first dot. */
{
gameCells[i][real_loc].setInside('X');
counter++;
break;
}
coord_i++;
}
coord_i = height - coord_i;
return coord_i;
}
}
int ConnectFour::playerTwo(){
int i = 0, j = 0, counter = 0, real_loc = 0, coord_i = 1;
string locate;
cout << "Player Two's TURN! Make your move!\n";
cin >> locate;
if(locate == "SAVE"){
fileSave();
return coord_i;
}
else if(locate == "LOAD"){
return -1;
}
else{
real_loc = locate[0] - 'a'; /* The location trasformed to use in array, like a = 0, b = 1 */
if(real_loc < 0 || real_loc > 26){ /* Checks for Caps and turnes them into lower case. User friendly. */
real_loc += 'a' - 'A';
}
if(gameCells[0][real_loc].getInside() != '.'){
cerr << "That column is full. Please choose another one." << endl;
return -3;
}
for(i = height-1; i >= 0; --i)
{
if(gameCells[i][real_loc].getInside() == '.' && counter == 0) /* Scans the selected column bottom to top and puts an X to the first dot. */
{
gameCells[i][real_loc].setInside('O');
counter++;
break;
}
coord_i++;
}
coord_i = height - coord_i;
return coord_i;
}
}
int ConnectFour::winControl(char term, int &last_i, int &last_j){
int i = 0, j = 0, result = 0;
for(i = 0; i < height; ++i){
for(j = 3; j < width; ++j){
result = cont_left(term, i, j);
if(result == 3){
last_i = i;
last_j = j;
winStyle = 1;
return 1;
}
}
}
result = 0;
for(i = 0; i < height -3; ++i){
for(j = 3; j < width; ++j){
result = cont_bottom_left(term, i, j);
if(result == 3){
last_i = i;
last_j = j;
winStyle = 2;
return 1;
}
}
}
result = 0;
for(i = 0; i < height-3; ++i){
for(j = 0; j < width; ++j){
result = cont_bottom(term, i, j);
if(result == 3){
last_i = i;
last_j = j;
winStyle = 3;
return 1;
}
}
}
result = 0;
for(i = 0; i < height-3; ++i){
for(j = 0; j < width-3; ++j){
result = cont_bottom_right(term, i, j);
if(result == 3){
last_i = i;
last_j = j;
winStyle = 4;
return 1;
}
}
}
result = 0;
for(i = 0; i < height; ++i){
for(j = 0; j < width-3; ++j){
result = cont_right(term, i, j);
if(result == 3){
last_i = i;
last_j = j;
winStyle = 5;
return 1;
}
}
}
return 0;
}
int ConnectFour::cont_left(char term, int coord_i, int coord_j){
int result = 0;
if(gameCells[coord_i][coord_j].getInside() == term){
if(gameCells[coord_i][coord_j-1].getInside() == term){
result += 1;
if(gameCells[coord_i][coord_j-2].getInside() == term){
result += 1;
if(gameCells[coord_i][coord_j-3].getInside() == term){
result += 1;
return result;
}
}
}
}
}
int ConnectFour::cont_bottom_left(char term, int coord_i, int coord_j){
int result = 0;
if(gameCells[coord_i][coord_j].getInside() == term){
if(gameCells[coord_i+1][coord_j-1].getInside() == term){
result += 1;
if(gameCells[coord_i+2][coord_j-2].getInside() == term){
result += 1;
if(gameCells[coord_i+3][coord_j-3].getInside() == term){
result += 1;
return result;
}
}
}
}
}
int ConnectFour::cont_bottom(char term, int coord_i, int coord_j){
int result = 0;
if(gameCells[coord_i][coord_j].getInside() == term){
if(gameCells[coord_i+1][coord_j].getInside() == term){
result += 1;
if(gameCells[coord_i+2][coord_j].getInside() == term){
result += 1;
if(gameCells[coord_i+3][coord_j].getInside() == term){
result += 1;
return result;
}
}
}
}
}
int ConnectFour::cont_bottom_right(char term, int coord_i, int coord_j){
int result = 0;
if(gameCells[coord_i][coord_j].getInside() == term){
if(gameCells[coord_i+1][coord_j+1].getInside() == term){
result += 1;
if(gameCells[coord_i+2][coord_j+2].getInside() == term){
result += 1;
if(gameCells[coord_i+3][coord_j+3].getInside() == term){
result += 1;
return result;
}
}
}
}
}
int ConnectFour::cont_right(char term, int coord_i, int coord_j){
int result = 0;
if(gameCells[coord_i][coord_j].getInside() == term){
if(gameCells[coord_i][coord_j+1].getInside() == term){
result += 1;
if(gameCells[coord_i][coord_j+2].getInside() == term){
result += 1;
if(gameCells[coord_i][coord_j+3].getInside() == term){
result += 1;
return result;
}
}
}
}
}
void ConnectFour::game_over(int term, int last_i, int last_j){
int lower = 0, i = 0, j = 0;
lower = 'a' - 'A';
switch (winStyle) {
case 1: /* Left */
gameCells[last_i][last_j].setInside(term+lower);
gameCells[last_i][last_j-1].setInside(term+lower);
gameCells[last_i][last_j-2].setInside(term+lower);
gameCells[last_i][last_j-3].setInside(term+lower);
break;
case 2: /* Bottom - Left */
gameCells[last_i][last_j].setInside(term+lower);
gameCells[last_i+1][last_j-1].setInside(term+lower);
gameCells[last_i+2][last_j-2].setInside(term+lower);
gameCells[last_i+2][last_j-2].setInside(term+lower);
break;
case 3: /* Bottom */
gameCells[last_i][last_j].setInside(term+lower);
gameCells[last_i+1][last_j].setInside(term+lower);
gameCells[last_i+2][last_j].setInside(term+lower);
gameCells[last_i+3][last_j].setInside(term+lower);
break;
case 4: /* Bottom - Right */
gameCells[last_i][last_j].setInside(term+lower);
gameCells[last_i+1][last_j+1].setInside(term+lower);
gameCells[last_i+2][last_j+2].setInside(term+lower);
gameCells[last_i+3][last_j+3].setInside(term+lower);
break;
case 5: /* Right */
gameCells[last_i][last_j].setInside(term+lower);
gameCells[last_i][last_j+1].setInside(term+lower);
gameCells[last_i][last_j+2].setInside(term+lower);
gameCells[last_i][last_j+3].setInside(term+lower);
break;
}
/* And turnes the X(or 0, depended on the term variable)'s to lower case just to make them outstanding */
}
int ConnectFour::filledBoard(){
int i = 0, j = 0;
for(i = 0; i < height + 1; i++) /* Fills the board with dots */
{
for(j = 0; j < width; j++)
{
if(gameCells[i][j].getInside() == '.')
return 0;
}
}
return 1;
}
void ConnectFour::decider(){
int i = 0, j = 0, result = 0, result2 = 0, temp_i = 0, temp_j = 0;
char term = 'X', term2 = 'O';
for(i = 0; i < height-3; ++i){
for(j = 3; j < width; ++j){
if(gameCells[i + 1][j - 1].getInside() == term2){
result += 1;
if(gameCells[i + 2][j - 2].getInside() == term2){
result+= 1;
if(gameCells[i + 3][j - 3].getInside() == term2){
result+=1;
temp_i = i;
temp_i = j;
}
}
}
else if(gameCells[i + 1][j - 1].getInside() == term){
result2+= 1;
if(gameCells[i + 2][j - 2].getInside() == term){
result2+= 1;
if(gameCells[i + 3][j - 3].getInside() == term){
result2+=1;
temp_i = i;
temp_i = j;
}
}
}
if(result == 3 || result2 == 3 && legality(temp_i, temp_j)){
gameCells[temp_i][temp_j].setInside('O');
return;
}
result = 0;
}
}
for(i = 0; i < height; ++i){
for(j = 3; j < width; ++j){
if(gameCells[i][j - 1].getInside() == term2){
result += 1;
if(gameCells[i][j - 2].getInside() == term2){
result+= 1;
if(gameCells[i][j - 3].getInside() == term2){
result+=1;
temp_i = i;
temp_i = j;
}
}
}
else if(gameCells[i][j - 1].getInside() == term){
result2+= 1;
if(gameCells[i][j - 2].getInside() == term){
result2+= 1;
if(gameCells[i][j - 3].getInside() == term){
result2+=1;
temp_i = i;
temp_i = j;
}
}
}
if(result == 3 || result2 == 3 && legality(temp_i, temp_j)){
gameCells[temp_i][temp_j].setInside('O');
return;
}
result = 0;
}
}
for(i = 0; i < height-3; ++i){
for(j = 0; j < width-3; ++j){
if(gameCells[i + 1][j + 1].getInside() == term2){
result += 1;
if(gameCells[i + 2][j + 2].getInside() == term2){
result+= 1;
if(gameCells[i + 3][j + 3].getInside() == term2){
result+=1;
temp_i = i;
temp_i = j;
}
}
}
else if(gameCells[i + 1][j + 1].getInside() == term){
result2+= 1;
if(gameCells[i + 2][j + 2].getInside() == term){
result2+= 1;
if(gameCells[i + 3][j + 3].getInside() == term){
result2+=1;
temp_i = i;
temp_i = j;
}
}
}
if(result == 3 || result2 == 3 && legality(temp_i, temp_j)){
gameCells[temp_i][temp_j].setInside('O');
return;
}
result = 0;
}
}
for(i = 0; i < height-3; ++i){
for(j = 0; j < width; ++j){
if(gameCells[i + 1][j].getInside() == term2){
result += 1;
if(gameCells[i + 2][j].getInside() == term2){
result+= 1;
if(gameCells[i + 3][j].getInside() == term2){
result+=1;
temp_i = i;
temp_i = j;
}
}
}
else if(gameCells[i + 1][j].getInside() == term){
result2+= 1;
if(gameCells[i + 2][j].getInside() == term){
result2+= 1;
if(gameCells[i + 3][j].getInside() == term){
result2+=1;
temp_i = i;
temp_i = j;
}
}
}
if(result == 3 || result2 == 3 && legality(temp_i, temp_j)){
gameCells[temp_i][temp_j].setInside('O');
return;
}
result = 0;
}
}
for(i = 0; i < height; ++i){
for(j = 0; j < width-3; ++j){
if(gameCells[i][j + 1].getInside() == term2){
result += 1;
if(gameCells[i][j + 2].getInside() == term2){
result+= 1;
if(gameCells[i][j + 3].getInside() == term2){
result+=1;
temp_i = i;
temp_i = j;
}
}
}
else if(gameCells[i][j + 1].getInside() == term){
result2+= 1;
if(gameCells[i][j + 2].getInside() == term){
result2+= 1;
if(gameCells[i][j + 3].getInside() == term){
result2+=1;
temp_i = i;
temp_i = j;
}
}
}
if(result == 3 || result2 == 3 && legality(temp_i, temp_j)){
gameCells[temp_i][temp_j].setInside('O');
return;
}
result = 0;
}
}
for(i = height-1; i >= 0; --i){
cout << "i = " << i << endl;
for(j = width - 1; j >= 0; --j){
cout << "j = " << j << endl;
if(legality(i, j)){
cout << "Before!" << endl;
gameCells[i][j].setInside('O');
cout << "After!" << endl;
return;
}
}
}
}
int ConnectFour::legality(int coord_i, int coord_j){
if(coord_i < height && coord_j < width && gameCells[coord_i][coord_j].getInside() == '.'){
if(coord_i + 1 != height){
if(gameCells[coord_i + 1][coord_j].getInside() != '.'){
return 1;
}
}
else{
return 1;
}
}
return 0;
}
void ConnectFour::fileSave(){
string filename;
cin >> filename;
ofstream inner(filename);
int i = 0, j = 0, tturn = 0, hheight = 0, wwidth = 0;
char game_mode;
tturn = getTurn();
hheight = getHeight();
wwidth = getWidth();
game_mode = getType();
inner << game_mode << '\n' << tturn << '\n' << hheight << '\n' << wwidth << '\n'; /* Writes the needed information to the file */
for(i = 0; i < height; i++){
for(j = 0; j < width; j++){
inner << gameCells[i][j].getInside(); /* X and O's */
}
inner << "\n";
}
inner.close();
}
void ConnectFour::fileLoad(){
string filename;
cin >> filename;
ifstream outer(filename);
if(outer.fail()){
cerr << "File not found." << endl;
exit(1);
}
int i = 0, j = 0, tturn = 0, hheight = 0, wwidth = 0, turn = 0;
char game_mode, temp;
outer >> game_mode >> tturn >> hheight >> wwidth; /* Information about the game */
setTurn(tturn);
setType(game_mode);
setHeight(hheight);
setWidth(wwidth);
for(i=0; i<height; i++)
for(j=0; j<width; j++){
outer >> temp;
gameCells[i][j].setInside(temp); /* X and O 's */
}
outer.close();
}
| [
"mamikalp61@gmail.com"
] | mamikalp61@gmail.com |
003bac4bb8d8b8a5d6d9310867ebe014e0dbe2f1 | d451d126d188dbb9287a95d2c50a8ad7723a1d0f | /src/ast/type/qualifier_type_node.h | e57216a3ee102a91b5f5787b445cdd89881d2fbb | [] | no_license | rcorcs/rcc | 1fb15f82215968c412ddb5f47742ec6318a18425 | 5885025911d36a04c2fb2c2e6ca3b56b3bb62458 | refs/heads/master | 2021-01-21T04:37:23.433928 | 2017-07-23T01:51:50 | 2017-07-23T01:51:50 | 22,624,437 | 135 | 11 | null | null | null | null | UTF-8 | C++ | false | false | 324 | h | #ifndef RCC_AST_QUALIFIER_TYPE_NODE_H
#define RCC_AST_QUALIFIER_TYPE_NODE_H
#include "type_node.h"
#include "../../types/type_qualifier.h"
class QualifierTypeNode : public TypeNode {
public:
QualifierTypeNode(TypeQualifier qualifier);
TypeQualifier typeQualifier();
private:
TypeQualifier _qualifier;
};
#endif
| [
"rcor.cs@gmail.com"
] | rcor.cs@gmail.com |
bc6c67413a22c1acbc6ff10de6640d96ea3ad55c | 4fd632c1daad7f351cdbc87e81a0f8f600d34337 | /thread/asyncresult.h | 9565aa09249a7f1954397735731edb1622a5bb38 | [] | no_license | airyai/avalon | 27992e65183d802d4859bde0310b3c4928c93e82 | 20b82c56ed72928084b2192d8282b9a46b252a4d | refs/heads/master | 2016-09-06T11:00:29.099178 | 2012-03-27T17:47:11 | 2012-03-27T17:47:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,554 | h | /*
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) 2012 <copyright holder> <email>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef ASYNCRESULT_H
#define ASYNCRESULT_H
#include "../define.h"
#include <list>
#include <boost/function.hpp>
#include <boost/thread/condition.hpp>
#include <boost/thread/mutex.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/noncopyable.hpp>
#include "../errors.h"
BEGIN_AVALON_NS2(thread)
/// The async result.
/**
* This class manages an asynchronous function call, as well as
* its success, error and cancel callbacks.
*
* It is the caller's responsibility to keep AsyncResult alive
* when the task is running.
*/
class AsyncResult
: private boost::noncopyable
{
public:
/// The function call type.
typedef boost::function<void (AsyncResult&)> Task;
/// The callback type.
typedef boost::function<void (AsyncResult&)> Callback;
/// The AsyncResult status type.
enum Status
{
/// The task is waiting for execution.
WAIT = 0,
/// The task is being executed.
RUNNING = 1,
/// The task has succesfully executed.
SUCCESS = 2,
/// There's some error during execution.
ERROR = 3,
/// The task has been cancelled.
CANCELLED = 4,
/// The thread in which the task is executed has been interrupted.
INTERRUPTED = 5
};
/// The base class for Result.
/**
* Provide a result wrapper, to keep the result object alive.
*/
class ResultBase {
public:
/// Create a new result.
ResultBase();
/// Dispose the result.
virtual ~ResultBase();
};
/// Type specified Result.
template <typename T>
class Result : public ResultBase {
public:
/// The data pointer type.
typedef boost::shared_ptr<T> DataPtr;
/// Create a Result object and manages the data object.
/**
* After all Result instance that share the data object, it
* will be disposed.
*/
Result(T* data);
/// Create a Result object that shares the data object.
Result(const DataPtr& data);
/// Copy construct a Result object.
Result(const Result<T>& other);
/// Copy a Result object.
Result<T>& operator=(const Result<T>& other);
/// Dispose the Result object.
virtual ~Result();
/// Get the result data.
const DataPtr &data() const;
protected:
DataPtr result_;
};
/// create a new AsyncResult.
explicit AsyncResult(const Task& task);
/// Dispose the AsyncResult.
~AsyncResult();
/// The result status.
/**
* It is safe to take actions when the status is SUCCESS, ERROR or CANCELLED.
*/
Status status();
/// The result exception.
const AvalonException* exception();
/// Get the result data.
template <typename T>
typename Result<T>::DataPtr get_result();
/// Create a result object that manages the T* data.
/**
* The content of the pointer is not copied, but managed
* by shared_ptr. So just create a pointer and pass it to
* this method.
*/
template <typename T>
void set_result(T* data);
/// Create a result object that shares the T* data.
template <typename T>
void set_result(const typename Result<T>::DataPtr &data);
/// Clear the result object.
void clear_result();
/// Set the status to cancelled, and execute callbacks.
/**
* If the job has already executed, or is running, then the method
* do nothing.
*
* @return true if did cancel, otherwise false.
*/
bool cancel();
/// Add callback on success.
/**
* Add the callback to callback list if current status is
* WAIT or RUNNING, otherwise execute the callback immediately
* if the status is SUCCESS.
*/
void add_success(const Callback& callback);
/// Add callback on error.
/**
* Add the callback to callback list if current status is
* WAIT or RUNNING, otherwise execute the callback immediately
* if the status if ERROR.
*/
void add_error(const Callback& callback);
/// Add callback on cancel.
/**
* Add the callback to callback list if current status is
* WAIT or RUNNING, otherwise execute the callback immediately
* if the status is CANCELLED.
*/
void add_cancel(const Callback& callback);
/// Add callback on interrupt.
/**
* Add the callback to callback list if current status is
* WAIT or RUNNING, otherwise execute the callback immediately
* if the status is CANCELLED.
*/
void add_interrupt(const Callback& callback);
/// Add calback on all events.
/**
* Add the callback to callback list if current status is
* WAIT or RUNNING, otherwise execute the callback immediately.
*/
void add_all(const Callback& callback);
/// Call the function method.
/**
* Only if the AsyncResult's status is WAIT, then the task will be called.
* And, according to the status, callbacks will be executed.
*
* @return True if really executed, otherwise false.
*/
bool execute();
/// Wait for the job to be finished.
/**
* Wait only if the AsyncResult's status is RUNNING or WAIT. When timeout
* specified, the method will return if time exceeds.
*
* @param timeout The maximum waiting milliseconds. Zero means no limit.
* @return false if time exceeds, otherwise true (including no waiting).
*/
bool wait(size_t timeout = 0);
protected:
/// The lock type.
/**
* At first I attempted to use spinlock, just as shared_ptr or some
* other objects. But later I realized, that AsyncResult may be used
* in many * many threads.
*
* According to a brief test,
* http://www.searchtb.com/2011/01/pthreads-mutex-vs-pthread-spinlock.html,
* the efficiency decreased dramatically even if there are only about 10
* threads.
*
* Even in single-thread environment, the speed of mutex is just ok for
* server applications. In test/speed_workpool.cpp, 10,000,000 mutex lock
* uses 0.6s on my laptop.
*
* Another reason is, mutex supports condition_variable.
*
* So I chose mutex later.
*/
typedef boost::mutex Lock;
/// The spin lock for status.
Lock lock_;
/// The condition variable to notify that the job has been done.
boost::condition_variable cond_;
/// The status.
Status status_;
/// The function call.
Task task_;
/// The success callback flag.
static const unsigned int CALLBACK_SUCCESS = 0x1;
/// The error callback flag.
static const unsigned int CALLBACK_ERROR = 0x2;
/// The cancel callback flag.
static const unsigned int CALLBACK_CANCEL = 0x4;
/// The interrupt callback flag.
static const unsigned int CALLBACK_INTERRUPT = 0x8;
/// The full callback flag.
static const unsigned int CALLBACK_ALL = CALLBACK_SUCCESS | CALLBACK_ERROR
| CALLBACK_CANCEL | CALLBACK_INTERRUPT;
/// The callback list item.
typedef std::pair<unsigned int, Callback> CallbackListItem;
/// The callback list type.
typedef std::list<CallbackListItem> CallbackList;
/// The callback list.
CallbackList callbacks_;
/// The error object.
boost::shared_ptr<AvalonException> exception_;
/// The result object.
boost::shared_ptr<ResultBase> result_;
/// Set the status as success.
void set_success();
/// Set the status to cancelled, and execute callbacks.
bool set_cancel();
/// Set the error as an unknown exception.
void set_error();
/// Set the error as an AvalonException.
void set_error(const AvalonException* err);
/// Set the status to interrupted, and execute callbacks.
void set_interrupt();
/// Add calback on all events.
/**
* Add the callback to callback list if current status is
* WAIT or RUNNING, otherwise execute the callback immediately.
*/
void add_callback(const Callback& callback, unsigned int flag);
/// Execute the callbacks match flag modifier.
void call_callback(unsigned int flag);
};
/// The job's AsyncResult shared_ptr.
typedef boost::shared_ptr<AsyncResult> AsyncResultPtr;
END_AVALON_NS2
#include "asyncresult.tpl.h"
#endif // ASYNCRESULT_H
| [
"airyai@gmail.com"
] | airyai@gmail.com |
5cd9bf0f94de7493a95430f2486bd9a5a1262cdb | 63be9bec3903edaa0c8232964de0fb2a3fa2f152 | /SurfaceMeshProcessing/SplineMap/SplineySymDirichlet.cpp | 57a1780bdf4c15cbb6b3282031e871d3f0a5d953 | [
"MIT"
] | permissive | USTC-GCL-F/MEBP_VLSM | 393a7e49255f3d7cc12eae8bb9c8376ced278aff | 5e59f98bf34f10e5472ed13e6e19c3eb547f15c8 | refs/heads/master | 2022-12-16T11:51:29.080950 | 2020-09-18T12:00:23 | 2020-09-18T12:00:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,738 | cpp | #include "SplineySymDirichlet.h"
SplineySymDirichlet::SplineySymDirichlet()
{
}
SplineySymDirichlet::~SplineySymDirichlet()
{
}
void SplineySymDirichlet::parameterization()
{
////load();
//
//parafun_solver.reset(new Parafun(sharedd.scaf_data));
parafun_solver->BPE_spline();
//std::cout << "use slim" << parafun_solver->use_slim << std::endl;
//std::cout << "use cm" << parafun_solver->use_cm << std::endl;;
//std::cout << "use grad" << parafun_solver->use_ngrad << std::endl;
////write_obj();
}
void SplineySymDirichlet::load()
{
//scaf_data = ScafData();
//scaf_data.add_new_patch(V, F, Eigen::RowVector2d(0, 0));
}
//void SplineySymDirichlet::write_obj()
//{
// Eigen::MatrixXd& V_in = scaf_data.w_uv;
// int v_num = mesh.n_vertices();
// for (int i = 0; i < v_num; ++i)
// {
// auto vertex = mesh.vertex_handle(i);
// /*Mesh::Point pos(V_in(i, 0) - 0.5, V_in(i, 1) - 0.5, 0.0);
// mesh.set_point(vertex, pos/ area_same_factor);*/
// Mesh::Point pos(V_in(i, 0), V_in(i, 1) , 0.0);
// mesh.set_point(vertex, pos);
// }
//
// Eigen::MatrixXi& F_ref = scaf_data.m_T;
// string outstr = "./a.obj";
//
// ofstream of_obj(outstr, ios::trunc);
//
// if (V_in.cols() == 3)
// {
// for (size_t vid = 0; vid < scaf_data.mv_num; vid++)
// {
// of_obj << "v " << V_in(vid, 0) << " " << V_in(vid, 1) << " " << V_in(vid, 2) << endl;
// }
// }
// else if (V_in.cols() == 2)
// {
// for (size_t vid = 0; vid < scaf_data.mv_num; vid++)
// {
// of_obj << "v " << V_in(vid, 0) << " " << V_in(vid, 1) << " " << 0.0 << endl;
// }
// }
//
// for (size_t fi = 0; fi < F_ref.rows(); fi++)
// {
// of_obj << "f " << F_ref(fi, 0) + 1 << " " << F_ref(fi, 1) + 1 << " " << F_ref(fi, 2) + 1 << endl;
// }
// of_obj.close();
//}
| [
"yechyang@mail.ustc.edu.cn"
] | yechyang@mail.ustc.edu.cn |
73aa370eb8c322d2112c10ba476a861eb981c7d0 | 84930d12264cbf640d01fb4db1e23b46271d061d | /test_explicit/main.cpp | 7d0b14e3f19261ad30fadf05a659d656e268cbe0 | [] | no_license | jbl19860422/test_cpp | 3081ec03aa7e7f629ce4e7136b5a5f63838a4c54 | 30fb412c58706cc412708774bffe7360daa403a7 | refs/heads/master | 2020-07-25T20:25:46.269124 | 2019-09-14T09:38:03 | 2019-09-14T09:38:03 | 208,415,176 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 391 | cpp | #include <iostream>
class A {
public:
A(int k)
{
data_ = k;
}
private:
int data_;
};
class B {
public:
explicit B(int k)
{
data_ = k;
}
int data_;
};
enum E_TEST {
E_A = 0,
E_B = 1
};
int main(char argc, char *argv[])
{
A a1(10);
std::cout << "ok" << std::endl;
A a2 = E_A;//没问题,可以隐士转换
B b1(10);//ok
B b2 = E_B;//错误,无法进行隐士转换
}
| [
"jbl19860422@163.com"
] | jbl19860422@163.com |
403e721a2fbe5b184102e1730d555ed437f263a1 | ef1e85ec0538228d30e5bef7823ae79e462006bf | /Source/PuzzlePlatforms/PlatformTrigger.h | 3d79192e683a583d355d56169d8282aecec0f381 | [] | no_license | bgonz12/MultiplayerPuzzlePlatforms | 0ce4cdd06b0452f7f14b9c0252d2340165904e38 | fdb7d39f4f4202a53ba546bcdec0c64b5576fc88 | refs/heads/master | 2021-02-07T15:33:19.559440 | 2020-03-16T07:20:03 | 2020-03-16T07:20:03 | 244,044,745 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,037 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "PlatformTrigger.generated.h"
UCLASS()
class PUZZLEPLATFORMS_API APlatformTrigger : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
APlatformTrigger();
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
private:
UPROPERTY(VisibleAnywhere)
class UBoxComponent* TriggerVolume;
UPROPERTY(EditAnywhere)
TArray<class AMovingPlatform*> PlatformsToTrigger;
UFUNCTION()
void OnOverlapBegin(UPrimitiveComponent* OverlappedComp, AActor* OtherActor, UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep, const FHitResult& SweepResult);
UFUNCTION()
void OnOverlapEnd(UPrimitiveComponent* OverlappedComp, AActor* OtherActor, UPrimitiveComponent* OtherComp, int32 OtherBodyIndex);
};
| [
"bgonz12@hotmail.com"
] | bgonz12@hotmail.com |
b43485e39e9b053fb6d0067d3c6457f5dcd1f57a | 6d4398f454ed278c0d3f6e166fa0e1370ebaa0ad | /software/QGroundStation/plugins/pfdqml/pfdqmlgadgetfactory.h | 23e4610edff6e8beb41410b95edf77232c005951 | [] | no_license | nongxiaoming/QGroundStation | 4b27cb2165b91b0510210e65a781daf5fc919c64 | 0a491c9d910e465633c232ecd74a7c283def5301 | refs/heads/master | 2020-05-18T11:03:00.538465 | 2014-10-08T16:48:51 | 2014-10-08T16:48:51 | 19,404,192 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,293 | h | /*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef PFDQMLGADGETFACTORY_H_
#define PFDQMLGADGETFACTORY_H_
#include <coreplugin/iuavgadgetfactory.h>
namespace Core {
class IUAVGadget;
class IUAVGadgetFactory;
}
using namespace Core;
class PfdQmlGadgetFactory : public IUAVGadgetFactory {
Q_OBJECT
public:
PfdQmlGadgetFactory(QObject *parent = 0);
~PfdQmlGadgetFactory();
Core::IUAVGadget *createGadget(QWidget *parent);
IUAVGadgetConfiguration *createConfiguration(QSettings *qSettings);
IOptionsPage *createOptionsPage(IUAVGadgetConfiguration *config);
};
#endif // PfdQmlGADGETFACTORY_H_
| [
"nongxiaoming@gmail.com"
] | nongxiaoming@gmail.com |
f791a59665fe11889dc81300d0aedc9c696406b1 | 90047daeb462598a924d76ddf4288e832e86417c | /chromeos/network/host_resolver_impl_chromeos_unittest.cc | ca4839485f8a45c23eb19d84f0a71ca6c496b903 | [
"BSD-3-Clause"
] | permissive | massbrowser/android | 99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080 | a9c4371682c9443d6e1d66005d4db61a24a9617c | refs/heads/master | 2022-11-04T21:15:50.656802 | 2017-06-08T12:31:39 | 2017-06-08T12:31:39 | 93,747,579 | 2 | 2 | BSD-3-Clause | 2022-10-31T10:34:25 | 2017-06-08T12:36:07 | null | UTF-8 | C++ | false | false | 6,044 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/network/host_resolver_impl_chromeos.h"
#include <memory>
#include "base/location.h"
#include "base/macros.h"
#include "base/run_loop.h"
#include "base/single_thread_task_runner.h"
#include "base/strings/stringprintf.h"
#include "base/threading/thread_task_runner_handle.h"
#include "chromeos/dbus/dbus_thread_manager.h"
#include "chromeos/dbus/shill_device_client.h"
#include "chromeos/dbus/shill_ipconfig_client.h"
#include "chromeos/dbus/shill_service_client.h"
#include "chromeos/network/device_state.h"
#include "chromeos/network/network_state.h"
#include "chromeos/network/network_state_handler.h"
#include "dbus/object_path.h"
#include "net/base/net_errors.h"
#include "net/base/network_interfaces.h"
#include "net/log/net_log_with_source.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace chromeos {
namespace {
const char kTestIPv4Address[] = "1.2.3.4";
const char kTestIPv6Address[] = "1:2:3:4:5:6:7:8";
void DoNothingWithCallStatus(DBusMethodCallStatus call_status) {}
void ErrorCallbackFunction(const std::string& error_name,
const std::string& error_message) {
LOG(ERROR) << "Shill Error: " << error_name << " : " << error_message;
}
void ResolveCompletionCallback(int result) {}
} // namespace
class HostResolverImplChromeOSTest : public testing::Test {
public:
HostResolverImplChromeOSTest() {}
~HostResolverImplChromeOSTest() override {}
void SetUp() override {
DBusThreadManager::Initialize();
network_state_handler_ = NetworkStateHandler::InitializeForTest();
base::RunLoop().RunUntilIdle();
const NetworkState* default_network =
network_state_handler_->DefaultNetwork();
ASSERT_TRUE(default_network);
const DeviceState* default_device =
network_state_handler_->GetDeviceState(default_network->device_path());
ASSERT_TRUE(default_device);
SetDefaultIPConfigs(default_device->path());
// Create the host resolver from the IO message loop.
io_message_loop_.task_runner()->PostTask(
FROM_HERE,
base::Bind(&HostResolverImplChromeOSTest::InitializeHostResolver,
base::Unretained(this)));
base::RunLoop().RunUntilIdle();
}
void TearDown() override {
network_state_handler_->Shutdown();
network_state_handler_.reset();
DBusThreadManager::Shutdown();
}
protected:
// Run from main (UI) message loop, calls Resolve on IO message loop.
int CallResolve(net::HostResolver::RequestInfo& info) {
io_message_loop_.task_runner()->PostTask(
FROM_HERE, base::Bind(&HostResolverImplChromeOSTest::Resolve,
base::Unretained(this), info));
base::RunLoop().RunUntilIdle();
return result_;
}
net::AddressList addresses_;
int result_;
private:
// Run from IO message loop.
void InitializeHostResolver() {
net::HostResolver::Options options;
host_resolver_ = HostResolverImplChromeOS::CreateHostResolverForTest(
base::ThreadTaskRunnerHandle::Get(), network_state_handler_.get());
}
// Run from IO message loop.
void Resolve(net::HostResolver::RequestInfo info) {
result_ = host_resolver_->Resolve(info, net::DEFAULT_PRIORITY, &addresses_,
base::Bind(&ResolveCompletionCallback),
&request_, net_log_);
}
void SetDefaultIPConfigs(const std::string& default_device_path) {
const std::string kTestIPv4ConfigPath("test_ip_v4_config_path");
const std::string kTestIPv6ConfigPath("test_ip_v6_config_path");
SetIPConfig(kTestIPv4ConfigPath, shill::kTypeIPv4, kTestIPv4Address);
SetIPConfig(kTestIPv6ConfigPath, shill::kTypeIPv6, kTestIPv6Address);
base::RunLoop().RunUntilIdle();
base::ListValue ip_configs;
ip_configs.AppendString(kTestIPv4ConfigPath);
ip_configs.AppendString(kTestIPv6ConfigPath);
DBusThreadManager::Get()->GetShillDeviceClient()->SetProperty(
dbus::ObjectPath(default_device_path), shill::kIPConfigsProperty,
ip_configs, base::Bind(&base::DoNothing),
base::Bind(&ErrorCallbackFunction));
base::RunLoop().RunUntilIdle();
}
void SetIPConfig(const std::string& path,
const std::string& method,
const std::string& address) {
DBusThreadManager::Get()->GetShillIPConfigClient()->SetProperty(
dbus::ObjectPath(path), shill::kAddressProperty, base::Value(address),
base::Bind(&DoNothingWithCallStatus));
DBusThreadManager::Get()->GetShillIPConfigClient()->SetProperty(
dbus::ObjectPath(path), shill::kMethodProperty, base::Value(method),
base::Bind(&DoNothingWithCallStatus));
}
std::unique_ptr<NetworkStateHandler> network_state_handler_;
std::unique_ptr<net::HostResolver> host_resolver_;
base::MessageLoop io_message_loop_;
net::NetLogWithSource net_log_;
std::unique_ptr<net::HostResolver::Request> request_;
DISALLOW_COPY_AND_ASSIGN(HostResolverImplChromeOSTest);
};
TEST_F(HostResolverImplChromeOSTest, Resolve) {
net::HostResolver::RequestInfo info(
net::HostPortPair(net::GetHostName(), 80));
info.set_address_family(net::ADDRESS_FAMILY_IPV4);
info.set_is_my_ip_address(true);
EXPECT_EQ(net::OK, CallResolve(info));
ASSERT_EQ(1u, addresses_.size());
std::string expected = base::StringPrintf("%s:%d", kTestIPv4Address, 0);
EXPECT_EQ(expected, addresses_[0].ToString());
info.set_address_family(net::ADDRESS_FAMILY_IPV6);
EXPECT_EQ(net::OK, CallResolve(info));
ASSERT_EQ(2u, addresses_.size());
expected = base::StringPrintf("[%s]:%d", kTestIPv6Address, 0);
EXPECT_EQ(expected, addresses_[0].ToString());
expected = base::StringPrintf("%s:%d", kTestIPv4Address, 0);
EXPECT_EQ(expected, addresses_[1].ToString());
}
} // namespace chromeos
| [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
048985ee797eaedb9a6ecc7f63471c65ac77bb9f | 55562b54d397407c7561c2385b1319399633448e | /testing/testing_dgeqrf_mgpu.cpp | dce30a8eac7ad0e00b34db8042b062406dcdee4b | [] | no_license | kjbartel/clmagma | 0183fa30d7a0e27c53bfd8aa4b8dca64895ccaa4 | 86a58e5d4f28af7942e31d742c3104598d41d796 | refs/heads/master | 2020-05-26T22:07:09.530467 | 2015-07-05T11:26:42 | 2015-07-05T11:26:42 | 38,567,931 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 7,414 | cpp | /*
-- clMAGMA (version 1.3.0) --
Univ. of Tennessee, Knoxville
Univ. of California, Berkeley
Univ. of Colorado, Denver
@date November 2014
@generated from testing_zgeqrf_mgpu.cpp normal z -> d, Sat Nov 15 00:21:40 2014
*/
// includes, system
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
// includes, project
#include "flops.h"
#include "magma.h"
#include "magma_lapack.h"
#include "testings.h"
// Flops formula
#define PRECISION_d
#if defined(PRECISION_z) || defined(PRECISION_c)
#define FLOPS(m, n) ( 6.*FMULS_GEQRF(m, n) + 2.*FADDS_GEQRF(m, n) )
#else
#define FLOPS(m, n) ( FMULS_GEQRF(m, n) + FADDS_GEQRF(m, n) )
#endif
/* ////////////////////////////////////////////////////////////////////////////
-- Testing dgeqrf_mgpu
*/
int main( int argc, char** argv)
{
real_Double_t gflops, gpu_perf, cpu_perf, gpu_time, cpu_time, error;
double matnorm, work[1];
double c_neg_one = MAGMA_D_NEG_ONE;
double *h_A, *h_R, *tau, *h_work, tmp[1];
magmaDouble_ptr d_lA[MagmaMaxGPUs];
/* Matrix size */
magma_int_t M = 0, N = 0, n2, n_local[4], lda, ldda, lhwork;
magma_int_t size[10] = {1000,2000,3000,4000,5000,6000,7000,8000,9000,10000};
magma_int_t i, k, nk, info, min_mn;
int max_num_gpus = 2, num_gpus = 2;
magma_int_t ione = 1;
magma_int_t ISEED[4] = {0,0,0,1};
if (argc != 1){
for(i = 1; i<argc; i++){
if (strcmp("-N", argv[i])==0)
N = atoi(argv[++i]);
else if (strcmp("-M", argv[i])==0)
M = atoi(argv[++i]);
else if (strcmp("-NGPU", argv[i])==0)
num_gpus = atoi(argv[++i]);
}
if ( M == 0 ) {
M = N;
}
if ( N == 0 ) {
N = M;
}
if (M>0 && N>0)
printf(" testing_dgeqrf_gpu -M %d -N %d -NGPU %d\n\n", (int) M, (int) N, (int) num_gpus);
else
{
printf("\nUsage: \n");
printf(" testing_dgeqrf_gpu -M %d -N %d -NGPU %d\n\n",
1024, 1024, 1);
exit(1);
}
}
else {
printf("\nUsage: \n");
printf(" testing_dgeqrf_gpu -M %d -N %d -NGPU %d\n\n", 1024, 1024, 1);
M = N = size[9];
}
ldda = ((M+31)/32)*32;
n2 = M * N;
min_mn = min(M, N);
magma_int_t nb = magma_get_dgeqrf_nb(M);
if (num_gpus > max_num_gpus){
printf("More GPUs requested than available. Have to change it.\n");
num_gpus = max_num_gpus;
}
printf("Number of GPUs to be used = %d\n", (int) num_gpus);
/* Initialize */
magma_queue_t queues[MagmaMaxGPUs * 2];
magma_device_t devices[ MagmaMaxGPUs ];
magma_int_t num = 0;
magma_int_t err;
magma_init();
err = magma_getdevices( devices, MagmaMaxGPUs, &num );
if ( err != 0 || num < 1 ) {
fprintf( stderr, "magma_getdevices failed: %d\n", (int) err );
exit(-1);
}
for(i=0;i<num_gpus;i++){
err = magma_queue_create( devices[i], &queues[2*i] );
if ( err != 0 ) {
fprintf( stderr, "magma_queue_create failed: %d\n", (int) err );
exit(-1);
}
err = magma_queue_create( devices[i], &queues[2*i+1] );
if ( err != 0 ) {
fprintf( stderr, "magma_queue_create failed: %d\n", (int) err );
exit(-1);
}
}
/* Allocate host memory for the matrix */
TESTING_MALLOC_CPU( tau, double, min_mn );
TESTING_MALLOC_CPU( h_A, double, n2 );
TESTING_MALLOC_CPU( h_R, double, n2 );
for(i=0; i<num_gpus; i++){
n_local[i] = ((N/nb)/num_gpus)*nb;
if (i < (N/nb)%num_gpus)
n_local[i] += nb;
else if (i == (N/nb)%num_gpus)
n_local[i] += N%nb;
TESTING_MALLOC_DEV( d_lA[i], double, ldda*n_local[i] );
printf("device %2d n_local = %4d\n", (int) i, (int) n_local[i]);
}
lhwork = -1;
lapackf77_dgeqrf(&M, &N, h_A, &M, tau, tmp, &lhwork, &info);
lhwork = (magma_int_t)MAGMA_D_REAL( tmp[0] );
TESTING_MALLOC_CPU( h_work, double, lhwork );
printf(" M N CPU GFlop/s (sec) GPU GFlop/s (sec) ||R||_F / ||A||_F\n");
printf("======================================================================\n");
for(i=0; i<10; i++){
if (argc == 1){
M = N = size[i];
}
min_mn= min(M, N);
lda = M;
n2 = lda*N;
ldda = ((M+31)/32)*32;
gflops = FLOPS( (double)M, (double)N ) * 1e-9;
/* Initialize the matrix */
lapackf77_dlarnv( &ione, ISEED, &n2, h_A );
lapackf77_dlacpy( MagmaUpperLowerStr, &M, &N, h_A, &lda, h_R, &lda );
/* =====================================================================
Performs operation using LAPACK
=================================================================== */
cpu_time = magma_wtime();
lapackf77_dgeqrf(&M, &N, h_A, &M, tau, h_work, &lhwork, &info);
cpu_time = magma_wtime() - cpu_time;
if (info < 0)
printf("Argument %d of lapack_dgeqrf had an illegal value.\n", (int) -info);
cpu_perf = gflops / cpu_time;
/* ====================================================================
Performs operation using MAGMA
=================================================================== */
int j;
magma_queue_t *trans_queues = (magma_queue_t*)malloc(num_gpus*sizeof(magma_queue_t));
for(j=0;j<num_gpus;j++){
trans_queues[j] = queues[2*j];
}
// warm-up
magma_dsetmatrix_1D_col_bcyclic(M, N, h_R, lda, d_lA, ldda, num_gpus, nb, trans_queues);
magma_dgeqrf2_mgpu( num_gpus, M, N, d_lA, ldda, tau, queues, &info);
magma_dsetmatrix_1D_col_bcyclic(M, N, h_R, lda, d_lA, ldda, num_gpus, nb, trans_queues);
gpu_time = magma_wtime();
magma_dgeqrf2_mgpu( num_gpus, M, N, d_lA, ldda, tau, queues, &info);
gpu_time = magma_wtime() - gpu_time;
if (info < 0)
printf("Argument %d of magma_dgeqrf2 had an illegal value.\n", (int) -info);
gpu_perf = gflops / gpu_time;
/* =====================================================================
Check the result compared to LAPACK
=================================================================== */
magma_dgetmatrix_1D_col_bcyclic(M, N, d_lA, ldda, h_R, lda, num_gpus, nb, trans_queues);
matnorm = lapackf77_dlange("f", &M, &N, h_A, &M, work);
blasf77_daxpy(&n2, &c_neg_one, h_A, &ione, h_R, &ione);
printf("%5d %5d %6.2f (%6.2f) %6.2f (%6.2f) %e\n",
(int) M, (int) N, cpu_perf, cpu_time, gpu_perf, gpu_time,
lapackf77_dlange("f", &M, &N, h_R, &M, work) / matnorm);
if (argc != 1)
break;
}
/* Memory clean up */
TESTING_FREE_PIN( tau );
TESTING_FREE_PIN( h_A );
TESTING_FREE_PIN( h_work );
TESTING_FREE_PIN( h_R );
for(i=0; i<num_gpus; i++){
TESTING_FREE_DEV( d_lA[i] );
magma_queue_destroy(queues[2*i]);
magma_queue_destroy(queues[2*i+1]);
}
/* Shutdown */
magma_finalize();
}
| [
"kjbartel@users.noreply.github.com"
] | kjbartel@users.noreply.github.com |
8d5d21132f654c1c1aaa54e831f26b55fcd777e8 | f5c7304e5ab53c7ac50c49d3e5254675d1297a1b | /libraries/WiFiManager/examples/OnDemand/OnDemandConfigPortal/OnDemandConfigPortal.ino | e9252c3dd969c9b5a4c1c972d51c2053f454a2ae | [
"MIT"
] | permissive | kriffe/ESP32-Adafruit-IO-Templates | 62cf2e8d8a213633433a4913fcd445eb964646a4 | 2a9a46b72ec9ad067cccc5b4ed86bb960c3ad8fe | refs/heads/master | 2020-06-20T21:48:46.646150 | 2019-07-17T11:51:30 | 2019-07-17T11:51:30 | 197,261,194 | 0 | 1 | MIT | 2019-07-17T11:50:12 | 2019-07-16T20:15:56 | C++ | UTF-8 | C++ | false | false | 1,220 | ino | /**
* OnDemandConfigPortal.ino
* example of running the configPortal AP manually, independantly from the captiveportal
* trigger pin will start a configPortal AP for 120 seconds then turn it off.
*
*/
#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager
// select which pin will trigger the configuration portal when set to LOW
#define TRIGGER_PIN 0
int timeout = 120; // seconds to run for
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("\n Starting");
pinMode(TRIGGER_PIN, INPUT_PULLUP);
}
void loop() {
// is configuration portal requested?
if ( digitalRead(TRIGGER_PIN) == LOW) {
WiFiManager wm;
//reset settings - for testing
//wifiManager.resetSettings();
// set configportal timeout
wm.setConfigPortalTimeout(timeout);
if (!wm.startConfigPortal("OnDemandAP")) {
Serial.println("failed to connect and hit timeout");
delay(3000);
//reset and try again, or maybe put it to deep sleep
ESP.restart();
delay(5000);
}
//if you get here you have connected to the WiFi
Serial.println("connected...yeey :)");
}
// put your main code here, to run repeatedly:
}
| [
"kriffe@users.noreply.github.com"
] | kriffe@users.noreply.github.com |
26158e233de98ac8fdd3e6e7ac96abb29b77c89b | 067fb4959d8bf2475090519cfcefcecd15ad3aef | /VisionLib.h | 4433bfaaf7f4a4bf915848f414a9fa4a8c0dc060 | [] | no_license | frc4529/2015-Vision | 079fef49f2ba4b812fcc0b888ed1d665e0f9fa81 | 01717cd16b4636f228ff99b340d84ff87f886d06 | refs/heads/master | 2021-01-20T05:49:58.963539 | 2015-02-16T22:20:48 | 2015-02-16T22:20:48 | 30,284,828 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,338 | h | #ifndef VISIONLIB_H
#define VISIONLIB_H
/**
* @file VisionLib.h
* Main library header.
* @note More exports are found in TargetDetector.
*/
#include "CamFeed.h"
#include "TargetDetector.h"
/**
* Instance of vision system.
*/
class InstanceStore {
public:
/**
* InstanceStore constructor.
* @param cam CamFeed input source.
*/
InstanceStore(CamFeed * cam);
/**
* InstanceStore destructor.
*/
virtual ~InstanceStore();
/**
* CamFeed reference.
*/
CamFeed & feed;
/**
* cv::Mat for storage of the current frame.
*/
Mat imageStore;
/**
* TargetDetector instance.
*/
TargetDetector * detector;
};
#ifdef __cplusplus
extern "C" {
#endif
/**
* Starts the vision system from a feed path.
* @param feedPath URI of feed source.
* @returns InstanceStore for current vision system instance.
* @note See CamFeed::CamFeed(const char * feedPath) for details on URI specification.
*/
InstanceStore * initFeed(const char * feedPath);
/**
* Starts the vision system with a USB camera.
* @param camIndex Index of the camera to use.
* @returns InstanceStore for current vision system instance.
* @note See CamFeed::CamFeed(int camIndex) for details on camera indexes.
*/
InstanceStore * initCamera(int camIndex);
/**
* Sets the thresholding cuttoff value.
* If not run, the value will default to 234.
* @param store Pointer to the store returned by initFeed() or initCamera().
* @param newThreshold The new threshold value - takes values 0-255 (inclusive).
* @returns true if operation was successful, false if newThreshold was invalid or if store is null.
* @note Try to have this as close to 255 as possible while still being able to detect the target reliably.
* @note Can be changed multiple times.
*/
bool setThreshold(InstanceStore * store, int newThreshold);
/**
* Process a new frame for vision.
* @param store Pointer to the store returned by initFeed() or initCamera().
* @returns LineResult Output of vision system.
*/
LineResult processFrame(InstanceStore * store);
/**
* Close/release the camera and deallocate all used memory.
* @param store Pointer to the store returned by initFeed() or initCamera().
*/
void closeCamera(InstanceStore * store);
#ifdef __cplusplus
}
#endif
#endif /* VISIONLIB_H */
| [
"andrew.silver0@gmail.com"
] | andrew.silver0@gmail.com |
b22c8751463eca5fde6a379e6fbd2d1d4353abf6 | cccfb7be281ca89f8682c144eac0d5d5559b2deb | /ui/color/color_provider_source_observer.h | 5350f8c1fdaccfb94e707a7e9c0648cfca37f69a | [
"BSD-3-Clause"
] | permissive | SREERAGI18/chromium | 172b23d07568a4e3873983bf49b37adc92453dd0 | fd8a8914ca0183f0add65ae55f04e287543c7d4a | refs/heads/master | 2023-08-27T17:45:48.928019 | 2021-11-11T22:24:28 | 2021-11-11T22:24:28 | 428,659,250 | 1 | 0 | BSD-3-Clause | 2021-11-16T13:08:14 | 2021-11-16T13:08:14 | null | UTF-8 | C++ | false | false | 1,944 | h | // Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_COLOR_COLOR_PROVIDER_SOURCE_OBSERVER_H_
#define UI_COLOR_COLOR_PROVIDER_SOURCE_OBSERVER_H_
#include "base/component_export.h"
#include "base/scoped_observation.h"
#include "ui/color/color_provider_source.h"
namespace ui {
// Implemented by classes wanting access to the ColorProviderSource's current
// ColorProvider instance and receives updates on changes to the instance
// supplied. Can only observe a single ColorProviderSource at a time.
class COMPONENT_EXPORT(COLOR) ColorProviderSourceObserver
: public base::CheckedObserver {
public:
ColorProviderSourceObserver();
~ColorProviderSourceObserver() override;
// Called when the source's ColorProvider instance has changed.
virtual void OnColorProviderChanged() = 0;
// Called by the ColorProviderSource during destruction. Avoids situations
// where we could be left with a dangling pointer should the observer outlive
// the source.
void OnColorProviderSourceDestroying();
const ui::ColorProviderSource* GetColorProviderSourceForTesting() const;
protected:
// Starts observing the new `source`. Clears the current observation if
// already observing a ColorProviderSource.
void Observe(ColorProviderSource* source);
// Gets the ColorProviderSource currently under observation, if it exists.
const ui::ColorProviderSource* GetColorProviderSource() const;
private:
// The currently observed source.
const ui::ColorProviderSource* source_ = nullptr;
// Ensure references to the observer are removed from the source should the
// source outlive the observer.
base::ScopedObservation<ColorProviderSource, ColorProviderSourceObserver>
color_provider_source_observation_{this};
};
} // namespace ui
#endif // UI_COLOR_COLOR_PROVIDER_SOURCE_OBSERVER_H_
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
3ddfc3d87e685cc9f5b26c885c08c5cb2ea03b4d | 3ad5e5b30a4f32744ee237cab390cc8a0dff66f3 | /leetcode_cpp/639_decode_ways_II.cpp | 4341463e73d981ae8d262f6c5e448c4722ac75fa | [] | no_license | LeiShi1313/leetcode | 721e41508eb244ec840ce593fedc3f8996050a0f | 895790f2a2706bb727d535b7cc28047e17b1fb6a | refs/heads/master | 2021-03-27T10:22:59.472077 | 2018-02-11T18:44:21 | 2018-02-11T18:44:21 | 94,644,211 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,405 | cpp | //
// Created by Dicky Shi on 6/13/17.
//
#include <iostream>
#include <vector>
#include <map>
#include <unordered_map>
#include <string>
#include <ctime>
#include "utils.h"
using namespace std;
class Solution {
public:
int numDecodings(string s) {
if (s.empty() || s.front() == '0') return 0;
vector<long> mem(s.length()+1, 0);
int p = 1000000007;
mem[0] = 1;
mem[1] = s[0] != '0' ? (s[0] != '*' ? 1 : 9) : 0;
for (int i = 2; i <= s.length(); i++) {
string s_of_2 = s.substr(i - 2, 2);
if (s[i - 1] == '*' && s[i - 2] == '*') {
mem[i] += 9 * mem[i - 1];
mem[i] += 15 * mem[i - 2];
} else if (s[i - 1] == '*') {
mem[i] += 9 * mem[i - 1];
if (s[i - 2] == '1') {
mem[i] += 9 * mem[i - 2];
} else if (s[i - 2] == '2') {
mem[i] += 6 * mem[i - 2];
}
} else if (s[i - 2] == '*') {
if (s[i - 1] >= '1' && s[i - 1] <= '9')
mem[i] += mem[i - 1];
if (s[i - 1] > '6') {
mem[i] += mem[i - 2];
} else if (s[i - 1] >= '0' && s[i - 1] < '7') {
mem[i] += 2 * mem[i - 2];
}
} else {
if (s[i - 1] >= '1' && s[i - 1] <= '9')
mem[i] += mem[i - 1];
if (stoi(s_of_2) > 9 && stoi(s_of_2) < 27)
mem[i] += mem[i - 2];
}
}
return mem[s.length()] % p;
}
};
int main() {
cout << Solution().numDecodings("1*") << endl;
cout << Solution().numDecodings("*1") << endl;
cout << Solution().numDecodings("*") << endl;
cout << Solution().numDecodings("11*") << endl;
cout << Solution().numDecodings("**") << endl;
cout << Solution().numDecodings("*1*1*0") << endl;
cout << Solution().numDecodings("***") << endl;
cout << Solution().numDecodings("****") << endl;
cout << Solution().numDecodings("*****") << endl;
cout << Solution().numDecodings("******") << endl;
cout << Solution().numDecodings("*******") << endl;
cout << Solution().numDecodings("********") << endl;
cout << Solution().numDecodings("*********") << endl;
cout << Solution().numDecodings("**********1111111111") << endl;
return 0;
}
| [
"sl9212@gmail.com"
] | sl9212@gmail.com |
56c80e2718a45f24ec6f0a949133164aaddde0ef | cb65b3579998e1213c8146dcd7f6cd93c7bd8de6 | /HuffmanAlgorithm/HuffmanAlgorithm/Compressor.h | 911252d60769207b95bcf9cd2c9ff5deac2e4c3f | [] | no_license | ZilvinasAbr/KompresinimoAnalize | e5e28242e6495e74d83d4b75b94cfb4c893e0339 | 28b78a3407447e9ea0f49bc37aefa2140123ee11 | refs/heads/master | 2020-04-09T16:06:32.507410 | 2016-05-25T20:27:44 | 2016-05-25T20:27:44 | 51,994,434 | 0 | 0 | null | 2016-05-04T15:27:03 | 2016-02-18T09:06:28 | C++ | UTF-8 | C++ | false | false | 1,463 | h | #pragma once
#include <string>
#include <vector>
#include <fstream>
#include <map>
#include <queue>
#include <list>
#include "Node.h"
#include "MinimalNode.h"
#include "Compare.h"
#include "Helper.h"
typedef unsigned char BYTE;
using namespace std;
class Compressor
{
public:
Compressor();
~Compressor();
static list<BYTE> Compress(string inputFile, string outputFile);
private:
static void GetCompressedData(ifstream &inputStream, ofstream &outputStream, const vector<string> &letterStringMap, string nullTerminatedCode);
static vector<int> GetFrequencies(string inputFile);
static list<Node *> GetLetterLeavesList(vector<int> &frequencies);
static priority_queue<Node*, vector<Node*>, Compare> Compressor::CreatePriorityQueue(list<Node*> nodes);
static Node* CreateTree(priority_queue<Node*, vector<Node*>, Compare> priorityQueue);
static vector<string> CreateLetterStringMap(Node *root, string & nullTerminatedCode);
static void RecursiveCreateLetterStringMapHelper(vector<string> &map, Node *currentNode, string currentCode, vector<string> &listOfOneString);
static void ConvertTreeToBytes(ofstream &outputStream, Node *root);
static vector<MinimalNode> CompressTree(Node *root);
static void RecursiveCompressTree(Node *currentNode, vector<Node*> &nodes);
//static BYTE* IntToByteArray(int integer);
static void GetCompressedData2(ifstream &inputStream, ofstream &outputStream, vector<string>& letterStringMap, string nullTerminatedCode);
};
| [
"abromavicius.zilvinas@gmail.com"
] | abromavicius.zilvinas@gmail.com |
d5244ddad62baff4d644e81c4d7ed2cedcc0b5bf | cd108c137093721febfe5ba6e6bd6f1a532d3d41 | /FinBlueCheckPOINT/FinBlueCheckPOINT.ino | 4da36fb3a2f3e872475d2376a7cb6f71bdab765a | [] | no_license | NRdeARK/Arduino | 559fe568b66964087a9501e9214835173573ccf8 | 8cd225588f6665b471813d567cc4060eae106d74 | refs/heads/main | 2023-07-24T15:24:10.198636 | 2021-09-06T09:44:24 | 2021-09-06T09:44:24 | 401,648,632 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,754 | ino | #include <Servo.h>
///motor
#define IN1 34
#define IN2 36
#define IN3 38
#define IN4 40
#define PWMA 32
#define PWMB 42
///sensor
#define CLP 31
#define SL2 33
#define SL 35
#define SC 37
#define SR 39
#define SR2 41
int sL2 = 0, sL = 0, sC = 0, sR = 0, sR2 = 0, clp;
Servo myservo; //ประกาศตัวแปรแทน Servo
void setup() {
///controlmotor
pinMode(IN1,OUTPUT);
pinMode(IN2,OUTPUT);
pinMode(IN3,OUTPUT);
pinMode(IN4,OUTPUT);
///sensor
pinMode(SL2,INPUT);
pinMode(SL,INPUT);
pinMode(SC,INPUT);
pinMode(SR,INPUT);
pinMode(SR2,INPUT);
pinMode(CLP,INPUT);
myservo.attach(9);
}
void control(int in4, int in3, int pwmA, int in2, int in1, int pwmB, int dl)//controlRobot
{
digitalWrite(IN1,in1); digitalWrite(IN3,in3);
digitalWrite(IN2,in2); digitalWrite(IN4,in4);
analogWrite(PWMA,pwmA); analogWrite(PWMB,pwmB);
delay(dl);
}///sensor
void readsen() {
clp=digitalRead(CLP);
delay(10);
}
void wallR()
{
readsen();
while(clp==0)
{
readsen();
control(1,0,150,1,0,150,10);
}
///ถอย1
control(0,1,150,0,1,150,25);
///เลี้ยวขวา
control(1,0,150,0,1,150,600);
///ถอย2
control(0,1,150,0,1,150,300);
///เลี้ยวซ้าย
control(0,1,150,1,0,150,25);
}
void wallL()
{
readsen();
while(clp==0)
{
readsen();
control(1,0,150,1,0,150,10);
}
///ถอย1
control(0,1,150,0,1,150,25);
///เลี้ยวซ้าย
control(0,1,150,1,0,150,600);
///ถอย2
control(0,1,150,0,1,150,300);
///เลี้ยวขวา
control(1,0,150,0,1,150,25);
}
void triRoad()
{
///ถอย1
control(0,1,150,0,1,150,200);
///ตรง1
control(1,0,150,1,0,150,800);
///ขวา1
control(1,0,150,0,1,150,500);
///ถอย2
control(0,1,150,0,1,150,200);
///ตรง2
control(1,0,150,1,0,150,800);
///ซ้าย1
control(0,1,150,1,0,150,500);
///ถอย3
control(0,1,150,0,1,150,300);
///ตรง3
control(1,0,150,1,0,150,800);
}
void Motor(char mL, int pwmL, char mR, int pwmR, int dL) {
if (mL == 'F') {
digitalWrite(IN4, HIGH); digitalWrite(IN3, LOW);
}
else if (mL == 'B') {
digitalWrite(IN4, LOW); digitalWrite(IN3, HIGH);
}
else if (mL == 'S') {
digitalWrite(IN4, LOW); digitalWrite(IN3, LOW);
}
else {
digitalWrite(IN4, HIGH); digitalWrite(IN3, HIGH);
}
///////////////////////////////////////////////
if (mR == 'F') {
digitalWrite(IN2, HIGH); digitalWrite(IN1, LOW);
}
else if (mR == 'B') {
digitalWrite(IN2, LOW); digitalWrite(IN1, HIGH);
}
else if (mR == 'S') {
digitalWrite(IN2, LOW); digitalWrite(IN1, LOW);
}
else {
digitalWrite(IN2, HIGH); digitalWrite(IN1, HIGH);
}
////////////////////////////////////////////////
analogWrite(PWMA, pwmL);
analogWrite(PWMB, pwmR);
delay(dL);
}
void readSensor() {
sL2 = digitalRead(SL2);
sL = digitalRead(SL);
sC = digitalRead(SC);
sR = digitalRead(SR);
sR2 = digitalRead(SR2);
if (sL2 == 0) sL2 = 1; else sL2 = 0;
if (sL == 0) sL = 1; else sL = 0;
if (sC == 0) sC = 1; else sC = 0;
if (sR == 0) sR = 1; else sR = 0;
if (sR2 == 0) sR2 = 1; else sR2 = 0;
}
void trackLine1(int sl, int sr) { /////////// วิ่งตามเส้นแบบไม่หยุด
readSensor();
if (sL == 0 && sR == 0) {
Motor('F', sl, 'F', sr, 5);
}
else if (sL == 1 && sR == 0) {
Motor('S', sl, 'F', sr, 5);
}
else if (sL == 0 && sR == 1) {
Motor('F', sl, 'S', sr, 5);
}
else {
Motor('F', sl, 'F', sr, 5);
}
}
void trackLine2(int sl, int sr, int line) {
int count = 0;
while (count < line) {
///////////////////////////
trackLine1(sl, sr);
////////////////////////
readSensor();
if (sL2 == 1 && sR2 == 1) {
readSensor();
while (sL2 == 1 && sR2 == 1) {
Motor('F', sl, 'F', sr, 5);
readSensor();
}
count++;
}
}
Motor('S', sl, 'S', sr, 10);
}
/////////// วิ่งตามเส้นแบบนับเส้นตัดด้านซ้าย ///////////////////
void trackLine_L(int sl, int sr, int line) {
int count = 0;
while (count < line) {
///////////////////////////
trackLine1(sl, sr);
////////////////////////
readSensor();
if (sL2 == 1 && sL == 1) {
readSensor();
while (sL2 == 1 && sL == 1) {
Motor('F', sl, 'F', sr, 10);
readSensor();
}
count++;
}
}
Motor('S', sl, 'S', sr, 10);
}
/////// วิ่งตามเส้นแบบนับเส้นตัดด้านขวา ////////
void trackLine_R(int sl, int sr, int line) {
int count = 0;
while (count < line) {
///////////////////////////
trackLine1(sl, sr);
////////////////////////
readSensor();
if (sR == 1 && sR2 == 1) {
readSensor();
while (sR == 1 && sR2 == 1) {
Motor('F', sl, 'F', sr, 10);
readSensor();
}
count++;
}
}
Motor('S', sl, 'S', sr, 10);
}
///////////////////เลี้ยวซ้ายแบบ Delay///////////////////
void turnLeft_DL(int sl, int sr, int dL) {
Motor('B', sl, 'F', sr, dL);
Motor('S', sl, 'S', sr, 10);
}
///////////////////เลี้ยวขวาแบบ Delay///////////////////
void turnRight_DL(int sl, int sr, int dL) {
Motor('F', sl, 'B', sr, dL);
Motor('S', sl, 'S', sr, 10);
}
///////////////////เลี้ยวซ้ายแบบใช้ Sensor แบบ 3 แยก///////////////////
void turnLeft(int sl, int sr) {
Motor('F', sl, 'F', sr, 300);
readSensor();
while (sC == 0) {
Motor('B', sl, 'F', sr, 3);
readSensor();
}
Motor('S', sl, 'S', sr, 10);
}
///////////////////เลี้ยวซ้ายแบบใช้ Sensor แบบ 4 แยก///////////////////
void turnLeft_cut(int sl, int sr) {
Motor('F', sl, 'F', sr, 300);
Motor('B', sl, 'F', sr, 400);
readSensor();
while (sR == 0) {
Motor('B', sl, 'F', sr, 5);
readSensor();
Motor('S', sl, 'S', sr, 10);
}
Motor('S', sl, 'S', sr, 10);
}
///////////////////เลี้ยวขวาแบบใช้ Sensor แบบ 3 แยก///////////////////
void turnRight(int sl, int sr) {
Motor('F', sl, 'F', sr, 300);
readSensor();
while (sC == 0) {
Motor('F', sl, 'B', sr, 5);
readSensor();
}
delay(130);
Motor('S', sl, 'S', sr, 10);
}
///////////////////เลี้ยวขวาแบบใช้ Sensor แบบ 4 แยก///////////////////
void turnRight_cut(int sl, int sr) {
Motor('F', sl, 'F', sr, 200);
Motor('F', sl, 'B', sr, 600);
Motor('S', sl, 'S', sr ,100);
readSensor();
while (sR == 0) {
Motor('F', sl, 'B', sr, 5);
readSensor();
Motor('S', sl, 'S', sr ,10);
}
Motor('S', sl, 'S', sr, 10);
}
void wallLex1()
{
readsen();
while(clp==0)
{
readsen();
control(1,0,150,1,0,150,10);
}
///ถอย1
control(0,1,150,0,1,150,10);
///เลี้ยวซ้าย
control(0,1,150,1,0,130,600);
///ถอย2
control(0,1,150,0,1,150,300);
///เลี้ยวขวา
control(1,0,150,0,1,150,25);
}
void wallLex2()
{
readsen();
while(clp==0)
{
readsen();
control(1,0,150,1,0,150,10);
}
///ถอย1
control(0,1,150,0,1,150,40);
///เลี้ยวซ้าย
control(0,1,150,1,0,130,600);
///ถอย2
control(0,1,150,0,1,150,300);
///เลี้ยวขวา
control(1,0,150,0,1,150,25);
}
void servo (){
myservo.write(90); // สั่งให้ Servo หมุนไปองศาที่ 0
delay(400); // หน่วงเวลา 1000ms
myservo.write(180); // สั่งให้ Servo หมุนไปองศาที่ 90
delay(400); // หน่วงเวลา 1000ms
myservo.write(90); // สั่งให้ Servo หมุนไปองศาที่ 0
delay(400); // หน่วงเวลา 1000ms
}
void servoFIN (){
myservo.write(90); // สั่งให้ Servo หมุนไปองศาที่ 0
delay(400); // หน่วงเวลา 1000ms
myservo.write(180); // สั่งให้ Servo หมุนไปองศาที่ 90
delay(400); // หน่วงเวลา 1000ms
myservo.write(90); // สั่งให้ Servo หมุนไปองศาที่ 180
delay(400); // หน่วงเวลา 1000ms
myservo.write(180); // สั่งให้ Servo หมุนไปองศาที่ 90
delay(400); // หน่วงเวลา 1000ms
myservo.write(90); // สั่งให้ Servo หมุนไปองศาที่ 90
delay(400); // หน่วงเวลา 1000ms
myservo.write(180); // สั่งให้ Servo หมุนไปองศาที่ 90
delay(400); // หน่วงเวลา 1000ms
}
void loop()
{
// wallR();
// wallR();
// wallR();
// wallL();
// wallL();
// wallR();
// wallL();
// wallL();
// wallLex1();
// triRoad();
// wallR();
// wallL();
// wallR();
// wallR();
// wallR();
// wallLex2();
// control(0,0,150,0,0,150,100);
//
// servo();
/////line///////////
Motor('F', 150, 'F', 150, 700);
trackLine2(130, 130, 2);
///เลียวแรก
turnRight_cut(130, 130);
Motor('B', 150, 'F', 150, 100);
Motor('F', 150, 'F', 150, 200);
trackLine_L(130, 130, 1);
turnLeft_cut(130, 130);
Motor('S', 150, 'F', 150, 300);
Motor('F', 150, 'F', 150, 50);
Motor('F', 150, 'S', 150, 1200);
Motor('F', 150, 'F', 150, 700);
Motor('S', 0, 'S', 0, 200);
servoFIN();
Motor('S', 0, 'S', 0, 200);
servoFIN();
control(0,0,150,0,0,150,100);
control(0,1,150,1,0,150,100);
servo();
while (true);
}
| [
"85008989+NRdeARK@users.noreply.github.com"
] | 85008989+NRdeARK@users.noreply.github.com |
ace1d4f3d9a740220a210d53b39016e1d418460c | 08faaac5846804626fa3a612d461d81f004e795c | /lib/test.dart | 20c8fa55b0ec2f446f558d3df43d5736a11fc0b5 | [] | no_license | mmcodetester/flutterGetx | bc46243f5750f859839f0684375b84527a182c3e | 68b078cf10129d3c8353eb9928c61a881ef6d9b9 | refs/heads/master | 2022-12-19T01:19:12.702108 | 2020-10-01T06:58:35 | 2020-10-01T06:58:35 | 300,173,808 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19 | dart | //this is for test
| [
"noreply@github.com"
] | noreply@github.com |
f0b261514a414b25058479c6cf5392c578ee12ae | 3533bf109bb6424357de1586727cf083da40d09d | /uva-10921.cpp | 1f7303e44811ae1fc9cbfa5d39035ec8e8d31079 | [] | no_license | debugster/UVa | e9a0139f6287c0eda56ed6a6473daba60f6df635 | e9006f3aa3bc4ef4327fa4d4ec6be171bc8d4268 | refs/heads/master | 2022-11-04T20:41:39.722931 | 2022-10-28T13:33:53 | 2022-10-28T13:33:53 | 89,742,623 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 633 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
freopen("in.txt","r",stdin);
freopen("out.txt","w", stdout);
int value[26] = {2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 9};
int Len, i;
char number[50];
while (gets(number)) {
Len = strlen(number);
for (i = 0; i < Len; i++) {
if (number[i] >= 'A' && number[i] <= 'Z') {
printf("%d", value[number[i] - 'A']);
}
else {
printf("%c", number[i]);
}
}
printf("\n");
}
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
28537d00873edb396dac9c7c31bba502aaaa84e0 | fe3d0999a411422fdc5ae8ab5631a5c170d1d962 | /acm/shuoj/1902.cpp | b7992e56e4f7db2372bae79dba54ad8fa0fa2bf4 | [
"MIT"
] | permissive | randoruf/cpp | 7063feb1ea72d59902c5ad1b5f82ed161125a593 | c28bdb79ecb86f44a92971ac259910546dba29a7 | refs/heads/master | 2023-03-18T11:28:24.573297 | 2016-08-01T17:56:29 | 2016-08-01T17:56:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 949 | cpp | #include<bits/stdc++.h>
using namespace std;
#define INF 0x3f3f3f3f
const int maxn = 110;
int p[maxn];
int h[maxn];
int dp[maxn];
int main(){
int t;
cin>>t;
while(t--){
int n;
cin>>n;
memset(dp,INF,sizeof(dp));
/**记录节点从 1开始,思考更方便(统一dp和p,h的索引)*/
for(int i = 1;i<=n;i++) cin>>p[i]>>h[i];
/**初始化dp[0]是为dp[1]服务*/
dp[0] = 0;
for(int i = 1;i<=n;i++){
/*r和l的作用是不一样的,向左和向右的思路是不一样的。因为向右为正序,更新后的r
为向右推倒的最大位置。向左为逆序,l表示当前要被推到的位置**/
int r = p[i]+h[i];
for(int j = i;j<=n;j++){
if(p[j]<r){
dp[j] = min(dp[j],dp[i-1]+1);
r = max(p[j]+h[j],r);
}
else break;
}
int l = p[i];
for(int j = i;j<=n;j++){
if(p[j] - h[j] < l){
dp[j] = min(dp[j],dp[i-1]+1);
l = p[j];
}
}
}
cout<<dp[n]<<endl;
}
return 0;
}
| [
"18717899732@163.com"
] | 18717899732@163.com |
37a82bc41e8f5aed3ca0927ee6a8a74598948720 | 9be0544acb5c2efae3c3ef7ec6dadb25e86ebe73 | /bfs/bfs.cpp | 650737a3278142af47bac030a78780e8c9aa07cc | [] | no_license | SentryCast/algorithm | 774b5fc7dd0b1257bd6426305a2756220a35f729 | 2b93d99a29a94cac393e17b5da48cd4375ccae16 | refs/heads/master | 2023-02-27T20:03:29.840610 | 2021-02-08T10:40:06 | 2021-02-08T10:40:06 | 289,916,774 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,277 | cpp | #include <iostream>
#include <vector>
#include <fstream>
#include <queue>
#include <algorithm>
using namespace std;
int main() {
int n;
int s = 0;
ifstream fin("input.txt");
ofstream fout("output.txt");
fin >> n;
vector< vector <int> > g(n);
// from adj matrix to adj list
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
int num;
fin >> num;
if(num != 0)
g[i].push_back(j);
}
}
queue<int> q;
q.push(s);
vector<bool> used(n);
vector<int> d(n), p(n);
used[s] = true;
p[s] = -1;
while(!q.empty()) {
int v = q.front();
q.pop();
for(size_t i = 0; i < g[v].size(); ++i) {
int to = g[v][i];
if(!used[to]) {
used[to] = true;
q.push(to);
d[to] = d[v] + 1;
p[to] = v;
}
}
}
if(!used[7])
cout << "No path!" << endl;
else {
vector<int> path;
for(int v = 7; v!=-1; v = p[v])
path.push_back(v);
reverse (path.begin(), path.end());
cout << "Path: ";
for(size_t i = 0; i < path.size(); ++i)
cout << path[i] << " ";
}
}
| [
"railfuner@gmail.com"
] | railfuner@gmail.com |
149f52f58056379d212806c6288d611978e43785 | 03927d9cc6f6d90e84fed47f2a1c9509ee04a3f3 | /include/twit-library/utility/impl/percent_encoding.ipp | 8c0fb30ad5f9a5116438ebafd9ede46944286f8c | [] | no_license | godai0519/twit-library | 05f54f669c81898a2d1ed7d3f169d4a8f3de452d | 139c8f999a5d7922b991ccb801457afbb5d170e3 | refs/heads/master | 2021-01-18T13:50:41.339572 | 2013-03-16T12:50:29 | 2013-03-16T12:50:29 | 3,107,936 | 6 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,380 | ipp | #ifndef TWIT_LIB_UTILITY_PERCENT_ENCODING_IPP
#define TWIT_LIB_UTILITY_PERCENT_ENCODING_IPP
#include <boost/format.hpp>
#include "../percent_encoding.hpp"
#include "../radix.hpp"
namespace oauth{
namespace utility{
percent_encoder::percent_encoder()
{
}
percent_encoder::~percent_encoder() // = default;
{
}
template<typename InputIterator, typename OutputIterator>
OutputIterator percent_encoder::encode(InputIterator first, InputIterator last, OutputIterator out) const
{
while(first != last)
{
if((0x30<=*first && *first<=0x39) || (0x41<=*first && *first<=0x5a) || (0x61<=*first && *first<= 0x7a) || *first==0x2d || *first==0x2e || *first==0x5f || *first==0x7e)
{
*out++ = *first++;
}
else
{
std::string ss((boost::format("%%%02X") % (*first++ & 0xff)).str());
out = std::copy(ss.begin(), ss.end(), out);
}
}
return out;
}
template<typename InputIterator, typename OutputIterator>
OutputIterator percent_encoder::decode(InputIterator first, InputIterator last, OutputIterator out) const
{
while(first != last)
{
if(*first == '%') //%xx
{
*out++ = (char)hex_to_dec(std::string(first+1,first+3));
first+=3;
}
else *out++ = *first++;
}
return out;
}
} // namespace utility
} // namespace oauth
#endif
| [
"godai0519@gmail.com"
] | godai0519@gmail.com |
2ccc94b762c48d886319f85ef78e063e88c56a9c | 1bc9797c7f34ebdb4c91de1778292b84ba677813 | /compiler/env.cpp | b7f94274c8c39a45886ae95eb5dfe210f2dc1abf | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | synecdoche/basil | 8efade7d95b64f67e0d74cb5b25954411224bce0 | 575b4590d45144f80d74ddc0bfc133cad4b7c04d | refs/heads/master | 2023-09-04T04:07:40.508207 | 2021-11-07T19:16:01 | 2021-11-07T19:16:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,998 | cpp | /*
* Copyright (c) 2021, the Basil authors
* All rights reserved.
*
* This source code is licensed under the 3-Clause BSD License, the full text
* of which can be found in the LICENSE file in the root directory
* of this project.
*/
#include "env.h"
#include "eval.h"
#include "value.h"
namespace basil {
Env::Env(): parent(nullptr) {}
Env::Env(rc<Env> parent_in): parent(parent_in) {}
void Env::def(Symbol name, const Value& value) {
values.put(name, value);
}
optional<const Value&> Env::find(Symbol name) const {
auto it = values.find(name);
if (it == values.end()) {
if (parent) return parent->find(name);
return none<const Value&>();
}
else return some<const Value&>(it->second);
}
optional<Value&> Env::find(Symbol name) {
auto it = values.find(name);
if (it == values.end()) {
if (parent) return parent->find(name);
return none<Value&>();
}
else return some<Value&>(it->second);
}
void Env::detach(rc<Env> child) {
for (rc<Env>& env : children) if (env.is(child)) {
rc<Env> tmp = env;
env = children.back();
children.back() = tmp;
break;
}
if (children.size()) children.pop(); // remove child
}
rc<Env> Env::clone() const {
rc<Env> dup = ref<Env>(parent);
dup->values = values;
return dup;
}
rc<Env> extend(rc<Env> parent) {
rc<Env> env = ref<Env>(parent);
parent->children.push(env);
return env;
}
optional<rc<Env>> locate(rc<Env> env, Symbol name) {
auto it = env->values.find(name);
if (it != env->values.end()) return some<rc<Env>>(env);
else if (env->parent) return locate(env->parent, name);
else return none<rc<Env>>();
}
}
void write(stream& io, rc<basil::Env> env) {
write_pairs(io, env->values, "{", ": ", ", ", "}");
} | [
"9532786+elucent@users.noreply.github.com"
] | 9532786+elucent@users.noreply.github.com |
96a7afe19ac404369c853ee25b5347435a9912ce | 87f5c9967478a2affed23696b45fdf1b36a6eda2 | /adapted/pixelCheck/pixelCheck.ino | 37700cee32bf9c8cffefd0f90015522e4764d97a | [
"MIT"
] | permissive | tianshu-z/FastLED-adapted | a0c515e000ad53e149c4fc50edf0b6198b5a3ebd | 68401d3ab560b8abb14f3f4c4802ee5f39a41118 | refs/heads/master | 2020-06-26T08:09:47.632911 | 2019-07-30T05:35:01 | 2019-07-30T05:35:01 | 199,580,071 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 630 | ino | #include <FastLED.h>
#define LED_PIN 7
#define NUM_LEDS 50
#define LED_TYPE WS2811
#define COLOR_ORDER RGB
#define BRIGHTNESS 64
// Define the array of leds
CRGB leds[NUM_LEDS];
void setup() {
delay(1000);
LEDS.addLeds<LED_TYPE, LED_PIN, COLOR_ORDER>(leds, NUM_LEDS);
FastLED.setBrightness(BRIGHTNESS);
}
void loop() {
// Turn the LED on, then pause
FastLED.clear();
for(int i=0; i<NUM_LEDS; i++){
leds[i] = CRGB::BlueViolet;
FastLED.show();
delay(200);
// Now turn the LED off, then pause
leds[i] = CRGB::Black;
FastLED.show();
delay(50);
}
FastLED.clear();
}
| [
"noreply@github.com"
] | noreply@github.com |
331dd4ae2155fa74318376326ab1275ccf7a9a9b | 441a373052b7bea962e935e723b0121b0b23d73d | /rosbag2_cpp/src/rosbag2_cpp/writers/sequential_writer.cpp | 95a0791ad958d9df26dc486ff1b9f034e3d906ab | [
"Apache-2.0"
] | permissive | esteve/rosbag2 | b5666820d79b98333379d7b32e20956625f04129 | 7e5bd14b3c6d3c9041ff49d750ad47cf36742679 | refs/heads/master | 2022-09-19T01:53:45.280350 | 2022-08-26T22:05:18 | 2022-08-26T22:05:18 | 185,188,308 | 0 | 0 | Apache-2.0 | 2019-05-06T12:02:14 | 2019-05-06T12:02:13 | null | UTF-8 | C++ | false | false | 13,688 | cpp | // Copyright 2018, Bosch Software Innovations GmbH.
//
// 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 "rosbag2_cpp/writers/sequential_writer.hpp"
#include <algorithm>
#include <chrono>
#include <memory>
#include <stdexcept>
#include <string>
#include <sstream>
#include <unordered_map>
#include <utility>
#include <vector>
#include "rcpputils/filesystem_helper.hpp"
#include "rosbag2_cpp/info.hpp"
#include "rosbag2_cpp/logging.hpp"
#include "rosbag2_storage/storage_options.hpp"
namespace rosbag2_cpp
{
namespace writers
{
namespace
{
std::string strip_parent_path(const std::string & relative_path)
{
return rcpputils::fs::path(relative_path).filename().string();
}
} // namespace
SequentialWriter::SequentialWriter(
std::unique_ptr<rosbag2_storage::StorageFactoryInterface> storage_factory,
std::shared_ptr<SerializationFormatConverterFactoryInterface> converter_factory,
std::unique_ptr<rosbag2_storage::MetadataIo> metadata_io)
: storage_factory_(std::move(storage_factory)),
converter_factory_(std::move(converter_factory)),
storage_(nullptr),
metadata_io_(std::move(metadata_io)),
converter_(nullptr),
topics_names_to_info_(),
metadata_()
{}
SequentialWriter::~SequentialWriter()
{
close();
}
void SequentialWriter::init_metadata()
{
metadata_ = rosbag2_storage::BagMetadata{};
metadata_.storage_identifier = storage_->get_storage_identifier();
metadata_.starting_time = std::chrono::time_point<std::chrono::high_resolution_clock>(
std::chrono::nanoseconds::max());
metadata_.relative_file_paths = {strip_parent_path(storage_->get_relative_file_path())};
rosbag2_storage::FileInformation file_info{};
file_info.path = strip_parent_path(storage_->get_relative_file_path());
file_info.starting_time = std::chrono::time_point<std::chrono::high_resolution_clock>(
std::chrono::nanoseconds::max());
file_info.message_count = 0;
metadata_.custom_data = storage_options_.custom_data;
metadata_.files = {file_info};
}
void SequentialWriter::open(
const rosbag2_storage::StorageOptions & storage_options,
const ConverterOptions & converter_options)
{
base_folder_ = storage_options.uri;
storage_options_ = storage_options;
if (converter_options.output_serialization_format !=
converter_options.input_serialization_format)
{
converter_ = std::make_unique<Converter>(converter_options, converter_factory_);
}
rcpputils::fs::path db_path(storage_options.uri);
if (db_path.is_directory()) {
std::stringstream error;
error << "Database directory already exists (" << db_path.string() <<
"), can't overwrite existing database";
throw std::runtime_error{error.str()};
}
bool dir_created = rcpputils::fs::create_directories(db_path);
if (!dir_created) {
std::stringstream error;
error << "Failed to create database directory (" << db_path.string() << ").";
throw std::runtime_error{error.str()};
}
storage_options_.uri = format_storage_uri(base_folder_, 0);
storage_ = storage_factory_->open_read_write(storage_options_);
if (!storage_) {
throw std::runtime_error("No storage could be initialized. Abort");
}
if (storage_options_.max_bagfile_size != 0 &&
storage_options_.max_bagfile_size < storage_->get_minimum_split_file_size())
{
std::stringstream error;
error << "Invalid bag splitting size given. Please provide a value greater than " <<
storage_->get_minimum_split_file_size() << ". Specified value of " <<
storage_options.max_bagfile_size;
throw std::runtime_error{error.str()};
}
use_cache_ = storage_options.max_cache_size > 0u;
if (storage_options.snapshot_mode && !use_cache_) {
throw std::runtime_error(
"Max cache size must be greater than 0 when snapshot mode is enabled");
}
if (use_cache_) {
if (storage_options.snapshot_mode) {
message_cache_ = std::make_shared<rosbag2_cpp::cache::CircularMessageCache>(
storage_options.max_cache_size);
} else {
message_cache_ = std::make_shared<rosbag2_cpp::cache::MessageCache>(
storage_options.max_cache_size);
}
cache_consumer_ = std::make_unique<rosbag2_cpp::cache::CacheConsumer>(
message_cache_,
std::bind(&SequentialWriter::write_messages, this, std::placeholders::_1));
}
init_metadata();
}
void SequentialWriter::close()
{
if (use_cache_) {
// destructor will flush message cache
cache_consumer_.reset();
message_cache_.reset();
}
if (!base_folder_.empty()) {
finalize_metadata();
metadata_io_->write_metadata(base_folder_, metadata_);
}
storage_.reset(); // Necessary to ensure that the storage is destroyed before the factory
storage_factory_.reset();
}
void SequentialWriter::create_topic(const rosbag2_storage::TopicMetadata & topic_with_type)
{
if (topics_names_to_info_.find(topic_with_type.name) !=
topics_names_to_info_.end())
{
// nothing to do, topic already created
return;
}
if (!storage_) {
throw std::runtime_error("Bag is not open. Call open() before writing.");
}
rosbag2_storage::TopicInformation info{};
info.topic_metadata = topic_with_type;
bool insert_succeded = false;
{
std::lock_guard<std::mutex> lock(topics_info_mutex_);
const auto insert_res = topics_names_to_info_.insert(
std::make_pair(topic_with_type.name, info));
insert_succeded = insert_res.second;
}
if (!insert_succeded) {
std::stringstream errmsg;
errmsg << "Failed to insert topic \"" << topic_with_type.name << "\"!";
throw std::runtime_error(errmsg.str());
}
storage_->create_topic(topic_with_type);
if (converter_) {
converter_->add_topic(topic_with_type.name, topic_with_type.type);
}
}
void SequentialWriter::remove_topic(const rosbag2_storage::TopicMetadata & topic_with_type)
{
if (!storage_) {
throw std::runtime_error("Bag is not open. Call open() before removing.");
}
bool erased = false;
{
std::lock_guard<std::mutex> lock(topics_info_mutex_);
erased = topics_names_to_info_.erase(topic_with_type.name) > 0;
}
if (erased) {
storage_->remove_topic(topic_with_type);
} else {
std::stringstream errmsg;
errmsg << "Failed to remove the non-existing topic \"" <<
topic_with_type.name << "\"!";
throw std::runtime_error(errmsg.str());
}
}
std::string SequentialWriter::format_storage_uri(
const std::string & base_folder, uint64_t storage_count)
{
// Right now `base_folder_` is always just the folder name for where to install the bagfile.
// The name of the folder needs to be queried in case
// SequentialWriter is opened with a relative path.
std::stringstream storage_file_name;
storage_file_name << rcpputils::fs::path(base_folder).filename().string() << "_" << storage_count;
return (rcpputils::fs::path(base_folder) / storage_file_name.str()).string();
}
void SequentialWriter::switch_to_next_storage()
{
// consume remaining message cache
if (use_cache_) {
cache_consumer_->stop();
message_cache_->log_dropped();
}
storage_options_.uri = format_storage_uri(
base_folder_,
metadata_.relative_file_paths.size());
storage_ = storage_factory_->open_read_write(storage_options_);
if (!storage_) {
std::stringstream errmsg;
errmsg << "Failed to rollover bagfile to new file: \"" << storage_options_.uri << "\"!";
throw std::runtime_error(errmsg.str());
}
// Re-register all topics since we rolled-over to a new bagfile.
for (const auto & topic : topics_names_to_info_) {
storage_->create_topic(topic.second.topic_metadata);
}
if (use_cache_) {
// restart consumer thread for cache
cache_consumer_->start();
}
}
void SequentialWriter::split_bagfile()
{
auto info = std::make_shared<bag_events::BagSplitInfo>();
info->closed_file = storage_->get_relative_file_path();
switch_to_next_storage();
info->opened_file = storage_->get_relative_file_path();
metadata_.relative_file_paths.push_back(strip_parent_path(storage_->get_relative_file_path()));
rosbag2_storage::FileInformation file_info{};
file_info.starting_time = std::chrono::time_point<std::chrono::high_resolution_clock>(
std::chrono::nanoseconds::max());
file_info.path = strip_parent_path(storage_->get_relative_file_path());
metadata_.files.push_back(file_info);
callback_manager_.execute_callbacks(bag_events::BagEvent::WRITE_SPLIT, info);
}
void SequentialWriter::write(std::shared_ptr<const rosbag2_storage::SerializedBagMessage> message)
{
if (!storage_) {
throw std::runtime_error("Bag is not open. Call open() before writing.");
}
// Get TopicInformation handler for counting messages.
rosbag2_storage::TopicInformation * topic_information {nullptr};
try {
topic_information = &topics_names_to_info_.at(message->topic_name);
} catch (const std::out_of_range & /* oor */) {
std::stringstream errmsg;
errmsg << "Failed to write on topic '" << message->topic_name <<
"'. Call create_topic() before first write.";
throw std::runtime_error(errmsg.str());
}
const auto message_timestamp = std::chrono::time_point<std::chrono::high_resolution_clock>(
std::chrono::nanoseconds(message->time_stamp));
if (is_first_message_) {
// Update bagfile starting time
metadata_.starting_time = message_timestamp;
is_first_message_ = false;
}
if (should_split_bagfile(message_timestamp)) {
split_bagfile();
metadata_.files.back().starting_time = message_timestamp;
}
metadata_.starting_time = std::min(metadata_.starting_time, message_timestamp);
metadata_.files.back().starting_time =
std::min(metadata_.files.back().starting_time, message_timestamp);
const auto duration = message_timestamp - metadata_.files.back().starting_time;
metadata_.duration = std::max(metadata_.duration, duration);
const auto file_duration = message_timestamp - metadata_.files.back().starting_time;
metadata_.files.back().duration =
std::max(metadata_.files.back().duration, file_duration);
auto converted_msg = get_writeable_message(message);
metadata_.files.back().message_count++;
if (storage_options_.max_cache_size == 0u) {
// If cache size is set to zero, we write to storage directly
storage_->write(converted_msg);
++topic_information->message_count;
} else {
// Otherwise, use cache buffer
message_cache_->push(converted_msg);
}
}
bool SequentialWriter::take_snapshot()
{
if (!storage_options_.snapshot_mode) {
ROSBAG2_CPP_LOG_WARN("SequentialWriter take_snaphot called when snapshot mode is disabled");
return false;
}
message_cache_->notify_data_ready();
return true;
}
std::shared_ptr<const rosbag2_storage::SerializedBagMessage>
SequentialWriter::get_writeable_message(
std::shared_ptr<const rosbag2_storage::SerializedBagMessage> message)
{
return converter_ ? converter_->convert(message) : message;
}
bool SequentialWriter::should_split_bagfile(
const std::chrono::time_point<std::chrono::high_resolution_clock> & current_time) const
{
// Assume we aren't splitting
bool should_split = false;
// Splitting by size
if (storage_options_.max_bagfile_size !=
rosbag2_storage::storage_interfaces::MAX_BAGFILE_SIZE_NO_SPLIT)
{
should_split = (storage_->get_bagfile_size() >= storage_options_.max_bagfile_size);
}
// Splitting by time
if (storage_options_.max_bagfile_duration !=
rosbag2_storage::storage_interfaces::MAX_BAGFILE_DURATION_NO_SPLIT)
{
auto max_duration_ns = std::chrono::duration_cast<std::chrono::nanoseconds>(
std::chrono::seconds(storage_options_.max_bagfile_duration));
should_split = should_split ||
((current_time - metadata_.files.back().starting_time) > max_duration_ns);
}
return should_split;
}
void SequentialWriter::finalize_metadata()
{
metadata_.bag_size = 0;
for (const auto & path : metadata_.relative_file_paths) {
const auto bag_path = rcpputils::fs::path{path};
if (bag_path.exists()) {
metadata_.bag_size += bag_path.file_size();
}
}
metadata_.topics_with_message_count.clear();
metadata_.topics_with_message_count.reserve(topics_names_to_info_.size());
metadata_.message_count = 0;
for (const auto & topic : topics_names_to_info_) {
metadata_.topics_with_message_count.push_back(topic.second);
metadata_.message_count += topic.second.message_count;
}
}
void SequentialWriter::write_messages(
const std::vector<std::shared_ptr<const rosbag2_storage::SerializedBagMessage>> & messages)
{
if (messages.empty()) {
return;
}
storage_->write(messages);
std::lock_guard<std::mutex> lock(topics_info_mutex_);
for (const auto & msg : messages) {
if (topics_names_to_info_.find(msg->topic_name) != topics_names_to_info_.end()) {
topics_names_to_info_[msg->topic_name].message_count++;
}
}
}
void SequentialWriter::add_event_callbacks(const bag_events::WriterEventCallbacks & callbacks)
{
if (callbacks.write_split_callback) {
callback_manager_.add_event_callback(
callbacks.write_split_callback,
bag_events::BagEvent::WRITE_SPLIT);
}
}
} // namespace writers
} // namespace rosbag2_cpp
| [
"noreply@github.com"
] | noreply@github.com |
c15b13e3e20ae093f1263a61a9fd6392f07f2d20 | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /content/browser/web_package/mock_web_bundle_reader_factory.cc | 2f8f1d2c24538ae115493df4a953383275e9dacc | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 9,540 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/web_package/mock_web_bundle_reader_factory.h"
#include "base/bind.h"
#include "base/callback.h"
#include "base/files/file.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/macros.h"
#include "base/optional.h"
#include "base/run_loop.h"
#include "base/test/bind_test_util.h"
#include "content/browser/web_package/web_bundle_reader.h"
#include "content/browser/web_package/web_bundle_source.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#include "net/base/filename_util.h"
#include "services/data_decoder/public/cpp/test_support/in_process_data_decoder.h"
#include "services/data_decoder/public/mojom/web_bundle_parser.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
namespace {
class MockParser final : public data_decoder::mojom::WebBundleParser {
public:
MockParser(
mojo::PendingReceiver<data_decoder::mojom::WebBundleParser> receiver)
: receiver_(this, std::move(receiver)) {}
~MockParser() override = default;
void RunMetadataCallback(data_decoder::mojom::BundleMetadataPtr metadata) {
std::move(metadata_callback_).Run(std::move(metadata), nullptr);
}
void RunResponseCallback(data_decoder::mojom::BundleResponsePtr response) {
std::move(response_callback_).Run(std::move(response), nullptr);
}
void WaitUntilParseMetadataCalled(base::OnceClosure closure) {
if (metadata_callback_.is_null())
wait_parse_metadata_callback_ = std::move(closure);
else
std::move(closure).Run();
}
void WaitUntilParseResponseCalled(
base::OnceCallback<void(data_decoder::mojom::BundleResponseLocationPtr)>
callback) {
if (response_callback_.is_null())
wait_parse_response_callback_ = std::move(callback);
else
std::move(callback).Run(std::move(parse_response_args_));
}
private:
// data_decoder::mojom::WebBundleParser implementation.
void ParseMetadata(ParseMetadataCallback callback) override {
metadata_callback_ = std::move(callback);
if (!wait_parse_metadata_callback_.is_null())
std::move(wait_parse_metadata_callback_).Run();
}
void ParseResponse(uint64_t response_offset,
uint64_t response_length,
ParseResponseCallback callback) override {
response_callback_ = std::move(callback);
parse_response_args_ = data_decoder::mojom::BundleResponseLocation::New(
response_offset, response_length);
if (!wait_parse_response_callback_.is_null()) {
std::move(wait_parse_response_callback_)
.Run(std::move(parse_response_args_));
}
}
mojo::Receiver<data_decoder::mojom::WebBundleParser> receiver_;
ParseMetadataCallback metadata_callback_;
ParseResponseCallback response_callback_;
data_decoder::mojom::BundleResponseLocationPtr parse_response_args_;
base::OnceClosure wait_parse_metadata_callback_;
base::OnceCallback<void(data_decoder::mojom::BundleResponseLocationPtr)>
wait_parse_response_callback_;
DISALLOW_COPY_AND_ASSIGN(MockParser);
};
class MockParserFactory final
: public data_decoder::mojom::WebBundleParserFactory {
public:
MockParserFactory() {}
~MockParserFactory() override = default;
void AddReceiver(
mojo::PendingReceiver<data_decoder::mojom::WebBundleParserFactory>
receiver) {
receivers_.Add(this, std::move(receiver));
}
void WaitUntilParseMetadataCalled(base::OnceClosure closure) {
if (parser_)
parser_->WaitUntilParseMetadataCalled(std::move(closure));
else
wait_parse_metadata_callback_ = std::move(closure);
}
void RunMetadataCallback(data_decoder::mojom::BundleMetadataPtr metadata) {
base::RunLoop run_loop;
WaitUntilParseMetadataCalled(run_loop.QuitClosure());
run_loop.Run();
ASSERT_TRUE(parser_);
parser_->RunMetadataCallback(std::move(metadata));
}
void RunResponseCallback(
data_decoder::mojom::BundleResponseLocationPtr expected_parse_args,
data_decoder::mojom::BundleResponsePtr response) {
ASSERT_TRUE(parser_);
base::RunLoop run_loop;
parser_->WaitUntilParseResponseCalled(base::BindLambdaForTesting(
[&run_loop, &expected_parse_args](
data_decoder::mojom::BundleResponseLocationPtr parse_args) {
EXPECT_EQ(expected_parse_args->offset, parse_args->offset);
EXPECT_EQ(expected_parse_args->length, parse_args->length);
run_loop.Quit();
}));
run_loop.Run();
parser_->RunResponseCallback(std::move(response));
}
private:
// data_decoder::mojom::WebBundleParserFactory implementation.
void GetParserForFile(
mojo::PendingReceiver<data_decoder::mojom::WebBundleParser> receiver,
base::File file) override {
parser_ = std::make_unique<MockParser>(std::move(receiver));
if (!wait_parse_metadata_callback_.is_null()) {
parser_->WaitUntilParseMetadataCalled(
std::move(wait_parse_metadata_callback_));
}
}
void GetParserForDataSource(
mojo::PendingReceiver<data_decoder::mojom::WebBundleParser> receiver,
mojo::PendingRemote<data_decoder::mojom::BundleDataSource> data_source)
override {
NOTREACHED();
}
std::unique_ptr<MockParser> parser_;
mojo::ReceiverSet<data_decoder::mojom::WebBundleParserFactory> receivers_;
base::OnceClosure wait_parse_metadata_callback_;
DISALLOW_COPY_AND_ASSIGN(MockParserFactory);
};
class MockWebBundleReaderFactoryImpl final : public MockWebBundleReaderFactory {
public:
MockWebBundleReaderFactoryImpl() : MockWebBundleReaderFactory() {}
~MockWebBundleReaderFactoryImpl() override {
EXPECT_TRUE(!temp_dir_.IsValid() || temp_dir_.Delete())
<< temp_dir_.GetPath();
}
scoped_refptr<WebBundleReader> CreateReader(
const std::string& test_file_data) override {
DCHECK(!factory_);
if (!temp_dir_.CreateUniqueTempDir() ||
!CreateTemporaryFileInDir(temp_dir_.GetPath(), &temp_file_path_) ||
(test_file_data.size() !=
static_cast<size_t>(base::WriteFile(
temp_file_path_, test_file_data.data(), test_file_data.size())))) {
return nullptr;
}
auto reader = base::MakeRefCounted<WebBundleReader>(
WebBundleSource::MaybeCreateFromTrustedFileUrl(
net::FilePathToFileURL(temp_file_path_)));
factory_ = std::make_unique<MockParserFactory>();
in_process_data_decoder_.service()
.SetWebBundleParserFactoryBinderForTesting(base::BindRepeating(
&MockParserFactory::AddReceiver, base::Unretained(factory_.get())));
return reader;
}
void ReadAndFullfillMetadata(
WebBundleReader* reader,
data_decoder::mojom::BundleMetadataPtr metadata,
WebBundleReader::MetadataCallback callback) override {
ASSERT_TRUE(factory_);
DCHECK(reader);
base::RunLoop run_loop;
reader->ReadMetadata(base::BindOnce(
[](base::OnceClosure quit_closure,
WebBundleReader::MetadataCallback callback,
data_decoder::mojom::BundleMetadataParseErrorPtr error) {
std::move(callback).Run(std::move(error));
std::move(quit_closure).Run();
},
run_loop.QuitClosure(), std::move(callback)));
factory_->RunMetadataCallback(std::move(metadata));
run_loop.Run();
}
void ReadAndFullfillResponse(
WebBundleReader* reader,
const network::ResourceRequest& resource_request,
data_decoder::mojom::BundleResponseLocationPtr expected_parse_args,
data_decoder::mojom::BundleResponsePtr response,
WebBundleReader::ResponseCallback callback) override {
ASSERT_TRUE(factory_);
DCHECK(reader);
base::RunLoop run_loop;
reader->ReadResponse(
resource_request, "" /* accept_langs */,
base::BindOnce(
[](base::OnceClosure quit_closure,
WebBundleReader::ResponseCallback callback,
data_decoder::mojom::BundleResponsePtr response,
data_decoder::mojom::BundleResponseParseErrorPtr error) {
std::move(callback).Run(std::move(response), std::move(error));
std::move(quit_closure).Run();
},
run_loop.QuitClosure(), std::move(callback)));
factory_->RunResponseCallback(std::move(expected_parse_args),
std::move(response));
run_loop.Run();
}
void FullfillResponse(
data_decoder::mojom::BundleResponseLocationPtr expected_parse_args,
data_decoder::mojom::BundleResponsePtr response) override {
ASSERT_TRUE(factory_);
factory_->RunResponseCallback(std::move(expected_parse_args),
std::move(response));
}
private:
data_decoder::test::InProcessDataDecoder in_process_data_decoder_;
std::string test_file_data_;
base::ScopedTempDir temp_dir_;
base::FilePath temp_file_path_;
std::unique_ptr<MockParserFactory> factory_;
DISALLOW_COPY_AND_ASSIGN(MockWebBundleReaderFactoryImpl);
};
} // namespace
// static
std::unique_ptr<MockWebBundleReaderFactory>
MockWebBundleReaderFactory::Create() {
return std::make_unique<MockWebBundleReaderFactoryImpl>();
}
} // namespace content
| [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
7e4bb17e2c0ba4d00786d865d1c04e5dac401e24 | cef8d1ddd7c64582b56458b0ebf3fb39423e3f67 | /third_party/OpenMesh-8.1/src/OpenMesh/Tools/Utils/Gnuplot.cc | 88e91607f10abe62366c9242295b4d4cf4b213f9 | [
"MIT",
"BSD-3-Clause"
] | permissive | dantros/grafica_cpp | ecb9c093a7270933fe27bb6b018380c6bdff006f | 1ad0283295e79b755c546f50944f433c290b5c25 | refs/heads/dev | 2023-08-26T04:55:34.883134 | 2021-10-18T04:24:36 | 2021-10-18T04:24:36 | 356,721,014 | 1 | 5 | MIT | 2021-10-18T00:40:53 | 2021-04-10T23:27:32 | C++ | UTF-8 | C++ | false | false | 11,505 | cc | ////////////////////////////////////////////
//
// A C++ interface to gnuplot.
//
// This is a direct translation from the C interface
// written by N. Devillard (which is available from
// http://ndevilla.free.fr/gnuplot/).
//
// As in the C interface this uses pipes and so wont
// run on a system that does'nt have POSIX pipe
// support
//
// Rajarshi Guha
// <rajarshi@presidency.com>
//
// 07/03/03
//
////////////////////////////////////////////
#include "Gnuplot.hh"
#include <stdarg.h>
#ifdef WIN32
# include <io.h>
#else
# include <fcntl.h> // X_OK
# include <unistd.h> // access
# define PATH_MAXNAMESZ 4096
#endif
#include <iostream>
#include <fstream>
#include <sstream>
#include <list>
#include <algorithm>
#if defined(WIN32)
# define pclose _pclose
# define popen _popen
# define access _access
# define ACCESS_OK 0
# define PATH_SEP ";"
# define MKTEMP_AND_CHECK_FAILED(name) (_mktemp(name) == nullptr)
#else
# define ACCESS_OK X_OK
# define PATH_SEP ":"
# define MKTEMP_AND_CHECK_FAILED(name) (mkstemp(name) == -1)
#endif
#ifndef WIN32
#include <string.h>
#else
#ifdef __MINGW32__
#include <stdlib.h>
#include <string.h>
#endif
#endif
using namespace std;
/////////////////////////////
//
// A string tokenizer taken from
// http://www.sunsite.ualberta.ca/
// Documentation/Gnu/libstdc++-2.90.8/html/21_strings/stringtok_std_h.txt
//
/////////////////////////////
template <typename Container>
void
stringtok (Container &container, string const &in,
const char * const delimiters = " \t\n")
{
const string::size_type len = in.length();
string::size_type i = 0;
while ( i < len )
{
// eat leading whitespace
i = in.find_first_not_of (delimiters, i);
if (i == string::npos)
return; // nothing left but white space
// find the end of the token
string::size_type j = in.find_first_of (delimiters, i);
// push token
if (j == string::npos)
{
container.push_back (in.substr(i));
return;
} else
container.push_back (in.substr(i, j-i));
// set up for next loop
i = j + 1;
}
}
// ----------------------------------------------------------------------------
#ifdef WIN32
std::string Gnuplot::gnuplot_executable_ = "pgnuplot.exe";
#else
std::string Gnuplot::gnuplot_executable_ = "gnuplot";
#endif
// ----------------------------------------------------------------------------
Gnuplot::Gnuplot(void)
{
init();
set_style("points");
}
// ----------------------------------------------------------------------------
Gnuplot::Gnuplot(const string &style)
{
init();
set_style(style);
}
// ----------------------------------------------------------------------------
Gnuplot::Gnuplot(const string &title,
const string &style,
const string &labelx, const string &labely,
vector<double> x, vector<double> y)
{
init();
if (x.empty() || y.empty() )
throw GnuplotException("vectors too small");
if (style == "")
this->set_style("lines");
else
this->set_style(style);
if (labelx == "")
this->set_xlabel("X");
else
this->set_xlabel(labelx);
if (labely == "")
this->set_ylabel("Y");
else
this->set_ylabel(labely);
this->plot_xy(x,y,title);
cout << "Press enter to continue" << endl;
while (getchar() != '\n'){}
}
// ----------------------------------------------------------------------------
Gnuplot::Gnuplot(const string &title, const string &style,
const string &labelx, const string &labely,
vector<double> x)
{
init();
if (x.empty() )
throw GnuplotException("vector too small");
if (!this->gnucmd)
throw GnuplotException("Could'nt open connection to gnuplot");
if (style == "")
this->set_style("lines");
else
this->set_style(style);
if (labelx == "")
this->set_xlabel("X");
else
this->set_xlabel(labelx);
if (labely == "")
this->set_ylabel("Y");
else
this->set_ylabel(labely);
this->plot_x(x,title);
cout << "Press enter to continue" << endl;
while (getchar() != '\n'){}
}
// ----------------------------------------------------------------------------
Gnuplot::~Gnuplot()
{
if ( !((this->to_delete).empty()) )
{
for (size_t i = 0; i < this->to_delete.size(); i++)
remove(this->to_delete[i].c_str());
}
if (pclose(this->gnucmd) == -1)
cerr << "Problem closing communication to gnuplot" << endl;
return;
}
// ----------------------------------------------------------------------------
bool Gnuplot::get_program_path(const string& pname)
{
list<string> ls;
char *path;
path = getenv("PATH");
if (!path)
return false;
stringtok(ls, path, PATH_SEP);
for (list<string>::const_iterator i = ls.begin(); i != ls.end(); ++i)
{
string tmp = (*i) + "/" + pname;
if ( access(tmp.c_str(), ACCESS_OK) == 0 )
return true;
}
return false;
}
// ----------------------------------------------------------------------------
void Gnuplot::reset_plot(void)
{
if ( !(this->to_delete.empty()) )
{
for (size_t i = 0; i < this->to_delete.size(); i++)
remove(this->to_delete[i].c_str());
}
this->nplots = 0;
return;
}
// ----------------------------------------------------------------------------
void Gnuplot::set_style(const string &stylestr)
{
if (stylestr != "lines" &&
stylestr != "points" &&
stylestr != "linespoints" &&
stylestr != "impulses" &&
stylestr != "dots" &&
stylestr != "steps" &&
stylestr != "errorbars" &&
stylestr != "boxes" &&
stylestr != "boxerrorbars")
this->pstyle = string("points");
else
this->pstyle = stylestr;
}
// ----------------------------------------------------------------------------
void Gnuplot::cmd(const char *_cmd, ...)
{
va_list ap;
char local_cmd[GP_CMD_SIZE];
va_start(ap, _cmd);
vsprintf(local_cmd, _cmd, ap);
va_end(ap);
strcat(local_cmd,"\n");
fputs(local_cmd,this->gnucmd);
fflush(this->gnucmd);
return;
}
// ----------------------------------------------------------------------------
void Gnuplot::set_ylabel(const string &label)
{
ostringstream cmdstr;
cmdstr << "set xlabel \"" << label << "\"";
this->cmd(cmdstr.str().c_str());
return;
}
// ----------------------------------------------------------------------------
void Gnuplot::set_xlabel(const string &label)
{
ostringstream cmdstr;
cmdstr << "set xlabel \"" << label << "\"";
this->cmd(cmdstr.str().c_str());
return;
}
// ----------------------------------------------------------------------------
// Plots a linear equation (where you supply the
// slope and intercept)
//
void Gnuplot::plot_slope(double a, double b, const string &title)
{
ostringstream stitle;
ostringstream cmdstr;
if (title == "")
stitle << "no title";
else
stitle << title;
if (this->nplots > 0)
cmdstr << "replot " << a << " * x + " << b << " title \"" << stitle.str() << "\" with " << pstyle;
else
cmdstr << "plot " << a << " * x + " << b << " title \"" << stitle.str() << "\" with " << pstyle;
this->cmd(cmdstr.str().c_str());
this->nplots++;
return;
}
// ----------------------------------------------------------------------------
// Plot an equation which is supplied as a string
//
void Gnuplot::plot_equation(const string &equation, const string &title)
{
string titlestr, plotstr;
ostringstream cmdstr;
if (title == "")
titlestr = "no title";
else
titlestr = title;
if (this->nplots > 0)
plotstr = "replot";
else
plotstr = "plot";
cmdstr << plotstr << " " << equation << " " << "title \"" << titlestr << "\" with " << this->pstyle;
this->cmd(cmdstr.str().c_str());
this->nplots++;
return;
}
// ----------------------------------------------------------------------------
void Gnuplot::plot_x(vector<double> d, const string &title)
{
ofstream tmp;
ostringstream cmdstr;
#ifdef WIN32
char name[] = "gnuplotiXXXXXX";
#else
char name[] = "/tmp/gnuplotiXXXXXX";
#endif
if (this->to_delete.size() == GP_MAX_TMP_FILES - 1)
{
cerr << "Maximum number of temporary files reached (" << GP_MAX_TMP_FILES << "): cannot open more files" << endl;
return;
}
//
//open temporary files for output
#ifdef WIN32
if ( _mktemp(name) == nullptr)
#else
if ( mkstemp(name) == -1 )
#endif
{
cerr << "Cannot create temporary file: exiting plot" << endl;
return;
}
tmp.open(name);
if (tmp.bad())
{
cerr << "Cannot create temorary file: exiting plot" << endl;
return;
}
//
// Save the temporary filename
//
this->to_delete.push_back(name);
//
// write the data to file
//
for (size_t i = 0; i < d.size(); i++)
tmp << d[i] << endl;
tmp.flush();
tmp.close();
//
// command to be sent to gnuplot
//
cmdstr << ( (this->nplots > 0) ? "replot " : "plot ");
if (title.empty())
cmdstr << "\"" << name << "\" with " << this->pstyle;
else
cmdstr << "\"" << name << "\" title \"" << title << "\" with "
<< this->pstyle;
//
// Do the actual plot
//
this->cmd(cmdstr.str().c_str());
this->nplots++;
return;
}
// ----------------------------------------------------------------------------
void Gnuplot::plot_xy(vector<double> x, vector<double> y, const string &title)
{
ofstream tmp;
ostringstream cmdstr;
#ifdef WIN32
char name[] = "gnuplotiXXXXXX";
#else
char name[] = "/tmp/gnuplotiXXXXXX";
#endif
// should raise an exception
if (x.size() != y.size())
return;
if ((this->to_delete).size() == GP_MAX_TMP_FILES - 1)
{
std::stringstream s;
s << "Maximum number of temporary files reached ("
<< GP_MAX_TMP_FILES << "): cannot open more files" << endl;
throw GnuplotException( s.str() );
}
//open temporary files for output
//
if (MKTEMP_AND_CHECK_FAILED(name))
throw GnuplotException("Cannot create temporary file: exiting plot");
tmp.open(name);
if (tmp.bad())
throw GnuplotException("Cannot create temorary file: exiting plot");
// Save the temporary filename
//
this->to_delete.push_back(name);
// Write the data to file
//
size_t N = std::min(x.size(), y.size());
for (size_t i = 0; i < N; i++)
tmp << x[i] << " " << y[i] << endl;
tmp.flush();
tmp.close();
//
// command to be sent to gnuplot
//
if (this->nplots > 0)
cmdstr << "replot ";
else cmdstr << "plot ";
if (title == "")
cmdstr << "\"" << name << "\" with " << this->pstyle;
else
cmdstr << "\"" << name << "\" title \"" << title << "\" with " << this->pstyle;
//
// Do the actual plot
//
this->cmd(cmdstr.str().c_str());
this->nplots++;
return;
}
// ----------------------------------------------------------------------------
void Gnuplot::init()
{
if (!this->get_program_path(gnuplot_executable_))
{
this->valid = false;
throw GnuplotException("Can't find gnuplot in your PATH");
}
this->gnucmd = popen(gnuplot_executable_.c_str(),"w");
if (!this->gnucmd)
{
this->valid = false;
throw GnuplotException("Couldn't open connection to gnuplot");
}
this->nplots = 0;
this->valid = true;
}
// ============================================================================
| [
"5720443-dacalderon@users.noreply.gitlab.com"
] | 5720443-dacalderon@users.noreply.gitlab.com |
6f0bbd9aa8317ae40dc38804ef91b499afdf7d7e | db6a40f507b0b24a7194b881f43e47d3889e35be | /src/addrman.h | 7ca9c90fec75a472e975871771c617f8c0ab88cb | [
"MIT"
] | permissive | konchunas/LRMcoin | ef55d5ed3333a8e72788ce229586848c7974764a | 82fc271b4b46ac8d6d27e26812bb6bf6851c2854 | refs/heads/master | 2020-05-09T18:46:20.878028 | 2019-04-18T12:41:13 | 2019-04-18T12:41:13 | 181,354,634 | 0 | 0 | MIT | 2019-04-14T18:52:42 | 2019-04-14T18:52:42 | null | UTF-8 | C++ | false | false | 18,434 | h | // Copyright (c) 2012 Pieter Wuille
// Copyright (c) 2012-2014 The Bitcoin developers
// Copyright (c) 2017-2018 The PIVX developers
// Copyright (c) 2018 The LRMcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_ADDRMAN_H
#define BITCOIN_ADDRMAN_H
#include "netbase.h"
#include "protocol.h"
#include "random.h"
#include "sync.h"
#include "timedata.h"
#include "util.h"
#include <map>
#include <set>
#include <stdint.h>
#include <vector>
/**
* Extended statistics about a CAddress
*/
class CAddrInfo : public CAddress
{
private:
//! where knowledge about this address first came from
CNetAddr source;
//! last successful connection by us
int64_t nLastSuccess;
//! last try whatsoever by us:
// int64_t CAddress::nLastTry
//! connection attempts since last successful attempt
int nAttempts;
//! reference count in new sets (memory only)
int nRefCount;
//! in tried set? (memory only)
bool fInTried;
//! position in vRandom
int nRandomPos;
friend class CAddrMan;
public:
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion)
{
READWRITE(*(CAddress*)this);
READWRITE(source);
READWRITE(nLastSuccess);
READWRITE(nAttempts);
}
void Init()
{
nLastSuccess = 0;
nLastTry = 0;
nAttempts = 0;
nRefCount = 0;
fInTried = false;
nRandomPos = -1;
}
CAddrInfo(const CAddress& addrIn, const CNetAddr& addrSource) : CAddress(addrIn), source(addrSource)
{
Init();
}
CAddrInfo() : CAddress(), source()
{
Init();
}
//! Calculate in which "tried" bucket this entry belongs
int GetTriedBucket(const uint256& nKey) const;
//! Calculate in which "new" bucket this entry belongs, given a certain source
int GetNewBucket(const uint256& nKey, const CNetAddr& src) const;
//! Calculate in which "new" bucket this entry belongs, using its default source
int GetNewBucket(const uint256& nKey) const
{
return GetNewBucket(nKey, source);
}
//! Calculate in which position of a bucket to store this entry.
int GetBucketPosition(const uint256& nKey, bool fNew, int nBucket) const;
//! Determine whether the statistics about this entry are bad enough so that it can just be deleted
bool IsTerrible(int64_t nNow = GetAdjustedTime()) const;
//! Calculate the relative chance this entry should be given when selecting nodes to connect to
double GetChance(int64_t nNow = GetAdjustedTime()) const;
};
/** Stochastic address manager
*
* Design goals:
* * Keep the address tables in-memory, and asynchronously dump the entire to able in peers.dat.
* * Make sure no (localized) attacker can fill the entire table with his nodes/addresses.
*
* To that end:
* * Addresses are organized into buckets.
* * Address that have not yet been tried go into 1024 "new" buckets.
* * Based on the address range (/16 for IPv4) of source of the information, 64 buckets are selected at random
* * The actual bucket is chosen from one of these, based on the range the address itself is located.
* * One single address can occur in up to 8 different buckets, to increase selection chances for addresses that
* are seen frequently. The chance for increasing this multiplicity decreases exponentially.
* * When adding a new address to a full bucket, a randomly chosen entry (with a bias favoring less recently seen
* ones) is removed from it first.
* * Addresses of nodes that are known to be accessible go into 256 "tried" buckets.
* * Each address range selects at random 8 of these buckets.
* * The actual bucket is chosen from one of these, based on the full address.
* * When adding a new good address to a full bucket, a randomly chosen entry (with a bias favoring less recently
* tried ones) is evicted from it, back to the "new" buckets.
* * Bucket selection is based on cryptographic hashing, using a randomly-generated 256-bit key, which should not
* be observable by adversaries.
* * Several indexes are kept for high performance. Defining DEBUG_ADDRMAN will introduce frequent (and expensive)
* consistency checks for the entire data structure.
*/
//! total number of buckets for tried addresses
#define ADDRMAN_TRIED_BUCKET_COUNT 256
//! total number of buckets for new addresses
#define ADDRMAN_NEW_BUCKET_COUNT 1024
//! maximum allowed number of entries in buckets for new and tried addresses
#define ADDRMAN_BUCKET_SIZE 64
//! over how many buckets entries with tried addresses from a single group (/16 for IPv4) are spread
#define ADDRMAN_TRIED_BUCKETS_PER_GROUP 8
//! over how many buckets entries with new addresses originating from a single group are spread
#define ADDRMAN_NEW_BUCKETS_PER_SOURCE_GROUP 64
//! in how many buckets for entries with new addresses a single address may occur
#define ADDRMAN_NEW_BUCKETS_PER_ADDRESS 8
//! how old addresses can maximally be
#define ADDRMAN_HORIZON_DAYS 30
//! after how many failed attempts we give up on a new node
#define ADDRMAN_RETRIES 3
//! how many successive failures are allowed ...
#define ADDRMAN_MAX_FAILURES 10
//! ... in at least this many days
#define ADDRMAN_MIN_FAIL_DAYS 7
//! the maximum percentage of nodes to return in a getaddr call
#define ADDRMAN_GETADDR_MAX_PCT 23
//! the maximum number of nodes to return in a getaddr call
#define ADDRMAN_GETADDR_MAX 2500
/**
* Stochastical (IP) address manager
*/
class CAddrMan
{
private:
//! critical section to protect the inner data structures
mutable CCriticalSection cs;
//! secret key to randomize bucket select with
uint256 nKey;
//! last used nId
int nIdCount;
//! table with information about all nIds
std::map<int, CAddrInfo> mapInfo;
//! find an nId based on its network address
std::map<CNetAddr, int> mapAddr;
//! randomly-ordered vector of all nIds
std::vector<int> vRandom;
// number of "tried" entries
int nTried;
//! list of "tried" buckets
int vvTried[ADDRMAN_TRIED_BUCKET_COUNT][ADDRMAN_BUCKET_SIZE];
//! number of (unique) "new" entries
int nNew;
//! list of "new" buckets
int vvNew[ADDRMAN_NEW_BUCKET_COUNT][ADDRMAN_BUCKET_SIZE];
protected:
//! Find an entry.
CAddrInfo* Find(const CNetAddr& addr, int* pnId = NULL);
//! find an entry, creating it if necessary.
//! nTime and nServices of the found node are updated, if necessary.
CAddrInfo* Create(const CAddress& addr, const CNetAddr& addrSource, int* pnId = NULL);
//! Swap two elements in vRandom.
void SwapRandom(unsigned int nRandomPos1, unsigned int nRandomPos2);
//! Move an entry from the "new" table(s) to the "tried" table
void MakeTried(CAddrInfo& info, int nId);
//! Delete an entry. It must not be in tried, and have refcount 0.
void Delete(int nId);
//! Clear a position in a "new" table. This is the only place where entries are actually deleted.
void ClearNew(int nUBucket, int nUBucketPos);
//! Mark an entry "good", possibly moving it from "new" to "tried".
void Good_(const CService& addr, int64_t nTime);
//! Add an entry to the "new" table.
bool Add_(const CAddress& addr, const CNetAddr& source, int64_t nTimePenalty);
//! Mark an entry as attempted to connect.
void Attempt_(const CService& addr, int64_t nTime);
//! Select an address to connect to.
//! nUnkBias determines how much to favor new addresses over tried ones (min=0, max=100)
CAddress Select_();
#ifdef DEBUG_ADDRMAN
//! Perform consistency check. Returns an error code or zero.
int Check_();
#endif
//! Select several addresses at once.
void GetAddr_(std::vector<CAddress>& vAddr);
//! Mark an entry as currently-connected-to.
void Connected_(const CService& addr, int64_t nTime);
public:
/**
* serialized format:
* * version byte (currently 1)
* * 0x20 + nKey (serialized as if it were a vector, for backward compatibility)
* * nNew
* * nTried
* * number of "new" buckets XOR 2**30
* * all nNew addrinfos in vvNew
* * all nTried addrinfos in vvTried
* * for each bucket:
* * number of elements
* * for each element: index
*
* 2**30 is xorred with the number of buckets to make addrman deserializer v0 detect it
* as incompatible. This is necessary because it did not check the version number on
* deserialization.
*
* Notice that vvTried, mapAddr and vVector are never encoded explicitly;
* they are instead reconstructed from the other information.
*
* vvNew is serialized, but only used if ADDRMAN_UNKOWN_BUCKET_COUNT didn't change,
* otherwise it is reconstructed as well.
*
* This format is more complex, but significantly smaller (at most 1.5 MiB), and supports
* changes to the ADDRMAN_ parameters without breaking the on-disk structure.
*
* We don't use ADD_SERIALIZE_METHODS since the serialization and deserialization code has
* very little in common.
*/
template <typename Stream>
void Serialize(Stream& s, int nType, int nVersionDummy) const
{
LOCK(cs);
unsigned char nVersion = 1;
s << nVersion;
s << ((unsigned char)32);
s << nKey;
s << nNew;
s << nTried;
int nUBuckets = ADDRMAN_NEW_BUCKET_COUNT ^ (1 << 30);
s << nUBuckets;
std::map<int, int> mapUnkIds;
int nIds = 0;
for (std::map<int, CAddrInfo>::const_iterator it = mapInfo.begin(); it != mapInfo.end(); it++) {
mapUnkIds[(*it).first] = nIds;
const CAddrInfo& info = (*it).second;
if (info.nRefCount) {
assert(nIds != nNew); // this means nNew was wrong, oh ow
s << info;
nIds++;
}
}
nIds = 0;
for (std::map<int, CAddrInfo>::const_iterator it = mapInfo.begin(); it != mapInfo.end(); it++) {
const CAddrInfo& info = (*it).second;
if (info.fInTried) {
assert(nIds != nTried); // this means nTried was wrong, oh ow
s << info;
nIds++;
}
}
for (int bucket = 0; bucket < ADDRMAN_NEW_BUCKET_COUNT; bucket++) {
int nSize = 0;
for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
if (vvNew[bucket][i] != -1)
nSize++;
}
s << nSize;
for (int i = 0; i < ADDRMAN_BUCKET_SIZE; i++) {
if (vvNew[bucket][i] != -1) {
int nIndex = mapUnkIds[vvNew[bucket][i]];
s << nIndex;
}
}
}
}
template <typename Stream>
void Unserialize(Stream& s, int nType, int nVersionDummy)
{
LOCK(cs);
Clear();
unsigned char nVersion;
s >> nVersion;
unsigned char nKeySize;
s >> nKeySize;
if (nKeySize != 32) throw std::ios_base::failure("Incorrect keysize in addrman deserialization");
s >> nKey;
s >> nNew;
s >> nTried;
int nUBuckets = 0;
s >> nUBuckets;
if (nVersion != 0) {
nUBuckets ^= (1 << 30);
}
// Deserialize entries from the new table.
for (int n = 0; n < nNew; n++) {
CAddrInfo& info = mapInfo[n];
s >> info;
mapAddr[info] = n;
info.nRandomPos = vRandom.size();
vRandom.push_back(n);
if (nVersion != 1 || nUBuckets != ADDRMAN_NEW_BUCKET_COUNT) {
// In case the new table data cannot be used (nVersion unknown, or bucket count wrong),
// immediately try to give them a reference based on their primary source address.
int nUBucket = info.GetNewBucket(nKey);
int nUBucketPos = info.GetBucketPosition(nKey, true, nUBucket);
if (vvNew[nUBucket][nUBucketPos] == -1) {
vvNew[nUBucket][nUBucketPos] = n;
info.nRefCount++;
}
}
}
nIdCount = nNew;
// Deserialize entries from the tried table.
int nLost = 0;
for (int n = 0; n < nTried; n++) {
CAddrInfo info;
s >> info;
int nKBucket = info.GetTriedBucket(nKey);
int nKBucketPos = info.GetBucketPosition(nKey, false, nKBucket);
if (vvTried[nKBucket][nKBucketPos] == -1) {
info.nRandomPos = vRandom.size();
info.fInTried = true;
vRandom.push_back(nIdCount);
mapInfo[nIdCount] = info;
mapAddr[info] = nIdCount;
vvTried[nKBucket][nKBucketPos] = nIdCount;
nIdCount++;
} else {
nLost++;
}
}
nTried -= nLost;
// Deserialize positions in the new table (if possible).
for (int bucket = 0; bucket < nUBuckets; bucket++) {
int nSize = 0;
s >> nSize;
for (int n = 0; n < nSize; n++) {
int nIndex = 0;
s >> nIndex;
if (nIndex >= 0 && nIndex < nNew) {
CAddrInfo& info = mapInfo[nIndex];
int nUBucketPos = info.GetBucketPosition(nKey, true, bucket);
if (nVersion == 1 && nUBuckets == ADDRMAN_NEW_BUCKET_COUNT && vvNew[bucket][nUBucketPos] == -1 && info.nRefCount < ADDRMAN_NEW_BUCKETS_PER_ADDRESS) {
info.nRefCount++;
vvNew[bucket][nUBucketPos] = nIndex;
}
}
}
}
// Prune new entries with refcount 0 (as a result of collisions).
int nLostUnk = 0;
for (std::map<int, CAddrInfo>::const_iterator it = mapInfo.begin(); it != mapInfo.end();) {
if (it->second.fInTried == false && it->second.nRefCount == 0) {
std::map<int, CAddrInfo>::const_iterator itCopy = it++;
Delete(itCopy->first);
nLostUnk++;
} else {
it++;
}
}
if (nLost + nLostUnk > 0) {
LogPrint("addrman", "addrman lost %i new and %i tried addresses due to collisions\n", nLostUnk, nLost);
}
Check();
}
unsigned int GetSerializeSize(int nType, int nVersion) const
{
return (CSizeComputer(nType, nVersion) << *this).size();
}
void Clear()
{
std::vector<int>().swap(vRandom);
nKey = GetRandHash();
for (size_t bucket = 0; bucket < ADDRMAN_NEW_BUCKET_COUNT; bucket++) {
for (size_t entry = 0; entry < ADDRMAN_BUCKET_SIZE; entry++) {
vvNew[bucket][entry] = -1;
}
}
for (size_t bucket = 0; bucket < ADDRMAN_TRIED_BUCKET_COUNT; bucket++) {
for (size_t entry = 0; entry < ADDRMAN_BUCKET_SIZE; entry++) {
vvTried[bucket][entry] = -1;
}
}
nIdCount = 0;
nTried = 0;
nNew = 0;
}
CAddrMan()
{
Clear();
}
~CAddrMan()
{
nKey = uint256();
}
//! Return the number of (unique) addresses in all tables.
int size()
{
return vRandom.size();
}
//! Consistency check
void Check()
{
#ifdef DEBUG_ADDRMAN
{
LOCK(cs);
int err;
if ((err = Check_()))
LogPrintf("ADDRMAN CONSISTENCY CHECK FAILED!!! err=%i\n", err);
}
#endif
}
//! Add a single address.
bool Add(const CAddress& addr, const CNetAddr& source, int64_t nTimePenalty = 0)
{
bool fRet = false;
{
LOCK(cs);
Check();
fRet |= Add_(addr, source, nTimePenalty);
Check();
}
if (fRet)
LogPrint("addrman", "Added %s from %s: %i tried, %i new\n", addr.ToStringIPPort(), source.ToString(), nTried, nNew);
return fRet;
}
//! Add multiple addresses.
bool Add(const std::vector<CAddress>& vAddr, const CNetAddr& source, int64_t nTimePenalty = 0)
{
int nAdd = 0;
{
LOCK(cs);
Check();
for (std::vector<CAddress>::const_iterator it = vAddr.begin(); it != vAddr.end(); it++)
nAdd += Add_(*it, source, nTimePenalty) ? 1 : 0;
Check();
}
if (nAdd)
LogPrint("addrman", "Added %i addresses from %s: %i tried, %i new\n", nAdd, source.ToString(), nTried, nNew);
return nAdd > 0;
}
//! Mark an entry as accessible.
void Good(const CService& addr, int64_t nTime = GetAdjustedTime())
{
{
LOCK(cs);
Check();
Good_(addr, nTime);
Check();
}
}
//! Mark an entry as connection attempted to.
void Attempt(const CService& addr, int64_t nTime = GetAdjustedTime())
{
{
LOCK(cs);
Check();
Attempt_(addr, nTime);
Check();
}
}
/**
* Choose an address to connect to.
* nUnkBias determines how much "new" entries are favored over "tried" ones (0-100).
*/
CAddress Select()
{
CAddress addrRet;
{
LOCK(cs);
Check();
addrRet = Select_();
Check();
}
return addrRet;
}
//! Return a bunch of addresses, selected at random.
std::vector<CAddress> GetAddr()
{
Check();
std::vector<CAddress> vAddr;
{
LOCK(cs);
GetAddr_(vAddr);
}
Check();
return vAddr;
}
//! Mark an entry as currently-connected-to.
void Connected(const CService& addr, int64_t nTime = GetAdjustedTime())
{
{
LOCK(cs);
Check();
Connected_(addr, nTime);
Check();
}
}
};
#endif // BITCOIN_ADDRMAN_H
| [
"root@ubuntu16.local"
] | root@ubuntu16.local |
dec4d55fddce05aabe692c25aabc36ffd4afb4fc | 96ee71b0d46234c381c4916900190821ed7318ba | /Surakarta-game/NewGame.cpp | 3550cee4e3c6ef9d5ba32ef767fda4d6e80498b7 | [] | no_license | Aubrey-Zhang/All_games | baf5168131c9852b26894c6bb8e58204bac1a739 | 845693db9ae63ebb3299028535097e5ee45598d1 | refs/heads/main | 2023-02-21T18:29:25.437839 | 2021-01-15T23:29:13 | 2021-01-15T23:29:13 | 313,158,110 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,738 | cpp | // NewGame.cpp : implementation file
//
#include "stdafx.h"
#include "Surakarta.h"
#include "NewGame.h"
#include <iomanip>
#include <fstream>
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
using namespace std;
/////////////////////////////////////////////////////////////////////////////
// CNewGame dialog
CNewGame::CNewGame(CWnd* pParent /*=NULL*/)
: CDialog(CNewGame::IDD, pParent)
{
//{{AFX_DATA_INIT(CNewGame)
m_nEdit = 0;
//}}AFX_DATA_INIT
}
void CNewGame::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CNewGame)
DDX_Control(pDX, IDC_LISTENGINE, m_SearchEngineList);
DDX_Control(pDX, IDC_PLY, m_SetPly);
DDX_Text(pDX, IDC_EDIT1, m_nEdit);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CNewGame, CDialog)
//{{AFX_MSG_MAP(CNewGame)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CNewGame message handlers
BOOL CNewGame::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
m_SearchEngineList.AddString("NegaScout search Engine");
m_SearchEngineList.SetCurSel(0);
m_SetPly.SetRange(1,12);
m_SetPly.SetPos(7);
m_nEdit = m_SetPly.GetPos();
ofstream f1("./SU.txt");
f1<<"#2018-08-04|"<<endl;
f1<<"#先手方:1队|后手方:2队|"<<endl;
f1.close();
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CNewGame::OnOK()
{
// TODO: Add extra validation here
m_nSelectedEngine=m_SearchEngineList.GetCurSel();
m_nSelectedPly=m_SetPly.GetPos();
CDialog::OnOK();
}
| [
"noreply@github.com"
] | noreply@github.com |
78318705552563867855b54a4a279caf1a160ba1 | 5696f7e9bb6cb18e791be3f71e8a72f9a26a0a22 | /src/GetPoint/GetPoint/GetPoint.h | ce59fc0e50627b0270854589413eb74374155d6c | [
"MIT"
] | permissive | xylsxyls/xueyelingshuang | 0fdde992e430bdee38abb7aaf868b320e48dba64 | a646d281c4b2ec3c2b27de29a67860fccce22436 | refs/heads/master | 2023-08-04T01:02:35.112586 | 2023-07-17T09:30:27 | 2023-07-17T09:30:27 | 61,338,042 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 697 | h | #ifndef QTTEST_H
#define QTTEST_H
#include <QtWidgets/QMainWindow>
#include "ui_GetPoint.h"
#include "QtControls/DialogShow.h"
class COriginalButton;
class LineEdit;
class GetPoint : public DialogShow
{
Q_OBJECT
public:
GetPoint(QWidget* parent = nullptr);
~GetPoint();
protected:
void init();
bool check();
protected:
void resizeEvent(QResizeEvent* eve);
void closeEvent(QCloseEvent* eve);
private slots:
void onPoint1ButtonClicked();
void onPoint2ButtonClicked();
void updateModelWindow();
private:
Ui::GetPointClass ui;
COriginalButton* m_point1;
LineEdit* m_text1;
LineEdit* m_text2;
COriginalButton* m_point2;
};
#endif // QTTEST_H | [
"yangnan123456789@163.com"
] | yangnan123456789@163.com |
03ae8f8bbc067bed6f9952ec1e9efbc08c5bc674 | 64178ab5958c36c4582e69b6689359f169dc6f0d | /vscode/wg/sdk/UKakaoSessionClientChecker.hpp | ecfc45fcc714d60e287d08a91b998a96f0b61607 | [] | no_license | c-ber/cber | 47bc1362f180c9e8f0638e40bf716d8ec582e074 | 3cb5c85abd8a6be09e0283d136c87761925072de | refs/heads/master | 2023-06-07T20:07:44.813723 | 2023-02-28T07:43:29 | 2023-02-28T07:43:29 | 40,457,301 | 5 | 5 | null | 2023-05-30T19:14:51 | 2015-08-10T01:37:22 | C++ | UTF-8 | C++ | false | false | 873 | hpp | #pragma once
#ifdef _MSC_VER
#pragma pack(push, 1)
#endif
namespace PUBGSDK {
struct alignas(1) UKakaoSessionClientChecker // Size: 0x58
: public UObject // Size: 0x30
{
private:
typedef UKakaoSessionClientChecker t_struct;
typedef ExternalPtr<t_struct> t_structHelper;
public:
static ExternalPtr<struct UClass> StaticClass()
{
static ExternalPtr<struct UClass> ptr;
if(!ptr) ptr = UObject::FindClassFast(1921); // id32("Class TslGame.KakaoSessionClientChecker")
return ptr;
}
uint8_t UnknownData30[0x28];
};
#ifdef VALIDATE_SDK
namespace Validation{
auto constexpr sizeofUKakaoSessionClientChecker = sizeof(UKakaoSessionClientChecker); // 88
static_assert(sizeof(UKakaoSessionClientChecker) == 0x58, "Size of UKakaoSessionClientChecker is not correct.");
}
#endif
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"1395329153@qq.com"
] | 1395329153@qq.com |
16752f38287e1225583c71be958186335b93b111 | 63e50273ca7940d8097ba10b0de5028ea90989da | /N3.5.cpp | 8225f8c9996ef00e7b8a489992583bbd8b1ce103 | [] | no_license | OleksiyShukay/project_2 | 5300a17db97f70b9d15dca4565bc3dea9e1c532a | fbd932cfb805983cb53ae59851c4dceb5546bcae | refs/heads/master | 2020-08-18T23:44:38.710620 | 2019-10-31T00:53:42 | 2019-10-31T00:53:42 | 215,829,390 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 293 | cpp | #include <iostream>
int main() {
int value;
std::cout << " Enter value: ";
std::cin >> value;
int rev = 0;
int num;
while (value != 0) {
num = value % 10;
value = value / 10;
rev = rev * 10;
rev = rev + num;
}
std::cout << " Reveres : " << rev << std::endl;
}
| [
"voriansevrat@gmail.com"
] | voriansevrat@gmail.com |
83f78885582976f363594ff070d180773b8f91ff | 3032a3eca64e2bec8dc40c4f9ca2c4be9bd39a97 | /src/utils/cpu_spmm.h | 23610b61c88bc9166d79c1366330f42595593021 | [] | no_license | flowold/Graphchallenge21 | f6c5f459e3614d0c58813084da039955cbecf08d | 74273ac25bfd90162067cb24a9b7a38774a9619b | refs/heads/main | 2023-06-12T17:38:57.230339 | 2021-07-09T03:42:42 | 2021-07-09T03:42:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,500 | h | #pragma once
#include <vector>
#include <iostream>
#include <algorithm>
#include "matrix.h"
#include "debug.h"
namespace ftxj {
class CpuSpmm {
public:
static void run_and_cmp(COOMatrix &weight, float* input, int neuron, int batch, float* output, bool T = false, bool resT = true, bool inputT = true) {
weight.to_row_first_ordered();
std::vector<std::vector<float>> res(batch, std::vector<float>(neuron, 0.0));
for(int b = 0; b < batch; ++b) {
if(b % 10000 == 0) std::cout << "run " << b << "..." << std::endl;
for(auto iter = weight.begin(); iter != weight.end(); ++iter) {
int row = (*iter).row;
int col = (*iter).col;
float val = (*iter).val;
float in = 0.0;
if(T) {
if(inputT) in = input[b * neuron + row];
else in = input[row * batch + b];
res[b][col] += in * val;
// if(b == 1 && col == 16352) {
// printf("%f * %f %d\n", in, val, row);
// // }
// if(b == 0 && col == 62) {
// printf("0 %f * %f %d\n", in, val, row);
// }
}
else {
if(inputT) in = input[b * neuron + col];
else in = input[col * batch + b];
res[b][row] += in * val;
// if(b == 1 && row == 16352) {
// printf("%f * %f %d\n", in, val, col);
// }
// if(b == 0 && row == 62) {
// printf("0 %f * %f %d\n", in, val, col);
// }
}
}
for(int j = 0; j < neuron; ++j) {
float cmp = 0;
if(resT) cmp = output[b * neuron + j];
else cmp = output[j * batch + b];
if(std::abs(res[b][j] - cmp) > 1e-3) {
std::cout << b << ", " << j << " cpu=" << res[b][j] << ", gpu=" << cmp << std::endl;
assert_msg(res[b][j] == cmp, "cpu gpu doesnot equals!");
}
}
}
std::cout << "Compare with cpu result [Success]" << std::endl;
}
};
}; | [
"932141413@qq.com"
] | 932141413@qq.com |
f88a6aa7b27b486dd5dd89a798356c76007cabba | 88ae8695987ada722184307301e221e1ba3cc2fa | /chrome/browser/sync/sync_service_factory_unittest.cc | 689e04e326bff2ec0f1da0522ef74bbd6b36f1bd | [
"BSD-3-Clause"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 8,651 | cc | // Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/sync/sync_service_factory.h"
#include <stddef.h>
#include <vector>
#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/task/thread_pool/thread_pool_instance.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/favicon/favicon_service_factory.h"
#include "chrome/browser/history/history_service_factory.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/browser/web_data_service_factory.h"
#include "chrome/common/buildflags.h"
#include "chrome/test/base/testing_profile.h"
#include "components/browser_sync/browser_sync_switches.h"
#include "components/supervised_user/core/common/buildflags.h"
#include "components/sync/base/command_line_switches.h"
#include "components/sync/base/features.h"
#include "components/sync/base/model_type.h"
#include "components/sync/service/data_type_controller.h"
#include "components/sync/service/sync_service_impl.h"
#include "content/public/test/browser_task_environment.h"
#include "extensions/buildflags/buildflags.h"
#include "testing/gtest/include/gtest/gtest.h"
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "ash/constants/ash_features.h"
#include "chrome/browser/ash/app_list/app_list_syncable_service_factory.h"
#include "chrome/browser/ash/arc/arc_util.h"
#include "chrome/browser/sync/wifi_configuration_sync_service_factory.h"
#include "chromeos/ash/components/dbus/shill/shill_clients.h"
#include "chromeos/ash/components/dbus/shill/shill_manager_client.h"
#include "chromeos/ash/components/network/network_handler.h"
#include "chromeos/ash/components/sync_wifi/wifi_configuration_sync_service.h"
#include "chromeos/ash/services/network_config/public/cpp/cros_network_config_test_helper.h"
#endif
class SyncServiceFactoryTest : public testing::Test {
public:
void SetUp() override {
#if BUILDFLAG(IS_CHROMEOS_ASH)
app_list::AppListSyncableServiceFactory::SetUseInTesting(true);
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
TestingProfile::Builder builder;
#if BUILDFLAG(IS_CHROMEOS_LACROS)
// Only the main profile enables syncer::WEB_APPS.
builder.SetIsMainProfile(true);
#endif // BUILDFLAG(IS_CHROMEOS_LACROS)
builder.AddTestingFactory(FaviconServiceFactory::GetInstance(),
FaviconServiceFactory::GetDefaultFactory());
builder.AddTestingFactory(HistoryServiceFactory::GetInstance(),
HistoryServiceFactory::GetDefaultFactory());
builder.AddTestingFactory(SyncServiceFactory::GetInstance(),
SyncServiceFactory::GetDefaultFactory());
// Some services will only be created if there is a WebDataService.
builder.AddTestingFactory(WebDataServiceFactory::GetInstance(),
WebDataServiceFactory::GetDefaultFactory());
profile_ = builder.Build();
}
void TearDown() override {
#if BUILDFLAG(IS_CHROMEOS_ASH)
app_list::AppListSyncableServiceFactory::SetUseInTesting(false);
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
base::ThreadPoolInstance::Get()->FlushForTesting();
}
protected:
#if BUILDFLAG(IS_CHROMEOS_ASH)
SyncServiceFactoryTest() {
// Fake network stack is required for WIFI_CONFIGURATIONS datatype.
ash::NetworkHandler::Initialize();
}
~SyncServiceFactoryTest() override { ash::NetworkHandler::Shutdown(); }
#else
SyncServiceFactoryTest() = default;
~SyncServiceFactoryTest() override = default;
#endif
// Returns the collection of default datatypes.
syncer::ModelTypeSet DefaultDatatypes() {
static_assert(48 == syncer::GetNumModelTypes(),
"When adding a new type, you probably want to add it here as "
"well (assuming it is already enabled).");
syncer::ModelTypeSet datatypes;
// These preprocessor conditions and their order should be in sync with
// preprocessor conditions in ChromeSyncClient::CreateDataTypeControllers:
// ChromeSyncClient types.
datatypes.Put(syncer::READING_LIST);
datatypes.Put(syncer::SECURITY_EVENTS);
if (base::FeatureList::IsEnabled(syncer::kSyncSegmentationDataType)) {
datatypes.Put(syncer::SEGMENTATION);
}
#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
datatypes.Put(syncer::SUPERVISED_USER_SETTINGS);
#endif // BUILDFLAG(ENABLE_SUPERVISED_USERS)
#if BUILDFLAG(ENABLE_EXTENSIONS)
datatypes.Put(syncer::APPS);
datatypes.Put(syncer::EXTENSIONS);
datatypes.Put(syncer::EXTENSION_SETTINGS);
datatypes.Put(syncer::APP_SETTINGS);
datatypes.Put(syncer::WEB_APPS);
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
#if !BUILDFLAG(IS_ANDROID)
datatypes.Put(syncer::THEMES);
datatypes.Put(syncer::SEARCH_ENGINES);
#endif // !BUILDFLAG(IS_ANDROID)
#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \
BUILDFLAG(IS_WIN)
if (base::FeatureList::IsEnabled(features::kTabGroupsSaveSyncIntegration)) {
datatypes.Put(syncer::SAVED_TAB_GROUP);
}
#endif // BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) ||
// BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_WIN)
datatypes.Put(syncer::DICTIONARY);
#endif
#if BUILDFLAG(IS_CHROMEOS_ASH)
datatypes.Put(syncer::APP_LIST);
if (arc::IsArcAllowedForProfile(profile())) {
datatypes.Put(syncer::ARC_PACKAGE);
}
datatypes.Put(syncer::OS_PREFERENCES);
datatypes.Put(syncer::OS_PRIORITY_PREFERENCES);
datatypes.Put(syncer::PRINTERS);
if (ash::features::IsOAuthIppEnabled()) {
datatypes.Put(syncer::PRINTERS_AUTHORIZATION_SERVERS);
}
datatypes.Put(syncer::WIFI_CONFIGURATIONS);
datatypes.Put(syncer::WORKSPACE_DESK);
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
// Common types. This excludes PASSWORDS because the password store factory
// is null for testing and hence no controller gets instantiated.
datatypes.Put(syncer::AUTOFILL);
datatypes.Put(syncer::AUTOFILL_PROFILE);
datatypes.Put(syncer::AUTOFILL_WALLET_DATA);
datatypes.Put(syncer::AUTOFILL_WALLET_METADATA);
datatypes.Put(syncer::AUTOFILL_WALLET_OFFER);
datatypes.Put(syncer::BOOKMARKS);
if (base::FeatureList::IsEnabled(syncer::kSyncEnableContactInfoDataType)) {
datatypes.Put(syncer::CONTACT_INFO);
}
datatypes.Put(syncer::DEVICE_INFO);
if (base::FeatureList::IsEnabled(syncer::kSyncEnableHistoryDataType)) {
datatypes.Put(syncer::HISTORY);
}
datatypes.Put(syncer::HISTORY_DELETE_DIRECTIVES);
datatypes.Put(syncer::PREFERENCES);
datatypes.Put(syncer::PRIORITY_PREFERENCES);
datatypes.Put(syncer::SESSIONS);
datatypes.Put(syncer::PROXY_TABS);
datatypes.Put(syncer::TYPED_URLS);
datatypes.Put(syncer::USER_EVENTS);
datatypes.Put(syncer::USER_CONSENTS);
datatypes.Put(syncer::SEND_TAB_TO_SELF);
datatypes.Put(syncer::SHARING_MESSAGE);
if (base::FeatureList::IsEnabled(syncer::kSyncWebauthnCredentials)) {
datatypes.Put(syncer::WEBAUTHN_CREDENTIAL);
}
// TODO(crbug.com/1445868): Add *_PASSWORD_SHARING_INVITATION types once
// implemented.
return datatypes;
}
Profile* profile() { return profile_.get(); }
void RunUntilIdle() { task_environment_.RunUntilIdle(); }
private:
content::BrowserTaskEnvironment task_environment_;
std::unique_ptr<TestingProfile> profile_;
#if BUILDFLAG(IS_CHROMEOS_ASH)
// Sets up and tears down the Chrome OS networking mojo service as needed
// for the WIFI_CONFIGURATIONS sync service.
ash::network_config::CrosNetworkConfigTestHelper network_config_helper_;
#endif
};
// Verify that the disable sync flag disables creation of the sync service.
TEST_F(SyncServiceFactoryTest, DisableSyncFlag) {
base::CommandLine::ForCurrentProcess()->AppendSwitch(syncer::kDisableSync);
EXPECT_EQ(nullptr, SyncServiceFactory::GetForProfile(profile()));
}
// Verify that a normal (no command line flags) SyncServiceImpl can be created
// and properly initialized.
TEST_F(SyncServiceFactoryTest, CreateSyncServiceImplDefault) {
syncer::SyncServiceImpl* sync_service =
SyncServiceFactory::GetAsSyncServiceImplForProfileForTesting(profile());
syncer::ModelTypeSet types = sync_service->GetRegisteredDataTypesForTest();
const syncer::ModelTypeSet default_types = DefaultDatatypes();
EXPECT_EQ(default_types.Size(), types.Size());
for (syncer::ModelType type : default_types) {
EXPECT_TRUE(types.Has(type)) << type << " not found in datatypes map";
}
sync_service->Shutdown();
RunUntilIdle();
}
| [
"jengelh@inai.de"
] | jengelh@inai.de |
7f2466b8c5dbfee2f222848bd3896799bda576c9 | 8f759450fe7615e7251c1c0c44e1f3812b6f3a22 | /Sandbox_Project/Sandbox_Project/Gather.cpp | bcdeb227eba0eb2d939ef2965028775dc3ac6eb2 | [] | no_license | nuup20/Max_IAProject | acf4d0d81032e28c9a5c963b1071fd3208772ad9 | 401f92395c77e2739e23bd161269fc940407e37c | refs/heads/master | 2021-08-22T11:24:16.437279 | 2017-11-11T16:53:45 | 2017-11-11T16:53:45 | 103,217,414 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | cpp | #include "stdafx.h"
#include "Gather.h"
void CGather::onEnter()
{
}
void CGather::update()
{
}
void CGather::onExit()
{
}
CGather::CGather()
{
}
CGather::~CGather()
{
}
| [
"idv16a.msolano@uartesdigitales.edu.mx"
] | idv16a.msolano@uartesdigitales.edu.mx |
518ede2ad52445194e176df783f1ab2af62350d4 | ada4d1464295235ea7594f2e1a177cdfb23eba47 | /components/duktape/src/duk_config.h | 9388dd16cfe227a984fcad584e81c10f318c0ad2 | [
"Apache-2.0",
"MIT"
] | permissive | davidmoshal/duktape-esp32 | af2c86a30cf8233f68937cda9598c0dbd9acdbab | 556d8fd781d9dab6ac5adc29e11f2f72a1c078dc | refs/heads/master | 2021-01-11T12:02:49.783615 | 2017-01-20T21:12:02 | 2017-01-20T21:12:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 92,190 | h | /*
* duk_config.h configuration header generated by genconfig.py.
*
* Git commit: 780320d8eb782f36dc9625de86a61a3ac6c6343c
* Git describe: 780320d-dirty
* Git branch: master
*
* Supported platforms:
* - Mac OSX, iPhone, Darwin
* - Orbis
* - OpenBSD
* - Generic BSD
* - Atari ST TOS
* - AmigaOS
* - Windows
* - Flashplayer (Crossbridge)
* - QNX
* - TI-Nspire
* - Emscripten
* - Linux
* - Solaris
* - Generic POSIX
* - Cygwin
* - Generic UNIX
* - Generic fallback
*
* Supported architectures:
* - x86
* - x64
* - x32
* - ARM 32-bit
* - ARM 64-bit
* - MIPS 32-bit
* - MIPS 64-bit
* - PowerPC 32-bit
* - PowerPC 64-bit
* - SPARC 32-bit
* - SPARC 64-bit
* - SuperH
* - Motorola 68k
* - Emscripten
* - Generic
*
* Supported compilers:
* - Clang
* - GCC
* - MSVC
* - Emscripten
* - TinyC
* - VBCC
* - Bruce's C compiler
* - Generic
*
*/
#if !defined(DUK_CONFIG_H_INCLUDED)
#define DUK_CONFIG_H_INCLUDED
/*
* Intermediate helper defines
*/
/* DLL build detection */
/* not configured for DLL build */
#undef DUK_F_DLL_BUILD
/* Apple OSX, iOS */
#if defined(__APPLE__)
#define DUK_F_APPLE
#endif
/* FreeBSD */
#if defined(__FreeBSD__) || defined(__FreeBSD)
#define DUK_F_FREEBSD
#endif
/* Orbis (PS4) variant */
#if defined(DUK_F_FREEBSD) && defined(__ORBIS__)
#define DUK_F_ORBIS
#endif
/* OpenBSD */
#if defined(__OpenBSD__) || defined(__OpenBSD)
#define DUK_F_OPENBSD
#endif
/* NetBSD */
#if defined(__NetBSD__) || defined(__NetBSD)
#define DUK_F_NETBSD
#endif
/* BSD variant */
#if defined(DUK_F_FREEBSD) || defined(DUK_F_NETBSD) || defined(DUK_F_OPENBSD) || \
defined(__bsdi__) || defined(__DragonFly__)
#define DUK_F_BSD
#endif
/* Atari ST TOS. __TOS__ defined by PureC. No platform define in VBCC
* apparently, so to use with VBCC user must define __TOS__ manually.
*/
#if defined(__TOS__)
#define DUK_F_TOS
#endif
/* Motorola 68K. Not defined by VBCC, so user must define one of these
* manually when using VBCC.
*/
#if defined(__m68k__) || defined(M68000) || defined(__MC68K__)
#define DUK_F_M68K
#endif
/* AmigaOS. Neither AMIGA nor __amigaos__ is defined on VBCC, so user must
* define 'AMIGA' manually when using VBCC.
*/
#if defined(AMIGA) || defined(__amigaos__)
#define DUK_F_AMIGAOS
#endif
/* PowerPC */
#if defined(__powerpc) || defined(__powerpc__) || defined(__PPC__)
#define DUK_F_PPC
#if defined(__PPC64__) || defined(__LP64__) || defined(_LP64)
#define DUK_F_PPC64
#else
#define DUK_F_PPC32
#endif
#endif
/* Windows, both 32-bit and 64-bit */
#if defined(_WIN32) || defined(WIN32) || defined(_WIN64) || defined(WIN64) || \
defined(__WIN32__) || defined(__TOS_WIN__) || defined(__WINDOWS__)
#define DUK_F_WINDOWS
#if defined(_WIN64) || defined(WIN64)
#define DUK_F_WIN64
#else
#define DUK_F_WIN32
#endif
#endif
/* Flash player (e.g. Crossbridge) */
#if defined(__FLASHPLAYER__)
#define DUK_F_FLASHPLAYER
#endif
/* QNX */
#if defined(__QNX__)
#define DUK_F_QNX
#endif
/* TI-Nspire (using Ndless) */
#if defined(_TINSPIRE)
#define DUK_F_TINSPIRE
#endif
/* Emscripten (provided explicitly by user), improve if possible */
#if defined(EMSCRIPTEN)
#define DUK_F_EMSCRIPTEN
#endif
/* BCC (Bruce's C compiler): this is a "torture target" for compilation */
#if defined(__BCC__) || defined(__BCC_VERSION__)
#define DUK_F_BCC
#endif
/* Linux */
#if defined(__linux) || defined(__linux__) || defined(linux)
#define DUK_F_LINUX
#endif
/* illumos / Solaris */
#if defined(__sun) && defined(__SVR4)
#define DUK_F_SUN
#endif
/* POSIX */
#if defined(__posix)
#define DUK_F_POSIX
#endif
/* Cygwin */
#if defined(__CYGWIN__)
#define DUK_F_CYGWIN
#endif
/* Generic Unix (includes Cygwin) */
#if defined(__unix) || defined(__unix__) || defined(unix) || \
defined(DUK_F_LINUX) || defined(DUK_F_BSD)
#define DUK_F_UNIX
#endif
/* stdint.h not available */
#if defined(DUK_F_WINDOWS) && defined(_MSC_VER)
#if (_MSC_VER < 1700)
/* VS2012+ has stdint.h, < VS2012 does not (but it's available for download). */
#define DUK_F_NO_STDINT_H
#endif
#endif
#if !defined(DUK_F_NO_STDINT_H) && (defined(DUK_F_TOS) || defined(DUK_F_BCC))
#define DUK_F_NO_STDINT_H
#endif
/* C++ */
#undef DUK_F_CPP
#if defined(__cplusplus)
#define DUK_F_CPP
#endif
/* Intel x86 (32-bit), x64 (64-bit) or x32 (64-bit but 32-bit pointers),
* define only one of DUK_F_X86, DUK_F_X64, DUK_F_X32.
* https://sites.google.com/site/x32abi/
*/
#if defined(__amd64__) || defined(__amd64) || \
defined(__x86_64__) || defined(__x86_64) || \
defined(_M_X64) || defined(_M_AMD64)
#if defined(__ILP32__) || defined(_ILP32)
#define DUK_F_X32
#else
#define DUK_F_X64
#endif
#elif defined(i386) || defined(__i386) || defined(__i386__) || \
defined(__i486__) || defined(__i586__) || defined(__i686__) || \
defined(__IA32__) || defined(_M_IX86) || defined(__X86__) || \
defined(_X86_) || defined(__THW_INTEL__) || defined(__I86__)
#if defined(__LP64__) || defined(_LP64)
/* This should not really happen, but would indicate x64. */
#define DUK_F_X64
#else
#define DUK_F_X86
#endif
#endif
/* ARM */
#if defined(__arm__) || defined(__thumb__) || defined(_ARM) || defined(_M_ARM) || defined(__aarch64__)
#define DUK_F_ARM
#if defined(__LP64__) || defined(_LP64) || defined(__arm64) || defined(__arm64__) || defined(__aarch64__)
#define DUK_F_ARM64
#else
#define DUK_F_ARM32
#endif
#endif
/* MIPS. Related defines: __MIPSEB__, __MIPSEL__, __mips_isa_rev, __LP64__ */
#if defined(__mips__) || defined(mips) || defined(_MIPS_ISA) || \
defined(_R3000) || defined(_R4000) || defined(_R5900) || \
defined(_MIPS_ISA_MIPS1) || defined(_MIPS_ISA_MIPS2) || \
defined(_MIPS_ISA_MIPS3) || defined(_MIPS_ISA_MIPS4) || \
defined(__mips) || defined(__MIPS__)
#define DUK_F_MIPS
#if defined(__LP64__) || defined(_LP64) || defined(__mips64) || \
defined(__mips64__) || defined(__mips_n64)
#define DUK_F_MIPS64
#else
#define DUK_F_MIPS32
#endif
#endif
/* SPARC */
#if defined(sparc) || defined(__sparc) || defined(__sparc__)
#define DUK_F_SPARC
#if defined(__LP64__) || defined(_LP64)
#define DUK_F_SPARC64
#else
#define DUK_F_SPARC32
#endif
#endif
/* SuperH */
#if defined(__sh__) || \
defined(__sh1__) || defined(__SH1__) || \
defined(__sh2__) || defined(__SH2__) || \
defined(__sh3__) || defined(__SH3__) || \
defined(__sh4__) || defined(__SH4__) || \
defined(__sh5__) || defined(__SH5__)
#define DUK_F_SUPERH
#endif
/* Clang */
#if defined(__clang__)
#define DUK_F_CLANG
#endif
/* C99 or above */
#undef DUK_F_C99
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
#define DUK_F_C99
#endif
/* C++11 or above */
#undef DUK_F_CPP11
#if defined(__cplusplus) && (__cplusplus >= 201103L)
#define DUK_F_CPP11
#endif
/* GCC. Clang also defines __GNUC__ so don't detect GCC if using Clang. */
#if defined(__GNUC__) && !defined(__clang__) && !defined(DUK_F_CLANG)
#define DUK_F_GCC
#if defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__)
/* Convenience, e.g. gcc 4.5.1 == 40501; http://stackoverflow.com/questions/6031819/emulating-gccs-builtin-unreachable */
#define DUK_F_GCC_VERSION (__GNUC__ * 10000L + __GNUC_MINOR__ * 100L + __GNUC_PATCHLEVEL__)
#else
#error cannot figure out gcc version
#endif
#endif
/* MinGW. Also GCC flags (DUK_F_GCC) are enabled now. */
#if defined(__MINGW32__) || defined(__MINGW64__)
#define DUK_F_MINGW
#endif
/* MSVC */
#if defined(_MSC_VER)
/* MSVC preprocessor defines: http://msdn.microsoft.com/en-us/library/b0084kay.aspx
* _MSC_FULL_VER includes the build number, but it has at least two formats, see e.g.
* BOOST_MSVC_FULL_VER in http://www.boost.org/doc/libs/1_52_0/boost/config/compiler/visualc.hpp
*/
#define DUK_F_MSVC
#if defined(_MSC_FULL_VER)
#if (_MSC_FULL_VER > 100000000)
#define DUK_F_MSVC_FULL_VER _MSC_FULL_VER
#else
#define DUK_F_MSCV_FULL_VER (_MSC_FULL_VER * 10)
#endif
#endif
#endif /* _MSC_VER */
/* TinyC */
#if defined(__TINYC__)
/* http://bellard.org/tcc/tcc-doc.html#SEC9 */
#define DUK_F_TINYC
#endif
/* VBCC */
#if defined(__VBCC__)
#define DUK_F_VBCC
#endif
/*
* Platform autodetection
*/
/* Workaround for older C++ compilers before including <inttypes.h>,
* see e.g.: https://sourceware.org/bugzilla/show_bug.cgi?id=15366
*/
#if defined(__cplusplus) && !defined(__STDC_LIMIT_MACROS)
#define __STDC_LIMIT_MACROS
#endif
#if defined(__cplusplus) && !defined(__STDC_CONSTANT_MACROS)
#define __STDC_CONSTANT_MACROS
#endif
#if defined(DUK_F_APPLE)
/* --- Mac OSX, iPhone, Darwin --- */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <TargetConditionals.h>
#include <architecture/byte_order.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
/* http://stackoverflow.com/questions/5919996/how-to-detect-reliably-mac-os-x-ios-linux-windows-in-c-preprocessor */
#if TARGET_IPHONE_SIMULATOR
#define DUK_USE_OS_STRING "iphone-sim"
#elif TARGET_OS_IPHONE
#define DUK_USE_OS_STRING "iphone"
#elif TARGET_OS_MAC
#define DUK_USE_OS_STRING "osx"
#else
#define DUK_USE_OS_STRING "osx-unknown"
#endif
/* Use _setjmp() on Apple by default, see GH-55. */
#define DUK_JMPBUF_TYPE jmp_buf
#define DUK_SETJMP(jb) _setjmp((jb))
#define DUK_LONGJMP(jb) _longjmp((jb), 1)
#elif defined(DUK_F_ORBIS)
/* --- Orbis --- */
/* Orbis = PS4 */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_S
/* no parsing (not an error) */
#define DUK_USE_DATE_FMT_STRFTIME
#include <sys/types.h>
#include <machine/endian.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_OS_STRING "orbis"
#elif defined(DUK_F_OPENBSD)
/* --- OpenBSD --- */
/* http://www.monkey.org/openbsd/archive/ports/0401/msg00089.html */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <sys/types.h>
#include <sys/endian.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_OS_STRING "openbsd"
#elif defined(DUK_F_BSD)
/* --- Generic BSD --- */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <sys/types.h>
#include <sys/endian.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_OS_STRING "bsd"
#elif defined(DUK_F_TOS)
/* --- Atari ST TOS --- */
#define DUK_USE_DATE_NOW_TIME
#define DUK_USE_DATE_TZO_GMTIME
/* no parsing (not an error) */
#define DUK_USE_DATE_FMT_STRFTIME
#include <time.h>
#define DUK_USE_OS_STRING "tos"
/* TOS on M68K is always big endian. */
#if !defined(DUK_USE_BYTEORDER) && defined(DUK_F_M68K)
#define DUK_USE_BYTEORDER 3
#endif
#elif defined(DUK_F_AMIGAOS)
/* --- AmigaOS --- */
#if defined(DUK_F_M68K)
/* AmigaOS on M68k */
#define DUK_USE_DATE_NOW_TIME
#define DUK_USE_DATE_TZO_GMTIME
/* no parsing (not an error) */
#define DUK_USE_DATE_FMT_STRFTIME
#include <time.h>
#elif defined(DUK_F_PPC)
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <time.h>
#if !defined(UINTPTR_MAX)
#define UINTPTR_MAX UINT_MAX
#endif
#else
#error AmigaOS but not M68K/PPC, not supported now
#endif
#define DUK_USE_OS_STRING "amigaos"
/* AmigaOS on M68K or PPC is always big endian. */
#if !defined(DUK_USE_BYTEORDER) && (defined(DUK_F_M68K) || defined(DUK_F_PPC))
#define DUK_USE_BYTEORDER 3
#endif
#elif defined(DUK_F_WINDOWS)
/* --- Windows --- */
/* Initial fix: disable secure CRT related warnings when compiling Duktape
* itself (must be defined before including Windows headers). Don't define
* for user code including duktape.h.
*/
#if defined(DUK_COMPILING_DUKTAPE) && !defined(_CRT_SECURE_NO_WARNINGS)
#define _CRT_SECURE_NO_WARNINGS
#endif
/* Windows 32-bit and 64-bit are currently the same. */
/* MSVC does not have sys/param.h */
#define DUK_USE_DATE_NOW_WINDOWS
#define DUK_USE_DATE_TZO_WINDOWS
/* Note: PRS and FMT are intentionally left undefined for now. This means
* there is no platform specific date parsing/formatting but there is still
* the ISO 8601 standard format.
*/
#if defined(DUK_COMPILING_DUKTAPE)
/* Only include when compiling Duktape to avoid polluting application build
* with a lot of unnecessary defines.
*/
#include <windows.h>
#endif
#define DUK_USE_OS_STRING "windows"
/* On Windows, assume we're little endian. Even Itanium which has a
* configurable endianness runs little endian in Windows.
*/
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 1
#endif
#elif defined(DUK_F_FLASHPLAYER)
/* --- Flashplayer (Crossbridge) --- */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <endian.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_OS_STRING "flashplayer"
#if !defined(DUK_USE_BYTEORDER) && defined(DUK_F_FLASHPLAYER)
#define DUK_USE_BYTEORDER 1
#endif
#elif defined(DUK_F_QNX)
/* --- QNX --- */
#if defined(DUK_F_QNX) && defined(DUK_COMPILING_DUKTAPE)
/* See: /opt/qnx650/target/qnx6/usr/include/sys/platform.h */
#define _XOPEN_SOURCE 600
#define _POSIX_C_SOURCE 200112L
#endif
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <sys/types.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_OS_STRING "qnx"
#elif defined(DUK_F_TINSPIRE)
/* --- TI-Nspire --- */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <sys/types.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_OS_STRING "tinspire"
#elif defined(DUK_F_EMSCRIPTEN)
/* --- Emscripten --- */
#if defined(DUK_COMPILING_DUKTAPE)
#if !defined(_POSIX_C_SOURCE)
#define _POSIX_C_SOURCE 200809L
#endif
#if !defined(_GNU_SOURCE)
#define _GNU_SOURCE /* e.g. getdate_r */
#endif
#if !defined(_XOPEN_SOURCE)
#define _XOPEN_SOURCE /* e.g. strptime */
#endif
#endif /* DUK_COMPILING_DUKTAPE */
#include <sys/types.h>
#if defined(DUK_F_BCC)
/* no endian.h */
#else
#include <endian.h>
#endif /* DUK_F_BCC */
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#include <stdint.h>
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#define DUK_USE_OS_STRING "emscripten"
#elif defined(DUK_F_LINUX)
/* --- Linux --- */
#if defined(DUK_COMPILING_DUKTAPE)
#if !defined(_POSIX_C_SOURCE)
#define _POSIX_C_SOURCE 200809L
#endif
#if !defined(_GNU_SOURCE)
#define _GNU_SOURCE /* e.g. getdate_r */
#endif
#if !defined(_XOPEN_SOURCE)
#define _XOPEN_SOURCE /* e.g. strptime */
#endif
#endif /* DUK_COMPILING_DUKTAPE */
#include <sys/types.h>
#if defined(DUK_F_BCC)
/* no endian.h or stdint.h */
#else
#include <endian.h>
#include <stdint.h>
#endif /* DUK_F_BCC */
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#define DUK_USE_OS_STRING "linux"
#elif defined(DUK_F_SUN)
/* --- Solaris --- */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <sys/types.h>
#include <ast/endian.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_OS_STRING "solaris"
#elif defined(DUK_F_POSIX)
/* --- Generic POSIX --- */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <sys/types.h>
#include <endian.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_USE_OS_STRING "posix"
#elif defined(DUK_F_CYGWIN)
/* --- Cygwin --- */
/* don't use strptime() for now */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_FMT_STRFTIME
#include <sys/types.h>
#include <endian.h>
#include <sys/param.h>
#include <sys/time.h>
#include <time.h>
#define DUK_JMPBUF_TYPE jmp_buf
#define DUK_SETJMP(jb) _setjmp((jb))
#define DUK_LONGJMP(jb) _longjmp((jb), 1)
#define DUK_USE_OS_STRING "windows"
#elif defined(DUK_F_UNIX)
/* --- Generic UNIX --- */
#define DUK_USE_DATE_NOW_GETTIMEOFDAY
#define DUK_USE_DATE_TZO_GMTIME_R
#define DUK_USE_DATE_PRS_STRPTIME
#define DUK_USE_DATE_FMT_STRFTIME
#include <time.h>
#include <sys/time.h>
#define DUK_USE_OS_STRING "unknown"
#else
/* --- Generic fallback --- */
/* The most portable current time provider is time(), but it only has a
* one second resolution.
*/
#define DUK_USE_DATE_NOW_TIME
/* The most portable way to figure out local time offset is gmtime(),
* but it's not thread safe so use with caution.
*/
#define DUK_USE_DATE_TZO_GMTIME
/* Avoid custom date parsing and formatting for portability. */
#undef DUK_USE_DATE_PRS_STRPTIME
#undef DUK_USE_DATE_FMT_STRFTIME
/* Rely on C89 headers only; time.h must be here. */
#include <time.h>
#define DUK_USE_OS_STRING "unknown"
#endif /* autodetect platform */
/* Shared includes: C89 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h> /* varargs */
#include <setjmp.h>
#include <stddef.h> /* e.g. ptrdiff_t */
#include <math.h>
#include <limits.h>
/* date.h is omitted, and included per platform */
/* Shared includes: stdint.h is C99 */
#if defined(DUK_F_NO_STDINT_H)
/* stdint.h not available */
#else
/* Technically C99 (C++11) but found in many systems. On some systems
* __STDC_LIMIT_MACROS and __STDC_CONSTANT_MACROS must be defined before
* including stdint.h (see above).
*/
#include <stdint.h>
#endif
#if defined(DUK_F_CPP)
#include <exception> /* std::exception */
#endif
/*
* Architecture autodetection
*/
#if defined(DUK_F_X86)
/* --- x86 --- */
#define DUK_USE_ARCH_STRING "x86"
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 1
#endif
/* XXX: This is technically not guaranteed because it's possible to configure
* an x86 to require aligned accesses with Alignment Check (AC) flag.
*/
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 1
#endif
#define DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_X64)
/* --- x64 --- */
#define DUK_USE_ARCH_STRING "x64"
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 1
#endif
/* XXX: This is technically not guaranteed because it's possible to configure
* an x86 to require aligned accesses with Alignment Check (AC) flag.
*/
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 1
#endif
#undef DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_X32)
/* --- x32 --- */
#define DUK_USE_ARCH_STRING "x32"
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 1
#endif
/* XXX: This is technically not guaranteed because it's possible to configure
* an x86 to require aligned accesses with Alignment Check (AC) flag.
*/
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 1
#endif
#define DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_ARM32)
/* --- ARM 32-bit --- */
#define DUK_USE_ARCH_STRING "arm32"
/* Byte order varies, so rely on autodetect. */
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 4
#endif
#define DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_ARM64)
/* --- ARM 64-bit --- */
#define DUK_USE_ARCH_STRING "arm64"
/* Byte order varies, so rely on autodetect. */
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
#undef DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_MIPS32)
/* --- MIPS 32-bit --- */
#define DUK_USE_ARCH_STRING "mips32"
/* MIPS byte order varies so rely on autodetection. */
/* Based on 'make checkalign' there are no alignment requirements on
* Linux MIPS except for doubles, which need align by 4. Alignment
* requirements vary based on target though.
*/
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 4
#endif
#define DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_MIPS64)
/* --- MIPS 64-bit --- */
#define DUK_USE_ARCH_STRING "mips64"
/* MIPS byte order varies so rely on autodetection. */
/* Good default is a bit arbitrary because alignment requirements
* depend on target. See https://github.com/svaarala/duktape/issues/102.
*/
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
#undef DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_PPC32)
/* --- PowerPC 32-bit --- */
#define DUK_USE_ARCH_STRING "ppc32"
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 3
#endif
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
#define DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_PPC64)
/* --- PowerPC 64-bit --- */
#define DUK_USE_ARCH_STRING "ppc64"
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 3
#endif
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
#undef DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_SPARC32)
/* --- SPARC 32-bit --- */
#define DUK_USE_ARCH_STRING "sparc32"
/* SPARC byte order varies so rely on autodetection. */
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
#define DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_SPARC64)
/* --- SPARC 64-bit --- */
#define DUK_USE_ARCH_STRING "sparc64"
/* SPARC byte order varies so rely on autodetection. */
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
#undef DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_SUPERH)
/* --- SuperH --- */
#define DUK_USE_ARCH_STRING "sh"
/* Byte order varies, rely on autodetection. */
/* Based on 'make checkalign' there are no alignment requirements on
* Linux SH4, but align by 4 is probably a good basic default.
*/
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 4
#endif
#define DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_M68K)
/* --- Motorola 68k --- */
#define DUK_USE_ARCH_STRING "m68k"
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 3
#endif
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
#define DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#elif defined(DUK_F_EMSCRIPTEN)
/* --- Emscripten --- */
#define DUK_USE_ARCH_STRING "emscripten"
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 1
#endif
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
#undef DUK_USE_PACKED_TVAL
#define DUK_F_PACKED_TVAL_PROVIDED
#else
/* --- Generic --- */
/* These are necessary wild guesses. */
#define DUK_USE_ARCH_STRING "generic"
/* Rely on autodetection for byte order, alignment, and packed tval. */
#endif /* autodetect architecture */
/*
* Compiler autodetection
*/
#if defined(DUK_F_CLANG)
/* --- Clang --- */
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
/* C99 / C++11 and above: rely on va_copy() which is required. */
#define DUK_VA_COPY(dest,src) va_copy(dest,src)
#else
/* Clang: assume we have __va_copy() in non-C99 mode. */
#define DUK_VA_COPY(dest,src) __va_copy(dest,src)
#endif
#define DUK_NORETURN(decl) decl __attribute__((noreturn))
#if defined(__clang__) && defined(__has_builtin)
#if __has_builtin(__builtin_unreachable)
#define DUK_UNREACHABLE() do { __builtin_unreachable(); } while (0)
#endif
#endif
#define DUK_USE_BRANCH_HINTS
#define DUK_LIKELY(x) __builtin_expect((x), 1)
#define DUK_UNLIKELY(x) __builtin_expect((x), 0)
#if defined(__clang__) && defined(__has_builtin)
#if __has_builtin(__builtin_unpredictable)
#define DUK_UNPREDICTABLE(x) __builtin_unpredictable((x))
#endif
#endif
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
#define DUK_NOINLINE __attribute__((noinline))
#define DUK_INLINE inline
#define DUK_ALWAYS_INLINE inline __attribute__((always_inline))
#endif
#if defined(DUK_F_DLL_BUILD) && defined(DUK_F_WINDOWS)
/* MSVC dllexport/dllimport: appropriate __declspec depends on whether we're
* compiling Duktape or the application.
*/
#if defined(DUK_COMPILING_DUKTAPE)
#define DUK_EXTERNAL_DECL extern __declspec(dllexport)
#define DUK_EXTERNAL __declspec(dllexport)
#else
#define DUK_EXTERNAL_DECL extern __declspec(dllimport)
#define DUK_EXTERNAL should_not_happen
#endif
#if defined(DUK_SINGLE_FILE)
#define DUK_INTERNAL_DECL static
#define DUK_INTERNAL static
#else
#define DUK_INTERNAL_DECL extern
#define DUK_INTERNAL /*empty*/
#endif
#define DUK_LOCAL_DECL static
#define DUK_LOCAL static
#else
#define DUK_EXTERNAL_DECL __attribute__ ((visibility("default"))) extern
#define DUK_EXTERNAL __attribute__ ((visibility("default")))
#if defined(DUK_SINGLE_FILE)
#if (defined(DUK_F_GCC_VERSION) && DUK_F_GCC_VERSION >= 30101) || defined(DUK_F_CLANG)
/* Minimize warnings for unused internal functions with GCC >= 3.1.1 and
* Clang. Based on documentation it should suffice to have the attribute
* in the declaration only, but in practice some warnings are generated unless
* the attribute is also applied to the definition.
*/
#define DUK_INTERNAL_DECL static __attribute__ ((unused))
#define DUK_INTERNAL static __attribute__ ((unused))
#else
#define DUK_INTERNAL_DECL static
#define DUK_INTERNAL static
#endif
#else
#if (defined(DUK_F_GCC_VERSION) && DUK_F_GCC_VERSION >= 30101) || defined(DUK_F_CLANG)
#define DUK_INTERNAL_DECL __attribute__ ((visibility("hidden"))) __attribute__ ((unused)) extern
#define DUK_INTERNAL __attribute__ ((visibility("hidden"))) __attribute__ ((unused))
#else
#define DUK_INTERNAL_DECL __attribute__ ((visibility("hidden"))) extern
#define DUK_INTERNAL __attribute__ ((visibility("hidden")))
#endif
#endif
#define DUK_LOCAL_DECL static
#define DUK_LOCAL static
#endif
#if defined(DUK_F_CPP)
#define DUK_USE_COMPILER_STRING "clang"
#else
#define DUK_USE_COMPILER_STRING "clang"
#endif
#undef DUK_USE_VARIADIC_MACROS
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
#define DUK_USE_VARIADIC_MACROS
#endif
#define DUK_USE_UNION_INITIALIZERS
#undef DUK_USE_FLEX_C99
#undef DUK_USE_FLEX_ZEROSIZE
#undef DUK_USE_FLEX_ONESIZE
#if defined(DUK_F_C99)
#define DUK_USE_FLEX_C99
#else
#define DUK_USE_FLEX_ZEROSIZE
#endif
#undef DUK_USE_GCC_PRAGMAS
#define DUK_USE_PACK_CLANG_ATTR
#elif defined(DUK_F_GCC)
/* --- GCC --- */
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
/* C99 / C++11 and above: rely on va_copy() which is required. */
#define DUK_VA_COPY(dest,src) va_copy(dest,src)
#else
/* GCC: assume we have __va_copy() in non-C99 mode. */
#define DUK_VA_COPY(dest,src) __va_copy(dest,src)
#endif
#if defined(DUK_F_GCC_VERSION) && (DUK_F_GCC_VERSION >= 20500L)
/* since gcc-2.5 */
#define DUK_NORETURN(decl) decl __attribute__((noreturn))
#endif
#if defined(DUK_F_GCC_VERSION) && (DUK_F_GCC_VERSION >= 40500L)
/* since gcc-4.5 */
#define DUK_UNREACHABLE() do { __builtin_unreachable(); } while (0)
#endif
#define DUK_USE_BRANCH_HINTS
#if defined(DUK_F_GCC_VERSION) && (DUK_F_GCC_VERSION >= 40500L)
/* GCC: test not very accurate; enable only in relatively recent builds
* because of bugs in gcc-4.4 (http://lists.debian.org/debian-gcc/2010/04/msg00000.html)
*/
#define DUK_LIKELY(x) __builtin_expect((x), 1)
#define DUK_UNLIKELY(x) __builtin_expect((x), 0)
#endif
/* XXX: equivalent of clang __builtin_unpredictable? */
#if (defined(DUK_F_C99) || defined(DUK_F_CPP11)) && \
defined(DUK_F_GCC_VERSION) && (DUK_F_GCC_VERSION >= 30101)
#define DUK_NOINLINE __attribute__((noinline))
#define DUK_INLINE inline
#define DUK_ALWAYS_INLINE inline __attribute__((always_inline))
#endif
#if defined(DUK_F_DLL_BUILD) && defined(DUK_F_WINDOWS)
/* MSVC dllexport/dllimport: appropriate __declspec depends on whether we're
* compiling Duktape or the application.
*/
#if defined(DUK_COMPILING_DUKTAPE)
#define DUK_EXTERNAL_DECL extern __declspec(dllexport)
#define DUK_EXTERNAL __declspec(dllexport)
#else
#define DUK_EXTERNAL_DECL extern __declspec(dllimport)
#define DUK_EXTERNAL should_not_happen
#endif
#if defined(DUK_SINGLE_FILE)
#define DUK_INTERNAL_DECL static
#define DUK_INTERNAL static
#else
#define DUK_INTERNAL_DECL extern
#define DUK_INTERNAL /*empty*/
#endif
#define DUK_LOCAL_DECL static
#define DUK_LOCAL static
#elif defined(DUK_F_GCC_VERSION) && (DUK_F_GCC_VERSION >= 40000)
#define DUK_EXTERNAL_DECL __attribute__ ((visibility("default"))) extern
#define DUK_EXTERNAL __attribute__ ((visibility("default")))
#if defined(DUK_SINGLE_FILE)
#if (defined(DUK_F_GCC_VERSION) && DUK_F_GCC_VERSION >= 30101) || defined(DUK_F_CLANG)
/* Minimize warnings for unused internal functions with GCC >= 3.1.1 and
* Clang. Based on documentation it should suffice to have the attribute
* in the declaration only, but in practice some warnings are generated unless
* the attribute is also applied to the definition.
*/
#define DUK_INTERNAL_DECL static __attribute__ ((unused))
#define DUK_INTERNAL static __attribute__ ((unused))
#else
#define DUK_INTERNAL_DECL static
#define DUK_INTERNAL static
#endif
#else
#if (defined(DUK_F_GCC_VERSION) && DUK_F_GCC_VERSION >= 30101) || defined(DUK_F_CLANG)
#define DUK_INTERNAL_DECL __attribute__ ((visibility("hidden"))) __attribute__ ((unused)) extern
#define DUK_INTERNAL __attribute__ ((visibility("hidden"))) __attribute__ ((unused))
#else
#define DUK_INTERNAL_DECL __attribute__ ((visibility("hidden"))) extern
#define DUK_INTERNAL __attribute__ ((visibility("hidden")))
#endif
#endif
#define DUK_LOCAL_DECL static
#define DUK_LOCAL static
#endif
#if defined(DUK_F_MINGW)
#if defined(DUK_F_CPP)
#define DUK_USE_COMPILER_STRING "mingw++"
#else
#define DUK_USE_COMPILER_STRING "mingw"
#endif
#else
#if defined(DUK_F_CPP)
#define DUK_USE_COMPILER_STRING "g++"
#else
#define DUK_USE_COMPILER_STRING "gcc"
#endif
#endif
#undef DUK_USE_VARIADIC_MACROS
#if defined(DUK_F_C99) || (defined(DUK_F_CPP11) && defined(__GNUC__))
#define DUK_USE_VARIADIC_MACROS
#endif
#define DUK_USE_UNION_INITIALIZERS
#undef DUK_USE_FLEX_C99
#undef DUK_USE_FLEX_ZEROSIZE
#undef DUK_USE_FLEX_ONESIZE
#if defined(DUK_F_C99)
#define DUK_USE_FLEX_C99
#else
#define DUK_USE_FLEX_ZEROSIZE
#endif
#if defined(DUK_F_GCC_VERSION) && (DUK_F_GCC_VERSION >= 40600)
#define DUK_USE_GCC_PRAGMAS
#else
#undef DUK_USE_GCC_PRAGMAS
#endif
#define DUK_USE_PACK_GCC_ATTR
#elif defined(DUK_F_MSVC)
/* --- MSVC --- */
/* http://msdn.microsoft.com/en-us/library/aa235362(VS.60).aspx */
#define DUK_NORETURN(decl) __declspec(noreturn) decl
/* XXX: DUK_UNREACHABLE for msvc? */
#undef DUK_USE_BRANCH_HINTS
/* XXX: DUK_LIKELY, DUK_UNLIKELY for msvc? */
/* XXX: DUK_NOINLINE, DUK_INLINE, DUK_ALWAYS_INLINE for msvc? */
#if defined(DUK_F_DLL_BUILD) && defined(DUK_F_WINDOWS)
/* MSVC dllexport/dllimport: appropriate __declspec depends on whether we're
* compiling Duktape or the application.
*/
#if defined(DUK_COMPILING_DUKTAPE)
#define DUK_EXTERNAL_DECL extern __declspec(dllexport)
#define DUK_EXTERNAL __declspec(dllexport)
#else
#define DUK_EXTERNAL_DECL extern __declspec(dllimport)
#define DUK_EXTERNAL should_not_happen
#endif
#if defined(DUK_SINGLE_FILE)
#define DUK_INTERNAL_DECL static
#define DUK_INTERNAL static
#else
#define DUK_INTERNAL_DECL extern
#define DUK_INTERNAL /*empty*/
#endif
#define DUK_LOCAL_DECL static
#define DUK_LOCAL static
#endif
#if defined(DUK_F_CPP)
#define DUK_USE_COMPILER_STRING "msvc++"
#else
#define DUK_USE_COMPILER_STRING "msvc"
#endif
#undef DUK_USE_VARIADIC_MACROS
#if defined(DUK_F_C99)
#define DUK_USE_VARIADIC_MACROS
#elif defined(_MSC_VER) && (_MSC_VER >= 1400)
/* VS2005+ should have variadic macros even when they're not C99. */
#define DUK_USE_VARIADIC_MACROS
#endif
#undef DUK_USE_UNION_INITIALIZERS
#if defined(_MSC_VER) && (_MSC_VER >= 1800)
/* VS2013+ supports union initializers but there's a bug involving union-inside-struct:
* https://connect.microsoft.com/VisualStudio/feedback/details/805981
* The bug was fixed (at least) in VS2015 so check for VS2015 for now:
* https://blogs.msdn.microsoft.com/vcblog/2015/07/01/c-compiler-front-end-fixes-in-vs2015/
* Manually tested using VS2013, CL reports 18.00.31101, so enable for VS2013 too.
*/
#define DUK_USE_UNION_INITIALIZERS
#endif
#undef DUK_USE_FLEX_C99
#undef DUK_USE_FLEX_ZEROSIZE
#undef DUK_USE_FLEX_ONESIZE
#if defined(DUK_F_C99)
#define DUK_USE_FLEX_C99
#else
#define DUK_USE_FLEX_ZEROSIZE
#endif
#undef DUK_USE_GCC_PRAGMAS
#define DUK_USE_PACK_MSVC_PRAGMA
/* These have been tested from VS2008 onwards; may work in older VS versions
* too but not enabled by default.
*/
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
#define DUK_NOINLINE __declspec(noinline)
#define DUK_INLINE __inline
#define DUK_ALWAYS_INLINE __forceinline
#endif
#if defined(_MSC_VER) && (_MSC_VER >= 1900)
#define DUK_SNPRINTF snprintf
#define DUK_VSNPRINTF vsnprintf
#else
/* (v)snprintf() is missing before MSVC 2015. Note that _(v)snprintf() does
* NOT NUL terminate on truncation, but Duktape code never assumes that.
* http://stackoverflow.com/questions/2915672/snprintf-and-visual-studio-2010
*/
#define DUK_SNPRINTF _snprintf
#define DUK_VSNPRINTF _vsnprintf
#endif
/* Avoid warning when doing DUK_UNREF(some_function). */
#define DUK_UNREF(x) do { __pragma(warning(suppress:4100 4101 4550 4551)) (x); } while (0)
#elif defined(DUK_F_EMSCRIPTEN)
/* --- Emscripten --- */
#define DUK_NORETURN(decl) decl __attribute__((noreturn))
#if defined(__clang__) && defined(__has_builtin)
#if __has_builtin(__builtin_unreachable)
#define DUK_UNREACHABLE() do { __builtin_unreachable(); } while (0)
#endif
#endif
#define DUK_USE_BRANCH_HINTS
#define DUK_LIKELY(x) __builtin_expect((x), 1)
#define DUK_UNLIKELY(x) __builtin_expect((x), 0)
#if defined(__clang__) && defined(__has_builtin)
#if __has_builtin(__builtin_unpredictable)
#define DUK_UNPREDICTABLE(x) __builtin_unpredictable((x))
#endif
#endif
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
#define DUK_NOINLINE __attribute__((noinline))
#define DUK_INLINE inline
#define DUK_ALWAYS_INLINE inline __attribute__((always_inline))
#endif
#define DUK_EXTERNAL_DECL __attribute__ ((visibility("default"))) extern
#define DUK_EXTERNAL __attribute__ ((visibility("default")))
#if defined(DUK_SINGLE_FILE)
#if (defined(DUK_F_GCC_VERSION) && DUK_F_GCC_VERSION >= 30101) || defined(DUK_F_CLANG)
/* Minimize warnings for unused internal functions with GCC >= 3.1.1 and
* Clang. Based on documentation it should suffice to have the attribute
* in the declaration only, but in practice some warnings are generated unless
* the attribute is also applied to the definition.
*/
#define DUK_INTERNAL_DECL static __attribute__ ((unused))
#define DUK_INTERNAL static __attribute__ ((unused))
#else
#define DUK_INTERNAL_DECL static
#define DUK_INTERNAL static
#endif
#else
#if (defined(DUK_F_GCC_VERSION) && DUK_F_GCC_VERSION >= 30101) || defined(DUK_F_CLANG)
#define DUK_INTERNAL_DECL __attribute__ ((visibility("hidden"))) __attribute__ ((unused)) extern
#define DUK_INTERNAL __attribute__ ((visibility("hidden"))) __attribute__ ((unused))
#else
#define DUK_INTERNAL_DECL __attribute__ ((visibility("hidden"))) extern
#define DUK_INTERNAL __attribute__ ((visibility("hidden")))
#endif
#endif
#define DUK_LOCAL_DECL static
#define DUK_LOCAL static
#define DUK_USE_COMPILER_STRING "emscripten"
#undef DUK_USE_VARIADIC_MACROS
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
#define DUK_USE_VARIADIC_MACROS
#endif
#define DUK_USE_UNION_INITIALIZERS
#undef DUK_USE_FLEX_C99
#undef DUK_USE_FLEX_ZEROSIZE
#undef DUK_USE_FLEX_ONESIZE
#if defined(DUK_F_C99)
#define DUK_USE_FLEX_C99
#else
#define DUK_USE_FLEX_ZEROSIZE
#endif
#undef DUK_USE_GCC_PRAGMAS
#define DUK_USE_PACK_CLANG_ATTR
#elif defined(DUK_F_TINYC)
/* --- TinyC --- */
#undef DUK_USE_BRANCH_HINTS
#if defined(DUK_F_CPP)
#define DUK_USE_COMPILER_STRING "tinyc++"
#else
#define DUK_USE_COMPILER_STRING "tinyc"
#endif
/* http://bellard.org/tcc/tcc-doc.html#SEC7 */
#define DUK_USE_VARIADIC_MACROS
#define DUK_USE_UNION_INITIALIZERS
/* Most portable, wastes space */
#define DUK_USE_FLEX_ONESIZE
/* Most portable, potentially wastes space */
#define DUK_USE_PACK_DUMMY_MEMBER
#elif defined(DUK_F_VBCC)
/* --- VBCC --- */
#undef DUK_USE_BRANCH_HINTS
#if defined(DUK_F_CPP)
#define DUK_USE_COMPILER_STRING "vbcc-c++"
#else
#define DUK_USE_COMPILER_STRING "vbcc"
#endif
#undef DUK_USE_VARIADIC_MACROS
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
#define DUK_USE_VARIADIC_MACROS
#endif
/* VBCC supports C99 so check only for C99 for union initializer support.
* Designated union initializers would possibly work even without a C99 check.
*/
#undef DUK_USE_UNION_INITIALIZERS
#if defined(DUK_F_C99)
#define DUK_USE_UNION_INITIALIZERS
#endif
#define DUK_USE_FLEX_ZEROSIZE
#define DUK_USE_PACK_DUMMY_MEMBER
#elif defined(DUK_F_BCC)
/* --- Bruce's C compiler --- */
#undef DUK_USE_BRANCH_HINTS
#if defined(DUK_F_CPP)
#define DUK_USE_COMPILER_STRING "bcc++"
#else
#define DUK_USE_COMPILER_STRING "bcc"
#endif
/* Most portable */
#undef DUK_USE_VARIADIC_MACROS
/* Most portable, wastes space */
#undef DUK_USE_UNION_INITIALIZERS
/* Most portable, wastes space */
#define DUK_USE_FLEX_ONESIZE
/* Most portable, potentially wastes space */
#define DUK_USE_PACK_DUMMY_MEMBER
/* BCC, assume we're on x86. */
#if !defined(DUK_USE_BYTEORDER)
#define DUK_USE_BYTEORDER 1
#endif
#else
/* --- Generic --- */
#undef DUK_USE_BRANCH_HINTS
#if defined(DUK_F_CPP)
#define DUK_USE_COMPILER_STRING "generic-c++"
#else
#define DUK_USE_COMPILER_STRING "generic"
#endif
#undef DUK_USE_VARIADIC_MACROS
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
#define DUK_USE_VARIADIC_MACROS
#endif
/* C++ doesn't have standard designated union initializers ({ .foo = 1 }). */
#undef DUK_USE_UNION_INITIALIZERS
#if defined(DUK_F_C99)
#define DUK_USE_UNION_INITIALIZERS
#endif
/* Most portable, wastes space */
#define DUK_USE_FLEX_ONESIZE
/* Most portable, potentially wastes space */
#define DUK_USE_PACK_DUMMY_MEMBER
#endif /* autodetect compiler */
/* uclibc */
#if defined(__UCLIBC__)
#define DUK_F_UCLIBC
#endif
/*
* Wrapper typedefs and constants for integer types, also sanity check types.
*
* C99 typedefs are quite good but not always available, and we want to avoid
* forcibly redefining the C99 typedefs. So, there are Duktape wrappers for
* all C99 typedefs and Duktape code should only use these typedefs. Type
* detection when C99 is not supported is best effort and may end up detecting
* some types incorrectly.
*
* Pointer sizes are a portability problem: pointers to different types may
* have a different size and function pointers are very difficult to manage
* portably.
*
* http://en.wikipedia.org/wiki/C_data_types#Fixed-width_integer_types
*
* Note: there's an interesting corner case when trying to define minimum
* signed integer value constants which leads to the current workaround of
* defining e.g. -0x80000000 as (-0x7fffffffL - 1L). See doc/code-issues.txt
* for a longer discussion.
*
* Note: avoid typecasts and computations in macro integer constants as they
* can then no longer be used in macro relational expressions (such as
* #if DUK_SIZE_MAX < 0xffffffffUL). There is internal code which relies on
* being able to compare DUK_SIZE_MAX against a limit.
*/
/* XXX: add feature options to force basic types from outside? */
#if !defined(INT_MAX)
#error INT_MAX not defined
#endif
/* Check that architecture is two's complement, standard C allows e.g.
* INT_MIN to be -2**31+1 (instead of -2**31).
*/
#if defined(INT_MAX) && defined(INT_MIN)
#if INT_MAX != -(INT_MIN + 1)
#error platform does not seem complement of two
#endif
#else
#error cannot check complement of two
#endif
/* Pointer size determination based on __WORDSIZE or architecture when
* that's not available.
*/
#if defined(DUK_F_X86) || defined(DUK_F_X32) || \
defined(DUK_F_M68K) || defined(DUK_F_PPC32) || \
defined(DUK_F_BCC) || \
(defined(__WORDSIZE) && (__WORDSIZE == 32))
#define DUK_F_32BIT_PTRS
#elif defined(DUK_F_X64) || \
(defined(__WORDSIZE) && (__WORDSIZE == 64))
#define DUK_F_64BIT_PTRS
#else
/* not sure, not needed with C99 anyway */
#endif
/* Intermediate define for 'have inttypes.h' */
#undef DUK_F_HAVE_INTTYPES
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \
!(defined(DUK_F_AMIGAOS) && defined(DUK_F_VBCC))
/* vbcc + AmigaOS has C99 but no inttypes.h */
#define DUK_F_HAVE_INTTYPES
#elif defined(__cplusplus) && (__cplusplus >= 201103L)
/* C++11 apparently ratified stdint.h */
#define DUK_F_HAVE_INTTYPES
#endif
/* Basic integer typedefs and limits, preferably from inttypes.h, otherwise
* through automatic detection.
*/
#if defined(DUK_F_HAVE_INTTYPES)
/* C99 or compatible */
#define DUK_F_HAVE_64BIT
#include <inttypes.h>
typedef uint8_t duk_uint8_t;
typedef int8_t duk_int8_t;
typedef uint16_t duk_uint16_t;
typedef int16_t duk_int16_t;
typedef uint32_t duk_uint32_t;
typedef int32_t duk_int32_t;
typedef uint64_t duk_uint64_t;
typedef int64_t duk_int64_t;
typedef uint_least8_t duk_uint_least8_t;
typedef int_least8_t duk_int_least8_t;
typedef uint_least16_t duk_uint_least16_t;
typedef int_least16_t duk_int_least16_t;
typedef uint_least32_t duk_uint_least32_t;
typedef int_least32_t duk_int_least32_t;
typedef uint_least64_t duk_uint_least64_t;
typedef int_least64_t duk_int_least64_t;
typedef uint_fast8_t duk_uint_fast8_t;
typedef int_fast8_t duk_int_fast8_t;
typedef uint_fast16_t duk_uint_fast16_t;
typedef int_fast16_t duk_int_fast16_t;
typedef uint_fast32_t duk_uint_fast32_t;
typedef int_fast32_t duk_int_fast32_t;
typedef uint_fast64_t duk_uint_fast64_t;
typedef int_fast64_t duk_int_fast64_t;
typedef uintptr_t duk_uintptr_t;
typedef intptr_t duk_intptr_t;
typedef uintmax_t duk_uintmax_t;
typedef intmax_t duk_intmax_t;
#define DUK_UINT8_MIN 0
#define DUK_UINT8_MAX UINT8_MAX
#define DUK_INT8_MIN INT8_MIN
#define DUK_INT8_MAX INT8_MAX
#define DUK_UINT_LEAST8_MIN 0
#define DUK_UINT_LEAST8_MAX UINT_LEAST8_MAX
#define DUK_INT_LEAST8_MIN INT_LEAST8_MIN
#define DUK_INT_LEAST8_MAX INT_LEAST8_MAX
#define DUK_UINT_FAST8_MIN 0
#define DUK_UINT_FAST8_MAX UINT_FAST8_MAX
#define DUK_INT_FAST8_MIN INT_FAST8_MIN
#define DUK_INT_FAST8_MAX INT_FAST8_MAX
#define DUK_UINT16_MIN 0
#define DUK_UINT16_MAX UINT16_MAX
#define DUK_INT16_MIN INT16_MIN
#define DUK_INT16_MAX INT16_MAX
#define DUK_UINT_LEAST16_MIN 0
#define DUK_UINT_LEAST16_MAX UINT_LEAST16_MAX
#define DUK_INT_LEAST16_MIN INT_LEAST16_MIN
#define DUK_INT_LEAST16_MAX INT_LEAST16_MAX
#define DUK_UINT_FAST16_MIN 0
#define DUK_UINT_FAST16_MAX UINT_FAST16_MAX
#define DUK_INT_FAST16_MIN INT_FAST16_MIN
#define DUK_INT_FAST16_MAX INT_FAST16_MAX
#define DUK_UINT32_MIN 0
#define DUK_UINT32_MAX UINT32_MAX
#define DUK_INT32_MIN INT32_MIN
#define DUK_INT32_MAX INT32_MAX
#define DUK_UINT_LEAST32_MIN 0
#define DUK_UINT_LEAST32_MAX UINT_LEAST32_MAX
#define DUK_INT_LEAST32_MIN INT_LEAST32_MIN
#define DUK_INT_LEAST32_MAX INT_LEAST32_MAX
#define DUK_UINT_FAST32_MIN 0
#define DUK_UINT_FAST32_MAX UINT_FAST32_MAX
#define DUK_INT_FAST32_MIN INT_FAST32_MIN
#define DUK_INT_FAST32_MAX INT_FAST32_MAX
#define DUK_UINT64_MIN 0
#define DUK_UINT64_MAX UINT64_MAX
#define DUK_INT64_MIN INT64_MIN
#define DUK_INT64_MAX INT64_MAX
#define DUK_UINT_LEAST64_MIN 0
#define DUK_UINT_LEAST64_MAX UINT_LEAST64_MAX
#define DUK_INT_LEAST64_MIN INT_LEAST64_MIN
#define DUK_INT_LEAST64_MAX INT_LEAST64_MAX
#define DUK_UINT_FAST64_MIN 0
#define DUK_UINT_FAST64_MAX UINT_FAST64_MAX
#define DUK_INT_FAST64_MIN INT_FAST64_MIN
#define DUK_INT_FAST64_MAX INT_FAST64_MAX
#define DUK_UINTPTR_MIN 0
#define DUK_UINTPTR_MAX UINTPTR_MAX
#define DUK_INTPTR_MIN INTPTR_MIN
#define DUK_INTPTR_MAX INTPTR_MAX
#define DUK_UINTMAX_MIN 0
#define DUK_UINTMAX_MAX UINTMAX_MAX
#define DUK_INTMAX_MIN INTMAX_MIN
#define DUK_INTMAX_MAX INTMAX_MAX
#define DUK_SIZE_MIN 0
#define DUK_SIZE_MAX SIZE_MAX
#undef DUK_SIZE_MAX_COMPUTED
#else /* C99 types */
/* When C99 types are not available, we use heuristic detection to get
* the basic 8, 16, 32, and (possibly) 64 bit types. The fast/least
* types are then assumed to be exactly the same for now: these could
* be improved per platform but C99 types are very often now available.
* 64-bit types are not available on all platforms; this is OK at least
* on 32-bit platforms.
*
* This detection code is necessarily a bit hacky and can provide typedefs
* and defines that won't work correctly on some exotic platform.
*/
#if (defined(CHAR_BIT) && (CHAR_BIT == 8)) || \
(defined(UCHAR_MAX) && (UCHAR_MAX == 255))
typedef unsigned char duk_uint8_t;
typedef signed char duk_int8_t;
#else
#error cannot detect 8-bit type
#endif
#if defined(USHRT_MAX) && (USHRT_MAX == 65535UL)
typedef unsigned short duk_uint16_t;
typedef signed short duk_int16_t;
#elif defined(UINT_MAX) && (UINT_MAX == 65535UL)
/* On some platforms int is 16-bit but long is 32-bit (e.g. PureC) */
typedef unsigned int duk_uint16_t;
typedef signed int duk_int16_t;
#else
#error cannot detect 16-bit type
#endif
#if defined(UINT_MAX) && (UINT_MAX == 4294967295UL)
typedef unsigned int duk_uint32_t;
typedef signed int duk_int32_t;
#elif defined(ULONG_MAX) && (ULONG_MAX == 4294967295UL)
/* On some platforms int is 16-bit but long is 32-bit (e.g. PureC) */
typedef unsigned long duk_uint32_t;
typedef signed long duk_int32_t;
#else
#error cannot detect 32-bit type
#endif
/* 64-bit type detection is a bit tricky.
*
* ULLONG_MAX is a standard define. __LONG_LONG_MAX__ and __ULONG_LONG_MAX__
* are used by at least GCC (even if system headers don't provide ULLONG_MAX).
* Some GCC variants may provide __LONG_LONG_MAX__ but not __ULONG_LONG_MAX__.
*
* ULL / LL constants are rejected / warned about by some compilers, even if
* the compiler has a 64-bit type and the compiler/system headers provide an
* unsupported constant (ULL/LL)! Try to avoid using ULL / LL constants.
* As a side effect we can only check that e.g. ULONG_MAX is larger than 32
* bits but can't be sure it is exactly 64 bits. Self tests will catch such
* cases.
*/
#undef DUK_F_HAVE_64BIT
#if !defined(DUK_F_HAVE_64BIT) && defined(ULONG_MAX)
#if (ULONG_MAX > 4294967295UL)
#define DUK_F_HAVE_64BIT
typedef unsigned long duk_uint64_t;
typedef signed long duk_int64_t;
#endif
#endif
#if !defined(DUK_F_HAVE_64BIT) && defined(ULLONG_MAX)
#if (ULLONG_MAX > 4294967295UL)
#define DUK_F_HAVE_64BIT
typedef unsigned long long duk_uint64_t;
typedef signed long long duk_int64_t;
#endif
#endif
#if !defined(DUK_F_HAVE_64BIT) && defined(__ULONG_LONG_MAX__)
#if (__ULONG_LONG_MAX__ > 4294967295UL)
#define DUK_F_HAVE_64BIT
typedef unsigned long long duk_uint64_t;
typedef signed long long duk_int64_t;
#endif
#endif
#if !defined(DUK_F_HAVE_64BIT) && defined(__LONG_LONG_MAX__)
#if (__LONG_LONG_MAX__ > 2147483647L)
#define DUK_F_HAVE_64BIT
typedef unsigned long long duk_uint64_t;
typedef signed long long duk_int64_t;
#endif
#endif
#if !defined(DUK_F_HAVE_64BIT) && \
(defined(DUK_F_MINGW) || defined(DUK_F_MSVC))
/* Both MinGW and MSVC have a 64-bit type. */
#define DUK_F_HAVE_64BIT
typedef unsigned long duk_uint64_t;
typedef signed long duk_int64_t;
#endif
#if !defined(DUK_F_HAVE_64BIT)
/* cannot detect 64-bit type, not always needed so don't error */
#endif
typedef duk_uint8_t duk_uint_least8_t;
typedef duk_int8_t duk_int_least8_t;
typedef duk_uint16_t duk_uint_least16_t;
typedef duk_int16_t duk_int_least16_t;
typedef duk_uint32_t duk_uint_least32_t;
typedef duk_int32_t duk_int_least32_t;
typedef duk_uint8_t duk_uint_fast8_t;
typedef duk_int8_t duk_int_fast8_t;
typedef duk_uint16_t duk_uint_fast16_t;
typedef duk_int16_t duk_int_fast16_t;
typedef duk_uint32_t duk_uint_fast32_t;
typedef duk_int32_t duk_int_fast32_t;
#if defined(DUK_F_HAVE_64BIT)
typedef duk_uint64_t duk_uint_least64_t;
typedef duk_int64_t duk_int_least64_t;
typedef duk_uint64_t duk_uint_fast64_t;
typedef duk_int64_t duk_int_fast64_t;
#endif
#if defined(DUK_F_HAVE_64BIT)
typedef duk_uint64_t duk_uintmax_t;
typedef duk_int64_t duk_intmax_t;
#else
typedef duk_uint32_t duk_uintmax_t;
typedef duk_int32_t duk_intmax_t;
#endif
/* Note: the funny looking computations for signed minimum 16-bit, 32-bit, and
* 64-bit values are intentional as the obvious forms (e.g. -0x80000000L) are
* -not- portable. See code-issues.txt for a detailed discussion.
*/
#define DUK_UINT8_MIN 0UL
#define DUK_UINT8_MAX 0xffUL
#define DUK_INT8_MIN (-0x80L)
#define DUK_INT8_MAX 0x7fL
#define DUK_UINT_LEAST8_MIN 0UL
#define DUK_UINT_LEAST8_MAX 0xffUL
#define DUK_INT_LEAST8_MIN (-0x80L)
#define DUK_INT_LEAST8_MAX 0x7fL
#define DUK_UINT_FAST8_MIN 0UL
#define DUK_UINT_FAST8_MAX 0xffUL
#define DUK_INT_FAST8_MIN (-0x80L)
#define DUK_INT_FAST8_MAX 0x7fL
#define DUK_UINT16_MIN 0UL
#define DUK_UINT16_MAX 0xffffUL
#define DUK_INT16_MIN (-0x7fffL - 1L)
#define DUK_INT16_MAX 0x7fffL
#define DUK_UINT_LEAST16_MIN 0UL
#define DUK_UINT_LEAST16_MAX 0xffffUL
#define DUK_INT_LEAST16_MIN (-0x7fffL - 1L)
#define DUK_INT_LEAST16_MAX 0x7fffL
#define DUK_UINT_FAST16_MIN 0UL
#define DUK_UINT_FAST16_MAX 0xffffUL
#define DUK_INT_FAST16_MIN (-0x7fffL - 1L)
#define DUK_INT_FAST16_MAX 0x7fffL
#define DUK_UINT32_MIN 0UL
#define DUK_UINT32_MAX 0xffffffffUL
#define DUK_INT32_MIN (-0x7fffffffL - 1L)
#define DUK_INT32_MAX 0x7fffffffL
#define DUK_UINT_LEAST32_MIN 0UL
#define DUK_UINT_LEAST32_MAX 0xffffffffUL
#define DUK_INT_LEAST32_MIN (-0x7fffffffL - 1L)
#define DUK_INT_LEAST32_MAX 0x7fffffffL
#define DUK_UINT_FAST32_MIN 0UL
#define DUK_UINT_FAST32_MAX 0xffffffffUL
#define DUK_INT_FAST32_MIN (-0x7fffffffL - 1L)
#define DUK_INT_FAST32_MAX 0x7fffffffL
/* 64-bit constants. Since LL / ULL constants are not always available,
* use computed values. These values can't be used in preprocessor
* comparisons; flag them as such.
*/
#if defined(DUK_F_HAVE_64BIT)
#define DUK_UINT64_MIN ((duk_uint64_t) 0)
#define DUK_UINT64_MAX ((duk_uint64_t) -1)
#define DUK_INT64_MIN ((duk_int64_t) (~(DUK_UINT64_MAX >> 1)))
#define DUK_INT64_MAX ((duk_int64_t) (DUK_UINT64_MAX >> 1))
#define DUK_UINT_LEAST64_MIN DUK_UINT64_MIN
#define DUK_UINT_LEAST64_MAX DUK_UINT64_MAX
#define DUK_INT_LEAST64_MIN DUK_INT64_MIN
#define DUK_INT_LEAST64_MAX DUK_INT64_MAX
#define DUK_UINT_FAST64_MIN DUK_UINT64_MIN
#define DUK_UINT_FAST64_MAX DUK_UINT64_MAX
#define DUK_INT_FAST64_MIN DUK_INT64_MIN
#define DUK_INT_FAST64_MAX DUK_INT64_MAX
#define DUK_UINT64_MIN_COMPUTED
#define DUK_UINT64_MAX_COMPUTED
#define DUK_INT64_MIN_COMPUTED
#define DUK_INT64_MAX_COMPUTED
#define DUK_UINT_LEAST64_MIN_COMPUTED
#define DUK_UINT_LEAST64_MAX_COMPUTED
#define DUK_INT_LEAST64_MIN_COMPUTED
#define DUK_INT_LEAST64_MAX_COMPUTED
#define DUK_UINT_FAST64_MIN_COMPUTED
#define DUK_UINT_FAST64_MAX_COMPUTED
#define DUK_INT_FAST64_MIN_COMPUTED
#define DUK_INT_FAST64_MAX_COMPUTED
#endif
#if defined(DUK_F_HAVE_64BIT)
#define DUK_UINTMAX_MIN DUK_UINT64_MIN
#define DUK_UINTMAX_MAX DUK_UINT64_MAX
#define DUK_INTMAX_MIN DUK_INT64_MIN
#define DUK_INTMAX_MAX DUK_INT64_MAX
#define DUK_UINTMAX_MIN_COMPUTED
#define DUK_UINTMAX_MAX_COMPUTED
#define DUK_INTMAX_MIN_COMPUTED
#define DUK_INTMAX_MAX_COMPUTED
#else
#define DUK_UINTMAX_MIN 0UL
#define DUK_UINTMAX_MAX 0xffffffffUL
#define DUK_INTMAX_MIN (-0x7fffffffL - 1L)
#define DUK_INTMAX_MAX 0x7fffffffL
#endif
/* This detection is not very reliable. */
#if defined(DUK_F_32BIT_PTRS)
typedef duk_int32_t duk_intptr_t;
typedef duk_uint32_t duk_uintptr_t;
#define DUK_UINTPTR_MIN DUK_UINT32_MIN
#define DUK_UINTPTR_MAX DUK_UINT32_MAX
#define DUK_INTPTR_MIN DUK_INT32_MIN
#define DUK_INTPTR_MAX DUK_INT32_MAX
#elif defined(DUK_F_64BIT_PTRS) && defined(DUK_F_HAVE_64BIT)
typedef duk_int64_t duk_intptr_t;
typedef duk_uint64_t duk_uintptr_t;
#define DUK_UINTPTR_MIN DUK_UINT64_MIN
#define DUK_UINTPTR_MAX DUK_UINT64_MAX
#define DUK_INTPTR_MIN DUK_INT64_MIN
#define DUK_INTPTR_MAX DUK_INT64_MAX
#define DUK_UINTPTR_MIN_COMPUTED
#define DUK_UINTPTR_MAX_COMPUTED
#define DUK_INTPTR_MIN_COMPUTED
#define DUK_INTPTR_MAX_COMPUTED
#else
#error cannot determine intptr type
#endif
/* SIZE_MAX may be missing so use an approximate value for it. */
#undef DUK_SIZE_MAX_COMPUTED
#if !defined(SIZE_MAX)
#define DUK_SIZE_MAX_COMPUTED
#define SIZE_MAX ((size_t) (-1))
#endif
#define DUK_SIZE_MIN 0
#define DUK_SIZE_MAX SIZE_MAX
#endif /* C99 types */
/* A few types are assumed to always exist. */
typedef size_t duk_size_t;
typedef ptrdiff_t duk_ptrdiff_t;
/* The best type for an "all around int" in Duktape internals is "at least
* 32 bit signed integer" which is most convenient. Same for unsigned type.
* Prefer 'int' when large enough, as it is almost always a convenient type.
*/
#if defined(UINT_MAX) && (UINT_MAX >= 0xffffffffUL)
typedef int duk_int_t;
typedef unsigned int duk_uint_t;
#define DUK_INT_MIN INT_MIN
#define DUK_INT_MAX INT_MAX
#define DUK_UINT_MIN 0
#define DUK_UINT_MAX UINT_MAX
#else
typedef duk_int_fast32_t duk_int_t;
typedef duk_uint_fast32_t duk_uint_t;
#define DUK_INT_MIN DUK_INT_FAST32_MIN
#define DUK_INT_MAX DUK_INT_FAST32_MAX
#define DUK_UINT_MIN DUK_UINT_FAST32_MIN
#define DUK_UINT_MAX DUK_UINT_FAST32_MAX
#endif
/* Same as 'duk_int_t' but guaranteed to be a 'fast' variant if this
* distinction matters for the CPU. These types are used mainly in the
* executor where it might really matter.
*/
typedef duk_int_fast32_t duk_int_fast_t;
typedef duk_uint_fast32_t duk_uint_fast_t;
#define DUK_INT_FAST_MIN DUK_INT_FAST32_MIN
#define DUK_INT_FAST_MAX DUK_INT_FAST32_MAX
#define DUK_UINT_FAST_MIN DUK_UINT_FAST32_MIN
#define DUK_UINT_FAST_MAX DUK_UINT_FAST32_MAX
/* Small integers (16 bits or more) can fall back to the 'int' type, but
* have a typedef so they are marked "small" explicitly.
*/
typedef int duk_small_int_t;
typedef unsigned int duk_small_uint_t;
#define DUK_SMALL_INT_MIN INT_MIN
#define DUK_SMALL_INT_MAX INT_MAX
#define DUK_SMALL_UINT_MIN 0
#define DUK_SMALL_UINT_MAX UINT_MAX
/* Fast variants of small integers, again for really fast paths like the
* executor.
*/
typedef duk_int_fast16_t duk_small_int_fast_t;
typedef duk_uint_fast16_t duk_small_uint_fast_t;
#define DUK_SMALL_INT_FAST_MIN DUK_INT_FAST16_MIN
#define DUK_SMALL_INT_FAST_MAX DUK_INT_FAST16_MAX
#define DUK_SMALL_UINT_FAST_MIN DUK_UINT_FAST16_MIN
#define DUK_SMALL_UINT_FAST_MAX DUK_UINT_FAST16_MAX
/* Boolean values are represented with the platform 'int'. */
typedef duk_small_int_t duk_bool_t;
#define DUK_BOOL_MIN DUK_SMALL_INT_MIN
#define DUK_BOOL_MAX DUK_SMALL_INT_MAX
/* Index values must have at least 32-bit signed range. */
typedef duk_int_t duk_idx_t;
#define DUK_IDX_MIN DUK_INT_MIN
#define DUK_IDX_MAX DUK_INT_MAX
/* Unsigned index variant. */
typedef duk_uint_t duk_uidx_t;
#define DUK_UIDX_MIN DUK_UINT_MIN
#define DUK_UIDX_MAX DUK_UINT_MAX
/* Array index values, could be exact 32 bits.
* Currently no need for signed duk_arridx_t.
*/
typedef duk_uint_t duk_uarridx_t;
#define DUK_UARRIDX_MIN DUK_UINT_MIN
#define DUK_UARRIDX_MAX DUK_UINT_MAX
/* Duktape/C function return value, platform int is enough for now to
* represent 0, 1, or negative error code. Must be compatible with
* assigning truth values (e.g. duk_ret_t rc = (foo == bar);).
*/
typedef duk_small_int_t duk_ret_t;
#define DUK_RET_MIN DUK_SMALL_INT_MIN
#define DUK_RET_MAX DUK_SMALL_INT_MAX
/* Error codes are represented with platform int. High bits are used
* for flags and such, so 32 bits are needed.
*/
typedef duk_int_t duk_errcode_t;
#define DUK_ERRCODE_MIN DUK_INT_MIN
#define DUK_ERRCODE_MAX DUK_INT_MAX
/* Codepoint type. Must be 32 bits or more because it is used also for
* internal codepoints. The type is signed because negative codepoints
* are used as internal markers (e.g. to mark EOF or missing argument).
* (X)UTF-8/CESU-8 encode/decode take and return an unsigned variant to
* ensure duk_uint32_t casts back and forth nicely. Almost everything
* else uses the signed one.
*/
typedef duk_int_t duk_codepoint_t;
typedef duk_uint_t duk_ucodepoint_t;
#define DUK_CODEPOINT_MIN DUK_INT_MIN
#define DUK_CODEPOINT_MAX DUK_INT_MAX
#define DUK_UCODEPOINT_MIN DUK_UINT_MIN
#define DUK_UCODEPOINT_MAX DUK_UINT_MAX
/* IEEE float/double typedef. */
typedef float duk_float_t;
typedef double duk_double_t;
/* We're generally assuming that we're working on a platform with a 32-bit
* address space. If DUK_SIZE_MAX is a typecast value (which is necessary
* if SIZE_MAX is missing), the check must be avoided because the
* preprocessor can't do a comparison.
*/
#if !defined(DUK_SIZE_MAX)
#error DUK_SIZE_MAX is undefined, probably missing SIZE_MAX
#elif !defined(DUK_SIZE_MAX_COMPUTED)
#if DUK_SIZE_MAX < 0xffffffffUL
/* On some systems SIZE_MAX can be smaller than max unsigned 32-bit value
* which seems incorrect if size_t is (at least) an unsigned 32-bit type.
* However, it doesn't seem useful to error out compilation if this is the
* case.
*/
#endif
#endif
/* Type for public API calls. */
typedef struct duk_hthread duk_context;
/* Check whether we should use 64-bit integers or not.
*
* Quite incomplete now. Use 64-bit types if detected (C99 or other detection)
* unless they are known to be unreliable. For instance, 64-bit types are
* available on VBCC but seem to misbehave.
*/
#if defined(DUK_F_HAVE_64BIT) && !defined(DUK_F_VBCC)
#define DUK_USE_64BIT_OPS
#else
#undef DUK_USE_64BIT_OPS
#endif
/*
* Fill-ins for platform, architecture, and compiler
*/
/* An abort()-like primitive is needed by the default fatal error handler. */
#if !defined(DUK_ABORT)
#define DUK_ABORT abort
#endif
#if !defined(DUK_SETJMP)
#define DUK_JMPBUF_TYPE jmp_buf
#define DUK_SETJMP(jb) setjmp((jb))
#define DUK_LONGJMP(jb) longjmp((jb), 1)
#endif
#if 0
/* sigsetjmp() alternative */
#define DUK_JMPBUF_TYPE sigjmp_buf
#define DUK_SETJMP(jb) sigsetjmp((jb))
#define DUK_LONGJMP(jb) siglongjmp((jb), 1)
#endif
/* Special naming to avoid conflict with e.g. DUK_FREE() in duk_heap.h
* (which is unfortunately named). May sometimes need replacement, e.g.
* some compilers don't handle zero length or NULL correctly in realloc().
*/
#if !defined(DUK_ANSI_MALLOC)
#define DUK_ANSI_MALLOC malloc
#endif
#if !defined(DUK_ANSI_REALLOC)
#define DUK_ANSI_REALLOC realloc
#endif
#if !defined(DUK_ANSI_CALLOC)
#define DUK_ANSI_CALLOC calloc
#endif
#if !defined(DUK_ANSI_FREE)
#define DUK_ANSI_FREE free
#endif
/* ANSI C (various versions) and some implementations require that the
* pointer arguments to memset(), memcpy(), and memmove() be valid values
* even when byte size is 0 (even a NULL pointer is considered invalid in
* this context). Zero-size operations as such are allowed, as long as their
* pointer arguments point to a valid memory area. The DUK_MEMSET(),
* DUK_MEMCPY(), and DUK_MEMMOVE() macros require this same behavior, i.e.:
* (1) pointers must be valid and non-NULL, (2) zero size must otherwise be
* allowed. If these are not fulfilled, a macro wrapper is needed.
*
* http://stackoverflow.com/questions/5243012/is-it-guaranteed-to-be-safe-to-perform-memcpy0-0-0
* http://lists.cs.uiuc.edu/pipermail/llvmdev/2007-October/011065.html
*
* Not sure what's the required behavior when a pointer points just past the
* end of a buffer, which often happens in practice (e.g. zero size memmoves).
* For example, if allocation size is 3, the following pointer would not
* technically point to a valid memory byte:
*
* <-- alloc -->
* | 0 | 1 | 2 | .....
* ^-- p=3, points after last valid byte (2)
*/
#if !defined(DUK_MEMCPY)
#if defined(DUK_F_UCLIBC)
/* Old uclibcs have a broken memcpy so use memmove instead (this is overly wide
* now on purpose): http://lists.uclibc.org/pipermail/uclibc-cvs/2008-October/025511.html
*/
#define DUK_MEMCPY memmove
#else
#define DUK_MEMCPY memcpy
#endif
#endif
#if !defined(DUK_MEMMOVE)
#define DUK_MEMMOVE memmove
#endif
#if !defined(DUK_MEMCMP)
#define DUK_MEMCMP memcmp
#endif
#if !defined(DUK_MEMSET)
#define DUK_MEMSET memset
#endif
#if !defined(DUK_STRLEN)
#define DUK_STRLEN strlen
#endif
#if !defined(DUK_STRCMP)
#define DUK_STRCMP strcmp
#endif
#if !defined(DUK_STRNCMP)
#define DUK_STRNCMP strncmp
#endif
#if !defined(DUK_SPRINTF)
#define DUK_SPRINTF sprintf
#endif
#if !defined(DUK_SNPRINTF)
/* snprintf() is technically not part of C89 but usually available. */
#define DUK_SNPRINTF snprintf
#endif
#if !defined(DUK_VSPRINTF)
#define DUK_VSPRINTF vsprintf
#endif
#if !defined(DUK_VSNPRINTF)
/* vsnprintf() is technically not part of C89 but usually available. */
#define DUK_VSNPRINTF vsnprintf
#endif
#if !defined(DUK_SSCANF)
#define DUK_SSCANF sscanf
#endif
#if !defined(DUK_VSSCANF)
#define DUK_VSSCANF vsscanf
#endif
#if !defined(DUK_MEMZERO)
#define DUK_MEMZERO(p,n) DUK_MEMSET((p), 0, (n))
#endif
#if !defined(DUK_DOUBLE_INFINITY)
#undef DUK_USE_COMPUTED_INFINITY
#if defined(DUK_F_GCC_VERSION) && (DUK_F_GCC_VERSION < 40600)
/* GCC older than 4.6: avoid overflow warnings related to using INFINITY */
#define DUK_DOUBLE_INFINITY (__builtin_inf())
#elif defined(INFINITY)
#define DUK_DOUBLE_INFINITY ((double) INFINITY)
#elif !defined(DUK_F_VBCC) && !defined(DUK_F_MSVC) && !defined(DUK_F_BCC)
#define DUK_DOUBLE_INFINITY (1.0 / 0.0)
#else
/* In VBCC (1.0 / 0.0) results in a warning and 0.0 instead of infinity.
* Use a computed infinity (initialized when a heap is created at the
* latest).
*/
#define DUK_USE_COMPUTED_INFINITY
#define DUK_DOUBLE_INFINITY duk_computed_infinity
#endif
#endif
#if !defined(DUK_DOUBLE_NAN)
#undef DUK_USE_COMPUTED_NAN
#if defined(NAN)
#define DUK_DOUBLE_NAN NAN
#elif !defined(DUK_F_VBCC) && !defined(DUK_F_MSVC) && !defined(DUK_F_BCC)
#define DUK_DOUBLE_NAN (0.0 / 0.0)
#else
/* In VBCC (0.0 / 0.0) results in a warning and 0.0 instead of NaN.
* In MSVC (VS2010 Express) (0.0 / 0.0) results in a compile error.
* Use a computed NaN (initialized when a heap is created at the
* latest).
*/
#define DUK_USE_COMPUTED_NAN
#define DUK_DOUBLE_NAN duk_computed_nan
#endif
#endif
/* Many platforms are missing fpclassify() and friends, so use replacements
* if necessary. The replacement constants (FP_NAN etc) can be anything but
* match Linux constants now.
*/
#undef DUK_USE_REPL_FPCLASSIFY
#undef DUK_USE_REPL_SIGNBIT
#undef DUK_USE_REPL_ISFINITE
#undef DUK_USE_REPL_ISNAN
#undef DUK_USE_REPL_ISINF
/* Complex condition broken into separate parts. */
#undef DUK_F_USE_REPL_ALL
#if !(defined(FP_NAN) && defined(FP_INFINITE) && defined(FP_ZERO) && \
defined(FP_SUBNORMAL) && defined(FP_NORMAL))
/* Missing some obvious constants. */
#define DUK_F_USE_REPL_ALL
#elif defined(DUK_F_AMIGAOS) && defined(DUK_F_VBCC)
/* VBCC is missing the built-ins even in C99 mode (perhaps a header issue). */
#define DUK_F_USE_REPL_ALL
#elif defined(DUK_F_AMIGAOS) && defined(DUK_F_M68K)
/* AmigaOS + M68K seems to have math issues even when using GCC cross
* compilation. Use replacements for all AmigaOS versions on M68K
* regardless of compiler.
*/
#define DUK_F_USE_REPL_ALL
#elif defined(DUK_F_FREEBSD) && defined(DUK_F_CLANG)
/* Placeholder fix for (detection is wider than necessary):
* http://llvm.org/bugs/show_bug.cgi?id=17788
*/
#define DUK_F_USE_REPL_ALL
#elif defined(DUK_F_UCLIBC)
/* At least some uclibc versions have broken floating point math. For
* example, fpclassify() can incorrectly classify certain NaN formats.
* To be safe, use replacements.
*/
#define DUK_F_USE_REPL_ALL
#endif
#if defined(DUK_F_USE_REPL_ALL)
#define DUK_USE_REPL_FPCLASSIFY
#define DUK_USE_REPL_SIGNBIT
#define DUK_USE_REPL_ISFINITE
#define DUK_USE_REPL_ISNAN
#define DUK_USE_REPL_ISINF
#define DUK_FPCLASSIFY duk_repl_fpclassify
#define DUK_SIGNBIT duk_repl_signbit
#define DUK_ISFINITE duk_repl_isfinite
#define DUK_ISNAN duk_repl_isnan
#define DUK_ISINF duk_repl_isinf
#define DUK_FP_NAN 0
#define DUK_FP_INFINITE 1
#define DUK_FP_ZERO 2
#define DUK_FP_SUBNORMAL 3
#define DUK_FP_NORMAL 4
#else
#define DUK_FPCLASSIFY fpclassify
#define DUK_SIGNBIT signbit
#define DUK_ISFINITE isfinite
#define DUK_ISNAN isnan
#define DUK_ISINF isinf
#define DUK_FP_NAN FP_NAN
#define DUK_FP_INFINITE FP_INFINITE
#define DUK_FP_ZERO FP_ZERO
#define DUK_FP_SUBNORMAL FP_SUBNORMAL
#define DUK_FP_NORMAL FP_NORMAL
#endif
#if defined(DUK_F_USE_REPL_ALL)
#undef DUK_F_USE_REPL_ALL
#endif
/* These functions don't currently need replacement but are wrapped for
* completeness. Because these are used as function pointers, they need
* to be defined as concrete C functions (not macros).
*/
#if !defined(DUK_FABS)
#define DUK_FABS fabs
#endif
#if !defined(DUK_FLOOR)
#define DUK_FLOOR floor
#endif
#if !defined(DUK_CEIL)
#define DUK_CEIL ceil
#endif
#if !defined(DUK_FMOD)
#define DUK_FMOD fmod
#endif
#if !defined(DUK_POW)
#define DUK_POW pow
#endif
#if !defined(DUK_ACOS)
#define DUK_ACOS acos
#endif
#if !defined(DUK_ASIN)
#define DUK_ASIN asin
#endif
#if !defined(DUK_ATAN)
#define DUK_ATAN atan
#endif
#if !defined(DUK_ATAN2)
#define DUK_ATAN2 atan2
#endif
#if !defined(DUK_SIN)
#define DUK_SIN sin
#endif
#if !defined(DUK_COS)
#define DUK_COS cos
#endif
#if !defined(DUK_TAN)
#define DUK_TAN tan
#endif
#if !defined(DUK_EXP)
#define DUK_EXP exp
#endif
#if !defined(DUK_LOG)
#define DUK_LOG log
#endif
#if !defined(DUK_SQRT)
#define DUK_SQRT sqrt
#endif
/* The functions below exist only in C99/C++11 or later and need a workaround
* for platforms that don't include them. MSVC isn't detected as C99, but
* these functions also exist in MSVC 2013 and later so include a clause for
* that too.
*/
#if defined(DUK_F_C99) || defined(DUK_F_CPP11) || (defined(_MSC_VER) && (_MSC_VER >= 1800))
#if !defined(DUK_CBRT)
#define DUK_CBRT cbrt
#endif
#if !defined(DUK_LOG2)
#define DUK_LOG2 log2
#endif
#if !defined(DUK_LOG10)
#define DUK_LOG10 log10
#endif
#if !defined(DUK_TRUNC)
#define DUK_TRUNC trunc
#endif
#endif /* DUK_F_C99 */
/* NetBSD 6.0 x86 (at least) has a few problems with pow() semantics,
* see test-bug-netbsd-math-pow.js. MinGW has similar (but different)
* issues, see test-bug-mingw-math-issues.js. Enable pow() workarounds
* for these targets.
*/
#undef DUK_USE_POW_WORKAROUNDS
#if defined(DUK_F_NETBSD) || defined(DUK_F_MINGW)
#define DUK_USE_POW_WORKAROUNDS
#endif
/* Similar workarounds for atan2() semantics issues. MinGW issues are
* documented in test-bug-mingw-math-issues.js.
*/
#undef DUK_USE_ATAN2_WORKAROUNDS
#if defined(DUK_F_MINGW)
#define DUK_USE_ATAN2_WORKAROUNDS
#endif
/* Rely as little as possible on compiler behavior for NaN comparison,
* signed zero handling, etc. Currently never activated but may be needed
* for broken compilers.
*/
#undef DUK_USE_PARANOID_MATH
/* There was a curious bug where test-bi-date-canceling.js would fail e.g.
* on 64-bit Ubuntu, gcc-4.8.1, -m32, and no -std=c99. Some date computations
* using doubles would be optimized which then broke some corner case tests.
* The problem goes away by adding 'volatile' to the datetime computations.
* Not sure what the actual triggering conditions are, but using this on
* non-C99 systems solves the known issues and has relatively little cost
* on other platforms.
*/
#undef DUK_USE_PARANOID_DATE_COMPUTATION
#if !defined(DUK_F_C99)
#define DUK_USE_PARANOID_DATE_COMPUTATION
#endif
/*
* Byte order and double memory layout detection
*
* Endianness detection is a major portability hassle because the macros
* and headers are not standardized. There's even variance across UNIX
* platforms. Even with "standard" headers, details like underscore count
* varies between platforms, e.g. both __BYTE_ORDER and _BYTE_ORDER are used
* (Crossbridge has a single underscore, for instance).
*
* The checks below are structured with this in mind: several approaches are
* used, and at the end we check if any of them worked. This allows generic
* approaches to be tried first, and platform/compiler specific hacks tried
* last. As a last resort, the user can force a specific endianness, as it's
* not likely that automatic detection will work on the most exotic platforms.
*
* Duktape supports little and big endian machines. There's also support
* for a hybrid used by some ARM machines where integers are little endian
* but IEEE double values use a mixed order (12345678 -> 43218765). This
* byte order for doubles is referred to as "mixed endian".
*/
/* GCC and Clang provide endianness defines as built-in predefines, with
* leading and trailing double underscores (e.g. __BYTE_ORDER__). See
* output of "make gccpredefs" and "make clangpredefs". Clang doesn't
* seem to provide __FLOAT_WORD_ORDER__; assume not mixed endian for clang.
* http://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
*/
#if !defined(DUK_USE_BYTEORDER) && defined(__BYTE_ORDER__)
#if defined(__ORDER_LITTLE_ENDIAN__) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#if defined(__FLOAT_WORD_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#define DUK_USE_BYTEORDER 1
#elif defined(__FLOAT_WORD_ORDER__) && defined(__ORDER_BIG_ENDIAN__) && (__FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__)
#define DUK_USE_BYTEORDER 2
#elif !defined(__FLOAT_WORD_ORDER__)
/* Float word order not known, assume not a hybrid. */
#define DUK_USE_BYTEORDER 1
#else
/* Byte order is little endian but cannot determine IEEE double word order. */
#endif /* float word order */
#elif defined(__ORDER_BIG_ENDIAN__) && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)
#if defined(__FLOAT_WORD_ORDER__) && defined(__ORDER_BIG_ENDIAN__) && (__FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__)
#define DUK_USE_BYTEORDER 3
#elif !defined(__FLOAT_WORD_ORDER__)
/* Float word order not known, assume not a hybrid. */
#define DUK_USE_BYTEORDER 3
#else
/* Byte order is big endian but cannot determine IEEE double word order. */
#endif /* float word order */
#else
/* Cannot determine byte order; __ORDER_PDP_ENDIAN__ is related to 32-bit
* integer ordering and is not relevant.
*/
#endif /* integer byte order */
#endif /* !defined(DUK_USE_BYTEORDER) && defined(__BYTE_ORDER__) */
/* More or less standard endianness predefines provided by header files.
* The ARM hybrid case is detected by assuming that __FLOAT_WORD_ORDER
* will be big endian, see: http://lists.mysql.com/internals/443.
* On some platforms some defines may be present with an empty value which
* causes comparisons to fail: https://github.com/svaarala/duktape/issues/453.
*/
#if !defined(DUK_USE_BYTEORDER)
#if defined(__BYTE_ORDER) && defined(__LITTLE_ENDIAN) && (__BYTE_ORDER == __LITTLE_ENDIAN) || \
defined(_BYTE_ORDER) && defined(_LITTLE_ENDIAN) && (_BYTE_ORDER == _LITTLE_ENDIAN) || \
defined(__LITTLE_ENDIAN__)
#if defined(__FLOAT_WORD_ORDER) && defined(__LITTLE_ENDIAN) && (__FLOAT_WORD_ORDER == __LITTLE_ENDIAN) || \
defined(_FLOAT_WORD_ORDER) && defined(_LITTLE_ENDIAN) && (_FLOAT_WORD_ORDER == _LITTLE_ENDIAN)
#define DUK_USE_BYTEORDER 1
#elif defined(__FLOAT_WORD_ORDER) && defined(__BIG_ENDIAN) && (__FLOAT_WORD_ORDER == __BIG_ENDIAN) || \
defined(_FLOAT_WORD_ORDER) && defined(_BIG_ENDIAN) && (_FLOAT_WORD_ORDER == _BIG_ENDIAN)
#define DUK_USE_BYTEORDER 2
#elif !defined(__FLOAT_WORD_ORDER) && !defined(_FLOAT_WORD_ORDER)
/* Float word order not known, assume not a hybrid. */
#define DUK_USE_BYTEORDER 1
#else
/* Byte order is little endian but cannot determine IEEE double word order. */
#endif /* float word order */
#elif defined(__BYTE_ORDER) && defined(__BIG_ENDIAN) && (__BYTE_ORDER == __BIG_ENDIAN) || \
defined(_BYTE_ORDER) && defined(_BIG_ENDIAN) && (_BYTE_ORDER == _BIG_ENDIAN) || \
defined(__BIG_ENDIAN__)
#if defined(__FLOAT_WORD_ORDER) && defined(__BIG_ENDIAN) && (__FLOAT_WORD_ORDER == __BIG_ENDIAN) || \
defined(_FLOAT_WORD_ORDER) && defined(_BIG_ENDIAN) && (_FLOAT_WORD_ORDER == _BIG_ENDIAN)
#define DUK_USE_BYTEORDER 3
#elif !defined(__FLOAT_WORD_ORDER) && !defined(_FLOAT_WORD_ORDER)
/* Float word order not known, assume not a hybrid. */
#define DUK_USE_BYTEORDER 3
#else
/* Byte order is big endian but cannot determine IEEE double word order. */
#endif /* float word order */
#else
/* Cannot determine byte order. */
#endif /* integer byte order */
#endif /* !defined(DUK_USE_BYTEORDER) */
/* QNX gcc cross compiler seems to define e.g. __LITTLEENDIAN__ or __BIGENDIAN__:
* $ /opt/qnx650/host/linux/x86/usr/bin/i486-pc-nto-qnx6.5.0-gcc -dM -E - </dev/null | grep -ni endian
* 67:#define __LITTLEENDIAN__ 1
* $ /opt/qnx650/host/linux/x86/usr/bin/mips-unknown-nto-qnx6.5.0-gcc -dM -E - </dev/null | grep -ni endian
* 81:#define __BIGENDIAN__ 1
* $ /opt/qnx650/host/linux/x86/usr/bin/arm-unknown-nto-qnx6.5.0-gcc -dM -E - </dev/null | grep -ni endian
* 70:#define __LITTLEENDIAN__ 1
*/
#if !defined(DUK_USE_BYTEORDER)
#if defined(__LITTLEENDIAN__)
#define DUK_USE_BYTEORDER 1
#elif defined(__BIGENDIAN__)
#define DUK_USE_BYTEORDER 3
#endif
#endif
/*
* Alignment requirement and support for unaligned accesses
*
* Assume unaligned accesses are not supported unless specifically allowed
* in the target platform. Some platforms may support unaligned accesses
* but alignment to 4 or 8 may still be desirable.
*/
/* If not provided, use safe default for alignment. */
#if !defined(DUK_USE_ALIGN_BY)
#define DUK_USE_ALIGN_BY 8
#endif
/* Compiler specific hackery needed to force struct size to match aligment,
* see e.g. duk_hbuffer.h.
*
* http://stackoverflow.com/questions/11130109/c-struct-size-alignment
* http://stackoverflow.com/questions/10951039/specifying-64-bit-alignment
*/
#if !(defined(DUK_USE_PACK_MSVC_PRAGMA) || defined(DUK_USE_PACK_GCC_ATTR) || \
defined(DUK_USE_PACK_CLANG_ATTR) || defined(DUK_USE_PACK_DUMMY_MEMBER))
#define DUK_USE_PACK_DUMMY_MEMBER
#endif
#if !defined(DUK_VA_COPY)
/* We need va_copy() which is defined in C99 / C++11, so an awkward
* replacement is needed for pre-C99 / pre-C++11 environments. This
* will quite likely need portability hacks for some non-C99
* environments.
*/
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
/* C99 / C++11 and above: rely on va_copy() which is required.
* Omit parenthesis on macro right side on purpose to minimize differences
* to direct use.
*/
#define DUK_VA_COPY(dest,src) va_copy(dest,src)
#else
/* Pre-C99: va_list type is implementation dependent. This replacement
* assumes it is a plain value so that a simple assignment will work.
* This is not the case on all platforms (it may be a single-array element,
* for instance).
*/
#define DUK_VA_COPY(dest,src) do { (dest) = (src); } while (0)
#endif
#endif
#if !defined(DUK_MACRO_STRINGIFY)
/* Macro hackery to convert e.g. __LINE__ to a string without formatting,
* see: http://stackoverflow.com/questions/240353/convert-a-preprocessor-token-to-a-string
*/
#define DUK_MACRO_STRINGIFY_HELPER(x) #x
#define DUK_MACRO_STRINGIFY(x) DUK_MACRO_STRINGIFY_HELPER(x)
#endif
#if !defined(DUK_CAUSE_SEGFAULT)
/* This can be used for testing; valgrind will then indicate the C call stack
* leading to the call site.
*/
#define DUK_CAUSE_SEGFAULT() do { *((volatile duk_uint32_t *) NULL) = (duk_uint32_t) 0xdeadbeefUL; } while (0)
#endif
#if !defined(DUK_UNREF)
/* Macro for suppressing warnings for potentially unreferenced variables.
* The variables can be actually unreferenced or unreferenced in some
* specific cases only; for instance, if a variable is only debug printed,
* it is unreferenced when debug printing is disabled.
*/
#define DUK_UNREF(x) do { (void) (x); } while (0)
#endif
#if !defined(DUK_NORETURN)
#define DUK_NORETURN(decl) decl
#endif
#if !defined(DUK_UNREACHABLE)
/* Don't know how to declare unreachable point, so don't do it; this
* may cause some spurious compilation warnings (e.g. "variable used
* uninitialized").
*/
#define DUK_UNREACHABLE() do { } while (0)
#endif
#if !defined(DUK_LOSE_CONST)
/* Convert any input pointer into a "void *", losing a const qualifier.
* This is not fully portable because casting through duk_uintptr_t may
* not work on all architectures (e.g. those with long, segmented pointers).
*/
#define DUK_LOSE_CONST(src) ((void *) (duk_uintptr_t) (src))
#endif
#if !defined(DUK_LIKELY)
#define DUK_LIKELY(x) (x)
#endif
#if !defined(DUK_UNLIKELY)
#define DUK_UNLIKELY(x) (x)
#endif
#if !defined(DUK_UNPREDICTABLE)
#define DUK_UNPREDICTABLE(x) (x)
#endif
#if !defined(DUK_NOINLINE)
#define DUK_NOINLINE /*nop*/
#endif
#if !defined(DUK_INLINE)
#define DUK_INLINE /*nop*/
#endif
#if !defined(DUK_ALWAYS_INLINE)
#define DUK_ALWAYS_INLINE /*nop*/
#endif
#if !defined(DUK_EXTERNAL_DECL)
#define DUK_EXTERNAL_DECL extern
#endif
#if !defined(DUK_EXTERNAL)
#define DUK_EXTERNAL /*empty*/
#endif
#if !defined(DUK_INTERNAL_DECL)
#if defined(DUK_SINGLE_FILE)
#define DUK_INTERNAL_DECL static
#else
#define DUK_INTERNAL_DECL extern
#endif
#endif
#if !defined(DUK_INTERNAL)
#if defined(DUK_SINGLE_FILE)
#define DUK_INTERNAL static
#else
#define DUK_INTERNAL /*empty*/
#endif
#endif
#if !defined(DUK_LOCAL_DECL)
#define DUK_LOCAL_DECL static
#endif
#if !defined(DUK_LOCAL)
#define DUK_LOCAL static
#endif
#if !defined(DUK_FILE_MACRO)
#define DUK_FILE_MACRO __FILE__
#endif
#if !defined(DUK_LINE_MACRO)
#define DUK_LINE_MACRO __LINE__
#endif
#if !defined(DUK_FUNC_MACRO)
#if defined(DUK_F_C99) || defined(DUK_F_CPP11)
#define DUK_FUNC_MACRO __func__
#elif defined(__FUNCTION__)
#define DUK_FUNC_MACRO __FUNCTION__
#else
#define DUK_FUNC_MACRO "unknown"
#endif
#endif
#if !defined(DUK_BSWAP32)
#define DUK_BSWAP32(x) \
((((duk_uint32_t) (x)) >> 24) | \
((((duk_uint32_t) (x)) >> 8) & 0xff00UL) | \
((((duk_uint32_t) (x)) << 8) & 0xff0000UL) | \
(((duk_uint32_t) (x)) << 24))
#endif
#if !defined(DUK_BSWAP16)
#define DUK_BSWAP16(x) \
((duk_uint16_t) (x) >> 8) | \
((duk_uint16_t) (x) << 8)
#endif
/* DUK_USE_VARIADIC_MACROS: required from compilers, so no fill-in. */
/* DUK_USE_UNION_INITIALIZERS: required from compilers, so no fill-in. */
#if !(defined(DUK_USE_FLEX_C99) || defined(DUK_USE_FLEX_ZEROSIZE) || defined(DUK_USE_FLEX_ONESIZE))
#if defined(DUK_F_C99)
#define DUK_USE_FLEX_C99
#else
#define DUK_USE_FLEX_ZEROSIZE /* Not standard but common enough */
#endif
#endif
#if !(defined(DUK_USE_PACK_GCC_ATTR) || defined(DUK_USE_PACK_CLANG_ATTR) || \
defined(DUK_USE_PACK_MSVC_PRAGMA) || defined(DUK_USE_PACK_DUMMY_MEMBER))
#define DUK_USE_PACK_DUMMY_MEMBER
#endif
#if 0 /* not defined by default */
#undef DUK_USE_GCC_PRAGMAS
#endif
/* Workaround for GH-323: avoid inlining control when compiling from
* multiple sources, as it causes compiler portability trouble.
*/
#if !defined(DUK_SINGLE_FILE)
#undef DUK_NOINLINE
#undef DUK_INLINE
#undef DUK_ALWAYS_INLINE
#define DUK_NOINLINE /*nop*/
#define DUK_INLINE /*nop*/
#define DUK_ALWAYS_INLINE /*nop*/
#endif
/*
* Check whether or not a packed duk_tval representation is possible.
* What's basically required is that pointers are 32-bit values
* (sizeof(void *) == 4). Best effort check, not always accurate.
* If guess goes wrong, crashes may result; self tests also verify
* the guess.
*/
/* Explicit marker needed; may be 'defined', 'undefined, 'or 'not provided'. */
#if !defined(DUK_F_PACKED_TVAL_PROVIDED)
#undef DUK_F_PACKED_TVAL_POSSIBLE
/* Strict C99 case: DUK_UINTPTR_MAX (= UINTPTR_MAX) should be very reliable */
#if !defined(DUK_F_PACKED_TVAL_POSSIBLE) && defined(DUK_UINTPTR_MAX)
#if (DUK_UINTPTR_MAX <= 0xffffffffUL)
#define DUK_F_PACKED_TVAL_POSSIBLE
#endif
#endif
/* Non-C99 case, still relying on DUK_UINTPTR_MAX, as long as it is not a computed value */
#if !defined(DUK_F_PACKED_TVAL_POSSIBLE) && defined(DUK_UINTPTR_MAX) && !defined(DUK_UINTPTR_MAX_COMPUTED)
#if (DUK_UINTPTR_MAX <= 0xffffffffUL)
#define DUK_F_PACKED_TVAL_POSSIBLE
#endif
#endif
/* DUK_SIZE_MAX (= SIZE_MAX) is often reliable */
#if !defined(DUK_F_PACKED_TVAL_POSSIBLE) && defined(DUK_SIZE_MAX) && !defined(DUK_SIZE_MAX_COMPUTED)
#if (DUK_SIZE_MAX <= 0xffffffffUL)
#define DUK_F_PACKED_TVAL_POSSIBLE
#endif
#endif
#undef DUK_USE_PACKED_TVAL
#if defined(DUK_F_PACKED_TVAL_POSSIBLE)
#define DUK_USE_PACKED_TVAL
#endif
#undef DUK_F_PACKED_TVAL_POSSIBLE
#endif /* DUK_F_PACKED_TVAL_PROVIDED */
/* Object property allocation layout has implications for memory and code
* footprint and generated code size/speed. The best layout also depends
* on whether the platform has alignment requirements or benefits from
* having mostly aligned accesses.
*/
#undef DUK_USE_HOBJECT_LAYOUT_1
#undef DUK_USE_HOBJECT_LAYOUT_2
#undef DUK_USE_HOBJECT_LAYOUT_3
#if (DUK_USE_ALIGN_BY == 1)
/* On platforms without any alignment issues, layout 1 is preferable
* because it compiles to slightly less code and provides direct access
* to property keys.
*/
#define DUK_USE_HOBJECT_LAYOUT_1
#else
/* On other platforms use layout 2, which requires some padding but
* is a bit more natural than layout 3 in ordering the entries. Layout
* 3 is currently not used.
*/
#define DUK_USE_HOBJECT_LAYOUT_2
#endif
/* GCC/clang inaccurate math would break compliance and probably duk_tval,
* so refuse to compile. Relax this if -ffast-math is tested to work.
*/
#if defined(__FAST_MATH__)
#error __FAST_MATH__ defined, refusing to compile
#endif
/*
* Forced options
*/
#undef DUK_USE_ARRAY_FASTPATH
#undef DUK_USE_ARRAY_PROP_FASTPATH
#undef DUK_USE_AUGMENT_ERROR_CREATE
#undef DUK_USE_AUGMENT_ERROR_THROW
#undef DUK_USE_BASE64_FASTPATH
#define DUK_USE_BUFFEROBJECT_SUPPORT
#undef DUK_USE_BYTECODE_DUMP_SUPPORT
#undef DUK_USE_COROUTINE_SUPPORT
#define DUK_USE_DATE_GET_NOW esp32_duktape_get_now
#undef DUK_USE_DEBUGGER_SUPPORT
#define DUK_USE_DEBUG_BUFSIZE 2048
#undef DUK_USE_ENCODING_BUILTINS
#undef DUK_USE_ERRCREATE
#undef DUK_USE_ERRTHROW
#undef DUK_USE_ES6
#undef DUK_USE_ES6_PROXY
#undef DUK_USE_ES6_UNICODE_ESCAPE
#undef DUK_USE_ES7_EXP_OPERATOR
#define DUK_USE_EXEC_PREFER_SIZE
#undef DUK_USE_FAST_REFCOUNT_DEFAULT
#undef DUK_USE_FUNC_FILENAME_PROPERTY
#define DUK_USE_FUNC_NAME_PROPERTY
#undef DUK_USE_HEX_FASTPATH
#undef DUK_USE_HSTRING_ARRIDX
#undef DUK_USE_IDCHAR_FASTPATH
#undef DUK_USE_JC
#undef DUK_USE_JSON_DECNUMBER_FASTPATH
#undef DUK_USE_JSON_DECSTRING_FASTPATH
#undef DUK_USE_JSON_EATWHITE_FASTPATH
#undef DUK_USE_JSON_QUOTESTRING_FASTPATH
#undef DUK_USE_JSON_STRINGIFY_FASTPATH
#undef DUK_USE_JX
#undef DUK_USE_LEXER_SLIDING_WINDOW
#define DUK_USE_LIGHTFUNC_BUILTINS
#define DUK_USE_PARANOID_ERRORS
#undef DUK_USE_PC2LINE
#define DUK_USE_PREFER_SIZE
#undef DUK_USE_REFLECT_BUILTIN
#undef DUK_USE_REGEXP_CANON_WORKAROUND
#undef DUK_USE_SOURCE_NONBMP
#define DUK_USE_STRTAB_CHAIN
#define DUK_USE_STRTAB_CHAIN_SIZE 128
#undef DUK_USE_STRTAB_PROBE
#undef DUK_USE_SYMBOL_BUILTIN
#undef DUK_USE_TRACEBACKS
#define DUK_USE_VALSTACK_UNSAFE
#undef DUK_USE_VERBOSE_ERRORS
#undef DUK_USE_VERBOSE_EXECUTOR_ERRORS
/*
* Autogenerated defaults
*/
#define DUK_USE_ARRAY_BUILTIN
#undef DUK_USE_ASSERTIONS
#define DUK_USE_AVOID_PLATFORM_FUNCPTRS
#define DUK_USE_BOOLEAN_BUILTIN
#undef DUK_USE_BUFLEN16
#define DUK_USE_COMMONJS_MODULES
#define DUK_USE_COMPILER_RECLIMIT 2500
#undef DUK_USE_CPP_EXCEPTIONS
#undef DUK_USE_DATAPTR16
#undef DUK_USE_DATAPTR_DEC16
#undef DUK_USE_DATAPTR_ENC16
#define DUK_USE_DATE_BUILTIN
#undef DUK_USE_DATE_FORMAT_STRING
#undef DUK_USE_DATE_GET_LOCAL_TZOFFSET
#undef DUK_USE_DATE_PARSE_STRING
#undef DUK_USE_DATE_PRS_GETDATE
#undef DUK_USE_DEBUG
#undef DUK_USE_DEBUGGER_DUMPHEAP
#undef DUK_USE_DEBUGGER_INSPECT
#undef DUK_USE_DEBUGGER_PAUSE_UNCAUGHT
#define DUK_USE_DEBUGGER_THROW_NOTIFY
#undef DUK_USE_DEBUGGER_TRANSPORT_TORTURE
#define DUK_USE_DEBUG_LEVEL 0
#undef DUK_USE_DEBUG_WRITE
#define DUK_USE_DOUBLE_LINKED_HEAP
#define DUK_USE_DUKTAPE_BUILTIN
#define DUK_USE_ES6_OBJECT_PROTO_PROPERTY
#define DUK_USE_ES6_OBJECT_SETPROTOTYPEOF
#define DUK_USE_ES6_REGEXP_SYNTAX
#define DUK_USE_ESBC_LIMITS
#define DUK_USE_ESBC_MAX_BYTES 2147418112L
#define DUK_USE_ESBC_MAX_LINENUMBER 2147418112L
#undef DUK_USE_EXEC_FUN_LOCAL
#undef DUK_USE_EXEC_INDIRECT_BOUND_CHECK
#define DUK_USE_EXEC_REGCONST_OPTIMIZE
#undef DUK_USE_EXEC_TIMEOUT_CHECK
#undef DUK_USE_EXPLICIT_NULL_INIT
#undef DUK_USE_EXTSTR_FREE
#undef DUK_USE_EXTSTR_INTERN_CHECK
#undef DUK_USE_FASTINT
#undef DUK_USE_FATAL_HANDLER
#define DUK_USE_FINALIZER_SUPPORT
#undef DUK_USE_FUNCPTR16
#undef DUK_USE_FUNCPTR_DEC16
#undef DUK_USE_FUNCPTR_ENC16
#define DUK_USE_FUNCTION_BUILTIN
#undef DUK_USE_GC_TORTURE
#undef DUK_USE_GET_RANDOM_DOUBLE
#define DUK_USE_GLOBAL_BUILTIN
#undef DUK_USE_HEAPPTR16
#undef DUK_USE_HEAPPTR_DEC16
#undef DUK_USE_HEAPPTR_ENC16
#define DUK_USE_HOBJECT_HASH_PART
#define DUK_USE_HSTRING_CLEN
#undef DUK_USE_HSTRING_EXTDATA
#undef DUK_USE_INTERRUPT_COUNTER
#undef DUK_USE_INTERRUPT_DEBUG_FIXUP
#define DUK_USE_JSON_BUILTIN
#define DUK_USE_JSON_DEC_RECLIMIT 1000
#define DUK_USE_JSON_ENC_RECLIMIT 1000
#define DUK_USE_JSON_SUPPORT
#undef DUK_USE_MARKANDSWEEP_FINALIZER_TORTURE
#define DUK_USE_MARK_AND_SWEEP_RECLIMIT 256
#define DUK_USE_MATH_BUILTIN
#define DUK_USE_MS_STRINGTABLE_RESIZE
#define DUK_USE_NATIVE_CALL_RECLIMIT 1000
#define DUK_USE_NONSTD_ARRAY_CONCAT_TRAILER
#define DUK_USE_NONSTD_ARRAY_MAP_TRAILER
#define DUK_USE_NONSTD_ARRAY_SPLICE_DELCOUNT
#undef DUK_USE_NONSTD_FUNC_CALLER_PROPERTY
#undef DUK_USE_NONSTD_FUNC_SOURCE_PROPERTY
#define DUK_USE_NONSTD_FUNC_STMT
#define DUK_USE_NONSTD_GETTER_KEY_ARGUMENT
#define DUK_USE_NONSTD_JSON_ESC_U2028_U2029
#define DUK_USE_NONSTD_SETTER_KEY_ARGUMENT
#define DUK_USE_NONSTD_STRING_FROMCHARCODE_32BIT
#define DUK_USE_NUMBER_BUILTIN
#define DUK_USE_OBJECT_BUILTIN
#undef DUK_USE_OBJSIZES16
#define DUK_USE_PROVIDE_DEFAULT_ALLOC_FUNCTIONS
#undef DUK_USE_REFCOUNT16
#define DUK_USE_REFERENCE_COUNTING
#undef DUK_USE_REFZERO_FINALIZER_TORTURE
#define DUK_USE_REGEXP_COMPILER_RECLIMIT 10000
#define DUK_USE_REGEXP_EXECUTOR_RECLIMIT 10000
#define DUK_USE_REGEXP_SUPPORT
#undef DUK_USE_ROM_GLOBAL_CLONE
#undef DUK_USE_ROM_GLOBAL_INHERIT
#undef DUK_USE_ROM_OBJECTS
#define DUK_USE_ROM_PTRCOMP_FIRST 63488L
#undef DUK_USE_ROM_STRINGS
#define DUK_USE_SECTION_B
#undef DUK_USE_SELF_TESTS
#undef DUK_USE_SHUFFLE_TORTURE
#undef DUK_USE_STRHASH16
#undef DUK_USE_STRHASH_DENSE
#define DUK_USE_STRHASH_SKIP_SHIFT 5
#define DUK_USE_STRICT_DECL
#undef DUK_USE_STRICT_UTF8_SOURCE
#define DUK_USE_STRING_BUILTIN
#undef DUK_USE_STRLEN16
#define DUK_USE_TAILCALL
#define DUK_USE_TARGET_INFO "unknown"
#define DUK_USE_TRACEBACK_DEPTH 10
#define DUK_USE_USER_DECLARE() /* no user declarations */
#define DUK_USE_VOLUNTARY_GC
#define DUK_USE_ZERO_BUFFER_DATA
/*
* Fixups
*/
/*
* duktape_fixup.h
*
* Created on: Dec 25, 2016
* Author: kolban
*/
#ifndef MAIN_INCLUDE_DUKTAPE_FIXUP_H_
#define MAIN_INCLUDE_DUKTAPE_FIXUP_H_
#include <stdio.h>
#include <sys/time.h>
/**
* This function must return the number of milliseconds since the 1970
* epoch. We use gettimeofday() provided by the environment. The name
* of the function must be specified in duk_config.h ... for example:
*
* #define DUK_USE_DATE_GET_NOW(ctx) esp32_duktape_get_now()
* #define DUK_USE_DATE_GET_LOCAL_TZOFFSET(d) 0
*/
duk_double_t esp32_duktape_get_now();
#endif /* MAIN_INCLUDE_DUKTAPE_FIXUP_H_ */
/*
* You may add overriding #define/#undef directives below for
* customization. You of course cannot un-#include or un-typedef
* anything; these require direct changes above.
*/
/* __OVERRIDE_DEFINES__ */
/*
* Date provider selection
*
* User may define DUK_USE_DATE_GET_NOW() etc directly, in which case we'll
* rely on an external provider. If this is not done, revert to previous
* behavior and use Unix/Windows built-in provider.
*/
#if defined(DUK_COMPILING_DUKTAPE)
#if defined(DUK_USE_DATE_GET_NOW)
/* External provider already defined. */
#elif defined(DUK_USE_DATE_NOW_GETTIMEOFDAY)
#define DUK_USE_DATE_GET_NOW(ctx) duk_bi_date_get_now_gettimeofday((ctx))
#elif defined(DUK_USE_DATE_NOW_TIME)
#define DUK_USE_DATE_GET_NOW(ctx) duk_bi_date_get_now_time((ctx))
#elif defined(DUK_USE_DATE_NOW_WINDOWS)
#define DUK_USE_DATE_GET_NOW(ctx) duk_bi_date_get_now_windows((ctx))
#else
#error no provider for DUK_USE_DATE_GET_NOW()
#endif
#if defined(DUK_USE_DATE_GET_LOCAL_TZOFFSET)
/* External provider already defined. */
#elif defined(DUK_USE_DATE_TZO_GMTIME_R) || defined(DUK_USE_DATE_TZO_GMTIME)
#define DUK_USE_DATE_GET_LOCAL_TZOFFSET(d) duk_bi_date_get_local_tzoffset_gmtime((d))
#elif defined(DUK_USE_DATE_TZO_WINDOWS)
#define DUK_USE_DATE_GET_LOCAL_TZOFFSET(d) duk_bi_date_get_local_tzoffset_windows((d))
#else
#error no provider for DUK_USE_DATE_GET_LOCAL_TZOFFSET()
#endif
#if defined(DUK_USE_DATE_PARSE_STRING)
/* External provider already defined. */
#elif defined(DUK_USE_DATE_PRS_STRPTIME)
#define DUK_USE_DATE_PARSE_STRING(ctx,str) duk_bi_date_parse_string_strptime((ctx), (str))
#elif defined(DUK_USE_DATE_PRS_GETDATE)
#define DUK_USE_DATE_PARSE_STRING(ctx,str) duk_bi_date_parse_string_getdate((ctx), (str))
#else
/* No provider for DUK_USE_DATE_PARSE_STRING(), fall back to ISO 8601 only. */
#endif
#if defined(DUK_USE_DATE_FORMAT_STRING)
/* External provider already defined. */
#elif defined(DUK_USE_DATE_FMT_STRFTIME)
#define DUK_USE_DATE_FORMAT_STRING(ctx,parts,tzoffset,flags) \
duk_bi_date_format_parts_strftime((ctx), (parts), (tzoffset), (flags))
#else
/* No provider for DUK_USE_DATE_FORMAT_STRING(), fall back to ISO 8601 only. */
#endif
#endif /* DUK_COMPILING_DUKTAPE */
/*
* Convert DUK_USE_BYTEORDER, from whatever source, into currently used
* internal defines. If detection failed, #error out.
*/
#if defined(DUK_USE_BYTEORDER)
#if (DUK_USE_BYTEORDER == 1)
#define DUK_USE_INTEGER_LE
#define DUK_USE_DOUBLE_LE
#elif (DUK_USE_BYTEORDER == 2)
#define DUK_USE_INTEGER_LE /* integer endianness is little on purpose */
#define DUK_USE_DOUBLE_ME
#elif (DUK_USE_BYTEORDER == 3)
#define DUK_USE_INTEGER_BE
#define DUK_USE_DOUBLE_BE
#else
#error unsupported: byte order invalid
#endif /* byte order */
#else
#error unsupported: byte order detection failed
#endif /* defined(DUK_USE_BYTEORDER) */
#endif /* DUK_CONFIG_H_INCLUDED */
| [
"kolban@us.ibm.com"
] | kolban@us.ibm.com |
84fad6da2a868684876285a32904212e6b839540 | 57a590f66c7a2e9c2e5ba798633260c56f05d409 | /torc/generic/util/Error.hpp | ce3025e59e7f996545b741e8b10afbcc43c80bb7 | [] | no_license | zkaiwen/e2g | 834cdddd40f151c7fc20de68f2c861f6b46723dc | ea34c92a15d932cdea594b57ccebb1e23d6f70e1 | refs/heads/master | 2021-01-02T09:32:09.077479 | 2014-11-05T03:43:24 | 2014-11-05T03:43:24 | 20,003,075 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,008 | hpp | // TORC - Copyright 2010 University of Southern California. All Rights Reserved.
#ifndef TORC_GENERIC_ERROR_H
#define TORC_GENERIC_ERROR_H
#include <map>
#include <string>
#include <vector>
//BOOST
#include <boost/any.hpp>
#include <boost/cstdint.hpp>
#include "torc/generic/util/MessageId.hpp"
namespace torc {
namespace generic {
/**
* @brief The Error object thrown by different methods of EdifOM
*
* The Error class is used to convey exception information to the user. The error object is constructed by the throwing method and propagated upwards by the calling functions.
*
* @note This class does not inherit from std::exception by design. Clients should keep that in mind while using this class.
*/
class Error
{
public:
/**
* Context sensitive data for the error object. The Context map stores a boost::any inSource corresponding to a name. As the Error bubbles up, this data may be augmented by catching contexts.
*/
typedef std::map< std::string, boost::any > Context;
/**
* Represents the throw and catch locations of the exception. Contains function, file and line numbers.
*/
struct StackFrameInfo
{
private:
std::string mFunction;
std::string mFile;
uint32_t mLine;
public:
StackFrameInfo(const std::string &inFunction,
const std::string &inFile,
uint32_t inLine);
~StackFrameInfo() throw();
StackFrameInfo(const StackFrameInfo & source);
StackFrameInfo &
operator=(const StackFrameInfo & source) throw();
inline const std::string
getFunction() const throw();
inline const std::string
getFile() const throw();
inline const uint32_t
getLine() const throw();
};
/**
* Constructor.
*
* @param[in] inId Error message identifier that can be used to look up the message in MessageTable.
* @param[in] inContext Context data that will be saved inside this error object.
* @param[in] inFunction Function name from where this exception is being thrown. This will typically be set to __FUNCTION__.
* @param[in] inFile File name from where this exception is being thrown. This will typically be set to __FILE__.
* @param[in] inLine Line No. in the file from where this exception is being thrown. This will typically be set to __LINE__.
*/
Error(MessageId inId,
const Context &inContext,
const std::string &inFunction,
const std::string &inFile, uint32_t inLine);
/**
* @overload
*/
Error(MessageId inId,
const std::string &inFunction,
const std::string &inFile, uint32_t inLine);
~Error() throw();
Error(const Error & source) throw();
Error &
operator=(const Error & source) throw();
/**
* Get the complete stack trace.
*
* @return vector containing the StackFrameInfo objects.
*/
inline const std::vector<StackFrameInfo> &
getStackTrace() const throw();
/**
* Set the current location. This method should be used by catching contexts to push location data into the error object.
*
* @param[in] inFunction Function name from where this exception is being thrown. This will typically be set to __FUNCTION__.
* @param[in] inFile File name from where this exception is being thrown. This will typically be set to __FILE__.
* @param[in] inLine Line No. in the file from where this exception is being thrown. This will typically be set to __LINE__.
*/
void
setCurrentLocation( const std::string &inFunction,
const std::string &inFile, uint32_t inLine) throw();
/**
* Get the map of context data for this exception. This can be looked up by interested parties for context sensitive information. Note that the value_type for this map is boost::any and therefore an appropriate boost::any_cast is required to get the actual data.
*
* @return const reference to a Context object.
*/
inline const Context
getContextData() const throw();
/**
* Save a context sensitive data with a meaningful name, that can be retreived by interested catching contexts.
*
* @param[in] inName Name of the data.
* @param[in] inSource Any type of data. The only restrictions are that the type of data should be copy constructible and assignable.
*/
void
saveContextData(const std::string &inName,
const boost::any &inSource) throw();
/**
* Get the error message Id for this error.
*
* @return MessageId corresponding to this error
*/
inline const MessageId
getErrorMessageId() const throw();
private:
std::vector<StackFrameInfo> mStackTrace;
Context mContextData;
MessageId mErrorMessageId;
};
inline const std::string
Error::StackFrameInfo::getFunction() const throw() {
return mFunction;
}
inline const std::string
Error::StackFrameInfo::getFile() const throw() {
return mFile;
}
inline const uint32_t
Error::StackFrameInfo::getLine() const throw() {
return mLine;
}
/**
* Get the complete stack trace.
*
* @return vector containing the StackFrameInfo objects.
*/
inline const std::vector<Error::StackFrameInfo> &
Error::getStackTrace() const throw() {
return mStackTrace;
}
/**
* Get the map of context data for this exception. This can be looked up by interested parties for context sensitive information. Note that the value_type for this map is boost::any and therefore an appropriate boost::any_cast is required to get the actual data.
*
* @return const reference to a Context object.
*/
inline const Error::Context
Error::getContextData() const throw() {
return mContextData;
}
/**
* Get the error message Id for this error.
*
* @return MessageId corresponding to this error
*/
inline const MessageId
Error::getErrorMessageId() const throw() {
return mErrorMessageId;
}
} // namespace torc::generic
} // namespace torc
#endif
| [
"zkaiwen@gmail.com"
] | zkaiwen@gmail.com |
41d7acd3b53f748a207efaf28622b9fbcd3c5813 | 63c637fc2773ef46cd22e08e3334121512c31074 | /3wkSeries/Day1/ELBOW_CASES/elbow_tri/10/phi | d845ff54ddf040d2b296cc9a38971f66b4926aa0 | [] | no_license | asvogel/OpenFOAMEducation | 438f811ad47631a414f6016e643dd12792613828 | a1cf886fb6f9759eada7ecc34e62f97037ffd0e5 | refs/heads/main | 2023-09-03T17:26:24.525385 | 2021-11-05T18:08:49 | 2021-11-05T18:08:49 | 425,034,654 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,685 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 9
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class surfaceScalarField;
location "10";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
1300
(
3.75095
5.62643
-6.30625
3.75095
-6.18923
5.62643
-4.46194
4.46194
-1.5319
1.5319
1.87627
1.87469
-5.00014
5.00014
-5.07312
5.07312
-2.90452
2.90452
-5.24594
5.24594
-5.06835
5.06835
4.67398
-4.67398
-5.00844
5.00844
-1.96343
1.96343
-5.06849
5.06849
3.17573
-3.17573
-5.23426
5.23426
-0.594738
0.594738
-0.553207
4.30416
3.19775
3.19775
-2.63385
2.63385
-4.8433
4.8433
6.2179
-6.2179
9.54328
-9.54328
-3.23703
-3.38146
1.36514
-8.11329
-4.82409
-4.82409
-8.44044
8.44044
-2.81401
2.81242
3.0098
-3.0098
-1.76224
1.76224
-4.43812
-0.0238167
-4.43812
4.51048
-0.0485435
4.51048
-1.67417
0.142272
-1.67417
4.09924
-4.09924
1.34329
0.188606
1.34329
3.03771
-3.03771
-1.87709
3.75335
1.87387
-1.87173
6.17589
-1.87922
3.75391
-4.89765
4.89765
-5.09723
0.0970904
-5.09723
4.95974
0.0404079
4.95974
-5.29486
5.29486
-5.01341
-0.0597038
-5.01341
5.13073
-0.057608
5.13073
3.10341
-3.10341
-2.92486
0.020348
-2.92486
2.84936
0.0551602
2.84936
0.353722
5.27271
-5.98015
8.79257
-5.27271
0.026768
5.2079
0.0380369
5.2079
-5.10622
0.0378713
-5.10622
5.00982
0.0585281
5.00982
4.74763
-0.0736536
4.74763
-4.80065
0.126672
-4.80065
-3.34834
-3.27494
-5.08302
0.074572
-5.08302
-1.99825
0.0348191
-1.99825
1.93384
0.0295891
1.93384
-3.78131
3.78131
-4.89648
-0.172009
-4.89648
3.12251
0.0532223
3.12251
1.86844
1.88251
5.6194
-5.6194
2.44367
-5.22795
-0.00630772
-5.22795
-5.25627
-4.28701
5.25627
-0.0220144
-0.909747
0.315009
-0.909747
3.16272
0.0350297
3.16272
2.7578
0.091556
-2.7578
0.123948
3.48649
-3.48649
2.01956
0.614296
2.01956
-5.57395
5.57395
4.94696
0.0628614
-4.94696
0.103661
6.15745
0.0604484
6.15745
-6.1994
-0.0184939
-6.1994
3.35959
-6.74105
-3.35775
4.92457
0.0838768
-4.92457
0.100474
3.02865
-0.0188498
3.02865
-2.95637
2.95637
-2.99939
-0.0104112
-2.99939
-2.17152
0.40928
-2.17152
1.36224
0.399996
1.36224
-4.35663
-0.0814986
-4.35663
-4.62729
-0.269192
4.62729
-0.116803
0.880255
-0.880255
-1.80521
0.131039
-1.80521
-4.22366
-0.132971
4.22366
-0.124412
-4.01381
-0.0854296
-4.01381
-3.00505
0.00566387
3.00505
0.03266
3.10317
0.0595498
-3.10317
0.0654532
-1.87073
3.75325
-1.88022
3.75409
-4.70404
-0.193609
-4.70404
5.00852
-0.110868
5.00852
5.20291
-0.134419
-5.20291
0.105673
4.93143
0.0283028
4.93143
-5.27699
-0.0178757
-5.27699
5.27536
0.0195066
5.27536
4.94639
-0.0149603
-4.94639
-0.0670206
5.18089
-0.0501608
5.18089
3.14964
-0.0462318
3.14964
-3.07346
-0.029953
-3.07346
2.96323
-2.96323
2.94333
0.0199038
-2.94333
0.0184622
-11.133
11.1145
-0.0345984
-11.0984
5.1733
5.1733
4.15423
0.593403
4.15423
-5.01358
0.212928
-5.01358
3.34867
-6.70642
3.28383
-6.63218
3.31662
-11.4299
3.36148
-6.63642
5.21443
-5.21443
5.1568
0.0576295
-5.1568
0.0737837
-2.01161
0.0133599
-2.01161
-3.34949
-0.431822
-3.34949
4.11132
-0.330001
4.11132
-3.0015
3.0015
-3.06538
0.0638727
3.06538
0.05713
5.21398
-0.0330902
-5.21398
-0.0139738
1.1229
0.220389
-1.1229
0.213156
3.68414
-0.19765
3.68414
-3.29812
-0.188373
-3.29812
-2.04084
0.0292247
2.04084
-0.021281
-5.81859
0.244642
-5.81859
-11.1913
0.092851
-11.1532
-6.10655
-6.10655
2.33389
11.1265
-3.05024
-0.0232141
3.05024
-0.0215939
2.95727
0.0442327
-2.95727
0.00090059
-2.96716
0.00393337
2.96716
-0.0107923
-2.54029
0.368772
-2.54029
-0.576736
0.576736
-0.953911
0.377175
0.953911
0.408329
1.38989
-0.509634
1.38989
1.89466
0.039185
-1.89466
0.0894507
-3.93139
-0.0824197
-3.93139
5.08302
-0.0745067
5.08302
-3.20286
-0.0952557
3.20286
-0.0532156
-0.0330961
11.1476
-5.14021
0.0339888
5.14021
-11.2081
11.2421
-3.20375
0.663461
3.20375
0.950482
5.30069
0.273263
-5.30069
0.287108
5.25064
0.0247142
-5.25064
0.0362125
-2.91875
-0.43074
-2.91875
-4.4131
-0.290938
4.4131
-0.301786
-11.4749
-0.202443
11.6773
-11.4163
6.02104
0.136411
-6.02104
11.3785
-0.546249
-0.334006
0.546249
0.0304861
1.93722
-0.547329
1.93722
3.84523
-0.161091
-3.84523
-0.0861633
-5.1826
-0.094388
5.1826
-0.0995747
-2.44916
-0.469596
2.44916
-0.511938
-4.27223
4.30726
1.90366
-3.35879
-3.38226
-7.6458
1.8506
1.90264
4.29427
-7.03606
-4.39384
-6.93559
7.28328
-6.99618
-9.27736
9.20371
7.42219
-7.50762
-5.77046
5.82759
6.38266
-6.35
1.88015
1.87321
10.3273
-10.2302
-10.7966
10.6029
10.1732
-10.2329
10.768
-10.7859
-12.4009
12.4256
-5.73385
5.7542
-6.60831
6.57836
-6.7718
6.71858
-3.33547
-3.29671
9.03903
-8.96446
11.7639
-11.7702
-9.80078
9.62877
3.37455
0.932714
3.4341
-1.88705
3.76719
-1.86686
3.77052
3.35152
-6.68699
3.35489
-6.73715
6.05818
5.70576
-6.03616
-1.60964
-5.87139
5.85255
-5.85548
5.84469
8.54953
-8.57335
-1.88636
3.75957
-1.86772
3.77037
-3.41395
-2.35651
3.36072
0.933543
5.56813
3.4709
-5.65201
-1.28358
-7.59196
7.43087
-7.86998
7.68161
-0.472893
5.83845
-5.36556
4.3704
-1.5591
7.39755
5.72418
5.93711
5.8709
-5.59764
1.12528
-6.49083
-6.38717
-2.68292
2.81396
2.64173
-2.45312
5.84934
1.57285
5.72493
-5.42907
-2.07855
-5.51149
3.7971
2.03049
3.86097
4.01873
2.36393
4.02439
3.03928
-3.02965
-0.00963226
-3.07732
6.1166
0.72992
-5.43383
-4.50029
6.79292
3.53441
6.83333
-6.78357
-3.44668
-6.6779
-6.56749
-4.22906
-6.85843
6.79973
3.80321
6.68887
-8.02222
7.92264
6.8003
3.37292
6.7427
-6.71947
-3.51345
-6.78649
10.493
-2.69328
-7.79974
-6.95664
-5.44425
6.93714
3.83089
7.54564
4.87997
7.58185
3.56687
6.92615
-7.39777
1.95352
-3.83434
-1.89951
-3.81588
3.71548
2.03872
3.77064
-4.13411
-2.4742
-4.15733
-4.19692
-2.57487
4.24316
2.3352
-4.3142
-3.55578
4.40946
2.30912
2.98881
-7.38265
3.64761
-6.94432
-6.30342
-2.66104
-6.22964
4.09425
2.6272
-6.72145
-2.59274
10.9395
-5.23378
9.32989
-7.32386
-4.44638
-7.33784
-6.40585
-3.39493
-6.67504
-6.28775
5.85701
-6.24832
5.91832
12.6083
-4.96362
-7.64465
-3.93939
-2.41061
3.87394
-0.439842
-3.73332
3.72368
0.0338755
3.8044
4.73711
4.29727
-3.86391
-1.99157
-3.86301
3.85191
1.99278
3.85584
6.11228
2.43725
6.06373
-6.1382
-2.43515
-6.2197
9.03981
-8.63053
2.93934
-2.91012
5.12672
2.55489
-4.92907
-2.66289
5.96468
-3.00128
-2.9634
-12.2769
10.6496
1.62735
-4.87936
-0.508955
0.0857834
-5.51587
-3.76149
5.3892
0.54791
11.1975
7.43599
-5.51603
5.76067
6.16128
6.22414
-0.163037
5.77662
-5.11316
5.2487
-2.2446
-3.00409
5.17645
-5.30942
-1.04324
-5.26174
4.2185
0.415505
1.90349
-1.58848
-2.16809
-0.514826
-2.07864
1.60913
1.0326
1.82952
1.00723
1.80673
-2.87222
0.50412
2.3681
-1.865
-1.949
-3.62471
-0.860104
4.48481
5.4065
2.02437
-5.32033
-0.191158
2.8054
-2.77581
-0.886647
-2.73806
1.90242
-2.78907
-3.36414
-1.85919
5.22332
-3.35693
-0.506083
3.31269
0.54828
-3.7461
-2.12529
3.75651
0.267878
-3.08764
6.15677
-3.06914
-5.07921
2.52861
3.58799
4.55909
-4.86523
2.47801
2.38722
-1.27724
5.8918
0.941534
5.9201
-8.91349
5.46681
7.13456
2.4942
-7.00014
0.322249
-8.59124
9.87578
-8.17687
-1.69891
5.43262
4.44315
5.7942
6.81407
-4.36857
10.1628
-0.197828
-7.97904
8.78907
-6.29486
4.51476
-10.8096
-11.3288
3.34979
-7.14475
8.64446
-1.49971
-2.40809
-5.61413
9.55284
-1.00023
-8.55261
5.68864
-5.40453
-5.30656
10.7111
-8.09781
8.82001
-2.64924
-6.17078
-6.71732
-4.06858
6.81171
1.11093
-9.92448
11.878
-2.99833
5.92846
0.814235
5.8783
3.9324
-6.04533
2.11293
4.16541
-6.81465
2.62634
-8.67168
-4.8622
9.51245
-4.65026
-7.52323
-6.73433
-0.788909
2.03544
9.84256
-6.91541
5.32448
1.59092
3.32013
0.535712
-3.34003
-0.475848
0.342902
4.43807
-4.78098
4.11354
4.2051
3.31229
1.12578
3.81896
2.03358
-3.79737
-0.359958
-4.02117
1.4463
-1.68597
-3.4497
4.896
-3.90434
0.454642
-2.63141
-3.44542
6.07683
-4.53092
3.05681
3.09997
5.04959
-4.79311
1.34768
-2.37149
-2.42162
2.55666
-4.24263
1.82707
3.06893
4.1362
0.580413
4.81879
4.69366
-7.44599
0.50167
8.16456
-6.88098
1.68757
5.89428
-7.01205
0.277729
-5.95191
1.11444
-6.34822
-5.60701
4.0124
-7.40733
-6.79722
5.61409
0.449641
-5.49729
-1.17775
-4.11068
-2.17707
-4.58028
-2.04318
-4.20514
-6.41175
-1.22006
-5.1917
4.63696
-4.60907
-2.24937
4.91085
1.00747
-7.41141
7.0774
-6.33942
5.79209
0.0490936
3.67459
4.34636
1.93575
-2.39735
4.33311
-3.80533
6.24258
-8.15963
4.3543
4.1458
-6.58095
-4.01383
4.99589
4.04393
5.39588
9.62569
-11.2219
1.59622
-12.0994
11.8781
0.22124
-17.8896
5.79025
-8.26391
2.68026
0.25908
2.69362
0.640151
2.32296
-2.96311
-2.26996
-2.29125
-2.17756
-3.2463
5.42385
1.09611
-3.20606
2.10995
-3.41993
4.51604
0.0344771
-3.24053
5.11619
-2.79323
5.37527
-3.38545
1.98982
3.17144
5.41809
-2.24665
4.175
-1.62011
1.73419
-3.98083
-1.51211
-2.94701
4.98573
-3.12982
3.58446
-0.204754
3.78922
-3.9437
0.942422
-0.631409
3.57369
3.69763
4.152
-3.02622
2.79223
-4.41234
-1.1886
-3.83193
-0.762999
0.763829
-4.6626
3.89877
7.11015
-6.34632
-5.17427
9.53128
-4.35701
7.65942
-5.35972
-2.29969
-4.2382
-4.39234
3.86943
1.90719
9.56661
0.208764
-5.56849
-4.90439
-3.95391
3.2211
2.0276
-2.1684
3.79575
2.08262
-0.179132
0.626646
1.20287
1.87295
-1.24631
0.172451
1.7005
-1.41603
2.11082
0.694581
-2.15
0.0713616
-1.3849
3.28732
0.9832
-2.0158
0.769491
1.09803
-3.34264
4.76078
-2.47246
-2.28832
5.85881
1.07302
-3.54548
4.18872
-3.77322
2.33216
-3.19227
-1.21331
-4.98653
-3.41368
-2.40511
4.51506
-3.01874
5.04311
1.15092
-4.85195
6.00288
-3.37862
1.51943
-3.07987
3.77445
-1.13742
-1.94245
2.61706
2.60627
-2.81341
0.0753509
-0.196353
2.17515
-2.3715
-0.613917
-2.47891
-4.5827
4.85058
-2.11434
4.59235
2.21877
-1.9093
6.50166
1.85245
-3.76175
-3.22676
-3.73284
-1.37453
3.18456
-0.981681
-5.80481
-7.15246
5.81977
0.100325
-8.97932
10.2989
-1.31958
-5.4449
-0.0219073
5.45453
-7.55102
0.736379
-4.92468
5.37422
6.31575
6.41608
-8.65542
0.102811
-4.85221
1.49048
-6.34269
5.93363
-3.50206
6.85185
-7.66818
5.41881
-6.66071
5.15294
-1.18975
5.62043
-3.5075
2.17931
-6.24789
-5.13696
6.98377
-3.61085
7.798
-4.10192
11.8999
-7.10025
6.9373
4.96262
-1.39565
-5.94218
-6.84032
5.44467
0.0969745
5.97527
4.87671
-2.84313
4.51675
2.20007
-4.57156
-2.04255
-6.41464
1.84308
-3.31467
-1.86409
3.70717
3.18551
3.72122
1.28555
-3.24537
6.66386
-7.45276
-2.0136
-3.59341
6.75449
-1.30982
4.04011
-7.63352
-2.30811
7.76508
-3.58317
-4.18192
-2.80146
-3.99575
3.77828
-7.77403
3.62905
-4.8068
2.14147
-10.4054
-5.26994
-5.23945
-1.82628
-4.51314
-7.84488
6.0186
-2.05463
5.02277
-9.36069
5.77753
-2.51742
8.53602
-3.9001
-0.680181
4.41203
1.38005
9.91608
0.795788
-4.80962
-1.90784
4.2632
-2.35535
1.31326
-3.86681
0.39639
2.36962
3.48919
-6.58812
0.00717352
-4.80245
-4.04476
8.08869
5.48652
12.5967
1.37476
9.36424
-1.27555
10.739
4.12033
4.52866
-4.35628
5.9525
-0.457511
3.89679
-0.826482
2.8163
1.86714
1.90196
0.873851
2.23607
1.46157
3.17849
0.215382
-2.07586
4.62246
-8.57638
-0.946024
-7.98297
1.22073
5.80509
-4.58435
3.28666
-1.25906
0.931304
0.332476
-1.76042
1.42794
-2.67162
-1.93955
-0.239049
-1.47214
2.24163
1.81518
-2.00259
-0.669033
0.261079
-3.67476
2.93119
-2.85584
-0.24957
5.75331
-2.5752
0.203694
-1.05577
-2.27522
-2.79004
2.71868
6.17483
0.326827
3.10569
5.1774
3.05211
0.208985
4.62973
-6.12944
-4.04195
-6.02663
-0.0929967
5.36154
2.04989
7.79266
7.01251
5.7027
-1.93082
-9.38359
7.77819
-1.82569
7.99943
-3.81751
-3.95652
3.68207
2.56051
-4.13171
-0.675094
-4.63161
-6.4573
-1.77823
7.55576
-8.13785
7.45766
5.28059
-0.0888931
-4.62111
-0.618345
4.24393
0.284731
11.0237
-1.1851
-6.81627
8.00137
-4.61998
3.67396
1.04233
2.75342
2.47027
1.21121
-5.60506
-10.1894
-1.80889
-1.53375
-4.09721
0.387604
-2.20278
6.22448
-2.55052
3.92479
5.45085
6.38215
-1.99096
-4.35537
6.34796
-2.42318
3.95898
)
;
boundaryField
{
wall-4
{
type calculated;
value uniform 0;
}
velocity-inlet-5
{
type calculated;
value uniform -3.75095;
}
velocity-inlet-6
{
type calculated;
value uniform -5.62643;
}
pressure-outlet-7
{
type calculated;
value nonuniform List<scalar> 8(6.30625 6.18923 6.61849 6.74815 6.62328 6.71734 6.6325 6.6781);
}
wall-8
{
type calculated;
value uniform 0;
}
frontAndBackPlanes
{
type empty;
value nonuniform List<scalar> 0();
}
}
// ************************************************************************* //
| [
"avogel1994@gmail.com"
] | avogel1994@gmail.com | |
e163710347460ecc4ae3801e5ecc0dfaff5432ac | 0a07cbd09a839c079ec219d7903ab44e431671a4 | /logging.h | f6cf73fcb6606ff568cc1d07c2bb1441fc6bf057 | [] | no_license | Yuguantao/FaultManageQT | 517acdb774891943a9475b20135f00f2b95af8f2 | 072718075b75107e34a493d6a37aeaf14980a7a9 | refs/heads/master | 2020-06-24T11:37:40.433073 | 2019-07-26T05:44:10 | 2019-07-26T05:44:10 | 198,953,184 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 458 | h | #ifndef LOGGING_H
#define LOGGING_H
#include <QMainWindow>
#include <QPushButton>
#include <QMessageBox>
#include <QProgressDialog>
#include "mysql.h"
namespace Ui {
class logging;
}
class logging : public QMainWindow
{
Q_OBJECT
public:
explicit logging(QWidget *parent = 0);
~logging();
private slots:
void on_yesOrNoBox_clicked(QAbstractButton *button);
private:
Ui::logging *ui;
MainWindow *Mparent;
};
#endif // LOGGING_H
| [
"guantaoyu@yeah.neat"
] | guantaoyu@yeah.neat |
7a9f990e84b04269869a455020cd34b7d7788c44 | 82990b42b433845113b10199d0b785c2680691d5 | /1pointersSourceCode/doublePointer8.cpp | a20ea64fc12ee478c4e53409ef773019ce44cdb2 | [] | no_license | aman1100/Data-Structure | 0625ef1835daf49fbdd9e19a0b5f85eac93fce6f | 74ed9aa3e7c57bac4623969b2198153a709fd4c1 | refs/heads/master | 2023-02-15T09:25:44.646130 | 2021-01-17T18:17:28 | 2021-01-17T18:17:28 | 329,559,989 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 936 | cpp | #include<iostream>
using namespace std;
void incrementByvariable(int i)
{
i++;
cout<<i<<endl;
}
void incrementBySinglePointer(int* sp)
{
(*sp)++;
cout<<*sp<<endl;
}
void incrementByDoublePointer(int** dp)
{
(**dp)++;
cout<<**dp<<endl;
}
int main()
{
int i= 10;
int* sp=&i;
int** dp=&sp;
//print the address of variable i
cout<<&i<<endl;
cout<<sp<<endl;
cout<<*dp<<endl;
//print the address of our single pointer p
cout<<&sp<<endl;
cout<<dp<<endl;
//print the address of our double pointer dp
cout<<&dp<<endl;
//want to print variable i value
cout<<i<<endl;
cout<<*sp<<endl;
cout<<**dp<<endl;
//want to increment by different function
incrementByvariable(i);//changes doesnt reflect in main fucntion
incrementBySinglePointer(sp);//the value of i get changed to +1 becuase inside function we use dereferncing
//So at the main address the value get updated
incrementByDoublePointer(dp);//same in this case
}
| [
"aman.chandna2000@gmail.com"
] | aman.chandna2000@gmail.com |
a92c5faab71b7c122b2eeb0edd81eb77f115880f | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/Runtime/AIModule/Private/BehaviorTree/Tasks/BTTask_BlackboardBase.cpp | 9c9f2551698689e7808f9036ec2b93a159b6438c | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 694 | cpp | // Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#include "BehaviorTree/Tasks/BTTask_BlackboardBase.h"
UBTTask_BlackboardBase::UBTTask_BlackboardBase(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer)
{
NodeName = "BlackboardBase";
// empty KeySelector = allow everything
}
void UBTTask_BlackboardBase::InitializeFromAsset(UBehaviorTree& Asset)
{
Super::InitializeFromAsset(Asset);
UBlackboardData* BBAsset = GetBlackboardAsset();
if (BBAsset)
{
BlackboardKey.ResolveSelectedKey(*BBAsset);
}
else
{
UE_LOG(LogBehaviorTree, Warning, TEXT("Can't initialize task: %s, make sure that behavior tree specifies blackboard asset!"), *GetName());
}
}
| [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
4eb833f9e27fc720b2c39486b8780876fa458c33 | 96dae00de134c84e58ca7c3a5420313fc484da10 | /ICPC_AlgorithmTemplete/搜索/bfs/bfs1.cpp | ef7d6fae2ee3e34cc940196dfd5b67e220a1119b | [] | no_license | meiyoumingzile/ICPC_AlgorithmTemplete | 62758cde771667bf8602b6e625456a36c8525ab7 | 2bcabeadd94e83acaffa0b90365c93468a8f0004 | refs/heads/master | 2023-08-16T23:06:22.774993 | 2023-08-13T08:47:01 | 2023-08-13T08:47:01 | 159,670,934 | 7 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,410 | cpp | #include<stdio.h>
#include<queue>
#include<iostream>
#include<string.h>
using namespace std;
char mapp[101][101];
bool vis[101][101];
int n;
int fx[4]={1,-1,0,0};
int fy[4]={0,0,1,-1};
struct node{
int x,y;
};
node BEGIN,END;
void bfs()
{
int i;
memset(vis,0,sizeof(vis));
node d,nextd;
queue<node> q;
q.push(BEGIN);
vis[BEGIN.x][BEGIN.y]=1;
while(!q.empty())
{
d=q.front();
q.pop();
//printf("%d %d\n",d.x,d.y);
if(d.x==END.x&&d.y==END.y)
{
printf("YES\n");
return;
}
for(i=0;i<4;i++)
{
nextd.x=d.x+fx[i];
nextd.y=d.y+fy[i];
printf("%d %d %d %c\n",nextd.x,nextd.y,vis[nextd.x][nextd.y],mapp[nextd.x][nextd.y]);
if(nextd.x>=0&&nextd.x<n&&nextd.y>=0&&nextd.y<n
&&vis[nextd.x][nextd.y]==0&&mapp[nextd.x][nextd.y]!='#')
{
printf("d");
vis[nextd.x][nextd.y]=1;
q.push(nextd);
}
}
}
printf("NO\n");
return ;
}
int main(){
int k;
scanf("%d",&k);
while(k--){
int i,j;
scanf("%d",&n);
for(i=0;i<n;i++)
{
getchar();
for(j=0;j<n;j++)
{
scanf("%c",&mapp[i][j]);
}
}
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
printf("%c",mapp[i][j]);
}
printf("\n");
}
scanf("%d%d",&BEGIN.x,&BEGIN.y);
scanf("%d%d",&END.x,&END.y);
bfs();
}
}
| [
"2428578442@qq.com"
] | 2428578442@qq.com |
f7f8e558725dd5743b2475d7516cb208ee778d6d | cd726912664cea9c458ac8b609dd98bf33e3b9a0 | /snippets/cpp/VS_Snippets_CLR_Classic/classic GuidAttribute Example/CPP/source.cpp | 3f96bf804aaf874342a98554e179044f1c309957 | [
"MIT",
"CC-BY-4.0"
] | permissive | dotnet/dotnet-api-docs | b41fc7fa07aa4d54205df81284bae4f491286ec2 | 70e7abc4bcd692cb4fb6b4cbcb34bb517261dbaf | refs/heads/main | 2023-09-04T07:16:44.908599 | 2023-09-01T21:46:11 | 2023-09-01T21:46:11 | 111,510,915 | 630 | 1,856 | NOASSERTION | 2023-09-14T21:45:33 | 2017-11-21T06:52:13 | C# | UTF-8 | C++ | false | false | 225 | cpp | // <Snippet1>
using namespace System;
using namespace System::Runtime::InteropServices;
[GuidAttribute("9ED54F84-A89D-4fcd-A854-44251E925F09")]
public ref class SampleClass
{
// Insert class members here.
};
// </Snippet1> | [
"noreply@github.com"
] | noreply@github.com |
c46065bb54531b80b71a5c6e1afd231416db4a70 | 7ebc12c326dd918bc96c08167f0457ed2f8f93de | /PetrSu/Summer 2013/0003/A/sol.cpp | c3382e9345494dc840bc218647ff4b70eac2fd74 | [] | no_license | qwaker00/Olymp | 635b61da0e80d1599edfe1bc9244b95f015b3007 | c3ab2c559fa09f080a3f02c84739609e1e85075d | refs/heads/master | 2021-01-18T16:35:58.452451 | 2015-08-06T16:45:58 | 2015-08-06T16:46:25 | 5,674,825 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,625 | cpp | #include <stdio.h>
#include <iostream>
#include <math.h>
#include <algorithm>
#include <memory.h>
#include <set>
#include <map>
#include <queue>
#include <deque>
#include <string>
#include <string.h>
#include <vector>
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
const ld PI = acos(-1.);
using namespace std;
const int N = 300111;
vector<int> cl[N + N + N + N];
vector<int> g[N];
int n, m;
bool used[N];
int color[N];
int mincolor = 1;
const int inf = -1e9;
bool had[N];
bool inA[N], inB[N];
int half[N];
inline int myabs(int x) {
if (x < 0) return -x;
return x;
}
bool doit(int x) {
used[x] = true;
vector<int> st;
queue<int> q;
q.push(x);
color[x] = 1;
while (!q.empty()) {
int x = q.front(); q.pop();
st.push_back(x);
for (int i = 0; i < g[x].size(); ++i)
if (!used[ g[x][i] ]) {
used[ g[x][i] ] = true;
color[ g[x][i] ] = 1 - color[x];
q.push(g[x][i]);
}
}
for (int i = 0; i < st.size(); ++i)
for (int j = 0; j < g[ st[i] ].size(); ++j)
if (color[ st[i] ] == color[ g[ st[i] ][j] ]) return false;
if (st.size() == 1) {
color[ st[0] ] = mincolor;
mincolor += 2;
return true;
}
x = st[0];
for (int i = 1; i < st.size(); ++i)
if (g[ st[i] ].size() > g[x].size()) x = st[i];
for (int i = 0; i < st.size(); ++i)
color[ st[i] ] = inf;
had[x] = true;
inB[x] = true;
color[x] = 1;
vector<int> A;
for (int i = 0; i < g[x].size(); ++i) {
A.push_back(g[x][i]);
inA[ A.back() ] = true;
}
vector<int> B;
for (int i = 0; i < A.size(); ++i) {
int y = A[i];
for (int j = 0; j < g[y].size(); ++j)
if (!inB[ g[y][j] ]) {
B.push_back(g[y][j]);
inB[ g[y][j] ] = true;
}
}
if (B.size() == 0) {
color[x] = mincolor;
for (int i = 0; i < A.size(); ++i) {
color[ A[i] ] = mincolor + 1;
}
mincolor += 3;
return true;
}
bool wasHalf = false;
int half1 = 0, half2 = 0;
for (int i = 0; i < B.size(); ++i) {
int y = B[i];
int cnt = 0;
for (int j = 0; j < g[y].size(); ++j)
if (inA[ g[y][j] ]) {
++cnt;
}
if (cnt == A.size()) {
color[y] = 1;
continue;
}
if (wasHalf) {
bool have1 = false, have2 = false;
for (int j = 0; j < g[y].size(); ++j)
if (inA[ g[y][j] ]) {
if (color[ g[y][j] ] == 0) have1 = true;
else have2 = true;
}
if (have1 && have2) return false;
if (have1 && cnt != half1) return false;
if (have2 && cnt != half2) return false;
if (have1) {
color[y] = -1;
} else {
color[y] = 3;
}
} else {
wasHalf = true;
color[y] = -1;
for (int j = 0; j < g[y].size(); ++j)
if (inA[ g[y][j] ]) {
half[ g[y][j] ] = 1;
color[ g[y][j] ] = 0;
}
for (int j = 0; j < A.size(); ++j)
if (!half[ A[j] ]) {
color[ A[j] ] = 2;
}
half1 = cnt;
half2 = A.size() - cnt;
}
q.push(y);
}
if (q.empty()) {
for (int i = 0; i < A.size(); ++i) color[ A[i] ] = 0;
}
int curmincolor = -1;
while (!q.empty()) {
x = q.front(); q.pop();
curmincolor = min(curmincolor, color[x]);
int d = inf;
if (color[x] > 0) d = color[x] + 1;
else d = color[x] - 1;
for (int i = 0; i < g[x].size(); ++i)
if (color[ g[x][i] ] == inf) {
color[ g[x][i] ] = d;
q.push(g[x][i]);
}
}
for (int i = 0; i < st.size(); ++i)
color[ st[i] ] += mincolor - curmincolor;
mincolor += st.size() + 3;
for (int i = 0; i < st.size(); ++i)
for (int j = 0; j < g[ st[i] ].size(); ++j)
if (myabs(color[ st[i] ] - color[ g[st[i]][j] ]) != 1) return false;
return true;
}
int main() {
//freopen("in", "r", stdin);
int n, m;
scanf("%d%d", &n, &m);
while (m--) {
int a, b; scanf("%d%d", &a, &b);
g[a].push_back(b);
g[b].push_back(a);
}
for (int i = 1; i <= n; ++i)
if (!used[i]) {
if (!doit(i)) {
puts("NET");
return 0;
}
}
int maxcolor = 0;
for (int i = 1; i <= n; ++i) {
maxcolor = max(maxcolor, color[i]);
cl[ color[i] ].push_back(i);
}
for (int i = 1; i < maxcolor; ++i) {
for (int j = 0; j < cl[i].size(); ++j) {
int x = cl[i][j];
int cnt = 0;
for (int k = 0; k < g[x].size(); ++k)
if (color[ g[x][k] ] == i + 1) {
++cnt;
}
if (cnt != cl[i + 1].size()) {
puts("NET");
return 0;
}
}
}
for (int i = 2; i <= maxcolor; ++i) {
for (int j = 0; j < cl[i].size(); ++j) {
int x = cl[i][j];
int cnt = 0;
for (int k = 0; k < g[x].size(); ++k)
if (color[ g[x][k] ] == i - 1) {
++cnt;
}
if (cnt != cl[i - 1].size()) {
puts("NET");
return 0;
}
}
}
puts("DA");
for (int i = 1; i <= n; ++i) printf("%d ", color[i]);
puts("");
return 0;
}
| [
"qwaker.00@gmail.com"
] | qwaker.00@gmail.com |
ec417f49448b05db0a50920db799f77f246608c2 | 02b9e4faf8aeb65da48dc4ff98280a2a87a3907a | /deps/v8/src/atomicops_internals_atomicword_compat.h | 617aa73b5393c25503b8b7dbaf151440f04cfef1 | [
"Zlib",
"ISC",
"MIT",
"LicenseRef-scancode-openssl",
"BSD-3-Clause",
"Apache-2.0",
"Artistic-2.0",
"NTP",
"LicenseRef-scancode-unknown-license-reference",
"bzip2-1.0.6"
] | permissive | opersys/node | 841eee5289d8175473bd220c22403f46c3051126 | 944f905effac0c0b77396910446962eb1ad6cd05 | refs/heads/master | 2022-12-04T21:19:24.402603 | 2016-08-10T19:42:50 | 2016-08-10T19:42:50 | 33,216,119 | 0 | 1 | NOASSERTION | 2022-11-22T12:10:58 | 2015-03-31T23:42:32 | JavaScript | UTF-8 | C++ | false | false | 3,682 | h | // Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file is an internal atomic implementation, use atomicops.h instead.
#ifndef V8_ATOMICOPS_INTERNALS_ATOMICWORD_COMPAT_H_
#define V8_ATOMICOPS_INTERNALS_ATOMICWORD_COMPAT_H_
// AtomicWord is a synonym for intptr_t, and Atomic32 is a synonym for int32,
// which in turn means int. On some LP32 platforms, intptr_t is an int, but
// on others, it's a long. When AtomicWord and Atomic32 are based on different
// fundamental types, their pointers are incompatible.
//
// This file defines function overloads to allow both AtomicWord and Atomic32
// data to be used with this interface.
//
// On LP64 platforms, AtomicWord and Atomic64 are both always long,
// so this problem doesn't occur.
#if !defined(V8_HOST_ARCH_64_BIT)
namespace v8 {
namespace internal {
inline AtomicWord NoBarrier_CompareAndSwap(volatile AtomicWord* ptr,
AtomicWord old_value,
AtomicWord new_value) {
return NoBarrier_CompareAndSwap(
reinterpret_cast<volatile Atomic32*>(ptr), old_value, new_value);
}
inline AtomicWord NoBarrier_AtomicExchange(volatile AtomicWord* ptr,
AtomicWord new_value) {
return NoBarrier_AtomicExchange(
reinterpret_cast<volatile Atomic32*>(ptr), new_value);
}
inline AtomicWord NoBarrier_AtomicIncrement(volatile AtomicWord* ptr,
AtomicWord increment) {
return NoBarrier_AtomicIncrement(
reinterpret_cast<volatile Atomic32*>(ptr), increment);
}
inline AtomicWord Barrier_AtomicIncrement(volatile AtomicWord* ptr,
AtomicWord increment) {
return Barrier_AtomicIncrement(
reinterpret_cast<volatile Atomic32*>(ptr), increment);
}
inline AtomicWord Acquire_CompareAndSwap(volatile AtomicWord* ptr,
AtomicWord old_value,
AtomicWord new_value) {
return v8::internal::Acquire_CompareAndSwap(
reinterpret_cast<volatile Atomic32*>(ptr), old_value, new_value);
}
inline AtomicWord Release_CompareAndSwap(volatile AtomicWord* ptr,
AtomicWord old_value,
AtomicWord new_value) {
return v8::internal::Release_CompareAndSwap(
reinterpret_cast<volatile Atomic32*>(ptr), old_value, new_value);
}
inline void NoBarrier_Store(volatile AtomicWord *ptr, AtomicWord value) {
NoBarrier_Store(
reinterpret_cast<volatile Atomic32*>(ptr), value);
}
inline void Acquire_Store(volatile AtomicWord* ptr, AtomicWord value) {
return v8::internal::Acquire_Store(
reinterpret_cast<volatile Atomic32*>(ptr), value);
}
inline void Release_Store(volatile AtomicWord* ptr, AtomicWord value) {
return v8::internal::Release_Store(
reinterpret_cast<volatile Atomic32*>(ptr), value);
}
inline AtomicWord NoBarrier_Load(volatile const AtomicWord *ptr) {
return NoBarrier_Load(
reinterpret_cast<volatile const Atomic32*>(ptr));
}
inline AtomicWord Acquire_Load(volatile const AtomicWord* ptr) {
return v8::internal::Acquire_Load(
reinterpret_cast<volatile const Atomic32*>(ptr));
}
inline AtomicWord Release_Load(volatile const AtomicWord* ptr) {
return v8::internal::Release_Load(
reinterpret_cast<volatile const Atomic32*>(ptr));
}
} } // namespace v8::internal
#endif // !defined(V8_HOST_ARCH_64_BIT)
#endif // V8_ATOMICOPS_INTERNALS_ATOMICWORD_COMPAT_H_
| [
"fedor@indutny.com"
] | fedor@indutny.com |
620de1570ca967a84db577fc54e535e68d9a658c | db3562d8fa915393c7ffa760af62647ebccf8212 | /client/src/guimanager.hpp | 6f90becd2926a851b3702c9618bb60fda492282d | [] | no_license | haoqoo/mir2x | 1269cf2ab70a7664a5565a6a56746cf30cdf0659 | c2fed4e6e4f8c0e40ce6b13c122fc26ef808dab9 | refs/heads/master | 2023-07-08T11:03:12.462614 | 2021-08-08T19:50:00 | 2021-08-08T19:50:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,722 | hpp | /*
* =====================================================================================
*
* Filename: guimanager.hpp
* Created: 08/12/2015 09:59:15
* Description: public API for class client only
*
* Version: 1.0
* Revision: none
* Compiler: gcc
*
* Author: ANHONG
* Email: anhonghe@gmail.com
* Organization: USTC
*
* =====================================================================================
*/
#pragma once
#include "widget.hpp"
#include "minimapboard.hpp"
#include "skillboard.hpp"
#include "npcchatboard.hpp"
#include "controlboard.hpp"
#include "purchaseboard.hpp"
#include "inventoryboard.hpp"
#include "quickaccessboard.hpp"
#include "playerstateboard.hpp"
#include "inputstringboard.hpp"
#include "secureditemlistboard.hpp"
class ProcessRun;
class GUIManager: public WidgetGroup
{
private:
ProcessRun *m_processRun;
private:
NPCChatBoard m_NPCChatBoard;
ControlBoard m_controlBoard;
private:
SkillBoard m_skillBoard;
MiniMapBoard m_miniMapBoard;
PurchaseBoard m_purchaseBoard;
InventoryBoard m_inventoryBoard;
QuickAccessBoard m_quickAccessBoard;
PlayerStateBoard m_playerStateBoard;
InputStringBoard m_inputStringBoard;
SecuredItemListBoard m_securedItemListBoard;
public:
GUIManager(ProcessRun *);
public:
void update(double) override;
public:
void drawEx(int, int, int, int, int, int) const override;
public:
bool processEvent(const SDL_Event &, bool) override;
public:
Widget *getWidget(const std::string &);
private:
void onWindowResize();
};
| [
"anhonghe@gmail.com"
] | anhonghe@gmail.com |
908b11a8bab08c50d02845969649c5e4df5f98f8 | 906b838f25576a9e202bdb7e456be8d4ea353554 | /ServerEngine/baseinet/HttpParameter.cpp | e4e9b3777a71a8a2b050030a0ee2c08fc2a0737d | [] | no_license | Ajie-99/ALLServer | 4363a3ef89e51069bb904ebc6d0b054cb6acc58b | df29fee7947ee92d95781a7e5fefa4c5bed120a9 | refs/heads/main | 2023-02-12T12:07:31.272989 | 2021-01-07T13:19:40 | 2021-01-07T13:19:40 | 322,156,803 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,809 | cpp | #include "../../Common/CommonFunc.h"
#include "HttpParameter.h"
#include "../PCH.h"
HttpParameter::HttpParameter()
{
}
HttpParameter::~HttpParameter(void)
{
m_ParameterMap.clear();
}
bool HttpParameter::ParseStringToMap(const std::string& strParam)
{
if(strParam.length() <= 0)
{
return false;
}
std::vector<std::string> strVector;
CommonFunc::SpliteString(strParam, "&", strVector);
std::vector<std::string>::iterator itend = strVector.end();
for(std::vector<std::string>::iterator it = strVector.begin(); it != itend; it++)
{
std::vector<std::string> strVectorSub;
CommonFunc::SpliteString(*it, "=", strVectorSub);
if((strVectorSub.begin() + 1) != strVectorSub.end())
{
m_ParameterMap.insert(std::make_pair(strVectorSub[0], strVectorSub[1]));
}
}
return true;
}
std::string HttpParameter::GetResultString()
{
std::string strTemp;
strTemp.reserve(1024);
for (auto itor = m_ParameterMap.begin(); itor != m_ParameterMap.end(); itor++)
{
strTemp += itor->first;
strTemp += "=";
strTemp += itor->second;
strTemp += "&";
}
return strTemp;
}
bool HttpParameter::HasKey(const std::string& strKey) const
{
auto itor = m_ParameterMap.find(strKey);
if(itor != m_ParameterMap.end())
{
return true;
}
return false;
}
INT32 HttpParameter::GetIntValue(const std::string& strKey) const
{
auto itor = m_ParameterMap.find(strKey);
if(itor != m_ParameterMap.end())
{
return CommonFunc::StringToInt(itor->second.c_str());
}
return 0;
}
std::string HttpParameter::GetStrValue(const std::string& strKey) const
{
auto it = m_ParameterMap.find(strKey);
if(it != m_ParameterMap.end())
{
return it->second;
}
return "";
}
INT64 HttpParameter::GetLongValue(const std::string& strKey) const
{
auto it = m_ParameterMap.find(strKey);
if(it != m_ParameterMap.end())
{
return CommonFunc::StringToInt64(it->second.c_str());
}
return 0;
}
float HttpParameter::GetFloatValue(const std::string& strKey) const
{
auto it = m_ParameterMap.find(strKey);
if(it != m_ParameterMap.end())
{
return CommonFunc::StringToFloat(it->second.c_str());
}
return 0.0f;
}
bool HttpParameter::SetKeyValue(const std::string& strKey, INT32 intValue)
{
m_ParameterMap.insert(std::make_pair(strKey, CommonFunc::IntToString(intValue)));
return true;
}
bool HttpParameter::SetKeyValue(const std::string& strKey, std::string& strValue)
{
m_ParameterMap.insert(std::make_pair(strKey, strValue));
return true;
}
bool HttpParameter::SetKeyValue(const std::string& strKey, INT64 longValue)
{
m_ParameterMap.insert(std::make_pair(strKey, CommonFunc::IntToString(longValue)));
return true;
}
bool HttpParameter::SetKeyValue(const std::string& strKey, float floatValue)
{
m_ParameterMap.insert(std::make_pair(strKey, CommonFunc::FloatToString(floatValue)));
return true;
}
| [
"270663316@qq.com"
] | 270663316@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.