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
8df617fa15f3ea95a76aea41e678a9da76e089ee
b2955406769855ab42617d59805ef643d860db38
/U2A5/10/Transacao.h
6719efc3938d62e3155add89c5c8488c800ce6c7
[]
no_license
lucasbivar/object-oriented-programming
46ded50a73b92abb7f2d34136499f27a84269769
11a6367404985cd4c384ab1997d07db64c455e78
refs/heads/main
2023-08-18T14:10:28.503755
2021-10-15T00:24:30
2021-10-15T00:24:30
380,388,577
0
1
null
null
null
null
UTF-8
C++
false
false
330
h
#ifndef TRANSACAO_H #define TRANSACAO_H #include <string> using std::string; class Transacao { public: Transacao(double=0, string=""); string getData() const; double getValorDaTransacao() const; string getDescricao() const; private: string data; //DD-MM-AAAA double valorDaTransacao; string descricao; }; #endif
ae59d0adb1c32057ec0e2070e6235d433737bc0d
3f79305e607739d4e822d6b5ae56db13444a5f55
/test/sprintf.cpp
331ae553d7990a0bbfacaf89aab8daedb88b87f2
[]
no_license
cuihujun/test
362d80691d3d80fafbf2d6cb501526909bb63129
daa70ce43b04bcb8bb3aaf2f81c44c80da605087
refs/heads/master
2020-05-29T08:47:45.363573
2016-11-09T23:05:49
2016-11-09T23:05:49
70,018,898
0
0
null
null
null
null
UTF-8
C++
false
false
811
cpp
#include <iostream> int main(int argc, const char * argv[]) { //复制的目标字符串 char szTarget[20]; //复制的源字符串,假设szSource50个字节都不为0 char szSource[51]="12345678901234567890123456789012345678901234567890"; //以&szTarget[0]为起始地址,把szSource里面的所有内容(50个字节)copy进去 //sprintf(szTarget , "%s" , szSource); //printf("%s\n", szTarget); //以&szTarget[0]为起始地址,把szSource的前19个字节copy进去,将szTarget[20]赋值为0; snprintf(szTarget , sizeof(szTarget) , "%s" , szSource); printf("%s\n", szTarget); //以&szTarget[0]为起始地址,把szSource的前20个字节copy进去。 strncpy(szTarget , szSource , sizeof(szTarget)); printf("%s\n", szTarget); return 0; }
7bbc5fb1ddd9b8dcc91d74f51b00c657512ff394
4610baf9a7e81cad6e52fe49289a5f234861732b
/driving/passatmodel/src/passatmodel.cpp
9340e7a233cccbfc48e46b033cc34b9df1c2dab9
[]
no_license
kuasha/stanley
07f924f6ff61413f5baabd5b6605d4289e93c68d
b6b6d3a9efd4611258b2a6337ef25007f406bd80
refs/heads/master
2021-01-19T00:57:09.752337
2016-08-15T02:36:18
2016-08-15T02:36:18
65,698,509
6
0
null
null
null
null
UTF-8
C++
false
false
7,575
cpp
/******************************************************** Stanford Driving Software Copyright (c) 2011 Stanford University All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The names of the contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ********************************************************/ #include <global.h> #include <textures.h> #include <passatgl.h> #include <passat_constants.h> #include "passatmodel.h" #include "junior-plate.h" #include "junior2-plate.h" namespace vlr { passatmodel_t* passatmodel_load(double r, double g, double b, double t) { passatmodel_t* passatmodel; passatmodel = (passatmodel_t*) calloc(1, sizeof(passatmodel_t)); dgc::dgc_test_alloc(passatmodel); passatmodel->transparency = t; passatmodel->passat_dl = generate_passat(r, g, b, t); passatmodel->license_texture.loadFromBytes(junior_plate, 1024, 1); return passatmodel; } void passatwagonmodel_color(float r, float g, float b); passatwagonmodel_t* passatwagonmodel_load(double r, double g, double b, double t) { passatwagonmodel_t* passatwagonmodel; passatwagonmodel = (passatwagonmodel_t*) calloc(1, sizeof(passatwagonmodel_t)); dgc::dgc_test_alloc(passatwagonmodel); passatwagonmodel->transparency = t; passatwagonmodel_color(r, g, b); passatwagonmodel->passatwagon = generate_passatwagon(t); passatwagonmodel->tire = generate_tire(t); passatwagonmodel->velodyne = generate_velodyne(t); passatwagonmodel->windows = generate_passat_windshield(t); passatwagonmodel->license_texture.loadFromBytes(junior2_plate, 1024, 1); return passatwagonmodel; } void passatmodel_license_plate(passatmodel_t* passatmodel) { glDisable(GL_LIGHTING); glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, passatmodel->license_texture.glTextureId()); glBegin(GL_QUADS); glColor4f(1, 1, 1, passatmodel->transparency); glTexCoord2f(0, 0); glVertex3f(0, 0, 0); glTexCoord2f(passatmodel->license_texture.maxU(), 0); glVertex3f(0, 0.51, 0); glTexCoord2f(passatmodel->license_texture.maxU(), passatmodel->license_texture.maxV()); glVertex3f(0, 0.51, 0.095); glTexCoord2f(0, passatmodel->license_texture.maxV()); glVertex3f(0, 0, 0.095); glEnd(); glDisable(GL_TEXTURE_2D); glEnable(GL_LIGHTING); } void passatmodel_license_plate2(passatwagonmodel_t* passatwagonmodel) { glDisable(GL_LIGHTING); glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, passatwagonmodel->license_texture.glTextureId()); glBegin(GL_QUADS); glColor4f(1, 1, 1, passatwagonmodel->transparency); glTexCoord2f(0, 0); glVertex3f(0, 0, 0); glTexCoord2f(passatwagonmodel->license_texture.maxU(), 0); glVertex3f(0, 0.51 * 0.784, 0); glTexCoord2f(passatwagonmodel->license_texture.maxU(), passatwagonmodel->license_texture.maxV()); glVertex3f(0, 0.51 * 0.784, 0.095); glTexCoord2f(0, passatwagonmodel->license_texture.maxV()); glVertex3f(0, 0, 0.095); glEnd(); glDisable(GL_TEXTURE_2D); glEnable(GL_LIGHTING); } void passatmodel_draw(passatmodel_t* passatmodel) { /* draw the license plates */ glPushMatrix(); glScalef(5.0, 5.0, 5.0); // glRotatef(90.0, 0, 0, 1); glCallList(passatmodel->passat_dl); glPopMatrix(); glPushMatrix(); glTranslatef(2.51, -0.255, -0.3325); passatmodel_license_plate(passatmodel); glPopMatrix(); glPushMatrix(); glRotatef(180.0, 0, 0, 1); glTranslatef(2.41, -0.255, 0.075); passatmodel_license_plate(passatmodel); glPopMatrix(); } void passatwagonmodel_draw_model(passatwagonmodel_t* passatwagonmodel, double wheel_dir_angle, double wheel_rot_angle, double velodyne_angle, int draw_body, int draw_windows) { /* draw the license plates */ if (draw_body) { glPushMatrix(); glScalef(5.0, 5.0, 5.0); glRotatef(180, 0, 0, 1); glCallList(passatwagonmodel->passatwagon); if (draw_windows) glCallList(passatwagonmodel->windows); glPopMatrix(); // Front Plae glPushMatrix(); // glRotatef(180.0, 0, 0, 1); glTranslatef(2.5, -0.255 * 0.784, -0.45); glRotatef(-7.0, 0, 1, 0); passatmodel_license_plate2(passatwagonmodel); glPopMatrix(); // Rear plate glPushMatrix(); glRotatef(180.0, 0, 0, 1); glTranslatef(2.4, -0.255 * 0.784, -0.265); glRotatef(-7.0, 0, 1, 0); passatmodel_license_plate2(passatwagonmodel); glPopMatrix(); } glScalef(0.65, 0.65, 0.65); // Front Right Tire glPushMatrix(); glTranslatef(2.27, -1.17, -0.86); glRotatef(dgc::dgc_r2d(wheel_dir_angle), 0, 0, 1); glRotatef(-dgc::dgc_r2d(wheel_rot_angle), 0, 1, 0); glCallList(passatwagonmodel->tire); glPopMatrix(); // Front Left Tire glPushMatrix(); glTranslatef(2.27, 1.17, -0.86); glRotatef(180.0 + dgc::dgc_r2d(wheel_dir_angle), 0, 0, 1); glRotatef(dgc::dgc_r2d(wheel_rot_angle), 0, 1, 0); glCallList(passatwagonmodel->tire); glPopMatrix(); // Rear Right Tire glPushMatrix(); glTranslatef(-2.05, -1.17, -0.86); glRotatef(-dgc::dgc_r2d(wheel_rot_angle), 0, 1, 0); glCallList(passatwagonmodel->tire); glPopMatrix(); // Rear Left Tire glPushMatrix(); glTranslatef(-2.05, 1.17, -0.86); glRotatef(180, 0, 0, 1); glRotatef(dgc::dgc_r2d(wheel_rot_angle), 0, 1, 0); glCallList(passatwagonmodel->tire); glPopMatrix(); if (draw_body) { glScalef(0.35, 0.35, 0.35); // Velodyne laser glPushMatrix(); glTranslatef(-0.34, 0, 3.6); glRotatef(dgc::dgc_r2d(velodyne_angle) + 180, 0, 0, 1); glCallList(passatwagonmodel->velodyne); glPopMatrix(); } } void passatwagonmodel_draw(passatwagonmodel_t* passatwagonmodel, double wheel_dir_angle, double wheel_rot_angle, double velodyne_angle) { passatwagonmodel_draw_model(passatwagonmodel, wheel_dir_angle, wheel_rot_angle, velodyne_angle, 1, 1); } void passatwagonmodel_draw_no_windows(passatwagonmodel_t* passatwagonmodel, double wheel_dir_angle, double wheel_rot_angle, double velodyne_angle) { passatwagonmodel_draw_model(passatwagonmodel, wheel_dir_angle, wheel_rot_angle, velodyne_angle, 1, 0); } void passatwagonwheels_draw(passatwagonmodel_t* passatwagonmodel, double wheel_dir_angle, double wheel_rot_angle) { passatwagonmodel_draw_model(passatwagonmodel, wheel_dir_angle, wheel_rot_angle, 0.0, 0, 0); } } // namespace vlr
6ae80a75f3b18770f3e51d603953077ceab9cfcf
ac39d3efc91d8a4d40593d62073b351c9ee219b6
/src/FusionEKF.cpp
deaac597eb46a1a494b3f8f4cf9edb0b7c428f7f
[]
no_license
srini-x/CarND-Extended-Kalman-Filter-Project
c95baea6ce29154bff3cb93cad8d54fb1b83f797
9a42f3de76be4fd199a1f6414b2de56cad587d50
refs/heads/master
2021-07-18T02:04:39.138401
2017-10-25T02:05:03
2017-10-25T02:05:03
108,148,381
1
0
null
null
null
null
UTF-8
C++
false
false
4,598
cpp
#include "FusionEKF.h" #include "tools.h" #include "Eigen/Dense" #include <iostream> using namespace std; using Eigen::MatrixXd; using Eigen::VectorXd; using std::vector; /* * Constructor. */ FusionEKF::FusionEKF() { is_initialized_ = false; previous_timestamp_ = 0; // initializing matrices R_laser_ = MatrixXd(2, 2); R_radar_ = MatrixXd(3, 3); H_laser_ = MatrixXd(2, 4); Hj_ = MatrixXd(3, 4); //measurement covariance matrix - laser R_laser_ << 0.0225, 0, 0, 0.0225; //measurement covariance matrix - radar R_radar_ << 0.09, 0, 0, 0, 0.0009, 0, 0, 0, 0.09; /** TODO: * Finish initializing the FusionEKF. * Set the process and measurement noises */ H_laser_ << 1, 0, 0, 0, 0, 1, 0, 0; ekf_.P_ = MatrixXd(4, 4); ekf_.P_ << 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1000, 0, 0, 0, 0, 1000; ekf_.F_ = MatrixXd(4, 4); ekf_.F_ << 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1; } /** * Destructor. */ FusionEKF::~FusionEKF() {} void FusionEKF::ProcessMeasurement(const MeasurementPackage &measurement_pack) { /***************************************************************************** * Initialization ****************************************************************************/ if (!is_initialized_) { /** TODO: * Initialize the state ekf_.x_ with the first measurement. * Create the covariance matrix. * Remember: you'll need to convert radar from polar to cartesian coordinates. */ // first measurement // cout << "EKF: " << endl; ekf_.x_ = VectorXd(4); // ekf_.x_ << 1, 1, 1, 1; if (measurement_pack.sensor_type_ == MeasurementPackage::RADAR) { /** Convert radar from polar to cartesian coordinates and initialize state. */ float rho = measurement_pack.raw_measurements_(0); float phi = measurement_pack.raw_measurements_(1); float rho_dot = measurement_pack.raw_measurements_(2); float x_pos = rho * cos(phi); float y_pos = rho * sin(phi); float x_vel = rho_dot * cos(phi); float y_vel = rho_dot * sin(phi); ekf_.x_ << x_pos, y_pos, x_vel, y_vel; } else if (measurement_pack.sensor_type_ == MeasurementPackage::LASER) { /** Initialize state. */ ekf_.x_ << measurement_pack.raw_measurements_[0], measurement_pack.raw_measurements_[1], 0, 0; } previous_timestamp_ = measurement_pack.timestamp_; // done initializing, no need to predict or update is_initialized_ = true; return; } /***************************************************************************** * Prediction ****************************************************************************/ /** TODO: * Update the state transition matrix F according to the new elapsed time. - Time is measured in seconds. * Update the process noise covariance matrix. * Use noise_ax = 9 and noise_ay = 9 for your Q matrix. */ float noise_ax = 9; float noise_ay = 9; //compute the time elapsed between the current and previous measurements float dt = (measurement_pack.timestamp_ - previous_timestamp_) / 1000000.0; //dt - expressed in seconds previous_timestamp_ = measurement_pack.timestamp_; float dt_2 = dt * dt; float dt_3 = dt_2 * dt; float dt_4 = dt_3 * dt; //Modify the F matrix so that the time is integrated ekf_.F_(0, 2) = dt; ekf_.F_(1, 3) = dt; //set the process covariance matrix Q ekf_.Q_ = MatrixXd(4, 4); ekf_.Q_ << dt_4/4*noise_ax, 0, dt_3/2*noise_ax, 0, 0, dt_4/4*noise_ay, 0, dt_3/2*noise_ay, dt_3/2*noise_ax, 0, dt_2*noise_ax, 0, 0, dt_3/2*noise_ay, 0, dt_2*noise_ay; ekf_.Predict(); /***************************************************************************** * Update ****************************************************************************/ /** TODO: * Use the sensor type to perform the update step. * Update the state and covariance matrices. */ if (measurement_pack.sensor_type_ == MeasurementPackage::RADAR) { // Radar updates ekf_.H_ = tools.CalculateJacobian(ekf_.x_); ekf_.R_ = R_radar_; ekf_.UpdateEKF(measurement_pack.raw_measurements_); } else { // Laser updates ekf_.H_ = H_laser_; ekf_.R_ = R_laser_; ekf_.Update(measurement_pack.raw_measurements_); } // print the output // cout << "x_ = " << ekf_.x_ << endl; // cout << "P_ = " << ekf_.P_ << endl; }
a845958bbb8d807c81c79500b89f5223a984a332
8f6dba8d9f03d552b7cdf7141d8ed416990f6c17
/chapter3/3.15.cpp
616162b6bd7ea7f8706801f6673a5292a1c1b69d
[]
no_license
NealChalmers/CPP-Primer
3ebe321f5010d7af4b84cba8331242c607b8393d
32d583831a9f8623b7246dc3eb92026f70be5451
refs/heads/master
2021-10-23T11:37:16.751835
2019-03-17T08:38:09
2019-03-17T08:38:09
99,414,989
1
0
null
null
null
null
UTF-8
C++
false
false
317
cpp
#include <iostream> #include <vector> #include <string> using std::cin; using std::cout; using std::ends; using std::vector; using std::string; int main() { vector<string> tvi; for (string i; cin >> i;) //store strings in a vector. tvi.push_back(i); for (auto &g : tvi) cout << g << "\n"; cout << ends; }
6479d8538fb61b32d9f1500287a7d81ad270481b
cf30896dae4f3ac002b9f2a33325e3786bc1c1b0
/arduino/potato/potato.ino
7a2da7817f0497cb456954fa3d7c1c98a5fa3d68
[]
no_license
chazp246/stm8_nozka
7210b95dc619bf87cf98a7561aaa9b5ff3a0bccc
fc162d306b8d5d7ae0219fc9f18bc674d3c0c001
refs/heads/master
2023-08-30T06:58:01.035767
2021-11-09T11:58:17
2021-11-09T11:58:17
426,204,079
0
0
null
null
null
null
UTF-8
C++
false
false
590
ino
long randNumber; long randtrvani; void setup() { // if analog input pin 0 is unconnected, random analog // noise will cause the call to randomSeed() to generate // different seed numbers each time the sketch runs. // randomSeed() will then shuffle the random function. randomSeed(analogRead(5)); pinMode(13, OUTPUT); } void loop() { // print a random number from 0 to 299 randNumber = random(6000, 12000); delay(randNumber); digitalWrite(13, HIGH); randtrvani = random(200, 600); delay(randtrvani); digitalWrite(13, LOW); // print a random number from 10 to 19 }
573ee1d5dcf9c12071d2cfbc81f2d550ed65fccd
8422ab665fdfb27c1f2a4e7d53a71b1deb3f3318
/exercises/E05_Poiselle/0/sigma
f82dbf9d9625c35040fdcf88da2a495068d36873
[ "BSD-2-Clause" ]
permissive
vagrawal91/CFD-Notebooks
f286103091f54381d14ceb70737c5488a0201c71
221bd37405974b2641b62b8dbc7d55e3506e70ba
refs/heads/master
2023-07-15T16:36:36.154228
2021-08-27T02:16:23
2021-08-27T02:16:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,040
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volSymmTensorField; object sigma; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -2 0 0 0 0]; internalField uniform (0 0 0 0 0 0); boundaryField { walls { type zeroGradient; } #includeEtc "caseDicts/setConstraintTypes" } // ************************************************************************* //
c1038a68bf155a64a48e4fbbd6bba97a8e989bd5
5947213fbe7f920a4190cfba78506f97e4651622
/arkhorserver/script/arkhamencounterscript.cpp
09d8770b68bf4b63a57bf6fc75055d2ddbb1f8fa
[]
no_license
kingnak/arkhor
bf18dc214325545d013946b9182b23bee3ffa4ac
24d550262f933ebfac4b7bad84cd4f7d22dd9420
refs/heads/master
2023-09-04T06:17:13.778915
2015-08-19T23:12:58
2015-08-19T23:12:58
83,339,894
0
0
null
null
null
null
UTF-8
C++
false
false
2,308
cpp
#include "arkhamencounterscript.h" #include <QScriptContext> #include "gamescript.h" #include "game/game.h" #include "game/gameregistry.h" #include <QDebug> ArkhamEncounterScript::ArkhamEncounterScript(QObject *parent) : QObject(parent) { } QList<GameOption *> ArkhamEncounterScript::options() const { return m_opts.values(); } bool ArkhamEncounterScript::resolveDependencies(GameRegistry *reg) { bool ok = true; foreach (QString id, m_opts.keys()) { if (m_opts[id] == NULL) { GameOption *op = reg->findOptionById(id); if (op) { m_opts[id] = op; } else { qWarning() << "Cannot resolve option" << id << "for Arkham Encounter on field" << this->fieldId(); ok = false; } } } return ok; } ArkhamEncounterScript *ArkhamEncounterScript::createEncounter(QScriptContext *ctx, QScriptEngine *eng) { Q_UNUSED(eng); if (ctx->argumentCount() != 1 || !ctx->argument(0).isObject()) { ctx->throwError(QScriptContext::TypeError, "createEncounter: Must call with 1 object"); return NULL; } QScopedPointer<ArkhamEncounterScript> ret(new ArkhamEncounterScript); QScriptValue data = ctx->argument(0); ret->m_fieldId = static_cast<AH::Common::FieldData::FieldID> (data.property("field").toUInt32()); ret->m_description = data.property("description").toString(); ret->m_optionIds = GameScript::array2stringlist(data.property("options")); foreach (QString id, ret->m_optionIds) { ret->m_opts[id] = NULL; } QString err; if (!verify(ret.data(), &err)) { ctx->throwError(QScriptContext::TypeError, "createEncounter: Invalid Encounter data. Errors:\n"+err); return NULL; } ArkhamEncounterScript *pRet = ret.take(); return pRet; } bool ArkhamEncounterScript::verify(ArkhamEncounterScript *act, QString *err) { QStringList errs; if (act->m_description.isEmpty()) errs.append("description must be set"); if (act->m_optionIds.isEmpty()) errs.append("options must be set"); if (act->m_fieldId == AH::Common::FieldData::NO_NO_FIELD) errs.append("field must be set"); if (err) *err = errs.join("\n"); if (errs.isEmpty()) { return true; } return false; }
e32f5a96352977940a782ff17cb834571492aae3
6ced41da926682548df646099662e79d7a6022c5
/aws-cpp-sdk-kms/include/aws/kms/model/ConnectionErrorCodeType.h
652876244cba8e05d0c3dc79dfe5fa7fa96a6b73
[ "Apache-2.0", "MIT", "JSON" ]
permissive
irods/aws-sdk-cpp
139104843de529f615defa4f6b8e20bc95a6be05
2c7fb1a048c96713a28b730e1f48096bd231e932
refs/heads/main
2023-07-25T12:12:04.363757
2022-08-26T15:33:31
2022-08-26T15:33:31
141,315,346
0
1
Apache-2.0
2022-08-26T17:45:09
2018-07-17T16:24:06
C++
UTF-8
C++
false
false
906
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/kms/KMS_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> namespace Aws { namespace KMS { namespace Model { enum class ConnectionErrorCodeType { NOT_SET, INVALID_CREDENTIALS, CLUSTER_NOT_FOUND, NETWORK_ERRORS, INTERNAL_ERROR, INSUFFICIENT_CLOUDHSM_HSMS, USER_LOCKED_OUT, USER_NOT_FOUND, USER_LOGGED_IN, SUBNET_NOT_FOUND, INSUFFICIENT_FREE_ADDRESSES_IN_SUBNET }; namespace ConnectionErrorCodeTypeMapper { AWS_KMS_API ConnectionErrorCodeType GetConnectionErrorCodeTypeForName(const Aws::String& name); AWS_KMS_API Aws::String GetNameForConnectionErrorCodeType(ConnectionErrorCodeType value); } // namespace ConnectionErrorCodeTypeMapper } // namespace Model } // namespace KMS } // namespace Aws
b797e7eb4aef2621031adc938b247d4b85669886
6e4574bb26a20cbc384f606b2b1b047fa4cbae8a
/Assignment2/Boat.cpp
b3d0213e6681a4c026dbe6588a31c33f7f36a716
[ "MIT" ]
permissive
Hyup98/Pocu_Cpp
13b7c81ad93ad35ad5cec802e6823d710ec964de
88cd8781f17e088435bfa388c2a9b0e7588cae5d
refs/heads/master
2023-07-03T03:32:09.081279
2021-08-07T10:08:55
2021-08-07T10:08:55
363,831,844
1
0
null
null
null
null
UTF-8
C++
false
false
1,321
cpp
#include "Boat.h" #include<cassert> namespace assignment2 { Boat::Boat(unsigned int maxPassengersCount) : Vehicle(maxPassengersCount) { } Boat::~Boat() { } void Boat::Move() { switch (mMoveCount) { case 0: case 1: mMovedLength += GetMaxSpeed(); mMoveCount++; break; case 2: mMoveCount = 0; break; default: assert(false); break; } } void Boat::SetMoveCount() { mMoveCount = 0; } unsigned int Boat::GetTraveledDistance() { unsigned int tem = GetMaxSpeed() * mMoveCount; return tem; } unsigned int Boat::GetSailSpeed() const { /* unsigned int tem = 800 - 10 * (GetTotalWeight()); if (tem > 20) { return tem; } else { return 20; } */ return std::max(static_cast<int>(800 - 10 * GetTotalWeight()), 20); } unsigned int Boat::GetMaxSpeed() const { return GetSailSpeed(); } Boatplane Boat::operator+(Airplane& plane) { Boatplane bp(GetMaxPassengersCount() + plane.GetMaxPassengersCount()); unsigned int i = 0; for (i; i < plane.GetPassengersCount(); i++) { bp.AddPassenger(plane.GetPassenger(i)); } plane.QuitAll(); unsigned int tem = 0; i++; unsigned int temI = i + GetPassengersCount(); for (i; i < temI; i++) { bp.AddPassenger(GetPassenger(tem)); tem++; } QuitAll(); return bp; } }
8046f22f6d177184f508d91e8124ef5520882916
edb0d524d018041b046b5a6f970282444f63ebeb
/include/Windows/OMESimRunner/TreeRepNode.h
ea2a0bf6f3e2f40411fc13a4101fcdb4a40a7dce
[]
no_license
USEPA/OME
902ead149e923abbf5cb93512e23115b8de10248
33d9c1f2b40daa2ee3414a363e28c0cc9ede56a2
refs/heads/master
2021-01-12T21:27:35.837154
2017-12-22T01:03:18
2017-12-22T01:03:18
58,138,621
3
3
null
2017-05-05T22:44:56
2016-05-05T14:54:21
C++
UTF-8
C++
false
false
5,162
h
#pragma once #include "TreeResultsDetails.h" #include "RepNode.h" using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing; namespace OMESimRunner { ref class RNControl; /// <summary>RepNode used for tree-style lists.</summary> public ref class TreeRepNode : RepNode { public: TreeRepNode(OMEObject* pObj, const int & level, RNControl^ root); TreeRepNode(OMEObject* pObj, RNControl^ root); /// <summary>Flag indicating whether the node is visible.</summary> property bool Visible { bool get() { return m_visible; } System::Void set(bool v) { m_visible = v; for (size_t i = 0; i<m_subNodes.Count; i++) m_subNodes[i]->Visible = m_visible; } } /// <summary>Depth in tree where the node resides.</summary> property int Level { int get() { return m_level; } void set(int lvl) { m_level = lvl; } } /// <summary>Flag indicating whether the subnodes are visible or not.</summary> property bool Expanded { bool get() { return m_expanded; } System::Void set(bool exp) { m_expanded = exp; for (size_t i = 0; i<m_subNodes.Count; i++) m_subNodes[i]->Visible = m_expanded; } } /// <summary>True if node has one or more direct subnodes.</summary> property bool IsParent { bool get() { return m_isParent; } void set(bool p) { m_isParent = p; } } /// <summary>Flag indicating whether or not the node is active.</summary> property bool Active { bool get() { return m_active; } void set(bool a) { if (m_pObj && m_pObj->GetOMEType() != OME_MODEL) m_active = a; } } /// <summary>Flag indicating whether or not the entire tree is active.</summary> property bool TreeActive { bool get() { return IsTreeActive(); } } /// <summary>The total number of immediate subnodes.</summary> property Int32 SubNodeCount { Int32 get() { return m_subNodes.Count; } } System::Void AddNode(TreeRepNode^ node); bool RemoveNode(TreeRepNode^ node); TreeRepNode^ GetNode(int i); System::Void ToggleExpanded(); virtual Int32 CompareTo(System::Object^ obj) override; System::Void SortSubs(); protected: /// <summary>List of immediate subnodes.</summary> Generic::List<TreeRepNode^> m_subNodes; /// <summary>Flag indicating whether the subnodes are visible or not.</summary> bool m_expanded; /// <summary>Flag indicating whether the node is visible.</summary> bool m_visible; /// <summary>Flag indicating whether or not the node is active.</summary> bool m_active; /// <summary>True if node has one or more direct subnodes.</summary> bool m_isParent; /// <summary>Depth in tree where the node resides.</summary> int m_level; /// <summary>Handle to the sorting control object.</summary> RNControl^ m_pTreeControl; bool IsTreeActive(); }; //////////////////////////////////////// /// <summary> Sorting control for TreeView.</summary> public ref class RNControl { public: RNControl(); /// <summary>Sort criteria for specific field types.</summary> enum class SORT_FIELD { /// <summary>Leaf node type.</summary> NAME, /// <summary>Branch node type.</summary> PARENT }; /// <summary>Tree node type identifier.</summary> property SORT_FIELD SortField { SORT_FIELD get() { return m_sortField; } void set(SORT_FIELD sf) { if (m_sortField != sf) { m_sortField = sf; m_updateRequired = true; } } } /// <summary>True if contents are to sort in ascending order; /// false if contents are to sort in descending order.</summary> property bool IsAscending { bool get() { return m_ascending; } System::Void set(bool asc) { if (asc != m_ascending) m_updateRequired = true; m_ascending = asc; } } /// <summary>The sort mode presently being used.</summary> property RN_SORTMODE SortMode { RN_SORTMODE get() { return m_sortMode; } void set(RN_SORTMODE sm) { if (m_sortMode != sm) m_updateRequired = true; m_sortMode = sm; } } /// <summary>Handle to the root tree node.</summary> property TreeRepNode^ Root { TreeRepNode^ get() { return m_pRoot; } System::Void set(TreeRepNode^ pNode) { m_pRoot = pNode; } } /// <summary>If true, the sorting criteria has been updated.</summary> property bool Updated { bool get() { return m_updateRequired; } } System::Void ToggleSortOrder(); System::Void ClearUpdateFlag(); protected: /// <summary>True if contents are to sort in ascending order; /// false if contents are to sort in descending order.</summary> bool m_ascending; /// <summary>The sort mode presently being used.</summary> RN_SORTMODE m_sortMode; /// <summary>Handle to the root tree node.</summary> TreeRepNode^ m_pRoot; /// <summary>If true, the sorting criteria has been updated.</summary> bool m_updateRequired; /// <summary>Tree node type identifier.</summary> SORT_FIELD m_sortField; }; };
e105a86e7ce595f978f27af65d01e75f14459da2
2f6a9ff787b9eb2ababc9bb39e15f1349fefa3d2
/inet/src/inet/routing/ospfv3/process/Ospfv3Lsa.cc
6462de49b6a79d1e4ff403521c24f2bda8b58f68
[ "BSD-3-Clause", "MPL-2.0", "LicenseRef-scancode-free-unknown" ]
permissive
ntanetani/quisp
97f9c2d0a8d3affbc709452e98c02c568f5fe8fd
47501a9e9adbd6adfb05a1c98624870b004799ea
refs/heads/master
2023-03-10T08:05:30.044698
2022-06-14T17:29:28
2022-06-14T17:29:28
247,196,429
0
1
BSD-3-Clause
2023-02-27T03:27:22
2020-03-14T02:16:19
C++
UTF-8
C++
false
false
5,061
cc
#include "inet/routing/ospfv3/process/Ospfv3Lsa.h" namespace inet { namespace ospfv3 { Ospfv3SpfVertex::Ospfv3SpfVertex(Ospfv3Lsa* asocLSA, int distance) { this->distance = distance; this->asocLSA = asocLSA; this->type = asocLSA->getHeader().getLsaType(); this->vertexID.routerID = asocLSA->getHeader().getLinkStateID(); if (type == NETWORK_LSA) { this->vertexID.interfaceID = 1; } } //for ROUTER_LSA B calculateLSASize(const Ospfv3RouterLsa *routerLSA) { return OSPFV3_LSA_HEADER_LENGTH + OSPFV3_ROUTER_LSA_HEADER_LENGTH + (OSPFV3_ROUTER_LSA_BODY_LENGTH * routerLSA->getRoutersArraySize()); } // for NETWORK_LSA B calculateLSASize(const Ospfv3NetworkLsa *networkLSA) { return OSPFV3_LSA_HEADER_LENGTH + OSPFV3_NETWORK_LSA_HEADER_LENGTH + (OSPFV3_NETWORK_LSA_ATTACHED_LENGTH * networkLSA->getAttachedRouterArraySize()); } // for INTER_AREA_PREFIX_LSA B calculateLSASize(const Ospfv3InterAreaPrefixLsa *prefixLSA) { // return OSPFV3_LSA_HEADER_LENGTH + OSPFV3_INTER_AREA_PREFIX_LSA_HEADER_LENGTH + OSPFV3_INTER_AREA_PREFIX_LSA_BODY_LENGTH; return OSPFV3_LSA_HEADER_LENGTH + OSPFV3_INTER_AREA_PREFIX_LSA_HEADER_LENGTH + OSPFV3_LSA_PREFIX_HEADER_LENGTH + B( ((prefixLSA->getPrefix().prefixLen+31)/32) * 4); } // for LINK_LSA B calculateLSASize(const Ospfv3LinkLsa *linkLSA) { B lsaLength = OSPFV3_LSA_HEADER_LENGTH + OSPFV3_LINK_LSA_BODY_LENGTH; uint32_t prefixCount = linkLSA->getNumPrefixes(); for (uint32_t i = 0; i < prefixCount; i++) { lsaLength += OSPFV3_LSA_PREFIX_HEADER_LENGTH; lsaLength += B(((linkLSA->getPrefixes(i).prefixLen + 31) / 32) * 4); } return lsaLength; } // for INTRA_AREA_PREFIX_LSA B calculateLSASize(const Ospfv3IntraAreaPrefixLsa *prefixLSA) { B lsaLength = OSPFV3_LSA_HEADER_LENGTH + OSPFV3_INTRA_AREA_PREFIX_LSA_HEADER_LENGTH; uint32_t prefixCount = prefixLSA->getNumPrefixes(); for (uint32_t i = 0; i < prefixCount; i++) { lsaLength += OSPFV3_LSA_PREFIX_HEADER_LENGTH; lsaLength += B(((prefixLSA->getPrefixes(i).prefixLen + 31) / 32) * 4); } return lsaLength; } std::ostream& operator<<(std::ostream& ostr, const Ospfv3LsaHeader& lsaHeader) { ostr << "LSAHeader: age=" << lsaHeader.getLsaAge() << ", type="; switch (lsaHeader.getLsaType()) { case ROUTER_LSA: ostr << "RouterLSA"; break; case NETWORK_LSA: ostr << "NetworkLSA"; break; case INTER_AREA_PREFIX_LSA: ostr << "InterAreaPrefixLSA"; break; case INTER_AREA_ROUTER_LSA: ostr << "InterAreaRouterLSA"; break; case AS_EXTERNAL_LSA: ostr << "ASExternalLSA"; break; case LINK_LSA: ostr << "LinkLSA"; break; case INTRA_AREA_PREFIX_LSA: ostr << "IntraAreaPrefixLSA"; break; default: ostr << "Unknown"; break; } ostr << ", LSID=" << lsaHeader.getLinkStateID().str(false) << ", advertisingRouter=" << lsaHeader.getAdvertisingRouter().str(false) << ", seqNumber=" << lsaHeader.getLsaSequenceNumber() << endl; return ostr; } std::ostream& operator<<(std::ostream& ostr, const Ospfv3NetworkLsa& lsa) { unsigned int cnt = lsa.getAttachedRouterArraySize(); if (cnt) { ostr << ", Attached routers:"; for (unsigned int i = 0; i < cnt; i++) { ostr << " " << lsa.getAttachedRouter(i); } } ostr << ", " << lsa.getHeader(); return ostr; } std::ostream& operator<<(std::ostream& ostr, const Ospfv3RouterLsa& lsa) { if (lsa.getVBit()) ostr << "V, "; if (lsa.getEBit()) ostr << "E, "; if (lsa.getBBit()) ostr << "B, "; ostr << "numberOfLinks: " << lsa.getRoutersArraySize() << ", "; unsigned int cnt = lsa.getRoutersArraySize(); if (cnt) { ostr << "Links: {"; for (unsigned int i = 0; i < cnt; i++) { ostr << " {" << lsa.getRouters(i).neighborRouterID << "}"; } ostr << "}, "; } ostr << lsa.getHeader(); return ostr; } std::ostream& operator<<(std::ostream& ostr, const Ospfv3InterAreaPrefixLsa& lsa) { ostr << "Mask: " << lsa.getPrefix().prefixLen << ", Cost: " << lsa.getMetric() << ", "; ostr << lsa.getHeader(); return ostr; } std::ostream& operator<<(std::ostream& ostr, const Ospfv3AsExternalLsa& lsa) { if (lsa.getEBit()) ostr << "E, "; if (lsa.getTBit()) ostr << "T, "; if (lsa.getFBit()) ostr << "F, "; ostr << "Referenced LSA Type: " << lsa.getReferencedLSType() << ", Cost: " << lsa.getMetric() << ", Forward: " << lsa.getForwardingAddress() << ", ExtRouteTag: " << lsa.getExternalRouteTag() << ", Referenced LSID: " << lsa.getReferencedLSID() << ", "; ostr << lsa.getHeader(); return ostr; } } // namespace ospfv3 } //namespace inet
192d678f330b22de5a4f4a0d5272e264c135ca8e
7548ff48005d063d31033fd0129ab6461ec2f305
/URI/1114---Senha-Fixa.cpp
54729e7e8957007095614d6af75701557c52188f
[]
no_license
elissandro13/Problems-Solved
423d554b604f03dadbef7461efe96886eb0c71dd
1b3b745283c5cd19a5f988120cb95ba151b9e5f8
refs/heads/master
2020-06-26T20:33:36.652931
2020-04-07T20:20:30
2020-04-07T20:20:30
199,749,609
1
0
null
null
null
null
UTF-8
C++
false
false
242
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n; while (cin >> n) { // cout<<"sas"; cout << (n == 2002 ? "AcessoPermitido" : "SenhaInvalida"); cout << "\n"; if (n == 2002) break; } return 0; }
f5b8610143edd4c544ef8ee93578c69503e8a451
3e7ae0d825853090372e5505f103d8f3f39dce6d
/AutMarine v4.2.0/AutLib/Geom/Sort/Geometry_HeapI.hxx
5976bc7d1542bea228abcb66df75dd5775907291
[]
no_license
amir5200fx/AutMarine-v4.2.0
bba1fe1aa1a14605c22a389c1bd3b48d943dc228
6beedbac1a3102cd1f212381a9800deec79cb31a
refs/heads/master
2020-11-27T05:04:27.397790
2019-12-20T17:59:03
2019-12-20T17:59:03
227,961,590
0
0
null
null
null
null
UTF-8
C++
false
false
3,083
hxx
#pragma once template<typename T> inline AutLib::GeoLib::Geometry_Heap<T>::Geometry_Heap() : theSize_(0) { } template<typename T> inline AutLib::GeoLib::Geometry_Heap<T>::Geometry_Heap(Standard_Real(*LengthValue)(const T &)) : theSize_(0) , theLengthValue(LengthValue) { } template<typename T> inline Standard_Integer AutLib::GeoLib::Geometry_Heap<T>::Size() const { return theSize_; } template<typename T> inline const M_AUT ADT_Ary1d<T>& AutLib::GeoLib::Geometry_Heap<T>::Data() const { return theData_; } template<typename T> inline Standard_Boolean AutLib::GeoLib::Geometry_Heap<T>::IsEmpty() const { return theSize_ == 0; } template<typename T> inline Standard_Boolean AutLib::GeoLib::Geometry_Heap<T>::GetItem(T & Item) { if (IsEmpty()) return Standard_False; else { Item = Remove(); return Standard_True; } } template<typename T> inline void AutLib::GeoLib::Geometry_Heap<T>::Resize(const Standard_Integer NbItems) { theData_.Resize(NbItems); } template<typename T> inline void AutLib::GeoLib::Geometry_Heap<T>::Insert(const T & Item) { Debug_If_Condition_Message(theLengthValue EQUAL NULL, " No Set Comparable Function For Heap"); if (theSize_ EQUAL theData_.Size()) { THROW_STANDARD_EXCEPTION(" Heap's underlying storage is overflow"); } else { theSize_++; theData_[theSize_ - 1] = Item; ShiftUp(theSize_ - 1); } } template<typename T> inline void AutLib::GeoLib::Geometry_Heap<T>::Insert(const ADT_Ary1d<T>& Items) { Resize(Items.Size()); forThose ( Index, 0, MaxIndexOf(Items) ) { Insert(Items[Index]); } } template<typename T> inline void AutLib::GeoLib::Geometry_Heap<T>::SetFunction(Standard_Real(*LengthValue)(const T &)) { theLengthValue = LengthValue; } template<typename T> inline T AutLib::GeoLib::Geometry_Heap<T>::Remove() { T Item(0); if (IsEmpty()) { THROW_STANDARD_EXCEPTION(" Heap is Empty"); } else { Item = theData_[0]; theData_[0] = theData_[theSize_ - 1]; theSize_--; if (theSize_ > 0) ShiftDown(0); } MOVE(Item); } template<typename T> inline void AutLib::GeoLib::Geometry_Heap<T>::ShiftUp(const Standard_Integer Index) { if (Index) { Standard_Integer ParentIndex = Parent(Index); if (theLengthValue(theData_[ParentIndex]) > theLengthValue(theData_[Index])) { std::swap(theData_[ParentIndex], theData_[Index]); ShiftUp(ParentIndex); } } } template<typename T> inline void AutLib::GeoLib::Geometry_Heap<T>::ShiftDown(const Standard_Integer Index) { Standard_Integer LeftChildIndex, RightChildIndex, MinIndex; LeftChildIndex = LeftChild(Index); RightChildIndex = RightChild(Index); if (RightChildIndex >= theSize_) { if (LeftChildIndex >= theSize_) return; else MinIndex = LeftChildIndex; } else { if (theLengthValue(theData_[LeftChildIndex]) <= theLengthValue(theData_[RightChildIndex])) MinIndex = LeftChildIndex; else MinIndex = RightChildIndex; } if (theLengthValue(theData_[Index]) > theLengthValue(theData_[MinIndex])) { std::swap(theData_[MinIndex], theData_[Index]); ShiftDown(MinIndex); } }
900bcd2fbcdbdc36037bea3f9db4c02b029d2863
1801555960309a75a767db21c65a8f9102dea2f4
/wavespectrum_icenode/WaveToSpectrum.cpp
4f6c35a9038aadfdace66ee163b325c99885df9c
[]
no_license
brunoric3d/xsi-audio-spectrum
944db7eba5485a1fbe2dc22db1538154b9bbf0e9
a3d84417b3c62c4507f0f1b8297252d7f75a7a25
refs/heads/master
2020-12-25T12:57:04.065899
2012-05-27T22:06:12
2012-05-27T22:06:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,207
cpp
// WaveToSpectrum Plugin // Takes a Wave File (stereo 44khz) and do a spectrum decomposition. // // Initial code generated by Softimage SDK Wizard // // Claude Vervoort, http://claudeonthe.net // #define _HAS_ITERATOR_DEBUGGING 1 #include <xsi_application.h> #include <xsi_context.h> #include <xsi_pluginregistrar.h> #include <xsi_status.h> #include <xsi_icenodecontext.h> #include <xsi_icenodedef.h> #include <xsi_command.h> #include <xsi_factory.h> #include <xsi_longarray.h> #include <xsi_doublearray.h> #include <xsi_math.h> #include <xsi_vector2f.h> #include <xsi_vector3f.h> #include <xsi_vector4f.h> #include <xsi_matrix3f.h> #include <xsi_matrix4f.h> #include <xsi_rotationf.h> #include <xsi_quaternionf.h> #include <xsi_color4f.h> #include <xsi_shape.h> #include <xsi_icegeometry.h> #include <xsi_iceportstate.h> #include <xsi_indexset.h> #include <xsi_dataarray.h> #include <xsi_dataarray2D.h> #include "WaveSpectrumAnalyzer.h" // For storing CSampleData user data objects #include <vector> using namespace XSI; using namespace FFTWave; // Simple user data struct struct SpectrumUserData { SpectrumUserData( ): waveLoader( NULL ), logAnalyzer( NULL ), linearAnalyzer( NULL ) {}; ~SpectrumUserData( ) { reset( ); } void reset( ) { if ( NULL != waveLoader ) delete waveLoader; if ( NULL != logAnalyzer ) delete logAnalyzer; if ( NULL != linearAnalyzer) delete linearAnalyzer; waveLoader = NULL; logAnalyzer = NULL; linearAnalyzer = NULL; } BOOL init( CString filepath ) { if ( NULL == waveLoader || !waveLoader->isLoadedFile( filepath.GetWideString( ) ) ) { reset( ); waveLoader = new WaveLoader( ); if ( !waveLoader->load( filepath.GetWideString( ) ) ) { reset( ); return false; } } return true; } WaveLoader* waveLoader; // shared wav data, loaded only once during the simulation (unless modified during the sim flow) WaveSpectrumAnalyzer* logAnalyzer; // used when the log output is connected WaveSpectrumAnalyzer* linearAnalyzer; // used when the linear output is connected }; // Defines port, group and map identifiers used for registering the ICENode enum IDs { ID_IN_filepath = 0, ID_IN_channel = 1, ID_IN_time = 2, ID_IN_frequency = 3, ID_G_100 = 100, ID_G_200 = 200, ID_OUT_linearBands = 200, ID_OUT_logBands = 201, ID_OUT_linear = 202, ID_OUT_log = 203, ID_TYPE_CNS = 400, ID_STRUCT_CNS, ID_CTXT_CNS=800, ID_CTXT_CNS_ANY=801, ID_UNDEF = ULONG_MAX }; XSI::CStatus RegisterWaveToSpectrum( XSI::PluginRegistrar& in_reg ); SICALLBACK XSILoadPlugin( PluginRegistrar& in_reg ) { in_reg.PutAuthor(L"Claude Vervoort"); in_reg.PutName(L"WaveToSpectrum Plugin"); in_reg.PutVersion(1,0); RegisterWaveToSpectrum( in_reg ); //RegistrationInsertionPoint - do not remove this line return CStatus::OK; } SICALLBACK XSIUnloadPlugin( const PluginRegistrar& in_reg ) { CString strPluginName; strPluginName = in_reg.GetName(); Application().LogMessage(strPluginName + L" has been unloaded.",siVerboseMsg); return CStatus::OK; } CStatus RegisterWaveToSpectrum( PluginRegistrar& in_reg ) { ICENodeDef nodeDef; nodeDef = Application().GetFactory().CreateICENodeDef(L"WaveToSpectrum",L"WaveToSpectrum"); CStatus st; st = nodeDef.PutColor(154,188,102); st.AssertSucceeded( ) ; st = nodeDef.PutThreadingModel(XSI::siICENodeMultiEvaluationPhase); st.AssertSucceeded( ) ; // Add input ports and groups. st = nodeDef.AddPortGroup(ID_G_100); st.AssertSucceeded( ) ; st = nodeDef.AddInputPort(ID_IN_filepath,ID_G_100,siICENodeDataString,siICENodeStructureSingle,siICENodeContextSingleton,L"filepath",L"filepath",L"default string",CValue(),CValue(),ID_UNDEF,ID_UNDEF,ID_CTXT_CNS); st.AssertSucceeded( ) ; st = nodeDef.AddInputPort(ID_IN_channel,ID_G_100,siICENodeDataLong,siICENodeStructureSingle,siICENodeContextSingleton,L"channel",L"channel",0,CValue(),CValue(),ID_UNDEF,ID_UNDEF,ID_CTXT_CNS); st.AssertSucceeded( ) ; st = nodeDef.AddInputPort(ID_IN_time,ID_G_100,siICENodeDataFloat,siICENodeStructureSingle,siICENodeContextSingleton,L"time",L"time",0,CValue(),CValue(),ID_UNDEF,ID_UNDEF,ID_CTXT_CNS); st.AssertSucceeded( ) ; st = nodeDef.AddInputPort(ID_IN_frequency,ID_G_100,siICENodeDataFloat,siICENodeStructureSingle,siICENodeContextAny,L"frequency",L"frequency",0,CValue(),CValue(),ID_UNDEF,ID_UNDEF,ID_CTXT_CNS_ANY); st.AssertSucceeded( ) ; // Add output ports. st = nodeDef.AddOutputPort(ID_OUT_linearBands,siICENodeDataFloat,siICENodeStructureArray,siICENodeContextSingleton,L"linearBands",L"linearBands",ID_UNDEF,ID_UNDEF,ID_CTXT_CNS); st.AssertSucceeded( ) ; st = nodeDef.AddOutputPort(ID_OUT_logBands,siICENodeDataFloat,siICENodeStructureArray,siICENodeContextSingleton,L"logBands",L"logBands",ID_UNDEF,ID_UNDEF,ID_CTXT_CNS); st.AssertSucceeded( ) ; st = nodeDef.AddOutputPort(ID_OUT_linear,siICENodeDataFloat,siICENodeStructureSingle,siICENodeContextAny,L"linear",L"linear",ID_UNDEF,ID_UNDEF,ID_CTXT_CNS_ANY); st.AssertSucceeded( ) ; st = nodeDef.AddOutputPort(ID_OUT_log,siICENodeDataFloat,siICENodeStructureSingle,siICENodeContextAny,L"log",L"log",ID_UNDEF,ID_UNDEF,ID_CTXT_CNS_ANY); st.AssertSucceeded( ) ; PluginItem nodeItem = in_reg.RegisterICENode(nodeDef); nodeItem.PutCategories(L"Custom ICENode"); return CStatus::OK; } /* * Called when the node instance is initiated at the beginning of the * implementation. We initiate a sharead variable here so that the Wave * data is only loaded once unless the file path is changed */ SICALLBACK WaveToSpectrum_Init( CRef& in_ctxt ) { Context ctxt( in_ctxt ); SpectrumUserData* userData = new SpectrumUserData( ); ctxt.PutUserData( (CValue::siPtrType)userData ); return CStatus::OK; } /* * Called when the node is discarded, so we are going to free any * structure we have initialized during the simulation */ SICALLBACK WaveToSpectrum_Term( CRef& in_ctxt ) { Context ctxt( in_ctxt ); SpectrumUserData* userData = ( SpectrumUserData* ) ( CValue::siPtrType ) ctxt.GetUserData( ); delete userData; return CStatus::OK; } XSIPLUGINCALLBACK CStatus WaveToSpectrum_SubmitEvaluationPhaseInfo( ICENodeContext& in_ctxt ) { ULONG nPhase = in_ctxt.GetEvaluationPhaseIndex( ); switch( nPhase ) { case 0: { // Phase 0 single thread: we set up the wave file and compute the FFT in_ctxt.AddEvaluationPhaseInputPort( ID_IN_filepath ); in_ctxt.AddEvaluationPhaseInputPort( ID_IN_channel ); in_ctxt.AddEvaluationPhaseInputPort( ID_IN_time ); } break; case 1: { in_ctxt.AddEvaluationPhaseInputPort( ID_IN_frequency ); // This phase is the last one. All ports specified for phase 1 will be evaluated in multi-threaded batches. in_ctxt.SetLastEvaluationPhase(); } break; } return CStatus::OK; } // we compute the FFT in the single threaded context since the time is Object instance so all // particles share the same FFT (however they get the value at different frequency since frequency // is per point context) SICALLBACK WaveToSpectrum_ComputeFFT( ICENodeContext& in_ctxt ) { SpectrumUserData* userData = ( SpectrumUserData* ) ( CValue::siPtrType ) in_ctxt.GetUserData( ); CDataArrayString filepathData( in_ctxt, ID_IN_filepath ); if ( filepathData.GetCount( ) > 0 ) { CString filepath; filepathData.GetData( 0, filepath ); if ( userData->init( filepath ) )// will reset loaders and analyzers if file path changes { // So we do have Wave Data, let's compute the FFT and the spectrum bands for the current time/channel ULONG out_portID = in_ctxt.GetEvaluatedOutputPortID( ); bool linear = ( out_portID == ID_OUT_linear ) || ( out_portID == ID_OUT_linearBands ); WaveSpectrumAnalyzer* spectrumAnalyzer = linear?userData->linearAnalyzer:userData->logAnalyzer; CDataArrayLong channelData( in_ctxt, ID_IN_channel ); CDataArrayFloat timeData( in_ctxt, ID_IN_time ); CIndexSet indexSet( in_ctxt ); // Should be unique since Singleton context for(CIndexSet::Iterator it = indexSet.Begin(); it.HasNext(); it.Next()) { int channel = static_cast<int>( channelData[ it ] ); float time = timeData[ it ]; if ( time <0 || channel > 1 || channel <-1 ) { Application( ).LogMessage( "Incorrect parameters time[ " + CString( time ) + "] channelData (-1,0,1) [ " + CString(channel) + "]" ); return CStatus::InvalidArgument; } if ( NULL == spectrumAnalyzer ) { spectrumAnalyzer = new WaveSpectrumAnalyzer( userData->waveLoader ); if ( linear ) { spectrumAnalyzer->setLinear( ); userData->linearAnalyzer = spectrumAnalyzer; } else { spectrumAnalyzer->setLog( ); userData->logAnalyzer = spectrumAnalyzer; } // we find the peak so that output are somewhat normalized spectrumAnalyzer->findPeak( 1040, 2000 /* every 1000 samples */, channel ); // find the average peak and uses it to scale values spectrumAnalyzer->setTransformFinalValueFunction( &FFTWave::max1Compute ); // 1 - exp ( -2 * v ) so that values never go above 1 } int block = userData->waveLoader->toBlockFromTime( timeData[ it ] ); spectrumAnalyzer->getFFTBands(block, channel ) ; } return CStatus::OK; } } // Is there a better way to indicate an error? Application( ).LogMessage( "File could not be loaded" ); return CStatus::InvalidArgument; } SICALLBACK WaveToSpectrum_Evaluate( ICENodeContext& in_ctxt ) { ULONG nPhase = in_ctxt.GetEvaluationPhaseIndex( ); if ( 0 == nPhase ) { return WaveToSpectrum_ComputeFFT( in_ctxt ); } // Get the user data that we allocated in BeginEvaluate SpectrumUserData* userData = ( SpectrumUserData* ) ( CValue::siPtrType ) in_ctxt.GetUserData( ); // The current output port being evaluated... ULONG out_portID = in_ctxt.GetEvaluatedOutputPortID( ); bool allBands = (ID_OUT_linearBands == out_portID ) || ( ID_OUT_logBands == out_portID ); bool linear = ( out_portID == ID_OUT_linear ) || ( out_portID == ID_OUT_linearBands ); WaveSpectrumAnalyzer* spectrumAnalyzer = linear?userData->linearAnalyzer:userData->logAnalyzer; CIndexSet indexSet( in_ctxt ); if ( allBands ) { CDataArray2DFloat outData( in_ctxt ); for(CIndexSet::Iterator it = indexSet.Begin(); it.HasNext(); it.Next()) { float* bands = spectrumAnalyzer->getFFTBands( ) ; CDataArray2DFloat::Accessor outAccessor = outData.Resize( it, spectrumAnalyzer->getNumberOfBands( ) ); for (int i=0; i<spectrumAnalyzer->getNumberOfBands( ); ++i ) { outAccessor[i] = ( NULL == bands )?0:bands[i]; } } } else { // frequency should be a normalized value 0-1, and what is returned is a linear interpolation // of the value at that frequency location. CDataArrayFloat outData( in_ctxt ); CDataArrayFloat frequency( in_ctxt, ID_IN_frequency ); for(CIndexSet::Iterator it = indexSet.Begin(); it.HasNext(); it.Next()) { float* bands = spectrumAnalyzer->getFFTBands( ) ; // find the upper and lower bands then linear interpolation float bandIndex = frequency[ it ] * spectrumAnalyzer->getNumberOfBands( ); bandIndex = ( bandIndex < 0 )?0:bandIndex; int lowerIndex = ( int ) bandIndex; if ( lowerIndex + 1 >= spectrumAnalyzer->getNumberOfBands( ) ) { outData[ it ] = bands[ spectrumAnalyzer->getNumberOfBands( ) - 1 ]; } else { float interp = bandIndex - lowerIndex; outData[ it ] = bands[ lowerIndex ] * ( 1 - interp ) + bands[ lowerIndex + 1 ] * interp; } } } return CStatus::OK; } /* * Begin Evaluate is called in a single threaded environment and is used to set * up the loader */ SICALLBACK WaveToSpectrum_BeginEvaluate( ICENodeContext& in_ctxt ) { return CStatus::OK; } SICALLBACK WaveToSpectrum_EndEvaluate( ICENodeContext& in_ctxt ) { // We do not release any memory here since the wave file might be needed on the next frame return CStatus::OK; }
[ "Claude@Claude-PC.(none)" ]
Claude@Claude-PC.(none)
2a62948957ada9666fe5c33827e7f15b0a75fdcb
360a1beecf9091f658ffa4e54ca16666d88a5c40
/daemon/rpcserver.h
97d340c42755b5cccc41af3ee0213b248fc23d8b
[ "MIT" ]
permissive
HUZU-Project/HUZU
527ba6959cc25616e0d13e10a48c874781bd4639
cceec878effb7eb9bd1ebf2b92f51eaa4af364d6
refs/heads/master
2023-07-13T09:34:48.634592
2023-06-26T11:40:25
2023-06-26T11:43:49
146,970,495
2
5
MIT
2023-06-26T11:43:53
2018-09-01T05:25:48
C++
UTF-8
C++
false
false
15,731
h
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2015-2018 The PIVX developers // Copyright (c) 2018-2022 The UNIGRID organization // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_RPCSERVER_H #define BITCOIN_RPCSERVER_H #include "amount.h" #include "rpcprotocol.h" #include "uint256.h" #include <list> #include <map> #include <stdint.h> #include <string> #include <boost/function.hpp> #include <univalue.h> class CRPCCommand; namespace RPCServer { void OnStarted(boost::function<void ()> slot); void OnStopped(boost::function<void ()> slot); void OnPreCommand(boost::function<void (const CRPCCommand&)> slot); void OnPostCommand(boost::function<void (const CRPCCommand&)> slot); } class CBlockIndex; class CNetAddr; class JSONRequest { public: UniValue id; std::string strMethod; UniValue params; JSONRequest() { id = NullUniValue; } void parse(const UniValue& valRequest); }; bool IsRPCRunning(); /* Set the RPC warmup status. When this is done, all RPC calls will error out immediately with RPC_IN_WARMUP. */ void SetRPCWarmupStatus(const std::string& newStatus); /* RPC calls will be processed after a call to this */ void SetRPCWarmupFinished(); /* returns the current warmup state. */ bool RPCIsInWarmup(std::string* statusOut); /** * Type-check arguments; throws JSONRPCError if wrong type given. Does not check that * the right number of arguments are passed, just that any passed are the correct type. * Use like: RPCTypeCheck(params, boost::assign::list_of(str_type)(int_type)(obj_type)); */ void RPCTypeCheck(const UniValue& params, const std::list<UniValue::VType>& typesExpected, bool fAllowNull=false); /** * Check for expected keys/value types in an Object. * Use like: RPCTypeCheckObj(object, boost::assign::map_list_of("name", str_type)("value", int_type)); */ void RPCTypeCheckObj(const UniValue& o, const std::map<std::string, UniValue::VType>& typesExpected, bool fAllowNull=false); /** Opaque base class for timers returned by NewTimerFunc. * This provides no methods at the moment, but makes sure that delete * cleans up the whole state. */ class RPCTimerBase { public: virtual ~RPCTimerBase() {} }; class RPCTimerInterface { public: virtual ~RPCTimerInterface() {} virtual const char *Name() = 0; /** Factory function for timers. * RPC will call the function to create a timer that will call func in *millis* milliseconds. * @note As the RPC mechanism is backend-neutral, it can use different implementations of timers. * This is needed to cope with the case in which there is no HTTP server, but * only GUI RPC console, and to break the dependency of pcserver on httprpc. */ virtual RPCTimerBase* NewTimer(boost::function<void(void)>& func, int64_t millis) = 0; }; void RPCRegisterTimerInterface(RPCTimerInterface *iface); void RPCUnregisterTimerInterface(RPCTimerInterface *iface); /** * Run func nSeconds from now. * Overrides previous timer <name> (if any). */ void RPCRunLater(const std::string& name, boost::function<void(void)> func, int64_t nSeconds); typedef UniValue(*rpcfn_type)(const UniValue& params, bool fHelp); class CRPCCommand { public: std::string category; std::string name; rpcfn_type actor; bool okSafeMode; bool threadSafe; bool reqWallet; }; class CRPCTable { private: std::map<std::string, const CRPCCommand*> mapCommands; public: CRPCTable(); const CRPCCommand* operator[](const std::string& name) const; std::string help(std::string name) const; UniValue execute(const std::string &method, const UniValue &params) const; std::vector<std::string> listCommands() const; }; extern const CRPCTable tableRPC; /** * Utilities: convert hex-encoded Values * (throws error if not hex). */ extern uint256 ParseHashV(const UniValue& v, std::string strName); extern uint256 ParseHashO(const UniValue& o, std::string strKey); extern std::vector<unsigned char> ParseHexV(const UniValue& v, std::string strName); extern std::vector<unsigned char> ParseHexO(const UniValue& o, std::string strKey); extern int ParseInt(const UniValue& o, std::string strKey); extern bool ParseBool(const UniValue& o, std::string strKey); extern int64_t nWalletUnlockTime; extern CAmount AmountFromValue(const UniValue& value); extern UniValue ValueFromAmount(const CAmount& amount); extern double GetDifficulty(const CBlockIndex* blockindex = NULL); extern std::string HelpRequiringPassphrase(); extern std::string HelpExampleCli(std::string methodname, std::string args); extern std::string HelpExampleRpc(std::string methodname, std::string args); extern void EnsureWalletIsUnlocked(bool fAllowAnonOnly = false); extern UniValue getconnectioncount(const UniValue& params, bool fHelp); // in rpcnet.cpp extern UniValue getpeerinfo(const UniValue& params, bool fHelp); extern UniValue ping(const UniValue& params, bool fHelp); extern UniValue addnode(const UniValue& params, bool fHelp); extern UniValue disconnectnode(const UniValue& params, bool fHelp); extern UniValue getaddednodeinfo(const UniValue& params, bool fHelp); extern UniValue getnettotals(const UniValue& params, bool fHelp); extern UniValue setban(const UniValue& params, bool fHelp); extern UniValue listbanned(const UniValue& params, bool fHelp); extern UniValue clearbanned(const UniValue& params, bool fHelp); extern UniValue dumpprivkey(const UniValue& params, bool fHelp); // in rpcdump.cpp extern UniValue importprivkey(const UniValue& params, bool fHelp); extern UniValue importaddress(const UniValue& params, bool fHelp); extern UniValue dumpwallet(const UniValue& params, bool fHelp); extern UniValue importwallet(const UniValue& params, bool fHelp); extern UniValue bip38encrypt(const UniValue& params, bool fHelp); extern UniValue bip38decrypt(const UniValue& params, bool fHelp); extern UniValue getgenerate(const UniValue& params, bool fHelp); // in rpcmining.cpp extern UniValue setgenerate(const UniValue& params, bool fHelp); extern UniValue getnetworkhashps(const UniValue& params, bool fHelp); extern UniValue gethashespersec(const UniValue& params, bool fHelp); extern UniValue getmininginfo(const UniValue& params, bool fHelp); extern UniValue prioritisetransaction(const UniValue& params, bool fHelp); extern UniValue getblocktemplate(const UniValue& params, bool fHelp); extern UniValue submitblock(const UniValue& params, bool fHelp); extern UniValue estimatefee(const UniValue& params, bool fHelp); extern UniValue estimatepriority(const UniValue& params, bool fHelp); extern UniValue getnewaddress(const UniValue& params, bool fHelp); // in rpcwallet.cpp extern UniValue getaccountaddress(const UniValue& params, bool fHelp); extern UniValue getrawchangeaddress(const UniValue& params, bool fHelp); extern UniValue setaccount(const UniValue& params, bool fHelp); extern UniValue getaccount(const UniValue& params, bool fHelp); extern UniValue getaddressesbyaccount(const UniValue& params, bool fHelp); extern UniValue sendtoaddress(const UniValue& params, bool fHelp); extern UniValue sendtoaddressix(const UniValue& params, bool fHelp); extern UniValue signmessage(const UniValue& params, bool fHelp); extern UniValue getreceivedbyaddress(const UniValue& params, bool fHelp); extern UniValue getreceivedbyaccount(const UniValue& params, bool fHelp); extern UniValue getbalance(const UniValue& params, bool fHelp); extern UniValue getunconfirmedbalance(const UniValue& params, bool fHelp); extern UniValue movecmd(const UniValue& params, bool fHelp); extern UniValue sendfrom(const UniValue& params, bool fHelp); extern UniValue sendmany(const UniValue& params, bool fHelp); extern UniValue addmultisigaddress(const UniValue& params, bool fHelp); extern UniValue listreceivedbyaddress(const UniValue& params, bool fHelp); extern UniValue listreceivedbyaccount(const UniValue& params, bool fHelp); extern UniValue listtransactions(const UniValue& params, bool fHelp); extern UniValue listaddressgroupings(const UniValue& params, bool fHelp); extern UniValue listaddressbalances(const UniValue& params, bool fHelp); extern UniValue listaccounts(const UniValue& params, bool fHelp); extern UniValue listsinceblock(const UniValue& params, bool fHelp); extern UniValue gettransaction(const UniValue& params, bool fHelp); extern UniValue backupwallet(const UniValue& params, bool fHelp); extern UniValue keypoolrefill(const UniValue& params, bool fHelp); extern UniValue walletpassphrase(const UniValue& params, bool fHelp); extern UniValue walletpassphrasechange(const UniValue& params, bool fHelp); extern UniValue walletlock(const UniValue& params, bool fHelp); extern UniValue encryptwallet(const UniValue& params, bool fHelp); extern UniValue getwalletinfo(const UniValue& params, bool fHelp); extern UniValue getblockchaininfo(const UniValue& params, bool fHelp); extern UniValue getnetworkinfo(const UniValue& params, bool fHelp); extern UniValue reservebalance(const UniValue& params, bool fHelp); extern UniValue setstakesplitthreshold(const UniValue& params, bool fHelp); extern UniValue getstakesplitthreshold(const UniValue& params, bool fHelp); extern UniValue multisend(const UniValue& params, bool fHelp); extern UniValue autocombinerewards(const UniValue& params, bool fHelp); extern UniValue getzerocoinbalance(const UniValue& params, bool fHelp); extern UniValue listmintedzerocoins(const UniValue& params, bool fHelp); extern UniValue listspentzerocoins(const UniValue& params, bool fHelp); extern UniValue listzerocoinamounts(const UniValue& params, bool fHelp); extern UniValue mintzerocoin(const UniValue& params, bool fHelp); extern UniValue spendzerocoin(const UniValue& params, bool fHelp); extern UniValue resetmintzerocoin(const UniValue& params, bool fHelp); extern UniValue resetspentzerocoin(const UniValue& params, bool fHelp); extern UniValue getarchivedzerocoin(const UniValue& params, bool fHelp); extern UniValue importzerocoins(const UniValue& params, bool fHelp); extern UniValue exportzerocoins(const UniValue& params, bool fHelp); extern UniValue reconsiderzerocoins(const UniValue& params, bool fHelp); extern UniValue getspentzerocoinamount(const UniValue& params, bool fHelp); extern UniValue setzpivseed(const UniValue& params, bool fHelp); extern UniValue getzpivseed(const UniValue& params, bool fHelp); extern UniValue generatemintlist(const UniValue& params, bool fHelp); extern UniValue searchdzpiv(const UniValue& params, bool fHelp); extern UniValue dzpivstate(const UniValue& params, bool fHelp); extern UniValue getunlockstate(const UniValue &params, bool fHelp); extern UniValue getrawtransaction(const UniValue& params, bool fHelp); // in rcprawtransaction.cpp extern UniValue listunspent(const UniValue& params, bool fHelp); extern UniValue lockunspent(const UniValue& params, bool fHelp); extern UniValue listlockunspent(const UniValue& params, bool fHelp); extern UniValue createrawtransaction(const UniValue& params, bool fHelp); extern UniValue decoderawtransaction(const UniValue& params, bool fHelp); extern UniValue decodescript(const UniValue& params, bool fHelp); extern UniValue signrawtransaction(const UniValue& params, bool fHelp); extern UniValue sendrawtransaction(const UniValue& params, bool fHelp); extern UniValue findserial(const UniValue& params, bool fHelp); // in rpcblockchain.cpp extern UniValue getblockcount(const UniValue& params, bool fHelp); extern UniValue getbestblockhash(const UniValue& params, bool fHelp); extern UniValue getdifficulty(const UniValue& params, bool fHelp); extern UniValue settxfee(const UniValue& params, bool fHelp); extern UniValue getmempoolinfo(const UniValue& params, bool fHelp); extern UniValue getrawmempool(const UniValue& params, bool fHelp); extern UniValue getblockhash(const UniValue& params, bool fHelp); extern UniValue getblock(const UniValue& params, bool fHelp); extern UniValue getblockheader(const UniValue& params, bool fHelp); extern UniValue getfeeinfo(const UniValue& params, bool fHelp); extern UniValue gettxoutsetinfo(const UniValue& params, bool fHelp); extern UniValue gettxout(const UniValue& params, bool fHelp); extern UniValue verifychain(const UniValue& params, bool fHelp); extern UniValue getchaintips(const UniValue& params, bool fHelp); extern UniValue invalidateblock(const UniValue& params, bool fHelp); extern UniValue reconsiderblock(const UniValue& params, bool fHelp); extern UniValue getaccumulatorvalues(const UniValue& params, bool fHelp); extern UniValue getpoolinfo(const UniValue& params, bool fHelp); // in rpcGridnode.cpp extern UniValue masternode(const UniValue& params, bool fHelp); // deprecated only left in for legacy support extern UniValue gridnode(const UniValue& params, bool fHelp); extern UniValue listgridnodes(const UniValue& params, bool fHelp); extern UniValue getgridnodecount(const UniValue& params, bool fHelp); extern UniValue creategridnodebroadcast(const UniValue& params, bool fHelp); extern UniValue decodegridnodebroadcast(const UniValue& params, bool fHelp); extern UniValue relaygridnodebroadcast(const UniValue& params, bool fHelp); extern UniValue gridnodeconnect(const UniValue& params, bool fHelp); extern UniValue gridnodecurrent(const UniValue& params, bool fHelp); extern UniValue gridnodedebug(const UniValue& params, bool fHelp); extern UniValue startgridnode(const UniValue& params, bool fHelp); extern UniValue creategridnodekey(const UniValue& params, bool fHelp); extern UniValue getgridnodeoutputs(const UniValue& params, bool fHelp); extern UniValue listgridnodeconf(const UniValue& params, bool fHelp); extern UniValue getgridnodestatus(const UniValue& params, bool fHelp); extern UniValue getgridnodewinners(const UniValue& params, bool fHelp); extern UniValue getgridnodescores(const UniValue& params, bool fHelp); extern UniValue gnbudget(const UniValue& params, bool fHelp); // in rpcgridnode-budget.cpp extern UniValue preparebudget(const UniValue& params, bool fHelp); extern UniValue submitbudget(const UniValue& params, bool fHelp); extern UniValue gnbudgetvote(const UniValue& params, bool fHelp); extern UniValue getbudgetvotes(const UniValue& params, bool fHelp); extern UniValue getnextsuperblock(const UniValue& params, bool fHelp); extern UniValue getbudgetprojection(const UniValue& params, bool fHelp); extern UniValue getbudgetinfo(const UniValue& params, bool fHelp); extern UniValue gnbudgetrawvote(const UniValue& params, bool fHelp); extern UniValue gnfinalbudget(const UniValue& params, bool fHelp); extern UniValue checkbudgets(const UniValue& params, bool fHelp); extern UniValue getinfo(const UniValue& params, bool fHelp); // in rpcmisc.cpp extern UniValue getbootstrappinginfo(const UniValue& params, bool fHelp); extern UniValue getfrontendinfo(const UniValue& params, bool fHelp); extern UniValue gnsync(const UniValue& params, bool fHelp); extern UniValue spork(const UniValue& params, bool fHelp); extern UniValue validateaddress(const UniValue& params, bool fHelp); extern UniValue createmultisig(const UniValue& params, bool fHelp); extern UniValue verifymessage(const UniValue& params, bool fHelp); extern UniValue setmocktime(const UniValue& params, bool fHelp); extern UniValue getstakingstatus(const UniValue& params, bool fHelp); extern UniValue sendalert(const UniValue& params, bool fHelp); extern UniValue getdatadirectory(const UniValue& params, bool fHelp); bool StartRPC(); void InterruptRPC(); void StopRPC(); std::string JSONRPCExecBatch(const UniValue& vReq); #endif // BITCOIN_RPCSERVER_H
fd42e8aa0b31fa9ceba3792c303cae95933f83a0
10d57e1e8eeb614259188bee4526a6be14e16624
/experiments/testPCM.cpp
68870bee7d85eef36f5b7bfe04000487a76c6147
[]
no_license
JanzenLiu/ByteSlice2
1d4bc89a4a01d579543ea4ad584ebd791bfe5f27
2c741e131836b324173be52f7b8e697170cb2bda
refs/heads/master
2021-01-01T06:57:36.658110
2017-07-30T07:51:26
2017-07-30T07:51:26
97,002,120
0
0
null
null
null
null
UTF-8
C++
false
false
2,065
cpp
#include <iostream> #include <cstdlib> #include "util/intel-pcm/cpucounters.h" int main(int argc, char* argv[]){ constexpr size_t sz = 100*1024*1024; // 100M int foo[sz]; PCM* pcm = PCM::getInstance(); PCM::ErrorCode status = pcm->program(); switch(status){ case PCM::Success: std::cerr << "PCM Init successful." << std::endl; break; case PCM::MSRAccessDenied: std::cerr << "Access to Intel PCM denied." << std::endl; std::cerr << "You need to run this program with admin privilege." << std::endl; exit(2); break; case PCM::PMUBusy: std::cerr << "PMU is occupied by other application." << std::endl; std::cerr << "Force reseting PMU configuration ..."; pcm->resetPMU(); pcm->cleanup(); std::cerr << "... Done" << std::endl; std::cerr << "Please rerun the program." << std::endl; exit(2); break; default: std::cerr << "Unknown PCM error. Exit." << std::endl; exit(2); break; } SystemCounterState before, after; std::cout << "Begin ..." << std::endl; before = getSystemCounterState(); for(size_t i=0; i < sz; i++){ int j = i % sz; int tmp; tmp = foo[i]; foo[i] = foo[j]; foo[j] = tmp; } std::cout << "Done." << std::endl; after = getSystemCounterState(); std::cout << "IPC, RefCycle, L2Miss, L2Hit, L2HR, Mem(R)" << std::endl; std::cout << getIPC(before, after) << ", " << getRefCycles(before, after) << ", " << getL2CacheMisses(before, after) << ", " << getL2CacheHits(before, after) << ", " << getL2CacheHitRatio(before, after) << ", " << getBytesReadFromMC(before, after) << std::endl; std::cout << "Trying to clean up ... " << std::endl; pcm->cleanup(); std::cout << "Cleanup done." << std::endl; }
5096dd8220063cc1fcb0c3194a77210675003c9d
b1b1c4018f1caa313b062a4447ac9dd175e30e16
/fcaR/inst/testfiles/set_difference_single/set_difference_single_DeepState_TestHarness.cpp
5d04144ddb04c59edc62db37da38b205074720b0
[]
no_license
akhikolla/Rcpp-TestPkgs-WebPages
a26287e3d0b0e2f444840a724336d080ebc459b9
5417e829d7a6b0b5a1c0c7852b3d8ccf0515c483
refs/heads/master
2023-05-30T22:28:51.475440
2021-06-17T09:57:18
2021-06-17T09:57:18
377,724,287
0
0
null
null
null
null
UTF-8
C++
false
false
2,551
cpp
// AUTOMATICALLY GENERATED BY RCPPDEEPSTATE PLEASE DO NOT EDIT BY HAND, INSTEAD EDIT // set_difference_single_DeepState_TestHarness_generation.cpp and set_difference_single_DeepState_TestHarness_checks.cpp #include <fstream> #include <RInside.h> #include <iostream> #include <RcppDeepState.h> #include <qs.h> #include <DeepState.hpp> S4 set_difference_single(IntegerVector xi, IntegerVector xp, NumericVector xx, IntegerVector yi, IntegerVector yp, NumericVector yx, int number); TEST(,){ RInside R; std::cout << "input starts" << std::endl; IntegerVector xi = RcppDeepState_IntegerVector(); qs::c_qsave(xi,"/home/akhila/fuzzer_packages/fuzzedpackages/fcaR/inst/testfiles/set_difference_single/inputs/xi.qs", "high", "zstd", 1, 15, true, 1); std::cout << "xi values: "<< xi << std::endl; IntegerVector xp = RcppDeepState_IntegerVector(); qs::c_qsave(xp,"/home/akhila/fuzzer_packages/fuzzedpackages/fcaR/inst/testfiles/set_difference_single/inputs/xp.qs", "high", "zstd", 1, 15, true, 1); std::cout << "xp values: "<< xp << std::endl; NumericVector xx = RcppDeepState_NumericVector(); qs::c_qsave(xx,"/home/akhila/fuzzer_packages/fuzzedpackages/fcaR/inst/testfiles/set_difference_single/inputs/xx.qs", "high", "zstd", 1, 15, true, 1); std::cout << "xx values: "<< xx << std::endl; IntegerVector yi = RcppDeepState_IntegerVector(); qs::c_qsave(yi,"/home/akhila/fuzzer_packages/fuzzedpackages/fcaR/inst/testfiles/set_difference_single/inputs/yi.qs", "high", "zstd", 1, 15, true, 1); std::cout << "yi values: "<< yi << std::endl; IntegerVector yp = RcppDeepState_IntegerVector(); qs::c_qsave(yp,"/home/akhila/fuzzer_packages/fuzzedpackages/fcaR/inst/testfiles/set_difference_single/inputs/yp.qs", "high", "zstd", 1, 15, true, 1); std::cout << "yp values: "<< yp << std::endl; NumericVector yx = RcppDeepState_NumericVector(); qs::c_qsave(yx,"/home/akhila/fuzzer_packages/fuzzedpackages/fcaR/inst/testfiles/set_difference_single/inputs/yx.qs", "high", "zstd", 1, 15, true, 1); std::cout << "yx values: "<< yx << std::endl; IntegerVector number(1); number[0] = RcppDeepState_int(); qs::c_qsave(number,"/home/akhila/fuzzer_packages/fuzzedpackages/fcaR/inst/testfiles/set_difference_single/inputs/number.qs", "high", "zstd", 1, 15, true, 1); std::cout << "number values: "<< number << std::endl; std::cout << "input ends" << std::endl; try{ set_difference_single(xi,xp,xx,yi,yp,yx,number[0]); } catch(Rcpp::exception& e){ std::cout<<"Exception Handled"<<std::endl; } }
1b3fa02d8cd3ad8139a0869b3ba612ae6df20bb7
2376e7d0c061eeb20950e79d9888cbbe497dd796
/RPGShop/Backpack.cpp
4d033bf296e4e68e4b3386c55f1ab846b302a3fa
[]
no_license
dsball/RPGShop
cf0a6a21bf1a27632c7c8878de76e287a4626a42
1071bd007aa41f2d59d59d7d18e437b0b00738da
refs/heads/master
2021-01-18T14:38:34.725662
2013-05-02T03:24:47
2013-05-02T03:24:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,152
cpp
#include "Backpack.h" //initializes linked list pointers Backpack::Backpack() { tempNode = nullptr; head = nullptr; } //prints a list of backpack contents const void Backpack::printList(const Inventory * itemList) { int choice; bool found = false; Item* current = head; cout<<left<<setw(4)<<"ID"<<setw(15)<<"Name"<<setw(4)<<"QTY\n"; cout<<string(50,'-')<<endl; while(current) { int category = current->id/16; switch(category) { case 1: cout<<left<<setw(4)<<current->id<<setw(15)<<itemList->arm[current->id%16].name<<dec<<setw(4)<<current->qty<<endl; break; case 2: cout<<left<<setw(4)<<current->id<<setw(15)<<itemList->weap[current->id%16].name<<dec<<setw(4)<<current->qty<<endl; break; case 3: cout<<left<<setw(4)<<current->id<<setw(15)<<itemList->consum[current->id%16].name<<dec<<setw(4)<<current->qty<<endl; break; default: cout<<left<<setw(4)<<current->id<<"ITEM ID ERROR, ID DOES NOT EXIST!\n"; } current = current->next; } } //outputs a formatted string containing pack contents to be appended to party save data const string Backpack::outputForSave() { string saveString; stringstream saveStream; Item* current = head; while(current && current->next) { saveStream<<hex<<current->id<<" "<<dec<<current->qty<<endl; current = current->next; } if(current) { saveStream<<hex<<current->id<<" "<<dec<<current->qty<<"!"; } getline(saveStream, saveString, '!'); return saveString; } //creates a temporary node with item ID and quantity to be added/removed Item* Backpack::makeNode(int id, int qty) { tempNode = new Item; if(!tempNode) { cout<<"failure in allocating memory."; pause(); exit(0); } tempNode->id = id; tempNode->qty = qty; tempNode->next = nullptr; tempNode->prev = nullptr; return tempNode; } //Returns the address of: the node with the ID, the closest node if not found, null if empty Item* Backpack::findNode(int id) { Item *tempNode = head; if(head) { while(tempNode->next != nullptr && tempNode->next->id <= id) { tempNode = tempNode->next; } } return tempNode; } //adds a new node or modifies/deletes an existing node depending on ID match and quantity bool Backpack::modify(Item * inputNode) { Item* tempNode = nullptr; int i = 0; if(!head) //create new head if list is empty { head = inputNode; } else { tempNode = findNode(inputNode->id); if(tempNode->id == inputNode->id) //if already in bag { if(inputNode->qty < 0) //if qty being added is negative (removing items) { if(tempNode->qty + inputNode->qty < 0) { cout<<"You don't have enough items for that!"; Sleep(500); delete inputNode; return false; } if(tempNode->qty + inputNode->qty == 0) { remove(tempNode); return true; } } tempNode->qty += inputNode->qty; //update qty } else { if(inputNode->qty < 0) { return false; } if(tempNode->id > inputNode->id) { while(tempNode->prev && tempNode->prev->id > inputNode->id) { tempNode = tempNode->prev; } } else { while(tempNode->next && tempNode->next->id < inputNode->id) { tempNode = tempNode->next; } } if(tempNode->id > inputNode->id) { inputNode->prev = tempNode->prev; inputNode->next = tempNode; tempNode->prev = inputNode; head = inputNode; } else { inputNode->next = tempNode->next; inputNode->prev = tempNode; tempNode->next = inputNode; } } } return true; } // removes a node from the list void Backpack::remove(Item * inputNode) { Item * prev = inputNode->prev; Item * next = inputNode->next; if(!prev && !next) { head = nullptr; } else if(!prev) { head = head->next; head->prev = nullptr; } else if(!next) { prev->next = nullptr; } else { prev->next = inputNode->next; next->prev = inputNode->prev; } delete inputNode; } //de-allocates dynamically assigned variables Backpack::~Backpack() { Item * current = head; cout<<"Freeing Backpack Memory"; while(head) { head = head->next; delete current; current = head; } cout<<head; }
a051b3b760b3a1a4221dc99cc3591783c9757ef5
565e85570d42a599351e513040e1bda8d05d3948
/lib/dtv-gingaplayer/test/src/player/image/location.cpp
2cea878158aa24b8ffb29dbf44948029f0d66176
[]
no_license
Hanun11/tvd
95a74b8ee8a939ba06b4d15dce99bdc548e1be7b
0d113c46014d738d87cb4db93b566d07fcbc031f
refs/heads/master
2021-12-14T19:41:15.800531
2017-05-20T19:54:40
2017-05-20T19:54:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,649
cpp
/******************************************************************************* Copyright (C) 2010, 2013 LIFIA - Facultad de Informatica - Univ. Nacional de La Plata ******************************************************************************** This file is part of DTV-gingaplayer implementation. DTV-gingaplayer is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2 of the License. DTV-gingaplayer is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. ******************************************************************************** Este archivo es parte de la implementación de DTV-gingaplayer. DTV-gingaplayer es Software Libre: Ud. puede redistribuirlo y/o modificarlo bajo los términos de la Licencia Pública General Reducida GNU como es publicada por la Free Software Foundation, según la versión 2 de la licencia. DTV-gingaplayer se distribuye esperando que resulte de utilidad, pero SIN NINGUNA GARANTÍA; ni siquiera la garantía implícita de COMERCIALIZACIÓN o ADECUACIÓN PARA ALGÚN PROPÓSITO PARTICULAR. Para más detalles, revise la Licencia Pública General Reducida GNU. Ud. debería haber recibido una copia de la Licencia Pública General Reducida GNU junto a este programa. Si no, puede verla en <http://www.gnu.org/licenses/>. *******************************************************************************/ #include "imageplayer.h" #include "../../util.h" #include "../../../../src/player/imageplayer.h" #include "../../../../src/device.h" #include "../../../../src/system.h" #include <canvas/canvas.h> class ImagePlayerLocation : public ImagePlayer { protected: std::string property() const { return "location"; }; }; TEST_F( ImagePlayerLocation, top_left ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds", canvas::Rect(0,0,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "top_left" ) ) ); } TEST_F( ImagePlayerLocation, top_right ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds",canvas::Rect(620,0,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "top_right" ) ) ); } TEST_F( ImagePlayerLocation, bottom_left ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds",canvas::Rect(0,476,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "bottom_left" ) ) ); } TEST_F( ImagePlayerLocation, bottom_right ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds",canvas::Rect(620,476,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "bottom_right" ) ) ); } TEST_F( ImagePlayerLocation, middle ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds",canvas::Rect(310,238,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "middle" ) ) ); } TEST_F( ImagePlayerLocation, top_left_dynamic ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds",canvas::Rect(310,238,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE ( setProperty( _player, "bounds", canvas::Rect(0,0,100,100) )); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "top_left" ) ) ); } TEST_F( ImagePlayerLocation, top_right_dynamic ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds", canvas::Rect(0,0,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE ( setProperty( _player, "bounds", canvas::Rect(620,0,100,100) )); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "top_right" ) ) ); } TEST_F( ImagePlayerLocation, bottom_left_dynamic ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds", canvas::Rect(0,0,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE ( setProperty( _player, "bounds", canvas::Rect(0,476,100,100) )); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "bottom_left" ) ) ); } TEST_F( ImagePlayerLocation, bottom_right_dynamic ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds", canvas::Rect(0,0,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE ( setProperty( _player, "bounds",canvas::Rect(620,476,100,100) )); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "bottom_right" ) ) ); } TEST_F( ImagePlayerLocation, middle_dynamic ) { ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds", canvas::Rect(0,0,100,100) )); ASSERT_TRUE( play(_player) ); ASSERT_TRUE ( setProperty( _player, "bounds",canvas::Rect(310,238,100,100) )); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "middle" ) ) ); } TEST_F( ImagePlayerLocation, three_players ) { canvas()->beginDraw(); ASSERT_TRUE ( setProperty( _player, "src", util::getImageName("blue.jpg") ) ); ASSERT_TRUE ( setProperty( _player, "bounds",canvas::Rect(0,0,360,288) )); ASSERT_TRUE( play( _player ) ); player::Player* _player2 = createPlayer( player::type::image ); ASSERT_TRUE ( setProperty( _player2, "src", util::getImageName("red_720_576.jpg") ) ); ASSERT_TRUE ( setProperty( _player2, "bounds",canvas::Rect(0,288,360,288) )); ASSERT_TRUE( play( _player2 ) ); player::Player* _player3 = createPlayer( player::type::image ); ASSERT_TRUE ( setProperty( _player3, "src", util::getImageName("yellow.jpg") ) ); ASSERT_TRUE ( setProperty( _player3, "bounds",canvas::Rect(360,0,360,288) )); ASSERT_TRUE( play( _player3 ) ); endDraw(); ASSERT_TRUE( compareImages( canvas(), getExpectedPath( "blue_red_yellow" ) ) ); destroyPlayer( _player2 ); destroyPlayer( _player3 ); }
2b4b0b051018aa69f24e1c4400c5bdbed5a5949a
922d5487bc18dd4d044d41d6b81cd14eb952c591
/install/include/navigator/navigatorActionFeedback.h
6b7516f8cd869e6c0c3cdf4f94af5739ede908b5
[]
no_license
hanbincho/ros_ws
21b747f115cee85a3b8a578028ac44e069721c31
d92feebd845a69bb8535e8c48592caf2b94d6497
refs/heads/master
2020-04-02T15:45:16.395227
2018-11-07T04:09:07
2018-11-07T04:09:07
149,820,985
0
0
null
null
null
null
UTF-8
C++
false
false
9,909
h
// Generated by gencpp from file navigator/navigatorActionFeedback.msg // DO NOT EDIT! #ifndef NAVIGATOR_MESSAGE_NAVIGATORACTIONFEEDBACK_H #define NAVIGATOR_MESSAGE_NAVIGATORACTIONFEEDBACK_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> #include <std_msgs/Header.h> #include <actionlib_msgs/GoalStatus.h> #include <navigator/navigatorFeedback.h> namespace navigator { template <class ContainerAllocator> struct navigatorActionFeedback_ { typedef navigatorActionFeedback_<ContainerAllocator> Type; navigatorActionFeedback_() : header() , status() , feedback() { } navigatorActionFeedback_(const ContainerAllocator& _alloc) : header(_alloc) , status(_alloc) , feedback(_alloc) { (void)_alloc; } typedef ::std_msgs::Header_<ContainerAllocator> _header_type; _header_type header; typedef ::actionlib_msgs::GoalStatus_<ContainerAllocator> _status_type; _status_type status; typedef ::navigator::navigatorFeedback_<ContainerAllocator> _feedback_type; _feedback_type feedback; typedef boost::shared_ptr< ::navigator::navigatorActionFeedback_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::navigator::navigatorActionFeedback_<ContainerAllocator> const> ConstPtr; }; // struct navigatorActionFeedback_ typedef ::navigator::navigatorActionFeedback_<std::allocator<void> > navigatorActionFeedback; typedef boost::shared_ptr< ::navigator::navigatorActionFeedback > navigatorActionFeedbackPtr; typedef boost::shared_ptr< ::navigator::navigatorActionFeedback const> navigatorActionFeedbackConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::navigator::navigatorActionFeedback_<ContainerAllocator> & v) { ros::message_operations::Printer< ::navigator::navigatorActionFeedback_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace navigator namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': True} // {'nav_msgs': ['/opt/ros/kinetic/share/nav_msgs/cmake/../msg'], 'roscpp': ['/opt/ros/kinetic/share/roscpp/cmake/../msg'], 'actionlib': ['/opt/ros/kinetic/share/actionlib/cmake/../msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'move_base_msgs': ['/opt/ros/kinetic/share/move_base_msgs/cmake/../msg'], 'navigator': ['/home/hanbin/ros_ws/devel/share/navigator/msg'], 'actionlib_msgs': ['/opt/ros/kinetic/share/actionlib_msgs/cmake/../msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::navigator::navigatorActionFeedback_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct IsFixedSize< ::navigator::navigatorActionFeedback_<ContainerAllocator> const> : FalseType { }; template <class ContainerAllocator> struct IsMessage< ::navigator::navigatorActionFeedback_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::navigator::navigatorActionFeedback_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::navigator::navigatorActionFeedback_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::navigator::navigatorActionFeedback_<ContainerAllocator> const> : TrueType { }; template<class ContainerAllocator> struct MD5Sum< ::navigator::navigatorActionFeedback_<ContainerAllocator> > { static const char* value() { return "5a6929cb3514eabf286ff2717ef7a5a4"; } static const char* value(const ::navigator::navigatorActionFeedback_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0x5a6929cb3514eabfULL; static const uint64_t static_value2 = 0x286ff2717ef7a5a4ULL; }; template<class ContainerAllocator> struct DataType< ::navigator::navigatorActionFeedback_<ContainerAllocator> > { static const char* value() { return "navigator/navigatorActionFeedback"; } static const char* value(const ::navigator::navigatorActionFeedback_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::navigator::navigatorActionFeedback_<ContainerAllocator> > { static const char* value() { return "# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\ \n\ Header header\n\ actionlib_msgs/GoalStatus status\n\ navigatorFeedback feedback\n\ \n\ ================================================================================\n\ MSG: std_msgs/Header\n\ # Standard metadata for higher-level stamped data types.\n\ # This is generally used to communicate timestamped data \n\ # in a particular coordinate frame.\n\ # \n\ # sequence ID: consecutively increasing ID \n\ uint32 seq\n\ #Two-integer timestamp that is expressed as:\n\ # * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\ # * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\ # time-handling sugar is provided by the client library\n\ time stamp\n\ #Frame this data is associated with\n\ # 0: no frame\n\ # 1: global frame\n\ string frame_id\n\ \n\ ================================================================================\n\ MSG: actionlib_msgs/GoalStatus\n\ GoalID goal_id\n\ uint8 status\n\ uint8 PENDING = 0 # The goal has yet to be processed by the action server\n\ uint8 ACTIVE = 1 # The goal is currently being processed by the action server\n\ uint8 PREEMPTED = 2 # The goal received a cancel request after it started executing\n\ # and has since completed its execution (Terminal State)\n\ uint8 SUCCEEDED = 3 # The goal was achieved successfully by the action server (Terminal State)\n\ uint8 ABORTED = 4 # The goal was aborted during execution by the action server due\n\ # to some failure (Terminal State)\n\ uint8 REJECTED = 5 # The goal was rejected by the action server without being processed,\n\ # because the goal was unattainable or invalid (Terminal State)\n\ uint8 PREEMPTING = 6 # The goal received a cancel request after it started executing\n\ # and has not yet completed execution\n\ uint8 RECALLING = 7 # The goal received a cancel request before it started executing,\n\ # but the action server has not yet confirmed that the goal is canceled\n\ uint8 RECALLED = 8 # The goal received a cancel request before it started executing\n\ # and was successfully cancelled (Terminal State)\n\ uint8 LOST = 9 # An action client can determine that a goal is LOST. This should not be\n\ # sent over the wire by an action server\n\ \n\ #Allow for the user to associate a string with GoalStatus for debugging\n\ string text\n\ \n\ \n\ ================================================================================\n\ MSG: actionlib_msgs/GoalID\n\ # The stamp should store the time at which this goal was requested.\n\ # It is used by an action server when it tries to preempt all\n\ # goals that were requested before a certain time\n\ time stamp\n\ \n\ # The id provides a way to associate feedback and\n\ # result message with specific goal requests. The id\n\ # specified must be unique.\n\ string id\n\ \n\ \n\ ================================================================================\n\ MSG: navigator/navigatorFeedback\n\ # ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======\n\ #feedback: optional; \n\ int32 fdbk\n\ \n\ "; } static const char* value(const ::navigator::navigatorActionFeedback_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::navigator::navigatorActionFeedback_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.header); stream.next(m.status); stream.next(m.feedback); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct navigatorActionFeedback_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::navigator::navigatorActionFeedback_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::navigator::navigatorActionFeedback_<ContainerAllocator>& v) { s << indent << "header: "; s << std::endl; Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header); s << indent << "status: "; s << std::endl; Printer< ::actionlib_msgs::GoalStatus_<ContainerAllocator> >::stream(s, indent + " ", v.status); s << indent << "feedback: "; s << std::endl; Printer< ::navigator::navigatorFeedback_<ContainerAllocator> >::stream(s, indent + " ", v.feedback); } }; } // namespace message_operations } // namespace ros #endif // NAVIGATOR_MESSAGE_NAVIGATORACTIONFEEDBACK_H
0ade38adc948b2f5302e68f870d8f09968365db8
ae094c1a6813235d14aa5037a62f3e7c4278b77d
/Solution136.cpp
95762148b7f1a1214fbbd920396ba0a5b1c925aa
[]
no_license
dy604/leetcodeCollection
2d1769d147b8142b4eb536101069477b169fb31b
68ca8a7a84ce0511428f38e1ce38b9febd6c0b90
refs/heads/master
2021-01-12T11:40:35.365005
2016-10-29T01:53:10
2016-10-29T01:53:10
72,258,232
0
0
null
null
null
null
UTF-8
C++
false
false
671
cpp
//题目136,Single Number 单独的数字 //题目137,Single Number II //题目260,Single Number III class Solution { public: int singleNumber(vector<int> &nums) { int res = nums[0]; for (int i=1; i<nums.size(); i++) { res ^= nums[i]; } return res; } }; class Solution { public: int singleNumber(vector<int> &nums) { for (int i=1; i<nums.size(); i++) { nums[0] ^= nums[i]; } return nums[0]; } }; class Solution { public: int singleNumber(vector<int> &nums) { return nums.size()==0 ? 0 : accumulate(nums.begin(), nums.end(), 0, bit_xor<int>()); } };
bc8669eed0eecaa59cde1f2cbfa2a13f84833fd1
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/e7/89d7a0262c9580/main.cpp
f55a42561b46836769c8d03a40f35d3cd6270c04
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
409
cpp
#include <stdio.h> #include <stdlib.h> #define POLY_CRC16 0xa001 #define INIT_CRC16 0 unsigned short checksum_crc16(unsigned char *in, int length) { register unsigned short crc, bit; // do stuff return crc; } int main( int argc, char *argv[] ) { unsigned char test[] = "abcd"; fprintf( stdout, "check '%s' of size %lu output: %u\n", "lol", sizeof test, checksum_crc16( test, sizeof test ) ); }
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
6e8e71991d9007aff36e9fbfe5249b559ccc1b00
eafae6e88ae9c25a11a218414e4e80a73de8deed
/Dependencies/Header/mysql/server/private/scope.h
b9e2e96ae5cff836a839488e924c9575cb83e827
[ "Apache-2.0", "GPL-2.0-only" ]
permissive
GabrielLins64/SimpleERP
12fdc969a8bf1a211cc48b62fac10ec601eec8c1
8a25bdab32bd58a866f429b7f541e0e0617ef2e1
refs/heads/main
2023-05-14T11:55:15.623120
2021-06-02T18:41:58
2021-06-02T18:41:58
373,289,684
0
0
Apache-2.0
2021-06-02T20:05:27
2021-06-02T20:05:26
null
UTF-8
C++
false
false
1,604
h
/* Copyright (c) 2020, MariaDB 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; version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA */ #pragma once #include <type_traits> #include <utility> namespace detail { template <typename Callable> class scope_exit { public: template <typename F> explicit scope_exit(F &&f) : function_(std::forward<F>(f)) { } scope_exit(scope_exit &&rhs) : function_(std::move(rhs.function_)), engaged_(rhs.engaged_) { rhs.release(); } scope_exit(const scope_exit &)= delete; scope_exit &operator=(scope_exit &&)= delete; scope_exit &operator=(const scope_exit &)= delete; void release() { engaged_= false; } ~scope_exit() { if (engaged_) function_(); } private: Callable function_; bool engaged_= true; }; } // end namespace detail template <typename Callable> detail::scope_exit<typename std::decay<Callable>::type> make_scope_exit(Callable &&f) { return detail::scope_exit<typename std::decay<Callable>::type>( std::forward<Callable>(f)); }
b22b2446ba24f8091f52de02b6482f136da9a90d
3efc50ba20499cc9948473ee9ed2ccfce257d79a
/data/code-jam/files/2434486_hime_2692487_1_extracted_A.cpp
3fbd2f8773089a13ee694840bdb0411782ea9163
[]
no_license
arthurherbout/crypto_code_detection
7e10ed03238278690d2d9acaa90fab73e52bab86
3c9ff8a4b2e4d341a069956a6259bf9f731adfc0
refs/heads/master
2020-07-29T15:34:31.380731
2019-12-20T13:52:39
2019-12-20T13:52:39
209,857,592
9
4
null
2019-12-20T13:52:42
2019-09-20T18:35:35
C
UTF-8
C++
false
false
840
cpp
#include<cstdio> #include<cstring> #include<algorithm> #define MAXX 2000111 #define inf 0x3f3f3f3f3f3f3f3f short T,t; long long a; int n,i,j,k; int the[MAXX]; int ans; int main() { scanf("%hd",&T); for(t=1;t<=T;++t) { scanf("%lld %d",&a,&n); for(i=0;i<n;++i) scanf("%d",the+i); printf("Case #%hd: ",t); std::sort(the,the+n); if(a>the[n-1]) { puts("0"); continue; } if(a==1ll) { printf("%d\n",n); continue; } ans=n; for(j=i=0;i<n;++i) { while(a<=the[i]) { a+=a-1; ++j; } a+=the[i]; ans=std::min(ans,j+n-i-1); } printf("%d\n",ans); } return 0; }
61e6bc08a41d93ef9872b4b10661019d13ccae67
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/af/aec20b9b75bec9/main.cpp
ad31e4dbe5f42c56df1674fbc8d56bbd9efb9e49
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
202
cpp
#include <memory> #include <iostream> #include <utility> struct basic { std::unique_ptr<int> x; }; int main() { std::cout << std::boolalpha << noexcept(basic(std::declval<basic>())) << '\n'; }
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
3a9b9bc71892ddcebc08cfd946f37903408a2f7e
315255eea20bf6fd95b9b7865d5afafbd3f2f138
/sources/src/dialogdata.h
7c13fda831f4780180bab18af16e54eaf4001785
[]
no_license
lucytronad/Depth-Hand-Recognition
d799630f836a1a094a6ec36aa5f4399805e6ace9
7d29b9971b6ea6961d7d1f0cacd755c1c1f66dca
refs/heads/master
2023-03-10T03:00:27.605861
2013-06-14T17:17:43
2013-06-14T17:17:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
291
h
#ifndef DIALOGDATA_H #define DIALOGDATA_H #include <QDialog> namespace Ui { class DialogData; } class DialogData : public QDialog { Q_OBJECT public: explicit DialogData(QWidget *parent = 0); ~DialogData(); private: Ui::DialogData *ui; }; #endif // DIALOGDATA_H
262c827accc669edb04790f623c85a7fec7338b6
573b7f2b79b6fb8b21b40985f7639bc003b60f7e
/SDK/BP_MapWidgetMapMarkerRequestFOB_parameters.h
aa5f15fd8f8c3f79af7812e64103ab7b431ce8c5
[]
no_license
AlexzDK/SquadSDK2021
8d4c29486922fed3ba8451680d823a04a7b7fc44
cdce732ad4713b6d7f668f8b9c39e160035efb34
refs/heads/main
2023-02-21T02:52:15.634663
2021-01-23T23:28:57
2021-01-23T23:28:57
332,328,796
4
0
null
null
null
null
UTF-8
C++
false
false
2,908
h
#pragma once // Name: Squad, Version: 13-01-2021 #ifdef _MSC_VER #pragma pack(push, 0x01) #endif /*!!HELPER_DEF!!*/ /*!!DEFINE!!*/ namespace UFT { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.Update Size struct UBP_MapWidgetMapMarkerRequestFOB_C_Update_Size_Params { }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.Update Radius Visibility struct UBP_MapWidgetMapMarkerRequestFOB_C_Update_Radius_Visibility_Params { }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.OnTextureChanged struct UBP_MapWidgetMapMarkerRequestFOB_C_OnTextureChanged_Params { }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.OnTintChanged struct UBP_MapWidgetMapMarkerRequestFOB_C_OnTintChanged_Params { }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.OnRightClicked struct UBP_MapWidgetMapMarkerRequestFOB_C_OnRightClicked_Params { }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.Construct struct UBP_MapWidgetMapMarkerRequestFOB_C_Construct_Params { }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.Tick struct UBP_MapWidgetMapMarkerRequestFOB_C_Tick_Params { struct FGeometry MyGeometry; // (BlueprintVisible, BlueprintReadOnly, Parm, IsPlainOldData, NoDestructor) float InDeltaTime; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.OnScaleChanged struct UBP_MapWidgetMapMarkerRequestFOB_C_OnScaleChanged_Params { float UniformScale; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.Destruct struct UBP_MapWidgetMapMarkerRequestFOB_C_Destruct_Params { }; // Function BP_MapWidgetMapMarkerRequestFOB.BP_MapWidgetMapMarkerRequestFOB_C.ExecuteUbergraph_BP_MapWidgetMapMarkerRequestFOB struct UBP_MapWidgetMapMarkerRequestFOB_C_ExecuteUbergraph_BP_MapWidgetMapMarkerRequestFOB_Params { int EntryPoint; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
fe7b5457bf4aa8caca7a178ae44c31f0c5d361a0
d9a1c1f8be52fec565650042f60466aa14d91db5
/include/shadergraph/block/Multiply.h
7652c5070fb066361502ac073d5fd4d969447505
[ "MIT" ]
permissive
xzrunner/shadergraph
aee3bb20f7ba002414ccd948beb8e378d196f9a8
a5bf002b40738010ef4d9870f507d4faf07ba893
refs/heads/master
2021-06-23T08:44:08.987696
2020-11-20T23:57:21
2020-11-20T23:57:21
146,755,500
1
0
null
null
null
null
UTF-8
C++
false
false
1,472
h
#pragma once #include "shadergraph/Block.h" #include "shadergraph/BlockHelper.h" #include "shadergraph/ParserUtility.h" #include "shadergraph/ValueImpl.h" #include <cpputil/StringHelper.h> namespace shadergraph { namespace block { class Multiply : public Block { public: Multiply() { SetupPorts({ { VarType::Dynamic, "a" }, { VarType::Dynamic, "b" } }, { { VarType::Dynamic, "mul" } }); m_default_in_vals[0] = Variant(VarType::Int, "", std::make_shared<IntVal>(1)); m_default_in_vals[1] = Variant(VarType::Int, "", std::make_shared<IntVal>(1)); } virtual std::string GetBody(const Evaluator& eval) const override { std::string ret; for (int i = 0, n = m_imports.size(); i < n; ++i) { ret.push_back('#'); ret.push_back(static_cast<char>('a' + i)); ret.push_back('#'); if (i != n - 1) { ret += " * "; } } auto type = eval.QueryRealType(&m_exports[0].var.type); if (type == VarType::Invalid || type == VarType::Dynamic) { type = BlockHelper::ResolveBinOpRetType(eval, m_imports[0], m_imports[1]); } assert(type != VarType::Invalid); return cpputil::StringHelper::Format("%s #mul# = %s;", TypeToString(type).c_str(), ret.c_str() ); } RTTR_ENABLE(Block) }; // Multiply } }
1ea542a3bb4c4fe712fe741a79554517e644a643
6ae0b247bee94bd1f1f2831dbb13a62421155bc9
/Model/Circuit/Circuit.cpp
88bd53ddc672dea155957af9ff9c885615a8814e
[]
no_license
daniel1302/electrical-circuit-simulator
87a0a09248e48425fbe9f8fb65e72a42b26981c3
2f7ec95119ddb39cde47a21fcf700c8eddd4f6fe
refs/heads/master
2021-03-24T13:06:05.426466
2018-01-14T22:17:13
2018-01-14T22:17:13
111,435,545
0
0
null
null
null
null
UTF-8
C++
false
false
1,149
cpp
#include <Model/Math/GaussianElimination.h> #include "Circuit.h" void Circuit::insertElement(Element *element) { element->modifyCircuit(this); } void Circuit::modifyG(uint32_t row, uint32_t col, double val) { this->modifyMatrix(& this->g, row, col, val); } void Circuit::modifyI(uint32_t row, double val) { this->modifyMatrix(& this->i, row, 0, val); } void Circuit::modifyMatrix( Matrix<double> *matrix, uint32_t row, uint32_t col, double val ) { val = val + matrix->get(row, col); matrix->insert(row, col, val); } void Circuit::ground(uint32_t node) { this->i.removeRow(node); this->g.removeCol(node); this->g.removeRow(node); } std::string Circuit::print() { stringstream out; out << "Conductance matrix: "<<endl <<this->g.print()<<endl << "Current matrix:"<<endl <<this->i.print()<<endl; return out.str(); } void Circuit::calculate(Matrix<double> *matrix) { GaussianElimination<double> gaussianElimination(&this->g, &this->i); gaussianElimination.reduce(); gaussianElimination.calculate(matrix); }
9bda59028bcec03206e584aeea511552a52bb1b8
628b986a119870da0e5f8ca153e67883f9f5623c
/ConsoleApplication1/ConsoleApplication1/Stack.cpp
ab8653ca2711634f318823fca0d995ed7d70cf1e
[]
no_license
mahmood0130790/DS
0f78b8cacdb64a0a584f66d5b1691f6b78f3f029
3a820cae8bcbae22a3da60a9116bbdc88f334c4e
refs/heads/master
2022-11-27T00:27:50.829996
2020-07-06T10:42:50
2020-07-06T10:42:50
277,214,516
0
0
null
null
null
null
UTF-8
C++
false
false
793
cpp
#include "Stack.h" #include <iostream> using namespace std; void Stack::push(int value) { Node* node_inair =new Node(value) ; node_inair->node_ptr=head; head =node_inair ; stack_size++; } void Stack::pop() { int value; if (stack_size!=0) { Node* node_inair = head; if (stack_size == 1) { head = NULL; head = nullptr; node_inair = NULL; node_inair = nullptr; stack_size--; } else { value = head->node_value; node_inair= head->node_ptr; delete head; head = node_inair;stack_size--; } } } int Stack::get_size() { return stack_size; } Stack::Stack() { head = nullptr; stack_size = 0; } Stack::~Stack() { Node* node_inair = head; while (stack_size!=0) { node_inair = head->node_ptr; delete head; head = node_inair; stack_size--; } }
c23349c7e8c5b99f8faeb0753508619d9578c744
bef1f993c86a56c57a9b4c13bacbeb7678f053a1
/Chushizhi.cpp
1b6ce08b7d59cffa8102461a3245f96c7628e283
[]
no_license
NeilZhy/CplusPractice
ac4d07e1488784163349d64449d6d3d55498e2fa
b3d485d93bc9bee512a4ccbe329411babcfe13ff
refs/heads/master
2021-01-11T12:29:35.894438
2017-09-02T03:44:55
2017-09-02T03:44:55
79,346,954
1
0
null
null
null
null
UTF-8
C++
false
false
243
cpp
#define _CRT_SECURE_NO_WARNINGS 1 #include<iostream> #include<windows.h> using namespace std; int main() { int *p; p = new int(99); if (!p) { cout << "error"; return 1; } cout << *p << endl; delete p; system("pause"); return 0; }
63265d2271699ee2e9f57919adf3e7e53fe74be0
85e7114ea63a080c1b9b0579e66c7a2d126cffec
/SDK/SoT_BP_hair_col_red_04_over_Desc_parameters.hpp
eeded9eee27120efe48c817143fca6de42af8af6
[]
no_license
EO-Zanzo/SeaOfThieves-Hack
97094307d943c2b8e2af071ba777a000cf1369c2
d8e2a77b1553154e1d911a3e0c4e68ff1c02ee51
refs/heads/master
2020-04-02T14:18:24.844616
2018-10-24T15:02:43
2018-10-24T15:02:43
154,519,316
0
2
null
null
null
null
UTF-8
C++
false
false
382
hpp
#pragma once // Sea of Thieves (1.2.6) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "SoT_BP_hair_col_red_04_over_Desc_classes.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- } #ifdef _MSC_VER #pragma pack(pop) #endif
0645171c51d34b9441e55e3bd37d097158f992c1
36701a7bbf9ab496ece446c4f99dc46829bdc6a8
/arc032/a.cpp
4acc123735907b395cf45e68d47d70a7eef0db73
[]
no_license
yyatsuo/atcoder
de83ec74cb30fac10e80701871fa97233823d8d8
d9dc1734514e0235b606bf9195373de34c49e695
refs/heads/master
2022-03-04T02:40:32.878692
2022-02-27T13:13:05
2022-02-27T13:13:05
182,335,971
1
0
null
null
null
null
UTF-8
C++
false
false
804
cpp
#include <bits/stdc++.h> #define INF INT_MAX #define ll long long #define ull unsigned long long #define rep(i,n) for(ll i=0; i<n; ++i) #define FOR(i, s, e) for(ll i=s; i<e; ++i) #define MOD 1000000007 using namespace std; template<class T> inline bool chmin(T& a, T b) { if(a>b) {a=b; return true;} return false;} template<class T> inline bool chmax(T& a, T b) { if(a<b) {a=b; return true;} return false;} bool isPrime(int N) { if(N == 1) return false; if(N == 2) return true; if(N%2 == 0) return false; for(int i=3; i<sqrt(N); i+=2) { if(N%i == 0) return false; } return true; } int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; int n = 0; for(int i=1; i<=N; ++i) { n+=i; } if(isPrime(n)) cout << "WANWAN" << endl; else cout << "BOWWOW" << endl; }
6a3f96ef2246e7c273c7bfaef84880aaf8f504d7
7ccc6fef4a5f98f5e6d0c8f73e85795bb6dc63f3
/Sources/Internal/Render/DX12/SwapChain.h
498b6e93358c490ac321b2f5f72d21fe822dcac4
[ "MIT" ]
permissive
nameless323/KiotoEngine
fe983d0caaf8b31dc873357c54bad598f0130c47
e4d7f74d4228f47aad00569c4628461dac4df198
refs/heads/master
2022-02-26T13:34:15.744514
2022-02-17T01:27:00
2022-02-17T01:27:00
91,833,499
4
2
MIT
2022-02-17T01:27:01
2017-05-19T18:16:52
C++
UTF-8
C++
false
false
3,794
h
#pragma once #include "Render/DX12/Buffers/ResourceDX12.h" #include "Render/DX12/StateDX.h" #include "Render/DX12/Texture/TextureDX12.h" #include "Dx12Helpers/d3dx12.h" namespace Kioto::Renderer { class SwapChain { public: SwapChain() = default; SwapChain(const SwapChain&) = delete; ~SwapChain() = default; SwapChain& operator= (const SwapChain&) = delete; void Init(const StateDX& state, bool isTearingSupported, uint16 width, uint16 height); void Resize(const StateDX& state, uint16 width, uint16 height); TextureHandle GetCurrentBackBufferHandle() const; TextureHandle GetDepthStencilHandle() const; UINT GetCurrentBackBufferIndex() const; HRESULT SetFullscreenState(bool fullscreen, IDXGIOutput* output); UINT GetCurrentFrameIndex() const; DXGI_FORMAT GetBackBufferFormat() const; DXGI_FORMAT GetDepthStencilFormat() const; TextureDX12* GetBackBuffer(uint8 index); TextureDX12* GetDepthStencil(); TextureDX12* GetCurrentBackBuffer(); D3D12_CPU_DESCRIPTOR_HANDLE GetCpuDescriptorHandleForHeapStart() const; D3D12_GPU_DESCRIPTOR_HANDLE GetGpuDescriptorHandleForHeapStart() const; D3D12_CPU_DESCRIPTOR_HANDLE GetCurrentBackBufferCPUHandle(const StateDX& state) const; D3D12_CPU_DESCRIPTOR_HANDLE GetDepthStencilCPUHandle() const; void Present(); // proceed to nex. void ProceedToNextFrame(); private: const DXGI_FORMAT mBackBufferFormat = DXGI_FORMAT_R8G8B8A8_UNORM; const DXGI_FORMAT mDepthStencilFormat = DXGI_FORMAT_D24_UNORM_S8_UINT; UINT mWidth = -1; UINT mHeight = -1; UINT mCurrentFrameIndex = 0; bool mIsSwapChainChainInFullScreen = false; bool mIsTearingSupported = false; Microsoft::WRL::ComPtr<IDXGISwapChain3> mSwapChain; Microsoft::WRL::ComPtr<ID3D12DescriptorHeap> mRtvHeap; Microsoft::WRL::ComPtr<ID3D12DescriptorHeap> mDsvHeap; TextureDX12 mBackBuffers[StateDX::FrameCount]; TextureDX12 mDepthStencil; }; inline TextureHandle SwapChain::GetCurrentBackBufferHandle() const { return mBackBuffers[mCurrentFrameIndex].GetHandle(); } inline TextureHandle SwapChain::GetDepthStencilHandle() const { return mDepthStencil.GetHandle(); } inline UINT SwapChain::GetCurrentBackBufferIndex() const { return mSwapChain->GetCurrentBackBufferIndex(); } inline HRESULT SwapChain::SetFullscreenState(bool fullscreen, IDXGIOutput* output) { return mSwapChain->SetFullscreenState(fullscreen, output); } inline UINT SwapChain::GetCurrentFrameIndex() const { return mCurrentFrameIndex; } inline DXGI_FORMAT SwapChain::GetBackBufferFormat() const { return mBackBufferFormat; } inline DXGI_FORMAT SwapChain::GetDepthStencilFormat() const { return mDepthStencilFormat; } inline TextureDX12* SwapChain::GetBackBuffer(uint8 index) { return &mBackBuffers[index]; } inline TextureDX12* SwapChain::GetDepthStencil() { return &mDepthStencil; } inline TextureDX12* SwapChain::GetCurrentBackBuffer() { return &mBackBuffers[mSwapChain->GetCurrentBackBufferIndex()]; } inline D3D12_CPU_DESCRIPTOR_HANDLE SwapChain::GetCpuDescriptorHandleForHeapStart() const { return mRtvHeap->GetCPUDescriptorHandleForHeapStart(); } inline D3D12_GPU_DESCRIPTOR_HANDLE SwapChain::GetGpuDescriptorHandleForHeapStart() const { return mRtvHeap->GetGPUDescriptorHandleForHeapStart(); } inline D3D12_CPU_DESCRIPTOR_HANDLE SwapChain::GetDepthStencilCPUHandle() const { return mDsvHeap->GetCPUDescriptorHandleForHeapStart(); } inline D3D12_CPU_DESCRIPTOR_HANDLE SwapChain::GetCurrentBackBufferCPUHandle(const StateDX& state) const { CD3DX12_CPU_DESCRIPTOR_HANDLE handle(mRtvHeap->GetCPUDescriptorHandleForHeapStart()); handle.Offset(GetCurrentBackBufferIndex() * state.RtvDescriptorSize); return handle; } }
7e6fbdeb123bc798087678c0d260f547365df859
5f6297e0c72da080fb0075f204d67476fb16374e
/src/main.cpp
f41429445b65541a299647b815b2125f86c315c2
[]
no_license
Fat83dotcom/SERVIDORESP32
416dd776ce63739f6f60941cb8cfb72013065e20
72acac7a14e6e4919ca215581078dda3b5c1eb0d
refs/heads/master
2023-06-13T08:05:23.398160
2021-06-27T21:03:03
2021-06-27T21:03:03
380,612,644
0
0
null
null
null
null
UTF-8
C++
false
false
1,958
cpp
#include <Arduino.h> #include "Confidentials.h" #include <WiFi.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #include <Wire.h> #include <SPI.h> #define LARGURA_OLED 128 #define ALTURA_OLED 64 Adafruit_SSD1306 display (LARGURA_OLED, ALTURA_OLED, &Wire, -1); byte pinCanais[10] = {13, 12, 14, 27, 26, 25, 33, 32, 35, 34}; #define mtIDENTIFICAR 0 #define mtGET 1 #define mtPOST 2 #define mtOUTRO 3 WiFiServer server(80); WiFiClient client; unsigned long delayClose; void setup() { Serial.begin(9600); for (byte i = 0; i < 10; i++) { pinMode(pinCanais[i], OUTPUT); } if (!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) { Serial.println(F("Endereço do visor não encontrado!!! Por favor, reinicie o MCu.")); while (true); } display.clearDisplay(); display.display(); display.setTextSize(1); display.setTextColor(WHITE); display.setCursor(14, 17); display.print(F("Conectando em ")); display.print(ssid); display.println("..."); display.display(); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); display.print("."); display.display(); } display.clearDisplay(); display.setCursor(14, 17); display.println("WiFi conectado!"); display.setCursor(14, 27); display.println("Endereco IP: "); display.setCursor(14, 37); display.print(WiFi.localIP()); display.display(); server.begin(); } void run() { client = server.available(); if (client) { display.setCursor(14, 17); display.print(F("req")); display.display(); byte metodo = mtIDENTIFICAR; String url; unsigned long tamanhoconteudo = 0; String linha = ""; while (client.connected()) { if () { /* code */ } } } } void loop() { }
9fe68f6a02e5635fc108e3534057caff5e5b232c
43bc69ba5cc8eb79ce77fcb16e938f5758c889dd
/GeneratedFiles/ui_uploadfileoptions.h
a533040d01439b6c040676aa0dd5144dd79c5feb
[]
no_license
styleandsubstance/SecureMedMail-Portable
cc048fddee473b7d1575b02a1e40530ac01ec1a7
d231df57731b93082146d5af2e96b70755a81660
refs/heads/master
2022-11-28T00:16:15.851835
2020-08-11T03:49:20
2020-08-11T03:49:20
286,638,467
0
0
null
null
null
null
UTF-8
C++
false
false
6,334
h
/******************************************************************************** ** Form generated from reading UI file 'uploadfileoptions.ui' ** ** Created by: Qt User Interface Compiler version 5.4.1 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_UPLOADFILEOPTIONS_H #define UI_UPLOADFILEOPTIONS_H #include <QtCore/QVariant> #include <QtWidgets/QAction> #include <QtWidgets/QApplication> #include <QtWidgets/QButtonGroup> #include <QtWidgets/QCheckBox> #include <QtWidgets/QComboBox> #include <QtWidgets/QHeaderView> #include <QtWidgets/QLabel> #include <QtWidgets/QLineEdit> #include <QtWidgets/QPlainTextEdit> #include <QtWidgets/QSpinBox> #include <QtWidgets/QWidget> QT_BEGIN_NAMESPACE class Ui_UploadFileOptions { public: QLabel *label; QLineEdit *passwordTextBox; QLabel *label_2; QLineEdit *confirmPasswordTextBox; QLabel *label_3; QPlainTextEdit *descriptionTextBox; QComboBox *downloadAllowedForComboBox; QComboBox *deletionComboBox; QComboBox *billingComboBox; QCheckBox *notifyUploaderAfterDownloadCheckbox; QLabel *label_4; QLabel *label_5; QLabel *label_6; QLabel *label_7; QSpinBox *deletionValue; QLabel *deletionLabel; void setupUi(QWidget *UploadFileOptions) { if (UploadFileOptions->objectName().isEmpty()) UploadFileOptions->setObjectName(QStringLiteral("UploadFileOptions")); UploadFileOptions->resize(572, 260); label = new QLabel(UploadFileOptions); label->setObjectName(QStringLiteral("label")); label->setGeometry(QRect(20, 10, 61, 16)); passwordTextBox = new QLineEdit(UploadFileOptions); passwordTextBox->setObjectName(QStringLiteral("passwordTextBox")); passwordTextBox->setGeometry(QRect(120, 10, 151, 20)); passwordTextBox->setEchoMode(QLineEdit::Password); label_2 = new QLabel(UploadFileOptions); label_2->setObjectName(QStringLiteral("label_2")); label_2->setGeometry(QRect(20, 40, 101, 20)); confirmPasswordTextBox = new QLineEdit(UploadFileOptions); confirmPasswordTextBox->setObjectName(QStringLiteral("confirmPasswordTextBox")); confirmPasswordTextBox->setGeometry(QRect(120, 40, 151, 20)); confirmPasswordTextBox->setEchoMode(QLineEdit::Password); label_3 = new QLabel(UploadFileOptions); label_3->setObjectName(QStringLiteral("label_3")); label_3->setGeometry(QRect(20, 80, 71, 20)); descriptionTextBox = new QPlainTextEdit(UploadFileOptions); descriptionTextBox->setObjectName(QStringLiteral("descriptionTextBox")); descriptionTextBox->setGeometry(QRect(120, 70, 251, 41)); downloadAllowedForComboBox = new QComboBox(UploadFileOptions); downloadAllowedForComboBox->setObjectName(QStringLiteral("downloadAllowedForComboBox")); downloadAllowedForComboBox->setGeometry(QRect(120, 120, 251, 22)); deletionComboBox = new QComboBox(UploadFileOptions); deletionComboBox->setObjectName(QStringLiteral("deletionComboBox")); deletionComboBox->setGeometry(QRect(120, 160, 251, 22)); billingComboBox = new QComboBox(UploadFileOptions); billingComboBox->setObjectName(QStringLiteral("billingComboBox")); billingComboBox->setGeometry(QRect(120, 200, 251, 22)); notifyUploaderAfterDownloadCheckbox = new QCheckBox(UploadFileOptions); notifyUploaderAfterDownloadCheckbox->setObjectName(QStringLiteral("notifyUploaderAfterDownloadCheckbox")); notifyUploaderAfterDownloadCheckbox->setGeometry(QRect(120, 240, 16, 17)); label_4 = new QLabel(UploadFileOptions); label_4->setObjectName(QStringLiteral("label_4")); label_4->setGeometry(QRect(20, 114, 81, 31)); label_4->setWordWrap(true); label_5 = new QLabel(UploadFileOptions); label_5->setObjectName(QStringLiteral("label_5")); label_5->setGeometry(QRect(20, 162, 81, 20)); label_6 = new QLabel(UploadFileOptions); label_6->setObjectName(QStringLiteral("label_6")); label_6->setGeometry(QRect(20, 193, 81, 31)); label_6->setWordWrap(true); label_7 = new QLabel(UploadFileOptions); label_7->setObjectName(QStringLiteral("label_7")); label_7->setGeometry(QRect(20, 230, 81, 31)); label_7->setWordWrap(true); deletionValue = new QSpinBox(UploadFileOptions); deletionValue->setObjectName(QStringLiteral("deletionValue")); deletionValue->setEnabled(true); deletionValue->setGeometry(QRect(390, 160, 42, 22)); deletionValue->setValue(1); deletionLabel = new QLabel(UploadFileOptions); deletionLabel->setObjectName(QStringLiteral("deletionLabel")); deletionLabel->setGeometry(QRect(440, 164, 61, 16)); retranslateUi(UploadFileOptions); QMetaObject::connectSlotsByName(UploadFileOptions); } // setupUi void retranslateUi(QWidget *UploadFileOptions) { UploadFileOptions->setWindowTitle(QApplication::translate("UploadFileOptions", "Form", 0)); label->setText(QApplication::translate("UploadFileOptions", "Password:", 0)); label_2->setText(QApplication::translate("UploadFileOptions", "Confirm Password:", 0)); label_3->setText(QApplication::translate("UploadFileOptions", "Description:", 0)); notifyUploaderAfterDownloadCheckbox->setText(QString()); label_4->setText(QApplication::translate("UploadFileOptions", "Downloads are allowed for:", 0)); label_5->setText(QApplication::translate("UploadFileOptions", "Delete this file:", 0)); label_6->setText(QApplication::translate("UploadFileOptions", "Bill downloads of this file to:", 0)); label_7->setText(QApplication::translate("UploadFileOptions", "E-mail me after file downloaded:", 0)); deletionLabel->setText(QString()); } // retranslateUi }; namespace Ui { class UploadFileOptions: public Ui_UploadFileOptions {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_UPLOADFILEOPTIONS_H
d943b8a7e3a04ca7bea8f9f7ec6a4394dc3d97e5
1159ccdb0f58d655e180b3f0c166bec3f70be723
/61-68/68_shareParentTree.cpp
5eee31f95b14aab68fca31f4088fad1419f2b51c
[ "MIT" ]
permissive
fuzongjian/sword_offer_vs
6bfff320d840f16f88c944c260115d73654f53f1
d8530f1455c38e16040b39b3e673b52910106f44
refs/heads/master
2022-11-15T14:16:41.774023
2020-06-29T14:57:55
2020-06-29T14:57:55
258,370,085
0
0
null
null
null
null
UTF-8
C++
false
false
5,420
cpp
#include <string> #include <list> #include <vector> using namespace std; /* 题目:68 树中两个节点的最低公共祖先 输入两个树接地那,求他们最低公共祖先 */ // define struct TreeNode { int m_nValue; std::vector<TreeNode*> m_vChildren; }; class List { public: static TreeNode* createTreeNode(int value) { TreeNode * pNode = new TreeNode(); pNode->m_nValue = value; return pNode; } static void connectTreeNodes(TreeNode* pParent, TreeNode* pChild) { if(pParent != nullptr) pParent->m_vChildren.push_back(pChild); } static void printTreeNode(const TreeNode* pNode) { if(pNode != nullptr) { printf("value of this node is: %d.\n", pNode->m_nValue); printf("its children is as the following:\n"); std::vector<TreeNode*>::const_iterator i = pNode->m_vChildren.begin(); while(i < pNode->m_vChildren.end()) { if(*i != nullptr) printf("%d\t", (*i)->m_nValue); } printf("\n"); } else { printf("this node is nullptr.\n"); } printf("\n"); } static void printTree(const TreeNode* pRoot) { printTreeNode(pRoot); if(pRoot != nullptr) { std::vector<TreeNode*>::const_iterator i = pRoot->m_vChildren.begin(); while(i < pRoot->m_vChildren.end()) { printTree(*i); ++i; } } } static void destroyTree(TreeNode* pRoot) { if(pRoot != nullptr) { std::vector<TreeNode*>::iterator i = pRoot->m_vChildren.begin(); while(i < pRoot->m_vChildren.end()) { destroyTree(*i); ++ i; } delete pRoot; } } }; // method bool getNodePath(const TreeNode* pRoot, const TreeNode* pNode, list<const TreeNode*>& path) { if(pRoot == pNode) return true; path.push_back(pRoot); bool found = false; vector<TreeNode*>::const_iterator i = pRoot->m_vChildren.begin(); while(!found && i < pRoot->m_vChildren.end()) { found = getNodePath(*i, pNode, path); ++i; } if(!found) path.pop_back(); return found; } const TreeNode* getLastCommonNode(const list<const TreeNode*>& path1, const list<const TreeNode*>& path2) { list<const TreeNode*>::const_iterator iterator1 = path1.begin(); list<const TreeNode*>::const_iterator iterator2 = path2.begin(); const TreeNode* pLast = nullptr; while(iterator1 != path1.end() && iterator2 != path2.end()) { if(*iterator1 == *iterator2) pLast = *iterator1; iterator1++; iterator2++; } return pLast; } const TreeNode* getLastCommonParent(const TreeNode* pRoot, const TreeNode* pNode1, const TreeNode* pNode2) { if(pRoot == nullptr || pNode1 == nullptr || pNode2 == nullptr) return nullptr; list<const TreeNode*> path1; getNodePath(pRoot, pNode1, path1); list<const TreeNode*> path2; getNodePath(pRoot, pNode2, path2); return getLastCommonNode(path1, path2); } // test void test(const char* testName, const TreeNode* pRoot, const TreeNode* pNode1, const TreeNode* pNode2, TreeNode* pExpected) { if(testName != nullptr) printf("%s begins: ", testName); const TreeNode* pResult = getLastCommonParent(pRoot, pNode1, pNode2); if((pExpected == nullptr && pResult == nullptr)||(pExpected != nullptr && pResult != nullptr && pResult->m_nValue == pExpected->m_nValue)) printf("passed.\n"); else printf("failed.\n"); } // 形状普通的树 // 1 // / \ // 2 3 // / \ // 4 5 // / \ / | \ // 6 7 8 9 10 void test1() { TreeNode * node1 = List::createTreeNode(1); TreeNode * node2 = List::createTreeNode(2); TreeNode * node3 = List::createTreeNode(3); TreeNode * node4 = List::createTreeNode(4); TreeNode * node5 = List::createTreeNode(5); TreeNode * node6 = List::createTreeNode(6); TreeNode * node7 = List::createTreeNode(7); TreeNode * node8 = List::createTreeNode(8); TreeNode * node9 = List::createTreeNode(9); TreeNode * node10 = List::createTreeNode(10); List::connectTreeNodes(node1, node2); List::connectTreeNodes(node1, node3); List::connectTreeNodes(node2, node4); List::connectTreeNodes(node2, node5); List::connectTreeNodes(node4, node6); List::connectTreeNodes(node4, node7); List::connectTreeNodes(node5, node8); List::connectTreeNodes(node5, node9); List::connectTreeNodes(node5, node10); test("test1", node1, node6, node8, node2); } void test2() { TreeNode* node1 = List::createTreeNode(1); TreeNode* node2 = List::createTreeNode(2); TreeNode* node3 = List::createTreeNode(3); TreeNode* node4 = List::createTreeNode(4); TreeNode* node5 = List::createTreeNode(5); List::connectTreeNodes(node1, node2); List::connectTreeNodes(node2, node3); List::connectTreeNodes(node3, node4); List::connectTreeNodes(node4, node5); test("test2", node1, node5, node4, node3); } int main(int argc, char* argv[]) { test1(); test2(); return 0; }
f1d1560eb95abeb8c959be0d98bde12077278ed5
1702b954442030ccbd6b8edd82b175b14e63da80
/PROG2/Player.cpp
3fa2e232a6e2aa6f900cc69f2700aa16857c3ec7
[]
no_license
Eduardo79Silva/MazesPROG.Classes
8b3d7ac634838f58d6e23d5c7413cd31cb196f33
73b816ce68378dbb4f556991dc41413157597094
refs/heads/main
2023-05-10T03:02:08.950580
2021-05-27T10:29:57
2021-05-27T10:29:57
370,741,478
0
0
null
null
null
null
UTF-8
C++
false
false
526
cpp
#include "Player.h" Player::Player(int row, int col, char symbol) { this->row = row; this->col = col; this->symbol = symbol; alive = true; } Player::Player() { row = -1; col = -1; symbol = 'H'; alive = true; } int Player::getRow() const { return 0; } int Player::getCol() const { return 0; } char Player::getSymbol() const { return 0; } bool Player::isAlive() const { return false; } void Player::setAsDead() { } bool Player::move(Movement delta) { row += delta.dRow; col += delta.dCol; return false; }
b385b3e7ebb2ba4ee2dd4f8876833104a45f47c9
c9965d13442fc4a0c6f95d0edb93fd6943fc41d2
/3_71588_Симеон Танев/3_71588_Simeon_Zadacha2.cpp
adeb7b1b6057757a9f310202cccd9f17708dc53a
[]
no_license
HarisonP/-Introduction-to-Programming-Exam-One
8a5064014cbf0bcd1ad2c9f384076d933cfcdca7
6f11b3a418c5679d515fc222090eb6be6955c322
refs/heads/master
2021-01-15T21:07:26.501711
2015-01-21T11:51:35
2015-01-21T11:51:35
27,239,927
0
0
null
null
null
null
UTF-8
C++
false
false
374
cpp
#include <iostream> #include <string.h> using namespace std; int main() { string sentence; cin >> "sentence"; string newSentence; sentence._Swap_all == newSentence; for (i = 0; i++) { sentence.find(" "); sentence.replace(" ", ""); int counter; counter = i + 1; } cout << "newSentence" << endl << counter << "words" << endl; system("pause"); return 0; }
c1332232b046620bfb415b1cfe98a626806bf6ee
daa59cbb77633ab7696481dad441b26a9110d1cd
/NdkBinderService/src/main/cpp/native-lib.cpp
8ff242f7b158e39dcd07c58042052a2a73bf7893
[]
no_license
android-technology/AndroidNdkBinderExamples
2e08b8a86269bec460e96d47fef7d0ff30fba39e
4a098536daf8ba7334c32aab11fe78e47047586c
refs/heads/master
2023-03-12T10:57:52.678075
2021-03-03T13:14:47
2021-03-03T13:14:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
414
cpp
#include <jni.h> #include "MyService.h" #include <android/binder_ibinder_jni.h> using aidl::com::example::MyService; using namespace std; extern "C" JNIEXPORT jobject JNICALL Java_com_example_ndkbinderservice_MyService_createServiceBinder( JNIEnv* env, jobject /* this */) { static MyService myService; return env->NewGlobalRef(AIBinder_toJavaBinder(env, myService.asBinder().get())); }
aafd3944c30189e84d9cf9426d967033fbe3a918
c2683c87ecff919f125d626cc405f134db731f99
/lib/gui/gui.cpp
65da10405023c36ab91a8d9402445b8cc2d2c95b
[ "BSD-2-Clause" ]
permissive
bryanchance/sal
612b716a01cb354887cb02df5ccdd3f526e8eab3
33bb35996e668bc7eda1d35be10c811b720e5f65
refs/heads/master
2023-03-20T03:46:01.829173
2015-09-02T09:49:49
2015-09-02T09:49:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
646
cpp
#define SAL_GUI_LIBRARY "libsalgui.so" #define GuiInit() gui.init #define GuiLoop() gui.loop #define GuiButton(x,y) push y push x gui.button #define GuiWindow(x,y) push y push x gui.window #define GuiAdd(x,y) push y push x gui.add #define GuiAddPack(x,y) push y push x gui.add.pack #define GuiAddPackEnd(x,y) push y push x gui.add.packend #define GuiHButtonBox() gui.hbbox #define GuiShow(x) push x gui.show #define GuiLabel(x) push x gui.label #define GuiLabelSet(x,y) push y push x gui.label.set #define GuiVBox() gui.vbox #define GuiHBox() gui.hbox #define GuiProgress() gui.progress #define GuiProgressSet(x,y) push y push x gui.progress.set
6a010197cf387ed85d5dfa4b5e2f3af973c4a1db
0706ac75abda3a5fc4c8f8787235d757f1cc642d
/QtGuiApplication1/fragment.h
a9291c66d92a45eef67eb490568e1af46183c7a0
[]
no_license
gina10287/FoodPlate
baab9061d4d62cc2d4f613534d2983c568202a78
ce3df125173fe341744c6cb492be3e500f952c88
refs/heads/master
2020-03-21T15:40:23.052204
2018-07-16T05:06:53
2018-07-16T05:06:53
138,726,151
0
0
null
null
null
null
UTF-8
C++
false
false
1,066
h
#include <opencv\cv.h> #include <opencv2\highgui\highgui.hpp> #include <iostream> #ifndef fragment_H #define fragment_H using namespace std; using namespace cv; class frag { public: frag(); bool hasFrag; int r; // reference start int q; // query start int l; // match length int fIndex; //file index int cIndex; //contour index int rIndex; // recipe index int fAmount; double score; //fragment score vector<int> recipe_num; Mat warpImg; Mat warpImgGroupOri; double cError; //color error double sError; //sum of three error double iError; // intersection error double iErrorRatio1; // intersection error double iErrorRatio2; // intersection error double icpError; // intersection error double icpVarianceError; // intersection error double scaleRatio; void setInfo(int _r, int _q, int _l, double _score, int _cIndex, int _fIndex, int _fAmount, Mat _warpImg); void setError(double _cError, double _iError, double _iErrorRatio1, double _iErrorRatio2, double icpError, double icpVarianceError); bool theSame(frag A); private: }; #endif
34b00d1000710aa9be705898e61952a23192fff9
e090a7a4de62bef5cb2a4a272ea768abeee1ba9d
/Graduation/Client/Monster1.cpp
303b4dc0a574c83d6d15601be4e3ed8e67546367
[]
no_license
ParkJWoo/graduationProject
280e0a6b75a439e926073bdf21bbf874cc91a640
f29766b2c34622a2d73397d258306f4aa390638d
refs/heads/main
2023-01-08T11:36:03.018859
2020-11-19T13:01:10
2020-11-19T13:01:10
314,222,736
0
0
null
null
null
null
UHC
C++
false
false
8,383
cpp
#include "stdafx.h" #include "Monster1.h" #include "AnimEffect.h" #include "NonAnimEffect.h" #include "AttackCollider.h" #include "EnemyHP.h" CMonster1::CMonster1() :m_fSpeed(0.f), m_pTarget(nullptr), m_fTime(0.f), m_fRestTime(0.f) { //ZeroMemory(&m_CurTime, sizeof(LARGE_INTEGER)); //ZeroMemory(&m_OldTime1, sizeof(LARGE_INTEGER)); //ZeroMemory(&m_OldTime2, sizeof(LARGE_INTEGER)); //ZeroMemory(&m_CpuTick, sizeof(LARGE_INTEGER)); m_eStateID = STATEID::STATE_END; m_bIsCheck = false; pHpBar = nullptr; m_tData = { 3,0,1 }; m_bIsJump = false; } CMonster1::~CMonster1() { Release(); } HRESULT CMonster1::Initialize() { /*m_wstrObjKey = L"Enemy1"; m_wstrStateKey = L"Idle";*/ //m_tInfo.vPos = D3DXVECTOR3(400.f, 400.f, 0.f); m_wstrObjKey = L"Enemy1"; MonsterState(STATEID::IDLE); m_tInfo.vSize = { 150.f,280.f,0.f }; //m_tFrame.fFrame = 0.f; m_fSpeed = 0.1f; m_pTarget = CObjMgr::GetInstance()->GetPlayer(); CTimeMgr::GetInstance()->InitTime(); /*CAbstractFactory<CEnemyHP>::CreateObj(pHpBar); CObjMgr::GetInstance()->AddObject(pHpBar, OBJ_UI); CDataSubject::GetInstance()->AddData(ENEMY_DATA, &tData); CDataSubject::GetInstance()->AddData(ENEMY_MATRIX, &m_tInfo.matWorld);*/ return S_OK; } void CMonster1::LateInit() { //CAbstractFactory<CEnemyHP>::CreateObj(pHpBar); //CObjMgr::GetInstance()->AddObject(pHpBar, OBJ_UI); //CDataSubject::GetInstance()->AddData(ENEMY_DATA, &m_tData); //CDataSubject::GetInstance()->AddData(ENEMY_MATRIX, &m_tInfo.matWorld); } int CMonster1::Update() { CObj::LateInit(); if (m_bIsDead) return DEAD_OBJ; D3DXMATRIX matScale, matTrans; D3DXMatrixScaling(&matScale, 1.f, 1.f, 0.f); D3DXMatrixTranslation(&matTrans, m_tInfo.vPos.x, m_tInfo.vPos.y, 0.f); m_tInfo.matWorld = matScale * matTrans; m_fTime += CTimeMgr::GetInstance()->GetTime(); if (nullptr != m_pTarget) { // 몬스와 타겟을 이루는 삼각형의 세변을 구한다. // 순서유의! 반드시 타겟에서부터 뺄샘을 한다! float w = m_pTarget->GetInfo().vPos.x - m_tInfo.vPos.x; float h = m_pTarget->GetInfo().vPos.y - m_tInfo.vPos.y; float d = sqrtf(w * w + h * h); // 삼각형의 삼각비를 이용하여 끼인각을 얻어낸다. // 역삼각함수는 끼인각을 라디안으로 반환한다. m_fAngle = acosf(w / d); // acosf이 구할 수 있는 각도 범위는 0 ~ 180도. // 따라서, 180도를 넘어설 때에는 아래와 같이 예외처리를 해주어야한다. if (m_tInfo.vPos.x < m_pTarget->GetInfo().vPos.x) { m_fAngle = (2.f * PI) - m_fAngle; } // 구한 각도대로 몬스터를 이동. if (m_tInfo.vPos.x - m_pTarget->GetInfo().vPos.x >= 200.f) { MonsterState(STATEID::RUN); m_tInfo.vPos.x += cosf(m_fAngle) * m_fSpeed; } else { /*MonsterState(STATEID::ATTACK); if (m_tFrame.fFrame > m_tFrame.fMax) { m_fTime += CTimeMgr::GetInstance()->GetTime(); MonsterState(STATEID::IDLE); }*/ BehaviorFunction(); /*if (m_fTime >= 0.05f) { MonsterState(STATEID::IDLE); if (m_tFrame.fFrame > m_tFrame.fMax) { m_tFrame.fFrame = 0.f; m_fTime = 0.f; } }*/ //if (m_tFrame.fFrame > m_tFrame.fMax) //{ // m_tFrame.fFrame = 0.f; // m_fTime = AttackTerm(); // if (m_fTime >= 5.f) // { // /*m_wstrStateKey = L"Attack"; // m_tFrame.fMax = 5.f; // m_tFrame.fFrame += m_tFrame.fMax * CTimeMgr::GetInstance()->GetTime() * 3;*/ // m_wstrStateKey = L"Idle"; // m_tFrame.fMax = 10.f; // m_tFrame.fFrame += m_tFrame.fMax * CTimeMgr::GetInstance()->GetTime(); // } //} /*else { m_wstrStateKey = L"Attack"; m_tFrame.fMax = 5.f; m_tFrame.fFrame += m_tFrame.fMax * CTimeMgr::GetInstance()->GetTime() * 3; }*/ } if (0 < m_tData.iHp && m_tData.iHp <= 2) { MonsterState(STATEID::DAMAGED); //m_tInfo.vPos.y = 450.f; if (m_tFrame.fFrame >= m_tFrame.fMax) { MonsterState(STATEID::IDLE); } } if (m_tData.iHp <= 0) { //m_fTime = 0.f; MonsterState(STATEID::DIE); //m_tInfo.vPos.y = 450.f; /*if (m_tFrame.fFrame > m_tFrame.fMax) { m_fTime += CTimeMgr::GetInstance()->GetTime(); if (m_fTime <= 10.f) m_bIsDead = true; }*/ } } //CDataSubject::GetInstance()->Notify(ENEMY_MATRIX, &m_tInfo.matWorld); return NO_EVENT; } void CMonster1::LateUpdate() { //CObj::MoveFrame(); } void CMonster1::Render() { const TEXINFO* pTexInfo = CTextureMgr::GetInstance()->GetTexture( m_wstrObjKey.c_str(), m_wstrStateKey.c_str(), (int)m_tFrame.fFrame); NULL_CHECK(pTexInfo); float fCenterX = pTexInfo->tImgInfo.Width * 0.5f; float fCenterY = pTexInfo->tImgInfo.Height * 0.5f; if (CSceneMgr::GetInstance()->GetID() == CSceneMgr::STAGE1_1) m_tInfo.vSize = { (float)pTexInfo->tImgInfo.Width, (float)pTexInfo->tImgInfo.Height,0.f }; CDevice::GetInstance()->GetSprite()->SetTransform(&m_tInfo.matWorld); CDevice::GetInstance()->GetSprite()->Draw(pTexInfo->pTexture, nullptr, &D3DXVECTOR3(fCenterX, fCenterY, 0.f), &D3DXVECTOR3(0.f, 0.f, 0.f), D3DCOLOR_ARGB(255, 255, 255, 255)); } void CMonster1::Release() { } float CMonster1::AttackTerm() { m_fTime = 0.f; QueryPerformanceCounter(&m_CurTime); // 현재 시간과 과거 시간의 갭이 m_CpuTick을 넘을 경우 보정. if (m_CurTime.QuadPart - m_OldTime2.QuadPart > m_CpuTick.QuadPart) { // 현재 CPU 진동수를 새로 얻어온다. QueryPerformanceFrequency(&m_CpuTick); m_OldTime2 = m_CurTime; m_fTime = float(m_CurTime.QuadPart - m_OldTime1.QuadPart) / m_CpuTick.QuadPart; } return m_fTime; } float CMonster1::RestTerm() { m_fRestTime = 0.f; QueryPerformanceCounter(&m_CurTime); // 현재 시간과 과거 시간의 갭이 m_CpuTick을 넘을 경우 보정. if (m_CurTime.QuadPart - m_OldTime2.QuadPart > m_CpuTick.QuadPart) { // 현재 CPU 진동수를 새로 얻어온다. QueryPerformanceFrequency(&m_CpuTick); m_OldTime2 = m_CurTime; m_fRestTime = float(m_CurTime.QuadPart - m_OldTime1.QuadPart) / m_CpuTick.QuadPart; } return m_fRestTime; } HRESULT CMonster1::MonsterState(STATEID eID) { m_eState = eID; switch (m_eState) { case IDLE: m_eStateID = STATEID::IDLE; m_wstrStateKey = L"Idle"; m_tFrame.fMax = 10.f; m_tFrame.fFrame += m_tFrame.fMax * CTimeMgr::GetInstance()->GetTime(); if (m_tFrame.fFrame > m_tFrame.fMax) m_tFrame.fFrame = 0.f; break; case ATTACK: m_eStateID = STATEID::ATTACK; m_wstrStateKey = L"Attack"; m_tFrame.fMax = 41.f; m_tFrame.fFrame += m_tFrame.fMax * CTimeMgr::GetInstance()->GetTime() * 0.5f; //CObjMgr::GetInstance()->AddObject(CreateAttackCollider<CAttackCollider>(), OBJID::OBJ_ENEMYATTACK); if (m_tFrame.fFrame > m_tFrame.fMax) m_tFrame.fFrame = 0.f; break; case DAMAGED: m_eStateID = STATEID::DAMAGED; m_wstrStateKey = L"Damaged"; m_tFrame.fMax = 17.f; m_tFrame.fFrame += m_tFrame.fMax * CTimeMgr::GetInstance()->GetTime(); if (m_tFrame.fFrame > m_tFrame.fMax) m_tFrame.fFrame = 0.f; break; case RUN: m_eStateID = STATEID::RUN; m_wstrStateKey = L"Run"; m_tFrame.fMax = 31.f; m_tFrame.fFrame += m_tFrame.fMax * CTimeMgr::GetInstance()->GetTime(); if (m_tFrame.fFrame > m_tFrame.fMax) m_tFrame.fFrame = 0.f; break; case DIE: m_eStateID = STATEID::DIE; m_wstrStateKey = L"Die"; m_tFrame.fMax = 11.f; m_tFrame.fFrame += m_tFrame.fMax * CTimeMgr::GetInstance()->GetTime(); if (m_tFrame.fFrame > m_tFrame.fMax) m_tFrame.fFrame = 0.f; break; } return S_OK; } void CMonster1::BehaviorFunction() { if (m_eStateID == STATEID::DIE) { m_bIsDead = true; return; } MonsterState(STATEID::ATTACK); //if (m_tFrame.fFrame > m_tFrame.fMax) //{ // //MonsterState(STATEID::IDLE); // if (m_tFrame.fFrame > m_tFrame.fMax) // { // /* if ((int)m_fTime % 10 == 0) // BehaviorFunction();*/ // /* if (m_fTime >= 10.f) // BehaviorFunction();*/ // if (m_fTime >= 1.f) // MonsterState(STATEID::IDLE); // } //} } void CMonster1::OnLine() { float fY = m_tInfo.vPos.y; bool bColl = CLineMgr::GetInstance()->LineCollision(m_tInfo.vPos.x, &fY); bool bColl2 = CStage2LineMgr::GetInstance()->LineCollision(m_tInfo.vPos.x, &fY); if ((!m_bIsJump && bColl) || (!m_bIsJump && bColl2)) // 점프 중이 아니지만 지면에 충돌했을 때 m_tInfo.vPos.y = fY; }
4fb200eb3a33213477c04fce367d1cdddb13c6b6
dccaab4cb32470d58399750d457d89f3874a99e3
/3rdparty/include/Poco/NumberParser.h
9134a5babb79646bc5c40b98bab76ec27e9f33cb
[]
no_license
Pan-Rongtao/mycar
44832b0b5fdbb6fb713fddff98afbbe90ced6415
05b1f0f52c309607c4c64a06b97580101e30d424
refs/heads/master
2020-07-15T20:31:28.183703
2019-12-20T07:45:00
2019-12-20T07:45:00
205,642,065
0
0
null
null
null
null
UTF-8
C++
false
false
6,875
h
// // NumberParser.h // // Library: Foundation // Package: Core // Module: NumberParser // // Definition of the NumberParser class. // // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identifier: BSL-1.0 // #ifndef Foundation_NumberParser_INCLUDED #define Foundation_NumberParser_INCLUDED #include "Poco/Foundation.h" #include <string> #undef min #undef max #include <limits> namespace Poco { class Foundation_API NumberParser /// The NumberParser class provides static methods /// for parsing numbers out of strings. /// /// Note that leading or trailing whitespace is not allowed /// in the string. Poco::trim() or Poco::trimInPlace() /// can be used to remove leading or trailing whitespace. { public: static const unsigned short NUM_BASE_OCT = 010; static const unsigned short NUM_BASE_DEC = 10; static const unsigned short NUM_BASE_HEX = 0x10; static int parse(const std::string& s, char thousandSeparator = ','); /// Parses an integer value in decimal notation from the given string. /// Throws a SyntaxException if the string does not hold a number in decimal notation. static bool tryParse(const std::string& s, int& value, char thousandSeparator = ','); /// Parses an integer value in decimal notation from the given string. /// Returns true if a valid integer has been found, false otherwise. /// If parsing was not successful, value is undefined. static unsigned parseUnsigned(const std::string& s, char thousandSeparator = ','); /// Parses an unsigned integer value in decimal notation from the given string. /// Throws a SyntaxException if the string does not hold a number in decimal notation. static bool tryParseUnsigned(const std::string& s, unsigned& value, char thousandSeparator = ','); /// Parses an unsigned integer value in decimal notation from the given string. /// Returns true if a valid integer has been found, false otherwise. /// If parsing was not successful, value is undefined. static unsigned parseHex(const std::string& s); /// Parses an integer value in hexadecimal notation from the given string. /// Throws a SyntaxException if the string does not hold a number in /// hexadecimal notation. static bool tryParseHex(const std::string& s, unsigned& value); /// Parses an unsigned integer value in hexadecimal notation from the given string. /// Returns true if a valid integer has been found, false otherwise. /// If parsing was not successful, value is undefined. static unsigned parseOct(const std::string& s); /// Parses an integer value in octal notation from the given string. /// Throws a SyntaxException if the string does not hold a number in /// hexadecimal notation. static bool tryParseOct(const std::string& s, unsigned& value); /// Parses an unsigned integer value in octal notation from the given string. /// Returns true if a valid integer has been found, false otherwise. /// If parsing was not successful, value is undefined. #if defined(POCO_HAVE_INT64) static Int64 parse64(const std::string& s, char thousandSeparator = ','); /// Parses a 64-bit integer value in decimal notation from the given string. /// Throws a SyntaxException if the string does not hold a number in decimal notation. static bool tryParse64(const std::string& s, Int64& value, char thousandSeparator = ','); /// Parses a 64-bit integer value in decimal notation from the given string. /// Returns true if a valid integer has been found, false otherwise. /// If parsing was not successful, value is undefined. static UInt64 parseUnsigned64(const std::string& s, char thousandSeparator = ','); /// Parses an unsigned 64-bit integer value in decimal notation from the given string. /// Throws a SyntaxException if the string does not hold a number in decimal notation. static bool tryParseUnsigned64(const std::string& s, UInt64& value, char thousandSeparator = ','); /// Parses an unsigned 64-bit integer value in decimal notation from the given string. /// Returns true if a valid integer has been found, false otherwise. /// If parsing was not successful, value is undefined. static UInt64 parseHex64(const std::string& s); /// Parses a 64 bit-integer value in hexadecimal notation from the given string. /// Throws a SyntaxException if the string does not hold a number in hexadecimal notation. static bool tryParseHex64(const std::string& s, UInt64& value); /// Parses an unsigned 64-bit integer value in hexadecimal notation from the given string. /// Returns true if a valid integer has been found, false otherwise. /// If parsing was not successful, value is undefined. static UInt64 parseOct64(const std::string& s); /// Parses a 64 bit-integer value in octal notation from the given string. /// Throws a SyntaxException if the string does not hold a number in hexadecimal notation. static bool tryParseOct64(const std::string& s, UInt64& value); /// Parses an unsigned 64-bit integer value in octal notation from the given string. /// Returns true if a valid integer has been found, false otherwise. /// If parsing was not successful, value is undefined. #endif // defined(POCO_HAVE_INT64) static double parseFloat(const std::string& s, char decimalSeparator = '.', char thousandSeparator = ','); /// Parses a double value in decimal floating point notation /// from the given string. /// Throws a SyntaxException if the string does not hold a floating-point /// number in decimal notation. static bool tryParseFloat(const std::string& s, double& value, char decimalSeparator = '.', char thousandSeparator = ','); /// Parses a double value in decimal floating point notation /// from the given string. /// Returns true if a valid floating point number has been found, /// false otherwise. /// If parsing was not successful, value is undefined. static bool parseBool(const std::string& s); /// Parses a bool value in decimal or string notation /// from the given string. /// Valid forms are: "0", "1", "true", "on", false", "yes", "no", "off". /// String forms are NOT case sensitive. /// Throws a SyntaxException if the string does not hold a valid bool number static bool tryParseBool(const std::string& s, bool& value); /// Parses a bool value in decimal or string notation /// from the given string. /// Valid forms are: "0", "1", "true", "on", false", "yes", "no", "off". /// String forms are NOT case sensitive. /// Returns true if a valid bool number has been found, /// false otherwise. /// If parsing was not successful, value is undefined. }; } // namespace Poco #endif // Foundation_NumberParser_INCLUDED
9394054b873b8d7c38d62228dd908d764f1f9a76
0237a503f80482bbda913f1f9a500aa1d712f379
/GluttonousSnake/Food.h
baaea7b200708a3ea44f84e96073c5fbd08c38cc
[]
no_license
fa1c0n1/funny_learning
bce89d6edff46a0a6f78aa1fb2b0a95168e84f1e
10f500a1e06743379539b14e8a04a79d95a6a796
refs/heads/master
2021-12-29T18:52:38.588889
2021-12-27T01:54:52
2021-12-27T01:54:52
53,765,191
2
2
null
null
null
null
UTF-8
C++
false
false
274
h
#pragma once #include "Snake.h" #include "GameMap.h" class Snake; class Food { public: Food(const int x = 0, const int y = 0); ~Food(); int getX(); int getY(); void show(Snake &snake, GameMap &gMap); private: void show(); int m_nX, m_nY; };
63b58592305cce718743f7ee0cc20cde494906e4
0d49ff17eea415635779a82ef790d7b6273da3e5
/src/astextresolver.cpp
9f27a5fff27d17e75213eaf39e95937f1b1eb463
[ "Apache-2.0" ]
permissive
vrai/SimpleFudgeProto
8b8b2e520ea8e526f1e3ba07c6f8835fccdcf7b8
93bd7bd6c2972b92519389a4cdc70a7d21107275
refs/heads/master
2021-01-16T17:49:09.558853
2013-09-16T09:43:29
2013-09-16T09:43:29
1,713,250
0
0
null
null
null
null
UTF-8
C++
false
false
3,964
cpp
/** * Copyright (C) 2011 - 2011, Vrai Stacey. * * 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 "astextresolver.hpp" #include <typeinfo> using namespace fudgeproto; astextresolver::astextresolver ( astextrefs & extrefs, const astindex & index ) : m_extrefs ( extrefs ) , m_index ( index ) { } void astextresolver::walk ( definition * node ) { astwalker::walk ( node ); if ( ! peekStack ( ) ) m_extrefs.load ( m_references ); } void astextresolver::reset ( ) { astwalker::reset ( ); m_references.clear ( ); } void astextresolver::walk ( enumdef & node ) { throw std::domain_error ( "Enum walker not implemented in resolver" ); } void astextresolver::walk ( fielddef & node ) { if ( node.type ( ).type ( ) == FUDGEPROTO_TYPE_USER ) addExternalReference ( node.type ( ).def ( ), *peekStack ( 1 ) ); } void astextresolver::walk ( messagedef & node ) { for ( size_t index ( 0 ); index < node.parents ( ).size ( ); ++index ) { const std::string id ( node.parents ( ) [ index ]->asString ( "." ) ); const definition * parent ( m_index.find ( id ) ); if ( ! parent ) throw std::logic_error ( "Cannot find parent \"" + id + "\" for message \"" + node.idString ( ) + "\"" ); if ( typeid ( *parent ) != typeid ( messagedef ) ) throw std::logic_error ( "Cannot use non-message \"" + id + "\" as parent of \"" + node.idString ( ) + "\"" ); addExternalReference ( *parent, node ); } walkCollection ( node.messages ( ) ); walkCollection ( node.fields ( ) ); } void astextresolver::walk ( namespacedef & node ) { if ( peekStack ( 1 ) || node.hasId ( ) ) throw std::invalid_argument ( "AST extern resolver should only be passed an anonymous namespace at the top-level" ); walkCollection ( node.content ( ) ); } void astextresolver::addExternalReference ( const definition & target, const definition & message ) { // Can't be dependent on an enum - drop the enum elements, leaving the parent message identifier * id ( target.id ( ).clone ( ) ); if ( typeid ( target ) == typeid ( enumdef ) ) id->pop ( ); // Find the message type corresponding to the identifier const definition * type ( m_index.find ( id->asString ( "." ) ) ); if ( ! type ) throw std::logic_error ( "Cannot add unknown external reference \"" + id->asString ( "." ) + "\" to message \"" + message.idString ( ) + "\"" ); if ( typeid ( *type ) != typeid ( message ) ) throw std::logic_error ( "Cannot add non-message reference \"" + type->idString ( ) + "\" to message \"" + message.idString ( ) + "\"" ); // Only add messages that are at the top-level (i.e. not within another message) if ( ! isParentMessage ( *type ) ) { m_references [ message.idString ( ) ].insert ( type->idString ( ) ); } refcounted::dec ( type ); refcounted::dec ( id ); } bool astextresolver::isParentMessage ( const definition & type ) { identifier * parent ( type.id ( ).clone ( ) ); parent->pop ( ); const std::string parentid ( parent->asString ( "." ) ); refcounted::dec ( parent ); return m_index.messageMap ( ).find ( parentid ) != m_index.messageMap ( ).end ( ); }
0c2ebf88576055d3355a1873831b6f650cd69cd0
a766ee23c2243f850ebdb83a69d0fb8a5359c07d
/2012/day6(May 1)/1+2+3+...+n=.cpp
42ece03f6674a50fdf3f6a4ad61f0fc12a4c023a
[ "MIT" ]
permissive
jasha64/jasha64
24e127e57dd8852e5a006ba98be6c17312733597
653881f0f79075a628f98857e77eac27aef1919d
refs/heads/master
2021-06-23T08:34:27.220649
2021-06-20T06:05:50
2021-06-20T06:05:50
218,268,953
1
1
null
null
null
null
UTF-8
C++
false
false
180
cpp
#include<iostream> using namespace std; int main() { int a,b,sum; cin>>a; for(sum=0,b=1;b<=a;b++) sum+=b; cout<<sum<<endl; system("pause"); return 0; }
da857a43cda014ccf276f14b2dcb003942421212
05384a4730033c5d9e3513823719c924e190b4d7
/src/math/Quaternion.h
400ac1e80ac847b45c79d54d2934b6f34eef36a5
[ "Unlicense", "LicenseRef-scancode-public-domain" ]
permissive
Lyatus/L
ebf4f20c65d6dda4bc2d0b0bd59ba02f182fafd7
827d6800306a930e7411dd8573b69810e25a9fa3
refs/heads/master
2022-09-19T16:39:53.148096
2022-08-26T09:34:37
2022-08-26T09:34:37
30,928,991
46
6
null
null
null
null
UTF-8
C++
false
false
2,849
h
#pragma once #include "math.h" #include "Vector.h" namespace L { template <class T> class Quaternion : public Vector<4,T> { public: inline Quaternion() : Vector<4, T>(T(0), T(0), T(0), T(1)) {} inline Quaternion(const T& x,const T& y,const T& z,const T& w) : Vector<4,T>(x,y,z,w) {} inline Quaternion(const Vector<3, T>& v) : Vector<4, T>(v.x(), v.y(), v.z(), 0) {} inline Quaternion(const Vector<4, T>& v) : Vector<4, T>(v) {} Quaternion(const Vector<3,T>& axis,const T& angle) { this->w() = cos(angle/2); const float sa2(sin(angle/2)); this->x() = axis.x()*sa2; this->y() = axis.y()*sa2; this->z() = axis.z()*sa2; } Quaternion operator*(const Quaternion& other) const { return Quaternion(this->w()*other.x()+this->x()*other.w()+this->y()*other.z()-this->z()*other.y(), this->w()*other.y()-this->x()*other.z()+this->y()*other.w()+this->z()*other.x(), this->w()*other.z()+this->x()*other.y()-this->y()*other.x()+this->z()*other.w(), this->w()*other.w()-this->x()*other.x()-this->y()*other.y()-this->z()*other.z()); } inline Quaternion inverse() const { return Quaternion(-this->x(),-this->y(),-this->z(),this->w()); } inline Vector<3,T> rotate(const Vector<3,T>& v) const { Vector<3, T> t, u; t.x() = (this->y()*v.z() - this->z()*v.y())*T(2); t.y() = (this->z()*v.x() - this->x()*v.z())*T(2); t.z() = (this->x()*v.y() - this->y()*v.x())*T(2); u.x() = (this->y()*t.z() - this->z()*t.y()); u.y() = (this->z()*t.x() - this->x()*t.z()); u.z() = (this->x()*t.y() - this->y()*t.x()); t.x() *= this->w(); t.y() *= this->w(); t.z() *= this->w(); t.x() += v.x(); t.y() += v.y(); t.z() += v.z(); t.x() += u.x(); t.y() += u.y(); t.z() += u.z(); return t; } void to_axis_angle(Vector<3, T>& axis, T& angle) const { angle = 2 * acos(this->w()); if(angle > 0.1) { const T t(1/sqrt(1-sqr(this->w()))); axis.x() = this->x() * t; axis.y() = this->y() * t; axis.z() = this->z() * t; } else { axis.x() = 1; angle = axis.y() = axis.z() = 0; } } Vector<3, T> to_scaled_vector() const { Vector<3, T> v; float a; to_axis_angle(v, a); v.length(a); return v; } inline operator Vector<3,T>() const { return Vector<3,T>(this->x(),this->y(),this->z()); } }; template <class T> Stream& operator<<(Stream& s, const Quaternion<T>& v) { return s << (const Vector<4, T>&)v; } template <class T> Stream& operator<(Stream& s, const Quaternion<T>& v) { return s < (const Vector<4, T>&)v; } template <class T> Stream& operator>(Stream& s, Quaternion<T>& v) { return s > (Vector<4, T>&)v; } typedef Quaternion<float> Quatf; }
7b08d5c939a1ffb0f228d1e7498c7879d1e433c7
ecba1c965423e5783c12a0eae359803a8cfbc042
/RPG_V1/Source/RPG_V1/Public/Items/RPGItemBase.h
79751c52dbd44098f83a5d244703a54e56cc4e5c
[]
no_license
Globins/UE4GASRPG
ae6b199f3dbabb8a1a7818484030d8c282845867
2dc0bedbcd2446fcff1abd43331548ab2c7bc8ba
refs/heads/master
2023-01-01T02:36:20.415676
2020-10-20T18:37:20
2020-10-20T18:37:20
305,798,876
0
0
null
null
null
null
UTF-8
C++
false
false
2,279
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Engine/DataAsset.h" #include "Styling/SlateBrush.h" #include "RPGItemBase.generated.h" class URPGGameplayAbility; /** Base class for all items, do not blueprint directly */ UCLASS(Abstract, BlueprintType) class RPG_V1_API URPGItemBase : public UPrimaryDataAsset { GENERATED_BODY() public: /** Type of this item, set in native parent class */ UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "RPG|Item") FPrimaryAssetType ItemType; /** User-visible short name */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item") FText ItemName; /** User-visible long description */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item", meta = (Multiline = "true")) FText ItemDescription; /** Icon to display */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item") FSlateBrush ItemIcon; /** Icon to display */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item") UStaticMesh* ItemMesh; /** Price in game */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item") int32 Price; /** Maximum number of instances that can be in a stack at once, <= 0 means infinite */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item|Max") uint8 MaxCount; /** Returns if the item is consumable (MaxCount <= 0)*/ UFUNCTION(BlueprintCallable, BlueprintPure, Category = "RPG|Item|Max") bool IsStackable() const; /** Maximum level this item can be, <= 0 means infinite */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item|Max") int32 MaxLevel; /** Ability to grant if this item is equipped */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item|Abilities") TSubclassOf<URPGGameplayAbility> GrantedAbility; /** Ability level this item grants. <= 0 means the character level */ UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "RPG|Item|Abilities") int32 AbilityLevel; /** Returns the logical name, equivalent to the primary asset id */ UFUNCTION(BlueprintCallable, Category = "RPG|Item") FString GetIdentifierString() const; /** Overridden to use saved type */ virtual FPrimaryAssetId GetPrimaryAssetId() const override; };
040f99b589179eaa6344f57edf657f4accd2e2ac
bf0f0663bf039447f467473c3923a122f0a5e29f
/moc_chumbyknobhandler.cpp
c0a38203135c2df2ff7b0b4478c61ac7b38540f2
[ "MIT" ]
permissive
9072997/ChumbyBrowser
c504436014b9193e50dc1245d8acf3d0b97c71ae
8d87b1c938feefc59114b75fb1dca9303d34c45c
refs/heads/master
2021-04-15T08:40:32.798325
2013-04-03T02:59:40
2013-04-03T02:59:40
8,966,440
1
0
null
null
null
null
UTF-8
C++
false
false
2,418
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'chumbyknobhandler.h' ** ** Created: Sun Mar 17 05:08:55 2013 ** by: The Qt Meta Object Compiler version 62 (Qt 4.6.3) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "chumbyknobhandler.h" #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'chumbyknobhandler.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 62 #error "This file was generated using the moc from 4.6.3. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE static const uint qt_meta_data_ChumbyKnobHandler[] = { // content: 4, // revision 0, // classname 0, 0, // classinfo 1, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount // slots: signature, parameters, type, tag, flags 19, 18, 18, 18, 0x08, 0 // eod }; static const char qt_meta_stringdata_ChumbyKnobHandler[] = { "ChumbyKnobHandler\0\0readWheel()\0" }; const QMetaObject ChumbyKnobHandler::staticMetaObject = { { &QObject::staticMetaObject, qt_meta_stringdata_ChumbyKnobHandler, qt_meta_data_ChumbyKnobHandler, 0 } }; #ifdef Q_NO_DATA_RELOCATION const QMetaObject &ChumbyKnobHandler::getStaticMetaObject() { return staticMetaObject; } #endif //Q_NO_DATA_RELOCATION const QMetaObject *ChumbyKnobHandler::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject; } void *ChumbyKnobHandler::qt_metacast(const char *_clname) { if (!_clname) return 0; if (!strcmp(_clname, qt_meta_stringdata_ChumbyKnobHandler)) return static_cast<void*>(const_cast< ChumbyKnobHandler*>(this)); return QObject::qt_metacast(_clname); } int ChumbyKnobHandler::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QObject::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { switch (_id) { case 0: readWheel(); break; default: ; } _id -= 1; } return _id; } QT_END_MOC_NAMESPACE
e4db57a25e3b53076b84984c1e3295e46a1fe583
40c9eaac3960342f6ce3c738546e9022412499db
/devel/include/brics_actuator/JointAccelerations.h
eb3fc881567868de0ea375bbccf6406b909a9e65
[]
no_license
likith3611/hungry_bird-eYRC2018-2019
c88a81cfd6ba130359cfd044aa34893329b4860b
3fcb2e56bbd2a5c406db8f3403ffc8b50a6e1a66
refs/heads/master
2022-11-29T04:26:37.097469
2022-11-23T15:16:57
2022-11-23T15:16:57
273,953,655
0
0
null
null
null
null
UTF-8
C++
false
false
6,755
h
// Generated by gencpp from file brics_actuator/JointAccelerations.msg // DO NOT EDIT! #ifndef BRICS_ACTUATOR_MESSAGE_JOINTACCELERATIONS_H #define BRICS_ACTUATOR_MESSAGE_JOINTACCELERATIONS_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> #include <brics_actuator/Poison.h> #include <brics_actuator/JointValue.h> namespace brics_actuator { template <class ContainerAllocator> struct JointAccelerations_ { typedef JointAccelerations_<ContainerAllocator> Type; JointAccelerations_() : poisonStamp() , accelerations() { } JointAccelerations_(const ContainerAllocator& _alloc) : poisonStamp(_alloc) , accelerations(_alloc) { (void)_alloc; } typedef ::brics_actuator::Poison_<ContainerAllocator> _poisonStamp_type; _poisonStamp_type poisonStamp; typedef std::vector< ::brics_actuator::JointValue_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::brics_actuator::JointValue_<ContainerAllocator> >::other > _accelerations_type; _accelerations_type accelerations; typedef boost::shared_ptr< ::brics_actuator::JointAccelerations_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::brics_actuator::JointAccelerations_<ContainerAllocator> const> ConstPtr; }; // struct JointAccelerations_ typedef ::brics_actuator::JointAccelerations_<std::allocator<void> > JointAccelerations; typedef boost::shared_ptr< ::brics_actuator::JointAccelerations > JointAccelerationsPtr; typedef boost::shared_ptr< ::brics_actuator::JointAccelerations const> JointAccelerationsConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::brics_actuator::JointAccelerations_<ContainerAllocator> & v) { ros::message_operations::Printer< ::brics_actuator::JointAccelerations_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace brics_actuator namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': False} // {'std_msgs': ['/opt/ros/melodic/share/std_msgs/cmake/../msg'], 'brics_actuator': ['/home/cry2ra5y/my_catkin_workspace/src/brics_actuator/msg'], 'geometry_msgs': ['/opt/ros/melodic/share/geometry_msgs/cmake/../msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::brics_actuator::JointAccelerations_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct IsFixedSize< ::brics_actuator::JointAccelerations_<ContainerAllocator> const> : FalseType { }; template <class ContainerAllocator> struct IsMessage< ::brics_actuator::JointAccelerations_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::brics_actuator::JointAccelerations_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::brics_actuator::JointAccelerations_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct HasHeader< ::brics_actuator::JointAccelerations_<ContainerAllocator> const> : FalseType { }; template<class ContainerAllocator> struct MD5Sum< ::brics_actuator::JointAccelerations_<ContainerAllocator> > { static const char* value() { return "f904d45aa2c1d97ea9e99a3ba4e3610e"; } static const char* value(const ::brics_actuator::JointAccelerations_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0xf904d45aa2c1d97eULL; static const uint64_t static_value2 = 0xa9e99a3ba4e3610eULL; }; template<class ContainerAllocator> struct DataType< ::brics_actuator::JointAccelerations_<ContainerAllocator> > { static const char* value() { return "brics_actuator/JointAccelerations"; } static const char* value(const ::brics_actuator::JointAccelerations_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::brics_actuator::JointAccelerations_<ContainerAllocator> > { static const char* value() { return "Poison poisonStamp\n" "JointValue[] accelerations\n" "\n" "================================================================================\n" "MSG: brics_actuator/Poison\n" "string originator # node id\n" "string description # encoding still an issue\n" "float32 qos # reliability of the channel\n" " # 0..1 where 1 means healthy\n" "\n" "================================================================================\n" "MSG: brics_actuator/JointValue\n" "time timeStamp #time of the data \n" "string joint_uri\n" "string unit #if empy expects si units, you can use boost::unit\n" "float64 value\n" ; } static const char* value(const ::brics_actuator::JointAccelerations_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::brics_actuator::JointAccelerations_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.poisonStamp); stream.next(m.accelerations); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct JointAccelerations_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::brics_actuator::JointAccelerations_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::brics_actuator::JointAccelerations_<ContainerAllocator>& v) { s << indent << "poisonStamp: "; s << std::endl; Printer< ::brics_actuator::Poison_<ContainerAllocator> >::stream(s, indent + " ", v.poisonStamp); s << indent << "accelerations[]" << std::endl; for (size_t i = 0; i < v.accelerations.size(); ++i) { s << indent << " accelerations[" << i << "]: "; s << std::endl; s << indent; Printer< ::brics_actuator::JointValue_<ContainerAllocator> >::stream(s, indent + " ", v.accelerations[i]); } } }; } // namespace message_operations } // namespace ros #endif // BRICS_ACTUATOR_MESSAGE_JOINTACCELERATIONS_H
25a922bfdf8054144bf0fba88b4f343fe670d2f6
20e040173463c28e5d4210af72cb364375fe15de
/imports/Stack.h
ec6b2e76eae5d92a8f58d8ba0473971813e5b9d9
[]
no_license
joeySchentrup/Map_Project
005eeda2e6639cd1ccf64b6a71651fa01e3cf4ed
522d55393ada20c07e71f0b511fa48e68e9bdc99
refs/heads/master
2021-09-04T10:12:50.458258
2018-01-17T21:47:35
2018-01-17T21:47:35
112,235,965
0
0
null
2018-01-17T20:00:01
2017-11-27T19:00:27
C++
UTF-8
C++
false
false
689
h
#ifndef STACK_H #define STACK_H template < class T > class Stack { private: T array [10]; int pointer; public: Stack() { pointer = 0; }; void push(T object); T pop(); bool isEmpty(); void clear(); }; template < class T > void Stack< T > ::push(T object) { if(!(pointer + 1 == sizeof(array))) array[++pointer] = object; }; template < class T > T Stack < T > ::pop() { return array[pointer--]; }; template < class T > bool Stack < T > ::isEmpty() { return pointer == 0; }; template < class T > void Stack < T > ::clear() { pointer = 0; }; #endif
acdaed6405ae9b74c995e14b61dd7161294d7290
3ff1fe3888e34cd3576d91319bf0f08ca955940f
/eb/include/tencentcloud/eb/v20210416/model/ListTargetsRequest.h
3335f9e76e6a180f5b2400d209bbea18e7d08697
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp
9f5df8220eaaf72f7eaee07b2ede94f89313651f
42a76b812b81d1b52ec6a217fafc8faa135e06ca
refs/heads/master
2023-08-30T03:22:45.269556
2023-08-30T00:45:39
2023-08-30T00:45:39
188,991,963
55
37
Apache-2.0
2023-08-17T03:13:20
2019-05-28T08:56:08
C++
UTF-8
C++
false
false
7,822
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TENCENTCLOUD_EB_V20210416_MODEL_LISTTARGETSREQUEST_H_ #define TENCENTCLOUD_EB_V20210416_MODEL_LISTTARGETSREQUEST_H_ #include <string> #include <vector> #include <map> #include <tencentcloud/core/AbstractModel.h> namespace TencentCloud { namespace Eb { namespace V20210416 { namespace Model { /** * ListTargets请求参数结构体 */ class ListTargetsRequest : public AbstractModel { public: ListTargetsRequest(); ~ListTargetsRequest() = default; std::string ToJsonString() const; /** * 获取事件集ID * @return EventBusId 事件集ID * */ std::string GetEventBusId() const; /** * 设置事件集ID * @param _eventBusId 事件集ID * */ void SetEventBusId(const std::string& _eventBusId); /** * 判断参数 EventBusId 是否已赋值 * @return EventBusId 是否已赋值 * */ bool EventBusIdHasBeenSet() const; /** * 获取根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间) * @return OrderBy 根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间) * */ std::string GetOrderBy() const; /** * 设置根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间) * @param _orderBy 根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间) * */ void SetOrderBy(const std::string& _orderBy); /** * 判断参数 OrderBy 是否已赋值 * @return OrderBy 是否已赋值 * */ bool OrderByHasBeenSet() const; /** * 获取事件规则ID * @return RuleId 事件规则ID * */ std::string GetRuleId() const; /** * 设置事件规则ID * @param _ruleId 事件规则ID * */ void SetRuleId(const std::string& _ruleId); /** * 判断参数 RuleId 是否已赋值 * @return RuleId 是否已赋值 * */ bool RuleIdHasBeenSet() const; /** * 获取返回数量,默认为20,最大值为100。 * @return Limit 返回数量,默认为20,最大值为100。 * */ int64_t GetLimit() const; /** * 设置返回数量,默认为20,最大值为100。 * @param _limit 返回数量,默认为20,最大值为100。 * */ void SetLimit(const int64_t& _limit); /** * 判断参数 Limit 是否已赋值 * @return Limit 是否已赋值 * */ bool LimitHasBeenSet() const; /** * 获取分页偏移量,默认为0。 * @return Offset 分页偏移量,默认为0。 * */ int64_t GetOffset() const; /** * 设置分页偏移量,默认为0。 * @param _offset 分页偏移量,默认为0。 * */ void SetOffset(const int64_t& _offset); /** * 判断参数 Offset 是否已赋值 * @return Offset 是否已赋值 * */ bool OffsetHasBeenSet() const; /** * 获取以升序还是降序的方式返回结果,可选值 ASC(升序) 和 DESC(降序) * @return Order 以升序还是降序的方式返回结果,可选值 ASC(升序) 和 DESC(降序) * */ std::string GetOrder() const; /** * 设置以升序还是降序的方式返回结果,可选值 ASC(升序) 和 DESC(降序) * @param _order 以升序还是降序的方式返回结果,可选值 ASC(升序) 和 DESC(降序) * */ void SetOrder(const std::string& _order); /** * 判断参数 Order 是否已赋值 * @return Order 是否已赋值 * */ bool OrderHasBeenSet() const; private: /** * 事件集ID */ std::string m_eventBusId; bool m_eventBusIdHasBeenSet; /** * 根据哪个字段进行返回结果排序,支持以下字段:AddTime(创建时间), ModTime(修改时间) */ std::string m_orderBy; bool m_orderByHasBeenSet; /** * 事件规则ID */ std::string m_ruleId; bool m_ruleIdHasBeenSet; /** * 返回数量,默认为20,最大值为100。 */ int64_t m_limit; bool m_limitHasBeenSet; /** * 分页偏移量,默认为0。 */ int64_t m_offset; bool m_offsetHasBeenSet; /** * 以升序还是降序的方式返回结果,可选值 ASC(升序) 和 DESC(降序) */ std::string m_order; bool m_orderHasBeenSet; }; } } } } #endif // !TENCENTCLOUD_EB_V20210416_MODEL_LISTTARGETSREQUEST_H_
b1d158297794f04e6ac449fcd1989c836fc9cf15
9be2b306a2c51316943ffc4dc9b1dc37c5606ab4
/数学与二进制运算/checkPowerOf2.cpp
bec1d7559b12a75894cc385c6f899ba1a86094be
[]
no_license
pengfei9403/Lintcode
4471862df5cb24bd2f4046f1ade69dd7cdc1c06f
3389e22fa650fe714917d49db74b665f77a5396f
refs/heads/master
2021-01-19T21:08:55.994377
2017-06-20T06:37:26
2017-06-20T06:37:26
88,614,281
0
0
null
null
null
null
UTF-8
C++
false
false
263
cpp
class Solution { public: /* * @param n: An integer * @return: True or false */ bool checkPowerOf2(int n) { // write your code here if(0 >= n){ return false ; } if(n & (n-1)){ return false ; }else{ return true ; } } };
afcbd7502fcece537b24ec32edc1ac3d0678ccc7
19079c088fc306ac773d4a6f7e85715a3fc8cc9d
/challenge/flutter/all_samples/material_aspectratio_2/linux/my_application.cc
aa3d93c76e911de4b62d2528424193c19ee05611
[ "Apache-2.0" ]
permissive
davidzou/WonderingWall
75929193af4852675209b21dd544cb8b60da5fa5
1060f6501c432510e164578d4af60a49cd5ed681
refs/heads/master
2022-11-03T22:33:12.340125
2022-10-14T08:12:14
2022-10-14T08:12:14
5,868,257
4
0
null
null
null
null
UTF-8
C++
false
false
3,742
cc
#include "my_application.h" #include <flutter_linux/flutter_linux.h> #ifdef GDK_WINDOWING_X11 #include <gdk/gdkx.h> #endif #include "flutter/generated_plugin_registrant.h" struct _MyApplication { GtkApplication parent_instance; char** dart_entrypoint_arguments; }; G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) // Implements GApplication::activate. static void my_application_activate(GApplication* application) { MyApplication* self = MY_APPLICATION(application); GtkWindow* window = GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); // Use a header bar when running in GNOME as this is the common style used // by applications and is the setup most users will be using (e.g. Ubuntu // desktop). // If running on X and not using GNOME then just use a traditional title bar // in case the window manager does more exotic layout, e.g. tiling. // If running on Wayland assume the header bar will work (may need changing // if future cases occur). gboolean use_header_bar = TRUE; #ifdef GDK_WINDOWING_X11 GdkScreen* screen = gtk_window_get_screen(window); if (GDK_IS_X11_SCREEN(screen)) { const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); if (g_strcmp0(wm_name, "GNOME Shell") != 0) { use_header_bar = FALSE; } } #endif if (use_header_bar) { GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); gtk_widget_show(GTK_WIDGET(header_bar)); gtk_header_bar_set_title(header_bar, "material_aspectratio_2"); gtk_header_bar_set_show_close_button(header_bar, TRUE); gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); } else { gtk_window_set_title(window, "material_aspectratio_2"); } gtk_window_set_default_size(window, 1280, 720); gtk_widget_show(GTK_WIDGET(window)); g_autoptr(FlDartProject) project = fl_dart_project_new(); fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); FlView* view = fl_view_new(project); gtk_widget_show(GTK_WIDGET(view)); gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); fl_register_plugins(FL_PLUGIN_REGISTRY(view)); gtk_widget_grab_focus(GTK_WIDGET(view)); } // Implements GApplication::local_command_line. static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) { MyApplication* self = MY_APPLICATION(application); // Strip out the first argument as it is the binary name. self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); g_autoptr(GError) error = nullptr; if (!g_application_register(application, nullptr, &error)) { g_warning("Failed to register: %s", error->message); *exit_status = 1; return TRUE; } g_application_activate(application); *exit_status = 0; return TRUE; } // Implements GObject::dispose. static void my_application_dispose(GObject* object) { MyApplication* self = MY_APPLICATION(object); g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); G_OBJECT_CLASS(my_application_parent_class)->dispose(object); } static void my_application_class_init(MyApplicationClass* klass) { G_APPLICATION_CLASS(klass)->activate = my_application_activate; G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; G_OBJECT_CLASS(klass)->dispose = my_application_dispose; } static void my_application_init(MyApplication* self) {} MyApplication* my_application_new() { return MY_APPLICATION(g_object_new(my_application_get_type(), "application-id", APPLICATION_ID, "flags", G_APPLICATION_NON_UNIQUE, nullptr)); }
ac7d761ca1b2cd61bba8d305fd04016abcffd3dd
4a643f56f470d8e0681c55af7d49809dee660b0c
/Diffeq/testcases/diffusion_timing.cpp
914d8e0449a20c865207810884e502b956a207e3
[]
no_license
HPCSEprojectBT/GEMM
c56d12d2a79e9e9b300ac8cf5a2579a376b54d6c
4db9aa04e27dfeb27edf9ad1aaa87b9517975aeb
refs/heads/master
2021-01-10T18:50:09.325186
2014-07-11T16:39:19
2014-07-11T16:39:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,077
cpp
#include <iostream> #include <mpi.h> #include "3dhpcmatrix.hpp" #include "vtk_writer.hpp" #include <math.h> #include "timer.h" using namespace std; const int t_max = 100000; double dt; void print_matrices(matrix<double> & m, int size, int rank) { for( int i = 0; i < size; ++i ) { MPI_Barrier( MPI_COMM_WORLD ); if ( i == rank ) { cout << "this is the matrix stored in rank " << rank << endl; cout << m; } } } int main (int argc, char **argv) { //-------------driver params---------------------------- int world_dim=3; int dims[3]={0,0,0}; int N = atoi(argv[1]); //target global number of DOFS in each direction int N_new; //total global number of DOFS after rounding int N_x, N_y, N_z; //DOFS per direction after rounding double L = 1.; //edgelength of simulated cube vector<double> dx(3,0); //discrete spacing in each direction vector<double> n(3,0); //local number of DOFS in x,y,z direction int local_dofs; //number of local dofs per matrix double init_heat = 77777777; int print = 1000; int max_runs = 10; Timer T; bool print_results = 0; char timing_filename[160]; //-------------------------------------------------------- //MPI Init and CartComm creationy MPI_Init(&argc, &argv); int size; int rank; MPI_Status status; MPI_Comm_size(MPI_COMM_WORLD,&size); MPI_Comm_rank(MPI_COMM_WORLD,&rank); sprintf(timing_filename, "./timing.out"); ofstream timing_out(timing_filename, ios::app); MPI_Comm Comm_Cart; //communicator with topology MPI_Dims_create(size,world_dim,dims); //fills the dims array automatically if(rank == 0){ cout << dims[0] << "\t " << dims[1] << "\t" << dims[2] << endl; } int *periodic = new int[world_dim]; for(unsigned i=0;i<world_dim;++i) periodic[i]=1; int reorder = 1; MPI_Cart_create(MPI_COMM_WORLD, world_dim, dims, periodic, reorder, &Comm_Cart); //creates the communicator int left, right, bottom, top, front, back, newrank; MPI_Comm_rank(Comm_Cart,&newrank); //new_rank is the rank in the cartesian communicator MPI_Cart_shift(Comm_Cart, 0, 1, &left, &right); MPI_Cart_shift(Comm_Cart, 2, 1, &bottom, &top); MPI_Cart_shift(Comm_Cart, 1, 1, &front, &back); //uncomment for testing neighbor distribution /* std::cout << "Rank " << rank << " has new rank " << newrank << " and neighbors " << left << ", " << right << ", " << top << ", " << bottom << ", " << front << ", " << back << std::endl; */ //compute (local) sizes and offsets: for (int i=0; i<world_dim; ++i){ //compute local matrix setting n[i]=ceil(double(N)/dims[i]); dx[i]=L/(n[i]*dims[i]); } //choose stable timestep dt = (dx[0]*dx[1]*dx[2])/10.; N_new = n[0]*n[1]*n[2]*size; //round up N N_x = n[0]*dims[0]; N_y = n[1]*dims[1]; N_z = n[2]*dims[2]; if (rank ==0) cout << "n_new:= " << N_new << endl; matrix<double> u(n[0]+2,n[1]+2,n[2]+2); //local matrix including ghost plains matrix<double> u_old(n[0]+2,n[1]+2,n[2]+2);//local matrix including ghost plains // find the rank closest to the middle int center[3] = {0,0,0}; center[0] = round(double(dims[0])/2.0)-1; center[1] = round(double(dims[1])/2.0)-1; center[2] = round(double(dims[2])/2.0)-1; int centerrank; MPI_Cart_rank(Comm_Cart,center,&centerrank); /* if(rank==0){ cout << "the center rank is: " << centerrank << endl; cout << "center: " << center[0] << "\t" << center[1] << "\t" << center[2] << endl; } */ //================================================================================== //----------------------------do several runs from here on ------------------------- //================================================================================== if (rank==0) timing_out << size << "\t" << N_new << "\t"; for (int run=0; run<max_runs; run++) { if (rank==0) cout << "performing run " << run << endl; //generate initial local matrizes without ghost cells for (int k=1; k<=n[2]; ++k) { for (int j=1; j<=n[1]; ++j) { for (int i=1; i<=n[0]; ++i) { if (rank == centerrank) u(i,j,k) = init_heat; //inital heat field else u(i,j,k) = 0; } } } //print initial matrix settup /* if (rank==0) cout << "Initial Matrices :" << endl; print_matrices(u, size, rank); */ MPI_Barrier( MPI_COMM_WORLD ); //if(rank==0) cout << "local Matrix creation done" << endl; //MPI TYPES AND STUFF-------------------------- //send left and right int lr_tag = 12; int rl_tag = 21; int bt_tag = 13; int tb_tag = 31; int fb_tag = 14; int bf_tag = 41; MPI_Datatype LR_TYPE; MPI_Datatype BT_TYPE; MPI_Datatype FB_TYPE; MPI_Type_vector(u.num_yz(),u.blocklength_yz(),u.stride_yz(), MPI_DOUBLE, &LR_TYPE); //prepare type for left/right sends MPI_Type_commit(&LR_TYPE); MPI_Type_contiguous(u.num_xy(),MPI_DOUBLE, &BT_TYPE); //prepare type for bottom/top sends MPI_Type_commit(&BT_TYPE); MPI_Type_vector(u.num_z(),u.blocklength_xz(),u.stride_xz(), MPI_DOUBLE, &FB_TYPE); //prepare type for front/back sends MPI_Type_commit(&FB_TYPE); //---------------------------------------------- // initial ghost cell distribution ---------------------------------------- //--------------------------------------------------------------------------------------------------- //LR send/recv // Send to the left, recieve from the right MPI_Sendrecv(&u.data_[1],1,LR_TYPE,left,lr_tag, &u.data_[u.num_x()-1],1,LR_TYPE,right,lr_tag, Comm_Cart, &status); // Send to the right, recieve from the left MPI_Sendrecv(&u.data_[u.num_x()-2],1,LR_TYPE,right,rl_tag, &u.data_[0],1,LR_TYPE,left,rl_tag, Comm_Cart, &status); //BT send/recv // Send to top, recieve from bottom MPI_Sendrecv(&u.data_[u.num_xy()],1,BT_TYPE,top,bt_tag, &u.data_[u.num_xy()*(u.num_z()-1)],1,BT_TYPE,bottom,bt_tag, Comm_Cart, &status); // Send to bottom, recieve from top MPI_Sendrecv(&u.data_[u.num_xy()*(u.num_z()-2)],1,BT_TYPE,bottom,tb_tag, &u.data_[0],1,BT_TYPE,top,tb_tag, Comm_Cart, &status); //FB send/recv // Send to front, recieve from back MPI_Sendrecv(&u.data_[u.num_x()],1,FB_TYPE,front,fb_tag, &u.data_[u.num_xy()-u.num_x()],1,FB_TYPE,back,fb_tag, Comm_Cart, &status); // Send to back, recieve from front MPI_Sendrecv(&u.data_[u.num_xy()-2*u.num_x()],1,FB_TYPE,back,fb_tag, &u.data_[0],1,FB_TYPE,front,fb_tag, Comm_Cart, &status); u_old = u; //if (rank==0) cout << "Initial Matrices after ghost cell shifting :" << endl; //print_matrices(u, size, rank); //print_matrices(u_old, size, rank); //---------------------------------------------END OF SENDING AND RECIEVING--------------------------------------------------------------- //------------------------------------------------------------------------------------------------------------------------------------------ //compute global index vectors //local vectors per local matrix local_dofs = n[0]*n[1]*n[2]; vector<double> ldxvals(local_dofs); vector<double> ldyvals(local_dofs); vector<double> ldzvals(local_dofs); vector<double> lfvals(local_dofs); //get coordinates of the process in cartesian grid int mycoords[3] ={0,0,0}; MPI_Cart_coords(Comm_Cart,rank,3,mycoords); //compute the offsets of the local coordinates w.r.t. global coords double offsetx, offsety, offsetz; offsetx = mycoords[0]*(n[0])*dx[0]; offsety = mycoords[1]*(n[1])*dx[1]; offsetz = (dims[2]-1-mycoords[2])*(n[2])*dx[2]; /* for(unsigned i=0; i< size; i++){ if(i==rank){ cout << "i am rank " << rank << endl; cout << "my local offsets are: " << offsetx << "\t" << offsety << "\t" << offsetz << endl; } MPI_Barrier( MPI_COMM_WORLD); }*/ //compute global x,y,z values for each process int cnt=0; for(double i=1; i<=(n[0]); i++){ for(double j=1;j<=(n[1]); j++){ for(double k=1; k<=(n[2]); k++){ ldxvals[cnt] = offsetx+(i-1)*dx[0]; ldyvals[cnt] = offsety+(j-1)*dx[1]; ldzvals[cnt] = offsetz+(k-1)*dx[2]; cnt++; } } } //------------------------START TIMESTEPPING ----------------------------------------------- //------------------------------------------------------------------------------------------ int print_counter = 0; vector<double> dxvals(N_new); vector<double> dyvals(N_new); vector<double> dzvals(N_new); vector<double> fvals(N_new); MPI_Barrier(MPI_COMM_WORLD); if (rank==0) T.tic(); //start timing for (int t=0; t<t_max; ++t){ //if (rank == 0) cout << "timestep " << t << endl; if(print_results && t%print==0){ //compute global heat values for output //local vectors per local matrix //compute global heat vals for each process int cnt=0; for(double i=1; i<=(n[0]); i++){ for(double j=1;j<=(n[1]); j++){ for(double k=1; k<=(n[2]); k++){ lfvals[cnt] = u(i,j,k); //cout << lfvals[cnt] << endl; cnt++; } } } MPI_Barrier( MPI_COMM_WORLD ); //Gather all the local data into global data for printing the solution if(rank==0) cout << "start gathering at timestep :" << t << endl; MPI_Gather(&ldxvals[0],ldxvals.size(), MPI_DOUBLE, &dxvals[0], ldxvals.size(), MPI_DOUBLE, 0, MPI_COMM_WORLD); MPI_Gather(&ldyvals[0],ldyvals.size(), MPI_DOUBLE, &dyvals[0], ldyvals.size(), MPI_DOUBLE, 0, MPI_COMM_WORLD); MPI_Gather(&ldzvals[0],ldzvals.size(), MPI_DOUBLE, &dzvals[0], ldzvals.size(), MPI_DOUBLE, 0, MPI_COMM_WORLD); MPI_Gather(&lfvals[0],lfvals.size(), MPI_DOUBLE, &fvals[0], lfvals.size(), MPI_DOUBLE, 0, MPI_COMM_WORLD); MPI_Barrier( MPI_COMM_WORLD ); //Gather all the local data into global data for printing the solution if(rank==0) cout << "finished gathering at timestep :" << t << endl; if (rank ==0) write_3d(dxvals, dyvals, dzvals, fvals, print_counter,N_x, N_y, N_z); print_counter++; //Gather all the local data into global data for printing the solution if(rank==0) cout << "print finished at timestep :" << t << endl; } MPI_Barrier( MPI_COMM_WORLD ); //update local matrix (timestep)--------------------------- //if(rank==0) cout << "compute timestep update: " << t << endl; double f = 0; //cout << "i am rank " << rank << "with f=" << f << endl; for(double i=1; i<=(n[0]); i++){ for(double j=1;j<=(n[1]); j++){ for(double k=1; k<=(n[2]); k++){ f=1./dx[0]*(-2.*u(i,j,k)+u(i+1,j,k)+u(i-1,j,k)); f+=1./dx[1]*(-2.*u(i,j,k)+u(i,j+1,k)+u(i,j-1,k)); f+=1./dx[2]*(-2.*u(i,j,k)+u(i,j,k+1)+u(i,j,k-1)); //cout << "f = " << f << endl; u_old(i,j,k)=u(i,j,k)+dt*f; } } } swap(u,u_old); //send ghost cells arround //--------------------------------------------------------------------------------------------------- //send left and right // Send to the left, recieve from the right MPI_Sendrecv(&u.data_[1],1,LR_TYPE,left,lr_tag, &u.data_[u.num_x()-1],1,LR_TYPE,right,lr_tag, Comm_Cart, &status); // Send to the right, recieve from the left MPI_Sendrecv(&u.data_[u.num_x()-2],1,LR_TYPE,right,rl_tag, &u.data_[0],1,LR_TYPE,left,rl_tag, Comm_Cart, &status); //BT send/recv // Send to top, recieve from bottom MPI_Sendrecv(&u.data_[u.num_xy()],1,BT_TYPE,top,bt_tag, &u.data_[u.num_xy()*(u.num_z()-1)],1,BT_TYPE,bottom,bt_tag, Comm_Cart, &status); // Send to bottom, recieve from top MPI_Sendrecv(&u.data_[u.num_xy()*(u.num_z()-2)],1,BT_TYPE,bottom,tb_tag, &u.data_[0],1,BT_TYPE,top,tb_tag, Comm_Cart, &status); //FB send/recv // Send to front, recieve from back MPI_Sendrecv(&u.data_[u.num_x()],1,FB_TYPE,front,fb_tag, &u.data_[u.num_xy()-u.num_x()],1,FB_TYPE,back,fb_tag, Comm_Cart, &status); // Send to back, recieve from front MPI_Sendrecv(&u.data_[u.num_xy()-2*u.num_x()],1,FB_TYPE,back,fb_tag, &u.data_[0],1,FB_TYPE,front,fb_tag, Comm_Cart, &status); } MPI_Barrier(MPI_COMM_WORLD); if (rank==0){ timing_out << T.toc(); if (run < max_runs -1 ) timing_out << "\t"; } } if (rank==0) timing_out << endl; MPI_Finalize(); }
d817710034609df5d8c65389ca7233ecbf984b51
ce6229f5915f9e6de1238861b4a940d61e56960b
/Sonder/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Runtime_Remoting_Contexts_Synchroni462987365.h
ca20ba4af5d980eb9d7bb8e1c64a0498deeea5a9
[ "Apache-2.0" ]
permissive
HackingForGood/GoogleyEyes
d9e36e3dffb4edbd0736ab49a764736a91ecebcf
a92b962ab220686794350560a47e88191e165c05
refs/heads/master
2021-04-15T10:03:59.093464
2017-06-25T17:32:52
2017-06-25T17:32:52
94,575,021
7
0
null
null
null
null
UTF-8
C++
false
false
1,964
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Object2689449295.h" // System.Runtime.Remoting.Messaging.IMessageSink struct IMessageSink_t2189618969; // System.Runtime.Remoting.Contexts.SynchronizationAttribute struct SynchronizationAttribute_t3073724998; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Remoting.Contexts.SynchronizedServerContextSink struct SynchronizedServerContextSink_t462987365 : public Il2CppObject { public: // System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.SynchronizedServerContextSink::_next Il2CppObject * ____next_0; // System.Runtime.Remoting.Contexts.SynchronizationAttribute System.Runtime.Remoting.Contexts.SynchronizedServerContextSink::_att SynchronizationAttribute_t3073724998 * ____att_1; public: inline static int32_t get_offset_of__next_0() { return static_cast<int32_t>(offsetof(SynchronizedServerContextSink_t462987365, ____next_0)); } inline Il2CppObject * get__next_0() const { return ____next_0; } inline Il2CppObject ** get_address_of__next_0() { return &____next_0; } inline void set__next_0(Il2CppObject * value) { ____next_0 = value; Il2CppCodeGenWriteBarrier(&____next_0, value); } inline static int32_t get_offset_of__att_1() { return static_cast<int32_t>(offsetof(SynchronizedServerContextSink_t462987365, ____att_1)); } inline SynchronizationAttribute_t3073724998 * get__att_1() const { return ____att_1; } inline SynchronizationAttribute_t3073724998 ** get_address_of__att_1() { return &____att_1; } inline void set__att_1(SynchronizationAttribute_t3073724998 * value) { ____att_1 = value; Il2CppCodeGenWriteBarrier(&____att_1, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
1eadaf11984c4f6395ff407dada9bd72c2ce1b5d
7b50b7deab7c96277eeee56636fa01ce74952a24
/RasberryPi/src/tanker_publisher.cpp
e168561c2fc5093b4e7411bb7f497f1df994d8e6
[]
no_license
Taiki-Ishigaki/hajimeteno_SLAM
3ee24ef8cf71b32239ef733c43f3d264e013afec
ed0a968018d6726f99aa0104b56c69bb733a6895
refs/heads/master
2020-09-27T17:12:37.110352
2020-01-09T07:30:34
2020-01-09T07:30:34
226,567,260
0
1
null
2019-12-29T15:37:14
2019-12-07T19:44:39
Python
UTF-8
C++
false
false
721
cpp
// // Created by yutaro on 19/12/05. // #include "ros/ros.h" #include "std_msgs/String.h" #include <tanker/driver.h> #include <sstream> #include <iostream> using namespace std; int main(int argc, char **argv){ ros::init(argc,argv,"publisher"); ros::NodeHandle nodeHandle; ros::Publisher publisher = nodeHandle.advertise<tanker::driver>("drive",10); ros::Rate loop_rate(10); string s; cin >> s; cout << s << endl; while (ros::ok()){ tanker::driver driver; driver.forward = "f"; driver.back = "b"; driver.right = "r"; driver.left = "l"; ROS_INFO("publish: %s", driver.forward.c_str()); publisher.publish(driver); ros::spinOnce(); loop_rate.sleep(); } return 0; }
84af783ea575e63eb405c5b4b1f178a286e35f39
3337487f520e3b4901b446159e802c081984780a
/source/floor.cpp
9e60c6f671af6a9a2f6bddcdadb9ff13020e2ed4
[]
no_license
joonalas/ProjectRogue
277e02f88a76f48ffee346a778853f17b14268b5
793e78022eeac98b18eb7ad6fe51265144bdc068
refs/heads/master
2018-12-09T13:05:49.491600
2017-12-11T01:23:57
2017-12-11T01:23:57
113,795,483
0
0
null
null
null
null
UTF-8
C++
false
false
481
cpp
#include <iostream> #include "mygame.h" void Floor :: setDimensionX(int x) { this -> x = x; } void Floor :: setDimensionY(int y) { this -> y = y; } int Floor :: getDimensionX() { return this -> x; } int Floor :: getDimensionY() { return this -> y; } //Constructor Floor :: Floor() { //set floor dimensions setDimensionX(5); setDimensionY(5); //allocate memory for blueprint this -> blueprint = new Terrain*[7]; }
37a9c8aa5f7945dae82d7906c0428c7327f30dd4
345b4f965b515a3387fdba062a075816398e384c
/xtt/lib/cow/src/cow_logwnav.cpp
cb96daa980e1b2eb815343e0abb6d2f09fd56214
[]
no_license
hfuhuang/proview
4fd0bf089aa6e3a303aea666652e5046cf5855d7
4172df2ae577ff3202e29f28e0afdbe0cc8780a6
refs/heads/master
2020-12-24T17:17:05.556911
2010-01-14T15:16:16
2010-01-14T15:16:16
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
12,925
cpp
/** * Proview $Id$ * Copyright (C) 2005 SSAB Oxelösund AB. * * 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 the program, if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. **/ /* co_logwnav.cpp -- History log window */ #include "glow_std.h" #include <stdio.h> #include <stdlib.h> #include "co_cdh.h" #include "co_time.h" #include "flow.h" #include "flow_browctx.h" #include "flow_browapi.h" #include "xnav_bitmap_save12.h" #include "xnav_bitmap_build12.h" #include "xnav_bitmap_package12.h" #include "xnav_bitmap_copy12.h" #include "xnav_bitmap_export12.h" #include "cow_logwnav.h" #include "cow_log.h" // // Free pixmaps // void CoLogWNavBrow::free_pixmaps() { brow_FreeAnnotPixmap( ctx, pixmap_save); brow_FreeAnnotPixmap( ctx, pixmap_build); brow_FreeAnnotPixmap( ctx, pixmap_package); brow_FreeAnnotPixmap( ctx, pixmap_copy); brow_FreeAnnotPixmap( ctx, pixmap_export); } // // Create pixmaps for leaf, closed map and open map // void CoLogWNavBrow::allocate_pixmaps() { flow_sPixmapData pixmap_data; int i; for ( i = 0; i < 9; i++) { pixmap_data[i].width =xnav_bitmap_save12_width; pixmap_data[i].height =xnav_bitmap_save12_height; pixmap_data[i].bits = (char *)xnav_bitmap_save12_bits; } brow_AllocAnnotPixmap( ctx, &pixmap_data, &pixmap_save); for ( i = 0; i < 9; i++) { pixmap_data[i].width =xnav_bitmap_build12_width; pixmap_data[i].height =xnav_bitmap_build12_height; pixmap_data[i].bits = (char *)xnav_bitmap_build12_bits; } brow_AllocAnnotPixmap( ctx, &pixmap_data, &pixmap_build); for ( i = 0; i < 9; i++) { pixmap_data[i].width =xnav_bitmap_package12_width; pixmap_data[i].height =xnav_bitmap_package12_height; pixmap_data[i].bits = (char *)xnav_bitmap_package12_bits; } brow_AllocAnnotPixmap( ctx, &pixmap_data, &pixmap_package); for ( i = 0; i < 9; i++) { pixmap_data[i].width =xnav_bitmap_copy12_width; pixmap_data[i].height =xnav_bitmap_copy12_height; pixmap_data[i].bits = (char *)xnav_bitmap_copy12_bits; } brow_AllocAnnotPixmap( ctx, &pixmap_data, &pixmap_copy); for ( i = 0; i < 9; i++) { pixmap_data[i].width =xnav_bitmap_export12_width; pixmap_data[i].height =xnav_bitmap_export12_height; pixmap_data[i].bits = (char *)xnav_bitmap_export12_bits; } brow_AllocAnnotPixmap( ctx, &pixmap_data, &pixmap_export); } // // Create nodeclasses // void CoLogWNavBrow::create_nodeclasses() { allocate_pixmaps(); // Create common-class brow_CreateNodeClass( ctx, "LogDefault", flow_eNodeGroup_Common, &nc_log); brow_AddAnnotPixmap( nc_log, 0, 0.2, 0.1, flow_eDrawType_Line, 2, 0); brow_AddAnnot( nc_log, 1.4, 0.6, 0, flow_eDrawType_TextHelvetica, 2, flow_eAnnotType_OneLine, 0); brow_AddAnnot( nc_log, 8, 0.6, 1, flow_eDrawType_TextHelvetica, 2, flow_eAnnotType_OneLine, 0); brow_AddAnnot( nc_log, 13, 0.6, 2, flow_eDrawType_TextHelvetica, 2, flow_eAnnotType_OneLine, 0); brow_AddAnnot( nc_log, 18, 0.6, 3, flow_eDrawType_TextHelvetica, 2, flow_eAnnotType_OneLine, 0); brow_AddAnnot( nc_log, 35, 0.6, 4, flow_eDrawType_TextHelvetica, 2, flow_eAnnotType_OneLine, 1); brow_AddFrame( nc_log, 0, 0, 35, 0.83, flow_eDrawType_LineGray, -1, 1); } void CoLogWNavBrow::brow_setup() { brow_sAttributes brow_attr; unsigned long mask; mask = 0; mask |= brow_eAttr_indentation; brow_attr.indentation = 0.5; mask |= brow_eAttr_annotation_space; brow_attr.annotation_space = 0.5; brow_SetAttributes( ctx, &brow_attr, mask); brow_SetCtxUserData( ctx, logwnav); brow_EnableEvent( ctx, flow_eEvent_MB1Click, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_MB1DoubleClick, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_MB3Press, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_MB3Down, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_SelectClear, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_ObjectDeleted, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_Key_Up, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_Key_Down, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_Key_PF3, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_Key_PageUp, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_Key_PageDown, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_ScrollUp, flow_eEventType_CallBack, CoLogWNav::brow_cb); brow_EnableEvent( ctx, flow_eEvent_ScrollDown, flow_eEventType_CallBack, CoLogWNav::brow_cb); } // // Backcall routine called at creation of the brow widget // Enable event, create nodeclasses and insert the root objects. // int CoLogWNav::init_brow_cb( FlowCtx *fctx, void *client_data) { CoLogWNav *logwnav = (CoLogWNav *) client_data; BrowCtx *ctx = (BrowCtx *)fctx; logwnav->brow = new CoLogWNavBrow( ctx, (void *)logwnav); logwnav->brow->brow_setup(); logwnav->brow->create_nodeclasses(); return 1; } CoLogWNav::CoLogWNav( void *l_parent_ctx, int l_show_item) : parent_ctx(l_parent_ctx), show_item(l_show_item) { } // // Delete ev // CoLogWNav::~CoLogWNav() { } CoLogWNavBrow::~CoLogWNavBrow() { free_pixmaps(); } // // Zoom // void CoLogWNav::zoom( double zoom_factor) { brow_Zoom( brow->ctx, zoom_factor); } // // Return to base zoom factor // void CoLogWNav::unzoom() { brow_UnZoom( brow->ctx); } // // Callbacks from brow // int CoLogWNav::brow_cb( FlowCtx *ctx, flow_tEvent event) { CoLogWNav *logwnav; ItemLog *item; if ( event->event == flow_eEvent_ObjectDeleted) { brow_GetUserData( event->object.object, (void **)&item); delete item; return 1; } brow_GetCtxUserData( (BrowCtx *)ctx, (void **) &logwnav); switch ( event->event) { case flow_eEvent_Key_Up: { brow_tNode *node_list; int node_count; brow_tObject object; int sts; brow_GetSelectedNodes( logwnav->brow->ctx, &node_list, &node_count); if ( !node_count) { sts = brow_GetLastVisible( logwnav->brow->ctx, &object); if ( EVEN(sts)) return 1; } else { if ( !brow_IsVisible( logwnav->brow->ctx, node_list[0], flow_eVisible_Partial)) { sts = brow_GetLastVisible( logwnav->brow->ctx, &object); if ( EVEN(sts)) return 1; } else { sts = brow_GetPrevious( logwnav->brow->ctx, node_list[0], &object); if ( EVEN(sts)) { if ( node_count) free( node_list); return 1; } } } brow_SelectClear( logwnav->brow->ctx); brow_SetInverse( object, 1); brow_SelectInsert( logwnav->brow->ctx, object); if ( !brow_IsVisible( logwnav->brow->ctx, object, flow_eVisible_Full)) brow_CenterObject( logwnav->brow->ctx, object, 0.25); if ( node_count) free( node_list); break; } case flow_eEvent_Key_Down: { brow_tNode *node_list; int node_count; brow_tObject object; int sts; brow_GetSelectedNodes( logwnav->brow->ctx, &node_list, &node_count); if ( !node_count) { sts = brow_GetFirstVisible( logwnav->brow->ctx, &object); if ( EVEN(sts)) return 1; } else { if ( !brow_IsVisible( logwnav->brow->ctx, node_list[0], flow_eVisible_Partial)) { sts = brow_GetFirstVisible( logwnav->brow->ctx, &object); if ( EVEN(sts)) return 1; } else { sts = brow_GetNext( logwnav->brow->ctx, node_list[0], &object); if ( EVEN(sts)) { if ( node_count) free( node_list); return 1; } } } brow_SelectClear( logwnav->brow->ctx); brow_SetInverse( object, 1); brow_SelectInsert( logwnav->brow->ctx, object); if ( !brow_IsVisible( logwnav->brow->ctx, object, flow_eVisible_Full)) brow_CenterObject( logwnav->brow->ctx, object, 0.75); if ( node_count) free( node_list); break; } case flow_eEvent_SelectClear: brow_ResetSelectInverse( logwnav->brow->ctx); break; case flow_eEvent_MB1Click: // Select double ll_x, ll_y, ur_x, ur_y; int sts; switch ( event->object.object_type) { case flow_eObjectType_Node: brow_MeasureNode( event->object.object, &ll_x, &ll_y, &ur_x, &ur_y); if ( event->object.x < ll_x + 1.0) { // Simulate doubleclick flow_tEvent doubleclick_event; doubleclick_event = (flow_tEvent) calloc( 1, sizeof(*doubleclick_event)); memcpy( doubleclick_event, event, sizeof(*doubleclick_event)); doubleclick_event->event = flow_eEvent_MB1DoubleClick; sts = CoLogWNav::brow_cb( ctx, doubleclick_event); free( (char *) doubleclick_event); return sts; } if ( brow_FindSelectedObject( logwnav->brow->ctx, event->object.object)) { brow_SelectClear( logwnav->brow->ctx); } else { brow_SelectClear( logwnav->brow->ctx); brow_SetInverse( event->object.object, 1); brow_SelectInsert( logwnav->brow->ctx, event->object.object); } break; default: brow_SelectClear( logwnav->brow->ctx); } break; case flow_eEvent_Key_PageDown: { brow_Page( logwnav->brow->ctx, 0.95); break; } case flow_eEvent_Key_PageUp: { brow_Page( logwnav->brow->ctx, -0.95); break; } case flow_eEvent_ScrollDown: { brow_Page( logwnav->brow->ctx, 0.10); break; } case flow_eEvent_ScrollUp: { brow_Page( logwnav->brow->ctx, -0.10); break; } case flow_eEvent_MB1DoubleClick: break; default: ; } return 1; } ItemLog::ItemLog( CoLogWNav *item_logwnav, const char *item_name, pwr_tTime item_time, char *item_category, char *item_user, char *item_comment, brow_tNode dest, flow_eDest dest_code): logwnav(item_logwnav), time(item_time) { char time_str[40]; char *s; type = logwitem_eItemType_Log; strncpy( category, item_category, sizeof(category)); strncpy( user, item_user, sizeof(user)); if ( item_comment) strncpy( comment, item_comment, sizeof(comment)); else strcpy( comment, ""); brow_CreateNode( logwnav->brow->ctx, (char *)"Log", logwnav->brow->nc_log, dest, dest_code, (void *) this, 1, &node); time_AtoAscii( &time, time_eFormat_ComprDateAndTime, time_str, sizeof(time_str)); time_str[17] = 0; int annot = 0; brow_SetAnnotation( node, annot++, time_str, strlen(time_str)); brow_SetAnnotation( node, annot++, category, strlen(category)); brow_SetAnnotation( node, annot++, user, strlen(user)); if ( logwnav->show_item) brow_SetAnnotation( node, annot++, item_name, strlen(item_name)); if ( item_comment) brow_SetAnnotation( node, annot++, item_comment, strlen(item_comment)); if ( (s = strstr( category, "Save"))) brow_SetAnnotPixmap( node, 0, logwnav->brow->pixmap_save); else if ( (s = strstr( category, "Build"))) brow_SetAnnotPixmap( node, 0, logwnav->brow->pixmap_build); else if ( (s = strstr( category, "Copy"))) brow_SetAnnotPixmap( node, 0, logwnav->brow->pixmap_copy); else if ( (s = strstr( category, "Package"))) brow_SetAnnotPixmap( node, 0, logwnav->brow->pixmap_package); else if ( (s = strstr( category, "Export"))) brow_SetAnnotPixmap( node, 0, logwnav->brow->pixmap_export); } void CoLogWNav::item_cb( void *ctx, pwr_tTime time, char *category, char *user, char *item, char *comment) { CoLogWNav *logwnav = (CoLogWNav *)ctx; new ItemLog( logwnav, item, time, category, user, comment, 0, flow_eDest_IntoLast); } void CoLogWNav::show( char categories[][20], char *item) { brow_SetNodraw( brow->ctx); CoLog::dget( categories, item, item_cb, this); brow_ResetNodraw( brow->ctx); brow_Redraw( brow->ctx, 0); // View last items brow_tObject last; int sts; sts = brow_GetLast( brow->ctx, &last); if ( ODD(sts)) brow_CenterObject( brow->ctx, last, 0.9); }
1ff0304bafde89ced0c853e8134436a1c4dd972f
d668209e9951d249020765c011a836f193004c01
/tools/pnnx/src/pass_ncnn/nn_InstanceNorm2d.cpp
828cc1fc4cd22cd578dc7e7761302f6bafac0648
[ "BSD-3-Clause", "Zlib", "BSD-2-Clause" ]
permissive
Tencent/ncnn
d8371746c00439304c279041647362a723330a79
14b000d2b739bd0f169a9ccfeb042da06fa0a84a
refs/heads/master
2023-08-31T14:04:36.635201
2023-08-31T04:19:23
2023-08-31T04:19:23
95,879,426
18,818
4,491
NOASSERTION
2023-09-14T15:44:56
2017-06-30T10:55:37
C++
UTF-8
C++
false
false
1,970
cpp
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy of the License at // // https://opensource.org/licenses/BSD-3-Clause // // 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 "pass_ncnn.h" namespace pnnx { namespace ncnn { class nn_InstanceNorm2d : public GraphRewriterPass { public: const char* match_pattern_graph() const { return R"PNNXIR(7767517 3 2 pnnx.Input input 0 1 input nn.InstanceNorm2d op_0 1 1 input out num_features=%num_features eps=%eps affine=%affine track_running_stats=%track_running_stats @weight @bias pnnx.Output output 1 0 out )PNNXIR"; } const char* type_str() const { return "InstanceNorm"; } const char* name_str() const { return "in"; } void write(Operator* op, const std::map<std::string, Parameter>& captured_params, const std::map<std::string, Attribute>& captured_attrs) const { op->params["0"] = captured_params.at("num_features"); op->params["1"] = captured_params.at("eps"); op->params["2"] = captured_params.at("affine").b ? 1 : 0; if (captured_params.at("affine").b) { op->attrs["0"] = captured_attrs.at("op_0.weight"); op->attrs["1"] = captured_attrs.at("op_0.bias"); } } }; REGISTER_GLOBAL_PNNX_NCNN_GRAPH_REWRITER_PASS(nn_InstanceNorm2d, 20) } // namespace ncnn } // namespace pnnx
6dded369bcda9e14dc00779e20caa0a4279024d2
30a88820f8c1e3159712aaffa553982271fa8688
/1.cpp
6c4e963f6beebbbf1119a59dadf99cca16e83b13
[]
no_license
Rajatkumar-123/face-detection
91e11b32a6acbe15e76db484b54904ae71ef9e7f
a5a6423e21d2163bd74c097d16cd29ac25518376
refs/heads/master
2020-09-04T21:07:10.497067
2019-11-06T02:41:51
2019-11-06T02:41:51
219,892,159
0
0
null
null
null
null
UTF-8
C++
false
false
4,127
cpp
#include "opencv2/objdetect/objdetect.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include<string> #include<sstream> #include <iostream> #include <stdio.h> #include<cstdlib> #include<sys/stat.h> #include<sys/types.h> using namespace std; using namespace cv; int main(int argv,const char** argc ) { int j=0; int a; std::ostringstream dirname; dirname<<"dataset"; string dir; dir = dirname.str(); mkdir(dir.c_str(),0750); VideoCapture capture; cout<<"enter 1 for webcam"<<endl; cout<<"enter 2 for open video from file"<<endl; cin>>a; if (a==1){ capture.open(0); if (!capture.isOpened()) throw "Error when reading file"; namedWindow("window", 1); } else if (a==2) { capture.open("(Tubidy.io)_Angreji_Wali_Madam_Full_Song_Kulwinder_Billa_Dr_Zeus_Shipra_Ft_Wamiqa_Gabbi_Latest_Song_2017.mp4"); if (!capture.isOpened()) throw "Error when reading file"; namedWindow("window", 1); } else {cout<<"wrong input"; } double fps = capture.set(CV_CAP_PROP_FPS, 45); double fp =capture.get(CV_CAP_PROP_FPS); cout << "Frames per second using video.get(CV_CAP_PROP_FPS) : " << fp << endl; for (;;) { Mat image; capture >> image; if (image.empty()) break; // Load Face cascade (.xml file) CascadeClassifier face_cascade; face_cascade.load( "/home/rajat/opencv/data/haarcascades/haarcascade_frontalface_alt.xml" ); if(!face_cascade.load("/home/rajat/opencv/data/haarcascades/haarcascade_frontalface_alt.xml")) { cerr<<"Error Loading XML file"<<endl; return 0; } //detect and display std::vector<Rect> faces; Mat frame_gray; Mat crop; Mat res; Mat gray; string text; stringstream sstm; /*cvtColor(image, frame_gray, COLOR_BGR2GRAY); equalizeHist(frame_gray, frame_gray);*/ // Detect faces face_cascade.detectMultiScale(image, faces, 1.1, 2, 0 | CASCADE_SCALE_IMAGE, Size(30, 30)); // Set Region of Interest cv::Rect roi_b; cv::Rect roi_c; size_t ic = 0; // ic is index of current element int ac = 0; // ac is area of current element size_t ib = 0; // ib is index of biggest element int ab = 0; // ab is area of biggest element for (ic = 0; ic < faces.size(); ic++) // Iterate through all current elements (detected faces) { roi_c.x = faces[ic].x; roi_c.y = faces[ic].y; roi_c.width = (faces[ic].width); roi_c.height = (faces[ic].height); ac = roi_c.width * roi_c.height; // Get the area of current element (detected face) roi_b.x = faces[ib].x; roi_b.y = faces[ib].y; roi_b.width = (faces[ib].width); roi_b.height = (faces[ib].height); ab = roi_b.width * roi_b.height; // Get the area of biggest element, at beginning it is same as "current" element if (ac > ab) { ib = ic; roi_b.x = faces[ib].x; roi_b.y = faces[ib].y; roi_b.width = (faces[ib].width); roi_b.height = (faces[ib].height); } //crop and resize image crop = image(roi_b); resize(crop, res, Size(182, 182), 0, 0, INTER_LINEAR); // This will be needed later while saving images Point pt1(faces[ic].x, faces[ic].y); // Display detected faces on main window Point pt2((faces[ic].x + faces[ic].height), (faces[ic].y + faces[ic].width)); rectangle(image, pt1, pt2, Scalar(0, 255, 0), 4, 8, 0); int frame_number; frame_number = capture.get(CV_CAP_PROP_POS_FRAMES); /*if (frame_number=frame_number-1) {j=0; j++;} else {j++;}*/ //show image imshow("dtected face",image); //write image std::ostringstream name; //name <<"/home/rajat/Desktop/new/images/" <<"framenumber_"<<frame_number<<"image_"<< j << ".jpg"; name<<"/home/rajat/Desktop/computer_vision/dataset/"<<"rajat_"<<j<<".png"; cv::imwrite( name.str(),res); j++; } if (waitKey(10) == 27) { cout << "Esc key is pressed by user. Stoppig the video" << endl; break; } } return 0; }
5bdee572bce08fbb30b9ff0fe3f0133ca8642c49
348e80a3b8c0c0a16fc36ef2d1034eac06da97aa
/PeraProcessDesigner/PeraProcessDesigner/CxArrayBase.h
5caa2443845e4c0a9d04a4bfde97bdb30df69ce7
[]
no_license
wyrover/WorkPlatForm
0e2c9127ccb6828857532eb11f96be3efc061fe9
f14a8cdd2bc3772ea4bd37a0381f5f8305a0a2c2
refs/heads/master
2021-01-16T21:16:13.672343
2016-01-17T08:59:01
2016-01-17T08:59:01
62,207,103
0
1
null
2016-06-29T07:56:29
2016-06-29T07:56:28
null
GB18030
C++
false
false
846
h
#pragma once #include "StlHeader.h" #include "CxDataType.h" class CCxArrayBase { public: static const int _MaxDimSize = 0xFFFF; static const int _MaxDim = 3; CCxArrayBase(int nDataType); virtual ~CCxArrayBase(void); //取得数据类型 int GetDataType(void) const { return m_DataType; } //取得维数 int GetDimCount(void); //生成单个数据字符串 BOOL ConvertDataToString( CString & strData, _variant_t & varSrc ); //根据数据类型,将字符串转化为数据 BOOL ConvertDataToVariant( _variant_t& varData, CString & strSrc ); int GetRealDataType(void) const ; // virtual BOOL CheckData( LPCTSTR lpszData ); protected: //提取维度字符串 BOOL ExtractDimStr(CString& strDim, CString& strSrc); //提取数据字符串 BOOL ExtractDataStr(CString& strData, CString& strSrc); protected: int m_DataType; };
33907cb525e91f4c68286429d67f6152f1bafc7f
d6cc251f91c18311c9d5e23e62831840891ecdfe
/include/Screen.h
bfa3861b1c538f58ae3200573438a0906e544736
[]
no_license
Staszek1903/projekt_grela
a94baacfd069e61d5ba67b8a9d9d107fd19ef0d3
06666af202dcb8f9b3807c6bbdd4f10cf099bfdd
refs/heads/master
2020-04-12T23:10:35.161857
2019-02-03T09:28:14
2019-02-03T09:28:14
162,811,051
2
1
null
2019-01-07T17:45:40
2018-12-22T12:54:02
C
UTF-8
C++
false
false
523
h
#ifndef SCREEN_H #define SCREEN_H #include "Bitmap.h" /** * Klasa okna */ class Screen : public Bitmap { public: /** * Tworzy okno o wymiarach width na height o nazwie name */ Screen(int width, int height, std::string name); virtual ~Screen(); Screen(const Screen &) = delete; Screen& operator= (const Screen&) = delete; /** * zamiana bufora */ void flip(); /** * rysuje bitmape w oknie w miejscu x,y */ }; #endif // SCREEN_H
a0ae9560444bb4c1f8d9e460692d768b5c629905
9fad4848e43f4487730185e4f50e05a044f865ab
/src/chrome/browser/extensions/api/image_writer_private/image_writer_utility_client.cc
d60993f8242f32a30e684e17741f94cc67d523a3
[ "BSD-3-Clause" ]
permissive
dummas2008/chromium
d1b30da64f0630823cb97f58ec82825998dbb93e
82d2e84ce3ed8a00dc26c948219192c3229dfdaa
refs/heads/master
2020-12-31T07:18:45.026190
2016-04-14T03:17:45
2016-04-14T03:17:45
56,194,439
4
0
null
null
null
null
UTF-8
C++
false
false
5,818
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 "base/bind.h" #include "base/location.h" #include "base/thread_task_runner_handle.h" #include "build/build_config.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/extensions/api/image_writer_private/image_writer_utility_client.h" #include "chrome/common/extensions/chrome_utility_extensions_messages.h" #include "chrome/grit/generated_resources.h" #include "content/public/browser/browser_thread.h" #include "ui/base/l10n/l10n_util.h" using content::BrowserThread; ImageWriterUtilityClient::ImageWriterUtilityClient() : task_runner_(base::ThreadTaskRunnerHandle::Get()) { } ImageWriterUtilityClient::~ImageWriterUtilityClient() {} void ImageWriterUtilityClient::Write(const ProgressCallback& progress_callback, const SuccessCallback& success_callback, const ErrorCallback& error_callback, const base::FilePath& source, const base::FilePath& target) { DCHECK_CURRENTLY_ON(BrowserThread::IO); StartHost(); progress_callback_ = progress_callback; success_callback_ = success_callback; error_callback_ = error_callback; if (!Send(new ChromeUtilityMsg_ImageWriter_Write(source, target))) { DLOG(ERROR) << "Unable to send Write message to Utility Process."; task_runner_->PostTask( FROM_HERE, base::Bind(error_callback_, "IPC communication failed")); } } void ImageWriterUtilityClient::Verify(const ProgressCallback& progress_callback, const SuccessCallback& success_callback, const ErrorCallback& error_callback, const base::FilePath& source, const base::FilePath& target) { DCHECK_CURRENTLY_ON(BrowserThread::IO); StartHost(); progress_callback_ = progress_callback; success_callback_ = success_callback; error_callback_ = error_callback; if (!Send(new ChromeUtilityMsg_ImageWriter_Verify(source, target))) { DLOG(ERROR) << "Unable to send Verify message to Utility Process."; task_runner_->PostTask( FROM_HERE, base::Bind(error_callback_, "IPC communication failed")); } } void ImageWriterUtilityClient::Cancel(const CancelCallback& cancel_callback) { DCHECK_CURRENTLY_ON(BrowserThread::IO); if (!utility_process_host_) { // If we haven't connected, there is nothing to cancel. task_runner_->PostTask(FROM_HERE, cancel_callback); return; } cancel_callback_ = cancel_callback; if (!Send(new ChromeUtilityMsg_ImageWriter_Cancel())) { DLOG(ERROR) << "Unable to send Cancel message to Utility Process."; } } void ImageWriterUtilityClient::Shutdown() { if (utility_process_host_ && Send(new ChromeUtilityMsg_ImageWriter_Cancel())) { utility_process_host_->EndBatchMode(); } // Clear handlers to not hold any reference to the caller. success_callback_ = base::Closure(); progress_callback_ = base::Callback<void(int64_t)>(); error_callback_ = base::Callback<void(const std::string&)>(); cancel_callback_ = base::Closure(); } void ImageWriterUtilityClient::StartHost() { if (!utility_process_host_) { scoped_refptr<base::SequencedTaskRunner> task_runner = base::MessageLoop::current()->task_runner(); utility_process_host_ = content::UtilityProcessHost::Create( this, task_runner.get())->AsWeakPtr(); utility_process_host_->SetName(l10n_util::GetStringUTF16( IDS_UTILITY_PROCESS_IMAGE_WRITER_NAME)); #if defined(OS_WIN) utility_process_host_->ElevatePrivileges(); #else utility_process_host_->DisableSandbox(); #endif utility_process_host_->StartBatchMode(); } } void ImageWriterUtilityClient::OnProcessCrashed(int exit_code) { task_runner_->PostTask( FROM_HERE, base::Bind(error_callback_, "Utility process crashed.")); } void ImageWriterUtilityClient::OnProcessLaunchFailed() { task_runner_->PostTask( FROM_HERE, base::Bind(error_callback_, "Process launch failed.")); } bool ImageWriterUtilityClient::OnMessageReceived(const IPC::Message& message) { bool handled = true; IPC_BEGIN_MESSAGE_MAP(ImageWriterUtilityClient, message) IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_ImageWriter_Succeeded, OnWriteImageSucceeded) IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_ImageWriter_Cancelled, OnWriteImageCancelled) IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_ImageWriter_Failed, OnWriteImageFailed) IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_ImageWriter_Progress, OnWriteImageProgress) IPC_MESSAGE_UNHANDLED(handled = false) IPC_END_MESSAGE_MAP() return handled; } bool ImageWriterUtilityClient::Send(IPC::Message* msg) { return utility_process_host_ && utility_process_host_->Send(msg); } void ImageWriterUtilityClient::OnWriteImageSucceeded() { if (!success_callback_.is_null()) { task_runner_->PostTask(FROM_HERE, success_callback_); } } void ImageWriterUtilityClient::OnWriteImageCancelled() { if (!cancel_callback_.is_null()) { task_runner_->PostTask(FROM_HERE, cancel_callback_); } } void ImageWriterUtilityClient::OnWriteImageFailed(const std::string& message) { if (!error_callback_.is_null()) { task_runner_->PostTask(FROM_HERE, base::Bind(error_callback_, message)); } } void ImageWriterUtilityClient::OnWriteImageProgress(int64_t progress) { if (!progress_callback_.is_null()) { task_runner_->PostTask(FROM_HERE, base::Bind(progress_callback_, progress)); } }
a98ed1eb6ea1bc0dac781c8d2eb5b0d13dad2643
d173ec70e3c5fe7f5c4d7a2b7fdf90736c3853c1
/UVA/686 Solution.cpp
5ff2bcc3010d912b5c4532ec6699a654ec3a635c
[]
no_license
thaherkhan/Online_Judge
c4122d659b874f1a343afdcfb5e2f18f820dc866
2de9cba9534cb6bc98ecbed2a576df3e8474e58c
refs/heads/main
2023-02-27T00:52:00.902164
2021-01-23T21:18:48
2021-01-23T21:18:48
332,282,369
0
0
null
null
null
null
UTF-8
C++
false
false
591
cpp
#include<bits/stdc++.h> using namespace std; #define ll long long #define size 1000005 ll a[1000005]; void sieve() { for(ll i=4; i<=size; i+=2) a[i]=1; for(ll i=3; i*i<=size; i+=2){ if(a[i]==0){ for(ll j=i*i; j<=size; j=j+(2*i)) a[j]=1; } } } int main() { ll n, coun=0; sieve(); cin>>n; while(n!=0){ for(ll i=2; i<=n/2; i++){ if(a[i]==0){ if(a[n-i]==0) coun++; } } cout<<coun<<endl; coun=0; cin>>n; } }
f9ed3edb5fee922906b407820871793f98f4b1d7
5d0de7daeb8e61e05f5321e1b8ce08ec29b89404
/emoguess/src/GuessProcessor.h
f62a4c7dbccd62488428998dde1b012802330f62
[]
no_license
vasiliy-bout/emorec
37681dee72177a0b419b3950b3e5d271f8a58d82
a30e49d7f8e4948bb9cb3625b1415de6176a0d35
refs/heads/master
2020-07-09T07:11:57.972619
2010-12-27T02:56:05
2010-12-27T02:56:05
1,184,248
0
0
null
null
null
null
UTF-8
C++
false
false
1,053
h
#ifndef __GUESSPROCESSOR_H__ #define __GUESSPROCESSOR_H__ #include <string> #include <vector> #include <map> #include <EmoCore.h> #include <EmoClass.h> class GuessProcessor { public: GuessProcessor(); std::string init(const std::string &classesFile, const std::string &coreConfigFile, const std::string &guiConfigFile); std::string processInput(const std::string &input); private: int readConfig(const std::map<std::string, std::string> &config); std::string processImage(const cv::Mat &image, char answer = '\0'); void displayResults(const cv::Mat &image, const cv::Rect &faceRect, const std::map<unsigned char, float> &results, char answer); int computeVerdict(const std::map<unsigned char, float> &results); bool tryProcessVideo(const std::string &input); bool tryProcessIndex(const std::string &input); static char category(const std::string &fileName); private: shared_ptr<EmoCore> myCore; std::vector<EmoClass> myClasses; float myThreshold; int myTotalFaces; int myPositiveFaces; }; #endif /* __GUESSPROCESSOR_H__ */
a575c0bdb3e249d1441ef87b000b2d762d857c4d
90c4c3485d78c416e9817035340edb2d1072701f
/MockCamera.cpp
e14cc0da073dc6341951376a12cd110d0c0dcae1
[ "Apache-2.0" ]
permissive
hwtwj/OpenARK
b57f333969ab5df561309a6132aca917bad83d15
b4cf8b4b18d4ea1b7d29ac8bb4bacec58ea829d7
refs/heads/master
2020-05-23T12:50:29.503057
2019-05-09T05:02:49
2019-05-09T05:02:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,332
cpp
#include "MockCamera.h" namespace ark { // Listing out all files in directory // https://www.boost.org/doc/libs/1_57_0/libs/filesystem/example/simple_ls.cpp MockCamera::MockCamera(const char* path) { std::string file_path(path); boost::filesystem::path depth_dir(file_path + "\\depth"); boost::filesystem::path rgb_dir(file_path + "\\rgb"); boost::filesystem::path joint_dir(file_path + "\\joint"); if (is_directory(depth_dir)) { boost::filesystem::directory_iterator end_iter; for (boost::filesystem::directory_iterator dir_itr(depth_dir); dir_itr != end_iter; ++dir_itr) { const auto& next_path = dir_itr->path().generic_string(); depth_files.emplace_back(next_path); } std::sort(depth_files.begin(), depth_files.end()); } if (is_directory(rgb_dir)) { boost::filesystem::directory_iterator end_iter; for (boost::filesystem::directory_iterator dir_itr(rgb_dir); dir_itr != end_iter; ++dir_itr) { const auto& next_path = dir_itr->path().generic_string(); rgb_files.emplace_back(next_path); } std::sort(rgb_files.begin(), rgb_files.end()); } if (is_directory(joint_dir)) { boost::filesystem::directory_iterator end_iter; for (boost::filesystem::directory_iterator dir_itr(joint_dir); dir_itr != end_iter; ++dir_itr) { const auto& next_path = dir_itr->path().generic_string(); joint_files.emplace_back(next_path); } std::sort(joint_files.begin(), joint_files.end()); } ASSERT(depth_files.size() == rgb_files.size() && rgb_files.size() == joint_files.size()); } // Reading from file OpenCV // https://docs.opencv.org/2.4/modules/core/doc/xml_yaml_persistence.html void MockCamera::update(cv::Mat & xyz_map, cv::Mat & rgb_map, cv::Mat & ir_map, cv::Mat & amp_map, cv::Mat & flag_map) { if (depth_files.empty()) { return; } const auto depth_path = depth_files.front(); const auto rgb_path = rgb_files.front(); const auto joint_path = joint_files.front(); depth_files.pop_front(); rgb_files.pop_front(); joint_files.pop_front(); xyz_map = cv::imread(depth_path, cv::IMREAD_ANYCOLOR | cv::IMREAD_ANYDEPTH); rgb_map = cv::imread(rgb_path); cv::FileStorage fs2(joint_path, cv::FileStorage::READ); fs2["joints"] >> joints; fs2.release(); } void MockCamera::update() { ASSERT(depth_files.size() == rgb_files.size(), "Depth map and RGB map are not in sync!"); if (depth_files.empty()) { return; } const auto depth_path = depth_files.front(); const auto rgb_path = rgb_files.front(); const auto joint_path = joint_files.front(); depth_files.pop_front(); rgb_files.pop_front(); joint_files.pop_front(); xyzMap = cv::imread(depth_path, cv::IMREAD_ANYCOLOR | cv::IMREAD_ANYDEPTH); rgbMap = cv::imread(rgb_path); cv::FileStorage fs2(joint_path, cv::FileStorage::READ); fs2["joints"] >> joints; fs2.release(); } cv::Mat& MockCamera::getXYZMap() { return xyzMap; } cv::Mat& MockCamera::getRGBMap() { return rgbMap; } std::vector<cv::Point>& MockCamera::getJoints() { return joints; } int MockCamera::getHeight() const { return 0; } int MockCamera::getWidth() const { return 0; } bool MockCamera::hasNext() const { return depth_files.size() != 0; } MockCamera::~MockCamera() { depth_files.clear(); rgb_files.clear(); joint_files.clear(); } }
8ed31d601a800f0bdc9f54b5d738abdd6f81af60
d8ebde7a6fc958ba6a8da75c24f32b5528102c23
/branches/plugins/fbcallmonitor/fbcallmonitor.h
c55ceba4c148b02dc3fab2deab81f3b6c4ad4060
[]
no_license
FFTEAM/NHD2
4e88e3775e7fbf682550a10782c210a216b16c98
742f9436e303f8ff454e38f29c0adf9c290f9546
refs/heads/master
2021-01-01T06:39:16.792446
2015-07-26T17:34:49
2015-07-26T17:34:49
39,747,233
0
1
null
null
null
null
UTF-8
C++
false
false
1,699
h
/* neutrinoHD2 project https://code.google.com/p/neutrinohd2/ $Id: fbcallmonitor.h 2014/01/22 mohousch Exp $ thx to BPanther License: GPL 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __fbcallmonitor__ #define __fbcallmonitor__ #include <plugin.h> #define CONFIG_FILE PLUGINDIR "/fbcallmonitor/fb.conf" class CFBCallMonitor : public CMenuTarget { private: std::string FB_IP_STRG; std::string FB_PORT_STRG; std::string FB_ZIEL1_STRG; std::string FB_ZIEL1N_STRG; std::string FB_ZIEL2_STRG; std::string FB_ZIEL2N_STRG; std::string FB_ZIEL3_STRG; std::string FB_ZIEL3N_STRG; std::string FB_BOXIP_STRG; std::string FB_BOXUSERNAME_STRG; std::string FB_BOXPASSWORD_STRG; int FB_DEBUG; int FB_ALLE; int FB_MONRING; int FB_MONDISCONNECT; int FB_MUTERING; int FB_POPUP; int FB_INVERS; void ReadSettings(); bool SaveSettings(); public: CFBCallMonitor(); ~CFBCallMonitor(); int exec(CMenuTarget *parent, const std::string &actionkey); void doMenu(); void hide(); }; #endif
[ "mohousch@2c6f6a7f-2313-61a7-ac6f-8ad46624f247" ]
mohousch@2c6f6a7f-2313-61a7-ac6f-8ad46624f247
6871b7668af2adeb9e4e9bc5f9632973002966d5
9fed49a53ae20ba85a5a09f762be27c41e14b3d2
/checkpoint_3/exe/main.cpp
7601d7775043466fb40a536dd36fbf085607c967
[ "MIT" ]
permissive
OxfordRSE/IntroCMakeCourse
11b176dfe237d96071619dd3104537717ea1d917
3eba68b9955b194a9d432d066c6422ccb006402e
refs/heads/main
2023-01-10T13:33:17.330908
2020-11-18T13:51:10
2020-11-18T13:51:10
311,488,014
1
2
MIT
2020-11-17T17:04:32
2020-11-09T23:09:13
C++
UTF-8
C++
false
false
344
cpp
#include <iostream> #include "functionality.hpp" #include "functionality_eigen.hpp" int main() { std::cout << "Checkpoint 3" << std::endl; std::cout << "Hypergeometric probability: " << hypergeometricPmf(10'000, 4'270, 300, 128) << std::endl; std::cout << "Random matrix: " << std::endl; printRandomMatrix(); return 0; }
6c2520f4ef8966cb54b7601a90779a916c2010c6
7b3d4dff3945584460dc474a8bb8fe8fd9bdb625
/exercises/6/Seminar_15 - Design patterns And Features in C++/Singleton/Singleton.cpp
ddabd4807c5d9fa8873ad29220ecbc995ea40346
[ "MIT" ]
permissive
triffon/oop-2019-20
305535b006cb19e96c9c58d47737a28135fc666e
ec3e5488859d8140de5aa5090811cd0e1318d952
refs/heads/master
2022-05-13T07:04:22.306200
2022-03-19T09:49:17
2022-03-19T09:49:45
241,474,762
21
11
null
null
null
null
UTF-8
C++
false
false
3,443
cpp
#include <iostream> #include <ctime> #include <random> #include <iomanip> class Singleton { static Singleton* instance; int data; // Private constructor so that no objects can be created. Singleton() { data = 0; } public: static Singleton* getInstance() { if ( !instance ) { instance = new Singleton; } return instance; } int getData() { return this->data; } void setData( int data ) { this->data = data; } }; //Initialize pointer to zero so that it can be initialized in first call to getInstance Singleton* Singleton::instance = nullptr; //================================================================================================= // From https://stackoverflow.com/questions/1008019/c-singleton-design-pattern class S { public: static S& getInstance() { static S instance; // Guaranteed to be destroyed. // Instantiated on first use. return instance; } private: S() { } // Constructor? (the {} brackets) are needed here. // C++ 03 // ======== // Don't forget to declare these two. You want to make sure they // are unacceptable otherwise you may accidentally get copies of // your singleton appearing. //S( S const& ); // Don't Implement //S& operator=( const S& ); // Don't implement // C++ 11 // ======= // We can use the better technique of deleting the methods // we don't want. public: S( const S& ) = delete; S& operator=( const S& ) = delete; // Note: Scott Meyers mentions in his Effective Modern // C++ book, that deleted functions should generally // be public as it results in better error messages // due to the compilers behavior to check accessibility // before deleted status }; //================================================================================================ // Author: Ivan Filipov #define _B 1 #define _KB 1024 * _B #define _MB 1024 * _KB #define _4MB 4 * _MB class SingletonBigData { private: char aLotOfData[_4MB]; public: SingletonBigData& operator=(const SingletonBigData&) = delete; SingletonBigData(const SingletonBigData&) = delete; private: SingletonBigData() = default; public: static SingletonBigData& getInstance() { static SingletonBigData instance; //creates the object only the first time //the getInstance method is invoked //here we can "see" the private constructor return instance; } void init() { srand(time(NULL)); for (int i = 0; i < _4MB; i++) aLotOfData[i] = rand() % 128; } void printContain() const { for (int i = 0; i < _4MB; i++) std::cout << std::setw(4) << aLotOfData[i]; } }; int main() { Singleton* s = Singleton::getInstance(); std::cout << s->getData() << std::endl; s->setData( 100 ); std::cout << s->getData() << std::endl; Singleton other( *s ); // we don't want to create other objects other.setData( 1000 ); std::cout << other.getData() << std::endl; //==================================================== S& obj = S::getInstance(); // do something with obj //==================================================== SingletonBigData& data = SingletonBigData::getInstance(); data.init(); data.printContain(); std::cout << "\n==============================\n"; SingletonBigData& newData = SingletonBigData::getInstance(); newData.printContain(); return 0; }
2ef8df614b602b98d67241023c93fc6ecae73b42
8583b5bfc594b994f51d24d012e92ae66bf2e5ea
/src/MaterialsLibrary/include/babylon/materialslibrary/terrain/terrain_vertex_fx.h
67bcb7f5aeec7ed370b85ffb85604541868a796f
[ "LicenseRef-scancode-free-unknown", "Apache-2.0" ]
permissive
samdauwe/BabylonCpp
84b8e51b59f04a847681a97fa6fe0a5c554e9e1f
3dad13a666299cbcf2e2db5b24575c19743e1000
refs/heads/master
2022-01-09T02:49:55.057544
2022-01-02T19:27:12
2022-01-02T19:27:12
77,682,359
309
41
Apache-2.0
2020-11-06T12:16:17
2016-12-30T11:29:05
C++
UTF-8
C++
false
false
2,071
h
#ifndef BABYLON_MATERIALS_LIBRARY_TERRAIN_TERRAIN_VERTEX_FX_H #define BABYLON_MATERIALS_LIBRARY_TERRAIN_TERRAIN_VERTEX_FX_H namespace BABYLON { extern const char* terrainVertexShader; const char* terrainVertexShader = R"ShaderCode( #ifdef GL_ES precision highp float; #endif // Attributes attribute vec3 position; #ifdef NORMAL attribute vec3 normal; #endif #ifdef UV1 attribute vec2 uv; #endif #ifdef UV2 attribute vec2 uv2; #endif #ifdef VERTEXCOLOR attribute vec4 color; #endif #include<bonesDeclaration> // Uniforms #include<instancesDeclaration> uniform mat4 view; uniform mat4 viewProjection; #ifdef DIFFUSE varying vec2 vTextureUV; uniform mat4 textureMatrix; uniform vec2 vTextureInfos; #endif #ifdef POINTSIZE uniform float pointSize; #endif // Output varying vec3 vPositionW; #ifdef NORMAL varying vec3 vNormalW; #endif #ifdef VERTEXCOLOR varying vec4 vColor; #endif #include<clipPlaneVertexDeclaration> #include<fogVertexDeclaration> #include<__decl__lightFragment>[0..maxSimultaneousLights] void main(void) { #include<instancesVertex> #include<bonesVertex> vec4 worldPos = finalWorld * vec4(position, 1.0); gl_Position = viewProjection * worldPos; vPositionW = vec3(worldPos); #ifdef NORMAL vNormalW = normalize(vec3(finalWorld * vec4(normal, 0.0))); #endif // Texture coordinates #ifndef UV1 vec2 uv = vec2(0., 0.); #endif #ifndef UV2 vec2 uv2 = vec2(0., 0.); #endif #ifdef DIFFUSE if (vTextureInfos.x == 0.) { vTextureUV = vec2(textureMatrix * vec4(uv, 1.0, 0.0)); } else { vTextureUV = vec2(textureMatrix * vec4(uv2, 1.0, 0.0)); } #endif // Clip plane #include<clipPlaneVertex> // Fog #include<fogVertex> // Shadows #include<shadowsVertex>[0..maxSimultaneousLights] // Vertex color #ifdef VERTEXCOLOR vColor = color; #endif // Point size #ifdef POINTSIZE gl_PointSize = pointSize; #endif } )ShaderCode"; } // end of namespace BABYLON #endif // end of BABYLON_MATERIALS_LIBRARY_TERRAIN_TERRAIN_VERTEX_FX_H
c08d3a6d6e6f85fe7c4a442f22e12eee10ff76f5
8ab931330fab2155e4818079efaffcc8c093c569
/chapter0/code_0_13.cpp
c58374ad983086d6bb6f9cd1ae11de055aeb47d3
[]
no_license
noeuli/insight
37f4436f45a17f51af3287186c151ff59f0e1041
b184041d0ea2e37e3ed84d9567ee65425b297c42
refs/heads/main
2023-06-21T06:37:57.148131
2021-08-03T15:15:14
2021-08-03T15:15:14
385,612,502
0
0
null
null
null
null
UTF-8
C++
false
false
302
cpp
// code -013 #include <stdio.h> #define N 10 int main() { int i, j, k, x = 0; for(i=0; i<N; i++) for(j=i; j<N; j++) for(k=j; k<N; k++) { printf("[%d %d %d] ", i, j, k); x++; } printf("%d\n", x); return 0; }
1c42df54a8cb20e29693cdc196cf8db88f755720
6ed471f36e5188f77dc61cca24daa41496a6d4a0
/SDK/DinoDeathHarvestingComponent_Base_classes.h
01b1abba1cb59ed8bf8eb798d6f7ad74b00e96a6
[]
no_license
zH4x-SDK/zARKSotF-SDK
77bfaf9b4b9b6a41951ee18db88f826dd720c367
714730f4bb79c07d065181caf360d168761223f6
refs/heads/main
2023-07-16T22:33:15.140456
2021-08-27T13:40:06
2021-08-27T13:40:06
400,521,086
0
0
null
null
null
null
UTF-8
C++
false
false
815
h
#pragma once // Name: ARKSotF, Version: 178.8.0 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass DinoDeathHarvestingComponent_Base.DinoDeathHarvestingComponent_Base_C // 0x0000 (0x0248 - 0x0248) class UDinoDeathHarvestingComponent_Base_C : public UAttackHarvestComponent_Base_C { public: static UClass* StaticClass() { static auto ptr = UObject::FindClass("BlueprintGeneratedClass DinoDeathHarvestingComponent_Base.DinoDeathHarvestingComponent_Base_C"); return ptr; } void ExecuteUbergraph_DinoDeathHarvestingComponent_Base(int EntryPoint); }; } #ifdef _MSC_VER #pragma pack(pop) #endif
ee660cd78e1494181b2994d98b8eaf571d75ac8a
92494691d9de19d64254d4a5e8c59c184773906f
/src/indirectmap.h
dab8e9d9b5eb07c5d415aafde45622324e9c55b7
[ "LicenseRef-scancode-proprietary-license", "MIT" ]
permissive
xagau/Placeholders-X16R
ffaad0c6b0cb24872932c6663c2d7ee4cc6c3c97
5f96720e1d7f5bd6d5b574d9f3c12485c265ef33
refs/heads/master
2022-01-24T03:58:04.558002
2022-01-13T22:21:18
2022-01-13T22:21:18
162,598,084
23
10
MIT
2021-04-23T03:09:01
2018-12-20T15:31:28
C++
UTF-8
C++
false
false
2,677
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2015 The Bitcoin Core developers // Copyright (c) 2017 The Raven Core developers // Copyright (c) 2018 The Placeholder Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef PLACEH_INDIRECTMAP_H #define PLACEH_INDIRECTMAP_H template <class T> struct DereferencingComparator { bool operator()(const T a, const T b) const { return *a < *b; } }; /* Map whose keys are pointers, but are compared by their dereferenced values. * * Differs from a plain std::map<const K*, T, DereferencingComparator<K*> > in * that methods that take a key for comparison take a K rather than taking a K* * (taking a K* would be confusing, since it's the value rather than the address * of the object for comparison that matters due to the dereferencing comparator). * * Objects pointed to by keys must not be modified in any way that changes the * result of DereferencingComparator. */ template <class K, class T> class indirectmap { private: typedef std::map<const K*, T, DereferencingComparator<const K*> > base; base m; public: typedef typename base::iterator iterator; typedef typename base::const_iterator const_iterator; typedef typename base::size_type size_type; typedef typename base::value_type value_type; // passthrough (pointer interface) std::pair<iterator, bool> insert(const value_type& value) { return m.insert(value); } // pass address (value interface) iterator find(const K& key) { return m.find(&key); } const_iterator find(const K& key) const { return m.find(&key); } iterator lower_bound(const K& key) { return m.lower_bound(&key); } const_iterator lower_bound(const K& key) const { return m.lower_bound(&key); } size_type erase(const K& key) { return m.erase(&key); } size_type count(const K& key) const { return m.count(&key); } // passthrough bool empty() const { return m.empty(); } size_type size() const { return m.size(); } size_type max_size() const { return m.max_size(); } void clear() { m.clear(); } iterator begin() { return m.begin(); } iterator end() { return m.end(); } const_iterator begin() const { return m.begin(); } const_iterator end() const { return m.end(); } const_iterator cbegin() const { return m.cbegin(); } const_iterator cend() const { return m.cend(); } }; #endif // PLACEH_INDIRECTMAP_H
e572f2f81160df7a185752c8f42dbd1b4b369885
46a5bbac39e412da0c0b445e56a060487e026eb6
/src/primitives/block.h
fac7292faa599207937a6f39e0b596a946e59bc3
[ "MIT" ]
permissive
bomlinh/commacoin
83b646efaf77a424998f8d4186ab851add334df7
9f910c351aa6bb1d1eef81d5bc48d36a5a5e93c3
refs/heads/master
2020-07-27T22:30:50.507100
2019-08-28T03:31:00
2019-08-28T03:31:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,343
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2013 The Bitcoin developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2017-2018 The Comma developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_PRIMITIVES_BLOCK_H #define BITCOIN_PRIMITIVES_BLOCK_H #include "primitives/transaction.h" #include "keystore.h" #include "serialize.h" #include "uint256.h" /** The maximum allowed size for a serialized block, in bytes (network rule) */ static const unsigned int MAX_BLOCK_SIZE = 2000000; /** Nodes collect new transactions into a block, hash them into a hash tree, * and scan through nonce values to make the block's hash satisfy proof-of-work * requirements. When they solve the proof-of-work, they broadcast the block * to everyone and the block is added to the block chain. The first transaction * in the block is a special one that creates a new coin owned by the creator * of the block. */ class CBlockHeader { public: // header static const int32_t CURRENT_VERSION=4; int32_t nVersion; uint256 hashPrevBlock; uint256 hashMerkleRoot; uint32_t nTime; uint32_t nBits; uint32_t nNonce; CBlockHeader() { SetNull(); } ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(this->nVersion); nVersion = this->nVersion; READWRITE(hashPrevBlock); READWRITE(hashMerkleRoot); READWRITE(nTime); READWRITE(nBits); READWRITE(nNonce); } void SetNull() { nVersion = CBlockHeader::CURRENT_VERSION; hashPrevBlock.SetNull(); hashMerkleRoot.SetNull(); nTime = 0; nBits = 0; nNonce = 0; } bool IsNull() const { return (nBits == 0); } uint256 GetHash() const; int64_t GetBlockTime() const { return (int64_t)nTime; } }; class CBlock : public CBlockHeader { public: // network and disk std::vector<CTransaction> vtx; // ppcoin: block signature - signed by one of the coin base txout[N]'s owner std::vector<unsigned char> vchBlockSig; // memory only mutable CScript payee; mutable std::vector<uint256> vMerkleTree; CBlock() { SetNull(); } CBlock(const CBlockHeader &header) { SetNull(); *((CBlockHeader*)this) = header; } ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(*(CBlockHeader*)this); READWRITE(vtx); if(vtx.size() > 1 && vtx[1].IsCoinStake()) READWRITE(vchBlockSig); } void SetNull() { CBlockHeader::SetNull(); vtx.clear(); vMerkleTree.clear(); payee = CScript(); vchBlockSig.clear(); } CBlockHeader GetBlockHeader() const { CBlockHeader block; block.nVersion = nVersion; block.hashPrevBlock = hashPrevBlock; block.hashMerkleRoot = hashMerkleRoot; block.nTime = nTime; block.nBits = nBits; block.nNonce = nNonce; return block; } // ppcoin: two types of block: proof-of-work or proof-of-stake bool IsProofOfStake() const { return (vtx.size() > 1 && vtx[1].IsCoinStake()); } bool IsProofOfWork() const { return !IsProofOfStake(); } bool SignBlock(const CKeyStore& keystore); bool CheckBlockSignature() const; std::pair<COutPoint, unsigned int> GetProofOfStake() const { return IsProofOfStake()? std::make_pair(vtx[1].vin[0].prevout, nTime) : std::make_pair(COutPoint(), (unsigned int)0); } // Build the in-memory merkle tree for this block and return the merkle root. // If non-NULL, *mutated is set to whether mutation was detected in the merkle // tree (a duplication of transactions in the block leading to an identical // merkle root). uint256 BuildMerkleTree(bool* mutated = NULL) const; std::vector<uint256> GetMerkleBranch(int nIndex) const; static uint256 CheckMerkleBranch(uint256 hash, const std::vector<uint256>& vMerkleBranch, int nIndex); std::string ToString() const; void print() const; }; /** Describes a place in the block chain to another node such that if the * other node doesn't have the same branch, it can find a recent common trunk. * The further back it is, the further before the fork it may be. */ struct CBlockLocator { std::vector<uint256> vHave; CBlockLocator() {} CBlockLocator(const std::vector<uint256>& vHaveIn) { vHave = vHaveIn; } ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { if (!(nType & SER_GETHASH)) READWRITE(nVersion); READWRITE(vHave); } void SetNull() { vHave.clear(); } bool IsNull() { return vHave.empty(); } }; #endif // BITCOIN_PRIMITIVES_BLOCK_H
b270dcf1506db486a13de3a85e0774f81885f7ac
46b4252a258c1183c481652af9313b01b08c1647
/RenderingFluidParticles/utility.cpp
75ed1a481c2c92f319941a6de411006d464fa112
[]
no_license
knut0815/fluid_simulation_using_sph
8398dea125e32d0f4c43e088457371077687afb8
489e84bb5efeca50be36da6bbf234f5d99160d8d
refs/heads/master
2022-01-30T20:42:30.246648
2019-07-14T07:12:24
2019-07-14T07:12:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,830
cpp
#include "FluidSimulation.h" inline void CrossProduct(double *a, double *b, double *c) { c[0] = a[1] * b[2] - a[2] * b[1]; c[1] = a[2] * b[0] - a[0] * b[2]; c[2] = a[0] * b[1] - a[1] * b[0]; } inline void Normalize(double *a) { double length = sqrt(a[0]*a[0] + a[1]*a[1] + a[2]*a[2]); if(!length) return; double inv_length = 1.0/length; a[0] *= inv_length; a[1] *= inv_length; a[2] *= inv_length; } inline double DotProduct(double *a, double *b) { return a[0]*b[0] + a[1]*b[1] + a[2]*b[2]; } inline double DotProduct4D(double *a, double *b) { return a[0]*b[0] + a[1]*b[1] + a[2]*b[2] + a[3]*b[3]; } inline void GetArea(double *normal, double &area) { // assuming that "normal" is not normalized at this point area = 0.5 * sqrt(normal[0]*normal[0] + normal[1]*normal[1] + normal[2]*normal[2]); } inline double GetDistance(double *a, double *b) { return sqrt( pow(a[0]-b[0], 2.0) + pow(a[1]-b[1], 2.0) + pow(a[2]-b[2], 2.0) ); } inline double GetLength(double *a) { return sqrt(a[0]*a[0] + a[1]*a[1] + a[2]*a[2]); } inline void Swap(double &a, double &b) { double t = a; a = b; b = t; } inline double Max(double a, double b) { if(a > b) return a; else return b; } inline double Min(double a, double b) { if(a < b) return a; else return b; } inline bool SolveLinearSystem(double (*matrix)[4], double *rhs, double *solution) { // perform gaussian elimination for(int i = 0; i <= 3; i++){ double maxAbsoluteValue = -1.0; int pivot_index; // choose maximum "matrix[j][i]" as a pivot for(int j = i; j <= 3; j++){ if(fabs(matrix[j][i]) > maxAbsoluteValue){ maxAbsoluteValue = fabs(matrix[j][i]); pivot_index = j; } } // matrix is singular if(maxAbsoluteValue < 1.0e-6) return false; for(int j = i; j <= 3; j++) Swap(matrix[i][j], matrix[pivot_index][j]); Swap(rhs[i], rhs[pivot_index]); double scale = 1.0 / matrix[i][i]; for(int j = i+1; j <= 3; j++){ double pivot = -matrix[j][i]*scale; for(int k = 0; k <= i; k++) matrix[j][k] = 0.0; for(int k = i+1; k <= 3; k++){ if(fabs(matrix[i][k]) > 1.0e-6) matrix[j][k] += matrix[i][k] * pivot; else break; } rhs[j] += rhs[i] * pivot; } } // cerr << "diag " << matrix[0][0] << " " << matrix[1][1] << " " << matrix[2][2] << " " << matrix[3][3] << endl; // if(fabs(matrix[3][3]) < 1.0e-6) return false; for(int i = 3; i >= 0; i--){ solution[i] = 0.0; for(int j = i+1; j <= 3; j++) solution[i] += solution[j]*matrix[i][j]; solution[i] = (rhs[i]-solution[i])/matrix[i][i]; } return true; } inline void ComputeReflectionVector(double *normal, double *vector_in, double *reflection_vector) { double scale = 2.0 * fabs( DotProduct(vector_in, normal) ); for(int i = 0; i < 3; i++) reflection_vector[i] = vector_in[i] + scale*normal[i]; Normalize(reflection_vector); } inline void ComputeRefractionVector(double *normal, double *vector_in, double *refraction_vector) { double cos_angle = DotProduct(vector_in, normal); double angle_i, angle_r; if(cos_angle < 0.0){ // from air to water angle_i = acos( -cos_angle ); angle_r = asin( 0.7502*sqrt(1-cos_angle*cos_angle) ); }else{ // from water to air angle_r = acos(cos_angle); angle_i = asin( 1.333*sqrt(1-cos_angle*cos_angle) ); } double rotation_axis[3]; CrossProduct(normal, vector_in, rotation_axis); RotateAroundAxis(rotation_axis, angle_i-angle_r, vector_in, refraction_vector); } void RotateAroundAxis(double *rotation_axis, double theta, double *vec_in, double *vec_out) { // rotate "vec_in" around "rotation_axis" using quarternion Normalize(rotation_axis); double common_factor = sin(theta*0.5); double a = cos(theta*0.5); double b = rotation_axis[0] * common_factor; double c = rotation_axis[1] * common_factor; double d = rotation_axis[2] * common_factor; double mat[9] = { a*a+b*b-c*c-d*d, 2*(b*c-a*d), 2*(b*d+a*c), 2*(b*c+a*d), a*a-b*b+c*c-d*d, 2*(c*d-a*b), 2*(b*d-a*c), 2*(c*d+a*b), a*a-b*b-c*c+d*d }; for(int i = 0; i < 3; i++) vec_out[i] = 0.0; for(int i = 0; i < 3; i++){ for(int j = 0; j < 3; j++) vec_out[i] += mat[i*3+j] * vec_in[j]; } } bool ComputeRayBoxIntersection(double *org, double *dir, double *inv_dir, double *bbmin, double *bbmax, double &nearest_t, double *intersection, double *normal) { nearest_t = 1.0e6; int nearest_object_index = -1; for(int i = 0; i < 6; i++){ double t; switch(i){ case 0: //if(org[0] > bbmin[0] || dir[0] < 0.0) continue; t = (bbmin[0]-org[0])*inv_dir[0]; break; case 1: //if(org[0] < bbmax[0] || dir[0] > 0.0) continue; t = (bbmax[0]-org[0])*inv_dir[0]; break; case 2: //if(org[1] < bbmin[1] || dir[1] > 0.0) continue; t = (bbmin[1]-org[1])*inv_dir[1]; break; case 3: //if(org[1] < bbm || dir[1] > 0.0) continue; t = (bbmax[1]-org[1])*inv_dir[1]; break; case 4: //if(org[2] > -0.01 || dir[2] < 0.0) continue; t = (bbmin[2]-org[2])*inv_dir[2]; break; case 5: //if(org[2] < 0.19 || dir[2] > 0.0) continue; t = (bbmax[2]-org[2])*inv_dir[2]; break; } if(t > 1.0e-6 && t < nearest_t){ double intersect_1, intersect_2; switch(i){ case 0: case 1: intersect_1 = org[1]+dir[1]*t; intersect_2 = org[2]+dir[2]*t; if(intersect_1 > bbmin[1] && intersect_1 < bbmax[1] && intersect_2 > bbmin[2] && intersect_2 < bbmax[2]){ nearest_t = t; nearest_object_index = i; } break; case 2: case 3: intersect_1 = org[0]+dir[0]*t; intersect_2 = org[2]+dir[2]*t; if(intersect_1 > bbmin[0] && intersect_1 < bbmax[0] && intersect_2 > bbmin[2] && intersect_2 < bbmax[2]){ nearest_t = t; nearest_object_index = i; } break; case 4: case 5: intersect_1 = org[0]+dir[0]*t; intersect_2 = org[1]+dir[1]*t; if(intersect_1 > bbmin[0] && intersect_1 < bbmax[0] && intersect_2 > bbmin[1] && intersect_2 < bbmax[1]){ nearest_t = t; nearest_object_index = i; } break; } } // if(t > 0.0 && t < nearest_t){ } // for(int i = 0; i < 6; i++){ // ray does not intersect with this box if(nearest_object_index == -1) return false; for(int i = 0; i < 3; i++) intersection[i] = org[i] + dir[i]*nearest_t; switch(nearest_object_index){ case 0: normal[0] = -1.0; normal[1] = 0.0; normal[2] = 0.0; break; case 1: normal[0] = 1.0; normal[1] = 0.0; normal[2] = 0.0; break; case 2: normal[0] = 0.0; normal[1] = -1.0; normal[2] = 0.0; break; case 3: normal[0] = 0.0; normal[1] = 1.0; normal[2] = 0.0; break; case 4: normal[0] = 0.0; normal[1] = 0.0; normal[2] = -1.0; break; case 5: normal[0] = 0.0; normal[1] = 0.0; normal[2] = 1.0; break; } return true; } double random0to1() { static double invRAND_MAX = 1.0/RAND_MAX; return rand()*invRAND_MAX; } float* LoadPngData(WCHAR *filename, unsigned int &img_width, unsigned int &img_height) { Bitmap bitmap(filename); img_width = bitmap.GetWidth(); img_height = bitmap.GetHeight(); cerr << img_width << " " << img_height << endl; float *pixel_data = new float [img_width*img_height*3]; for(unsigned int i = 0; i < img_height; i++){ for(unsigned int j = 0; j < img_width; j++){ Color pixelColor; bitmap.GetPixel(j, i, &pixelColor); static float scale = 1.0/255.0; pixel_data[((img_height-1-i)*img_width+j)*3+0] = pixelColor.GetR() * scale; pixel_data[((img_height-1-i)*img_width+j)*3+1] = pixelColor.GetG() * scale; pixel_data[((img_height-1-i)*img_width+j)*3+2] = pixelColor.GetB() * scale; } } return pixel_data; } int GetEncoderClsid(const WCHAR* format, CLSID* pClsid) { UINT num = 0; // number of image encoders UINT size = 0; // size of the image encoder array in bytes ImageCodecInfo* pImageCodecInfo = NULL; GetImageEncodersSize(&num, &size); if(size == 0) return -1; // Failure pImageCodecInfo = (ImageCodecInfo*)(malloc(size)); if(pImageCodecInfo == NULL) return -1; // Failure GetImageEncoders(num, size, pImageCodecInfo); for(UINT j = 0; j < num; ++j) { if( wcscmp(pImageCodecInfo[j].MimeType, format) == 0 ) { *pClsid = pImageCodecInfo[j].Clsid; free(pImageCodecInfo); return j; // Success } } free(pImageCodecInfo); return -1; // Failure } void SaveImage(wchar_t *filename, int w, int h, float *buffer) { // assuming that GDI+ is already initialized. // Otherwise, this function fails. Bitmap output_img(w, h); for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ int pixel_index = (i*w+j)*3; Color color(255, Min(buffer[pixel_index], 1.0)*255, Min(buffer[pixel_index+1], 1.0)*255, Min(buffer[pixel_index+2], 1.0)*255); output_img.SetPixel(j, h-1-i, color); } } CLSID encoderClsid; // Get the CLSID of the PNG encoder. GetEncoderClsid(L"image/png", &encoderClsid); output_img.Save(filename, &encoderClsid, NULL); }
9055cfc2f22ac39ba25aefeb1bd4efcca8a7fe92
d070b4648f6bb8dd5bfc3ae7bf2874b15f468884
/src/treedec.hh
b44d96332a1992e173d5c654e5d1e8dfc8f65c84
[ "MIT" ]
permissive
gear/homlib
f2960b81b28ef7ff13f63bff5c3739fdd5aaf893
6c400e14cfdf9b64c38fd6820baa86de9bd6e91e
refs/heads/master
2020-09-01T23:23:41.797473
2020-05-03T07:18:01
2020-05-03T07:18:01
219,084,853
0
0
MIT
2019-11-02T00:55:46
2019-11-02T00:55:46
null
UTF-8
C++
false
false
5,100
hh
#pragma once #include <iostream> #include <fstream> #include <string> #include <vector> #include <queue> #include <tuple> #include <algorithm> #include "graph.hh" /* template <class T> std::ostream &operator<<(std::ostream &os, const std::vector<T> &v) { os << "["; for (int i = 0; i < v.size(); os << v[i++]) if (i > 0) os << " "; os << "]"; return os; } template <class T> std::ostream &operator<<(std::ostream &os, const std::vector<std::vector<T>> &v) { os << "["; for (int i = 0; i < v.size(); os << v[i++]) if (i > 0) os << std::endl << " "; os << "]"; return os; } */ struct NiceTreeDecomposition { enum { INTRODUCE, FORGET, JOIN }; std::vector<std::tuple<int,int,int>> nodes; int root; int type(int x) const { return std::get<0>(nodes[x]); } int vertex(int x) const { return std::get<1>(nodes[x]); } int child(int x) const { return std::get<2>(nodes[x]); } int left(int x) const { return std::get<1>(nodes[x]); } int right(int x) const { return std::get<2>(nodes[x]); } bool isLeaf(int x) const { return type(x) == INTRODUCE && child(x) == -1; } bool isIntroduce(int x) const { return type(x) == INTRODUCE; } bool isJoin(int x) const { return type(x) == JOIN; } bool isForget(int x) const { return type(x) == FORGET; } void display() { display(root, 0); } void display(int x, int tab) { if (x == -1) return; if (type(x) == INTRODUCE) { std::cout << std::string(tab, ' ') << x << ": Introduce " << vertex(x) << std::endl; display(child(x), tab+2); } else if (type(x) == FORGET) { std::cout << std::string(tab, ' ') << x << ": Forget " << vertex(x) << std::endl; display(child(x), tab+2); } else if (type(x) == JOIN) { std::cout << std::string(tab, ' ') << x << ": Join" << std::endl; display(left(x), tab+2); display(right(x), tab+2); } } }; // Greedy Elimination Ordering NiceTreeDecomposition niceTreeDecomposition(Graph G) { // utility functions auto set_difference = [&](std::vector<int> A, std::vector<int> B) { std::vector<int> C; std::set_difference(A.begin(), A.end(), B.begin(), B.end(), std::back_inserter(C)); return C; }; auto set_union = [&](std::vector<int> A, std::vector<int> B) { std::vector<int> C; std::set_union(A.begin(), A.end(), B.begin(), B.end(), std::back_inserter(C)); return C; }; // implementation int n = G.n; std::vector<std::vector<int>> nbh = G.adj; for (int u = 0; u < n; ++u) { nbh[u].push_back(u); sort(nbh[u].begin(), nbh[u].end()); nbh[u].erase(unique(nbh[u].begin(), nbh[u].end()), nbh[u].end()); } // greedy elimination ordering std::vector<int> order; std::vector<std::vector<int>> X; std::priority_queue<std::pair<int,int>, std::vector<std::pair<int,int>>, std::greater<std::pair<int,int>>> que; for (int u = 0; u < n; ++u) { que.push(std::make_pair(nbh[u].size(), u)); } while (!que.empty()) { auto [deg, u] = que.top(); que.pop(); if (deg != nbh[u].size()) continue; order.push_back(u); bool is_maximal = true; for (int i = 0; i < X.size(); ++i) { if (set_difference(nbh[u], X[i]).empty()) { is_maximal = false; break; } } if (is_maximal) X.push_back(nbh[u]); for (int v: nbh[u]) { if (u == v) continue; std::vector<int> U = set_union(nbh[u], nbh[v]); U.erase(std::remove(U.begin(), U.end(), u), U.end()); U.swap(nbh[v]); if (nbh[v].size() < U.size()) que.push(std::make_pair(nbh[v].size(), v)); } } /* for (int i = 0; i < X.size(); ++i) { std::cout << i << ": " << X[i] << std::endl; } */ // from elimination ordering to nice tree decomposition NiceTreeDecomposition NTD; std::vector<std::vector<int>> child(X.size()); std::vector<int> head(X.size(), -1); for (int i = 0; i < X.size(); ++i) { for (int j: child[i]) { for (int u: set_difference(X[j], X[i])) { NTD.nodes.push_back(std::make_tuple(NiceTreeDecomposition::FORGET, u, head[j])); head[j] = NTD.nodes.size() - 1; } for (int u: set_difference(X[i], X[j])) { NTD.nodes.push_back(std::make_tuple(NiceTreeDecomposition::INTRODUCE, u, head[j])); head[j] = NTD.nodes.size() - 1; } if (head[i] == -1) { head[i] = head[j]; } else { NTD.nodes.push_back(std::make_tuple(NiceTreeDecomposition::JOIN, head[i], head[j])); head[i] = NTD.nodes.size() - 1; } } if (head[i] == -1) { for (int u: X[i]) { NTD.nodes.push_back(std::make_tuple(NiceTreeDecomposition::INTRODUCE, u, head[i])); head[i] = NTD.nodes.size() - 1; } } for (int j = i+1; j < X.size(); ++j) { if (set_difference(X[i], X[j]).size() == 1) { child[j].push_back(i); break; } } } for (int u: X.back()) { NTD.nodes.push_back(std::make_tuple(NiceTreeDecomposition::FORGET, u, head.back())); head.back() = NTD.nodes.size() - 1; } NTD.root = head.back(); return NTD; }
e65064842410700c77fdbf6732be0bfb6648cb2f
9fa292d97ceb374068d355bd41097d0407d68bd3
/plugin/registration/rspfModelOptimizer.cpp
10dac955f216ebdac0dea6dcdc32075ab4954310
[]
no_license
mfkiwl/rspf_v2.0
4d90153b92cc416663c798e05f87e348ad8792ef
f22d2707b775a4776fc8359a255f39c26ecc96a3
refs/heads/master
2021-05-27T04:36:34.132569
2013-07-16T04:04:12
2013-07-16T04:04:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,836
cpp
//******************************************************************* // // License: LGPL // // See LICENSE.txt file in the top level directory for more details. // // Author: Frederic Claudel ([email protected]) // ICT4EO,Meraka Institute,CSIR // // Description: generic model optimization, high-level interface // //************************************************************************* #include "rspfModelOptimizer.h" #include <rspf/base/rspfXmlDocument.h> #include <rspf/base/rspfNotifyContext.h> #include <rspf/base/rspfEcefPoint.h> #include <rspf/base/rspfEcefVector.h> #include <rspf/base/rspfStringProperty.h> #include <rspf/base/rspfFilenameProperty.h> #include <rspf/projection/rspfOptimizableProjection.h> #include <rspf/projection/rspfProjectionFactoryRegistry.h> #include <vector> #include <algorithm> #include <cmath> #include <ctime> //for randomizing with time RTTI_DEF2(rspfModelOptimizer, "rspfModelOptimizer", rspfConnectableObject, rspfProcessInterface); rspfModelOptimizer::rspfModelOptimizer() : rspfConnectableObject(0, 0, 0), theTiesetFilename(""), theModelDefinitionString("rspfPolynomProjection{1 x y x2 xy y2 x3 y3 xy2 x2y z xz yz}"), theGeomOutputFilename("modopt.geom") { //randomize std::srand(std::time(0)); } bool rspfModelOptimizer::loadGMLTieSet(const rspfString& filepath) { // import GML SimpleTiePoints //open file and load full XML rspfXmlDocument gmlDoc; bool res = gmlDoc.openFile(filepath); if (!res) { rspfNotify(rspfNotifyLevel_WARN) << "WARNING: rspfModelOptimizer::loadGMLTieSet cannot open file "<<filepath<<"\n"; return false; } //parse XML structure for ONE set of tie point std::vector< rspfRefPtr< rspfXmlNode > > tieSetList; gmlDoc.findNodes(rspfString("/") + rspfTieGptSet::TIEPTSET_TAG, tieSetList); if (tieSetList.size() != 1) { rspfNotify(rspfNotifyLevel_WARN) << "WARNING: rspfModelOptimizer::loadGMLTieSet need exactly one element of type "<< rspfTieGptSet::TIEPTSET_TAG<<", found "<<tieSetList.size()<<"\n"; return false; } //get the TieSet object res = theTieSet.importFromGmlNode(tieSetList[0]); if (!res) { rspfNotify(rspfNotifyLevel_WARN) << "WARNING: rspfModelOptimizer::loadGMLTieSet error when decoding XML tie point info\n"; return false; } theTiesetFilename = filepath; return true; } bool rspfModelOptimizer::execute() { if(!setupModel(theModelDefinitionString)) { return false; } rspf_float64 variance_pix2; if(optimize(&variance_pix2, NULL)) //TBD: add target variance? { //display results with unit cout<<"RMS="<<std::sqrt(variance_pix2)<<" pixels"<<endl; if(theGeomOutputFilename!="") { if(!exportModel(theGeomOutputFilename)) return false; } } else { return false; } return true; } bool rspfModelOptimizer::optimize(rspf_float64* result_var_pix2, rspf_float64* target_var_pix2) { //init optional variance to error if (result_var_pix2!=NULL) *result_var_pix2 = -1.0; if(!theModel.valid()) return false; //build optimization proj rspfOptimizableProjection* opp = PTR_CAST(rspfOptimizableProjection, theModel.get()); if (!opp) return false; // get meter_per_pixel ratio double varRatio; if (opp->useForward()) { varRatio = 1.0; } else { //converts pixel variance (pix2) to image variance (m2) rspfDpt mpp(theModel->getMetersPerPixel()); varRatio = (mpp.x*mpp.x + mpp.y*mpp.y) / 2.0; } //check that enough info unsigned int minTPC = (opp->degreesOfFreedom()+1)/2; if (minTPC > theTieSet.size()) { rspfNotify(rspfNotifyLevel_WARN) << "WARNING: rspfModelOptimizer::optimize() should use more than "<<minTPC<<" tie points for model: "<<theModelDefinitionString<<"\n"; } //optimize (using optional target variance) rspf_float64 target_var; rspf_float64* ptarget_var = NULL; if (target_var_pix2) { target_var = (*target_var_pix2) * varRatio; ptarget_var = &target_var; } rspf_float64 variance = opp->optimizeFit(theTieSet, ptarget_var); if (variance<0) { rspfNotify(rspfNotifyLevel_WARN) << "WARNING: rspfModelOptimizer::optimize() failed optimization for "<<theModelDefinitionString<<"\n"; return false; } //convert to pixel2 variance rspf_float64 variance_pix2 = variance / varRatio; //normal exit : return optional variance if (result_var_pix2!=NULL) *result_var_pix2 = variance_pix2; return true; } bool rspfModelOptimizer::setupModel(const rspfString& description) { theModel = 0; rspfString argProj = description; argProj=argProj.after("{").trim(); if (argProj != "") { argProj = argProj.before("}"); argProj.trim(); } rspfString projName=description; projName = projName.before("{"); theModelDefinitionString = description; //create projection for rejection rspfProjection* inlierProj = rspfProjectionFactoryRegistry::instance()->createProjection(projName); if (!inlierProj) { rspfNotify(rspfNotifyLevel_FATAL) << "FATAL: rspfModelOptimizer::setupModel() can't create projection "<<projName<<"\n"; return false; } //check if it is an optimizable projection //TBD: create a factory instead, so to get lists? rspfOptimizableProjection* opp = PTR_CAST(rspfOptimizableProjection, inlierProj); if (!opp) { rspfNotify(rspfNotifyLevel_FATAL) << "FATAL: rspfModelOptimizer::setupModel() rejection projection is not optimizable "<<projName<<"\n"; return false; } //tune projection parameters if (argProj != "") { bool res = opp->setupOptimizer(argProj); if (!res) { rspfNotify(rspfNotifyLevel_FATAL) << "FATAL: rspfModelOptimizer::setupModel() projection cannot initialize with given args : "<<argProj<<"\n"; return false; } } theModel = inlierProj; return true; } bool rspfModelOptimizer::exportModel(const rspfFilename& geomFile)const { rspfKeywordlist rpc_kwl; if(!theModel.valid()) { return false; } theModel->saveState(rpc_kwl); rpc_kwl.write(geomFile); //normal exit return true; } void rspfModelOptimizer::setProperty(rspfRefPtr<rspfProperty> property) { if(!property.valid()) return; rspfString name = property->getName(); if(name=="model_definition") { setupModel(property->valueToString()); } else if(name=="gml_tieset_filename") { loadGMLTieSet(property->valueToString()); } else if(name=="geom_output_filename") { theGeomOutputFilename = rspfFilename(property->valueToString()); } } rspfRefPtr<rspfProperty> rspfModelOptimizer::getProperty(const rspfString& name)const { if(name == "model_definition") { return new rspfStringProperty(name, theModelDefinitionString); } else if(name == "geom_output_filename") { rspfFilenameProperty* filenameProp = new rspfFilenameProperty(name, theGeomOutputFilename); filenameProp->setIoType(rspfFilenameProperty::rspfFilenamePropertyIoType_OUTPUT); return filenameProp; } else if(name == "gml_tieset_filename") { rspfFilenameProperty* filenameProp = new rspfFilenameProperty(name, theTiesetFilename); filenameProp->setIoType(rspfFilenameProperty::rspfFilenamePropertyIoType_OUTPUT); return filenameProp; } return 0; } void rspfModelOptimizer::getPropertyNames(std::vector<rspfString>& propertyNames)const { propertyNames.push_back("model_definition"); propertyNames.push_back("gml_tieset_filename"); propertyNames.push_back("geom_output_filename"); }
5e3eee832e0bd678e58d4725756a025ca541f479
ce880f56b45214bee5d89ac0fe9d107dcb05eadd
/MyProject/AF_Plus/AF/AF_TestItem.h
8592b6116aa225ca0342561f893d45984af61d56
[]
no_license
trigrass2/R3
ed70a444131ae4b77a4b03d583b6ae1714ce313a
04709b6decc4cedf3cd3287e27f47187a17eb6e5
refs/heads/master
2021-09-22T20:26:05.796505
2018-09-15T08:27:32
2018-09-15T08:27:32
null
0
0
null
null
null
null
GB18030
C++
false
false
2,864
h
#pragma once #include "ccmBaseInterface.h" #include "OptionDlg.h" #include "TestItemInterface.h" #include "ofSFR.h" class AF_TestItem :public TestItemInterface { public: AF_TestItem(ccmBaseInterface* pInterface, LPCTSTR lpszName); ~AF_TestItem(void); int InitItem(); int Testing(); //子类重载测试代码放放在此函数 int Initialize(); //子类重载 初始化代码 int Finalize(); //子类重载 初始化 int LoadOption(); int SaveOption(); LPCTSTR GetReportHeads(); LPCTSTR GetReportLowLimit(); LPCTSTR GetReportHightLimit() ; LPCTSTR GetReportContents() ; private: OptionDlg* pDlg; int CamID; CString CamCode; public: int m_afErrCode; int m_afFrmDelayNum; CString m_afMode; int m_afFrmDelayCnt; int m_afStartCode; int m_afEndCode; int m_afMiniStartCode; int m_afMiniEndCode; int m_afStepCode; int m_afStepCnt; int m_afTargetCode; int m_afBestCode; int m_afFinalOtpCode; float m_afBestAv; int m_afPosiCnt; AF_STEP_DATA m_afStepData; CPoint m_sortRoi[20]; SFR_ROI_VALUE m_sfrRoiValue[21]; int m_afAeOldExpT; int m_afAeExpNum; int m_afAeExpCnt; int m_afAeTarget; int m_afAeRange; float m_aeBrightness; float m_aeFactor; int m_errCnt; int m_finalEndCnt; int m_finalChkCnt; vector<float> m_mtfValBuff[16]; vector<float> m_finalAvBuff[128]; public : float GetRoiAfValue(CString algorithm); void ShowRoiInformation(MTF_PARA mtfPara); void ShowSfrTestROI(int roiNum, CString type, int offsetX, int offsetY, int roiWidth, int roiHeight, CPoint* sortRoi, SFR_ROI_VALUE* sfrRoiValue); void ShowSfrTestMotoChartROI(int roiNum, int offsetX, int offsetY, int roiWidth, int roiHeight, CPoint roiCnPosi, float sfrVal); void ShowAllTargetNumber(CPoint* sortROI); void ShowAeRoiInfo(CRect* rc); void ShowMtfRoiInfo(MTF_PARA mtfPara); void AppendAfBurnFile(CString strAlgo, int cnt, int code, PSFR_ROI_VALUE roiVal); void AppendAfBurnFileForFinalCheck(CString strAlgo); float AE_GetCenterRoiBrightness(BYTE* pRaw8Buff, ImageInfo* pImgInfo, AE_PARA aePara, CRect* rc); void SaveMtfPara(); void GetMtfPara(); void SaveSquareChartSfrPara(); void GetSquareChartSfrPara(); void ShowSquareChartSfrInfoROI(int roiNum, CPoint tagPosi, int* roiType, CPoint* roiCnPosi, CSize roiSize, float* sfrValue, SQUARE_CHART_SFR_PARA sfrPara); void ShowXChartSfrInfoROI(int roiNum, CPoint tagPosi, CPoint* roiCnPosi, CSize roiSize, float* sfrValue, X_CHART_SFR_PARA sfrPara); float GetRoiAfValueForFinalCheck(CString algorithm); CStdioFile m_fileLogMsg; void SaveXChartSfrPara(); void GetXChartSfrPara(); float MedielFilterFor3(float a, float b, float c); void SaveMotoChartSfrPara(); void GetMotoChartSfrPara(); BOOL OV20880_Remosaic_FullSize_Raw10_DPC(USHORT *MIPI_Raw10BufferIn, USHORT *Raw10BufferOut); int ReadReg(int id, int addr); int OV20880_ReadOTPDPCData(int *OTP_DPC_Data); };
6a99b16efe2deff2ad6392961839b86fcbbbb0dc
678328ff5e7d80e31af75bcf9a29c061117a5208
/Scarab-Engine/Source/EntryPoint/WorldCraft/Gameplay/Items/ItemClasses/EquipmentItems/AccessoryItems.inl
3334191beaeb959f3691c117eab6ddefb2e311d7
[]
no_license
SyGame-Engine-Team/SyGame-Engine
48ead0234e92ddae5096e0b00edfbbd0bb484291
1e2e9f174ca6a19394d50b03eb54a3d2bc2066b7
refs/heads/master
2021-01-10T15:05:24.457349
2015-09-29T21:55:15
2015-09-29T21:55:15
43,390,724
4
1
null
null
null
null
UTF-8
C++
false
false
1,688
inl
///////////////////////////////////////////////////////////////////////////////// // File : EntryPoint/WorldCraft/Gameplay/Items/ItemClasses/EquipmentItems/AccessoryItems.inl ///////////////////////////////////////////////////////////////////////////////// // Version : 1.0a // Began Code : 29/05/2010 // Status : Alpha // Portability : Any ///////////////////////////////////////////////////////////////////////////////// // Description : WorldCraft, Gameplay, EquipmentItems : AccessoryItems ///////////////////////////////////////////////////////////////////////////////// // Part of Scarab-Engine, licensed under the // Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License // http://creativecommons.org/licenses/by-nc-nd/3.0/ ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// // Known Bugs : None. ///////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////// // AccessoryItem implementation ///////////////////////////////////////////////////////////////////////////////// // NeckItem implementation ///////////////////////////////////////////////////////////////////////////////// // BackItem implementation ///////////////////////////////////////////////////////////////////////////////// // BeltItem implementation ///////////////////////////////////////////////////////////////////////////////// // RingItem implementation ///////////////////////////////////////////////////////////////////////////////// // TrinketItem implementation
53dfa1aa2cd22eb976499ee12f5c520e614bc369
ace9ae6d4d1b80cbb8d0eccb3ffbc23853ff9248
/offline/Lecture1_Recursion/step_climb.cpp
21e9e2379698a21254071f9303302f39aac744a2
[]
no_license
malhotravasu/algoPlusPlus
847cc7360218f6aa8408dab135e246eab274faf0
5933a751eca22f37e39c05381f5835be390a6b9a
refs/heads/master
2020-04-12T20:44:35.818141
2020-04-04T20:45:10
2020-04-04T20:45:10
162,745,535
0
0
null
null
null
null
UTF-8
C++
false
false
629
cpp
#include <iostream> using namespace std; int stepClimb(int n, int k) { if (n == 0) return 1; if (n < 0) return 0; int result = 0; for (int i=1; i<=k; i++) result += stepClimb(n-i, k); return result; } int countStrings(int n) { if (n == 0) { return 0; } else if (n == 1) return 2; else if (n == 2) return 3; else return countStrings(n-1) + countStrings(n-2); } int main() { // int n, k; // cin >> n >> k; // cout << stepClimb(n, k) << '\n'; // int n; // cin >> n; // cout << countStrings(n) << '\n'; }
fe1505bbb2046bb62a80e5b5f15e2de338a49db9
0af50cd7794014cb918f4131ade2b72b889d5df7
/Point.h
32d23c447fa154399bc9f2fd22db32450c686fc0
[]
no_license
rdx789/Inheritance-in-action
4abc52aa17402b9de99b67d1f4807160f78803d4
c512fdd5045bbf3e6c7d651b9384d11d1e07967d
refs/heads/main
2023-06-18T12:02:59.372608
2021-07-25T10:12:26
2021-07-25T10:12:26
388,512,864
0
0
null
null
null
null
UTF-8
C++
false
false
373
h
#ifndef POINT_H #define POINT_H //#pragma once class Point { public: explicit Point(double x, double y); Point(const Point& other); virtual ~Point(); Point operator+(const Point& other) const; Point& operator+=(const Point& other); double getX() const; double getY() const; double distance(const Point& other) const; private: double _x; double _y; }; #endif
7c816bb95dafbe8c241b93bbe09d81733c5dc947
76133a21119194a3a5884293fcbae852aa3bc363
/mrViewer/src/core/pxrzImage.cpp
cfe87615844b861f7f5b7f083846a22de260338e
[]
no_license
RadyGo/mrviewer
760664295ad7abaa6d4d44200c9a2744d1b99eb0
180a4d6df6444b8f8d84021a10331ee034658a90
refs/heads/master
2022-11-07T05:55:14.879977
2020-06-25T03:46:07
2020-06-25T03:46:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,676
cpp
/* mrViewer - the professional movie and flipbook playback Copyright (C) 2007-2020 Gonzalo Garramuño 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, see <http://www.gnu.org/licenses/>. */ // Information taken from affine toolkit: // // When using the "zfile" driver to output a Z-file of 300x300, // I noticed that the size was about right for uncompressed IEEE // floating point data. Checking 300 * 300 * 4 equals 360000 // and the Z file size was 360136 it looked like the file format // could be just a header and the raw floating point data. // // It appears that the header has some 32bit number, xres and // yres followed by two transformation matrices and the IEEE // floats in big-endian form. #include <iostream> #include <limits> #if defined(WIN32) || defined(WIN64) # include <float.h> // for isnan(), finite() # include <winsock2.h> // for ntohs(), ntohl() # define isnanf(x) _isnan(x) # define isinff(x) !_finite(x) # undef max #else # include <netinet/in.h> // for ntohs(), ntohl() # include <cmath> // for isnan(), isinf() #endif #include <FL/Fl.H> #include <FL/fl_utf8.h> #include "mrvIO.h" #include "pxrzImage.h" #include "byteSwap.h" namespace { const unsigned kPIXAR_MAGIC = 0x2f0867ab; //! Struct used for header of a Pixar shadow map file struct shadowHeader { unsigned int magic; short width; short height; float m1[16]; float m2[16]; }; const char* kModule = "pxr"; } // namespace namespace mrv { using namespace std; /** * Constructor * */ pxrzImage::pxrzImage() : CMedia() { } /** * Destructor * */ pxrzImage::~pxrzImage() { } /*! Test a block of data read from the start of the file to see if it looks like the start of an .map file. This returns true if the data contains PXRZ's magic number (0x10) and a short of 1 in the as the number of components. */ bool pxrzImage::test(const boost::uint8_t *data, unsigned len) { if (!data || len < 7) return false; if ( ntohl( *((unsigned int*)data) ) != kPIXAR_MAGIC ) return false; return true; } /** * Fetch the shadow map image * * * @return true on success, false if not */ bool pxrzImage::fetch( mrv::image_type_ptr& canvas, const boost::int64_t frame ) { int dw, dh; FILE* f = fl_fopen( filename(), "rb" ); if ( !f ) { LOG_ERROR( "Could not open shadow map image." ); } shadowHeader header; size_t sum = fread( &header, sizeof(shadowHeader), 1, f ); if ( sum != 1 ) { LOG_ERROR( "Could not open shadow map image." ); fclose(f); return false; } dw = ntohs( header.width ); dh = ntohs( header.height ); image_size( dw, dh ); allocate_pixels( canvas, frame); if ( _num_channels == 0 ) { _layers.push_back( "Z Depth" ); _num_channels = 1; } _pixel_ratio = 1.0; _gamma = 1.0f; const char* ch = channel(); if ( !ch || (strcmp( ch, "Z Depth" ) != 0) ) { fclose(f); return true; } // Read pixel values size_t total = dw * dh; float* buf = new float[total]; sum = 0; while ( !feof(f) && (sum < total) ) { sum += fread( &buf[sum], sizeof(float), total, f ); } // Copy pixel values Pixel* pixels = (Pixel*)canvas->data().get(); for (int y = 0, i = 0; y < dh; ++y) { int offset = y * dw; for (int x = 0; x < dw; ++x, ++i) { float t = buf[offset + x]; MAKE_BIGENDIAN( t ); if ( isinf(t) || isnan(t) || t > 10000000000000000000000000.0f ) { pixels[i].r = pixels[i].g = pixels[i].b = pixels[i].a = std::numeric_limits<float>::quiet_NaN(); } else { pixels[i].r = pixels[i].g = pixels[i].b = t; pixels[i].a = 1.0f; } } } delete [] buf; fclose(f); return true; } } // namespace mrv
2288822d6a72b9939fb0b85e7a27dfc91c5bf707
7d137bbff04f7f3870c86101816943d7b8040f5f
/N-ary_Trie/code/windowsort.cpp
99d8d5520eed637bb42532396045be16b9b6a5ff
[ "MIT" ]
permissive
qzhsdu/DataStructureCourseDesign
3e78a33d1246a641271ce7416fcdbea068ef6fcf
ea8c1cd422714ca39f8100927f044159c58fc74e
refs/heads/master
2022-09-15T10:03:48.203149
2020-05-15T20:21:38
2020-05-15T20:21:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,310
cpp
#include "windowsort.h" #include "ui_windowsort.h" windowSort::windowSort(QWidget *parent) : QMainWindow(parent), ui(new Ui::windowSort) { ui->setupUi(this); this->setCentralWidget(ui->plainTextEdit); this->setWindowState(Qt::WindowMaximized); iniSignol(); } windowSort::~windowSort() { delete ui; } void windowSort::iniSignol() { connect(ui->actsortFrequency,&QAction::triggered,this,&windowSort::sortFrequency); connect(&threadA,&threadSortFrequency::result,this,&windowSort::sortFrequencyFinish); connect(ui->actsortTrie,&QAction::triggered,this,&windowSort::sortTrie); connect(ui->actSearchRow,&QAction::triggered,this,&windowSort::searchRow); connect(&threadA,&threadSortFrequency::update,this,&windowSort::updateProgressBar); connect(ui->actsortInsideFrequency,&QAction::triggered,this,&windowSort::sortInsideFrequency); connect(&threadB,&threadSortInsideFrequency::result,this,&windowSort::sortInsideFrequencyFinish); connect(&threadB,&threadSortInsideFrequency::update,this,&windowSort::updateProgressBarInside); connect(ui->actFont,&QAction::triggered,this,&windowSort::fontChange); } void windowSort::set(Trie * trie) { this->trie = trie; } void windowSort::sortFrequency() { DialogSearch* dialogSearch = new DialogSearch(this); Qt::WindowFlags flags = dialogSearch->windowFlags(); dialogSearch->setWindowFlags(flags | Qt::MSWindowsFixedSizeDialogHint); int ret = dialogSearch->exec(); if(ret != QDialog::Accepted) return; QString str = dialogSearch->str(); delete dialogSearch; char* ch; QByteArray ba = str.toLatin1(); // must ch=ba.data(); TrieNode* result; if(str == "") result = trie->pRoot; else result = trie->SearchNode(ch); if(result == NULL) { QString dlgTitle = "reslut"; QString strInfo = "无该节点"; QMessageBox::warning(this,dlgTitle,strInfo,QMessageBox::Ok,QMessageBox::NoButton); return; } label = new QLabel(); label->setMinimumWidth(150); progressBar = new QProgressBar(); progressBar->setMaximumWidth(1000); progressBar->setMinimum(0); progressBar->setMaximum(100); label->setText("各归并段生成中"); progressBar->setValue(0); ui->statusbar->addWidget(label); ui->statusbar->addWidget(progressBar); threadA.set(trie,result); threadA.start(); } void windowSort::sortFrequencyFinish(QString str) { threadA.wait(); output(str); QString dlgTitle = "reslut"; QString strInfo = "排序已完成"; QMessageBox::information(this,dlgTitle,strInfo,QMessageBox::Ok,QMessageBox::NoButton); delete label; label = NULL; delete progressBar; progressBar = NULL; } void windowSort::output(QString str) { ui->plainTextEdit->clear(); ui->plainTextEdit->appendPlainText(str); } void windowSort::sortTrie() { DialogSearch* dialogSearch = new DialogSearch(this); Qt::WindowFlags flags = dialogSearch->windowFlags(); dialogSearch->setWindowFlags(flags | Qt::MSWindowsFixedSizeDialogHint); int ret = dialogSearch->exec(); if(ret != QDialog::Accepted) return; QString str = dialogSearch->str(); delete dialogSearch; char* ch; QByteArray ba = str.toLatin1(); // must ch=ba.data(); TrieNode* result; if(str == "") result = trie->pRoot; else result = trie->SearchNode(ch); if(result == NULL) { QString dlgTitle = "warning"; QString strInfo = "没有所查询的字符串"; QMessageBox::warning(this,dlgTitle,strInfo,QMessageBox::Ok,QMessageBox::NoButton); return; } std::vector<SortItem> v; trie->sortPre(result,v); QString str1; for (std::vector<SortItem>::iterator i = v.begin();i != v.end();i++) str1 += QString(QLatin1String(i->word)) + ":" + QString::number(i->count) + "\t"; output(str1); } void windowSort::searchRow() { DialogSearch* dialogSearch = new DialogSearch(this); Qt::WindowFlags flags = dialogSearch->windowFlags(); dialogSearch->setWindowFlags(flags | Qt::MSWindowsFixedSizeDialogHint); int ret = dialogSearch->exec(); if(ret != QDialog::Accepted) return; QString str = dialogSearch->str(); delete dialogSearch; char* ch; QByteArray ba = str.toLatin1(); // must ch=ba.data(); TrieNode* result; result = trie->Search(ch); if(result == NULL) { QString dlgTitle = "warning"; QString strInfo = "没有所查询的字符串"; QMessageBox::warning(this,dlgTitle,strInfo,QMessageBox::Ok,QMessageBox::NoButton); return; } QString strRow; for(std::vector<int>::iterator iter = result->v.begin();iter != result->v.end();iter++) { strRow += QString::number(*iter) + "\n"; } QString dlgTitle = "reslut"; QString strInfo = "出现行数:\n" + strRow; QMessageBox::information(this,dlgTitle,strInfo,QMessageBox::Ok,QMessageBox::NoButton); } void windowSort::updateProgressBar(int progress,int type) { if(type == 1) label->setText("各归并段生成中"); else label->setText("各归并段归并中"); progressBar->setValue(progress); } void windowSort::sortInsideFrequency() { DialogSearch* dialogSearch = new DialogSearch(this); Qt::WindowFlags flags = dialogSearch->windowFlags(); dialogSearch->setWindowFlags(flags | Qt::MSWindowsFixedSizeDialogHint); int ret = dialogSearch->exec(); if(ret != QDialog::Accepted) return; QString str = dialogSearch->str(); delete dialogSearch; char* ch; QByteArray ba = str.toLatin1(); // must ch=ba.data(); TrieNode* result; if(str == "") result = trie->pRoot; else result = trie->SearchNode(ch); if(result == NULL) { QString dlgTitle = "reslut"; QString strInfo = "无该节点"; QMessageBox::warning(this,dlgTitle,strInfo,QMessageBox::Ok,QMessageBox::NoButton); return; } if(label != NULL) { delete label; label = NULL; } if(progressBar != NULL) { delete progressBar; progressBar = NULL; } label = new QLabel(); label->setMinimumWidth(150); progressBar = new QProgressBar(); progressBar->setMaximumWidth(1000); progressBar->setMinimum(0); progressBar->setMaximum(100); label->setText("排序中"); progressBar->setValue(0); ui->statusbar->addWidget(label); ui->statusbar->addWidget(progressBar); threadB.set(trie,result); threadB.start(); } void windowSort::sortInsideFrequencyFinish(QString str) { threadB.wait(); output(str); QString dlgTitle = "reslut"; QString strInfo = "排序已完成"; QMessageBox::information(this,dlgTitle,strInfo,QMessageBox::Ok,QMessageBox::NoButton); delete label; label = NULL; delete progressBar; progressBar = NULL; } void windowSort::updateProgressBarInside(int progress) { progressBar->setValue(progress); } void windowSort::fontChange() { QFont iniFont = ui->plainTextEdit->font(); bool ok = false; QFont font = QFontDialog::getFont(&ok,iniFont); if(ok) ui->plainTextEdit->setFont(font); }
fea2243e9ff06fe1d776e3e20afada4a34310efd
4db144c963de20229fafe0c1a8c9789ce3e091da
/utils/sigc++/adaptors/lambda/lambda.h
ffbaf5f709399eaa3965164da6376a4fb4b22428
[]
no_license
adderly/space_mess_SDL
97af9cfd8c6b282e6945294d63322ae9b67fcca0
73af9130b9f330aad5415dd2465c0eb86ee1bc42
refs/heads/master
2016-09-07T19:05:01.104163
2012-06-06T05:21:13
2012-06-06T05:21:13
2,865,103
0
1
null
null
null
null
UTF-8
C++
false
false
986
h
// -*- c++ -*- /* * Copyright 2002, The libsigc++ Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef _SIGC_LAMBDA_HPP_ #define _SIGC_LAMBDA_HPP_ #include "base.h" #include "select.h" #include "operator.h" #include "group.h" #endif /* _SIGC_LAMBDA_HPP_ */
d36176b54c81f5ed836b4c6a41515eb82c6450be
07834560a94f1617df35b057a26c3976e0e4f519
/VC2013MFC_windows_lib/src/MFC_windows_lib_VC2013/windows_lib/SSD_Definition.h
19f3db75f83bf07928ed431517f79f24d04eca3a
[]
no_license
liqing90/VC_Test_S_3
8d4a07988663251e2cb2b09e49414c82743b694f
75e6cfbfc54129b4e43bab677bba7f27f217ab59
refs/heads/master
2021-03-25T09:50:26.819830
2018-02-28T08:24:34
2018-02-28T08:24:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
33,063
h
#ifndef __SSD_DEFINITION__ #define __SSD_DEFINITION__ //------------------------------------------------------------------------------------------------- enum ENUM_FIRMWARE_MODE {UNKNOW_MODE, ROM_SAFE_MODE, BURNER_MODE, RDT_FW_MODE, PRODUCT_FW_MODE}; enum ENUM_READ_LOG_EXT_MODE {READ_LOG_EXT_NONE_SEGMENT, READ_LOG_EXT_SEGMENT}; // // for the Upgrade_FW_By_Burner of MP_USE_DATA_CONFIG_INFO structure // 0: normal MP flow // 1: use MP tool to upgrade fw by burner // 2: use AP tool to upgrade fw by burner // enum ENUM_UPGRADE_FW_FLOW {MP_NORMAL_FLOW, MP_UPGRADE_BY_BURNER, AP_UPGRADE_BY_BURNER}; const char ROM_SAFE_MODE_MODEL_NUMBER[] = "MRVL TSATA PART0"; // model number of rom safe mode const char RDT_FW_BOOT_MODEL_NUMBER[] = "RDT"; // model number of RDT firmware boot const char DOWNLOAD_BURNER_DONE_SIGNATURE_1[] = "Burner"; // a part of model number of download burner done const char DOWNLOAD_BURNER_DONE_SIGNATURE_2[] = "uBnrre"; // a part of model number of download burner done --> fw forget reverse high / low byte const char IMAGE_HEADER_SIGNATURE[] = "SSS_CONF"; const BYTE JEDEC_SIGNATURE[] = {0x4A, 0x45, 0x53, 0x44}; const char STATUS_A0_SIGNATURE[] = "3SSTATUS"; // burner status 0xA0 signature const char EC_HEADER[] = "ECT_DATA"; // erase count table header const char FD_HEADER[] = "FCT_DATA"; // factory defect table header const char GD_HEADER[] = "DFT_DATA"; // grown defect table header const UINT32 EC_ADDR = 0x000080DE; // erase count table address. read and write log ext address const UINT32 FD_ADDR = 0x000000DE; // factory defect table address. read and write log ext address const UINT32 GD_ADDR = 0x000040DE; // grown defect table address. read and write log ext address #define MAX_CH (2) #define MAX_CE (8) #define MAX_LUN (4) #define MAX_PLANE (4) #define MODEL_NUMBER_LEN (40) // unit: char #define SN_LEN (20) // unit: char #define FD_TABLE_SIZE (32) // factory defect table size. unit: sector #define GD_TABLE_SIZE (32) // grown defect table size. unit: sector #define EC_TABLE_SIZE (32) // erase count table size. unit: sector #define FLASH_ID_LENGTH (6) #define NAND_MAP_SIZE (64) // unit: udev_addr_t // // LOG_EXT_CONFIG_A0 512 bytes (burner status) // // SSS_Flag: #define BNR_NAND_PHY_CALI_FAIL (_BIT8) // nand py calibration fail #define BNR_READ_BACK_ERR (_BIT9) // write block info fail #define BNR_F_ROM_IMG_GOT (_BIT10) // get ROM image #define BNR_D_ERASE_TBL_DONE (_BIT11) // erase count table download doen #define BNR_D_LAT_DEF_TBL_DONE (_BIT12) // late defect table download done #define BNR_D_FDFT_TBL_DONE (_BIT13) // factory defetct table download done #define BNR_I_INITIAL_DONE (_BIT14) // initial device done #define BNR_E_ERASE_DONE (_BIT15) // erase done flag #define BNR_F_FW_GOT (_BIT17) // got FW image #define BNR_F_TL_GOT (_BIT18) // got TL image #define BNR_F_MR_FOUND (_BIT19) // Found MR #define BNR_F_REQ_FORCED_ABORT (_BIT20) // SATA Plug-out #define BNR_F_NV_ERR_NO_MEM (_BIT21) // original burner_start err flag // Burner_Start_Run_Status will be done, we need to check this flag #define BNR_F_NV_ERR_WERU0_ERR (_BIT22) // original burner_start err flag // Burner_Start_Run_Status will be done, we need to check this flag #define BNR_F_NV_ERR_VIRGIN (_BIT23) // Virgin flag (new card or no_MR) #define BNR_F_TOO_MANY_DEFECT (_BIT24) // too many defect flag // Burner_Start_Run_Status will be done, we need to check this flag #define BNR_F_FE_IMG_GOT (_BIT29) // get FE image // Burner_Start_Run_Status: #define BNR_F_STAGE_0 (0x80) #define BNR_F_STAGE_1 (0x40) #define BNR_F_STAGE_2 (0x20) #define BNR_F_STAGE_2_FORCE_ERASE (0x21) #define BNR_F_STAGE_2_DF_SCAN (0x22) #define BNR_F_STAGE_2_LATER_DF_SCAN (0x23) #define BNR_F_STAGE_2_ERASE_SAFE (0x24) #define BNR_F_STAGE_2_ERASE_NOSAFE (0x25) #define BNR_F_STAGE_2_PRE_PROGRAM (0x26) #define BNR_F_STAGE_3 (0x10) #define BNR_F_STAGE_4 (0x08) #define BNR_F_DONE (0xFF) #define BNR_F_ERR (0x00) // // RDT // enum { RDT_RESULT_PASS, // 0, no error RDT_RESULT_UNC_FAIL, // 1, Uncorrectable ECC Error RDT_RESULT_PRG_FAIL, // 2, Program Status Failed RDT_RESULT_ER_FAIL, // 3, Erase Status failed RDT_RESULT_OV_THR_FAIL, // 4, Ecc Error bits count is over the threshold RDT_RESULT_ORG_DEFECT, // 5, original defect block RDT_RESULT_OTHER_FAIL // 6, other faild }; #define MAX_RESULT_COUNT ((16384 - 128) / 16) const char RDT_RESULT_FULL_DIE_TLC_SIGNATURE[] = "TF"; // TLC full die const char RDT_RESULT_FULL_DIE_SLC_SIGNATURE[] = "SF"; // SLC full die const char RDT_RESULT_SAMPLING_TLC_SIGNATURE[] = "TS"; // TLC sampling const char RDT_RESULT_SAMPLING_SLC_SIGNATURE[] = "SS"; // SLC sampling const char RDT_RESULT_CYCLE_INFO_SIGNATURE[] = "CY"; // clycle info const char RDT_RESULT_POWER_CYCLE_SIGNATURE[] = "PC"; // power cycle // // _RDT_INI_INFO // const char RDT_INI_INFO_SIGNATURE[] = "RDT_INI"; #define RDT_INI_INFO_CONTENT_LENGTH (4096) // // WPB0 status // #define CHK_BLK_INFO_OK (_BIT0) #define CHK_BLK_INFO_GET_ERR (_BIT1) #define CHK_BLK_INFO_CRC_ERR (_BIT2) #define CHK_BLK_INFO_SIG_ERR (_BIT3) #define CHK_BLK_INFO_ERR (_BIT7) // // signature for UI parse log content // const char SIGNATURE_FOR_UI_PARSE[] = "For_Parse_Msg"; // // SStatus IPM (Interface Power Management) state // #define IPM_DEV_NOT_PRESETNT (0) #define IPM_ACTIVE_STATE (1) #define IPM_PARTIAL_STATE (2) #define IPM_SLUMBER_STATE (6) #define IPM_DEV_SLEEP_STATE (8) //------------------------------------------------------------------------------------------------- #pragma pack(1) // image header 64 bytes typedef struct _IMAGE_HEADER_CONFIG_INFO { char Signature[8]; UINT32 Version; UINT32 Select_Bit; UINT32 Auth; UINT32 Encrypt; UINT32 Num_Of_Section; UINT32 Section_Hdr_Size; UINT32 Section_Table_Offset; UINT32 Flash_Addr; UINT32 CRC; UINT32 Image_Size; BYTE Image_Type; BYTE Rsv[7]; UINT16 Ver_Major; UINT16 Ver_Minor; UINT16 Ver_OEM; UINT16 Ver_Build; } IMAGE_HEADER_CONFIG_INFO, *PIMAGE_HEADER_CONFIG_INFO; // NANA PHY calibration 184 bytes typedef struct _NAND_PHY_CALIBRATION_CONFIG_INFO { BYTE Rsv[184]; } NAND_PHY_CALIBRATION_CONFIG_INFO, *P_NAND_PHY_CALIBRATION_CONFIG_INFO; // SATA PHY patch 264 bytes typedef struct _SATA_PHY_PATCH_CONFIG_INFO { BYTE Signature[4]; UINT32 Size; BYTE Start[256]; } SATA_PHY_PATCH_CONFIG_INFO, *PSATA_PHY_PATCH_CONFIG_INFO; // ATA identify config 512 bytes typedef struct _ATA_IDENTIFY_CONFIG_INFO { BYTE Rsv1[14]; BYTE CFA[6]; char Serial_Number[SN_LEN]; BYTE Rsv2[6]; char Firmware_Revision[8]; // WORD[23] ~ WORD[26] char Model_Number[MODEL_NUMBER_LEN]; BYTE Rsv3[4]; UINT16 Capabilities; UINT16 Capabilities_Standby_Time; BYTE Free_Fall_Sensitivity_And_Reported[6]; BYTE Cylinder_Head_Sec_Per_Track[6]; BYTE Rsv4[4]; UINT16 Support_Conf; UINT32 Total_Number_Of_LBA; // WORD[60] ~ WORD[61] BYTE Rsv5[6]; UINT64 Transfer_Cycle_Time; BYTE Rsv6[12]; UINT16 NCQ_Depth; UINT16 SATA_Capabilities; //WORD[76] UINT16 STAT_Additional_Capabilities; UINT16 SATA_Features_Supported; //WORD[78] BYTE Rsv7[6]; BYTE Command_And_Feature_Sets_Supported[6]; BYTE Command_And_Feature_Sets_Supported_Or_Enabled[6]; BYTE Rsv8[12]; UINT16 Vendor_Recommended_Acoustic_Management_Value; BYTE Rsv9[10]; UINT64 Number_Of_User_Addressable_Logical_Sectors; // WORD[100] ~ WORD[103] BYTE Rsv10[4]; UINT16 Physical_Sector_Size; UINT16 Inter_Seek_Delay; BYTE WWN[8]; // world wide name. WORD[108] ~ WORD[111] BYTE Rsv11[14]; UINT32 Command_And_Feature_Sets_Supported_2; BYTE Rsv12[16]; BYTE Vendor_Specific[62]; BYTE RSV_CFA[16]; UINT16 Device_Nominal_From_Factor; BYTE Rsv13[2]; UINT64 Additional_Product_Identifier; BYTE Rsv14[4]; char Current_Media_Serial_Number[60]; UINT16 SCT_Command_Transport; BYTE Rsv15[46]; UINT64 Extended_Number_Of_User_Addressable_Sectors; UINT16 Min_Number_Of_512_Bytes_Data_Blocks; UINT16 Max_Number_Of_512_Bytes_Data_Blocks; BYTE Rsv16[38]; UINT16 CheckSum; } ATA_IDENTIFY_CONFIG_INFO, *PATA_IDENTIFY_CONFIG_INFO; // for Marvell use 512 bytes typedef struct _MARVELL_AREA_CONFIG_INFO { UINT32 User_Capacity_Size; // for 3s FW only BYTE PMU_Switch; // PMU BYTE OP7_Enable; // OP_Option BYTE Device_Sleep_Enable; // Device_Sleep_Enable BYTE HIPM_Enable; // HIPM_eanble BYTE DIPM_Enable; // DIPM_enable BYTE SMART_Switch; // SMART_Table_form BYTE Rsv1[2]; UINT32 PE_Count; // Target_PE_Count_TLC UINT32 User_FW_Version; // User_FW_Revision BYTE Enable_Empty_Page_Read_Retry; // bypass empty page read retry BYTE Enable_Power_cycle_Patch; // enable power cycle patch BYTE Rsv2[490]; } MARVELL_AREA_CONFIG_INFO, *PMARVELL_AREA_CONFIG_INFO; // JEDEC 512 bytes typedef struct _JEDEC_DATA_CONFIG_INFO { BYTE Parameter_Page_Signature_JESD[4]; UINT16 Revision_Number; UINT16 Feature_Supported; BYTE Optional_Commands_Supported[3]; UINT16 Secondary_Commands_Supported; BYTE Number_Of_Parameter_Pages; BYTE Rsv1[18]; BYTE Device_Manufacturer[12]; BYTE Device_Model[20]; BYTE JEDEC_Manufacturer_ID[6]; BYTE Rsv2[10]; UINT32 Number_Of_Data_Bytes_Per_Page; UINT16 Number_Of_Spare_Bytes_Per_Page; BYTE Rsv3[6]; UINT32 Number_Of_Pages_Per_Block; UINT32 Number_Of_Blocks_Per_Logical_Unit; BYTE Number_Of_Logical_Units; BYTE Number_Of_Address_Cycles; BYTE Number_Of_Bit_Per_Cell; BYTE Number_Of_Programs_Per_Page; BYTE Multi_Plane_Addressing; BYTE Multi_Plane_Operation_Attributes; BYTE Rsv4[38]; UINT16 Asynchronous_SDR_Speed_Grade; UINT16 Toggle_DDR_Speed_Grade; UINT16 Synchronous_DDR_Speed_Grade; BYTE Asynchronous_SDR_Features; BYTE Toggle_Mode_DDR_Features; BYTE Synchronous_DDR_Features; UINT16 tPROG_Max_Page_Program_Time; UINT16 tBERS_Max_Block_Erase_Time; UINT16 tR_Max_Page_Read_Time; UINT16 tR_Max_Multi_Plane_Page_Read_Time; UINT16 tCSS_Min_Change_Column_Setup_Time; UINT16 IO_Pin_Capacitance; UINT16 Input_Pin_Capacitance; UINT16 CK_Pin_Capacitance; BYTE Driver_Strength_Support; UINT16 tADL_Program_Page_Register_Clear_Enhancement_tADL_Value; BYTE Rsv5[36]; BYTE Guaranteed_Valid_Blocks_Of_Target; UINT16 Block_Endurance_For_Guaranteed_Valid_Blocks; UINT64 ECC_And_Endurance_Information_Block_0; UINT64 ECC_And_Endurance_Information_Block_1; UINT64 ECC_And_Endurance_Information_Block_2; UINT64 ECC_And_Endurance_Information_Block_3; BYTE Rsv6[177]; UINT16 Vendor_Specific_Revision_Number; BYTE Vendor_Specific[88]; UINT16 CRC; } JEDEC_DATA_CONFIG_INFO, *PJEDEC_DATA_CONFIG_INFO; typedef struct _cfg_tbl_nand_info_t { //spb_top_mgr_t UINT16 nr_werus; //spb_cfg_t BYTE width; // actual width, # of udev, used for space management //dev_geo_t; BYTE nr_bits_per_cell; // Cell type BYTE nr_luns; // = 2 ^ rl.lun_bits BYTE nr_planes_per_lun; // = 2 ^ rl.plane_bits UINT16 page_data_sz; UINT16 page_spare_sz; /* * nr_blocks_per_plane is not necessarily power of 2, some NAND has extra * blocks, which is good so that we can have more spare blocks. * a.k.a., nr_blocks_per_plane != 2 ^ rl.block_bits */ UINT16 nr_blocks_per_die; /* * nr_pages_per_block is not ncesessarily power of 2, so far we have seen this * on TLC NAND. a.k.a., nr_pages_per_block != 2 ^ rl.page_bits */ UINT16 nr_pages_per_block; BYTE support_ce; BYTE support_channel; BYTE rsv[16]; } cfg_tbl_nand_info_t; // RDT config 2048 bytes typedef struct _RDT_CONFIG_INFO { BYTE Rsv1[256]; // full die RDT UINT32 TLC_Cycle; UINT32 SLC_Cycle; BYTE Rsv2[248]; // test condition UINT32 Mark_Bad; UINT32 MP_Test; UINT32 Preload_Data; UINT32 Bad_Sample_Black_Per_CE; BYTE Rsv3[240]; // TLC sample block RDT UINT32 TLC_Dwell_Time; UINT32 TLC_Sampling_Cycle; UINT32 TLC_ECC_Log_Interval; UINT32 TLC_Start_Select_Block; UINT32 TLC_End_Select_Block; UINT32 TLC_Random_Block; UINT32 TLC_Sample_Block_Quantity; UINT32 TLC_Sampling_ECC_Bit_Threshold; BYTE TLC_Sampled_WERU_Bitmap[181]; BYTE Rsv4[43]; // SLC sample block RDT UINT32 SLC_Special_Test_Cycle; UINT32 SLC_ECC_Log_Interval; UINT32 SLC_Random_Block; UINT32 SLC_Block_Quantity; UINT32 SLC_Start_Select_Block; UINT32 SLC_End_Select_Block; UINT32 SLC_Sampling_ECC_Bit_Threshold; BYTE SLC_Sampled_WERU_Bitmap[181]; BYTE Rsv5[3]; UINT32 SLC_Dwell_Time; BYTE LED_Mode; // 0: for KDI, 1: for ADATA. BYTE Pattern_Mode; // 0: 0x55AA 0xAA55 ... 1: 0x84210 ... BYTE SLC_Full_Die_ECC_Log_Interval; BYTE TLC_Full_Die_ECC_Log_Interval; UINT32 RDT_GD_TH; // if set 0, fw won't check BYTE LED_Light_Time; // (LED_Light_Time + 1) * 0.1 second BYTE LED_Dark_Time; // (LED_Dark_Time + 1) * 0.1 second BYTE LDPC_Switch; // 1: turn off LDPC 0: original status (LDPC on) BYTE Full_Die_Deep_Read_Retry_Option; // 1: full die test turn on Deep Read Retry, 2: full die test turn off deep read retry UINT16 Full_Die_Erase_Count_Threshold; // if weru's erase count >= Erase_Count_Threshold, RDT will by pass this weru when TLC full die test UINT16 Bypass_SLC_Weru_For_TLC_Full_Die_Test; UINT32 TLC_Full_Die_ECC_Bit_Threshold; UINT32 SLC_Full_Die_ECC_Bit_Threshold; UINT32 Sorting_Board_Key_Count; // assign key count for sorting board UINT32 Sorting_Board_Current_Key_Count; // for read back sorting board current key count BYTE RR_Pass_Add_To_GD; // condition: normal read verify fail (LDPC) --> ECC is under ECC threshold --> read re-try pass // 1: add this block to GD, 0: won't add to GD BYTE Option1; BYTE Option2; BYTE Option3; UINT16 Read_Page_Index; // For RDT Preload 5, read distribution test option UINT16 Read_Count; // For RDT Preload 5, read distribution test option BYTE Sorting_Board_Flash_Count; BYTE Rsv7[255]; BYTE Rsv8[256]; cfg_tbl_nand_info_t cfg_tbl_nand_info; BYTE Rsv9[224]; } RDT_CONFIG_INFO, *PRDT_CONFIG_INFO; typedef struct _RDT_INI_INFO { char Signature[16]; // signature --> "RDT_INI" char File_Name[512]; UINT32 Content_Size; char Content[4096]; // INI content } RDT_INI_INFO, *PRDT_INI_INFO; // // LOG_EXT_CONFIG_A0 512 bytes (burner status), SSS_Flag and Burner_Start_Run_Status are defined above // typedef struct _phy_cali_result { BYTE min; BYTE max; BYTE avg; BYTE rsv; } phy_cali_result; typedef struct _toggle_cali_result { phy_cali_result toggle_result[8]; /* mode -> ch -> falling / rising mode2 , ch0 , falling: index=0 mode2 , ch0 , rising : index=1 mode2 , ch1 , falling: index=2 mode2 , ch1 , rising : index=3 mode3 , ch0 , falling: index=4 mode3 , ch0 , rising : index=5 mode3 , ch1 , falling: index=6 mode3 , ch1 , rising : index=7 */ } toggle_cali_result; typedef struct _LOG_EXT_CONFIG_A0 { UINT32 Marvell_Flag; UINT32 SSS_Flag; // reference this variable to check burner status flag BYTE Percentage; // percentage for each step (each step of burner start and call vendor safe erase will update) BYTE Burner_Start_Run_Status; BYTE Total_Percentage; // percentage for all step (burner start total step) BYTE Last_Burner_Run_Stage; UINT16 Num_Factory_DF_Blk; // factory defect number UINT16 Num_Grown_DF_Blk; // grown defect number BYTE Flash_ID[8][8]; toggle_cali_result Nand_Phy_Cali_Result; BYTE Rsv1[148]; BYTE Status_Sig[8]; // signature: 3SSTATUS UINT32 Main_Error; // SSS_Flag fail flag BYTE Binary_String[208]; cfg_tbl_nand_info_t cfg_tbl_nand_info; } LOG_EXT_CONFIG_A0, *PLOG_EXT_CONFIG_A0; // MP use data 12 KBytes typedef struct _MP_USE_DATA_CONFIG_INFO { char Previous_Stage[16]; // record stage: FAT, FTB, or QC char Current_Stage[16]; // record stage: FAT, FTB, or QC char MP_Start_Time[64]; char MP_Version[64]; char FW_Version[16]; char INI_File_Name[512]; RDT_INI_INFO RDT_INI_Info; // structure size --> 4628 bytes char Burner_File_Name[256]; LOG_EXT_CONFIG_A0 A0_Info; BYTE Upgrade_FW_By_Burner; // record that use what flow to upgrade firmware. refer to ENUM_UPGRADE_FW_FLOW char FW_File_Name[256]; // combo firmware file name BYTE Timing_Mode; // record toggle speed or ONFI speed BYTE Rsv1[10]; // to let KDI_KeyPro_User_Data align 16 byte BYTE KDI_KeyPro_User_Data[512]; // save Kingston KeyPro user data that is encrypted by AES BYTE KDI_XOR_Key[1024]; // save Kingston XOR key define in INI file BYTE Rsv[12288 - 7888]; } MP_USE_DATA_CONFIG_INFO, *PMP_USE_DATA_CONFIG_INFO; // LOG_EXT_CONFIG_B0 16 KBytes typedef struct _LOG_EXT_CONFIG_B0 { IMAGE_HEADER_CONFIG_INFO Image_Header_Config; //64 bytes NAND_PHY_CALIBRATION_CONFIG_INFO NANA_PHY_Calibration_Config; //184 bytes SATA_PHY_PATCH_CONFIG_INFO SATA_PHY_Patch_Config; //264 bytes ATA_IDENTIFY_CONFIG_INFO ATA_Identify_Config; //512 bytes MARVELL_AREA_CONFIG_INFO Marvell_Area_Config; //512 bytes JEDEC_DATA_CONFIG_INFO JEDEC_Data_Config; //512 bytes RDT_CONFIG_INFO RDT_Config; //2048 bytes MP_USE_DATA_CONFIG_INFO MP_Use_Data_Config; //12 KBytes } LOG_EXT_CONFIG_B0, *PLOG_EXT_CONFIG_B0; typedef struct _DEFECT_ADDR { std::vector<UINT16> Defect_Block; } DEFECT_ADDR, *PDEFECT_ADDR; typedef struct _LUN_INFO { DEFECT_ADDR Plane[MAX_PLANE]; } LUN_INFO, *PLUN_INFO; typedef struct _CE_INFO { LUN_INFO Lun[MAX_LUN]; } CE_INFO, *PCE_INFO; typedef struct _CH_INFO { CE_INFO Ce[MAX_CE]; } CH_INFO, *PCH_INFO; typedef struct _DEFECT_INFO { CH_INFO Ch[MAX_CH]; } DEFECT_INFO, *PDEFECT_INFO; // EC, FD, GD table header (64 bytes) typedef struct _image_hdr { char signature[8]; UINT32 version; UINT32 select_bit; UINT32 auth; UINT32 encrypt; UINT32 num_of_section; UINT32 section_hdr_size; UINT32 section_table_offset; UINT32 flash_addr; UINT32 crc; UINT32 image_size; // the below field is supported since Image Creator 1.0.0.1020 char image_type; /* image type: SINGLE/DUAL_SAME/DUAL_DIFF 48*/ char reserved[7]; /* reserved for future use 49-55 */ short ver_major; /* improved version - Major 56-57 */ short ver_minor; /* improved version - Minor 58-59 */ short ver_oem; /* improved version - OEM 60-61 */ short ver_build; /* improved version - Build 62-63 */ } image_hdr; // 32 bytes typedef struct _sect_hdr { char section_name[16]; UINT32 load_addr; UINT32 size; UINT32 section_data_offset; UINT32 flash_addr; } section_hdr; // // RDT result structure (from FW team) // typedef union _RDT_BLOCK_RESULT { struct { UINT16 CH :4; // UINT16 CE :4; // UINT16 Die :4; UINT16 Plane :4; // 2 Byte UINT16 Block; // 2 Byte err position UINT16 Cycle; // 2 Byte UINT16 Max_tPro; // 2 Byte (whole weru? ms?) UINT16 Raw_bit_Error; // 2 Byte BYTE weru_hi; // 1 Byte BYTE Retry_Count; // 1 Byte UINT16 Temp; // 2 Byte (K) BYTE weru_lo; // 1 Byte BYTE Failed_Type; // 1 Byte } rec; BYTE rev[16]; } RDT_BLOCK_RESULT; // // cycle time result structure (from FW team) // typedef union _RDT_C_RESULT { struct { UINT32 g_cycle; // 4 Byte UINT16 max_temp; // 2 Byte, MAX. temperature (C) UINT16 min_temp; // 2 Byte, MIN. temperature (C) UINT32 signature; // 4 Byte byte#0/#1 record TF, SF, SS, TS UINT32 duration_time; // 4 Byte. unit: 100 ms //u32 end_time; // 4 Byte } rec; BYTE rev[16]; } RDT_C_RESULT; typedef struct _RDT_RESULT { union { struct { UINT32 signature; // 4 Byte byte#0/#1 record TF, SF, SS, TS or CY UINT32 cycle; // 4 Byte, Result cycle UINT32 version; // 4 Byte //u8 rev[3]; // UINT16 max_temp; // 2 Byte, MAX. temperature (C) UINT16 min_temp; // 2 Byte, MIN. temperature (C) UINT32 count; // 4 Byte UINT32 start_time; // 4 Byte UINT32 end_time; // 4 Byte //u32 last_mu_off; //u32 rdt_rec_indx; // time stamp of TLC Full Did UINT32 tlc_full_die_cycle; // 4 Bytes, total cycle of TLC Full Die Testing UINT32 tlc_full_die_timestamp; // 4 Bytes, Time Stamp of TLC Full Die Testing // record total cycle done // time stamp of SLC Full Did UINT32 slc_full_die_cycle; // 4 Bytes, total cycle of SLC Full Die Testing UINT32 slc_full_die_timestamp; // 4 Bytes, Time Stamp of SLC Full Die Testing // record total cycle done // time stamp of TLC Sampling Did UINT32 tlc_sampling_cycle; // 4 Bytes, total cycle of TLC Sampling Testing UINT32 tlc_sampling_timestamp; // 4 Bytes, Time Stamp of TLC Sampling Testing // record total cycle done // time stamp of SLC Sampling Did UINT32 slc_sampling_cycle; // 4 Bytes, total cycle of SLC Sampling Testing UINT32 slc_sampling_timestamp; // 4 Bytes, Time Stamp of SLC Sampling Testing // record total cycle done // for Read_RDT_LOG UINT32 total_rdt_result_cnt; // 4 bytes, total RDT recorde count // 64 bytes(accumulated) UINT16 first_weru_no; UINT16 first_page_idx; UINT16 last_weru_no; UINT16 last_page_idx; // 72 (A) UINT32 SLC_full_start_time; // 4 Byte. unit: 100 millisecond UINT32 SLC_full_end_time; // 4 Byte. unit: 100 millisecond UINT32 TLC_full_start_time; // 4 Byte. unit: 100 millisecond UINT32 TLC_full_end_time; // 4 Byte. unit: 100 millisecond UINT32 SLC_sampling_start_time; // 4 Byte. unit: 100 millisecond UINT32 SLC_sampling_end_time; // 4 Byte. unit: 100 millisecond UINT32 TLC_sampling_start_time; // 4 Byte. unit: 100 millisecond UINT32 TLC_sampling_end_time; // 4 Byte. unit: 100 millisecond UINT16 ODT_Log; // 2 Byte. UINT16 GPIO_detect; // 2 Byte. record each channel is over current or not. UINT32 rdt_result_pn; // 4 bytes @ 0x6C, RDT result part number of a cycle. UINT32 cycle_rec_idx; // (116) UINT32 last_cycle_rec_in_rdt; UINT32 stage; // preload data UINT32 pwr_cycle_cnt; } h; BYTE rev[128]; } head; RDT_BLOCK_RESULT Blk_Result[MAX_RESULT_COUNT]; } RDT_RESULT; typedef struct _CYCLE_RESULT { union { struct { UINT32 signature; // 4 Byte byte#0/#1 record TF, SF, SS, TS or CY UINT32 cycle; // 4 Byte, Result cycle UINT32 version; // 4 Byte //u8 rev[3]; // UINT16 max_temp; // 2 Byte, MAX. temperature (C) UINT16 min_temp; // 2 Byte, MIN. temperature (C) UINT32 count; // 4 Byte UINT32 start_time; // 4 Byte UINT32 end_time; // 4 Byte //u32 last_mu_off; //u32 rdt_rec_indx; // time stamp of TLC Full Did UINT32 tlc_full_die_cycle; // 4 Bytes, total cycle of TLC Full Die Testing UINT32 tlc_full_die_timestamp; // 4 Bytes, Time Stamp of TLC Full Die Testing // record total cycle done // time stamp of SLC Full Did UINT32 slc_full_die_cycle; // 4 Bytes, total cycle of SLC Full Die Testing UINT32 slc_full_die_timestamp; // 4 Bytes, Time Stamp of SLC Full Die Testing // record total cycle done // time stamp of TLC Sampling Did UINT32 tlc_sampling_cycle; // 4 Bytes, total cycle of TLC Sampling Testing UINT32 tlc_sampling_timestamp; // 4 Bytes, Time Stamp of TLC Sampling Testing // record total cycle done // time stamp of SLC Sampling Did UINT32 slc_sampling_cycle; // 4 Bytes, total cycle of SLC Sampling Testing UINT32 slc_sampling_timestamp; // 4 Bytes, Time Stamp of SLC Sampling Testing // record total cycle done // for Read_RDT_LOG UINT32 total_rdt_result_cnt; // 4 bytes, total RDT recorde count // 64 bytes(accumulated) UINT16 first_weru_no; UINT16 first_page_idx; UINT16 last_weru_no; UINT16 last_page_idx; // 72 (A) UINT32 SLC_full_start_time; // 4 Byte. unit: 100 millisecond UINT32 SLC_full_end_time; // 4 Byte. unit: 100 millisecond UINT32 TLC_full_start_time; // 4 Byte. unit: 100 millisecond UINT32 TLC_full_end_time; // 4 Byte. unit: 100 millisecond UINT32 SLC_sampling_start_time; // 4 Byte. unit: 100 millisecond UINT32 SLC_sampling_end_time; // 4 Byte. unit: 100 millisecond UINT32 TLC_sampling_start_time; // 4 Byte. unit: 100 millisecond UINT32 TLC_sampling_end_time; // 4 Byte. unit: 100 millisecond UINT16 ODT_Log; // 2 Byte. UINT16 GPIO_detect; // 2 Byte. record each channel is over current or not. UINT32 rdt_result_pn; // 4 bytes @ 0x6C, RDT result part number of a cycle. UINT32 cycle_rec_idx; // (116) UINT32 last_cycle_rec_in_rdt; UINT32 stage; // preload data UINT32 pwr_cycle_cnt; } h; BYTE rev[128]; } head; RDT_C_RESULT C_Result[MAX_RESULT_COUNT]; } CYCLE_RESULT; typedef struct _BURNER_START_OPTION { union { struct _BIT{ BYTE Rsv_1: 1; // bit#0 BYTE Rsv_2: 1; // bit#1 BYTE Rsv_3: 1; // bit#2 BYTE Rsv_4: 1; // bit#3 BYTE Force_EraseAll: 1; // bit#4 BYTE Wait_Trigger: 1; // bit#5 BYTE Skip_Scan_Later_Defect: 1; // bit#6 BYTE Rsv_5: 1; // bit#7 } Bit; BYTE Option; } Start_Option; } BURNER_START_OPTION, *PBURNER_START_OPTION; typedef struct _sss_blk_info_status_t { BYTE fe_info_status; BYTE fcty_dft_status; BYTE blk_dft_status; BYTE ec_tbl_status; BYTE phy_cal_status; BYTE misc_ctrl_status; BYTE config_tbl_status; BYTE mr_phypatch_status; BYTE rsv[120]; } sss_blk_info_status_t; typedef struct _sss_WPB0_status_t { sss_blk_info_status_t Blk_Info_flag; UINT16 defect_blocks_per_plane_threshold; UINT16 all_good_block_WERUs_threshold; UINT16 rsv[2]; UINT16 defect_blocks_per_plane[32]; UINT16 all_good_block_WERUs; BYTE rsv1[310]; } sss_wpb0_status_t; // log event typedef struct _sys_log_info_t { BYTE cur_block_num; BYTE block_cnt; BYTE min_block_num; BYTE max_block_num; BYTE rsv[508]; } sys_log_info_t; // parse defect typedef union _udev_addr_t { struct { BYTE ch; BYTE target; BYTE lun; BYTE plane; } u; UINT32 v; } udev_addr_t; // burner start option from binary 0x10 ~ 0x1F typedef union sss_startup_option_sub_flag_t_1 { struct { //LSB UINT32 SSS_burner_Report_FLASH_ID_MODE : 1; UINT32 SSS_burner_ADATA_Soritng_MARK_BAD_Recovery : 1; //To avoid ADATA Flash not clean issue, we change the DF_MARK scan rule //Only scan DF_MARK at Col 0,16K with SLC mode, //which will be judged to bad block when anyone of those bytes is 0x00 UINT32 SSS_burner_ADATA_Scan_DF_MARK_with_0x00 : 1; UINT32 rsv : 29; //MSB } option1; UINT32 v; } SSS_Startup_Option_Flag_1; typedef union _sss_startup_option_sub_flag_t_2 { struct { UINT32 rsv; } option2; UINT32 v; } SSS_Startup_Option_Flag_2; // // overwrite_support_mode: // Toggle1: 0x40, TM: 0x40 ~ 0x44 // Toggle2: 0x80, TM: 0x80 ~ 0x83 // if set 0xFF, burner will use the highest speed that was defined in the burner support list // // Mode Speed Mode Speed // 0x40 DDR64 0x80 DDR200 // 0x41 DDR80 0x81 DDR266 // 0x42 DDR100 0x82 DDR320 // 0x43 DDR160 0x83 DDR400 // 0x44 DDR200 // typedef struct _sss_startup_option_t { SSS_Startup_Option_Flag_1 startup_option1; UINT32 MP_inject_WPB0_DF; //4~7 BYTE overwrite_support_mode; //8 //Move to Write_Confirguration_Tbl flow when MP ready BYTE overwrite_scan_DF_MARK; //9 //Move to Write_Confirguration_Tbl flow when MP ready BYTE overwrite_SMART_temperature;//10 BYTE wpb0_read_write_test_count; //11 //Move to Write_Confirguration_Tbl flow when MP ready UINT16 overwrite_later_scan_DF; //12~13 UINT16 rsv1; //14~15 UINT32 rsv2[4]; //16~31 } SSS_Startup_Option; //20161124 Karen Tsai typedef struct _layout_hdr { char signature[8]; UINT16 num_of_weru; BYTE width_nominal; BYTE reserved[5]; UINT32 crc; UINT32 size; } layout_hdr; #pragma pack() #endif // __SSD_DEFINITION__
2bff56e1a424920f59462578e0d16aedc2836a25
d3ca74c678dfb5d3c8de90b27abb15847ba67a0d
/cppfiles/exercise/basic/ex1_extern1.cpp
c2b7c3ad7c4b674e4dc67ee63b92ec3f56095543
[]
no_license
jsupratman13/workspace
6807dafccc8949a54205a16a75d5e49852fa118b
9ef4dc80b430f14f3caaca57e5eee90c919fcf9b
refs/heads/master
2021-12-27T21:21:49.956437
2021-12-20T09:39:31
2021-12-20T09:39:31
28,377,814
0
0
null
2021-01-29T06:37:39
2014-12-23T04:45:40
Python
UTF-8
C++
false
false
386
cpp
//extern give reference to global variable that is visible to ALL program files //extern cannot be initialize as it just point variable name at a storage location that is define //USEFUL for multiple files and reference global variable/function in other files #include <iostream> using namespace std; int count; extern void write_extern(); int main(){ count = 5; write_extern(); }
7e807ac5cc502ee048be51a0742489da9115bbed
726d967d244bc4982fc6a37ff66870d885581aaf
/lang/test_c_statement_expr.cpp
04fb5763b9b39012e5417ce32e6ca2965b4160e3
[]
no_license
minggrim/cpp_tests
1fd7dd804b7b10f4dd08cd5283d88a89fae6ee6d
34d3b9f2ef613f4ff64c30e6a7387c5dbec82226
refs/heads/master
2022-03-14T17:17:32.755178
2022-03-08T15:34:37
2022-03-08T15:34:37
131,876,896
0
0
null
null
null
null
UTF-8
C++
false
false
313
cpp
#include <iostream> int main() { // statement expr : we should get z. int a = ({ int x = 1; int y = 2; int z = 3; std::cout << x << " " << y << " " << z << std::endl; x += y; y += z; z += x; }); std::cout << "my a : " << a << std::endl; }
c4e3e4e597f68aa07c49a4b005253e940c69acb1
e5dc9d8142d807b87e6a7980670ecba28e4a9523
/KsEngine/graphics/KsGraphics.cpp
a7f47cfff09d0fe58d897dd1a397f0d14fa9f7c7
[ "MIT" ]
permissive
a567w/AriaGame
e2c692e32d0afcf3e7ec7a676456e4d4a35c19d7
bf90f79cecd5e27e221fa0e791a784d9be5ef06f
refs/heads/master
2020-07-01T05:03:26.856425
2019-11-05T13:45:56
2019-11-05T13:45:56
201,052,112
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
2,629
cpp
/************************************************************************************************/ /** * @file KsGraphics.h * @brief 描画システム * @author Tsukasa Kato * @date ----/--/-- * @since ----/--/-- * @version 1.0 */ /************************************************************************************************/ /*==============================================================================================*/ /* << インクルード >> */ /*==============================================================================================*/ #include "KsEngine/KsEnginePreCompile.h" #include "KsGraphics.h" /*==============================================================================================*/ /* << 定義 >> */ /*==============================================================================================*/ /*==============================================================================================*/ /* << 宣言 >> */ /*==============================================================================================*/ template<> KsGraphics* KsSingleton< KsGraphics >::m_pInstance = 0; /************************************************************************************************/ /* * シングルトンの参照を取得 * @return シングルトンの参照 */ /************************************************************************************************/ KsGraphics& KsGraphics::getInstance() { return (*m_pInstance); } /************************************************************************************************/ /* * シングルトンのポインタを取得 * @return シングルトンのポインタ */ /************************************************************************************************/ KsGraphics* KsGraphics::getInstancePtr() { return m_pInstance; } /************************************************************************************************/ /* * コンストラクタ */ /************************************************************************************************/ KsGraphics::KsGraphics() { } /************************************************************************************************/ /* * デストラクタ */ /************************************************************************************************/ KsGraphics::~KsGraphics() { }
7ffbd919be92904a47e61e540cf7b31b3ff6abe9
003f58454dd3cf9af1821b28e68f1f738d244d5e
/applications/panel/main.cpp
414791e82774079d219981fe9aaafa3254972a9c
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
busybox11/skift
7b5fd54e57e03ad23ab08b8ee8a8edb81a348c2d
778ae3a0dc5ac29d7de02200c49d3533e47854c5
refs/heads/master
2023-01-04T21:38:24.421418
2020-08-09T15:02:17
2020-08-09T15:02:17
279,430,614
1
0
NOASSERTION
2020-07-13T23:10:19
2020-07-13T23:10:19
null
UTF-8
C++
false
false
2,406
cpp
#include <libsystem/core/CString.h> #include <libsystem/eventloop/Timer.h> #include <libsystem/io/Path.h> #include <libsystem/process/Process.h> #include <libsystem/system/System.h> #include <libwidget/Application.h> #include <libwidget/Menu.h> #include <libwidget/Screen.h> #include <libwidget/Widgets.h> void widget_date_and_time_update(Widget *widget) { TimeStamp timestamp = timestamp_now(); DateTime datetime = timestamp_to_datetime(timestamp); char buffer[256]; snprintf(buffer, 256, "%02d:%02d:%02d ", datetime.hour, datetime.minute, datetime.second); label_set_text(widget, buffer); } void widget_ram_update(Graph *widget) { SystemStatus status = system_get_status(); graph_record(widget, status.used_ram / (double)status.total_ram); } void widget_cpu_update(Graph *widget) { SystemStatus status = system_get_status(); graph_record(widget, status.cpu_usage / 100.0); } int main(int argc, char **argv) { application_initialize(argc, argv); Window *window = window_create(WINDOW_BORDERLESS | WINDOW_ALWAYS_FOCUSED); window_set_title(window, "Panel"); window_set_bound(window, screen_get_bound().take_top(36)); window_root(window)->layout = HFLOW(8); window_root(window)->insets = Insets(4); Widget *menu = button_create_with_icon_and_text(window_root(window), BUTTON_TEXT, Icon::get("menu"), "Applications"); menu->on(Event::ACTION, [](auto) { process_run("menu", nullptr); }); Widget *widget_date_and_time = label_create(window_root(window), ""); widget_date_and_time->layout_attributes = LAYOUT_FILL; Widget *graph_container = panel_create(window_root(window)); graph_container->layout = VGRID(1); Widget *ram_graph = graph_create(graph_container, 50, COLOR_ROYALBLUE); label_create(ram_graph, "RAM"); Widget *cpu_graph = graph_create(graph_container, 50, COLOR_SEAGREEN); label_create(cpu_graph, "CPU"); label_create(window_root(window), "user"); timer_start(timer_create(widget_date_and_time, 500, (TimerCallback)widget_date_and_time_update)); timer_start(timer_create(ram_graph, 500, (TimerCallback)widget_ram_update)); timer_start(timer_create(cpu_graph, 100, (TimerCallback)widget_cpu_update)); graph_container->on(Event::MOUSE_BUTTON_PRESS, [](auto) { process_run("task-manager", nullptr); }); window_show(window); return application_run(); }
d16c968ccabf739e12a024f0e7894e25d5c3e0d6
e83524b9a296c1b4668aac2e89e7ce984a0da964
/parametric/shapeGui/src/ofApp.h
bcdbe9c056209092a66f5032bb6e046085e770be
[ "MIT" ]
permissive
ofZach/whatIsPoeticComputation
50a369adff96cfea594ae22102a8c908518d7b45
d7e22b3a2146cc6493acce1e0847bfb776d7fa2b
refs/heads/master
2020-05-29T09:02:09.491676
2015-05-04T15:49:13
2015-05-04T15:49:13
32,805,100
10
1
null
null
null
null
UTF-8
C++
false
false
701
h
#pragma once #include "ofMain.h" #include "ofxGui.h" class ofApp : public ofBaseApp{ public: void setup(); void update(); void draw(); void keyPressed(int key); void keyReleased(int key); void mouseMoved(int x, int y ); void mouseDragged(int x, int y, int button); void mousePressed(int x, int y, int button); void mouseReleased(int x, int y, int button); void windowResized(int w, int h); void dragEvent(ofDragInfo dragInfo); void gotMessage(ofMessage msg); ofxPanel panel; ofParameter <int> nSpikes; ofParameter <int> randomSeed; ofParameter <float> radiusRandomness; ofParameter <float> angleRandomness; };
5093fa4bdd5f54eb72bcdf058beb87a7d283b6cb
d099ef4dbaace1d7d89994f2133bf0aa12f1d0b3
/_MODEL_FOLDERS_/o19/o19.cpp
032455d5db12df683433441fc95205d81a55214a
[]
no_license
marcclintdion/startHere_threadStable-4
e7bd701b547c4768c0d60467d31435447c251e21
d78b3a02c7b1b5007e8f54a58f96f64df1b088b6
refs/heads/master
2021-01-02T23:14:42.383781
2015-05-03T08:43:36
2015-05-03T08:43:36
39,881,209
0
0
null
null
null
null
UTF-8
C++
false
false
602,128
cpp
GLfloat o19[] = { //numberOfVertices = 5989 18.808735 , -0.227718 , 1.064237 , 0.149693 , 0.191168 , 0.970061 , 0.943690 , 0.430897 , 18.935223 , -0.444065 , 0.933767 , 0.696280 , 0.335887 , 0.634297 , 0.950877 , 0.427229 , 19.036999 , -0.162472 , 0.839570 , 0.780084 , 0.042573 , 0.624165 , 0.950336 , 0.434488 , 18.835339 , -0.444195 , 1.846689 , 0.122806 , 0.733299 , 0.668691 , 0.938734 , 0.410068 , 18.541843 , -0.672245 , 1.830381 , -0.539232 , 0.553301 , 0.634877 , 0.935693 , 0.410396 , 18.841213 , -0.778812 , 1.964612 , 0.160924 , 0.334788 , 0.928434 , 0.938957 , 0.407627 , 19.013645 , -0.480686 , 1.682798 , 0.730796 , 0.672872 , 0.114536 , 0.941214 , 0.410547 , 18.691685 , -0.397526 , 1.613393 , -0.304086 , 0.951445 , -0.047670 , 0.938969 , 0.411760 , 19.670658 , -1.670315 , 1.668191 , 0.776910 , -0.269936 , 0.568773 , 0.953750 , 0.393844 , 19.687550 , -1.471531 , 1.470502 , 0.570940 , 0.491440 , 0.657643 , 0.961004 , 0.401349 , 19.628529 , -1.246021 , 1.816625 , 0.813440 , 0.515885 , 0.268563 , 0.951422 , 0.402736 , 18.480671 , -0.641171 , 1.205087 , -0.413953 , 0.905637 , -0.091800 , 0.938530 , 0.418018 , 18.318874 , -0.758984 , 0.903096 , -0.364635 , 0.714438 , 0.597125 , 0.934611 , 0.422133 , 18.215969 , -0.803555 , 1.460214 , -0.495437 , 0.819575 , 0.287729 , 0.932621 , 0.414985 , 18.760891 , -2.152988 , 2.295888 , -0.009827 , -0.844569 , 0.535295 , 0.939425 , 0.389105 , 18.873837 , -1.937366 , 2.470365 , 0.268197 , -0.398938 , 0.876858 , 0.939386 , 0.392333 , 18.534801 , -2.052555 , 2.469842 , 0.563189 , -0.773827 , 0.289804 , 0.936661 , 0.389660 , 18.805386 , -1.583790 , 2.521592 , 0.482803 , 0.148534 , 0.863002 , 0.937167 , 0.395660 , 19.195812 , -1.583294 , 2.423269 , 0.376354 , 0.228339 , 0.897885 , 0.941962 , 0.396270 , 18.993206 , -1.068897 , 1.966783 , 0.325053 , 0.627583 , 0.707419 , 0.941818 , 0.404626 , 18.743343 , -1.083515 , 2.037317 , 0.156804 , 0.694754 , 0.701895 , 0.937793 , 0.403897 , 18.962986 , -1.242458 , 2.229909 , 0.246986 , 0.726951 , 0.640706 , 0.939416 , 0.400093 , 19.933887 , -1.670292 , 1.619188 , 0.106601 , -0.131596 , 0.985534 , 0.964145 , 0.395606 , 19.691914 , -1.283375 , 1.286023 , 0.196997 , 0.752739 , 0.628101 , 0.961959 , 0.409773 , 20.101925 , -1.351818 , 1.553445 , -0.215461 , 0.301920 , 0.928648 , 0.971321 , 0.404238 , 19.699154 , -0.856342 , 0.985391 , -0.222541 , 0.614368 , 0.756951 , 0.969447 , 0.420808 , 20.369976 , -1.752148 , 1.473413 , 0.411603 , -0.649251 , 0.639546 , 0.972451 , 0.392924 , 11.783131 , 1.781765 , -0.668860 , -0.276254 , 0.439070 , 0.854915 , 0.775003 , 0.496627 , 11.360935 , 2.092945 , -0.997187 , -0.100497 , 0.234077 , 0.966979 , 0.766391 , 0.509031 , 11.294003 , 1.700993 , -0.857238 , -0.309153 , 0.339213 , 0.888424 , 0.765029 , 0.500514 , 19.108707 , -2.112972 , 2.334111 , 0.359844 , -0.715232 , 0.599078 , 0.943484 , 0.390362 , 18.775127 , -2.255367 , 2.080121 , 0.112674 , -0.848445 , 0.517075 , 0.940711 , 0.386422 , 19.875263 , -2.054142 , 1.323335 , 0.246406 , -0.752739 , 0.610431 , 0.962126 , 0.385719 , 19.633015 , -1.569286 , 1.990846 , 0.927732 , -0.047456 , 0.370159 , 0.949533 , 0.398456 , 19.471600 , -1.434658 , 2.180238 , 0.673360 , 0.325694 , 0.663686 , 0.945524 , 0.398660 , 19.398266 , -2.000324 , 2.094087 , 0.679769 , -0.709677 , 0.184973 , 0.947770 , 0.391807 , 19.180141 , -2.114880 , 1.859254 , 0.597674 , -0.801324 , 0.024873 , 0.947329 , 0.388403 , 18.624142 , -1.109409 , 2.239000 , 0.058901 , 0.882839 , 0.465926 , 0.934436 , 0.401414 , 18.461277 , -1.020473 , 1.977342 , -0.373730 , 0.681692 , 0.628956 , 0.934211 , 0.405802 , 18.918827 , -2.308086 , 1.776296 , 0.643849 , -0.711173 , 0.282205 , 0.943566 , 0.382374 , 19.282337 , -2.264301 , 1.113527 , 0.350322 , -0.824274 , 0.444777 , 0.950541 , 0.375876 , 19.417065 , -1.978374 , 1.501409 , 0.471297 , -0.762963 , 0.442427 , 0.951481 , 0.385232 , 18.633198 , -1.429440 , 2.632829 , 0.332286 , 0.497177 , 0.801477 , 0.933468 , 0.395812 , 18.329998 , -1.313580 , 2.439931 , -0.277535 , 0.777917 , 0.563707 , 0.930523 , 0.397959 , 18.364910 , -1.497036 , 2.683801 , -0.261330 , 0.540513 , 0.799707 , 0.930185 , 0.394689 , 19.211529 , -1.834087 , 2.424222 , 0.450911 , -0.183843 , 0.873409 , 0.942839 , 0.393395 , 19.474300 , -1.802555 , 2.191648 , 0.790033 , -0.272500 , 0.549150 , 0.946431 , 0.394672 , 18.108555 , -1.936993 , 2.710256 , -0.484512 , 0.162450 , 0.859523 , 0.926759 , 0.390113 , 17.990482 , -1.559597 , 2.460500 , -0.071108 , 0.351146 , 0.933592 , 0.925562 , 0.394427 , 17.836407 , -1.937786 , 2.442430 , -0.482864 , -0.145665 , 0.863460 , 0.922321 , 0.389943 , 17.819393 , -2.214817 , 2.485624 , -0.709067 , 0.019807 , 0.704825 , 0.924944 , 0.386858 , 18.084675 , -2.209049 , 2.707494 , -0.427229 , -0.171850 , 0.887631 , 0.927600 , 0.388152 , 17.979504 , -2.487415 , 2.542867 , -0.208686 , -0.648885 , 0.731681 , 0.926798 , 0.384119 , 18.165737 , -2.382618 , 2.671907 , 0.047517 , -0.640736 , 0.766259 , 0.928400 , 0.386600 , 18.354931 , -1.877934 , 2.804994 , -0.044404 , 0.011536 , 0.998932 , 0.929774 , 0.392296 , 18.451572 , -2.166103 , 2.108564 , 0.261727 , -0.841151 , 0.473220 , 0.936762 , 0.386825 , 18.330166 , -2.356594 , 2.521024 , 0.674001 , -0.714255 , 0.188452 , 0.931760 , 0.387080 , 18.229168 , -2.338383 , 1.982545 , 0.496048 , -0.616779 , 0.611133 , 0.932922 , 0.384652 , 18.520710 , -1.723759 , 2.781656 , 0.390301 , 0.073641 , 0.917722 , 0.931797 , 0.393551 , 18.120892 , -2.525883 , 2.391938 , 0.411603 , -0.897092 , 0.160466 , 0.929715 , 0.384822 , 18.034954 , -2.604092 , 2.127374 , 0.542955 , -0.778527 , 0.314707 , 0.929332 , 0.382184 , 18.607510 , -1.920292 , 2.645654 , 0.610797 , -0.383709 , 0.692557 , 0.933991 , 0.391989 , 18.367962 , -2.148090 , 2.755849 , 0.349986 , -0.396924 , 0.848476 , 0.930188 , 0.389114 , 17.598957 , -2.104214 , 2.130143 , -0.645070 , -0.439985 , 0.624683 , 0.919304 , 0.385590 , 17.740238 , -2.466473 , 2.411096 , -0.699820 , -0.330699 , 0.633106 , 0.923240 , 0.383623 , 18.552662 , -0.607723 , 0.990415 , -0.441847 , 0.671407 , 0.594897 , 0.941903 , 0.424141 , 18.244106 , -2.666637 , 1.899755 , 0.194342 , -0.579608 , 0.791345 , 0.932763 , 0.380999 , 17.894466 , -2.761623 , 1.849012 , -0.076418 , -0.912656 , 0.401471 , 0.928641 , 0.377881 , 17.443737 , -2.731106 , 1.450048 , -0.434187 , -0.776605 , 0.456435 , 0.916248 , 0.371663 , 17.547916 , -2.976406 , 1.167814 , -0.384014 , -0.916715 , 0.110141 , 0.920498 , 0.365854 , 17.754574 , -2.945637 , 1.442231 , -0.369823 , -0.793420 , 0.483383 , 0.924437 , 0.371650 , 17.561588 , -2.719921 , 1.653196 , -0.520218 , -0.758171 , 0.393048 , 0.921877 , 0.375829 , 17.355495 , -2.448635 , 1.777776 , -0.471694 , -0.591052 , 0.654317 , 0.915523 , 0.378637 , 17.155613 , -2.431530 , 1.715902 , -0.152470 , -0.642079 , 0.751305 , 0.907112 , 0.379045 , 17.548832 , -2.511097 , 1.968507 , -0.761650 , -0.429579 , 0.485061 , 0.920024 , 0.380908 , 17.832798 , -2.668621 , 2.242872 , -0.156468 , -0.898190 , 0.410810 , 0.925000 , 0.380741 , 18.668133 , -2.719044 , 1.810640 , 0.465133 , -0.648793 , 0.602191 , 0.935706 , 0.377286 , 18.071941 , -2.972950 , 1.561319 , -0.020692 , -0.868404 , 0.495376 , 0.929563 , 0.373529 , 17.625118 , -1.372906 , 2.579961 , 0.059206 , 0.327860 , 0.942839 , 0.920820 , 0.395855 , 17.818638 , -1.269482 , 2.477395 , 0.449538 , 0.501144 , 0.739402 , 0.923302 , 0.397175 , 17.705814 , -1.130787 , 2.395906 , 0.109958 , 0.861873 , 0.495010 , 0.921071 , 0.399323 , 17.602703 , -1.670132 , 2.590410 , 0.095462 , -0.204566 , 0.974181 , 0.920489 , 0.392815 , 17.310795 , -1.519398 , 2.577081 , -0.466872 , 0.182958 , 0.865169 , 0.916898 , 0.393973 , 17.361629 , -1.803600 , 2.514055 , -0.334544 , -0.589312 , 0.735343 , 0.916707 , 0.389977 , 18.638004 , -2.423550 , 2.004949 , 0.259255 , -0.491409 , 0.831416 , 0.937096 , 0.383077 , 17.229549 , -1.978390 , 2.014669 , -0.421247 , -0.604602 , 0.675985 , 0.912718 , 0.386085 , 17.181927 , -1.688602 , 2.455755 , -0.799646 , -0.233863 , 0.552995 , 0.912756 , 0.391480 , 17.072475 , -1.708988 , 2.123487 , -0.725730 , -0.013886 , 0.687796 , 0.905943 , 0.390535 , 11.628330 , -8.074261 , 2.849977 , -0.220923 , 0.671682 , 0.707114 , 0.780470 , 0.183811 , 12.020885 , -8.305904 , 3.196084 , -0.696341 , 0.394848 , 0.599261 , 0.786411 , 0.180746 , 11.980930 , -7.911945 , 2.807904 , -0.670675 , 0.415876 , 0.614154 , 0.786342 , 0.185238 , 11.448238 , -7.185322 , 1.569574 , 0.244789 , 0.900601 , 0.359081 , 0.774549 , 0.205251 , 11.722469 , -7.384449 , 1.680967 , -0.153356 , 0.781121 , 0.605213 , 0.781068 , 0.203692 , 11.803448 , -7.197712 , 1.393102 , -0.219947 , 0.880306 , 0.420270 , 0.782046 , 0.209632 , 11.290554 , -8.309895 , 3.031961 , -0.071230 , 0.550005 , 0.832087 , 0.772669 , 0.178758 , 11.828373 , -8.916798 , 3.189443 , -0.540208 , 0.384045 , 0.748772 , 0.778244 , 0.172641 , 11.792553 , -8.491634 , 3.124700 , -0.445387 , 0.314829 , 0.838130 , 0.780625 , 0.178230 , 12.011395 , -9.069431 , 3.809133 , -0.650319 , 0.264992 , 0.711905 , 0.786551 , 0.168375 , 11.610096 , -9.186947 , 3.340314 , -0.295267 , 0.584735 , 0.755547 , 0.777607 , 0.166165 , 11.387241 , -9.463734 , 3.502240 , -0.486496 , 0.378216 , 0.787561 , 0.773802 , 0.159430 , 11.273617 , -10.217075 , 3.707521 , -0.569994 , 0.076662 , 0.818018 , 0.773741 , 0.149903 , 11.629238 , -9.759480 , 3.896520 , -0.448866 , 0.299356 , 0.841945 , 0.781571 , 0.155107 , 11.879337 , -10.291164 , 4.018155 , -0.450942 , -0.044954 , 0.891415 , 0.786009 , 0.147587 , 11.252453 , -10.964863 , 3.552324 , -0.422590 , -0.487289 , 0.764153 , 0.776454 , 0.139475 , 12.008030 , -8.599125 , 3.496534 , -0.774804 , 0.394452 , 0.494034 , 0.785328 , 0.175048 , 11.829632 , -7.688030 , 2.516179 , -0.444990 , 0.769646 , 0.457808 , 0.784558 , 0.190979 , 11.855968 , -6.967098 , 0.897542 , -0.240547 , 0.950133 , 0.198370 , 0.783208 , 0.219195 , 11.488583 , -7.107365 , 1.195703 , -0.000641 , 0.972381 , 0.233283 , 0.774921 , 0.212257 , 11.028103 , -7.223507 , 1.950216 , 0.110996 , 0.895291 , 0.431379 , 0.767814 , 0.199593 , 11.531078 , -7.327435 , 1.729024 , 0.431440 , 0.586901 , 0.685110 , 0.777256 , 0.202255 , 12.007076 , -7.413204 , 2.110433 , -0.445326 , 0.826472 , 0.344340 , 0.787507 , 0.198719 , 11.302616 , -7.742863 , 2.000264 , 0.234870 , 0.743187 , 0.626484 , 0.777800 , 0.196046 , 11.743534 , -9.385700 , 3.627145 , -0.545183 , 0.481155 , 0.686453 , 0.782753 , 0.161153 , 11.138531 , -7.133389 , 1.635274 , 0.059572 , 0.979156 , 0.194067 , 0.768823 , 0.203839 , 11.923038 , -11.361935 , 3.671514 , -0.543443 , -0.618732 , 0.567278 , 0.787521 , 0.137329 , 11.966625 , -11.541538 , 2.501798 , 0.040925 , -0.999054 , 0.014100 , 0.790383 , 0.119901 , 11.403255 , -11.655987 , 2.385320 , 0.185369 , -0.926267 , 0.328043 , 0.780641 , 0.118860 , 11.576397 , -11.714848 , 1.791852 , 0.287637 , -0.951872 , 0.105655 , 0.782151 , 0.110120 , 11.298336 , -7.083920 , 0.938802 , -0.156865 , 0.979339 , 0.127567 , 0.770300 , 0.216263 , 11.542118 , 0.256870 , -0.679316 , -0.135350 , 0.741813 , 0.656789 , 0.771049 , 0.468020 , 11.381512 , 0.160847 , -0.292197 , -0.015229 , 0.995392 , 0.094516 , 0.770808 , 0.464067 , 11.637798 , 0.496601 , 0.148580 , -0.692129 , 0.721610 , 0.012482 , 0.776866 , 0.456486 , 11.315792 , 1.312717 , -0.670283 , -0.266396 , 0.234016 , 0.934996 , 0.763008 , 0.487057 , 11.852924 , -6.857845 , -1.039375 , 0.077029 , 0.727073 , 0.682180 , 0.779425 , 0.252010 , 11.604198 , -6.859196 , -0.148959 , -0.097751 , 0.994263 , 0.043245 , 0.776458 , 0.235841 , 11.862087 , -6.829380 , -0.052619 , -0.134770 , 0.990387 , 0.030457 , 0.782473 , 0.233447 , 12.387447 , -6.866291 , -0.837138 , -0.099704 , 0.993500 , -0.054628 , 0.794807 , 0.246716 , 11.164967 , -4.205982 , -1.141036 , -0.054903 , -0.788324 , 0.612781 , 0.762261 , 0.293654 , 11.442928 , -4.359180 , -1.111743 , -0.227699 , -0.589312 , 0.775140 , 0.768958 , 0.291105 , 11.519039 , -4.424618 , -0.679118 , -0.103092 , -0.955779 , -0.275338 , 0.770466 , 0.298910 , 11.852413 , -4.314693 , -1.080279 , -0.090060 , -0.821406 , 0.563158 , 0.777275 , 0.291860 , 11.167667 , -4.464565 , -0.426188 , -0.108554 , -0.951964 , -0.286294 , 0.763628 , 0.303727 , 11.902523 , 1.475399 , -0.561721 , -0.261055 , 0.069155 , 0.962828 , 0.780176 , 0.486228 , 11.422382 , 0.881992 , -0.635276 , 0.071566 , -0.043886 , 0.996460 , 0.767466 , 0.477503 , 11.868114 , 1.003262 , -0.628493 , -0.185125 , -0.012268 , 0.982635 , 0.777204 , 0.476881 , 11.791027 , 0.475056 , -0.599440 , -0.648762 , 0.535936 , 0.540208 , 0.775369 , 0.469395 , 11.479336 , 0.608105 , -0.719767 , 0.151189 , -0.006195 , 0.988464 , 0.771114 , 0.472026 , 11.189129 , 0.200840 , -0.043566 , 0.130131 , 0.927244 , 0.351085 , 0.766531 , 0.457618 , -12.938848 , 7.006580 , -0.979266 , 0.006897 , -0.159398 , 0.987182 , 0.181466 , 0.630366 , -12.837446 , 7.579390 , -0.853293 , -0.009827 , 0.051180 , 0.998627 , 0.183805 , 0.644825 , -12.994566 , 7.325430 , -0.895617 , 0.039094 , -0.179846 , 0.982910 , 0.177167 , 0.637748 , -15.306410 , 7.607183 , -0.892365 , -0.102084 , 0.106784 , 0.989013 , 0.122024 , 0.646470 , -15.696150 , 7.419310 , -0.924155 , -0.061251 , -0.037904 , 0.997375 , 0.111391 , 0.640200 , -15.629461 , 7.054813 , -0.996644 , -0.039918 , -0.112735 , 0.992798 , 0.114281 , 0.633420 , -15.887815 , 7.952406 , -1.058089 , -0.087100 , 0.559923 , 0.823908 , 0.109232 , 0.650945 , -15.815313 , 8.257572 , -1.494670 , -0.102115 , 0.884610 , 0.455000 , 0.112475 , 0.665955 , -16.259695 , 7.994848 , -1.137717 , -0.075869 , 0.680166 , 0.729087 , 0.098508 , 0.657088 , -10.976851 , 7.303791 , -0.928779 , 0.016144 , -0.148900 , 0.988708 , 0.226474 , 0.641722 , -11.667585 , 6.936373 , -1.001898 , 0.005737 , -0.104129 , 0.994537 , 0.211212 , 0.633335 , -10.751066 , 7.036617 , -1.002111 , 0.010346 , -0.125462 , 0.992035 , 0.231141 , 0.635667 , -10.687597 , 7.455736 , -0.900943 , 0.031251 , -0.053194 , 0.998077 , 0.231955 , 0.645283 , -10.921675 , 7.722799 , -0.929065 , -0.031861 , 0.313883 , 0.948912 , 0.225319 , 0.649151 , -9.530592 , 6.943008 , -0.998126 , -0.001953 , -0.095523 , 0.995422 , 0.262247 , 0.636987 , -9.038458 , 7.383793 , -0.957831 , 0.088443 , 0.065645 , 0.993896 , 0.269434 , 0.646371 , -9.427038 , 7.551521 , -0.889258 , 0.101291 , 0.121891 , 0.987335 , 0.261241 , 0.645665 , -9.483335 , 7.767767 , -0.958972 , 0.027406 , 0.526017 , 0.850002 , 0.259794 , 0.650770 , -9.179220 , 7.883314 , -1.099284 , 0.161046 , 0.716453 , 0.678762 , 0.267411 , 0.653607 , -14.268961 , 7.670479 , -0.828807 , -0.033021 , 0.153325 , 0.987610 , 0.147739 , 0.646898 , -14.432867 , 7.975782 , -0.960303 , -0.032441 , 0.569597 , 0.821253 , 0.139122 , 0.654769 , -14.708368 , 7.543694 , -0.842844 , -0.038881 , 0.000092 , 0.999237 , 0.136218 , 0.641951 , -13.523787 , 7.799314 , -0.855052 , 0.044710 , 0.342570 , 0.938414 , 0.162952 , 0.649446 , -13.690680 , 7.495457 , -0.846862 , 0.021210 , -0.129307 , 0.991363 , 0.160314 , 0.641263 , -13.071775 , 7.828611 , -0.882499 , 0.062624 , 0.407117 , 0.911191 , 0.174244 , 0.648300 , -12.457083 , 7.449154 , -0.875422 , 0.013611 , -0.084506 , 0.996307 , 0.192028 , 0.644073 , -12.370741 , 6.872002 , -1.001345 , 0.005097 , -0.102390 , 0.994720 , 0.196224 , 0.632975 , -7.741650 , 7.887239 , -1.332385 , 0.008087 , 0.828150 , 0.560411 , 0.298889 , 0.656847 , -7.892689 , 7.585552 , -1.096854 , 0.080203 , 0.358501 , 0.930052 , 0.300345 , 0.646705 , -7.537060 , 7.786398 , -1.211936 , 0.128788 , 0.640797 , 0.756798 , 0.306711 , 0.652303 , -12.355131 , 8.352377 , -1.614419 , 0.002411 , 0.895505 , 0.445021 , 0.192146 , 0.671160 , -12.287054 , 8.107883 , -1.180552 , 0.044710 , 0.746330 , 0.664022 , 0.194269 , 0.661078 , -11.603247 , 8.227390 , -1.376323 , 0.051912 , 0.820795 , 0.568804 , 0.209846 , 0.665270 , -6.228420 , 7.740177 , -1.197779 , -0.089755 , 0.372997 , 0.923460 , 0.341338 , 0.653453 , -6.821598 , 7.835606 , -1.294497 , -0.093234 , 0.615040 , 0.782922 , 0.324701 , 0.658444 , -7.061794 , 7.340824 , -1.112918 , 0.038545 , 0.231269 , 0.972106 , 0.320269 , 0.645416 , -8.429815 , 7.642679 , -1.049453 , 0.016175 , 0.523606 , 0.851772 , 0.282545 , 0.651645 , -8.380308 , 7.890385 , -1.410014 , 0.087527 , 0.867061 , 0.490402 , 0.285275 , 0.659654 , -8.739668 , 7.978184 , -1.397227 , 0.136814 , 0.870388 , 0.472915 , 0.275420 , 0.659715 , -13.451338 , 8.070408 , -1.105876 , 0.060640 , 0.766320 , 0.639546 , 0.165350 , 0.658816 , -8.131849 , 8.337927 , -2.468611 , -0.276803 , 0.838221 , 0.469802 , 0.285462 , 0.685701 , -8.495855 , 8.420963 , -2.870280 , -0.250099 , 0.855129 , 0.454054 , 0.277253 , 0.691019 , -8.509710 , 8.259098 , -2.542033 , -0.100925 , 0.927793 , 0.359081 , 0.277355 , 0.683584 , -9.519430 , 7.960150 , -1.228915 , 0.060976 , 0.867702 , 0.493301 , 0.259028 , 0.657792 , -11.368338 , 7.924229 , -1.055888 , 0.021149 , 0.637898 , 0.769799 , 0.217025 , 0.656402 , -11.428061 , 7.589293 , -0.889056 , 0.032380 , 0.129826 , 0.990997 , 0.217023 , 0.647448 , -8.291983 , 7.406248 , -0.992388 , 0.090274 , 0.155004 , 0.983764 , 0.287195 , 0.645685 , -8.649500 , 7.062473 , -0.987369 , 0.018952 , -0.008515 , 0.999756 , 0.280310 , 0.640700 , -11.698278 , 7.727453 , -0.898902 , -0.000031 , 0.359630 , 0.933073 , 0.210506 , 0.649819 , -9.096472 , 8.064009 , -1.623694 , 0.113254 , 0.935850 , 0.333659 , 0.265557 , 0.664788 , -14.857550 , 8.286625 , -1.350871 , -0.043580 , 0.869411 , 0.492111 , 0.132295 , 0.664393 , -14.238424 , 8.279377 , -1.317363 , 0.009400 , 0.858486 , 0.512711 , 0.147007 , 0.663566 , -12.479269 , 7.780285 , -0.909083 , 0.048860 , 0.390393 , 0.919340 , 0.190965 , 0.650527 , -12.768843 , 8.009245 , -1.041747 , 0.002106 , 0.671316 , 0.741142 , 0.183296 , 0.654769 , -1.082470 , 8.326923 , -1.046191 , -0.175268 , 0.516373 , 0.838191 , 0.468007 , 0.675503 , -0.503803 , 8.663792 , -1.195445 , -0.169561 , 0.702933 , 0.690725 , 0.478039 , 0.685498 , -0.969067 , 8.721617 , -1.443743 , -0.233619 , 0.820826 , 0.521165 , 0.467457 , 0.687384 , -8.122515 , 7.191225 , -1.004170 , 0.072146 , 0.085299 , 0.993713 , 0.292821 , 0.639969 , -6.899570 , 6.569721 , -1.002433 , 0.008087 , 0.064180 , 0.997894 , 0.320088 , 0.627173 , -11.730642 , 7.949705 , -1.088607 , -0.001160 , 0.658101 , 0.752892 , 0.205476 , 0.656992 , -12.076605 , 7.617956 , -0.870082 , 0.031465 , 0.191137 , 0.981048 , 0.201642 , 0.646615 , -10.423025 , 7.310087 , -0.940737 , -0.002716 , -0.163091 , 0.986602 , 0.238712 , 0.643011 , -8.476477 , 8.161991 , -2.168010 , -0.008240 , 0.956175 , 0.292642 , 0.277951 , 0.677241 , -8.052351 , 8.131941 , -2.060317 , -0.110111 , 0.913968 , 0.390484 , 0.288697 , 0.675720 , -11.708227 , 7.311579 , -0.916610 , -0.014466 , -0.163549 , 0.986419 , 0.211577 , 0.642044 , -9.791510 , 7.846262 , -1.035945 , 0.045991 , 0.657888 , 0.751671 , 0.251736 , 0.651937 , -10.007887 , 7.137766 , -0.981488 , -0.008240 , -0.179418 , 0.983734 , 0.245869 , 0.638990 , -10.239416 , 7.719458 , -0.892398 , 0.016724 , 0.332133 , 0.943052 , 0.243435 , 0.649453 , -10.569525 , 7.806791 , -0.933619 , 0.008240 , 0.446547 , 0.894681 , 0.235372 , 0.652112 , -16.222273 , 7.525127 , -0.946402 , -0.023499 , 0.050783 , 0.998413 , 0.097999 , 0.643932 , -8.125471 , 7.671293 , -1.104831 , 0.075442 , 0.554155 , 0.828974 , 0.291874 , 0.649632 , -11.001303 , 8.059187 , -1.184573 , -0.017640 , 0.758080 , 0.651875 , 0.227375 , 0.660878 , -14.066969 , 7.997129 , -0.966441 , 0.002533 , 0.623646 , 0.781671 , 0.152043 , 0.654882 , -16.488317 , 7.751245 , -0.979544 , 0.014405 , 0.390332 , 0.920530 , 0.090033 , 0.651036 , -5.564945 , 8.269840 , -1.550822 , -0.078951 , 0.742210 , 0.665487 , 0.359097 , 0.671484 , -5.802868 , 7.964041 , -1.229789 , -0.123508 , 0.583728 , 0.802454 , 0.354204 , 0.657483 , -5.325840 , 8.119877 , -1.324015 , -0.090426 , 0.720695 , 0.687307 , 0.366904 , 0.661977 , -15.485487 , 8.052359 , -1.095618 , -0.106296 , 0.670247 , 0.734458 , 0.119426 , 0.655655 , -12.635900 , 9.863682 , -4.168612 , 0.081545 , 0.226875 , 0.970489 , 0.181320 , 0.739694 , -12.526831 , 9.484211 , -4.045817 , 0.097049 , 0.478408 , 0.872738 , 0.185147 , 0.728980 , -12.032751 , 9.828205 , -4.253253 , 0.200262 , 0.223395 , 0.953917 , 0.196888 , 0.738181 , -3.067142 , 8.212101 , -1.220256 , 0.002716 , 0.849208 , 0.528031 , 0.422082 , 0.669352 , -3.403736 , 8.040386 , -0.961215 , -0.016083 , 0.577776 , 0.816004 , 0.414132 , 0.661719 , -2.877583 , 7.932718 , -0.932948 , 0.099673 , 0.384167 , 0.917844 , 0.425385 , 0.660474 , -10.078253 , 8.323490 , -1.953044 , 0.160375 , 0.953673 , 0.254494 , 0.243671 , 0.677351 , -9.643995 , 8.463697 , -3.021437 , 0.122166 , 0.960234 , 0.250984 , 0.253982 , 0.696651 , -10.136053 , 8.614689 , -3.254985 , 0.165624 , 0.935148 , 0.313059 , 0.242465 , 0.701181 , -11.152472 , 8.357304 , -1.647380 , 0.052553 , 0.899289 , 0.434156 , 0.221711 , 0.670844 , -10.238836 , 8.184025 , -1.418162 , 0.116031 , 0.873714 , 0.472335 , 0.243236 , 0.664644 , -8.948248 , 8.486027 , -3.209391 , -0.099124 , 0.904721 , 0.414258 , 0.266860 , 0.696586 , -8.763189 , 8.248051 , -2.483439 , 0.049898 , 0.959807 , 0.276162 , 0.269620 , 0.684999 , -16.689672 , 8.064915 , -1.309123 , 0.053987 , 0.842341 , 0.536210 , 0.088302 , 0.661116 , -5.177448 , 7.913485 , -1.116027 , -0.115421 , 0.454024 , 0.883450 , 0.371229 , 0.653324 , -5.549168 , 7.779099 , -1.113600 , -0.095767 , 0.312174 , 0.945158 , 0.360262 , 0.650504 , -4.769321 , 7.891329 , -1.053221 , -0.131657 , 0.425031 , 0.895535 , 0.381139 , 0.652737 , -7.313046 , 7.652910 , -1.189105 , 0.107974 , 0.487320 , 0.866482 , 0.314427 , 0.651801 , -3.432674 , 7.010626 , -0.989960 , -0.011353 , -0.065767 , 0.997742 , 0.416381 , 0.638257 , -4.017818 , 7.639465 , -0.957941 , -0.074221 , -0.009003 , 0.997192 , 0.400174 , 0.649521 , -4.516773 , 7.190632 , -1.008239 , -0.035310 , -0.009369 , 0.999329 , 0.387729 , 0.637333 , -5.013882 , 8.577589 , -1.812701 , 0.041749 , 0.668050 , 0.742912 , 0.371612 , 0.683971 , -5.736271 , 8.358341 , -1.659831 , -0.091861 , 0.673421 , 0.733512 , 0.353164 , 0.678247 , -6.052280 , 8.070120 , -1.389735 , -0.155217 , 0.700339 , 0.696707 , 0.344287 , 0.662129 , -7.333942 , 7.930302 , -1.501689 , -0.007935 , 0.842524 , 0.538560 , 0.309981 , 0.661588 , -10.018789 , 7.495653 , -0.888022 , 0.032136 , -0.011902 , 0.999390 , 0.247627 , 0.643452 , -6.588200 , 7.061350 , -1.057273 , -0.019013 , 0.154454 , 0.987793 , 0.332605 , 0.639926 , -5.921757 , 7.528507 , -1.128833 , -0.086520 , 0.163488 , 0.982727 , 0.348231 , 0.643258 , -4.451801 , 7.691589 , -0.983817 , -0.074465 , 0.093295 , 0.992828 , 0.390095 , 0.648592 , -4.910297 , 7.484890 , -1.027331 , -0.082369 , 0.057924 , 0.994903 , 0.375772 , 0.642948 , 18.157970 , -1.100155 , 1.741357 , -0.153233 , 0.872189 , 0.464492 , 0.928671 , 0.408815 , 19.120235 , -0.598179 , 0.630494 , 0.425367 , 0.837245 , 0.343516 , 0.960490 , 0.429629 , 19.212536 , -0.759335 , 0.873193 , 0.402936 , 0.828974 , 0.387799 , 0.957229 , 0.421073 , 18.295055 , -1.184795 , 2.145402 , -0.222297 , 0.876583 , 0.426801 , 0.929553 , 0.402761 , 19.347073 , -1.121304 , 1.958528 , 0.365551 , 0.812311 , 0.454390 , 0.944189 , 0.401752 , 19.276295 , -1.376545 , 2.289460 , 0.341411 , 0.549669 , 0.762383 , 0.942797 , 0.399180 , 18.523647 , -0.552738 , 1.479017 , -0.525163 , 0.847255 , -0.079531 , 0.937502 , 0.413824 , 19.086994 , -0.726421 , 1.549283 , 0.841487 , 0.539872 , 0.020386 , 0.945841 , 0.411720 , 19.235737 , -0.910671 , 1.224622 , 0.620563 , 0.745933 , 0.241737 , 0.954491 , 0.412907 , 18.942295 , -0.570011 , 1.193799 , 0.393414 , 0.913083 , 0.107089 , 0.947228 , 0.418434 , 19.039455 , -0.775959 , 1.842309 , 0.709647 , 0.345317 , 0.614093 , 0.943059 , 0.408154 , 17.584278 , -0.306728 , 1.374276 , 0.305551 , 0.579943 , 0.755150 , 0.912209 , 0.425227 , 17.698383 , -0.506374 , 1.454877 , 0.145421 , 0.324259 , 0.934721 , 0.911364 , 0.420173 , 17.890095 , -0.566845 , 1.463983 , 0.336192 , 0.316538 , 0.886990 , 0.916375 , 0.420519 , -4.220745 , 6.693995 , -0.997198 , -0.008118 , 0.007691 , 0.999908 , 0.393544 , 0.625737 , -5.637424 , 7.183811 , -1.054148 , -0.052217 , 0.118534 , 0.991546 , 0.355470 , 0.638245 , -5.879498 , 6.668285 , -1.004444 , -0.009583 , 0.054353 , 0.998474 , 0.345712 , 0.622602 , 18.107243 , -0.187290 , 1.113347 , 0.300729 , 0.390728 , 0.869961 , 0.923019 , 0.432208 , 18.284420 , 0.391537 , 0.888746 , 0.506974 , 0.327860 , 0.797143 , 0.923673 , 0.437936 , 17.813938 , -0.075893 , 1.059133 , 0.092837 , 0.546678 , 0.832148 , 0.916480 , 0.433336 , -2.173733 , 7.918295 , -0.985499 , -0.001221 , 0.354534 , 0.935026 , 0.441090 , 0.660947 , -2.510471 , 7.269741 , -0.970949 , 0.026673 , -0.068545 , 0.997284 , 0.435066 , 0.651067 , -2.000942 , 7.672087 , -0.962828 , 0.019929 , 0.075472 , 0.996918 , 0.449248 , 0.654366 , -14.573195 , 7.083958 , -0.965056 , -0.006378 , -0.188574 , 0.982025 , 0.139351 , 0.631799 , -4.793522 , 8.382755 , -1.620524 , 0.022095 , 0.773278 , 0.633625 , 0.378684 , 0.674679 , -8.345259 , 8.048353 , -1.810282 , 0.031098 , 0.951750 , 0.305277 , 0.280547 , 0.668638 , 1.256733 , 8.920073 , -0.837256 , -0.744469 , 0.190283 , 0.639912 , 0.522947 , 0.693266 , 1.429211 , 8.923616 , -0.598300 , -0.751976 , -0.133457 , 0.645497 , 0.529702 , 0.696879 , 1.495113 , 9.415638 , -0.587443 , -0.750420 , 0.475356 , 0.459212 , 0.529971 , 0.706371 , -15.022772 , 7.998699 , -0.971484 , -0.066286 , 0.554674 , 0.829402 , 0.129792 , 0.655083 , -7.837048 , 6.670731 , -0.999030 , 0.002411 , 0.001312 , 0.999969 , 0.295804 , 0.617886 , -7.975613 , 8.026701 , -1.659083 , -0.041871 , 0.934080 , 0.354503 , 0.291673 , 0.665375 , -7.552860 , 8.141300 , -1.920695 , -0.118717 , 0.840266 , 0.528977 , 0.301312 , 0.672695 , -9.612009 , 8.079670 , -1.423960 , 0.139286 , 0.899838 , 0.413373 , 0.253000 , 0.663086 , -8.108282 , 9.272739 , -3.992045 , -0.208106 , 0.659963 , 0.721885 , 0.287904 , 0.726992 , -8.723639 , 9.321980 , -4.134379 , -0.158086 , 0.553575 , 0.817621 , 0.274463 , 0.727522 , -8.812719 , 9.064695 , -3.848565 , -0.192602 , 0.685568 , 0.702017 , 0.273904 , 0.718719 , -10.738409 , 8.491154 , -2.164469 , 0.132786 , 0.955168 , 0.264595 , 0.230657 , 0.679798 , -6.888187 , 8.119572 , -1.707194 , -0.179846 , 0.750237 , 0.636219 , 0.319449 , 0.668991 , -2.547237 , 7.789875 , -0.948806 , 0.084811 , 0.202033 , 0.975677 , 0.433800 , 0.659764 , 1.619755 , 9.153641 , -0.293200 , -0.545305 , -0.046632 , 0.836909 , 0.533627 , 0.702037 , 1.961117 , 9.152983 , -0.194152 , -0.044099 , -0.069369 , 0.996612 , 0.538225 , 0.700737 , 2.052090 , 9.497122 , -0.354937 , 0.109012 , 0.691855 , 0.713736 , 0.538137 , 0.706416 , 17.711216 , -0.892879 , 1.726644 , -0.073000 , 0.910825 , 0.406232 , 0.916815 , 0.410203 , 17.933620 , -1.117649 , 2.092618 , 0.232490 , 0.892697 , 0.385998 , 0.923672 , 0.403508 , 18.076908 , -0.445705 , 1.270055 , 0.700766 , 0.245766 , 0.669698 , 0.922321 , 0.425758 , 18.087414 , -0.606441 , 1.177449 , 0.957976 , -0.138646 , 0.251015 , 0.927398 , 0.421678 , 18.233479 , -0.499538 , 0.878885 , 0.453017 , -0.242378 , 0.857906 , 0.930169 , 0.425275 , -4.358021 , 8.024071 , -1.051413 , -0.110446 , 0.588092 , 0.801172 , 0.392297 , 0.658328 , -4.615009 , 8.195253 , -1.364741 , -0.057039 , 0.806269 , 0.588733 , 0.384917 , 0.665161 , 1.300991 , 8.568090 , -0.713889 , -0.486373 , 0.080508 , 0.870022 , 0.521816 , 0.684108 , 1.555752 , 8.589651 , -0.579570 , -0.419507 , -0.194159 , 0.886715 , 0.531047 , 0.687052 , -1.924923 , 8.071714 , -1.073210 , -0.049135 , 0.471603 , 0.880428 , 0.448775 , 0.665665 , -1.697575 , 7.898249 , -1.012431 , -0.084048 , 0.239143 , 0.967315 , 0.455685 , 0.661447 , -1.473545 , 8.261763 , -1.129824 , -0.195990 , 0.553636 , 0.809320 , 0.457087 , 0.670068 , 0.724117 , 9.895206 , -2.859721 , -0.474899 , -0.143010 , 0.868313 , 0.496497 , 0.746296 , 0.899357 , 10.368858 , -2.666987 , -0.364086 , -0.052400 , 0.929868 , 0.502650 , 0.758579 , 0.531002 , 10.359226 , -2.789714 , -0.243324 , -0.237617 , 0.940367 , 0.491525 , 0.757639 , -8.734404 , 7.494953 , -0.996644 , 0.095309 , 0.283029 , 0.954344 , 0.274837 , 0.648060 , -1.363041 , 7.876902 , -0.925956 , -0.120457 , 0.114475 , 0.986084 , 0.463704 , 0.663308 , 17.973240 , -0.902119 , 1.473642 , 0.230628 , 0.712485 , 0.662648 , 0.923213 , 0.416094 , 18.090923 , -0.792919 , 1.223806 , 0.545579 , 0.792444 , 0.272622 , 0.930465 , 0.419259 , 18.871403 , -0.501675 , 1.421708 , 0.295633 , 0.901486 , -0.316050 , 0.941572 , 0.414037 , 17.628765 , -0.802349 , 1.508180 , 0.163244 , 0.432173 , 0.886868 , 0.912631 , 0.415438 , 17.496197 , -1.197437 , 2.419130 , -0.408979 , 0.772240 , 0.486160 , 0.917433 , 0.397535 , 18.118679 , 0.676670 , 0.806165 , 0.151921 , 0.689718 , 0.707938 , 0.921801 , 0.443029 , 17.944118 , 0.367680 , 0.916738 , -0.126988 , 0.352245 , 0.927244 , 0.919116 , 0.439679 , 17.191463 , 0.435070 , -0.033648 , -0.850581 , 0.525681 , -0.010926 , 0.905845 , 0.459461 , 17.394825 , 0.416546 , -0.610499 , -0.723991 , 0.689779 , 0.004700 , 0.904571 , 0.467285 , 17.186611 , 0.104740 , -0.253779 , -0.828150 , 0.551897 , -0.097476 , 0.898143 , 0.461595 , 17.368931 , 0.575024 , -0.369548 , -0.741111 , 0.574450 , -0.347423 , 0.907722 , 0.464656 , 17.552563 , 0.814449 , -0.241233 , -0.431745 , 0.901089 , -0.040040 , 0.913907 , 0.463203 , 17.689930 , 0.726421 , -0.500335 , -0.498642 , 0.835566 , -0.230476 , 0.914205 , 0.469994 , 18.282314 , -0.193935 , 0.980794 , 0.563707 , 0.009552 , 0.825892 , 0.929494 , 0.431873 , 18.526424 , -0.114780 , 0.874223 , 0.026124 , 0.387219 , 0.921598 , 0.937938 , 0.434568 , 18.380825 , 0.101055 , 0.863378 , 0.653127 , 0.302377 , 0.694205 , 0.932829 , 0.439329 , 17.715054 , 0.640369 , 0.398980 , -0.466781 , 0.870632 , 0.155095 , 0.915305 , 0.450518 , 17.565266 , 0.565228 , 0.166833 , -0.603839 , 0.677938 , 0.419202 , 0.911840 , 0.452566 , 17.301205 , 0.415539 , 0.302236 , -0.650349 , 0.722556 , 0.234321 , 0.907983 , 0.451637 , 17.501858 , 0.657246 , 0.012594 , -0.456404 , 0.803522 , 0.382092 , 0.912507 , 0.455648 , 18.771961 , 0.001949 , 0.900444 , -0.062746 , 0.732963 , 0.677328 , 0.944623 , 0.436888 , 19.016483 , -0.357174 , 0.680284 , 0.963530 , -0.123661 , 0.237159 , 0.955113 , 0.432019 , 18.998493 , -0.519550 , 0.395936 , 0.708213 , 0.351360 , 0.612323 , 0.957965 , 0.433149 , 19.130764 , -0.204678 , 0.587323 , 0.854030 , -0.306101 , 0.420606 , 0.955799 , 0.435654 , 18.457157 , -0.399342 , 0.879541 , -0.185827 , 0.027253 , 0.982177 , 0.936327 , 0.428145 , 19.243961 , -0.181011 , 0.346486 , 0.512284 , -0.025575 , 0.858394 , 0.957901 , 0.439830 , 19.204067 , 0.153133 , 0.600045 , 0.825556 , 0.327403 , 0.459548 , 0.952978 , 0.439164 , 17.075748 , 0.022045 , -0.467845 , -0.359325 , 0.878323 , 0.315256 , 0.892929 , 0.464378 , 17.236919 , 0.427547 , -0.999739 , -0.310678 , 0.442671 , 0.841121 , 0.899363 , 0.472543 , 16.913174 , -0.091572 , 0.032361 , -0.210211 , 0.974700 , 0.075838 , 0.892017 , 0.459275 , 18.393078 , 0.657291 , 0.568498 , 0.770623 , 0.613514 , 0.172369 , 0.927562 , 0.445478 , 17.998142 , 0.791935 , 0.590139 , -0.155431 , 0.962249 , 0.223334 , 0.921052 , 0.447060 , 17.078938 , 0.046337 , 0.679796 , -0.779656 , 0.603259 , 0.167760 , 0.901645 , 0.444942 , 17.064335 , -0.036427 , 1.009183 , -0.615192 , 0.786248 , 0.057711 , 0.898319 , 0.437379 , 17.352047 , 0.101536 , 1.031636 , -0.116428 , 0.831385 , 0.543352 , 0.907863 , 0.436628 , 16.881046 , -0.332088 , 0.682546 , -0.555986 , 0.791650 , 0.253243 , 0.894368 , 0.443278 , 16.991062 , -0.047169 , 0.248269 , -0.623280 , 0.776391 , 0.093326 , 0.898055 , 0.453793 , 17.625744 , 0.183933 , 0.879701 , -0.088778 , 0.558123 , 0.824946 , 0.915078 , 0.439663 , 17.433582 , 0.397587 , 0.692048 , -0.500778 , 0.727256 , 0.469344 , 0.910858 , 0.444718 , 16.648884 , -0.095531 , 0.318273 , 0.150670 , 0.929289 , 0.337199 , 0.886640 , 0.452361 , 16.853764 , -0.401600 , 1.720056 , -0.030152 , 0.456648 , 0.889096 , 0.895607 , 0.422889 , 16.527218 , -0.497547 , 1.583146 , 0.105899 , 0.797174 , 0.594348 , 0.886221 , 0.422914 , 16.704159 , -0.661373 , 1.771486 , -0.047823 , 0.148137 , 0.987793 , 0.893338 , 0.415935 , 16.874554 , -1.161297 , 1.418153 , 0.013764 , -0.108951 , 0.993927 , 0.895547 , 0.408169 , 16.686901 , -1.089230 , 1.550100 , 0.564287 , -0.314585 , 0.763268 , 0.892722 , 0.408349 , 16.706974 , -1.296124 , 1.564859 , 0.473678 , 0.499649 , 0.725211 , 0.892319 , 0.405381 , 16.670361 , -1.416210 , 1.845041 , -0.026063 , 0.717277 , 0.696280 , 0.893700 , 0.400594 , 17.012150 , -1.402348 , 1.518117 , -0.185400 , 0.646931 , 0.739647 , 0.898995 , 0.405135 , 17.265858 , -0.631306 , 1.631704 , 0.283395 , 0.191137 , 0.939756 , 0.904130 , 0.419590 , 16.907818 , -0.196209 , 1.562139 , -0.163244 , 0.774499 , 0.611103 , 0.900554 , 0.426518 , 17.208256 , -0.233974 , 1.526193 , 0.268319 , 0.540849 , 0.797143 , 0.905658 , 0.426582 , 17.121937 , -0.889118 , 1.664235 , 0.025422 , -0.195654 , 0.980316 , 0.899536 , 0.411478 , 16.501461 , -0.997433 , 1.761235 , 0.448836 , -0.140049 , 0.882534 , 0.888885 , 0.409322 , 16.459919 , -0.708721 , 1.730218 , 0.302103 , 0.266152 , 0.915342 , 0.884772 , 0.414895 , 16.477009 , -0.396465 , 0.724431 , 0.389416 , 0.769066 , 0.506790 , 0.886474 , 0.441208 , 16.699955 , -0.481770 , 0.967817 , -0.342692 , 0.935240 , 0.088717 , 0.889590 , 0.438271 , 16.695408 , -0.314999 , 0.600759 , 0.028138 , 0.813623 , 0.580645 , 0.888715 , 0.443844 , 16.503025 , -0.579380 , 1.249765 , 0.092654 , 0.989746 , -0.108554 , 0.884094 , 0.431648 , 16.702991 , -0.281414 , 1.472821 , -0.639576 , 0.747765 , 0.178106 , 0.893841 , 0.430053 , 17.243320 , -1.343037 , 1.695920 , -0.599841 , 0.708365 , 0.371990 , 0.906407 , 0.403626 , 17.267963 , -1.158558 , 1.593175 , -0.305399 , 0.069643 , 0.949644 , 0.904315 , 0.408337 , 17.553028 , -1.075092 , 1.980748 , -0.443495 , 0.858241 , 0.258217 , 0.915388 , 0.402807 , 17.464191 , -1.055248 , 1.649060 , -0.416669 , 0.505295 , 0.755638 , 0.909847 , 0.409267 , 19.266613 , -0.979168 , 1.592160 , 0.636830 , 0.738426 , 0.221717 , 0.947344 , 0.406320 , 16.405727 , -1.356319 , 1.725381 , 0.211951 , 0.266701 , 0.940153 , 0.883910 , 0.400869 , 16.961582 , -1.533154 , 1.935552 , -0.261483 , 0.741295 , 0.618091 , 0.900956 , 0.398529 , 17.283489 , -1.360119 , 2.028196 , -0.700674 , 0.699149 , 0.142094 , 0.908335 , 0.398241 , 18.955669 , -2.416714 , 1.469220 , 0.748131 , -0.611469 , 0.257576 , 0.941702 , 0.375933 , 19.539791 , -10.058659 , 1.085679 , 0.962188 , 0.182348 , 0.202307 , 0.938259 , 0.135046 , 19.475315 , -10.186878 , 0.256784 , 0.945982 , 0.289987 , 0.144780 , 0.945288 , 0.134281 , 19.514271 , -9.711826 , 0.395681 , 0.974944 , 0.219398 , -0.036134 , 0.942039 , 0.143470 , 18.043995 , -1.299526 , 2.238893 , 0.145726 , 0.735588 , 0.661550 , 0.925642 , 0.399174 , 19.411594 , -0.834560 , 1.010339 , 0.176672 , 0.840114 , 0.512803 , 0.960727 , 0.417489 , 16.704769 , -1.779919 , 2.014182 , -0.077273 , -0.015229 , 0.996887 , 0.892208 , 0.393115 , 16.277699 , -1.641941 , 2.040944 , -0.078036 , 0.338176 , 0.937834 , 0.883622 , 0.393134 , 15.904819 , -1.685642 , 1.945935 , -0.251381 , 0.194525 , 0.948119 , 0.875283 , 0.392301 , 16.317669 , -2.009899 , 1.953500 , 0.000580 , -0.418836 , 0.908048 , 0.883007 , 0.386295 , 19.251301 , -0.457813 , 0.330922 , -0.017335 , 0.472335 , 0.881222 , 0.960378 , 0.435335 , 19.652851 , -0.262669 , 0.409303 , -0.233680 , 0.615894 , 0.752342 , 0.966057 , 0.439433 , 17.478291 , -2.898815 , 0.861932 , -0.055055 , -0.984924 , 0.163793 , 0.914629 , 0.360224 , 17.790386 , -2.925671 , 0.609411 , -0.097476 , -0.719993 , 0.687063 , 0.920200 , 0.357418 , 19.053425 , -8.619892 , 0.623792 , 0.752129 , 0.600330 , 0.271767 , 0.934143 , 0.165672 , 19.098949 , -8.987614 , 0.924474 , 0.554582 , 0.338511 , 0.760125 , 0.932828 , 0.159197 , 19.208538 , -8.874699 , 0.422658 , 0.903348 , 0.423475 , 0.067782 , 0.938722 , 0.163062 , 18.919147 , -8.427738 , 0.368844 , 0.710929 , 0.683401 , 0.165746 , 0.934444 , 0.173045 , 15.832150 , -7.337093 , 1.850423 , -0.106326 , 0.861415 , 0.496628 , 0.864890 , 0.200815 , 16.103802 , -6.978909 , 1.326741 , 0.083010 , 0.865719 , 0.493576 , 0.870066 , 0.207968 , 15.852833 , -6.800472 , 1.059690 , 0.020753 , 0.965178 , 0.260659 , 0.866217 , 0.212506 , 18.866306 , -8.603466 , 0.847348 , 0.453017 , 0.523881 , 0.721305 , 0.930339 , 0.167310 , 16.436367 , -7.076412 , 1.368428 , 0.323466 , 0.843562 , 0.428602 , 0.876619 , 0.205879 , 16.336597 , -6.933170 , 1.215478 , 0.360485 , 0.876431 , 0.319163 , 0.874315 , 0.209611 , 16.743519 , -2.567448 , 1.624040 , 0.106571 , -0.652943 , 0.749840 , 0.894955 , 0.372227 , 16.378338 , -2.795086 , 1.543695 , 0.239967 , -0.515091 , 0.822840 , 0.888002 , 0.367374 , 16.730015 , -2.841908 , 1.152467 , 0.322001 , -0.814173 , 0.483108 , 0.895196 , 0.360942 , 16.057529 , -2.532177 , 1.641385 , 0.207282 , -0.348674 , 0.913999 , 0.881013 , 0.374087 , 17.191334 , -2.797276 , 1.114774 , -0.096133 , -0.903592 , 0.417432 , 0.909511 , 0.363713 , 17.073238 , -2.651249 , 1.400842 , -0.024476 , -0.860317 , 0.509140 , 0.904212 , 0.369534 , 18.766232 , -2.777592 , 1.549020 , 0.730277 , -0.657002 , 0.187017 , 0.938037 , 0.373664 , 16.839291 , 0.259663 , -0.844760 , -0.018342 , 0.711478 , 0.702445 , 0.892059 , 0.470131 , 18.619656 , 0.022114 , 0.708272 , 0.058748 , 0.903287 , 0.424970 , 0.940517 , 0.440361 , 18.779301 , -2.679157 , 1.220117 , 0.678610 , -0.720969 , -0.140233 , 0.940557 , 0.370535 , 18.974133 , -2.484966 , 0.883317 , 0.416425 , -0.838771 , 0.350688 , 0.946458 , 0.364814 , 16.245213 , -3.336170 , 0.846402 , 0.534440 , -0.797601 , 0.279550 , 0.881839 , 0.351016 , 16.717236 , -3.121235 , 0.680177 , 0.222053 , -0.769707 , 0.598468 , 0.893901 , 0.347527 , 16.281094 , -3.441525 , 0.367292 , 0.356273 , -0.703879 , 0.614460 , 0.885324 , 0.343835 , 16.207523 , -3.093548 , 1.436021 , 0.484664 , -0.567492 , 0.665578 , 0.880757 , 0.362352 , 18.065937 , -0.772884 , 0.838277 , 0.597156 , 0.415235 , 0.686239 , 0.930690 , 0.422088 , 17.913837 , -3.133495 , 1.219362 , -0.140202 , -0.989349 , -0.038881 , 0.928218 , 0.368790 , 20.346333 , -1.948475 , 0.160676 , 0.139195 , -0.956511 , 0.256233 , 0.984056 , 0.373060 , 20.246647 , -2.033405 , 0.974328 , 0.393658 , -0.886685 , 0.242439 , 0.979101 , 0.382398 , 19.835255 , -2.263409 , 0.337209 , 0.665456 , -0.746239 , 0.014893 , 0.972053 , 0.369807 , 17.248714 , -3.068531 , 0.639585 , 0.080203 , -0.636280 , 0.767235 , 0.908221 , 0.353988 , 19.022663 , -2.243923 , 2.080434 , 0.379925 , -0.898312 , 0.220496 , 0.943795 , 0.386876 , 17.743824 , -3.623676 , 0.526670 , -0.045747 , -0.741691 , 0.669149 , 0.919061 , 0.348319 , 18.998501 , 0.239376 , 0.696145 , -0.248177 , 0.893063 , 0.375256 , 0.949131 , 0.439639 , 18.212017 , -2.920506 , 0.818300 , 0.238594 , -0.906827 , 0.347392 , 0.932385 , 0.362042 , 18.132030 , -3.314625 , 0.690820 , 0.076662 , -0.381054 , 0.921354 , 0.926283 , 0.354183 , 16.358692 , -0.222439 , 1.414106 , 0.607624 , 0.785913 , -0.114475 , 0.880366 , 0.426958 , 16.277920 , -0.294720 , 1.651441 , 0.515610 , 0.702445 , 0.490555 , 0.877701 , 0.423109 , 16.250141 , -1.025730 , 1.921067 , 0.361919 , -0.114658 , 0.925108 , 0.880929 , 0.409384 , -15.201483 , 9.000172 , -4.276683 , -0.051973 , 0.873806 , 0.483444 , 0.121881 , 0.716590 , -15.258360 , 9.214922 , -4.529315 , -0.110569 , 0.494980 , 0.861812 , 0.120816 , 0.724681 , -15.701300 , 9.117451 , -4.538630 , -0.065828 , 0.682333 , 0.728050 , 0.112749 , 0.721870 , -2.274357 , 12.185917 , -3.492015 , -0.280587 , -0.077670 , 0.956664 , 0.434258 , 0.800497 , -2.061527 , 11.527225 , -3.436686 , -0.462203 , 0.034120 , 0.886105 , 0.440181 , 0.784494 , -1.801273 , 12.073399 , -3.328898 , -0.350017 , 0.040803 , 0.935820 , 0.446339 , 0.796595 , -2.339153 , 8.269815 , -1.280963 , -0.088290 , 0.761223 , 0.642415 , 0.439981 , 0.670716 , -1.564930 , 7.567501 , -0.974193 , -0.025391 , -0.027833 , 0.999268 , 0.460052 , 0.653850 , -5.512974 , 11.158543 , -3.692326 , 0.095248 , 0.030335 , 0.994964 , 0.354374 , 0.770999 , -5.883488 , 11.387247 , -3.684446 , -0.037721 , 0.015107 , 0.999146 , 0.344905 , 0.777422 , -6.120579 , 10.431156 , -3.603816 , -0.130375 , 0.175542 , 0.975768 , 0.339814 , 0.752081 , -6.292728 , 8.207279 , -1.633708 , -0.172185 , 0.714499 , 0.678060 , 0.335299 , 0.671158 , -15.135397 , 6.912018 , -1.005980 , -0.016785 , -0.107669 , 0.994018 , 0.126700 , 0.629976 , -2.645977 , 8.158819 , -1.151137 , 0.071749 , 0.713370 , 0.697073 , 0.431435 , 0.667208 , -3.298557 , 7.717344 , -0.892191 , -0.015107 , 0.017884 , 0.999695 , 0.415902 , 0.654229 , 1.446606 , 8.163639 , -0.734828 , -0.103153 , -0.309427 , 0.945280 , 0.527916 , 0.675361 , 1.675419 , 9.471601 , -0.374705 , -0.410901 , 0.592853 , 0.692557 , 0.533987 , 0.706566 , -16.349188 , 8.471806 , -2.185466 , -0.107395 , 0.952696 , 0.284249 , 0.100510 , 0.677749 , -16.332113 , 8.167179 , -1.437663 , -0.079745 , 0.887112 , 0.454573 , 0.096248 , 0.664671 , -2.096386 , 7.073492 , -0.993584 , 0.007996 , -0.029511 , 0.999512 , 0.448746 , 0.631437 , 1.065083 , 9.084738 , -1.238810 , -0.670736 , 0.583178 , 0.458235 , 0.515347 , 0.701618 , 1.041561 , 8.799641 , -0.966243 , -0.454817 , 0.469466 , 0.756767 , 0.514632 , 0.687952 , 1.073238 , 8.017399 , -0.808108 , -0.069796 , -0.246529 , 0.966582 , 0.519135 , 0.669253 , 1.087132 , 7.622990 , -0.946299 , 0.003967 , -0.252083 , 0.967681 , 0.521242 , 0.659987 , -16.863531 , 8.308598 , -1.803752 , 0.039857 , 0.950346 , 0.308542 , 0.083427 , 0.673404 , -0.475002 , 7.304279 , -0.993530 , -0.009308 , -0.064913 , 0.997833 , 0.483111 , 0.647590 , 0.001385 , 7.818928 , -0.891433 , -0.029695 , -0.159551 , 0.986724 , 0.496291 , 0.661094 , 0.071133 , 7.476208 , -0.978731 , 0.012360 , -0.167943 , 0.985687 , 0.498773 , 0.653578 , -1.462467 , 8.524204 , -1.384623 , -0.229896 , 0.774957 , 0.588672 , 0.457926 , 0.681111 , 16.837887 , -0.909763 , 1.674737 , 0.178014 , -0.510453 , 0.841243 , 0.894032 , 0.410626 , 17.236195 , -1.428753 , 2.414552 , -0.785852 , 0.525529 , 0.325877 , 0.912848 , 0.395820 , 16.328892 , -0.506268 , 1.786752 , 0.530290 , 0.355296 , 0.769768 , 0.879919 , 0.418090 , 16.283901 , -0.787273 , 1.891710 , 0.451643 , 0.133427 , 0.882138 , 0.879265 , 0.413943 , 19.809498 , -2.401653 , 0.849904 , 0.448866 , -0.851833 , 0.269875 , 0.963315 , 0.374212 , 16.284634 , -7.408138 , 1.938924 , 0.183630 , 0.842372 , 0.506638 , 0.872511 , 0.197676 , 16.110577 , -0.402355 , 1.861081 , 0.636402 , 0.286599 , 0.716086 , 0.874170 , 0.417997 , 17.785801 , 0.596233 , 0.763730 , -0.418226 , 0.667898 , 0.615589 , 0.917263 , 0.444233 , 16.099628 , -0.118092 , 1.309716 , 0.346568 , 0.936918 , -0.045045 , 0.873355 , 0.430265 , 18.555431 , 0.132076 , 0.440465 , 0.437727 , 0.774499 , 0.456587 , 0.937642 , 0.445847 , 20.517834 , -0.890751 , 1.444944 , -0.246193 , 0.485488 , 0.838832 , 0.984640 , 0.412683 , 18.328899 , 0.501514 , 0.206495 , 0.713553 , 0.654897 , 0.248817 , 0.932557 , 0.453126 , 16.308147 , -6.796894 , 0.640249 , 0.198401 , 0.977447 , 0.071963 , 0.875267 , 0.215326 , 15.869686 , -6.851650 , -0.174693 , 0.103885 , 0.993072 , -0.054415 , 0.870139 , 0.230826 , 16.134502 , -6.813938 , 0.413198 , -0.034700 , 0.998840 , -0.032746 , 0.868733 , 0.222064 , 17.347095 , -4.220745 , -1.117312 , 0.178686 , -0.535905 , 0.825129 , 0.912169 , 0.305287 , 17.401608 , -3.775661 , -0.536418 , 0.145604 , -0.911771 , 0.383923 , 0.909193 , 0.321924 , 16.841908 , -4.148487 , -0.781668 , 0.216559 , -0.797540 , 0.563036 , 0.899946 , 0.310386 , 17.814144 , -3.960270 , -0.949782 , 0.098209 , -0.772149 , 0.627766 , 0.925198 , 0.312758 , 16.724201 , -4.425716 , -1.099398 , 0.027833 , -0.466781 , 0.883908 , 0.896093 , 0.299618 , 16.536098 , -4.013172 , -0.436717 , 0.253792 , -0.898618 , 0.357768 , 0.891159 , 0.320501 , 16.534237 , -4.202900 , -0.805037 , -0.047945 , -0.857784 , 0.511734 , 0.889029 , 0.308109 , 18.393604 , -3.944088 , -1.019278 , 0.107547 , -0.626759 , 0.771722 , 0.936704 , 0.312683 , 17.850964 , -4.293255 , -1.182868 , 0.011444 , -0.310038 , 0.950621 , 0.924759 , 0.302198 , 18.484409 , -4.363178 , -1.142306 , -0.018159 , -0.196905 , 0.980224 , 0.938812 , 0.303549 , 16.418377 , 0.585484 , -0.957476 , 0.291360 , 0.188910 , 0.937742 , 0.885400 , 0.475655 , 16.197285 , 0.751575 , -0.882857 , 0.226447 , 0.320414 , 0.919797 , 0.880351 , 0.477529 , 16.188007 , 0.462986 , -0.783763 , 0.478469 , 0.528886 , 0.700949 , 0.881026 , 0.472517 , 19.210514 , 0.290562 , 0.314752 , 0.300974 , 0.783227 , 0.543962 , 0.951622 , 0.446262 , 17.781803 , -6.832096 , -1.077957 , 0.035066 , 0.044221 , 0.998383 , 0.920669 , 0.241164 , 17.848438 , -7.116314 , -1.092463 , 0.047090 , 0.350017 , 0.935545 , 0.922152 , 0.232368 , 18.193836 , -7.055340 , -1.048804 , 0.040925 , 0.123997 , 0.991424 , 0.930972 , 0.233074 , 16.872532 , -7.260632 , 1.307576 , 0.464461 , 0.839534 , 0.281777 , 0.885019 , 0.201993 , 19.300755 , -2.519947 , 0.755658 , 0.158147 , -0.773339 , 0.613910 , 0.954248 , 0.365778 , 19.331776 , 0.690662 , -0.710986 , 0.324198 , 0.698874 , 0.637501 , 0.956514 , 0.467270 , 18.881435 , 0.582615 , -0.122912 , 0.214728 , 0.880856 , 0.421857 , 0.938031 , 0.457703 , 19.794521 , 0.410160 , -0.561503 , 0.167943 , 0.792566 , 0.586169 , 0.964988 , 0.460872 , 18.957958 , -2.546680 , -0.304812 , 0.482620 , -0.611530 , 0.626942 , 0.958660 , 0.354088 , 19.139202 , -3.382984 , -0.105174 , 0.553117 , -0.618458 , 0.558153 , 0.954328 , 0.343342 , 19.470127 , -2.616543 , -0.082496 , 0.392529 , -0.730430 , 0.558885 , 0.962080 , 0.355712 , 18.511105 , -3.585766 , 0.338521 , 0.333293 , -0.751701 , 0.569048 , 0.933409 , 0.349010 , 18.979198 , -2.905811 , 0.466024 , 0.562731 , -0.656514 , 0.502243 , 0.951545 , 0.356822 , 19.946186 , -2.257114 , -0.204646 , 0.392865 , -0.644307 , 0.656117 , 0.980973 , 0.362001 , 19.473194 , -2.665394 , 0.512815 , 0.466903 , -0.854427 , 0.227760 , 0.961011 , 0.363242 , 15.842716 , -4.295010 , -1.200629 , -0.094699 , -0.676595 , 0.730216 , 0.870265 , 0.301888 , 16.978756 , -4.816967 , -1.168152 , 0.038606 , -0.061007 , 0.997375 , 0.903996 , 0.292718 , 17.403805 , -4.512638 , -1.194052 , 0.098849 , -0.110782 , 0.988891 , 0.914402 , 0.297005 , 18.602177 , -8.271648 , 0.759527 , 0.495132 , 0.607013 , 0.621570 , 0.924706 , 0.174763 , 18.427929 , -7.934765 , -0.109736 , 0.596515 , 0.787347 , 0.155461 , 0.929836 , 0.183012 , 18.366802 , -8.058384 , 0.607991 , 0.410565 , 0.850337 , 0.329142 , 0.919032 , 0.183508 , 18.969250 , -4.139736 , -1.124209 , 0.095920 , -0.240547 , 0.965880 , 0.950410 , 0.308343 , 16.927410 , -6.999790 , 0.492402 , 0.457686 , 0.881954 , 0.112278 , 0.890477 , 0.211457 , 17.129696 , -7.113918 , 0.049733 , 0.465529 , 0.884762 , 0.020783 , 0.896347 , 0.216862 , 17.901485 , -7.353123 , -0.854998 , 0.419294 , 0.740196 , 0.525620 , 0.922380 , 0.222656 , 17.208904 , -7.135929 , -0.259593 , 0.369243 , 0.921934 , 0.116703 , 0.902849 , 0.220955 , 17.796459 , -7.403011 , -0.344584 , 0.517991 , 0.823939 , 0.229713 , 0.917211 , 0.210934 , 17.456974 , -6.958485 , -1.055575 , 0.112552 , 0.213660 , 0.970367 , 0.912757 , 0.240360 , 17.569950 , -7.171261 , -0.980662 , 0.273843 , 0.713584 , 0.644795 , 0.914248 , 0.232438 , 18.025890 , -7.946918 , 0.594751 , 0.448164 , 0.823634 , 0.347453 , 0.912621 , 0.189597 , 17.141743 , -7.055714 , -0.956232 , 0.201056 , 0.739525 , 0.642354 , 0.904641 , 0.239669 , 16.506924 , -6.960972 , -0.259166 , 0.209998 , 0.977203 , -0.031129 , 0.888321 , 0.227911 , 17.283115 , -6.531361 , -1.052393 , 0.046388 , 0.085116 , 0.995270 , 0.908093 , 0.250124 , 18.637325 , -3.628521 , -0.617163 , 0.254952 , -0.929685 , 0.265786 , 0.941785 , 0.325000 , 18.610317 , -3.726116 , -0.072173 , 0.306345 , -0.942015 , 0.136876 , 0.937665 , 0.336857 , 18.102764 , 0.865543 , -0.037928 , 0.141240 , 0.980529 , 0.136357 , 0.924696 , 0.460358 , 18.170742 , 0.804546 , 0.279584 , 0.369091 , 0.929289 , -0.012421 , 0.923200 , 0.452130 , 16.503231 , 0.220531 , -0.821288 , 0.234687 , 0.776971 , 0.584124 , 0.886246 , 0.470665 , 16.666111 , 0.446941 , -0.986750 , -0.047365 , 0.284982 , 0.957335 , 0.888827 , 0.473388 , 19.493137 , 0.811871 , -0.881775 , 0.135533 , 0.394971 , 0.908628 , 0.962003 , 0.469941 , 19.903713 , 0.780148 , -0.829154 , 0.060610 , 0.400647 , 0.914212 , 0.971789 , 0.469053 , 17.581257 , 0.664860 , -0.861956 , -0.503800 , 0.435987 , 0.745689 , 0.905398 , 0.477330 , 17.159969 , 0.912739 , -0.939795 , -0.102481 , -0.091983 , 0.990448 , 0.898628 , 0.481209 , 18.387157 , 0.703304 , -0.502532 , 0.152806 , 0.955016 , 0.254097 , 0.930463 , 0.468269 , 19.214420 , 1.051754 , -0.870692 , 0.157537 , 0.264901 , 0.951292 , 0.948759 , 0.475739 , 19.572880 , -3.476360 , -0.620505 , 0.365825 , -0.794336 , 0.484909 , 0.965483 , 0.334533 , 20.089840 , -3.031239 , -0.415766 , 0.347118 , -0.577349 , 0.739006 , 0.977909 , 0.351380 , 18.190563 , 0.838200 , -0.741740 , 0.085574 , 0.730430 , 0.677572 , 0.924075 , 0.476005 , 17.919262 , 0.903919 , -0.785178 , -0.220008 , 0.599322 , 0.769646 , 0.914261 , 0.477491 , 17.958904 , 0.818760 , -0.368731 , 0.003540 , 0.998993 , -0.044618 , 0.920291 , 0.469202 , 19.013889 , -2.933926 , 0.132005 , 0.969695 , 0.230750 , 0.079928 , 0.954284 , 0.353468 , 19.059216 , -3.141613 , 0.183393 , 0.903378 , -0.169286 , 0.393994 , 0.951675 , 0.350507 , 18.107479 , -3.739788 , -0.475566 , 0.086642 , -0.975402 , 0.202551 , 0.929596 , 0.325627 , 20.574276 , -2.813854 , -0.379222 , 0.191382 , -0.631184 , 0.751610 , 0.988964 , 0.357610 , 19.415051 , -3.978863 , -1.188937 , 0.176489 , -0.317423 , 0.931700 , 0.963360 , 0.312956 , 20.044430 , -3.364544 , -0.985759 , 0.433699 , -0.719718 , 0.542070 , 0.977551 , 0.337870 , 16.621822 , -6.969852 , -0.996119 , 0.084567 , 0.749443 , 0.656606 , 0.892895 , 0.242572 , 17.008434 , -3.581715 , 0.366880 , -0.040742 , -0.777032 , 0.628101 , 0.904899 , 0.339908 , 16.165943 , -4.145390 , 0.061906 , 0.575549 , -0.787835 , 0.219184 , 0.876562 , 0.326426 , 16.395618 , -3.613827 , 0.222749 , 0.285562 , -0.621601 , 0.729392 , 0.887802 , 0.335606 , 17.776241 , -3.711735 , -0.060836 , -0.007691 , -0.988952 , 0.147954 , 0.921239 , 0.335492 , 18.494160 , -3.002995 , 1.298875 , 0.447035 , -0.893551 , -0.040590 , 0.934099 , 0.370959 , 16.325062 , -12.205555 , 1.325792 , 0.100589 , -0.377026 , 0.920682 , 0.883296 , 0.093039 , 16.285038 , -12.441730 , 1.167287 , -0.115940 , -0.659536 , 0.742668 , 0.883397 , 0.088935 , 16.656597 , -12.201488 , 1.399373 , -0.291574 , -0.257820 , 0.921110 , 0.887757 , 0.092923 , 16.436924 , -11.916599 , 1.357301 , -0.160405 , 0.018220 , 0.986877 , 0.882616 , 0.097549 , 16.008694 , -12.250988 , 1.433408 , -0.153783 , -0.344768 , 0.925993 , 0.879238 , 0.092799 , 16.458462 , -12.823582 , 0.877477 , -0.399304 , -0.792383 , 0.461104 , 0.887081 , 0.081613 , 16.612080 , -12.694836 , 1.090925 , -0.348674 , -0.558092 , 0.752922 , 0.888426 , 0.085964 , 17.022839 , -12.780407 , 1.125837 , 0.349467 , -0.719108 , 0.600604 , 0.897155 , 0.083715 , 16.950253 , -12.571423 , 1.304994 , -0.000885 , -0.595477 , 0.803339 , 0.894689 , 0.088883 , 16.780964 , -12.907642 , 1.026834 , -0.121921 , -0.797967 , 0.590197 , 0.892830 , 0.081601 , 17.184582 , -12.837025 , 0.769914 , 0.425306 , -0.808557 , 0.406537 , 0.898742 , 0.078407 , 17.406750 , -12.490627 , 1.056157 , 0.013459 , -0.900937 , 0.433699 , 0.902190 , 0.086018 , 15.865307 , -12.492870 , 0.766668 , -0.427808 , -0.782830 , 0.451796 , 0.874396 , 0.083589 , 15.980709 , -12.519756 , 1.005422 , -0.438856 , -0.812616 , 0.383435 , 0.878089 , 0.086917 , 16.667713 , -13.008106 , 0.548314 , -0.236885 , -0.951292 , 0.197119 , 0.888492 , 0.076330 , 16.442806 , -13.082111 , 0.180856 , -0.162175 , -0.783746 , 0.599506 , 0.886752 , 0.069479 , 17.030064 , -13.046406 , 0.265542 , 0.044984 , -0.860866 , 0.506790 , 0.894710 , 0.069806 , 16.171474 , -11.489277 , 1.228235 , 0.119327 , -0.293374 , 0.948485 , 0.876901 , 0.104223 , 15.936268 , -11.906895 , 1.327127 , -0.279885 , 0.047426 , 0.958831 , 0.874957 , 0.099118 , 16.444843 , -11.531925 , 1.299783 , -0.467849 , -0.144322 , 0.871914 , 0.879892 , 0.102701 , 16.298878 , -11.254391 , 1.445714 , 0.032380 , -0.783044 , 0.621113 , 0.879899 , 0.109264 , 16.175655 , -12.943638 , 0.232789 , -0.128086 , -0.749718 , 0.649220 , 0.879555 , 0.073460 , 16.877819 , -13.060421 , 0.757501 , 0.079592 , -0.949675 , 0.302835 , 0.893729 , 0.076524 , 16.910130 , -12.280636 , 1.484319 , -0.333903 , -0.491562 , 0.804254 , 0.893556 , 0.097246 , 16.726337 , -11.759090 , 1.435743 , -0.525956 , -0.237068 , 0.816797 , 0.888000 , 0.098937 , 16.640026 , -11.422932 , 1.512494 , -0.582995 , -0.455184 , 0.672964 , 0.884845 , 0.103405 , 16.804012 , -11.382305 , 1.709504 , -0.705832 , -0.476516 , 0.524094 , 0.887385 , 0.108418 , 17.013287 , -11.543217 , 1.994092 , -0.715903 , -0.429914 , 0.550096 , 0.892732 , 0.109413 , 16.727444 , -11.118244 , 2.007001 , -0.584796 , -0.629963 , 0.510971 , 0.888201 , 0.116432 , 16.743763 , -10.950405 , 2.269494 , -0.406446 , -0.629780 , 0.661885 , 0.889849 , 0.126158 , 16.430973 , -10.784664 , 2.161550 , -0.129765 , -0.853298 , 0.504959 , 0.883046 , 0.124328 , 17.329128 , -11.164425 , 2.783052 , -0.413678 , -0.098514 , 0.905057 , 0.900530 , 0.124308 , 17.602673 , -11.146465 , 2.774465 , 0.445479 , -0.150182 , 0.882565 , 0.903963 , 0.122506 , 17.451954 , -10.787052 , 2.708688 , -0.090396 , 0.446516 , 0.890164 , 0.902694 , 0.126900 , 17.778919 , -10.773479 , 2.489866 , 0.543504 , 0.184393 , 0.818873 , 0.907585 , 0.126647 , 17.351543 , -11.390255 , 2.667524 , -0.313730 , -0.678365 , 0.664327 , 0.900042 , 0.120534 , 17.552486 , -11.546581 , 2.438630 , 0.211219 , -0.803644 , 0.556322 , 0.903899 , 0.117076 , 17.216892 , -10.777431 , 2.495187 , -0.558000 , 0.357006 , 0.749077 , 0.897256 , 0.128025 , 17.835323 , -11.564785 , 2.000692 , 0.767479 , -0.389691 , 0.509018 , 0.910261 , 0.112512 , 17.822208 , -11.188007 , 2.484815 , 0.746452 , -0.321207 , 0.582751 , 0.908611 , 0.119595 , 16.890568 , -11.755024 , 1.709817 , -0.746055 , -0.311228 , 0.588641 , 0.890976 , 0.103622 , 17.196659 , -12.075199 , 1.796228 , -0.350230 , -0.607685 , 0.712729 , 0.899015 , 0.104376 , 17.164280 , -11.467403 , 2.216546 , -0.600421 , -0.545701 , 0.584521 , 0.897794 , 0.114260 , 17.199696 , -11.175457 , 2.615178 , -0.864559 , -0.170080 , 0.472823 , 0.898353 , 0.123588 , 18.168484 , -11.173817 , 1.785836 , -0.003998 , -0.665944 , 0.745964 , 0.913599 , 0.116615 , 18.164074 , -11.658596 , 1.434106 , 0.214850 , -0.232459 , 0.948546 , 0.919061 , 0.105818 , 18.012241 , -11.849628 , 1.683686 , 0.737114 , 0.055452 , 0.673452 , 0.915568 , 0.103883 , 18.390034 , -12.168026 , 1.498353 , 0.109714 , -0.266182 , 0.957640 , 0.919709 , 0.100101 , 17.313839 , -12.381054 , 1.391988 , -0.103824 , -0.848201 , 0.519364 , 0.900592 , 0.094807 , 17.583874 , -12.668850 , 0.741021 , 0.006958 , -0.909299 , 0.416028 , 0.905535 , 0.079469 , 17.724804 , -12.684597 , 1.066533 , -0.405835 , -0.880367 , 0.245399 , 0.910513 , 0.084600 , 18.188122 , -12.444401 , 1.406015 , 0.209174 , -0.475234 , 0.854610 , 0.917896 , 0.094083 , 17.893543 , -12.081326 , 1.757570 , 0.433912 , -0.402722 , 0.805902 , 0.913079 , 0.098079 , 18.397541 , -11.615963 , 1.612771 , -0.468734 , -0.640645 , 0.608112 , 0.920413 , 0.109728 , 18.024136 , -11.412853 , 1.640054 , 0.460433 , -0.538652 , 0.705527 , 0.915537 , 0.109798 , 18.449886 , -11.516758 , 1.905080 , -0.505814 , -0.673421 , 0.539079 , 0.919114 , 0.114684 , 19.100132 , -11.505962 , 1.570794 , 0.845058 , -0.517380 , 0.134770 , 0.928650 , 0.114048 , 19.124447 , -11.502399 , 1.897180 , 0.713736 , -0.639302 , 0.286019 , 0.926476 , 0.117831 , 18.824947 , -11.744373 , 1.809926 , 0.209967 , -0.780206 , 0.589190 , 0.924265 , 0.112753 , 19.263058 , -11.104527 , 2.039365 , 0.876980 , -0.046693 , 0.478195 , 0.927441 , 0.121414 , 19.032848 , -11.244755 , 2.253232 , 0.532914 , -0.322855 , 0.782128 , 0.924870 , 0.121330 , 19.513042 , -10.529781 , 1.039937 , 0.979186 , 0.069979 , 0.190466 , 0.938877 , 0.125892 , 19.363834 , -11.059330 , 1.288934 , 0.864284 , -0.228187 , 0.448195 , 0.936846 , 0.117856 , 19.723476 , -11.070675 , 0.961904 , 0.757653 , 0.446059 , 0.476394 , 0.942240 , 0.119973 , 19.138653 , -10.794971 , 2.033124 , 0.705466 , 0.378002 , 0.599506 , 0.925709 , 0.125008 , 19.289631 , -10.786175 , 1.737554 , 0.878567 , 0.140629 , 0.456374 , 0.929083 , 0.123973 , 19.114880 , -10.503643 , 1.836496 , 0.617389 , 0.412091 , 0.670034 , 0.928130 , 0.128903 , 19.288166 , -11.151531 , 1.651143 , 0.947325 , -0.295236 , 0.123966 , 0.930717 , 0.118940 , 18.798084 , -10.541973 , 2.117799 , 0.412976 , 0.626392 , 0.661061 , 0.922428 , 0.130548 , 18.470959 , -10.347256 , 2.151117 , 0.499161 , 0.534440 , 0.682028 , 0.916182 , 0.134785 , 18.027981 , -9.716671 , 2.040342 , 0.656697 , 0.640522 , 0.398053 , 0.913006 , 0.141555 , 18.077991 , -10.212894 , 2.338437 , 0.379223 , 0.172704 , 0.909024 , 0.909978 , 0.135581 , 18.526371 , -11.181850 , 2.297715 , -0.417951 , -0.444319 , 0.792383 , 0.917964 , 0.120719 , 18.183140 , -10.868519 , 2.203420 , 0.107486 , -0.407941 , 0.906644 , 0.912945 , 0.123429 , 18.374279 , -10.166515 , 1.851548 , 0.581103 , 0.790643 , 0.192663 , 0.916886 , 0.139365 , 18.529621 , -10.094166 , 1.543443 , 0.084140 , 0.768181 , 0.634632 , 0.920981 , 0.139405 , 18.206715 , -10.039661 , 1.531560 , 0.604022 , 0.643055 , 0.470748 , 0.917077 , 0.141686 , 18.949741 , -9.979321 , 1.548307 , 0.028718 , 0.651509 , 0.758049 , 0.927738 , 0.140705 , 18.536137 , -9.749706 , 1.198343 , 0.137669 , 0.672109 , 0.727531 , 0.923527 , 0.147067 , 17.542698 , -9.802906 , 1.491609 , -0.929258 , 0.367565 , 0.036287 , 0.903163 , 0.150976 , 17.215504 , -10.197155 , 1.451955 , -0.137364 , 0.990204 , -0.023835 , 0.900597 , 0.150855 , 17.231579 , -10.217663 , 1.910283 , -0.401532 , 0.844020 , 0.355480 , 0.899517 , 0.146308 , 18.214527 , -9.649570 , 1.310388 , 0.632496 , 0.508438 , 0.584277 , 0.917140 , 0.146386 , 17.660351 , -9.531849 , 1.739240 , -0.556932 , 0.761986 , 0.330363 , 0.907923 , 0.151504 , 17.505978 , -9.826488 , 1.849851 , -0.808954 , 0.567492 , 0.153325 , 0.905481 , 0.146735 , 18.339863 , -9.378033 , 0.999837 , 0.281716 , 0.508225 , 0.813807 , 0.919499 , 0.153975 , 17.951824 , -9.447727 , 1.489583 , 0.469741 , 0.747734 , 0.469222 , 0.913172 , 0.153188 , 17.591724 , -8.994358 , 1.111543 , 0.146397 , -0.031953 , 0.988708 , 0.907180 , 0.160494 , 17.856968 , -8.872341 , 0.932920 , 0.551073 , -0.040895 , 0.833430 , 0.913805 , 0.165363 , 17.893307 , -8.551403 , 1.117635 , 0.558184 , -0.327036 , 0.762505 , 0.912162 , 0.170977 , 17.455708 , -8.511486 , 2.015378 , 0.288400 , -0.559740 , 0.776818 , 0.890568 , 0.180805 , 16.802013 , -8.370914 , 1.962445 , 0.635762 , -0.254250 , 0.728782 , 0.883547 , 0.177936 , 16.977688 , -8.665356 , 1.738347 , 0.358043 , -0.439192 , 0.823939 , 0.890514 , 0.174690 , 17.050434 , -7.502674 , 2.102212 , 0.208747 , 0.733421 , 0.646901 , 0.882854 , 0.193927 , 16.646412 , -7.362103 , 1.751638 , 0.175878 , 0.875362 , 0.450301 , 0.879140 , 0.198567 , 16.579136 , -7.622822 , 2.117444 , 0.172643 , 0.517808 , 0.837855 , 0.877987 , 0.191826 , 17.556194 , -8.660618 , 1.737817 , 0.609638 , -0.750328 , 0.255562 , 0.896187 , 0.176235 , 17.244076 , -7.798954 , 2.189309 , 0.339274 , 0.287637 , 0.895596 , 0.884372 , 0.189417 , 17.154850 , -8.905499 , 1.553777 , 0.709586 , -0.357158 , 0.607349 , 0.894652 , 0.168860 , 17.281208 , -9.036556 , 1.147893 , 0.684317 , -0.592395 , 0.425092 , 0.899816 , 0.163253 , 17.379253 , -8.726475 , 1.401113 , 0.647084 , -0.694601 , 0.314249 , 0.901754 , 0.169900 , 17.525578 , -8.026485 , 2.025464 , 0.822840 , 0.216559 , 0.525346 , 0.890773 , 0.187993 , 17.534817 , -7.885685 , 1.229924 , 0.766106 , 0.583789 , 0.268777 , 0.898706 , 0.192422 , 17.375156 , -7.614361 , 1.857755 , 0.711234 , 0.667409 , 0.220649 , 0.888328 , 0.192770 , 17.281200 , -8.094730 , 2.198274 , 0.182562 , -0.160375 , 0.970000 , 0.886051 , 0.184334 , 17.036106 , -7.444942 , 1.708261 , 0.360576 , 0.920408 , 0.151036 , 0.884968 , 0.196771 , 17.188427 , -7.485035 , 1.242147 , 0.653981 , 0.740379 , 0.155339 , 0.891154 , 0.199240 , 17.347446 , -10.189648 , 0.954770 , -0.207434 , 0.758782 , 0.617389 , 0.901170 , 0.152537 , 17.517712 , -9.917019 , 1.051702 , -0.892209 , 0.060854 , 0.447432 , 0.902602 , 0.153547 , 17.885990 , -9.150311 , 1.160978 , 0.417432 , 0.681814 , 0.600696 , 0.914651 , 0.158926 , 18.136646 , -9.067600 , 0.797696 , 0.215400 , 0.325602 , 0.920621 , 0.919246 , 0.161519 , 18.615887 , -8.670765 , 0.918573 , -0.084292 , 0.265358 , 0.960448 , 0.925264 , 0.163774 , 18.305225 , -8.680668 , 0.821527 , 0.105808 , -0.070345 , 0.991882 , 0.918503 , 0.169207 , 19.326519 , -9.755314 , 1.229455 , 0.559313 , 0.624317 , 0.545274 , 0.932974 , 0.140448 , 19.425823 , -9.624271 , 0.770330 , 0.867489 , 0.365734 , 0.337077 , 0.936294 , 0.143829 , 18.996029 , -9.471645 , 1.017568 , 0.217048 , 0.440931 , 0.870876 , 0.930458 , 0.148988 , 19.288982 , -10.170162 , 1.576574 , 0.564867 , 0.411115 , 0.715445 , 0.931785 , 0.133632 , 19.484379 , -10.276722 , 1.379144 , 0.896451 , 0.162023 , 0.412427 , 0.935563 , 0.130047 , 19.431049 , -10.662121 , 1.514776 , 0.920286 , -0.043886 , 0.388745 , 0.933068 , 0.125606 , 18.947704 , -10.264385 , 1.757150 , 0.175695 , 0.639119 , 0.748741 , 0.926284 , 0.134643 , 18.776096 , -11.425098 , 2.205384 , -0.007599 , -0.666860 , 0.745109 , 0.922497 , 0.118529 , 18.981075 , -11.821499 , 1.449193 , 0.757378 , -0.372265 , 0.536424 , 0.928473 , 0.108869 , 18.785358 , -10.917530 , 2.442991 , 0.225684 , 0.102756 , 0.968749 , 0.921871 , 0.123887 , 19.158184 , -11.872471 , 1.186078 , 0.749107 , -0.329722 , 0.574511 , 0.931983 , 0.106202 , 19.228863 , -11.386898 , 1.221608 , 0.743767 , -0.354106 , 0.566881 , 0.932985 , 0.111871 , 17.633129 , -12.492931 , 1.479455 , -0.217872 , -0.804651 , 0.552263 , 0.907788 , 0.092333 , 17.604076 , -12.184422 , 1.822084 , 0.049501 , -0.636402 , 0.769738 , 0.906007 , 0.100058 , 18.050007 , -12.782612 , 1.153455 , -0.185125 , -0.881344 , 0.434645 , 0.915309 , 0.086076 , 18.327541 , -12.763447 , 1.199155 , 0.195837 , -0.749321 , 0.632527 , 0.919336 , 0.087943 , 17.908794 , -12.555691 , 1.435319 , 0.015473 , -0.710471 , 0.703513 , 0.914038 , 0.090507 , 17.861012 , -11.809086 , 1.919084 , 0.641835 , -0.268410 , 0.718314 , 0.910147 , 0.105670 , 18.622189 , -9.493885 , 0.999223 , 0.011505 , 0.384655 , 0.922971 , 0.924920 , 0.152878 , 18.475445 , -9.155758 , 0.947236 , -0.212653 , 0.190100 , 0.958434 , 0.923340 , 0.157753 , 17.588047 , -9.846195 , 2.136358 , -0.628407 , 0.664907 , 0.403699 , 0.904347 , 0.142860 , 17.645954 , -9.991421 , 2.333425 , -0.349559 , 0.450911 , 0.821253 , 0.906178 , 0.138939 , 17.837353 , -9.726131 , 2.214063 , -0.027100 , 0.725364 , 0.687796 , 0.908075 , 0.142641 , 17.498737 , -9.342686 , 1.180848 , -0.868252 , 0.146275 , 0.474044 , 0.904321 , 0.157822 , 17.410076 , -9.527523 , 0.847623 , -0.719474 , 0.082095 , 0.689596 , 0.903175 , 0.156797 , 17.534382 , -9.552692 , 1.401849 , -0.941313 , 0.123661 , 0.313974 , 0.904332 , 0.155234 , 17.651440 , -8.429600 , 1.362985 , 0.859859 , -0.200446 , 0.469466 , 0.903283 , 0.179540 , 18.068180 , -8.234798 , 1.065534 , 0.588855 , 0.309244 , 0.746696 , 0.913767 , 0.178645 , 17.821491 , -8.092785 , 1.194776 , 0.534532 , 0.482070 , 0.694143 , 0.907154 , 0.185082 , 19.354389 , -9.330547 , 0.809583 , 0.806330 , 0.220771 , 0.548692 , 0.937418 , 0.151149 , 17.185314 , -9.755833 , 0.864934 , 0.358867 , 0.206915 , 0.910154 , 0.901447 , 0.155370 , 18.790081 , -9.222256 , 1.010080 , -0.013611 , 0.107974 , 0.994049 , 0.927429 , 0.156534 , 18.178074 , -10.458317 , 2.280587 , 0.254250 , 0.042817 , 0.966186 , 0.912114 , 0.129837 , 19.764553 , -11.171688 , 1.017179 , 0.837153 , 0.037935 , 0.545579 , 0.939989 , 0.112442 , 18.656338 , -12.021526 , 1.595636 , 0.046815 , -0.429762 , 0.901700 , 0.923759 , 0.105629 , 17.744808 , -9.538342 , 1.971681 , -0.264626 , 0.857723 , 0.440718 , 0.909413 , 0.146049 , 17.957027 , -9.906750 , 2.310144 , 0.407025 , 0.395795 , 0.823176 , 0.909423 , 0.139680 , 17.975529 , -9.566212 , 1.816476 , 0.465926 , 0.836909 , 0.287088 , 0.912205 , 0.147749 , 17.541195 , -11.762653 , 2.120652 , 0.133244 , -0.687826 , 0.713492 , 0.904920 , 0.110540 , 17.074230 , -10.541798 , 2.207605 , -0.117496 , 0.601733 , 0.789972 , 0.895441 , 0.137135 , 16.492626 , -10.622974 , 2.404332 , 0.250221 , -0.254616 , 0.934080 , 0.883361 , 0.135066 , 16.888996 , -10.771984 , 2.423436 , -0.107334 , 0.009491 , 0.994171 , 0.891542 , 0.131599 , 16.789310 , -10.279133 , 2.185106 , 0.484451 , 0.345866 , 0.803522 , 0.890189 , 0.146229 , 17.550426 , -11.927433 , 1.946584 , 0.101657 , -0.594531 , 0.797601 , 0.905083 , 0.105150 , 17.064503 , -11.110569 , 2.310663 , -0.673910 , -0.346538 , 0.652455 , 0.895314 , 0.121496 , 17.927647 , -10.469265 , 2.329973 , 0.284829 , 0.088137 , 0.954497 , 0.908447 , 0.131268 , 17.567371 , -10.424809 , 2.482663 , -0.079226 , 0.376141 , 0.923154 , 0.903783 , 0.133018 , 16.548672 , -9.555035 , 2.660100 , 0.472518 , -0.469222 , 0.745994 , 0.879056 , 0.157258 , 16.689404 , -9.946705 , 2.245630 , 0.594623 , -0.396741 , 0.699271 , 0.885488 , 0.153539 , 16.838284 , -9.643055 , 2.475217 , 0.527329 , -0.444807 , 0.723899 , 0.883948 , 0.157588 , 16.344074 , -10.907314 , 1.831670 , 0.069643 , -0.824335 , 0.561754 , 0.879119 , 0.118163 , 17.096851 , -10.137066 , 1.199868 , 0.677969 , 0.571368 , 0.462416 , 0.900189 , 0.151954 , 16.939564 , -10.035397 , 1.361184 , 0.912900 , 0.318278 , 0.255470 , 0.898579 , 0.152421 , 16.823299 , -10.134090 , 1.735074 , 0.870296 , 0.389721 , 0.301035 , 0.895248 , 0.149797 , 16.995449 , -9.658871 , 1.794172 , 0.970489 , -0.111576 , 0.213660 , 0.891990 , 0.160435 , 16.971333 , -9.558285 , 2.397084 , 0.898099 , -0.248329 , 0.362926 , 0.884991 , 0.160064 , 16.912151 , -9.958912 , 1.890058 , 0.922544 , -0.340800 , 0.180883 , 0.892425 , 0.154168 , 16.881596 , -9.263149 , 1.978360 , 0.976012 , 0.176855 , 0.126804 , 0.887576 , 0.163381 , 16.888088 , -8.744572 , 2.362699 , 0.965545 , 0.211859 , 0.151067 , 0.879932 , 0.169886 , 17.165340 , -9.473850 , 1.152745 , 0.975829 , -0.218390 , -0.000610 , 0.897456 , 0.158240 , 17.086353 , -9.327419 , 0.767911 , 0.593158 , -0.320444 , 0.738548 , 0.902305 , 0.158683 , 16.998554 , -9.180225 , 1.729707 , 0.798639 , 0.088839 , 0.595172 , 0.891397 , 0.165092 , 16.888439 , -9.188923 , 2.701406 , 0.759331 , -0.058748 , 0.648030 , 0.878755 , 0.164031 , 17.216084 , -9.337475 , 1.479558 , 0.935209 , -0.187964 , 0.300058 , 0.895131 , 0.163200 , 16.781445 , -8.814854 , 1.912950 , 0.961028 , 0.055727 , 0.270730 , 0.887298 , 0.169456 , 16.719105 , -8.917149 , 2.785497 , 0.506699 , 0.221198 , 0.833216 , 0.875948 , 0.167535 , 16.522625 , -8.698185 , 2.797101 , 0.303201 , 0.390606 , 0.869167 , 0.871708 , 0.170931 , 16.425945 , -9.078846 , 2.816621 , 0.310007 , 0.083743 , 0.947020 , 0.873532 , 0.164722 , 16.412426 , -10.140835 , 2.304044 , 0.660878 , -0.117924 , 0.741142 , 0.879373 , 0.147493 , 16.614300 , -9.260235 , 2.834172 , 0.373974 , -0.099643 , 0.922056 , 0.875933 , 0.161411 , 16.181698 , -10.927944 , 2.067487 , 0.652150 , -0.670400 , 0.353893 , 0.874410 , 0.125822 , 16.123417 , -10.779644 , 2.445619 , 0.692740 , -0.586810 , 0.419202 , 0.870346 , 0.135703 , 16.278370 , -10.469090 , 2.552964 , 0.796045 , -0.249886 , 0.551164 , 0.875505 , 0.141068 , 15.886547 , -8.733440 , 2.806093 , 0.359691 , 0.650716 , 0.668691 , 0.864811 , 0.171202 , 16.035961 , -8.635120 , 2.621091 , 0.112613 , 0.652272 , 0.749535 , 0.866683 , 0.175133 , 16.179523 , -10.391338 , 2.921232 , 0.868252 , -0.274911 , 0.412946 , 0.868713 , 0.145969 , 16.264057 , -9.315151 , 2.919629 , 0.670614 , 0.005768 , 0.741752 , 0.872147 , 0.159532 , 16.291660 , -9.827114 , 2.736203 , 0.842586 , -0.221625 , 0.490829 , 0.872873 , 0.153213 , 16.115749 , -9.466290 , 3.262677 , 0.746208 , 0.149754 , 0.648640 , 0.864788 , 0.155719 , 17.589123 , -7.498943 , 0.225969 , 0.566332 , 0.779138 , 0.268624 , 0.906642 , 0.204224 , 17.663616 , -8.380886 , 1.873445 , 0.921171 , -0.107669 , 0.373882 , 0.895965 , 0.183433 , 16.441555 , -8.460712 , 2.673280 , 0.073183 , 0.603076 , 0.794305 , 0.870494 , 0.176940 , 16.770985 , -7.993511 , 2.121469 , 0.156865 , -0.030305 , 0.987121 , 0.880698 , 0.185337 , 16.689770 , -8.232517 , 2.225518 , 0.695273 , 0.403272 , 0.594928 , 0.877371 , 0.181654 , 16.770466 , -8.476299 , 2.494615 , 0.724754 , 0.452437 , 0.519578 , 0.875833 , 0.176600 , 16.030285 , -7.451809 , 2.200029 , 0.114719 , 0.873684 , 0.472732 , 0.868992 , 0.195420 , 16.192242 , -7.657749 , 2.384984 , 0.328837 , 0.310739 , 0.891781 , 0.871411 , 0.191892 , 16.373989 , -7.929417 , 2.244260 , 0.386975 , 0.144810 , 0.910611 , 0.874514 , 0.186624 , 15.991825 , -7.987720 , 2.373548 , 0.335582 , 0.081423 , 0.938475 , 0.867314 , 0.187210 , 16.352009 , -8.203495 , 2.370176 , 0.213385 , 0.560656 , 0.800043 , 0.871975 , 0.181588 , 15.716694 , -8.430477 , 2.776475 , 0.475509 , 0.450209 , 0.755760 , 0.860138 , 0.176146 , 19.388699 , -9.223064 , 0.537717 , 0.963469 , 0.265450 , 0.034730 , 0.938345 , 0.156961 , 15.930058 , -9.911091 , 3.433824 , 0.591021 , -0.114139 , 0.798517 , 0.858459 , 0.148916 , 20.212177 , 0.039585 , 0.008703 , -0.082095 , 0.954161 , 0.287790 , 0.977286 , 0.447001 , 19.937534 , -0.141285 , 0.616681 , -0.644826 , 0.368480 , 0.669576 , 0.972641 , 0.438060 , 16.557186 , 0.127262 , -0.485251 , 0.193976 , 0.907132 , 0.373424 , 0.888227 , 0.465876 , 16.225697 , 0.261326 , -0.542300 , 0.444716 , 0.778985 , 0.442000 , 0.881796 , 0.466566 , 20.222240 , -0.019932 , 0.824056 , -0.523576 , 0.628620 , 0.575030 , 0.978344 , 0.435106 , 15.856480 , 0.694202 , -0.764323 , 0.189032 , 0.718345 , 0.669454 , 0.874357 , 0.474762 , 19.105083 , -3.552471 , -0.618705 , 0.146886 , -0.893826 , 0.423627 , 0.954386 , 0.332170 , 19.001049 , -3.764919 , -0.919413 , 0.096835 , -0.718253 , 0.688955 , 0.953067 , 0.319863 , 18.698132 , -3.835552 , -0.983920 , 0.086123 , -0.668081 , 0.739067 , 0.944265 , 0.317439 , 16.650631 , -5.881954 , -1.109126 , -0.011780 , 0.095126 , 0.995392 , 0.892327 , 0.263280 , 18.874783 , -3.551762 , -0.085711 , 0.492935 , -0.713095 , 0.498459 , 0.945916 , 0.340537 , 20.119778 , 0.454403 , -0.622367 , 0.116916 , 0.724815 , 0.678915 , 0.977861 , 0.458924 , 20.385181 , 0.658543 , -0.869567 , 0.143895 , 0.507675 , 0.849422 , 0.984539 , 0.463868 , 20.139347 , 1.041058 , -0.937114 , 0.155004 , 0.114475 , 0.981231 , 0.980339 , 0.472776 , 20.495846 , 0.320316 , -0.553630 , -0.100345 , 0.827601 , 0.552263 , 0.984288 , 0.456380 , 20.761936 , 0.261868 , -0.242377 , -0.251015 , 0.851558 , 0.460219 , 0.988891 , 0.450355 , 19.009029 , 0.752537 , -0.631556 , 0.143590 , 0.788385 , 0.598163 , 0.947557 , 0.468289 , 20.408955 , 0.258541 , 0.462747 , -0.414045 , 0.907956 , -0.064455 , 0.982120 , 0.443281 , 18.626453 , 0.975918 , -0.818789 , 0.020600 , 0.439802 , 0.897824 , 0.936496 , 0.477646 , 17.530529 , 1.176250 , -0.888364 , -0.097385 , -0.005860 , 0.995209 , 0.907372 , 0.485279 , 16.449566 , 0.008419 , -0.183268 , 0.241585 , 0.936674 , 0.253487 , 0.886296 , 0.461042 , 16.285534 , -6.630306 , -1.080888 , -0.070498 , 0.108127 , 0.991607 , 0.888821 , 0.250938 , 16.155331 , -6.872875 , -1.048016 , 0.130284 , 0.725547 , 0.675680 , 0.882273 , 0.246126 , 19.179958 , -8.585735 , -0.291423 , 0.861934 , 0.501785 , 0.072573 , 0.946112 , 0.176942 , 16.807240 , 0.698109 , -0.980687 , -0.017853 , 0.016633 , 0.999695 , 0.891517 , 0.477447 , 17.363659 , 1.410381 , -0.876664 , -0.052705 , -0.030671 , 0.998138 , 0.904892 , 0.492113 , 18.880772 , 1.458599 , -0.868850 , 0.026185 , 0.042024 , 0.998749 , 0.944505 , 0.486907 , 19.873516 , 1.283764 , -0.904177 , 0.066713 , 0.038392 , 0.997009 , 0.971038 , 0.480859 , 20.157703 , 1.727314 , -0.922758 , 0.043306 , -0.015503 , 0.998932 , 0.976753 , 0.492552 , 18.364773 , 2.293156 , -0.890095 , -0.004700 , 0.031007 , 0.999481 , 0.930024 , 0.508673 , 18.124950 , 1.284878 , -0.864232 , -0.013703 , 0.116611 , 0.993072 , 0.923230 , 0.486734 , 17.898273 , 1.735806 , -0.866856 , -0.008179 , 0.026887 , 0.999603 , 0.919064 , 0.497182 , 17.998219 , -4.682606 , -1.207844 , -0.023713 , -0.008789 , 0.999664 , 0.926714 , 0.293040 , 19.170963 , -4.517712 , -1.151312 , 0.022828 , -0.000763 , 0.999725 , 0.954063 , 0.298498 , 15.823025 , -4.720638 , -1.215443 , -0.096500 , 0.019684 , 0.995117 , 0.872246 , 0.292476 , 16.265896 , -5.057941 , -1.183485 , -0.045289 , 0.009888 , 0.998901 , 0.883860 , 0.285972 , 17.785580 , -5.860561 , -1.099126 , -0.017304 , 0.081301 , 0.996521 , 0.923454 , 0.263449 , 17.360912 , -5.362606 , -1.168544 , -0.003296 , 0.069308 , 0.997559 , 0.911977 , 0.276341 , 16.428074 , 1.034832 , -0.971761 , -0.022279 , 0.028596 , 0.999329 , 0.884522 , 0.483539 , 19.952427 , -10.273159 , -3.340505 , 0.026032 , -0.044984 , 0.998627 , 0.981945 , 0.138238 , 20.344280 , -10.272327 , -3.310549 , -0.040559 , -0.015320 , 0.999054 , 0.989825 , 0.139476 , 20.038059 , -9.660946 , -3.279203 , 0.079226 , -0.042360 , 0.995941 , 0.981352 , 0.156939 , 20.268894 , -8.630001 , -3.257931 , 0.382946 , -0.361461 , 0.850093 , 0.984203 , 0.186149 , 19.651730 , -11.000240 , -3.312895 , 0.541063 , 0.132298 , 0.830500 , 0.976144 , 0.119845 , 20.116932 , -11.209019 , -3.308657 , 0.019135 , -0.024201 , 0.999512 , 0.984625 , 0.112638 , 20.008175 , -6.964634 , -1.026748 , -0.015839 , 0.026643 , 0.999512 , 0.973752 , 0.234931 , 18.896481 , -7.506947 , -1.059871 , -0.079104 , 0.015595 , 0.996734 , 0.948460 , 0.219836 , 19.756367 , -8.424168 , -1.013101 , 0.011597 , 0.025178 , 0.999603 , 0.968683 , 0.192338 , 18.769482 , -6.286648 , -1.059372 , -0.011109 , 0.042695 , 0.999023 , 0.943561 , 0.253380 , 19.981777 , -4.329517 , -1.180314 , -0.000336 , 0.063387 , 0.997986 , 0.974745 , 0.304794 , 19.037472 , -5.095577 , -1.140498 , -0.022462 , 0.053621 , 0.998291 , 0.947987 , 0.281526 , 18.328457 , -5.374981 , -1.144321 , -0.024506 , 0.084841 , 0.996063 , 0.932839 , 0.276283 , 20.301380 , -6.057590 , -1.062512 , -0.016877 , 0.044923 , 0.998840 , 0.979599 , 0.260432 , 19.924709 , -3.672390 , -1.221583 , 0.221229 , -0.338542 , 0.914548 , 0.976315 , 0.323220 , 20.626011 , -7.933941 , -1.004363 , 0.612659 , -0.369762 , 0.698477 , 0.989766 , 0.208705 , 19.624584 , -13.593327 , -2.885123 , 0.869167 , -0.443007 , 0.219611 , 0.963983 , 0.042191 , 19.586720 , -13.650555 , -0.636721 , 0.801782 , -0.533036 , 0.270150 , 0.958482 , 0.042708 , 19.282787 , -13.851719 , -3.183367 , 0.375500 , -0.869839 , 0.319895 , 0.963365 , 0.031739 , 19.538906 , -10.914394 , -3.010539 , 0.985534 , 0.134648 , 0.102725 , 0.970715 , 0.121248 , 19.496723 , -10.971783 , -0.887065 , 0.986236 , 0.124973 , -0.108219 , 0.965243 , 0.119972 , 19.729458 , -11.576580 , -2.728617 , 0.998077 , 0.037904 , -0.048982 , 0.968681 , 0.106010 , 19.662426 , -11.856670 , -0.448321 , 0.979614 , -0.185461 , -0.076785 , 0.961470 , 0.094322 , 19.595455 , -12.198299 , -2.998008 , 0.989135 , -0.137364 , 0.051759 , 0.969761 , 0.088985 , 19.537556 , -10.515232 , -3.300147 , 0.767510 , -0.162542 , 0.620045 , 0.974579 , 0.130636 , 19.517704 , -10.472088 , -1.008921 , 0.974090 , -0.169958 , 0.149083 , 0.967225 , 0.133280 , 20.314671 , -8.337147 , -3.259132 , 0.689291 , -0.300027 , 0.659413 , 0.986255 , 0.194796 , 20.271656 , -8.384083 , -1.011363 , 0.569872 , -0.263894 , 0.778161 , 0.980703 , 0.194578 , 19.719036 , -10.195263 , -3.296565 , 0.638112 , -0.212287 , 0.740074 , 0.975145 , 0.140684 , 19.681179 , -10.252491 , -1.048159 , 0.858699 , -0.222236 , 0.461745 , 0.970347 , 0.137748 , 19.639706 , -13.272587 , -2.936503 , 0.976196 , 0.100406 , 0.192114 , 0.968415 , 0.048286 , 19.589535 , -13.310871 , -0.614909 , 0.965392 , 0.087100 , 0.245796 , 0.959339 , 0.053200 , 19.557598 , -12.255535 , -0.749602 , 0.982452 , -0.181646 , -0.041505 , 0.963728 , 0.084310 , 19.522312 , -12.841778 , -2.758342 , 0.980865 , 0.191015 , 0.037416 , 0.966151 , 0.068920 , 20.231853 , -8.684551 , -1.014186 , 0.591021 , -0.539323 , 0.599811 , 0.978553 , 0.187829 , 20.003880 , -8.695087 , -3.269339 , 0.398846 , -0.647237 , 0.649586 , 0.979326 , 0.181643 , 19.598515 , -12.954464 , -3.197394 , 0.887051 , 0.337809 , 0.314615 , 0.967982 , 0.059538 , 19.560658 , -13.011692 , -0.948992 , 0.937162 , 0.346294 , 0.042207 , 0.964132 , 0.055963 , 19.503414 , -12.942242 , -0.633906 , 0.992553 , 0.032594 , 0.117283 , 0.959782 , 0.064087 , 19.623493 , -11.785191 , -3.199946 , 0.976348 , -0.075137 , 0.202612 , 0.973383 , 0.099401 , 19.639194 , -11.434849 , -3.199359 , 0.899380 , -0.018250 , 0.436750 , 0.975527 , 0.109599 , 19.769001 , -13.072643 , -3.340338 , 0.398022 , 0.218329 , 0.890988 , 0.976054 , 0.052367 , 19.761562 , -11.596645 , -3.379153 , 0.392865 , -0.181219 , 0.901517 , 0.979405 , 0.101713 , 19.698223 , -12.118183 , -3.394835 , 0.522202 , -0.049165 , 0.851375 , 0.979414 , 0.087352 , 19.804859 , -13.387775 , -3.282496 , 0.620624 , 0.120701 , 0.774712 , 0.974260 , 0.042102 , 19.575169 , -12.467663 , -3.334071 , 0.760979 , -0.038331 , 0.647603 , 0.974918 , 0.078910 , 19.257099 , -13.886280 , -0.934962 , 0.328806 , -0.912198 , 0.244392 , 0.956259 , 0.032023 , 20.472134 , -8.150738 , -1.007697 , 0.564440 , -0.448805 , 0.692770 , 0.983346 , 0.200554 , 19.683521 , -11.595654 , -0.536654 , 0.988983 , 0.021271 , -0.146428 , 0.962099 , 0.106664 , 19.625057 , -9.892681 , -0.976989 , 0.882199 , -0.147343 , 0.447188 , 0.969159 , 0.146067 , 19.487728 , -9.290409 , -0.953273 , 0.914243 , 0.052034 , 0.401746 , 0.965102 , 0.166463 , 19.700207 , -9.673687 , -0.997679 , 0.939116 , 0.072817 , 0.335734 , 0.968865 , 0.155114 , 19.738071 , -9.616459 , -3.246085 , 0.613117 , 0.035432 , 0.789178 , 0.973868 , 0.160545 , 19.509670 , -12.611538 , -0.735011 , 0.994415 , -0.084170 , -0.063509 , 0.961408 , 0.076016 , 19.963116 , -8.757061 , -1.023793 , 0.372662 , -0.545793 , 0.750450 , 0.974157 , 0.183471 , 19.161007 , -13.119320 , 0.005941 , 0.365368 , -0.523362 , 0.769768 , 0.943752 , 0.066804 , 19.421993 , -12.209202 , 0.366227 , 0.725272 , -0.512558 , 0.459578 , 0.946466 , 0.090681 , 18.923504 , -12.517933 , 0.400823 , 0.596301 , -0.587970 , 0.546495 , 0.936010 , 0.082680 , 18.680683 , -13.563587 , -0.464473 , -0.163915 , -0.761345 , 0.627247 , 0.934900 , 0.051643 , 17.458431 , -13.860882 , -1.031214 , 0.083987 , -0.741447 , 0.665700 , 0.916185 , 0.033847 , 18.681805 , -13.885273 , -0.960181 , -0.059694 , -0.850032 , 0.523301 , 0.945940 , 0.033133 , 17.704151 , -13.316769 , -0.775977 , 0.149754 , -0.726585 , 0.670522 , 0.919554 , 0.051867 , 16.661579 , -13.860043 , -1.018805 , 0.093722 , -0.855251 , 0.509629 , 0.896804 , 0.033872 , 16.860790 , -13.526196 , -0.495188 , 0.022858 , -0.871609 , 0.489608 , 0.896477 , 0.043883 , 15.933117 , -13.802959 , -0.663470 , 0.140019 , -0.824091 , 0.548845 , 0.879086 , 0.035542 , 19.417507 , -13.537655 , -0.257853 , 0.476150 , -0.511093 , 0.715537 , 0.951288 , 0.052301 , 17.304989 , -13.255169 , 0.093236 , 0.079257 , -0.833094 , 0.547380 , 0.906130 , 0.057810 , 18.364750 , -13.123989 , -0.006137 , -0.027528 , -0.897732 , 0.439650 , 0.920940 , 0.064183 , 19.213444 , -8.544987 , -0.836325 , 0.692709 , 0.479415 , 0.538774 , 0.954452 , 0.184391 , 19.048367 , -8.474354 , -0.593764 , 0.735954 , 0.661184 , 0.145482 , 0.947860 , 0.183171 , 19.316143 , -8.857006 , -0.658519 , 0.911679 , 0.307474 , 0.272500 , 0.953708 , 0.174947 , 19.438374 , -9.665600 , -0.727721 , 0.939512 , 0.144322 , 0.310556 , 0.960696 , 0.152390 , 18.938946 , -8.229107 , -0.877181 , 0.551775 , 0.558641 , 0.619190 , 0.949695 , 0.193656 , 19.665012 , -11.967258 , -0.028552 , 0.926908 , -0.358959 , 0.109317 , 0.953731 , 0.093937 , 19.809193 , -11.489323 , -0.125285 , 0.987823 , -0.069399 , -0.139073 , 0.955831 , 0.103198 , 20.305340 , -3.248577 , -1.040690 , 0.397015 , -0.715720 , 0.574541 , 0.984574 , 0.341603 , 19.461697 , -8.815212 , -0.973407 , 0.487930 , 0.170507 , 0.856044 , 0.961403 , 0.178918 , 19.337467 , -9.052525 , -0.387862 , 0.958953 , 0.166845 , 0.229255 , 0.952162 , 0.168614 , 19.341702 , -9.307293 , -0.576243 , 0.970611 , 0.139439 , 0.196051 , 0.956299 , 0.163830 , 19.495838 , -9.873074 , -0.117443 , 0.964080 , 0.265511 , -0.002380 , 0.951393 , 0.143846 , 17.889706 , -13.006283 , 0.275628 , 0.020997 , -0.821162 , 0.570269 , 0.912094 , 0.068784 , 18.103794 , -12.947742 , 0.471692 , -0.244728 , -0.920377 , 0.304880 , 0.917216 , 0.073590 , 17.835148 , -12.755886 , 0.564965 , -0.221381 , -0.890957 , 0.396405 , 0.911254 , 0.076580 , 18.499340 , -12.979313 , 0.572126 , 0.306192 , -0.925199 , 0.224128 , 0.924456 , 0.077149 , 18.824902 , -12.944675 , 0.210729 , 0.320505 , -0.674764 , 0.664785 , 0.932041 , 0.068485 , 18.675045 , -12.782467 , 0.845372 , 0.716392 , -0.628803 , 0.302225 , 0.925823 , 0.086621 , 18.426342 , -12.944126 , 0.922822 , 0.202521 , -0.898007 , 0.390576 , 0.921738 , 0.083243 , 18.835369 , -12.382534 , 1.005140 , 0.700797 , -0.655782 , 0.280709 , 0.930072 , 0.094924 , 19.436192 , -12.017757 , 0.667806 , 0.725547 , -0.602100 , 0.333201 , 0.937960 , 0.097601 , 19.506168 , -11.811489 , 0.941053 , 0.743278 , -0.476699 , 0.469314 , 0.936224 , 0.106036 , 19.165913 , -12.052036 , 0.926557 , 0.658345 , -0.600116 , 0.454268 , 0.933113 , 0.101511 , 18.480099 , -12.520290 , 1.354425 , 0.289560 , -0.582324 , 0.759606 , 0.923049 , 0.093842 , 18.735989 , -12.378254 , 1.382871 , 0.408643 , -0.692953 , 0.593951 , 0.925139 , 0.099441 , 18.154064 , -12.908596 , 0.832757 , -0.276376 , -0.940031 , 0.199774 , 0.917160 , 0.081301 , 18.952076 , -12.221874 , 1.336793 , 0.692740 , -0.525986 , 0.493362 , 0.928816 , 0.102755 , 17.557873 , -12.871502 , 0.476529 , 0.150151 , -0.791681 , 0.592181 , 0.904777 , 0.071799 , 19.360233 , -13.036663 , -0.240985 , 0.865383 , -0.208014 , 0.455855 , 0.952634 , 0.062381 , 18.760403 , -7.915234 , -1.018622 , 0.309732 , 0.495651 , 0.811396 , 0.944966 , 0.208276 , 19.177708 , -8.016903 , -1.027031 , 0.120975 , 0.168432 , 0.978240 , 0.955839 , 0.203483 , 18.239742 , -7.710880 , -0.689129 , 0.604724 , 0.751854 , 0.262642 , 0.930065 , 0.208288 , 18.652065 , -8.066540 , -0.606864 , 0.662831 , 0.705466 , 0.250893 , 0.940514 , 0.195895 , 19.749065 , -11.709148 , 0.135389 , 0.921171 , -0.372234 , 0.113315 , 0.952483 , 0.100241 , 19.334621 , -8.391369 , -1.011920 , 0.267983 , 0.205054 , 0.941313 , 0.959305 , 0.191351 , 18.574940 , -7.625301 , -1.136649 , 0.152196 , 0.167760 , 0.973998 , 0.942421 , 0.217925 , 18.309315 , -7.578945 , -1.020224 , 0.474746 , 0.426679 , 0.769738 , 0.934885 , 0.217667 , 18.353771 , -7.871914 , -0.163325 , 0.632527 , 0.772729 , 0.052522 , 0.929685 , 0.194234 , 18.598850 , -7.297176 , -1.066836 , 0.035890 , -0.048433 , 0.998169 , 0.941462 , 0.225996 , 19.268353 , -9.285145 , -0.186572 , 0.966979 , 0.237434 , 0.092471 , 0.949521 , 0.162861 , 19.833233 , -11.451054 , 0.299661 , 0.998108 , -0.011017 , 0.060305 , 0.949385 , 0.104518 , 19.381512 , -9.482197 , 0.223844 , 0.931516 , 0.343944 , -0.118107 , 0.944174 , 0.154378 , 19.499378 , -10.030231 , -0.651377 , 0.982025 , 0.151708 , -0.112156 , 0.960312 , 0.131890 , 19.717937 , -10.515324 , 0.180181 , 0.951292 , 0.298715 , 0.076113 , 0.949234 , 0.126089 , 19.753826 , -10.855137 , 0.026975 , 0.992615 , 0.110141 , -0.050447 , 0.950727 , 0.116899 , 19.795948 , -11.313931 , 0.661485 , 0.824458 , -0.496261 , 0.271950 , 0.944006 , 0.106482 , 19.698483 , -10.655430 , -0.234248 , 0.968169 , 0.139134 , -0.208014 , 0.954397 , 0.122091 , 19.620754 , -12.523815 , -0.115321 , 0.945708 , -0.200262 , 0.255928 , 0.953421 , 0.079668 , 19.613499 , -12.200916 , -0.380671 , 0.990112 , -0.131687 , -0.047670 , 0.957633 , 0.084790 , 19.556202 , -12.222889 , -0.075530 , 0.964629 , -0.118717 , 0.235298 , 0.952222 , 0.086632 , 19.581264 , -12.757038 , -3.326785 , 0.703482 , 0.114200 , 0.701437 , 0.973290 , 0.067545 , 19.853321 , -12.727871 , -3.347850 , -0.002503 , 0.042024 , 0.999084 , 0.979726 , 0.069024 , 20.265217 , -11.824276 , -3.331318 , -0.077578 , -0.018281 , 0.996796 , 0.986856 , 0.094667 , 20.438778 , -12.559170 , -3.312991 , -0.061403 , 0.028443 , 0.997681 , 0.986970 , 0.072289 , 19.539646 , -9.245846 , -3.202254 , 0.835566 , -0.095950 , 0.540941 , 0.972956 , 0.169223 , 19.662930 , -9.835445 , -3.225402 , 0.815149 , -0.106937 , 0.569262 , 0.974983 , 0.150364 , 19.758495 , -13.857128 , -3.259528 , 0.372875 , -0.300211 , 0.877957 , 0.972126 , 0.033957 , 20.099796 , -13.862431 , -3.265383 , 0.007965 , 0.052248 , 0.998596 , 0.980428 , 0.033802 , 19.483418 , -10.229740 , 0.595269 , 0.993652 , 0.103854 , 0.042756 , 0.942740 , 0.128731 , 19.188267 , -8.804020 , 0.114675 , 0.944975 , 0.319803 , 0.068392 , 0.942845 , 0.169582 , 19.201481 , -8.917278 , -0.191024 , 0.971648 , 0.179876 , 0.153386 , 0.948658 , 0.171647 , 20.341335 , -3.445576 , -1.201930 , 0.206610 , -0.310953 , 0.927671 , 0.986172 , 0.334435 , -18.823206 , -6.336506 , -1.010191 , 0.000275 , 0.040040 , 0.999176 , 0.033966 , 0.254269 , -18.875998 , -7.315937 , -0.991671 , 0.014649 , -0.002533 , 0.999878 , 0.034981 , 0.226105 , -17.709013 , -6.491161 , -0.997950 , -0.053804 , -0.030183 , 0.998077 , 0.061247 , 0.252352 , -19.036253 , -8.247181 , -1.008827 , 0.021393 , -0.040559 , 0.998932 , 0.030746 , 0.201109 , -18.099394 , -7.986118 , -1.012354 , -0.009613 , -0.007569 , 0.999908 , 0.052572 , 0.208988 , -17.217375 , 1.526546 , -1.150287 , 0.078524 , 0.078799 , 0.993774 , 0.082175 , 0.505078 , -17.357901 , 2.626255 , -1.093899 , 0.025819 , -0.028474 , 0.999237 , 0.072045 , 0.520401 , -17.492529 , 1.826466 , -1.107402 , 0.127659 , 0.016999 , 0.991668 , 0.068865 , 0.500637 , -19.016691 , 3.497753 , -1.036156 , 0.027772 , -0.007111 , 0.999573 , 0.033030 , 0.543848 , -18.019453 , 2.430882 , -1.065082 , 0.043703 , 0.011780 , 0.998962 , 0.056120 , 0.513093 , -16.250578 , 3.542301 , -1.063833 , -0.008667 , -0.033998 , 0.999359 , 0.097272 , 0.544019 , -17.076292 , 7.035892 , -1.049828 , 0.005249 , -0.038514 , 0.999237 , 0.079331 , 0.635674 , -17.259977 , 6.209036 , -1.011359 , 0.004639 , 0.012055 , 0.999908 , 0.078165 , 0.606321 , -15.536497 , 6.516396 , -1.007501 , -0.007233 , -0.005646 , 0.999939 , 0.112454 , 0.612406 , -19.839689 , 2.721317 , -1.032673 , 0.030152 , 0.007294 , 0.999512 , 0.010058 , 0.519997 , -15.904150 , 1.638035 , -1.116998 , -0.021760 , 0.042726 , 0.998840 , 0.106626 , 0.499443 , -14.913919 , 1.922993 , -1.103661 , -0.011719 , -0.017151 , 0.999756 , 0.129835 , 0.507745 , -16.656500 , 1.505428 , -1.133760 , -0.010773 , 0.075137 , 0.997101 , 0.089621 , 0.494060 , -15.162165 , 4.708881 , -1.018596 , -0.006043 , -0.015107 , 0.999847 , 0.121385 , 0.573355 , -16.993773 , 4.679760 , -1.026715 , -0.007752 , -0.027985 , 0.999573 , 0.079148 , 0.570036 , -16.707785 , 7.227844 , -1.042092 , -0.004486 , -0.136723 , 0.990570 , 0.088565 , 0.636794 , -17.714857 , 7.109812 , -1.034995 , 0.040712 , -0.086337 , 0.995422 , 0.063013 , 0.637431 , -17.884062 , 8.046551 , -1.028487 , 0.115879 , 0.542497 , 0.831996 , 0.057841 , 0.659389 , -17.748236 , 7.748648 , -0.896899 , 0.120579 , 0.211280 , 0.969939 , 0.061690 , 0.653420 , -17.379667 , 8.043795 , -1.098132 , 0.177496 , 0.644581 , 0.743614 , 0.067907 , 0.659086 , -16.869307 , 7.529642 , -0.963862 , -0.003754 , -0.033479 , 0.999420 , 0.082153 , 0.645536 , -16.731314 , 7.908705 , -1.068282 , 0.097201 , 0.637806 , 0.764000 , 0.081361 , 0.655370 , -17.121038 , 7.763737 , -0.958229 , 0.046205 , 0.292337 , 0.955168 , 0.074694 , 0.651632 , -18.245245 , 8.211554 , -1.057894 , 0.100894 , 0.647175 , 0.755608 , 0.051345 , 0.665100 , -17.959021 , 8.288975 , -1.262889 , 0.182318 , 0.852809 , 0.489303 , 0.058698 , 0.668777 , -18.569288 , 8.385962 , -1.278559 , 0.110111 , 0.832484 , 0.542955 , 0.045726 , 0.674547 , -18.119669 , 7.669899 , -0.864934 , 0.049684 , -0.017060 , 0.998596 , 0.053590 , 0.653945 , -19.037695 , 7.851650 , -0.863734 , 0.006165 , 0.141240 , 0.989929 , 0.032872 , 0.664612 , -18.786734 , 7.473423 , -0.911715 , -0.015687 , -0.185980 , 0.982421 , 0.037395 , 0.652399 , -19.438299 , 10.092762 , -1.516703 , 0.697256 , 0.145512 , 0.701865 , 0.018286 , 0.736136 , -19.553228 , 9.917095 , -1.389659 , 0.645161 , 0.017060 , 0.763817 , 0.016638 , 0.731406 , -19.207525 , 9.774677 , -1.748454 , 0.731071 , -0.074648 , 0.678182 , 0.024527 , 0.730298 , -17.333685 , 8.270481 , -1.514933 , 0.124546 , 0.921964 , 0.366649 , 0.069217 , 0.670610 , -17.026152 , 8.202314 , -1.422778 , 0.143590 , 0.872768 , 0.466506 , 0.077762 , 0.664822 , -19.637991 , 11.717318 , -3.024558 , 0.833369 , 0.185369 , 0.520646 , 0.020315 , 0.786822 , -19.552847 , 11.893991 , -3.270457 , 0.705405 , 0.146641 , 0.693411 , 0.026701 , 0.792004 , -19.654547 , 12.215153 , -3.012370 , 0.887997 , -0.103519 , 0.448012 , 0.019924 , 0.798038 , -17.453146 , 7.570530 , -0.937814 , 0.159673 , -0.092532 , 0.982818 , 0.067025 , 0.648539 , -19.469015 , 12.095345 , -3.343133 , 0.469314 , -0.029206 , 0.882534 , 0.030132 , 0.798412 , -19.071630 , 8.968775 , -2.137389 , 0.728904 , 0.595691 , 0.337352 , 0.038976 , 0.706858 , -19.333914 , 9.029947 , -1.781161 , 0.753075 , 0.371105 , 0.543229 , 0.029464 , 0.705339 , -19.019789 , 8.816357 , -1.921366 , 0.493271 , 0.786218 , 0.372143 , 0.039209 , 0.698591 , -19.349554 , 8.647343 , -1.384288 , 0.362011 , 0.678304 , 0.639393 , 0.030038 , 0.689828 , -18.962866 , 8.325758 , -1.115100 , 0.139592 , 0.662038 , 0.736320 , 0.036022 , 0.675124 , -18.785200 , 8.556356 , -1.530509 , 0.227638 , 0.871517 , 0.434278 , 0.040860 , 0.686123 , -19.325201 , 7.570580 , -0.908367 , -0.056856 , -0.163701 , 0.984863 , 0.024802 , 0.658346 , -18.778715 , 8.978209 , -3.021628 , 0.930631 , 0.252358 , 0.264931 , 0.052134 , 0.717829 , -18.784300 , 9.072546 , -3.502375 , 0.916135 , -0.223853 , 0.332499 , 0.058612 , 0.720198 , -18.538214 , 9.197536 , -3.375499 , 0.701468 , -0.681417 , 0.208716 , 0.055769 , 0.726157 , -19.215155 , 9.231474 , -2.213969 , 0.855098 , -0.136662 , 0.500107 , 0.034833 , 0.715695 , -19.370398 , 9.299017 , -1.748854 , 0.814020 , -0.200293 , 0.545152 , 0.026357 , 0.715297 , -18.643385 , 8.714306 , -2.075022 , 0.313303 , 0.922758 , 0.224281 , 0.047823 , 0.696585 , -18.766264 , 8.055487 , -0.953345 , 0.038148 , 0.476669 , 0.878231 , 0.041855 , 0.666021 , -19.643011 , 10.450901 , -1.443400 , 0.672292 , 0.361583 , 0.645955 , 0.013847 , 0.744422 , -19.360540 , 10.233707 , -1.652323 , 0.721000 , 0.310587 , 0.619373 , 0.019877 , 0.740096 , -19.681753 , 9.217672 , -1.411376 , 0.686575 , -0.086032 , 0.721915 , 0.017829 , 0.710732 , -19.447256 , 9.537054 , -1.527934 , 0.707266 , -0.191107 , 0.680593 , 0.021270 , 0.721767 , -18.470564 , 6.995634 , -1.003400 , 0.021393 , -0.070803 , 0.997253 , 0.043810 , 0.637609 , -19.296400 , 8.213987 , -0.994090 , 0.111728 , 0.483627 , 0.868099 , 0.025093 , 0.675687 , -18.997320 , 0.766895 , 1.073449 , 0.036378 , 0.799524 , 0.599475 , 0.033584 , 0.442076 , -19.236860 , 1.381565 , 0.530835 , -0.336802 , 0.822108 , 0.458937 , 0.030667 , 0.455850 , -19.513395 , 0.632366 , 0.870065 , -0.647237 , 0.598010 , 0.472640 , 0.021403 , 0.448050 , -18.780310 , 1.144711 , 0.640172 , 0.482406 , 0.625721 , 0.612964 , 0.042679 , 0.451620 , -19.566900 , 1.062199 , 0.295308 , -0.705008 , 0.611011 , 0.359935 , 0.025509 , 0.460291 , -18.649176 , 1.915707 , -0.992778 , 0.078005 , 0.379925 , 0.921720 , 0.042746 , 0.498740 , -18.588011 , 1.675854 , -0.907710 , 0.361766 , 0.532640 , 0.765099 , 0.044773 , 0.490726 , -18.301771 , 1.684544 , -0.951312 , 0.209479 , 0.367290 , 0.906186 , 0.052107 , 0.493024 , -19.007513 , 1.887608 , -1.008422 , -0.129124 , 0.457503 , 0.879757 , 0.033209 , 0.497051 , -18.409971 , 2.250446 , -1.049594 , 0.033296 , 0.082827 , 0.996002 , 0.047762 , 0.506467 , -19.420835 , -4.687771 , -0.984370 , -0.409619 , -0.463637 , 0.785638 , 0.018002 , 0.301539 , -19.262156 , -5.033688 , -1.111884 , -0.273934 , -0.250343 , 0.928556 , 0.021910 , 0.291570 , -19.047125 , -4.729061 , -0.688761 , -0.627216 , -0.498642 , 0.598224 , 0.025501 , 0.303109 , -18.903067 , 1.535877 , -0.395705 , 0.167150 , 0.936125 , 0.309305 , 0.037110 , 0.479310 , -18.857321 , 1.707066 , -0.670909 , 0.191015 , 0.810846 , 0.553178 , 0.037785 , 0.488712 , -19.325567 , 1.567226 , -0.513507 , -0.196966 , 0.919187 , 0.340922 , 0.028262 , 0.483201 , -19.359526 , 1.760906 , -1.035769 , -0.105564 , 0.525010 , 0.844478 , 0.023583 , 0.493081 , -19.410727 , 7.322908 , -0.973262 , -0.030976 , -0.174749 , 0.984100 , 0.023130 , 0.649657 , -19.303259 , -4.277340 , -0.450175 , -0.443373 , -0.651326 , 0.615741 , 0.020801 , 0.317037 , -18.947577 , -5.071819 , -0.813418 , -0.594653 , -0.602954 , 0.531785 , 0.030849 , 0.294403 , -19.625715 , -4.479214 , -0.989070 , -0.498398 , -0.434767 , 0.750023 , 0.012839 , 0.308918 , -18.509573 , 1.453197 , -0.719863 , 0.470138 , 0.696036 , 0.542650 , 0.047787 , 0.481466 , -19.113829 , 1.494228 , -0.120379 , -0.168798 , 0.959136 , 0.226997 , 0.030584 , 0.470937 , -18.835608 , 8.898077 , -2.600123 , 0.661550 , 0.704856 , 0.255837 , 0.046730 , 0.708717 , -18.717382 , 10.286345 , -2.605326 , 0.805597 , 0.542680 , 0.237617 , 0.037170 , 0.745288 , -18.534300 , 9.921055 , -2.412024 , 0.837703 , 0.416364 , 0.353343 , 0.038155 , 0.738707 , -18.625921 , 10.199406 , -3.056132 , 0.906034 , 0.387555 , 0.169927 , 0.045066 , 0.746689 , -17.295172 , 8.445927 , -2.359782 , 0.099887 , 0.982269 , 0.158513 , 0.080145 , 0.684740 , -18.113638 , 8.629948 , -2.582438 , 0.219703 , 0.971038 , 0.093539 , 0.064959 , 0.698848 , -18.356138 , 8.610950 , -1.956279 , 0.207404 , 0.954894 , 0.212439 , 0.051986 , 0.689351 , -19.436659 , 11.388308 , -3.091052 , 0.552812 , 0.556475 , 0.620228 , 0.025490 , 0.777243 , -19.244772 , 11.092478 , -2.756202 , 0.616749 , 0.706931 , 0.346141 , 0.025985 , 0.765780 , -19.046850 , 11.105164 , -3.091643 , 0.591144 , 0.483169 , 0.645802 , 0.036137 , 0.769328 , -18.895277 , 10.313877 , -2.306529 , 0.738426 , 0.483993 , 0.469466 , 0.031491 , 0.744468 , -18.899321 , 10.658669 , -2.856982 , 0.820399 , 0.465682 , 0.331706 , 0.036607 , 0.756197 , -19.160406 , 9.484653 , -1.907817 , 0.708884 , -0.436323 , 0.554125 , 0.029296 , 0.722938 , -18.930052 , 9.165304 , -2.668154 , 0.844752 , -0.221168 , 0.487289 , 0.042979 , 0.716990 , -18.639082 , 9.352766 , -2.791068 , 0.689657 , -0.644887 , 0.329295 , 0.045293 , 0.724323 , -18.409834 , 9.572767 , -2.948394 , 0.956206 , -0.234016 , 0.175726 , 0.048357 , 0.731332 , -18.258879 , 8.723249 , -3.592326 , 0.377728 , 0.913724 , 0.149541 , 0.068095 , 0.712540 , -18.464720 , 8.753304 , -2.841105 , 0.391369 , 0.914182 , 0.105014 , 0.057319 , 0.705081 , -18.811544 , 9.420877 , -2.395930 , 0.527512 , -0.701712 , 0.478805 , 0.038187 , 0.723371 , -18.438498 , 9.657751 , -2.372000 , 0.860225 , -0.209540 , 0.464858 , 0.039876 , 0.731606 , -19.187239 , 10.962088 , -2.528254 , 0.678030 , 0.650777 , 0.341685 , 0.025221 , 0.757770 , -19.127829 , 10.570332 , -2.180949 , 0.715812 , 0.479690 , 0.507401 , 0.025286 , 0.749862 , -18.955542 , 10.053623 , -2.042674 , 0.706504 , 0.256264 , 0.659627 , 0.029110 , 0.736934 , -19.391287 , 11.611935 , -3.261737 , 0.376202 , 0.361217 , 0.853206 , 0.028866 , 0.785696 , -17.488226 , 8.437351 , -2.015361 , 0.175390 , 0.963958 , 0.199988 , 0.071328 , 0.680477 , -18.596327 , 8.871397 , -3.431464 , 0.570971 , 0.797998 , 0.192785 , 0.060898 , 0.714516 , -18.756392 , 10.800293 , -3.222377 , 0.757866 , 0.259621 , 0.598468 , 0.045065 , 0.762819 , -18.876127 , 9.682631 , -2.088877 , 0.634053 , -0.257179 , 0.729240 , 0.032725 , 0.728945 , -18.120108 , 8.534977 , -1.833537 , 0.197302 , 0.938169 , 0.284371 , 0.055527 , 0.681212 , -19.440313 , 13.048161 , -3.090983 , 0.722892 , -0.218635 , 0.655416 , 0.031236 , 0.821788 , -17.614386 , 8.560627 , -2.907817 , 0.107517 , 0.989410 , 0.097262 , 0.076627 , 0.697777 , -17.933493 , 1.744129 , -1.044697 , 0.160497 , 0.112552 , 0.980590 , 0.060567 , 0.496734 , -17.868597 , -6.118572 , -1.018695 , -0.128544 , -0.033296 , 0.991119 , 0.057205 , 0.262615 , -18.512220 , -5.835621 , -1.048169 , -0.080844 , -0.132389 , 0.987884 , 0.041520 , 0.271671 , -18.753874 , -5.351307 , -1.046502 , -0.372997 , -0.372845 , 0.849605 , 0.035170 , 0.284021 , -19.239904 , -5.481449 , -1.058975 , -0.018067 , 0.077548 , 0.996796 , 0.024281 , 0.279248 , 12.111393 , -5.528103 , -1.079767 , 0.029725 , -0.008148 , 0.999512 , 0.783321 , 0.274816 , 13.048351 , -6.763508 , -1.078804 , 0.078982 , 0.621479 , 0.779412 , 0.806768 , 0.252217 , 13.259632 , -5.238522 , -1.136693 , 0.070376 , 0.039460 , 0.996734 , 0.813273 , 0.279215 , 12.870541 , -4.575619 , -1.108107 , -0.020142 , -0.735588 , 0.677114 , 0.802547 , 0.290201 , 12.170124 , -4.834064 , -1.064353 , 0.035615 , 0.009857 , 0.999298 , 0.783770 , 0.285548 , 12.080914 , -6.433109 , -1.079540 , 0.021851 , 0.015656 , 0.999634 , 0.785450 , 0.258771 , 10.790897 , -6.032803 , -1.035248 , 0.026002 , 0.014832 , 0.999542 , 0.752515 , 0.265620 , 11.621700 , -6.245327 , -1.097376 , 0.037446 , 0.044343 , 0.998291 , 0.774542 , 0.262880 , 11.280216 , -6.883724 , -0.991415 , -0.065889 , 0.723472 , 0.687155 , 0.766637 , 0.249639 , 11.208080 , -5.202717 , -1.054038 , 0.020966 , 0.021332 , 0.999542 , 0.761809 , 0.277577 , 12.559223 , 2.534138 , -0.995453 , 0.007294 , 0.142308 , 0.989776 , 0.796621 , 0.516338 , 13.532009 , 3.524548 , -1.002086 , -0.002899 , 0.014985 , 0.999878 , 0.821277 , 0.542478 , 11.446568 , 4.341383 , -1.006529 , 0.001190 , 0.002564 , 0.999969 , 0.770530 , 0.570338 , 11.378376 , -4.735538 , -1.078051 , -0.006775 , 0.068789 , 0.997589 , 0.767564 , 0.286025 , -12.882364 , 6.708445 , -1.001131 , 0.004669 , -0.034944 , 0.999359 , 0.183106 , 0.616642 , -12.467306 , 4.638012 , -1.012309 , 0.000305 , -0.008881 , 0.999939 , 0.190204 , 0.574071 , -10.437315 , 3.207386 , -1.030671 , -0.000977 , -0.021119 , 0.999756 , 0.240951 , 0.542488 , -14.673063 , 6.708920 , -1.004068 , -0.010834 , -0.044618 , 0.998932 , 0.137658 , 0.624313 , -5.406757 , 5.724133 , -0.997376 , -0.001617 , 0.002441 , 0.999969 , 0.359998 , 0.599981 , 2.047695 , 7.426241 , -0.990321 , -0.004486 , -0.080905 , 0.996704 , 0.545512 , 0.654478 , 3.681255 , 6.271379 , -0.992808 , 0.000732 , 0.002106 , 0.999969 , 0.587304 , 0.627540 , 2.634243 , 7.469545 , -0.987496 , 0.010346 , -0.079134 , 0.996796 , 0.563825 , 0.656066 , 4.475475 , 9.144432 , -0.993309 , 0.108066 , -0.040803 , 0.993286 , 0.601998 , 0.710064 , 4.173122 , 8.349274 , -0.996129 , 0.033509 , -0.022736 , 0.999176 , 0.596427 , 0.683681 , 9.084042 , 11.877071 , -1.004140 , 0.001373 , 0.000122 , 0.999969 , 0.712116 , 0.785274 , 5.325954 , 11.169514 , -0.997728 , 0.040773 , -0.007111 , 0.999115 , 0.632164 , 0.767422 , 4.998943 , 10.339834 , -0.997010 , 0.067721 , -0.027589 , 0.997314 , 0.611583 , 0.740251 , 1.389469 , 7.419830 , -0.988348 , 0.010407 , -0.091433 , 0.995727 , 0.527939 , 0.653379 , 0.733082 , 7.286293 , -0.992522 , -0.002838 , -0.060121 , 0.998169 , 0.514650 , 0.647954 , 3.543316 , 7.806942 , -0.992945 , 0.028565 , -0.041780 , 0.998688 , 0.582897 , 0.667538 , 3.717945 , 4.081657 , -0.978582 , -0.004791 , 0.009705 , 0.999939 , 0.582580 , 0.570722 , 6.040058 , 4.500093 , -0.985350 , 0.002258 , 0.010773 , 0.999939 , 0.645104 , 0.578315 , 5.253414 , 11.889374 , -0.989637 , 0.199225 , -0.011811 , 0.979858 , 0.623750 , 0.783226 , 5.275097 , 12.532070 , -0.997255 , 0.129521 , 0.014496 , 0.991455 , 0.631071 , 0.800955 , 5.231968 , 13.136574 , -0.996804 , 0.201880 , 0.027284 , 0.979003 , 0.625237 , 0.821231 , 5.153805 , 14.429461 , -0.999474 , 0.033296 , 0.008454 , 0.999390 , 0.641017 , 0.849305 , 4.915752 , 15.582302 , -0.998790 , 0.047487 , 0.004517 , 0.998840 , 0.636969 , 0.897654 , 11.984135 , 18.342678 , -1.008852 , 0.000458 , 0.004089 , 0.999969 , 0.768615 , 0.959718 , 4.690174 , 17.772421 , -0.999079 , 0.041139 , 0.024628 , 0.998840 , 0.625066 , 0.961552 , -14.103735 , 1.988377 , -1.103024 , 0.007874 , -0.033418 , 0.999390 , 0.153475 , 0.508106 , -13.997831 , 3.432255 , -1.029010 , -0.005615 , -0.031098 , 0.999481 , 0.152853 , 0.542936 , -11.981466 , 1.558620 , -1.131250 , 0.008850 , 0.077151 , 0.996979 , 0.200921 , 0.502206 , -11.208105 , 2.087078 , -1.081734 , -0.025452 , -0.029176 , 0.999237 , 0.219383 , 0.512994 , -12.401030 , 2.399632 , -1.083292 , -0.004028 , -0.054933 , 0.998474 , 0.190793 , 0.521272 , -14.015600 , -5.012524 , -1.053855 , -0.080355 , 0.085116 , 0.993103 , 0.155496 , 0.286776 , -15.137396 , -4.766659 , -1.157237 , -0.013276 , 0.139592 , 0.990112 , 0.131677 , 0.294612 , -14.897528 , -5.564419 , -1.059973 , -0.023438 , 0.074435 , 0.996948 , 0.134368 , 0.275822 , 5.512806 , -3.696835 , -1.179656 , -0.007599 , 0.159886 , 0.987091 , 0.619826 , 0.317774 , 5.579037 , -4.903927 , -1.003337 , -0.033387 , 0.125675 , 0.991485 , 0.620513 , 0.292687 , 6.122440 , -3.959126 , -1.123173 , -0.431013 , -0.162389 , 0.887600 , 0.637737 , 0.315441 , -7.781208 , -6.908184 , -0.976169 , -0.133000 , 0.540574 , 0.830714 , 0.302030 , 0.239109 , -7.744854 , -5.574116 , -1.002880 , 0.046449 , 0.034852 , 0.998291 , 0.302238 , 0.270921 , -8.582678 , -6.732861 , -0.939845 , 0.021332 , 0.045167 , 0.998749 , 0.282231 , 0.243811 , -4.178364 , -7.280643 , -1.074295 , 0.062990 , 0.304941 , 0.950255 , 0.392341 , 0.243030 , -4.074490 , -6.551975 , -1.074173 , -0.003021 , -0.004028 , 0.999969 , 0.395089 , 0.255211 , -4.612148 , -6.950718 , -1.115611 , 0.025605 , 0.010529 , 0.999603 , 0.383290 , 0.250558 , -4.699207 , -6.124043 , -1.060906 , 0.040376 , -0.003906 , 0.999176 , 0.382485 , 0.263392 , -4.218861 , -5.660702 , -1.095420 , 0.046663 , 0.048647 , 0.997711 , 0.393179 , 0.273681 , 10.317783 , -4.857273 , -1.039410 , 0.021638 , 0.016388 , 0.999603 , 0.744601 , 0.286192 , 9.206203 , -4.445866 , -1.044446 , -0.029206 , -0.588122 , 0.808222 , 0.719587 , 0.292974 , 8.448872 , -5.754498 , -0.974231 , 0.042360 , 0.017273 , 0.998932 , 0.697425 , 0.270820 , -3.673542 , -6.357601 , -1.081072 , 0.003845 , 0.043519 , 0.999023 , 0.405664 , 0.259383 , -1.757114 , -6.047176 , -1.090838 , -0.017457 , 0.073275 , 0.997131 , 0.449048 , 0.267151 , -2.296925 , -5.533611 , -1.150774 , -0.010346 , 0.117771 , 0.992981 , 0.438719 , 0.275932 , -13.351843 , -3.310055 , -1.138492 , -0.003388 , 0.027406 , 0.999603 , 0.174539 , 0.320632 , -13.956305 , -4.210461 , -1.149462 , -0.106265 , 0.087863 , 0.990417 , 0.158994 , 0.306125 , -13.098585 , -4.305889 , -1.062784 , -0.041414 , 0.079257 , 0.995972 , 0.177544 , 0.299129 , -10.945089 , -6.025776 , -0.930744 , -0.011780 , 0.015046 , 0.999817 , 0.223198 , 0.260777 , -11.884626 , -6.915966 , -0.957128 , -0.001465 , -0.017579 , 0.999817 , 0.200911 , 0.241499 , -10.597990 , -7.019321 , -0.946853 , -0.010193 , -0.026032 , 0.999603 , 0.232716 , 0.239055 , -15.564405 , -8.185841 , -0.979515 , -0.022034 , 0.025025 , 0.999420 , 0.117214 , 0.211313 , -16.473761 , -8.694836 , -1.009286 , 0.014985 , 0.079592 , 0.996704 , 0.099263 , 0.198664 , -15.554609 , -8.708965 , -0.953567 , -0.008942 , 0.073061 , 0.997284 , 0.118218 , 0.199240 , -6.311703 , -5.782139 , -1.012830 , 0.014130 , 0.035737 , 0.999237 , 0.338534 , 0.267491 , -7.034214 , -4.910244 , -1.040291 , -0.000855 , -0.000580 , 0.999969 , 0.321540 , 0.284944 , -12.600683 , -2.674572 , -1.189189 , -0.042055 , 0.022645 , 0.998840 , 0.190042 , 0.329180 , -13.025312 , -2.859127 , -1.167182 , 0.038331 , 0.070498 , 0.996765 , 0.183192 , 0.327782 , -11.580206 , -4.209408 , -1.038569 , 0.006226 , 0.080386 , 0.996734 , 0.207652 , 0.301851 , -13.671484 , -4.977459 , -1.016577 , -0.075045 , 0.063540 , 0.995148 , 0.165777 , 0.289300 , 1.532055 , -3.489117 , -1.193927 , -0.019868 , 0.061769 , 0.997864 , 0.528714 , 0.316809 , -0.272343 , -3.745235 , -1.245433 , -0.078829 , 0.056948 , 0.995239 , 0.490672 , 0.312178 , 0.873531 , -4.340084 , -1.122927 , -0.036470 , 0.087039 , 0.995514 , 0.518877 , 0.299354 , 7.742359 , -6.155132 , -0.928202 , 0.032655 , -0.002411 , 0.999451 , 0.682201 , 0.262148 , 6.855541 , -4.887623 , -0.957502 , 0.011567 , 0.061007 , 0.998047 , 0.656767 , 0.289293 , 6.916523 , -5.496807 , -0.928765 , 0.021851 , 0.025788 , 0.999420 , 0.659976 , 0.274329 , -0.279942 , -5.356625 , -1.093760 , -0.042055 , 0.079562 , 0.995911 , 0.489009 , 0.278612 , 0.057384 , -6.021046 , -1.044885 , -0.024628 , 0.042024 , 0.998810 , 0.496308 , 0.265098 , -1.214725 , -4.590755 , -1.234568 , -0.070345 , 0.132817 , 0.988617 , 0.468018 , 0.293491 , -2.095066 , -4.546200 , -1.297175 , -0.012940 , 0.157353 , 0.987426 , 0.444617 , 0.296762 , 4.077778 , -5.494129 , -1.001229 , -0.020112 , 0.053041 , 0.998383 , 0.586534 , 0.275251 , 6.300686 , -5.338902 , -0.922123 , -0.014649 , 0.057344 , 0.998230 , 0.645552 , 0.282458 , 4.909809 , -5.100819 , -1.003937 , -0.035279 , 0.092410 , 0.995086 , 0.605674 , 0.285000 , 2.022953 , -8.022579 , -0.993706 , 0.055025 , 0.050722 , 0.997192 , 0.543231 , 0.219433 , 1.097813 , -7.465321 , -0.963962 , -0.017884 , 0.020905 , 0.999603 , 0.520630 , 0.234113 , 1.555042 , -8.160473 , -0.950517 , 0.110813 , 0.246132 , 0.962859 , 0.533096 , 0.219026 , -10.771048 , -8.364193 , -1.003424 , 0.008332 , -0.058016 , 0.998260 , 0.229092 , 0.213668 , -9.925459 , -8.938625 , -1.025937 , -0.006439 , -0.054262 , 0.998474 , 0.245412 , 0.205846 , -8.850126 , -7.751812 , -0.939027 , 0.012482 , -0.056825 , 0.998291 , 0.267830 , 0.223851 , -6.260212 , -6.758480 , -0.980098 , 0.002594 , 0.187078 , 0.982330 , 0.340648 , 0.248730 , -6.735821 , -6.801945 , -0.982700 , 0.035859 , 0.300302 , 0.953154 , 0.332030 , 0.246116 , 0.147488 , -3.426617 , -1.240433 , -0.014924 , -0.011322 , 0.999817 , 0.499992 , 0.319481 , -0.374363 , -2.923763 , -1.232104 , 0.163884 , -0.543565 , 0.823176 , 0.486228 , 0.330366 , -8.234579 , -7.161457 , -0.892094 , -0.384442 , 0.283578 , 0.878475 , 0.290678 , 0.231716 , -9.208593 , -7.103611 , -0.931838 , -0.012848 , -0.007050 , 0.999878 , 0.263611 , 0.236651 , -11.392096 , -3.189602 , -1.139678 , 0.044740 , 0.083743 , 0.995453 , 0.210939 , 0.321887 , -11.364920 , -2.687267 , -1.169141 , 0.057802 , -0.008667 , 0.998260 , 0.211919 , 0.330130 , -12.058920 , -2.707638 , -1.161509 , -0.015381 , 0.012726 , 0.999786 , 0.200269 , 0.329618 , -10.897390 , -4.954609 , -0.984694 , 0.002777 , 0.078555 , 0.996887 , 0.221913 , 0.283575 , -11.707655 , -5.219341 , -0.978825 , -0.016358 , 0.050844 , 0.998566 , 0.204682 , 0.277754 , -9.416021 , -5.804173 , -0.923798 , -0.000061 , 0.012909 , 0.999908 , 0.260179 , 0.264853 , -13.630621 , -7.190678 , -0.966861 , -0.013947 , 0.014740 , 0.999786 , 0.161261 , 0.236850 , -13.140913 , -8.166592 , -0.953176 , -0.005860 , 0.035493 , 0.999329 , 0.173061 , 0.212888 , -13.295958 , -5.904621 , -0.986050 , -0.026917 , 0.027955 , 0.999237 , 0.169460 , 0.266558 , -4.333942 , -4.415173 , -1.173183 , 0.138524 , -0.630360 , 0.763817 , 0.394435 , 0.296310 , -3.230434 , -5.434238 , -1.157404 , 0.031739 , 0.101077 , 0.994354 , 0.416719 , 0.277306 , 2.953678 , -2.728115 , -1.317614 , 0.094821 , 0.164892 , 0.981719 , 0.559636 , 0.331818 , 2.382381 , -2.236324 , -1.300280 , 0.235267 , -0.264718 , 0.935148 , 0.546666 , 0.342038 , 2.171543 , -2.911755 , -1.220610 , 0.070864 , 0.049379 , 0.996246 , 0.542799 , 0.329139 , -16.401503 , -7.605915 , -1.000261 , -0.006348 , 0.006165 , 0.999939 , 0.096736 , 0.224360 , -16.095762 , -6.542736 , -1.012028 , 0.027345 , -0.000336 , 0.999603 , 0.102350 , 0.250825 , -17.326780 , -7.297314 , -1.000255 , -0.003571 , -0.012970 , 0.999908 , 0.072912 , 0.228310 , 10.787579 , -4.563488 , -1.073043 , 0.084231 , -0.002564 , 0.996429 , 0.754259 , 0.290927 , -8.507360 , -5.080235 , -0.949913 , 0.033601 , -0.101138 , 0.994293 , 0.283290 , 0.283049 , -11.966330 , -7.834660 , -0.952528 , 0.025513 , 0.021607 , 0.999420 , 0.199356 , 0.220619 , -11.761847 , -8.188282 , -0.970323 , 0.090274 , 0.107852 , 0.990051 , 0.206296 , 0.215772 , -9.899511 , -3.877422 , -1.144637 , -0.010437 , 0.127232 , 0.991791 , 0.241486 , 0.308986 , -10.161047 , -5.141476 , -0.972872 , -0.011933 , 0.090945 , 0.995758 , 0.242007 , 0.282492 , -9.735968 , -4.583614 , -1.018164 , -0.093173 , 0.146397 , 0.984802 , 0.248958 , 0.293219 , 8.627293 , 2.482304 , -0.994866 , 0.042055 , -0.041810 , 0.998230 , 0.703790 , 0.521633 , 9.716923 , 2.713528 , -0.999768 , -0.001709 , -0.019898 , 0.999786 , 0.728211 , 0.525983 , 8.299778 , 3.381207 , -0.977259 , 0.012085 , 0.005982 , 0.999908 , 0.694216 , 0.544789 , -1.544193 , -3.697102 , -1.412892 , 0.254860 , -0.361888 , 0.896695 , 0.458801 , 0.312744 , -14.692595 , -9.439358 , -0.955703 , -0.093234 , 0.053163 , 0.994201 , 0.134955 , 0.186852 , -14.555807 , -8.624599 , -0.957454 , -0.022523 , 0.033815 , 0.999146 , 0.142729 , 0.203444 , -15.124792 , -9.283169 , -0.939206 , 0.062563 , 0.006775 , 0.998016 , 0.126746 , 0.189018 , 5.152645 , -3.506527 , -1.201556 , -0.000855 , 0.101260 , 0.994842 , 0.610162 , 0.321514 , 4.562809 , -3.146481 , -1.259761 , -0.028413 , 0.120975 , 0.992218 , 0.596160 , 0.327280 , 4.028408 , -4.238613 , -1.104300 , -0.004181 , 0.113132 , 0.993561 , 0.585952 , 0.302990 , 0.902020 , -6.736568 , -0.999834 , -0.022919 , 0.039521 , 0.998932 , 0.517106 , 0.249644 , 1.984409 , -6.661968 , -0.994059 , -0.003754 , 0.016785 , 0.999847 , 0.544256 , 0.249495 , 2.649868 , -3.445370 , -1.194728 , 0.019349 , 0.118900 , 0.992706 , 0.554626 , 0.317655 , 3.823299 , -3.177120 , -1.251567 , 0.003662 , 0.170995 , 0.985260 , 0.577638 , 0.324235 , 5.804989 , -7.269627 , -0.871857 , -0.349193 , 0.536882 , 0.767968 , 0.635117 , 0.235638 , 6.743916 , -6.397854 , -0.928864 , 0.024506 , 0.022156 , 0.999451 , 0.654977 , 0.255868 , 5.708767 , -6.344784 , -0.923155 , -0.022919 , 0.027711 , 0.999329 , 0.628271 , 0.256532 , -12.462816 , -8.303379 , -0.967704 , -0.173742 , 0.478408 , 0.860744 , 0.185832 , 0.205740 , -9.108442 , -4.929417 , -0.936217 , -0.053285 , -0.000671 , 0.998566 , 0.266023 , 0.286421 , -10.662039 , -9.307758 , -1.089134 , 0.207892 , 0.462294 , 0.861995 , 0.230755 , 0.198874 , 8.845242 , -6.473560 , -0.997806 , -0.006653 , -0.025330 , 0.999634 , 0.706154 , 0.255361 , 9.271290 , -6.575329 , -1.000005 , 0.045625 , 0.046571 , 0.997864 , 0.717161 , 0.255194 , 4.436169 , -6.509144 , -0.966489 , -0.029939 , 0.009644 , 0.999481 , 0.596240 , 0.253236 , -4.378391 , 2.257671 , -1.053257 , -0.017792 , 0.009674 , 0.999786 , 0.377423 , 0.517180 , -3.758396 , 2.188007 , -1.019504 , -0.013581 , 0.037843 , 0.999176 , 0.393225 , 0.514342 , -4.259533 , 3.069782 , -1.009705 , -0.015137 , -0.029756 , 0.999420 , 0.382974 , 0.534391 , -13.368071 , 1.430408 , -1.136729 , -0.030366 , 0.270638 , 0.962188 , 0.169864 , 0.495556 , 5.952114 , 2.972630 , -0.962676 , -0.001984 , -0.010132 , 0.999939 , 0.635183 , 0.533767 , 7.285503 , 1.919712 , -0.978802 , -0.023377 , -0.106174 , 0.994049 , 0.666412 , 0.510525 , 7.850422 , 2.012554 , -0.959612 , -0.023682 , -0.005280 , 0.999695 , 0.678497 , 0.509836 , -2.554310 , 1.602444 , -1.017180 , 0.054476 , 0.152715 , 0.986755 , 0.422295 , 0.507100 , 3.849552 , 1.882191 , -1.032910 , 0.264077 , 0.218451 , 0.939421 , 0.587184 , 0.505959 , 4.395451 , 2.196392 , -1.002538 , 0.000946 , -0.124210 , 0.992248 , 0.599362 , 0.514823 , 4.044590 , 2.701862 , -0.958643 , 0.004028 , -0.030152 , 0.999512 , 0.589279 , 0.528039 , -5.034870 , 3.748310 , -1.000289 , -0.003876 , -0.013947 , 0.999878 , 0.367127 , 0.550166 , -0.374683 , 2.649090 , -0.988331 , 0.005585 , -0.015870 , 0.999847 , 0.473370 , 0.530198 , -6.179638 , 1.590527 , -1.056228 , -0.050630 , 0.040773 , 0.997864 , 0.341782 , 0.504021 , -6.717625 , 2.998707 , -1.016680 , -0.008820 , -0.022553 , 0.999695 , 0.329551 , 0.535410 , -6.965290 , 1.722385 , -1.077219 , -0.017365 , -0.025208 , 0.999512 , 0.321476 , 0.507841 , -8.111830 , 2.070049 , -1.067205 , 0.000946 , -0.064638 , 0.997894 , 0.297248 , 0.516003 , -4.823627 , 2.275097 , -1.048743 , 0.000549 , -0.032136 , 0.999481 , 0.368879 , 0.517285 , 2.991108 , 2.656681 , -0.968063 , -0.036561 , -0.007447 , 0.999298 , 0.559591 , 0.529123 , -1.607822 , 1.359432 , -1.005780 , 0.020966 , 0.125828 , 0.991821 , 0.445333 , 0.502942 , -0.524494 , 1.197170 , -1.021633 , 0.041047 , 0.173406 , 0.983978 , 0.469978 , 0.495504 , 5.475269 , 2.121601 , -1.003634 , -0.007630 , -0.108280 , 0.994079 , 0.623056 , 0.512320 , 6.247402 , 2.266048 , -0.986543 , -0.017487 , -0.068606 , 0.997467 , 0.643290 , 0.517187 , 3.070477 , 2.185474 , -0.960057 , -0.082522 , 0.295297 , 0.951811 , 0.560532 , 0.515135 , 3.497936 , 2.154926 , -0.973631 , 0.153996 , 0.228919 , 0.961180 , 0.574933 , 0.511411 , 8.906437 , 4.467236 , -0.993027 , 0.007050 , 0.011139 , 0.999908 , 0.712658 , 0.577285 , 8.197224 , 2.240833 , -0.970212 , 0.068606 , -0.002289 , 0.997620 , 0.691812 , 0.516142 , 2.308651 , 3.126522 , -0.984930 , -0.012116 , -0.020173 , 0.999695 , 0.538602 , 0.541497 , 2.290829 , 2.221058 , -1.046803 , -0.049776 , -0.023743 , 0.998474 , 0.539710 , 0.518499 , -9.072386 , 1.974339 , -1.066098 , 0.017762 , -0.029725 , 0.999390 , 0.274072 , 0.514116 , 2.004467 , -4.306446 , -1.095853 , -0.014435 , 0.084750 , 0.996277 , 0.539920 , 0.299517 , -11.280043 , -8.003407 , -0.974221 , 0.026460 , -0.017335 , 0.999481 , 0.216989 , 0.219067 , 2.717808 , -5.664951 , -1.007727 , -0.014740 , 0.041261 , 0.999023 , 0.556151 , 0.270726 , -14.717566 , -6.655727 , -0.998673 , -0.017670 , 0.033113 , 0.999268 , 0.136677 , 0.249305 , 4.737667 , 16.997974 , -0.998275 , 0.089969 , 0.008576 , 0.995880 , 0.618856 , 0.933429 , 7.196598 , -6.979267 , -0.945185 , 0.011872 , 0.560869 , 0.827784 , 0.669579 , 0.242530 , 8.656963 , 1.836346 , -1.050365 , 0.113559 , 0.210578 , 0.970946 , 0.704251 , 0.506400 , 9.415005 , 1.685452 , -1.055073 , 0.018159 , 0.483016 , 0.875393 , 0.722784 , 0.499906 , 10.184475 , 1.963451 , -1.011970 , -0.038911 , 0.069796 , 0.996796 , 0.738996 , 0.505168 , 10.932880 , 2.016033 , -0.996822 , -0.055910 , 0.091311 , 0.994232 , 0.756846 , 0.507388 , 6.677814 , 1.696545 , -1.040854 , -0.072848 , -0.065157 , 0.995209 , 0.651984 , 0.502994 , 7.666241 , -7.034245 , -0.967199 , -0.079287 , 0.698965 , 0.710715 , 0.678765 , 0.245192 , 8.117710 , -6.641384 , -0.982585 , 0.071505 , -0.061892 , 0.995514 , 0.691867 , 0.252620 , 8.933468 , -4.403172 , -1.039872 , -0.104495 , -0.612049 , 0.783837 , 0.710012 , 0.296447 , 7.831532 , -4.867519 , -1.025491 , 0.026032 , 0.063906 , 0.997589 , 0.681271 , 0.288386 , 6.929226 , -4.473125 , -0.970419 , -0.137120 , -0.446791 , 0.884060 , 0.662544 , 0.300897 , 8.497005 , -7.015064 , -1.052253 , 0.006256 , 0.732902 , 0.680288 , 0.698553 , 0.245541 , 9.611477 , -6.730610 , -1.021023 , 0.070894 , -0.023957 , 0.997192 , 0.725153 , 0.252716 , 6.857487 , -6.751339 , -0.908336 , 0.091372 , 0.025056 , 0.995483 , 0.655791 , 0.249033 , 10.649738 , -6.907818 , -1.026492 , -0.111942 , 0.468184 , 0.876492 , 0.749734 , 0.251602 , 5.417469 , -6.941235 , -0.918415 , -0.061525 , 0.031770 , 0.997589 , 0.620015 , 0.242262 , 4.551617 , -7.342739 , -0.963646 , -0.086001 , 0.038057 , 0.995544 , 0.599274 , 0.232784 , 9.582821 , -4.441128 , -1.049075 , 0.098178 , -0.534959 , 0.839137 , 0.729787 , 0.296062 , 6.669674 , -4.305538 , -1.011973 , -0.381817 , -0.399976 , 0.833186 , 0.648860 , 0.306885 , 5.322231 , -3.297276 , -1.224463 , 0.090854 , -0.083102 , 0.992370 , 0.614611 , 0.326199 , 4.039883 , -2.789272 , -1.320101 , -0.069430 , 0.164647 , 0.983886 , 0.582824 , 0.334033 , 3.293583 , -2.278843 , -1.471858 , 0.030610 , -0.228889 , 0.972961 , 0.566511 , 0.342421 , 1.510769 , -2.645634 , -1.186438 , -0.014557 , -0.115299 , 0.993194 , 0.527167 , 0.334819 , 0.847889 , -3.243076 , -1.237115 , -0.027223 , 0.015748 , 0.999481 , 0.515010 , 0.321408 , -0.626652 , -3.564312 , -1.302684 , -0.176519 , 0.031007 , 0.983795 , 0.480867 , 0.314833 , -2.654881 , -4.509754 , -1.296955 , 0.213507 , -0.343425 , 0.914548 , 0.430233 , 0.298728 , -3.020832 , -7.298542 , -1.030268 , -0.013489 , 0.111942 , 0.993591 , 0.419047 , 0.244142 , -2.430164 , -7.445980 , -1.017992 , -0.050356 , 0.460585 , 0.886166 , 0.432627 , 0.238788 , -1.738064 , -7.116695 , -1.050150 , 0.041688 , 0.033326 , 0.998566 , 0.450822 , 0.242747 , -3.100452 , -4.702564 , -1.263173 , 0.037141 , -0.040834 , 0.998444 , 0.420306 , 0.293709 , -4.815784 , -4.608280 , -1.136649 , 0.180090 , 0.015320 , 0.983520 , 0.379333 , 0.292203 , -5.492870 , -5.191357 , -1.050575 , 0.039552 , -0.004913 , 0.999176 , 0.357481 , 0.278059 , -7.636990 , -4.928516 , -1.074417 , 0.119510 , -0.293130 , 0.948546 , 0.308258 , 0.287506 , -7.396923 , -6.563030 , -0.981008 , -0.011261 , 0.088626 , 0.995972 , 0.312215 , 0.249016 , -10.644056 , -3.755154 , -1.121670 , 0.042116 , 0.105472 , 0.993500 , 0.226110 , 0.310119 , -10.332602 , -2.956051 , -1.223589 , -0.186071 , -0.278970 , 0.942076 , 0.230673 , 0.325548 , -14.759047 , -4.081150 , -1.252703 , -0.004303 , 0.061098 , 0.998108 , 0.142999 , 0.312081 , -9.188261 , -8.685741 , -0.963660 , -0.242744 , 0.029786 , 0.969604 , 0.257462 , 0.207802 , -9.606058 , -8.679432 , -1.004819 , -0.042024 , -0.073214 , 0.996399 , 0.252840 , 0.208609 , -5.804073 , -6.478992 , -1.002395 , 0.059694 , 0.031373 , 0.997711 , 0.351453 , 0.252660 , -1.141590 , -7.041431 , -1.060784 , -0.003479 , -0.041566 , 0.999115 , 0.466082 , 0.244700 , -0.352299 , -7.479687 , -1.043958 , -0.043519 , 0.040773 , 0.998199 , 0.487012 , 0.233884 , 4.330799 , -7.650356 , -0.980619 , -0.059114 , -0.038911 , 0.997467 , 0.594134 , 0.224993 , 3.002460 , -7.559795 , -1.004605 , -0.002777 , -0.013031 , 0.999908 , 0.565256 , 0.230071 , -11.309286 , -8.842777 , -1.010740 , 0.445906 , 0.274056 , 0.852077 , 0.219473 , 0.203846 , -14.357023 , -9.492901 , -0.906745 , -0.234687 , 0.191931 , 0.952910 , 0.141312 , 0.183967 , -14.233099 , -9.195431 , -0.897834 , -0.154820 , 0.110965 , 0.981658 , 0.145539 , 0.189969 , -13.803919 , -8.735523 , -0.927037 , -0.022889 , 0.120029 , 0.992492 , 0.156244 , 0.199920 , -14.961721 , -9.785709 , -0.982275 , 0.120121 , 0.358287 , 0.925810 , 0.130002 , 0.180890 , -15.749464 , -5.507687 , -1.054872 , 0.061922 , 0.074709 , 0.995270 , 0.116776 , 0.279371 , -15.258032 , -4.032093 , -1.276105 , 0.089541 , -0.211524 , 0.973235 , 0.132573 , 0.314322 , -16.142641 , -5.952335 , -1.002227 , 0.129185 , -0.006012 , 0.991577 , 0.103131 , 0.268083 , -15.925814 , -4.689243 , -1.145235 , 0.273659 , -0.003204 , 0.961791 , 0.114757 , 0.298122 , -14.130789 , 1.421505 , -1.103940 , 0.000244 , 0.203375 , 0.979095 , 0.150592 , 0.493263 , -12.917578 , 1.711414 , -1.118895 , -0.029969 , 0.052004 , 0.998169 , 0.185346 , 0.501726 , -9.699663 , 1.773380 , -1.058934 , 0.011505 , 0.015595 , 0.999786 , 0.257185 , 0.507139 , -8.011885 , 1.204678 , -1.121880 , -0.019349 , 0.054964 , 0.998291 , 0.300528 , 0.501608 , -7.573666 , 1.345806 , -1.110712 , -0.059206 , 0.063662 , 0.996185 , 0.311837 , 0.499190 , -8.696589 , 1.160816 , -1.132048 , 0.040590 , 0.315531 , 0.948027 , 0.285339 , 0.494427 , 0.170689 , 2.070805 , -1.024031 , 0.033723 , -0.056764 , 0.997803 , 0.485629 , 0.515085 , 0.134838 , 1.232899 , -1.073002 , 0.052919 , 0.155004 , 0.986480 , 0.482967 , 0.495518 , 0.907475 , 2.332737 , -1.016047 , 0.011994 , -0.074404 , 0.997131 , 0.508912 , 0.516767 , 15.164974 , 2.514851 , -0.981494 , -0.005860 , -0.002930 , 0.999969 , 0.857045 , 0.515890 , 15.288288 , 3.793896 , -1.000909 , -0.013459 , 0.011078 , 0.999847 , 0.857556 , 0.545333 , 12.776646 , 2.308628 , -0.986011 , 0.099918 , 0.249214 , 0.963256 , 0.801843 , 0.509725 , 13.102695 , 2.232479 , -0.966509 , 0.064730 , 0.132054 , 0.989105 , 0.810311 , 0.507904 , 14.024082 , 2.575756 , -0.968535 , 0.008728 , 0.015442 , 0.999817 , 0.833369 , 0.515860 , 14.670292 , 2.158260 , -0.982821 , 0.011658 , -0.051119 , 0.998596 , 0.847239 , 0.507129 , 15.812000 , 1.639568 , -0.993392 , -0.040437 , -0.042299 , 0.998260 , 0.872232 , 0.496300 , 15.075130 , 1.683193 , -1.007629 , -0.038484 , -0.049165 , 0.998047 , 0.857245 , 0.497472 , 13.368038 , 1.925373 , -0.956022 , 0.083468 , 0.153783 , 0.984558 , 0.816686 , 0.501637 , 13.793400 , 1.747669 , -0.981534 , 0.090976 , 0.211615 , 0.973083 , 0.824164 , 0.498864 , 14.840969 , -6.447529 , -1.138235 , -0.081423 , 0.044160 , 0.995697 , 0.849078 , 0.256537 , 15.462009 , -6.059742 , -1.124970 , -0.027100 , 0.071444 , 0.997070 , 0.864671 , 0.265010 , 14.255001 , -5.822285 , -1.172074 , 0.027985 , 0.055452 , 0.998047 , 0.838086 , 0.268447 , 13.387890 , -6.491726 , -1.092748 , 0.051332 , 0.051271 , 0.997345 , 0.816136 , 0.258805 , 14.654949 , -4.747814 , -1.281445 , 0.047334 , -0.441877 , 0.895810 , 0.846649 , 0.291616 , 14.462391 , -5.167904 , -1.229483 , 0.152440 , 0.060457 , 0.986450 , 0.834879 , 0.282690 , 13.501247 , -4.552723 , -1.210770 , 0.112613 , -0.728904 , 0.675283 , 0.818372 , 0.289231 , 14.220158 , -6.220257 , -1.159990 , 0.018128 , 0.001312 , 0.999817 , 0.836482 , 0.261752 , 11.449512 , -13.815182 , -1.008521 , 0.166570 , -0.729453 , 0.663381 , 0.770037 , 0.035185 , 12.376011 , -13.857494 , -1.017005 , -0.006043 , -0.319620 , 0.947508 , 0.792571 , 0.033946 , 11.975468 , -13.498043 , -0.909236 , 0.050539 , -0.809656 , 0.584674 , 0.787610 , 0.048846 , 12.324001 , -7.485279 , 2.761483 , -0.415815 , 0.870174 , 0.264290 , 0.793870 , 0.191949 , 12.274807 , -7.826023 , 3.369062 , -0.488388 , 0.549730 , 0.677664 , 0.791220 , 0.186766 , 11.956944 , -1.242268 , 2.715295 , -0.036500 , 0.561357 , 0.826746 , 0.786617 , 0.395769 , 12.207394 , -1.269192 , 2.653489 , 0.524735 , 0.330912 , 0.784295 , 0.790942 , 0.393859 , 12.386395 , -0.943348 , 2.385572 , 0.591571 , 0.507096 , 0.626759 , 0.791916 , 0.399520 , 12.110950 , -3.511623 , 2.541921 , 0.074953 , 0.040651 , 0.996338 , 0.783749 , 0.363886 , 12.239414 , -3.741367 , 2.646394 , 0.063509 , 0.129643 , 0.989502 , 0.787727 , 0.358414 , 12.386616 , -3.457355 , 2.484700 , 0.762200 , -0.020356 , 0.646962 , 0.788232 , 0.366306 , 11.759151 , -4.220364 , 2.546567 , -0.204657 , 0.020539 , 0.978607 , 0.776134 , 0.356333 , 11.777302 , -3.744801 , 2.525388 , -0.194220 , -0.187170 , 0.962920 , 0.778121 , 0.362531 , 12.111248 , -4.635899 , 2.472345 , 0.142491 , -0.546983 , 0.824915 , 0.781055 , 0.349282 , 12.778957 , -4.673290 , 2.279489 , 0.347636 , -0.662984 , 0.663015 , 0.792000 , 0.347880 , 11.986866 , -0.569225 , 1.427663 , -0.857967 , 0.361827 , 0.364605 , 0.786026 , 0.416017 , 12.131115 , -0.377033 , 1.529039 , -0.464187 , 0.234382 , 0.854122 , 0.791040 , 0.420777 , 11.881542 , -0.286465 , 1.240842 , -0.668752 , 0.102206 , 0.736381 , 0.785950 , 0.426517 , 11.991108 , -2.802868 , 2.598981 , 0.613269 , -0.400952 , 0.680502 , 0.785908 , 0.380162 , 11.647663 , -3.045834 , 2.648381 , -0.102664 , 0.007294 , 0.994659 , 0.778712 , 0.376703 , 12.165264 , -3.108143 , 2.336694 , 0.457656 , 0.299417 , 0.837184 , 0.789341 , 0.373814 , 12.352802 , -0.719692 , 2.081693 , 0.491134 , 0.847072 , 0.202948 , 0.790670 , 0.405388 , 12.730526 , -1.031567 , 1.706102 , 0.546831 , 0.358318 , 0.756676 , 0.799755 , 0.406551 , 12.110676 , -0.590527 , 1.767915 , -0.161168 , 0.884945 , 0.436903 , 0.791791 , 0.410596 , 12.275051 , -2.503063 , 2.192601 , 0.687246 , -0.044313 , 0.725028 , 0.792905 , 0.381353 , 12.236713 , 0.961185 , 0.293679 , -0.134434 , 0.989898 , 0.044343 , 0.793622 , 0.458201 , 12.221127 , 0.836384 , -0.049163 , -0.371868 , 0.908719 , -0.189520 , 0.790299 , 0.465924 , 11.912792 , 0.781902 , 0.138204 , -0.577868 , 0.798578 , -0.168249 , 0.784451 , 0.461098 , 12.399792 , 0.958347 , -0.364051 , -0.605029 , 0.545854 , 0.579577 , 0.791458 , 0.474594 , 12.076382 , 0.665546 , -0.339976 , -0.570421 , 0.812311 , 0.121464 , 0.782780 , 0.469518 , 12.942516 , 1.177334 , -0.001555 , -0.068728 , 0.746513 , 0.661794 , 0.807436 , 0.472561 , 13.384129 , 1.115078 , -0.128733 , 0.457289 , 0.675192 , 0.578753 , 0.818001 , 0.474358 , 13.057072 , 1.375057 , -0.504493 , 0.204505 , 0.813593 , 0.544237 , 0.811040 , 0.482545 , 13.675838 , 1.178188 , -0.600816 , 0.461226 , 0.641621 , 0.612812 , 0.825928 , 0.479841 , 12.093754 , -0.686825 , 2.271688 , -0.022034 , 0.890225 , 0.454909 , 0.788378 , 0.402322 , 11.853077 , -0.958927 , 2.492456 , -0.351207 , 0.683401 , 0.639973 , 0.785589 , 0.399989 , 12.146969 , 0.870449 , 0.619588 , -0.200659 , 0.856044 , 0.476302 , 0.792952 , 0.452012 , 11.866825 , 0.704861 , 0.531976 , -0.658559 , 0.686758 , 0.307566 , 0.786508 , 0.453221 , 12.393543 , -0.526104 , 1.607251 , 0.074831 , 0.402112 , 0.912503 , 0.795676 , 0.416198 , 11.985760 , 0.402653 , 0.963460 , -0.382397 , 0.628620 , 0.677175 , 0.791986 , 0.445996 , 12.359745 , -0.176426 , 1.514016 , -0.144658 , 0.379254 , 0.913907 , 0.796524 , 0.424529 , 12.506680 , 0.734104 , 0.715169 , 0.125858 , 0.829310 , 0.544420 , 0.800218 , 0.450626 , 12.663235 , 1.304317 , -0.431094 , -0.098605 , 0.583941 , 0.805750 , 0.800314 , 0.481222 , 12.083614 , 0.090580 , 1.275350 , -0.415937 , 0.464431 , 0.781823 , 0.794125 , 0.432869 , 11.862743 , 0.179996 , 1.050733 , -0.581957 , 0.470565 , 0.663198 , 0.787202 , 0.437370 , 11.823124 , -12.979031 , 1.181619 , -0.425123 , -0.053987 , 0.903500 , 0.798167 , 0.078395 , 11.906132 , -13.589397 , 0.884912 , -0.435041 , -0.777490 , 0.454085 , 0.801642 , 0.070554 , 12.599834 , -13.516331 , 1.269304 , -0.181951 , -0.571337 , 0.800256 , 0.806955 , 0.076491 , 12.502064 , -12.979534 , 1.303567 , -0.291665 , 0.052065 , 0.955077 , 0.803460 , 0.080853 , 12.334560 , -11.872356 , 0.530141 , -0.478591 , 0.266640 , 0.836543 , 0.795989 , 0.092258 , 11.713428 , -12.252888 , 0.629030 , 0.494125 , 0.341807 , 0.799341 , 0.791328 , 0.092947 , 11.396374 , -12.704357 , 0.917455 , -0.370739 , -0.170019 , 0.913022 , 0.787946 , 0.086649 , 12.133656 , -11.410603 , 0.638723 , 0.078310 , -0.932981 , 0.351238 , 0.794024 , 0.095858 , 11.772053 , -11.610752 , 0.080926 , 0.371990 , -0.291360 , 0.881283 , 0.792544 , 0.094789 , 12.547886 , -12.208408 , 1.067914 , -0.337779 , 0.605090 , 0.720908 , 0.800199 , 0.085497 , 12.560970 , -13.804363 , 0.745492 , -0.076479 , -0.985870 , 0.148839 , 0.812452 , 0.068553 , 12.617908 , -13.368786 , -0.845656 , 0.002838 , -0.909085 , 0.416578 , 0.803256 , 0.045321 , 12.855404 , -11.183796 , 0.955125 , -0.196539 , -0.874386 , 0.443617 , 0.798728 , 0.098291 , 12.472668 , -11.481838 , 1.266210 , 0.332102 , -0.930235 , -0.155919 , 0.797084 , 0.108909 , 11.844479 , -11.638363 , 0.993516 , 0.564440 , -0.821772 , 0.077853 , 0.788802 , 0.098112 , 11.893429 , -3.204754 , 2.656804 , 0.323008 , 0.281564 , 0.903500 , 0.780942 , 0.368503 , 12.109997 , -2.400616 , 2.869573 , 0.709738 , -0.409223 , 0.573382 , 0.787653 , 0.385480 , 12.188335 , -4.912769 , 1.966901 , 0.125584 , -0.947722 , 0.293313 , 0.785712 , 0.341576 , 12.122456 , -8.070606 , 3.348668 , -0.800165 , 0.201544 , 0.564867 , 0.789035 , 0.183718 , 12.418644 , -7.337368 , 2.351449 , -0.242012 , 0.912870 , 0.328745 , 0.795657 , 0.197672 , 12.372448 , -8.171505 , 3.594812 , -0.225623 , 0.344157 , 0.911374 , 0.792151 , 0.181987 , 12.224163 , -8.540974 , 3.690885 , -0.346263 , 0.521989 , 0.779473 , 0.790903 , 0.176967 , 12.100628 , -8.799839 , 3.806566 , -0.555986 , 0.345439 , 0.755974 , 0.789215 , 0.173155 , 12.350353 , -7.160366 , 1.953084 , -0.310648 , 0.809351 , 0.498428 , 0.794564 , 0.203926 , 12.327976 , -6.980038 , 1.722329 , -0.534654 , 0.597766 , 0.597308 , 0.794369 , 0.208249 , 12.140942 , -6.959110 , 1.434148 , -0.543718 , 0.790155 , 0.282815 , 0.790017 , 0.211977 , 12.380878 , -8.839153 , 3.900098 , 0.206366 , 0.350749 , 0.913419 , 0.794055 , 0.172118 , 12.169506 , -9.443531 , 3.979264 , -0.302133 , 0.231330 , 0.924741 , 0.791230 , 0.159968 , 12.070370 , -9.508488 , 3.935064 , -0.469832 , 0.316355 , 0.824091 , 0.785689 , 0.157839 , 12.581486 , -10.345745 , 4.400262 , -0.100986 , 0.069460 , 0.992431 , 0.794971 , 0.148555 , 12.432339 , -10.973667 , 4.246675 , -0.268258 , -0.316660 , 0.909787 , 0.794197 , 0.142364 , 11.716587 , -4.899158 , 2.124875 , 0.088290 , -0.921567 , 0.377972 , 0.776009 , 0.342134 , 12.237576 , -4.955914 , 1.658529 , 0.126682 , -0.989898 , 0.063509 , 0.787970 , 0.337045 , 12.375149 , -6.846996 , 1.196439 , -0.193609 , 0.980712 , -0.025605 , 0.794546 , 0.217177 , 14.561237 , 1.525738 , -1.062442 , 0.037660 , -0.061312 , 0.997406 , 0.847744 , 0.492675 , 14.284588 , 1.674946 , -1.013006 , 0.157109 , 0.006714 , 0.987548 , 0.838591 , 0.495836 , 14.583645 , 0.998997 , -1.073319 , 0.211158 , 0.112796 , 0.970885 , 0.848606 , 0.484357 , 14.045124 , 1.433781 , -0.891425 , 0.275307 , 0.243690 , 0.929929 , 0.835096 , 0.490450 , 14.072796 , 0.996075 , -0.766276 , 0.513413 , 0.426801 , 0.744438 , 0.836874 , 0.482031 , 13.681568 , 1.513210 , -0.846858 , 0.170537 , 0.468612 , 0.866756 , 0.826951 , 0.489146 , 12.469723 , -6.769588 , 0.588216 , -0.100436 , 0.976897 , 0.188543 , 0.796617 , 0.226128 , 12.359394 , -6.833584 , 0.813157 , -0.157842 , 0.978698 , 0.131260 , 0.794149 , 0.222588 , 12.745571 , -6.841702 , 0.985326 , 0.089663 , 0.992981 , 0.076754 , 0.801434 , 0.221055 , 12.587185 , -2.205517 , 1.985814 , 0.416517 , 0.036714 , 0.908353 , 0.801494 , 0.385049 , 12.428005 , -1.727024 , 2.371465 , 0.840052 , -0.133580 , 0.525742 , 0.796147 , 0.391371 , 12.222874 , -1.750713 , 2.786474 , 0.835292 , 0.052400 , 0.547288 , 0.790246 , 0.389580 , 12.477108 , -1.257488 , 2.402696 , 0.808557 , 0.091403 , 0.581256 , 0.794480 , 0.395443 , 13.008373 , -4.071514 , 2.460458 , 0.331797 , -0.163793 , 0.928983 , 0.803134 , 0.354334 , 12.943699 , -0.494236 , 1.535413 , 0.051393 , 0.210059 , 0.976318 , 0.808938 , 0.418958 , 12.599964 , 0.215000 , 1.330919 , -0.032533 , 0.609241 , 0.792291 , 0.803665 , 0.432878 , 13.350399 , -0.090054 , 1.464353 , -0.035646 , 0.400006 , 0.915799 , 0.815450 , 0.430996 , 12.974575 , 0.380253 , 1.067403 , 0.028230 , 0.757469 , 0.652242 , 0.812118 , 0.441940 , 12.574459 , 0.918232 , 0.012990 , -0.218085 , 0.921201 , 0.322184 , 0.799187 , 0.466355 , 12.288570 , -13.686916 , 0.067708 , -0.106418 , -0.983306 , -0.147557 , 0.799351 , 0.059094 , 13.497822 , -13.640903 , 0.283632 , 0.126835 , -0.982910 , -0.133335 , 0.817431 , 0.059717 , 13.852207 , -13.618717 , 0.839822 , 0.309366 , -0.893765 , 0.324686 , 0.829314 , 0.068023 , 13.416561 , -13.796223 , -1.017779 , 0.014283 , -0.796625 , 0.604266 , 0.817879 , 0.035740 , 13.241451 , -13.482166 , -0.463107 , -0.048433 , -0.998566 , 0.022248 , 0.816362 , 0.049085 , 13.133312 , -4.779911 , 1.797799 , 0.400708 , -0.874783 , 0.272256 , 0.801475 , 0.342872 , 12.712322 , -6.686199 , 0.271562 , -0.044771 , 0.835536 , -0.547594 , 0.800143 , 0.230344 , 12.360897 , -6.748974 , 0.313703 , -0.168920 , 0.984710 , 0.041841 , 0.795474 , 0.230612 , 12.878803 , -6.719265 , 0.247597 , 0.141026 , 0.989441 , 0.032991 , 0.802782 , 0.232050 , 12.611309 , -4.897938 , 1.536975 , 0.197363 , -0.980285 , -0.005890 , 0.795068 , 0.335009 , 12.827435 , -6.768871 , -0.464274 , 0.006104 , 0.997955 , -0.063173 , 0.803478 , 0.240830 , 12.345966 , -6.813213 , -0.440709 , -0.116977 , 0.985839 , -0.120060 , 0.792327 , 0.240729 , 13.096455 , -4.763744 , 1.339563 , 0.291910 , -0.938383 , -0.184942 , 0.805054 , 0.335467 , 12.776653 , -7.261311 , 2.284410 , -0.025178 , 0.955565 , 0.293680 , 0.802076 , 0.199614 , 13.487194 , -11.188671 , 1.834497 , -0.444899 , -0.849818 , 0.282571 , 0.809573 , 0.114574 , 12.938358 , -11.287365 , 2.174829 , 0.244819 , -0.967101 , -0.068911 , 0.800563 , 0.118543 , 12.872662 , -7.138409 , 1.951898 , 0.185186 , 0.879452 , 0.438429 , 0.804032 , 0.205086 , 12.585621 , -6.958515 , 1.793149 , 0.042116 , 0.703177 , 0.709738 , 0.799437 , 0.208130 , 12.355412 , -9.100620 , 3.988137 , 0.113285 , 0.199988 , 0.973205 , 0.793942 , 0.166551 , 12.705929 , -9.433155 , 3.839975 , 0.301248 , 0.543413 , 0.783502 , 0.799503 , 0.163607 , 12.747135 , -9.134274 , 3.633229 , 0.532609 , 0.424421 , 0.732231 , 0.798331 , 0.168561 , 12.789989 , -8.887539 , 3.447240 , 0.493179 , 0.267708 , 0.827693 , 0.801161 , 0.172457 , 12.630657 , -8.562016 , 3.636125 , 0.539598 , 0.193823 , 0.819269 , 0.798226 , 0.178564 , 12.457325 , -6.735249 , 1.624089 , -0.156652 , 0.919126 , 0.361431 , 0.797393 , 0.212178 , 12.708302 , -6.823513 , 1.362542 , 0.222236 , 0.974944 , -0.005890 , 0.801044 , 0.215874 , 13.185253 , -11.168949 , 1.343839 , -0.310221 , -0.918149 , 0.246406 , 0.809314 , 0.102827 , 13.298725 , -13.488941 , 1.358854 , 0.118259 , -0.616962 , 0.778008 , 0.817214 , 0.077584 , 12.681820 , -7.368069 , 2.638910 , -0.122684 , 0.958403 , 0.257607 , 0.800517 , 0.194359 , 12.863262 , -11.699215 , 3.683507 , 0.332957 , -0.897732 , 0.288400 , 0.797759 , 0.133990 , 13.177044 , -11.319164 , 3.964833 , 0.499893 , -0.562914 , 0.658162 , 0.801445 , 0.138369 , 12.467518 , -11.529392 , 4.001378 , -0.194586 , -0.659047 , 0.726463 , 0.794794 , 0.136465 , 12.878437 , -11.503803 , 2.765184 , 0.317942 , -0.903928 , -0.285958 , 0.798554 , 0.124832 , 13.485699 , -11.192539 , 2.673787 , 0.014496 , -0.999573 , -0.024445 , 0.807157 , 0.124490 , 13.021114 , -10.729549 , 4.281106 , 0.295633 , -0.204016 , 0.933256 , 0.800429 , 0.145729 , 12.416393 , -11.853840 , 3.276078 , -0.073489 , -0.997223 , 0.009400 , 0.793031 , 0.130203 , 12.979877 , -9.865673 , 4.203835 , 0.274422 , 0.424024 , 0.863063 , 0.801679 , 0.154354 , 15.372700 , 1.093830 , -1.028682 , -0.073519 , 0.149693 , 0.985992 , 0.862412 , 0.486888 , 15.126797 , 0.877941 , -1.030378 , -0.177984 , 0.439192 , 0.880551 , 0.856756 , 0.480367 , 15.532291 , 0.730465 , -0.829207 , 0.012696 , 0.768670 , 0.639485 , 0.866285 , 0.478844 , 14.685246 , 0.635433 , -1.035342 , 0.036103 , 0.627400 , 0.777856 , 0.850110 , 0.477015 , 13.745296 , 0.878483 , -0.365397 , 0.636402 , 0.486068 , 0.598895 , 0.830612 , 0.472183 , 12.642750 , -6.795582 , -1.079628 , -0.094821 , 0.619434 , 0.779290 , 0.798714 , 0.252957 , 12.258900 , -6.900806 , -1.115546 , -0.012696 , 0.728172 , 0.685232 , 0.791276 , 0.253220 , 13.019985 , -4.626316 , -0.839457 , -0.041292 , -0.996216 , -0.076174 , 0.806083 , 0.296561 , 12.039303 , -4.459347 , -0.749552 , -0.152684 , -0.961791 , -0.227210 , 0.782920 , 0.299063 , 12.477535 , -4.578365 , -0.358317 , -0.078127 , -0.983215 , -0.164769 , 0.793074 , 0.306109 , 13.362057 , -4.600651 , 0.998311 , 0.302438 , -0.950987 , -0.063997 , 0.811435 , 0.329269 , 12.128902 , -4.913815 , 1.068929 , 0.136448 , -0.977050 , -0.163396 , 0.785534 , 0.324282 , 12.782482 , -4.657871 , 0.054586 , 0.072359 , -0.991546 , -0.107578 , 0.800239 , 0.313256 , 15.677052 , 1.161228 , -1.040503 , 0.012360 , 0.107181 , 0.994140 , 0.870332 , 0.486293 , 11.513226 , -6.951710 , 0.409002 , -0.136021 , 0.975555 , 0.172460 , 0.775099 , 0.227164 , 11.107426 , -6.902096 , 0.039987 , -0.121494 , 0.981811 , 0.145726 , 0.764253 , 0.231352 , 11.099850 , -7.008511 , 0.401082 , -0.194281 , 0.944670 , 0.264199 , 0.764359 , 0.224820 , 11.069698 , -1.893711 , 2.083173 , -0.826624 , 0.397778 , 0.398053 , 0.767229 , 0.396909 , 11.169621 , -2.140614 , 2.684736 , -0.938841 , -0.090854 , 0.332133 , 0.775067 , 0.392118 , 11.392300 , -1.405430 , 2.113691 , -0.815027 , 0.566027 , 0.123783 , 0.774751 , 0.398975 , 11.070408 , -2.777447 , 2.107652 , -0.110599 , 0.515091 , 0.849940 , 0.764371 , 0.381509 , 11.250355 , -3.038296 , 2.437116 , -0.501968 , 0.255013 , 0.826411 , 0.768538 , 0.376421 , 11.448826 , -2.663685 , 2.526895 , -0.744560 , -0.256905 , 0.616108 , 0.772322 , 0.384295 , 11.034733 , -2.532848 , 1.940484 , -0.103793 , 0.149113 , 0.983337 , 0.764759 , 0.386274 , 11.098370 , -2.259190 , 2.254522 , -0.911710 , -0.206946 , 0.354869 , 0.768053 , 0.390107 , 11.040257 , -3.716999 , 2.312059 , 0.114139 , -0.096774 , 0.988708 , 0.763284 , 0.365491 , 11.313190 , -3.758633 , 2.356015 , -0.216742 , -0.200476 , 0.955412 , 0.769835 , 0.364311 , 11.186230 , -3.404995 , 2.468320 , -0.331248 , -0.110477 , 0.937040 , 0.764732 , 0.369755 , 10.760952 , -3.672192 , 2.409421 , 0.247871 , 0.049287 , 0.967528 , 0.755653 , 0.366046 , 11.055470 , -1.729382 , 1.649158 , 0.031312 , 0.939238 , 0.341746 , 0.764453 , 0.404907 , 11.535236 , -1.335896 , 0.935376 , -0.224738 , 0.548967 , 0.805048 , 0.768289 , 0.415754 , 11.060436 , -1.672398 , 1.203138 , 0.544359 , 0.672445 , 0.501450 , 0.762801 , 0.411784 , 11.342144 , -1.713711 , 1.221360 , -0.349132 , 0.901517 , 0.255531 , 0.767673 , 0.409738 , 10.813511 , -0.498478 , 0.981118 , 0.093631 , 0.380016 , 0.920194 , 0.757382 , 0.430395 , 11.280552 , -0.272869 , 0.785512 , -0.157750 , 0.497330 , 0.853084 , 0.765004 , 0.434168 , 10.870098 , -0.068005 , 0.666967 , 0.148412 , 0.708762 , 0.689627 , 0.754788 , 0.442081 , 11.431805 , -0.570179 , 0.779426 , -0.085513 , -0.143620 , 0.985900 , 0.769979 , 0.427458 , 11.338345 , -0.117725 , 0.536550 , -0.370128 , 0.773339 , 0.514664 , 0.768056 , 0.443975 , 10.987156 , -1.113453 , 1.025018 , 0.457045 , 0.397778 , 0.795495 , 0.758153 , 0.419938 , 11.422314 , -0.878384 , 0.786176 , 0.249550 , 0.155034 , 0.955840 , 0.766638 , 0.422220 , 10.373623 , -12.724438 , 0.120912 , -0.267953 , -0.762474 , 0.588885 , 0.754666 , 0.077067 , 11.159176 , -13.342983 , -0.263682 , -0.326670 , -0.873806 , 0.360179 , 0.770703 , 0.060073 , 10.995502 , -12.884808 , 0.477372 , -0.577776 , -0.604755 , 0.548082 , 0.773727 , 0.078298 , 10.613949 , -13.381390 , -0.700156 , -0.284982 , -0.659505 , 0.695578 , 0.749065 , 0.062497 , 10.660244 , -13.868404 , -1.015124 , -0.067293 , -0.820185 , 0.568102 , 0.754517 , 0.048792 , 10.726742 , -11.301525 , 3.055097 , -0.351848 , -0.635517 , 0.687216 , 0.766691 , 0.131434 , 11.468761 , -11.312771 , 2.969709 , -0.195837 , -0.897855 , 0.394269 , 0.780596 , 0.127831 , 10.753674 , -12.127697 , 0.958368 , -0.050447 , -0.836024 , 0.546342 , 0.766548 , 0.097362 , 10.437000 , -10.370190 , 3.212030 , -0.754570 , 0.204321 , 0.623554 , 0.764146 , 0.142712 , 10.915653 , -4.325314 , 2.597722 , 0.241188 , 0.197211 , 0.950194 , 0.758048 , 0.356543 , 10.731144 , -5.002033 , 2.584199 , 0.146458 , -0.739219 , 0.657308 , 0.756052 , 0.346706 , 11.336063 , -4.706760 , 2.534616 , 0.175237 , -0.423536 , 0.888730 , 0.768783 , 0.349660 , 11.368252 , -13.407848 , 0.507825 , -0.594104 , -0.732871 , 0.331462 , 0.788757 , 0.070357 , 10.846050 , -11.826374 , 2.302591 , 0.035615 , -0.899075 , 0.436262 , 0.769411 , 0.117583 , 11.138142 , 0.548771 , -0.512614 , 0.507553 , 0.509201 , 0.695029 , 0.764392 , 0.468479 , 10.938465 , -2.989628 , 2.308831 , 0.175420 , 0.357707 , 0.917203 , 0.758141 , 0.376277 , 11.151493 , -4.996838 , 1.939245 , 0.111545 , -0.982421 , 0.149510 , 0.766130 , 0.338825 , 11.328510 , -4.234333 , 2.359468 , 0.017060 , 0.253395 , 0.967193 , 0.768125 , 0.358146 , 11.013744 , 0.803814 , -0.632018 , -0.143162 , 0.314310 , 0.938444 , 0.758597 , 0.476871 , 10.875042 , -5.026844 , 1.478162 , -0.033570 , -0.990661 , -0.131962 , 0.760631 , 0.332317 , 11.857182 , -4.980938 , 1.362508 , 0.064028 , -0.995788 , -0.065554 , 0.781547 , 0.330879 , 11.022968 , -7.846027 , 2.316430 , 0.143132 , 0.678793 , 0.720206 , 0.772209 , 0.188719 , 10.954014 , -7.989063 , 2.539914 , -0.013123 , 0.815485 , 0.578600 , 0.765271 , 0.182077 , 11.099781 , -7.379093 , 2.128511 , 0.454512 , 0.504135 , 0.734336 , 0.771103 , 0.196628 , 10.872738 , -9.802097 , 3.030767 , -0.584277 , 0.156285 , 0.796350 , 0.760457 , 0.155031 , 10.891590 , -8.277058 , 2.951207 , -0.124332 , 0.629688 , 0.766808 , 0.765199 , 0.176520 , 10.777561 , -8.832096 , 3.188684 , -0.330424 , 0.183569 , 0.925779 , 0.766681 , 0.169114 , 10.441509 , -5.039249 , 1.863076 , -0.003510 , -0.998962 , -0.045076 , 0.752264 , 0.337636 , 10.815182 , -4.933041 , 1.126546 , -0.085543 , -0.960479 , -0.264870 , 0.757434 , 0.326087 , 10.808399 , 0.343151 , 0.148656 , 0.501541 , 0.652242 , 0.568316 , 0.754012 , 0.455730 , 10.879131 , 1.027729 , -0.740962 , 0.144230 , 0.504746 , 0.851100 , 0.753590 , 0.483486 , 10.917660 , 1.592800 , -0.951567 , -0.149419 , 0.267281 , 0.951933 , 0.755441 , 0.494618 , 10.856419 , -6.924076 , -0.240432 , -0.143742 , 0.989532 , 0.012238 , 0.754978 , 0.237446 , 10.973873 , -4.746395 , 0.481282 , -0.140721 , -0.934416 , -0.327158 , 0.757756 , 0.318025 , 11.566402 , -4.944424 , 0.943441 , -0.003845 , -0.980682 , -0.195502 , 0.775496 , 0.323470 , 11.629208 , -3.513020 , 2.679303 , -0.083010 , -0.314585 , 0.945555 , 0.775471 , 0.366356 , 11.469006 , -3.290249 , 2.651807 , -0.374187 , 0.023652 , 0.927030 , 0.773027 , 0.370290 , 11.539639 , -3.990910 , 2.375367 , -0.345500 , 0.022919 , 0.938108 , 0.773044 , 0.360278 , 11.662571 , -0.996822 , 2.187425 , -0.766533 , 0.628468 , 0.132023 , 0.780306 , 0.402121 , 11.619778 , -1.165516 , 1.727567 , -0.797998 , 0.577746 , -0.171331 , 0.774765 , 0.404734 , 11.667805 , -1.394489 , 1.184652 , -0.761956 , 0.645161 , 0.056185 , 0.772972 , 0.410097 , 11.314381 , -1.528004 , 1.603143 , -0.622425 , 0.669027 , -0.406140 , 0.769988 , 0.406324 , 11.414082 , -1.585796 , 2.657525 , -0.758568 , 0.566454 , 0.321970 , 0.780998 , 0.395912 , -4.943241 , 8.919254 , -2.099040 , 0.113804 , 0.659932 , 0.742637 , 0.370027 , 0.697333 , -4.368412 , 8.686344 , -2.039592 , 0.201117 , 0.723167 , 0.660695 , 0.385591 , 0.690450 , -6.573215 , 8.491959 , -1.938212 , -0.209082 , 0.662435 , 0.719321 , 0.330093 , 0.682093 , -6.525799 , 8.912357 , -2.388957 , -0.269662 , 0.813227 , 0.515641 , 0.329695 , 0.698326 , -6.794567 , 8.665438 , -2.176203 , -0.232551 , 0.726127 , 0.646992 , 0.323847 , 0.689094 , -18.929693 , 13.810307 , -3.130488 , 0.254463 , -0.008789 , 0.967009 , 0.041186 , 0.840673 , -19.372610 , 14.032749 , -2.966105 , 0.682943 , -0.026429 , 0.729972 , 0.034136 , 0.849643 , -19.454268 , 13.598286 , -2.903880 , 0.751518 , -0.151982 , 0.641926 , 0.029574 , 0.836962 , -0.057339 , 8.565710 , -1.033583 , -0.118046 , 0.540300 , 0.833125 , 0.488953 , 0.681414 , 0.006176 , 8.877546 , -1.349673 , -0.127110 , 0.838588 , 0.529710 , 0.487332 , 0.693436 , -18.389868 , 17.978020 , -0.587603 , 0.213660 , 0.150426 , 0.965239 , 0.045013 , 0.964424 , -18.879095 , 18.212803 , -0.721598 , -0.060915 , 0.519944 , 0.851985 , 0.031572 , 0.972693 , -18.918203 , 17.850636 , -0.479312 , 0.030824 , 0.326884 , 0.944548 , 0.032890 , 0.965318 , -1.823208 , 8.378391 , -1.306681 , -0.165593 , 0.758415 , 0.630329 , 0.449493 , 0.676669 , 1.999279 , 8.679142 , -0.428202 , -0.023591 , -0.364025 , 0.931059 , 0.539961 , 0.688871 , 2.203289 , 8.928776 , -0.353678 , 0.257912 , -0.337931 , 0.905118 , 0.541700 , 0.696902 , 1.717930 , 8.876390 , -0.423331 , -0.318033 , -0.400891 , 0.859127 , 0.535659 , 0.695544 , -1.237309 , 11.780338 , -3.084391 , -0.310770 , 0.076327 , 0.947386 , 0.457362 , 0.791658 , -0.574436 , 12.216352 , -2.932270 , -0.267922 , 0.087374 , 0.959441 , 0.471431 , 0.802722 , -1.139896 , 12.842960 , -3.149821 , -0.268044 , 0.061861 , 0.961394 , 0.459774 , 0.816864 , -0.770267 , 11.382023 , -2.924601 , -0.250557 , 0.004822 , 0.968078 , 0.467347 , 0.783314 , 0.670742 , 8.210751 , -0.820769 , -0.105716 , 0.131993 , 0.985565 , 0.508620 , 0.676304 , 0.616337 , 8.570988 , -0.963710 , -0.161199 , 0.481674 , 0.861354 , 0.504323 , 0.683404 , -0.713413 , 7.994225 , -0.918216 , -0.060518 , 0.087252 , 0.994324 , 0.477805 , 0.667396 , -17.547346 , 17.133003 , -1.820903 , 0.298105 , -0.445387 , 0.844203 , 0.072212 , 0.933174 , -17.128431 , 17.253956 , -1.908484 , 0.245155 , -0.225410 , 0.942900 , 0.079893 , 0.937851 , -17.451788 , 17.489309 , -1.621638 , 0.439711 , -0.639576 , 0.630512 , 0.071080 , 0.945130 , -19.393744 , 12.547298 , -3.308024 , 0.500107 , -0.148167 , 0.853175 , 0.032969 , 0.809104 , -19.095175 , 12.577314 , -3.334845 , 0.071596 , -0.059816 , 0.995605 , 0.043054 , 0.811701 , 1.164074 , 8.252424 , -0.756835 , -0.190619 , -0.001434 , 0.981658 , 0.519063 , 0.676732 , -13.877806 , 9.083128 , -4.040662 , -0.260842 , 0.790338 , 0.554338 , 0.149959 , 0.722042 , -14.198141 , 9.182180 , -4.289895 , -0.286203 , 0.622211 , 0.728629 , 0.141471 , 0.724979 , -13.869360 , 8.942631 , -3.741343 , -0.124760 , 0.931120 , 0.342601 , 0.153224 , 0.714509 , 0.673489 , 8.860905 , -1.202342 , -0.243202 , 0.756188 , 0.607440 , 0.504390 , 0.693634 , 3.365376 , 9.228777 , -0.752623 , 0.036195 , 0.069338 , 0.996918 , 0.575166 , 0.706303 , 2.988827 , 9.206663 , -0.736270 , 0.144322 , 0.294900 , 0.944548 , 0.563092 , 0.701875 , 3.020321 , 8.868481 , -0.686007 , 0.219398 , -0.051088 , 0.974273 , 0.565832 , 0.692606 , 2.205334 , 9.250795 , -0.261653 , 0.387127 , 0.157781 , 0.908414 , 0.541950 , 0.702809 , -18.020933 , 17.794603 , -0.715560 , 0.291360 , -0.400830 , 0.868557 , 0.052800 , 0.961562 , -17.994787 , 18.076883 , -0.721400 , 0.325755 , 0.240974 , 0.914212 , 0.051940 , 0.968561 , -2.690250 , 8.428288 , -1.648600 , -0.090457 , 0.889340 , 0.448164 , 0.429489 , 0.685011 , -0.475895 , 8.350437 , -1.000346 , -0.116977 , 0.393994 , 0.911618 , 0.481905 , 0.675553 , -19.010885 , 17.464045 , -0.509909 , 0.185217 , -0.436201 , 0.880551 , 0.033975 , 0.949709 , -18.662207 , 17.663445 , -0.524771 , 0.340678 , -0.276589 , 0.898556 , 0.039161 , 0.956113 , -19.137434 , 17.665266 , -0.433310 , -0.039949 , 0.024659 , 0.998871 , 0.030356 , 0.957479 , 1.867764 , 9.701084 , -0.733378 , -0.084323 , 0.915647 , 0.392987 , 0.534236 , 0.711595 , -16.350584 , 17.506823 , -1.938937 , -0.170202 , -0.411389 , 0.895413 , 0.093792 , 0.945286 , -16.615423 , 17.774530 , -1.645797 , 0.009339 , -0.870510 , 0.492019 , 0.088530 , 0.952424 , -16.745558 , 17.454262 , -1.963954 , 0.069765 , -0.336344 , 0.939116 , 0.087638 , 0.941985 , 1.981884 , 10.214087 , -2.465556 , 0.031129 , 0.555803 , 0.830714 , 0.530299 , 0.754224 , 2.288799 , 10.184341 , -2.486819 , -0.160009 , 0.656423 , 0.737175 , 0.535739 , 0.755232 , 2.185390 , 10.409042 , -2.565841 , 0.018769 , 0.048280 , 0.998627 , 0.533806 , 0.760482 , 2.555233 , 7.943485 , -0.883342 , 0.110996 , -0.340678 , 0.933592 , 0.554732 , 0.670163 , 2.047909 , 7.913029 , -0.853434 , 0.053163 , -0.404218 , 0.913114 , 0.542002 , 0.670640 , 1.848812 , 7.562138 , -0.974356 , 0.006165 , -0.217994 , 0.975921 , 0.538423 , 0.657931 , -17.054861 , 17.596020 , -1.808711 , 0.300485 , -0.649739 , 0.698202 , 0.081039 , 0.946471 , -18.030584 , 18.352581 , -0.838858 , 0.168218 , 0.313181 , 0.934660 , 0.056860 , 0.978227 , -15.255468 , 16.819065 , -1.733287 , -0.042543 , -0.363109 , 0.930754 , 0.123619 , 0.935289 , -14.629385 , 16.768375 , -1.813700 , 0.070437 , -0.593738 , 0.801538 , 0.138128 , 0.933291 , -14.829519 , 16.997980 , -1.653964 , -0.046937 , -0.569964 , 0.820307 , 0.134345 , 0.939972 , 2.702587 , 9.036219 , -0.604357 , 0.404401 , 0.068331 , 0.912015 , 0.554396 , 0.696566 , 2.507687 , 8.501469 , -0.617533 , 0.234901 , -0.338664 , 0.911100 , 0.554347 , 0.685010 , -19.427076 , 17.761530 , -0.521384 , -0.244026 , 0.313456 , 0.917692 , 0.020043 , 0.961265 , -19.483969 , 17.356060 , -0.531119 , -0.059267 , -0.335215 , 0.940245 , 0.021858 , 0.945767 , -19.261175 , 14.863834 , -2.976237 , 0.680044 , -0.344920 , 0.646931 , 0.037784 , 0.865132 , -19.458868 , 14.563511 , -2.763160 , 0.858730 , -0.038850 , 0.510941 , 0.032063 , 0.860738 , -19.188086 , 14.648798 , -3.165961 , 0.589068 , -0.051454 , 0.806421 , 0.038874 , 0.859812 , -18.817389 , 16.264698 , -1.606852 , 0.597369 , -0.375805 , 0.708426 , 0.038734 , 0.913933 , -18.549566 , 16.727365 , -1.603228 , 0.472488 , -0.522599 , 0.709647 , 0.046608 , 0.927579 , -18.959867 , 16.722555 , -1.343295 , 0.474288 , -0.504562 , 0.721397 , 0.035008 , 0.924927 , -19.280226 , 15.846571 , -1.531958 , 0.420606 , -0.685354 , 0.594440 , 0.024536 , 0.905097 , -18.880667 , 15.887213 , -1.820124 , 0.504074 , -0.650655 , 0.567888 , 0.034852 , 0.903793 , -19.031698 , 16.165070 , -1.455127 , 0.543809 , -0.407117 , 0.733818 , 0.030341 , 0.913040 , -19.002386 , 17.119862 , -0.751826 , 0.260750 , -0.697775 , 0.667165 , 0.034203 , 0.941399 , -18.315084 , 17.115265 , -1.347680 , 0.459212 , -0.678121 , 0.573779 , 0.049125 , 0.938589 , -18.221746 , 17.523930 , -0.878917 , 0.406415 , -0.639149 , 0.652882 , 0.049099 , 0.953408 , -19.339453 , 16.694181 , -1.134574 , 0.411939 , -0.457564 , 0.787957 , 0.025264 , 0.927602 , -19.204115 , 16.978529 , -0.870196 , 0.235817 , -0.711936 , 0.661428 , 0.029099 , 0.935064 , 3.165646 , 8.443668 , -0.807048 , 0.205664 , -0.236335 , 0.949644 , 0.570113 , 0.683620 , 2.586422 , 7.758213 , -0.943194 , 0.031251 , -0.217139 , 0.975616 , 0.559472 , 0.664239 , 3.646603 , 9.019215 , -0.805186 , 0.203925 , -0.129734 , 0.970336 , 0.582690 , 0.700501 , 3.866947 , 10.976902 , -0.515067 , 0.140385 , 0.051485 , 0.988739 , 0.587810 , 0.761493 , 4.053181 , 10.595001 , -0.611216 , 0.415113 , -0.129368 , 0.900510 , 0.591807 , 0.749014 , 4.296139 , 11.086369 , -0.686015 , 0.403363 , -0.073641 , 0.912046 , 0.597373 , 0.761008 , -4.011646 , 8.224552 , -1.362956 , -0.045076 , 0.890744 , 0.452254 , 0.397978 , 0.671108 , 2.985432 , 9.548357 , -0.884879 , -0.206549 , 0.423322 , 0.882077 , 0.563862 , 0.715003 , 4.937618 , 11.819263 , -0.913981 , 0.321879 , -0.048708 , 0.945494 , 0.615453 , 0.777853 , 4.425900 , 11.917027 , -0.683085 , 0.316782 , -0.020997 , 0.948241 , 0.603023 , 0.785688 , 3.543308 , 8.100193 , -0.964179 , 0.134678 , -0.158422 , 0.978118 , 0.579251 , 0.674968 , -18.623541 , 17.057072 , -1.143718 , 0.453902 , -0.680044 , 0.575732 , 0.041472 , 0.936009 , -19.300848 , 16.355518 , -1.208598 , 0.459181 , -0.272561 , 0.845485 , 0.025032 , 0.918848 , 2.465481 , 9.439850 , -0.526332 , 0.515122 , 0.548540 , 0.658528 , 0.545475 , 0.709468 , -19.110929 , 13.444588 , -3.210646 , 0.115024 , -0.215491 , 0.969695 , 0.037640 , 0.831017 , -17.813643 , 17.108036 , -1.700389 , 0.415418 , -0.565661 , 0.712333 , 0.063760 , 0.936089 , -16.842382 , 17.898529 , -1.234309 , 0.048189 , -0.872616 , 0.485946 , 0.080320 , 0.966489 , -16.230200 , 17.802097 , -1.472239 , -0.089846 , -0.902860 , 0.420362 , 0.096583 , 0.955869 , -16.083990 , 17.998116 , -0.868628 , -0.091586 , -0.642720 , 0.760582 , 0.099605 , 0.969404 , 4.258785 , 9.965763 , -0.841166 , 0.350322 , -0.160222 , 0.922819 , 0.593526 , 0.735069 , 3.774075 , 9.488316 , -0.763354 , 0.163640 , -0.125401 , 0.978484 , 0.584886 , 0.718513 , 4.438229 , 9.557343 , -0.962779 , 0.226478 , -0.089694 , 0.969848 , 0.597331 , 0.722316 , 5.048084 , 13.526142 , -0.990134 , 0.162389 , 0.032197 , 0.986175 , 0.624122 , 0.833085 , 4.651485 , 13.522160 , -0.870341 , 0.347636 , 0.067537 , 0.935179 , 0.609981 , 0.831778 , 4.982975 , 12.926441 , -0.945323 , 0.260048 , 0.048067 , 0.964385 , 0.621931 , 0.815670 , -19.673971 , 17.512642 , -0.544322 , -0.300363 , -0.006226 , 0.953795 , 0.016040 , 0.952479 , -19.507864 , 16.945044 , -0.811911 , 0.213904 , -0.582049 , 0.784478 , 0.020241 , 0.935076 , -19.197088 , 12.835535 , -3.339133 , 0.087741 , -0.229957 , 0.969207 , 0.036209 , 0.816483 , 4.142010 , 12.682680 , -0.622489 , -0.005890 , 0.000641 , 0.999969 , 0.595975 , 0.812416 , 3.811970 , 12.842382 , -0.708918 , -0.477462 , -0.015229 , 0.878506 , 0.587935 , 0.818468 , 3.901806 , 12.392557 , -0.658599 , -0.307749 , 0.007202 , 0.951415 , 0.590421 , 0.804913 , 4.917965 , 12.478142 , -0.893351 , 0.334117 , 0.031068 , 0.942015 , 0.615795 , 0.799313 , 0.229015 , 15.252407 , -3.035655 , -0.203589 , -0.292611 , 0.934294 , 0.487891 , 0.878713 , 0.728024 , 15.229252 , -2.882975 , -0.312662 , -0.181951 , 0.932249 , 0.497440 , 0.877279 , 0.653957 , 15.512745 , -2.814845 , -0.237953 , -0.427961 , 0.871883 , 0.496415 , 0.886089 , 2.425327 , 10.412199 , -2.526103 , -0.496261 , 0.080020 , 0.864437 , 0.539162 , 0.761373 , 4.978718 , 14.654919 , -0.999531 , 0.061281 , 0.025788 , 0.997772 , 0.621742 , 0.864218 , 4.622921 , 15.468998 , -0.969706 , 0.222205 , 0.011963 , 0.974914 , 0.617197 , 0.890485 , 4.670498 , 14.545200 , -0.961711 , 0.253182 , 0.050508 , 0.966094 , 0.617130 , 0.860632 , -15.784575 , 17.947788 , -0.924952 , -0.034242 , -0.798303 , 0.601215 , 0.107718 , 0.967847 , -15.805319 , 18.189613 , -0.776252 , -0.081545 , -0.061983 , 0.994720 , 0.107027 , 0.975964 , 4.385983 , 12.546013 , -0.666857 , 0.263039 , 0.020203 , 0.964538 , 0.600123 , 0.803896 , 4.120159 , 12.109081 , -0.622070 , -0.022858 , 0.043367 , 0.998779 , 0.593549 , 0.793024 , 4.441586 , 15.333759 , -0.903392 , 0.392499 , 0.025452 , 0.919370 , 0.611641 , 0.885345 , 4.376949 , 14.735355 , -0.856974 , 0.424818 , 0.049043 , 0.903928 , 0.610388 , 0.867115 , 4.168697 , 14.216801 , -0.705851 , 0.368053 , 0.039827 , 0.928922 , 0.601003 , 0.856420 , 4.186703 , 13.710728 , -0.684260 , 0.326121 , 0.053255 , 0.943815 , 0.600272 , 0.839665 , 0.427486 , 14.970036 , -3.016276 , -0.305155 , -0.034181 , 0.951659 , 0.491746 , 0.871892 , 0.706783 , 14.124577 , -2.851237 , -0.242988 , 0.110874 , 0.963652 , 0.498447 , 0.851028 , 1.049068 , 14.678654 , -2.795756 , -0.270699 , 0.020631 , 0.962432 , 0.504726 , 0.861631 , -19.171476 , 15.202639 , -2.834185 , 0.450270 , -0.612018 , 0.650105 , 0.038515 , 0.872888 , -19.327047 , 15.395769 , -2.514872 , 0.506577 , -0.729209 , 0.459975 , 0.034536 , 0.881565 , -19.576117 , 14.987431 , -2.481242 , 0.828181 , -0.257576 , 0.497696 , 0.028242 , 0.873509 , 4.291897 , 15.890978 , -0.849359 , 0.436689 , 0.019745 , 0.899380 , 0.609456 , 0.903788 , -16.819403 , 8.435551 , -2.319987 , -0.074190 , 0.972350 , 0.221381 , 0.091470 , 0.681455 , 3.811214 , 17.792301 , -0.843333 , 0.287423 , 0.208960 , 0.934721 , 0.587018 , 0.954295 , 3.798367 , 18.389349 , -0.973531 , 0.144475 , 0.116428 , 0.982604 , 0.581311 , 0.976037 , 3.278507 , 18.369411 , -0.868556 , 0.167760 , 0.262947 , 0.950102 , 0.569744 , 0.971100 , 3.894253 , 14.572269 , -0.582240 , 0.296030 , -0.010681 , 0.955107 , 0.596584 , 0.867773 , 3.609898 , 17.111912 , -0.649908 , 0.168065 , 0.036470 , 0.985076 , 0.582444 , 0.937443 , 3.551136 , 16.559561 , -0.602473 , -0.044710 , 0.058901 , 0.997253 , 0.585567 , 0.918652 , 3.842793 , 16.582935 , -0.685085 , 0.330302 , 0.068911 , 0.941343 , 0.592657 , 0.920391 , 2.313793 , 18.324352 , -0.671918 , 0.031465 , 0.215094 , 0.976074 , 0.546966 , 0.967254 , 1.928280 , 18.134203 , -0.634238 , -0.102603 , -0.024354 , 0.994415 , 0.536039 , 0.964759 , 2.132030 , 17.847731 , -0.707518 , -0.237220 , -0.422101 , 0.874935 , 0.545443 , 0.954832 , 3.073528 , 16.607800 , -0.889643 , -0.798547 , -0.054750 , 0.599384 , 0.575968 , 0.916600 , 3.308086 , 16.747076 , -0.653540 , -0.384838 , -0.126408 , 0.914274 , 0.580405 , 0.924249 , 3.116802 , 16.924097 , -0.739081 , -0.553850 , -0.232337 , 0.799524 , 0.575651 , 0.931027 , -17.181967 , 16.885778 , -1.948363 , 0.022919 , -0.281350 , 0.959319 , 0.080107 , 0.927470 , -16.685961 , 16.906694 , -1.942508 , -0.064089 , -0.105258 , 0.992370 , 0.087296 , 0.931383 , 3.616039 , 15.636517 , -0.526648 , 0.209296 , 0.030702 , 0.977355 , 0.589725 , 0.894607 , 3.248608 , 15.917683 , -0.509936 , -0.308298 , 0.294504 , 0.904538 , 0.581864 , 0.902661 , 3.241619 , 15.609224 , -0.500006 , -0.305094 , -0.152837 , 0.939970 , 0.583933 , 0.894907 , -1.113834 , 18.169773 , -0.692681 , 0.102664 , -0.278146 , 0.955016 , 0.463422 , 0.972111 , -1.269497 , 17.898869 , -0.830607 , 0.125980 , -0.593738 , 0.794702 , 0.457886 , 0.965953 , -0.837528 , 17.779310 , -1.006045 , 0.144688 , -0.661733 , 0.735618 , 0.467407 , 0.961882 , -4.583439 , 0.845310 , 0.004476 , -0.149358 , 0.916959 , 0.369915 , 0.375101 , 0.478618 , -4.702061 , 0.675610 , 0.663587 , -0.620319 , 0.683859 , 0.384075 , 0.371855 , 0.469963 , -3.844158 , 1.002552 , 0.705922 , -0.120029 , 0.984161 , 0.130406 , 0.387218 , 0.472935 , -5.590794 , -0.545872 , -0.303271 , -0.427869 , 0.454512 , 0.781213 , 0.348132 , 0.460700 , -6.608845 , -0.700977 , 0.087976 , 0.110508 , 0.989624 , 0.091556 , 0.333885 , 0.454883 , -5.865116 , -0.787251 , 0.400907 , 0.027955 , 0.976440 , -0.213843 , 0.343716 , 0.453292 , -14.547804 , -11.732571 , 2.165914 , -0.534440 , 0.414441 , 0.736564 , 0.142584 , 0.110355 , -15.026648 , -11.479885 , 1.952054 , -0.001160 , 0.345714 , 0.938322 , 0.127676 , 0.112462 , -14.914907 , -12.221050 , 2.159196 , -0.517136 , 0.360149 , 0.776391 , 0.131610 , 0.100641 , -17.148359 , -13.760433 , 3.021539 , 0.244301 , -0.645466 , 0.723624 , 0.068035 , 0.065884 , -17.411665 , -13.415722 , 3.364934 , 0.185766 , -0.364818 , 0.912351 , 0.060356 , 0.067130 , -17.929884 , -14.000301 , 2.712362 , -0.095004 , -0.719993 , 0.687429 , 0.052006 , 0.055776 , -19.113760 , -13.996243 , 3.074945 , 0.380444 , -0.874508 , 0.300760 , 0.028663 , 0.046306 , -18.674696 , -13.799122 , 2.677495 , 0.224616 , -0.784143 , 0.578448 , 0.037295 , 0.050514 , -18.678434 , -13.632954 , 3.435357 , 0.457717 , -0.751488 , 0.475082 , 0.032007 , 0.055445 , -16.896582 , -12.793957 , 2.524030 , 0.606891 , 0.426283 , 0.670736 , 0.074782 , 0.085194 , -16.712820 , -13.416676 , 2.962583 , 0.565813 , 0.000275 , 0.824519 , 0.076573 , 0.073512 , -16.466734 , -12.733318 , 2.377725 , 0.148656 , 0.470534 , 0.869747 , 0.090131 , 0.086961 , -17.167128 , -12.947468 , 3.171174 , 0.653523 , 0.272744 , 0.706015 , 0.065671 , 0.077182 , -19.082960 , -14.224934 , 2.582742 , 0.281564 , -0.780358 , 0.558306 , 0.030870 , 0.042440 , -19.505804 , -14.161633 , 2.758165 , -0.082430 , -0.922269 , 0.377636 , 0.021736 , 0.037054 , -18.927557 , -13.435360 , 3.797643 , 0.217444 , -0.443281 , 0.869594 , 0.024487 , 0.059031 , -19.352987 , -13.950275 , 3.488130 , 0.116672 , -0.808344 , 0.577013 , 0.022043 , 0.046491 , -15.758619 , -2.187206 , -0.528254 , 0.161840 , -0.353954 , 0.921140 , 0.122058 , 0.359213 , -16.042089 , -2.971859 , -0.468486 , 0.534165 , -0.088687 , 0.840693 , 0.113309 , 0.346564 , -15.456999 , -2.829472 , -0.610144 , -0.170690 , -0.315378 , 0.933470 , 0.128322 , 0.345707 , -14.125586 , -11.961460 , 2.757127 , -0.190802 , 0.030641 , 0.981140 , 0.153423 , 0.107431 , -14.437590 , -12.094509 , 2.524530 , -0.516953 , 0.166265 , 0.839686 , 0.144823 , 0.102242 , -13.990980 , -12.349918 , 2.578412 , 0.059603 , -0.380871 , 0.922666 , 0.154607 , 0.098969 , -15.332037 , -12.818188 , 2.308286 , -0.057649 , 0.379803 , 0.923246 , 0.118080 , 0.092519 , -15.835203 , -12.626949 , 2.342931 , 0.096133 , 0.452498 , 0.886532 , 0.104441 , 0.094740 , -15.883177 , -13.264103 , 2.530954 , 0.137700 , 0.108524 , 0.984497 , 0.105545 , 0.084247 , -16.923643 , -11.344379 , 2.357797 , 0.654988 , -0.011994 , 0.755516 , 0.075888 , 0.111304 , -16.886305 , -11.863560 , 2.491189 , 0.823603 , 0.095065 , 0.559099 , 0.073282 , 0.101288 , -16.647161 , -11.768719 , 1.923448 , 0.830317 , -0.365368 , 0.420728 , 0.085568 , 0.105854 , -14.637167 , -11.116604 , 1.557309 , -0.009095 , 0.839686 , 0.542955 , 0.135016 , 0.124938 , -14.538351 , -11.441479 , 1.918016 , -0.498611 , 0.574725 , 0.648885 , 0.137472 , 0.116477 , -14.298956 , -11.126789 , 2.108724 , -0.663930 , 0.551836 , 0.504593 , 0.146001 , 0.117323 , -13.817678 , -13.457951 , 2.248288 , 0.099338 , -0.040742 , 0.994201 , 0.152681 , 0.081101 , -13.874563 , -12.725262 , 2.401269 , 0.167394 , -0.242347 , 0.955626 , 0.153368 , 0.089604 , -14.577230 , -13.395672 , 2.327253 , 0.048769 , -0.141392 , 0.988739 , 0.138308 , 0.083201 , -15.793524 , -12.112736 , 1.884370 , -0.124851 , 0.476455 , 0.870266 , 0.103017 , 0.103747 , -16.232061 , -12.214466 , 2.067342 , -0.044313 , 0.763390 , 0.644368 , 0.093819 , 0.098628 , -16.924894 , -14.100803 , 2.582895 , 0.209937 , -0.747276 , 0.630451 , 0.072581 , 0.062016 , -14.675444 , -12.372509 , 2.463598 , -0.384716 , 0.129429 , 0.913877 , 0.142140 , 0.094148 , -18.869146 , -11.480740 , 3.380891 , 0.668142 , 0.701132 , 0.248909 , 0.029783 , 0.107011 , -19.167532 , -11.076145 , 3.279767 , 0.723197 , 0.647542 , 0.240059 , 0.024548 , 0.113512 , -19.086531 , -11.305820 , 3.859510 , 0.514420 , 0.555254 , 0.653462 , 0.023040 , 0.106856 , -14.919287 , -12.756702 , 2.443326 , -0.162786 , 0.124210 , 0.978790 , 0.130160 , 0.090570 , -15.254011 , -12.191601 , 1.924684 , -0.222449 , 0.306436 , 0.925504 , 0.116059 , 0.102612 , -16.792822 , -12.218517 , 2.136548 , 0.809870 , 0.342082 , 0.476455 , 0.082436 , 0.095902 , -15.409117 , -11.593998 , 1.965371 , -0.141697 , 0.074709 , 0.987060 , 0.111545 , 0.111877 , -17.578390 , -13.000683 , 3.472474 , 0.338908 , -0.014557 , 0.940672 , 0.053762 , 0.074988 , -16.976400 , -12.235806 , 2.610013 , 0.852168 , 0.046968 , 0.521104 , 0.070998 , 0.092581 , -17.287725 , -11.973278 , 2.918939 , 0.554277 , 0.281716 , 0.783197 , 0.061604 , 0.095458 , -16.398130 , -11.504444 , 1.880735 , 0.659658 , -0.464217 , 0.591021 , 0.089504 , 0.109817 , -16.450674 , -11.173168 , 2.094941 , 0.567064 , -0.270699 , 0.777886 , 0.086917 , 0.113044 , -17.212843 , -12.449078 , 2.982114 , 0.707450 , 0.228065 , 0.668905 , 0.062875 , 0.085220 , -16.226942 , -13.537487 , 2.610826 , 0.371502 , -0.033082 , 0.927824 , 0.093316 , 0.076776 , -14.032125 , -10.776943 , 1.804986 , -0.422742 , 0.891812 , 0.160894 , 0.151191 , 0.126422 , -16.116240 , -11.321667 , 1.665933 , 0.173956 , -0.296457 , 0.939055 , 0.096020 , 0.110679 , 7.015675 , -2.379101 , 2.966695 , -0.799921 , -0.590960 , 0.104129 , 0.699700 , 0.376318 , 7.203472 , -2.536869 , 1.987226 , -0.946623 , -0.222205 , 0.233436 , 0.692347 , 0.369231 , 7.437366 , -2.994823 , 2.655141 , -0.873318 , -0.100803 , 0.476577 , 0.703984 , 0.365890 , 7.611729 , -4.232571 , 0.705140 , -0.548204 , -0.743889 , -0.382153 , 0.692947 , 0.332065 , 7.934589 , -4.583714 , 1.168092 , -0.394879 , -0.846492 , -0.357067 , 0.707294 , 0.334151 , 7.276485 , -4.085888 , 1.258729 , -0.847224 , -0.442488 , -0.293893 , 0.693856 , 0.340252 , 6.393269 , -2.464878 , 0.217496 , -0.769982 , -0.334513 , 0.543321 , 0.651594 , 0.357730 , 6.038227 , -1.897442 , 0.296918 , -0.587085 , -0.606891 , 0.535691 , 0.636218 , 0.370042 , 5.952007 , -2.240292 , -0.150203 , -0.565996 , -0.422956 , 0.707602 , 0.635157 , 0.357159 , 6.560871 , -3.519222 , 0.259706 , -0.609577 , -0.365734 , 0.703269 , 0.657211 , 0.338619 , 7.014065 , -3.243153 , 0.491731 , -0.749718 , -0.339824 , 0.567797 , 0.672623 , 0.349396 , -15.163122 , -13.140896 , 2.423043 , 0.040254 , -0.000671 , 0.999176 , 0.120681 , 0.082604 , 9.450863 , -5.007183 , 2.202138 , 0.032197 , -0.991028 , 0.129612 , 0.736298 , 0.344243 , 8.771152 , -5.008015 , 2.017667 , -0.053987 , -0.994171 , -0.093081 , 0.726151 , 0.343285 , 8.644955 , -4.926861 , 1.582967 , -0.140202 , -0.965850 , -0.217811 , 0.722018 , 0.338472 , -14.286474 , -10.950573 , 1.327646 , -0.256935 , 0.965087 , -0.050783 , 0.145640 , 0.133763 , -16.149870 , -1.921574 , -0.206984 , 0.584552 , -0.584185 , 0.563036 , 0.111821 , 0.370937 , -15.642866 , -1.666012 , -0.114825 , 0.194586 , -0.661580 , 0.724143 , 0.130212 , 0.375500 , 5.193348 , -1.524158 , 0.021837 , -0.321238 , -0.776910 , 0.541459 , 0.620655 , 0.379009 , 4.904644 , -1.641735 , -0.272593 , -0.411481 , -0.704581 , 0.578112 , 0.604800 , 0.370860 , 5.356853 , -1.999302 , -0.273051 , -0.437880 , -0.543107 , 0.716392 , 0.621258 , 0.362803 , 6.365177 , -1.481205 , 1.352025 , -0.628193 , -0.102664 , 0.771233 , 0.668620 , 0.392939 , 5.991871 , -1.270580 , 1.259286 , -0.503952 , -0.382946 , 0.774163 , 0.654277 , 0.396316 , 6.488125 , -2.009647 , 1.310922 , -0.786340 , -0.462111 , 0.409986 , 0.667383 , 0.382818 , 6.913212 , -2.924099 , 1.191491 , -0.907865 , -0.373150 , 0.191076 , 0.683228 , 0.361394 , 6.824062 , -2.316471 , 1.423227 , -0.783074 , -0.437330 , 0.442152 , 0.680231 , 0.374740 , 6.514301 , -2.433613 , 0.840184 , -0.862514 , -0.426954 , 0.271523 , 0.667875 , 0.367138 , 10.487484 , -4.451878 , 0.071065 , -0.157292 , -0.942503 , -0.294809 , 0.749092 , 0.309189 , 10.019650 , -4.591732 , 0.517904 , -0.041536 , -0.924009 , -0.380047 , 0.740985 , 0.320540 , 9.771595 , -4.291218 , -0.230693 , -0.027467 , -0.987884 , -0.152562 , 0.734388 , 0.308960 , 11.044430 , -7.112431 , 0.741693 , -0.286264 , 0.941160 , 0.179540 , 0.764554 , 0.218699 , 9.662212 , -7.200375 , 0.370046 , 0.167974 , 0.842372 , 0.511979 , 0.728472 , 0.222102 , 9.878895 , -7.144428 , 0.347448 , -0.006378 , 0.893399 , 0.449171 , 0.736630 , 0.221687 , 10.062359 , -7.127026 , -0.065776 , 0.021760 , 0.971252 , 0.237037 , 0.735614 , 0.229702 , -17.998106 , -0.078167 , 1.945092 , 0.427625 , 0.571764 , 0.700125 , 0.047186 , 0.415800 , -18.056768 , -0.836582 , 2.261388 , 0.283181 , 0.349406 , 0.893124 , 0.044195 , 0.402382 , -17.541716 , -0.616039 , 1.994012 , 0.130100 , 0.585742 , 0.799951 , 0.052970 , 0.405546 , -16.939154 , -1.507252 , 2.080308 , 0.857082 , -0.128178 , 0.498947 , 0.067714 , 0.385476 , -16.798475 , -1.580456 , 1.544587 , 0.829554 , -0.341166 , 0.442030 , 0.075977 , 0.387312 , -16.638136 , -1.106686 , 1.554010 , 0.909299 , -0.025300 , 0.415326 , 0.074306 , 0.394605 , -19.356901 , -0.858227 , 2.637052 , -0.291726 , 0.232612 , 0.927763 , 0.019962 , 0.406097 , -18.828627 , -0.998981 , 2.589906 , 0.173132 , -0.085208 , 0.981201 , 0.028551 , 0.398098 , -19.024946 , -0.334538 , 2.575128 , -0.232673 , 0.404950 , 0.884213 , 0.028774 , 0.408806 , -10.695021 , -13.919125 , -0.655463 , 0.202612 , -0.854488 , -0.478286 , 0.231443 , 0.032142 , -11.003714 , -14.355755 , -0.131713 , 0.186499 , -0.823511 , -0.535722 , 0.222537 , 0.036949 , -11.437239 , -14.052319 , -0.556834 , -0.110355 , -0.859157 , -0.499588 , 0.213391 , 0.028244 , -7.034367 , -13.069042 , 4.060113 , -0.000763 , -0.309580 , 0.950865 , 0.327685 , 0.098572 , -7.894382 , -12.498585 , 3.856885 , -0.351512 , 0.067812 , 0.933714 , 0.314702 , 0.101096 , -7.570889 , -13.347141 , 3.710744 , -0.305887 , -0.499802 , 0.810297 , 0.318319 , 0.092222 , -1.055775 , -9.693218 , 1.449502 , 0.580096 , 0.772668 , -0.257729 , 0.470854 , 0.164252 , -1.104443 , -9.544888 , 1.765455 , 0.381451 , 0.885495 , -0.265236 , 0.457121 , 0.164143 , -0.189693 , -9.756451 , 2.106393 , 0.476028 , 0.837458 , -0.268349 , 0.469035 , 0.151954 , -3.964649 , -13.005352 , 2.453340 , 0.562487 , -0.444258 , 0.697287 , 0.400912 , 0.083624 , -4.097149 , -12.373714 , 3.071061 , 0.214667 , -0.594531 , 0.774834 , 0.391712 , 0.100833 , -4.938190 , -13.708363 , 3.227594 , 0.404523 , -0.399976 , 0.822382 , 0.377122 , 0.089426 , -7.691334 , -14.200771 , 2.900964 , -0.135319 , -0.833461 , 0.535722 , 0.314624 , 0.078698 , -7.430546 , -13.842098 , 3.409822 , -0.127659 , -0.725791 , 0.675924 , 0.319933 , 0.085175 , -8.100973 , -13.524448 , 3.230146 , -0.252998 , -0.626392 , 0.737266 , 0.310593 , 0.085813 , -2.172176 , -12.665447 , 2.140992 , -0.742454 , -0.252235 , 0.620563 , 0.425509 , 0.089976 , -2.776379 , -12.188702 , 1.649064 , 0.078951 , -0.596393 , 0.798761 , 0.416814 , 0.090631 , -2.434811 , -13.357433 , 1.772676 , -0.228706 , -0.196326 , 0.953459 , 0.422573 , 0.079191 , -4.810383 , -11.724628 , 3.298150 , -0.487869 , -0.076113 , 0.869564 , 0.378965 , 0.112290 , -4.337177 , -11.121052 , 3.820676 , -0.534349 , 0.207099 , 0.819453 , 0.386375 , 0.123611 , -4.966526 , -10.721409 , 2.897947 , -0.471786 , 0.178503 , 0.863430 , 0.369229 , 0.123267 , -0.705059 , -12.213558 , 3.687993 , -0.130253 , -0.641102 , 0.756310 , 0.447926 , 0.109696 , -0.984661 , -12.751659 , 3.084909 , -0.093844 , -0.552721 , 0.828028 , 0.445849 , 0.096331 , 0.037022 , -12.539928 , 2.906717 , 0.405438 , -0.751122 , 0.520951 , 0.461513 , 0.099766 , 6.552975 , -12.751492 , -0.196162 , 0.110691 , -0.872616 , 0.475631 , 0.650143 , 0.080237 , 6.943317 , -13.032299 , -0.684737 , -0.044527 , -0.685018 , 0.727134 , 0.650542 , 0.070205 , 7.017406 , -12.504986 , -0.012950 , 0.118381 , -0.870632 , 0.477432 , 0.666866 , 0.083955 , -0.144413 , -13.156277 , 1.311177 , 0.805872 , -0.586047 , 0.084109 , 0.476698 , 0.071978 , -0.587078 , -14.176357 , 1.144368 , 0.686514 , -0.701285 , 0.191992 , 0.456487 , 0.046226 , -0.144001 , -13.571201 , 0.089547 , 0.687704 , -0.695212 , 0.208960 , 0.487400 , 0.053428 , 5.143780 , -12.909008 , -0.129019 , 0.122318 , -0.895657 , 0.427564 , 0.622651 , 0.081109 , 5.169758 , -13.419430 , -0.917201 , 0.115024 , -0.586566 , 0.801660 , 0.611566 , 0.065787 , 5.731861 , -13.144199 , -0.971781 , -0.002686 , -0.574938 , 0.818171 , 0.624534 , 0.070605 , -0.750469 , -13.983677 , 2.369821 , 0.350200 , -0.757439 , 0.551012 , 0.457103 , 0.082115 , -1.682705 , -14.255795 , 1.867391 , -0.117283 , -0.735771 , 0.666951 , 0.440500 , 0.070302 , -1.723911 , -9.298359 , 1.456884 , 0.519150 , 0.850826 , -0.080935 , 0.451617 , 0.175274 , -1.226597 , -9.546741 , 1.106824 , 0.651479 , 0.755181 , 0.072390 , 0.464364 , 0.174385 , -16.956709 , -2.929546 , 2.480939 , 0.928922 , 0.046449 , 0.367321 , 0.063660 , 0.357221 , -17.077002 , -2.721684 , 2.596513 , 0.616169 , 0.235939 , 0.751396 , 0.059374 , 0.360123 , -16.966131 , -3.320866 , 2.739393 , 0.763573 , -0.087466 , 0.639729 , 0.059225 , 0.353916 , -17.235838 , 0.076351 , 1.177228 , 0.526078 , 0.795587 , 0.300363 , 0.063710 , 0.424512 , -17.236235 , 0.224537 , 0.616582 , 0.417371 , 0.880978 , 0.222846 , 0.071628 , 0.431465 , -17.796453 , 0.392925 , 0.831620 , 0.222480 , 0.957183 , 0.185034 , 0.059900 , 0.435736 , -16.927794 , -4.934216 , 0.468091 , 0.976897 , -0.161107 , 0.140172 , 0.078711 , 0.319289 , -16.736158 , -4.896450 , 1.064374 , 0.996155 , -0.087497 , 0.001617 , 0.073318 , 0.322919 , -16.902334 , -5.314594 , 0.391408 , 0.966796 , -0.179388 , 0.181982 , 0.074319 , 0.316794 , 8.128811 , -4.904812 , 2.125936 , -0.308054 , -0.934935 , 0.175909 , 0.718878 , 0.346527 , 7.790951 , -4.803684 , 1.760946 , -0.382885 , -0.895901 , -0.225257 , 0.712006 , 0.343154 , -16.607977 , -4.310322 , 0.884080 , 0.867824 , -0.487930 , 0.093509 , 0.078463 , 0.333128 , -16.513350 , -3.778507 , 1.212655 , 0.863399 , -0.190313 , 0.467208 , 0.076959 , 0.341215 , -16.725836 , -4.304386 , 1.316499 , 0.938292 , -0.244331 , 0.244667 , 0.072505 , 0.334647 , -16.266546 , -3.585217 , 0.474569 , 0.933775 , -0.300516 , -0.194159 , 0.090149 , 0.337256 , -16.282469 , -3.853207 , 0.855771 , 0.900143 , -0.399609 , 0.173315 , 0.083007 , 0.337277 , -16.565443 , -4.174114 , 0.584749 , 0.887204 , -0.452254 , -0.090854 , 0.084744 , 0.330606 , -16.785734 , -4.576122 , 0.653642 , 0.927854 , -0.372326 , 0.020631 , 0.079119 , 0.326111 , -17.137648 , -3.023296 , 2.935010 , 0.547166 , 0.200720 , 0.812586 , 0.056081 , 0.357558 , -16.917700 , -3.544781 , 2.046830 , 0.983276 , -0.014161 , 0.181433 , 0.065999 , 0.349298 , -16.864775 , -3.356495 , 2.501004 , 0.984283 , 0.010773 , 0.176153 , 0.063580 , 0.352327 , -16.951292 , -3.936604 , 2.442773 , 0.766503 , -0.513047 , 0.386273 , 0.061419 , 0.347472 , -18.044867 , -2.223888 , 2.415441 , -0.358654 , 0.042909 , 0.932463 , 0.046044 , 0.370275 , -18.454504 , -2.156490 , 2.297719 , -0.016877 , -0.266366 , 0.963713 , 0.036516 , 0.373810 , -18.539244 , -2.571842 , 2.098863 , -0.159612 , -0.259163 , 0.952544 , 0.037195 , 0.362963 , -13.745008 , 0.068584 , 2.477166 , -0.158116 , 0.839320 , 0.520066 , 0.186397 , 0.419381 , -13.605566 , -0.555012 , 2.759736 , -0.357128 , 0.212897 , 0.909452 , 0.188454 , 0.415642 , -13.101797 , -0.151775 , 2.445031 , 0.123508 , 0.843623 , 0.522507 , 0.190703 , 0.420168 , -12.287245 , -1.605061 , 1.818193 , 0.009827 , -0.804621 , 0.593707 , 0.209605 , 0.397118 , -12.084234 , -1.299892 , 2.156965 , 0.029908 , -0.484207 , 0.874416 , 0.209067 , 0.407736 , -12.738195 , -1.397320 , 2.201341 , 0.354900 , -0.733146 , 0.580065 , 0.198438 , 0.404975 , -13.713446 , -0.984730 , 2.567106 , -0.595996 , -0.367290 , 0.714042 , 0.188004 , 0.410935 , -14.234419 , -0.687458 , 2.434808 , -0.676382 , -0.321207 , 0.662770 , 0.184471 , 0.413644 , -14.055494 , -1.289333 , 2.055986 , -0.602557 , -0.425916 , 0.674886 , 0.181926 , 0.408939 , -14.452803 , -0.739346 , 1.975068 , -0.986541 , 0.109104 , 0.121555 , 0.179966 , 0.415655 , -14.526907 , -1.250790 , 1.666696 , -0.926786 , -0.042421 , 0.373180 , 0.172600 , 0.411945 , -16.748617 , -1.018490 , 2.024984 , 0.878384 , 0.065065 , 0.473434 , 0.066422 , 0.395554 , 6.321552 , -1.889194 , 0.701959 , -0.800989 , -0.510544 , 0.312571 , 0.652284 , 0.376795 , -17.697058 , -4.774113 , 1.483560 , -0.306864 , 0.011597 , 0.951659 , 0.060248 , 0.328628 , -17.111341 , -4.915577 , 1.762132 , -0.026399 , -0.327464 , 0.944487 , 0.064170 , 0.325377 , -17.188597 , -4.659946 , 1.747850 , -0.278878 , 0.152928 , 0.948057 , 0.064205 , 0.330319 , 10.214321 , -1.672649 , 2.612493 , 0.891201 , 0.280404 , 0.356456 , 0.738928 , 0.392248 , 10.315395 , -2.307087 , 2.815603 , 0.963347 , 0.058351 , 0.261696 , 0.741259 , 0.383044 , 10.620296 , -1.926594 , 2.099817 , 0.736137 , 0.219672 , 0.640156 , 0.750335 , 0.390511 , -17.715086 , -3.805782 , 2.980520 , 0.028504 , -0.482803 , 0.875240 , 0.055969 , 0.348909 , 10.266575 , -3.073109 , 2.691427 , 0.856899 , -0.113742 , 0.502762 , 0.745340 , 0.374698 , 10.966145 , -2.218357 , 1.988221 , -0.241371 , 0.175085 , 0.954497 , 0.760955 , 0.391179 , 10.354832 , -4.094082 , 2.559499 , 0.218665 , 0.204810 , 0.954039 , 0.750265 , 0.360039 , 8.368847 , -3.596790 , 4.746179 , -0.617420 , -0.439497 , 0.652364 , 0.719918 , 0.370477 , 9.275356 , -3.489262 , 5.055108 , -0.105564 , -0.617481 , 0.779443 , 0.722011 , 0.371653 , 8.915966 , -3.412113 , 5.066289 , -0.307443 , -0.181799 , 0.934019 , 0.720158 , 0.372449 , 9.154835 , -2.883648 , 5.118215 , -0.759667 , 0.364605 , 0.538408 , 0.720828 , 0.374325 , 9.350674 , -2.879627 , 5.354093 , -0.374523 , 0.126041 , 0.918577 , 0.722473 , 0.374083 , 9.381336 , -2.508717 , 4.894750 , -0.723685 , 0.596637 , 0.346751 , 0.721163 , 0.375706 , 9.740940 , -3.187443 , 5.198113 , 0.471969 , -0.359233 , 0.805078 , 0.724106 , 0.373230 , 9.644787 , -3.572231 , 4.985108 , 0.269112 , -0.688162 , 0.673788 , 0.724781 , 0.371595 , 10.024326 , -3.301983 , 4.813161 , 0.758507 , -0.396222 , 0.517319 , 0.726260 , 0.373495 , 9.540714 , -2.535275 , 5.263997 , -0.346690 , 0.472335 , 0.810358 , 0.722967 , 0.375302 , 9.077015 , -3.816723 , 4.634870 , -0.073641 , -0.863826 , 0.498337 , 0.723206 , 0.369845 , 9.841122 , -2.749538 , 5.269208 , 0.440352 , -0.039064 , 0.896939 , 0.724289 , 0.374523 , 10.295673 , -2.874348 , 4.774449 , 0.890591 , -0.206946 , 0.404920 , 0.725827 , 0.375016 , 10.301006 , -2.526157 , 4.808167 , 0.932218 , 0.089175 , 0.350719 , 0.724746 , 0.375513 , 9.923954 , -2.100155 , 5.019025 , 0.220099 , 0.725181 , 0.652394 , 0.723746 , 0.376283 , 9.991787 , -2.437618 , 5.149537 , 0.531693 , 0.231178 , 0.814753 , 0.723902 , 0.375357 , 7.131176 , -4.352329 , 1.834832 , -0.852718 , -0.518571 , -0.062624 , 0.702600 , 0.347099 , 9.108265 , -2.417110 , 4.359738 , -0.274087 , 0.683981 , 0.676015 , 0.718857 , 0.376503 , 8.828075 , -2.682446 , 4.556706 , -0.191137 , 0.623585 , 0.757988 , 0.718174 , 0.375156 , 9.103138 , -2.818775 , 4.808381 , -0.592578 , 0.669485 , 0.447920 , 0.719703 , 0.375066 , 9.704212 , -1.919376 , 4.121938 , 0.241005 , 0.809473 , 0.535386 , 0.723318 , 0.380466 , 9.967976 , -1.935482 , 4.686166 , 0.184210 , 0.937376 , 0.295572 , 0.724225 , 0.377894 , 10.087536 , -1.976231 , 4.358716 , 0.586413 , 0.807337 , -0.065310 , 0.726043 , 0.378856 , 9.636730 , -2.204380 , 5.021096 , -0.531785 , 0.706046 , 0.467635 , 0.722441 , 0.376144 , 9.701344 , -2.027645 , 4.616738 , -0.526200 , 0.806665 , 0.268929 , 0.722029 , 0.377472 , 9.474415 , -4.008442 , 4.174676 , 0.152867 , -0.959685 , 0.235817 , 0.727314 , 0.368858 , 10.000301 , -3.744938 , 4.571004 , 0.620838 , -0.657704 , 0.426496 , 0.727900 , 0.371721 , 9.472332 , -3.239925 , 5.246507 , -0.009033 , -0.414930 , 0.909787 , 0.722901 , 0.372692 , 9.164410 , -3.265896 , 5.114347 , -0.433607 , -0.116581 , 0.893490 , 0.721305 , 0.373132 , 9.380863 , -2.314625 , 4.433919 , -0.584613 , 0.693930 , 0.420301 , 0.720292 , 0.377126 , 8.483471 , -3.020077 , 4.716535 , -0.511582 , 0.355602 , 0.782159 , 0.718054 , 0.373341 , 8.870884 , -2.962994 , 4.769296 , -0.394024 , 0.525590 , 0.753960 , 0.719669 , 0.373866 , 10.327938 , -2.804699 , 4.026170 , 0.973174 , 0.222968 , -0.056398 , 0.728364 , 0.376467 , 10.435612 , -3.214100 , 3.960382 , 0.969604 , -0.239998 , 0.047426 , 0.730825 , 0.376046 , 10.151821 , -2.389088 , 3.545995 , 0.975311 , 0.211707 , 0.062716 , 0.732504 , 0.379775 , 10.019222 , -1.993366 , 3.867105 , 0.821711 , 0.533891 , 0.199225 , 0.727844 , 0.381293 , 10.108768 , -1.371464 , 3.204015 , 0.766991 , 0.594134 , 0.242195 , 0.729178 , 0.391267 , 10.184338 , -3.782215 , 3.965951 , 0.767266 , -0.636616 , 0.077517 , 0.731904 , 0.371329 , 10.289425 , -3.464588 , 3.876813 , 0.914579 , -0.403241 , -0.029664 , 0.731933 , 0.373919 , 10.185726 , -3.361988 , 4.163728 , 0.845271 , -0.399182 , 0.355083 , 0.729400 , 0.373562 , 10.280094 , -2.216549 , 4.630223 , 0.889981 , 0.417096 , 0.184118 , 0.726158 , 0.376629 , 11.118298 , -4.043598 , 2.391019 , 0.274728 , 0.233283 , 0.932768 , 0.762975 , 0.362057 , 10.003765 , -3.651714 , 2.656625 , 0.674703 , -0.366588 , 0.640553 , 0.742848 , 0.364269 , 10.779400 , -2.458149 , 2.203927 , 0.548784 , 0.293191 , 0.782830 , 0.758172 , 0.384525 , 10.802227 , -1.240635 , 1.760186 , 0.689047 , 0.612110 , 0.387921 , 0.755576 , 0.408759 , 9.339764 , -2.158680 , 4.199578 , -0.157048 , 0.414686 , 0.896268 , 0.719097 , 0.379117 , 8.824879 , -4.022083 , 4.044320 , -0.196539 , -0.943663 , 0.266091 , 0.722165 , 0.366864 , 8.310604 , -2.478817 , 4.333386 , -0.408856 , -0.102145 , 0.906827 , 0.714757 , 0.377220 , 10.840443 , -1.906269 , 1.843946 , 0.291543 , 0.497482 , 0.816980 , 0.757281 , 0.399034 , 10.336544 , -1.106380 , 2.303048 , 0.541429 , 0.679769 , 0.494675 , 0.745313 , 0.402173 , 9.491680 , -1.171909 , 3.797475 , 0.474380 , 0.772820 , 0.421522 , 0.720688 , 0.390217 , 9.232838 , -1.054485 , 2.661927 , 0.316416 , 0.947935 , 0.035463 , 0.721836 , 0.399078 , 10.145191 , -3.565006 , 3.305928 , 0.878079 , -0.461013 , -0.128117 , 0.737780 , 0.370212 , 9.788555 , -3.925877 , 3.330152 , 0.514176 , -0.856319 , -0.047884 , 0.733485 , 0.366432 , 9.361179 , -1.557125 , 4.203393 , 0.440718 , 0.361888 , 0.821436 , 0.719067 , 0.383800 , 10.277096 , -2.931904 , 3.275743 , 0.999329 , -0.025819 , -0.025147 , 0.735723 , 0.374931 , 8.865688 , -1.101017 , 4.037545 , 0.417219 , 0.681997 , 0.600635 , 0.714733 , 0.388047 , 7.229992 , -4.100224 , 2.367097 , -0.809626 , -0.489212 , 0.324198 , 0.707186 , 0.354970 , 6.959263 , -3.319492 , 2.063386 , -0.984802 , 0.053285 , 0.165258 , 0.697518 , 0.358271 , 5.841343 , -1.577686 , 0.511983 , -0.490188 , -0.732383 , 0.472518 , 0.636425 , 0.386738 , 10.352695 , 0.181965 , 0.480550 , 0.321451 , 0.494491 , 0.807520 , 0.746569 , 0.450025 , 7.212353 , -3.428722 , 1.181810 , -0.941252 , -0.327860 , -0.080752 , 0.688888 , 0.349675 , 9.022610 , -0.036411 , 1.696626 , 0.302042 , 0.053468 , 0.951781 , 0.718426 , 0.432758 , 9.725399 , -0.296360 , 0.893495 , 0.477828 , 0.268441 , 0.836390 , 0.730701 , 0.433249 , 9.407475 , 0.508556 , 1.267888 , 0.589465 , 0.354137 , 0.725974 , 0.722851 , 0.447464 , 8.273266 , -4.311291 , 0.233225 , -0.183294 , -0.968932 , -0.165899 , 0.699250 , 0.321674 , -19.636786 , -2.489071 , 3.114282 , 0.006989 , -0.392102 , 0.919858 , 0.014010 , 0.370441 , -19.025549 , -1.879726 , 2.729642 , 0.515000 , 0.065035 , 0.854701 , 0.018791 , 0.378919 , -19.510695 , -2.065105 , 2.986337 , 0.167852 , 0.272866 , 0.947264 , 0.013203 , 0.379271 , -19.271208 , -2.719509 , 2.603444 , 0.459639 , -0.678793 , 0.572649 , 0.018576 , 0.366336 , -18.361479 , -4.381634 , 1.775754 , -0.327616 , -0.779168 , 0.534318 , 0.052091 , 0.336429 , -17.760923 , -4.407864 , 1.727784 , 0.107852 , -0.929319 , 0.353160 , 0.057763 , 0.337799 , -17.938192 , -4.170971 , 2.307237 , -0.129917 , -0.902097 , 0.411481 , 0.054812 , 0.343039 , -7.727001 , -0.078503 , 1.734910 , -0.746696 , 0.649983 , -0.141057 , 0.319664 , 0.431223 , -7.909214 , -0.515141 , 1.740758 , -0.568926 , 0.800348 , -0.189032 , 0.304242 , 0.427293 , -7.676136 , -0.177006 , 2.581357 , -0.674215 , 0.626820 , 0.390515 , 0.317852 , 0.418041 , -18.903456 , -2.519985 , 2.323228 , 0.517594 , -0.479781 , 0.708396 , 0.027338 , 0.369175 , -18.119368 , -2.651638 , 2.410032 , -0.636067 , 0.183966 , 0.749352 , 0.044950 , 0.360749 , -18.330404 , -1.147579 , 2.407956 , 0.202460 , 0.030061 , 0.978820 , 0.037735 , 0.393574 , -18.617987 , -0.506695 , 2.606580 , 0.289682 , 0.205786 , 0.934721 , 0.035238 , 0.403005 , -2.738598 , -0.848278 , 3.995744 , 0.807703 , -0.076632 , 0.584521 , 0.391738 , 0.399905 , -3.005238 , -1.367298 , 4.124501 , 0.791436 , -0.345408 , 0.504227 , 0.389656 , 0.395460 , -3.092625 , -1.755535 , 3.479257 , 0.804895 , -0.591418 , 0.047884 , 0.394447 , 0.392661 , -16.827780 , 0.198406 , -0.425376 , 0.404492 , 0.828852 , 0.386486 , 0.088525 , 0.456627 , -17.218275 , 0.546818 , -0.378093 , 0.448958 , 0.766289 , 0.459578 , 0.079465 , 0.461029 , -16.984167 , 0.199192 , -0.013369 , 0.413190 , 0.897732 , 0.152654 , 0.080810 , 0.450598 , -17.605970 , 0.154881 , 1.403157 , 0.330424 , 0.851924 , 0.406201 , 0.053906 , 0.425295 , -17.205458 , -0.220760 , 1.667844 , 0.440474 , 0.697592 , 0.565081 , 0.060034 , 0.413317 , -18.345190 , 0.309231 , 1.631932 , 0.401044 , 0.867031 , 0.295602 , 0.046006 , 0.425905 , -18.515951 , -1.699841 , 2.399694 , 0.174749 , -0.113865 , 0.977996 , 0.030031 , 0.384116 , -17.036070 , -0.715664 , 2.145444 , 0.357921 , 0.581256 , 0.730735 , 0.060373 , 0.401046 , -16.984129 , -1.132641 , 2.296479 , 0.564806 , 0.025483 , 0.824824 , 0.060734 , 0.392394 , -16.937124 , -3.040241 , 1.922799 , 0.982269 , -0.090945 , 0.163762 , 0.067598 , 0.353850 , -17.466208 , -2.315334 , 2.524984 , -0.073855 , 0.303446 , 0.949950 , 0.052840 , 0.366880 , -17.734671 , -2.587734 , 2.738778 , -0.233436 , 0.537065 , 0.810572 , 0.049998 , 0.362601 , -17.321951 , -2.673695 , 2.692914 , 0.264046 , 0.518387 , 0.813318 , 0.054814 , 0.361873 , -17.699774 , -1.887363 , 2.533906 , -0.056795 , 0.031129 , 0.997894 , 0.049727 , 0.379283 , -17.302198 , -1.483150 , 2.388463 , 0.428755 , -0.014130 , 0.903287 , 0.056100 , 0.384718 , -17.877745 , -1.685589 , 2.477795 , -0.111850 , 0.018921 , 0.993530 , 0.046107 , 0.384163 , -13.066565 , 0.123814 , 1.692373 , 0.058840 , 0.943693 , 0.325480 , 0.192532 , 0.426741 , -13.410162 , 0.174580 , 2.061139 , 0.044984 , 0.990844 , 0.127049 , 0.186631 , 0.423171 , -13.247519 , -0.902950 , 3.073594 , -0.106235 , -0.062868 , 0.992340 , 0.191674 , 0.412566 , -13.262556 , -1.405735 , 2.841695 , -0.119816 , -0.706320 , 0.697653 , 0.192544 , 0.409112 , -14.299208 , -0.771229 , 1.497491 , -0.847255 , 0.501175 , -0.175817 , 0.174647 , 0.421461 , -16.895155 , -0.243694 , 1.165952 , 0.717338 , 0.645894 , 0.261177 , 0.073140 , 0.416775 , -17.445631 , -0.988850 , 2.404847 , 0.103671 , 0.428541 , 0.897519 , 0.053098 , 0.395223 , -16.794584 , -0.654728 , 1.815538 , 0.768517 , 0.488601 , 0.413007 , 0.069026 , 0.404292 , -11.058317 , -0.110355 , -0.148391 , -0.096896 , 0.924558 , 0.368480 , 0.231134 , 0.459506 , -11.136816 , -0.461346 , 0.534456 , -0.198523 , 0.948973 , 0.244911 , 0.233233 , 0.449651 , -10.664015 , -0.114170 , 0.383992 , -0.429456 , 0.896146 , 0.111728 , 0.240560 , 0.456021 , -13.540800 , -1.636219 , 2.296685 , -0.278298 , -0.677389 , 0.680929 , 0.189248 , 0.405690 , -12.896170 , -1.779377 , 1.867559 , 0.355144 , -0.820490 , 0.447890 , 0.199046 , 0.395406 , -12.932440 , -0.387547 , 2.887044 , 0.211219 , 0.515244 , 0.830592 , 0.194021 , 0.415760 , -12.878500 , -1.242542 , 2.765001 , 0.550951 , -0.527055 , 0.646992 , 0.195592 , 0.411378 , -12.331747 , -0.840618 , 2.451741 , 0.596149 , -0.100284 , 0.796564 , 0.201522 , 0.414476 , -13.391607 , -1.981503 , 1.985753 , 0.029359 , -0.891903 , 0.451186 , 0.191247 , 0.398843 , -13.840841 , -1.815197 , 1.922456 , -0.472915 , -0.750786 , 0.461104 , 0.183610 , 0.401303 , -13.693319 , -0.001392 , 1.452558 , -0.586993 , 0.798975 , -0.130528 , 0.181568 , 0.428697 , -13.968367 , -0.094357 , 1.868222 , -0.634907 , 0.746635 , -0.198431 , 0.182194 , 0.420898 , -14.244627 , -0.227283 , 2.534189 , -0.714469 , 0.437696 , 0.545824 , 0.184247 , 0.417043 , -12.174711 , -0.096485 , 1.533910 , 0.695364 , 0.693838 , 0.187201 , 0.206919 , 0.432947 , -12.610693 , 0.145199 , 1.522756 , 0.221992 , 0.826014 , 0.518021 , 0.199032 , 0.432602 , -12.237669 , -0.239697 , 2.065351 , 0.566820 , 0.693319 , 0.444929 , 0.203814 , 0.424592 , -12.356176 , 0.480038 , 1.004602 , 0.544755 , 0.676717 , 0.495224 , 0.202285 , 0.441127 , -13.137114 , 0.469639 , 1.081929 , -0.418104 , 0.860439 , 0.291238 , 0.189835 , 0.437681 , -12.519171 , -0.239498 , 2.480123 , 0.524308 , 0.648732 , 0.551530 , 0.196471 , 0.420341 , -11.893156 , -0.796169 , 2.146215 , 0.153172 , 0.427290 , 0.891018 , 0.213574 , 0.416570 , -13.730597 , -0.206142 , 0.194173 , -0.459487 , 0.847591 , 0.265389 , 0.170364 , 0.445319 , -14.122000 , -0.241573 , 0.055440 , 0.196051 , 0.932432 , 0.303476 , 0.160032 , 0.444310 , -14.027128 , -0.519245 , 0.888810 , -0.224799 , 0.906857 , 0.356395 , 0.167268 , 0.432434 , -14.434446 , -1.677120 , 1.584333 , -0.675039 , -0.650288 , 0.348399 , 0.175919 , 0.403366 , -12.595243 , 0.797039 , 0.680112 , 0.099704 , 0.974883 , 0.199042 , 0.193375 , 0.447439 , -11.450811 , -0.501049 , 0.952810 , -0.009247 , 0.998321 , 0.056825 , 0.225089 , 0.440138 , -11.558851 , -0.306843 , 0.296251 , 0.240883 , 0.874508 , 0.420881 , 0.222389 , 0.453154 , -13.142889 , 0.489491 , 0.466825 , -0.671133 , 0.739464 , 0.052187 , 0.182169 , 0.448719 , -13.545950 , -0.078403 , 0.935910 , -0.727317 , 0.677023 , -0.112278 , 0.178196 , 0.438556 , -11.293661 , -1.651409 , 2.066148 , -0.226508 , -0.746574 , 0.625507 , 0.225765 , 0.389668 , -10.777166 , -1.741222 , 2.222615 , -0.361095 , -0.723136 , 0.588733 , 0.238552 , 0.388744 , -10.995848 , -1.357121 , 2.410119 , -0.241859 , -0.431074 , 0.869289 , 0.236951 , 0.399783 , -12.140921 , -0.242275 , 1.067739 , 0.788232 , 0.598163 , 0.144414 , 0.212724 , 0.437952 , -11.754866 , -0.562313 , 1.724187 , 0.365703 , 0.888638 , 0.276620 , 0.216960 , 0.428549 , -10.995726 , -0.156246 , 1.371381 , -0.455275 , 0.889126 , -0.046113 , 0.237400 , 0.433750 , -11.102789 , -0.319439 , 2.104093 , -0.396069 , 0.841426 , 0.367565 , 0.237676 , 0.425085 , -10.799810 , -0.139606 , 1.805726 , -0.065340 , 0.958647 , 0.276925 , 0.242326 , 0.428828 , -10.071615 , -0.582409 , 0.952684 , 0.319193 , 0.897305 , 0.304788 , 0.256009 , 0.443189 , -10.336843 , -0.307285 , 0.941793 , 0.620136 , 0.756432 , 0.207831 , 0.250066 , 0.442939 , -10.271437 , -0.293514 , 1.290883 , 0.673025 , 0.739494 , -0.010346 , 0.253637 , 0.436897 , -10.576513 , -0.071400 , 0.761392 , -0.136662 , 0.977477 , 0.160710 , 0.243672 , 0.447340 , -10.967199 , -0.419491 , 0.860223 , -0.457259 , 0.879116 , -0.134159 , 0.236773 , 0.441968 , -11.900389 , -0.381908 , 0.673925 , 0.553880 , 0.794366 , 0.249336 , 0.212576 , 0.447114 , -10.970587 , 0.112453 , -0.620547 , -0.074313 , 0.819971 , 0.567522 , 0.230519 , 0.469089 , -11.463537 , -0.010006 , -0.347209 , 0.336192 , 0.772790 , 0.538224 , 0.221149 , 0.464546 , -10.093550 , -0.254864 , 0.702817 , 0.445723 , 0.729148 , 0.519272 , 0.252527 , 0.448332 , -11.903059 , 0.040188 , 0.074613 , 0.736351 , 0.552995 , 0.389813 , 0.211377 , 0.458172 , -8.872747 , -1.830257 , 2.681669 , 0.276864 , -0.183935 , 0.943114 , 0.277698 , 0.385747 , -8.351515 , -2.125385 , 2.598142 , 0.243141 , 0.022462 , 0.969726 , 0.293687 , 0.383313 , -8.521162 , -1.342075 , 2.672391 , 0.310923 , -0.191412 , 0.930937 , 0.290757 , 0.396304 , -9.532690 , 0.002415 , 0.275377 , -0.291940 , 0.805200 , 0.516129 , 0.266518 , 0.456224 , -9.772940 , -0.368023 , 0.625272 , -0.261696 , 0.869289 , 0.419294 , 0.261638 , 0.448034 , -9.520224 , -0.076389 , 0.603692 , -0.400616 , 0.859066 , 0.318552 , 0.268670 , 0.449575 , -9.954115 , -0.157932 , 0.167566 , 0.040986 , 0.843501 , 0.535539 , 0.255834 , 0.455131 , -9.941122 , -0.637043 , 1.291814 , 0.085757 , 0.996277 , -0.005554 , 0.262331 , 0.439947 , -9.494825 , -0.243511 , 0.942884 , -0.389050 , 0.885800 , 0.252968 , 0.269777 , 0.444144 , -8.155737 , -0.177029 , 0.430310 , 0.388318 , 0.733024 , 0.558428 , 0.294785 , 0.453272 , -8.463659 , 0.110020 , -0.181941 , 0.080264 , 0.858425 , 0.506577 , 0.289347 , 0.463735 , -8.602896 , -0.274807 , 0.727041 , 0.233070 , 0.795892 , 0.558763 , 0.286526 , 0.449320 , -9.543669 , -0.307491 , 1.287282 , -0.402570 , 0.908200 , 0.114322 , 0.270868 , 0.436142 , -8.313604 , -0.406399 , 0.762120 , 0.490616 , 0.524369 , 0.695914 , 0.292427 , 0.446821 , -8.616545 , -0.565243 , 1.068322 , 0.402997 , 0.882565 , 0.242103 , 0.289094 , 0.440878 , -7.934391 , -0.708370 , 0.549012 , 0.022767 , 0.868709 , 0.494766 , 0.299118 , 0.444836 , -9.818075 , -0.637554 , 1.655698 , -0.307108 , 0.950987 , 0.035463 , 0.262231 , 0.431513 , -10.194098 , -0.564953 , 1.724435 , 0.473769 , 0.825282 , 0.307260 , 0.253825 , 0.429712 , -9.050322 , -0.075481 , 0.648824 , 0.139683 , 0.905759 , 0.400098 , 0.277294 , 0.449712 , -9.192343 , -0.231686 , 1.131353 , 0.129826 , 0.957305 , 0.258248 , 0.278463 , 0.441345 , -3.809048 , -1.252331 , 4.321050 , -0.305856 , -0.011109 , 0.951994 , 0.380169 , 0.396581 , -3.332775 , -1.337353 , 4.392854 , 0.225898 , -0.090182 , 0.969939 , 0.385796 , 0.396783 , -3.491734 , -0.603733 , 4.210385 , 0.020417 , 0.418043 , 0.908170 , 0.383560 , 0.402172 , -5.408520 , 0.039051 , 2.087392 , 0.190954 , 0.932524 , -0.306375 , 0.359687 , 0.428733 , -5.202312 , -0.222385 , 1.557897 , 0.038759 , 0.946989 , -0.318857 , 0.359699 , 0.440116 , -5.857327 , 0.054729 , 1.615064 , 0.382824 , 0.858882 , -0.340190 , 0.349198 , 0.435028 , -4.899761 , -0.379856 , 1.120889 , -0.588061 , 0.805078 , -0.077395 , 0.358885 , 0.449251 , -4.462688 , 0.226391 , 1.530313 , -0.563280 , 0.622486 , 0.543290 , 0.371697 , 0.447332 , -5.110989 , 0.009174 , 0.375093 , -0.813501 , 0.167486 , 0.556871 , 0.361999 , 0.459967 , -9.238394 , -0.285305 , 2.010011 , 0.138798 , 0.976531 , 0.164525 , 0.278277 , 0.422098 , -9.475439 , -0.279072 , 1.740812 , -0.268197 , 0.961455 , -0.060091 , 0.271014 , 0.428207 , -9.602285 , -0.341061 , 2.308030 , -0.286447 , 0.866207 , 0.409345 , 0.268219 , 0.421551 , -2.871410 , -1.659847 , 2.268392 , 0.663076 , -0.618336 , 0.421857 , 0.406138 , 0.387396 , -2.313953 , -0.369808 , 2.899118 , 0.917112 , -0.164434 , 0.363079 , 0.409723 , 0.405045 , -2.627163 , -0.812916 , 3.172292 , 0.900418 , -0.383099 , 0.205969 , 0.400583 , 0.398796 , -2.445408 , 0.286488 , 2.977453 , 0.646962 , 0.632099 , 0.426466 , 0.405755 , 0.414481 , -3.276455 , 0.184582 , 3.200032 , -0.085849 , 0.962493 , 0.257302 , 0.391768 , 0.416087 , -2.586651 , -0.044384 , 3.617006 , 0.613971 , 0.512131 , 0.600574 , 0.398239 , 0.406829 , -5.988140 , -2.874493 , 3.935880 , 0.093326 , 0.119022 , 0.988495 , 0.352927 , 0.379701 , -6.234219 , -3.287006 , 4.083650 , -0.051210 , -0.205817 , 0.977233 , 0.350058 , 0.376013 , -5.810764 , -3.379528 , 3.785825 , 0.378155 , -0.669088 , 0.639760 , 0.354223 , 0.374730 , -5.301403 , -2.897724 , 3.831926 , 0.018220 , -0.285562 , 0.958159 , 0.359717 , 0.378310 , -5.257587 , -3.330425 , 3.609967 , 0.099582 , -0.768120 , 0.632496 , 0.359312 , 0.373015 , -4.621006 , -3.181606 , 3.708738 , 0.284005 , -0.537584 , 0.793908 , 0.367217 , 0.375011 , -5.882732 , -3.545597 , 2.984475 , -0.050325 , -0.981140 , 0.186621 , 0.352731 , 0.368296 , -4.629261 , -3.589756 , 3.050679 , 0.174566 , -0.945585 , 0.274514 , 0.369225 , 0.368197 , -5.208813 , -3.675648 , 2.500310 , -0.086337 , -0.899564 , 0.428144 , 0.363929 , 0.359834 , -6.031124 , -3.785595 , 2.208516 , -0.172674 , -0.938994 , 0.297433 , 0.348282 , 0.357094 , -4.960316 , -2.618717 , 3.975126 , 0.102542 , -0.157323 , 0.982177 , 0.366053 , 0.381961 , -3.930187 , -0.192448 , 3.890481 , 0.138920 , 0.426893 , 0.893551 , 0.378224 , 0.405422 , -4.378811 , -0.780209 , 4.024625 , 0.061800 , -0.012116 , 0.997986 , 0.375899 , 0.400684 , -4.862110 , 0.177738 , 3.526799 , -0.125919 , 0.889920 , 0.438337 , 0.368732 , 0.412827 , -4.347073 , 0.275181 , 2.670633 , 0.150395 , 0.955748 , -0.252785 , 0.374371 , 0.424054 , -5.091892 , 0.407970 , 3.101270 , -0.111148 , 0.978210 , 0.175298 , 0.362821 , 0.419827 , -5.249210 , -0.602489 , 0.444112 , -0.633900 , 0.767052 , 0.098849 , 0.352318 , 0.453683 , -5.507679 , -0.379803 , 1.033380 , 0.163427 , 0.879055 , -0.447768 , 0.348655 , 0.445381 , -4.303616 , 0.771809 , 1.319909 , -0.477279 , 0.716727 , 0.508377 , 0.378706 , 0.460336 , -3.531940 , 0.594425 , 1.684140 , 0.318949 , 0.502762 , 0.803400 , 0.387998 , 0.450646 , -4.642735 , -0.207706 , 1.981080 , -0.090762 , 0.993683 , -0.065706 , 0.370001 , 0.435224 , -3.106205 , 0.900265 , 0.491983 , 0.444624 , 0.830470 , 0.335551 , 0.403390 , 0.467747 , -3.339527 , 1.081837 , 0.105672 , 0.088473 , 0.971221 , 0.221015 , 0.399493 , 0.477690 , -9.723249 , -0.400249 , 1.995397 , -0.596789 , 0.796167 , -0.099551 , 0.265099 , 0.426215 , -2.726376 , 0.278309 , 0.575231 , 0.182653 , 0.738273 , 0.649251 , 0.411668 , 0.455893 , -2.389309 , 0.226421 , 0.979665 , -0.431013 , 0.855068 , 0.288217 , 0.419893 , 0.445019 , -2.173527 , 0.735188 , 0.538289 , -0.211829 , 0.881710 , 0.421491 , 0.425293 , 0.456879 , -5.555897 , -1.450588 , 3.835241 , -0.087558 , -0.247139 , 0.964995 , 0.361444 , 0.394037 , -5.042667 , -1.386776 , 3.804212 , -0.011048 , -0.204291 , 0.978820 , 0.367951 , 0.394384 , -4.949909 , -0.879414 , 4.254041 , 0.222968 , -0.381176 , 0.897183 , 0.367981 , 0.399407 , -3.637241 , -0.112400 , 2.530126 , -0.013428 , 0.989776 , -0.141758 , 0.386443 , 0.424743 , -3.095470 , 0.144588 , 2.227128 , -0.442183 , 0.869472 , -0.220130 , 0.398426 , 0.427650 , -3.447865 , 0.925694 , 1.280198 , 0.321421 , 0.843501 , 0.430280 , 0.391357 , 0.461438 , -3.042690 , -0.103291 , 1.243627 , 0.263405 , 0.896329 , 0.356578 , 0.402264 , 0.443187 , -3.829266 , -0.072491 , 2.062787 , -0.000580 , 0.969756 , 0.243995 , 0.384477 , 0.436083 , -2.083317 , -0.057339 , 2.192647 , 0.638142 , 0.495590 , 0.589160 , 0.424634 , 0.416928 , -2.065075 , 0.336178 , 1.570756 , -0.358562 , 0.874630 , 0.326151 , 0.428920 , 0.434431 , -2.522053 , 0.163357 , 1.603902 , -0.234901 , 0.970428 , -0.055055 , 0.413851 , 0.431523 , -5.702991 , 0.165615 , 2.905050 , -0.172826 , 0.936430 , 0.305216 , 0.353007 , 0.420264 , -10.046621 , -0.673580 , 2.096189 , -0.107089 , 0.958007 , 0.265908 , 0.259048 , 0.423718 , -4.264713 , 0.977482 , -0.322306 , 0.013947 , 0.940214 , 0.340281 , 0.384301 , 0.485442 , -4.056583 , 0.264172 , 3.332731 , 0.134983 , 0.986236 , 0.095248 , 0.379608 , 0.415269 , -4.472134 , -1.367504 , 3.881051 , -0.185644 , -0.139348 , 0.972655 , 0.373387 , 0.395119 , -4.070660 , -2.019276 , 3.995015 , -0.103030 , -0.443922 , 0.890103 , 0.379291 , 0.390735 , -3.299557 , -1.850132 , 4.150800 , 0.471145 , -0.635029 , 0.612110 , 0.386558 , 0.392585 , -3.672512 , -2.275944 , 3.696573 , 0.449171 , -0.803797 , 0.390027 , 0.387069 , 0.385862 , -3.403248 , -2.010021 , 2.769395 , 0.730308 , -0.662435 , 0.166570 , 0.397248 , 0.384363 , -3.210575 , -2.064816 , 2.071573 , 0.717826 , -0.328929 , 0.613575 , 0.406562 , 0.378627 , -2.917934 , 0.500431 , 2.847741 , -0.282723 , 0.923551 , 0.259011 , 0.401212 , 0.420051 , -2.623837 , 0.581173 , 2.456220 , 0.146062 , 0.980743 , -0.129368 , 0.408802 , 0.422100 , -3.879681 , 0.136921 , 2.869794 , 0.262917 , 0.914365 , -0.307840 , 0.383067 , 0.420006 , -3.489124 , -0.124470 , 3.737634 , 0.141575 , 0.772271 , 0.619282 , 0.383230 , 0.409202 , -1.757122 , 0.653606 , 0.765081 , -0.029450 , 0.974578 , 0.222053 , 0.437183 , 0.448402 , -3.691952 , -1.691692 , 4.229688 , -0.153813 , -0.389203 , 0.908200 , 0.382973 , 0.394146 , -4.110935 , -3.240833 , 3.351762 , 0.640736 , -0.528153 , 0.557176 , 0.377010 , 0.373038 , -4.387211 , -2.441730 , 3.721658 , 0.335551 , -0.370922 , 0.865902 , 0.375821 , 0.381937 , -3.725582 , -2.308895 , 2.887506 , 0.831111 , -0.495712 , 0.251930 , 0.390916 , 0.380877 , -3.562382 , -2.475193 , 2.488782 , 0.792261 , -0.171422 , 0.585559 , 0.394202 , 0.375333 , -3.907619 , -2.646679 , 3.145639 , 0.835231 , -0.318979 , 0.447859 , 0.385068 , 0.378023 , -3.012615 , 0.573719 , 0.975438 , 0.814325 , 0.409894 , 0.410871 , 0.399360 , 0.455742 , -3.094280 , -1.696171 , 2.842038 , 0.779504 , -0.617389 , 0.105625 , 0.401403 , 0.390444 , -1.739727 , -1.111141 , 1.895890 , -0.059908 , -0.522721 , 0.850368 , 0.437697 , 0.400545 , -1.454586 , -0.632961 , 2.191892 , -0.239540 , -0.057222 , 0.969176 , 0.443394 , 0.413787 , -2.541409 , -1.662426 , 1.952661 , 0.540452 , -0.491928 , 0.682546 , 0.416556 , 0.386577 , -2.123363 , -1.471935 , 1.718583 , 0.451338 , -0.484909 , 0.749077 , 0.428597 , 0.390574 , -2.199276 , -0.997616 , 2.116689 , 0.590655 , -0.404309 , 0.698294 , 0.420906 , 0.398993 , -2.954998 , -0.335392 , 3.986589 , 0.258431 , 0.518021 , 0.815363 , 0.389728 , 0.406812 , -4.997868 , -1.814800 , 3.956105 , -0.046602 , 0.091556 , 0.994690 , 0.368937 , 0.389083 , -1.359722 , 0.616688 , 0.961972 , 0.374462 , 0.926603 , 0.034303 , 0.447549 , 0.441319 , -1.650013 , 0.588352 , 1.349992 , -0.047609 , 0.946226 , 0.319956 , 0.439697 , 0.437050 , -1.304104 , 0.381557 , 1.529031 , 0.428571 , 0.816401 , 0.387005 , 0.446589 , 0.433402 , -1.698254 , 0.339809 , 1.785234 , 0.005341 , 0.772576 , 0.634877 , 0.438078 , 0.427829 , -1.475056 , 0.703480 , 0.301320 , 0.337901 , 0.924986 , 0.173772 , 0.444843 , 0.460161 , -1.099483 , 0.398205 , 0.495404 , 0.467330 , 0.872158 , 0.144444 , 0.456157 , 0.451498 , -1.588818 , -0.168095 , 2.047235 , 0.224128 , 0.405164 , 0.886319 , 0.438934 , 0.420754 , -1.091610 , 0.078228 , 1.892869 , 0.267098 , 0.758354 , 0.594562 , 0.449505 , 0.424546 , -0.839367 , 0.148182 , 1.116426 , 0.440077 , 0.869747 , 0.223151 , 0.457951 , 0.436379 , -0.440388 , 0.087276 , 0.770120 , 0.221412 , 0.953551 , 0.204108 , 0.468493 , 0.444624 , -1.047169 , -1.499554 , 2.000482 , -0.350719 , -0.517014 , 0.780786 , 0.455010 , 0.391139 , -1.049641 , -0.769176 , 2.298127 , -0.171392 , -0.107822 , 0.979247 , 0.452038 , 0.405112 , -0.090160 , -0.076580 , 1.368474 , 0.304636 , 0.814295 , 0.494003 , 0.473138 , 0.434545 , 0.273609 , -0.016430 , 0.895368 , 0.300058 , 0.925687 , 0.230232 , 0.483296 , 0.446812 , -0.650715 , -0.941196 , 2.304677 , 0.092715 , 0.006653 , 0.995666 , 0.466563 , 0.405199 , -0.435040 , -0.663219 , 2.071149 , 0.484207 , 0.458449 , 0.745201 , 0.468561 , 0.416106 , -0.981159 , -0.183964 , 2.223211 , 0.042207 , 0.571520 , 0.819483 , 0.457373 , 0.414926 , 0.055553 , -0.640163 , 1.651853 , 0.164373 , 0.674947 , 0.719291 , 0.477207 , 0.422799 , -0.447880 , -0.253033 , 1.785451 , 0.483077 , 0.670247 , 0.563372 , 0.463989 , 0.424869 , 0.124210 , -1.001728 , 2.020681 , 0.015259 , 0.611652 , 0.790948 , 0.477514 , 0.412778 , -2.343235 , -2.913357 , 1.342309 , 0.622852 , 0.002350 , 0.782311 , 0.425130 , 0.361112 , -1.486568 , -2.740452 , 0.901983 , 0.623402 , 0.079379 , 0.777825 , 0.439768 , 0.360054 , -1.872425 , -2.452503 , 1.170762 , 0.471664 , -0.188513 , 0.861354 , 0.432057 , 0.369171 , 0.903011 , -1.772106 , 0.636800 , 0.205908 , -0.943968 , 0.257851 , 0.503803 , 0.374257 , 0.720257 , -1.747768 , 1.020963 , 0.244484 , -0.965667 , 0.087680 , 0.497658 , 0.379969 , 0.107372 , -1.772511 , 0.662660 , 0.469588 , -0.867672 , 0.163060 , 0.491135 , 0.370236 , 0.128071 , -2.247326 , -0.064547 , 0.243660 , -0.900906 , 0.359081 , 0.491910 , 0.355624 , -0.369221 , -2.325176 , 0.173833 , 0.410565 , -0.891781 , 0.190069 , 0.477347 , 0.357550 , -0.597050 , -2.676357 , -0.429728 , 0.424512 , -0.853023 , 0.303446 , 0.479173 , 0.345610 , -0.617489 , -2.037685 , 1.720895 , -0.189428 , -0.707785 , 0.680502 , 0.466923 , 0.384381 , -0.421925 , -1.513378 , 2.157621 , -0.074801 , -0.462203 , 0.883602 , 0.472309 , 0.393206 , -0.202946 , -2.177700 , 0.901311 , 0.639363 , -0.768883 , 0.003815 , 0.477903 , 0.366846 , -1.640507 , -1.505436 , 1.468381 , -0.056093 , -0.665517 , 0.744224 , 0.439101 , 0.387353 , -1.534054 , -2.020100 , 1.033155 , 0.041841 , -0.557878 , 0.828852 , 0.445476 , 0.375080 , -1.160252 , -2.357906 , 1.129880 , -0.422834 , -0.797479 , 0.430342 , 0.457573 , 0.370732 , -0.461590 , -2.346355 , 1.281850 , 0.209082 , -0.921873 , 0.326212 , 0.470151 , 0.375545 , 0.202824 , -1.313602 , 2.230870 , 0.059816 , -0.155889 , 0.985931 , 0.482924 , 0.403144 , 1.248600 , -1.629650 , 0.889737 , 0.350749 , -0.916562 , 0.191961 , 0.507880 , 0.383501 , -0.042774 , -2.158657 , 1.402520 , 0.507950 , -0.844264 , 0.170812 , 0.480825 , 0.375750 , 0.306606 , -1.928387 , 1.332204 , 0.451491 , -0.892239 , 0.006775 , 0.488198 , 0.381878 , 0.509678 , -1.542217 , 1.946538 , 0.341624 , -0.728629 , 0.593585 , 0.491981 , 0.397708 , 0.749264 , -1.192448 , 2.290536 , 0.249428 , -0.174932 , 0.952452 , 0.494739 , 0.404829 , 0.774731 , -1.595470 , 1.558786 , 0.390820 , -0.870876 , 0.297952 , 0.497150 , 0.389867 , 1.381283 , -1.413837 , 1.466146 , 0.471084 , -0.768700 , 0.432569 , 0.508752 , 0.395434 , 1.111332 , -0.177288 , 1.316484 , -0.543077 , 0.831416 , 0.117405 , 0.509497 , 0.433169 , 0.784336 , -0.450634 , 1.531259 , -0.226600 , 0.902799 , 0.365490 , 0.500002 , 0.428945 , 1.210300 , -0.333172 , 1.852056 , -0.556871 , 0.513413 , 0.652882 , 0.510385 , 0.421386 , -1.402225 , -2.327862 , 0.643346 , 0.417341 , -0.568346 , 0.709037 , 0.451836 , 0.364765 , -0.233097 , -2.061337 , 1.748014 , 0.146092 , -0.767907 , 0.623646 , 0.477262 , 0.383740 , 0.182049 , -1.879765 , 1.800073 , 0.339763 , -0.778130 , 0.528214 , 0.484999 , 0.391601 , 0.588856 , -0.738171 , 2.056451 , -0.134800 , 0.621052 , 0.772057 , 0.492156 , 0.416663 , 0.338268 , -0.330402 , 1.375749 , 0.189764 , 0.800501 , 0.568468 , 0.487688 , 0.431891 , 1.409267 , -1.635860 , 0.403562 , 0.418775 , -0.886166 , 0.198279 , 0.517413 , 0.373188 , -0.408947 , 0.189236 , 0.333394 , 0.267067 , 0.958678 , 0.097720 , 0.471926 , 0.454075 , 2.033550 , -0.756222 , 1.602185 , 0.621113 , -0.539293 , 0.568621 , 0.521596 , 0.403105 , 1.883900 , -1.327435 , 0.821100 , 0.573077 , -0.781732 , 0.245857 , 0.521910 , 0.388346 , 2.373066 , -0.763012 , 1.012616 , 0.190252 , -0.725364 , 0.661519 , 0.539881 , 0.396340 , 2.121815 , 0.425755 , 1.963125 , 0.134709 , 0.561235 , 0.816584 , 0.533829 , 0.428639 , 1.756725 , 0.522411 , 1.042970 , -0.711386 , 0.701132 , -0.048097 , 0.528059 , 0.441887 , 1.518650 , 0.170811 , 1.729532 , -0.648213 , 0.691305 , 0.319163 , 0.521697 , 0.431611 , 1.492886 , -0.007069 , 0.321473 , -0.509659 , 0.860317 , 0.006592 , 0.521956 , 0.450727 , 1.344837 , -0.104374 , 0.824708 , -0.558794 , 0.829035 , -0.020844 , 0.515117 , 0.442293 , 1.922657 , -0.351421 , 1.956895 , 0.488723 , -0.446852 , 0.749290 , 0.524045 , 0.411310 , 1.521946 , -0.342052 , 2.130868 , -0.216834 , -0.116459 , 0.969207 , 0.517551 , 0.412526 , 2.139812 , -0.364048 , 1.749284 , 0.674398 , -0.403485 , 0.618336 , 0.531876 , 0.410327 , 2.586567 , -0.355419 , 1.198289 , 0.088900 , -0.400128 , 0.912107 , 0.544740 , 0.412924 , 2.178097 , 0.688129 , 0.596555 , -0.234413 , 0.899838 , -0.367840 , 0.534287 , 0.453756 , 2.335369 , 0.991322 , 1.035566 , 0.105502 , 0.987640 , -0.115665 , 0.538257 , 0.443427 , 2.723827 , 0.541195 , 0.774900 , 0.543779 , 0.822962 , -0.164190 , 0.547703 , 0.449547 , 2.628452 , 0.591763 , 1.463849 , 0.661916 , 0.523637 , 0.536302 , 0.545922 , 0.435240 , 2.597767 , 0.204952 , 1.497323 , 0.541215 , -0.107364 , 0.833979 , 0.543353 , 0.423777 , 2.952946 , -0.244129 , 1.375665 , -0.092532 , 0.161901 , 0.982452 , 0.556349 , 0.423121 , 2.460552 , 1.137516 , 0.111531 , -0.636494 , 0.565996 , 0.523881 , 0.549252 , 0.475086 , 2.189960 , 0.874065 , -0.335261 , -0.823939 , 0.489578 , 0.285226 , 0.536674 , 0.478358 , 2.242710 , 0.594685 , 0.174398 , -0.608783 , 0.749962 , 0.258583 , 0.540526 , 0.464833 , 3.581959 , 1.297825 , -0.342971 , 0.668325 , 0.448408 , 0.593493 , 0.574621 , 0.483525 , 3.896160 , 1.020664 , -0.583068 , 0.673818 , 0.172460 , 0.718467 , 0.585529 , 0.479239 , 3.903408 , 1.476711 , -0.807692 , 0.496261 , 0.442305 , 0.747032 , 0.585962 , 0.491852 , 2.964100 , 0.298069 , 0.327181 , 0.472610 , 0.720450 , 0.507492 , 0.557956 , 0.457576 , 3.331997 , 0.115002 , 0.838914 , 0.184027 , 0.948759 , 0.256752 , 0.566605 , 0.441467 , 3.374241 , 0.261883 , 0.065793 , 0.514145 , 0.626270 , 0.586016 , 0.572843 , 0.460580 , 2.892185 , 1.060574 , 0.380443 , 0.064730 , 0.283670 , 0.956725 , 0.561026 , 0.469971 , 2.260998 , -0.007465 , 1.831952 , 0.693930 , -0.209815 , 0.688742 , 0.535797 , 0.418983 , 1.318516 , -0.886013 , 1.942060 , 0.360912 , -0.256539 , 0.896603 , 0.506539 , 0.407551 , 0.826733 , -0.261120 , 0.950887 , -0.031556 , 0.981231 , 0.190069 , 0.500129 , 0.441658 , 1.829357 , 0.025822 , 2.208265 , 0.011505 , 0.194189 , 0.980865 , 0.525054 , 0.419253 , 1.680744 , 0.568638 , -0.929038 , -0.338115 , 0.427564 , 0.838343 , 0.518368 , 0.480105 , 2.017765 , 0.948254 , -0.896983 , -0.563768 , 0.402295 , 0.721274 , 0.526678 , 0.485759 , 1.550831 , 1.017765 , -1.013499 , -0.089908 , 0.195746 , 0.976501 , 0.517838 , 0.488809 , 3.273220 , 1.367313 , 0.046075 , 0.513810 , 0.563921 , 0.646474 , 0.565833 , 0.478507 , 2.880184 , 1.431553 , 0.062581 , -0.196265 , 0.822810 , 0.533311 , 0.558225 , 0.480222 , 3.605679 , 0.133541 , 0.455831 , 0.066500 , 0.997681 , 0.012452 , 0.577730 , 0.450220 , 3.889286 , 0.074268 , 0.043557 , 0.187841 , 0.961547 , 0.200232 , 0.586180 , 0.455981 , 3.996471 , 0.218639 , 0.702077 , -0.078066 , 0.994171 , -0.074160 , 0.585243 , 0.442909 , 3.093044 , -0.744732 , 1.446492 , -0.198981 , -0.365398 , 0.909299 , 0.561061 , 0.404954 , 3.784420 , -1.235218 , 1.020314 , 0.130772 , -0.822413 , 0.553606 , 0.577953 , 0.389097 , 3.577335 , -0.726818 , 1.354604 , 0.101627 , -0.421979 , 0.900876 , 0.576077 , 0.404905 , 1.798260 , 0.178143 , 0.142255 , -0.576342 , 0.812525 , -0.087130 , 0.522983 , 0.461000 , 3.973034 , -0.827076 , 1.302411 , 0.150731 , -0.475356 , 0.866756 , 0.589526 , 0.405288 , 4.083271 , -0.298931 , 1.383481 , 0.153356 , -0.014283 , 0.988037 , 0.592712 , 0.419153 , 3.448658 , -0.253468 , 1.538617 , -0.081301 , 0.293680 , 0.952422 , 0.576306 , 0.420361 , 2.059261 , -1.324390 , 0.249208 , 0.272927 , -0.889798 , 0.365703 , 0.535355 , 0.378566 , 3.640972 , 0.140499 , 1.158544 , -0.247658 , 0.892666 , 0.376507 , 0.579244 , 0.433740 , 5.073376 , 0.319233 , -0.019984 , -0.162358 , 0.985290 , 0.052736 , 0.616857 , 0.449458 , 5.178829 , 0.276600 , 0.724324 , 0.145146 , 0.941099 , 0.305368 , 0.621525 , 0.437752 , 5.598820 , 0.288876 , 0.319356 , 0.028291 , 0.984191 , 0.174718 , 0.631480 , 0.445410 , 3.995342 , 0.094776 , 1.322274 , -0.034944 , 0.692648 , 0.720389 , 0.588776 , 0.430246 , 4.310024 , 0.275219 , 0.962678 , -0.083102 , 0.989837 , 0.115268 , 0.597199 , 0.437933 , 4.444904 , 0.133900 , 1.322191 , 0.140721 , 0.585345 , 0.798456 , 0.601901 , 0.427410 , 4.681736 , -0.604130 , 1.285695 , 0.101962 , -0.366802 , 0.924680 , 0.607013 , 0.412460 , 5.081356 , -1.143330 , 0.789369 , -0.211066 , -0.777093 , 0.592914 , 0.619291 , 0.396902 , 5.200520 , -0.396221 , 1.377137 , 0.004456 , 0.020417 , 0.999756 , 0.625953 , 0.413313 , 5.516682 , -1.068615 , 1.034414 , -0.367565 , -0.603351 , 0.707663 , 0.635868 , 0.401354 , 7.289730 , 0.816532 , 0.109884 , -0.216834 , 0.855434 , 0.470290 , 0.672614 , 0.463900 , 6.999783 , 0.412220 , 0.514257 , -0.206519 , 0.756432 , 0.620594 , 0.673793 , 0.449823 , 7.797123 , 0.641850 , 0.395749 , -0.260994 , 0.853389 , 0.451155 , 0.685442 , 0.459043 , 6.708317 , 0.098461 , 0.826688 , -0.058321 , 0.791986 , 0.607715 , 0.663262 , 0.439244 , 6.784473 , -0.212894 , 1.196718 , 0.063234 , 0.548357 , 0.833827 , 0.670829 , 0.422489 , 7.303112 , 0.022717 , 0.934163 , -0.162755 , 0.516404 , 0.840724 , 0.677625 , 0.436175 , 8.792217 , -0.694073 , 2.739770 , 0.619282 , 0.731284 , -0.285714 , 0.713512 , 0.400394 , 8.514202 , -0.900723 , 2.095250 , 0.356792 , 0.928892 , -0.099124 , 0.715743 , 0.407802 , 8.188656 , -0.631779 , 2.358163 , 0.119022 , 0.875118 , -0.469008 , 0.705681 , 0.403617 , 8.134167 , 0.074177 , 3.938916 , 0.243477 , 0.848048 , 0.470626 , 0.707885 , 0.391532 , 8.478756 , -0.159946 , 3.594152 , 0.691031 , 0.715079 , 0.105411 , 0.709908 , 0.393805 , 7.896069 , -0.128239 , 2.874086 , -0.106723 , 0.862484 , -0.494675 , 0.706033 , 0.395412 , 7.613514 , 0.017239 , 3.589330 , -0.491684 , 0.869991 , 0.036287 , 0.705140 , 0.392208 , 7.392002 , -0.692638 , 2.640249 , -0.519089 , 0.777184 , -0.355632 , 0.700473 , 0.395778 , 7.154728 , -0.667873 , 3.481244 , -0.764183 , 0.639454 , -0.084048 , 0.702667 , 0.391295 , 8.621517 , -0.355976 , 3.045541 , 0.636982 , 0.729911 , -0.247810 , 0.709905 , 0.397451 , 8.984913 , -0.993397 , 3.305429 , 0.591754 , 0.795038 , 0.133000 , 0.714531 , 0.394193 , 5.679760 , -0.737896 , 1.256040 , -0.113132 , -0.106937 , 0.987793 , 0.643427 , 0.413520 , 8.764889 , 0.546192 , 1.621034 , -0.060579 , 0.499680 , 0.864071 , 0.708689 , 0.442109 , 8.357517 , 0.701649 , 1.158746 , -0.485183 , 0.740959 , 0.464248 , 0.703126 , 0.449906 , 7.926800 , 0.385975 , 1.053632 , -0.502701 , 0.584765 , 0.636647 , 0.692426 , 0.443494 , 9.277668 , -1.029125 , 2.074598 , 0.102420 , 0.985839 , 0.132603 , 0.726406 , 0.409476 , 7.318867 , -0.586887 , 4.123715 , -0.590625 , 0.567797 , 0.573321 , 0.705735 , 0.389306 , 8.234333 , -1.380733 , 4.544110 , 0.235633 , 0.311380 , 0.920591 , 0.711953 , 0.386388 , 8.591236 , -0.761578 , 3.931173 , 0.650716 , 0.482284 , 0.586444 , 0.711373 , 0.390427 , 7.775234 , -0.634762 , 4.357938 , -0.016114 , 0.438337 , 0.898648 , 0.709338 , 0.388054 , 7.453297 , -0.916348 , 2.071824 , -0.239723 , 0.961089 , -0.137150 , 0.694139 , 0.403259 , 6.798214 , -1.009014 , 3.844629 , -0.885128 , 0.377209 , 0.272408 , 0.702770 , 0.387026 , 7.112362 , -1.396938 , 4.366124 , -0.636372 , 0.058840 , 0.769097 , 0.706793 , 0.385918 , 8.309277 , 0.881718 , 0.525060 , -0.388318 , 0.882839 , 0.264138 , 0.698400 , 0.457604 , 8.206699 , -0.164204 , 1.519609 , -0.382855 , 0.266396 , 0.884548 , 0.704567 , 0.427566 , 7.550961 , -0.503925 , 1.159906 , -0.248451 , 0.496658 , 0.831599 , 0.687884 , 0.425939 , 10.030140 , -0.025433 , 0.705690 , 0.384075 , 0.323588 , 0.864711 , 0.739698 , 0.443454 , 10.300579 , -0.759464 , 1.093515 , 0.168004 , 0.574999 , 0.800684 , 0.745557 , 0.429164 , 9.391064 , -0.677837 , 1.351606 , 0.513871 , 0.324229 , 0.794214 , 0.725113 , 0.426513 , 8.940182 , -0.856144 , 1.639615 , 0.229591 , 0.661397 , 0.714011 , 0.718742 , 0.419835 , 9.787838 , -0.965527 , 1.388417 , 0.199805 , 0.852168 , 0.483566 , 0.732656 , 0.420340 , 9.988781 , -0.987064 , 1.948003 , 0.117771 , 0.990326 , 0.073305 , 0.736581 , 0.409458 , 10.424061 , -1.102375 , 1.461087 , 0.267586 , 0.919126 , 0.289071 , 0.745622 , 0.414934 , 8.932095 , 0.948383 , 1.096639 , 0.002167 , 0.874233 , 0.485458 , 0.710829 , 0.451635 , 10.740124 , -7.139561 , 0.476262 , -0.452223 , 0.798425 , 0.397412 , 0.758377 , 0.221911 , 10.545826 , -7.058292 , 0.213399 , -0.267922 , 0.876370 , 0.400159 , 0.753146 , 0.226634 , 8.342014 , -7.176373 , 0.397805 , -0.554674 , 0.804804 , 0.211097 , 0.696096 , 0.221104 , 8.720142 , -7.051197 , 0.615068 , -0.076510 , 0.964660 , 0.252022 , 0.705718 , 0.218995 , 8.562412 , -6.790485 , -0.002055 , -0.159124 , 0.963744 , 0.214148 , 0.701706 , 0.227851 , 9.804989 , -4.944859 , 1.469255 , -0.035371 , -0.974853 , -0.219947 , 0.740043 , 0.333659 , 5.173023 , -8.780582 , -0.323001 , -0.397198 , 0.585467 , 0.706687 , 0.610687 , 0.195711 , 5.615269 , -8.403980 , -0.181895 , -0.743736 , 0.073305 , 0.664418 , 0.620563 , 0.203136 , 5.101925 , -8.331844 , -0.387030 , -0.507645 , 0.135502 , 0.850826 , 0.610880 , 0.208907 , -7.276981 , -12.354458 , 4.026135 , -0.016236 , 0.216895 , 0.976043 , 0.325472 , 0.106470 , -6.815334 , -13.535892 , 3.692491 , 0.226753 , -0.671987 , 0.704947 , 0.328393 , 0.089771 , -7.015415 , -14.080006 , 2.842794 , 0.132603 , -0.900540 , 0.413984 , 0.327796 , 0.079439 , -4.976650 , -12.577991 , 3.255296 , 0.008881 , 0.088748 , 0.996002 , 0.372086 , 0.101242 , -5.709980 , -11.858135 , 2.811765 , 0.059542 , 0.338816 , 0.938932 , 0.358137 , 0.109988 , -5.748150 , -13.386532 , 3.454931 , 0.132756 , -0.241401 , 0.961272 , 0.354460 , 0.093632 , -6.615025 , -11.659283 , 3.442605 , 0.601215 , -0.146336 , 0.785546 , 0.336757 , 0.114232 , -6.766300 , -12.406536 , 3.923543 , 0.365490 , 0.332469 , 0.869381 , 0.333610 , 0.104548 , -6.314030 , -14.318554 , 2.558339 , -0.235817 , -0.848598 , 0.473525 , 0.345366 , 0.080394 , -5.512066 , -14.244259 , 2.931661 , -0.006500 , -0.701285 , 0.712821 , 0.363565 , 0.081671 , -6.567142 , -12.861050 , 3.981572 , 0.488876 , -0.050569 , 0.870876 , 0.335471 , 0.100423 , -6.369846 , -13.188953 , 3.673719 , 0.461440 , -0.352824 , 0.813959 , 0.337910 , 0.095529 , -6.179569 , -12.498508 , 3.469098 , 0.611896 , 0.266030 , 0.744835 , 0.342718 , 0.103059 , -7.653507 , -11.377209 , 4.863088 , 0.369915 , -0.800317 , 0.471786 , 0.307722 , 0.121840 , -8.637388 , -11.660275 , 4.350270 , 0.159154 , -0.985290 , 0.061739 , 0.297623 , 0.116119 , -7.578503 , -11.547932 , 3.733026 , 0.087222 , -0.601062 , 0.794397 , 0.314676 , 0.113936 , -6.014011 , -10.927769 , 2.467164 , 0.509873 , -0.235115 , 0.827479 , 0.352736 , 0.122127 , -5.575665 , -10.765858 , 3.411187 , 0.868892 , -0.490585 , 0.065767 , 0.340979 , 0.129671 , -8.390722 , -11.585590 , 5.088288 , 0.181097 , -0.818903 , 0.544572 , 0.298877 , 0.123911 , -8.619535 , -11.734295 , 3.214166 , -0.245338 , -0.588214 , 0.770562 , 0.300054 , 0.107335 , -8.259817 , -12.086338 , 3.468923 , -0.403272 , 0.310770 , 0.860653 , 0.307507 , 0.105176 , -8.625357 , -12.639767 , 3.602456 , -0.447798 , 0.069094 , 0.891446 , 0.300677 , 0.098401 , -9.575689 , -13.098309 , 2.842946 , -0.683737 , -0.048189 , 0.728111 , 0.277439 , 0.090687 , -9.831495 , -12.346066 , 2.394670 , -0.462630 , -0.523179 , 0.715690 , 0.271398 , 0.097732 , -10.160986 , -12.750225 , 1.984964 , -0.455000 , -0.460250 , 0.762291 , 0.257933 , 0.086708 , -8.329412 , -14.329731 , 2.229905 , -0.361278 , -0.925260 , 0.115360 , 0.299756 , 0.072279 , -8.769888 , -14.046001 , 2.379247 , -0.259804 , -0.902737 , 0.342784 , 0.291984 , 0.074421 , -8.485594 , -14.092487 , 1.726953 , -0.304788 , -0.934324 , -0.184606 , 0.295871 , 0.066955 , -8.948874 , -14.143520 , 1.889695 , 0.032655 , -0.999390 , 0.010773 , 0.286166 , 0.066556 , -8.998793 , -12.699032 , 3.382138 , -0.680441 , 0.112339 , 0.724113 , 0.292090 , 0.098161 , -8.864828 , -12.171757 , 3.147485 , -0.562975 , 0.164006 , 0.809992 , 0.292865 , 0.102248 , -9.322569 , -12.340351 , 2.783406 , -0.572771 , -0.118656 , 0.811029 , 0.284506 , 0.099216 , -8.544462 , -13.447475 , 3.270845 , -0.216010 , -0.580798 , 0.784814 , 0.299266 , 0.087489 , -8.242552 , -12.949795 , 3.690377 , -0.317331 , -0.352824 , 0.880215 , 0.308694 , 0.092986 , -8.676443 , -13.752499 , 2.917276 , -0.280923 , -0.737968 , 0.613544 , 0.295160 , 0.080862 , -9.260656 , -13.633343 , 2.812711 , -0.417096 , -0.616260 , 0.667989 , 0.286642 , 0.083222 , -8.238607 , -14.081005 , 2.744325 , -0.293222 , -0.773827 , 0.561418 , 0.302813 , 0.078405 , -9.440924 , -14.024342 , 2.241025 , -0.317759 , -0.852504 , 0.414991 , 0.277580 , 0.072812 , -9.388708 , -14.135044 , 1.357110 , -0.052156 , -0.984008 , -0.170232 , 0.276404 , 0.059525 , -8.714560 , -13.923740 , 1.337808 , -0.095431 , -0.987091 , -0.128452 , 0.289051 , 0.059164 , -8.234739 , -14.150234 , 1.218763 , -0.276315 , -0.957762 , -0.079501 , 0.299927 , 0.060006 , -7.876438 , -14.463871 , 2.050546 , -0.064089 , -0.997925 , -0.004334 , 0.308409 , 0.069408 , -7.333233 , -14.244862 , 1.209131 , -0.035554 , -0.985260 , -0.167211 , 0.313795 , 0.056345 , -7.453739 , -13.936626 , 0.173909 , 0.047365 , -0.972076 , -0.229804 , 0.312440 , 0.043583 , -6.187969 , -14.262585 , 0.869668 , -0.283242 , -0.916745 , -0.281625 , 0.337754 , 0.049904 , -6.749386 , -14.228497 , 2.208909 , -0.296548 , -0.936003 , 0.189459 , 0.334770 , 0.071116 , -6.785244 , -13.830875 , -0.945155 , 0.137577 , -0.990478 , 0.003143 , 0.326536 , 0.034725 , -6.542522 , -13.732700 , -0.162074 , -0.005158 , -0.975097 , -0.221656 , 0.334687 , 0.041877 , -6.725010 , -14.372883 , 1.726278 , -0.260537 , -0.964873 , 0.033479 , 0.330955 , 0.061695 , -7.190464 , -14.184208 , 1.871938 , 0.058229 , -0.994507 , 0.086764 , 0.322296 , 0.068657 , -7.467602 , -14.353382 , 2.492868 , 0.241066 , -0.953734 , 0.179601 , 0.318271 , 0.074038 , -6.411564 , -13.713291 , 3.155565 , 0.152593 , -0.741020 , 0.653890 , 0.338779 , 0.087746 , -9.812666 , -14.036190 , 1.654603 , -0.475692 , -0.870083 , 0.128910 , 0.263533 , 0.066223 , -9.692869 , -13.402195 , 2.623868 , -0.697989 , -0.321574 , 0.639821 , 0.272885 , 0.083297 , -9.033613 , -13.119015 , 3.273900 , -0.524796 , -0.271371 , 0.806787 , 0.290401 , 0.092883 , -9.302877 , -11.806255 , 3.072290 , -0.031709 , -0.825007 , 0.564196 , 0.287111 , 0.108256 , -9.731260 , -12.145206 , 2.791429 , -0.044496 , -0.792169 , 0.608631 , 0.278489 , 0.104469 , -10.312346 , -10.959530 , 3.961992 , -0.982696 , 0.084048 , 0.164983 , 0.277689 , 0.125832 , -10.225248 , -12.065037 , 3.053766 , -0.159154 , -0.794458 , 0.586047 , 0.271038 , 0.112804 , -10.066031 , -11.729870 , 3.968751 , -0.599200 , -0.758171 , 0.256996 , 0.281516 , 0.120058 , -9.707159 , -13.898060 , 0.810876 , 0.026490 , -0.997925 , -0.058168 , 0.259323 , 0.049866 , -10.405653 , -13.766224 , 1.057447 , 0.056246 , -0.711356 , 0.700522 , 0.246519 , 0.064523 , -8.604223 , -14.088223 , 0.434221 , -0.227332 , -0.973693 , -0.014283 , 0.292552 , 0.048224 , -8.492743 , -13.891651 , -0.793528 , 0.061739 , -0.983917 , -0.167516 , 0.285006 , 0.032946 , -9.220495 , -13.976017 , -0.018370 , -0.057100 , -0.985992 , 0.156682 , 0.267306 , 0.030477 , -10.138266 , -14.033688 , 0.620694 , 0.415662 , -0.877377 , 0.239601 , 0.238195 , 0.048985 , -10.481153 , -14.228916 , 0.205217 , 0.492813 , -0.840907 , -0.223579 , 0.232627 , 0.038696 , -10.032644 , -13.956326 , -0.318114 , 0.184851 , -0.972198 , -0.143559 , 0.247553 , 0.031053 , -9.131643 , -13.693134 , 0.453790 , -0.073061 , -0.984954 , 0.156529 , 0.275800 , 0.048369 , -11.610502 , -14.525616 , 0.235650 , -0.284616 , -0.783288 , -0.552629 , 0.211815 , 0.041313 , -11.025900 , -14.661350 , 0.290639 , 0.292886 , -0.875210 , -0.384960 , 0.223420 , 0.044386 , -11.057699 , -14.726704 , 0.821260 , 0.366253 , -0.870937 , 0.327586 , 0.220580 , 0.051635 , -9.367414 , -11.761936 , 3.852903 , 0.089358 , -0.992920 , 0.078158 , 0.285377 , 0.115798 , -11.511374 , -14.855183 , 0.587896 , -0.171514 , -0.978088 , -0.117924 , 0.214793 , 0.048822 , -9.962248 , -13.715221 , 2.126710 , -0.765252 , -0.473006 , 0.436598 , 0.265550 , 0.076608 , -12.583876 , -14.151165 , 0.371309 , -0.009339 , -0.977477 , -0.210730 , 0.181133 , 0.048976 , -12.075079 , -14.501644 , 0.616903 , -0.543382 , -0.837092 , -0.063082 , 0.198344 , 0.049016 , -12.245062 , -14.121456 , 1.264772 , 0.058077 , -0.874325 , 0.481796 , 0.187990 , 0.059587 , -11.551756 , -12.741383 , 2.178167 , -0.322794 , -0.354411 , 0.877590 , 0.226556 , 0.095666 , -11.021276 , -13.099628 , 1.860048 , 0.154698 , -0.682211 , 0.714560 , 0.237310 , 0.085280 , -10.796843 , -12.559101 , 2.165246 , 0.115818 , -0.715110 , 0.689322 , 0.243856 , 0.096617 , -11.885374 , -12.869808 , 1.952855 , -0.491226 , -0.246315 , 0.835444 , 0.210969 , 0.092760 , -11.900770 , -12.434078 , 1.740564 , -0.687551 , 0.132908 , 0.713858 , 0.214433 , 0.100831 , -12.309080 , -12.491474 , 1.510953 , -0.192450 , 0.294626 , 0.936003 , 0.202308 , 0.098068 , -11.618475 , -13.323658 , 1.557569 , -0.051668 , -0.501938 , 0.863338 , 0.217002 , 0.082495 , -12.257879 , -13.079754 , 1.604177 , 0.105014 , 0.011200 , 0.994385 , 0.194620 , 0.086998 , -12.028154 , -13.753063 , 1.486531 , 0.256172 , -0.319193 , 0.912381 , 0.198532 , 0.072836 , -8.847303 , -13.904659 , 0.876374 , -0.259682 , -0.958464 , -0.117893 , 0.283444 , 0.053808 , -10.186171 , -13.505116 , 1.609044 , -0.756432 , -0.438551 , 0.485214 , 0.255898 , 0.074146 , -10.644941 , -13.122349 , 1.505162 , 0.046113 , -0.703177 , 0.709464 , 0.246032 , 0.076821 , -12.388815 , -13.767712 , 1.708707 , 0.674367 , -0.285440 , 0.680960 , 0.187047 , 0.077763 , -12.631697 , -14.223713 , 1.624917 , 0.511643 , -0.783563 , 0.352428 , 0.177543 , 0.070363 , -11.013189 , -12.395863 , 2.760907 , -0.160009 , -0.776055 , 0.609973 , 0.247200 , 0.109115 , -11.279005 , -12.444302 , 2.309125 , -0.367748 , -0.596088 , 0.713706 , 0.235996 , 0.102645 , -12.779402 , -12.873676 , 1.739770 , 0.530503 , 0.380627 , 0.757408 , 0.178048 , 0.089955 , -12.585592 , -13.558254 , 2.150365 , 0.568834 , -0.024049 , 0.822077 , 0.177532 , 0.081038 , -13.184927 , -13.852528 , 2.282972 , 0.236457 , -0.193579 , 0.952147 , 0.162731 , 0.076024 , -13.115263 , -13.098026 , 2.121457 , 0.385662 , 0.157903 , 0.908994 , 0.165261 , 0.085420 , -13.745855 , -14.696468 , 1.732991 , 0.219367 , -0.886013 , 0.408460 , 0.145861 , 0.060543 , -14.254324 , -14.901531 , 1.625276 , -0.020936 , -0.937346 , 0.347728 , 0.137676 , 0.057943 , -13.716055 , -14.749302 , 1.118356 , 0.300607 , -0.934416 , -0.190893 , 0.149615 , 0.055751 , -12.843237 , -14.230686 , 0.982412 , 0.359416 , -0.931761 , -0.050691 , 0.169389 , 0.058588 , -13.080420 , -14.339413 , 0.413190 , 0.254463 , -0.941679 , -0.220161 , 0.160449 , 0.050037 , -11.701185 , -12.118153 , 2.077855 , -0.829432 , -0.304544 , 0.468215 , 0.226450 , 0.109382 , -13.966551 , -14.227299 , 2.261697 , 0.004669 , -0.414777 , 0.909909 , 0.143774 , 0.071507 , -15.623877 , -13.844555 , 0.186708 , 0.008301 , -0.939390 , -0.342723 , 0.110604 , 0.037491 , -15.200315 , -14.181698 , 0.544271 , -0.159948 , -0.815729 , -0.555834 , 0.126816 , 0.044998 , -15.833654 , -14.459660 , 0.882871 , 0.063570 , -0.867733 , -0.492904 , 0.108917 , 0.043695 , -14.853285 , -13.884533 , 2.239553 , -0.040559 , -0.378216 , 0.924802 , 0.125388 , 0.073221 , -15.727797 , -14.524067 , 1.980703 , 0.073641 , -0.806574 , 0.586505 , 0.107450 , 0.062766 , -15.592138 , -13.783405 , 2.374986 , 0.203833 , -0.371532 , 0.905728 , 0.106625 , 0.072143 , -16.219732 , -14.401157 , 2.045667 , -0.119572 , -0.827448 , 0.548631 , 0.096051 , 0.062712 , -14.452482 , -14.872189 , 0.967942 , -0.136143 , -0.932829 , -0.333567 , 0.137916 , 0.052712 , -15.029127 , -14.618206 , 1.176946 , -0.279397 , -0.943144 , -0.179968 , 0.126345 , 0.051970 , -16.676161 , -14.412022 , 1.682149 , -0.114170 , -0.987945 , 0.104465 , 0.081099 , 0.056216 , -16.184111 , -14.682056 , 1.243863 , -0.129521 , -0.985656 , -0.108005 , 0.097339 , 0.048494 , -16.414495 , -14.061085 , 2.511998 , 0.209632 , -0.663106 , 0.718528 , 0.087708 , 0.067197 , -17.328085 , -14.376751 , 2.405294 , 0.101535 , -0.832850 , 0.544084 , 0.061537 , 0.054894 , -18.224119 , -13.541630 , 3.114171 , 0.122715 , -0.763482 , 0.634053 , 0.045211 , 0.062438 , -18.606016 , -12.725407 , 3.871362 , 0.329753 , -0.013153 , 0.943968 , 0.028261 , 0.071988 , -18.215757 , -12.992260 , 3.689737 , 0.423963 , -0.209479 , 0.881100 , 0.038025 , 0.072011 , -18.700804 , -11.817554 , 3.821191 , 0.622364 , 0.453505 , 0.637928 , 0.027339 , 0.095895 , -19.672354 , -10.739941 , 3.486886 , 0.110874 , 0.834956 , 0.539018 , 0.016770 , 0.116869 , -19.546217 , -11.468960 , 4.017880 , -0.053255 , 0.350536 , 0.935026 , 0.016752 , 0.101026 , -19.152380 , -12.128948 , 4.223668 , 0.182195 , -0.041536 , 0.982360 , 0.020027 , 0.085710 , -18.608267 , -12.254543 , 3.876378 , 0.600726 , 0.012879 , 0.799341 , 0.027402 , 0.081495 , -19.518637 , -12.779667 , 3.923879 , -0.127354 , -0.252663 , 0.959105 , 0.018609 , 0.069089 , -18.985205 , -14.314182 , 1.695077 , -0.021302 , -0.894955 , -0.445601 , 0.034225 , 0.035476 , -18.446012 , -14.159550 , 1.307569 , -0.195654 , -0.941191 , -0.275369 , 0.044861 , 0.036697 , -18.787413 , -14.467480 , 2.195894 , 0.104190 , -0.963012 , 0.248390 , 0.039704 , 0.043611 , -17.485327 , -14.572605 , 1.754827 , -0.003143 , -0.997314 , -0.072787 , 0.063365 , 0.043714 , -18.306807 , -14.442730 , 0.150113 , -0.649312 , -0.709708 , 0.273202 , 0.042277 , 0.010393 , -17.922323 , -14.660336 , 0.498739 , -0.345134 , -0.755760 , 0.556505 , 0.055664 , 0.010447 , -18.487623 , -14.079540 , 0.663800 , -0.476699 , -0.868374 , 0.136601 , 0.043344 , 0.026193 , -19.056417 , -13.865459 , 0.995179 , -0.145329 , -0.942595 , -0.300607 , 0.033571 , 0.030661 , -19.288740 , -13.645611 , 0.146543 , -0.060213 , -0.950346 , 0.305277 , 0.029500 , 0.026173 , -18.691298 , -14.225140 , -0.198306 , -0.477096 , -0.739647 , 0.474624 , 0.033186 , 0.014211 , -18.216879 , -11.996052 , 3.352123 , 0.509110 , 0.454024 , 0.731193 , 0.037279 , 0.087738 , -16.792883 , -1.965916 , 1.037252 , 0.806787 , -0.366314 , 0.463546 , 0.084935 , 0.376636 , -16.493017 , -2.221104 , 0.571649 , 0.878811 , -0.365551 , 0.306619 , 0.096609 , 0.370464 , -16.490225 , -1.801670 , 0.808202 , 0.716086 , -0.381970 , 0.584185 , 0.091824 , 0.381910 , -16.596205 , -1.420414 , 1.435056 , 0.766869 , -0.319132 , 0.556780 , 0.078802 , 0.390617 , -16.436010 , -1.246349 , 1.231927 , 0.935881 , -0.069124 , 0.345439 , 0.082340 , 0.394547 , -16.704947 , -1.714031 , 1.304090 , 0.778130 , -0.486709 , 0.396985 , 0.082633 , 0.386036 , -16.415968 , -1.467762 , 0.959382 , 0.906400 , -0.216315 , 0.362774 , 0.088875 , 0.391079 , -16.159292 , -1.914379 , 0.476758 , 0.787744 , -0.486465 , 0.377819 , 0.102776 , 0.382025 , -14.598654 , -1.059238 , 1.128915 , -0.847407 , 0.380322 , 0.370403 , 0.163878 , 0.410720 , -14.685629 , -1.282681 , 0.935678 , -0.960753 , -0.029878 , 0.275704 , 0.159847 , 0.405239 , -14.517523 , -1.575253 , 1.222776 , -0.867061 , -0.469741 , 0.165777 , 0.167626 , 0.404297 , -14.607962 , -0.852245 , 0.892576 , -0.496323 , 0.028657 , 0.867641 , 0.154973 , 0.412949 , -14.317465 , -0.831478 , 1.079999 , -0.642720 , 0.561785 , 0.520829 , 0.164568 , 0.419151 , -14.738012 , -1.227879 , 0.623780 , -0.731101 , -0.538743 , 0.418561 , 0.150622 , 0.400485 , -16.682524 , -0.029987 , 0.376413 , 0.565355 , 0.701224 , 0.434278 , 0.090269 , 0.432763 , -16.542471 , 0.030033 , -0.016005 , 0.404675 , 0.885128 , 0.229652 , 0.091713 , 0.445026 , -16.945280 , 0.192997 , 0.290311 , 0.419141 , 0.888058 , 0.188818 , 0.081059 , 0.438803 , -16.541426 , -0.702595 , 0.531984 , 0.795404 , 0.297433 , 0.528001 , 0.091361 , 0.409179 , -16.398359 , -1.008404 , 0.831720 , 0.956053 , 0.233589 , 0.177129 , 0.089564 , 0.400492 , -16.303617 , -1.002804 , 0.479406 , 0.363475 , 0.122166 , 0.923521 , 0.100029 , 0.404752 , -16.398497 , -0.171177 , 0.328531 , 0.269509 , 0.756096 , 0.596362 , 0.099911 , 0.434562 , -16.480688 , -0.419247 , 0.470437 , 0.355663 , 0.327891 , 0.875179 , 0.095957 , 0.419876 , -15.994879 , -0.380253 , 0.533311 , -0.523026 , 0.576861 , 0.627400 , 0.108840 , 0.426244 , -16.841635 , -0.105587 , 0.732812 , 0.677969 , 0.631794 , 0.375683 , 0.082811 , 0.425577 , -16.067106 , -0.236385 , 0.310956 , -0.068636 , 0.941282 , 0.330515 , 0.108971 , 0.437110 , -16.058065 , -0.735966 , 0.647710 , -0.775445 , 0.039583 , 0.630146 , 0.109697 , 0.412155 , -16.124441 , -0.121571 , -0.161799 , 0.168554 , 0.921262 , 0.350414 , 0.103865 , 0.446387 , -16.571020 , -0.678448 , 1.242482 , 0.868923 , 0.413038 , 0.272591 , 0.079946 , 0.404495 , -17.384771 , -5.651882 , 0.652040 , -0.171972 , -0.911435 , 0.373760 , 0.063345 , 0.309670 , -17.728308 , -5.641766 , 0.392110 , -0.621723 , -0.751335 , 0.221076 , 0.060000 , 0.306729 , -17.506903 , -5.778088 , 0.143464 , -0.177435 , -0.982757 , -0.051912 , 0.064902 , 0.303525 , -17.697477 , -5.496609 , 0.618314 , -0.460555 , -0.849666 , 0.256783 , 0.059643 , 0.310768 , -17.620451 , -5.082737 , 1.510881 , -0.367779 , -0.395245 , 0.841700 , 0.059381 , 0.322841 , -17.175550 , -5.267063 , 1.502465 , 0.118931 , -0.761162 , 0.637532 , 0.064138 , 0.319262 , -17.886427 , -5.395504 , 0.356984 , -0.721702 , -0.689016 , -0.066256 , 0.056144 , 0.308782 , -17.823240 , -5.481739 , 0.051107 , -0.696707 , -0.716117 , 0.041902 , 0.055973 , 0.301049 , -17.290808 , -5.707584 , 0.533811 , 0.129002 , -0.965270 , 0.227088 , 0.067548 , 0.309110 , -17.873022 , -5.437489 , 0.759336 , -0.298776 , -0.950560 , 0.084506 , 0.057021 , 0.314516 , -16.923368 , -4.377438 , 1.718747 , 0.432112 , -0.099551 , 0.896268 , 0.066352 , 0.335304 , -16.800123 , -4.758709 , 1.741277 , 0.686178 , -0.149327 , 0.711905 , 0.069008 , 0.328602 , -16.772161 , -4.556545 , 1.095189 , 0.984619 , -0.163244 , 0.062166 , 0.074479 , 0.329055 , -17.043661 , -5.630550 , 0.215108 , 0.577715 , -0.812555 , -0.076937 , 0.071860 , 0.306213 , -16.988203 , -5.569134 , 0.419927 , 0.725242 , -0.683218 , 0.084689 , 0.071367 , 0.312517 , -16.799437 , -5.224728 , 1.132692 , 0.843623 , -0.479812 , 0.240883 , 0.069575 , 0.317981 , -17.573332 , -5.398891 , 1.248677 , -0.258644 , -0.820704 , 0.509415 , 0.060144 , 0.317354 , -17.090208 , -5.587177 , 0.752366 , 0.393292 , -0.873531 , 0.286752 , 0.066278 , 0.313775 , -16.938139 , -5.131741 , 1.502359 , 0.620716 , -0.610096 , 0.492355 , 0.068040 , 0.322798 , -16.746107 , -5.222500 , 0.112485 , 0.923582 , -0.375317 , 0.078127 , 0.078621 , 0.311547 , -18.177420 , -5.244701 , 0.500261 , -0.503342 , -0.828852 , -0.244087 , 0.051521 , 0.312709 , -17.952742 , -5.299946 , 1.049188 , -0.263741 , -0.824335 , 0.500870 , 0.056858 , 0.319164 , -18.121122 , -5.094349 , 1.243772 , -0.202429 , -0.593158 , 0.779199 , 0.054615 , 0.322511 , -18.325453 , -5.327091 , 0.930730 , -0.373882 , -0.915342 , 0.149449 , 0.053446 , 0.318127 , -18.934958 , -4.572353 , 0.707994 , -0.930937 , -0.352519 , -0.095004 , 0.041509 , 0.323337 , -18.709486 , -4.791630 , 1.046182 , -0.823634 , -0.537614 , 0.180425 , 0.046943 , 0.323240 , -18.973097 , -4.354519 , 1.034570 , -0.980499 , 0.082156 , 0.178503 , 0.043295 , 0.329501 , -18.463346 , -5.095501 , 1.231221 , -0.407941 , -0.598254 , 0.689657 , 0.051122 , 0.321672 , -18.596434 , -4.744915 , 1.345704 , -0.421003 , -0.540300 , 0.728568 , 0.051066 , 0.326261 , -18.663321 , -3.057629 , 2.023263 , -0.368053 , -0.488357 , 0.791192 , 0.036247 , 0.353565 , -18.324621 , -2.975368 , 2.353681 , -0.644551 , -0.166997 , 0.746086 , 0.041336 , 0.356430 , -16.285727 , -2.954403 , 0.944932 , 0.815607 , 0.331767 , 0.474013 , 0.086000 , 0.352171 , -16.549711 , -3.300396 , 1.261319 , 0.806330 , 0.104007 , 0.582202 , 0.078981 , 0.350420 , -16.173193 , -3.309826 , 0.865945 , 0.943968 , -0.038820 , 0.327647 , 0.084758 , 0.344275 , -17.867598 , -1.291378 , 2.452100 , -0.109500 , 0.211249 , 0.971252 , 0.046229 , 0.391369 , -13.981764 , -1.800663 , 1.286062 , -0.257515 , -0.966216 , 0.010315 , 0.178272 , 0.395043 , -13.607481 , -1.979183 , 1.413018 , -0.278512 , -0.960295 , -0.015168 , 0.185003 , 0.394014 , -11.542547 , -0.758930 , 2.350831 , -0.530198 , 0.494675 , 0.688559 , 0.227924 , 0.418576 , -11.594358 , -1.328640 , 2.270719 , -0.300150 , -0.407514 , 0.862453 , 0.222413 , 0.405544 , -13.167585 , -2.013157 , 1.353391 , 0.117588 , -0.992981 , -0.011963 , 0.192412 , 0.391603 , -12.458578 , -1.942509 , 1.284864 , -0.132664 , -0.937651 , 0.321238 , 0.208775 , 0.384970 , -12.808790 , -1.968342 , 1.301557 , 0.140263 , -0.990051 , 0.009308 , 0.198816 , 0.388353 , -12.867186 , -1.782185 , 0.847310 , -0.048891 , -0.979217 , -0.196783 , 0.195280 , 0.380586 , -12.649855 , -1.802517 , 1.509748 , 0.216895 , -0.876003 , 0.430738 , 0.204019 , 0.391475 , -13.405867 , -1.950520 , 0.801385 , -0.089480 , -0.962951 , -0.254280 , 0.187190 , 0.386326 , -13.372030 , -1.825542 , 0.394578 , 0.017670 , -0.957671 , -0.287271 , 0.179851 , 0.376638 , -14.885550 , -0.831783 , 0.890130 , 0.417066 , -0.581133 , 0.698782 , 0.144174 , 0.411015 , -14.287657 , 0.025311 , 0.710897 , 0.799463 , 0.493088 , 0.343059 , 0.154808 , 0.436643 , -14.407850 , -0.293484 , 1.024064 , 0.323923 , 0.177404 , 0.929289 , 0.154316 , 0.425404 , -18.779715 , -3.422901 , 1.328363 , -0.522996 , -0.771172 , 0.362926 , 0.035095 , 0.341420 , -18.912428 , -3.452511 , 0.961309 , -0.287240 , -0.857540 , 0.426679 , 0.029810 , 0.341160 , -18.831686 , -3.605618 , 0.798486 , -0.661000 , -0.535325 , 0.525803 , 0.033335 , 0.336158 , -18.898664 , -3.288769 , 1.636899 , -0.144566 , -0.914060 , 0.378918 , 0.031276 , 0.347996 , -18.434790 , -3.369312 , 1.714860 , -0.664174 , -0.633625 , 0.396619 , 0.037954 , 0.346540 , -17.961805 , -5.249737 , 0.220437 , -0.619282 , -0.783868 , -0.044771 , 0.052706 , 0.307105 , -19.281233 , -3.620159 , 0.876237 , 0.099429 , -0.852290 , 0.513474 , 0.025448 , 0.340865 , -19.251081 , -3.347134 , 1.145082 , -0.051515 , -0.875698 , 0.480026 , 0.025977 , 0.346084 , -19.558424 , -3.339314 , 1.164354 , -0.521134 , -0.661794 , 0.538865 , 0.021247 , 0.344836 , -18.083822 , -4.744694 , 1.381124 , -0.163610 , -0.291391 , 0.942473 , 0.055808 , 0.327187 , -16.144934 , -2.925838 , 0.442327 , 0.931455 , 0.322642 , -0.168126 , 0.093509 , 0.347415 , -16.502653 , -2.565357 , 0.758439 , 0.832453 , 0.493393 , 0.252022 , 0.091141 , 0.359102 , -16.739561 , -2.356823 , 0.914373 , 0.810877 , 0.245460 , 0.531205 , 0.086074 , 0.368288 , -16.607458 , -2.793026 , 1.260797 , 0.761773 , 0.303812 , 0.572161 , 0.081662 , 0.359712 , -18.573065 , -5.147228 , 0.927617 , -0.764672 , -0.644124 , 0.018311 , 0.049529 , 0.318374 , 7.833775 , -2.731464 , 3.405019 , -0.779992 , -0.432417 , 0.452284 , 0.709346 , 0.372508 , 8.073788 , -3.239948 , 4.231591 , -0.902158 , 0.004303 , 0.431349 , 0.715850 , 0.371133 , 5.040974 , 0.041088 , 1.148519 , 0.128880 , 0.649953 , 0.748924 , 0.616526 , 0.426407 , 4.720608 , 0.291576 , 0.759557 , -0.037660 , 0.994842 , 0.093997 , 0.609153 , 0.438291 , 9.922024 , -4.604824 , 2.799367 , 0.077700 , -0.301920 , 0.950133 , 0.744584 , 0.353489 , 9.487446 , -4.092396 , 2.738603 , 0.243629 , -0.562914 , 0.789758 , 0.733255 , 0.359654 , 4.512897 , 0.063831 , 0.153981 , -0.177587 , 0.983093 , -0.044465 , 0.600891 , 0.450855 , 9.922710 , -1.080265 , 2.511010 , 0.297098 , 0.896939 , 0.327372 , 0.733011 , 0.400561 , 4.754795 , -1.321674 , 0.333871 , -0.092410 , -0.920194 , 0.380352 , 0.605968 , 0.386667 , 4.608799 , -0.945621 , 0.905854 , 0.098697 , -0.766198 , 0.634938 , 0.603161 , 0.398743 , 9.993534 , 0.852680 , 0.499101 , 0.564867 , 0.540483 , 0.623493 , 0.737803 , 0.458932 , 6.549358 , -1.622272 , 1.766408 , -0.915372 , -0.130284 , 0.380902 , 0.681110 , 0.389049 , 6.484020 , -1.027622 , 1.454168 , -0.429395 , 0.297678 , 0.852626 , 0.671774 , 0.403628 , -7.759640 , -2.936771 , 2.366590 , 0.352855 , -0.050081 , 0.934324 , 0.309597 , 0.370201 , -7.339901 , -2.834812 , 2.258672 , -0.029084 , 0.098300 , 0.994720 , 0.315590 , 0.369874 , -7.424854 , -2.363262 , 2.229177 , -0.122806 , -0.171331 , 0.977508 , 0.309274 , 0.378496 , 9.221226 , -4.118084 , 3.490518 , 0.127384 , -0.989074 , 0.074038 , 0.727966 , 0.364544 , 8.557026 , -4.135227 , 3.139314 , -0.086581 , -0.913816 , 0.396741 , 0.723747 , 0.361130 , 9.949886 , -5.055248 , 1.971277 , -0.042238 , -0.998627 , -0.030732 , 0.743781 , 0.339934 , 10.106251 , -5.001789 , 2.305581 , -0.080233 , -0.936644 , 0.340892 , 0.746580 , 0.344359 , 6.847347 , -1.104671 , 2.309148 , -0.772637 , 0.628407 , 0.089846 , 0.692226 , 0.393918 , 9.394100 , 1.105320 , 0.670614 , 0.174261 , 0.878109 , 0.445570 , 0.720982 , 0.462155 , -2.658062 , -2.134403 , 1.706594 , 0.556688 , -0.331095 , 0.761864 , 0.417004 , 0.377243 , -2.068836 , -1.901020 , 1.486375 , 0.474013 , -0.405621 , 0.781487 , 0.428594 , 0.379447 , -8.416998 , -3.926891 , 2.648038 , 0.416883 , -0.750206 , 0.513199 , 0.304015 , 0.360195 , -7.682880 , -3.322124 , 2.287687 , 0.322367 , -0.433149 , 0.841670 , 0.311098 , 0.364563 , -8.212423 , -3.105152 , 2.559091 , 0.370281 , -0.014893 , 0.928770 , 0.302459 , 0.367928 , -6.356983 , -0.335186 , 0.651658 , 0.162847 , 0.757286 , -0.632435 , 0.338066 , 0.447350 , -7.347668 , -0.208416 , 0.948800 , -0.384198 , 0.837855 , -0.387738 , 0.325408 , 0.444166 , -7.220432 , -0.638943 , 0.214227 , 0.319620 , 0.947508 , 0.004059 , 0.322741 , 0.455615 , -5.455662 , -0.762218 , 4.374238 , -0.312754 , -0.062319 , 0.947752 , 0.360607 , 0.400626 , -5.037441 , -0.364773 , 4.370126 , 0.016511 , 0.422132 , 0.906369 , 0.364507 , 0.405632 , 6.363316 , -11.950741 , 2.278291 , -0.447310 , -0.179144 , 0.876217 , 0.655351 , 0.122014 , 6.652126 , -12.197155 , 2.460660 , -0.266335 , -0.499069 , 0.824580 , 0.664567 , 0.121955 , 6.776112 , -11.644993 , 2.495965 , -0.367656 , 0.057161 , 0.928190 , 0.661939 , 0.128661 , 1.783665 , 0.138630 , -0.467753 , -0.510239 , 0.788903 , 0.342448 , 0.519092 , 0.474058 , 1.292294 , 0.042454 , -0.326335 , -0.142277 , 0.930692 , 0.336955 , 0.512430 , 0.466758 , -4.356876 , -4.530849 , 0.450773 , 0.236763 , -0.959685 , -0.151372 , 0.386322 , 0.320395 , -4.114933 , -4.438839 , -0.263407 , 0.062624 , -0.992309 , -0.106479 , 0.394010 , 0.312452 , -3.907658 , -4.437992 , 0.226728 , 0.125553 , -0.992065 , 0.006043 , 0.397786 , 0.319315 , 7.230183 , -11.699024 , 2.550443 , -0.019166 , -0.413984 , 0.910062 , 0.673803 , 0.128806 , 4.471867 , -13.663067 , -1.006942 , 0.043977 , -0.207617 , 0.977203 , 0.600185 , 0.048339 , 3.248234 , -13.800747 , -0.824023 , 0.330638 , -0.583117 , 0.742027 , 0.570568 , 0.035607 , 3.855305 , -13.849293 , -1.000903 , 0.170995 , -0.539476 , 0.824427 , 0.585333 , 0.034186 , 9.901226 , -12.318417 , 0.507169 , -0.074709 , -0.809900 , 0.581774 , 0.740773 , 0.091481 , 10.042812 , -12.017506 , 1.298879 , -0.412885 , -0.842250 , 0.346507 , 0.746377 , 0.104587 , 9.557056 , -11.749256 , 1.100034 , -0.425672 , -0.593616 , 0.682913 , 0.730701 , 0.104349 , 6.387409 , -10.548489 , 1.858205 , -0.521287 , 0.021393 , 0.853084 , 0.654048 , 0.142413 , 6.527576 , -10.253025 , 2.250806 , -0.650563 , -0.353862 , 0.671926 , 0.660347 , 0.149469 , 6.091427 , -10.014301 , 1.914319 , -0.869778 , 0.103183 , 0.482467 , 0.650272 , 0.151423 , 1.298428 , -13.657719 , -0.382727 , -0.181555 , -0.582385 , 0.792352 , 0.523145 , 0.039793 , 1.947308 , -13.682117 , -0.443171 , 0.041383 , -0.782800 , 0.620869 , 0.538927 , 0.039079 , 2.128605 , -13.255566 , 0.082525 , -0.221046 , -0.744469 , 0.629963 , 0.534263 , 0.056490 , 4.083080 , -13.274029 , -0.821360 , 0.156529 , -0.697867 , 0.698904 , 0.591617 , 0.059236 , 10.015469 , -13.686466 , -1.011081 , 0.026154 , -0.481124 , 0.876247 , 0.738266 , 0.053853 , 9.332493 , -13.743031 , -0.960440 , 0.107700 , -0.310556 , 0.944426 , 0.716064 , 0.052911 , 10.400051 , -13.911625 , -1.096091 , -0.097568 , -0.537614 , 0.837519 , 0.744512 , 0.032362 , 6.485722 , -12.414326 , 1.986158 , -0.425184 , -0.728111 , 0.537614 , 0.659095 , 0.116394 , 6.329693 , -12.633694 , 1.512399 , -0.268929 , -0.955809 , 0.118656 , 0.656230 , 0.107772 , 6.813953 , -12.603725 , 1.856691 , 0.144261 , -0.956542 , 0.253365 , 0.666793 , 0.114913 , -2.193279 , -8.819088 , 1.205468 , 0.891537 , 0.368145 , -0.263863 , 0.445452 , 0.185748 , -2.041157 , -9.159107 , 1.103978 , 0.754295 , 0.656423 , -0.010681 , 0.449053 , 0.181743 , -1.971638 , -9.113613 , 0.747430 , 0.387707 , 0.671438 , 0.631519 , 0.451222 , 0.186940 , 5.986523 , -12.257626 , 1.696077 , -0.330699 , -0.885098 , 0.327372 , 0.645550 , 0.111973 , 6.229450 , -12.351025 , 1.847577 , -0.479690 , -0.698965 , 0.530381 , 0.652572 , 0.115422 , -1.184338 , -9.431400 , 0.798097 , 0.593829 , 0.203284 , 0.778436 , 0.465329 , 0.184784 , -1.549595 , -9.195194 , 0.744710 , -0.003479 , 0.394787 , 0.918760 , 0.457542 , 0.187731 , -1.651012 , -9.358547 , 1.070138 , 0.396344 , 0.898251 , 0.189764 , 0.456550 , 0.181813 , 9.448689 , -7.290874 , 0.654279 , 0.508713 , 0.726157 , 0.462447 , 0.724114 , 0.216043 , 9.212795 , -7.055798 , 0.390828 , 0.255196 , 0.901395 , 0.349742 , 0.716748 , 0.221150 , -1.979580 , -9.118351 , 2.405290 , 0.382397 , 0.912351 , -0.146031 , 0.444346 , 0.159803 , -2.024410 , -9.007587 , 2.908899 , 0.251686 , 0.907315 , -0.336680 , 0.439696 , 0.153146 , -1.518780 , -9.084347 , 2.660112 , 0.032960 , 0.925748 , -0.376659 , 0.446938 , 0.152494 , -5.857044 , -14.045681 , -0.012343 , -0.363353 , -0.836085 , -0.410932 , 0.350708 , 0.041414 , -5.215420 , -14.794659 , 0.640092 , -0.282235 , -0.907834 , -0.310099 , 0.364308 , 0.044704 , 1.016087 , -12.227413 , 1.428369 , 0.598743 , -0.789727 , 0.133427 , 0.496599 , 0.093648 , 1.257595 , -11.904560 , 1.881749 , 0.775079 , -0.631642 , -0.016022 , 0.496723 , 0.109419 , 1.243015 , -12.105236 , 2.836065 , 0.732139 , -0.609302 , 0.304422 , 0.478772 , 0.108786 , -1.080425 , -9.306126 , 2.338899 , 0.237220 , 0.862789 , -0.446394 , 0.454668 , 0.153910 , 4.622395 , 0.582043 , -0.927816 , 0.181829 , 0.274483 , 0.944212 , 0.606333 , 0.473415 , 4.628819 , 0.208340 , -0.714129 , -0.021119 , 0.854244 , 0.519395 , 0.606433 , 0.463045 , 4.992756 , 0.467701 , -0.923964 , -0.201361 , 0.556291 , 0.806177 , 0.614014 , 0.468770 , 0.072910 , -9.107571 , 0.463014 , -0.339915 , 0.731437 , 0.591113 , 0.493933 , 0.184620 , 0.394466 , -9.161709 , 0.619542 , -0.375134 , 0.683889 , 0.625721 , 0.499460 , 0.180592 , 0.210896 , -8.959026 , 0.051252 , 0.067324 , 0.973907 , 0.216712 , 0.497686 , 0.189443 , -4.420765 , -14.741589 , 0.466130 , 0.087161 , -0.933744 , -0.347148 , 0.386822 , 0.036029 , -4.695385 , -15.017277 , 1.465669 , 0.070223 , -0.988769 , 0.131687 , 0.382203 , 0.050282 , 5.357616 , -12.359051 , 1.116578 , -0.306162 , -0.879330 , 0.364666 , 0.626579 , 0.099271 , 5.069332 , -11.952030 , 1.529714 , -0.898068 , -0.434736 , 0.066591 , 0.625025 , 0.113209 , 4.953403 , -11.846622 , 1.090486 , -0.751549 , -0.041536 , 0.658345 , 0.605100 , 0.105501 , 1.215763 , -11.151173 , 3.120198 , 0.955687 , 0.239814 , 0.170690 , 0.476079 , 0.125635 , 1.499104 , -11.581699 , 2.335130 , 0.993591 , 0.047456 , 0.102420 , 0.491342 , 0.121233 , -4.754627 , -14.311596 , 2.484311 , 0.437849 , -0.629322 , 0.642018 , 0.379956 , 0.075522 , 9.169048 , -4.818966 , 0.850057 , -0.066073 , -0.938261 , -0.339457 , 0.724945 , 0.328008 , 8.255161 , -13.784451 , -0.837985 , -0.108066 , -0.309336 , 0.944762 , 0.682666 , 0.050888 , 8.580250 , -13.036533 , -0.397727 , -0.054964 , -0.712424 , 0.699576 , 0.697396 , 0.067665 , -3.526829 , -13.736530 , 1.950094 , 0.323588 , -0.413007 , 0.851283 , 0.412803 , 0.068933 , -2.800220 , -14.222515 , 1.575948 , 0.005554 , -0.484268 , 0.874874 , 0.425029 , 0.063971 , -2.084156 , -8.484486 , 0.601323 , -0.011841 , 0.170904 , 0.985198 , 0.445276 , 0.198123 , -2.450001 , -7.987934 , 0.534906 , 0.261238 , 0.530106 , 0.806665 , 0.436986 , 0.203069 , -2.517208 , -8.435978 , 0.688272 , 0.675130 , 0.531999 , 0.511002 , 0.437189 , 0.194584 , 7.100048 , -3.665043 , 2.650048 , -0.868068 , -0.009888 , 0.496323 , 0.704548 , 0.359800 , -1.557079 , -13.218060 , 2.699262 , -0.451643 , -0.436781 , 0.777947 , 0.436319 , 0.086857 , -1.920185 , -11.882458 , 3.093290 , -0.267830 , -0.605304 , 0.749535 , 0.426240 , 0.103187 , -0.888668 , -10.068310 , 0.724458 , 0.586444 , 0.809839 , 0.014283 , 0.475411 , 0.171596 , -0.071346 , -10.237850 , 0.842336 , 0.165899 , 0.980010 , -0.109561 , 0.481507 , 0.165011 , -0.248020 , -10.173481 , 0.425191 , 0.016327 , 0.734489 , 0.678396 , 0.482753 , 0.171495 , 1.127285 , -11.037418 , 1.667848 , 0.646809 , 0.685903 , 0.333384 , 0.503034 , 0.140049 , 0.835705 , -10.634480 , 1.710069 , 0.796442 , 0.501907 , 0.337260 , 0.497844 , 0.146068 , 0.889545 , -10.825169 , 2.122281 , 0.798547 , 0.601642 , 0.018311 , 0.492414 , 0.137813 , -3.039227 , -12.297680 , 2.706659 , 0.364147 , -0.890561 , 0.272500 , 0.408733 , 0.097132 , -3.438610 , -14.631878 , 1.316205 , 0.204840 , -0.909482 , 0.361736 , 0.408280 , 0.039294 , -1.750751 , -14.718327 , 1.190252 , 0.118503 , -0.929746 , 0.348552 , 0.438299 , 0.032070 , 8.476414 , -13.940701 , -0.838935 , 0.019501 , -0.697195 , 0.716605 , 0.706376 , 0.040000 , 7.774685 , -13.901005 , -0.952750 , -0.158849 , -0.222633 , 0.961852 , 0.680659 , 0.032673 , 8.898083 , -13.952213 , -0.869258 , 0.064058 , 0.809320 , 0.583819 , 0.707982 , 0.031174 , -3.634869 , -14.601421 , 0.535127 , 0.189123 , -0.963256 , -0.190588 , 0.400905 , 0.028870 , -3.993122 , -14.259083 , -0.426970 , 0.003510 , -0.900479 , -0.434828 , 0.394445 , 0.022192 , -3.186275 , -14.403652 , -0.075373 , -0.071017 , -0.976501 , -0.203345 , 0.414069 , 0.017961 , 7.518124 , -12.024395 , 2.311193 , 0.359203 , -0.669698 , 0.649922 , 0.676089 , 0.118908 , -5.984341 , -13.658855 , -0.768489 , -0.144139 , -0.953001 , -0.266457 , 0.341957 , 0.036657 , 6.060452 , -13.566372 , -1.009352 , -0.054079 , -0.234535 , 0.970580 , 0.627029 , 0.059987 , 5.075008 , -13.812710 , -1.008719 , 0.002197 , -0.002930 , 0.999969 , 0.614998 , 0.035257 , 7.043392 , -13.603916 , -1.012903 , -0.056642 , -0.219245 , 0.973998 , 0.652568 , 0.048982 , 6.491207 , -13.876034 , -1.010493 , -0.005310 , 0.019623 , 0.999786 , 0.649442 , 0.033403 , 7.609165 , -13.294071 , -0.798953 , -0.149602 , -0.525559 , 0.837489 , 0.672037 , 0.067529 , 9.090282 , -12.256588 , 0.722123 , 0.061678 , -0.653432 , 0.754418 , 0.719185 , 0.092836 , 9.534519 , -12.868191 , -0.230010 , -0.001099 , -0.760002 , 0.649892 , 0.727173 , 0.072717 , 6.126766 , -12.513485 , 0.470308 , 0.079745 , -0.965606 , 0.247414 , 0.646469 , 0.091445 , 6.108761 , -12.891193 , -0.506144 , 0.019471 , -0.845241 , 0.534013 , 0.636893 , 0.075585 , -5.458431 , -14.792858 , 2.132470 , -0.112552 , -0.944700 , 0.307901 , 0.357579 , 0.059771 , -7.758137 , -13.808971 , -0.667613 , 0.058351 , -0.983642 , -0.170324 , 0.302873 , 0.035366 , 4.171406 , 0.670918 , -0.802188 , 0.485031 , 0.215674 , 0.847438 , 0.595626 , 0.473996 , 3.768429 , 0.495426 , -0.397258 , 0.651845 , 0.353679 , 0.670797 , 0.584516 , 0.468052 , -2.425426 , -14.647114 , 0.603322 , -0.191198 , -0.981445 , -0.013977 , 0.426264 , 0.023688 , 7.522305 , -12.220875 , 1.626195 , 0.362377 , -0.927122 , 0.095431 , 0.673670 , 0.110461 , 8.417446 , -12.523579 , 0.476472 , -0.146397 , -0.772362 , 0.618030 , 0.701980 , 0.083474 , 10.229725 , -7.515507 , 1.850812 , -0.722922 , 0.673879 , 0.152501 , 0.752599 , 0.197151 , 10.004307 , -7.694950 , 1.439748 , -0.757744 , 0.652181 , -0.021332 , 0.747843 , 0.200258 , 9.810261 , -8.056889 , 1.697175 , -0.875393 , 0.374401 , 0.305704 , 0.742919 , 0.193948 , 7.848682 , -12.750912 , -0.217921 , -0.156926 , -0.755669 , 0.635823 , 0.684470 , 0.078513 , 2.787754 , -13.473804 , -0.263903 , 0.134800 , -0.923276 , 0.359661 , 0.559368 , 0.045177 , 6.784138 , -1.656475 , 2.626294 , -0.995972 , -0.085757 , 0.024995 , 0.694527 , 0.385316 , 6.939625 , -2.087826 , 2.087919 , -0.860805 , -0.487899 , 0.144688 , 0.689560 , 0.378908 , 9.838123 , -11.367168 , 1.819284 , -0.688253 , -0.565233 , 0.454726 , 0.738810 , 0.117368 , 10.109798 , -11.448551 , 2.388147 , -0.696310 , -0.485641 , 0.528459 , 0.754168 , 0.125076 , 9.951885 , -10.566509 , 2.434060 , -0.424940 , -0.358654 , 0.831111 , 0.739679 , 0.135773 , -4.721691 , -4.690655 , 0.821214 , 0.178503 , -0.962188 , -0.205695 , 0.378132 , 0.327335 , -3.909023 , -4.773708 , 1.574600 , 0.282266 , -0.954161 , 0.099460 , 0.386203 , 0.341232 , 6.059566 , -9.781727 , 1.229173 , -0.580737 , 0.435469 , 0.687796 , 0.639394 , 0.160032 , 5.625065 , -9.579700 , 1.179651 , -0.363903 , 0.220618 , 0.904904 , 0.631654 , 0.164445 , 5.646152 , -10.039845 , 1.131917 , -0.673055 , 0.208075 , 0.709677 , 0.629383 , 0.155425 , 10.346783 , -12.035656 , 1.924379 , -0.294595 , -0.878689 , 0.375622 , 0.755062 , 0.112393 , 10.271435 , -10.909145 , 2.805990 , -0.758690 , -0.184820 , 0.624653 , 0.755368 , 0.135900 , 7.518284 , -12.297016 , 0.178113 , 0.053224 , -0.896237 , 0.440321 , 0.684277 , 0.090178 , 3.575596 , -13.196720 , 0.618593 , 0.361736 , -0.922117 , 0.137211 , 0.571367 , 0.072298 , 3.536335 , -13.218616 , -0.422862 , 0.318186 , -0.877224 , 0.359447 , 0.576154 , 0.057084 , 8.075802 , -12.067867 , 1.754205 , 0.463637 , -0.850276 , 0.249001 , 0.687496 , 0.110721 , -0.136532 , -13.594395 , -0.848891 , 0.451369 , -0.891934 , 0.025636 , 0.492541 , 0.037589 , -0.945972 , -14.596516 , 0.218431 , 0.563494 , -0.821436 , 0.087436 , 0.468557 , 0.012315 , 0.401440 , -12.707691 , 1.241697 , 0.613147 , -0.789941 , -0.001556 , 0.489183 , 0.078591 , 0.250210 , -12.677273 , 2.108564 , 0.629902 , -0.763359 , 0.142979 , 0.476669 , 0.089146 , -4.966114 , -13.963825 , -0.800322 , -0.211310 , -0.850063 , -0.482345 , 0.370780 , 0.030834 , 0.638805 , -13.486057 , -0.482322 , 0.160772 , -0.899075 , 0.407117 , 0.507102 , 0.044818 , 1.394909 , -12.956539 , 0.077333 , -0.122166 , -0.543321 , 0.830561 , 0.511509 , 0.059231 , -2.000408 , -3.401295 , 1.039464 , 0.279641 , -0.400220 , 0.872677 , 0.429102 , 0.352119 , 2.576458 , -1.145855 , 0.569146 , -0.330058 , -0.830653 , 0.448378 , 0.545758 , 0.384397 , 6.040981 , -2.953854 , -0.182429 , -0.728233 , -0.298624 , 0.616810 , 0.639865 , 0.344942 , 5.411358 , -10.230709 , 0.866472 , -0.788018 , -0.025697 , 0.615070 , 0.618236 , 0.150334 , 5.346676 , -9.673244 , 0.952119 , -0.691000 , 0.077883 , 0.718619 , 0.621184 , 0.162094 , -18.432539 , -0.021969 , 2.231397 , 0.465194 , 0.522599 , 0.714438 , 0.036931 , 0.412224 , -18.795027 , 0.491405 , 1.855169 , 0.062136 , 0.899960 , 0.431471 , 0.036229 , 0.425978 , -18.844915 , 0.197086 , 2.295385 , -0.049257 , 0.674856 , 0.736259 , 0.029947 , 0.417321 , 6.818623 , -1.036083 , 1.864793 , -0.556719 , 0.783166 , 0.276894 , 0.684720 , 0.400277 , 4.505863 , -12.952305 , -0.167166 , 0.173132 , -0.924680 , 0.339061 , 0.603377 , 0.075515 , 4.218288 , -12.943462 , 0.362478 , 0.334391 , -0.894742 , 0.295938 , 0.588683 , 0.074111 , 5.903133 , -12.295193 , 1.124158 , -0.255196 , -0.949461 , 0.182623 , 0.642080 , 0.104079 , 5.080677 , -11.428608 , 1.297635 , -0.969390 , 0.245399 , -0.001984 , 0.616680 , 0.122173 , -1.938625 , -14.832378 , 0.147252 , -0.072848 , -0.993774 , 0.083895 , 0.444414 , 0.005412 , 1.887218 , -12.577190 , 0.518613 , -0.385540 , -0.682516 , 0.620838 , 0.523105 , 0.077450 , 3.097736 , -13.264042 , 0.931466 , -0.127323 , -0.847560 , 0.515183 , 0.549489 , 0.078237 , 2.538692 , -12.491093 , 1.186422 , -0.411267 , -0.392102 , 0.822840 , 0.533935 , 0.095558 , 1.170147 , -12.316227 , 0.399572 , -0.051790 , -0.817896 , 0.572985 , 0.508150 , 0.073832 , 0.897144 , -12.301929 , 0.870397 , 0.383374 , -0.922697 , 0.040193 , 0.500014 , 0.079758 , 0.452915 , -12.512478 , 0.329332 , 0.473067 , -0.712729 , 0.517869 , 0.497335 , 0.068836 , -1.493061 , -7.911823 , 0.093526 , 0.308023 , 0.924497 , 0.224464 , 0.452626 , 0.211874 , -1.056286 , -8.157543 , 0.102254 , 0.669424 , 0.708335 , 0.223853 , 0.462672 , 0.207632 , -1.286808 , -7.961468 , -0.375384 , 0.515488 , 0.839595 , 0.171270 , 0.461480 , 0.217283 , -0.960148 , -9.782513 , 0.480542 , 0.686483 , 0.055635 , 0.724967 , 0.473439 , 0.178838 , -2.964191 , -11.939281 , 3.430307 , 0.329081 , -0.654317 , 0.680837 , 0.407881 , 0.107327 , 5.566845 , -10.305950 , 1.219136 , -0.848781 , 0.452712 , 0.273080 , 0.627386 , 0.145636 , 0.795521 , -2.000355 , 0.201421 , 0.286721 , -0.856533 , 0.429090 , 0.504810 , 0.364265 , -19.386786 , -0.275623 , 2.161142 , -0.743248 , 0.504257 , 0.439589 , 0.022164 , 0.415977 , 4.559986 , -11.284557 , 0.614259 , 0.650899 , 0.149632 , 0.744255 , 0.596477 , 0.128307 , 4.507710 , -11.735546 , 0.920297 , 0.668294 , 0.057405 , 0.741630 , 0.588382 , 0.116705 , 4.896572 , -11.517361 , 0.669801 , -0.392865 , 0.470382 , 0.790155 , 0.604094 , 0.122037 , -2.888332 , -2.581921 , 1.872533 , 0.714194 , 0.092257 , 0.693808 , 0.411992 , 0.371446 , -0.230190 , -8.857838 , -0.188529 , 0.309275 , 0.924406 , 0.223029 , 0.490691 , 0.196413 , -0.203381 , -9.031178 , 0.128206 , 0.073122 , 0.798700 , 0.597217 , 0.489109 , 0.188480 , 0.789127 , -11.391499 , 4.151311 , 0.595447 , -0.361888 , 0.717246 , 0.468404 , 0.118969 , 0.272945 , -11.801746 , 3.817662 , 0.212531 , -0.729759 , 0.649800 , 0.462568 , 0.112501 , -0.420055 , -9.205959 , 0.304078 , 0.315470 , 0.568285 , 0.759911 , 0.482906 , 0.185933 , -0.554142 , -8.773083 , 0.117624 , 0.625050 , 0.656331 , 0.422437 , 0.479916 , 0.194539 , -0.735394 , -9.153149 , 0.642965 , 0.642811 , 0.017548 , 0.765801 , 0.475228 , 0.186232 , -4.127689 , -14.570736 , 1.884115 , 0.410260 , -0.638661 , 0.650960 , 0.398311 , 0.061023 , 4.216434 , 0.274509 , -0.609671 , 0.358104 , 0.726066 , 0.586963 , 0.595791 , 0.463373 , 0.780537 , -9.008228 , 0.629464 , -0.197516 , 0.970000 , 0.141667 , 0.510056 , 0.179266 , 0.841084 , -9.063587 , 0.060277 , 0.055940 , 0.998383 , -0.009583 , 0.511976 , 0.187788 , 0.418102 , -8.992672 , 0.094062 , 0.099521 , 0.990265 , 0.097232 , 0.505191 , 0.187514 , -2.835842 , -8.722324 , 2.979978 , -0.185125 , 0.981964 , 0.038362 , 0.418972 , 0.157910 , -2.372906 , -8.890316 , 2.708440 , 0.374767 , 0.920499 , -0.110446 , 0.431828 , 0.158482 , -2.625271 , -8.788769 , 2.534673 , 0.276467 , 0.899319 , 0.338694 , 0.424311 , 0.166657 , 1.348186 , -9.712688 , -0.268481 , 0.734397 , -0.301492 , 0.608020 , 0.534662 , 0.173343 , 1.591221 , -10.182301 , -0.371806 , 0.620960 , -0.010315 , 0.783746 , 0.536764 , 0.171741 , 1.780109 , -9.753132 , -0.101405 , -0.205115 , -0.516068 , 0.831599 , 0.537749 , 0.174750 , -2.320873 , -8.886745 , 0.693288 , 0.673849 , 0.568072 , 0.472396 , 0.445247 , 0.191030 , -1.391430 , -8.116528 , 0.585313 , 0.313913 , 0.694540 , 0.647298 , 0.454946 , 0.204983 , -2.242298 , -8.892254 , 2.418901 , 0.613910 , 0.765801 , 0.191351 , 0.435196 , 0.166945 , 0.688732 , -9.316990 , 1.064714 , -0.745323 , 0.333628 , 0.577166 , 0.504180 , 0.172802 , 7.787220 , -0.889301 , 1.690236 , -0.259835 , 0.909574 , 0.324229 , 0.697505 , 0.414413 , 7.074444 , -0.889835 , 1.423459 , -0.093661 , 0.769555 , 0.631642 , 0.684456 , 0.411645 , 10.303722 , -7.504978 , 1.146123 , -0.641163 , 0.764000 , -0.071810 , 0.749395 , 0.207018 , 9.896854 , -7.872654 , 1.226224 , -0.666616 , 0.700583 , 0.254494 , 0.741985 , 0.202368 , 0.330181 , -10.110912 , 1.565423 , 0.316630 , 0.947691 , 0.039918 , 0.486036 , 0.157375 , 0.371944 , -10.263981 , 0.907792 , -0.309824 , 0.942198 , 0.127323 , 0.490479 , 0.163555 , -17.349539 , -4.192104 , 2.244218 , 0.237953 , -0.934538 , 0.264504 , 0.059521 , 0.342519 , -1.886997 , -8.056408 , 0.534074 , 0.018036 , 0.646596 , 0.762596 , 0.446614 , 0.206127 , -1.644512 , -8.423161 , 0.710279 , -0.149663 , 0.206244 , 0.966979 , 0.452167 , 0.200343 , 4.672573 , -8.697376 , -0.547061 , -0.415418 , 0.653859 , 0.632344 , 0.599567 , 0.200959 , 5.527798 , -0.054424 , 1.147878 , 0.198187 , 0.608692 , 0.768212 , 0.633611 , 0.429259 , -1.873775 , -8.798054 , 0.661069 , -0.114658 , 0.140599 , 0.983398 , 0.453333 , 0.193530 , -1.206341 , -8.561436 , 0.784959 , 0.261605 , 0.493271 , 0.829585 , 0.460569 , 0.198935 , -3.646542 , -11.752598 , 4.113374 , 0.077883 , -0.420087 , 0.904111 , 0.396185 , 0.114703 , 4.931072 , -10.929066 , 0.677236 , -0.345317 , 0.269173 , 0.899045 , 0.605850 , 0.131532 , -2.793568 , -8.131115 , 0.736684 , 0.803217 , 0.544969 , 0.240425 , 0.427786 , 0.198555 , -7.234951 , -3.247448 , 2.370519 , -0.259194 , -0.326212 , 0.909024 , 0.322371 , 0.362373 , -6.778934 , -3.394947 , 2.550935 , -0.636189 , -0.602435 , 0.481948 , 0.337707 , 0.366064 , -6.778553 , -2.715031 , 2.351983 , -0.721671 , -0.202155 , 0.662038 , 0.325642 , 0.373817 , 0.115498 , -9.771313 , 0.457971 , -0.220435 , -0.390973 , 0.893582 , 0.488561 , 0.172365 , 0.369457 , -9.614605 , 0.680421 , -0.589068 , -0.158940 , 0.792261 , 0.495792 , 0.172285 , 0.039211 , -9.438793 , 0.642022 , -0.284677 , 0.059542 , 0.956755 , 0.489370 , 0.180065 , -0.977970 , -8.849110 , 0.884404 , 0.464919 , 0.224586 , 0.856380 , 0.468844 , 0.192932 , -0.681934 , -10.049564 , 0.304704 , 0.309214 , 0.435408 , 0.845454 , 0.479346 , 0.175656 , -0.312450 , -9.854031 , 0.374273 , -0.148625 , -0.168737 , 0.974364 , 0.484193 , 0.175985 , -0.458569 , -9.522457 , 0.492154 , 0.061190 , -0.079104 , 0.994964 , 0.480777 , 0.180436 , 0.135052 , -10.202709 , 0.428773 , 0.019135 , 0.788965 , 0.614093 , 0.487300 , 0.168455 , -12.496565 , -13.798214 , -0.409129 , -0.054903 , -0.923734 , -0.379040 , 0.185520 , 0.041645 , -12.808203 , -13.610348 , -0.893603 , 0.091006 , -0.881558 , -0.463149 , 0.180285 , 0.035451 , -11.979925 , -13.854740 , -0.880606 , -0.262703 , -0.920011 , -0.290750 , 0.200192 , 0.034027 , -12.019728 , -14.140278 , -0.068091 , -0.325266 , -0.839839 , -0.434553 , 0.198401 , 0.040528 , -13.123732 , -14.145199 , -0.265071 , 0.145085 , -0.898587 , -0.414106 , 0.167838 , 0.043553 , -11.162664 , -13.672306 , 1.376752 , 0.223060 , -0.385418 , 0.895352 , 0.232579 , 0.073618 , -11.691961 , -14.611660 , 1.060888 , -0.218513 , -0.752037 , 0.621784 , 0.212172 , 0.056475 , -7.102924 , -10.715847 , 5.110276 , 0.536088 , -0.226478 , 0.813166 , 0.315627 , 0.127879 , -7.765942 , -10.614025 , 5.420148 , 0.258339 , 0.007508 , 0.966002 , 0.305754 , 0.127908 , 0.125675 , -10.023594 , 1.891977 , 0.568773 , 0.821741 , -0.034669 , 0.479722 , 0.153703 , 0.581951 , -10.433041 , 1.876741 , 0.691977 , 0.692526 , 0.203803 , 0.486192 , 0.147074 , -1.676060 , -7.821850 , -0.426463 , 0.310312 , 0.914396 , 0.259896 , 0.450909 , 0.219785 , -0.372128 , -9.340847 , 3.111539 , 0.544572 , 0.835475 , -0.073336 , 0.461990 , 0.140691 , -0.629505 , -9.416584 , 2.488435 , 0.415387 , 0.830683 , -0.370617 , 0.458748 , 0.147628 , -13.444510 , -13.718235 , -0.947360 , 0.077731 , -0.861995 , -0.500870 , 0.164571 , 0.038022 , -13.958258 , -13.965405 , -0.460200 , -0.150151 , -0.929929 , -0.335673 , 0.151046 , 0.040155 , -14.107138 , -13.792774 , -0.973422 , -0.023530 , -0.949583 , -0.312571 , 0.148454 , 0.035840 , -10.359915 , -12.225666 , 2.456434 , 0.090640 , -0.882382 , 0.461684 , 0.258263 , 0.100555 , -14.246420 , -14.382244 , 0.355066 , -0.087466 , -0.792291 , -0.603809 , 0.142630 , 0.048551 , -2.137707 , -7.773937 , 0.066678 , 0.139836 , 0.959502 , 0.244514 , 0.438324 , 0.212824 , -2.565975 , -8.274593 , 1.191987 , 0.760949 , 0.620319 , 0.190008 , 0.428848 , 0.189443 , -2.596157 , -7.672352 , 0.332395 , 0.354686 , 0.857387 , 0.372875 , 0.426659 , 0.208289 , -5.652271 , -10.031361 , 2.782068 , 0.738487 , -0.229469 , 0.633961 , 0.358585 , 0.133403 , -13.198240 , -14.516041 , 1.896104 , 0.401715 , -0.784936 , 0.471633 , 0.159635 , 0.066989 , 6.933987 , -1.065479 , 2.917547 , -0.827143 , 0.551317 , -0.108860 , 0.698617 , 0.389918 , 9.215481 , -7.244366 , 0.898824 , 0.522385 , 0.796075 , 0.305521 , 0.716942 , 0.212847 , 0.509991 , -10.123753 , 2.781858 , 0.713218 , 0.679464 , -0.172094 , 0.474186 , 0.137742 , -14.671507 , -13.778637 , -0.709910 , -0.093081 , -0.985137 , -0.144139 , 0.134728 , 0.036254 , -14.432402 , -13.847309 , -0.208819 , -0.190802 , -0.928098 , -0.319712 , 0.138585 , 0.042370 , -15.342550 , -13.830547 , -0.281321 , -0.105350 , -0.972411 , -0.208106 , 0.124579 , 0.039670 , -13.891996 , -14.226551 , 0.135419 , -0.076418 , -0.873562 , -0.480636 , 0.152108 , 0.044920 , 10.057011 , -6.995434 , -0.546092 , 0.027833 , 0.999481 , -0.014649 , 0.736423 , 0.239331 , -10.916807 , -14.357342 , 1.153707 , 0.369274 , -0.500076 , 0.783288 , 0.229830 , 0.062419 , 10.436672 , -7.526447 , 0.544252 , -0.424451 , 0.837886 , 0.343120 , 0.752585 , 0.217575 , 10.117474 , -7.562054 , 0.531423 , -0.027009 , 0.770653 , 0.636647 , 0.745412 , 0.218533 , -17.495535 , -14.321682 , 1.045202 , 0.018036 , -0.992035 , 0.124607 , 0.063264 , 0.032165 , 7.572765 , -4.714222 , 2.069978 , -0.525101 , -0.811426 , 0.256539 , 0.711592 , 0.349374 , 2.090397 , -10.224308 , -0.118121 , -0.688955 , 0.495804 , 0.528642 , 0.539269 , 0.170871 , -1.024441 , -8.921001 , 2.923723 , 0.245003 , 0.948698 , -0.199805 , 0.451478 , 0.147433 , -16.950636 , -14.136845 , 0.975698 , -0.044771 , -0.992309 , 0.115329 , 0.078650 , 0.043140 , -11.778181 , -11.838367 , 2.708799 , -0.806269 , -0.135716 , 0.575732 , 0.239373 , 0.119004 , -16.087301 , -9.955624 , 1.940118 , 0.083682 , 0.549577 , 0.831233 , 0.087653 , 0.132710 , -15.731459 , -10.274525 , 1.938195 , 0.383801 , -0.091525 , 0.918851 , 0.096994 , 0.131322 , -15.542158 , -9.812725 , 1.814023 , 0.387219 , 0.611164 , 0.690268 , 0.096868 , 0.138235 , -16.309790 , -14.103527 , 0.319135 , 0.285134 , -0.923795 , -0.255440 , 0.099770 , 0.035141 , -16.453840 , -14.189800 , -0.191100 , 0.461318 , -0.886898 , 0.023041 , 0.091378 , 0.024220 , -15.242598 , -14.100414 , 2.058908 , 0.123783 , -0.584887 , 0.801599 , 0.116548 , 0.067671 , 1.291439 , -11.302303 , 2.110696 , 0.755150 , 0.637959 , 0.150731 , 0.499421 , 0.131101 , -17.860296 , -14.493076 , 2.058736 , -0.120365 , -0.972137 , 0.201117 , 0.050356 , 0.047189 , -17.659346 , -12.179722 , 3.183934 , 0.411481 , 0.362774 , 0.836085 , 0.050421 , 0.086075 , -15.583021 , -13.734692 , -0.839724 , 0.125340 , -0.984375 , -0.123447 , 0.112797 , 0.032528 , -16.771872 , -14.324238 , 0.626718 , 0.187964 , -0.974731 , 0.120609 , 0.088181 , 0.035195 , -15.594946 , -14.574619 , 1.396531 , 0.039308 , -0.998993 , -0.020478 , 0.113760 , 0.052962 , 1.184597 , -9.075420 , 0.331304 , 0.113163 , 0.977447 , 0.178167 , 0.519741 , 0.182888 , 1.048420 , -9.027172 , -0.181853 , -0.490005 , 0.800317 , 0.345439 , 0.519227 , 0.192453 , -2.461269 , -8.643345 , 2.282224 , 0.539628 , 0.803644 , 0.250801 , 0.428753 , 0.173766 , 0.366566 , -10.090679 , 0.147725 , -0.383190 , 0.167638 , 0.908292 , 0.489063 , 0.169794 , -0.045727 , -10.897274 , 4.612145 , -0.120090 , -0.362896 , 0.924039 , 0.455850 , 0.119096 , -0.831463 , -8.561214 , 0.268277 , 0.702963 , 0.611652 , 0.362865 , 0.470732 , 0.201565 , -13.237188 , -12.525402 , 2.221608 , 0.656545 , 0.033418 , 0.753502 , 0.167256 , 0.095118 , 10.191708 , -7.182293 , 0.300023 , 0.013489 , 0.792993 , 0.609027 , 0.743740 , 0.224408 , 0.848881 , -10.167690 , 1.390996 , -0.371563 , 0.392560 , 0.841304 , 0.500623 , 0.156551 , -14.098707 , -14.536930 , 1.969430 , -0.008850 , -0.684378 , 0.729057 , 0.139935 , 0.064421 , -0.622410 , 0.259953 , -0.060862 , 0.389935 , 0.914029 , 0.111606 , 0.466378 , 0.462708 , -1.041531 , 0.543903 , -0.124812 , 0.442305 , 0.884335 , 0.149327 , 0.455675 , 0.467257 , -4.217648 , -3.509380 , 2.708432 , 0.395123 , -0.755608 , 0.522385 , 0.378678 , 0.364035 , -5.790844 , -2.261242 , 3.832490 , -0.140507 , 0.072604 , 0.987396 , 0.358513 , 0.385584 , -6.111423 , -1.920437 , 3.745496 , -0.153172 , -0.011048 , 0.988128 , 0.352828 , 0.391248 , -6.291721 , -2.392330 , 3.756562 , -0.324534 , 0.114200 , 0.938932 , 0.347617 , 0.384927 , -6.746449 , -0.029194 , 3.099046 , -0.063936 , 0.358501 , 0.931303 , 0.339367 , 0.414296 , -7.172291 , 0.172604 , 2.940206 , -0.436689 , 0.644978 , 0.627094 , 0.331760 , 0.415605 , -6.766918 , -0.684612 , 3.149610 , -0.324564 , 0.282327 , 0.902737 , 0.337094 , 0.408802 , -1.337704 , -3.566814 , 0.832036 , 0.770775 , -0.632771 , 0.073824 , 0.439340 , 0.347452 , -1.584255 , -3.721531 , 0.885957 , 0.235450 , -0.853664 , 0.464522 , 0.433630 , 0.345621 , -1.856495 , -3.861172 , 0.447568 , 0.489731 , -0.862056 , 0.130253 , 0.432949 , 0.337491 , -7.047619 , -2.117863 , 2.922536 , -0.899716 , -0.329875 , 0.285745 , 0.324933 , 0.385533 , -6.838329 , -2.329426 , 3.516221 , -0.745354 , -0.284005 , 0.603107 , 0.337142 , 0.385992 , -7.059322 , -1.657734 , 3.408769 , -0.844050 , 0.081668 , 0.529954 , 0.332731 , 0.392391 , -8.392660 , -0.567707 , 1.629812 , 0.173040 , 0.962218 , -0.210089 , 0.292839 , 0.431978 , -8.994047 , -0.358807 , 1.556997 , 0.273812 , 0.961760 , -0.005402 , 0.281549 , 0.431934 , -1.151928 , -3.190990 , 0.659673 , 0.953490 , -0.253121 , 0.163610 , 0.445518 , 0.350111 , -1.385952 , -3.441319 , 1.097501 , 0.464766 , -0.216590 , 0.858516 , 0.437487 , 0.351094 , -9.153807 , -1.315075 , 2.899137 , 0.006226 , -0.020875 , 0.999756 , 0.273043 , 0.399863 , -9.444662 , -1.771023 , 2.908208 , -0.074801 , 0.075350 , 0.994324 , 0.264594 , 0.390876 , -5.809681 , -0.450436 , 3.861131 , -0.576861 , 0.577929 , 0.577227 , 0.355834 , 0.406084 , -6.261059 , -0.401600 , 3.204156 , -0.344584 , 0.553453 , 0.758232 , 0.347172 , 0.412344 , -6.490383 , -1.060162 , 3.594514 , -0.578845 , 0.373058 , 0.725059 , 0.345186 , 0.403194 , -2.472111 , -3.404972 , 1.551584 , 0.771691 , -0.167425 , 0.613544 , 0.416231 , 0.352587 , -5.844906 , 0.213772 , 2.322335 , 0.388623 , 0.918912 , -0.067415 , 0.348634 , 0.426888 , -2.449223 , 0.782627 , 0.176206 , 0.065767 , 0.952483 , 0.297372 , 0.419640 , 0.467014 , -2.768795 , -3.564945 , 1.861223 , 0.621052 , -0.233985 , 0.747978 , 0.408453 , 0.355838 , -2.971806 , -3.960049 , 1.792127 , 0.553545 , -0.486038 , 0.676229 , 0.405049 , 0.349879 , -5.002880 , -4.625225 , 1.820054 , -0.452345 , -0.506363 , 0.734092 , 0.367600 , 0.343696 , -4.483143 , -4.642445 , 1.974908 , -0.067446 , -0.712638 , 0.698233 , 0.374858 , 0.344369 , -4.925144 , -4.170238 , 2.088475 , -0.374737 , -0.576067 , 0.726402 , 0.366722 , 0.349041 , -9.562696 , -2.502682 , 1.915307 , -0.856960 , -0.492386 , 0.152196 , 0.264208 , 0.361155 , -9.417295 , -2.297176 , 1.131490 , -0.744774 , -0.629902 , -0.220161 , 0.260245 , 0.353291 , -9.514303 , -2.557873 , 1.519857 , -0.975860 , -0.148991 , -0.159551 , 0.268576 , 0.354264 , -2.615284 , -3.901318 , 1.471105 , 0.741691 , -0.548967 , 0.385327 , 0.411206 , 0.344369 , -2.299610 , -3.737789 , 0.756307 , 0.419294 , -0.743126 , 0.521470 , 0.422256 , 0.342227 , -8.941107 , -3.461445 , 2.812581 , -0.573107 , 0.131169 , 0.808893 , 0.296520 , 0.364057 , -9.109816 , -3.405216 , 2.315263 , -0.945555 , -0.305399 , 0.112339 , 0.289932 , 0.361009 , -8.872610 , -3.944111 , 2.664438 , -0.526414 , -0.785089 , 0.326273 , 0.297706 , 0.360027 , -3.144398 , -2.846210 , 2.258111 , 0.607257 , -0.027436 , 0.794000 , 0.402791 , 0.368656 , -3.538723 , -3.236935 , 2.340310 , 0.559221 , -0.288247 , 0.777276 , 0.391414 , 0.365688 , -3.179546 , -3.587406 , 2.040868 , 0.467269 , -0.258553 , 0.845424 , 0.400166 , 0.358328 , -8.628263 , -0.471897 , 2.028985 , 0.226691 , 0.963622 , 0.141362 , 0.290441 , 0.423156 , -9.305704 , -2.741467 , 0.887732 , -0.973907 , -0.103763 , -0.201788 , 0.267961 , 0.346329 , -6.703167 , -1.633419 , 3.659639 , -0.468093 , 0.092654 , 0.878780 , 0.343315 , 0.393710 , -6.952808 , -1.162151 , 3.218084 , -0.653310 , 0.182409 , 0.734764 , 0.334458 , 0.400292 , -7.933460 , -1.200481 , 2.613008 , 0.052400 , -0.153539 , 0.986724 , 0.303879 , 0.398103 , -7.299259 , -1.784306 , 2.412328 , -0.580889 , -0.265603 , 0.769402 , 0.312867 , 0.391737 , -7.476704 , -1.200397 , 2.615228 , -0.450728 , -0.321909 , 0.832575 , 0.313273 , 0.402298 , -9.331221 , -3.363827 , 0.862134 , -0.944731 , -0.179174 , 0.274483 , 0.276261 , 0.339248 , -9.244543 , -3.059772 , 0.337396 , -0.991974 , 0.100620 , -0.076144 , 0.266295 , 0.336082 , -9.235708 , -3.559689 , 0.310529 , -0.944029 , -0.218207 , -0.247353 , 0.274289 , 0.332211 , -8.006506 , -0.761044 , 1.248597 , -0.120914 , 0.979217 , -0.162755 , 0.298955 , 0.436828 , -7.667187 , -0.600918 , 0.990224 , -0.678243 , 0.731468 , -0.070040 , 0.309551 , 0.439368 , 2.960827 , -1.300564 , 0.881765 , -0.269723 , -0.844234 , 0.463118 , 0.556594 , 0.387966 , 2.764179 , -1.411175 , 0.089376 , -0.038881 , -0.952361 , 0.302408 , 0.551130 , 0.374615 , 3.380260 , -1.466183 , 0.260286 , 0.067415 , -0.990478 , 0.119907 , 0.564270 , 0.378375 , -2.446812 , -2.429447 , 1.394277 , 0.552721 , -0.172124 , 0.815363 , 0.421201 , 0.370162 , 1.077908 , -0.102840 , -0.064921 , -0.176855 , 0.952391 , 0.248238 , 0.508290 , 0.456247 , -6.795063 , -2.600018 , 3.071153 , -0.909482 , -0.391491 , 0.139714 , 0.333086 , 0.379898 , -6.681316 , -3.036572 , 2.871125 , -0.990600 , -0.028901 , 0.133518 , 0.336554 , 0.374619 , -6.061680 , -1.125706 , 3.899740 , -0.416456 , -0.023774 , 0.908811 , 0.353211 , 0.398120 , -5.223263 , -4.839405 , 1.502946 , -0.453780 , -0.792596 , 0.407208 , 0.367313 , 0.338376 , -5.630093 , -4.597042 , 1.208509 , -0.755516 , -0.557756 , 0.343577 , 0.357202 , 0.335588 , -5.328846 , -4.781612 , 0.918477 , -0.287576 , -0.949370 , -0.126225 , 0.366004 , 0.328364 , 3.432003 , 0.913204 , -0.032634 , 0.704489 , 0.098758 , 0.702780 , 0.571825 , 0.472671 , -2.818470 , -3.087353 , 1.886110 , 0.689901 , 0.006287 , 0.723838 , 0.412299 , 0.362584 , -6.478329 , 0.074169 , 1.060212 , 0.076937 , 0.831599 , -0.549974 , 0.338652 , 0.439261 , -10.249197 , -1.906788 , 1.098008 , -0.148228 , -0.986480 , 0.069521 , 0.243166 , 0.361781 , -10.388205 , -1.997753 , 1.623647 , -0.118870 , -0.991089 , -0.059999 , 0.243120 , 0.370969 , -10.938856 , -2.016071 , 1.344381 , 0.053468 , -0.974151 , 0.219337 , 0.232433 , 0.369684 , 1.898548 , -1.573666 , -0.260875 , 0.224738 , -0.827815 , 0.513962 , 0.530095 , 0.364251 , -9.656965 , -1.409458 , 2.811109 , -0.262307 , 0.158238 , 0.951903 , 0.260350 , 0.398601 , -9.975775 , -1.647861 , 2.711290 , -0.415876 , -0.068636 , 0.906796 , 0.254094 , 0.392952 , -10.343428 , 0.025661 , 0.473314 , 0.119816 , 0.969390 , 0.214240 , 0.248132 , 0.453613 , -4.369358 , -0.235271 , 4.050515 , 0.219886 , 0.336650 , 0.915555 , 0.371968 , 0.405570 , -8.940344 , -3.166615 , 1.384267 , -0.697623 , -0.695700 , 0.171209 , 0.280166 , 0.348101 , -8.881163 , -3.312969 , 1.776624 , -0.586657 , -0.730308 , -0.349895 , 0.287242 , 0.353860 , -9.299948 , -3.144489 , 1.878518 , -0.780725 , -0.624622 , -0.016419 , 0.277161 , 0.358693 , -5.326885 , -4.101299 , 1.689218 , -0.670370 , -0.542436 , 0.506272 , 0.361481 , 0.343058 , -6.596996 , -2.803883 , 3.511304 , -0.932615 , -0.013001 , 0.360607 , 0.341163 , 0.379644 , -3.115719 , -4.393223 , 1.377630 , 0.543931 , -0.821863 , 0.169225 , 0.400372 , 0.339121 , -3.824772 , -4.535267 , 2.027257 , 0.306864 , -0.657186 , 0.688406 , 0.384718 , 0.349057 , -6.438404 , 0.456005 , 2.708104 , 0.032624 , 0.924314 , 0.380169 , 0.341428 , 0.420575 , -8.954939 , -3.629375 , 1.135331 , -0.520402 , -0.492752 , 0.697378 , 0.285648 , 0.340296 , -9.039343 , -4.052349 , 0.768174 , -0.559679 , -0.779778 , 0.280404 , 0.283329 , 0.332449 , -8.648573 , -3.715031 , 2.848073 , 0.132450 , -0.197516 , 0.971282 , 0.300164 , 0.363043 , -6.544956 , -3.007969 , 3.926847 , -0.689261 , 0.145573 , 0.709708 , 0.347392 , 0.378789 , -5.565563 , -0.054752 , 3.417047 , -0.441389 , 0.775384 , 0.451552 , 0.358246 , 0.413434 , -5.300091 , -0.192341 , 3.926042 , -0.370098 , 0.795221 , 0.480209 , 0.361842 , 0.409462 , -4.387714 , -3.988758 , 2.342645 , 0.003143 , -0.548906 , 0.835841 , 0.375850 , 0.353816 , 2.151913 , 0.841282 , 1.485120 , -0.248878 , 0.854060 , 0.456679 , 0.535186 , 0.436769 , -8.744680 , -0.935078 , 2.980684 , 0.204627 , 0.201300 , 0.957915 , 0.284550 , 0.406941 , -9.306807 , -0.621975 , 2.674268 , -0.107761 , 0.635334 , 0.764672 , 0.273205 , 0.412815 , -10.264318 , -1.862255 , 2.450898 , -0.554491 , -0.546861 , 0.627247 , 0.247559 , 0.386797 , -9.800444 , -2.114697 , 2.790910 , -0.505051 , -0.356670 , 0.785913 , 0.256987 , 0.385603 , -5.439930 , -3.887722 , 2.065885 , -0.270638 , -0.880917 , 0.388226 , 0.356572 , 0.349567 , -4.684376 , -4.911106 , 1.415891 , 0.064455 , -0.997314 , 0.034333 , 0.376698 , 0.335267 , -2.412769 , 0.622868 , -0.714940 , 0.342021 , 0.833216 , 0.434431 , 0.427673 , 0.483254 , -2.178188 , 1.061253 , -0.907576 , 0.096438 , 0.380444 , 0.919736 , 0.428961 , 0.491202 , -2.627262 , 1.056194 , -0.682359 , 0.604968 , 0.562273 , 0.563738 , 0.419660 , 0.487132 , -5.965435 , -3.912205 , 1.691388 , -0.026612 , -0.979308 , 0.200598 , 0.345543 , 0.346302 , -6.503391 , -4.080776 , 1.618230 , 0.380657 , -0.724479 , 0.574602 , 0.335327 , 0.340031 , -5.979893 , -3.894070 , 0.947912 , -0.297861 , -0.931639 , 0.208075 , 0.346425 , 0.336434 , -1.648998 , -3.495991 , 0.004552 , 0.791894 , -0.551805 , -0.261452 , 0.443368 , 0.336136 , -18.478827 , -3.847363 , 1.340856 , -0.899350 , 0.191656 , 0.392956 , 0.038600 , 0.335605 , -7.279400 , -0.663624 , 3.048772 , -0.471297 , 0.024598 , 0.881619 , 0.324610 , 0.407276 , -8.282064 , -0.730251 , 2.622831 , -0.007691 , 0.578204 , 0.815821 , 0.300476 , 0.410727 , -6.670666 , -3.428265 , 3.543794 , -0.828822 , -0.530686 , 0.177129 , 0.345169 , 0.373779 , -2.839069 , -4.084133 , 0.907445 , 0.626576 , -0.726859 , 0.281106 , 0.412051 , 0.338044 , -3.734325 , -3.004208 , 2.789663 , 0.830317 , -0.305399 , 0.466109 , 0.385290 , 0.371206 , -10.412443 , -1.359447 , 2.567468 , -0.282662 , -0.062502 , 0.957152 , 0.249847 , 0.401496 , -10.877645 , -1.070415 , 2.502187 , -0.060610 , -0.109165 , 0.992157 , 0.242468 , 0.407228 , -8.777967 , -3.036777 , 2.671380 , -0.329417 , 0.172552 , 0.928251 , 0.292398 , 0.368314 , -10.649633 , -1.934994 , 1.882291 , -0.243355 , -0.939024 , 0.242805 , 0.238391 , 0.376293 , -1.893391 , 0.745541 , -0.688514 , -0.058138 , 0.894162 , 0.443922 , 0.436633 , 0.482989 , -3.737415 , -3.817738 , 2.278264 , 0.405377 , -0.364391 , 0.838374 , 0.387260 , 0.356652 , -9.161093 , -2.883121 , 2.282171 , -0.722526 , -0.186804 , 0.665578 , 0.283162 , 0.367082 , -9.454557 , -2.402699 , 2.279157 , -0.435224 , -0.815394 , 0.381664 , 0.270695 , 0.372196 , -9.170774 , -2.285877 , 3.015378 , 0.401502 , -0.538896 , 0.740501 , 0.265546 , 0.382534 , -9.722273 , -0.712246 , 2.563005 , -0.403058 , 0.539232 , 0.739402 , 0.262836 , 0.416431 , -4.238766 , 0.220310 , 3.783094 , 0.045228 , 0.821253 , 0.568712 , 0.376370 , 0.409627 , -6.354816 , 0.457912 , 1.943471 , 0.134892 , 0.974334 , -0.180212 , 0.339815 , 0.430038 , -7.285633 , 0.179905 , 2.248246 , -0.460097 , 0.886776 , 0.043855 , 0.330211 , 0.424852 , -7.141361 , -1.592503 , 2.950864 , -0.917478 , -0.142644 , 0.371258 , 0.323808 , 0.396560 , -10.568571 , -0.417286 , 2.207429 , 0.333171 , 0.770318 , 0.543626 , 0.247801 , 0.424485 , -10.470358 , -0.132717 , 1.624162 , 0.441908 , 0.866329 , 0.232673 , 0.246572 , 0.432103 , -7.943897 , -1.855045 , 2.389756 , 0.235633 , -0.130161 , 0.963073 , 0.302081 , 0.389571 , -10.870665 , -0.592281 , 2.501260 , 0.022858 , 0.513260 , 0.857906 , 0.241860 , 0.415811 , -7.166416 , 0.205723 , 1.615930 , -0.330302 , 0.908933 , -0.254311 , 0.330750 , 0.433866 , -7.343403 , -0.092800 , -0.345767 , 0.225837 , 0.654744 , 0.721305 , 0.316536 , 0.464238 , -7.700741 , -0.301006 , 0.074460 , 0.363659 , 0.799768 , 0.477584 , 0.309977 , 0.452127 , -5.452435 , 0.118931 , 0.031625 , -0.608417 , -0.145970 , 0.780053 , 0.354179 , 0.466142 , -5.274479 , 0.633259 , 0.150136 , -0.463881 , 0.458052 , 0.758263 , 0.359964 , 0.472649 , -5.742191 , 0.446507 , -0.047526 , -0.473769 , 0.195898 , 0.858547 , 0.346419 , 0.471395 , -10.210913 , -2.056118 , 2.136606 , -0.453169 , -0.885037 , 0.106326 , 0.247379 , 0.378134 , -11.131720 , -1.900692 , 1.691732 , -0.144169 , -0.911618 , 0.384899 , 0.230609 , 0.379008 , -8.611593 , -3.928455 , 2.348676 , -0.132359 , -0.960784 , -0.243568 , 0.300248 , 0.356846 , -8.816244 , -3.707546 , 2.092153 , -0.610706 , -0.672781 , -0.417554 , 0.295424 , 0.355050 , -6.837582 , -0.342976 , -0.390040 , 0.151524 , 0.530656 , 0.833888 , 0.327913 , 0.462914 , -8.422216 , -3.888027 , 1.073690 , -0.282785 , -0.787103 , 0.548143 , 0.294941 , 0.335216 , -8.934881 , -0.521740 , 2.425660 , 0.157659 , 0.886196 , 0.435621 , 0.285370 , 0.415118 , -6.301067 , -0.304523 , -0.400832 , -0.106571 , 0.333293 , 0.936766 , 0.338291 , 0.463206 , -17.463041 , -2.031254 , 2.515199 , 0.062014 , 0.116214 , 0.991272 , 0.055256 , 0.373594 , -10.253500 , -0.822781 , 2.394700 , 0.054353 , 0.650136 , 0.757836 , 0.253539 , 0.416320 , -10.574591 , -1.605488 , 2.431195 , -0.378704 , -0.421033 , 0.824183 , 0.245403 , 0.394367 , -7.098560 , -4.097385 , 1.784898 , -0.204047 , -0.450209 , 0.869259 , 0.322324 , 0.343578 , -6.774120 , -3.634197 , 2.031152 , -0.224036 , -0.755974 , 0.615009 , 0.333191 , 0.352607 , -10.623411 , -0.037830 , 1.089029 , 0.023713 , 0.993500 , -0.111148 , 0.244652 , 0.439131 , -9.718687 , -2.383656 , 2.535077 , -0.351390 , -0.913785 , 0.203711 , 0.257874 , 0.378261 , -8.948431 , 0.128498 , 0.129045 , 0.194006 , 0.895566 , 0.400342 , 0.277160 , 0.461116 , -14.647154 , -1.610943 , 0.796739 , -0.831080 , -0.543504 , 0.117740 , 0.162352 , 0.397708 , -9.888403 , -2.127102 , 1.787553 , -0.506485 , -0.859615 , -0.067049 , 0.254370 , 0.368875 , -7.677410 , -0.576488 , 2.820665 , -0.400281 , 0.109958 , 0.909757 , 0.314045 , 0.409554 , -6.523266 , 0.201046 , -0.481364 , -0.285989 , 0.286721 , 0.914304 , 0.332165 , 0.471605 , -9.833746 , 0.118610 , -0.041304 , -0.207923 , 0.585803 , 0.783288 , 0.258139 , 0.463398 , -11.347151 , -0.574490 , 1.627000 , -0.416242 , 0.900571 , 0.125248 , 0.228971 , 0.429197 , -10.191351 , -2.051311 , 0.313424 , -0.101749 , -0.975311 , 0.195837 , 0.237120 , 0.351010 , -9.626066 , -2.178135 , 0.184900 , -0.285226 , -0.921903 , 0.262154 , 0.246656 , 0.343785 , -9.945501 , -2.172306 , 0.766649 , -0.383129 , -0.923154 , 0.030641 , 0.249708 , 0.352565 , -10.016241 , -2.149242 , 2.491632 , -0.667898 , -0.654469 , 0.354350 , 0.252422 , 0.382202 , -16.703299 , -3.946125 , 1.640359 , 0.857814 , -0.199866 , 0.473434 , 0.069783 , 0.340736 , -18.509031 , 0.467091 , 0.962682 , 0.464827 , 0.833125 , 0.299631 , 0.046664 , 0.436540 , -18.155825 , 0.467762 , 0.242612 , 0.480667 , 0.819147 , 0.312937 , 0.053534 , 0.450128 , -17.555136 , 0.380795 , 0.143262 , 0.263955 , 0.926206 , 0.269082 , 0.069235 , 0.447421 , -18.833036 , -3.998791 , 0.618848 , -0.983398 , -0.030122 , 0.178899 , 0.035295 , 0.328158 , -16.436682 , -3.653606 , -0.108363 , 0.951445 , -0.208502 , 0.226325 , 0.102273 , 0.331774 , -16.675306 , -0.483242 , 0.776490 , 0.830103 , 0.498428 , 0.249916 , 0.084923 , 0.413810 , -19.051168 , -3.669674 , 0.576825 , -0.275887 , -0.886074 , 0.372448 , 0.028135 , 0.334453 , -18.853926 , -3.866970 , 0.119867 , -0.753533 , -0.553911 , 0.354015 , 0.027616 , 0.325471 , -16.462652 , 0.084049 , -0.353312 , 0.251228 , 0.871975 , 0.420087 , 0.097713 , 0.455465 , -16.679815 , -4.539089 , 0.359121 , 0.923246 , -0.308267 , 0.229286 , 0.085033 , 0.321813 , -15.819143 , -3.266079 , -0.678630 , 0.554918 , -0.376782 , 0.741661 , 0.120039 , 0.333909 , -16.296247 , -1.550358 , 0.682008 , 0.750755 , -0.078921 , 0.655812 , 0.098096 , 0.392437 , -15.280134 , -2.269741 , -0.494319 , -0.392987 , -0.183782 , 0.900967 , 0.136290 , 0.358192 , -18.167181 , -5.161327 , 0.020379 , -0.578112 , -0.802179 , 0.149174 , 0.047187 , 0.305994 , -18.874731 , -4.436886 , 0.384473 , -0.977691 , -0.200659 , -0.061617 , 0.037685 , 0.319490 , -18.630980 , -4.863064 , 0.472055 , -0.740806 , -0.652974 , -0.157353 , 0.044606 , 0.316267 , -16.971739 , -2.258274 , 1.304311 , 0.981292 , 0.125248 , 0.146153 , 0.078761 , 0.371370 , -11.387327 , -2.239002 , 0.744928 , -0.029817 , -0.999481 , -0.010834 , 0.219476 , 0.363374 , -11.477339 , -1.927822 , 0.158796 , -0.062380 , -0.993591 , -0.094028 , 0.214488 , 0.353874 , -10.834814 , -2.088589 , 0.075658 , -0.127476 , -0.987487 , 0.092776 , 0.224265 , 0.352334 , -11.950140 , -2.032825 , 0.350942 , -0.142064 , -0.965606 , -0.217719 , 0.206078 , 0.359784 , -10.457541 , -1.031437 , 2.516931 , -0.029176 , 0.238258 , 0.970733 , 0.249572 , 0.409731 , -10.768827 , -2.154903 , 0.681836 , 0.181982 , -0.979888 , 0.081515 , 0.231264 , 0.359663 , -9.869787 , -2.118664 , 1.286329 , -0.486404 , -0.873531 , -0.017426 , 0.254318 , 0.359550 , -11.294836 , -0.854298 , 2.553056 , -0.298685 , 0.133061 , 0.945006 , 0.234286 , 0.409378 , -10.316870 , 0.034916 , 0.031553 , -0.188696 , 0.895688 , 0.402631 , 0.248228 , 0.461457 , -10.579817 , -0.002361 , -0.319239 , -0.385662 , 0.833583 , 0.395428 , 0.239164 , 0.464815 , -8.768698 , -2.508884 , 2.581266 , -0.309305 , -0.016663 , 0.950804 , 0.285706 , 0.375208 , -8.880445 , -2.338276 , 0.331163 , -0.855617 , -0.501694 , 0.127049 , 0.261556 , 0.341440 , -9.287725 , -2.271168 , 0.654432 , -0.534104 , -0.810968 , -0.238838 , 0.256865 , 0.345830 , -9.175444 , -2.506458 , -0.003642 , -0.746269 , -0.427259 , 0.510392 , 0.255227 , 0.337500 , -10.126013 , 0.468647 , -0.254523 , -0.405927 , 0.563311 , 0.719626 , 0.250932 , 0.470592 , -12.230085 , -2.151211 , 0.807515 , -0.275002 , -0.961150 , -0.022950 , 0.207262 , 0.371645 , -7.901638 , 0.159580 , -0.353251 , 0.276650 , 0.721549 , 0.634663 , 0.301745 , 0.463891 , -9.850943 , -1.100422 , 2.679311 , -0.269082 , 0.298776 , 0.915586 , 0.260313 , 0.407876 , -3.679081 , -4.408291 , 0.659669 , 0.149937 , -0.980041 , -0.130436 , 0.398273 , 0.327261 , -12.137167 , 0.480274 , 0.518220 , 0.772088 , 0.603198 , 0.199957 , 0.201833 , 0.452309 , -6.414532 , -4.136524 , 1.175248 , 0.742912 , -0.642140 , 0.188910 , 0.338846 , 0.333148 , -6.143261 , -3.918201 , 0.504636 , 0.138127 , -0.697317 , 0.703299 , 0.343797 , 0.331236 , -7.765995 , -3.583431 , 1.938333 , 0.363933 , -0.855098 , 0.369182 , 0.312604 , 0.356882 , -7.249516 , -3.529240 , 1.850095 , -0.246132 , -0.704154 , 0.665975 , 0.320793 , 0.352911 , -7.514797 , -3.667248 , 1.580968 , -0.113224 , -0.619983 , 0.776391 , 0.313497 , 0.349177 , -19.227377 , -1.401150 , 2.603902 , 0.158391 , 0.164983 , 0.973479 , 0.019564 , 0.393038 , -8.454954 , -3.568562 , 1.479806 , -0.543535 , -0.830012 , 0.124973 , 0.293592 , 0.346440 , -8.379309 , -2.637867 , 2.668378 , 0.149754 , 0.038667 , 0.987945 , 0.296692 , 0.374640 , -6.749142 , -4.451000 , 1.468431 , 0.326762 , -0.809107 , 0.488388 , 0.327260 , 0.334317 , -2.566830 , -4.282803 , 0.581605 , 0.497024 , -0.710105 , 0.498672 , 0.417675 , 0.333346 , -5.642834 , -3.999256 , 1.300798 , -0.628620 , -0.638112 , 0.444533 , 0.353448 , 0.342174 , -7.267620 , -4.485920 , 1.456609 , -0.266549 , -0.802972 , 0.533036 , 0.318378 , 0.335609 , -7.690578 , -4.025806 , 1.419152 , -0.395123 , -0.645619 , 0.653462 , 0.307904 , 0.340421 , -7.436604 , -4.554394 , 1.109708 , -0.317331 , -0.908505 , 0.271798 , 0.312863 , 0.330133 , -6.316128 , -3.629528 , 3.846238 , -0.205908 , -0.863918 , 0.459578 , 0.350551 , 0.373182 , -8.308401 , -3.827435 , 1.905797 , -0.057222 , -0.985748 , -0.158147 , 0.303889 , 0.352138 , -4.843128 , -4.699909 , 0.286081 , 0.148686 , -0.971801 , -0.182836 , 0.373938 , 0.320911 , 1.187504 , -1.903286 , -0.291667 , 0.441969 , -0.812799 , 0.379467 , 0.517886 , 0.358744 , -15.446493 , 0.192799 , 0.283506 , -0.805841 , 0.583483 , 0.100589 , 0.127071 , 0.439616 , -15.226858 , 0.309345 , 0.738019 , -0.446516 , 0.745445 , 0.494858 , 0.133839 , 0.436931 , -15.236959 , 0.492085 , 0.341077 , -0.627735 , 0.760979 , 0.163793 , 0.132313 , 0.445452 , -1.398762 , -3.176266 , 0.187948 , 0.717612 , -0.623341 , -0.310526 , 0.448521 , 0.342366 , -0.125439 , -2.440090 , -0.524264 , 0.358257 , -0.888607 , 0.286294 , 0.491710 , 0.344290 , -3.721676 , -4.479084 , -0.193339 , 0.010498 , -0.999756 , 0.018860 , 0.402353 , 0.313891 , 7.158459 , -2.303555 , 3.621808 , -0.581103 , -0.729087 , 0.361492 , 0.706954 , 0.379569 , 7.826984 , -2.097507 , 4.448373 , -0.242103 , -0.524461 , 0.816279 , 0.710699 , 0.381482 , 7.342625 , -1.865749 , 4.439721 , -0.477798 , -0.427992 , 0.767113 , 0.707898 , 0.383020 , -2.740337 , 0.929249 , -0.093543 , 0.468337 , 0.859554 , 0.204443 , 0.412447 , 0.475495 , 3.783543 , -1.430225 , -0.406718 , 0.041536 , -0.963927 , 0.262825 , 0.573490 , 0.373459 , 6.935436 , -1.756374 , 3.956163 , -0.820704 , -0.332072 , 0.464888 , 0.705126 , 0.383674 , -0.685329 , -2.546398 , 0.883901 , 0.177465 , -0.959807 , 0.217292 , 0.465591 , 0.366626 , 6.721096 , -1.867214 , 3.429967 , -0.935606 , -0.315317 , 0.158666 , 0.701366 , 0.383001 , 6.164356 , -0.029339 , 1.014245 , -0.006348 , 0.715567 , 0.698477 , 0.652375 , 0.428130 , 3.939854 , -1.722317 , -0.879603 , -0.145360 , -0.710379 , 0.688589 , 0.575721 , 0.361794 , 4.325512 , -1.407261 , -0.518943 , -0.216010 , -0.836207 , 0.504044 , 0.587339 , 0.371284 , 5.988834 , 0.381649 , -0.689265 , -0.221473 , 0.812677 , 0.538957 , 0.635076 , 0.469490 , 5.798588 , 0.676922 , -0.893752 , -0.078066 , 0.424360 , 0.902097 , 0.631969 , 0.478734 , 5.405430 , 0.428066 , -0.701239 , -0.014252 , 0.827509 , 0.561235 , 0.624686 , 0.469138 , -5.387821 , -4.569286 , 0.045579 , -0.187506 , -0.979492 , -0.073580 , 0.363273 , 0.316516 , 7.895382 , -3.800289 , 3.495645 , -0.682913 , -0.520798 , 0.512162 , 0.715009 , 0.365130 , 7.707287 , -4.376034 , 2.570691 , -0.387249 , -0.730613 , 0.562304 , 0.717394 , 0.355265 , 3.253536 , -1.442448 , -0.622721 , 0.146306 , -0.885617 , 0.440687 , 0.562700 , 0.366718 , 6.246464 , -0.438854 , 1.316812 , -0.150487 , 0.354015 , 0.923032 , 0.658524 , 0.412803 , 8.137531 , -3.676044 , 4.052464 , -0.694235 , -0.609302 , 0.383099 , 0.718205 , 0.368360 , 7.364613 , -3.988903 , 2.908368 , -0.686575 , -0.406903 , 0.602466 , 0.709599 , 0.360180 , 8.843678 , -4.538822 , 2.628042 , -0.104984 , -0.350627 , 0.930601 , 0.726848 , 0.355566 , 9.868633 , 1.177067 , 0.142381 , 0.339091 , 0.882107 , 0.326945 , 0.728998 , 0.469441 , 8.548031 , -1.770061 , 4.567227 , 0.227912 , 0.004547 , 0.973662 , 0.713970 , 0.383150 , 5.418140 , -10.734928 , 0.927312 , -0.929655 , 0.272652 , 0.247658 , 0.617785 , 0.139303 , 5.228710 , -10.647190 , 0.645097 , -0.656728 , 0.163823 , 0.736076 , 0.610835 , 0.136031 , 5.272152 , -11.046307 , 0.849286 , -0.809015 , 0.396435 , 0.433882 , 0.613871 , 0.131215 , 4.431126 , -1.341045 , -0.049845 , -0.166723 , -0.966674 , 0.194189 , 0.593899 , 0.382049 , 8.641224 , -4.993198 , 2.519735 , -0.204566 , -0.788598 , 0.579852 , 0.726486 , 0.349520 , 9.269329 , -4.888767 , 2.781038 , -0.003998 , -0.580889 , 0.813959 , 0.733473 , 0.352454 , 7.707409 , -1.543079 , 4.587090 , -0.146306 , 0.018525 , 0.989044 , 0.710076 , 0.384633 , 6.732647 , -1.334400 , 3.249807 , -0.969787 , 0.225410 , -0.093234 , 0.699292 , 0.386286 , 8.364140 , -0.839550 , 1.689645 , 0.104953 , 0.813746 , 0.571642 , 0.708426 , 0.414616 , -16.887114 , -3.801189 , 1.918458 , 0.910215 , -0.162572 , 0.380840 , 0.066151 , 0.344789 , -16.693213 , -3.380833 , 1.631749 , 0.889340 , 0.148839 , 0.432264 , 0.071250 , 0.348176 , 5.597698 , 0.301388 , -0.227412 , 0.004761 , 0.993469 , 0.113742 , 0.628016 , 0.457401 , 5.417942 , -12.251324 , 1.707631 , -0.314798 , -0.924589 , 0.214454 , 0.635588 , 0.110043 , -15.186010 , -1.166241 , 0.678048 , 0.199316 , -0.963927 , 0.176275 , 0.140443 , 0.403974 , 6.744701 , 0.606266 , 0.157293 , -0.391430 , 0.865261 , 0.313181 , 0.661950 , 0.458119 , 0.997150 , -10.723911 , 1.386686 , 0.747826 , 0.488510 , 0.449507 , 0.504445 , 0.147190 , -17.145758 , -14.713070 , 0.355550 , 0.372723 , -0.817469 , 0.439070 , 0.076552 , 0.013492 , -12.176397 , 0.642612 , -0.024413 , 0.529984 , 0.821741 , 0.209296 , 0.200664 , 0.462694 , -13.383596 , 0.040012 , -0.163630 , -0.578784 , 0.724326 , 0.374584 , 0.171855 , 0.455912 , -14.489813 , 17.158390 , -1.501155 , -0.058382 , -0.763726 , 0.642842 , 0.143522 , 0.943627 , -13.840704 , 16.923191 , -1.768962 , 0.022767 , -0.702322 , 0.711447 , 0.155919 , 0.935244 , -18.516127 , -11.610844 , 3.155671 , 0.453169 , 0.772637 , 0.444563 , 0.036960 , 0.101241 , -17.902411 , -11.746181 , 3.032285 , 0.244728 , 0.481399 , 0.841609 , 0.048851 , 0.100911 , -19.306860 , -3.001926 , 2.120942 , 0.205390 , -0.794610 , 0.571276 , 0.022464 , 0.361391 , -19.136068 , -3.144154 , 1.924321 , 0.020386 , -0.820948 , 0.570605 , 0.028023 , 0.356691 , -19.734076 , -2.966129 , 2.249662 , -0.418317 , -0.853328 , 0.311075 , 0.017181 , 0.358408 , -2.345509 , 17.590284 , -0.626048 , 0.493881 , -0.430006 , 0.755730 , 0.427681 , 0.965246 , -2.122921 , 17.599394 , -0.802260 , 0.386761 , -0.565050 , 0.728751 , 0.436972 , 0.965824 , -2.514339 , 17.950407 , -0.509658 , 0.268319 , 0.055910 , 0.961699 , 0.429163 , 0.973455 , -1.162113 , 15.618473 , -2.792033 , 0.126499 , -0.518540 , 0.845607 , 0.457666 , 0.893576 , -2.126942 , 15.255802 , -2.851176 , 0.068178 , -0.453352 , 0.888699 , 0.437434 , 0.886735 , -1.354237 , 15.267227 , -2.944575 , 0.118168 , -0.401654 , 0.908109 , 0.453495 , 0.883896 , -12.727484 , 0.732479 , 0.051751 , -0.035829 , 0.990875 , 0.129856 , 0.190968 , 0.457470 , 0.769627 , 1.367390 , -1.108613 , 0.019379 , 0.082278 , 0.996399 , 0.500841 , 0.496445 , 0.585827 , 1.082584 , -1.026500 , 0.025422 , 0.327799 , 0.944395 , 0.496746 , 0.489126 , 1.068935 , 0.851627 , -0.976207 , 0.043641 , 0.275735 , 0.960234 , 0.507227 , 0.486463 , -14.599928 , 0.426807 , -0.345427 , 0.208167 , 0.931028 , 0.299692 , 0.142237 , 0.462041 , -15.278379 , 0.454838 , -0.264239 , -0.434675 , 0.883999 , 0.171850 , 0.126727 , 0.459391 , -14.968672 , 0.634136 , 0.133912 , -0.141240 , 0.983947 , -0.109043 , 0.135872 , 0.454109 , 1.224804 , 0.334949 , -0.845973 , 0.006104 , 0.595996 , 0.802942 , 0.510176 , 0.478176 , 2.386593 , -1.939198 , -1.081996 , 0.268288 , -0.843165 , 0.465865 , 0.547122 , 0.348657 , 2.057972 , -2.192799 , -1.138240 , 0.396222 , -0.611560 , 0.684805 , 0.538659 , 0.345964 , -1.984234 , 0.829281 , -0.122184 , 0.040712 , 0.998840 , -0.024873 , 0.433289 , 0.471462 , 5.567928 , -7.946674 , -0.072818 , -0.818659 , 0.292001 , 0.494461 , 0.627589 , 0.210929 , 5.534771 , -7.824841 , -0.673106 , -0.392956 , 0.764122 , 0.511521 , 0.625018 , 0.223292 , 5.263432 , -7.903568 , -0.363948 , -0.426496 , 0.661702 , 0.616596 , 0.619898 , 0.215889 , -6.897495 , -7.062923 , -0.205008 , 0.142430 , 0.989715 , 0.012452 , 0.327530 , 0.227615 , -6.412533 , -7.139683 , -0.506231 , 0.075716 , 0.992065 , 0.100162 , 0.341779 , 0.232272 , -7.176289 , -7.011463 , -0.619609 , 0.097537 , 0.973449 , 0.207007 , 0.320128 , 0.232713 , 7.956028 , -7.656384 , 0.455808 , -0.164006 , 0.911679 , 0.376690 , 0.684675 , 0.217178 , 7.609219 , -7.192295 , 0.203824 , 0.244392 , 0.887692 , 0.390149 , 0.677269 , 0.223391 , 7.547375 , -7.342754 , 0.698896 , 0.464431 , 0.759117 , 0.456069 , 0.677113 , 0.214638 , 7.863842 , -8.973270 , 2.962582 , 0.186529 , 0.972198 , 0.141362 , 0.691441 , 0.162306 , 7.212414 , -9.376041 , 3.233541 , -0.829951 , 0.431104 , 0.353984 , 0.683148 , 0.156574 , 7.578304 , -9.176693 , 3.836751 , -0.704184 , 0.622028 , 0.342265 , 0.688748 , 0.155318 , -9.856535 , -3.043934 , -1.084594 , -0.354198 , -0.507614 , 0.785394 , 0.239852 , 0.323499 , -10.020605 , -2.743343 , -0.860881 , -0.372448 , -0.721580 , 0.583575 , 0.236556 , 0.331595 , 2.189426 , -8.403698 , -0.977374 , 0.247780 , 0.326609 , 0.912076 , 0.547422 , 0.209870 , 2.186802 , -8.732220 , -0.613406 , 0.726859 , 0.584887 , 0.359905 , 0.544645 , 0.200842 , 2.393497 , -8.936153 , -0.917670 , 0.272805 , 0.635365 , 0.722404 , 0.552741 , 0.202401 , -15.200315 , 0.681225 , -0.812785 , -0.190985 , 0.726096 , 0.660482 , 0.123347 , 0.471918 , -4.983967 , -7.436481 , -0.459635 , 0.311136 , 0.948912 , 0.052370 , 0.376948 , 0.231417 , -5.381428 , -7.166798 , 0.058721 , 0.294137 , 0.953459 , 0.065798 , 0.360164 , 0.220116 , -4.784290 , -7.419781 , 0.076711 , 0.105258 , 0.987335 , -0.118625 , 0.375272 , 0.221746 , -15.528479 , 0.094471 , -0.060691 , -0.748466 , 0.637532 , 0.182531 , 0.122301 , 0.448176 , -9.656256 , -10.201107 , 0.112874 , -0.031983 , 0.875362 , 0.482376 , 0.249586 , 0.178619 , -10.382696 , -10.169857 , 0.337728 , 0.115574 , 0.699057 , 0.705618 , 0.237392 , 0.175224 , -9.755987 , -10.267757 , 0.221151 , -0.055666 , 0.890194 , 0.452101 , 0.248934 , 0.173062 , -14.196905 , -9.770931 , -0.106547 , -0.302713 , 0.837611 , 0.454695 , 0.150235 , 0.168129 , -14.750166 , -10.141605 , -0.209479 , -0.248390 , 0.968627 , 0.005066 , 0.135108 , 0.167546 , -14.392416 , -9.995342 , 0.244153 , -0.166845 , 0.794122 , 0.584368 , 0.142151 , 0.161818 , -9.324080 , -9.735722 , -0.610419 , -0.223090 , 0.817866 , 0.530351 , 0.254689 , 0.192190 , -9.728277 , -9.716305 , -0.415313 , 0.338237 , 0.802026 , 0.492264 , 0.247377 , 0.189653 , -9.348349 , -9.953068 , -0.355067 , -0.101291 , 0.817866 , 0.566363 , 0.254484 , 0.187056 , -9.018679 , -4.292126 , -0.814795 , -0.492355 , -0.377880 , 0.784051 , 0.267129 , 0.304580 , -8.886709 , -4.156796 , -0.605117 , -0.616504 , -0.581378 , 0.530900 , 0.270813 , 0.309471 , -9.144835 , -3.954327 , -0.770190 , -0.737510 , -0.312204 , 0.598804 , 0.260547 , 0.309641 , 6.372410 , -7.114620 , -0.309184 , -0.377880 , 0.925565 , 0.022340 , 0.650795 , 0.227735 , 6.789188 , -6.978069 , -0.116740 , -0.016694 , 0.953276 , -0.301614 , 0.659633 , 0.227313 , 6.280048 , -7.123119 , -0.478892 , -0.299112 , 0.944182 , 0.137883 , 0.645519 , 0.233386 , -16.964087 , -9.090069 , -0.025595 , 0.213111 , 0.931303 , 0.295358 , 0.082273 , 0.167526 , -17.666838 , -9.042217 , -0.117533 , -0.462966 , 0.835810 , 0.295053 , 0.062016 , 0.168692 , -17.118177 , -9.170238 , 0.572831 , 0.115177 , 0.990234 , 0.078249 , 0.070586 , 0.158946 , -16.296926 , -8.969746 , -0.935164 , 0.156529 , 0.579028 , 0.800104 , 0.101559 , 0.187735 , -15.989683 , -9.241817 , -0.801806 , 0.376019 , 0.654897 , 0.655477 , 0.107557 , 0.182173 , -15.963316 , -8.965603 , -0.928805 , 0.010285 , 0.262459 , 0.964873 , 0.109896 , 0.191155 , 8.412304 , -9.173443 , 3.728109 , 0.817225 , 0.557604 , 0.145512 , 0.695446 , 0.155188 , 8.717800 , -9.601505 , 2.877034 , 0.712149 , 0.608142 , 0.350658 , 0.708721 , 0.160371 , -18.538076 , -9.851887 , 0.627965 , -0.333293 , 0.941282 , 0.053591 , 0.038738 , 0.149784 , -18.086828 , -9.730610 , 1.103750 , -0.610370 , 0.696646 , 0.376934 , 0.049514 , 0.146583 , -17.927946 , -9.479435 , 0.008510 , -0.738639 , 0.643849 , 0.199500 , 0.048777 , 0.160110 , 3.907360 , -8.782230 , 0.344503 , 0.300912 , 0.942656 , 0.144322 , 0.582540 , 0.177686 , 4.550304 , -9.414593 , 0.618638 , 0.320841 , 0.415235 , 0.851222 , 0.589857 , 0.170824 , 4.822887 , -9.101604 , 0.150823 , -0.033967 , 0.844905 , 0.533799 , 0.603259 , 0.182757 , 3.269535 , -8.622967 , 0.734472 , -0.114414 , 0.981109 , 0.155950 , 0.568802 , 0.172928 , 3.310200 , -8.846256 , -0.005229 , -0.291910 , 0.946287 , -0.138798 , 0.571456 , 0.186978 , 9.130199 , -10.137203 , 2.780298 , 0.591540 , 0.195257 , 0.782250 , 0.720652 , 0.147737 , 9.181850 , -9.814297 , 2.527883 , 0.455123 , 0.543474 , 0.705283 , 0.719534 , 0.159357 , 8.720760 , -10.073902 , 3.134324 , 0.818903 , 0.279672 , 0.501144 , 0.708127 , 0.151776 , -11.335783 , -9.232571 , -0.706858 , 0.678304 , 0.532517 , 0.506211 , 0.218218 , 0.196467 , -11.216940 , -9.719967 , -0.277831 , 0.549944 , 0.796289 , 0.251869 , 0.220056 , 0.187117 , -10.739630 , -9.612972 , -0.509501 , 0.079745 , 0.869503 , 0.487411 , 0.228076 , 0.190917 , -16.656378 , -8.867046 , -0.998004 , 0.266762 , 0.523118 , 0.809412 , 0.092235 , 0.189577 , -17.154951 , -8.781681 , -0.486312 , 0.038026 , 0.925321 , 0.377209 , 0.076358 , 0.179329 , -16.684332 , -9.018795 , -0.475749 , 0.386670 , 0.862423 , 0.326640 , 0.091331 , 0.179082 , -11.478491 , -8.944729 , -0.557704 , 0.875546 , 0.401898 , 0.268014 , 0.211958 , 0.198401 , -1.091717 , -7.984127 , -0.837199 , 0.476638 , 0.662069 , 0.578326 , 0.468672 , 0.223470 , -1.422741 , -7.729000 , -0.792247 , 0.397198 , 0.830073 , 0.391339 , 0.455383 , 0.225874 , -7.688236 , -6.977634 , -0.602977 , -0.130802 , 0.984344 , 0.117985 , 0.306763 , 0.231455 , -7.838223 , -7.013973 , -0.025889 , -0.532121 , 0.836970 , 0.127628 , 0.305239 , 0.222465 , -3.592381 , -7.460262 , -0.391276 , 0.101138 , 0.942900 , -0.317301 , 0.401623 , 0.223944 , -3.584026 , -7.676319 , -0.992923 , 0.108493 , 0.819849 , 0.562181 , 0.406209 , 0.235628 , -4.115772 , -7.630764 , -0.832919 , 0.143254 , 0.950163 , 0.276772 , 0.393003 , 0.232737 , -0.039516 , -8.699909 , -1.014773 , 0.228858 , 0.533250 , 0.814386 , 0.498757 , 0.210175 , 0.654591 , -8.536526 , -0.945548 , -0.123692 , 0.322306 , 0.938505 , 0.508728 , 0.211082 , 0.160862 , -8.481770 , -1.030658 , -0.068300 , 0.006867 , 0.997620 , 0.500836 , 0.213672 , -3.951389 , -7.292782 , 0.160787 , -0.031251 , 0.979064 , -0.200995 , 0.392541 , 0.217858 , -3.153553 , -7.370007 , 0.128988 , 0.396588 , 0.907926 , -0.135380 , 0.409387 , 0.215235 , 8.356289 , -9.877590 , 4.174184 , 0.611927 , -0.185827 , 0.768731 , 0.694174 , 0.149418 , 8.080845 , -9.526035 , 4.244733 , 0.238899 , 0.134159 , 0.961699 , 0.691980 , 0.151325 , 7.794369 , -9.913418 , 4.249745 , -0.326182 , -0.273873 , 0.904721 , 0.690216 , 0.149792 , -2.347172 , -7.587200 , -0.775157 , -0.159703 , 0.881069 , 0.445174 , 0.435405 , 0.229802 , -2.081806 , -7.617786 , -0.458754 , -0.000885 , 0.951323 , 0.308115 , 0.441378 , 0.222405 , -1.863613 , -7.523289 , -0.992831 , 0.158238 , 0.621845 , 0.766961 , 0.446434 , 0.233415 , 0.580349 , -9.083897 , -0.566699 , -0.048524 , 0.921598 , 0.385083 , 0.507958 , 0.199532 , 0.243389 , -8.931927 , -0.680583 , 0.137486 , 0.889401 , 0.435896 , 0.502330 , 0.204592 , 8.775135 , -11.072300 , 3.103303 , 0.617817 , -0.645833 , 0.448500 , 0.700033 , 0.138076 , 8.712688 , -10.542446 , 3.401204 , 0.738914 , -0.126102 , 0.661855 , 0.702224 , 0.146074 , 8.157940 , -10.906841 , 3.696996 , 0.163335 , -0.489151 , 0.856746 , 0.693620 , 0.140256 , 1.226635 , -8.077526 , -0.956494 , -0.057863 , 0.153722 , 0.986389 , 0.521860 , 0.220453 , 0.396648 , -7.669010 , -1.003078 , -0.043703 , 0.023194 , 0.998749 , 0.504387 , 0.227264 , 1.825214 , -8.536221 , 0.038656 , 0.341533 , 0.819666 , 0.459822 , 0.532179 , 0.193705 , 1.996876 , -8.893162 , 0.073217 , 0.620685 , 0.481643 , 0.618671 , 0.536700 , 0.189238 , 2.062908 , -8.733204 , -0.261725 , 0.681753 , 0.691733 , 0.238105 , 0.537910 , 0.196262 , -2.513653 , -4.153637 , -0.743846 , 0.608844 , -0.792047 , -0.044099 , 0.428857 , 0.315501 , -2.387012 , -4.392101 , 0.051328 , 0.459761 , -0.887906 , 0.013672 , 0.422988 , 0.326937 , -3.378361 , -4.472095 , -0.564138 , 0.024567 , -0.999664 , -0.006806 , 0.412720 , 0.311637 , 1.445789 , -8.441517 , -0.776644 , -0.003143 , 0.791131 , 0.611621 , 0.527191 , 0.208117 , 1.335964 , -8.543789 , -0.157679 , -0.385022 , 0.844447 , 0.372295 , 0.526461 , 0.195875 , 1.645191 , -8.598568 , -0.275111 , 0.217139 , 0.976104 , 0.003876 , 0.531193 , 0.199756 , 7.811565 , -9.171528 , 4.200540 , -0.322672 , 0.590289 , 0.739860 , 0.691232 , 0.153110 , 8.281116 , -9.415676 , 4.125657 , 0.655751 , 0.269601 , 0.705161 , 0.693908 , 0.152952 , 9.355579 , -10.896900 , 2.146112 , 0.253609 , -0.775780 , 0.577746 , 0.721734 , 0.125613 , 9.146000 , -10.778965 , 2.733217 , 0.841273 , -0.357097 , 0.405805 , 0.709716 , 0.135467 , 4.165195 , -8.865345 , -0.162165 , 0.093356 , 0.995392 , 0.021149 , 0.590806 , 0.187727 , 10.786091 , -6.977222 , -0.775195 , -0.066622 , 0.997772 , 0.002075 , 0.749725 , 0.244126 , 2.316891 , -9.623600 , -0.033652 , -0.410596 , 0.176031 , 0.894650 , 0.544139 , 0.179104 , 2.049702 , -9.151630 , 0.258054 , 0.508133 , 0.159337 , 0.846370 , 0.535365 , 0.182919 , 1.476871 , -9.348522 , 0.314187 , 0.841700 , 0.336528 , 0.422193 , 0.529924 , 0.176226 , 9.732761 , -9.526943 , 2.136438 , -0.407147 , 0.535295 , 0.740043 , 0.735011 , 0.168273 , 9.963276 , -10.022724 , 2.626077 , -0.331278 , 0.069948 , 0.940916 , 0.741226 , 0.152949 , 8.038837 , -8.964893 , 3.525277 , 0.117740 , 0.992981 , -0.009308 , 0.692620 , 0.156594 , -18.931463 , -4.326679 , -0.222708 , -0.779260 , -0.424177 , 0.461287 , 0.029431 , 0.315985 , -5.921268 , -7.131870 , -0.678916 , 0.087893 , 0.890103 , 0.447127 , 0.350921 , 0.237215 , -6.450069 , -7.019451 , -0.876429 , 0.016999 , 0.731437 , 0.681661 , 0.339877 , 0.241064 , -7.038013 , -6.872211 , -0.920115 , 0.102847 , 0.593799 , 0.797967 , 0.322479 , 0.241017 , -6.786678 , -7.040905 , -0.810515 , 0.134037 , 0.850459 , 0.508652 , 0.331654 , 0.238114 , -15.549910 , -3.503719 , -1.013835 , 0.180151 , -0.455580 , 0.871731 , 0.128379 , 0.327804 , -15.505796 , -3.163723 , -0.811164 , 0.129307 , -0.547349 , 0.826838 , 0.130222 , 0.335462 , -7.377857 , -7.027668 , -0.082698 , 0.056368 , 0.998383 , -0.000214 , 0.316132 , 0.223486 , -8.815527 , -9.961025 , 0.446668 , -0.535081 , 0.842189 , 0.066256 , 0.272130 , 0.183988 , -8.719610 , -9.814281 , 0.090047 , -0.738212 , 0.487808 , 0.465896 , 0.268571 , 0.188618 , -8.916586 , -9.871761 , -0.151408 , -0.609912 , 0.636982 , 0.471419 , 0.262198 , 0.188400 , -13.828138 , -2.931034 , -0.043450 , 0.717765 , -0.333201 , 0.611377 , 0.159780 , 0.343048 , -14.260294 , -3.248905 , -0.552531 , 0.432508 , -0.898923 , 0.069552 , 0.153359 , 0.333726 , -13.891226 , -3.001553 , -0.567656 , 0.634724 , -0.772729 , 0.000671 , 0.160236 , 0.335962 , -5.440578 , -6.749432 , -1.043444 , 0.123203 , 0.076022 , 0.989441 , 0.361940 , 0.249075 , -5.164249 , -6.964359 , -1.067698 , 0.179266 , 0.213019 , 0.960448 , 0.368470 , 0.244448 , -8.362967 , -8.104809 , -1.020121 , -0.517838 , 0.284188 , 0.806848 , 0.274999 , 0.216515 , -8.443640 , -8.459911 , -0.350138 , -0.806269 , 0.501724 , 0.313242 , 0.275917 , 0.205275 , -8.226912 , -7.974255 , -0.730136 , -0.890194 , 0.329264 , 0.314798 , 0.281484 , 0.216440 , -18.491629 , -10.210270 , -0.223983 , -0.478805 , 0.863582 , 0.157750 , 0.033059 , 0.155735 , -18.537176 , -9.908627 , 0.492025 , -0.405011 , 0.840541 , -0.359752 , 0.035134 , 0.153013 , -2.981861 , -7.806828 , 0.641568 , 0.859767 , 0.504746 , 0.077517 , 0.417470 , 0.201985 , -3.064030 , -7.591434 , 0.379392 , 0.783471 , 0.598834 , 0.165868 , 0.416886 , 0.209391 , -2.977093 , -7.240253 , 0.993984 , 0.397717 , 0.834590 , -0.381115 , 0.407574 , 0.199416 , -6.027309 , -6.883404 , -0.948916 , 0.038087 , 0.438704 , 0.897794 , 0.347580 , 0.244121 , -5.475430 , -7.037136 , -0.960639 , 0.235939 , 0.578234 , 0.780969 , 0.360240 , 0.242285 , -4.605694 , -7.109669 , -1.111239 , 0.072634 , 0.239265 , 0.968200 , 0.382299 , 0.244477 , -4.648075 , -7.400448 , -0.907206 , 0.222633 , 0.782037 , 0.582080 , 0.382778 , 0.237323 , -8.740408 , -9.121387 , -0.408274 , -0.867611 , 0.346446 , 0.356639 , 0.265341 , 0.198549 , -8.637770 , -9.148716 , 0.223981 , -0.732719 , 0.255593 , 0.630665 , 0.273663 , 0.197192 , 4.643337 , -8.386028 , -0.680228 , -0.689047 , 0.248238 , 0.680868 , 0.599817 , 0.210252 , 4.458813 , -8.140430 , -1.000638 , -0.351238 , 0.149083 , 0.924314 , 0.594674 , 0.211613 , 4.447178 , -8.532650 , -0.936351 , -0.466689 , 0.397229 , 0.790155 , 0.592900 , 0.206536 , 8.172504 , -9.017475 , 4.023114 , 0.327799 , 0.807489 , 0.490371 , 0.692619 , 0.154414 , 8.048389 , -9.199886 , 2.341363 , 0.490921 , 0.593249 , 0.637959 , 0.696882 , 0.168320 , 7.830982 , -8.946232 , 2.468080 , 0.744041 , 0.185705 , 0.641774 , 0.693307 , 0.168063 , -12.034063 , -8.439754 , -0.504802 , 0.198706 , 0.894162 , 0.401196 , 0.196043 , 0.199931 , -11.587057 , -8.486462 , -0.931432 , 0.431471 , 0.379192 , 0.818537 , 0.209901 , 0.207925 , -12.041876 , -8.194729 , -0.917319 , 0.045869 , 0.464858 , 0.884152 , 0.197188 , 0.210266 , -12.356604 , -8.625271 , -0.053080 , -0.316416 , 0.804315 , 0.502914 , 0.191994 , 0.192377 , -16.726385 , -5.748333 , -0.908789 , 0.241157 , -0.160039 , 0.957183 , 0.087597 , 0.276084 , -17.038435 , -5.961964 , -0.909186 , 0.107120 , -0.282174 , 0.953337 , 0.078543 , 0.270098 , -9.072218 , -9.027035 , -0.896266 , -0.574969 , 0.147771 , 0.804682 , 0.260660 , 0.201834 , -9.482252 , -9.192921 , -1.067393 , -0.163335 , 0.105930 , 0.980834 , 0.253065 , 0.201516 , -12.960577 , -9.086727 , -0.248210 , -0.597949 , 0.630787 , 0.494491 , 0.179071 , 0.184539 , -12.857428 , -8.725368 , -0.589518 , -0.510422 , 0.713767 , 0.479537 , 0.179782 , 0.194477 , -15.639730 , -9.276165 , -0.889550 , 0.202094 , 0.274911 , 0.939970 , 0.117391 , 0.187062 , -15.591085 , -9.603573 , -0.720973 , 0.545122 , 0.662221 , 0.514054 , 0.116265 , 0.177595 , -14.864141 , -10.108913 , -0.774714 , -0.047060 , 0.822474 , 0.566820 , 0.131933 , 0.174012 , -13.772955 , -9.504208 , -0.498698 , -0.246376 , 0.867397 , 0.432295 , 0.155894 , 0.177860 , -14.069639 , -9.482258 , -0.801356 , -0.395917 , 0.577593 , 0.713858 , 0.146865 , 0.180641 , -17.774054 , -8.983883 , -0.784159 , -0.414838 , 0.671224 , 0.614246 , 0.057956 , 0.183801 , -17.408018 , -8.752491 , -0.902789 , -0.227699 , 0.594073 , 0.771477 , 0.068844 , 0.187058 , -15.757284 , -9.654087 , -0.202800 , 0.505722 , 0.855373 , 0.111942 , 0.111177 , 0.169608 , -15.192938 , -9.970974 , -0.591639 , 0.600208 , 0.726005 , 0.335643 , 0.124206 , 0.174999 , -18.989119 , -9.807430 , -0.831645 , -0.342601 , 0.560869 , 0.753655 , 0.026263 , 0.161050 , -19.034216 , -10.274769 , -0.270545 , -0.212378 , 0.977172 , -0.001404 , 0.026275 , 0.151820 , -17.612471 , -8.464848 , -0.978815 , -0.065920 , 0.175390 , 0.982269 , 0.064522 , 0.198696 , -13.411306 , -2.784504 , -1.146724 , 0.354930 , -0.285989 , 0.890042 , 0.175271 , 0.330803 , -13.436171 , -2.525265 , -0.917063 , 0.679830 , -0.525163 , 0.511856 , 0.175753 , 0.338144 , -13.682844 , -2.790035 , -0.757701 , 0.747124 , -0.624195 , 0.228339 , 0.168665 , 0.336513 , -18.162146 , -9.430058 , -0.494181 , -0.678091 , 0.611469 , 0.407727 , 0.043714 , 0.168920 , -18.432821 , -9.867855 , -0.439616 , -0.616108 , 0.524888 , 0.587237 , 0.035401 , 0.161166 , -17.502775 , -5.715878 , -0.199328 , -0.116367 , -0.987243 , -0.108554 , 0.063409 , 0.294979 , -3.566532 , 1.163029 , -0.490275 , -0.226966 , 0.906308 , 0.356426 , 0.398067 , 0.489549 , -3.927944 , 1.176426 , -0.856154 , -0.028565 , 0.692709 , 0.720634 , 0.392331 , 0.496209 , -3.112499 , -4.452610 , -1.164901 , -0.058168 , -0.866451 , 0.495804 , 0.420127 , 0.300296 , -12.319281 , -2.168934 , -0.905638 , 0.063845 , -0.916318 , 0.395245 , 0.196424 , 0.340270 , -11.963034 , -2.192577 , -1.022135 , 0.008881 , -0.898434 , 0.438948 , 0.202555 , 0.338601 , -11.254232 , -2.174648 , -0.602214 , -0.147740 , -0.958098 , 0.245308 , 0.213940 , 0.343522 , -10.594122 , -2.392902 , -0.784159 , -0.367473 , -0.840846 , 0.397382 , 0.225121 , 0.338849 , -10.140501 , -2.436489 , -0.401042 , -0.253883 , -0.862514 , 0.437696 , 0.235174 , 0.340374 , -11.369696 , -2.241299 , -0.975333 , 0.000336 , -0.958831 , 0.283944 , 0.211647 , 0.339394 , -10.876860 , -2.409084 , -1.194381 , -0.306650 , -0.576128 , 0.757622 , 0.218490 , 0.336334 , -16.863920 , 0.470615 , -0.788413 , 0.343883 , 0.629688 , 0.696554 , 0.088340 , 0.466476 , -16.364447 , 0.818790 , -0.978190 , 0.079745 , 0.345103 , 0.935148 , 0.099275 , 0.476810 , -17.164068 , 1.121685 , -1.075541 , 0.170476 , 0.405438 , 0.898068 , 0.079835 , 0.482449 , -13.666235 , -2.468441 , -0.310054 , 0.815271 , -0.192206 , 0.546190 , 0.167693 , 0.344702 , -13.444845 , -2.221531 , -0.546721 , 0.551897 , -0.630757 , 0.545457 , 0.176435 , 0.345505 , -13.691839 , -1.968639 , -0.187552 , 0.128727 , -0.339793 , 0.931639 , 0.172741 , 0.355226 , -6.062206 , -7.006985 , 0.367311 , 0.022675 , 0.956359 , 0.291208 , 0.343847 , 0.217301 , -3.265690 , -7.562809 , -0.386130 , 0.289865 , 0.891049 , -0.349223 , 0.409754 , 0.223282 , -12.454412 , -2.084286 , -0.538005 , -0.055574 , -0.938902 , 0.339610 , 0.193933 , 0.347539 , -12.692114 , -2.345379 , -1.167605 , -0.033540 , -0.607013 , 0.793970 , 0.192033 , 0.336190 , -4.859791 , -4.583858 , -0.162516 , 0.077334 , -0.981964 , -0.172491 , 0.376154 , 0.311608 , -5.239658 , -4.485714 , -0.839885 , 0.145665 , -0.986755 , -0.071047 , 0.365630 , 0.301659 , -4.429996 , -4.409557 , -0.715495 , 0.101413 , -0.987762 , -0.118381 , 0.389157 , 0.305272 , -2.491901 , -7.852970 , -0.448527 , -0.039216 , 0.985321 , 0.166082 , 0.430813 , 0.223493 , -2.726612 , -7.759434 , -0.671248 , -0.030244 , 0.977813 , 0.207190 , 0.425020 , 0.231274 , -3.152111 , -7.789936 , -0.932303 , 0.064425 , 0.882077 , 0.466659 , 0.417097 , 0.236803 , -11.967680 , -2.069698 , -0.253371 , -0.084201 , -0.975585 , 0.202826 , 0.201740 , 0.352400 , -3.166897 , -4.349247 , 0.064752 , 0.007324 , -0.999573 , 0.028199 , 0.408756 , 0.321807 , -3.061031 , -4.448162 , 0.538686 , 0.132756 , -0.988495 , 0.072329 , 0.408683 , 0.331169 , 5.791409 , -7.429821 , -0.336119 , -0.751091 , 0.649525 , 0.117893 , 0.638526 , 0.224020 , 5.575329 , -7.432690 , -0.898452 , -0.392285 , 0.353099 , 0.849330 , 0.625502 , 0.230963 , -2.834461 , -7.580776 , 0.137605 , 0.454390 , 0.890683 , -0.012146 , 0.420363 , 0.214311 , -2.971485 , -7.605648 , -0.243117 , 0.360637 , 0.894894 , -0.262734 , 0.419791 , 0.222000 , -15.934843 , -4.294842 , -1.082610 , 0.550737 , -0.160405 , 0.819086 , 0.114772 , 0.311429 , -16.016966 , -3.994045 , -0.992926 , 0.677297 , -0.198126 , 0.708487 , 0.115202 , 0.319205 , -16.178091 , -4.104664 , -0.699221 , 0.879330 , -0.093722 , 0.466872 , 0.108541 , 0.314938 , 1.717396 , -2.155430 , -0.729846 , 0.132572 , -0.849635 , 0.510392 , 0.530426 , 0.350765 , 2.186031 , -1.652889 , -0.385051 , 0.073031 , -0.792566 , 0.605365 , 0.538120 , 0.359465 , -18.644384 , -4.973835 , -0.344447 , -0.656392 , -0.626484 , 0.420240 , 0.036322 , 0.301199 , -18.409544 , -5.383785 , -0.748713 , -0.460402 , -0.684561 , 0.565111 , 0.043242 , 0.287546 , 1.899044 , -8.579762 , -0.588359 , 0.269906 , 0.897061 , 0.349834 , 0.537745 , 0.204128 , -2.936672 , -4.440350 , -0.902854 , 0.252876 , -0.931822 , 0.260292 , 0.423178 , 0.307600 , 2.467213 , -9.895222 , 0.340715 , -0.805292 , 0.419233 , 0.419141 , 0.546748 , 0.169271 , -15.988646 , 0.268856 , -0.821181 , -0.067751 , 0.658406 , 0.749596 , 0.108440 , 0.465533 , -15.541945 , 0.411106 , -0.544009 , -0.532945 , 0.739280 , 0.411542 , 0.117103 , 0.463043 , 2.649624 , -9.215267 , 0.623494 , -0.905576 , 0.391430 , 0.163335 , 0.558921 , 0.172569 , 2.724857 , -9.231052 , -0.009891 , -0.549486 , 0.824122 , 0.137303 , 0.556307 , 0.183446 , -1.845989 , 1.176266 , -0.950038 , 0.044771 , 0.345470 , 0.937346 , 0.438479 , 0.494919 , -1.593716 , 1.018749 , -0.915206 , 0.061983 , 0.490371 , 0.869289 , 0.446281 , 0.487354 , -5.232365 , -7.176182 , -0.927207 , 0.322794 , 0.731620 , 0.600391 , 0.367147 , 0.239475 , -12.374655 , 0.796795 , -0.631953 , 0.232948 , 0.900815 , 0.366375 , 0.195406 , 0.472612 , -12.985624 , 0.751698 , -0.319915 , -0.393689 , 0.911130 , 0.121647 , 0.185199 , 0.466628 , 0.811100 , -8.668224 , -0.852786 , -0.299844 , 0.593097 , 0.747185 , 0.515421 , 0.204886 , -3.925808 , -4.262325 , -1.319888 , 0.066073 , -0.690451 , 0.720328 , 0.403256 , 0.298447 , -3.929157 , -4.340038 , -0.851847 , -0.019837 , -0.993500 , -0.111972 , 0.399882 , 0.303504 , 2.820225 , -1.930088 , -0.995513 , 0.062471 , -0.891781 , 0.448103 , 0.555819 , 0.350340 , 2.918423 , -2.159557 , -1.385752 , 0.121677 , -0.432997 , 0.893124 , 0.557038 , 0.342901 , 3.190350 , -1.819515 , -0.929606 , 0.132694 , -0.753197 , 0.644246 , 0.560264 , 0.356519 , -11.774260 , 0.344913 , -0.363009 , 0.577227 , 0.628224 , 0.521622 , 0.209894 , 0.469442 , -11.656401 , 0.978344 , -1.030780 , 0.139622 , 0.356059 , 0.923948 , 0.211833 , 0.485854 , -11.995253 , 0.650631 , -0.726130 , 0.194037 , 0.757805 , 0.622913 , 0.206538 , 0.477832 , 0.088619 , -3.000286 , -1.207797 , 0.001679 , -0.214240 , 0.976775 , 0.496508 , 0.327778 , 0.052624 , -2.636433 , -1.045527 , 0.235542 , -0.704917 , 0.668996 , 0.494955 , 0.336703 , 4.632359 , -2.039639 , -0.767046 , -0.474593 , -0.537919 , 0.696677 , 0.599144 , 0.355278 , -1.138798 , -3.105251 , -0.968913 , 0.367138 , -0.796564 , 0.480270 , 0.469683 , 0.325826 , -1.021214 , -3.508450 , -1.399848 , 0.031251 , -0.150212 , 0.988128 , 0.472387 , 0.316425 , -13.462591 , -9.342083 , -0.652323 , -0.449629 , 0.672719 , 0.587573 , 0.165020 , 0.184038 , -13.147711 , -9.524258 , 0.212850 , -0.534318 , 0.451247 , 0.714713 , 0.173327 , 0.171793 , 8.767376 , -4.296566 , -0.498454 , -0.080050 , -0.996612 , 0.017457 , 0.707528 , 0.305953 , 8.534969 , -4.281879 , -0.818522 , -0.165319 , -0.986206 , -0.007630 , 0.699633 , 0.301045 , -8.895445 , -9.551693 , -0.362956 , -0.791681 , 0.440809 , 0.422956 , 0.260590 , 0.193934 , 5.039410 , -2.810429 , -1.095153 , -0.541246 , -0.567370 , 0.620563 , 0.608980 , 0.338884 , 5.043209 , -3.078449 , -1.207869 , -0.221107 , -0.144688 , 0.964446 , 0.608214 , 0.330547 , 5.328144 , -3.004551 , -1.105342 , -0.330668 , -0.630299 , 0.702353 , 0.615789 , 0.333082 , 5.382389 , 1.043293 , -1.021693 , 0.013184 , 0.304117 , 0.952513 , 0.622881 , 0.485492 , 7.776325 , -9.462780 , 4.262097 , -0.453658 , 0.112522 , 0.884030 , 0.690497 , 0.151467 , 8.144138 , -7.242458 , 0.161824 , -0.356243 , 0.763146 , 0.539140 , 0.687363 , 0.223500 , 5.230900 , -2.755161 , -0.788241 , -0.529069 , -0.596271 , 0.603717 , 0.619741 , 0.341817 , -18.837599 , -10.099964 , 1.160730 , 0.050478 , 0.952818 , 0.299234 , 0.033032 , 0.142937 , -18.407476 , -10.058651 , 1.089193 , -0.349467 , 0.842158 , 0.410627 , 0.040605 , 0.144203 , -19.422239 , -9.894596 , 0.727008 , -0.100986 , 0.994751 , -0.016114 , 0.027992 , 0.145130 , 3.725430 , -8.550396 , -1.019743 , 0.017151 , 0.470717 , 0.882077 , 0.580832 , 0.207468 , 3.016727 , -8.600101 , -0.998964 , -0.046754 , 0.462111 , 0.885556 , 0.567537 , 0.207207 , 3.609104 , -8.822514 , -0.423487 , -0.009247 , 0.985992 , 0.166417 , 0.574976 , 0.194484 , 9.188488 , -4.330723 , -0.509448 , -0.008393 , -0.996460 , 0.083407 , 0.718362 , 0.302962 , 3.621174 , -2.016811 , -1.190028 , -0.049013 , -0.728111 , 0.683676 , 0.569654 , 0.352192 , 4.636402 , -2.482075 , -1.138608 , -0.453627 , -0.549028 , 0.701956 , 0.596825 , 0.341860 , 4.434849 , -2.616184 , -1.282664 , -0.221168 , -0.166204 , 0.960936 , 0.591280 , 0.338393 , 4.755116 , -2.746754 , -1.324527 , -0.282632 , -0.275979 , 0.918638 , 0.599770 , 0.335691 , -1.936993 , -3.866848 , -0.061763 , 0.747673 , -0.628620 , -0.213935 , 0.436165 , 0.329824 , -1.832462 , -3.536190 , -0.485835 , 0.723502 , -0.688803 , -0.045473 , 0.444598 , 0.328183 , 1.722614 , -2.319798 , -1.099604 , 0.107547 , -0.613575 , 0.782250 , 0.531990 , 0.342850 , 1.981350 , -2.517078 , -1.201010 , 0.173925 , -0.120060 , 0.977386 , 0.538111 , 0.337441 , -8.112692 , -4.563206 , -0.587012 , -0.193182 , -0.891568 , 0.409589 , 0.294823 , 0.303127 , -8.352186 , -4.689350 , -0.840098 , -0.076174 , -0.581164 , 0.810175 , 0.288291 , 0.294756 , -7.798275 , -4.723774 , -0.853797 , 0.020783 , -0.791498 , 0.610797 , 0.300015 , 0.295012 , 1.111462 , -2.363026 , -1.183287 , 0.160863 , -0.584857 , 0.795007 , 0.517016 , 0.340348 , 1.419636 , -2.270115 , -1.104468 , -0.057283 , -0.686544 , 0.724784 , 0.525388 , 0.343979 , 4.482998 , -2.297466 , -1.112471 , -0.489029 , -0.520463 , 0.699942 , 0.591781 , 0.347156 , 0.761669 , -2.324383 , -0.286296 , 0.325571 , -0.877071 , 0.353130 , 0.506547 , 0.353206 , 0.593029 , -2.501926 , -1.112979 , 0.207434 , -0.698721 , 0.684622 , 0.505277 , 0.339754 , -0.768513 , -8.446484 , -0.359477 , 0.656301 , 0.728782 , 0.195257 , 0.475843 , 0.208005 , -0.943211 , -2.677425 , 0.301786 , 0.589465 , -0.771661 , 0.238777 , 0.459985 , 0.353430 , -1.325718 , -2.934200 , -0.278788 , 0.609424 , -0.790704 , 0.057680 , 0.457457 , 0.339653 , -5.924732 , -4.328899 , 0.433332 , -0.255501 , -0.906461 , 0.336161 , 0.346663 , 0.326808 , -7.720097 , -4.530613 , 0.693803 , -0.392621 , -0.914731 , -0.095187 , 0.309994 , 0.324607 , -7.341099 , -4.521564 , 0.472730 , -0.143040 , -0.988433 , -0.050020 , 0.314211 , 0.320313 , -6.319843 , -4.503414 , -0.000224 , 0.068422 , -0.992523 , 0.100803 , 0.340258 , 0.314946 , -6.682522 , -4.493824 , -0.147589 , -0.014527 , -0.999878 , 0.005493 , 0.329402 , 0.311630 , -6.409290 , -4.547520 , -0.597178 , -0.067049 , -0.982574 , 0.173315 , 0.336342 , 0.302610 , -1.487812 , -3.291821 , -0.967814 , 0.609333 , -0.683126 , 0.402478 , 0.459416 , 0.325703 , 8.004848 , -6.879108 , -0.359431 , -0.227027 , 0.968505 , 0.102145 , 0.687769 , 0.233992 , 7.364780 , -7.133533 , -0.288317 , -0.031068 , 0.999237 , 0.022706 , 0.674099 , 0.231314 , 7.800800 , -7.031719 , -0.074507 , -0.110752 , 0.900510 , 0.420454 , 0.681642 , 0.228911 , 3.851582 , -2.259434 , -1.420172 , -0.177038 , -0.406384 , 0.896359 , 0.575107 , 0.344913 , -9.019991 , -3.856113 , -0.326648 , -0.827143 , -0.516373 , 0.221686 , 0.269227 , 0.317258 , -5.876980 , -4.580936 , -0.513469 , 0.008759 , -0.994751 , 0.101688 , 0.351851 , 0.305996 , -6.075626 , -4.540241 , -0.199103 , 0.058657 , -0.981170 , 0.183935 , 0.347593 , 0.312101 , -2.308956 , -4.249645 , -1.314036 , 0.395978 , -0.396069 , 0.828425 , 0.439164 , 0.303540 , -2.509937 , -4.246372 , -1.066428 , 0.579058 , -0.710410 , 0.399945 , 0.433770 , 0.308366 , -6.548199 , -7.137966 , 0.264390 , 0.031983 , 0.981842 , 0.186834 , 0.332045 , 0.219623 , -6.547161 , -4.493114 , 0.945665 , 0.495285 , -0.833857 , 0.243538 , 0.332772 , 0.325372 , -8.077551 , -4.295101 , 0.585469 , -0.365825 , -0.891873 , 0.265816 , 0.302034 , 0.324027 , -7.957630 , -4.429287 , -0.043010 , -0.247932 , -0.947356 , 0.202429 , 0.299915 , 0.313614 , -6.687382 , 1.536755 , -1.090007 , -0.014954 , 0.005799 , 0.999847 , 0.328457 , 0.501567 , -6.312962 , 1.280209 , -1.041377 , -0.140629 , 0.349071 , 0.926450 , 0.337078 , 0.496393 , -6.765316 , -4.559025 , -1.045893 , -0.078097 , -0.682943 , 0.726249 , 0.327959 , 0.293058 , -6.405857 , -4.774815 , -1.029753 , -0.064241 , -0.423505 , 0.903592 , 0.339708 , 0.290951 , -14.649847 , -3.830570 , -1.321227 , 0.046541 , -0.129429 , 0.990478 , 0.145352 , 0.319261 , -14.385717 , -3.775890 , -1.238272 , -0.078738 , -0.190771 , 0.978454 , 0.151847 , 0.317384 , -14.628553 , -3.392033 , -0.947139 , 0.134404 , -0.857204 , 0.497116 , 0.146817 , 0.326556 , -12.982092 , -2.400600 , -1.226325 , 0.182836 , -0.469192 , 0.863918 , 0.186183 , 0.335021 , -13.218481 , -2.517818 , -1.154338 , 0.443403 , -0.407849 , 0.798120 , 0.180440 , 0.334502 , -7.070072 , -4.505535 , -0.401774 , 0.071017 , -0.993927 , 0.083987 , 0.320175 , 0.306609 , -7.510799 , -4.650875 , -0.751860 , 0.177496 , -0.909726 , 0.375317 , 0.308810 , 0.296442 , -9.791578 , -9.416996 , -1.030318 , 0.059450 , 0.500381 , 0.863735 , 0.246694 , 0.198230 , -9.523977 , -9.599102 , -0.917758 , -0.009552 , 0.743065 , 0.669149 , 0.250907 , 0.195433 , -12.655493 , -9.347561 , 0.413198 , -0.455763 , 0.426954 , 0.780999 , 0.186639 , 0.175627 , -7.337597 , -4.519001 , 0.163789 , -0.059450 , -0.998169 , 0.008637 , 0.316081 , 0.312902 , -9.719671 , 0.903690 , -0.404979 , 0.009095 , 0.715201 , 0.698843 , 0.258898 , 0.474699 , -9.509787 , 0.425930 , -0.128638 , 0.090121 , 0.666890 , 0.739647 , 0.267518 , 0.466571 , -9.045553 , 0.481449 , -0.540873 , 0.318796 , 0.620716 , 0.716269 , 0.278867 , 0.477374 , -15.027639 , -3.365566 , -0.843108 , -0.183691 , -0.765954 , 0.616047 , 0.137626 , 0.330072 , -9.355513 , -3.333759 , -0.848292 , -0.862911 , -0.175054 , 0.473983 , 0.250340 , 0.320219 , -9.458151 , -3.716709 , -1.095916 , -0.588366 , -0.000031 , 0.808588 , 0.249831 , 0.313709 , -9.180189 , -3.487164 , -0.494838 , -0.928190 , -0.273446 , 0.252235 , 0.260161 , 0.322152 , -9.330370 , -3.052502 , -0.648457 , -0.792047 , -0.421522 , 0.441511 , 0.253220 , 0.326342 , -9.736822 , -2.607113 , -0.495280 , -0.351756 , -0.742180 , 0.570421 , 0.245908 , 0.334343 , -13.035139 , -2.092281 , -0.554301 , 0.154088 , -0.859645 , 0.487045 , 0.185094 , 0.347572 , -12.224241 , -2.369297 , -1.132972 , 0.047365 , -0.431623 , 0.900784 , 0.198305 , 0.334852 , -11.965063 , -2.328884 , -1.173648 , 0.037660 , -0.387616 , 0.921018 , 0.202404 , 0.334712 , -9.859678 , 1.266605 , -1.014025 , -0.072634 , 0.444319 , 0.892911 , 0.254899 , 0.493776 , -9.818792 , 1.085117 , -0.764731 , -0.212134 , 0.811182 , 0.544939 , 0.254497 , 0.483907 , -9.486563 , 1.094372 , -0.792228 , 0.274148 , 0.737907 , 0.616688 , 0.264754 , 0.488036 , -13.323210 , -8.789272 , -0.932536 , -0.262886 , 0.343059 , 0.901761 , 0.167934 , 0.195951 , -16.298101 , -4.318783 , -0.499430 , 0.855861 , -0.224342 , 0.465957 , 0.101936 , 0.315616 , -16.591131 , -4.513821 , -0.090289 , 0.924894 , -0.283425 , 0.253334 , 0.093014 , 0.316859 , -13.919462 , -2.488094 , -0.128871 , 0.323771 , 0.228767 , 0.918027 , 0.161027 , 0.351073 , -18.453665 , 1.234249 , -0.130687 , 0.777429 , 0.600848 , 0.185797 , 0.046017 , 0.466781 , -18.676779 , 1.446522 , 0.195054 , 0.465957 , 0.837001 , 0.286843 , 0.038417 , 0.462905 , -18.423391 , 1.007038 , 0.249974 , 0.803827 , 0.441511 , 0.398602 , 0.046261 , 0.459820 , -14.150835 , 0.218433 , -0.514373 , 0.153050 , 0.491317 , 0.857418 , 0.154130 , 0.456986 , -14.531591 , 0.461796 , 0.139547 , 0.960997 , 0.111118 , 0.253182 , 0.148983 , 0.448227 , -14.451735 , 0.275112 , -0.276141 , 0.737510 , -0.368053 , 0.566210 , 0.151800 , 0.451742 , -11.161291 , 0.374081 , -0.953738 , 0.118778 , 0.537706 , 0.834681 , 0.225495 , 0.474501 , -9.032316 , -3.781338 , -0.084938 , -0.847591 , -0.530534 , -0.008454 , 0.273821 , 0.325816 , -8.550138 , -4.191715 , 0.486535 , -0.326640 , -0.928434 , 0.176824 , 0.292104 , 0.326565 , -8.610518 , -4.382595 , -0.583392 , -0.429334 , -0.736473 , 0.522691 , 0.281820 , 0.305433 , -15.155478 , -3.096767 , -0.636534 , -0.571184 , -0.591174 , 0.569384 , 0.136743 , 0.339543 , 4.148129 , -2.360241 , -1.401051 , -0.278573 , -0.254036 , 0.926176 , 0.582906 , 0.342755 , -13.982634 , -3.050640 , -1.104178 , 0.471603 , -0.583392 , 0.661184 , 0.163156 , 0.329080 , -13.288107 , 0.387943 , -0.391997 , -0.517411 , 0.624775 , 0.584704 , 0.174453 , 0.465361 , -13.049574 , 0.808064 , -0.660720 , -0.105106 , 0.781335 , 0.615162 , 0.178529 , 0.475865 , -13.622686 , 0.519230 , -0.499186 , -0.125858 , 0.479263 , 0.868557 , 0.164989 , 0.467107 , 6.325130 , -3.790630 , -0.394336 , -0.705679 , -0.601215 , 0.374859 , 0.649592 , 0.327119 , 6.229671 , -3.897701 , -0.827555 , -0.728996 , -0.588305 , 0.349895 , 0.644852 , 0.319609 , 0.622692 , -2.915798 , -1.222787 , 0.042940 , -0.129582 , 0.990631 , 0.507509 , 0.329491 , -7.142658 , -7.000172 , 0.739721 , 0.105808 , 0.818903 , 0.564074 , 0.316710 , 0.211383 , -16.201170 , -5.405430 , -1.005442 , 0.175817 , 0.042024 , 0.983520 , 0.103502 , 0.282776 , -16.323080 , -4.958614 , -0.980311 , 0.503983 , -0.247810 , 0.827387 , 0.101434 , 0.297035 , 0.922527 , -8.861111 , -0.506308 , -0.479263 , 0.711600 , 0.513688 , 0.514743 , 0.198286 , 1.830715 , -8.436207 , -0.915702 , 0.118473 , 0.634114 , 0.764092 , 0.538169 , 0.210836 , 6.843632 , -6.824741 , 0.203670 , 0.031892 , 0.994995 , 0.094668 , 0.659299 , 0.219889 , 7.231228 , -7.041897 , 0.117788 , 0.363872 , 0.931333 , 0.014161 , 0.667577 , 0.223321 , 2.323170 , -9.182858 , -0.306987 , 0.430464 , 0.725852 , 0.536454 , 0.545765 , 0.190549 , 0.381443 , -8.252071 , -0.972936 , -0.088565 , -0.006561 , 0.996033 , 0.502412 , 0.217821 , 5.970905 , -7.159428 , 0.225385 , -0.635182 , 0.687307 , 0.352245 , 0.646229 , 0.218484 , 6.145115 , -7.880756 , 0.572744 , -0.491043 , 0.395001 , 0.776421 , 0.643588 , 0.208363 , -9.213354 , -4.427227 , -0.955878 , -0.307077 , -0.104251 , 0.945921 , 0.262052 , 0.298580 , 0.762554 , -9.064617 , -0.313761 , -0.186987 , 0.969268 , 0.159673 , 0.511949 , 0.194059 , -14.005880 , 0.792606 , -0.673838 , -0.039155 , 0.559496 , 0.827876 , 0.157653 , 0.472986 , -13.870123 , 1.141788 , -0.977885 , -0.035920 , 0.554826 , 0.831172 , 0.160049 , 0.483973 , -14.431288 , 0.963261 , -0.900218 , -0.123447 , 0.612690 , 0.780602 , 0.143185 , 0.479472 , 8.333744 , -4.225582 , -1.044333 , -0.127354 , -0.746391 , 0.653188 , 0.694942 , 0.295324 , 7.810566 , -4.168331 , -1.070014 , 0.068209 , -0.753746 , 0.653554 , 0.685218 , 0.297807 , 1.419170 , -8.790524 , 0.176900 , -0.270760 , 0.554735 , 0.786706 , 0.528535 , 0.187577 , -17.084555 , -8.626263 , -0.877593 , 0.099368 , 0.547197 , 0.831050 , 0.079813 , 0.194078 , -14.862303 , -3.373730 , -0.343356 , -0.415479 , -0.891201 , 0.181951 , 0.143206 , 0.336948 , -15.120756 , -2.829288 , -0.271991 , -0.787835 , -0.216315 , 0.576586 , 0.139761 , 0.346963 , -14.714262 , -3.378506 , 0.126676 , -0.264077 , -0.711722 , 0.650868 , 0.146032 , 0.343553 , -14.293997 , -3.272198 , 0.099847 , 0.390210 , -0.642872 , 0.659108 , 0.152568 , 0.344196 , -18.314726 , -8.748371 , -1.038041 , -0.157811 , 0.061068 , 0.985565 , 0.044180 , 0.188150 , -18.696547 , -9.266422 , -1.090054 , -0.007599 , 0.311472 , 0.950194 , 0.034353 , 0.176266 , -18.367392 , -9.269650 , -1.032698 , -0.430586 , 0.399640 , 0.809229 , 0.039583 , 0.177143 , -16.092337 , -4.580021 , -1.029673 , 0.659871 , -0.245827 , 0.709983 , 0.108742 , 0.305424 , -17.427443 , -5.987263 , -0.898513 , -0.075167 , -0.372295 , 0.925047 , 0.067144 , 0.269883 , -17.254103 , -6.409855 , -0.969826 , -0.001465 , -0.102512 , 0.994720 , 0.071733 , 0.254413 , -16.807104 , -5.340733 , -0.803954 , 0.474197 , -0.256752 , 0.842097 , 0.085790 , 0.289847 , -16.622198 , -5.035000 , -0.843791 , 0.540910 , -0.474136 , 0.694662 , 0.092351 , 0.297365 , -16.744162 , -4.799824 , -0.298812 , 0.857601 , -0.505692 , 0.093539 , 0.086957 , 0.308024 , -16.871580 , -5.091038 , -0.592604 , 0.781487 , -0.564714 , 0.265206 , 0.084909 , 0.299447 , -3.452351 , -4.413181 , -1.247348 , -0.148442 , -0.689871 , 0.708518 , 0.411806 , 0.297253 , -12.099272 , -8.938717 , 0.484731 , -0.049135 , 0.626484 , 0.777856 , 0.197310 , 0.183302 , -11.825270 , -8.736172 , 0.082235 , 0.431593 , 0.788079 , 0.438856 , 0.199078 , 0.189912 , -8.105261 , -7.728481 , -0.599681 , -0.943693 , 0.103824 , 0.314066 , 0.286994 , 0.219315 , -8.295912 , -7.638088 , -0.946418 , -0.500687 , -0.030488 , 0.865047 , 0.280501 , 0.223423 , -3.914715 , -4.648487 , -1.210009 , 0.145543 , 0.230689 , 0.962066 , 0.402897 , 0.291182 , -16.384230 , 0.428761 , -0.836306 , 0.160863 , 0.558672 , 0.813623 , 0.098494 , 0.466202 , -17.960150 , -5.466427 , -0.454936 , -0.449660 , -0.836665 , 0.312632 , 0.051660 , 0.290826 , -17.613714 , -5.674770 , -0.638217 , -0.173345 , -0.894131 , 0.412854 , 0.061363 , 0.285020 , 9.161983 , -4.347988 , -0.061610 , -0.036134 , -0.969512 , -0.242256 , 0.720210 , 0.311975 , 8.004940 , 0.911442 , -0.041484 , -0.179724 , 0.877987 , 0.443587 , 0.687599 , 0.469371 , 2.683491 , -8.516064 , -1.014431 , -0.020600 , 0.224158 , 0.974303 , 0.557580 , 0.210529 , 3.234295 , 1.913670 , -0.738856 , -0.015992 , 0.604053 , 0.796777 , 0.566279 , 0.503565 , 7.074581 , -7.128384 , 0.625966 , 0.053713 , 0.781304 , 0.621815 , 0.665059 , 0.214185 , 8.293636 , -4.290874 , -0.279643 , -0.013031 , -0.997742 , -0.065493 , 0.693339 , 0.311598 , 6.372318 , -7.020977 , -0.913195 , 0.143376 , 0.304788 , 0.941557 , 0.650623 , 0.241587 , 7.532482 , -4.358906 , -0.113276 , -0.069491 , -0.979125 , 0.190863 , 0.684981 , 0.320805 , -0.548382 , -8.050053 , -0.988998 , 0.149022 , 0.278237 , 0.948851 , 0.483058 , 0.221658 , -5.871952 , 0.791080 , -0.454264 , -0.467147 , 0.583880 , 0.663930 , 0.345654 , 0.482379 , -0.859264 , -7.620770 , -1.073156 , 0.010407 , 0.181799 , 0.983276 , 0.472639 , 0.231617 , 2.971798 , -1.628010 , -0.642253 , 0.402203 , -0.729270 , 0.553484 , 0.555119 , 0.362227 , -4.001659 , -7.246029 , 0.656881 , 0.041688 , 0.987365 , -0.152837 , 0.389748 , 0.208337 , -0.059490 , -8.290524 , -1.006110 , 0.123386 , 0.035310 , 0.991699 , 0.495378 , 0.215880 , -11.512129 , -9.231586 , 0.325785 , 0.681936 , 0.481918 , 0.550127 , 0.208675 , 0.183063 , -11.637911 , -8.744152 , -0.368815 , 0.716910 , 0.641774 , 0.272256 , 0.204117 , 0.196158 , -17.143515 , -5.584095 , -0.229411 , 0.573077 , -0.807733 , -0.138218 , 0.072263 , 0.297153 , -9.993307 , -9.413845 , -1.032563 , 0.011292 , 0.575823 , 0.817469 , 0.240200 , 0.199588 , -16.499418 , -4.750904 , -0.533622 , 0.672475 , -0.574572 , 0.466475 , 0.095907 , 0.306403 , -5.639332 , -7.187740 , -0.591413 , 0.179235 , 0.967437 , 0.178533 , 0.361058 , 0.234185 , -7.998938 , -7.507130 , -0.019450 , -0.973022 , 0.209571 , 0.096194 , 0.296396 , 0.215897 , -10.413610 , -10.472286 , 0.640359 , 0.019562 , 0.875942 , 0.481979 , 0.241416 , 0.167359 , -13.569502 , -9.599911 , -0.211283 , -0.362133 , 0.793786 , 0.488571 , 0.164163 , 0.175101 , -10.075850 , -9.616154 , -0.280577 , 0.177129 , 0.850307 , 0.495499 , 0.238739 , 0.188587 , -10.757299 , -9.903835 , 0.093129 , 0.211402 , 0.779900 , 0.589068 , 0.229456 , 0.183987 , -10.081778 , -9.913754 , 0.003743 , 0.233863 , 0.688711 , 0.686270 , 0.241877 , 0.182038 , -14.506926 , -9.799259 , -0.844363 , -0.458327 , 0.580126 , 0.673299 , 0.137867 , 0.178726 , -10.620825 , 1.039288 , -1.046168 , -0.233741 , 0.291940 , 0.927396 , 0.233783 , 0.487134 , -10.565893 , 0.381824 , -0.781367 , -0.458846 , 0.524491 , 0.717154 , 0.235993 , 0.474555 , -10.268011 , 0.806118 , -0.720988 , -0.488998 , 0.542039 , 0.683401 , 0.244224 , 0.480256 , -8.801283 , -4.672428 , -0.889689 , -0.199774 , -0.310709 , 0.929258 , 0.274750 , 0.294076 , 5.362766 , 1.371540 , -1.104458 , -0.004120 , 0.080721 , 0.996704 , 0.623838 , 0.494479 , 4.777653 , 1.012753 , -0.962771 , 0.088595 , 0.160283 , 0.983062 , 0.609650 , 0.483637 , -13.115980 , 0.658192 , -0.010020 , -0.627766 , 0.763665 , 0.150487 , 0.180888 , 0.458794 , -9.153814 , -10.112972 , 0.429647 , -0.368206 , 0.923887 , 0.104068 , 0.262183 , 0.178415 , 5.134663 , 0.383915 , -0.418723 , -0.140660 , 0.974151 , 0.176702 , 0.616704 , 0.460633 , 5.037540 , -7.906475 , -0.580622 , -0.550218 , 0.473495 , 0.687765 , 0.612227 , 0.219512 , 5.270069 , -7.571201 , -0.893739 , -0.090182 , 0.435286 , 0.895749 , 0.615769 , 0.228836 , 4.771954 , -7.655910 , -0.897296 , -0.276101 , 0.244057 , 0.929594 , 0.603905 , 0.225404 , -10.082472 , 1.039532 , -0.895865 , -0.221595 , 0.660146 , 0.717673 , 0.249003 , 0.487138 , -3.053677 , 1.691097 , -1.007641 , 0.052767 , 0.355022 , 0.933348 , 0.410345 , 0.503460 , -2.761860 , 1.445415 , -0.929829 , 0.328837 , 0.529038 , 0.782250 , 0.419740 , 0.496443 , -0.568378 , -8.489391 , -0.767763 , 0.513352 , 0.652791 , 0.557024 , 0.485948 , 0.212867 , -0.116154 , -8.844769 , -0.549723 , 0.398175 , 0.887661 , 0.231269 , 0.493208 , 0.205050 , -10.965384 , 1.119465 , -1.096650 , -0.037660 , 0.099155 , 0.994354 , 0.224412 , 0.489951 , -11.387831 , 0.688213 , -1.012255 , 0.302316 , 0.369732 , 0.878536 , 0.220192 , 0.480285 , -0.413090 , 18.083302 , -0.845423 , 0.118107 , -0.469100 , 0.875179 , 0.481852 , 0.968327 , -0.442638 , 18.397644 , -0.778922 , 0.067904 , -0.036531 , 0.997009 , 0.479676 , 0.977307 , -0.852108 , 18.385029 , -0.697982 , 0.132817 , 0.047609 , 0.989990 , 0.470996 , 0.978997 , -10.993795 , 0.756901 , -1.016948 , -0.120090 , 0.252724 , 0.960021 , 0.228796 , 0.480056 , 3.351688 , 1.662060 , -0.552901 , 0.270119 , 0.696005 , 0.665273 , 0.570355 , 0.494418 , -12.184004 , 0.960667 , -0.952674 , 0.166814 , 0.576556 , 0.799799 , 0.200414 , 0.483865 , -12.724325 , 1.289921 , -1.017939 , 0.037507 , 0.332896 , 0.942198 , 0.185551 , 0.492387 , -12.630140 , 0.965878 , -0.885993 , 0.081759 , 0.647084 , 0.757988 , 0.188774 , 0.482132 , -14.622877 , 1.210964 , -1.082654 , -0.082064 , 0.295999 , 0.951628 , 0.137510 , 0.488799 , -15.307226 , 1.256268 , -1.117381 , -0.028016 , 0.123630 , 0.991913 , 0.120508 , 0.491917 , -15.143927 , 0.961987 , -1.013716 , -0.092044 , 0.472854 , 0.876278 , 0.126559 , 0.481890 , -15.556669 , 0.994038 , -1.077975 , -0.081820 , 0.295694 , 0.951750 , 0.115990 , 0.482706 , 2.020710 , 1.545284 , -1.047168 , -0.254952 , 0.170507 , 0.951781 , 0.530525 , 0.497434 , -0.591640 , 0.299122 , -0.381144 , 0.358745 , 0.912748 , 0.195318 , 0.471065 , 0.470120 , -0.560566 , 0.338291 , -0.702948 , 0.176824 , 0.791040 , 0.585620 , 0.470099 , 0.477591 , -0.861996 , 0.540058 , -0.704032 , 0.373089 , 0.717643 , 0.588000 , 0.462375 , 0.479874 , -1.315189 , 0.686192 , -0.571086 , 0.245796 , 0.896725 , 0.367992 , 0.452478 , 0.479258 , 1.400249 , 1.512394 , -1.111716 , -0.047304 , 0.025910 , 0.998535 , 0.516578 , 0.498945 , -1.563335 , 14.922550 , -3.050990 , 0.077029 , -0.309244 , 0.947844 , 0.449022 , 0.874105 , -2.244343 , 14.567234 , -3.149852 , -0.020631 , -0.355113 , 0.934568 , 0.433785 , 0.864765 , -1.840000 , 14.381962 , -3.192088 , -0.032624 , -0.231422 , 0.972289 , 0.443479 , 0.858702 , 8.582973 , 1.277233 , -0.345599 , -0.214698 , 0.866848 , 0.449904 , 0.703157 , 0.481568 , 8.798100 , 1.128605 , 0.019063 , -0.243721 , 0.912595 , 0.328227 , 0.706949 , 0.471944 , 9.191570 , 1.369511 , -0.322673 , -0.023316 , 0.932920 , 0.359233 , 0.717239 , 0.484911 , -18.123564 , -9.191174 , -0.851729 , -0.537675 , 0.520737 , 0.663076 , 0.047780 , 0.179610 , -2.640743 , 15.092560 , -2.916394 , -0.012848 , -0.448469 , 0.893674 , 0.424094 , 0.879790 , -13.263567 , 1.120670 , -0.905772 , -0.004578 , 0.597064 , 0.802149 , 0.174788 , 0.485833 , -5.059933 , 1.465160 , -0.787425 , -0.058473 , 0.673879 , 0.736473 , 0.365206 , 0.499285 , -4.804272 , 1.922680 , -1.072242 , -0.027223 , 0.240730 , 0.970183 , 0.371813 , 0.509364 , -5.065296 , 1.878780 , -1.047268 , -0.044862 , 0.246101 , 0.968169 , 0.364361 , 0.508260 , -7.488621 , 0.878056 , -0.983317 , 0.004059 , 0.354076 , 0.935179 , 0.312073 , 0.486747 , -7.752018 , 1.152424 , -1.106013 , -0.037019 , 0.300027 , 0.953185 , 0.307372 , 0.492787 , -9.138517 , 0.872379 , -0.872355 , 0.289132 , 0.604175 , 0.742515 , 0.273214 , 0.486627 , -8.513006 , 0.641422 , -0.683696 , -0.057375 , 0.636067 , 0.769463 , 0.285542 , 0.480720 , -8.296614 , 0.641155 , -0.662936 , 0.072298 , 0.639149 , 0.765648 , 0.294865 , 0.479321 , 1.968571 , 0.584133 , -0.485621 , -0.808557 , 0.434248 , 0.397046 , 0.525487 , 0.476368 , 2.064373 , 0.458683 , -0.128184 , -0.804682 , 0.556291 , 0.207251 , 0.529808 , 0.468791 , -2.953960 , 1.388523 , -0.677001 , 0.309732 , 0.749107 , 0.585528 , 0.411088 , 0.492798 , 10.814396 , -6.932682 , -0.167041 , -0.521958 , 0.839747 , -0.149419 , 0.756406 , 0.233684 , 6.334835 , 0.855534 , -0.812480 , -0.285806 , 0.541307 , 0.790735 , 0.643087 , 0.481079 , 5.702465 , 1.175968 , -1.054476 , -0.064699 , 0.211127 , 0.975280 , 0.631660 , 0.487237 , 6.774769 , 1.252697 , -0.995826 , -0.123600 , 0.431745 , 0.893460 , 0.655050 , 0.492346 , 6.457096 , 1.518764 , -1.083747 , -0.082125 , 0.018067 , 0.996429 , 0.646022 , 0.497749 , 4.431438 , 1.067402 , -0.925622 , 0.287942 , 0.182226 , 0.940123 , 0.601258 , 0.485235 , 4.155872 , 1.154476 , -0.786761 , 0.515610 , 0.262185 , 0.815699 , 0.593714 , 0.483726 , 3.198170 , 1.517445 , -0.219615 , 0.256325 , 0.878536 , 0.403058 , 0.563592 , 0.486286 , -3.002666 , 1.172558 , -0.343467 , 0.264565 , 0.869900 , 0.416181 , 0.407467 , 0.483677 , 7.068691 , 1.638538 , -1.025954 , -0.014161 , -0.058443 , 0.998169 , 0.662129 , 0.504191 , 7.264156 , 1.281590 , -1.045947 , -0.055574 , 0.498276 , 0.865200 , 0.666947 , 0.491672 , 5.589787 , 1.677639 , -1.076008 , -0.025330 , -0.090457 , 0.995575 , 0.628171 , 0.502379 , 9.569866 , 1.222416 , 0.078796 , 0.123173 , 0.969390 , 0.212317 , 0.723393 , 0.472558 , 8.203655 , 1.488537 , -0.890723 , -0.225837 , 0.501419 , 0.835200 , 0.688854 , 0.492285 , 7.715572 , 1.309925 , -0.970317 , -0.224586 , 0.569109 , 0.790948 , 0.677602 , 0.490548 , 8.085323 , 1.213871 , -0.509196 , -0.220832 , 0.863430 , 0.453536 , 0.685860 , 0.481444 , 6.645161 , 0.602154 , -0.344432 , -0.426374 , 0.832148 , 0.354503 , 0.654649 , 0.468315 , 7.237041 , 1.069492 , -0.614787 , -0.243324 , 0.864834 , 0.439100 , 0.666821 , 0.480653 , 10.322079 , 1.066723 , -0.212587 , 0.462203 , 0.762139 , 0.453291 , 0.738756 , 0.474413 , 8.156132 , 1.803028 , -0.948032 , 0.000336 , 0.121708 , 0.992553 , 0.691089 , 0.503698 , 8.583660 , 1.501225 , -0.828158 , -0.068575 , 0.744621 , 0.663930 , 0.700767 , 0.493307 , -3.525387 , 14.563475 , -3.203232 , -0.034730 , -0.397992 , 0.916715 , 0.404508 , 0.864083 , -6.547764 , 0.692936 , -0.752482 , -0.269478 , 0.483077 , 0.833064 , 0.331807 , 0.481589 , -17.594488 , 17.916378 , -0.853781 , 0.416242 , -0.344340 , 0.841487 , 0.060122 , 0.966563 , -11.961226 , -9.358158 , 0.653371 , 0.132023 , 0.234169 , 0.963164 , 0.200349 , 0.175500 , -11.550596 , -9.893330 , 0.524634 , 0.320231 , 0.173437 , 0.931303 , 0.212488 , 0.171898 , -14.683996 , 0.658413 , 0.426370 , 0.306162 , 0.938841 , 0.157414 , 0.141099 , 0.445981 , -0.043125 , 0.694309 , -0.858699 , -0.000458 , 0.493118 , 0.869930 , 0.482181 , 0.482983 , -4.294575 , 18.506992 , -0.821234 , -0.087130 , -0.241279 , 0.966521 , 0.387676 , 0.980480 , -4.900974 , 18.849018 , -0.886155 , -0.011017 , 0.259407 , 0.965697 , 0.371879 , 0.991427 , -4.930508 , 18.515810 , -0.860121 , -0.076876 , -0.278237 , 0.957427 , 0.371639 , 0.983937 , -13.742735 , -11.612629 , 2.486547 , 0.274819 , 0.328013 , 0.903775 , 0.160795 , 0.111025 , -14.077131 , -11.399868 , 2.522805 , -0.205359 , 0.478439 , 0.853725 , 0.154807 , 0.113069 , -14.807852 , -2.616558 , 0.147153 , -0.332713 , 0.181860 , 0.925291 , 0.149950 , 0.352886 , 3.202419 , -9.003216 , 1.234958 , 0.097873 , 0.291360 , 0.951567 , 0.569095 , 0.166974 , 3.498211 , -9.467770 , 1.085016 , 0.255715 , -0.047243 , 0.965575 , 0.570372 , 0.162112 , 3.721241 , -8.900005 , 0.844175 , 0.486587 , 0.582934 , 0.650685 , 0.576082 , 0.169104 , -7.480282 , -8.474216 , 0.932508 , -0.657582 , 0.154973 , 0.737236 , 0.299303 , 0.192925 , -7.328747 , -7.813793 , 1.060148 , -0.072695 , 0.153386 , 0.985473 , 0.310167 , 0.199390 , -7.928463 , -8.141666 , 0.891824 , -0.629566 , -0.178228 , 0.756188 , 0.299925 , 0.200219 , -15.339895 , -10.976200 , 1.850217 , 0.055483 , 0.418073 , 0.906705 , 0.119692 , 0.120771 , -15.693090 , -10.794575 , 1.694078 , 0.239845 , -0.015137 , 0.970672 , 0.106811 , 0.121302 , -16.372046 , -11.803967 , 1.336168 , 0.072237 , -0.117588 , 0.990417 , 0.092019 , 0.104049 , -14.429991 , -10.460087 , 0.524560 , 0.286660 , 0.491440 , 0.822352 , 0.140917 , 0.152339 , -14.718840 , -10.218273 , 0.338166 , 0.247566 , 0.856136 , 0.453536 , 0.131901 , 0.157871 , -14.781706 , -10.509708 , 0.859464 , 0.686911 , 0.541704 , 0.484420 , 0.128736 , 0.146807 , 5.058018 , -10.388294 , 0.447007 , -0.189001 , 0.035249 , 0.981323 , 0.605815 , 0.142204 , 4.401684 , -10.014866 , 0.803228 , 0.511002 , 0.284585 , 0.811060 , 0.593552 , 0.151215 , 4.515606 , -10.647953 , 0.936467 , 0.924619 , 0.239845 , 0.295846 , 0.592261 , 0.137184 , -13.506735 , -12.059551 , 2.521360 , 0.536912 , -0.092502 , 0.838527 , 0.166683 , 0.105635 , 4.947872 , -9.902309 , 0.497567 , -0.124699 , -0.071780 , 0.989563 , 0.607851 , 0.157523 , 5.116169 , -9.461880 , 0.623761 , -0.485488 , 0.381970 , 0.786370 , 0.612696 , 0.171639 , -8.018637 , -9.985622 , 5.160954 , 0.189795 , 0.523545 , 0.830561 , 0.307664 , 0.136622 , -7.616497 , -9.892086 , 4.752721 , -0.018555 , 0.755760 , 0.654530 , 0.311156 , 0.139644 , -7.872097 , -9.639225 , 4.629903 , 0.328257 , 0.547777 , 0.769494 , 0.307669 , 0.140743 , -12.987646 , -10.616550 , 1.897901 , 0.493240 , 0.739219 , 0.458510 , 0.172569 , 0.128331 , -13.075949 , -11.039570 , 2.257257 , 0.500778 , 0.246986 , 0.829554 , 0.170716 , 0.119431 , -12.774923 , -11.204014 , 1.762109 , 0.862270 , -0.025697 , 0.505753 , 0.182968 , 0.123123 , -6.262928 , -7.824703 , 4.449918 , 0.020875 , 0.437239 , 0.899075 , 0.334395 , 0.159489 , -5.948460 , -8.144482 , 4.448068 , 0.180670 , -0.058748 , 0.981780 , 0.336044 , 0.158532 , -6.150509 , -7.617062 , 4.182996 , -0.030702 , 0.870815 , 0.490585 , 0.335567 , 0.160598 , -12.995207 , -12.129887 , 1.555509 , 0.678487 , 0.097507 , 0.728080 , 0.185710 , 0.101353 , -11.835241 , -10.996616 , 0.704118 , 0.070193 , 0.623859 , 0.778344 , 0.214986 , 0.149182 , -11.148542 , -10.663311 , 0.822713 , -0.335124 , 0.786828 , 0.518204 , 0.228887 , 0.154800 , -11.570974 , -10.441441 , 0.596605 , 0.052309 , 0.264748 , 0.962859 , 0.213477 , 0.159546 , -5.794262 , -7.795757 , 4.286641 , 0.300974 , 0.573687 , 0.761742 , 0.337247 , 0.160390 , -13.294531 , -11.574162 , 2.393815 , 0.559679 , 0.018738 , 0.828486 , 0.167485 , 0.112995 , -6.537830 , -7.752033 , 4.301435 , -0.561876 , 0.674245 , 0.479202 , 0.333158 , 0.160575 , -6.701572 , -7.927876 , 3.994645 , -0.549333 , 0.834040 , 0.050508 , 0.330975 , 0.162880 , -6.744228 , -8.186169 , 4.320912 , -0.229225 , 0.495041 , 0.838038 , 0.329493 , 0.159249 , -7.704525 , -8.779324 , 4.049260 , -0.946165 , -0.013947 , 0.323344 , 0.316287 , 0.156131 , -7.818157 , -8.993229 , 3.774720 , -0.631764 , 0.774407 , -0.034120 , 0.311829 , 0.155843 , -7.418713 , -8.978428 , 4.301160 , -0.232368 , 0.002472 , 0.972594 , 0.318350 , 0.152780 , -12.159719 , -10.576878 , 0.750528 , 0.264595 , 0.371075 , 0.890072 , 0.200636 , 0.149941 , -12.069639 , -11.170635 , 1.072503 , 0.151646 , 0.746025 , 0.648396 , 0.208787 , 0.138034 , -15.184561 , -10.448170 , 1.404443 , 0.762871 , 0.300180 , 0.572588 , 0.117423 , 0.133556 , -15.143827 , -10.102619 , 1.064996 , 0.802484 , 0.544328 , 0.244362 , 0.116104 , 0.145489 , -15.179304 , -9.884083 , 0.504186 , 0.536027 , 0.831538 , 0.145482 , 0.119341 , 0.155281 , -12.719915 , -10.775784 , 1.275052 , 0.553026 , 0.719138 , 0.420637 , 0.186261 , 0.137174 , -12.479559 , -11.306499 , 1.289426 , 0.423536 , 0.222846 , 0.878018 , 0.198124 , 0.126260 , -16.586355 , -10.775066 , 2.201711 , 0.357006 , -0.059755 , 0.932157 , 0.081937 , 0.118258 , -16.095694 , -10.408276 , 2.128385 , 0.388256 , 0.006348 , 0.921506 , 0.092575 , 0.122595 , -6.440533 , -7.954624 , 2.431569 , -0.308969 , 0.950957 , -0.013520 , 0.333229 , 0.177224 , -6.755863 , -8.010494 , 3.419271 , -0.323313 , 0.940977 , -0.099857 , 0.329012 , 0.167897 , -6.103741 , -7.871967 , 3.006280 , -0.113224 , 0.985046 , -0.129734 , 0.339307 , 0.171699 , -7.643734 , -8.520138 , 4.390386 , -0.871883 , -0.084262 , 0.482345 , 0.318537 , 0.156977 , -7.593044 , -8.497768 , 4.023515 , -0.928190 , 0.306803 , -0.210395 , 0.316505 , 0.158852 , -7.108845 , -8.106327 , 4.070645 , -0.155492 , 0.969604 , 0.188879 , 0.325011 , 0.161437 , -7.115482 , -8.135395 , 3.609056 , -0.407178 , 0.913327 , -0.002747 , 0.324086 , 0.164918 , -7.378506 , -8.279758 , 3.545957 , -0.765343 , 0.622974 , -0.161565 , 0.319520 , 0.162977 , -6.904751 , -7.670681 , 0.946782 , 0.121982 , 0.410871 , 0.903470 , 0.322022 , 0.202707 , -6.771336 , -8.083691 , 1.095147 , -0.373699 , 0.636464 , 0.674703 , 0.320216 , 0.192256 , -6.343250 , -7.692936 , 0.971353 , -0.480056 , 0.702231 , 0.525681 , 0.332481 , 0.200016 , -7.759487 , -7.509617 , 0.966829 , -0.459944 , 0.361919 , 0.810816 , 0.305599 , 0.206296 , -7.981297 , -7.374210 , 0.562669 , -0.825556 , 0.452345 , 0.337291 , 0.305298 , 0.213480 , -8.139456 , -8.086102 , 0.487275 , -0.957427 , 0.077364 , 0.277993 , 0.295894 , 0.207054 , -7.539677 , -6.979031 , 0.529187 , -0.284066 , 0.882565 , 0.374584 , 0.312027 , 0.217766 , -9.274298 , -11.219913 , 5.270089 , -0.377575 , -0.339396 , 0.861507 , 0.293522 , 0.126769 , -9.513372 , -10.726063 , 5.050969 , -0.723502 , 0.174657 , 0.667837 , 0.291240 , 0.129158 , -9.664976 , -11.281277 , 4.931939 , -0.645924 , -0.209113 , 0.734153 , 0.287547 , 0.126688 , -6.527050 , -7.361942 , 0.649404 , 0.082339 , 0.714774 , 0.694449 , 0.330540 , 0.210462 , -15.321974 , -10.174107 , 1.824899 , 0.710318 , -0.016449 , 0.703665 , 0.104256 , 0.134656 , -15.490370 , -10.521053 , 1.652196 , 0.565081 , -0.433821 , 0.701743 , 0.103612 , 0.128637 , -7.167950 , -8.386448 , 1.119226 , -0.545793 , 0.536729 , 0.643422 , 0.307412 , 0.189970 , -7.091740 , -8.481068 , 1.738790 , -0.581347 , 0.813440 , 0.017090 , 0.317778 , 0.182205 , -7.168179 , -8.127628 , 3.219156 , -0.479293 , 0.861293 , -0.168493 , 0.322596 , 0.167319 , -7.579716 , -8.085102 , 4.300340 , -0.577166 , 0.788965 , 0.210669 , 0.320188 , 0.159563 , -7.700420 , -8.791058 , 2.991246 , -0.689810 , 0.722892 , 0.038972 , 0.306046 , 0.165375 , -8.642637 , -9.839603 , 2.038110 , -0.589038 , 0.807672 , -0.024903 , 0.281816 , 0.169047 , -8.715109 , -9.830853 , 2.867852 , -0.572039 , 0.819666 , -0.029389 , 0.287542 , 0.158278 , -6.810192 , -9.055759 , 4.167584 , 0.283059 , -0.000092 , 0.959075 , 0.327315 , 0.151284 , -6.154118 , -8.727909 , 4.184354 , 0.134648 , -0.345470 , 0.928709 , 0.334264 , 0.154460 , -6.539913 , -8.531605 , 4.329110 , 0.211615 , -0.254891 , 0.943510 , 0.329816 , 0.155926 , -8.214369 , -9.291103 , 3.650476 , -0.631855 , 0.728782 , -0.263741 , 0.303085 , 0.153010 , -8.088285 , -8.996449 , 4.166898 , -0.167974 , 0.974609 , 0.148015 , 0.309244 , 0.149601 , -7.385082 , -8.463009 , 2.935064 , -0.714682 , 0.689535 , -0.117069 , 0.315580 , 0.167088 , -7.467976 , -8.717472 , 3.422097 , -0.817591 , 0.573840 , -0.047060 , 0.312776 , 0.161508 , -7.375401 , -8.324947 , 4.628243 , -0.148900 , 0.310007 , 0.938994 , 0.321446 , 0.157453 , -6.984211 , -8.453831 , 4.576367 , 0.238655 , 0.108280 , 0.965026 , 0.325224 , 0.156384 , -16.815985 , -12.298458 , 1.370172 , 0.512070 , 0.503372 , 0.695944 , 0.088462 , 0.101067 , -16.047026 , -11.885380 , 1.553029 , -0.568743 , 0.344584 , 0.746818 , 0.096220 , 0.104231 , -15.031897 , -9.973896 , 0.073354 , 0.497147 , 0.862087 , -0.097934 , 0.125200 , 0.163796 , -14.521719 , -10.983150 , 0.960447 , 0.380779 , 0.874569 , 0.300088 , 0.136218 , 0.138121 , -15.296698 , -9.885143 , 1.327440 , 0.864437 , 0.493210 , 0.097293 , 0.106381 , 0.141775 , -15.450399 , -9.645245 , 1.464891 , 0.505631 , 0.836238 , 0.212134 , 0.099257 , 0.143481 , -14.009054 , -10.953678 , 0.576242 , 0.022614 , 0.836207 , 0.547899 , 0.151245 , 0.144628 , -13.909857 , -10.920757 , 1.269166 , -0.335582 , 0.927030 , -0.167150 , 0.154561 , 0.135040 , -15.005590 , -10.220486 , -0.427958 , 0.270180 , 0.962066 , 0.037538 , 0.127453 , 0.169818 , -13.220945 , -10.646687 , 0.810537 , -0.269875 , 0.962737 , 0.017182 , 0.172248 , 0.144102 , -13.182875 , -10.507320 , 1.333040 , 0.089267 , 0.988006 , -0.125950 , 0.171159 , 0.135997 , -12.691069 , -10.460865 , 0.664228 , -0.258492 , 0.621052 , 0.739891 , 0.183690 , 0.152170 , -13.364973 , -10.653332 , 0.272420 , -0.226844 , 0.627308 , 0.744957 , 0.166809 , 0.154683 , -13.906912 , -10.308414 , 0.376981 , 0.230110 , 0.433302 , 0.871334 , 0.152221 , 0.157886 , -13.635595 , -9.898525 , 0.064782 , -0.174780 , 0.503433 , 0.846156 , 0.162008 , 0.166114 , -15.549513 , -9.678379 , 1.092412 , 0.493423 , 0.867946 , -0.056215 , 0.102115 , 0.147060 , 2.576313 , -10.337948 , 1.539502 , 0.331645 , 0.865658 , 0.374950 , 0.540105 , 0.148053 , 2.580799 , -10.545109 , 1.857000 , 0.382855 , 0.675893 , 0.629749 , 0.536582 , 0.140882 , 2.884571 , -10.556065 , 1.367772 , 0.556597 , 0.601459 , 0.573046 , 0.549280 , 0.145211 , -13.520605 , -10.716366 , 2.016454 , -0.116764 , 0.768517 , 0.629048 , 0.162051 , 0.123336 , -13.586630 , -10.564930 , 1.632348 , -0.301859 , 0.952544 , 0.038423 , 0.162321 , 0.131348 , -12.845701 , -9.818958 , 0.409322 , -0.447127 , 0.167882 , 0.878536 , 0.179557 , 0.163584 , -13.194883 , -9.954182 , 0.195504 , -0.424512 , 0.118442 , 0.897610 , 0.170384 , 0.163917 , -13.650053 , -10.785236 , 1.094823 , -0.432661 , 0.885647 , -0.168493 , 0.162444 , 0.139386 , -13.606581 , -10.850651 , 0.625116 , -0.343242 , 0.936979 , 0.064882 , 0.163179 , 0.145629 , -16.810392 , -10.345921 , 2.273721 , 0.510453 , 0.259285 , 0.819849 , 0.080647 , 0.125156 , -14.388647 , -10.876904 , 0.645574 , 0.438795 , 0.580767 , 0.685659 , 0.139275 , 0.145410 , -12.276037 , -9.957645 , 0.656282 , -0.102573 , 0.141179 , 0.984649 , 0.196682 , 0.163966 , 4.615444 , -11.149601 , 1.029554 , 0.988098 , -0.039216 , -0.148534 , 0.588449 , 0.128071 , -14.097982 , -11.035160 , 2.206220 , -0.314920 , 0.686148 , 0.655721 , 0.153942 , 0.118572 , -12.169203 , -11.398380 , 1.420961 , -0.408307 , 0.536851 , 0.738273 , 0.213213 , 0.126048 , -11.943731 , -11.519390 , 1.728399 , -0.788873 , 0.433668 , 0.435347 , 0.226680 , 0.123277 , -12.747030 , -11.741299 , 1.400071 , 0.575915 , -0.114231 , 0.809473 , 0.192552 , 0.115072 , -12.315969 , -11.996281 , 1.278054 , -0.242134 , 0.127689 , 0.961791 , 0.205968 , 0.108558 , -12.338789 , -11.702084 , 1.313718 , -0.265450 , -0.023652 , 0.963805 , 0.205049 , 0.118519 , -12.129812 , -11.767315 , 1.505811 , -0.757286 , 0.025788 , 0.652547 , 0.215470 , 0.116980 , -11.526640 , -11.124592 , 1.270402 , -0.487960 , 0.821558 , 0.294717 , 0.223210 , 0.143931 , -8.782064 , -9.905369 , 1.157067 , -0.555986 , 0.831172 , 0.002716 , 0.272166 , 0.175169 , -9.644117 , -10.305813 , 0.714219 , -0.384808 , 0.922269 , 0.036195 , 0.255948 , 0.173376 , -9.948599 , -10.441761 , 0.687135 , -0.272439 , 0.943358 , 0.189184 , 0.253447 , 0.165769 , -10.240805 , -10.419971 , 4.289620 , -0.861782 , 0.448439 , 0.237037 , 0.282472 , 0.130644 , -10.003370 , -10.298008 , 4.467435 , -0.662984 , 0.566424 , 0.489456 , 0.285049 , 0.131473 , -9.891424 , -10.319057 , 3.952707 , -0.514298 , 0.795892 , -0.319407 , 0.282855 , 0.134283 , -10.272894 , -10.618549 , 4.063535 , -0.954283 , 0.274697 , -0.117649 , 0.280178 , 0.130290 , -10.177153 , -10.832104 , 4.215817 , -0.714530 , -0.407025 , 0.568957 , 0.280931 , 0.128793 , -9.709387 , -10.554897 , 4.750978 , -0.674306 , 0.239601 , 0.698447 , 0.288024 , 0.130268 , -9.979986 , -10.733471 , 4.489408 , -0.750175 , 0.017518 , 0.660970 , 0.283515 , 0.128535 , -9.532644 , -10.225445 , 3.642476 , -0.509323 , 0.848628 , -0.142674 , 0.283762 , 0.140194 , -9.301313 , -10.051228 , 4.154344 , -0.443617 , 0.892972 , -0.075961 , 0.288887 , 0.138243 , -8.874525 , -9.655613 , 4.545690 , -0.826258 , 0.547319 , 0.133030 , 0.297862 , 0.139423 , -9.023458 , -9.821316 , 4.107198 , -0.742393 , 0.666372 , -0.069124 , 0.294524 , 0.141073 , -9.210798 , -10.061565 , 4.648244 , -0.497787 , 0.787652 , 0.363018 , 0.294222 , 0.136418 , -9.369665 , -10.314426 , 4.925565 , -0.495895 , 0.629871 , 0.597736 , 0.292446 , 0.132132 , -9.291990 , -10.505703 , 5.226113 , -0.530381 , 0.397809 , 0.748589 , 0.294830 , 0.130050 , -8.828276 , -10.206913 , 5.143464 , -0.334300 , 0.513932 , 0.789972 , 0.298013 , 0.133248 , -9.757734 , -10.097782 , 4.475575 , -0.449049 , 0.854549 , 0.260872 , 0.288547 , 0.133778 , -8.481146 , -9.948818 , 5.161431 , -0.154698 , 0.320017 , 0.934660 , 0.302480 , 0.135589 , -8.207945 , -10.341984 , 5.282247 , 0.018860 , 0.457656 , 0.888913 , 0.303744 , 0.132455 , -6.388943 , -8.185368 , 4.423505 , -0.149693 , -0.122440 , 0.981109 , 0.332851 , 0.158078 , -6.069149 , -7.805126 , 3.394113 , -0.141728 , 0.952971 , -0.267830 , 0.337095 , 0.166475 , -8.113890 , -9.213581 , 4.530267 , 0.124393 , 0.740318 , 0.660604 , 0.306151 , 0.144318 , -7.438107 , -9.330433 , 4.402509 , 0.040437 , 0.489547 , 0.870998 , 0.313867 , 0.144150 , -6.678875 , -9.462826 , 4.376508 , 0.483566 , 0.463637 , 0.742393 , 0.326417 , 0.145099 , -8.520414 , -10.681026 , 5.564519 , -0.026582 , 0.098331 , 0.994781 , 0.299093 , 0.129041 , -8.808256 , -9.694263 , 4.939050 , -0.602802 , 0.479598 , 0.637654 , 0.299497 , 0.137154 , -8.519011 , -9.107182 , 4.200231 , -0.482284 , 0.875942 , -0.009919 , 0.302321 , 0.147468 , -8.707434 , -9.292576 , 4.367860 , -0.664205 , 0.737663 , 0.121067 , 0.300260 , 0.142731 , -8.674681 , -9.385098 , 4.822026 , -0.439528 , 0.743797 , 0.503494 , 0.300961 , 0.139799 , -8.332914 , -9.663219 , 5.059594 , 0.141392 , 0.564653 , 0.813105 , 0.303633 , 0.138514 , -6.909542 , -8.212452 , 2.680696 , -0.504776 , 0.844203 , -0.180151 , 0.322440 , 0.171905 , -9.472471 , -10.221714 , 2.993776 , -0.511704 , 0.859127 , 0.002319 , 0.280523 , 0.146916 , -8.526724 , -9.694302 , 3.440194 , -0.614612 , 0.768670 , -0.176977 , 0.293594 , 0.150882 , -8.813421 , -9.627125 , 3.892308 , -0.655507 , 0.665944 , -0.356029 , 0.296497 , 0.145872 , -9.138876 , -10.032665 , 3.667485 , -0.531175 , 0.837794 , -0.126164 , 0.289603 , 0.143843 , -9.737307 , -10.404461 , 1.557180 , -0.330973 , 0.943510 , -0.013337 , 0.261586 , 0.157783 , -6.444515 , -9.268917 , 4.064393 , 0.357646 , 0.054842 , 0.932218 , 0.335119 , 0.147338 , -8.109625 , -9.273632 , 3.155874 , -0.746544 , 0.664937 , 0.021516 , 0.299231 , 0.159046 , -9.966345 , -11.134007 , 4.600240 , -0.735343 , 0.219275 , 0.641224 , 0.283128 , 0.126262 , -5.441837 , -8.020458 , 4.250665 , 0.786065 , 0.298196 , 0.541398 , 0.338737 , 0.159508 , -10.247793 , -10.578526 , 1.145990 , -0.190161 , 0.981719 , -0.001923 , 0.247911 , 0.156927 , -7.590649 , -8.832180 , 1.393724 , -0.691885 , 0.719993 , 0.053316 , 0.296279 , 0.181593 , -8.040747 , -9.252300 , 0.678602 , -0.753197 , 0.606861 , 0.253670 , 0.284969 , 0.188679 , -8.374029 , -9.349400 , 4.758431 , 0.140019 , 0.815363 , 0.561724 , 0.303706 , 0.141216 , -8.092024 , -7.963009 , -0.270427 , -0.935514 , 0.318522 , 0.152623 , 0.286972 , 0.212097 , -8.235212 , -8.576855 , 0.258149 , -0.816095 , 0.210120 , 0.538316 , 0.284470 , 0.202281 , -8.117697 , -8.929226 , 0.341542 , -0.576342 , 0.169866 , 0.799341 , 0.284099 , 0.195324 , -8.030478 , -8.493237 , 0.511277 , -0.697928 , -0.216315 , 0.682669 , 0.292596 , 0.199227 , -7.455929 , -8.629681 , 2.265466 , -0.609790 , 0.785760 , -0.103519 , 0.309595 , 0.173455 , -4.115559 , -7.066105 , 1.248708 , 0.211493 , 0.972747 , -0.094913 , 0.386855 , 0.200264 , -5.231441 , -7.384609 , 0.555803 , 0.035493 , 0.999329 , -0.006531 , 0.369441 , 0.211867 , 4.008579 , -9.774784 , 0.885354 , 0.307474 , 0.262947 , 0.914487 , 0.581373 , 0.159511 , 4.632610 , -10.908764 , 0.543557 , 0.428571 , -0.008301 , 0.903439 , 0.600108 , 0.134773 , -5.575016 , -8.859371 , 4.056230 , 0.644337 , -0.164342 , 0.746849 , 0.339469 , 0.152902 , 3.508732 , -10.051723 , 1.024328 , -0.066927 , 0.064547 , 0.995636 , 0.570669 , 0.153907 , 3.374805 , -10.586140 , 1.025838 , 0.001343 , 0.489456 , 0.872005 , 0.564012 , 0.145346 , 4.221249 , -10.387913 , 1.223623 , 0.297159 , 0.643971 , 0.704947 , 0.578361 , 0.143239 , -15.589033 , -9.699451 , 0.610250 , 0.520859 , 0.852809 , -0.037172 , 0.108528 , 0.154717 , -15.304747 , -9.624195 , -0.915824 , 0.349620 , 0.378338 , 0.857082 , 0.123869 , 0.182016 , 4.700047 , -10.769375 , 1.346055 , 0.887112 , 0.430647 , 0.166021 , 0.582995 , 0.132725 , 0.523983 , 0.630222 , -0.827128 , 0.117924 , 0.481155 , 0.868648 , 0.496863 , 0.479315 , -14.381598 , -2.773518 , 0.101514 , 0.209967 , 0.174535 , 0.961974 , 0.155709 , 0.347897 , -15.950712 , -1.409344 , 0.463746 , 0.339457 , -0.660573 , 0.669607 , 0.115633 , 0.394389 , -17.985788 , -5.788761 , -1.001097 , -0.221503 , -0.477157 , 0.850398 , 0.054058 , 0.273967 , -10.914480 , -10.325092 , 0.472940 , 0.095798 , 0.649129 , 0.754601 , 0.227251 , 0.167912 , -10.817915 , -10.516689 , 0.757348 , -0.155156 , 0.904172 , 0.397931 , 0.234295 , 0.162294 , -16.150312 , -2.321896 , -0.326724 , 0.568834 , -0.159032 , 0.806879 , 0.112544 , 0.358336 , -13.325048 , -1.619778 , -0.013732 , -0.045930 , -0.956084 , 0.289376 , 0.180348 , 0.364029 , -13.814901 , -1.576984 , -0.068774 , 0.066836 , -0.924345 , 0.375591 , 0.171263 , 0.367239 , -14.233587 , -1.718708 , 0.158979 , -0.120518 , -0.981750 , 0.146916 , 0.162707 , 0.377939 , -14.294088 , -2.087864 , -0.269912 , 0.090701 , -0.037141 , 0.995178 , 0.160849 , 0.362219 , -14.424429 , -1.792789 , 0.678258 , -0.385357 , -0.921445 , -0.049013 , 0.167143 , 0.389162 , -14.672384 , -1.497189 , 0.301957 , -0.643971 , -0.762658 , 0.060152 , 0.157696 , 0.390243 , -14.752432 , -1.786488 , -0.212004 , -0.236427 , -0.311136 , 0.920469 , 0.147611 , 0.368783 , -15.049070 , -1.324963 , -0.001300 , -0.137883 , -0.757408 , 0.638203 , 0.145854 , 0.385850 , -17.149992 , -5.632214 , -0.699420 , 0.436201 , -0.634266 , 0.638264 , 0.074840 , 0.284491 , -16.698011 , -2.478558 , 0.099218 , 0.982025 , -0.051546 , 0.181433 , 0.103073 , 0.356625 , 2.877003 , -9.902447 , 0.936914 , -0.429334 , 0.198920 , 0.880947 , 0.559143 , 0.159524 , -14.999670 , 0.556644 , 0.537950 , -0.314066 , 0.877499 , 0.362346 , 0.136998 , 0.441645 , -14.733572 , 0.536648 , 0.656572 , 0.146733 , 0.726798 , 0.670980 , 0.140897 , 0.438253 , -8.802969 , 0.235447 , -0.451152 , 0.103244 , 0.773919 , 0.624775 , 0.281457 , 0.470030 , -15.599524 , -1.289806 , 0.280210 , 0.383038 , -0.843471 , 0.376568 , 0.132426 , 0.391075 , -12.639868 , -1.736012 , 0.281514 , -0.246956 , -0.968627 , -0.026612 , 0.193223 , 0.365166 , -15.315130 , -1.162167 , 0.392186 , 0.121372 , -0.974059 , 0.190832 , 0.139960 , 0.396837 , -17.615286 , -9.245541 , 0.533284 , -0.507309 , 0.859401 , 0.063326 , 0.057073 , 0.153905 , -4.402454 , -6.960934 , 1.686441 , 0.297769 , 0.951109 , 0.081637 , 0.375628 , 0.195338 , -5.164524 , -6.975918 , 1.648854 , -0.175481 , 0.939909 , -0.292825 , 0.364117 , 0.194572 , -4.981564 , -6.860188 , 2.192567 , 0.100955 , 0.949919 , 0.295694 , 0.366535 , 0.187620 , -5.037426 , -7.693913 , 2.971586 , 0.365032 , 0.426160 , 0.827693 , 0.365119 , 0.171271 , -4.697964 , -7.670528 , 2.887132 , -0.182348 , 0.219733 , 0.958342 , 0.373193 , 0.173262 , -4.880672 , -7.173267 , 2.579248 , 0.164617 , 0.769585 , 0.616901 , 0.368041 , 0.178846 , 6.899700 , -7.559780 , 0.823884 , -0.324198 , 0.381970 , 0.865413 , 0.661792 , 0.205475 , 6.615719 , -7.350582 , 0.675496 , -0.319529 , 0.451308 , 0.833186 , 0.655047 , 0.209873 , 6.484257 , -8.052883 , 0.761636 , -0.304270 , 0.336924 , 0.890988 , 0.653021 , 0.198539 , 4.662510 , -11.105495 , 1.610635 , 0.892239 , -0.013642 , 0.451308 , 0.582077 , 0.125601 , 3.867611 , -12.253658 , 1.765645 , 0.505356 , -0.481002 , 0.716392 , 0.565075 , 0.108216 , 4.249821 , -12.188663 , 1.208364 , 0.794610 , -0.304514 , 0.525193 , 0.577464 , 0.103140 , 4.281048 , -11.840504 , 1.512613 , 0.792199 , -0.464736 , 0.395459 , 0.575774 , 0.113311 , 3.604504 , -12.626514 , 1.686460 , 0.313211 , -0.667013 , 0.675954 , 0.560663 , 0.102464 , 3.883221 , -12.615505 , 1.381326 , 0.610614 , -0.530320 , 0.588092 , 0.566216 , 0.099608 , 3.288975 , -12.578281 , 1.778531 , -0.246864 , -0.534989 , 0.807947 , 0.553600 , 0.102274 , 3.501904 , -12.852604 , 1.315091 , 0.031220 , -0.749779 , 0.660909 , 0.557691 , 0.094498 , 3.764347 , -10.679691 , 1.431112 , -0.299326 , 0.682791 , 0.666463 , 0.568152 , 0.136611 , 3.506336 , -11.981777 , 1.985837 , -0.176305 , -0.186132 , 0.966552 , 0.560521 , 0.115025 , 3.988293 , -11.679165 , 2.062082 , 0.247353 , -0.206641 , 0.946593 , 0.569260 , 0.117528 , 3.563328 , -11.358021 , 1.869638 , -0.348033 , 0.413007 , 0.841578 , 0.564413 , 0.124539 , 2.902157 , -11.887287 , 1.699769 , -0.098849 , -0.527573 , 0.843715 , 0.542770 , 0.113031 , 2.498302 , -11.927364 , 1.830953 , -0.013703 , -0.859188 , 0.511429 , 0.531316 , 0.113346 , 2.711681 , -12.144810 , 1.177999 , -0.459212 , -0.331706 , 0.824061 , 0.536879 , 0.106382 , 3.841129 , -12.963673 , 1.207425 , 0.439955 , -0.719871 , 0.536821 , 0.568229 , 0.089698 , 2.940182 , -12.886982 , 1.103345 , -0.351665 , -0.552995 , 0.755303 , 0.547864 , 0.094841 , 2.914272 , -12.313717 , 1.479844 , -0.731925 , -0.281045 , 0.620685 , 0.544526 , 0.103747 , 1.633625 , -11.807697 , 1.283841 , 0.056764 , -0.805017 , 0.590503 , 0.515859 , 0.106613 , 1.957752 , -11.917820 , 1.165788 , -0.175756 , -0.665731 , 0.725181 , 0.523744 , 0.102964 , 3.186665 , -12.228680 , 1.841680 , -0.413068 , -0.217322 , 0.884365 , 0.551987 , 0.110544 , 3.160084 , -11.624523 , 1.729799 , -0.008637 , 0.097140 , 0.995209 , 0.551626 , 0.121652 , 2.441036 , -10.134045 , 0.796937 , -0.302011 , 0.887173 , 0.348766 , 0.541969 , 0.156660 , 3.186138 , -11.105877 , 1.526345 , 0.224342 , 0.557421 , 0.799310 , 0.558350 , 0.133815 , 2.486973 , -10.970829 , 2.176408 , 0.304331 , 0.247780 , 0.919767 , 0.533290 , 0.131069 , 2.914745 , -11.111523 , 1.846246 , 0.686209 , 0.289285 , 0.667379 , 0.544638 , 0.132465 , 4.486935 , -11.386593 , 1.731683 , 0.777917 , -0.316172 , 0.542985 , 0.576733 , 0.120968 , 2.176876 , -10.759350 , 2.090669 , -0.264962 , 0.540086 , 0.798791 , 0.528589 , 0.136896 , 1.803394 , -11.479580 , 2.014936 , -0.580218 , -0.262795 , 0.770867 , 0.518335 , 0.128821 , 2.118366 , -11.098782 , 2.190572 , -0.308817 , 0.098758 , 0.945952 , 0.525287 , 0.131457 , 1.338345 , -10.976559 , 1.417501 , -0.066683 , 0.676229 , 0.733634 , 0.511898 , 0.142764 , 4.441845 , -12.088139 , 0.908635 , 0.349590 , -0.012055 , 0.936796 , 0.589516 , 0.103943 , 4.452999 , -12.461811 , 0.944661 , 0.439985 , -0.490677 , 0.752037 , 0.587087 , 0.090532 , 4.322346 , -10.971951 , 1.854661 , 0.252541 , 0.488662 , 0.835109 , 0.573763 , 0.129710 , 5.214527 , -11.998798 , 2.272077 , -0.375744 , -0.656941 , 0.653584 , 0.634115 , 0.116283 , 5.551235 , -12.058750 , 2.228139 , 0.075198 , -0.706107 , 0.704062 , 0.640194 , 0.115591 , 5.515743 , -11.480183 , 2.423963 , -0.117222 , -0.055757 , 0.991516 , 0.639069 , 0.120715 , 2.787472 , -8.936199 , 1.112310 , -0.680624 , 0.459883 , 0.570269 , 0.564370 , 0.167125 , 5.100475 , -12.628124 , 0.586297 , 0.107608 , -0.852046 , 0.512253 , 0.609141 , 0.089664 , 3.651684 , -11.021191 , 1.577836 , -0.264718 , 0.557482 , 0.786828 , 0.566188 , 0.131132 , 2.066212 , -10.224316 , 0.416085 , 0.041108 , 0.994324 , -0.098025 , 0.536809 , 0.166280 , 1.694736 , -10.365559 , 0.056657 , 0.467666 , 0.790918 , -0.394574 , 0.536954 , 0.170070 , 1.953770 , -10.209637 , 1.677205 , 0.956633 , -0.259255 , 0.132725 , 0.518355 , 0.159064 , 1.784779 , -10.002697 , 2.082467 , 0.394208 , -0.270760 , 0.878201 , 0.512965 , 0.159702 , 1.788937 , -10.453289 , 1.786763 , 0.381359 , -0.790399 , 0.479354 , 0.514915 , 0.156623 , 1.878178 , -10.202549 , 1.043359 , 0.727958 , 0.669607 , 0.147130 , 0.529037 , 0.158949 , 1.696812 , -10.557705 , 1.390184 , -0.380657 , -0.072481 , 0.921842 , 0.519537 , 0.150257 , 5.937115 , -11.884747 , 2.240999 , 0.113346 , -0.460555 , 0.880337 , 0.646665 , 0.119072 , 2.065845 , -10.572651 , 1.822255 , -0.383068 , 0.719382 , 0.579394 , 0.527497 , 0.143119 , 2.169491 , -10.327557 , 1.475904 , -0.194708 , 0.881619 , 0.429853 , 0.532483 , 0.149615 , 0.916668 , -9.412441 , 1.367772 , -0.812769 , 0.162450 , 0.559435 , 0.506777 , 0.167638 , 1.143276 , -9.318279 , 1.725591 , -0.618275 , 0.507523 , 0.600085 , 0.510949 , 0.165108 , 1.113667 , -8.977886 , 1.295648 , -0.291513 , 0.878872 , 0.377544 , 0.511256 , 0.170924 , 1.784817 , -9.746868 , 0.486036 , 0.857967 , 0.426191 , -0.286691 , 0.529370 , 0.167619 , 1.704159 , -9.176632 , 1.547700 , 0.534013 , 0.842891 , 0.065645 , 0.516809 , 0.166702 , 1.907398 , -9.599880 , 1.588857 , 0.974578 , 0.199927 , -0.100955 , 0.518186 , 0.162398 , 1.871410 , -9.277088 , 1.837503 , 0.708304 , 0.643941 , 0.289163 , 0.515342 , 0.163401 , 1.546154 , -9.267155 , 1.911725 , -0.110141 , 0.834956 , 0.539140 , 0.514033 , 0.164370 , 1.552433 , -9.524242 , 2.138761 , -0.075625 , 0.282785 , 0.956175 , 0.512900 , 0.162422 , 0.417408 , -10.050533 , 0.562223 , -0.854335 , 0.249458 , 0.455885 , 0.491228 , 0.168626 , 0.583775 , -9.927029 , 0.819291 , -0.824183 , 0.122013 , 0.552995 , 0.495970 , 0.165437 , 4.163548 , -11.331760 , 2.044725 , 0.239906 , 0.156072 , 0.958159 , 0.571058 , 0.123152 , 1.285427 , -9.788280 , 2.004567 , -0.597247 , -0.093142 , 0.796594 , 0.508851 , 0.160723 , -0.166790 , -10.033825 , 1.308549 , 0.310831 , 0.901761 , -0.300272 , 0.477469 , 0.158450 , 1.169033 , -10.645000 , 1.082708 , 0.109317 , 0.068239 , 0.991638 , 0.509363 , 0.150245 , 2.618061 , -11.515606 , 2.150979 , 0.310251 , -0.238075 , 0.920347 , 0.538553 , 0.122371 , 2.237179 , -11.668148 , 2.097505 , -0.172338 , -0.550218 , 0.817011 , 0.525926 , 0.122535 , 1.442066 , -8.985577 , 0.925721 , 0.473403 , 0.872066 , -0.123814 , 0.518581 , 0.174245 , 2.345837 , -11.980602 , 1.228193 , -0.238807 , -0.714835 , 0.657216 , 0.530137 , 0.106039 , 1.621616 , -12.123791 , 1.082147 , 0.032960 , -0.706687 , 0.706717 , 0.515579 , 0.094961 , 1.294689 , -11.853710 , 1.384423 , 0.584246 , -0.677480 , 0.446791 , 0.506941 , 0.104675 , 1.327625 , -12.216434 , 0.858560 , 0.008820 , -0.964202 , 0.264962 , 0.508709 , 0.083920 , 1.616299 , -11.642399 , 1.686250 , 0.135777 , -0.820215 , 0.555650 , 0.509808 , 0.118810 , 1.890781 , -9.590870 , 1.962068 , 0.829859 , 0.152837 , 0.536576 , 0.515060 , 0.161454 , 1.558323 , -9.891331 , 0.079549 , 0.825800 , 0.364116 , -0.430616 , 0.534111 , 0.170834 , 1.491482 , -11.262356 , 1.636617 , -0.087832 , 0.509232 , 0.856105 , 0.510354 , 0.133320 , 1.298580 , -10.444752 , 1.431627 , -0.360393 , -0.800501 , 0.478805 , 0.510858 , 0.154208 , 0.420887 , -10.354710 , 4.776708 , 0.471572 , -0.355693 , 0.806879 , 0.458056 , 0.123737 , 0.112522 , -10.278492 , 4.831052 , -0.204047 , -0.304086 , 0.930509 , 0.454852 , 0.123673 , 0.170696 , -9.679684 , 3.775468 , 0.467238 , 0.880978 , -0.074160 , 0.461440 , 0.133542 , 0.262852 , -9.714291 , 4.519879 , 0.463271 , 0.867763 , 0.179754 , 0.457601 , 0.130703 , 0.633938 , -9.847569 , 4.249772 , 0.527085 , 0.837733 , 0.142644 , 0.461165 , 0.130303 , 0.856106 , -10.094929 , 4.388680 , 0.836299 , 0.258187 , 0.483657 , 0.461188 , 0.126911 , 0.505894 , -10.687389 , 4.419126 , 0.621998 , -0.365154 , 0.692618 , 0.461834 , 0.122241 , 0.894131 , -10.379040 , 4.225747 , 0.829493 , -0.324747 , 0.454329 , 0.464482 , 0.124556 , 0.851147 , -10.650517 , 3.849328 , 0.923338 , -0.154790 , 0.351299 , 0.468172 , 0.124498 , 0.665630 , -10.801365 , 4.131841 , 0.832240 , -0.113804 , 0.542589 , 0.465559 , 0.122160 , -0.256618 , -10.572010 , 4.486527 , -0.508744 , -0.126255 , 0.851588 , 0.451553 , 0.122662 , 0.998974 , -10.233028 , 3.971551 , 0.991913 , 0.126133 , 0.013520 , 0.465424 , 0.126944 , 0.617985 , -11.049778 , 4.256253 , 0.659017 , 0.010437 , 0.752007 , 0.464672 , 0.120515 , 0.371708 , -11.144382 , 4.381730 , 0.253761 , -0.430769 , 0.866024 , 0.462710 , 0.118670 , 0.954670 , -10.419094 , 3.636846 , 0.963561 , 0.255043 , -0.080386 , 0.468820 , 0.128720 , 0.857456 , -9.999249 , 3.919160 , 0.710044 , 0.681326 , -0.177770 , 0.464233 , 0.130023 , 0.472271 , -9.986012 , 3.362409 , 0.633686 , 0.745140 , -0.207770 , 0.467087 , 0.133696 , -0.558651 , -10.251492 , 4.392591 , -0.472335 , -0.267129 , 0.839930 , 0.447638 , 0.124862 , -0.430294 , -9.710606 , 4.673493 , -0.280953 , 0.131382 , 0.950682 , 0.449139 , 0.129486 , -1.049412 , -9.528889 , 4.576353 , -0.314890 , -0.106723 , 0.943083 , 0.444913 , 0.132183 , -0.116749 , -9.994503 , 4.816346 , -0.432386 , -0.133885 , 0.891659 , 0.452244 , 0.126098 , -0.650272 , -10.928669 , 4.297482 , -0.443434 , -0.201605 , 0.873318 , 0.446949 , 0.119516 , -0.334507 , -9.396595 , 4.440331 , 0.322703 , 0.874081 , 0.363048 , 0.452807 , 0.132479 , 0.002346 , -9.694874 , 4.822351 , 0.015992 , 0.640492 , 0.767754 , 0.453671 , 0.129110 , -0.348095 , -9.447262 , 3.610582 , 0.456343 , 0.887082 , 0.069399 , 0.456275 , 0.135787 , -0.625973 , -9.242588 , 4.171304 , 0.502060 , 0.860958 , 0.081301 , 0.450994 , 0.136285 , 0.293484 , -9.884388 , 4.958032 , 0.302896 , 0.342601 , 0.889279 , 0.456317 , 0.126716 , -0.917889 , -9.115070 , 4.457238 , 0.152776 , 0.772515 , 0.616291 , 0.446154 , 0.136427 , -0.671085 , -9.350712 , 4.521276 , 0.218787 , 0.620960 , 0.752647 , 0.448860 , 0.133414 , -1.026783 , -10.298901 , 4.098523 , -0.502335 , -0.210395 , 0.838649 , 0.442208 , 0.123294 , -1.373043 , -10.133533 , 3.923360 , -0.292520 , -0.212500 , 0.932340 , 0.436523 , 0.126576 , -1.655201 , -9.050205 , 3.376142 , 0.137516 , 0.979614 , 0.146275 , 0.441921 , 0.143768 , -1.475048 , -9.086346 , 4.089879 , -0.420881 , 0.792993 , 0.440443 , 0.440658 , 0.138914 , -1.274899 , -8.992275 , 3.743856 , -0.011750 , 0.994324 , 0.105533 , 0.446620 , 0.141535 , -0.894497 , -9.068371 , 4.082601 , 0.340648 , 0.938658 , 0.053194 , 0.449049 , 0.138555 , -0.881351 , -9.109699 , 3.525159 , 0.443953 , 0.892209 , 0.082400 , 0.452525 , 0.140953 , -1.693485 , -9.839161 , 3.945302 , -0.203681 , -0.144566 , 0.968291 , 0.435165 , 0.131802 , -1.333073 , -9.699917 , 4.255776 , -0.551469 , -0.417951 , 0.721915 , 0.439957 , 0.131490 , -1.713680 , -9.453083 , 4.021562 , -0.580004 , 0.086550 , 0.809961 , 0.437469 , 0.135211 , -2.008694 , -9.564205 , 3.932157 , 0.511490 , 0.199591 , 0.835749 , 0.431637 , 0.135450 , -1.950542 , -9.278698 , 3.759816 , 0.224647 , 0.366894 , 0.902707 , 0.435225 , 0.138570 , -1.883907 , -8.953381 , 3.626123 , 0.571734 , 0.751701 , 0.328623 , 0.435290 , 0.142882 , -1.567783 , -8.971882 , 3.019902 , -0.008362 , 0.992676 , -0.120304 , 0.444196 , 0.148156 , -1.930576 , -8.860653 , 3.213784 , 0.429487 , 0.882595 , -0.191107 , 0.437425 , 0.147873 , -1.338009 , -9.288029 , 4.467862 , -0.536149 , 0.256447 , 0.804193 , 0.441887 , 0.134892 , -1.256016 , -10.955349 , 3.983037 , -0.361248 , -0.257302 , 0.896237 , 0.436255 , 0.117406 , -2.504368 , -9.201786 , 4.517919 , -0.127934 , 0.762505 , 0.634175 , 0.424515 , 0.135393 , -2.301510 , -9.028820 , 4.285333 , 0.309336 , 0.608173 , 0.731040 , 0.425606 , 0.137997 , -2.680508 , -9.290554 , 4.381001 , -0.663717 , 0.645680 , 0.377544 , 0.421856 , 0.136948 , -3.204830 , -9.269421 , 3.370538 , -0.628590 , 0.421308 , 0.653706 , 0.409025 , 0.148685 , -3.011173 , -9.274921 , 3.604844 , -0.796564 , 0.373547 , 0.475295 , 0.413162 , 0.142190 , -2.865719 , -8.858395 , 3.447881 , -0.666463 , 0.673238 , 0.320200 , 0.419928 , 0.148286 , -3.605938 , -8.462276 , 2.324744 , 0.586840 , 0.241310 , 0.772881 , 0.401229 , 0.170318 , -2.836040 , -8.426289 , 2.232744 , 0.586840 , 0.440657 , 0.679250 , 0.416530 , 0.176470 , -3.435268 , -8.185802 , 2.302343 , 0.232643 , -0.158269 , 0.959563 , 0.405728 , 0.175264 , -2.584248 , -9.416264 , 4.691941 , -0.098972 , 0.456587 , 0.884121 , 0.423387 , 0.133416 , -2.234035 , -9.483181 , 4.515492 , 0.747429 , 0.200873 , 0.633198 , 0.426830 , 0.133962 , -1.264286 , -8.873577 , 0.889158 , -0.164586 , 0.078646 , 0.983215 , 0.461147 , 0.191581 , -1.981152 , -10.052883 , 3.979047 , 0.528977 , 0.024903 , 0.848231 , 0.430010 , 0.130157 , -2.893833 , -9.453999 , 4.065457 , -0.843257 , 0.463820 , 0.271523 , 0.417627 , 0.137500 , -2.876713 , -9.645130 , 4.628327 , -0.629627 , 0.356670 , 0.690146 , 0.419444 , 0.133707 , -2.703541 , -10.033970 , 4.706021 , 0.003204 , -0.289956 , 0.956999 , 0.421651 , 0.129992 , -2.534351 , -10.562206 , 4.286302 , 0.261544 , -0.505539 , 0.822169 , 0.422946 , 0.126015 , -2.255123 , -10.238560 , 4.314321 , 0.612964 , -0.309885 , 0.726768 , 0.425737 , 0.128238 , -3.095470 , -9.680798 , 3.703202 , -0.837428 , 0.365062 , 0.406690 , 0.410844 , 0.136572 , -3.081989 , -9.809978 , 4.367948 , -0.886776 , 0.358104 , 0.292154 , 0.415316 , 0.134239 , -2.747890 , -8.951992 , 3.879003 , -0.715079 , 0.538560 , 0.445601 , 0.420741 , 0.141251 , -2.152050 , -8.822544 , 4.052133 , 0.577502 , 0.494339 , 0.649678 , 0.430837 , 0.140260 , -3.797398 , -10.535313 , 3.545869 , -0.427442 , 0.554613 , 0.713889 , 0.395974 , 0.130430 , -3.502140 , -9.873363 , 3.336442 , -0.561083 , 0.333232 , 0.757683 , 0.400601 , 0.140641 , -4.427578 , -10.007984 , 2.910829 , -0.309366 , 0.277688 , 0.909482 , 0.380549 , 0.138073 , -3.182858 , -10.454441 , 4.303632 , -0.631214 , -0.260872 , 0.730399 , 0.411730 , 0.128083 , -2.958546 , -10.902096 , 3.913701 , 0.135929 , -0.670034 , 0.729728 , 0.412952 , 0.121391 , -2.868984 , -10.411999 , 4.436894 , -0.129612 , -0.594226 , 0.793756 , 0.417817 , 0.126354 , -3.171116 , -11.371876 , 3.660836 , 0.532334 , -0.282174 , 0.798090 , 0.408182 , 0.116075 , -3.382488 , -10.782070 , 4.136664 , -0.240455 , -0.047548 , 0.969481 , 0.404895 , 0.125059 , -3.415531 , -10.194469 , 3.602422 , -0.692984 , 0.430433 , 0.578326 , 0.406052 , 0.132237 , -3.252331 , -10.181423 , 3.995931 , -0.918516 , 0.257027 , 0.300394 , 0.412099 , 0.132424 , -3.863422 , -10.951107 , 3.905053 , -0.392468 , 0.406720 , 0.824915 , 0.397261 , 0.122766 , -1.871525 , -10.500454 , 3.955861 , 0.252419 , -0.141758 , 0.957152 , 0.428305 , 0.123707 , -3.512119 , -11.262302 , 4.083920 , 0.227210 , -0.073702 , 0.971038 , 0.402773 , 0.119876 , -2.198490 , -11.428051 , 3.331914 , 0.053652 , -0.516800 , 0.854396 , 0.421588 , 0.111871 , -1.868633 , -10.962818 , 3.791177 , -0.070101 , -0.562212 , 0.824000 , 0.425358 , 0.115746 , -2.485233 , -11.030544 , 3.716420 , 0.048433 , -0.728568 , 0.683218 , 0.418530 , 0.116538 , -2.827084 , -11.165668 , 3.620046 , 0.177252 , -0.517319 , 0.837214 , 0.413970 , 0.116507 , -2.722797 , -11.447887 , 3.500142 , 0.245033 , -0.357280 , 0.901242 , 0.416095 , 0.111937 , -2.144260 , -8.661625 , 3.848302 , 0.557970 , 0.734245 , 0.386670 , 0.430657 , 0.143391 , -2.441387 , -8.625561 , 3.884443 , -0.314463 , 0.807489 , 0.499039 , 0.426335 , 0.143097 , -2.286182 , -8.494061 , 3.601342 , 0.147343 , 0.988433 , 0.035310 , 0.429988 , 0.147216 , -2.373516 , -9.788197 , 4.649541 , 0.539109 , -0.135533 , 0.831233 , 0.425566 , 0.131182 , -2.290211 , -10.795856 , 4.090894 , 0.224525 , -0.599902 , 0.767907 , 0.421021 , 0.121649 , -3.047344 , -10.080395 , 4.548306 , -0.684347 , -0.105838 , 0.721397 , 0.416380 , 0.130830 , -2.238766 , -8.737041 , 3.188775 , 0.449995 , 0.788446 , -0.419294 , 0.433193 , 0.151928 , -3.309444 , -8.974819 , 2.957845 , -0.348430 , 0.761773 , 0.546159 , 0.408612 , 0.156284 , -2.521832 , -8.644474 , 1.691297 , 0.555162 , 0.779015 , 0.291299 , 0.433585 , 0.180471 , -2.797543 , -8.344738 , 1.651536 , 0.937681 , 0.297342 , 0.179662 , 0.423799 , 0.182977 , -3.817837 , -9.119862 , 2.958955 , -0.270302 , 0.485214 , 0.831538 , 0.397934 , 0.151387 , -2.262928 , -8.539326 , 1.127584 , 0.823206 , 0.563097 , -0.072237 , 0.438868 , 0.187191 , -2.117451 , -8.717510 , 1.499181 , 0.700736 , 0.694571 , 0.162755 , 0.442738 , 0.181773 , -2.057461 , -9.089947 , 2.173171 , 0.593982 , 0.804437 , 0.003113 , 0.442723 , 0.170427 , -6.050861 , -7.681652 , 1.808400 , -0.640980 , 0.696829 , 0.321757 , 0.336210 , 0.188722 , -5.991314 , -7.287304 , 1.259389 , -0.519547 , 0.852199 , 0.061769 , 0.344694 , 0.198928 , -2.754704 , -8.566273 , 1.933381 , 0.686026 , 0.723869 , 0.072939 , 0.425694 , 0.178450 , -3.192303 , -7.902325 , 2.342981 , -0.033540 , 0.119816 , 0.992218 , 0.404831 , 0.182477 , -3.544102 , -7.889851 , 2.423837 , 0.681539 , 0.387249 , 0.620869 , 0.397360 , 0.176348 , -2.720951 , -8.127117 , 1.871640 , 0.929228 , -0.368908 , -0.019807 , 0.416925 , 0.184699 , -2.673771 , -7.350300 , 2.288137 , 0.489059 , 0.567827 , 0.662069 , 0.407007 , 0.188668 , -3.450939 , -7.421093 , 1.921201 , -0.131626 , 0.842128 , 0.522935 , 0.399504 , 0.190607 , -2.569263 , -7.851971 , 2.032933 , 0.967254 , -0.217048 , 0.131382 , 0.412017 , 0.187508 , -2.825001 , -8.186817 , 1.403447 , 0.947600 , 0.205176 , 0.244789 , 0.421096 , 0.188147 , -2.730488 , -7.580631 , 1.022027 , 0.844325 , 0.252602 , -0.472518 , 0.413922 , 0.197139 , -3.601368 , -7.270527 , 1.302659 , 0.090457 , 0.994293 , 0.056032 , 0.396240 , 0.199231 , -3.225224 , -7.220379 , 1.541925 , -0.375408 , 0.924314 , 0.068453 , 0.403158 , 0.195441 , -2.856724 , -7.083271 , 1.971902 , 0.167730 , 0.906064 , 0.388440 , 0.405539 , 0.192619 , -2.807789 , -6.978374 , 1.438852 , 0.339732 , 0.921171 , -0.189673 , 0.406855 , 0.195162 , -2.590923 , -7.509220 , 1.486108 , 0.977294 , 0.147862 , -0.151555 , 0.411086 , 0.193036 , -2.019825 , -9.004505 , 1.779695 , 0.709372 , 0.664693 , 0.234321 , 0.442737 , 0.176547 , -2.699314 , -7.875782 , 1.116102 , 0.982757 , 0.035096 , -0.181433 , 0.419492 , 0.194003 , -3.789196 , -7.564884 , 2.184213 , 0.281655 , 0.826136 , 0.487991 , 0.391537 , 0.183225 , -1.929485 , -9.092678 , 1.440019 , 0.783593 , 0.596332 , -0.174078 , 0.446566 , 0.178847 , -2.768948 , -8.073917 , 2.250032 , 0.647511 , -0.373638 , 0.664113 , 0.411873 , 0.183376 , -2.761868 , -7.741520 , 2.482713 , 0.291971 , 0.004303 , 0.956389 , 0.408952 , 0.185544 , -3.580784 , -7.967144 , 2.754369 , 0.941343 , 0.113865 , 0.317606 , 0.392564 , 0.170686 , -3.948223 , -8.451023 , 3.006009 , 0.495834 , -0.438581 , 0.749474 , 0.385901 , 0.165424 , -3.779613 , -8.535580 , 2.612138 , 0.751122 , -0.013306 , 0.659993 , 0.396129 , 0.164706 , -5.770496 , -7.850208 , 3.208020 , 0.144902 , 0.989380 , 0.010773 , 0.345116 , 0.166892 , -5.593853 , -7.848797 , 2.840444 , -0.531358 , 0.826899 , 0.183935 , 0.349133 , 0.174418 , -4.104572 , -8.017307 , 3.245282 , 0.139744 , 0.101810 , 0.984924 , 0.381885 , 0.170251 , -4.401669 , -8.232433 , 3.203805 , -0.337382 , -0.177984 , 0.924375 , 0.378707 , 0.167166 , -4.506733 , -7.417606 , 2.811143 , 0.167272 , 0.788049 , 0.592425 , 0.377629 , 0.177796 , -4.424259 , -7.358021 , 2.275964 , 0.494369 , 0.780450 , 0.382672 , 0.378761 , 0.185014 , -5.111919 , -7.179226 , 1.193761 , -0.118900 , 0.938627 , -0.323710 , 0.366327 , 0.202108 , -4.172726 , -7.575024 , 2.724778 , 0.322642 , 0.926054 , 0.195654 , 0.382575 , 0.176119 , -4.204189 , -7.540951 , 2.366052 , 0.374187 , 0.864742 , 0.334910 , 0.383776 , 0.179649 , -4.381161 , -7.642864 , 3.018441 , -0.087100 , 0.590320 , 0.802423 , 0.379354 , 0.173594 , -3.972401 , -7.680103 , 2.970308 , 0.302316 , 0.807398 , 0.506607 , 0.383739 , 0.173451 , -4.457790 , -7.885715 , 3.040815 , -0.520463 , 0.180395 , 0.834590 , 0.377026 , 0.170382 , -4.784710 , -8.068150 , 2.762555 , -0.246315 , -0.318796 , 0.915220 , 0.371926 , 0.167381 , -4.553638 , -8.505314 , 2.990022 , -0.431928 , -0.345500 , 0.833064 , 0.376728 , 0.162137 , -4.295742 , -8.970554 , 2.740331 , -0.169378 , -0.008545 , 0.985504 , 0.383179 , 0.158505 , -4.019199 , -8.929188 , 2.796079 , 0.022431 , 0.187292 , 0.982025 , 0.391382 , 0.158373 , -4.543797 , -9.208996 , 2.787565 , -0.140782 , 0.225959 , 0.963897 , 0.385254 , 0.150918 , -3.801174 , -7.660442 , 2.550210 , 0.505264 , 0.839320 , 0.200507 , 0.388309 , 0.175856 , -3.709644 , -7.873203 , 3.023599 , 0.719108 , 0.301462 , 0.626057 , 0.386496 , 0.171183 , -3.452213 , -8.682064 , 2.531606 , 0.165105 , 0.771599 , 0.614277 , 0.405798 , 0.164111 , -3.115940 , -8.713100 , 2.462217 , 0.072817 , 0.864925 , 0.496567 , 0.414400 , 0.166182 , -3.685490 , -8.853390 , 2.704438 , 0.046236 , 0.599994 , 0.798639 , 0.399925 , 0.159059 , -3.145016 , -8.749676 , 2.729264 , -0.209693 , 0.916044 , 0.341868 , 0.411887 , 0.161215 , -5.455555 , -9.340435 , 2.748906 , 0.696951 , -0.022980 , 0.716727 , 0.362925 , 0.145904 , -5.437046 , -10.012447 , 3.785352 , 0.887020 , -0.102451 , 0.450179 , 0.345091 , 0.141236 , -3.997990 , -7.296459 , 1.807393 , 0.342296 , 0.861965 , 0.373943 , 0.388106 , 0.192323 , -5.523411 , -7.371159 , 2.631177 , -0.668172 , 0.540849 , 0.510849 , 0.356242 , 0.181731 , -12.945684 , -1.797451 , -0.146403 , -0.114231 , -0.855708 , 0.504624 , 0.184851 , 0.355720 , -5.693653 , -7.444592 , 2.080968 , -0.850429 , 0.328806 , 0.410596 , 0.347576 , 0.185828 , -5.511654 , -6.968914 , 2.215707 , -0.546831 , 0.786920 , 0.285806 , 0.356381 , 0.189976 , -4.986912 , -8.034328 , 2.964456 , 0.908383 , -0.048891 , 0.415204 , 0.363528 , 0.164885 , -4.980289 , -8.331745 , 2.513757 , -0.265328 , -0.319559 , 0.909635 , 0.369114 , 0.162206 , -13.749037 , -11.204144 , 2.292859 , 0.088015 , 0.477523 , 0.874172 , 0.161624 , 0.116335 , -6.009502 , -7.863537 , 2.086511 , -0.099918 , 0.784448 , 0.612049 , 0.341257 , 0.181858 , -5.248158 , -8.392269 , 2.504907 , 0.713950 , -0.369396 , 0.594806 , 0.364937 , 0.161532 , -5.193348 , -7.850986 , 3.229608 , 0.363903 , 0.653188 , 0.663991 , 0.355230 , 0.168048 , -5.178150 , -8.219624 , 3.443689 , 0.494278 , 0.068606 , 0.866573 , 0.352765 , 0.163410 , -4.966282 , -8.293392 , 3.234418 , 0.909940 , -0.131199 , 0.393384 , 0.357273 , 0.163112 , -5.411854 , -8.007687 , 3.400064 , 0.073672 , 0.587268 , 0.805994 , 0.350130 , 0.165103 , -5.596035 , -8.230198 , 3.539594 , 0.896542 , 0.302225 , 0.323801 , 0.347413 , 0.161869 , -5.426472 , -7.497364 , 2.830888 , -0.398206 , 0.586657 , 0.705130 , 0.358757 , 0.174909 , -5.832706 , -8.029720 , 2.379636 , -0.294992 , 0.941801 , 0.161016 , 0.342033 , 0.177123 , -5.504894 , -7.212757 , 1.340936 , -0.214393 , 0.944792 , -0.247749 , 0.355686 , 0.197646 , -5.759518 , -7.219707 , 1.683961 , -0.611194 , 0.785028 , 0.100467 , 0.348111 , 0.192250 , -4.671986 , -8.906696 , 2.691762 , -0.214148 , -0.083621 , 0.973205 , 0.376698 , 0.155470 , -4.877674 , -8.680462 , 2.670606 , -0.425703 , 0.040407 , 0.903928 , 0.371482 , 0.158460 , -5.282665 , -9.018124 , 2.647226 , 0.385449 , 0.215552 , 0.897183 , 0.368792 , 0.153705 , -5.624500 , -7.391888 , 0.683091 , 0.080294 , 0.989105 , 0.123234 , 0.354464 , 0.207862 , -5.720325 , -7.827221 , 2.152494 , -0.643452 , 0.454237 , 0.616108 , 0.347248 , 0.180230 , -5.003681 , -8.410839 , 3.021417 , 0.917875 , -0.384503 , -0.098086 , 0.361053 , 0.160296 , -5.373188 , -8.694050 , 3.341443 , 0.854671 , -0.288491 , 0.431623 , 0.353778 , 0.158675 , -5.445774 , -9.016239 , 3.016587 , 0.959136 , -0.254128 , 0.124180 , 0.360745 , 0.154743 , -5.577030 , -7.884068 , 3.785764 , 0.851680 , 0.470473 , -0.230720 , 0.342712 , 0.162941 , -6.164692 , -7.577045 , 3.964528 , -0.188910 , 0.971831 , -0.140812 , 0.335730 , 0.162905 , -6.409191 , -7.849545 , 3.591481 , -0.376904 , 0.888272 , -0.262368 , 0.333258 , 0.165062 , -5.326252 , -8.727169 , 2.544587 , 0.667745 , -0.032533 , 0.743645 , 0.366028 , 0.158539 , -5.881680 , -7.582325 , 4.101464 , 0.318735 , 0.929868 , 0.183538 , 0.336888 , 0.161432 , -5.680752 , -7.708134 , 3.973623 , 0.616260 , 0.787500 , 0.004486 , 0.339040 , 0.161651 , -5.486820 , -8.620655 , 3.687146 , 0.992004 , 0.047670 , 0.116642 , 0.345323 , 0.155897 , -5.484669 , -9.271503 , 3.957166 , 0.725883 , -0.095096 , 0.681173 , 0.343369 , 0.149725 , -5.458637 , -9.142399 , 3.359952 , 0.998108 , -0.038636 , 0.047487 , 0.351871 , 0.151069 , -5.393040 , -8.157719 , 4.097390 , 0.996704 , 0.036592 , 0.072298 , 0.342084 , 0.159840 , -6.607944 , -11.067570 , 4.241841 , 0.464919 , -0.737358 , 0.490005 , 0.325796 , 0.124032 , -15.258459 , -9.892429 , -0.150218 , 0.524644 , 0.838343 , -0.147923 , 0.120851 , 0.169032 , -15.785032 , -9.540752 , 0.756871 , 0.420759 , 0.907163 , 0.001831 , 0.099545 , 0.152932 , -16.429953 , -9.413494 , 1.048757 , 0.205939 , 0.934263 , 0.290994 , 0.088533 , 0.149391 , -15.913054 , -9.615231 , 1.260915 , 0.211280 , 0.960021 , 0.183477 , 0.095791 , 0.145739 , -17.421804 , -9.215511 , 1.467000 , -0.148473 , 0.828455 , 0.539994 , 0.061949 , 0.145922 , -17.335546 , -9.073948 , 1.014520 , 0.101382 , 0.993286 , 0.055605 , 0.065262 , 0.150691 , -17.620565 , -9.126934 , 1.128766 , -0.562151 , 0.803522 , 0.195685 , 0.060204 , 0.149608 , -6.847393 , -9.657993 , 4.645337 , 0.412915 , 0.492416 , 0.766137 , 0.321453 , 0.141971 , -6.072269 , -10.596432 , 4.281392 , 0.654134 , -0.271584 , 0.705893 , 0.329437 , 0.136675 , -16.105268 , -9.638523 , 1.613302 , 0.038362 , 0.885220 , 0.463515 , 0.089356 , 0.140503 , -16.938513 , -9.263599 , 1.036859 , 0.361461 , 0.892544 , 0.269509 , 0.074580 , 0.149082 , -18.053122 , -10.285954 , 2.595758 , -0.456252 , 0.823389 , 0.337352 , 0.048297 , 0.125713 , -18.297651 , -10.259464 , 2.551027 , 0.318644 , 0.792474 , 0.519974 , 0.041888 , 0.128151 , -18.347227 , -10.689610 , 2.727475 , -0.282937 , 0.098727 , 0.954009 , 0.041949 , 0.121595 , -17.427435 , -11.370350 , 2.741361 , 0.494736 , 0.024964 , 0.868679 , 0.063183 , 0.106827 , -18.260275 , -10.200138 , 1.645993 , -0.084384 , 0.968627 , 0.233680 , 0.043421 , 0.137613 , -18.308889 , -10.204533 , 2.017949 , 0.365062 , 0.930631 , 0.025239 , 0.041046 , 0.132606 , -18.014677 , -10.328922 , 2.057443 , -0.345866 , 0.926786 , 0.146184 , 0.047218 , 0.131826 , -17.609114 , -9.583248 , 1.683381 , -0.639668 , 0.660512 , 0.393048 , 0.059081 , 0.140310 , -17.218107 , -9.527882 , 1.813913 , 0.200873 , 0.824580 , 0.528825 , 0.067941 , 0.141742 , -18.921782 , -10.747257 , 2.667113 , 0.098605 , 0.145146 , 0.984466 , 0.031668 , 0.120946 , -18.970106 , -11.186436 , 2.747758 , 0.510971 , 0.521561 , 0.683279 , 0.030174 , 0.114913 , -18.633207 , -11.083508 , 2.695634 , -0.030183 , 0.178655 , 0.983428 , 0.036464 , 0.116876 , -5.537365 , -8.416821 , 4.212487 , 0.632038 , -0.351390 , 0.690634 , 0.339312 , 0.156900 , -5.802814 , -7.711094 , 3.661905 , 0.355083 , 0.899716 , -0.253761 , 0.339932 , 0.164218 , -18.550901 , -11.439045 , 2.825578 , 0.196234 , 0.663381 , 0.722037 , 0.036623 , 0.109707 , -18.653830 , -10.020611 , 2.340360 , -0.077181 , 0.983276 , 0.164830 , 0.037371 , 0.130592 , -18.623701 , -10.216419 , 2.745420 , -0.062197 , 0.559191 , 0.826685 , 0.036094 , 0.126635 , -17.841955 , -9.479443 , 1.089280 , -0.753380 , 0.615802 , 0.230537 , 0.056738 , 0.148013 , -17.770803 , -9.930981 , 2.160035 , -0.666555 , 0.691275 , 0.278939 , 0.055266 , 0.133998 , -17.902578 , -10.040287 , 1.560533 , -0.613849 , 0.694510 , 0.375225 , 0.050915 , 0.140083 , -17.992247 , -10.167446 , 1.799772 , -0.594073 , 0.749901 , 0.290994 , 0.049045 , 0.135875 , -18.996046 , -10.398235 , 2.546846 , -0.285928 , 0.682424 , 0.672658 , 0.028991 , 0.126320 , -6.090687 , -7.346096 , 0.736169 , -0.180425 , 0.868038 , 0.462478 , 0.341207 , 0.206930 , -17.863623 , -10.218182 , 2.769300 , -0.310556 , 0.778161 , 0.545854 , 0.054611 , 0.124660 , -17.826704 , -10.401928 , 2.987615 , -0.002991 , 0.539140 , 0.842189 , 0.056783 , 0.121467 , -17.319990 , -10.331715 , 2.758558 , 0.434675 , 0.385052 , 0.814081 , 0.061162 , 0.124261 , -17.853827 , -10.092083 , 2.418588 , -0.626301 , 0.759087 , 0.177404 , 0.052543 , 0.128908 , -17.566214 , -10.035145 , 2.638738 , -0.063021 , 0.770135 , 0.634724 , 0.057303 , 0.128464 , -17.536741 , -11.032673 , 2.957162 , 0.317118 , -0.222419 , 0.921903 , 0.061124 , 0.112701 , -17.671537 , -10.707386 , 3.031949 , 0.212683 , -0.025880 , 0.976775 , 0.059785 , 0.117764 , -17.774199 , -11.222324 , 2.851724 , -0.037660 , -0.089206 , 0.995270 , 0.054850 , 0.111602 , -18.062338 , -11.179798 , 2.769868 , -0.247932 , 0.060610 , 0.966857 , 0.044581 , 0.112266 , -18.066236 , -10.575283 , 3.023690 , -0.478225 , 0.192022 , 0.856960 , 0.051555 , 0.119275 , -19.283651 , -10.657436 , 2.805360 , 0.396649 , 0.663167 , 0.634693 , 0.022967 , 0.121947 , -18.875517 , -10.178577 , 2.299321 , -0.517472 , 0.821680 , 0.238716 , 0.032451 , 0.130716 , -19.281897 , -10.107143 , 1.795858 , 0.084994 , 0.959319 , 0.269143 , 0.023569 , 0.136219 , -19.029493 , -10.218769 , 1.892095 , -0.095523 , 0.971923 , 0.214942 , 0.029866 , 0.134304 , -19.059271 , -10.103497 , 1.477891 , 0.118748 , 0.988464 , 0.093966 , 0.030704 , 0.138173 , -18.733442 , -10.088581 , 1.898053 , -0.065371 , 0.997101 , -0.038270 , 0.035900 , 0.134794 , -19.147787 , -10.270100 , 2.162374 , -0.141148 , 0.939970 , 0.310617 , 0.026967 , 0.131578 , -16.909666 , -1.840298 , 1.593137 , 0.962859 , -0.220191 , 0.156041 , 0.076482 , 0.379873 , -17.573561 , -1.364086 , 2.519552 , 0.141850 , 0.014924 , 0.989746 , 0.051120 , 0.389167 , -18.717947 , -10.182201 , 1.455079 , 0.098086 , 0.993713 , 0.053682 , 0.036764 , 0.139519 , -18.169394 , -10.001347 , 1.363000 , -0.471206 , 0.737114 , 0.484329 , 0.046106 , 0.142089 , -17.120893 , -1.700504 , 2.279798 , 0.579150 , 0.249062 , 0.776208 , 0.062115 , 0.377301 , -16.838270 , -2.873592 , 1.467923 , 0.902554 , -0.042970 , 0.428419 , 0.073299 , 0.357082 , -16.722029 , -2.395489 , 1.989877 , 0.991699 , 0.126286 , -0.023896 , 0.070154 , 0.363465 , -16.870031 , -1.928410 , 2.109502 , 0.937895 , 0.289529 , 0.190985 , 0.069639 , 0.372136 , -16.799345 , -2.399197 , 2.374295 , 0.832209 , 0.108676 , 0.543657 , 0.064372 , 0.364111 , -15.326178 , -1.184483 , 1.184995 , 0.455153 , -0.817896 , 0.351878 , 0.137015 , 0.408743 , -15.382292 , -1.001759 , 1.445966 , 0.152959 , -0.492477 , 0.856746 , 0.132236 , 0.412168 , -15.600378 , -1.284336 , 1.143789 , -0.046449 , -0.902737 , 0.427625 , 0.130638 , 0.402764 , -15.927000 , -1.051807 , 1.221147 , -0.705893 , -0.430311 , 0.562609 , 0.122455 , 0.404049 , -16.003538 , -0.834606 , 0.992364 , -0.971709 , 0.058931 , 0.228553 , 0.118457 , 0.408188 , -14.561399 , 0.142704 , 0.888997 , 0.319468 , 0.536973 , 0.780725 , 0.146830 , 0.432916 , -14.308836 , -1.770107 , 1.070329 , -0.360546 , -0.923276 , 0.132389 , 0.171433 , 0.396755 , -17.244375 , -10.602070 , 2.767816 , 0.657979 , 0.005615 , 0.752983 , 0.066330 , 0.120503 , -17.062162 , -10.898312 , 2.460897 , 0.677541 , -0.022217 , 0.735130 , 0.073644 , 0.119380 , -17.036703 , -10.301273 , 2.519964 , 0.694235 , 0.257210 , 0.672170 , 0.070377 , 0.126537 , -15.844732 , -0.804340 , 1.395017 , -0.650044 , -0.042360 , 0.758690 , 0.125219 , 0.410850 , -15.312353 , 0.139774 , 0.974019 , -0.331309 , 0.848170 , 0.413251 , 0.132369 , 0.429516 , -15.164320 , -0.933926 , 1.318807 , 0.661214 , -0.476302 , 0.579547 , 0.137776 , 0.413781 , -14.848890 , 0.219090 , 0.803495 , 0.005249 , 0.595416 , 0.803369 , 0.139282 , 0.431120 , -15.032415 , -0.108036 , 1.296186 , 0.377300 , 0.551714 , 0.743767 , 0.137276 , 0.424295 , -14.805838 , -0.211956 , 1.153341 , 0.548936 , 0.220618 , 0.806177 , 0.144354 , 0.425146 , -15.561476 , -0.087421 , 1.174112 , -0.614978 , 0.685232 , 0.390149 , 0.126534 , 0.426336 , -15.565931 , -0.481724 , 1.507325 , -0.380840 , 0.251381 , 0.889767 , 0.128295 , 0.418435 , -15.321913 , -0.084126 , 1.332029 , -0.111393 , 0.683187 , 0.721671 , 0.131869 , 0.423338 , -16.512266 , -0.629658 , 0.957620 , 0.811304 , 0.572527 , 0.118137 , 0.086431 , 0.406989 , -14.400465 , 0.300419 , 0.606931 , 0.800226 , 0.537614 , 0.265633 , 0.147576 , 0.440972 , -14.413260 , -0.127834 , -0.177356 , 0.595996 , 0.727653 , 0.339488 , 0.154259 , 0.449281 , -15.848204 , -0.412441 , 1.038015 , -0.817408 , 0.479751 , 0.318796 , 0.119436 , 0.419497 , -15.229292 , -0.453876 , 1.513589 , 0.240486 , 0.108951 , 0.964507 , 0.134696 , 0.418426 , -15.666281 , -0.150448 , 0.683938 , -0.662191 , 0.729759 , 0.169988 , 0.119236 , 0.434288 , -14.643538 , -0.570713 , 0.909349 , 0.147343 , -0.298593 , 0.942930 , 0.147713 , 0.418612 , -15.005964 , -0.521389 , 1.383737 , 0.641346 , -0.146702 , 0.753075 , 0.140957 , 0.418545 , -17.292181 , -11.013248 , 2.735391 , 0.675832 , -0.119388 , 0.727287 , 0.066663 , 0.114717 , -18.311552 , -3.217724 , 2.118116 , -0.825556 , -0.348216 , 0.444044 , 0.042012 , 0.350616 , -15.846769 , 0.012310 , -0.466258 , -0.265053 , 0.788415 , 0.555101 , 0.111526 , 0.454577 , -15.740751 , -0.084309 , -0.234538 , -0.474929 , 0.796838 , 0.373394 , 0.113149 , 0.444100 , -16.760748 , -2.632809 , 1.490136 , 0.987426 , 0.121586 , 0.100772 , 0.075667 , 0.364957 , -16.823843 , -2.526882 , 1.235116 , 0.810327 , 0.525834 , 0.258522 , 0.080532 , 0.366069 , -18.326185 , -3.603352 , 1.537660 , -0.904202 , -0.153264 , 0.398572 , 0.039971 , 0.341077 , -18.313795 , -3.700405 , 2.032396 , -0.973479 , 0.105441 , 0.202979 , 0.043434 , 0.344457 , -17.778807 , -9.629398 , 1.354329 , -0.723930 , 0.518265 , 0.455275 , 0.055522 , 0.144157 , -17.132704 , -9.773823 , 2.093473 , 0.445021 , 0.709159 , 0.546800 , 0.070244 , 0.134387 , -17.279715 , -9.923611 , 2.453439 , 0.294015 , 0.735313 , 0.610584 , 0.062912 , 0.130611 , -16.693312 , -9.854275 , 1.777303 , 0.217841 , 0.765099 , 0.605884 , 0.078914 , 0.137342 , -17.461012 , -4.443203 , 1.516023 , -0.163121 , -0.361370 , 0.918027 , 0.061245 , 0.333835 , -17.896811 , -4.509708 , 1.462331 , -0.065218 , -0.605365 , 0.793237 , 0.056670 , 0.332395 , -17.451231 , -9.698185 , 2.140241 , -0.187719 , 0.826197 , 0.531144 , 0.063093 , 0.136179 , -18.321539 , -4.519817 , 1.472001 , -0.036042 , -0.692648 , 0.720328 , 0.052854 , 0.330672 , -17.546415 , -2.861469 , 2.969667 , -0.013855 , 0.407514 , 0.913083 , 0.052497 , 0.358027 , -17.932913 , -3.262859 , 2.898484 , -0.534104 , 0.221747 , 0.815790 , 0.050701 , 0.354375 , -17.526922 , -3.363293 , 2.992925 , 0.128422 , -0.062777 , 0.989715 , 0.054488 , 0.353964 , -18.116400 , -3.053448 , 2.521951 , -0.809259 , 0.157842 , 0.565783 , 0.046326 , 0.354237 , -18.239370 , -3.562664 , 2.678067 , -0.879269 , 0.016297 , 0.475997 , 0.049130 , 0.350664 , -17.056005 , -4.105495 , 2.098310 , 0.586291 , -0.801141 , 0.119968 , 0.062963 , 0.342766 , -16.918097 , -4.037395 , 1.836347 , 0.666036 , -0.436964 , 0.604480 , 0.065495 , 0.340441 , -18.558302 , -4.071697 , 1.768754 , -0.895383 , 0.114658 , 0.430250 , 0.044965 , 0.337301 , -18.280416 , -4.014042 , 2.312955 , -0.799371 , -0.425062 , 0.424543 , 0.048943 , 0.342816 , -19.150030 , -3.275105 , 1.602910 , -0.247017 , -0.924924 , 0.288919 , 0.026702 , 0.350514 , -19.394659 , -3.191372 , 1.499910 , -0.437635 , -0.857356 , 0.270882 , 0.022263 , 0.351190 , -16.487211 , -9.283070 , 0.038030 , 0.391552 , 0.904202 , 0.170385 , 0.095465 , 0.167042 , 10.093861 , -8.961987 , 2.817708 , -0.802850 , 0.183386 , 0.567217 , 0.752427 , 0.174615 , 10.497387 , -8.243885 , 2.865289 , -0.529832 , 0.614063 , 0.584918 , 0.759069 , 0.178359 , 10.241642 , -8.676952 , 2.372949 , -0.852412 , 0.434919 , 0.290078 , 0.751344 , 0.180246 , -16.466040 , -3.142033 , -0.090064 , 0.973571 , 0.138096 , 0.181768 , 0.102703 , 0.343585 , 1.407314 , -10.275486 , 1.860662 , -0.391919 , -0.602771 , 0.694998 , 0.509677 , 0.157528 , -18.732710 , -4.708775 , 0.018037 , -0.815790 , -0.574267 , 0.068239 , 0.037870 , 0.310954 , -17.412703 , -4.043934 , 2.654062 , 0.227821 , -0.774590 , 0.589984 , 0.057932 , 0.345458 , -18.684843 , -4.420132 , 1.537694 , -0.623920 , -0.380688 , 0.682485 , 0.048622 , 0.331244 , -19.556860 , -3.695774 , 0.727964 , -0.372417 , -0.902066 , 0.218116 , 0.022567 , 0.337770 , -17.231894 , -4.166348 , 1.809858 , 0.204260 , -0.866207 , 0.455947 , 0.062224 , 0.338749 , -18.085974 , -4.034107 , 2.616128 , -0.425459 , -0.731254 , 0.533128 , 0.051449 , 0.347542 , -18.846922 , -4.575802 , 1.243821 , -0.830988 , -0.423444 , 0.360698 , 0.047479 , 0.327527 , -10.306227 , -10.441189 , 1.746335 , -0.244606 , 0.968413 , -0.048189 , 0.252376 , 0.151375 , -10.533308 , -10.567799 , 1.618325 , -0.381024 , 0.919584 , -0.095492 , 0.245512 , 0.149990 , -11.137693 , -10.882870 , 1.703561 , -0.537400 , 0.833705 , 0.126896 , 0.238283 , 0.143790 , -11.151495 , -11.475590 , 3.039956 , -0.396039 , 0.193670 , 0.897549 , 0.255581 , 0.123126 , -11.412352 , -11.085819 , 2.335729 , -0.611530 , 0.742363 , 0.273629 , 0.240981 , 0.130966 , -10.748610 , -10.637691 , 1.462064 , -0.316843 , 0.937956 , 0.140690 , 0.240037 , 0.152913 , -10.493803 , -10.888630 , 3.004167 , -0.613025 , 0.563341 , 0.553911 , 0.267877 , 0.132272 , -10.722204 , -10.836651 , 2.764768 , -0.490890 , 0.688528 , 0.533769 , 0.254756 , 0.134587 , -11.134283 , -10.957630 , 2.270234 , -0.481552 , 0.869808 , 0.107242 , 0.247080 , 0.139765 , -10.409437 , -10.642063 , 2.673558 , -0.244819 , 0.872433 , 0.422956 , 0.262398 , 0.140224 , -10.662420 , -10.535862 , 2.447812 , -0.379833 , 0.895749 , 0.230964 , 0.254766 , 0.141471 , -10.387426 , -10.571789 , 0.910001 , -0.004364 , 0.980499 , 0.196356 , 0.245598 , 0.162295 , -10.726347 , -10.550022 , 1.019708 , -0.137425 , 0.973357 , 0.183508 , 0.239676 , 0.159368 , -10.273031 , -10.498363 , 2.310552 , -0.184301 , 0.973022 , 0.138585 , 0.260668 , 0.147799 , -10.720060 , -10.639065 , 2.013257 , -0.490921 , 0.870663 , -0.030427 , 0.249046 , 0.145238 , -10.974783 , -10.865246 , 2.004873 , -0.560839 , 0.822321 , 0.095889 , 0.244782 , 0.142873 , -9.580465 , -11.784504 , 4.626943 , -0.247688 , -0.885830 , 0.392346 , 0.289734 , 0.121897 , -10.155005 , -11.376987 , 4.499768 , -0.837733 , -0.212134 , 0.503159 , 0.283891 , 0.124117 , 9.952564 , -7.744953 , 0.909471 , -0.315470 , 0.909513 , 0.270608 , 0.743977 , 0.209506 , 9.681957 , -7.686993 , 0.708276 , 0.399335 , 0.695700 , 0.597064 , 0.736516 , 0.209056 , 8.034641 , -11.589535 , 2.340856 , 0.344859 , -0.780541 , 0.521348 , 0.688465 , 0.126005 , 8.113216 , -11.253773 , 3.224729 , 0.035981 , -0.873043 , 0.486282 , 0.693321 , 0.134342 , 7.676144 , -11.229465 , 3.054460 , -0.294992 , -0.733482 , 0.612323 , 0.685583 , 0.136217 , 7.291752 , -12.286747 , 0.919553 , 0.288797 , -0.957305 , 0.012452 , 0.670526 , 0.099872 , 8.565685 , -7.655262 , 1.609174 , -0.261574 , 0.777551 , 0.571795 , 0.697713 , 0.198028 , 8.765514 , -7.721745 , 1.973699 , -0.419385 , 0.758812 , 0.498276 , 0.701503 , 0.194654 , 8.838764 , -7.479580 , 1.592031 , -0.274606 , 0.735832 , 0.618946 , 0.703857 , 0.200831 , 8.293568 , -7.306286 , 1.267770 , -0.486587 , 0.726493 , 0.485183 , 0.695638 , 0.204759 , 8.495296 , -7.171062 , 1.105607 , -0.121128 , 0.932157 , 0.341136 , 0.699875 , 0.209460 , 8.344425 , -7.137196 , 0.862447 , -0.458083 , 0.880673 , 0.120487 , 0.696893 , 0.213529 , -9.998938 , -10.674274 , 3.534978 , -0.640065 , 0.763634 , -0.084414 , 0.277098 , 0.135244 , 7.722637 , -10.493946 , 3.869504 , -0.319773 , -0.520554 , 0.791650 , 0.688393 , 0.145429 , 7.204479 , -10.843533 , 2.994718 , -0.745994 , -0.271950 , 0.607837 , 0.675982 , 0.142537 , 9.617443 , -8.709621 , 1.527246 , -0.212012 , 0.410871 , 0.886685 , 0.730359 , 0.185498 , 9.697231 , -8.256176 , 1.353002 , -0.755455 , 0.428724 , 0.495437 , 0.735003 , 0.196096 , 5.815960 , -11.522228 , 2.426137 , 0.255287 , -0.145207 , 0.955870 , 0.644566 , 0.123784 , 5.700985 , -10.971012 , 2.394165 , 0.182562 , 0.366619 , 0.912259 , 0.640683 , 0.127510 , 8.614269 , -11.448391 , 2.053720 , 0.551042 , -0.783807 , 0.286264 , 0.703384 , 0.122190 , 9.432224 , -8.247929 , 1.181428 , 0.428480 , 0.554308 , 0.713523 , 0.727620 , 0.196290 , 9.333630 , -7.931210 , 1.385324 , 0.985290 , 0.139042 , 0.099155 , 0.720483 , 0.199929 , 9.377499 , -8.290142 , 1.613351 , 0.949095 , 0.128422 , 0.287545 , 0.721294 , 0.192209 , -9.991156 , -10.556431 , 2.967794 , -0.501297 , 0.849666 , 0.163518 , 0.270595 , 0.141383 , 10.311474 , -9.393688 , 2.876790 , -0.541673 , -0.136509 , 0.829402 , 0.751459 , 0.166536 , 10.406582 , -8.238285 , 2.421514 , -0.804193 , 0.324625 , 0.497848 , 0.756892 , 0.183983 , 10.631039 , -7.895313 , 2.453584 , -0.186438 , 0.430921 , 0.882900 , 0.761763 , 0.187113 , 10.313717 , -7.570835 , 2.250150 , -0.641285 , 0.392499 , 0.659291 , 0.756457 , 0.191194 , 5.202557 , -11.622326 , 2.359281 , -0.356059 , 0.003601 , 0.934416 , 0.634230 , 0.119691 , 7.146160 , -8.538334 , 2.800061 , 0.191656 , 0.520981 , 0.831751 , 0.679764 , 0.168282 , 7.581318 , -8.750858 , 2.711610 , 0.289376 , 0.513565 , 0.807733 , 0.687336 , 0.170035 , 7.334942 , -8.303089 , 2.340307 , -0.219581 , 0.912168 , 0.345927 , 0.679107 , 0.174666 , -8.490599 , -9.486820 , 3.762899 , -0.571001 , 0.666860 , -0.478744 , 0.298849 , 0.149301 , 10.591526 , -8.634403 , 3.017274 , -0.464797 , 0.263741 , 0.845210 , 0.762328 , 0.174167 , -7.538349 , -10.318272 , 5.234586 , 0.284158 , 0.326456 , 0.901456 , 0.309637 , 0.132379 , -10.103476 , -10.582211 , 2.624746 , -0.338664 , 0.913236 , 0.226417 , 0.265880 , 0.144107 , -9.849363 , -10.422047 , 2.605008 , -0.441450 , 0.893643 , 0.080660 , 0.269959 , 0.147195 , -7.338245 , -10.022015 , 5.053380 , 0.268258 , 0.521256 , 0.810114 , 0.315526 , 0.137050 , 8.239605 , -8.182903 , 2.240842 , 0.174932 , 0.210852 , 0.961699 , 0.694453 , 0.184965 , 7.839252 , -8.242382 , 2.382043 , 0.048555 , 0.563128 , 0.824915 , 0.688796 , 0.180395 , 8.313313 , -8.528461 , 2.215661 , 0.330576 , 0.165014 , 0.929197 , 0.698301 , 0.181811 , 6.823025 , -11.007732 , 2.492948 , -0.694174 , -0.025971 , 0.719291 , 0.666724 , 0.135506 , 4.924900 , -11.730312 , 2.201646 , -0.893033 , -0.143681 , 0.426374 , 0.630602 , 0.118614 , 10.309490 , -10.334019 , 2.769368 , -0.732871 , 0.096194 , 0.673513 , 0.752171 , 0.144480 , 10.623646 , -7.222431 , 1.078046 , -0.452040 , 0.883511 , -0.122562 , 0.756338 , 0.211406 , 10.761753 , -7.226780 , 0.801305 , -0.464675 , 0.885464 , -0.001770 , 0.758952 , 0.216736 , 6.828533 , -8.469471 , 1.653642 , -0.929868 , 0.266121 , 0.253883 , 0.665066 , 0.176658 , 7.020901 , -8.526501 , 2.108030 , -0.608142 , 0.788812 , -0.088809 , 0.670510 , 0.173586 , 6.961529 , -8.172153 , 1.583863 , -0.641407 , 0.744774 , 0.184027 , 0.669849 , 0.180465 , -8.290510 , -9.478580 , 0.435987 , -0.718802 , 0.508988 , 0.473495 , 0.276353 , 0.190944 , 6.718678 , -8.783016 , 2.851129 , -0.473251 , 0.108402 , 0.874203 , 0.675350 , 0.164413 , 7.328739 , -9.163731 , 2.856473 , -0.278115 , 0.539598 , 0.794610 , 0.682751 , 0.162894 , 7.433872 , -8.091953 , 1.819402 , -0.475936 , 0.814386 , 0.331919 , 0.678595 , 0.183027 , -9.111959 , -9.400524 , -0.870539 , -0.584857 , 0.401868 , 0.704550 , 0.256843 , 0.197073 , 10.725246 , -7.235813 , 1.855726 , -0.234199 , 0.949614 , 0.208197 , 0.761482 , 0.200073 , 10.593220 , -7.204815 , 1.484887 , -0.425092 , 0.904111 , 0.042726 , 0.755793 , 0.204247 , 9.427837 , -7.557720 , 1.039582 , 0.796136 , 0.393994 , 0.459212 , 0.725636 , 0.207950 , 5.897694 , -10.102512 , 1.545671 , -0.665944 , 0.624897 , 0.407392 , 0.638457 , 0.150170 , -7.744236 , -8.800037 , 0.694814 , -0.749870 , 0.253853 , 0.610889 , 0.292189 , 0.193692 , -7.614567 , -8.843655 , 1.020433 , -0.834223 , 0.525132 , 0.168126 , 0.293179 , 0.189204 , 6.890141 , -8.264408 , 0.979345 , -0.605457 , 0.415906 , 0.678518 , 0.660466 , 0.191451 , 6.787075 , -8.516331 , 1.288217 , -0.825495 , 0.483474 , 0.291177 , 0.660184 , 0.182101 , 7.198238 , -8.051792 , 1.290246 , -0.499008 , 0.789697 , 0.356853 , 0.670315 , 0.189521 , -7.750546 , -8.502529 , 0.682904 , -0.570635 , -0.294046 , 0.766747 , 0.296000 , 0.196499 , -19.496557 , -3.154224 , 1.869096 , -0.374310 , -0.916562 , 0.140477 , 0.021404 , 0.356328 , 9.267521 , -7.558552 , 1.708242 , 0.708060 , 0.666463 , 0.233345 , 0.711949 , 0.200399 , 9.133099 , -7.598972 , 2.059179 , 0.202826 , 0.795923 , 0.570360 , 0.707674 , 0.194913 , -17.966063 , -3.607159 , 2.970479 , -0.465621 , -0.089419 , 0.880428 , 0.052439 , 0.351152 , -19.268446 , -3.716450 , 0.357408 , -0.268990 , -0.947447 , 0.172948 , 0.023418 , 0.331530 , -19.328512 , -3.815693 , 0.052869 , -0.336283 , -0.759514 , 0.556780 , 0.020967 , 0.325937 , 8.986210 , -8.564129 , 2.012750 , 0.502274 , -0.304941 , 0.809137 , 0.709732 , 0.184948 , 8.754055 , -8.756748 , 2.107923 , 0.414838 , 0.046632 , 0.908689 , 0.706478 , 0.178383 , 9.187450 , -8.732800 , 1.818578 , 0.591083 , 0.051363 , 0.804956 , 0.716453 , 0.182932 , 10.721630 , -7.411869 , 2.280839 , 0.058443 , 0.601367 , 0.796808 , 0.764060 , 0.194082 , 9.301563 , -7.843182 , 2.168245 , 0.624622 , 0.184118 , 0.758873 , 0.710900 , 0.192112 , 9.385593 , -7.801434 , 1.887742 , 0.956694 , 0.233436 , 0.173803 , 0.714428 , 0.194803 , 0.836300 , -9.694149 , 1.227132 , -0.835597 , 0.025300 , 0.548723 , 0.503327 , 0.165011 , 7.087666 , -9.801174 , 2.811017 , -0.807581 , -0.160039 , 0.567583 , 0.676534 , 0.152114 , 6.986897 , -9.410503 , 2.792787 , -0.602405 , -0.034516 , 0.797418 , 0.676159 , 0.158647 , 6.722454 , -9.736881 , 2.594930 , -0.434553 , -0.168523 , 0.884701 , 0.671058 , 0.155047 , 10.099018 , -7.842327 , 1.983514 , -0.795099 , 0.292978 , 0.530961 , 0.749609 , 0.190999 , 8.786724 , -8.424656 , 2.155862 , 0.204443 , -0.212622 , 0.955473 , 0.704251 , 0.184690 , 8.044537 , -7.699535 , 2.017904 , -0.170751 , 0.870266 , 0.462020 , 0.691242 , 0.188925 , 8.435986 , -7.777508 , 1.855466 , 0.036317 , 0.897122 , 0.440230 , 0.696261 , 0.193366 , 8.238735 , -7.644718 , 1.549207 , -0.317850 , 0.861568 , 0.395764 , 0.691381 , 0.196472 , 10.492237 , -9.007938 , 3.019490 , -0.478195 , 0.002686 , 0.878231 , 0.758386 , 0.172580 , 6.896244 , -8.784168 , 1.864568 , -0.921720 , 0.385052 , -0.045930 , 0.664364 , 0.172403 , 6.843670 , -8.388180 , 2.677312 , -0.248268 , 0.856502 , 0.452498 , 0.674357 , 0.169432 , 8.348301 , -11.924198 , 1.024610 , 0.299417 , -0.846553 , 0.440046 , 0.699141 , 0.098986 , 6.189487 , -11.582287 , 2.173318 , 0.368572 , 0.208655 , 0.905850 , 0.649393 , 0.124180 , 6.302723 , -11.281475 , 2.011476 , -0.096103 , 0.214667 , 0.971923 , 0.653274 , 0.128579 , 10.596569 , -8.126125 , 2.603776 , -0.485916 , 0.765191 , 0.422285 , 0.760746 , 0.182825 , -16.968092 , -1.999043 , 2.405507 , 0.579760 , 0.416639 , 0.700156 , 0.061891 , 0.370650 , -16.763685 , -2.696819 , 2.194429 , 0.946013 , -0.264260 , 0.187597 , 0.067814 , 0.359126 , -17.135542 , -2.236851 , 2.551702 , 0.245186 , 0.248512 , 0.937071 , 0.058090 , 0.366187 , 6.777332 , -8.853207 , 1.518319 , -0.897000 , 0.286721 , 0.336344 , 0.660481 , 0.174780 , 8.626011 , -8.051579 , 2.192983 , -0.088504 , 0.278268 , 0.956389 , 0.699623 , 0.188742 , 6.699223 , -8.442944 , 2.403722 , -0.385754 , 0.847133 , -0.365368 , 0.670541 , 0.169312 , 6.509563 , -8.819447 , 2.278711 , -0.907743 , 0.280831 , -0.311624 , 0.666399 , 0.167886 , 6.538387 , -9.227314 , 2.545305 , -0.831477 , 0.000793 , 0.555498 , 0.668205 , 0.160901 , 6.424847 , -9.795063 , 2.469259 , -0.597827 , -0.211829 , 0.773095 , 0.665565 , 0.154339 , 7.829624 , -7.854191 , 1.556077 , -0.427503 , 0.902921 , 0.043855 , 0.682458 , 0.192109 , 7.471119 , -7.898464 , 1.184594 , -0.201666 , 0.804041 , 0.559282 , 0.675464 , 0.199099 , 9.666607 , -7.421505 , 0.572511 , 0.436445 , 0.545579 , 0.715415 , 0.732382 , 0.215583 , 6.967220 , -7.869541 , 1.008203 , -0.472335 , 0.326090 , 0.818842 , 0.665269 , 0.198410 , 6.184422 , -9.381016 , 1.106797 , -0.486312 , 0.492691 , 0.721580 , 0.641040 , 0.171435 , 5.577793 , -9.174496 , 0.907941 , -0.419416 , 0.605060 , 0.676717 , 0.627281 , 0.173361 , -17.880690 , -2.930279 , 2.850637 , -0.596576 , 0.291513 , 0.747703 , 0.048884 , 0.357974 , 8.696072 , -7.245556 , 1.263017 , -0.125919 , 0.870449 , 0.475814 , 0.703369 , 0.207230 , 8.158161 , -8.763103 , 2.405576 , 0.395550 , 0.100040 , 0.912961 , 0.696303 , 0.173651 , 9.633991 , -7.824207 , 1.019147 , 0.014130 , 0.642201 , 0.766381 , 0.732193 , 0.202255 , 4.970760 , -11.497334 , 1.964986 , -0.979003 , 0.185614 , 0.083926 , 0.626509 , 0.120766 , 5.338322 , -11.138912 , 2.294111 , -0.539750 , 0.218757 , 0.812860 , 0.633143 , 0.123264 , 6.550266 , -9.176075 , 1.381944 , -0.730766 , 0.531693 , 0.428053 , 0.653420 , 0.173637 , 6.064510 , -8.495876 , 1.022420 , -0.324778 , 0.231605 , 0.916959 , 0.645927 , 0.189870 , 6.402569 , -8.902088 , 1.030687 , -0.504593 , 0.239265 , 0.829493 , 0.648373 , 0.181657 , 6.544659 , -8.496922 , 0.958974 , -0.296396 , 0.436689 , 0.849361 , 0.653586 , 0.188714 , 5.463848 , -8.885113 , 0.350141 , -0.560411 , 0.689596 , 0.458632 , 0.620990 , 0.186426 , 6.181866 , -9.761097 , 2.190091 , -0.925352 , 0.088290 , 0.368664 , 0.659379 , 0.157058 , -14.366720 , 0.079037 , 0.289926 , 0.859706 , 0.480331 , -0.173528 , 0.153089 , 0.443875 , 8.900608 , -11.391644 , 1.378679 , 0.469344 , -0.811518 , 0.348003 , 0.713590 , 0.115667 , 9.467815 , -11.207294 , 1.416986 , -0.311563 , -0.785668 , 0.534410 , 0.723981 , 0.113804 , 5.414799 , -10.531170 , 1.363229 , -0.854335 , 0.513443 , -0.080355 , 0.626327 , 0.138127 , 5.248287 , -10.954884 , 1.300496 , -0.904538 , 0.385418 , -0.182226 , 0.622014 , 0.131796 , 5.863850 , -8.375782 , 0.816171 , -0.744011 , 0.288522 , 0.602649 , 0.638556 , 0.196231 , 8.923702 , -7.162045 , 1.040975 , 0.160070 , 0.957579 , 0.239509 , 0.707990 , 0.211258 , 11.065556 , -7.110142 , 1.379667 , -0.082339 , 0.994720 , 0.060732 , 0.765709 , 0.207683 , 6.714184 , -9.163952 , 1.775445 , -0.827967 , 0.556871 , -0.065554 , 0.659425 , 0.169157 , 6.498409 , -9.254864 , 2.128522 , -0.899319 , 0.417158 , -0.130955 , 0.660884 , 0.163541 , 8.538891 , -9.383167 , 2.292119 , 0.380779 , 0.682241 , 0.624073 , 0.703143 , 0.168529 , 10.207737 , -8.129238 , 2.132383 , -0.745842 , 0.088382 , 0.660207 , 0.751848 , 0.186109 , 9.241497 , -9.307178 , 2.008092 , 0.292367 , 0.551714 , 0.781091 , 0.717278 , 0.172061 , 8.529003 , -11.695782 , 1.383405 , 0.620411 , -0.751030 , 0.225776 , 0.703787 , 0.110713 , 5.823315 , -8.751621 , 0.645047 , -0.865932 , 0.195685 , 0.460250 , 0.630736 , 0.191021 , 5.788013 , -8.535900 , 0.361284 , -0.929502 , 0.197150 , 0.311624 , 0.627280 , 0.197230 , 5.580715 , -8.669094 , 0.041513 , -0.695395 , 0.613819 , 0.373669 , 0.619852 , 0.195602 , 10.964275 , -7.151424 , 0.988214 , -0.241371 , 0.970153 , -0.022431 , 0.762941 , 0.213927 , 8.931141 , -7.772198 , 2.219274 , -0.077212 , 0.493789 , 0.866115 , 0.703985 , 0.191969 , 9.013241 , -11.569332 , 0.949590 , 0.100986 , -0.622974 , 0.775658 , 0.715101 , 0.106051 , 6.717770 , -10.660435 , 2.319875 , -0.743797 , 0.039583 , 0.667196 , 0.663983 , 0.142390 , 6.521389 , -8.543880 , 2.504441 , -0.859401 , 0.505173 , 0.078677 , 0.670956 , 0.166379 , 5.896687 , -10.431454 , 1.788717 , -0.102451 , 0.484573 , 0.868709 , 0.643871 , 0.142144 , 6.100796 , -10.791065 , 1.917928 , 0.157689 , 0.441969 , 0.883023 , 0.647900 , 0.133957 , 8.550663 , -11.294514 , 2.672876 , 0.455061 , -0.853328 , 0.254402 , 0.698971 , 0.131207 , 7.041912 , -10.130642 , 2.615121 , -0.751366 , -0.149266 , 0.642720 , 0.668898 , 0.149300 , 7.445797 , -10.059811 , 3.779744 , -0.844020 , -0.135563 , 0.518845 , 0.684051 , 0.150650 , 5.362080 , -10.730656 , 2.219079 , -0.477157 , 0.575213 , 0.664388 , 0.633918 , 0.129038 , 6.437840 , -10.987408 , 2.121812 , -0.630207 , 0.138890 , 0.763848 , 0.657969 , 0.135229 , 7.868832 , -7.708920 , 0.844922 , -0.152226 , 0.927641 , 0.341014 , 0.686975 , 0.210793 , 5.364788 , -10.558971 , 1.721734 , -0.732261 , 0.675832 , 0.083499 , 0.630322 , 0.133425 , 5.636211 , -10.329044 , 1.648965 , -0.469100 , 0.800439 , 0.373089 , 0.634133 , 0.140626 , 9.837887 , -8.390682 , 1.893602 , -0.743248 , 0.078066 , 0.664418 , 0.744270 , 0.186459 , 10.107235 , -8.509609 , 2.028230 , -0.695547 , 0.118137 , 0.708670 , 0.747674 , 0.182993 , 5.908390 , -9.006062 , 0.840532 , -0.458144 , 0.353587 , 0.815485 , 0.636126 , 0.184268 , 6.314419 , -9.526318 , 1.709302 , -0.817255 , 0.563524 , 0.120426 , 0.651067 , 0.162777 , 6.114407 , -9.903309 , 1.587594 , -0.802667 , 0.553545 , 0.222022 , 0.644791 , 0.156078 , 7.230907 , -8.342915 , 1.884782 , -0.494491 , 0.757195 , 0.426740 , 0.674501 , 0.177931 , 9.021801 , -8.110996 , 2.235109 , 0.247688 , -0.177465 , 0.952422 , 0.707202 , 0.189517 , 5.033970 , -11.037151 , 1.911195 , -0.923673 , 0.334971 , 0.185980 , 0.627097 , 0.126714 , 7.342297 , -7.463520 , 0.932828 , 0.032594 , 0.603168 , 0.796899 , 0.670615 , 0.206390 , 9.005909 , -7.244068 , 1.473737 , 0.084445 , 0.856258 , 0.509568 , 0.709255 , 0.205732 , 10.020535 , -9.070492 , 2.675130 , -0.894192 , 0.122288 , 0.430586 , 0.746595 , 0.173940 , 9.376804 , -8.576138 , 1.661153 , 0.666066 , 0.057711 , 0.743614 , 0.720601 , 0.187465 , 9.227367 , -8.359692 , 1.935312 , 0.745598 , -0.278268 , 0.605487 , 0.714357 , 0.189156 , 5.609554 , -10.538303 , 2.033483 , -0.014618 , 0.806818 , 0.590594 , 0.638452 , 0.134422 , 10.477032 , -7.304249 , 2.137639 , -0.365734 , 0.854823 , 0.368023 , 0.758642 , 0.195656 , 9.966496 , -8.806499 , 2.000394 , -0.785485 , 0.295969 , 0.543474 , 0.743277 , 0.179065 , 10.220737 , -7.592045 , 0.815175 , -0.470656 , 0.882290 , 0.002319 , 0.749049 , 0.212434 , 7.845104 , -7.831951 , 1.126138 , -0.339152 , 0.877010 , 0.340312 , 0.685148 , 0.201632 , 9.257061 , -7.365330 , 1.303598 , 0.751457 , 0.620045 , 0.225410 , 0.716086 , 0.206081 , 7.610912 , -7.628056 , 0.945485 , 0.321787 , 0.664235 , 0.674673 , 0.679052 , 0.206516 , 1.790310 , -10.510632 , -0.586470 , -0.044282 , 0.548906 , 0.834681 , 0.537688 , 0.170848 , 9.411335 , -7.966084 , 1.043668 , 0.562609 , 0.241188 , 0.790735 , 0.726470 , 0.201628 , 5.735813 , -8.126827 , 0.458844 , -0.842555 , 0.317423 , 0.435102 , 0.633244 , 0.204417 , 4.133823 , -8.944172 , -0.616858 , -0.080020 , 0.954558 , 0.287057 , 0.588267 , 0.198319 , 8.136250 , -7.372997 , 0.608339 , -0.771081 , 0.635487 , 0.039583 , 0.690388 , 0.217231 , -19.610884 , -3.093861 , 1.343450 , -0.803461 , -0.499008 , 0.324656 , 0.017881 , 0.349855 , -6.289288 , 17.166143 , -2.881373 , -0.202338 , -0.105594 , 0.973601 , 0.338088 , 0.931244 , -6.420635 , 17.360071 , -2.725676 , -0.017243 , -0.771599 , 0.635853 , 0.336763 , 0.936292 , -6.661716 , 17.083794 , -2.873355 , 0.031159 , 0.010071 , 0.999451 , 0.333391 , 0.931123 , -8.081259 , 18.643606 , -0.774497 , 0.032685 , 0.140294 , 0.989563 , 0.294388 , 0.984278 , -7.840649 , 18.257896 , -0.872374 , 0.076144 , -0.529374 , 0.844935 , 0.298566 , 0.976789 , -7.652363 , 18.575958 , -0.779190 , 0.172063 , -0.006317 , 0.985046 , 0.302479 , 0.983714 , -14.431753 , 18.002611 , -0.741095 , -0.267220 , -0.100192 , 0.958403 , 0.145434 , 0.971168 , -14.579763 , 18.547977 , -0.842112 , -0.062136 , 0.251198 , 0.965911 , 0.141518 , 0.985547 , -14.831121 , 18.140482 , -0.782771 , -0.060030 , -0.122349 , 0.990661 , 0.134289 , 0.973975 , -14.639486 , 17.771364 , -0.916529 , -0.314890 , -0.486679 , 0.814814 , 0.139220 , 0.963254 , -15.003042 , 17.848143 , -0.948092 , -0.174444 , -0.600726 , 0.780175 , 0.128890 , 0.964703 , -13.825567 , 18.233036 , -0.648539 , -0.100955 , 0.314310 , 0.943907 , 0.159253 , 0.980384 , -13.865484 , 17.955906 , -0.587840 , -0.215522 , 0.092776 , 0.972045 , 0.157376 , 0.971330 , -13.066717 , 18.008854 , -0.499186 , -0.067110 , 0.304910 , 0.950011 , 0.172778 , 0.975644 , -12.526060 , 18.238346 , -0.576701 , -0.019562 , 0.420484 , 0.907071 , 0.186936 , 0.978399 , -12.578276 , 17.887232 , -0.442839 , -0.001679 , 0.182165 , 0.983245 , 0.184737 , 0.971460 , -11.740011 , 18.157619 , -0.563465 , 0.103977 , 0.252297 , 0.962035 , 0.203398 , 0.974415 , -12.351896 , 17.605703 , -0.427924 , 0.073611 , -0.331675 , 0.940489 , 0.190484 , 0.965283 , -12.117834 , 17.326260 , -0.845706 , 0.125584 , -0.909391 , 0.396496 , 0.193933 , 0.958679 , -11.911261 , 17.542044 , -0.493766 , 0.209937 , -0.563005 , 0.799310 , 0.197472 , 0.963810 , -15.288610 , 18.605965 , -0.884324 , -0.020234 , 0.229408 , 0.973113 , 0.120303 , 0.985733 , -15.532286 , 18.089968 , -0.776915 , -0.011475 , -0.357860 , 0.933683 , 0.114671 , 0.970869 , -15.739271 , 17.251453 , -1.792273 , -0.262001 , -0.180609 , 0.947996 , 0.109189 , 0.943061 , -15.312628 , 17.432653 , -1.565375 , -0.380413 , -0.524430 , 0.761711 , 0.118467 , 0.952845 , -15.845053 , 17.711531 , -1.582667 , -0.232551 , -0.761895 , 0.604480 , 0.105206 , 0.952924 , -14.284826 , 17.661703 , -0.761359 , -0.384777 , -0.455611 , 0.802698 , 0.150489 , 0.961431 , -13.899115 , 18.614609 , -0.819503 , -0.064882 , 0.388470 , 0.919156 , 0.156793 , 0.987912 , -13.451887 , 18.451664 , -0.722056 , -0.021210 , 0.413282 , 0.910337 , 0.165528 , 0.985010 , -13.150686 , 18.680271 , -0.842616 , 0.001831 , 0.407819 , 0.913022 , 0.172028 , 0.992146 , -15.455847 , 17.046707 , -1.727767 , -0.230567 , -0.162023 , 0.959441 , 0.118087 , 0.940658 , -15.102377 , 17.182959 , -1.594111 , -0.287301 , -0.468184 , 0.835597 , 0.126579 , 0.946811 , -15.306608 , 17.883701 , -0.990092 , -0.181524 , -0.749229 , 0.636891 , 0.120602 , 0.965347 , -15.488333 , 17.807320 , -1.191012 , -0.237220 , -0.821833 , 0.517930 , 0.113049 , 0.960943 , -16.102316 , 18.282686 , -0.836398 , -0.116977 , 0.114353 , 0.986511 , 0.099313 , 0.978717 , -16.460363 , 18.112810 , -0.860720 , -0.164830 , -0.310160 , 0.936247 , 0.091846 , 0.975688 , -14.684820 , 9.063251 , -4.329188 , -0.151280 , 0.773949 , 0.614887 , 0.131991 , 0.720521 , -15.194899 , 18.107525 , -0.778123 , -0.019807 , -0.240120 , 0.970519 , 0.123522 , 0.972976 , -5.410854 , 1.394573 , -0.697406 , -0.207068 , 0.792566 , 0.573504 , 0.356429 , 0.494714 , -4.707073 , 1.384571 , -0.706019 , 0.088443 , 0.664937 , 0.741600 , 0.374731 , 0.495606 , -14.963697 , 17.389286 , -1.318858 , -0.354076 , -0.635609 , 0.685995 , 0.133630 , 0.953429 , 4.593708 , -7.891964 , -1.002936 , -0.405072 , 0.081698 , 0.910611 , 0.596514 , 0.217316 , 10.959110 , -6.977634 , -1.002726 , -0.108798 , 0.782983 , 0.612415 , 0.757254 , 0.248356 , 4.371998 , 1.571659 , -1.069506 , 0.187658 , 0.148320 , 0.970946 , 0.599683 , 0.498960 , 4.124638 , 1.639820 , -0.996978 , 0.298074 , 0.313669 , 0.901517 , 0.594331 , 0.498985 , 7.982220 , -6.944622 , -0.716777 , -0.144780 , 0.985351 , -0.089846 , 0.686126 , 0.239617 , 6.073788 , 0.343807 , -0.127604 , -0.195441 , 0.972228 , 0.128697 , 0.639524 , 0.459907 , 6.353931 , 0.286686 , 0.432546 , -0.168737 , 0.907041 , 0.385693 , 0.644498 , 0.453047 , -4.311527 , 1.968868 , -1.031619 , -0.020997 , 0.222510 , 0.974700 , 0.379067 , 0.510783 , -4.035435 , 1.665577 , -0.949069 , 0.086001 , 0.232215 , 0.968841 , 0.388340 , 0.503775 , 7.940105 , -6.946659 , -0.963839 , -0.053652 , 0.685720 , 0.725852 , 0.687380 , 0.245827 , 7.304974 , -3.862209 , 0.566389 , -0.733970 , -0.642476 , 0.220191 , 0.677942 , 0.338519 , 10.622639 , 1.264408 , -0.787459 , 0.278512 , 0.600971 , 0.749168 , 0.746547 , 0.489091 , 2.389828 , 1.290714 , -0.713145 , -0.649159 , 0.533189 , 0.542436 , 0.537729 , 0.487314 , -0.012867 , 0.088398 , -0.233508 , 0.243782 , 0.908353 , 0.339702 , 0.481484 , 0.465677 , -8.600378 , -4.188091 , 0.118348 , -0.546861 , -0.826075 , 0.135929 , 0.288917 , 0.318662 , -6.954296 , -4.572674 , 0.647268 , 0.032044 , -0.999359 , 0.014130 , 0.324120 , 0.323279 , -7.743748 , -4.602947 , -0.531901 , -0.044923 , -0.960692 , 0.273934 , 0.304978 , 0.302668 , -10.334356 , 1.231792 , -1.043914 , -0.114872 , 0.269784 , 0.956023 , 0.243238 , 0.491845 , -6.924564 , 1.024235 , -0.986857 , -0.189032 , 0.323740 , 0.927061 , 0.323357 , 0.487638 , -6.901844 , 1.269024 , -1.055577 , -0.060762 , 0.211921 , 0.975372 , 0.324996 , 0.495398 , -17.276129 , 0.776958 , -0.644049 , 0.370037 , 0.707297 , 0.602283 , 0.079836 , 0.471406 , -7.792591 , 0.569843 , -0.780829 , 0.265145 , 0.528092 , 0.806696 , 0.305309 , 0.478624 , 0.450649 , -0.034191 , -0.377078 , 0.216529 , 0.842128 , 0.493881 , 0.493749 , 0.464186 , -0.126995 , 0.313786 , -0.507983 , -0.034700 , 0.789453 , 0.612812 , 0.477882 , 0.473977 , -18.556715 , -9.504154 , -0.901320 , -0.368358 , 0.607471 , 0.703726 , 0.033163 , 0.169998 , -8.791979 , -8.653927 , -0.802066 , -0.582263 , 0.375347 , 0.721122 , 0.265711 , 0.207725 , 6.849361 , -4.062862 , -0.259318 , -0.486618 , -0.771752 , 0.409314 , 0.662383 , 0.320171 , -17.207380 , 18.116192 , -0.960944 , 0.137150 , -0.303293 , 0.942961 , 0.080320 , 0.966489 , -17.398115 , 17.754259 , -1.254351 , 0.371380 , -0.766015 , 0.524674 , 0.068499 , 0.957757 , 9.353268 , -6.972347 , 0.090902 , 0.211280 , 0.915433 , 0.342509 , 0.718407 , 0.228312 , 6.930279 , -7.151356 , -0.608691 , -0.030580 , 0.994140 , 0.103610 , 0.664994 , 0.234495 , 8.827312 , 1.026783 , 0.557531 , -0.226051 , 0.955657 , 0.188665 , 0.709135 , 0.460271 , -15.869200 , 0.786747 , -1.037928 , -0.032197 , 0.337992 , 0.940580 , 0.109084 , 0.475310 , 10.196728 , 1.527279 , -0.917041 , 0.066866 , 0.574175 , 0.815973 , 0.739006 , 0.496184 , 2.824268 , 1.672375 , -0.642375 , -0.356853 , 0.700888 , 0.617542 , 0.556315 , 0.495428 , 5.093685 , 0.782475 , -0.956912 , -0.097873 , 0.226783 , 0.968993 , 0.615916 , 0.477606 , 4.352543 , 1.808399 , -1.071409 , 0.072024 , -0.046419 , 0.996307 , 0.599635 , 0.506431 , 2.296505 , 1.823734 , -1.034869 , -0.250343 , 0.234077 , 0.939421 , 0.538014 , 0.504085 , 9.010082 , 1.652348 , -1.012477 , 0.019135 , 0.669790 , 0.742302 , 0.712082 , 0.497309 , 9.753841 , 1.306889 , -0.475688 , 0.163640 , 0.910733 , 0.379131 , 0.729840 , 0.480760 , 10.255482 , 1.294903 , -0.532634 , 0.235115 , 0.828852 , 0.507645 , 0.737710 , 0.484683 , 9.214870 , -6.939358 , -0.954288 , 0.080355 , 0.757714 , 0.647572 , 0.716136 , 0.246621 , 8.892910 , -6.898388 , -0.549208 , -0.002503 , 0.986877 , -0.161351 , 0.707925 , 0.239433 , 9.063869 , -6.851795 , -0.281794 , 0.077303 , 0.996124 , -0.041414 , 0.711436 , 0.231939 , 9.425411 , -6.864048 , -0.217105 , 0.132847 , 0.983490 , 0.122654 , 0.723791 , 0.233511 , 9.585293 , -6.968159 , -0.660136 , 0.124973 , 0.975585 , -0.180425 , 0.725093 , 0.241222 , 9.817646 , -7.097492 , -1.068022 , 0.075198 , 0.736045 , 0.672689 , 0.729920 , 0.247726 , 10.316433 , -7.058483 , -1.032752 , -0.109928 , 0.746849 , 0.655812 , 0.739811 , 0.247320 , 1.644161 , 1.844929 , -1.059844 , -0.030702 , -0.071261 , 0.996979 , 0.522371 , 0.507056 , -9.244169 , 1.267254 , -1.070414 , 0.170537 , 0.300394 , 0.938414 , 0.271623 , 0.498464 , -5.844296 , 1.342274 , -0.991450 , -0.260414 , 0.503006 , 0.824091 , 0.347446 , 0.494376 , -5.457233 , 1.087650 , -0.281718 , -0.332591 , 0.672506 , 0.661122 , 0.355777 , 0.485326 , 10.875500 , -4.255917 , -1.048747 , 0.285623 , -0.867122 , 0.408032 , 0.756541 , 0.296327 , 10.559612 , -4.330532 , -1.034524 , 0.008057 , -0.761437 , 0.648152 , 0.749962 , 0.296580 , 10.239300 , -4.287411 , -1.048949 , -0.033967 , -0.744407 , 0.666829 , 0.741811 , 0.296392 , 9.991024 , -4.338520 , -1.033492 , 0.191412 , -0.941893 , 0.275979 , 0.733748 , 0.298356 , 7.455677 , -4.360218 , -0.146998 , -0.161077 , -0.964660 , 0.208472 , 0.679835 , 0.315383 , 7.668346 , -4.232052 , -0.660685 , 0.135685 , -0.984497 , -0.111026 , 0.682461 , 0.305773 , 7.192173 , -4.375332 , -0.542197 , -0.086398 , -0.975677 , 0.201361 , 0.670085 , 0.311317 , 5.891933 , -3.392338 , -1.195217 , -0.557970 , -0.332804 , 0.760186 , 0.628489 , 0.325062 , 5.584942 , -3.291744 , -1.289309 , -0.144230 , -0.263466 , 0.953795 , 0.619716 , 0.326639 , 2.684238 , -1.811741 , -0.673194 , 0.220496 , -0.857814 , 0.464187 , 0.549498 , 0.355662 , 2.618481 , -1.632702 , -0.331206 , 0.145390 , -0.884854 , 0.442549 , 0.548659 , 0.364868 , 2.198849 , -1.960598 , -0.692824 , 0.307077 , -0.819819 , 0.483291 , 0.539699 , 0.353285 , -2.234509 , -3.798519 , -0.862794 , 0.639058 , -0.753349 , 0.155004 , 0.439569 , 0.315901 , -2.040867 , -4.112698 , -1.401255 , 0.259255 , -0.200751 , 0.944700 , 0.447225 , 0.304760 , -4.667156 , -4.357471 , -1.155520 , 0.110202 , -0.761956 , 0.638142 , 0.383627 , 0.297048 , -5.182919 , -4.461903 , -1.021746 , 0.237037 , -0.773217 , 0.588122 , 0.371823 , 0.296137 , -4.990841 , -4.893024 , -1.081227 , 0.119449 , 0.019684 , 0.992615 , 0.375233 , 0.286431 , -5.863033 , -4.648083 , -0.993376 , 0.062471 , -0.672781 , 0.737175 , 0.352089 , 0.293345 , -6.161983 , -4.585117 , -0.836905 , 0.071932 , -0.935148 , 0.346812 , 0.343818 , 0.297225 , -7.151379 , -4.616459 , -1.014567 , 0.175634 , -0.684652 , 0.707358 , 0.317205 , 0.294496 , -8.073988 , -4.953411 , -0.981837 , 0.111942 , -0.252358 , 0.961119 , 0.295218 , 0.285941 , -9.942503 , -3.414478 , -1.181628 , -0.036195 , -0.037935 , 0.998596 , 0.238329 , 0.316401 , -9.555456 , -3.323673 , -1.144007 , -0.480392 , -0.300699 , 0.823847 , 0.244772 , 0.318690 , -9.535139 , -4.162296 , -1.093760 , -0.278451 , 0.092593 , 0.955962 , 0.250901 , 0.304284 , -10.758635 , -2.710888 , -1.225417 , -0.193640 , -0.227027 , 0.954436 , 0.223066 , 0.331013 , -11.616560 , -2.312115 , -1.128287 , -0.063845 , -0.587573 , 0.806604 , 0.207701 , 0.335760 , -14.892073 , -3.702099 , -1.143504 , 0.214698 , -0.511765 , 0.831843 , 0.139788 , 0.320931 , -17.000517 , -5.302837 , -0.692080 , 0.716849 , -0.486923 , 0.498978 , 0.079302 , 0.294110 , -15.428305 , -4.024181 , -1.236476 , 0.220008 , -0.263497 , 0.939207 , 0.124351 , 0.316441 , -8.861353 , -8.183430 , -0.950600 , 0.005890 , 0.091433 , 0.995788 , 0.266376 , 0.215987 , -9.704588 , -3.638554 , -1.191130 , -0.136052 , 0.121311 , 0.983215 , 0.243599 , 0.314625 , -7.421162 , -6.914562 , -0.912734 , -0.050844 , 0.705893 , 0.706473 , 0.312246 , 0.238438 , -4.933460 , -7.253567 , -1.030120 , 0.229774 , 0.626637 , 0.744621 , 0.374868 , 0.240988 , -1.344341 , -7.596325 , -1.100657 , 0.166112 , 0.403424 , 0.899777 , 0.458983 , 0.233210 , 2.959324 , -9.012905 , -0.545192 , -0.299814 , 0.866451 , 0.399152 , 0.563877 , 0.194284 , 2.749935 , -8.803799 , -0.791297 , -0.255684 , 0.591968 , 0.764306 , 0.560142 , 0.202244 , -11.057852 , -9.194836 , -0.881762 , 0.372417 , 0.593219 , 0.713675 , 0.224475 , 0.198501 , -10.876135 , -8.979565 , -1.045348 , 0.198340 , 0.089602 , 0.976012 , 0.227830 , 0.203924 , -12.873167 , -8.507229 , -0.914370 , -0.216193 , 0.482894 , 0.848537 , 0.177380 , 0.202941 , -13.833754 , -9.336208 , -0.799563 , -0.253700 , 0.520005 , 0.815577 , 0.155194 , 0.186493 , -16.962191 , -8.152531 , -0.994984 , 0.021882 , 0.077639 , 0.996734 , 0.083223 , 0.207753 , -18.968954 , -9.249004 , -1.070040 , -0.015748 , 0.121158 , 0.992492 , 0.028558 , 0.175971 , -19.288885 , -9.576305 , -1.043322 , -0.214515 , 0.323374 , 0.921598 , 0.023401 , 0.164231 , -19.481085 , -10.446438 , -0.710845 , -0.208228 , 0.914640 , 0.346446 , 0.017242 , 0.148018 , -17.822088 , 0.813328 , -0.561229 , 0.338725 , 0.728660 , 0.595203 , 0.065221 , 0.469716 , -18.673071 , 1.447796 , -0.164435 , 0.424055 , 0.899564 , 0.104495 , 0.041157 , 0.472247 , -18.043577 , 1.209255 , -0.772490 , 0.406720 , 0.581347 , 0.704672 , 0.059771 , 0.478612 , -18.245558 , 1.042240 , -0.434001 , 0.652760 , 0.629353 , 0.421613 , 0.053525 , 0.468790 , -16.059130 , 1.152782 , -1.107392 , 0.012146 , 0.143223 , 0.989593 , 0.103076 , 0.485124 , -11.468977 , 1.490688 , -1.102275 , -0.018006 , 0.046693 , 0.998718 , 0.213309 , 0.499273 , -7.412525 , 0.363834 , -0.795298 , 0.070803 , 0.551958 , 0.830836 , 0.315276 , 0.477878 , -5.490391 , 1.617764 , -1.032079 , -0.177374 , 0.425214 , 0.887509 , 0.355139 , 0.501819 , -3.394947 , 1.554264 , -0.948619 , -0.087008 , 0.534898 , 0.840419 , 0.401822 , 0.501242 , -16.369795 , 16.699568 , -1.907790 , -0.191351 , -0.181616 , 0.964538 , 0.094413 , 0.928952 , -1.187450 , 0.992374 , -0.933116 , 0.106723 , 0.463820 , 0.879452 , 0.455909 , 0.487987 , -2.503788 , 0.738804 , -0.336467 , 0.447157 , 0.893613 , -0.038484 , 0.422690 , 0.477713 , -0.700199 , 0.795597 , -0.853862 , 0.068606 , 0.391644 , 0.917539 , 0.467531 , 0.484966 , -13.915319 , 17.543629 , -0.610445 , -0.338023 , -0.484024 , 0.807092 , 0.159556 , 0.962079 , -13.627264 , 17.274395 , -0.923178 , -0.196661 , -0.903439 , 0.380902 , 0.162386 , 0.953804 , -13.362478 , 17.349560 , -0.670604 , -0.135960 , -0.786248 , 0.602741 , 0.168858 , 0.961291 , -16.373571 , 18.622671 , -0.957751 , -0.079470 , 0.167974 , 0.982574 , 0.090988 , 0.984962 , -2.023029 , 9.583555 , -3.289126 , -0.071871 , 0.592395 , 0.802393 , 0.440503 , 0.732139 , -2.639347 , 9.821476 , -3.519511 , -0.190680 , 0.508194 , 0.839839 , 0.426220 , 0.738589 , -3.014530 , 9.631657 , -3.436808 , -0.088687 , 0.686636 , 0.721549 , 0.418249 , 0.732618 , 2.616726 , 9.937124 , -1.664805 , -0.552721 , 0.764428 , 0.331828 , 0.546200 , 0.740645 , 2.745289 , 9.890974 , -1.347911 , -0.664449 , 0.557634 , 0.497482 , 0.553470 , 0.734469 , 2.932430 , 10.337803 , -1.262492 , -0.902921 , 0.244667 , 0.353313 , 0.560663 , 0.749684 , -17.932867 , 9.876047 , -4.120294 , 0.519669 , -0.402966 , 0.753349 , 0.071483 , 0.744982 , -18.175016 , 10.115477 , -3.861850 , 0.564257 , -0.269021 , 0.780480 , 0.064574 , 0.749904 , -18.232946 , 9.676884 , -3.962382 , 0.812769 , -0.128574 , 0.568163 , 0.064806 , 0.740883 , -10.605062 , 12.443241 , -4.559047 , -0.201209 , -0.185827 , 0.961730 , 0.230805 , 0.805554 , -10.310064 , 12.488773 , -4.476207 , -0.272225 , -0.265999 , 0.924711 , 0.236997 , 0.807343 , -10.570929 , 12.931004 , -4.476176 , -0.383068 , -0.073611 , 0.920743 , 0.230866 , 0.817989 , -1.103504 , 14.032276 , -3.198333 , -0.096713 , -0.016022 , 0.995178 , 0.459670 , 0.848312 , -1.421429 , 14.348335 , -3.190201 , -0.020203 , -0.156133 , 0.987518 , 0.453923 , 0.857176 , -2.071247 , 13.858532 , -3.306112 , -0.111576 , -0.125736 , 0.985748 , 0.438285 , 0.844337 , 1.589352 , 16.230412 , -2.107890 , 0.030488 , -0.513688 , 0.857418 , 0.518299 , 0.905315 , 1.825802 , 16.438908 , -2.047282 , 0.346660 , -0.371532 , 0.861263 , 0.524554 , 0.908503 , 1.397320 , 16.766483 , -1.816447 , 0.054018 , -0.395001 , 0.917081 , 0.517116 , 0.920005 , -2.584949 , 16.983793 , -1.517569 , -0.068270 , -0.783898 , 0.617115 , 0.425742 , 0.941055 , -2.870457 , 16.801289 , -1.780417 , -0.172552 , -0.697195 , 0.695761 , 0.418086 , 0.933280 , -2.262882 , 16.614567 , -1.892863 , 0.012452 , -0.676290 , 0.736503 , 0.432808 , 0.928028 , -1.688419 , 17.645084 , -1.007731 , 0.224952 , -0.644673 , 0.730583 , 0.448895 , 0.961713 , -1.839085 , 18.021841 , -0.674823 , 0.151158 , -0.267159 , 0.951689 , 0.446393 , 0.972675 , -18.159231 , 14.918961 , -3.319918 , 0.114689 , -0.217994 , 0.969176 , 0.064195 , 0.866815 , -18.086821 , 15.285877 , -3.110820 , 0.088076 , -0.674184 , 0.733268 , 0.064340 , 0.877179 , -18.561819 , 15.104984 , -3.151347 , 0.208289 , -0.575457 , 0.790826 , 0.054493 , 0.871177 , -11.976851 , 9.473478 , -4.156899 , 0.197394 , 0.469558 , 0.860530 , 0.199108 , 0.729413 , -12.210295 , 9.229696 , -3.935555 , 0.141331 , 0.692099 , 0.707785 , 0.193784 , 0.722301 , -14.416052 , 11.132359 , -4.103786 , 0.047243 , -0.153966 , 0.986938 , 0.140394 , 0.769865 , -15.574850 , 11.997532 , -3.891732 , 0.044557 , -0.111362 , 0.992767 , 0.117814 , 0.790922 , -16.119879 , 11.508488 , -3.941630 , 0.085177 , -0.183813 , 0.979247 , 0.105318 , 0.780538 , -17.615385 , 9.012922 , -4.673154 , 0.296152 , 0.365429 , 0.882443 , 0.083520 , 0.725732 , -17.897276 , 9.176306 , -4.530705 , 0.555864 , -0.072695 , 0.828059 , 0.077448 , 0.731135 , -17.878630 , 8.852652 , -4.379754 , 0.226539 , 0.750389 , 0.620930 , 0.078211 , 0.723294 , -17.314520 , 8.675085 , -3.813042 , -0.151524 , 0.952574 , 0.263802 , 0.086596 , 0.710184 , -17.691412 , 8.677738 , -3.967448 , -0.026978 , 0.949705 , 0.311869 , 0.079487 , 0.716316 , -17.625082 , 8.607090 , -3.708598 , 0.018983 , 0.987213 , 0.158116 , 0.079885 , 0.709755 , -3.503582 , 17.993793 , -0.673312 , -0.601337 , -0.302774 , 0.739372 , 0.409564 , 0.972129 , -3.349720 , 18.389698 , -0.629439 , -0.159398 , 0.289224 , 0.943876 , 0.412519 , 0.980297 , -3.799473 , 18.301052 , -0.735198 , -0.469527 , -0.188086 , 0.862636 , 0.403916 , 0.976530 , -6.421871 , 16.964640 , -2.797545 , -0.084078 , 0.337535 , 0.937529 , 0.337246 , 0.925063 , -5.919682 , 17.193493 , -2.738642 , -0.232582 , -0.296121 , 0.926389 , 0.346380 , 0.932278 , -6.090946 , 17.476871 , -2.488078 , -0.053102 , -0.846400 , 0.529862 , 0.343141 , 0.942405 , -6.804356 , 17.324020 , -2.759982 , 0.052705 , -0.674886 , 0.735984 , 0.328395 , 0.936954 , -6.848064 , 18.025572 , -1.224517 , -0.005799 , -0.780053 , 0.625660 , 0.323272 , 0.971121 , -7.145206 , 17.820805 , -1.547648 , 0.047914 , -0.876919 , 0.478195 , 0.318447 , 0.964232 , -6.503048 , 17.971745 , -1.371501 , 0.047334 , -0.865139 , 0.499252 , 0.330558 , 0.967743 , -0.509014 , 15.128834 , -3.105113 , 0.047792 , -0.253883 , 0.966033 , 0.472428 , 0.876265 , -0.779568 , 14.594913 , -3.161929 , -0.016572 , -0.074190 , 0.997101 , 0.466578 , 0.863390 , 0.043720 , 14.976917 , -3.124820 , -0.144200 , -0.087588 , 0.985656 , 0.483633 , 0.871668 , -14.818853 , 9.259586 , -4.509356 , -0.150700 , 0.406232 , 0.901242 , 0.129187 , 0.727383 , -13.501036 , 16.996380 , -1.696261 , -0.079012 , -0.785913 , 0.613239 , 0.164660 , 0.936946 , -13.511465 , 17.081501 , -1.551554 , -0.136235 , -0.893643 , 0.427534 , 0.164215 , 0.943521 , -15.391607 , 8.509647 , -1.977214 , -0.071688 , 0.942015 , 0.327769 , 0.119668 , 0.676995 , -16.366079 , 12.046595 , -3.848131 , 0.092349 , -0.077548 , 0.992676 , 0.101228 , 0.792702 , -17.135206 , 11.937937 , -3.750847 , 0.173650 , -0.036592 , 0.984100 , 0.084785 , 0.791741 , -1.658207 , 17.162663 , -1.434245 , 0.141881 , -0.675741 , 0.723319 , 0.448852 , 0.946063 , -0.558964 , 17.051823 , -1.752604 , 0.137730 , -0.613636 , 0.777459 , 0.472463 , 0.937089 , -9.699553 , 15.180744 , -3.672919 , -0.135228 , -0.333232 , 0.933073 , 0.251949 , 0.875380 , -10.331419 , 16.307560 , -3.374324 , 0.017548 , -0.334697 , 0.942137 , 0.239637 , 0.904188 , -10.329390 , 15.567509 , -3.590174 , -0.031953 , -0.329173 , 0.943693 , 0.241888 , 0.887701 , -0.539188 , 15.461857 , -2.965800 , 0.060549 , -0.474563 , 0.878109 , 0.471472 , 0.888284 , -14.225470 , 8.848209 , -3.282878 , -0.019776 , 0.981842 , 0.188604 , 0.140480 , 0.702694 , -13.422583 , 8.739780 , -2.757174 , -0.016358 , 0.970489 , 0.240516 , 0.165768 , 0.695862 , -15.799719 , 9.197315 , -4.594970 , -0.056001 , 0.401196 , 0.914274 , 0.111115 , 0.724808 , -15.281469 , 9.440548 , -4.582963 , -0.071810 , 0.057070 , 0.995758 , 0.120514 , 0.730954 , -13.090994 , 16.853428 , -1.754802 , -0.074831 , -0.811579 , 0.579394 , 0.173643 , 0.934616 , -18.238295 , 16.418434 , -1.978106 , 0.425123 , -0.500992 , 0.753838 , 0.055026 , 0.918467 , -9.669928 , 9.118778 , -4.045695 , -0.016938 , 0.729118 , 0.684133 , 0.254332 , 0.719471 , -10.061773 , 9.359699 , -4.348765 , -0.027436 , 0.567766 , 0.822687 , 0.244921 , 0.726408 , -9.957571 , 9.031195 , -3.950761 , -0.020203 , 0.767418 , 0.640767 , 0.246602 , 0.717712 , -11.495779 , 17.810406 , -0.570742 , 0.324625 , -0.256508 , 0.910367 , 0.204806 , 0.966858 , -11.944609 , 17.815739 , -0.464381 , 0.141087 , 0.075320 , 0.987121 , 0.196658 , 0.968467 , -18.280340 , 11.573734 , -3.465449 , 0.284738 , -0.024018 , 0.958281 , 0.063362 , 0.785183 , -17.405005 , 12.437244 , -3.709193 , 0.203070 , 0.041993 , 0.978240 , 0.079477 , 0.805861 , -18.598761 , 12.628475 , -3.402842 , 0.220161 , -0.043428 , 0.974487 , 0.053764 , 0.811275 , 2.897053 , 12.935001 , -2.559367 , -0.186468 , 0.220038 , 0.957488 , 0.546433 , 0.827456 , 2.767002 , 13.327641 , -2.658351 , -0.055574 , 0.307871 , 0.949767 , 0.542545 , 0.834689 , 2.438267 , 13.211414 , -2.592463 , 0.138218 , 0.195044 , 0.970977 , 0.536259 , 0.833459 , -7.561283 , 8.304874 , -2.119181 , -0.251137 , 0.740806 , 0.622974 , 0.303324 , 0.681436 , -13.491484 , 9.299015 , -4.082179 , -0.274758 , 0.493576 , 0.825129 , 0.156781 , 0.726252 , -13.345785 , 9.067694 , -3.831584 , -0.224799 , 0.799524 , 0.556932 , 0.162405 , 0.719413 , -14.702642 , 8.468082 , -1.776286 , -0.022462 , 0.940550 , 0.338878 , 0.135732 , 0.674946 , -18.467932 , 8.991888 , -3.896840 , 0.871639 , 0.131809 , 0.472060 , 0.065748 , 0.722360 , -18.212378 , 8.977331 , -4.316365 , 0.707877 , 0.150578 , 0.690054 , 0.072752 , 0.725853 , -18.170324 , 9.191301 , -4.170575 , 0.781487 , -0.349101 , 0.517045 , 0.069164 , 0.731648 , -2.008671 , 12.592838 , -3.408213 , -0.238105 , -0.032655 , 0.970672 , 0.439936 , 0.809548 , 3.183102 , 11.545078 , -1.275553 , -0.889737 , 0.263405 , 0.372753 , 0.566548 , 0.784223 , 3.032711 , 11.352543 , -1.561442 , -0.912656 , 0.198401 , 0.357311 , 0.557162 , 0.780260 , 3.168392 , 11.040897 , -0.968058 , -0.867916 , 0.240272 , 0.434645 , 0.569760 , 0.766363 , -1.861332 , 16.120182 , -2.320719 , 0.067568 , -0.598346 , 0.798364 , 0.441946 , 0.909466 , -1.204472 , 16.522614 , -2.083095 , 0.111881 , -0.640950 , 0.759362 , 0.457099 , 0.922701 , -3.096310 , 17.643091 , -0.553874 , -0.477950 , -0.462661 , 0.746635 , 0.418733 , 0.964795 , -3.340267 , 17.660145 , -0.729373 , -0.650502 , -0.546342 , 0.527543 , 0.411842 , 0.965418 , -3.160130 , 17.353146 , -0.931098 , -0.476211 , -0.793573 , 0.378735 , 0.415381 , 0.957241 , -18.703558 , 15.405155 , -2.706584 , 0.249947 , -0.794397 , 0.553545 , 0.048828 , 0.882852 , -17.420622 , 11.304646 , -3.756523 , 0.243934 , -0.187109 , 0.951537 , 0.078801 , 0.776504 , -16.751287 , 11.437626 , -3.873057 , 0.157445 , -0.171361 , 0.972533 , 0.091596 , 0.778189 , -17.698095 , 11.741196 , -3.637687 , 0.263436 , -0.048189 , 0.963439 , 0.072862 , 0.787266 , -17.397741 , 13.125584 , -3.763644 , 0.248848 , -0.002930 , 0.968505 , 0.080006 , 0.816888 , -17.021643 , 13.407467 , -3.849131 , 0.239814 , -0.086245 , 0.966948 , 0.088807 , 0.827842 , -17.438238 , 13.537930 , -3.705363 , 0.287759 , -0.211463 , 0.934049 , 0.079397 , 0.831376 , -18.697348 , 14.296204 , -3.151638 , 0.107974 , 0.045167 , 0.993103 , 0.049713 , 0.850903 , -18.915876 , 14.829485 , -3.214415 , 0.246742 , -0.267403 , 0.931425 , 0.045506 , 0.864135 , -19.007887 , 14.323322 , -3.194999 , 0.242256 , 0.090609 , 0.965941 , 0.042062 , 0.853297 , 3.452938 , 12.836704 , -1.154094 , -0.908475 , -0.017487 , 0.417524 , 0.577294 , 0.820053 , 3.294918 , 12.679035 , -1.673991 , -0.962432 , 0.026917 , 0.270150 , 0.568904 , 0.818623 , 3.442623 , 12.212345 , -1.206218 , -0.909268 , 0.161199 , 0.383648 , 0.570771 , 0.803536 , -1.479923 , 10.625462 , -3.118403 , -0.233467 , -0.150243 , 0.960662 , 0.453604 , 0.763420 , -0.607670 , 10.867252 , -2.925944 , -0.199438 , -0.130589 , 0.971160 , 0.470560 , 0.770768 , -18.893873 , 13.487808 , -3.099917 , 0.009278 , -0.084017 , 0.996399 , 0.043794 , 0.831514 , 1.231472 , 9.424198 , -1.184245 , -0.820948 , 0.496567 , 0.281838 , 0.523761 , 0.710866 , 1.258640 , 9.750181 , -1.969035 , -0.774743 , 0.599872 , 0.199652 , 0.519530 , 0.729282 , 1.130733 , 9.516348 , -2.039107 , -0.795251 , 0.555620 , 0.242531 , 0.512960 , 0.721022 , -2.015568 , 9.815983 , -3.414592 , -0.142308 , 0.320261 , 0.936552 , 0.440633 , 0.740569 , -2.418400 , 10.092869 , -3.574473 , -0.324015 , 0.170385 , 0.930570 , 0.430506 , 0.746593 , -17.986364 , 9.502752 , -4.294932 , 0.654012 , -0.322977 , 0.684042 , 0.072925 , 0.737632 , -14.636724 , 14.597721 , -3.693522 , 0.196081 , -0.614215 , 0.764336 , 0.139966 , 0.864280 , -14.699041 , 14.255405 , -3.913768 , 0.232002 , -0.468368 , 0.852504 , 0.139109 , 0.852525 , -14.117437 , 14.429752 , -3.996989 , 0.294290 , -0.587481 , 0.753807 , 0.151908 , 0.858711 , -19.092871 , 13.113804 , -3.245387 , 0.171880 , -0.253700 , 0.951872 , 0.041570 , 0.822902 , -18.098272 , 13.365650 , -3.528666 , 0.343150 , -0.140904 , 0.928617 , 0.065306 , 0.829605 , -18.754827 , 13.191654 , -3.227275 , 0.268899 , -0.295877 , 0.916562 , 0.048381 , 0.827343 , -18.696379 , 12.932476 , -3.341006 , 0.253059 , -0.191748 , 0.948241 , 0.051223 , 0.819457 , -13.060308 , 8.560978 , -2.079753 , 0.005676 , 0.941679 , 0.336375 , 0.174671 , 0.681744 , -13.026815 , 8.222416 , -1.356059 , 0.017029 , 0.852260 , 0.522782 , 0.173802 , 0.662623 , -10.315935 , 7.993898 , -1.169062 , 0.075869 , 0.763146 , 0.641713 , 0.240405 , 0.658442 , -19.456091 , 15.413181 , -2.221171 , 0.571734 , -0.697928 , 0.431257 , 0.026917 , 0.886916 , -19.637701 , 15.771763 , -1.416117 , 0.449385 , -0.710074 , 0.542009 , 0.015900 , 0.900518 , -19.670866 , 15.503117 , -1.839152 , 0.628254 , -0.625233 , 0.462935 , 0.017405 , 0.892196 , -15.797003 , 16.148746 , -2.117717 , 0.016053 , -0.624287 , 0.780999 , 0.112277 , 0.913908 , -15.803961 , 15.476139 , -2.721843 , 0.042512 , -0.679159 , 0.732719 , 0.111982 , 0.888299 , -15.398043 , 15.866795 , -2.416046 , 0.113437 , -0.663533 , 0.739464 , 0.121037 , 0.905186 , -8.233679 , 11.906223 , -4.197413 , -0.201788 , -0.278298 , 0.939024 , 0.286323 , 0.790653 , -7.755863 , 11.737125 , -4.140849 , -0.253639 , -0.144780 , 0.956389 , 0.299854 , 0.786875 , -7.173405 , 12.338596 , -3.842814 , -0.192877 , -0.183264 , 0.963927 , 0.313239 , 0.802179 , -13.971395 , 9.827709 , -4.270202 , -0.194586 , -0.091922 , 0.976562 , 0.145901 , 0.740391 , -14.903135 , 9.506054 , -4.567817 , -0.137211 , -0.057924 , 0.988830 , 0.127374 , 0.733728 , -14.311529 , 9.398603 , -4.424357 , -0.284402 , 0.140172 , 0.948393 , 0.138743 , 0.730778 , -17.015753 , 8.586735 , -3.083415 , -0.082400 , 0.979766 , 0.182348 , 0.086061 , 0.696851 , -16.689825 , 8.835392 , -3.990885 , -0.120304 , 0.963164 , 0.240394 , 0.098476 , 0.709621 , -16.777227 , 9.208021 , -4.709609 , -0.114963 , 0.107212 , 0.987548 , 0.095636 , 0.726451 , -16.876165 , 9.063160 , -4.672114 , -0.135380 , 0.630818 , 0.764000 , 0.094358 , 0.722531 , -16.239882 , 9.133238 , -4.592690 , -0.112735 , 0.565905 , 0.816706 , 0.103845 , 0.722501 , -18.283819 , 10.563297 , -3.655925 , 0.508499 , -0.220252 , 0.832392 , 0.060821 , 0.759540 , -17.684576 , 10.138004 , -4.115397 , 0.378704 , -0.402417 , 0.833430 , 0.075691 , 0.751594 , -17.732916 , 10.795597 , -3.810099 , 0.315561 , -0.326243 , 0.891018 , 0.073445 , 0.762725 , -16.865423 , 9.382694 , -4.692153 , -0.018433 , -0.234382 , 0.971954 , 0.093756 , 0.732288 , -17.208006 , 9.116949 , -4.748597 , -0.012970 , 0.238563 , 0.971038 , 0.089388 , 0.725964 , -16.670721 , 10.755802 , -4.071849 , 0.122868 , -0.347850 , 0.929441 , 0.094201 , 0.763339 , -16.928839 , 10.435612 , -4.173015 , 0.147008 , -0.423292 , 0.893948 , 0.089773 , 0.755807 , -16.070196 , 10.507267 , -4.227763 , 0.055116 , -0.366222 , 0.928861 , 0.106029 , 0.757327 , -16.019720 , 8.908421 , -4.075480 , -0.067080 , 0.968383 , 0.240150 , 0.108261 , 0.711639 , -14.806341 , 8.967663 , -4.153666 , -0.069735 , 0.949461 , 0.305979 , 0.129615 , 0.715627 , -12.497652 , 8.695656 , -2.502232 , 0.001953 , 0.959655 , 0.281137 , 0.188252 , 0.691233 , -11.712286 , 8.500736 , -1.948893 , 0.026093 , 0.931578 , 0.362560 , 0.206742 , 0.678123 , -11.460699 , 8.621769 , -2.351725 , 0.073092 , 0.958556 , 0.275277 , 0.211341 , 0.684745 , -16.083105 , 13.531441 , -4.009717 , 0.048402 , 0.030976 , 0.998321 , 0.109346 , 0.829298 , -16.584356 , 13.377460 , -3.931479 , 0.153783 , 0.052705 , 0.986663 , 0.098922 , 0.826150 , -16.314520 , 12.724369 , -3.868750 , 0.070742 , 0.113681 , 0.990966 , 0.103739 , 0.809320 , -15.006186 , 12.209869 , -3.891242 , 0.074404 , -0.057436 , 0.995544 , 0.129635 , 0.796988 , -15.891302 , 12.442772 , -3.861415 , 0.040590 , 0.021058 , 0.998932 , 0.111649 , 0.802649 , -16.274633 , 11.084415 , -4.021525 , 0.113437 , -0.258553 , 0.959288 , 0.102012 , 0.768933 , -10.938528 , 12.581036 , -4.613017 , -0.222388 , -0.026643 , 0.974578 , 0.222260 , 0.808985 , -10.783308 , 11.997211 , -4.666560 , -0.037812 , -0.131993 , 0.990509 , 0.225960 , 0.794599 , -17.361746 , 8.976887 , -4.667613 , -0.039033 , 0.740410 , 0.670980 , 0.086967 , 0.722746 , -12.855505 , 10.387272 , -4.225978 , 0.086337 , 0.091037 , 0.992096 , 0.175545 , 0.753380 , -13.252661 , 10.897114 , -4.211085 , 0.109165 , -0.008362 , 0.993957 , 0.166770 , 0.765790 , -13.467894 , 10.276146 , -4.200267 , -0.023133 , 0.011170 , 0.999664 , 0.160296 , 0.750336 , -11.325567 , 9.163517 , -4.022929 , 0.105350 , 0.811060 , 0.575365 , 0.214715 , 0.721463 , -11.365118 , 9.464397 , -4.330386 , 0.168523 , 0.482345 , 0.859584 , 0.214447 , 0.729867 , -11.743231 , 9.154850 , -3.925700 , 0.119968 , 0.813715 , 0.568712 , 0.204318 , 0.718588 , -15.158262 , 9.648726 , -4.555484 , -0.068606 , -0.251930 , 0.965300 , 0.121892 , 0.737996 , -18.411085 , 9.739271 , -3.136340 , 0.958739 , 0.273721 , 0.076632 , 0.049828 , 0.739045 , -18.308981 , 9.412907 , -3.695445 , 0.936552 , -0.183264 , 0.298715 , 0.059646 , 0.732917 , -18.410788 , 9.787359 , -3.576075 , 0.951628 , 0.199377 , 0.233741 , 0.056699 , 0.741119 , -16.108984 , 9.352085 , -4.641427 , -0.071963 , 0.025544 , 0.997070 , 0.106131 , 0.728731 , -15.611517 , 9.803257 , -4.525966 , -0.028108 , -0.309946 , 0.950316 , 0.113565 , 0.740392 , -18.460615 , 10.184544 , -3.576104 , 0.839656 , 0.002197 , 0.543046 , 0.056075 , 0.750632 , -17.350935 , 9.378117 , -4.677150 , 0.200201 , -0.333201 , 0.921323 , 0.086139 , 0.733329 , -17.152716 , 11.051884 , -3.884654 , 0.207343 , -0.283242 , 0.936338 , 0.084442 , 0.770035 , -15.878019 , 9.053495 , -4.458930 , -0.054048 , 0.847041 , 0.528733 , 0.109512 , 0.718963 , -17.323767 , 9.969303 , -4.334147 , 0.257576 , -0.474441 , 0.841731 , 0.084027 , 0.746156 , -19.119486 , 11.502024 , -3.256893 , 0.214118 , 0.279733 , 0.935881 , 0.037364 , 0.781063 , -18.798765 , 12.230877 , -3.370553 , 0.131993 , 0.025758 , 0.990905 , 0.049536 , 0.800372 , -3.739964 , 11.077034 , -4.257115 , 0.066897 , -0.321970 , 0.944365 , 0.394103 , 0.770621 , -3.382465 , 11.315933 , -4.103115 , -0.179357 , -0.399365 , 0.899045 , 0.402713 , 0.778532 , -3.764896 , 11.513126 , -4.020976 , 0.064791 , -0.430189 , 0.900388 , 0.392176 , 0.782157 , -18.779119 , 11.224674 , -3.302706 , 0.419965 , 0.125156 , 0.898831 , 0.046702 , 0.773345 , -18.601370 , 10.765018 , -3.391734 , 0.664113 , 0.019196 , 0.747368 , 0.051831 , 0.763590 , -18.313726 , 11.056736 , -3.508006 , 0.383221 , -0.150395 , 0.911313 , 0.059538 , 0.770140 , -17.511175 , 15.651310 , -2.664714 , -0.086062 , -0.667257 , 0.739799 , 0.076231 , 0.889687 , -18.219137 , 15.529058 , -2.784037 , 0.189764 , -0.754845 , 0.627827 , 0.062817 , 0.886284 , -16.750216 , 12.267862 , -3.805130 , 0.120731 , 0.007599 , 0.992645 , 0.093314 , 0.799152 , -15.645636 , 8.770023 , -3.070964 , -0.073428 , 0.976592 , 0.202063 , 0.116368 , 0.698338 , -14.668036 , 8.663639 , -2.438639 , -0.018799 , 0.969237 , 0.245369 , 0.135406 , 0.685600 , -12.080328 , 8.926640 , -3.377482 , 0.048860 , 0.931761 , 0.359691 , 0.198875 , 0.707775 , -12.589239 , 8.822239 , -2.994181 , -0.011963 , 0.952025 , 0.305765 , 0.186818 , 0.702084 , -16.648077 , 9.700871 , -4.586650 , 0.031251 , -0.383953 , 0.922788 , 0.098068 , 0.740781 , -14.479811 , 10.094587 , -4.302268 , -0.131077 , -0.245155 , 0.960570 , 0.137468 , 0.746544 , -16.134588 , 14.519474 , -3.602702 , 0.040651 , -0.593219 , 0.803980 , 0.108026 , 0.856991 , -15.388220 , 14.332829 , -3.737712 , 0.083010 , -0.520676 , 0.849696 , 0.123754 , 0.854737 , -15.320807 , 14.701237 , -3.474528 , 0.087344 , -0.634388 , 0.768029 , 0.124351 , 0.868179 , -13.194464 , 11.369656 , -4.214004 , 0.202399 , 0.005799 , 0.979278 , 0.167302 , 0.777058 , -12.580564 , 11.283072 , -4.325963 , 0.184637 , 0.082827 , 0.979278 , 0.182776 , 0.774818 , -19.053968 , 15.559431 , -2.217616 , 0.282937 , -0.843776 , 0.456038 , 0.036408 , 0.892059 , -15.713224 , 16.828520 , -1.775153 , -0.137486 , -0.157872 , 0.977813 , 0.111758 , 0.934225 , -16.029348 , 16.938370 , -1.823649 , -0.185369 , -0.051485 , 0.981292 , 0.102346 , 0.934707 , -16.010855 , 16.573061 , -1.887892 , -0.132664 , -0.309824 , 0.941465 , 0.105164 , 0.926390 , -17.088507 , 8.941364 , -4.531932 , -0.110782 , 0.881710 , 0.458541 , 0.090927 , 0.719242 , -17.469923 , 14.447489 , -3.283492 , 0.136113 , -0.090121 , 0.986572 , 0.075813 , 0.854159 , -17.584448 , 14.765387 , -3.348429 , -0.009674 , -0.012207 , 0.999878 , 0.074795 , 0.861090 , -18.292654 , 14.460377 , -3.263546 , 0.150151 , 0.024873 , 0.988342 , 0.058704 , 0.853177 , -5.576298 , 17.490772 , -2.414744 , -0.137028 , -0.777642 , 0.613575 , 0.352964 , 0.942906 , -5.197842 , 17.601175 , -2.159995 , -0.116337 , -0.809717 , 0.575152 , 0.361010 , 0.948452 , -9.444464 , 14.391300 , -3.912883 , -0.211066 , -0.273843 , 0.938292 , 0.259055 , 0.855164 , -9.151594 , 15.073856 , -3.617615 , -0.177038 , -0.303751 , 0.936155 , 0.267001 , 0.872178 , -16.535955 , 14.205692 , -3.767253 , 0.230323 , -0.456343 , 0.859462 , 0.099045 , 0.846627 , -16.245901 , 14.095266 , -3.878283 , 0.082644 , -0.452986 , 0.887661 , 0.105997 , 0.843733 , -12.670172 , 14.940006 , -3.879069 , 0.102542 , -0.695669 , 0.710959 , 0.184797 , 0.872873 , -12.966497 , 14.238575 , -4.597972 , 0.136265 , -0.507492 , 0.850795 , 0.177851 , 0.850486 , -12.251837 , 14.290440 , -4.589213 , 0.027650 , -0.617054 , 0.786401 , 0.192564 , 0.853654 , -17.756964 , 13.776615 , -3.521220 , 0.265297 , -0.343730 , 0.900784 , 0.071054 , 0.837877 , -17.773222 , 14.130054 , -3.350188 , 0.127995 , -0.325419 , 0.936827 , 0.069245 , 0.845100 , -18.247656 , 14.024881 , -3.313117 , 0.256417 , -0.165410 , 0.952300 , 0.059133 , 0.843441 , -14.293043 , 10.511566 , -4.210649 , -0.031220 , -0.160649 , 0.986511 , 0.142017 , 0.755806 , -13.787657 , 10.637716 , -4.185257 , 0.023682 , -0.068361 , 0.997375 , 0.153720 , 0.759513 , -17.435934 , 15.999210 , -2.395243 , -0.083377 , -0.528977 , 0.844508 , 0.074745 , 0.905543 , -17.889944 , 15.788759 , -2.556544 , 0.103702 , -0.645283 , 0.756828 , 0.066785 , 0.897321 , -11.797033 , 14.259586 , -4.590434 , -0.100284 , -0.611347 , 0.784936 , 0.202322 , 0.853302 , -11.891439 , 14.822330 , -4.062663 , 0.010102 , -0.674520 , 0.738151 , 0.200779 , 0.869548 , -15.172033 , 12.702763 , -3.899569 , 0.057283 , 0.113712 , 0.991852 , 0.125317 , 0.810314 , -16.706869 , 14.946293 , -3.234233 , -0.041353 , -0.624836 , 0.779626 , 0.093315 , 0.869395 , -17.182302 , 14.785786 , -3.354171 , 0.062746 , -0.249886 , 0.966216 , 0.083298 , 0.862198 , -16.715643 , 14.678349 , -3.432612 , 0.121616 , -0.510849 , 0.851009 , 0.093427 , 0.860378 , -16.630377 , 15.212467 , -2.988444 , -0.040162 , -0.691885 , 0.720847 , 0.095162 , 0.879896 , -13.160002 , 9.463140 , -4.053126 , -0.138066 , 0.410627 , 0.901273 , 0.167504 , 0.729017 , -12.036154 , 12.564487 , -4.599998 , 0.202612 , 0.161657 , 0.965789 , 0.195809 , 0.808931 , -11.907110 , 13.405451 , -4.825390 , 0.156194 , 0.125340 , 0.979736 , 0.198076 , 0.831401 , -12.881536 , 13.267216 , -4.542979 , 0.261269 , 0.236579 , 0.935789 , 0.177317 , 0.825041 , -5.601200 , 13.367081 , -3.618037 , -0.065188 , -0.051790 , 0.996521 , 0.346862 , 0.827400 , -5.274723 , 12.498604 , -3.630221 , -0.015107 , -0.054323 , 0.998383 , 0.360484 , 0.806842 , -4.734501 , 12.878033 , -3.588162 , -0.048402 , -0.085360 , 0.995148 , 0.375834 , 0.818381 , -15.686148 , 16.425419 , -1.911296 , -0.010987 , -0.491531 , 0.870754 , 0.113264 , 0.923436 , -15.503351 , 13.862968 , -3.951713 , 0.035157 , -0.277322 , 0.960112 , 0.121456 , 0.838420 , -15.321806 , 14.110264 , -3.866816 , 0.163335 , -0.422742 , 0.891385 , 0.125404 , 0.847332 , -18.503126 , 14.772139 , -3.270602 , 0.164098 , -0.045930 , 0.985351 , 0.055522 , 0.860732 , -18.113379 , 8.740999 , -4.115443 , 0.371929 , 0.855129 , 0.361034 , 0.073068 , 0.719995 , -17.355162 , 16.474186 , -2.143779 , -0.027802 , -0.446699 , 0.894223 , 0.073883 , 0.919365 , -16.682867 , 16.247028 , -2.128291 , -0.117374 , -0.445631 , 0.887448 , 0.092050 , 0.914803 , -13.125723 , 9.913862 , -4.160632 , -0.021821 , 0.154881 , 0.987671 , 0.168763 , 0.740841 , -16.948248 , 13.936039 , -3.728556 , 0.329691 , -0.364086 , 0.871029 , 0.089720 , 0.840430 , -12.626928 , 13.979189 , -4.724883 , 0.122745 , -0.172246 , 0.977355 , 0.185042 , 0.845021 , -13.372305 , 13.936052 , -4.588351 , 0.301645 , -0.049898 , 0.952086 , 0.167931 , 0.842849 , -14.836126 , 13.868183 , -4.030032 , 0.201575 , -0.212928 , 0.956023 , 0.136236 , 0.841110 , -14.316534 , 14.126787 , -4.115764 , 0.324625 , -0.381970 , 0.865261 , 0.147673 , 0.847012 , -17.854849 , 16.717728 , -1.924094 , 0.247658 , -0.491958 , 0.834620 , 0.065122 , 0.926551 , -18.369757 , 15.854710 , -2.284770 , 0.370556 , -0.649922 , 0.663503 , 0.055814 , 0.900761 , -17.894110 , 16.212955 , -2.266764 , 0.193457 , -0.537400 , 0.820795 , 0.063816 , 0.912804 , -14.940603 , 10.141117 , -4.345698 , -0.094821 , -0.320475 , 0.942473 , 0.128105 , 0.747618 , -15.467306 , 10.714933 , -4.180283 , 0.009980 , -0.305887 , 0.951994 , 0.117988 , 0.761413 , -8.398756 , 17.197184 , -2.751586 , 0.040101 , -0.744865 , 0.665975 , 0.290400 , 0.934795 , -8.480833 , 16.902384 , -2.934561 , 0.079745 , -0.567888 , 0.819208 , 0.287339 , 0.925341 , -8.131201 , 16.987627 , -2.910098 , 0.000000 , -0.355235 , 0.934751 , 0.297216 , 0.927629 , -17.780127 , 9.488468 , -4.458903 , 0.423902 , -0.416181 , 0.804376 , 0.077626 , 0.736692 , -18.603163 , 13.646362 , -3.229930 , 0.380810 , -0.096316 , 0.919614 , 0.050687 , 0.835651 , -10.449011 , 16.649754 , -3.228984 , 0.082095 , -0.624928 , 0.776330 , 0.235528 , 0.914104 , -10.838125 , 16.712715 , -3.068782 , 0.211890 , -0.737449 , 0.641255 , 0.226138 , 0.916566 , -11.367559 , 16.330326 , -3.178416 , 0.234413 , -0.535325 , 0.811457 , 0.215444 , 0.907639 , -18.622931 , 15.666080 , -2.345622 , 0.414869 , -0.751976 , 0.512223 , 0.047268 , 0.894307 , -18.596891 , 16.063150 , -1.944976 , 0.553880 , -0.533403 , 0.639241 , 0.046413 , 0.907237 , -12.692114 , 9.173161 , -3.760325 , 0.005860 , 0.814081 , 0.580676 , 0.184031 , 0.718190 , -15.368361 , 13.520931 , -4.009462 , 0.051027 , -0.031343 , 0.998199 , 0.123776 , 0.828675 , -15.488211 , 13.215214 , -3.982779 , 0.048463 , 0.145787 , 0.988098 , 0.121330 , 0.821427 , -16.885565 , 15.590031 , -2.629069 , -0.040590 , -0.676595 , 0.735191 , 0.088712 , 0.892926 , -17.316809 , 14.246586 , -3.395640 , 0.295083 , -0.393628 , 0.870602 , 0.079114 , 0.847208 , -13.321554 , 14.764183 , -3.944636 , 0.164983 , -0.721244 , 0.672719 , 0.169040 , 0.868392 , -9.455709 , 18.225065 , -0.830310 , 0.091372 , -0.445265 , 0.890713 , 0.260330 , 0.975221 , -9.431440 , 17.931568 , -1.019038 , 0.093051 , -0.762261 , 0.640522 , 0.262146 , 0.966424 , -9.050520 , 18.196920 , -0.802188 , 0.046632 , -0.525864 , 0.849269 , 0.270380 , 0.974316 , -16.066061 , 17.518696 , -1.839431 , -0.268746 , -0.451155 , 0.850978 , 0.100655 , 0.944196 , -11.670553 , 8.812971 , -3.070788 , 0.098422 , 0.957305 , 0.271767 , 0.208456 , 0.701663 , -10.929907 , 8.781513 , -3.283732 , 0.154424 , 0.940062 , 0.303995 , 0.227690 , 0.701631 , -15.171766 , 16.371969 , -2.017499 , 0.118839 , -0.611988 , 0.781884 , 0.125643 , 0.921542 , -17.113379 , 15.765965 , -2.485194 , -0.110843 , -0.615650 , 0.780145 , 0.083050 , 0.898466 , -11.580999 , 13.308111 , -4.845033 , -0.039735 , 0.127781 , 0.990997 , 0.205702 , 0.828832 , -11.647253 , 13.688622 , -4.856742 , -0.032533 , -0.124607 , 0.991668 , 0.204451 , 0.838387 , -17.346586 , 15.077374 , -3.230601 , -0.084536 , -0.567217 , 0.819208 , 0.079345 , 0.870766 , -13.415533 , 13.689114 , -4.520087 , 0.293924 , 0.238960 , 0.925443 , 0.167028 , 0.834871 , -12.689795 , 13.623219 , -4.678096 , 0.214515 , 0.165746 , 0.962523 , 0.181804 , 0.835688 , -17.890142 , 17.391087 , -1.360514 , 0.460219 , -0.692190 , 0.555895 , 0.060695 , 0.945707 , -17.226156 , 15.461531 , -2.775092 , -0.126347 , -0.692068 , 0.710654 , 0.082594 , 0.886100 , -14.765593 , 15.433231 , -2.926188 , 0.142705 , -0.662801 , 0.735038 , 0.135951 , 0.890959 , -14.877935 , 13.565866 , -4.051633 , 0.147740 , 0.001221 , 0.989013 , 0.134828 , 0.831786 , -13.545416 , 11.986149 , -4.135997 , 0.233741 , 0.024567 , 0.971954 , 0.160549 , 0.793192 , -12.664000 , 11.895813 , -4.362000 , 0.246651 , 0.088656 , 0.965026 , 0.180521 , 0.790910 , -13.315496 , 12.672451 , -4.253428 , 0.296396 , 0.161992 , 0.941191 , 0.169462 , 0.810123 , -12.087591 , 10.353886 , -4.327212 , 0.165716 , 0.117740 , 0.979095 , 0.195514 , 0.752389 , -10.567633 , 17.342289 , -1.760173 , 0.116123 , -0.908444 , 0.401502 , 0.234668 , 0.945904 , -10.281363 , 17.819614 , -1.045878 , 0.152989 , -0.782708 , 0.603229 , 0.237905 , 0.965301 , -10.707586 , 17.478947 , -1.415568 , 0.248329 , -0.874477 , 0.416669 , 0.228619 , 0.954346 , -14.309668 , 12.151981 , -3.977412 , 0.146458 , -0.036683 , 0.988525 , 0.143461 , 0.795464 , -13.745550 , 12.627960 , -4.104327 , 0.259377 , 0.119724 , 0.958312 , 0.157506 , 0.807553 , -10.056768 , 13.774754 , -4.207805 , -0.342143 , -0.101596 , 0.934111 , 0.242855 , 0.837926 , -10.769903 , 13.818790 , -4.501689 , -0.394940 , -0.287942 , 0.872402 , 0.225576 , 0.840846 , -10.276373 , 13.479801 , -4.318400 , -0.439467 , -0.033845 , 0.897580 , 0.237692 , 0.830583 , -9.448614 , 16.751110 , -3.042033 , -0.087619 , -0.692068 , 0.716453 , 0.263115 , 0.918793 , -9.653875 , 16.378033 , -3.295963 , -0.142186 , -0.368236 , 0.918760 , 0.257407 , 0.904410 , -8.958670 , 16.547668 , -3.089171 , -0.110019 , -0.408368 , 0.906125 , 0.275278 , 0.911566 , -9.162306 , 16.888309 , -2.878085 , 0.082156 , -0.696005 , 0.713279 , 0.270812 , 0.923022 , -8.759878 , 17.057041 , -2.810496 , 0.139195 , -0.657125 , 0.740776 , 0.281702 , 0.929829 , -9.000616 , 17.287525 , -2.460978 , 0.184545 , -0.853420 , 0.487381 , 0.276886 , 0.935010 , -17.716215 , 15.002043 , -3.314711 , -0.037202 , -0.387066 , 0.921262 , 0.072041 , 0.866793 , -18.648756 , 10.407745 , -3.227710 , 0.884701 , 0.250771 , 0.392895 , 0.047282 , 0.753611 , -14.650488 , 12.703487 , -3.940638 , 0.124302 , 0.108341 , 0.986297 , 0.136767 , 0.808444 , -13.827871 , 9.405165 , -4.249599 , -0.331675 , 0.250435 , 0.909513 , 0.148373 , 0.730382 , -12.055082 , 14.062702 , -4.742064 , 0.018464 , -0.401196 , 0.915799 , 0.196596 , 0.847624 , -9.634947 , 17.336002 , -1.996257 , 0.129307 , -0.877010 , 0.462661 , 0.259388 , 0.942672 , -9.552328 , 17.101505 , -2.466838 , 0.112308 , -0.861049 , 0.495956 , 0.261208 , 0.931050 , -9.213140 , 17.415958 , -2.049479 , 0.177892 , -0.896176 , 0.406446 , 0.269235 , 0.940994 , -11.020864 , 15.250614 , -3.745524 , -0.001679 , -0.497421 , 0.867489 , 0.222733 , 0.881357 , -10.566046 , 15.139042 , -3.781657 , -0.066958 , -0.434797 , 0.898007 , 0.233602 , 0.877021 , -5.453312 , 9.698917 , -3.070109 , -0.139470 , 0.747581 , 0.649312 , 0.356157 , 0.725958 , -5.366970 , 9.952005 , -3.317866 , -0.044374 , 0.647450 , 0.760796 , 0.358810 , 0.735883 , -5.783978 , 9.913702 , -3.356128 , -0.202918 , 0.541673 , 0.815699 , 0.348504 , 0.735862 , -10.933233 , 15.656681 , -3.539531 , 0.066500 , -0.398236 , 0.914853 , 0.223438 , 0.891107 , -11.389807 , 15.858829 , -3.402568 , 0.083468 , -0.419660 , 0.903806 , 0.214512 , 0.896936 , -11.608038 , 15.466007 , -3.580973 , 0.105777 , -0.523637 , 0.845332 , 0.208844 , 0.887921 , -13.597647 , 16.585514 , -2.057658 , 0.016663 , -0.688955 , 0.724570 , 0.161963 , 0.925711 , -14.414999 , 16.430351 , -2.103258 , 0.114658 , -0.641102 , 0.758812 , 0.143088 , 0.922045 , -13.530523 , 16.200993 , -2.464518 , 0.114200 , -0.717460 , 0.687124 , 0.162319 , 0.914834 , -5.421680 , 11.724545 , -3.674989 , 0.063723 , -0.072817 , 0.995300 , 0.356016 , 0.787938 , -12.631453 , 17.440296 , -0.474978 , 0.084597 , -0.619526 , 0.780389 , 0.183580 , 0.961777 , -9.738470 , 18.005390 , -0.874522 , 0.133824 , -0.636830 , 0.759270 , 0.250017 , 0.970984 , -9.235693 , 17.647953 , -1.527018 , 0.105533 , -0.865993 , 0.488754 , 0.267178 , 0.955728 , -5.108204 , 10.849688 , -3.735038 , 0.233222 , 0.099490 , 0.967315 , 0.363995 , 0.762853 , -5.113621 , 11.268040 , -3.751399 , 0.183233 , -0.043947 , 0.982055 , 0.364139 , 0.774297 , -9.914190 , 17.381901 , -1.867839 , 0.087466 , -0.880520 , 0.465804 , 0.244564 , 0.945478 , -8.947165 , 18.012272 , -1.042765 , 0.116184 , -0.784845 , 0.608661 , 0.275203 , 0.966973 , -12.998358 , 9.181019 , -3.809703 , -0.132633 , 0.759972 , 0.636250 , 0.172256 , 0.718981 , -15.002447 , 10.793278 , -4.158000 , 0.003662 , -0.241798 , 0.970306 , 0.127567 , 0.763045 , -12.309103 , 16.135441 , -2.962565 , 0.322916 , -0.653951 , 0.684133 , 0.191427 , 0.907082 , -12.741636 , 16.009480 , -2.884619 , 0.255654 , -0.694052 , 0.672964 , 0.180997 , 0.905295 , -12.500189 , 15.480534 , -3.422526 , 0.160131 , -0.637074 , 0.753960 , 0.187232 , 0.890448 , -11.326941 , 14.977238 , -3.933268 , -0.027558 , -0.582446 , 0.812372 , 0.215012 , 0.874246 , -14.211065 , 13.832417 , -4.229747 , 0.350932 , -0.069155 , 0.933805 , 0.149993 , 0.839863 , -8.637716 , 13.902164 , -3.820681 , -0.153996 , -0.123478 , 0.980316 , 0.277699 , 0.840156 , -9.381651 , 13.665203 , -4.002942 , -0.230781 , -0.040803 , 0.972137 , 0.259204 , 0.834667 , -8.781561 , 13.178684 , -3.907939 , -0.145177 , -0.129734 , 0.980834 , 0.274025 , 0.822644 , -13.564039 , 9.709372 , -4.181090 , -0.206427 , 0.104373 , 0.972869 , 0.156742 , 0.736501 , -9.959967 , 13.197266 , -4.153850 , -0.359783 , -0.069948 , 0.930387 , 0.244798 , 0.823837 , -11.148596 , 13.474850 , -4.773837 , -0.332621 , -0.039308 , 0.942228 , 0.215752 , 0.833554 , -11.388601 , 13.876287 , -4.780272 , -0.238044 , -0.362529 , 0.901028 , 0.211056 , 0.842908 , -14.030340 , 8.484318 , -1.843180 , 0.007782 , 0.943358 , 0.331584 , 0.152734 , 0.675154 , -2.989529 , 10.890564 , -3.991101 , -0.537980 , 0.050844 , 0.841395 , 0.415010 , 0.766726 , -2.621754 , 11.234724 , -3.828515 , -0.515519 , -0.032350 , 0.856258 , 0.423853 , 0.775737 , -2.932064 , 11.352579 , -3.907725 , -0.374645 , -0.254891 , 0.891415 , 0.414934 , 0.779227 , -11.642706 , 11.142105 , -4.490626 , 0.190680 , 0.151036 , 0.969939 , 0.203929 , 0.772929 , -11.854681 , 11.704599 , -4.548450 , 0.209204 , 0.121311 , 0.970306 , 0.198005 , 0.787378 , -10.071249 , 11.596811 , -4.706317 , -0.135746 , -0.147008 , 0.979766 , 0.241039 , 0.783488 , -9.773565 , 11.797024 , -4.593440 , -0.176855 , -0.283670 , 0.942442 , 0.248658 , 0.788275 , -9.858953 , 12.125874 , -4.486445 , -0.215766 , -0.342174 , 0.914518 , 0.247305 , 0.796822 , -10.756041 , 9.118534 , -4.052775 , 0.097598 , 0.809778 , 0.578509 , 0.231714 , 0.718143 , -10.357328 , 9.173849 , -4.100080 , -0.008423 , 0.741295 , 0.671102 , 0.240685 , 0.720974 , -10.703268 , 9.338528 , -4.335727 , 0.053499 , 0.614429 , 0.787133 , 0.230946 , 0.727208 , -13.405890 , 8.883640 , -3.342814 , -0.108951 , 0.946959 , 0.302225 , 0.166138 , 0.708836 , -10.190252 , 17.168034 , -2.317057 , 0.042207 , -0.909818 , 0.412793 , 0.241741 , 0.936337 , -10.625616 , 17.175358 , -2.250407 , 0.117527 , -0.914853 , 0.386273 , 0.231687 , 0.936735 , -11.605680 , 12.578678 , -4.673579 , 0.071810 , 0.145207 , 0.986785 , 0.205530 , 0.809358 , -11.234976 , 12.943974 , -4.720195 , -0.184912 , 0.140507 , 0.972655 , 0.213376 , 0.818666 , -6.933964 , 9.466938 , -3.691691 , -0.418897 , 0.452651 , 0.787133 , 0.318334 , 0.727627 , -6.948978 , 9.167088 , -3.312541 , -0.287606 , 0.853542 , 0.434400 , 0.316507 , 0.715109 , -6.698124 , 9.283199 , -3.378215 , -0.338664 , 0.768242 , 0.543199 , 0.325058 , 0.719375 , -7.394810 , 8.827297 , -2.763459 , -0.258309 , 0.874447 , 0.410596 , 0.306244 , 0.699915 , -7.579350 , 8.629642 , -2.502116 , -0.312510 , 0.783197 , 0.537492 , 0.303217 , 0.692567 , -8.546854 , 12.191507 , -4.160996 , -0.177465 , -0.337931 , 0.924253 , 0.278744 , 0.798627 , -12.544394 , 12.510086 , -4.469728 , 0.259499 , 0.154088 , 0.953337 , 0.183855 , 0.806786 , -9.844931 , 14.075489 , -4.084991 , -0.257698 , -0.212989 , 0.942442 , 0.248351 , 0.846202 , -4.470028 , 10.381031 , -3.859042 , 0.394879 , 0.453291 , 0.799097 , 0.379964 , 0.750223 , -5.031582 , 10.501717 , -3.683133 , 0.251839 , 0.319773 , 0.913388 , 0.366178 , 0.753074 , -4.823559 , 10.241964 , -3.621978 , 0.263527 , 0.550554 , 0.792077 , 0.371558 , 0.745295 , -4.729435 , 11.135838 , -3.858256 , 0.307505 , -0.080782 , 0.948088 , 0.372443 , 0.770963 , -5.981510 , 9.520512 , -3.095866 , -0.367382 , 0.713187 , 0.596973 , 0.343465 , 0.721267 , -6.111217 , 9.231688 , -2.733298 , -0.331675 , 0.825007 , 0.457472 , 0.339453 , 0.711392 , -5.689213 , 9.241276 , -2.497721 , -0.181005 , 0.797388 , 0.575640 , 0.350857 , 0.710682 , -16.956053 , 14.539486 , -3.427546 , 0.256294 , -0.284768 , 0.923673 , 0.087870 , 0.855509 , -10.496191 , 10.490177 , -4.561656 , 0.036103 , 0.144169 , 0.988861 , 0.233059 , 0.755755 , -10.608526 , 9.623295 , -4.456824 , 0.033448 , 0.244789 , 0.968963 , 0.232256 , 0.734614 , -9.733572 , 10.355045 , -4.530711 , -0.090762 , 0.146855 , 0.984954 , 0.250199 , 0.753703 , -13.442266 , 8.367496 , -1.577067 , 0.047060 , 0.895840 , 0.441816 , 0.163329 , 0.671298 , -6.466068 , 12.506962 , -3.696040 , -0.118290 , -0.065065 , 0.990814 , 0.331663 , 0.807784 , -8.503912 , 9.826969 , -4.240153 , -0.223548 , 0.143010 , 0.964110 , 0.280157 , 0.741685 , -8.019659 , 9.498013 , -4.097301 , -0.245491 , 0.290201 , 0.924924 , 0.289297 , 0.733887 , -11.223043 , 8.862188 , -3.421477 , 0.113254 , 0.923978 , 0.365215 , 0.218082 , 0.706487 , -10.487852 , 8.776762 , -3.586327 , 0.159856 , 0.902737 , 0.399335 , 0.235948 , 0.708444 , -10.564650 , 11.462572 , -4.730229 , 0.035066 , 0.040498 , 0.998535 , 0.230028 , 0.780125 , -11.353674 , 11.985062 , -4.656210 , 0.094028 , 0.014313 , 0.995453 , 0.211260 , 0.794055 , -2.431362 , 12.500683 , -3.494384 , -0.145054 , -0.114170 , 0.982788 , 0.430293 , 0.809683 , -2.891163 , 12.496025 , -3.567314 , -0.134281 , -0.237861 , 0.961943 , 0.417556 , 0.808373 , -10.111814 , 8.776575 , -3.551629 , 0.057527 , 0.869655 , 0.490249 , 0.244966 , 0.710186 , -10.259321 , 8.889112 , -3.853938 , -0.043916 , 0.820490 , 0.569903 , 0.240393 , 0.714928 , -4.488323 , 9.723372 , -3.176318 , 0.143834 , 0.789544 , 0.596576 , 0.379699 , 0.727924 , -4.251835 , 10.063328 , -3.696696 , 0.288217 , 0.722526 , 0.628346 , 0.385492 , 0.740592 , -4.850529 , 9.942692 , -3.349040 , 0.149815 , 0.709983 , 0.688070 , 0.370771 , 0.736072 , -9.526983 , 9.648258 , -4.416713 , -0.115238 , 0.238838 , 0.964171 , 0.254216 , 0.737025 , -8.940786 , 9.622385 , -4.299644 , -0.207099 , 0.245796 , 0.946928 , 0.269118 , 0.735684 , -1.932499 , 9.264713 , -2.973796 , -0.069216 , 0.782067 , 0.619312 , 0.442351 , 0.718727 , -2.567631 , 9.277164 , -3.059733 , -0.068789 , 0.733268 , 0.676443 , 0.426210 , 0.719700 , -2.829838 , 8.838444 , -2.519938 , -0.095798 , 0.847591 , 0.521897 , 0.422740 , 0.702089 , -13.911139 , 13.224506 , -4.201838 , 0.264657 , 0.257576 , 0.929289 , 0.156247 , 0.821047 , -7.012089 , 13.630978 , -3.704600 , -0.087039 , -0.102237 , 0.990936 , 0.317874 , 0.835612 , -9.233984 , 12.935829 , -4.010989 , -0.176183 , -0.205847 , 0.962584 , 0.262381 , 0.817164 , -9.539434 , 13.253330 , -4.036784 , -0.225837 , -0.047914 , 0.972961 , 0.255402 , 0.824656 , -7.867435 , 10.500065 , -4.086101 , -0.303751 , 0.070711 , 0.950102 , 0.294773 , 0.756331 , -7.353153 , 9.537983 , -3.899272 , -0.322245 , 0.237068 , 0.916471 , 0.306457 , 0.732035 , -11.634649 , 16.434040 , -3.011332 , 0.283792 , -0.634510 , 0.718894 , 0.207172 , 0.911518 , -11.293951 , 16.722347 , -2.842082 , 0.266915 , -0.791253 , 0.550127 , 0.216383 , 0.920147 , -11.897345 , 16.576466 , -2.724223 , 0.350475 , -0.776910 , 0.522965 , 0.201791 , 0.918228 , -8.877447 , 10.563053 , -4.408854 , -0.238807 , 0.127995 , 0.962584 , 0.270853 , 0.757236 , -8.910772 , 11.207386 , -4.513591 , -0.263405 , 0.008240 , 0.964629 , 0.269256 , 0.773043 , -9.232550 , 11.175060 , -4.589885 , -0.197241 , 0.040925 , 0.979492 , 0.260397 , 0.770882 , -6.427013 , 9.417986 , -3.341578 , -0.461959 , 0.627155 , 0.627064 , 0.332448 , 0.722361 , -6.256550 , 9.699400 , -3.415805 , -0.402326 , 0.425703 , 0.810480 , 0.336672 , 0.731071 , -7.802128 , 9.181034 , -3.790202 , -0.155156 , 0.783288 , 0.601917 , 0.294482 , 0.720529 , -3.814915 , 7.888981 , -0.931762 , -0.101962 , 0.274483 , 0.956145 , 0.403653 , 0.655992 , -1.681896 , 11.272577 , -3.203448 , -0.389325 , 0.090243 , 0.916654 , 0.448792 , 0.779088 , -2.146244 , 10.833988 , -3.365031 , -0.508133 , 0.029328 , 0.860744 , 0.439680 , 0.765772 , -11.255743 , 11.577709 , -4.667763 , 0.157170 , 0.100558 , 0.982421 , 0.212279 , 0.784241 , 1.171696 , 16.574924 , -1.942576 , -0.111270 , -0.507401 , 0.854457 , 0.511806 , 0.916435 , 0.388241 , 17.109867 , -1.764491 , -0.039949 , -0.498795 , 0.865780 , 0.495813 , 0.935590 , 0.774960 , 16.582157 , -2.002696 , -0.144719 , -0.539384 , 0.829524 , 0.503031 , 0.918321 , -12.397375 , 16.491581 , -2.449260 , 0.320841 , -0.800317 , 0.506485 , 0.188269 , 0.919104 , -12.982412 , 16.201847 , -2.577800 , 0.193396 , -0.760491 , 0.619831 , 0.175365 , 0.912665 , -8.158033 , 12.771481 , -3.904425 , -0.140477 , -0.224067 , 0.964385 , 0.289224 , 0.812807 , -5.563694 , 8.903019 , -2.057536 , -0.077609 , 0.688284 , 0.721244 , 0.356006 , 0.695474 , -6.161098 , 8.849859 , -2.150397 , -0.215033 , 0.717795 , 0.662191 , 0.339716 , 0.695315 , -8.365728 , 8.901859 , -3.495280 , -0.288308 , 0.794916 , 0.533799 , 0.280478 , 0.708815 , -8.018072 , 8.969303 , -3.438151 , -0.207343 , 0.873775 , 0.439833 , 0.291196 , 0.711625 , -4.471714 , 10.669327 , -3.959849 , 0.436018 , 0.150121 , 0.887295 , 0.379529 , 0.759517 , -3.870380 , 10.254765 , -4.173060 , 0.313364 , 0.618183 , 0.720847 , 0.395042 , 0.749025 , -9.335577 , 9.359501 , -4.279735 , -0.120548 , 0.545396 , 0.829432 , 0.259708 , 0.727784 , -3.268330 , 13.078423 , -3.469121 , -0.063601 , -0.116977 , 0.991089 , 0.408563 , 0.821981 , -4.052341 , 12.558216 , -3.603366 , -0.020905 , -0.229774 , 0.972991 , 0.390723 , 0.811525 , -3.459843 , 8.657291 , -2.291423 , 0.002564 , 0.875820 , 0.482620 , 0.410261 , 0.692982 , -14.126505 , 15.364697 , -3.138256 , 0.179357 , -0.676412 , 0.714316 , 0.150356 , 0.888430 , -9.403387 , 11.567852 , -4.585948 , -0.198309 , -0.205023 , 0.958434 , 0.257083 , 0.782404 , -8.834539 , 8.810551 , -3.688426 , -0.281564 , 0.678152 , 0.678823 , 0.268873 , 0.709443 , -9.716497 , 8.617390 , -3.477916 , 0.130650 , 0.875149 , 0.465835 , 0.252755 , 0.705595 , -3.784184 , 8.710514 , -2.321940 , 0.187780 , 0.788537 , 0.585589 , 0.402787 , 0.694986 , -4.170841 , 8.506535 , -1.865519 , 0.105106 , 0.834498 , 0.540849 , 0.392916 , 0.683102 , -8.164679 , 13.207340 , -3.838588 , -0.103854 , -0.111911 , 0.988250 , 0.289983 , 0.825737 , -8.607428 , 14.281910 , -3.755198 , -0.159856 , -0.232490 , 0.959349 , 0.278257 , 0.851153 , -3.601032 , 10.249058 , -4.226054 , -0.105502 , 0.508255 , 0.854701 , 0.401662 , 0.751148 , -3.479374 , 9.793278 , -3.627360 , 0.123539 , 0.778832 , 0.614917 , 0.403020 , 0.733801 , -11.311453 , 9.741062 , -4.405522 , 0.154088 , 0.170324 , 0.973235 , 0.214483 , 0.737739 , -9.878027 , 11.274143 , -4.699046 , -0.104587 , 0.037721 , 0.993774 , 0.245557 , 0.774241 , -7.298222 , 9.235977 , -3.724589 , -0.302042 , 0.709250 , 0.636921 , 0.305790 , 0.721966 , -9.311529 , 9.033939 , -3.935099 , -0.127293 , 0.628193 , 0.767541 , 0.262263 , 0.719252 , -8.798918 , 16.786430 , -2.985386 , 0.008545 , -0.429792 , 0.902860 , 0.280027 , 0.920922 , -8.669912 , 15.997051 , -3.237066 , -0.161931 , -0.307901 , 0.937498 , 0.281248 , 0.896932 , -7.378376 , 16.290157 , -2.934958 , -0.131657 , -0.270821 , 0.953551 , 0.311265 , 0.908160 , 0.163662 , 16.609806 , -2.082316 , -0.083254 , -0.564989 , 0.820856 , 0.491036 , 0.919350 , -0.269077 , 16.710758 , -2.037760 , 0.016663 , -0.589251 , 0.807764 , 0.478930 , 0.925603 , -3.201420 , 9.151920 , -2.965983 , 0.004059 , 0.750145 , 0.661245 , 0.414815 , 0.715003 , -7.397831 , 12.787647 , -3.804209 , -0.161870 , -0.208899 , 0.964415 , 0.308305 , 0.812787 , -13.363317 , 15.109791 , -3.577702 , 0.169286 , -0.689718 , 0.703970 , 0.167831 , 0.879582 , -2.543278 , 11.722538 , -3.639415 , -0.373272 , -0.182195 , 0.909635 , 0.427025 , 0.791056 , -2.368229 , 11.466623 , -3.605040 , -0.509110 , -0.103397 , 0.854457 , 0.431252 , 0.783306 , -9.306799 , 8.742346 , -3.747117 , -0.036836 , 0.745415 , 0.665548 , 0.258875 , 0.709589 , -3.403568 , 10.479511 , -4.213450 , -0.378674 , 0.154668 , 0.912503 , 0.406303 , 0.757730 , -2.780521 , 10.231998 , -3.789469 , -0.481979 , 0.227546 , 0.846095 , 0.422355 , 0.750475 , -2.929279 , 11.858173 , -3.735453 , -0.251015 , -0.284188 , 0.925321 , 0.416872 , 0.792721 , -3.249668 , 12.172855 , -3.698222 , -0.110874 , -0.326151 , 0.938780 , 0.410375 , 0.800205 , -3.787678 , 13.821007 , -3.458652 , -0.031098 , -0.149937 , 0.988189 , 0.399811 , 0.842110 , -3.026188 , 14.185276 , -3.359034 , -0.056703 , -0.317667 , 0.946471 , 0.416531 , 0.854634 , -4.159275 , 14.054993 , -3.408406 , -0.040773 , -0.275246 , 0.960479 , 0.389993 , 0.849192 , -2.487309 , 10.687321 , -3.597697 , -0.591845 , 0.053224 , 0.804254 , 0.430222 , 0.761497 , -2.229504 , 10.378531 , -3.488089 , -0.417249 , -0.125980 , 0.899991 , 0.435750 , 0.755171 , -3.145878 , 11.148640 , -4.110072 , -0.432691 , -0.200079 , 0.879055 , 0.408131 , 0.774322 , -13.325720 , 15.671659 , -3.041819 , 0.180334 , -0.689047 , 0.701895 , 0.168129 , 0.896989 , -1.464268 , 9.793232 , -3.362849 , -0.184088 , 0.148015 , 0.971679 , 0.452319 , 0.740315 , -1.929081 , 10.106632 , -3.434115 , -0.274056 , -0.121433 , 0.954009 , 0.441697 , 0.749118 , 1.756054 , 10.064941 , -2.332186 , -0.115055 , 0.838557 , 0.532487 , 0.527375 , 0.745966 , 1.588238 , 10.246353 , -2.489234 , -0.141575 , 0.315500 , 0.938292 , 0.521458 , 0.754369 , 1.378559 , 9.957306 , -2.309321 , -0.504471 , 0.745476 , 0.435530 , 0.520228 , 0.740818 , 0.657711 , 11.723087 , -2.572795 , -0.192877 , -0.034516 , 0.980590 , 0.498533 , 0.793116 , 0.622066 , 12.062519 , -2.583476 , -0.222388 , 0.067843 , 0.972564 , 0.495098 , 0.798990 , 0.107662 , 11.410709 , -2.711344 , -0.220130 , -0.058901 , 0.973662 , 0.486738 , 0.783890 , -7.351170 , 14.081253 , -3.662316 , -0.096164 , -0.224189 , 0.969756 , 0.310438 , 0.846440 , -6.413700 , 14.544376 , -3.429911 , -0.085391 , -0.337474 , 0.937437 , 0.334053 , 0.860726 , -8.111654 , 14.491070 , -3.618539 , -0.119510 , -0.313578 , 0.941984 , 0.295260 , 0.861770 , -6.860966 , 11.733280 , -3.865702 , -0.261483 , -0.072329 , 0.962462 , 0.321103 , 0.787349 , -6.503483 , 10.082218 , -3.625834 , -0.299783 , 0.163457 , 0.939879 , 0.329591 , 0.743551 , -4.941410 , 9.254704 , -2.418864 , 0.072451 , 0.755333 , 0.651295 , 0.369452 , 0.709734 , -6.447636 , 11.304752 , -3.741099 , -0.190619 , 0.080752 , 0.978332 , 0.329846 , 0.774388 , -7.049320 , 10.954655 , -3.847819 , -0.285073 , 0.104282 , 0.952788 , 0.315879 , 0.766551 , -0.484531 , 10.144657 , -3.046717 , -0.151219 , -0.210181 , 0.965880 , 0.471860 , 0.751200 , -0.277020 , 9.733831 , -3.124770 , -0.010010 , -0.032472 , 0.999420 , 0.474510 , 0.739679 , 0.361202 , 9.706703 , -3.077296 , -0.298441 , -0.176977 , 0.937864 , 0.486893 , 0.741512 , -12.178663 , 15.842096 , -3.225608 , 0.213385 , -0.558916 , 0.801263 , 0.195045 , 0.898669 , -5.026798 , 9.743961 , -3.094157 , 0.045747 , 0.777154 , 0.627583 , 0.366053 , 0.726645 , -4.622807 , 9.267460 , -2.521525 , 0.215735 , 0.736167 , 0.641469 , 0.378558 , 0.709845 , -1.002201 , 10.077625 , -3.167231 , -0.241462 , -0.199713 , 0.949614 , 0.461558 , 0.748522 , -1.334385 , 9.481937 , -3.185038 , -0.097446 , 0.651570 , 0.752281 , 0.454794 , 0.729317 , 2.247677 , 17.154888 , -1.743258 , -0.186651 , -0.843501 , 0.503616 , 0.537513 , 0.923418 , 2.339153 , 16.926472 , -2.092631 , 0.010926 , -0.778375 , 0.627674 , 0.538408 , 0.913553 , 2.617405 , 16.812840 , -2.066935 , -0.626118 , -0.709952 , 0.322306 , 0.544675 , 0.909382 , 0.117741 , 9.514238 , -3.151454 , -0.063997 , 0.356578 , 0.932066 , 0.481348 , 0.735070 , 0.565060 , 9.419603 , -2.987479 , -0.442366 , 0.536241 , 0.718802 , 0.491129 , 0.734203 , 2.969181 , 15.351025 , -0.985118 , -0.953246 , -0.153813 , 0.259987 , 0.575292 , 0.888086 , 2.980511 , 15.758106 , -0.608466 , -0.786767 , 0.034242 , 0.616260 , 0.578487 , 0.896308 , 2.887905 , 16.312366 , -1.446818 , -0.983032 , -0.046449 , 0.177282 , 0.567296 , 0.906678 , -10.923803 , 10.910435 , -4.584620 , 0.133854 , 0.155950 , 0.978637 , 0.220251 , 0.766555 , -10.927374 , 13.195286 , -4.652324 , -0.392468 , 0.059420 , 0.917814 , 0.221213 , 0.825793 , -0.508060 , 9.138523 , -2.346843 , -0.125767 , 0.948210 , 0.291604 , 0.474398 , 0.712496 , -0.916401 , 9.181772 , -2.627917 , -0.138066 , 0.896512 , 0.420881 , 0.464910 , 0.716430 , -1.544315 , 8.824284 , -2.041178 , -0.196112 , 0.901028 , 0.386883 , 0.459551 , 0.703801 , -1.734440 , 10.762630 , -3.182292 , -0.338603 , -0.013855 , 0.940794 , 0.448384 , 0.766829 , -2.497074 , 11.012300 , -3.666911 , -0.608264 , 0.137669 , 0.781671 , 0.430232 , 0.769829 , -1.986919 , 17.326115 , -1.184001 , 0.244118 , -0.720450 , 0.649068 , 0.440629 , 0.953500 , -2.435818 , 17.351122 , -0.948172 , 0.225074 , -0.829646 , 0.510849 , 0.430870 , 0.957553 , -5.365963 , 10.186100 , -3.475535 , 0.046999 , 0.485366 , 0.873012 , 0.358523 , 0.743815 , -0.442142 , 8.954777 , -1.645182 , -0.153722 , 0.912900 , 0.378033 , 0.475500 , 0.694580 , -9.036406 , 12.672382 , -4.054477 , -0.168065 , -0.319285 , 0.932615 , 0.267282 , 0.809171 , -9.764227 , 12.944584 , -4.129436 , -0.276986 , -0.236305 , 0.931333 , 0.249859 , 0.817282 , -3.500095 , 11.748966 , -3.905833 , -0.078524 , -0.408032 , 0.909574 , 0.400620 , 0.789987 , -5.932652 , 10.155094 , -3.492533 , -0.159246 , 0.333537 , 0.929167 , 0.344541 , 0.743773 , -5.705654 , 10.563822 , -3.610570 , 0.019440 , 0.231574 , 0.972594 , 0.349828 , 0.755225 , -3.424030 , 16.915340 , -1.889811 , -0.343547 , -0.572131 , 0.744713 , 0.403525 , 0.934623 , -3.086086 , 16.498295 , -2.087443 , -0.161321 , -0.573931 , 0.802850 , 0.412057 , 0.921842 , -3.823406 , 8.137552 , -1.138480 , -0.075137 , 0.814447 , 0.575335 , 0.402873 , 0.666466 , 0.370716 , 9.305073 , -2.823619 , -0.129032 , 0.925260 , 0.356670 , 0.486282 , 0.726199 , 3.631084 , 12.144394 , -0.786708 , -0.642628 , 0.140202 , 0.753227 , 0.583663 , 0.795129 , -7.973392 , 11.253788 , -4.212687 , -0.306589 , 0.059664 , 0.949950 , 0.294456 , 0.772416 , -4.067142 , 9.232910 , -2.741695 , 0.289590 , 0.700217 , 0.652516 , 0.390318 , 0.712333 , 0.238674 , 10.170322 , -2.921260 , -0.190405 , -0.362102 , 0.912473 , 0.485190 , 0.751460 , -2.402905 , 14.221657 , -3.274962 , -0.106571 , -0.246406 , 0.963256 , 0.430558 , 0.854709 , -3.246960 , 15.824284 , -2.539721 , -0.079775 , -0.501999 , 0.861141 , 0.409118 , 0.900835 , -2.636127 , 15.686588 , -2.583171 , -0.010315 , -0.522965 , 0.852260 , 0.422888 , 0.896752 , -1.165798 , 9.234562 , -2.834391 , -0.140477 , 0.844966 , 0.516037 , 0.458876 , 0.720677 , -1.867062 , 8.927082 , -2.393732 , -0.136204 , 0.879391 , 0.456160 , 0.446072 , 0.704898 , -8.402349 , 11.472141 , -4.343577 , -0.269845 , -0.120670 , 0.955290 , 0.281238 , 0.779519 , -11.346930 , 14.589542 , -4.227214 , -0.117801 , -0.606830 , 0.786035 , 0.213939 , 0.862983 , -10.548590 , 14.769749 , -3.975810 , -0.132084 , -0.468520 , 0.873501 , 0.232918 , 0.866011 , -1.545780 , 13.466251 , -3.269267 , -0.171850 , -0.021485 , 0.984863 , 0.447221 , 0.831606 , 2.714062 , 9.339453 , -0.727271 , 0.427992 , 0.440413 , 0.789178 , 0.553690 , 0.708302 , 4.685055 , 10.689030 , -0.923396 , 0.305094 , -0.089572 , 0.948088 , 0.606655 , 0.749404 , 2.773159 , 10.719164 , -2.078372 , -0.881130 , 0.108219 , 0.460311 , 0.548029 , 0.767347 , 2.661175 , 10.380131 , -2.128550 , -0.893643 , 0.204321 , 0.399548 , 0.545515 , 0.759449 , -1.864613 , 10.482533 , -3.257334 , -0.368206 , -0.220832 , 0.903104 , 0.445556 , 0.758646 , 2.317806 , 16.113949 , -2.589862 , 0.678701 , -0.375805 , 0.630940 , 0.534755 , 0.894092 , 2.135738 , 16.588322 , -2.197673 , 0.527482 , -0.386486 , 0.756523 , 0.531689 , 0.907160 , 2.102505 , 15.910587 , -2.445048 , 0.550127 , -0.328684 , 0.767663 , 0.528093 , 0.892960 , -3.393559 , 8.888981 , -2.649577 , 0.087436 , 0.780969 , 0.618366 , 0.410719 , 0.705073 , -2.949665 , 13.860134 , -3.427167 , -0.088443 , -0.126988 , 0.987945 , 0.418889 , 0.844010 , -0.778744 , 9.709272 , -3.149588 , -0.173193 , 0.178411 , 0.968566 , 0.465554 , 0.738093 , -3.706539 , 10.795908 , -4.310664 , -0.092776 , -0.061464 , 0.993774 , 0.397376 , 0.763321 , -3.965702 , 10.797312 , -4.275578 , 0.360759 , -0.132603 , 0.923154 , 0.391400 , 0.763006 , -4.827396 , 16.259724 , -2.594958 , -0.179754 , -0.314493 , 0.932066 , 0.371249 , 0.909475 , -5.664616 , 16.012074 , -2.805888 , -0.117466 , -0.305979 , 0.944731 , 0.353500 , 0.899355 , -5.393559 , 15.563175 , -2.941081 , -0.104312 , -0.363384 , 0.925748 , 0.360095 , 0.885314 , 3.407978 , 11.524307 , -0.854045 , -0.760308 , 0.236305 , 0.604999 , 0.574863 , 0.780583 , 3.647854 , 11.714914 , -0.698394 , -0.516648 , 0.236274 , 0.822932 , 0.581328 , 0.784627 , 3.435040 , 11.843613 , -0.926509 , -0.804224 , 0.240730 , 0.543352 , 0.575998 , 0.790430 , -6.210697 , 11.627760 , -3.714114 , -0.158452 , -0.029115 , 0.986908 , 0.336944 , 0.783881 , 1.106785 , 9.329573 , -1.567305 , -0.758415 , 0.597278 , 0.260872 , 0.516043 , 0.712569 , 0.564915 , 9.104893 , -1.702983 , -0.205908 , 0.916684 , 0.342418 , 0.498421 , 0.701749 , -1.894474 , 8.625065 , -1.788737 , -0.184790 , 0.875759 , 0.445936 , 0.448157 , 0.687192 , 2.042110 , 16.926649 , -2.003413 , 0.277963 , -0.550768 , 0.786981 , 0.531121 , 0.917717 , 1.033405 , 9.560575 , -2.344531 , -0.796197 , 0.486496 , 0.359661 , 0.509454 , 0.732568 , 0.915722 , 9.673063 , -2.706202 , -0.738548 , 0.264290 , 0.620197 , 0.500467 , 0.739275 , 0.849056 , 9.397701 , -2.547160 , -0.609149 , 0.715537 , 0.341899 , 0.499412 , 0.727554 , 2.163601 , 10.043537 , -2.178385 , -0.067629 , 0.933897 , 0.351054 , 0.534935 , 0.747378 , 2.464725 , 9.817041 , -1.404135 , -0.067629 , 0.940855 , 0.331889 , 0.543070 , 0.728473 , -3.883877 , 10.501289 , -4.300971 , 0.242592 , 0.225715 , 0.943480 , 0.394765 , 0.756164 , -2.543736 , 16.353214 , -2.124430 , -0.044404 , -0.609760 , 0.791314 , 0.425580 , 0.918396 , -3.539051 , 16.318638 , -2.298899 , -0.193945 , -0.477859 , 0.856716 , 0.401881 , 0.915313 , -3.071941 , 10.108490 , -3.878400 , -0.357250 , 0.501968 , 0.787622 , 0.415572 , 0.746543 , 4.640560 , 10.166569 , -0.966029 , 0.226661 , -0.076418 , 0.970946 , 0.604089 , 0.737318 , -3.491001 , 15.283268 , -2.856364 , -0.075564 , -0.451949 , 0.888821 , 0.406574 , 0.886989 , 2.764561 , 9.680014 , -1.081176 , -0.236030 , 0.743736 , 0.625385 , 0.553110 , 0.721072 , -4.757145 , 11.842472 , -3.739939 , 0.142430 , -0.184088 , 0.972503 , 0.372392 , 0.789747 , -0.266850 , 9.051023 , -1.915875 , -0.116367 , 0.951292 , 0.285409 , 0.478529 , 0.703314 , 2.380123 , 9.665562 , -0.937907 , 0.175054 , 0.907834 , 0.380993 , 0.544077 , 0.716710 , 2.923786 , 10.128077 , -1.102328 , -0.825282 , 0.207007 , 0.525376 , 0.560331 , 0.740520 , 3.552059 , 13.463444 , -0.819880 , -0.764489 , -0.111728 , 0.634846 , 0.585481 , 0.831084 , 1.140583 , 9.991323 , -2.562957 , -0.562517 , 0.251564 , 0.787561 , 0.509568 , 0.747915 , 1.203121 , 10.622532 , -2.569285 , -0.212226 , -0.044954 , 0.976165 , 0.509782 , 0.764531 , -1.158634 , 9.605167 , -3.238658 , -0.228248 , 0.427229 , 0.874844 , 0.458291 , 0.734689 , -4.725315 , 12.244961 , -3.665495 , 0.043733 , -0.158727 , 0.986328 , 0.372915 , 0.800963 , 2.033306 , 14.064819 , -2.653344 , 0.087527 , 0.069643 , 0.993713 , 0.525275 , 0.848769 , 2.320057 , 14.095524 , -2.715853 , 0.337474 , 0.140599 , 0.930754 , 0.531455 , 0.849759 , 1.602047 , 10.736088 , -2.492575 , -0.101352 , -0.049715 , 0.993591 , 0.520743 , 0.769080 , -4.249958 , 12.002079 , -3.760783 , 0.100864 , -0.294626 , 0.950255 , 0.383232 , 0.795422 , 3.321316 , 9.584112 , -0.783496 , -0.257576 , 0.006958 , 0.966216 , 0.574221 , 0.722350 , 3.286633 , 15.178944 , -0.550505 , -0.465041 , -0.089816 , 0.880703 , 0.583906 , 0.885835 , 1.892559 , 9.891544 , -1.542521 , -0.005829 , 0.976104 , 0.217170 , 0.534551 , 0.728473 , 1.485165 , 9.863682 , -1.626750 , -0.450240 , 0.866482 , 0.215491 , 0.526965 , 0.728693 , 0.896870 , 9.229448 , -1.718684 , -0.476424 , 0.820856 , 0.314890 , 0.506348 , 0.710542 , 0.037289 , 17.821201 , -1.132029 , 0.029115 , -0.703482 , 0.710074 , 0.487059 , 0.960374 , 0.254330 , 18.353350 , -0.766473 , -0.071505 , -0.135899 , 0.988128 , 0.497553 , 0.973512 , -16.227583 , 13.836498 , -3.989098 , 0.097720 , -0.217261 , 0.971191 , 0.106413 , 0.836592 , 1.294582 , 15.796192 , -2.453242 , -0.181036 , -0.509171 , 0.841365 , 0.510199 , 0.893289 , -0.137699 , 14.682865 , -3.137324 , -0.118259 , 0.050966 , 0.991668 , 0.477810 , 0.859864 , 1.784557 , 15.830936 , -2.373484 , 0.097598 , -0.441145 , 0.892087 , 0.520669 , 0.893087 , -0.383297 , 9.493834 , -3.056567 , 0.041292 , 0.554979 , 0.830805 , 0.472861 , 0.731625 , 0.612926 , 9.220890 , -2.179850 , -0.243049 , 0.947325 , 0.208472 , 0.496082 , 0.715981 , 1.573208 , 9.817097 , -1.158183 , -0.392254 , 0.875698 , 0.281472 , 0.529768 , 0.716835 , 3.221035 , 14.192448 , -1.181559 , -0.923093 , -0.270180 , 0.273598 , 0.573850 , 0.856620 , 3.533726 , 13.831211 , -0.740718 , -0.682058 , -0.275246 , 0.677480 , 0.583797 , 0.847093 , 3.450298 , 14.261068 , -0.624778 , -0.642201 , -0.239723 , 0.728050 , 0.582723 , 0.857604 , -2.181583 , 12.951359 , -3.406100 , -0.125767 , -0.092288 , 0.987732 , 0.435657 , 0.820082 , 2.562664 , 11.101322 , -2.316874 , -0.529527 , -0.061373 , 0.846065 , 0.541464 , 0.778141 , -0.153439 , 15.275043 , -3.065280 , -0.024842 , -0.343120 , 0.938932 , 0.479857 , 0.881154 , 0.062435 , 15.469608 , -2.961619 , -0.093661 , -0.500107 , 0.860866 , 0.484244 , 0.885775 , -4.080936 , 11.343937 , -4.029521 , 0.260201 , -0.318033 , 0.911649 , 0.386572 , 0.777573 , -4.479862 , 11.448795 , -3.883647 , 0.262062 , -0.224708 , 0.938505 , 0.378875 , 0.779989 , -4.225079 , 10.969900 , -4.078979 , 0.421705 , -0.174169 , 0.889828 , 0.384444 , 0.767299 , -0.851940 , 9.407358 , -2.977587 , -0.116276 , 0.717277 , 0.686972 , 0.464841 , 0.727247 , 4.001324 , 8.485872 , -0.975466 , 0.138920 , -0.109439 , 0.984222 , 0.590910 , 0.686695 , -3.033596 , 13.439062 , -3.437806 , -0.052339 , -0.029084 , 0.998199 , 0.416793 , 0.834206 , 2.175045 , 14.807926 , -2.683734 , 0.389111 , 0.011689 , 0.921110 , 0.527743 , 0.865265 , 3.127377 , 14.093658 , -1.943963 , -0.958617 , -0.233039 , 0.163488 , 0.563123 , 0.851368 , 3.318111 , 13.701237 , -1.445231 , -0.954344 , -0.164495 , 0.249306 , 0.571839 , 0.842756 , 3.111813 , 12.032658 , -1.880290 , -0.850948 , 0.302103 , 0.429640 , 0.559373 , 0.798725 , 2.814037 , 11.664532 , -2.119365 , -0.702445 , 0.201117 , 0.682699 , 0.548577 , 0.790977 , 3.890919 , 13.794619 , -0.609809 , -0.037812 , -0.079134 , 0.996124 , 0.591967 , 0.841783 , 4.221302 , 13.116068 , -0.659218 , 0.173681 , 0.033479 , 0.984222 , 0.597658 , 0.823941 , -4.674541 , 13.489168 , -3.549094 , -0.076388 , -0.100284 , 0.992004 , 0.376542 , 0.833422 , 2.223240 , 11.276173 , -2.392735 , -0.187750 , -0.048647 , 0.980987 , 0.533642 , 0.779926 , 2.134853 , 11.873711 , -2.399253 , -0.101627 , 0.051698 , 0.993469 , 0.530522 , 0.801602 , 1.092159 , 12.111759 , -2.496165 , -0.146489 , 0.047212 , 0.988067 , 0.509736 , 0.803488 , 1.802822 , 12.393803 , -2.441081 , -0.057009 , 0.087924 , 0.994476 , 0.522792 , 0.810996 , 1.360920 , 13.197893 , -2.591095 , -0.150029 , 0.121708 , 0.981140 , 0.512145 , 0.828379 , -1.825565 , 15.818424 , -2.542643 , 0.094699 , -0.563768 , 0.820460 , 0.442306 , 0.899927 , -0.374699 , 9.326420 , -2.855204 , -0.005371 , 0.867824 , 0.496811 , 0.474315 , 0.724041 , 3.222668 , 12.366480 , -1.811221 , -0.929350 , 0.169134 , 0.328104 , 0.562728 , 0.809846 , 2.460728 , 15.633932 , -3.070113 , 0.563036 , -0.262093 , 0.783746 , 0.539096 , 0.882593 , 2.651165 , 15.873304 , -3.020457 , -0.477004 , -0.344584 , 0.808496 , 0.543211 , 0.885702 , 2.434223 , 15.969475 , -2.878390 , 0.654195 , -0.379131 , 0.654378 , 0.538292 , 0.887629 , 2.892597 , 14.410435 , -2.945277 , -0.839045 , -0.225562 , 0.495041 , 0.548312 , 0.860444 , 3.099758 , 13.685917 , -2.574137 , -0.953703 , -0.034730 , 0.298654 , 0.552299 , 0.843479 , 2.857349 , 12.094736 , -2.255572 , -0.532701 , 0.365764 , 0.763146 , 0.551298 , 0.803858 , 2.065937 , 10.863321 , -2.455489 , -0.075930 , -0.169042 , 0.982665 , 0.530574 , 0.772281 , -12.289373 , 17.014713 , -1.533854 , 0.209174 , -0.871822 , 0.442854 , 0.190913 , 0.941345 , -12.708807 , 16.582218 , -2.121867 , 0.175481 , -0.821711 , 0.542161 , 0.181608 , 0.926305 , 1.928921 , 10.494455 , -2.508738 , 0.079958 , -0.013092 , 0.996704 , 0.528711 , 0.762291 , 2.655895 , 12.189091 , -2.377803 , -0.244118 , 0.255959 , 0.935331 , 0.544258 , 0.808484 , 2.386883 , 11.566805 , -2.335940 , -0.317209 , 0.018921 , 0.948149 , 0.537426 , 0.790978 , 2.679714 , 14.471273 , -3.077788 , 0.074099 , 0.177709 , 0.981262 , 0.541794 , 0.858395 , 2.585056 , 14.753456 , -3.112391 , 0.067812 , 0.227515 , 0.971404 , 0.541807 , 0.866012 , 2.554165 , 14.333622 , -2.903971 , 0.559587 , 0.258766 , 0.787317 , 0.537126 , 0.855203 , 2.562069 , 10.140354 , -2.252848 , -0.637959 , 0.603748 , 0.477981 , 0.540883 , 0.752229 , 2.896870 , 14.158112 , -3.023875 , -0.406598 , 0.141331 , 0.902585 , 0.545588 , 0.852059 , 3.221035 , 12.765238 , -2.042697 , -0.971831 , 0.078738 , 0.221992 , 0.561633 , 0.822554 , 3.159573 , 12.757181 , -2.326583 , -0.877651 , 0.213080 , 0.429273 , 0.554584 , 0.823752 , 3.066891 , 12.365116 , -2.267726 , -0.718070 , 0.356578 , 0.597644 , 0.554480 , 0.814304 , 3.201893 , 10.473837 , -0.666610 , -0.687551 , -0.058535 , 0.723746 , 0.573274 , 0.748956 , 3.104885 , 10.204311 , -0.889598 , -0.779046 , -0.048647 , 0.625050 , 0.567129 , 0.741365 , 3.366802 , 10.087210 , -0.693629 , -0.389935 , -0.201483 , 0.898495 , 0.575159 , 0.736585 , 3.001392 , 9.890528 , -1.003726 , -0.654988 , 0.147313 , 0.741111 , 0.563900 , 0.730183 , 3.372532 , 10.892874 , -0.553691 , -0.529710 , 0.182714 , 0.828242 , 0.577764 , 0.760241 , 3.591000 , 11.353683 , -0.606097 , -0.418012 , 0.239021 , 0.876400 , 0.583234 , 0.772855 , 3.690968 , 10.588356 , -0.488264 , 0.002869 , -0.113559 , 0.993500 , 0.582298 , 0.750395 , 3.785900 , 10.216301 , -0.588919 , 0.130924 , -0.262520 , 0.955992 , 0.585158 , 0.740366 , 4.327816 , 17.286716 , -0.938929 , 0.244881 , 0.067537 , 0.967162 , 0.606163 , 0.942803 , 4.459743 , 16.568790 , -0.945140 , 0.286264 , 0.031953 , 0.957610 , 0.609144 , 0.925659 , 4.976589 , 11.180180 , -0.966075 , 0.174871 , -0.041688 , 0.983703 , 0.617108 , 0.761426 , 2.730495 , 13.668972 , -2.779402 , 0.162023 , 0.304941 , 0.938475 , 0.539194 , 0.843433 , 0.173580 , 14.681461 , -3.077189 , -0.248115 , 0.092990 , 0.964232 , 0.487547 , 0.863576 , -0.464115 , 13.182682 , -3.007243 , -0.235817 , 0.111515 , 0.965361 , 0.472738 , 0.826324 , 3.674274 , 9.819166 , -0.701438 , 0.042512 , -0.205451 , 0.977722 , 0.583440 , 0.728858 , 3.132816 , 12.957279 , -2.464366 , -0.772546 , 0.144475 , 0.618244 , 0.551513 , 0.828442 , 2.940182 , 15.217899 , -1.594645 , -0.984039 , -0.126408 , 0.125187 , 0.565674 , 0.879641 , 3.096371 , 14.610233 , -1.307048 , -0.953154 , -0.235023 , 0.190374 , 0.571360 , 0.867274 , -0.894779 , 13.712345 , -3.153758 , -0.178655 , 0.072634 , 0.981201 , 0.464144 , 0.839746 , -0.072979 , 17.498600 , -1.514476 , 0.084933 , -0.663869 , 0.742973 , 0.482049 , 0.949224 , 0.265926 , 17.523014 , -1.505900 , -0.021424 , -0.681753 , 0.731223 , 0.494209 , 0.948419 , -16.458059 , 8.971958 , -4.416667 , -0.110111 , 0.903073 , 0.415113 , 0.100292 , 0.716463 , -6.537159 , 16.360416 , -2.794881 , -0.111087 , -0.251350 , 0.961486 , 0.333990 , 0.905653 , -7.220684 , 14.953129 , -3.362832 , -0.103977 , -0.329081 , 0.938536 , 0.314656 , 0.870328 , -10.159735 , 16.863651 , -2.923259 , 0.011383 , -0.859706 , 0.510605 , 0.244625 , 0.921434 , 1.058468 , 15.433262 , -2.715922 , -0.298990 , -0.316050 , 0.900388 , 0.504459 , 0.883091 , 1.593777 , 15.437206 , -2.556716 , -0.129063 , -0.296640 , 0.946196 , 0.515403 , 0.882435 , 2.772999 , 11.154451 , -2.067809 , -0.838954 , 0.050661 , 0.541765 , 0.548723 , 0.777740 , 1.832485 , 14.890116 , -2.636515 , -0.006012 , -0.090945 , 0.995819 , 0.520148 , 0.867747 , 1.526989 , 14.029194 , -2.666812 , -0.128636 , 0.071566 , 0.989074 , 0.515051 , 0.847248 , 2.956295 , 12.629045 , -2.455027 , -0.405194 , 0.312052 , 0.859310 , 0.548953 , 0.821404 , 2.034748 , 15.422552 , -2.565528 , 0.388867 , -0.196478 , 0.900082 , 0.525019 , 0.880779 , 4.136097 , 11.676060 , -0.614272 , 0.147740 , 0.013123 , 0.988922 , 0.594721 , 0.780640 , 2.740688 , 15.598270 , -2.693766 , -0.977355 , -0.057802 , 0.203528 , 0.550320 , 0.882130 , 2.886364 , 15.281452 , -1.949027 , -0.985229 , -0.107883 , 0.132908 , 0.553660 , 0.878868 , 3.637608 , 14.211843 , -0.555328 , -0.115421 , -0.153752 , 0.981323 , 0.590513 , 0.857077 , 3.004398 , 13.780531 , -2.811404 , -0.635273 , 0.231269 , 0.736808 , 0.547112 , 0.843968 , -13.298590 , 14.261219 , -4.504436 , 0.253365 , -0.524949 , 0.812525 , 0.169277 , 0.851580 , 2.593349 , 16.191038 , -2.851161 , -0.079745 , -0.637928 , 0.765923 , 0.540683 , 0.891780 , 2.611279 , 15.353680 , -3.191188 , -0.347545 , -0.207984 , 0.914274 , 0.542684 , 0.878523 , -10.383390 , 14.454067 , -4.094838 , -0.226783 , -0.391217 , 0.891873 , 0.236268 , 0.857381 , 2.377140 , 16.526714 , -2.451579 , 0.463851 , -0.437330 , 0.770440 , 0.535687 , 0.901294 , 2.282848 , 12.449192 , -2.452281 , -0.009003 , 0.148686 , 0.988830 , 0.535483 , 0.815038 , 2.846630 , 16.903843 , -1.251139 , -0.830470 , -0.443342 , 0.337230 , 0.560374 , 0.921089 , 2.635654 , 15.055643 , -3.269072 , -0.272134 , 0.117496 , 0.955046 , 0.541275 , 0.872808 , 2.415356 , 15.199024 , -3.096324 , 0.763207 , 0.026246 , 0.645558 , 0.537438 , 0.876016 , 1.435024 , 14.895437 , -2.691020 , -0.218787 , -0.077914 , 0.972625 , 0.511548 , 0.868431 , -14.045858 , 17.293255 , -1.166056 , -0.166387 , -0.876339 , 0.452010 , 0.153618 , 0.952608 , 3.584538 , 12.573177 , -0.901599 , -0.783868 , 0.068117 , 0.617145 , 0.581288 , 0.807561 , 3.851131 , 13.297611 , -0.653952 , -0.277322 , -0.076632 , 0.957701 , 0.590808 , 0.830203 , -14.153395 , 12.864868 , -4.049719 , 0.199164 , 0.184362 , 0.962462 , 0.148947 , 0.813992 , 3.448574 , 16.210934 , -0.557696 , -0.165319 , 0.199408 , 0.965850 , 0.584472 , 0.909464 , -5.456623 , 16.502594 , -2.653098 , -0.175939 , -0.186010 , 0.966643 , 0.356973 , 0.916028 , 3.456951 , 14.878897 , -0.539920 , -0.224525 , -0.097568 , 0.969543 , 0.587817 , 0.874509 , 3.318302 , 14.593624 , -0.648371 , -0.699179 , -0.231880 , 0.676260 , 0.581187 , 0.866668 , 1.783230 , 13.152805 , -2.535889 , -0.052217 , 0.122715 , 0.991058 , 0.521248 , 0.828138 , -13.145300 , 17.148502 , -1.135539 , -0.077425 , -0.924558 , 0.372997 , 0.173373 , 0.951018 , 3.442860 , 13.631937 , -1.084395 , -0.944517 , -0.121128 , 0.305277 , 0.578095 , 0.839999 , 2.973133 , 15.951218 , -0.841452 , -0.794031 , 0.378735 , 0.475417 , 0.575894 , 0.904002 , 2.718830 , 17.705177 , -0.611960 , -0.156835 , -0.160802 , 0.974425 , 0.561474 , 0.950413 , 3.191456 , 17.971230 , -0.678518 , 0.190832 , 0.259987 , 0.946532 , 0.570700 , 0.958366 , 2.793728 , 16.590397 , -2.009196 , -0.924375 , -0.311472 , 0.220099 , 0.550621 , 0.906232 , 2.742474 , 16.173649 , -2.610026 , -0.943297 , -0.170598 , 0.284646 , 0.545838 , 0.892454 , -0.768696 , 16.484802 , -2.178979 , 0.092898 , -0.623798 , 0.775994 , 0.466974 , 0.920269 , 1.610020 , 16.907429 , -1.818045 , 0.256355 , -0.371899 , 0.892148 , 0.522970 , 0.921463 , -14.281317 , 13.556095 , -4.187808 , 0.270394 , 0.126041 , 0.954436 , 0.148170 , 0.832115 , 2.307919 , 15.653749 , -2.804251 , 0.806665 , -0.178014 , 0.563494 , 0.533595 , 0.883888 , -5.119633 , 13.746262 , -3.554549 , -0.075381 , -0.173193 , 0.981964 , 0.365802 , 0.841033 , -4.279659 , 17.702179 , -1.869807 , -0.176641 , -0.751823 , 0.635212 , 0.382608 , 0.953588 , -4.217594 , 17.502964 , -2.002421 , -0.318613 , -0.482650 , 0.815760 , 0.382569 , 0.947199 , -3.973690 , 17.683729 , -1.739165 , -0.399548 , -0.709098 , 0.580950 , 0.388888 , 0.954638 , -0.715778 , 15.875797 , -2.679606 , 0.061617 , -0.590594 , 0.804590 , 0.469739 , 0.900125 , 2.657185 , 16.488791 , -2.564093 , -0.416791 , -0.568712 , 0.709067 , 0.541167 , 0.899030 , 2.523190 , 16.767179 , -2.353793 , -0.140568 , -0.762993 , 0.630879 , 0.538252 , 0.905777 , 3.038273 , 13.333687 , -2.586360 , -0.498611 , 0.196905 , 0.844142 , 0.548996 , 0.835738 , 1.744007 , 17.191454 , -1.690123 , 0.030854 , -0.687674 , 0.725333 , 0.530240 , 0.927407 , 3.136211 , 14.892494 , -0.731890 , -0.815699 , -0.223365 , 0.533555 , 0.578974 , 0.876956 , 1.777493 , 17.487614 , -1.256694 , -0.157323 , -0.815210 , 0.557329 , 0.532570 , 0.937529 , 2.357647 , 17.313442 , -1.306254 , -0.429548 , -0.811579 , 0.395917 , 0.544805 , 0.931321 , -14.719366 , 13.214397 , -4.034049 , 0.139164 , 0.169561 , 0.975616 , 0.137603 , 0.822392 , 2.769100 , 14.959497 , -2.853709 , -0.943602 , -0.114383 , 0.310617 , 0.547724 , 0.872256 , -3.450764 , 13.891029 , -3.456052 , 0.015229 , -0.199286 , 0.979797 , 0.408790 , 0.844075 , -12.660269 , 16.976570 , -1.507876 , 0.055666 , -0.881191 , 0.469436 , 0.182392 , 0.940773 , -12.731817 , 17.188236 , -1.033366 , 0.060793 , -0.911863 , 0.405927 , 0.181962 , 0.952834 , -12.239309 , 13.752789 , -4.784394 , 0.140049 , -0.038759 , 0.989380 , 0.192115 , 0.840182 , -3.056850 , 17.136650 , -1.444682 , -0.324107 , -0.794153 , 0.514054 , 0.414296 , 0.945501 , -3.497158 , 17.272331 , -1.653590 , -0.543413 , -0.538102 , 0.644276 , 0.401520 , 0.945979 , 2.270977 , 15.119801 , -2.786021 , 0.778466 , 0.062716 , 0.624500 , 0.531902 , 0.872202 , -11.448919 , 16.991398 , -2.201579 , 0.273202 , -0.877346 , 0.394421 , 0.214189 , 0.933779 , -11.021872 , 14.284000 , -4.367595 , -0.250374 , -0.499557 , 0.829279 , 0.220230 , 0.854344 , -9.924955 , 16.661385 , -3.215106 , -0.075533 , -0.615955 , 0.784143 , 0.250831 , 0.912598 , 2.108921 , 17.556561 , -1.039439 , -0.283303 , -0.769951 , 0.571703 , 0.540848 , 0.943379 , -0.359577 , 17.753899 , -1.162478 , 0.140263 , -0.711142 , 0.688864 , 0.477426 , 0.960464 , 3.213451 , 17.299004 , -0.606013 , -0.098788 , -0.151524 , 0.983490 , 0.573968 , 0.943724 , 3.374279 , 17.514772 , -0.622138 , 0.155522 , 0.131596 , 0.979003 , 0.579885 , 0.948915 , 4.207325 , 17.983833 , -0.974924 , 0.144047 , 0.100253 , 0.984466 , 0.596932 , 0.960759 , 0.857121 , 13.151258 , -2.679505 , -0.209418 , 0.132664 , 0.968780 , 0.501557 , 0.826635 , 0.407284 , 15.715641 , -2.743144 , -0.145573 , -0.561571 , 0.814478 , 0.491457 , 0.892687 , 1.404789 , 17.316130 , -1.626586 , -0.058748 , -0.652394 , 0.755577 , 0.521709 , 0.933677 , -11.193205 , 12.380302 , -4.649766 , -0.059267 , 0.010193 , 0.998169 , 0.215625 , 0.804026 , -11.601301 , 17.025898 , -1.948424 , 0.302927 , -0.895505 , 0.325999 , 0.207914 , 0.939219 , -11.639410 , 17.237003 , -1.468913 , 0.238777 , -0.904630 , 0.352977 , 0.208382 , 0.946811 , 3.735592 , 17.421085 , -0.725566 , 0.338603 , 0.158208 , 0.927519 , 0.587236 , 0.944779 , 3.894527 , 15.421207 , -0.626261 , 0.405011 , 0.043764 , 0.913236 , 0.595526 , 0.891045 , 3.651020 , 15.166416 , -0.524720 , 0.136570 , 0.005829 , 0.990600 , 0.591596 , 0.882774 , 1.465511 , 17.970161 , -0.747912 , -0.114536 , -0.463668 , 0.878536 , 0.525995 , 0.959655 , 1.612713 , 18.231562 , -0.728152 , -0.055513 , 0.116977 , 0.991577 , 0.528348 , 0.967277 , 1.252705 , 18.385025 , -0.673392 , 0.051851 , 0.071535 , 0.996063 , 0.520805 , 0.969632 , 0.835987 , 17.314198 , -1.656825 , -0.064394 , -0.580279 , 0.811823 , 0.507490 , 0.938243 , -0.691319 , 18.696175 , -0.803328 , 0.060762 , 0.333476 , 0.940764 , 0.475396 , 0.984398 , -0.742710 , 17.443382 , -1.386573 , 0.170904 , -0.669668 , 0.722678 , 0.468715 , 0.951111 , -3.525562 , 17.584709 , -1.397975 , -0.626911 , -0.636891 , 0.448653 , 0.400484 , 0.956940 , -3.288448 , 17.406322 , -1.231730 , -0.676504 , -0.665212 , 0.315867 , 0.407891 , 0.954412 , -3.581898 , 17.826822 , -1.015475 , -0.626759 , -0.658467 , 0.416608 , 0.403414 , 0.966908 , -5.041676 , 14.400139 , -3.365217 , -0.079043 , -0.311136 , 0.947050 , 0.368019 , 0.858354 , 1.846851 , 17.724751 , -0.933860 , -0.184973 , -0.702384 , 0.687307 , 0.533908 , 0.951218 , 1.322750 , 17.561100 , -1.257731 , -0.108310 , -0.798059 , 0.592730 , 0.520777 , 0.945657 , 0.693211 , 17.668888 , -1.240702 , -0.121921 , -0.760033 , 0.638295 , 0.504834 , 0.951996 , 2.721699 , 17.402731 , -0.776400 , -0.497665 , -0.498184 , 0.709983 , 0.559394 , 0.942022 , 2.735699 , 17.119785 , -1.044032 , -0.602161 , -0.672658 , 0.429975 , 0.557696 , 0.931283 , 2.951916 , 17.108759 , -0.781504 , -0.571764 , -0.464309 , 0.676351 , 0.566520 , 0.936955 , 2.387516 , 17.521875 , -0.884257 , -0.415052 , -0.668325 , 0.617267 , 0.550324 , 0.940799 , 0.561749 , 18.137936 , -0.790568 , -0.157292 , -0.429212 , 0.889370 , 0.507193 , 0.965897 , 0.309856 , 17.873188 , -1.052928 , -0.105502 , -0.666219 , 0.738243 , 0.497299 , 0.961345 , -4.335423 , 14.646305 , -3.214701 , -0.072665 , -0.362346 , 0.929167 , 0.382158 , 0.865748 , -2.262859 , 17.085026 , -1.405497 , 0.102451 , -0.771996 , 0.627247 , 0.433819 , 0.944850 , -2.726559 , 17.223019 , -1.141787 , -0.032563 , -0.902036 , 0.430403 , 0.423742 , 0.951622 , -2.990833 , 18.177582 , -0.504431 , -0.037996 , 0.303110 , 0.952178 , 0.421211 , 0.976677 , -2.818081 , 17.780693 , -0.419528 , 0.025941 , 0.000000 , 0.999634 , 0.422671 , 0.969434 , -7.900883 , 17.678898 , -1.748210 , 0.085788 , -0.903134 , 0.420637 , 0.301205 , 0.956871 , -8.480871 , 17.710270 , -1.553874 , 0.075991 , -0.877957 , 0.472640 , 0.287756 , 0.958141 , -6.227726 , 14.174992 , -3.544673 , -0.075533 , -0.263894 , 0.961577 , 0.343133 , 0.848798 , -4.271130 , 15.918901 , -2.638642 , -0.143223 , -0.417402 , 0.897336 , 0.384680 , 0.901470 , 1.049633 , 17.891991 , -0.884982 , -0.122257 , -0.635243 , 0.762566 , 0.514186 , 0.958212 , -7.427540 , 16.947666 , -2.901746 , -0.076235 , -0.089236 , 0.993072 , 0.314392 , 0.925118 , -7.745914 , 16.742378 , -2.877444 , -0.066469 , -0.059725 , 0.995972 , 0.305845 , 0.920887 , -7.143505 , 16.596056 , -2.833876 , -0.146855 , -0.076785 , 0.986145 , 0.320190 , 0.914930 , -1.372829 , 18.461504 , -0.682985 , 0.018921 , 0.215888 , 0.976226 , 0.458493 , 0.981290 , -10.517767 , 14.113895 , -4.289470 , -0.306223 , -0.350963 , 0.884884 , 0.232271 , 0.848054 , -4.794239 , 17.549702 , -2.128287 , -0.183111 , -0.661306 , 0.727378 , 0.370527 , 0.946912 , -4.707066 , 17.718678 , -1.899943 , -0.087985 , -0.842158 , 0.531968 , 0.374134 , 0.953510 , -12.005507 , 15.186092 , -3.736455 , 0.081912 , -0.629475 , 0.772668 , 0.199154 , 0.880849 , 0.798199 , 18.560406 , -0.733596 , -0.064882 , 0.237556 , 0.969176 , 0.511006 , 0.976751 , 0.872898 , 18.242027 , -0.707377 , -0.099460 , -0.216803 , 0.971099 , 0.513307 , 0.967632 , 1.401218 , 18.776485 , -0.846419 , 0.025666 , 0.373455 , 0.927274 , 0.526237 , 0.990401 , -3.849514 , 17.858498 , -1.269599 , -0.390759 , -0.811945 , 0.433576 , 0.394567 , 0.964113 , -16.712049 , 13.733788 , -3.890538 , 0.276254 , -0.202033 , 0.939573 , 0.095864 , 0.834482 , -4.351650 , 16.757896 , -2.316166 , -0.272164 , -0.324839 , 0.905728 , 0.381320 , 0.925177 , -4.044636 , 16.431917 , -2.360726 , -0.213721 , -0.390637 , 0.895352 , 0.389095 , 0.916733 , -3.858356 , 17.007877 , -2.041941 , -0.370983 , -0.417158 , 0.829646 , 0.392507 , 0.935381 , -2.676121 , 18.387455 , -0.627986 , 0.052858 , 0.397839 , 0.915922 , 0.426564 , 0.981786 , -4.666599 , 17.996525 , -1.300334 , -0.044099 , -0.847987 , 0.528153 , 0.376764 , 0.966965 , -4.833378 , 18.172640 , -1.053424 , -0.046693 , -0.667379 , 0.743217 , 0.373078 , 0.976138 , -5.135777 , 18.041126 , -1.265452 , -0.030152 , -0.803735 , 0.594195 , 0.365218 , 0.969153 , -4.524265 , 18.280222 , -1.000216 , -0.062258 , -0.603229 , 0.795099 , 0.380573 , 0.975025 , -3.714298 , 17.471817 , -1.714457 , -0.551042 , -0.495987 , 0.671041 , 0.394632 , 0.950551 , -2.797573 , 17.369608 , -0.727416 , -0.023713 , -0.901517 , 0.432020 , 0.423260 , 0.960239 , -8.462671 , 17.931690 , -1.217253 , 0.032746 , -0.817896 , 0.574389 , 0.286979 , 0.966905 , -5.695683 , 16.911915 , -2.663485 , -0.231483 , -0.022950 , 0.972533 , 0.351655 , 0.925107 , -7.842350 , 17.114180 , -2.903884 , 0.088107 , -0.457717 , 0.884701 , 0.306214 , 0.930636 , -6.207829 , 16.617455 , -2.726592 , -0.096469 , -0.024018 , 0.995025 , 0.341187 , 0.915130 , -2.202755 , 18.090336 , -0.593474 , 0.237465 , -0.031404 , 0.970885 , 0.437168 , 0.975553 , -4.253147 , 18.051676 , -1.117358 , -0.211219 , -0.748985 , 0.627979 , 0.386890 , 0.968725 , -6.679302 , 16.773794 , -2.721892 , -0.096530 , 0.107425 , 0.989502 , 0.331346 , 0.916349 , -2.096348 , 18.477322 , -0.689688 , 0.048738 , 0.305155 , 0.951048 , 0.439608 , 0.984083 , -3.240047 , 17.949028 , -0.518058 , -0.395550 , -0.084292 , 0.914548 , 0.416097 , 0.971464 , -5.468121 , 17.837097 , -1.654662 , -0.006226 , -0.897519 , 0.440901 , 0.356816 , 0.959422 , -5.337955 , 17.087063 , -2.530986 , -0.332530 , -0.182958 , 0.925138 , 0.358025 , 0.930576 , -7.153080 , 11.525164 , -3.965068 , -0.297586 , 0.037049 , 0.953948 , 0.312133 , 0.777731 , -7.083225 , 18.203403 , -1.058726 , 0.107730 , -0.688223 , 0.717429 , 0.317456 , 0.975429 , -7.143528 , 18.498283 , -0.820365 , -0.275491 , -0.060976 , 0.959349 , 0.317302 , 0.982041 , -7.409321 , 18.178123 , -0.977717 , 0.127049 , -0.606037 , 0.785180 , 0.308370 , 0.977658 , -3.969982 , 18.111942 , -0.946231 , -0.330515 , -0.590686 , 0.736076 , 0.395662 , 0.973245 , -3.926449 , 18.632122 , -0.798218 , -0.123966 , 0.176824 , 0.976379 , 0.398358 , 0.982778 , -5.103725 , 18.318953 , -1.030741 , -0.062624 , -0.565355 , 0.822443 , 0.365934 , 0.978536 , -6.512089 , 17.729801 , -1.853678 , 0.041231 , -0.910398 , 0.411634 , 0.333658 , 0.958576 , -7.736416 , 17.976933 , -1.238688 , 0.135624 , -0.841395 , 0.523057 , 0.303262 , 0.970400 , -2.866627 , 17.478508 , -0.440337 , -0.182745 , -0.615741 , 0.766442 , 0.423095 , 0.964935 , -3.195255 , 18.830631 , -0.866221 , 0.007050 , 0.454390 , 0.890744 , 0.416471 , 0.992204 , -4.119968 , 15.336552 , -2.895596 , -0.092013 , -0.413953 , 0.905606 , 0.389236 , 0.885416 , -4.919559 , 16.918827 , -2.433116 , -0.270028 , -0.260994 , 0.926786 , 0.367290 , 0.927733 , -4.970097 , 17.352150 , -2.307139 , -0.268380 , -0.455763 , 0.848659 , 0.366205 , 0.939858 , -5.592129 , 17.310041 , -2.584670 , -0.268319 , -0.467910 , 0.842036 , 0.352764 , 0.936624 , -6.061443 , 18.138630 , -1.104769 , -0.012024 , -0.709403 , 0.704672 , 0.344032 , 0.974388 , -6.937634 , 16.999115 , -2.841620 , -0.064516 , -0.024476 , 0.997589 , 0.326466 , 0.926062 , -5.808949 , 18.425051 , -0.895919 , -0.068728 , -0.378430 , 0.923032 , 0.348254 , 0.981692 , -5.539310 , 18.267687 , -0.979758 , 0.062685 , -0.580981 , 0.811457 , 0.357427 , 0.977263 , -8.065199 , 17.225796 , -2.658164 , 0.089022 , -0.794458 , 0.600696 , 0.299459 , 0.935354 , -8.101202 , 17.407963 , -2.386149 , 0.076937 , -0.899350 , 0.430372 , 0.297341 , 0.943370 , -6.466602 , 18.202530 , -1.036254 , 0.029328 , -0.625568 , 0.779595 , 0.331402 , 0.977518 , -8.090437 , 17.918627 , -1.231440 , 0.085513 , -0.827052 , 0.555528 , 0.294666 , 0.967514 , -10.789129 , 17.722092 , -0.955573 , 0.288400 , -0.694998 , 0.658589 , 0.227261 , 0.964475 , -10.550238 , 18.154373 , -0.691268 , 0.119449 , -0.345042 , 0.930937 , 0.232652 , 0.974751 , -13.950171 , 14.737688 , -3.783426 , 0.226417 , -0.672231 , 0.704825 , 0.155180 , 0.868412 , -1.838352 , 18.854954 , -0.862845 , 0.000244 , 0.439253 , 0.898343 , 0.446446 , 0.992265 , -6.773510 , 18.500713 , -0.841344 , 0.031587 , -0.224464 , 0.973937 , 0.323330 , 0.983376 , -8.366316 , 18.227436 , -0.835322 , 0.056124 , -0.490768 , 0.869472 , 0.288464 , 0.975515 , -6.116665 , 18.676947 , -0.851961 , -0.011414 , -0.014679 , 0.999817 , 0.341722 , 0.988287 , -6.488232 , 18.665586 , -0.843579 , 0.028047 , 0.007294 , 0.999573 , 0.331669 , 0.987810 , -11.177336 , 17.992268 , -0.631503 , 0.214087 , -0.228278 , 0.949736 , 0.216539 , 0.970872 , -5.260052 , 18.644121 , -0.849379 , 0.000763 , -0.068514 , 0.997620 , 0.362429 , 0.985711 , -7.317692 , 17.311131 , -2.742991 , 0.014100 , -0.713858 , 0.700125 , 0.317164 , 0.934315 , -13.061369 , 16.517004 , -2.116912 , 0.084201 , -0.761254 , 0.642933 , 0.173464 , 0.925373 , -11.070318 , 17.555195 , -0.982829 , 0.319681 , -0.764794 , 0.559313 , 0.217077 , 0.959984 , -11.612310 , 17.475094 , -0.785655 , 0.320322 , -0.800287 , 0.506851 , 0.203640 , 0.959545 , -8.741026 , 18.312445 , -0.764098 , 0.097659 , -0.310800 , 0.945433 , 0.279612 , 0.977436 , -11.456282 , 18.422626 , -0.672080 , 0.029359 , 0.327738 , 0.944304 , 0.212662 , 0.981911 , -10.950209 , 17.253786 , -1.903018 , 0.200446 , -0.915067 , 0.349895 , 0.224473 , 0.943370 , -10.642218 , 16.899723 , -2.804362 , 0.124607 , -0.873440 , 0.470656 , 0.231776 , 0.924371 , -11.122961 , 17.315372 , -1.579753 , 0.236518 , -0.913572 , 0.330729 , 0.215790 , 0.948120 , -12.124029 , 17.182926 , -1.267009 , 0.198218 , -0.905240 , 0.375774 , 0.192893 , 0.951408 , -10.535627 , 18.506193 , -0.676441 , 0.016846 , 0.247902 , 0.968627 , 0.233409 , 0.980130 , -9.935217 , 18.417007 , -0.675677 , 0.072512 , 0.013092 , 0.997253 , 0.246141 , 0.979801 , -9.235968 , 18.551071 , -0.721917 , 0.010743 , 0.101993 , 0.994720 , 0.268499 , 0.983313 , -13.356443 , 17.691446 , -0.469352 , -0.184210 , -0.105197 , 0.977233 , 0.168455 , 0.969517 , -11.089140 , 18.333467 , -0.641650 , 0.004852 , 0.114475 , 0.993408 , 0.221119 , 0.977234 , -13.046034 , 17.532394 , -0.413227 , -0.111484 , -0.340281 , 0.933683 , 0.175965 , 0.965711 , -8.658941 , 18.729851 , -0.799481 , 0.036775 , 0.265755 , 0.963317 , 0.284235 , 0.984881 , -14.457991 , 17.358185 , -1.137019 , -0.218299 , -0.751701 , 0.622303 , 0.143468 , 0.952799 , -12.506445 , 18.485111 , -0.724253 , -0.065889 , 0.480575 , 0.874447 , 0.185942 , 0.984174 , 11.728497 , -2.616283 , 2.830373 , -0.059114 , -0.598682 , 0.798761 , 0.780974 , 0.383794 , 11.779057 , -0.968891 , 1.479070 , -0.869289 , 0.444197 , -0.216803 , 0.780425 , 0.408820 , 11.861515 , -0.728802 , 1.724366 , -0.826624 , 0.532426 , 0.182165 , 0.786849 , 0.409035 , 11.317310 , -1.832615 , 2.908544 , -0.821955 , 0.451399 , 0.347240 , 0.779467 , 0.392663 , 11.848171 , -2.219334 , 3.121972 , 0.162816 , -0.258797 , 0.952086 , 0.783100 , 0.388591 , 11.594471 , -1.662083 , 3.020944 , -0.192450 , 0.602100 , 0.774834 , 0.782236 , 0.392187 , 11.397564 , -1.959797 , 3.142324 , -0.481063 , 0.091372 , 0.871883 , 0.779605 , 0.390630 , 11.460583 , -2.478779 , 2.876355 , -0.516068 , -0.600177 , 0.611072 , 0.778204 , 0.387836 , 12.048374 , -2.080807 , 3.048185 , 0.575488 , 0.008209 , 0.817743 , 0.786812 , 0.388803 , 11.694180 , -1.490604 , 2.836606 , -0.289895 , 0.726188 , 0.623371 , 0.784023 , 0.393858 , 12.032940 , -1.665882 , 2.940023 , 0.379955 , 0.351146 , 0.855739 , 0.786275 , 0.391758 , 11.939938 , -0.685390 , 2.020684 , -0.385357 , 0.922666 , 0.012238 , 0.785363 , 0.404568 , 11.896069 , -0.748264 , 1.108033 , -0.901791 , -0.141667 , 0.408216 , 0.779768 , 0.421050 , 11.411655 , 0.151455 , 0.378217 , -0.737327 , 0.555589 , 0.384228 , 0.771639 , 0.450815 , 11.607777 , 0.236942 , 0.696412 , -0.736686 , 0.524491 , 0.426771 , 0.779696 , 0.445980 , 11.883320 , -1.073734 , 1.083833 , -0.900632 , 0.399915 , 0.170019 , 0.776756 , 0.415468 , 11.677158 , -0.509182 , 0.989106 , -0.619343 , -0.353954 , 0.700766 , 0.777035 , 0.426132 , 11.565556 , -0.173626 , 1.018842 , -0.666219 , 0.170904 , 0.725852 , 0.776160 , 0.434482 , 11.768902 , -0.865627 , 0.765596 , -0.551134 , 0.008484 , 0.834346 , 0.773109 , 0.421312 , 13.260441 , 1.521313 , -0.804496 , 0.256172 , 0.557543 , 0.789605 , 0.816092 , 0.492176 , 12.174145 , 0.795277 , -0.574073 , -0.346202 , 0.525834 , 0.776910 , 0.784061 , 0.475132 , 12.781979 , 1.885715 , -0.760169 , 0.354503 , 0.431318 , 0.829585 , 0.802633 , 0.501638 , 13.082455 , 1.860348 , -0.911544 , 0.297281 , 0.277779 , 0.913450 , 0.810016 , 0.498867 , 12.869656 , 1.579250 , -0.639373 , 0.339061 , 0.507981 , 0.791803 , 0.804563 , 0.491456 , 12.261570 , 1.393063 , -0.444129 , -0.192480 , 0.096103 , 0.976562 , 0.790615 , 0.485525 , 12.097530 , 1.746952 , -0.539592 , -0.230781 , 0.398022 , 0.887845 , 0.785209 , 0.493602 , 12.109158 , 2.243145 , -0.980685 , -0.147649 , 0.403790 , 0.902829 , 0.784010 , 0.506008 , 12.401424 , 1.818195 , -0.524716 , 0.085086 , 0.476302 , 0.875118 , 0.794549 , 0.495078 , 12.080021 , 1.104031 , -0.547923 , -0.389843 , -0.123447 , 0.912534 , 0.784807 , 0.479649 , 11.551785 , -7.602451 , 1.807580 , -0.057253 , 0.738334 , 0.671957 , 0.779215 , 0.200353 , 12.427601 , 2.098270 , -0.770442 , 0.023591 , 0.576312 , 0.816858 , 0.794621 , 0.506400 , 12.051205 , -4.771313 , 0.469175 , 0.126560 , -0.976714 , -0.173070 , 0.785446 , 0.319307 , 13.517376 , 0.768780 , 0.655530 , 0.071017 , 0.979858 , 0.186499 , 0.821176 , 0.450687 , 13.660275 , 0.419659 , 1.157621 , -0.064119 , 0.738182 , 0.671499 , 0.825483 , 0.438169 , 12.698116 , -1.418995 , 1.978032 , 0.834101 , 0.105838 , 0.541337 , 0.798933 , 0.397207 , 12.707668 , -2.657299 , 2.106244 , 0.124577 , 0.306955 , 0.943510 , 0.799308 , 0.376932 , 12.531239 , -3.178883 , 2.323453 , 0.167028 , 0.338816 , 0.925901 , 0.799426 , 0.367172 , 13.573475 , -3.493145 , 2.199857 , 0.235084 , 0.099094 , 0.966887 , 0.814854 , 0.363156 , 13.067539 , -2.607212 , 2.072530 , 0.113224 , 0.207587 , 0.971618 , 0.813392 , 0.377599 , 13.890514 , -3.102566 , 2.049138 , 0.140385 , 0.343333 , 0.928648 , 0.824975 , 0.370416 , 12.939312 , -1.946354 , 1.924279 , 0.031953 , 0.233192 , 0.971892 , 0.811767 , 0.389713 , 12.694225 , -1.742832 , 1.956319 , 0.644734 , 0.034577 , 0.763604 , 0.803275 , 0.392290 , 15.229733 , -0.155804 , 1.554364 , 0.025086 , 0.947142 , 0.319742 , 0.860205 , 0.430832 , 15.345745 , -0.083561 , 0.841974 , 0.315470 , 0.922452 , 0.222449 , 0.865462 , 0.442831 , 14.778500 , 0.358189 , 1.051370 , 0.475692 , 0.849605 , 0.227699 , 0.851155 , 0.439428 , 14.081989 , -0.994083 , 1.875180 , -0.297006 , -0.019868 , 0.954650 , 0.836063 , 0.408819 , 13.844646 , -0.173702 , 1.508092 , -0.258309 , 0.380444 , 0.887967 , 0.827021 , 0.423208 , 13.626865 , -0.722660 , 1.610574 , -0.246742 , 0.218146 , 0.944182 , 0.821307 , 0.411066 , 13.505672 , -1.609097 , 1.873899 , -0.047548 , 0.305155 , 0.951109 , 0.822392 , 0.397998 , 13.269802 , -1.143818 , 1.546476 , -0.100955 , 0.270363 , 0.957427 , 0.812089 , 0.406542 , 12.896778 , -1.517200 , 1.766366 , 0.349803 , 0.320292 , 0.880337 , 0.808037 , 0.398340 , 12.941730 , 0.632664 , 0.672261 , 0.046907 , 0.900510 , 0.432264 , 0.809998 , 0.451809 , 13.110348 , -6.934139 , 1.182332 , 0.365062 , 0.910764 , 0.192785 , 0.807204 , 0.218415 , 12.968342 , -6.814060 , 0.608430 , 0.200079 , 0.963469 , 0.177984 , 0.805723 , 0.227052 , 13.067715 , 0.765553 , 0.252166 , 0.184698 , 0.868435 , 0.460036 , 0.810133 , 0.461374 , 14.546597 , 0.583546 , 0.095571 , 0.332163 , 0.942289 , 0.041292 , 0.846302 , 0.459590 , 14.219906 , 0.636745 , 0.516240 , 0.179968 , 0.979278 , 0.092593 , 0.838028 , 0.449026 , 15.048641 , 0.237064 , 0.184224 , 0.266884 , 0.919126 , 0.289712 , 0.854290 , 0.451589 , 14.378605 , -0.246212 , 1.885339 , -0.269448 , 0.490951 , 0.828455 , 0.842791 , 0.421344 , 14.510853 , 0.328281 , 1.489858 , 0.175726 , 0.769463 , 0.614002 , 0.839058 , 0.433351 , 14.818050 , -0.254177 , 1.798177 , 0.206336 , 0.732047 , 0.649220 , 0.849792 , 0.429120 , 14.539715 , -0.704876 , 2.193967 , -0.291543 , 0.079928 , 0.953185 , 0.849057 , 0.412967 , 15.126873 , -0.480900 , 2.019330 , -0.310556 , 0.635517 , 0.706839 , 0.855672 , 0.420801 , 13.456226 , -2.223248 , 2.062524 , 0.147862 , 0.005585 , 0.988983 , 0.821996 , 0.387274 , 15.646297 , -0.911709 , 1.920621 , 0.316385 , -0.826228 , 0.466018 , 0.864020 , 0.407524 , 15.484615 , -0.906689 , 2.229703 , 0.321512 , -0.617512 , 0.717826 , 0.863333 , 0.410019 , 15.238781 , -0.954067 , 2.278604 , -0.030885 , -0.422071 , 0.906034 , 0.859608 , 0.411377 , 14.127293 , -2.187695 , 1.628534 , 0.937590 , -0.100375 , 0.332865 , 0.837634 , 0.386867 , 14.209095 , -1.610867 , 1.682740 , 0.423597 , -0.316965 , 0.848537 , 0.838720 , 0.392738 , 14.077488 , -2.587528 , 1.696561 , 0.271676 , 0.310617 , 0.910855 , 0.833290 , 0.381454 , 14.730946 , -1.509243 , 1.401002 , 0.143101 , -0.797143 , 0.586566 , 0.848864 , 0.393744 , 14.506603 , -1.719273 , 1.252332 , 0.447584 , -0.141606 , 0.882931 , 0.845092 , 0.390585 , 14.384083 , -1.856579 , 1.416974 , 0.616260 , 0.019898 , 0.787255 , 0.842701 , 0.389284 , 14.745167 , -1.923679 , 1.314481 , -0.078005 , 0.448653 , 0.890286 , 0.846079 , 0.387437 , 14.282864 , -2.133900 , 1.444482 , 0.458632 , 0.145329 , 0.876644 , 0.840858 , 0.386534 , 14.813740 , -2.143024 , 1.423948 , -0.175817 , 0.361034 , 0.915799 , 0.846648 , 0.381671 , 13.865948 , -1.895535 , 1.928785 , 0.371838 , 0.143254 , 0.917142 , 0.829108 , 0.389824 , 15.641338 , -0.703053 , 2.409887 , 0.365947 , -0.381481 , 0.848842 , 0.864800 , 0.414671 , 15.701015 , -0.791210 , 2.184213 , 0.587542 , -0.662770 , 0.464187 , 0.866312 , 0.411250 , 15.870770 , -0.500729 , 2.132241 , 0.783990 , -0.163976 , 0.598682 , 0.869189 , 0.415507 , 14.944355 , -1.988277 , 1.466909 , -0.493362 , 0.189764 , 0.848842 , 0.852059 , 0.386863 , 15.471394 , -0.373013 , 2.387460 , -0.388684 , 0.401013 , 0.829493 , 0.862442 , 0.417465 , 15.221493 , -2.827816 , 1.720449 , 0.045381 , 0.382397 , 0.922880 , 0.855993 , 0.374148 , 14.701015 , -2.696445 , 1.806585 , 0.111179 , 0.488235 , 0.865566 , 0.843223 , 0.373870 , 15.197735 , -1.671833 , 1.563928 , -0.523362 , 0.172063 , 0.834529 , 0.858594 , 0.389799 , 15.023495 , -1.628719 , 1.413640 , -0.520859 , -0.035371 , 0.852870 , 0.852967 , 0.391153 , 15.190365 , -1.388050 , 1.477151 , -0.216926 , -0.505478 , 0.835109 , 0.856209 , 0.395628 , 14.864834 , -1.728344 , 1.217740 , -0.366558 , -0.071230 , 0.927641 , 0.849028 , 0.389918 , 15.548481 , -1.077053 , 1.665334 , 0.254036 , -0.421369 , 0.870571 , 0.862795 , 0.404172 , 15.332432 , -1.170284 , 1.999036 , 0.403394 , -0.764489 , 0.502762 , 0.859592 , 0.405319 , 15.448528 , -1.246639 , 1.707322 , 0.138432 , -0.474197 , 0.869442 , 0.860366 , 0.401022 , 15.583767 , -1.518238 , 1.720872 , -0.359844 , 0.192114 , 0.912992 , 0.865285 , 0.395599 , 14.844578 , -1.310276 , 1.896112 , 0.018647 , -0.774529 , 0.632221 , 0.851076 , 0.402666 , 15.944630 , -0.724575 , 1.959554 , 0.455580 , -0.224586 , 0.861354 , 0.873854 , 0.412064 , 13.612141 , 0.500942 , 0.057847 , 0.313028 , 0.931730 , 0.183966 , 0.828520 , 0.459991 , 16.206402 , -0.233463 , 0.816453 , 0.383435 , 0.879177 , 0.282846 , 0.881043 , 0.441581 , 15.851315 , 0.161137 , 0.309530 , 0.218696 , 0.906583 , 0.360881 , 0.876960 , 0.450874 , 15.721600 , -0.318073 , 2.369340 , 0.403821 , 0.359691 , 0.841151 , 0.866348 , 0.417909 , 14.820248 , -13.829151 , -0.768973 , -0.158086 , -0.899869 , 0.406446 , 0.852020 , 0.034776 , 14.540089 , -13.553921 , -0.195044 , 0.006043 , -0.959532 , 0.281442 , 0.842013 , 0.052118 , 13.939304 , -13.623249 , -0.982074 , -0.050325 , -0.948210 , 0.313578 , 0.830593 , 0.040802 , 15.780735 , -1.118290 , 1.718717 , -0.273263 , -0.278298 , 0.920774 , 0.867126 , 0.402953 , 14.009144 , -4.333912 , 2.166814 , -0.070254 , -0.557451 , 0.827204 , 0.822032 , 0.349812 , 14.271152 , -4.138927 , 2.276166 , 0.003693 , -0.294931 , 0.955504 , 0.827977 , 0.355186 , 13.768604 , -3.833279 , 2.095418 , 0.091586 , 0.027345 , 0.995392 , 0.821320 , 0.356804 , 14.516102 , -3.909443 , 2.318517 , -0.096469 , -0.179937 , 0.978912 , 0.836961 , 0.358118 , 14.555653 , -3.223782 , 2.101449 , -0.020234 , 0.450819 , 0.892361 , 0.836238 , 0.368169 , 14.090519 , -3.574741 , 2.111558 , -0.079226 , 0.151097 , 0.985321 , 0.827063 , 0.361929 , 15.026173 , -2.897465 , 1.819738 , 0.191076 , 0.498489 , 0.845546 , 0.847986 , 0.369225 , 14.971607 , -3.526371 , 2.330323 , 0.143834 , 0.286996 , 0.947050 , 0.844960 , 0.363143 , 15.358318 , -3.105091 , 1.849225 , 0.427747 , 0.306833 , 0.850185 , 0.856578 , 0.366368 , 14.671299 , -4.081165 , 2.066667 , 0.351238 , -0.825617 , 0.441511 , 0.839070 , 0.352668 , 14.414318 , -4.347668 , 2.043523 , 0.495193 , -0.747581 , 0.442549 , 0.832463 , 0.349499 , 13.428204 , -4.004375 , 2.212034 , 0.362224 , -0.166356 , 0.917112 , 0.814635 , 0.354176 , 15.062511 , -4.050625 , 2.096494 , 0.348369 , -0.811670 , 0.468795 , 0.845372 , 0.355741 , 14.788799 , -4.096729 , 1.646592 , 0.142949 , -0.989502 , 0.020997 , 0.841434 , 0.347484 , 15.285992 , -4.158749 , 1.654516 , 0.328349 , -0.898770 , 0.290384 , 0.850575 , 0.349282 , 13.450794 , -4.574665 , 1.592092 , 0.337291 , -0.933714 , 0.119816 , 0.810342 , 0.339632 , 13.435749 , -4.416561 , 2.038808 , 0.203803 , -0.710257 , 0.673757 , 0.811807 , 0.347017 , 13.885601 , -13.500881 , -0.352767 , -0.042116 , -0.998810 , 0.023743 , 0.827148 , 0.053946 , 14.988888 , -13.105679 , 0.505395 , 0.378826 , -0.707389 , 0.596667 , 0.849978 , 0.065888 , 15.434299 , -13.625393 , -0.276545 , 0.062349 , -0.823328 , 0.564074 , 0.862986 , 0.049289 , 13.018230 , -12.523350 , 1.533277 , -0.167943 , 0.280160 , 0.945128 , 0.808484 , 0.083053 , 13.256924 , -11.994900 , 1.105634 , -0.524338 , 0.197455 , 0.828272 , 0.807095 , 0.091806 , 14.352940 , -7.520786 , 0.521367 , -0.176397 , 0.870815 , 0.458846 , 0.837230 , 0.223582 , 14.039387 , -7.414349 , 0.578767 , 0.489669 , 0.773217 , 0.402875 , 0.829710 , 0.223308 , 14.148762 , -7.541317 , 0.787427 , 0.284188 , 0.952635 , 0.108036 , 0.832291 , 0.219578 , 14.362820 , -7.509632 , 1.058175 , -0.266945 , 0.957457 , 0.109348 , 0.836857 , 0.215299 , 14.698421 , -7.300419 , 0.828481 , -0.516007 , 0.821375 , 0.242958 , 0.843726 , 0.218857 , 14.073917 , -7.540104 , 1.200979 , 0.173772 , 0.964812 , 0.197241 , 0.830059 , 0.213674 , 15.574322 , -3.371593 , 1.610978 , 0.764397 , -0.125248 , 0.632435 , 0.862889 , 0.360840 , 15.747143 , -3.593212 , 1.287381 , 0.791375 , -0.516160 , 0.327494 , 0.868976 , 0.355402 , 15.779484 , -3.096043 , 1.634500 , 0.436079 , -0.350017 , 0.829035 , 0.869393 , 0.365470 , 13.722591 , -13.021328 , 1.408094 , 0.213385 , -0.357891 , 0.909024 , 0.823982 , 0.083689 , 14.426403 , -12.765728 , 1.397180 , 0.513352 , -0.412366 , 0.752586 , 0.833421 , 0.087801 , 13.805485 , -12.301388 , 1.561330 , -0.302316 , -0.294320 , 0.906613 , 0.821206 , 0.094608 , 15.408085 , -13.968014 , -0.827613 , -0.035035 , -0.847957 , 0.528855 , 0.866317 , 0.030711 , 14.698406 , -4.054661 , 1.229451 , 0.031373 , -0.998779 , -0.037843 , 0.838148 , 0.341018 , 15.028492 , -4.198177 , 1.070791 , -0.163549 , -0.985382 , 0.047426 , 0.849068 , 0.340972 , 14.351627 , -4.425282 , 1.799966 , 0.497208 , -0.860927 , -0.107486 , 0.830793 , 0.344257 , 14.176105 , -4.510654 , 1.945680 , 0.131230 , -0.955626 , 0.263680 , 0.826770 , 0.344758 , 14.907375 , -4.003132 , 2.409864 , 0.236763 , -0.579882 , 0.779504 , 0.842444 , 0.358958 , 14.283596 , -4.222942 , 1.116445 , 0.382336 , -0.913572 , -0.138401 , 0.828355 , 0.336971 , 15.453182 , -4.181080 , 1.258321 , 0.513718 , -0.832698 , 0.206580 , 0.860385 , 0.346141 , 15.353153 , -3.595730 , 2.218770 , 0.619648 , 0.012482 , 0.784753 , 0.850878 , 0.360339 , 15.549267 , -3.758823 , 1.830499 , 0.864834 , -0.258919 , 0.430097 , 0.856538 , 0.356264 , 13.869320 , -4.518734 , 1.685865 , 0.156407 , -0.986419 , 0.050111 , 0.819197 , 0.341572 , 15.376583 , -2.209225 , 1.652662 , -0.331187 , -0.011597 , 0.943480 , 0.858946 , 0.381431 , 15.765781 , -2.690754 , 1.733186 , 0.184576 , -0.072573 , 0.980102 , 0.866029 , 0.373976 , 15.560497 , -1.887074 , 1.834920 , -0.396741 , -0.062838 , 0.915769 , 0.865987 , 0.388333 , 15.958340 , -2.264606 , 1.778760 , -0.094485 , -0.313852 , 0.944731 , 0.871731 , 0.382704 , 14.556095 , -4.100697 , 0.771596 , 0.140233 , -0.985504 , 0.095370 , 0.839619 , 0.331036 , 14.783207 , -3.037327 , 1.898023 , 0.171880 , 0.491195 , 0.853908 , 0.843115 , 0.368560 , 15.252094 , -7.842052 , 2.319768 , -0.363750 , 0.477462 , 0.799799 , 0.853713 , 0.190372 , 15.564327 , -8.093433 , 2.679822 , 0.039369 , 0.528184 , 0.848201 , 0.859063 , 0.184403 , 15.718563 , -7.768559 , 2.506986 , 0.082797 , 0.519822 , 0.850215 , 0.861074 , 0.192115 , 14.480976 , -7.088612 , 0.128713 , -0.157903 , 0.921903 , 0.353710 , 0.837304 , 0.228400 , 15.297543 , -6.884388 , 0.672200 , -0.310556 , 0.934629 , 0.173070 , 0.857198 , 0.219210 , 13.886143 , -7.121372 , 0.280404 , 0.458785 , 0.745598 , 0.483291 , 0.826719 , 0.227140 , 13.534679 , -6.842876 , 0.015661 , 0.215644 , 0.965484 , 0.145940 , 0.818763 , 0.231827 , 15.081486 , -6.848476 , -0.466105 , -0.189825 , 0.978088 , 0.085208 , 0.849252 , 0.238018 , 14.504581 , -7.071880 , -0.019328 , -0.039430 , 0.991058 , 0.127293 , 0.840686 , 0.235890 , 15.263172 , -6.791813 , 0.024045 , -0.150700 , 0.987976 , 0.033845 , 0.853033 , 0.230619 , 15.537540 , -4.309673 , -0.250712 , 0.156957 , -0.986206 , 0.052431 , 0.862667 , 0.316143 , 15.157955 , -4.430111 , -0.700358 , 0.211097 , -0.972594 , 0.097171 , 0.851661 , 0.309394 , 15.449909 , -4.308651 , -0.971171 , 0.257271 , -0.966277 , 0.007508 , 0.859851 , 0.303007 , 15.099422 , -4.449993 , -0.769393 , 0.257729 , -0.951689 , 0.166753 , 0.852247 , 0.303272 , 15.543186 , -4.275517 , -1.298737 , 0.035981 , -0.706046 , 0.707205 , 0.862733 , 0.298355 , 13.475765 , -6.872639 , -1.056971 , 0.112003 , 0.782983 , 0.611835 , 0.819300 , 0.249402 , 14.092205 , -6.867649 , -0.782756 , 0.110172 , 0.993133 , 0.039094 , 0.832836 , 0.244098 , 14.020260 , -6.866390 , -1.192420 , 0.104129 , 0.652303 , 0.750755 , 0.831016 , 0.249410 , 14.548527 , -6.897175 , -1.201007 , -0.106479 , 0.642293 , 0.758995 , 0.841405 , 0.250156 , 13.987904 , -6.611752 , -1.174338 , 0.094333 , -0.051607 , 0.994171 , 0.828174 , 0.256235 , 13.054333 , -4.622044 , -0.496135 , 0.009827 , -0.999878 , -0.010285 , 0.807317 , 0.302334 , 14.056858 , -4.563663 , -1.058253 , -0.093600 , -0.990417 , 0.101505 , 0.831627 , 0.295011 , 13.978466 , -4.541553 , -1.283366 , -0.062288 , -0.689200 , 0.721854 , 0.828929 , 0.289297 , 14.300617 , -4.715244 , -1.292990 , -0.068514 , -0.429548 , 0.900418 , 0.837512 , 0.290033 , 13.150845 , -6.852604 , -0.815776 , 0.036775 , 0.989105 , -0.142369 , 0.810851 , 0.245222 , 13.557919 , -4.582775 , 0.133870 , 0.195959 , -0.978484 , 0.064364 , 0.817918 , 0.313461 , 15.694500 , -6.842060 , -0.373698 , 0.066683 , 0.997253 , 0.031343 , 0.861235 , 0.237908 , 15.375217 , -6.704380 , -1.086881 , -0.029908 , 0.641865 , 0.766198 , 0.859536 , 0.250742 , 14.624386 , -4.294857 , -0.014811 , 0.158696 , -0.958831 , 0.235450 , 0.838703 , 0.317778 , 14.488796 , -4.468288 , -0.647135 , 0.105838 , -0.961180 , 0.254738 , 0.837649 , 0.301328 , 15.033260 , -6.773266 , -1.047297 , -0.210273 , 0.742882 , 0.635517 , 0.850173 , 0.248989 , 13.474552 , -6.979488 , 0.693513 , 0.416791 , 0.882962 , 0.215918 , 0.814479 , 0.224425 , 14.026379 , -6.856060 , -0.363284 , 0.199530 , 0.976440 , 0.081820 , 0.828832 , 0.239806 , 14.074184 , -7.180202 , 0.141632 , 0.261757 , 0.171606 , 0.949736 , 0.831867 , 0.227501 , 13.734615 , -11.118114 , 3.265085 , 0.530717 , -0.738823 , 0.415265 , 0.811467 , 0.134081 , 13.592617 , -10.392330 , 4.038922 , 0.629261 , -0.003204 , 0.777154 , 0.809836 , 0.144857 , 15.182369 , -7.162777 , 1.296468 , -0.414747 , 0.814600 , 0.405408 , 0.853051 , 0.211518 , 15.503170 , -6.868603 , 1.152314 , -0.299844 , 0.881344 , 0.365093 , 0.859534 , 0.212611 , 13.785435 , -7.191418 , 0.764844 , 0.655507 , 0.673086 , 0.342357 , 0.821869 , 0.223623 , 15.250561 , -12.655132 , 0.667112 , 0.309030 , -0.276864 , 0.909818 , 0.856994 , 0.079868 , 14.773067 , -12.823063 , 0.991719 , 0.620930 , -0.306040 , 0.721610 , 0.841185 , 0.078408 , 15.832699 , -11.525448 , 1.455465 , 0.489273 , -0.739067 , 0.462966 , 0.872140 , 0.105169 , 16.024342 , -11.302212 , 1.878946 , 0.697531 , -0.667104 , 0.261483 , 0.869773 , 0.114985 , 15.470936 , -11.785778 , 1.719533 , 0.575152 , -0.817835 , 0.017609 , 0.859698 , 0.110605 , 15.779896 , -12.246548 , 1.290403 , -0.628224 , -0.383770 , 0.676748 , 0.872822 , 0.091311 , 15.492741 , -12.238476 , 0.808233 , -0.482986 , -0.439161 , 0.757500 , 0.866019 , 0.087186 , 14.612148 , -12.301929 , 0.982652 , 0.839717 , -0.208655 , 0.501297 , 0.846620 , 0.089914 , 14.950893 , -12.132351 , 0.545133 , 0.320902 , -0.270974 , 0.907498 , 0.857775 , 0.090984 , 15.504429 , -11.838230 , 0.993905 , -0.333384 , -0.726371 , 0.600971 , 0.865643 , 0.096757 , 14.997234 , -11.871868 , 0.978070 , 0.398114 , -0.895505 , 0.198889 , 0.853449 , 0.101233 , 14.888485 , -12.241802 , 1.997579 , 0.330760 , -0.942595 , 0.045351 , 0.845647 , 0.110636 , 15.662998 , -12.653332 , 0.552861 , 0.066469 , -0.615406 , 0.785363 , 0.869925 , 0.079098 , 13.530666 , -7.584911 , 3.023099 , 0.530259 , 0.357860 , 0.768578 , 0.814998 , 0.190393 , 13.237675 , -7.540234 , 3.063401 , 0.005249 , 0.461074 , 0.887326 , 0.810769 , 0.189953 , 13.551006 , -7.934757 , 3.059758 , 0.482589 , 0.167241 , 0.859706 , 0.815136 , 0.186140 , 14.234303 , -13.129528 , 1.059369 , 0.410657 , -0.655416 , 0.633839 , 0.830671 , 0.078991 , 14.296741 , -10.630703 , 3.182164 , -0.028108 , -0.363903 , 0.930998 , 0.827561 , 0.141836 , 15.193371 , -11.290035 , 3.462709 , 0.177679 , -0.457625 , 0.871181 , 0.846085 , 0.135535 , 15.116398 , -12.005245 , 2.741414 , 0.353832 , -0.834834 , 0.421674 , 0.846503 , 0.121614 , 15.594776 , -11.534496 , 2.713739 , 0.717246 , -0.614612 , 0.328257 , 0.860499 , 0.126675 , 13.960629 , -8.357983 , 2.926881 , 0.422010 , 0.599933 , 0.679678 , 0.826850 , 0.182275 , 13.793308 , -8.145954 , 2.889589 , 0.621174 , 0.397565 , 0.675314 , 0.821890 , 0.185767 , 13.595325 , -8.334187 , 3.079004 , 0.395795 , 0.423139 , 0.815027 , 0.819902 , 0.180026 , 13.886776 , -9.912159 , 3.530710 , 0.642415 , 0.189795 , 0.742424 , 0.816332 , 0.154689 , 13.877995 , -9.266392 , 3.447347 , 0.482772 , 0.113437 , 0.868343 , 0.819707 , 0.164580 , 13.232952 , -9.431973 , 3.726049 , 0.258827 , 0.482162 , 0.836940 , 0.808825 , 0.164130 , 14.223858 , -8.267948 , 2.728410 , 0.177160 , 0.591418 , 0.786615 , 0.830288 , 0.184890 , 14.049503 , -8.112988 , 2.556001 , 0.342326 , 0.801050 , 0.490982 , 0.827241 , 0.188345 , 12.870388 , -7.754848 , 3.114835 , 0.350627 , 0.414777 , 0.839625 , 0.805664 , 0.184649 , 13.038258 , -8.571667 , 3.233293 , 0.224738 , 0.339274 , 0.913419 , 0.806504 , 0.176583 , 14.719738 , -10.100773 , 3.737191 , -0.291635 , 0.044160 , 0.955473 , 0.842066 , 0.146731 , 14.558155 , -9.724773 , 3.458074 , -0.568957 , 0.625965 , 0.533280 , 0.841781 , 0.155776 , 14.254467 , -10.079548 , 3.301954 , -0.971252 , 0.160741 , 0.175481 , 0.835448 , 0.150668 , 13.394932 , -12.607563 , 1.505498 , -0.026734 , 0.084323 , 0.996063 , 0.815661 , 0.086139 , 12.609310 , -7.890820 , 3.444490 , 0.353832 , 0.448561 , 0.820704 , 0.797076 , 0.184959 , 12.631809 , -7.444698 , 3.050176 , 0.158086 , 0.859737 , 0.485611 , 0.799680 , 0.189294 , 14.254810 , -7.716175 , 1.691186 , 0.003021 , 0.884640 , 0.466231 , 0.833323 , 0.204770 , 14.544125 , -7.597652 , 1.563680 , -0.287759 , 0.864071 , 0.412946 , 0.840547 , 0.206338 , 13.792133 , -11.815708 , 1.985383 , -0.708762 , -0.526780 , 0.469161 , 0.822109 , 0.108793 , 14.497494 , -9.793415 , 2.946466 , -0.163121 , 0.557146 , 0.814203 , 0.830254 , 0.158257 , 14.219585 , -8.793316 , 3.198247 , 0.520615 , 0.378887 , 0.765099 , 0.828346 , 0.172933 , 13.352551 , -7.014133 , 1.065282 , 0.484634 , 0.823969 , 0.293497 , 0.812291 , 0.219466 , 14.542614 , -8.088673 , 2.590722 , 0.357036 , 0.681051 , 0.639241 , 0.833677 , 0.187322 , 14.309185 , -8.546062 , 2.821462 , 0.524766 , 0.442549 , 0.727134 , 0.833272 , 0.181464 , 13.492321 , -7.180790 , 1.230745 , 0.580096 , 0.759362 , 0.294656 , 0.815410 , 0.216168 , 12.895931 , -6.941837 , 1.618257 , 0.390301 , 0.849391 , 0.355174 , 0.804896 , 0.211406 , 14.954235 , -9.205090 , 2.796575 , -0.266701 , 0.589190 , 0.762688 , 0.842396 , 0.167159 , 15.345852 , -8.340305 , 2.865426 , -0.281899 , 0.492721 , 0.823237 , 0.853767 , 0.179672 , 15.052998 , -8.588566 , 2.673898 , -0.469710 , 0.344859 , 0.812647 , 0.846902 , 0.179695 , 15.320690 , -8.695583 , 2.942220 , -0.406659 , 0.360546 , 0.839381 , 0.851397 , 0.173177 , 14.817516 , -7.786129 , 2.060113 , -0.303537 , 0.768334 , 0.563433 , 0.845007 , 0.196868 , 14.382755 , -7.913326 , 2.007596 , -0.110050 , 0.899899 , 0.421949 , 0.835942 , 0.198151 , 14.572117 , -7.960018 , 2.323919 , 0.034181 , 0.860195 , 0.508774 , 0.838927 , 0.191586 , 13.971241 , -7.889362 , 2.057691 , 0.429182 , 0.835658 , 0.342692 , 0.825995 , 0.198975 , 13.574184 , -8.826176 , 3.478841 , 0.153844 , 0.410047 , 0.898984 , 0.814664 , 0.172762 , 13.293941 , -8.207951 , 3.144952 , 0.131932 , 0.256172 , 0.957579 , 0.812392 , 0.180067 , 13.599613 , -7.502148 , 2.292839 , 0.680471 , 0.732109 , 0.030427 , 0.816056 , 0.198636 , 13.615376 , -7.491451 , 1.842328 , 0.611744 , 0.770409 , 0.179510 , 0.818672 , 0.204971 , 15.385639 , -10.450863 , 3.511159 , 0.340373 , -0.183843 , 0.922117 , 0.851232 , 0.144549 , 13.025951 , -7.305538 , 2.554979 , -0.118931 , 0.984069 , 0.132054 , 0.806340 , 0.196046 , 14.652966 , -8.768337 , 2.612958 , 0.357585 , 0.315561 , 0.878903 , 0.839500 , 0.176688 , 13.249714 , -8.782047 , 3.386037 , -0.130680 , 0.460829 , 0.877773 , 0.806835 , 0.170803 , 14.732288 , -8.380627 , 2.585313 , 0.390423 , 0.361003 , 0.846889 , 0.840786 , 0.184455 , 15.255123 , -7.540707 , 2.021810 , -0.261422 , 0.801996 , 0.537034 , 0.853476 , 0.198386 , 15.043606 , -7.773678 , 2.232591 , -0.360668 , 0.558611 , 0.746879 , 0.849930 , 0.193624 , 15.003132 , -8.956295 , 2.649091 , -0.377331 , 0.332621 , 0.864254 , 0.845088 , 0.174213 , 15.013851 , -9.454838 , 3.296594 , -0.427198 , 0.654561 , 0.623676 , 0.850230 , 0.159790 , 15.247082 , -9.855900 , 3.670507 , 0.053774 , 0.158757 , 0.985839 , 0.850070 , 0.151923 , 13.545170 , -7.354755 , 2.799707 , 0.606403 , 0.743706 , 0.281350 , 0.813806 , 0.193461 , 14.960384 , -8.050983 , 2.281900 , -0.020508 , 0.417463 , 0.908444 , 0.846590 , 0.189514 , 14.969891 , -8.419819 , 2.417211 , 0.108798 , 0.650533 , 0.751640 , 0.846387 , 0.184644 , 15.156223 , -8.212460 , 2.345834 , -0.424055 , 0.421583 , 0.801508 , 0.851112 , 0.184756 , 14.012707 , -11.475597 , 2.659471 , -0.549120 , -0.650166 , 0.525071 , 0.821114 , 0.123879 , 14.427959 , -12.119938 , 2.454896 , -0.343028 , -0.843776 , 0.412671 , 0.834580 , 0.115644 , 13.228382 , -7.260799 , 2.803594 , -0.034150 , 0.932585 , 0.359294 , 0.809495 , 0.193494 , 13.232891 , -7.315426 , 2.259238 , 0.284982 , 0.955596 , 0.074648 , 0.809635 , 0.200128 , 14.459278 , -12.327785 , 1.582246 , 0.309244 , -0.850551 , 0.425336 , 0.836744 , 0.101229 , 13.744198 , -7.421558 , 1.228204 , 0.542100 , 0.802423 , 0.249458 , 0.821840 , 0.214329 , 12.927563 , -7.436085 , 2.838475 , -0.085757 , 0.846553 , 0.525315 , 0.805423 , 0.191339 , 15.227024 , -9.068478 , 3.088514 , -0.685293 , 0.561174 , 0.464125 , 0.852272 , 0.166210 , 12.386486 , -7.480999 , 3.118703 , -0.432539 , 0.795129 , 0.424970 , 0.795469 , 0.188279 , 15.855358 , -10.761433 , 3.190931 , 0.690481 , -0.379955 , 0.615497 , 0.859269 , 0.139569 , 13.306034 , -7.261532 , 1.806833 , 0.478042 , 0.843257 , 0.245613 , 0.811871 , 0.206839 , 13.925732 , -7.595371 , 1.556646 , 0.367107 , 0.878048 , 0.306955 , 0.825771 , 0.208169 , 13.744205 , -7.826778 , 2.734365 , 0.836573 , 0.423719 , 0.347209 , 0.820208 , 0.191855 , 13.851757 , -7.925930 , 2.362493 , 0.840663 , 0.429609 , 0.329661 , 0.826227 , 0.193074 , 14.208210 , -8.050068 , 2.374643 , 0.034791 , 0.935789 , 0.350810 , 0.831363 , 0.192951 , 13.017918 , -9.174824 , 3.536569 , 0.073733 , 0.509903 , 0.857051 , 0.802944 , 0.167939 , 14.572552 , -11.676395 , 3.097097 , -0.367138 , -0.540849 , 0.756737 , 0.835199 , 0.127708 , 15.536106 , -9.393948 , 3.582971 , 0.065523 , 0.298929 , 0.951994 , 0.856397 , 0.155664 , 15.599552 , -8.715412 , 3.009107 , 0.080233 , 0.703207 , 0.706412 , 0.858912 , 0.168918 , 14.842281 , 0.435200 , -0.378947 , -0.008942 , 0.972930 , 0.230842 , 0.852797 , 0.467592 , 14.381489 , 0.507931 , -0.363501 , 0.208838 , 0.973052 , -0.097507 , 0.844160 , 0.466824 , 13.921001 , 0.581234 , -0.356272 , 0.392376 , 0.802545 , 0.449324 , 0.836501 , 0.466617 , 15.941380 , 0.187695 , -0.205764 , 0.409131 , 0.842128 , 0.351238 , 0.879045 , 0.459695 , 15.412464 , 0.492107 , -0.233287 , 0.063540 , 0.884243 , 0.462600 , 0.863700 , 0.462858 , 15.910191 , 0.452991 , -0.440936 , 0.438887 , 0.700705 , 0.562426 , 0.873787 , 0.466312 , 15.947559 , 0.995243 , -1.019943 , -0.008911 , 0.285989 , 0.958159 , 0.875928 , 0.481774 , 14.147121 , 0.616596 , -0.541426 , 0.467147 , 0.709342 , 0.527787 , 0.841038 , 0.471873 , 14.434124 , 0.469913 , -0.657561 , 0.309641 , 0.891354 , 0.330943 , 0.846970 , 0.472405 , 15.803905 , -4.274738 , 0.546270 , 0.472793 , -0.803095 , 0.362560 , 0.867605 , 0.332612 , 15.720135 , -4.240322 , -0.618754 , 0.267739 , -0.963378 , 0.012268 , 0.869255 , 0.310392 , 15.589893 , -4.184933 , 0.883489 , 0.890164 , 0.214820 , 0.401746 , 0.865972 , 0.341669 , 13.794537 , -4.443798 , 1.145482 , 0.392590 , -0.900204 , -0.188299 , 0.819819 , 0.335135 , -13.963552 , -3.533421 , -1.161353 , -0.014893 , -0.087924 , 0.996002 , 0.161763 , 0.319753 , -5.860928 , -4.904064 , -1.035393 , -0.038026 , -0.116855 , 0.992401 , 0.352333 , 0.286986 , -14.303205 , -3.433308 , -1.108058 , 0.309610 , -0.560839 , 0.767846 , 0.155894 , 0.326119 , -15.160337 , -14.536915 , 1.745885 , -0.067293 , -0.866237 , 0.495041 , 0.120536 , 0.061843 , 3.004238 , 18.625111 , -0.914939 , 0.101810 , 0.264870 , 0.958892 , 0.567563 , 0.984669 , -19.312170 , 0.425190 , 1.435201 , -0.564409 , 0.677114 , 0.472121 , 0.023859 , 0.434352 , -19.495535 , -0.358669 , 1.669648 , -0.727317 , 0.509629 , 0.459578 , 0.016254 , 0.424174 , -19.315443 , 0.168789 , 1.864537 , -0.756096 , 0.527818 , 0.386883 , 0.025682 , 0.423572 , -17.622908 , 1.298359 , -1.044112 , 0.261696 , 0.373333 , 0.889981 , 0.067905 , 0.485898 , -19.188574 , -14.547802 , 2.130521 , 0.015473 , -0.999725 , 0.017182 , 0.024898 , 0.035423 , -18.402037 , 18.589748 , -0.890639 , 0.008301 , 0.270333 , 0.962706 , 0.044440 , 0.982487 , -19.374670 , 18.381710 , -0.891558 , -0.106784 , 0.328379 , 0.938475 , 0.019624 , 0.977650 , 17.109135 , 3.559467 , -0.951167 , -0.020020 , 0.021577 , 0.999542 , 0.897163 , 0.540537 , 17.102978 , 2.368084 , -0.919659 , -0.035829 , 0.026887 , 0.998993 , 0.899531 , 0.513389 , 16.330807 , 2.165752 , -0.956542 , -0.049257 , -0.006653 , 0.998749 , 0.882368 , 0.508599 , 15.620869 , -0.019382 , 2.027074 , -0.101413 , 0.949004 , 0.298471 , 0.865685 , 0.422721 , 16.023533 , -0.184277 , 1.743699 , 0.568499 , 0.758263 , 0.319071 , 0.872109 , 0.422656 , 15.863255 , -0.923542 , 1.831884 , -0.157994 , -0.533616 , 0.830805 , 0.869233 , 0.407804 , 16.061886 , -1.109356 , 1.943341 , -0.159886 , -0.293985 , 0.942320 , 0.874746 , 0.405381 , 15.872318 , -0.185719 , 2.146753 , 0.643269 , 0.544694 , 0.538011 , 0.869522 , 0.419329 , 15.980824 , -1.399288 , 1.765451 , -0.152074 , 0.126835 , 0.980163 , 0.873292 , 0.399390 , 15.802372 , -3.595264 , 0.828569 , 0.745903 , -0.614856 , 0.256020 , 0.870903 , 0.345957 , 15.887691 , -3.677471 , 0.490079 , 0.720969 , -0.369732 , 0.586047 , 0.877675 , 0.341289 , 16.046108 , -4.158680 , -0.926745 , -0.060244 , -0.907529 , 0.415571 , 0.874304 , 0.309507 , 15.831600 , -6.776020 , -1.018782 , 0.153752 , 0.761803 , 0.629261 , 0.870844 , 0.248284 , 15.918789 , -6.534252 , -1.102872 , -0.014313 , 0.115635 , 0.993164 , 0.873885 , 0.254600 , 16.160694 , -13.321377 , -0.062545 , 0.073275 , -0.746849 , 0.660909 , 0.884140 , 0.058359 , 15.919521 , -8.305363 , 2.431600 , 0.349803 , 0.389294 , 0.852077 , 0.865996 , 0.180274 , 16.064121 , -8.954845 , 3.001310 , 0.423322 , 0.481124 , 0.767632 , 0.866354 , 0.164726 , 15.499966 , -8.932400 , 3.379705 , -0.136326 , 0.683126 , 0.717429 , 0.858207 , 0.161863 , 15.824253 , -7.578594 , 2.394479 , -0.278115 , 0.631367 , 0.723869 , 0.866810 , 0.193289 , 15.640598 , -13.097752 , 0.251996 , 0.212592 , -0.634968 , 0.742698 , 0.867284 , 0.067653 , 15.965122 , 6.775827 , -1.014284 , -0.002564 , 0.005493 , 0.999969 , 0.872229 , 0.631760 , 17.022900 , 5.329977 , -0.981633 , -0.005921 , 0.020600 , 0.999756 , 0.893812 , 0.584335 , 19.189945 , 3.760433 , -0.923404 , -0.005463 , 0.026399 , 0.999634 , 0.946534 , 0.549027 , 20.180874 , 2.972187 , -0.901305 , 0.006348 , 0.002869 , 0.999969 , 0.975706 , 0.525088 , 19.468281 , 2.444096 , -0.900972 , 0.012116 , 0.009003 , 0.999878 , 0.957608 , 0.512434 , 16.641171 , -5.407230 , -1.169492 , 0.022401 , 0.082339 , 0.996338 , 0.894430 , 0.276655 , -19.798697 , 14.633610 , -2.072398 , 0.893674 , -0.036744 , 0.447188 , 0.010027 , 0.867864 , -9.313910 , 19.145205 , -1.014994 , -0.004120 , 0.445479 , 0.895260 , 0.262254 , 0.995344 , -19.798635 , 8.879629 , -1.268821 , 0.558550 , 0.362102 , 0.746208 , 0.009603 , 0.700337 , -19.798635 , 1.378101 , -0.400168 , -0.333415 , 0.808618 , 0.484664 , 0.010026 , 0.479884 , -15.490744 , 19.145205 , -1.014994 , -0.022736 , 0.215033 , 0.976318 , 0.113383 , 0.994470 , -19.744108 , -9.993176 , 1.103093 , -0.050752 , 0.987396 , 0.149754 , 0.024030 , 0.143273 , 20.633846 , -1.416340 , 1.684884 , -0.081606 , -0.150914 , 0.985168 , 0.987809 , 0.397556 , 20.838741 , -9.918797 , -3.283626 , -0.031953 , -0.026368 , 0.999115 , 0.997006 , 0.149707 , -19.798635 , 15.279316 , -1.872435 , 0.763024 , -0.443495 , 0.470199 , 0.009993 , 0.881128 , 20.781422 , 1.378231 , -0.969104 , 0.075747 , -0.079318 , 0.993957 , 0.992957 , 0.482110 , 20.781429 , 0.345890 , 0.864354 , -0.327372 , 0.855586 , 0.400952 , 0.989998 , 0.442920 , 20.781429 , 11.217875 , -1.014437 , 0.000519 , -0.000214 , 0.999969 , 0.965056 , 0.768052 , -19.798632 , 3.044003 , -1.021235 , 0.037446 , -0.031678 , 0.998779 , 0.010027 , 0.528643 , -19.798635 , 2.046383 , -1.007563 , 0.117710 , 0.083316 , 0.989532 , 0.010027 , 0.501552 , -19.798628 , 1.670506 , -0.935652 , 0.058260 , 0.600299 , 0.797632 , 0.010027 , 0.489314 , 20.781414 , -3.207188 , -1.244494 , 0.260689 , -0.527970 , 0.808222 , 0.997006 , 0.346126 , -19.798223 , -10.100803 , 1.572179 , -0.102542 , 0.959075 , 0.263863 , 0.018089 , 0.141877 , -19.798628 , -10.181858 , 1.793563 , -0.135105 , 0.923399 , 0.359203 , 0.015700 , 0.140095 , -3.521626 , 19.145838 , -1.014994 , -0.013123 , 0.425336 , 0.904904 , 0.406876 , 0.996550 , -19.798635 , 2.431049 , -1.020961 , 0.090213 , 0.050783 , 0.994598 , 0.010027 , 0.510702 , 20.754681 , -5.661671 , -1.072336 , -0.016999 , 0.052980 , 0.998444 , 0.991938 , 0.275680 , -19.798635 , -0.688854 , 1.917585 , -0.563311 , 0.760186 , 0.323710 , 0.009926 , 0.419113 , -19.798613 , -0.808170 , 2.197812 , -0.654622 , 0.560564 , 0.507157 , 0.010124 , 0.413834 , -2.845516 , 19.145205 , -1.014994 , -0.005524 , 0.443800 , 0.896084 , 0.427566 , 0.996178 , 20.758633 , 0.694347 , -0.941859 , -0.016907 , 0.539506 , 0.841792 , 0.994492 , 0.462693 , 20.647198 , -6.851086 , -1.027388 , -0.004822 , 0.032380 , 0.999451 , 0.986658 , 0.238388 , -19.798635 , -14.000187 , 3.307828 , -0.120304 , -0.891293 , 0.437147 , 0.008627 , 0.036831 , 20.781399 , -2.923557 , -0.803550 , 0.359325 , -0.822321 , 0.441145 , 0.996237 , 0.353170 , -19.798635 , -1.351940 , 2.557206 , -0.224036 , 0.464766 , 0.856594 , 0.010027 , 0.402305 , -19.798635 , -14.116482 , 2.605115 , -0.346904 , -0.840693 , 0.415754 , 0.009645 , 0.031277 , -19.924398 , 11.968750 , -2.418200 , 0.906491 , -0.046419 , 0.419599 , 0.010278 , 0.789804 , -19.798635 , 9.198565 , -1.319148 , 0.622272 , -0.031190 , 0.782159 , 0.010027 , 0.708784 , -19.744909 , -3.535465 , 0.653669 , -0.727103 , -0.670888 , 0.145482 , 0.019540 , 0.340918 , -19.814741 , 17.789694 , -0.697192 , -0.360942 , 0.376019 , 0.853389 , 0.010027 , 0.959760 , -19.888098 , -11.093182 , 3.706376 , -0.138646 , 0.568590 , 0.810846 , 0.010027 , 0.119144 , -19.798635 , 11.196173 , -2.239527 , 0.530625 , 0.749748 , 0.395306 , 0.010005 , 0.767241 , 20.854832 , -8.538906 , -3.257037 , -0.007752 , -0.010376 , 0.999908 , 0.997006 , 0.190017 , 20.958920 , -8.180660 , -3.255709 , -0.004089 , -0.004913 , 0.999969 , 0.997006 , 0.199273 , -19.798635 , 14.261288 , -2.092265 , 0.893582 , -0.042756 , 0.446822 , 0.010027 , 0.856967 , -19.841681 , -10.342457 , -0.575610 , 0.189306 , 0.954741 , -0.229286 , 0.014610 , 0.145632 , -19.957785 , -10.353230 , -0.855769 , 0.023103 , 0.873684 , 0.485885 , 0.012424 , 0.147986 , 20.781429 , -5.165478 , -1.104747 , -0.023255 , 0.067873 , 0.997406 , 0.996627 , 0.289009 , 19.499378 , -10.030231 , -0.651377 , 0.982025 , 0.151708 , -0.112156 , 0.958118 , 0.140886 , -19.798967 , 15.519108 , -1.623111 , 0.651509 , -0.621265 , 0.435316 , 0.010027 , 0.893787 , -10.358099 , 19.145838 , -1.014994 , 0.003235 , 0.444685 , 0.895657 , 0.233357 , 0.993654 , 20.660053 , -2.108875 , -0.019583 , -0.132756 , -0.841090 , 0.524308 , 0.992501 , 0.374997 , 20.765850 , -2.537083 , -0.286528 , 0.019501 , -0.322550 , 0.946318 , 0.996772 , 0.365549 , -19.798635 , 14.969244 , -2.037429 , 0.886258 , -0.149876 , 0.438215 , 0.009993 , 0.881128 , 20.822613 , 0.109127 , 0.022786 , -0.072878 , 0.994995 , 0.068087 , 0.987914 , 0.446451 , 20.732105 , -11.201969 , -3.296515 , -0.030213 , -0.012635 , 0.999451 , 0.995806 , 0.111672 , -19.798574 , -4.895901 , -1.109980 , -0.124516 , -0.109287 , 0.986175 , 0.010355 , 0.287468 , -19.798635 , -7.518085 , -0.969920 , 0.019105 , -0.001221 , 0.999786 , 0.015455 , 0.224686 , 20.749104 , 1.023594 , -1.019542 , 0.134953 , 0.039735 , 0.990020 , 0.996613 , 0.469784 , -19.799376 , 15.974293 , -1.095912 , 0.440107 , -0.440779 , 0.782281 , 0.010037 , 0.907067 , -19.798628 , 15.808544 , -1.252589 , 0.522172 , -0.563036 , 0.640522 , 0.010027 , 0.902254 , -19.798635 , 15.679474 , -1.348918 , 0.576891 , -0.612781 , 0.540025 , 0.010027 , 0.898476 , -4.664494 , 19.145205 , -1.014994 , 0.002472 , 0.395123 , 0.918607 , 0.377321 , 0.997201 , -19.650274 , -10.073147 , 0.323102 , -0.139683 , 0.943724 , -0.299661 , 0.025048 , 0.145970 , -16.517035 , 19.145205 , -1.014994 , -0.016358 , 0.086825 , 0.996063 , 0.090109 , 0.995388 , -19.605223 , -3.482677 , 0.191156 , -0.628986 , -0.701315 , 0.335368 , 0.018447 , 0.333810 , -19.798635 , -13.604549 , 3.700025 , -0.115146 , -0.447798 , 0.886654 , 0.006573 , 0.046591 , 20.781414 , -2.775402 , -0.392668 , 0.177465 , -0.722434 , 0.668264 , 0.995106 , 0.359376 , -19.798651 , 1.470280 , -0.649527 , -0.241340 , 0.887204 , 0.393170 , 0.010026 , 0.482581 , -19.754820 , 10.237206 , -1.283614 , 0.644948 , 0.161443 , 0.746940 , 0.011092 , 0.739184 , -19.798628 , 10.409428 , -1.276572 , 0.672689 , 0.260903 , 0.692343 , 0.010155 , 0.744272 , -19.792387 , 10.009220 , -1.224055 , 0.581469 , 0.049867 , 0.812006 , 0.010027 , 0.729536 , -19.848547 , 1.036732 , -0.079848 , -0.542497 , 0.671010 , 0.505356 , 0.004160 , 0.463315 , 20.781422 , 2.491741 , -0.920546 , 0.012360 , -0.024567 , 0.999603 , 0.990120 , 0.513689 , 20.781422 , 1.846622 , -0.939257 , 0.030396 , -0.039674 , 0.998749 , 0.990880 , 0.500811 , -19.798635 , 0.400181 , 0.564142 , -0.775445 , 0.511246 , 0.370464 , 0.007047 , 0.455373 , -19.798635 , 18.077669 , -0.842116 , -0.244850 , 0.436781 , 0.865566 , 0.010401 , 0.967820 , 20.623188 , -0.422871 , 1.154935 , -0.325571 , 0.457961 , 0.827204 , 0.987018 , 0.427711 , -19.798635 , 7.390869 , -0.978900 , -0.060121 , -0.117862 , 0.991180 , 0.010027 , 0.660368 , 2.698025 , 19.145205 , -1.014994 , 0.063784 , 0.297769 , 0.952483 , 0.552963 , 0.997655 , -18.075033 , 19.145205 , -1.014994 , 0.043855 , 0.174535 , 0.983642 , 0.053603 , 0.996503 , -19.798788 , -12.253765 , 4.004201 , -0.303079 , -0.126713 , 0.944487 , 0.010027 , 0.083325 , -19.798635 , -12.822269 , 3.809777 , -0.342174 , -0.206275 , 0.916684 , 0.010027 , 0.064247 , -19.798635 , 15.422960 , -1.696826 , 0.778771 , -0.429426 , 0.457259 , 0.010027 , 0.890968 , -19.800520 , 13.853580 , -2.153666 , 0.887783 , -0.094119 , 0.450484 , 0.010027 , 0.845409 , 20.604191 , -4.539814 , -1.154444 , -0.015229 , 0.077486 , 0.996857 , 0.989093 , 0.303938 , 20.781422 , -11.700336 , -3.302447 , -0.053743 , -0.008606 , 0.998505 , 0.997006 , 0.097085 , -19.848288 , 12.262096 , -2.549563 , 0.916288 , -0.082308 , 0.391919 , 0.010027 , 0.797941 , 20.742260 , -2.839909 , -0.611972 , 0.417585 , -0.819178 , 0.393078 , 0.994880 , 0.356491 , -19.837851 , 6.303869 , -1.001022 , 0.007965 , -0.010743 , 0.999908 , 0.010114 , 0.612253 , -12.606298 , 19.145205 , -1.014994 , -0.014924 , 0.388195 , 0.921415 , 0.181581 , 0.995728 , -19.817236 , -2.810078 , 2.465261 , -0.179846 , -0.852260 , 0.491195 , 0.011662 , 0.359539 , -19.798635 , -4.492596 , -1.072734 , -0.424970 , -0.118839 , 0.897366 , 0.010027 , 0.308051 , 20.781422 , -13.863415 , -3.273986 , -0.012848 , 0.026490 , 0.999542 , 0.997004 , 0.033773 , -19.789022 , 12.815006 , -2.458537 , 0.889248 , -0.154424 , 0.430525 , 0.009998 , 0.813140 , 20.781429 , 6.148012 , -0.997325 , -0.002136 , 0.019471 , 0.999786 , 0.997015 , 0.619495 , 20.781429 , 4.390612 , -0.941855 , -0.000671 , 0.030946 , 0.999512 , 0.997006 , 0.568058 , 20.781414 , -1.983540 , 0.453958 , -0.052461 , -0.991272 , 0.120914 , 0.996234 , 0.381766 , -19.798628 , -8.416439 , -0.991557 , 0.038026 , -0.038026 , 0.998535 , 0.017428 , 0.195166 , -19.798635 , 16.878878 , -0.814021 , 0.070467 , -0.470473 , 0.879574 , 0.010027 , 0.933582 , -19.798635 , 17.219610 , -0.633223 , -0.146062 , -0.354320 , 0.923643 , 0.010027 , 0.943555 , 20.781422 , -10.237133 , -3.290232 , -0.045564 , -0.010468 , 0.998901 , 0.997006 , 0.139912 , -19.798635 , 7.182022 , -0.993315 , -0.008606 , -0.048585 , 0.998779 , 0.010027 , 0.643578 , -19.798651 , -10.762325 , 3.463182 , -0.244484 , 0.801233 , 0.546098 , 0.010026 , 0.124540 , -10.757299 , -9.903835 , 0.093129 , 0.211402 , 0.779900 , 0.589068 , 0.228328 , 0.178387 , 2.389828 , 1.290714 , -0.713145 , -0.649159 , 0.533189 , 0.542436 , 0.544870 , 0.490155 , 6.334835 , 0.855534 , -0.812480 , -0.285806 , 0.541307 , 0.790735 , 0.649585 , 0.475296 , -19.778845 , 11.606941 , -2.796138 , 0.831874 , 0.223609 , 0.507859 , 0.010508 , 0.779275 , -19.754248 , -3.798573 , -0.165545 , -0.494034 , -0.607868 , 0.621601 , 0.012553 , 0.326196 , -5.864269 , 19.145205 , -1.014994 , -0.000610 , 0.326487 , 0.945189 , 0.348892 , 0.997120 , -19.798635 , -4.086864 , -0.687773 , -0.678915 , -0.611377 , 0.406507 , 0.010071 , 0.319884 , -19.798628 , 17.497751 , -0.594393 , -0.340220 , 0.041963 , 0.939390 , 0.010027 , 0.949492 , 20.781422 , -9.638111 , -3.278319 , 0.003204 , -0.018159 , 0.999817 , 0.997006 , 0.160299 , -19.798628 , 3.565983 , -1.014811 , 0.026551 , -0.008240 , 0.999603 , 0.010027 , 0.547902 , 20.781445 , -8.846607 , -3.263182 , -0.001434 , -0.015900 , 0.999847 , 0.997006 , 0.181396 , 20.781422 , -6.038242 , -1.060031 , -0.006623 , 0.036439 , 0.999298 , 0.997006 , 0.262811 , -19.798712 , -9.919216 , -1.045420 , -0.164098 , 0.334422 , 0.928007 , 0.014378 , 0.156440 , 20.781422 , 3.311626 , -0.909457 , 0.006653 , 0.014435 , 0.999847 , 0.997006 , 0.536269 , 20.748409 , -12.958691 , -3.285651 , -0.015961 , 0.055940 , 0.998291 , 0.996604 , 0.060459 , 20.737652 , -13.219349 , -3.269400 , -0.161382 , -0.007904 , 0.986847 , 0.995941 , 0.052624 , 20.781429 , -7.627544 , -1.010363 , 0.486770 , -0.230110 , 0.842647 , 0.990930 , 0.220026 , 20.727581 , -3.521091 , -1.227198 , 0.074221 , 0.046297 , 0.996155 , 0.995696 , 0.336487 , -19.996809 , -14.147106 , 1.622064 , -0.020295 , -0.921751 , -0.387219 , 0.017133 , 0.028857 , -19.798628 , -2.142956 , 2.949037 , -0.193091 , 0.260964 , 0.945830 , 0.010027 , 0.376824 , -19.637045 , -2.949841 , 1.671636 , -0.750267 , -0.661061 , -0.007050 , 0.017543 , 0.353749 , -19.816427 , -2.907932 , 1.933179 , -0.429273 , -0.901547 , -0.054079 , 0.012233 , 0.353367 , -19.798628 , -1.657177 , 2.872258 , 0.105899 , 0.472732 , 0.874783 , 0.010027 , 0.391043 , -19.820166 , 8.512989 , -1.054312 , 0.269570 , 0.476455 , 0.836818 , 0.009943 , 0.688618 , -7.059574 , 19.145838 , -1.014994 , -0.004913 , 0.261147 , 0.965270 , 0.322685 , 0.992264 , -19.456511 , -14.280087 , -0.344500 , 0.028352 , -0.616474 , 0.786859 , 0.024322 , 0.015312 , -19.846846 , -10.236790 , -0.252913 , 0.136479 , 0.937468 , -0.320139 , 0.017569 , 0.144980 , -19.678274 , -10.177120 , -0.013564 , -0.004303 , 0.938078 , -0.346385 , 0.021111 , 0.146240 , -19.798643 , -2.397999 , 3.043412 , -0.447707 , -0.104678 , 0.887997 , 0.010037 , 0.369356 , -19.822264 , -10.043804 , 0.592969 , -0.294778 , 0.940764 , -0.167455 , 0.025659 , 0.144793 , -19.798635 , -10.314503 , 2.116201 , -0.155492 , 0.924619 , 0.347667 , 0.014585 , 0.136890 , -8.263617 , 19.145838 , -1.014994 , 0.020692 , 0.433515 , 0.900876 , 0.297468 , 0.997595 , -19.866201 , -13.849758 , 0.540311 , 0.267586 , -0.954375 , -0.132328 , 0.018547 , 0.024206 , 20.953243 , 8.336868 , -1.013186 , -0.001221 , 0.003174 , 0.999969 , 0.997006 , 0.682670 , -14.363890 , 19.145205 , -1.014994 , -0.007385 , 0.273232 , 0.961913 , 0.139074 , 0.997282 , -19.986166 , -14.064327 , 1.095861 , 0.180944 , -0.958190 , -0.221625 , 0.018467 , 0.026432 , 20.781429 , 16.020638 , -1.013125 , 0.000488 , 0.000275 , 0.999969 , 0.927476 , 0.872909 , 20.904522 , 0.511677 , -0.489169 , -0.433241 , 0.764397 , 0.477432 , 0.996640 , 0.451868 , -19.797674 , 16.521214 , -0.981166 , 0.344615 , -0.336772 , 0.876217 , 0.010041 , 0.923194 , 7.495350 , 19.145205 , -1.014994 , 0.000397 , 0.010498 , 0.999939 , 0.668640 , 0.997655 , -19.796331 , -11.439541 , 3.939504 , -0.244697 , 0.339366 , 0.908261 , 0.010027 , 0.104157 , 20.781422 , -9.176067 , -3.268233 , -0.999939 , 0.000214 , -0.010681 , 0.997006 , 0.168979 , -19.797464 , 8.006504 , -0.903502 , -0.013947 , 0.133396 , 0.990936 , 0.010200 , 0.676085 , -19.791525 , 10.648258 , -1.436015 , 0.631031 , 0.519578 , 0.575976 , 0.010444 , 0.750312 , 20.781414 , -2.268147 , -0.203097 , -0.008301 , -0.509140 , 0.860622 , 0.997006 , 0.373159 , 20.781414 , -0.817417 , 1.444547 , -0.132878 , 0.482345 , 0.865810 , 0.997006 , 0.412870 , -19.066450 , 19.145838 , -1.014994 , -0.019440 , 0.176153 , 0.984161 , 0.025839 , 0.993895 , -19.798376 , 18.857372 , -0.978926 , -0.027131 , 0.135624 , 0.990356 , 0.010027 , 0.991491 , 20.781422 , -12.553135 , -3.298072 , -0.043825 , 0.018952 , 0.998840 , 0.997006 , 0.070879 , -19.542685 , -10.036968 , -0.920016 , -0.259011 , 0.406751 , 0.876034 , 0.014665 , 0.149857 , 20.844685 , -10.669849 , -3.290874 , -0.042146 , -0.003632 , 0.999084 , 0.997006 , 0.127178 , 20.644016 , -4.190868 , -1.182654 , -0.011109 , 0.069979 , 0.997467 , 0.989723 , 0.314639 , 3.763721 , 19.145205 , -1.014994 , 0.050325 , 0.086886 , 0.994934 , 0.588766 , 0.997361 , -14.975210 , 19.145205 , -1.014994 , 0.000000 , 0.235481 , 0.971862 , 0.127332 , 0.997655 , -19.798780 , 11.068913 , -1.985026 , 0.536210 , 0.704306 , 0.465163 , 0.010105 , 0.763451 , -20.040731 , -10.130924 , -0.987807 , -0.205329 , 0.468551 , 0.859218 , 0.007336 , 0.153409 , -19.798651 , -0.569530 , 1.637338 , -0.520981 , 0.667409 , 0.532029 , 0.008551 , 0.424604 , -19.958616 , 2.396992 , -1.012702 , 0.041688 , 0.046144 , 0.998047 , 0.659367 , 0.005597 , -19.798635 , 2.431049 , -1.020961 , 0.090213 , 0.050783 , 0.994598 , 0.654784 , 0.019970 , -19.839689 , 2.721317 , -1.032673 , 0.030152 , 0.007294 , 0.999512 , 0.628136 , 0.013786 , -19.798628 , 18.322498 , -0.923621 , -0.103763 , 0.217444 , 0.970519 , 0.010027 , 0.975836 , 20.669178 , -7.868435 , -3.254371 , 0.775109 , -0.484481 , 0.405499 , 0.994274 , 0.209508 , 20.899357 , -12.167957 , -3.295653 , -0.049989 , 0.007843 , 0.998718 , 0.997006 , 0.083560 , -19.797766 , 9.503590 , -1.237025 , 0.623463 , -0.133580 , 0.770318 , 0.010052 , 0.714959 , -13.562452 , 19.145205 , -1.014994 , -0.012848 , 0.357250 , 0.933897 , 0.158488 , 0.997056 , -19.798628 , -2.926571 , 0.983449 , -0.875423 , -0.334574 , 0.348766 , 0.016831 , 0.347012 , -19.798628 , 0.090946 , 1.264646 , -0.591998 , 0.512650 , 0.621845 , 0.009970 , 0.439637 , 20.781429 , 18.362108 , -1.013678 , -0.000153 , 0.000855 , 0.999969 , 0.964901 , 0.950603 , 20.781414 , 19.145205 , -1.014994 , 0.000000 , 0.001679 , 0.999969 , 0.979833 , 0.988926 , 16.872341 , 19.145838 , -1.014994 , 0.000641 , 0.001831 , 0.999969 , 0.816340 , 0.992187 , -1.156872 , 19.145838 , -1.014994 , 0.007660 , 0.435682 , 0.900052 , 0.464097 , 0.997152 , -11.846052 , 19.145205 , -1.014994 , -0.004913 , 0.427381 , 0.904050 , 0.203427 , 0.990577 , 20.781414 , -1.866009 , 1.098283 , 0.172735 , -0.879757 , 0.442854 , 0.994980 , 0.388804 , 20.636501 , -3.851048 , -1.203608 , 0.008057 , 0.040651 , 0.999115 , 0.990235 , 0.324908 , -19.798628 , -5.916439 , -1.031657 , -0.004028 , 0.056307 , 0.998383 , 0.011089 , 0.267734 , -19.800634 , -14.446186 , 2.167329 , -0.206336 , -0.978301 , 0.017579 , 0.012093 , 0.030118 , -19.798635 , -4.360348 , -1.048930 , -0.561754 , -0.476760 , 0.676077 , 0.010027 , 0.312472 , -0.266499 , 19.145838 , -1.014994 , 0.016877 , 0.367382 , 0.929899 , 0.510770 , 0.994427 , 11.881092 , 19.145838 , -1.014994 , 0.000000 , 0.007630 , 0.999969 , 0.743277 , 0.992993 , -19.884176 , -3.335705 , -0.074939 , -0.736778 , -0.323069 , 0.593921 , 0.010104 , 0.339208 , -19.800879 , -10.539539 , 2.738393 , 0.033540 , 0.925321 , 0.377667 , 0.013141 , 0.131551 , -19.747923 , -2.726910 , 1.331147 , -0.917661 , -0.335582 , 0.212683 , 0.016179 , 0.351018 , 1.346539 , 19.145205 , -1.014994 , 0.000061 , 0.415784 , 0.909452 , 0.516804 , 0.996950 , 20.861736 , -2.121693 , 0.140622 , -0.308390 , -0.897061 , 0.316446 , 0.997005 , 0.377596 , -19.798376 , 19.145838 , -1.014994 , 0.000000 , 0.124058 , 0.992248 , 0.010088 , 0.996810 , 20.832844 , -7.543400 , -3.259173 , 0.893155 , -0.449690 , 0.003571 , 0.997295 , 0.218662 , -19.798635 , 12.326298 , -2.641261 , 0.904935 , -0.152806 , 0.397107 , 0.010027 , 0.800331 , -19.951635 , -14.037655 , -0.026828 , 0.323832 , -0.782647 , 0.531571 , 0.016860 , 0.020453 , };
d8965c73c7a293752b45bc81f7321acfd614f3eb
f5c837225d844c1c725397b2e733f2ec2d7d19dc
/Untitled/KeyRemap4MacBook-7.0.30/src/core/kext/util/EventInputQueue.hpp
c7396cbd86b9bcd7e5a6e824bcb2d47c62b3065b
[]
no_license
caminante99/NewMicroTRON-Layout
6fb00ba1a2f1ef8f87b10507b378f7961ccadc21
d3e33c2c9cbc26e7ae74d51e2e5e6540a75af82d
refs/heads/master
2020-04-06T06:33:39.842605
2011-04-25T02:28:18
2011-04-25T02:28:18
35,869,311
1
0
null
2015-05-19T08:28:46
2015-05-19T08:28:46
null
UTF-8
C++
false
false
6,318
hpp
#ifndef EVENTINPUTQUEUE_HPP #define EVENTINPUTQUEUE_HPP #include "base.hpp" #include "CallBackWrapper.hpp" #include "IntervalChecker.hpp" #include "KeyCode.hpp" #include "List.hpp" #include "ParamsUnion.hpp" #include "TimerWrapper.hpp" namespace org_pqrs_KeyRemap4MacBook { namespace RemapFunc { class SimultaneousButtonPresses; class SimultaneousKeyPresses; } class EventInputQueue { friend class RemapFunc::SimultaneousButtonPresses; friend class RemapFunc::SimultaneousKeyPresses; public: static void initialize(IOWorkLoop& workloop); static void terminate(void); // ------------------------------------------------------------ static void push_KeyboardEventCallback(OSObject* target, unsigned int eventType, unsigned int flags, unsigned int key, unsigned int charCode, unsigned int charSet, unsigned int origCharCode, unsigned int origCharSet, unsigned int keyboardType, bool repeat, AbsoluteTime ts, OSObject* sender, void* refcon); static void push_UpdateEventFlagsCallback(OSObject* target, unsigned flags, OSObject* sender, void* refcon); static void push_KeyboardSpecialEventCallback(OSObject* target, unsigned int eventType, unsigned int flags, unsigned int key, unsigned int flavor, UInt64 guid, bool repeat, AbsoluteTime ts, OSObject* sender, void* refcon); static void push_RelativePointerEventCallback(OSObject* target, int buttons, int dx, int dy, AbsoluteTime ts, OSObject* sender, void* refcon); static void push_ScrollWheelEventCallback(OSObject* target, short deltaAxis1, short deltaAxis2, short deltaAxis3, IOFixed fixedDelta1, IOFixed fixedDelta2, IOFixed fixedDelta3, SInt32 pointDelta1, SInt32 pointDelta2, SInt32 pointDelta3, SInt32 options, AbsoluteTime ts, OSObject* sender, void* refcon); // ------------------------------------------------------------ class Item : public List::Item { public: Item(const Params_KeyboardEventCallBack& p, bool r, bool u, DeviceVendor dv, DeviceProduct dp, uint32_t d) : params(p), retainFlagStatusTemporaryCount(r), updateWorkspaceData(u), deviceVendor(dv), deviceProduct(dp), delayMS(d) {} Item(const Params_KeyboardSpecialEventCallback& p, bool r, bool u, DeviceVendor dv, DeviceProduct dp, uint32_t d) : params(p), retainFlagStatusTemporaryCount(r), updateWorkspaceData(u), deviceVendor(dv), deviceProduct(dp), delayMS(d) {} Item(const Params_RelativePointerEventCallback& p, bool r, bool u, DeviceVendor dv, DeviceProduct dp, uint32_t d) : params(p), retainFlagStatusTemporaryCount(r), updateWorkspaceData(u), deviceVendor(dv), deviceProduct(dp), delayMS(d) {} Item(const Params_ScrollWheelEventCallback& p, bool r, bool u, DeviceVendor dv, DeviceProduct dp, uint32_t d) : params(p), retainFlagStatusTemporaryCount(r), updateWorkspaceData(u), deviceVendor(dv), deviceProduct(dp), delayMS(d) {} virtual ~Item(void) {} ParamsUnion params; bool retainFlagStatusTemporaryCount; bool updateWorkspaceData; DeviceVendor deviceVendor; DeviceProduct deviceProduct; uint32_t delayMS; }; private: enum { MIN_DELAY = 1, IMMEDIATELY_DELAY = 1, }; enum DelayType { DELAY_TYPE_KEY, DELAY_TYPE_POINTING_BUTTON, }; static uint32_t calcdelay(DelayType type); // ------------------------------------------------------------ static void enqueue_(const Params_KeyboardEventCallBack& p, bool retainFlagStatusTemporaryCount, bool updateWorkspaceData, DeviceVendor dv, DeviceProduct dp, bool push_back); static void enqueue_(const Params_KeyboardSpecialEventCallback& p, bool retainFlagStatusTemporaryCount, bool updateWorkspaceData, DeviceVendor dv, DeviceProduct dp); static void enqueue_(const Params_RelativePointerEventCallback& p, bool retainFlagStatusTemporaryCount, bool updateWorkspaceData, DeviceVendor dv, DeviceProduct dp); static void enqueue_(const Params_ScrollWheelEventCallback& p, bool retainFlagStatusTemporaryCount, bool updateWorkspaceData, DeviceVendor dv, DeviceProduct dp); static void fire(OSObject* owner, IOTimerEventSource* sender); static void setTimer(void); static List* queue_; static IntervalChecker ic_; static TimerWrapper timer_; }; } #endif
4cdb07595d90e5965fafee5c8958339cfc78342f
f6e7bf63d88ddcd43892f62850f8d7f03ba85da0
/Source/WebKit2/UIProcess/PageViewportController.h
029228dde5a69b72c7a40b0bdf4a58208d9865b1
[]
no_license
frogbywyplay/appframeworks_qtwebkit
6ddda6addf205fb1a498c3998ef6fc0f3a7d107f
5a62a119d5d589ffbf8dd8afda9e5786eea27618
refs/heads/master
2021-07-09T14:55:57.618247
2021-04-28T13:58:39
2021-04-28T13:58:39
18,559,129
0
1
null
null
null
null
UTF-8
C++
false
false
4,474
h
/* * Copyright (C) 2011, 2012 Nokia Corporation and/or its subsidiary(-ies) * Copyright (C) 2011 Benjamin Poulain <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this program; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ #ifndef PageViewportController_h #define PageViewportController_h #if USE(TILED_BACKING_STORE) #include <WebCore/FloatPoint.h> #include <WebCore/FloatRect.h> #include <WebCore/FloatSize.h> #include <WebCore/ViewportArguments.h> namespace WebCore { class IntPoint; class IntSize; } namespace WebKit { class WebPageProxy; class PageViewportController; class PageViewportControllerClient; class PageViewportController { WTF_MAKE_NONCOPYABLE(PageViewportController); public: PageViewportController(WebKit::WebPageProxy*, PageViewportControllerClient*); virtual ~PageViewportController() { } void suspendContent(); void resumeContent(); float innerBoundedViewportScale(float) const; float outerBoundedViewportScale(float) const; WebCore::FloatPoint clampViewportToContents(const WebCore::FloatPoint& viewportPos, float viewportScale); bool hasSuspendedContent() const { return m_hasSuspendedContent; } bool hadUserInteraction() const { return m_hadUserInteraction; } bool allowsUserScaling() const { return m_allowsUserScaling; } WebCore::FloatSize contentsLayoutSize() const { return m_rawAttributes.layoutSize; } float devicePixelRatio() const; float minimumContentsScale() const { return m_minimumScaleToFit; } float maximumContentsScale() const { return m_rawAttributes.maximumScale; } float currentContentsScale() const { return fromViewportScale(m_effectiveScale); } void setHadUserInteraction(bool didUserInteract) { m_hadUserInteraction = didUserInteract; } // Notifications from the viewport. void didChangeViewportSize(const WebCore::FloatSize& newSize); void didChangeContentsVisibility(const WebCore::FloatPoint& viewportPos, float viewportScale, const WebCore::FloatPoint& trajectoryVector = WebCore::FloatPoint::zero()); // Notifications from the WebProcess. void didCommitLoad(); void didChangeContentsSize(const WebCore::IntSize& newSize); void didChangeViewportAttributes(const WebCore::ViewportAttributes&); void didRenderFrame(const WebCore::IntSize& contentsSize, const WebCore::IntRect& coveredRect); void pageTransitionViewportReady(); void pageDidRequestScroll(const WebCore::IntPoint& cssPosition); private: float fromViewportScale(float scale) const { return scale / devicePixelRatio(); } float toViewportScale(float scale) const { return scale * devicePixelRatio(); } void syncVisibleContents(const WebCore::FloatPoint &trajectoryVector = WebCore::FloatPoint::zero()); void applyScaleAfterRenderingContents(float scale); void applyPositionAfterRenderingContents(const WebCore::FloatPoint& pos); bool updateMinimumScaleToFit(bool userInitiatedUpdate); WebCore::FloatSize viewportSizeInContentsCoordinates() const; WebPageProxy* const m_webPageProxy; PageViewportControllerClient* m_client; WebCore::ViewportAttributes m_rawAttributes; bool m_allowsUserScaling; float m_minimumScaleToFit; bool m_initiallyFitToViewport; bool m_hasSuspendedContent; bool m_hadUserInteraction; WebCore::FloatPoint m_viewportPos; WebCore::FloatSize m_viewportSize; WebCore::FloatSize m_contentsSize; WebCore::IntSize m_clientContentsSize; float m_effectiveScale; // Should always be cssScale * devicePixelRatio. bool m_viewportPosIsLocked; bool m_effectiveScaleIsLocked; WebCore::FloatRect m_lastFrameCoveredRect; }; bool fuzzyCompare(float, float, float epsilon); } // namespace WebKit #endif #endif // PageViewportController_h
508ac0f0846c5ddb4f70b2f1f77dca423d0470f6
f4fa534e63d5b93fb5728bfa47f8873dcf112d88
/Examples/DocsExamples/source/Programming with Documents/Protect or Encrypt Document/Document protection.cpp
0996aad52e52b8b51c19ce33a07c4638ae7f2574
[ "MIT" ]
permissive
aspose-words/Aspose.Words-for-C
6e2911fdaf6161a0ea75327c291366d430ed080c
d44ab98550d22b825224562757c90b5895b734b2
refs/heads/master
2023-08-03T09:21:26.994370
2023-07-26T16:41:15
2023-07-26T16:41:15
142,434,585
42
15
MIT
2023-08-23T17:08:54
2018-07-26T11:56:36
C++
UTF-8
C++
false
false
1,826
cpp
#include "Document protection.h" using namespace Aspose::Words; namespace DocsExamples { namespace Programming_with_Documents { namespace Protect_or_Encrypt_Document { namespace gtest_test { class DocumentProtection : public ::testing::Test { protected: static System::SharedPtr<::DocsExamples::Programming_with_Documents::Protect_or_Encrypt_Document::DocumentProtection> s_instance; void SetUp() override { s_instance->SetUp(); }; static void SetUpTestCase() { s_instance = System::MakeObject<::DocsExamples::Programming_with_Documents::Protect_or_Encrypt_Document::DocumentProtection>(); s_instance->OneTimeSetUp(); }; static void TearDownTestCase() { s_instance->OneTimeTearDown(); s_instance = nullptr; }; }; System::SharedPtr<::DocsExamples::Programming_with_Documents::Protect_or_Encrypt_Document::DocumentProtection> DocumentProtection::s_instance; TEST_F(DocumentProtection, PasswordProtection) { s_instance->PasswordProtection(); } TEST_F(DocumentProtection, AllowOnlyFormFieldsProtect) { s_instance->AllowOnlyFormFieldsProtect(); } TEST_F(DocumentProtection, RemoveDocumentProtection) { s_instance->RemoveDocumentProtection(); } TEST_F(DocumentProtection, UnrestrictedEditableRegions) { s_instance->UnrestrictedEditableRegions(); } TEST_F(DocumentProtection, UnrestrictedSection) { s_instance->UnrestrictedSection(); } TEST_F(DocumentProtection, GetProtectionType) { s_instance->GetProtectionType(); } TEST_F(DocumentProtection, ReadOnlyProtection) { s_instance->ReadOnlyProtection(); } TEST_F(DocumentProtection, RemoveReadOnlyRestriction) { s_instance->RemoveReadOnlyRestriction(); } }}}} // namespace DocsExamples::Programming_with_Documents::Protect_or_Encrypt_Document::gtest_test
d5d20dea78400203898c83dca09df056197cb90c
583e8a2d0f1ff42d1b1c9cfb759583fc73ef71a4
/XCodeProject/Device/Classes/Native/UnityEngine.UnityConnectModule.cpp
170a7cd61954164fae51c8f8f364bd1102477445
[]
no_license
BoxFoxGames/tilebreaker
0d6c0c47e587213015657be4ae2842730bf9ee17
98d77534f4df98c51e3f79539b1b0523e3684f65
refs/heads/master
2022-12-04T04:00:24.646362
2020-08-03T22:05:42
2020-08-03T22:05:42
284,662,795
0
0
null
null
null
null
UTF-8
C++
false
false
9,925
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.String struct String_t; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <Module> struct U3CModuleU3E_t05CFE5AFED29CD3803AA790B1468D95E8EBD76E5 { public: public: }; // System.Object struct Il2CppArrayBounds; // System.Array // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // UnityEngine.Advertisements.UnityAdsSettings struct UnityAdsSettings_t97051756C497AC29B5D85BCAEDC834E247930FE5 : public RuntimeObject { public: public: }; // System.Boolean struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // UnityEngine.RuntimePlatform struct RuntimePlatform_tD5F5737C1BBBCBB115EB104DF2B7876387E80132 { public: // System.Int32 UnityEngine.RuntimePlatform::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RuntimePlatform_tD5F5737C1BBBCBB115EB104DF2B7876387E80132, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean UnityEngine.Advertisements.UnityAdsSettings::get_enabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityAdsSettings_get_enabled_m10C21E79943A9556FC453ED50DD766505C9B5E72 (const RuntimeMethod* method) { typedef bool (*UnityAdsSettings_get_enabled_m10C21E79943A9556FC453ED50DD766505C9B5E72_ftn) (); static UnityAdsSettings_get_enabled_m10C21E79943A9556FC453ED50DD766505C9B5E72_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityAdsSettings_get_enabled_m10C21E79943A9556FC453ED50DD766505C9B5E72_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Advertisements.UnityAdsSettings::get_enabled()"); bool retVal = _il2cpp_icall_func(); return retVal; } // System.Boolean UnityEngine.Advertisements.UnityAdsSettings::get_initializeOnStartup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityAdsSettings_get_initializeOnStartup_m102DCCBEFE5A6CF0FB86E8C0ED5FAC7513765DFE (const RuntimeMethod* method) { typedef bool (*UnityAdsSettings_get_initializeOnStartup_m102DCCBEFE5A6CF0FB86E8C0ED5FAC7513765DFE_ftn) (); static UnityAdsSettings_get_initializeOnStartup_m102DCCBEFE5A6CF0FB86E8C0ED5FAC7513765DFE_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityAdsSettings_get_initializeOnStartup_m102DCCBEFE5A6CF0FB86E8C0ED5FAC7513765DFE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Advertisements.UnityAdsSettings::get_initializeOnStartup()"); bool retVal = _il2cpp_icall_func(); return retVal; } // System.Boolean UnityEngine.Advertisements.UnityAdsSettings::get_testMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityAdsSettings_get_testMode_mBE2C1B2AD3C213648275C58D70BF9FE9529C815C (const RuntimeMethod* method) { typedef bool (*UnityAdsSettings_get_testMode_mBE2C1B2AD3C213648275C58D70BF9FE9529C815C_ftn) (); static UnityAdsSettings_get_testMode_mBE2C1B2AD3C213648275C58D70BF9FE9529C815C_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityAdsSettings_get_testMode_mBE2C1B2AD3C213648275C58D70BF9FE9529C815C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Advertisements.UnityAdsSettings::get_testMode()"); bool retVal = _il2cpp_icall_func(); return retVal; } // System.String UnityEngine.Advertisements.UnityAdsSettings::GetGameId(UnityEngine.RuntimePlatform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityAdsSettings_GetGameId_m263E063973598807F083D4706FE9296E56A25870 (int32_t ___platform0, const RuntimeMethod* method) { typedef String_t* (*UnityAdsSettings_GetGameId_m263E063973598807F083D4706FE9296E56A25870_ftn) (int32_t); static UnityAdsSettings_GetGameId_m263E063973598807F083D4706FE9296E56A25870_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityAdsSettings_GetGameId_m263E063973598807F083D4706FE9296E56A25870_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Advertisements.UnityAdsSettings::GetGameId(UnityEngine.RuntimePlatform)"); String_t* retVal = _il2cpp_icall_func(___platform0); return retVal; } #ifdef __clang__ #pragma clang diagnostic pop #endif
2a27e71a1386e0652ebe2f3ed31afb28ed1b1baa
9235ce608f839875b8a8e05632fc5e99612df62e
/Lex+Syntax Analysis/Output/test22.cpp
82edd00cba883c88eed12858f3cecd3761ade641
[]
no_license
The-Death-Reaper/cpp_mini_compiler
c83e64db669edff9447795b892f8a91fce6d0e0f
2436aed7c81ba9b539407c7e3992c06b3c32ba84
refs/heads/master
2023-04-10T12:49:07.344634
2021-04-17T06:08:30
2021-04-17T06:08:30
337,933,221
0
0
null
null
null
null
UTF-8
C++
false
false
1,451
cpp
#include<iostream> int main(){ int i=0; for(int k=0;;){ int j; } } Parsing is successful Displaying the Symbol Tables: Symbol Table Number: 0.0 --------------------------------------------------------------------------------------------------- SNo | Token | Datatype | Value | Size | Line No | Column No | Scope --------------------------------------------------------------------------------------------------- 1 main proc 0 3 4 0 Symbol Table Number: 1.0 --------------------------------------------------------------------------------------------------- SNo | Token | Datatype | Value | Size | Line No | Column No | Scope --------------------------------------------------------------------------------------------------- 1 i int 0 4 4 5 1 Symbol Table Number: 2.0 --------------------------------------------------------------------------------------------------- SNo | Token | Datatype | Value | Size | Line No | Column No | Scope --------------------------------------------------------------------------------------------------- 1 j int 4 6 6 2 2 k int 0 4 5 9 2
2ed9bd564f7ed8e0beb6b196cf8d01cf87baf23d
85262a267b55bee78ad1faaefd90eafef2ea23cd
/src/GenCustomer.cpp
e2b258c1a22b867a7775f7605a414c2147d12616
[]
no_license
ryanmueller28/GenCSVForProjects
40e9d0d6f1af5443c9f8843fac793cc8f45e2467
b2c049d090353c631007ab47a925ec8156c0797f
refs/heads/master
2023-03-13T00:00:05.228566
2021-02-27T23:11:23
2021-02-27T23:11:23
342,978,141
0
0
null
null
null
null
UTF-8
C++
false
false
2,481
cpp
#include <iostream> #include <fstream> #include <cstdlib> #include <chrono> #include <random> #include <vector> #include "Person.h" #include "Account.h" int main() { std::string FirstNames[2000]; std::string LastNames[1000]; std::ifstream firstNameFile("D:\\Dev\\cpp-random\\GenCustomerCSV\\src\\FirstNames.txt"); if (firstNameFile.is_open()) { for (int i = 0; i < 2000; i++) { firstNameFile >> FirstNames[i]; } } std::ifstream lastNameFile("D:\\Dev\\cpp-random\\GenCustomerCSV\\src\\LastNames.txt"); if (lastNameFile.is_open()) { for (int i = 0; i < 1000; i++) { lastNameFile >> LastNames[i]; } } firstNameFile.close(); lastNameFile.close(); std::mt19937 prng(std::chrono::system_clock::now().time_since_epoch().count()); std::vector<Person> customers; /** * Fill customer array. * */ for (int i = 0; i < 1000; i++) { std::string first_name = FirstNames[i]; std::string last_name = LastNames[i]; std::uniform_real_distribution<float> dis(-100.f, 10000.f); float checking_balance = dis(prng); float savings_balance = dis(prng); std::string address = std::to_string((unsigned int)prng()); address += " Street"; Account savingsAccount(savings_balance, "Savings"); Account checkingsAccount(checking_balance, "Checkings"); Person person(first_name, last_name, address, checkingsAccount, savingsAccount); customers.push_back(person); } std::ofstream out("D:\\Dev\\cpp-random\\GenCustomerCSV\\src\\customers.csv"); if (out.is_open()) { for (int i = 0; i < 1000; i++) { out << customers.at(i).GetFirstName() << "," << customers.at(i).GetLastName() << "," << customers.at(i).SavingsAccount.GetAccountType() << customers.at(i).SavingsAccount.GetAccountNum() << ",$" << customers.at(i).SavingsAccount.GetBalance() << "," << customers.at(i).CheckingAccount.GetAccountType() << customers.at(i).CheckingAccount.GetAccountNum() << ",$" << customers.at(i).CheckingAccount.GetBalance() << "," << customers.at(i).GetAddress() << "," << customers.at(i).GetPhoneNum() << "," << customers.at(i).GetEmail() << "\n"; } } return EXIT_SUCCESS; }